From 4c694f38e36bc19f4e7dc5e1adce0d8b9949ab56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 12:55:49 +0200 Subject: [PATCH 01/34] Setuptools: move config to new pyproject.toml; use setuptools_scm for versioning; all tool configs in pyproject.toml --- .coveragerc | 11 --- .gitignore | 2 + MANIFEST.in | 9 +-- README.md | 26 +++---- README.rst | 190 --------------------------------------------- pyproject.toml | 122 +++++++++++++++++++++++++++++ setup.cfg | 6 -- setup.py | 31 -------- spotpy/__init__.py | 22 +++--- 9 files changed, 154 insertions(+), 265 deletions(-) delete mode 100644 .coveragerc delete mode 100644 README.rst create mode 100644 pyproject.toml delete mode 100644 setup.cfg delete mode 100644 setup.py diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index ec0228e2..00000000 --- a/.coveragerc +++ /dev/null @@ -1,11 +0,0 @@ -[run] -omit = - *example* - -[report] -exclude_lines = - pragma: no cover - def __repr__ - raise NotImplementedError - if __name__ == .__main__.: - def parse_args diff --git a/.gitignore b/.gitignore index e7aa88d8..c3a27269 100644 --- a/.gitignore +++ b/.gitignore @@ -98,6 +98,8 @@ ENV/ .spyderproject # PyCharm .idea/ +# VSCode +.vscode/ # Rope project settings .ropeproject diff --git a/MANIFEST.in b/MANIFEST.in index e5706096..86111d04 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,9 +1,8 @@ -include README.md -include MANIFEST.in -include setup.py -include setup.cfg +prune ** +recursive-include tests *.py +recursive-include spotpy *.py recursive-include spotpy/examples/cmf_data * recursive-include spotpy/examples/hymod_exe * recursive-include spotpy/examples/hymod_unix * recursive-include spotpy/examples/hymod_python * -include LICENSE \ No newline at end of file +include LICENSE README.md pyproject.toml setup.py diff --git a/README.md b/README.md index c4212bd9..3da2ac3a 100644 --- a/README.md +++ b/README.md @@ -25,13 +25,13 @@ A Statistical Parameter Optimization Tool for Python Purpose ================= -SPOTPY is a Python framework that enables the use of Computational optimization techniques for calibration, uncertainty +SPOTPY is a Python framework that enables the use of Computational optimization techniques for calibration, uncertainty and sensitivity analysis techniques of almost every (environmental-) model. The package is puplished in the open source journal PLoS One: -Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L.: SPOTting Model Parameters Using a Ready-Made Python Package, PLoS ONE, +Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L.: SPOTting Model Parameters Using a Ready-Made Python Package, PLoS ONE, 10(12), e0145180, doi:[10.1371/journal.pone.0145180](http://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0145180 "SPOTting Model Parameters Using a Ready-Made Python Package"), 2015 - -The simplicity and flexibility enables the use and test of different + +The simplicity and flexibility enables the use and test of different algorithms of almost any model, without the need of complex codes:: sampler = spotpy.algorithms.sceua(model_setup()) # Initialize your model with a setup file @@ -44,17 +44,17 @@ algorithms of almost any model, without the need of complex codes:: Features ================= -Complex algorithms bring complex tasks to link them with a model. -We want to make this task as easy as possible. +Complex algorithms bring complex tasks to link them with a model. +We want to make this task as easy as possible. Some features you can use with the SPOTPY package are: -* Fitting models to evaluation data with different algorithms. - Available algorithms are: - +* Fitting models to evaluation data with different algorithms. + Available algorithms are: + * Monte Carlo (`MC`) * Markov-Chain Monte-Carlo (`MCMC`) * Maximum Likelihood Estimation (`MLE`) - * Latin-Hypercube Sampling (`LHS`) + * Latin-Hypercube Sampling (`LHS`) * Simulated Annealing (`SA`) * Shuffled Complex Evolution Algorithm (`SCE-UA`) * Differential Evolution Markov Chain Algorithm (`DE-MCz`) @@ -97,7 +97,7 @@ Some features you can use with the SPOTPY package are: * Skewness * compare percentiles of discharge -* Prebuild parameter distribution functions: +* Prebuild parameter distribution functions: * Uniform * Normal @@ -112,7 +112,7 @@ Some features you can use with the SPOTPY package are: of a model. * Multi-objective support - + * MPI support for fast parallel computing * A progress bar monitoring the sampling loops. Enables you to plan your coffee brakes. @@ -181,7 +181,7 @@ Patches/enhancements/new algorithms and any other contributions to this package 1. Fork it ( http://github.com/thouska/spotpy/fork ) 2. Create your feature branch (``git checkout -b my-new-feature``) 3. Add your modifications -4. Add short summary of your modifications on ``CHANGELOG.rst`` +4. Add short summary of your modifications on ``CHANGELOG.md`` 5. Commit your changes (``git commit -m "Add some feature"``) 6. Push to the branch (``git push origin my-new-feature``) 7. Create new Pull Request diff --git a/README.rst b/README.rst deleted file mode 100644 index eac7aa9c..00000000 --- a/README.rst +++ /dev/null @@ -1,190 +0,0 @@ -SPOTPY -======== -**A Statistical Parameter Optimization Tool for Python** - -SPOTPY is a Python tool that enables the use of Computational optimization techniques for calibration, uncertainty -and sensitivity analysis techniques of almost every (environmental-) model. The package is puplished in the open source journal PLoS One - -Houska, T, Kraft, P, Chamorro-Chavez, A and Breuer, L; `SPOTting Model Parameters Using a Ready-Made Python Package `_; PLoS ONE; 2015 - -The simplicity and flexibility enables the use and test of different -algorithms without the need of complex codes:: - - sampler = spotpy.algorithms.sceua(model_setup()) # Initialize your model with a setup file - sampler.sample(10000) # Run the model - results = sampler.getdata() # Load the results - spotpy.analyser.plot_parametertrace(results) # Show the results - - -Features --------- - -Complex formal Bayesian informal Bayesian and non-Bayesian algorithms bring complex tasks to link them with a given model. -We want to make this task as easy as possible. Some features you can use with the SPOTPY package are: - -* Fitting models to evaluation data with different algorithms. - Available algorithms are: - - * Monte Carlo (`MC`) - * Markov-Chain Monte-Carlo (`MCMC`) - * Maximum Likelihood Estimation (`MLE`) - * Latin-Hypercube Sampling (`LHS`) - * Simulated Annealing (`SA`) - * Shuffled Complex Evolution Algorithm (`SCE-UA`) - * Differential Evolution Markov Chain Algorithm (`DE-MCz`) - * Differential Evolution Adaptive Metropolis Algorithm (`DREAM`) - * RObust Parameter Estimation (`ROPE`) - * Fourier Amplitude Sensitivity Test (`FAST`) - * Artificial Bee Colony (`ABC`) - * Fitness Scaled Chaotic Artificial Bee Colony (`FSCABC`) - * Dynamically Dimensioned Search algorithm (`DDS`) - * Pareto Archived - Dynamicallly Dimensioned Search algorithm (`PA-DDS`) - * Fast and Elitist Multiobjective Genetic Algorithm (`NSGA-II`) - -* Wide range of objective functions (also known as loss function, fitness function or energy function) to validate the sampled results. Available functions are - - * Bias - * Procentual Bias (`PBias`) - * Nash-Sutcliffe (`NSE`) - * logarithmic Nash-Sutcliffe (`logNSE`) - * logarithmic probability (`logp`) - * Correlation Coefficient (`r`) - * Coefficient of Determination (`r^2`) - * Mean Squared Error (`MSE`) - * Root Mean Squared Error (`RMSE`) - * Mean Absolute Error (`MAE`) - * Relative Root Mean Squared Error (`RRMSE`) - * Agreement Index (`AI`) - * Covariance, Decomposed MSE (`dMSE`) - * Kling-Gupta Efficiency (`KGE`) - * Non parametric Kling-Gupta Efficiency (`KGE_non_parametric`) - -* Wide range of likelihood functions to validate the sampled results: - - * logLikelihood - * Gaussian Likelihood to account for Measurement Errors - * Gaussian Likelihood to account for Heteroscedasticity - * Likelihood to accounr for Autocorrelation - * Generalized Likelihood Function - * Lapacian Likelihood - * Skewed Student Likelihood assuming homoscedasticity - * Skewed Student Likelihood assuming heteroscedasticity - * Skewed Student Likelihood assuming heteroscedasticity and Autocorrelation - * Noisy ABC Gaussian Likelihood - * ABC Boxcar Likelihood - * Limits Of Acceptability - * Inverse Error Variance Shaping Factor - * Nash Sutcliffe Efficiency Shaping Factor - * Exponential Transform Shaping Factor - * Sum of Absolute Error Residuals - -* Wide range of hydrological signatures functions to validate the sampled results: - - * Slope - * Flooding/Drought events - * Flood/Drought frequency - * Flood/Drought duration - * Flood/Drought variance - * Mean flow - * Median flow - * Skewness - * compare percentiles of discharge - -* Prebuild parameter distribution functions: - - * Uniform - * Normal - * logNormal - * Chisquare - * Exponential - * Gamma - * Wald - * Weilbull - -* Wide range to adapt algorithms to perform uncertainty-, sensitivity analysis or calibration - of a model. - -* Multi-objective support - -* MPI support for fast parallel computing - -* A progress bar monitoring the sampling loops. Enables you to plan your coffee brakes. - -* Use of NumPy functions as often as possible. This makes your coffee brakes short. - -* Different databases solutions: `ram` storage for fast sampling a simple , `csv` tables - the save solution for long duration samplings and a `sql` database for larger projects. - -* Automatic best run selecting and plotting - -* Parameter trace plotting - -* Parameter interaction plot including the Gaussian-kde function - -* Regression analysis between simulation and evaluation data - -* Posterior distribution plot - -* Convergence diagnostics with Gelman-Rubin and the Geweke plot - - -Documentation -------------- - -Documentation is available at ``__ - - -Install -------- - -Classical Python options exist to install SPOTPY: - -From PyPi: - - pip install spotpy - -From Conda-Forge: - - conda config --add channels conda-forge - conda config --set channel_priority strict - conda install spotpy - -From [Source](https://pypi.python.org/pypi/spotpy): - - python setup.py install - - -Papers citing SPOTPY --------------------- -See `Google Scholar `__ for a continuously updated list. - - -Support -------- - -* Feel free to contact the authors of this tool for any support questions. - -* If you use this package for a scientific research paper, please `cite `_ SPOTPY. - -* Please report any bug through mail or GitHub: https://github.com/thouska/spotpy. - -* If you want to share your code with others, you are welcome to do this through GitHub: https://github.com/thouska/spotpy. - - -Contributing ------------- -Patches/enhancements/new algorithms and any other contributions to this package are very welcome! - -1. Fork it ( http://github.com/thouska/spotpy/fork ) -2. Create your feature branch (``git checkout -b my-new-feature``) -3. Add your modifications -4. Add short summary of your modifications on ``CHANGELOG.rst`` -5. Commit your changes (``git commit -m "Add some feature"``) -6. Push to the branch (``git push origin my-new-feature``) -7. Create new Pull Request - - -Getting started ---------------- - -Have a look at https://github.com/thouska/spotpy/tree/master/spotpy/examples and https://spotpy.readthedocs.io/en/latest/getting_started/ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..5d701f91 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,122 @@ +[build-system] +requires = [ + "setuptools>=62", + "wheel", + "setuptools_scm[toml]>=6.4", +] +build-backend = "setuptools.build_meta" + +[project] +requires-python = ">=3.7" +name = "spotpy" +description = "A Statistical Parameter Optimization Tool." +authors = [ + {name = "Tobias Houska", email = "tobias.houska@umwelt.uni-giessen.de"}, + {name = "Philipp Kraft"}, + {name = "Alejandro Chamorro-Chavez"}, + {name = "Lutz Breuer"}, +] +maintainers = [ + {name = "Tobias Houska", email = "tobias.houska@umwelt.uni-giessen.de"}, +] +readme = "README.md" +license = {file = "LICENSE"} +dynamic = ["version"] +keywords = [ + "Monte Carlo", + "MCMC", + "MLE", + "SCE-UA", + "Simulated Annealing", + "DE-MCz", + "DREAM", + "ROPE", + "Artifical Bee Colony", + "DDS", + "PA-DDS", + "NSGAii", + "Uncertainty", + "Calibration", + "Model", + "Signatures", +] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: End Users/Desktop", + "Intended Audience :: Science/Research", + "Intended Audience :: Education", + "License :: OSI Approved :: MIT License", + "Natural Language :: English", + "Operating System :: Unix", + "Operating System :: Microsoft", + "Operating System :: MacOS", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Hydrology", + "Topic :: Scientific/Engineering :: Mathematics", + "Topic :: Scientific/Engineering :: Physics", + "Topic :: Utilities", +] +dependencies = [ + "numpy>=1.14.5", + "scipy>=1.5.0", +] + +[project.optional-dependencies] +plotting = [ + "pandas>=1", + "matplotlib>=3", +] +test = ["pytest-cov>=3"] + +[project.urls] +Changelog = "https://github.com/thouska/spotpy/blob/master/CHANGELOG.md" +Conda-Forge = "https://anaconda.org/conda-forge/spotpy" +Documentation = "https://spotpy.readthedocs.io" +Homepage = "https://github.com/thouska/spotpy" +Source = "https://github.com/thouska/spotpy" +Tracker = "https://github.com/thouska/spotpy/issues" + +[tool.setuptools_scm] +write_to = "spotpy/_version.py" +write_to_template = "__version__ = '{version}'" +local_scheme = "no-local-version" +fallback_version = "0.0.0.dev0" + +[tool.isort] +profile = "black" +multi_line_output = 3 + +[tool.black] +exclude = "_version.py" +target-version = [ + "py36", + "py37", + "py38", +] + +[tool.coverage] + [tool.coverage.run] + source = ["spotpy"] + omit = [ + "*docs*", + "*examples*", + "*tests*", + ] + + [tool.coverage.report] + exclude_lines = [ + "pragma: no cover", + "if __name__ == .__main__.:", + "def __repr__", + "def __str__", + "raise NotImplementedError", + "def parse_args", + ] diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index cc639349..00000000 --- a/setup.cfg +++ /dev/null @@ -1,6 +0,0 @@ -[wheel] -python-tag = py27 - -[metadata] -description-file = README.md - diff --git a/setup.py b/setup.py deleted file mode 100644 index cb7cbf0e..00000000 --- a/setup.py +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright (c) 2015, Tobias Houska - -from setuptools import setup, find_packages -import os - -setup( - name = 'spotpy', - version = '1.5.15', - description = 'A Statistical Parameter Optimization Tool', - long_description=open(os.path.join(os.path.dirname(__file__), - "README.rst")).read(), - author = 'Tobias Houska, Philipp Kraft, Alejandro Chamorro-Chavez and Lutz Breuer', - author_email = 'tobias.houska@umwelt.uni-giessen.de', - url = 'https://spotpy.readthedocs.io/en/latest/', - license = 'MIT', - install_requires=[ - 'scipy', 'numpy', 'pandas'], - packages=find_packages(exclude=["tests*", "docs*"]), - keywords = 'Monte Carlo, MCMC, MLE, SCE-UA, Simulated Annealing, DE-MCz, DREAM, ROPE, Artifical Bee Colony, DDS, PA-DDS, NSGAii, Uncertainty, Calibration, Model, Signatures', - classifiers = [ - 'Development Status :: 4 - Beta', - 'Intended Audience :: Developers', - 'Natural Language :: English', - 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - 'Topic :: Software Development :: Libraries :: Python Modules'], - ) diff --git a/spotpy/__init__.py b/spotpy/__init__.py index c1360f70..cb61b2de 100644 --- a/spotpy/__init__.py +++ b/spotpy/__init__.py @@ -5,18 +5,18 @@ :author: Tobias Houska -:paper: Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L.: -SPOTting Model Parameters Using a Ready-Made Python Package, +:paper: Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L.: +SPOTting Model Parameters Using a Ready-Made Python Package, PLoS ONE, 10(12), e0145180, doi:10.1371/journal.pone.0145180, 2015. -This package enables the comprehensive use of different Bayesian and Heuristic calibration -techniques in one Framework. It comes along with an algorithms folder for the +This package enables the comprehensive use of different Bayesian and Heuristic calibration +techniques in one Framework. It comes along with an algorithms folder for the sampling and an analyser class for the plotting of results by the sampling. -:dependencies: - Numpy >1.8 (http://www.numpy.org/) +:dependencies: - Numpy >1.14.5 (http://www.numpy.org/) - Scipy >1.5 (https://pypi.org/project/scipy/) - - Pandas >0.13 (optional) (http://pandas.pydata.org/) - - Matplotlib >1.4 (optional) (http://matplotlib.org/) + - Pandas >1.0 (optional) (http://pandas.pydata.org/) + - Matplotlib >3.0 (optional) (http://matplotlib.org/) - CMF (optional) (http://fb09-pasig.umwelt.uni-giessen.de:8000/) - mpi4py (optional) (http://mpi4py.scipy.org/) - pathos (optional) (https://pypi.python.org/pypi/pathos/) @@ -32,7 +32,7 @@ Please cite our paper, if you are using SPOTPY. ''' from . import database # Writes the results of the sampler in a user defined output file -from . import algorithms # Contains all the different algorithms implemented in SPOTPY +from . import algorithms # Contains all the different algorithms implemented in SPOTPY from . import parameter # Contains different distributions to describe the prior information for every model parameter from . import analyser # Contains some examples to analyse the results of the different algorithms from . import objectivefunctions # Quantifies goodness of fit between simulation and evaluation data with objective functions @@ -41,4 +41,8 @@ from . import describe # Contains some helper functions to describe samplers and set-ups from .hydrology import signatures # Quantifies goodness of fit between simulation and evaluation data with hydrological signatures -__version__ = '1.5.15' \ No newline at end of file +try: + from ._version import __version__ +except ModuleNotFoundError: # pragma: no cover + # package is not installed + __version__ = "0.0.0.dev0" From 042ce94581af1d552c11e163d021bc4122b7a3b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 13:14:40 +0200 Subject: [PATCH 02/34] setuptools_scm: better regex to find version from non semver conform tags --- .gitignore | 3 +++ pyproject.toml | 1 + 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index c3a27269..8b967388 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,9 @@ wheels/ .installed.cfg *.egg +# generated version file +spotpy/_version.py + # Python Unittest tool `py.test` .pytest_cache/* diff --git a/pyproject.toml b/pyproject.toml index 5d701f91..42845a87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,6 +89,7 @@ write_to = "spotpy/_version.py" write_to_template = "__version__ = '{version}'" local_scheme = "no-local-version" fallback_version = "0.0.0.dev0" +tag_regex = "^(?:[\\w-]+-)?[vV]?\\.?(?P\\d+(?:\\.\\d+){0,2}[^\\+]*)(?:\\+.*)?$" [tool.isort] profile = "black" From f09f82841f3641513fada4bad9c277960c0de971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 13:38:17 +0200 Subject: [PATCH 03/34] move tutorials to separate folder --- MANIFEST.in | 5 +---- .../tutorial_Parameterlist_iterator.py | 0 {spotpy/examples => tutorials}/tutorial_ackley.py | 0 {spotpy/examples => tutorials}/tutorial_cmf_lumped.py | 0 {spotpy/examples => tutorials}/tutorial_dds_hymod.py | 0 {spotpy/examples => tutorials}/tutorial_dream_hymod.py | 0 {spotpy/examples => tutorials}/tutorial_fast_hymod.py | 0 {spotpy/examples => tutorials}/tutorial_griewank.py | 0 {spotpy/examples => tutorials}/tutorial_likelihood.py | 0 {spotpy/examples => tutorials}/tutorial_listsampler.py | 0 {spotpy/examples => tutorials}/tutorial_nsgaii.py | 0 {spotpy/examples => tutorials}/tutorial_nsgaii_dltz1.py | 0 {spotpy/examples => tutorials}/tutorial_own_database.py | 0 {spotpy/examples => tutorials}/tutorial_padds_hymod.py | 0 .../tutorial_parallel_computing_hymod.py | 0 {spotpy/examples => tutorials}/tutorial_rosenbrock.py | 0 {spotpy/examples => tutorials}/tutorial_sceua_hymod.py | 0 {spotpy/examples => tutorials}/tutorial_signatures.py | 0 18 files changed, 1 insertion(+), 4 deletions(-) rename {spotpy/examples => tutorials}/tutorial_Parameterlist_iterator.py (100%) rename {spotpy/examples => tutorials}/tutorial_ackley.py (100%) rename {spotpy/examples => tutorials}/tutorial_cmf_lumped.py (100%) rename {spotpy/examples => tutorials}/tutorial_dds_hymod.py (100%) rename {spotpy/examples => tutorials}/tutorial_dream_hymod.py (100%) rename {spotpy/examples => tutorials}/tutorial_fast_hymod.py (100%) rename {spotpy/examples => tutorials}/tutorial_griewank.py (100%) rename {spotpy/examples => tutorials}/tutorial_likelihood.py (100%) rename {spotpy/examples => tutorials}/tutorial_listsampler.py (100%) rename {spotpy/examples => tutorials}/tutorial_nsgaii.py (100%) rename {spotpy/examples => tutorials}/tutorial_nsgaii_dltz1.py (100%) rename {spotpy/examples => tutorials}/tutorial_own_database.py (100%) rename {spotpy/examples => tutorials}/tutorial_padds_hymod.py (100%) rename {spotpy/examples => tutorials}/tutorial_parallel_computing_hymod.py (100%) rename {spotpy/examples => tutorials}/tutorial_rosenbrock.py (100%) rename {spotpy/examples => tutorials}/tutorial_sceua_hymod.py (100%) rename {spotpy/examples => tutorials}/tutorial_signatures.py (100%) diff --git a/MANIFEST.in b/MANIFEST.in index 86111d04..e1836506 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,5 @@ prune ** recursive-include tests *.py recursive-include spotpy *.py -recursive-include spotpy/examples/cmf_data * -recursive-include spotpy/examples/hymod_exe * -recursive-include spotpy/examples/hymod_unix * -recursive-include spotpy/examples/hymod_python * +recursive-include spotpy/examples * include LICENSE README.md pyproject.toml setup.py diff --git a/spotpy/examples/tutorial_Parameterlist_iterator.py b/tutorials/tutorial_Parameterlist_iterator.py similarity index 100% rename from spotpy/examples/tutorial_Parameterlist_iterator.py rename to tutorials/tutorial_Parameterlist_iterator.py diff --git a/spotpy/examples/tutorial_ackley.py b/tutorials/tutorial_ackley.py similarity index 100% rename from spotpy/examples/tutorial_ackley.py rename to tutorials/tutorial_ackley.py diff --git a/spotpy/examples/tutorial_cmf_lumped.py b/tutorials/tutorial_cmf_lumped.py similarity index 100% rename from spotpy/examples/tutorial_cmf_lumped.py rename to tutorials/tutorial_cmf_lumped.py diff --git a/spotpy/examples/tutorial_dds_hymod.py b/tutorials/tutorial_dds_hymod.py similarity index 100% rename from spotpy/examples/tutorial_dds_hymod.py rename to tutorials/tutorial_dds_hymod.py diff --git a/spotpy/examples/tutorial_dream_hymod.py b/tutorials/tutorial_dream_hymod.py similarity index 100% rename from spotpy/examples/tutorial_dream_hymod.py rename to tutorials/tutorial_dream_hymod.py diff --git a/spotpy/examples/tutorial_fast_hymod.py b/tutorials/tutorial_fast_hymod.py similarity index 100% rename from spotpy/examples/tutorial_fast_hymod.py rename to tutorials/tutorial_fast_hymod.py diff --git a/spotpy/examples/tutorial_griewank.py b/tutorials/tutorial_griewank.py similarity index 100% rename from spotpy/examples/tutorial_griewank.py rename to tutorials/tutorial_griewank.py diff --git a/spotpy/examples/tutorial_likelihood.py b/tutorials/tutorial_likelihood.py similarity index 100% rename from spotpy/examples/tutorial_likelihood.py rename to tutorials/tutorial_likelihood.py diff --git a/spotpy/examples/tutorial_listsampler.py b/tutorials/tutorial_listsampler.py similarity index 100% rename from spotpy/examples/tutorial_listsampler.py rename to tutorials/tutorial_listsampler.py diff --git a/spotpy/examples/tutorial_nsgaii.py b/tutorials/tutorial_nsgaii.py similarity index 100% rename from spotpy/examples/tutorial_nsgaii.py rename to tutorials/tutorial_nsgaii.py diff --git a/spotpy/examples/tutorial_nsgaii_dltz1.py b/tutorials/tutorial_nsgaii_dltz1.py similarity index 100% rename from spotpy/examples/tutorial_nsgaii_dltz1.py rename to tutorials/tutorial_nsgaii_dltz1.py diff --git a/spotpy/examples/tutorial_own_database.py b/tutorials/tutorial_own_database.py similarity index 100% rename from spotpy/examples/tutorial_own_database.py rename to tutorials/tutorial_own_database.py diff --git a/spotpy/examples/tutorial_padds_hymod.py b/tutorials/tutorial_padds_hymod.py similarity index 100% rename from spotpy/examples/tutorial_padds_hymod.py rename to tutorials/tutorial_padds_hymod.py diff --git a/spotpy/examples/tutorial_parallel_computing_hymod.py b/tutorials/tutorial_parallel_computing_hymod.py similarity index 100% rename from spotpy/examples/tutorial_parallel_computing_hymod.py rename to tutorials/tutorial_parallel_computing_hymod.py diff --git a/spotpy/examples/tutorial_rosenbrock.py b/tutorials/tutorial_rosenbrock.py similarity index 100% rename from spotpy/examples/tutorial_rosenbrock.py rename to tutorials/tutorial_rosenbrock.py diff --git a/spotpy/examples/tutorial_sceua_hymod.py b/tutorials/tutorial_sceua_hymod.py similarity index 100% rename from spotpy/examples/tutorial_sceua_hymod.py rename to tutorials/tutorial_sceua_hymod.py diff --git a/spotpy/examples/tutorial_signatures.py b/tutorials/tutorial_signatures.py similarity index 100% rename from spotpy/examples/tutorial_signatures.py rename to tutorials/tutorial_signatures.py From a1448f59738750878fd5cee3d8a1c4f696e14ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 13:48:41 +0200 Subject: [PATCH 04/34] tests: cli_cmf_lumped.py not existing --- tests/mpitest.sh | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 tests/mpitest.sh diff --git a/tests/mpitest.sh b/tests/mpitest.sh deleted file mode 100644 index e6000aa6..00000000 --- a/tests/mpitest.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -for SAMPLER in abc demcz dream fast fscabc lhs mc mcmc mle rope sa # sceua -do - mpirun -c 6 python spotpy/examples/cli_cmf_lumped.py run -s $SAMPLER -n 10000 -p mpi -done From f4e574d5d0651e3744c665ad33cded9af3d167b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 13:57:43 +0200 Subject: [PATCH 05/34] move to src/ based package structure --- .gitignore | 10 +- CONTRIBUTING.md | 4 +- MANIFEST.in | 4 +- pyproject.toml | 2 +- spotpy/examples/NSGA2.csv | 511 - .../examples/cmf_data/driver_data_site24.csv | 26312 ---------------- spotpy/examples/cmf_data/fulda_climate.csv | 3655 --- .../examples/cmf_data/soilmoisture_site24.csv | 26312 ---------------- spotpy/examples/hymod_exe/hymod_input.csv | 1828 -- spotpy/examples/hymod_python/hymod_input.csv | 1828 -- {spotpy => src/spotpy}/__init__.py | 0 src/spotpy/_version.py | 1 + {spotpy => src/spotpy}/algorithms/__init__.py | 0 .../spotpy}/algorithms/_algorithm.py | 0 {spotpy => src/spotpy}/algorithms/abc.py | 0 {spotpy => src/spotpy}/algorithms/dds.py | 0 {spotpy => src/spotpy}/algorithms/demcz.py | 0 {spotpy => src/spotpy}/algorithms/dream.py | 0 {spotpy => src/spotpy}/algorithms/fast.py | 0 {spotpy => src/spotpy}/algorithms/fscabc.py | 0 {spotpy => src/spotpy}/algorithms/lhs.py | 0 .../spotpy}/algorithms/list_sampler.py | 0 {spotpy => src/spotpy}/algorithms/mc.py | 0 {spotpy => src/spotpy}/algorithms/mcmc.py | 0 {spotpy => src/spotpy}/algorithms/mle.py | 0 {spotpy => src/spotpy}/algorithms/nsgaii.py | 0 {spotpy => src/spotpy}/algorithms/padds.py | 0 {spotpy => src/spotpy}/algorithms/rope.py | 0 {spotpy => src/spotpy}/algorithms/sa.py | 0 {spotpy => src/spotpy}/algorithms/sceua.py | 0 {spotpy => src/spotpy}/analyser.py | 0 {spotpy => src/spotpy}/cli.py | 0 {spotpy => src/spotpy}/database/__init__.py | 0 {spotpy => src/spotpy}/database/base.py | 0 {spotpy => src/spotpy}/database/csv.py | 0 {spotpy => src/spotpy}/database/hdf5.py | 0 {spotpy => src/spotpy}/database/ram.py | 0 {spotpy => src/spotpy}/database/sql.py | 0 {spotpy => src/spotpy}/describe.py | 0 {spotpy => src/spotpy}/examples/__init__.py | 0 .../spotpy}/examples/cmf_data/__init__.py | 0 .../examples/hymod_exe/HYMODsilent.exe | Bin .../spotpy}/examples/hymod_exe/Param.in | 0 .../spotpy/examples/hymod_exe}/__init__.py | 0 .../spotpy}/examples/hymod_exe/bound.txt | 0 .../examples/hymod_exe/bound_units.xlsx | Bin .../spotpy}/examples/hymod_exe/license.txt | 0 .../spotpy/examples/hymod_python}/__init__.py | 0 .../spotpy}/examples/hymod_python/hymod.py | 0 .../spotpy/examples/hymod_unix}/__init__.py | 0 .../spotpy}/examples/hymod_unix/bound.txt | 0 .../examples/hymod_unix/bound_units.xlsx | Bin .../spotpy}/examples/hymod_unix/hymod_3.6 | Bin .../spotpy}/examples/hymod_unix/hymod_3.7 | Bin .../examples/hymod_unix/hymod_cython/Makefile | 0 .../hymod_unix/hymod_cython/compile_hymod.sh | 0 .../hymod_unix/hymod_cython/hymod.pyx | 0 .../hymod_unix/hymod_cython/main_hymod.cpp | 0 .../spotpy}/examples/spot_setup_ackley.py | 0 .../spotpy}/examples/spot_setup_cmf1d.py | 0 .../spotpy}/examples/spot_setup_cmf_lumped.py | 0 .../spotpy}/examples/spot_setup_dds.py | 0 .../spotpy}/examples/spot_setup_dtlz1.py | 0 .../spotpy}/examples/spot_setup_griewank.py | 0 .../spotpy}/examples/spot_setup_hymod_exe.py | 0 .../examples/spot_setup_hymod_python.py | 0 .../spot_setup_hymod_python_pareto.py | 0 .../spotpy}/examples/spot_setup_hymod_unix.py | 0 .../spotpy}/examples/spot_setup_rosenbrock.py | 0 .../examples/spot_setup_standardnormal.py | 0 {spotpy => src/spotpy}/gui/__init__.py | 0 {spotpy => src/spotpy}/gui/mpl.py | 0 {spotpy => src/spotpy}/hydrology/__init__.py | 0 .../spotpy}/hydrology/signatures.py | 0 {spotpy => src/spotpy}/likelihoods.py | 0 {spotpy => src/spotpy}/objectivefunctions.py | 0 {spotpy => src/spotpy}/parallel/__init__.py | 0 {spotpy => src/spotpy}/parallel/mpi.py | 0 {spotpy => src/spotpy}/parallel/mproc.py | 0 {spotpy => src/spotpy}/parallel/sequential.py | 0 {spotpy => src/spotpy}/parallel/umproc.py | 0 {spotpy => src/spotpy}/parameter.py | 0 {spotpy/examples => tutorials}/3dplot.py | 0 .../examples => tutorials}/MyOwnDatabase.txt | 0 {spotpy/examples => tutorials}/cli_hymod.py | 0 .../hymod_unix => tutorials/dds}/__init__.py | 0 .../dds/benchmark_dds.py | 0 .../dds/dds_parallel.py | 0 .../dds/dds_parallel_data.json | 0 .../dds/dds_parallel_plot.py | 0 .../dds/dds_parallel_run.py | 0 .../examples => tutorials}/getting_started.py | 0 {spotpy/examples => tutorials}/gui_hymod.py | 0 .../plot_nsgaii_tutorial.py | 0 94 files changed, 11 insertions(+), 60456 deletions(-) delete mode 100644 spotpy/examples/NSGA2.csv delete mode 100644 spotpy/examples/cmf_data/driver_data_site24.csv delete mode 100644 spotpy/examples/cmf_data/fulda_climate.csv delete mode 100644 spotpy/examples/cmf_data/soilmoisture_site24.csv delete mode 100644 spotpy/examples/hymod_exe/hymod_input.csv delete mode 100644 spotpy/examples/hymod_python/hymod_input.csv rename {spotpy => src/spotpy}/__init__.py (100%) create mode 100644 src/spotpy/_version.py rename {spotpy => src/spotpy}/algorithms/__init__.py (100%) rename {spotpy => src/spotpy}/algorithms/_algorithm.py (100%) rename {spotpy => src/spotpy}/algorithms/abc.py (100%) rename {spotpy => src/spotpy}/algorithms/dds.py (100%) rename {spotpy => src/spotpy}/algorithms/demcz.py (100%) rename {spotpy => src/spotpy}/algorithms/dream.py (100%) rename {spotpy => src/spotpy}/algorithms/fast.py (100%) rename {spotpy => src/spotpy}/algorithms/fscabc.py (100%) rename {spotpy => src/spotpy}/algorithms/lhs.py (100%) rename {spotpy => src/spotpy}/algorithms/list_sampler.py (100%) rename {spotpy => src/spotpy}/algorithms/mc.py (100%) rename {spotpy => src/spotpy}/algorithms/mcmc.py (100%) rename {spotpy => src/spotpy}/algorithms/mle.py (100%) rename {spotpy => src/spotpy}/algorithms/nsgaii.py (100%) rename {spotpy => src/spotpy}/algorithms/padds.py (100%) rename {spotpy => src/spotpy}/algorithms/rope.py (100%) rename {spotpy => src/spotpy}/algorithms/sa.py (100%) rename {spotpy => src/spotpy}/algorithms/sceua.py (100%) rename {spotpy => src/spotpy}/analyser.py (100%) rename {spotpy => src/spotpy}/cli.py (100%) rename {spotpy => src/spotpy}/database/__init__.py (100%) rename {spotpy => src/spotpy}/database/base.py (100%) rename {spotpy => src/spotpy}/database/csv.py (100%) rename {spotpy => src/spotpy}/database/hdf5.py (100%) rename {spotpy => src/spotpy}/database/ram.py (100%) rename {spotpy => src/spotpy}/database/sql.py (100%) rename {spotpy => src/spotpy}/describe.py (100%) rename {spotpy => src/spotpy}/examples/__init__.py (100%) rename {spotpy => src/spotpy}/examples/cmf_data/__init__.py (100%) rename {spotpy => src/spotpy}/examples/hymod_exe/HYMODsilent.exe (100%) rename {spotpy => src/spotpy}/examples/hymod_exe/Param.in (100%) rename {spotpy/examples/dds => src/spotpy/examples/hymod_exe}/__init__.py (100%) rename {spotpy => src/spotpy}/examples/hymod_exe/bound.txt (100%) rename {spotpy => src/spotpy}/examples/hymod_exe/bound_units.xlsx (100%) rename {spotpy => src/spotpy}/examples/hymod_exe/license.txt (100%) rename {spotpy/examples/hymod_exe => src/spotpy/examples/hymod_python}/__init__.py (100%) rename {spotpy => src/spotpy}/examples/hymod_python/hymod.py (100%) rename {spotpy/examples/hymod_python => src/spotpy/examples/hymod_unix}/__init__.py (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/bound.txt (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/bound_units.xlsx (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/hymod_3.6 (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/hymod_3.7 (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/hymod_cython/Makefile (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/hymod_cython/compile_hymod.sh (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/hymod_cython/hymod.pyx (100%) rename {spotpy => src/spotpy}/examples/hymod_unix/hymod_cython/main_hymod.cpp (100%) rename {spotpy => src/spotpy}/examples/spot_setup_ackley.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_cmf1d.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_cmf_lumped.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_dds.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_dtlz1.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_griewank.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_hymod_exe.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_hymod_python.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_hymod_python_pareto.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_hymod_unix.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_rosenbrock.py (100%) rename {spotpy => src/spotpy}/examples/spot_setup_standardnormal.py (100%) rename {spotpy => src/spotpy}/gui/__init__.py (100%) rename {spotpy => src/spotpy}/gui/mpl.py (100%) rename {spotpy => src/spotpy}/hydrology/__init__.py (100%) rename {spotpy => src/spotpy}/hydrology/signatures.py (100%) rename {spotpy => src/spotpy}/likelihoods.py (100%) rename {spotpy => src/spotpy}/objectivefunctions.py (100%) rename {spotpy => src/spotpy}/parallel/__init__.py (100%) rename {spotpy => src/spotpy}/parallel/mpi.py (100%) rename {spotpy => src/spotpy}/parallel/mproc.py (100%) rename {spotpy => src/spotpy}/parallel/sequential.py (100%) rename {spotpy => src/spotpy}/parallel/umproc.py (100%) rename {spotpy => src/spotpy}/parameter.py (100%) rename {spotpy/examples => tutorials}/3dplot.py (100%) rename {spotpy/examples => tutorials}/MyOwnDatabase.txt (100%) rename {spotpy/examples => tutorials}/cli_hymod.py (100%) rename {spotpy/examples/hymod_unix => tutorials/dds}/__init__.py (100%) rename {spotpy/examples => tutorials}/dds/benchmark_dds.py (100%) rename {spotpy/examples => tutorials}/dds/dds_parallel.py (100%) rename {spotpy/examples => tutorials}/dds/dds_parallel_data.json (100%) rename {spotpy/examples => tutorials}/dds/dds_parallel_plot.py (100%) rename {spotpy/examples => tutorials}/dds/dds_parallel_run.py (100%) rename {spotpy/examples => tutorials}/getting_started.py (100%) rename {spotpy/examples => tutorials}/gui_hymod.py (100%) rename {spotpy/examples => tutorials}/plot_nsgaii_tutorial.py (100%) diff --git a/.gitignore b/.gitignore index 8b967388..919a74ce 100644 --- a/.gitignore +++ b/.gitignore @@ -33,7 +33,7 @@ wheels/ *.egg # generated version file -spotpy/_version.py +src/spotpy/_version.py # Python Unittest tool `py.test` .pytest_cache/* @@ -113,12 +113,12 @@ ENV/ .settings/ # hymod example -spotpy/examples/hymod/* +src/spotpy/examples/hymod/* # Test Cases -spotpy/hymod/testHymod/* -spotpy/hymod/RunsWithNewHymod/* -spotpy/hymod/likelihood_test/* +src/spotpy/hymod/testHymod/* +src/spotpy/hymod/RunsWithNewHymod/* +src/spotpy/hymod/likelihood_test/* # a doc folder for some notices _doc diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ad11f64f..67df4554 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ There are 4 main ways of contributing to the SPOTPY project (in descending order * Adding new or improved functionality to the existing codebase * Fixing outstanding issues (bugs) with the existing codebase. They range from low-level software bugs to higher-level design problems. -* Contributing or improving the documentation (`docs`) or examples (`spotpy/examples`) +* Contributing or improving the documentation (`docs`) or examples (`src/spotpy/examples`) * Submitting issues related to bugs or desired enhancements # Opening issues @@ -76,7 +76,7 @@ We recommended that your contribution complies with the following guidelines bef * Please prefix the title of incomplete contributions with `[WIP]` (to indicate a work in progress). WIPs may be useful to (1) indicate you are working on something to avoid duplicated work, (2) request broad review of functionality or API, or (3) seek collaborators. -* When adding additional functionality, you may want to provide at least one example script in the ``spotpy/examples/`` folder. Have a look at other examples for reference. Examples should demonstrate why the new functionality is useful in practice and, if possible, compare it to other methods available in SPOTPY. +* When adding additional functionality, you may want to provide at least one example script in the ``src/spotpy/examples/`` folder. Have a look at other examples for reference. Examples should demonstrate why the new functionality is useful in practice and, if possible, compare it to other methods available in SPOTPY. You can also check for common programming errors with the following tools: diff --git a/MANIFEST.in b/MANIFEST.in index e1836506..5a670088 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ prune ** recursive-include tests *.py -recursive-include spotpy *.py -recursive-include spotpy/examples * +recursive-include src/spotpy *.py +recursive-include src/spotpy/examples * include LICENSE README.md pyproject.toml setup.py diff --git a/pyproject.toml b/pyproject.toml index 42845a87..b4731086 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,7 +85,7 @@ Source = "https://github.com/thouska/spotpy" Tracker = "https://github.com/thouska/spotpy/issues" [tool.setuptools_scm] -write_to = "spotpy/_version.py" +write_to = "src/spotpy/_version.py" write_to_template = "__version__ = '{version}'" local_scheme = "no-local-version" fallback_version = "0.0.0.dev0" diff --git a/spotpy/examples/NSGA2.csv b/spotpy/examples/NSGA2.csv deleted file mode 100644 index 9197c4d8..00000000 --- a/spotpy/examples/NSGA2.csv +++ /dev/null @@ -1,511 +0,0 @@ -like1,like2,like3,par0,par1,par2,par3,par4,simulation1_1,simulation2_1,simulation3_1,chain -69.56,23.84,150.6,0.3828,0.7446,0.6465,0.7314,0.83,69.56,23.84,150.6,0.0 -13.29,6.305,40.66,0.3252,0.678,0.1247,0.603,0.3013,13.29,6.305,40.66,1.0 -79.06,11.414,218.6,0.2927,0.874,0.5547,0.2489,0.955,79.06,11.414,218.6,2.0 -3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,3.0 -37.22,42.22,112.25,0.4146,0.4685,0.8457,0.83,0.8105,37.22,42.22,112.25,4.0 -29.0,58.5,183.6,0.3228,0.3313,0.7397,0.0561,0.9717,29.0,58.5,183.6,5.0 -202.2,10.04,50.9,0.8066,0.9526,0.636,0.5635,0.2585,202.2,10.04,50.9,6.0 -4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,7.0 -113.0,4.703,59.66,0.6636,0.96,0.2192,0.578,0.448,113.0,4.703,59.66,8.0 -63.0,18.53,94.25,0.4636,0.773,0.5244,0.2795,0.661,63.0,18.53,94.25,9.0 -65.1,99.7,25.27,0.867,0.3953,0.3643,0.8906,0.761,65.1,99.7,25.27,10.0 -19.1,93.5,51.25,0.687,0.1697,0.896,0.9785,0.8555,19.1,93.5,51.25,11.0 -16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,12.0 -164.5,30.58,18.8,0.912,0.8433,0.6235,0.2695,0.5444,164.5,30.58,18.8,13.0 -5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,14.0 -97.56,16.53,134.8,0.4585,0.855,0.638,0.7485,0.4724,97.56,16.53,134.8,15.0 -130.6,5.355,59.75,0.695,0.9604,0.5127,0.932,0.1416,130.6,5.355,59.75,16.0 -69.2,107.1,74.7,0.7026,0.3926,0.767,0.349,0.769,69.2,107.1,74.7,17.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,18.0 -41.56,20.81,14.6,0.8105,0.6665,0.9834,0.4854,0.6143,41.56,20.81,14.6,19.0 -3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,20.0 -7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,21.0 -78.7,68.5,21.34,0.873,0.5347,0.3467,0.08044,0.08636,78.7,68.5,21.34,22.0 -14.74,15.07,132.6,0.1836,0.4944,0.4202,0.05133,0.7886,14.74,15.07,132.6,23.0 -22.56,34.0,46.62,0.5483,0.399,0.0189,0.9824,0.99,22.56,34.0,46.62,24.0 -50.62,43.2,77.06,0.549,0.5396,0.7603,0.729,0.9062,50.62,43.2,77.06,25.0 -20.38,5.19,145.5,0.1494,0.797,0.838,0.928,0.7925,20.38,5.19,145.5,26.0 -83.0,18.03,103.25,0.4946,0.822,0.9165,0.836,0.933,83.0,18.03,103.25,27.0 -34.5,16.66,97.44,0.3442,0.6743,0.9175,0.31,0.6494,34.5,16.66,97.44,28.0 -27.9,11.59,91.56,0.3013,0.7065,0.1011,0.381,0.0351,27.9,11.59,91.56,29.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,0.0 -3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,1.0 -3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,2.0 -4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,3.0 -5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,4.0 -7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,5.0 -13.29,6.305,40.66,0.3252,0.678,0.1247,0.603,0.3013,13.29,6.305,40.66,6.0 -14.74,15.07,132.6,0.1836,0.4944,0.4202,0.05133,0.7886,14.74,15.07,132.6,7.0 -16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,8.0 -19.1,93.5,51.25,0.687,0.1697,0.896,0.9785,0.8555,19.1,93.5,51.25,9.0 -20.38,5.19,145.5,0.1494,0.797,0.838,0.928,0.7925,20.38,5.19,145.5,10.0 -22.56,34.0,46.62,0.5483,0.399,0.0189,0.9824,0.99,22.56,34.0,46.62,11.0 -27.9,11.59,91.56,0.3013,0.7065,0.1011,0.381,0.0351,27.9,11.59,91.56,12.0 -29.0,58.5,183.6,0.3228,0.3313,0.7397,0.0561,0.9717,29.0,58.5,183.6,13.0 -34.5,16.66,97.44,0.3442,0.6743,0.9175,0.31,0.6494,34.5,16.66,97.44,14.0 -37.22,42.22,112.25,0.4146,0.4685,0.8457,0.83,0.8105,37.22,42.22,112.25,15.0 -41.56,20.81,14.6,0.8105,0.6665,0.9834,0.4854,0.6143,41.56,20.81,14.6,16.0 -50.62,43.2,77.06,0.549,0.5396,0.7603,0.729,0.9062,50.62,43.2,77.06,17.0 -63.0,18.53,94.25,0.4636,0.773,0.5244,0.2795,0.661,63.0,18.53,94.25,18.0 -65.1,99.7,25.27,0.867,0.3953,0.3643,0.8906,0.761,65.1,99.7,25.27,19.0 -69.2,107.1,74.7,0.7026,0.3926,0.767,0.349,0.769,69.2,107.1,74.7,20.0 -69.56,23.84,150.6,0.3828,0.7446,0.6465,0.7314,0.83,69.56,23.84,150.6,21.0 -78.7,68.5,21.34,0.873,0.5347,0.3467,0.08044,0.08636,78.7,68.5,21.34,22.0 -79.06,11.414,218.6,0.2927,0.874,0.5547,0.2489,0.955,79.06,11.414,218.6,23.0 -83.0,18.03,103.25,0.4946,0.822,0.9165,0.836,0.933,83.0,18.03,103.25,24.0 -97.56,16.53,134.8,0.4585,0.855,0.638,0.7485,0.4724,97.56,16.53,134.8,25.0 -113.0,4.703,59.66,0.6636,0.96,0.2192,0.578,0.448,113.0,4.703,59.66,26.0 -130.6,5.355,59.75,0.695,0.9604,0.5127,0.932,0.1416,130.6,5.355,59.75,27.0 -164.5,30.58,18.8,0.912,0.8433,0.6235,0.2695,0.5444,164.5,30.58,18.8,28.0 -202.2,10.04,50.9,0.8066,0.9526,0.636,0.5635,0.2585,202.2,10.04,50.9,29.0 -31.94,64.44,202.2,0.3228,0.3313,0.7397,0.0561,0.961,31.94,64.44,202.2,30.0 -15.45,9.984,150.9,0.1443,0.6074,0.9644,0.4272,0.1848,15.45,9.984,150.9,31.0 -4.312,106.8,159.4,0.411,0.03882,0.5376,0.336,0.8574,4.312,106.8,159.4,32.0 -72.06,61.5,109.75,0.549,0.5396,0.7603,0.729,0.2642,72.06,61.5,109.75,33.0 -16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,34.0 -20.38,99.7,43.75,0.733,0.1697,0.896,0.9785,0.8555,20.38,99.7,43.75,35.0 -43.34,65.3,89.5,0.5483,0.399,0.0189,0.07916,0.0533,43.34,65.3,89.5,36.0 -4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,37.0 -71.1,1.189,31.77,0.695,0.9834,0.5127,0.932,0.8057,71.1,1.189,31.77,38.0 -23.98,24.53,195.5,0.1989,0.4944,0.6465,0.7314,0.83,23.98,24.53,195.5,39.0 -15.17,7.477,134.4,0.1443,0.67,0.1874,0.07916,0.1626,15.17,7.477,134.4,40.0 -20.55,100.6,55.16,0.687,0.1697,0.896,0.2695,0.5444,20.55,100.6,55.16,41.0 -152.0,19.11,16.48,0.912,0.888,0.62,0.33,0.1343,152.0,19.11,16.48,42.0 -4.76,87.25,102.8,0.4722,0.0518,0.9644,0.379,0.228,4.76,87.25,102.8,43.0 -3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,44.0 -4.13,17.95,151.8,0.1271,0.1869,0.62,0.2788,0.5444,4.13,17.95,151.8,45.0 -52.53,7.582,145.2,0.2927,0.874,0.559,0.2915,0.8555,52.53,7.582,145.2,46.0 -24.94,122.06,66.94,0.687,0.1697,0.6235,0.2695,0.5444,24.94,122.06,66.94,47.0 -3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,48.0 -39.4,18.7,120.5,0.3252,0.678,0.1247,0.3428,0.7847,39.4,18.7,120.5,49.0 -0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,50.0 -153.4,6.387,74.25,0.6826,0.96,0.2334,0.07916,0.0533,153.4,6.387,74.25,51.0 -65.56,6.04,173.0,0.2927,0.9155,0.5547,0.981,0.8555,65.56,6.04,173.0,52.0 -1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,53.0 -27.16,54.78,171.9,0.3228,0.3313,0.772,0.06445,0.4487,27.16,54.78,171.9,54.0 -17.69,8.72,129.1,0.1698,0.67,0.9644,0.4207,0.1848,17.69,8.72,129.1,55.0 -50.4,22.19,150.6,0.3252,0.6943,0.1247,0.2695,0.5444,50.4,22.19,150.6,56.0 -201.2,29.05,78.7,0.745,0.874,0.5547,0.2489,0.955,201.2,29.05,78.7,57.0 -40.5,17.17,119.7,0.3252,0.702,0.2192,0.578,0.448,40.5,17.17,119.7,58.0 -26.36,12.51,80.6,0.3252,0.678,0.1247,0.4207,0.1848,26.36,12.51,80.6,59.0 -0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,0.0 -1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,1.0 -3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,2.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,3.0 -3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,4.0 -3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,5.0 -3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,6.0 -4.13,17.95,151.8,0.1271,0.1869,0.62,0.2788,0.5444,4.13,17.95,151.8,7.0 -4.312,106.8,159.4,0.411,0.03882,0.5376,0.336,0.8574,4.312,106.8,159.4,8.0 -4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,9.0 -4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,10.0 -4.76,87.25,102.8,0.4722,0.0518,0.9644,0.379,0.228,4.76,87.25,102.8,11.0 -5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,12.0 -7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,13.0 -13.29,6.305,40.66,0.3252,0.678,0.1247,0.603,0.3013,13.29,6.305,40.66,14.0 -14.74,15.07,132.6,0.1836,0.4944,0.4202,0.05133,0.7886,14.74,15.07,132.6,15.0 -15.17,7.477,134.4,0.1443,0.67,0.1874,0.07916,0.1626,15.17,7.477,134.4,16.0 -15.45,9.984,150.9,0.1443,0.6074,0.9644,0.4272,0.1848,15.45,9.984,150.9,17.0 -16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,18.0 -16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,19.0 -17.69,8.72,129.1,0.1698,0.67,0.9644,0.4207,0.1848,17.69,8.72,129.1,20.0 -19.1,93.5,51.25,0.687,0.1697,0.896,0.9785,0.8555,19.1,93.5,51.25,21.0 -20.38,5.19,145.5,0.1494,0.797,0.838,0.928,0.7925,20.38,5.19,145.5,22.0 -20.38,99.7,43.75,0.733,0.1697,0.896,0.9785,0.8555,20.38,99.7,43.75,23.0 -20.55,100.6,55.16,0.687,0.1697,0.896,0.2695,0.5444,20.55,100.6,55.16,24.0 -22.56,34.0,46.62,0.5483,0.399,0.0189,0.9824,0.99,22.56,34.0,46.62,25.0 -23.98,24.53,195.5,0.1989,0.4944,0.6465,0.7314,0.83,23.98,24.53,195.5,26.0 -24.94,122.06,66.94,0.687,0.1697,0.6235,0.2695,0.5444,24.94,122.06,66.94,27.0 -26.36,12.51,80.6,0.3252,0.678,0.1247,0.4207,0.1848,26.36,12.51,80.6,28.0 -27.16,54.78,171.9,0.3228,0.3313,0.772,0.06445,0.4487,27.16,54.78,171.9,29.0 -2.73,50.0,67.2,0.4397,0.0518,0.9644,0.4966,0.1848,2.73,50.0,67.2,30.0 -4.83,20.38,111.0,0.185,0.1915,0.858,0.8955,0.7847,4.83,20.38,111.0,31.0 -4.46,18.08,154.9,0.1271,0.1979,0.9775,0.4207,0.1353,4.46,18.08,154.9,32.0 -21.56,5.5,154.1,0.1494,0.797,0.838,0.928,0.2864,21.56,5.5,154.1,33.0 -11.42,5.055,34.2,0.3252,0.6934,0.0844,0.603,0.91,11.42,5.055,34.2,34.0 -5.992,122.4,58.47,0.687,0.0467,0.5376,0.3428,0.7993,5.992,122.4,58.47,35.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,36.0 -8.945,97.3,57.6,0.6484,0.08417,0.896,0.9785,0.8555,8.945,97.3,57.6,37.0 -7.81,32.97,179.5,0.185,0.1915,0.858,0.4417,0.1848,7.81,32.97,179.5,38.0 -22.34,5.7,159.8,0.1494,0.797,0.838,0.928,0.1848,22.34,5.7,159.8,39.0 -3.48,3.559,31.31,0.1836,0.4944,0.3894,0.1045,0.7886,3.48,3.559,31.31,40.0 -25.52,124.9,68.44,0.687,0.1697,0.6235,0.973,0.8457,25.52,124.9,68.44,41.0 -8.61,7.133,144.4,0.0983,0.547,0.4202,0.0549,0.7886,8.61,7.133,144.4,42.0 -2.768,68.56,119.5,0.3738,0.03882,0.53,0.4504,0.7847,2.768,68.56,119.5,43.0 -2.508,10.586,57.66,0.185,0.1915,0.898,0.8955,0.923,2.508,10.586,57.66,44.0 -12.19,51.44,241.8,0.2084,0.1915,0.858,0.8496,0.9395,12.19,51.44,241.8,45.0 -18.28,18.7,132.6,0.2181,0.4944,0.64,0.7314,0.8027,18.28,18.7,132.6,46.0 -16.97,17.36,152.8,0.1836,0.4944,0.4202,0.33,0.1343,16.97,17.36,152.8,47.0 -28.12,114.6,52.03,0.733,0.1969,0.9644,0.379,0.228,28.12,114.6,52.03,48.0 -1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,49.0 -20.16,7.613,143.4,0.1624,0.7256,0.838,0.928,0.7925,20.16,7.613,143.4,50.0 -1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,51.0 -5.285,1.164,197.8,0.0316,0.8193,0.5376,0.441,0.7847,5.285,1.164,197.8,52.0 -6.12,79.5,122.75,0.411,0.0715,0.5376,0.3428,0.1848,6.12,79.5,122.75,53.0 -4.043,100.1,149.4,0.411,0.03882,0.5376,0.05133,0.774,4.043,100.1,149.4,54.0 -6.83,66.4,93.25,0.4397,0.0933,0.896,0.9785,0.848,6.83,66.4,93.25,55.0 -2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,56.0 -22.06,5.62,157.6,0.1494,0.797,0.837,0.928,0.7847,22.06,5.62,157.6,57.0 -27.98,108.25,62.03,0.687,0.2053,0.01531,0.828,0.4487,27.98,108.25,62.03,58.0 -3.309,60.6,91.6,0.411,0.0518,0.9644,0.4207,0.1848,3.309,60.6,91.6,59.0 -0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,0.0 -1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,1.0 -1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,2.0 -1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,3.0 -2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,4.0 -2.508,10.586,57.66,0.185,0.1915,0.898,0.8955,0.923,2.508,10.586,57.66,5.0 -2.73,50.0,67.2,0.4397,0.0518,0.9644,0.4966,0.1848,2.73,50.0,67.2,6.0 -2.768,68.56,119.5,0.3738,0.03882,0.53,0.4504,0.7847,2.768,68.56,119.5,7.0 -3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,8.0 -3.309,60.6,91.6,0.411,0.0518,0.9644,0.4207,0.1848,3.309,60.6,91.6,9.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,10.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,11.0 -3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,12.0 -3.48,3.559,31.31,0.1836,0.4944,0.3894,0.1045,0.7886,3.48,3.559,31.31,13.0 -3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,14.0 -3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,15.0 -4.043,100.1,149.4,0.411,0.03882,0.5376,0.05133,0.774,4.043,100.1,149.4,16.0 -4.13,17.95,151.8,0.1271,0.1869,0.62,0.2788,0.5444,4.13,17.95,151.8,17.0 -4.312,106.8,159.4,0.411,0.03882,0.5376,0.336,0.8574,4.312,106.8,159.4,18.0 -4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,19.0 -4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,20.0 -4.46,18.08,154.9,0.1271,0.1979,0.9775,0.4207,0.1353,4.46,18.08,154.9,21.0 -4.76,87.25,102.8,0.4722,0.0518,0.9644,0.379,0.228,4.76,87.25,102.8,22.0 -4.83,20.38,111.0,0.185,0.1915,0.858,0.8955,0.7847,4.83,20.38,111.0,23.0 -5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,24.0 -5.285,1.164,197.8,0.0316,0.8193,0.5376,0.441,0.7847,5.285,1.164,197.8,25.0 -5.992,122.4,58.47,0.687,0.0467,0.5376,0.3428,0.7993,5.992,122.4,58.47,26.0 -6.12,79.5,122.75,0.411,0.0715,0.5376,0.3428,0.1848,6.12,79.5,122.75,27.0 -6.83,66.4,93.25,0.4397,0.0933,0.896,0.9785,0.848,6.83,66.4,93.25,28.0 -7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,29.0 -4.25,77.8,91.75,0.4722,0.0518,0.62,0.2788,0.5444,4.25,77.8,91.75,30.0 -1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,31.0 -3.38,83.75,124.9,0.411,0.03882,0.5376,0.4504,0.7847,3.38,83.75,124.9,32.0 -1.903,8.03,43.75,0.185,0.1915,0.989,0.4946,0.1848,1.903,8.03,43.75,33.0 -2.002,79.06,103.3,0.4397,0.02469,0.62,0.2715,0.1343,2.002,79.06,103.3,34.0 -1.894,8.234,69.6,0.1271,0.1869,0.7754,0.1045,0.7886,1.894,8.234,69.6,35.0 -1.712,9.29,100.94,0.0983,0.1555,0.8833,0.3716,0.11,1.712,9.29,100.94,36.0 -32.2,6.36,62.2,0.3828,0.835,0.01147,0.3274,0.11,32.2,6.36,62.2,37.0 -1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,38.0 -4.566,83.6,112.4,0.4397,0.0518,0.5376,0.4504,0.81,4.566,83.6,112.4,39.0 -2.238,8.12,71.1,0.1271,0.2161,0.62,0.2788,0.7993,2.238,8.12,71.1,40.0 -0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,41.0 -1.894,34.7,46.62,0.4397,0.0518,0.9907,0.4207,0.7847,1.894,34.7,46.62,42.0 -1.881,68.0,89.06,0.4397,0.02692,0.0573,0.4207,0.11,1.881,68.0,89.06,43.0 -3.27,80.94,135.9,0.3828,0.03882,0.5376,0.379,0.259,3.27,80.94,135.9,44.0 -1.449,46.53,77.4,0.3828,0.03021,0.5156,0.379,0.228,1.449,46.53,77.4,45.0 -3.3,23.77,119.25,0.185,0.12195,0.898,0.2788,0.5444,3.3,23.77,119.25,46.0 -11.97,44.0,80.25,0.411,0.2137,0.858,0.8955,0.7847,11.97,44.0,80.25,47.0 -4.625,114.5,151.9,0.4397,0.03882,0.5376,0.336,0.8433,4.625,114.5,151.9,48.0 -3.457,85.6,143.6,0.3828,0.03882,0.5376,0.4504,0.8223,3.457,85.6,143.6,49.0 -2.902,71.9,107.2,0.411,0.03882,0.5376,0.336,0.7905,2.902,71.9,107.2,50.0 -4.31,106.75,182.9,0.378,0.03882,0.5376,0.4504,0.955,4.31,106.75,182.9,51.0 -5.066,92.75,114.3,0.4612,0.0518,0.5547,0.2489,0.8945,5.066,92.75,114.3,52.0 -2.465,45.16,60.7,0.4397,0.0518,0.9644,0.4966,0.9077,2.465,45.16,60.7,53.0 -12.08,12.35,108.7,0.1836,0.4944,0.4197,0.1045,0.837,12.08,12.35,108.7,54.0 -4.176,16.61,190.6,0.0983,0.2009,0.914,0.3584,0.864,4.176,16.61,190.6,55.0 -4.2,18.27,154.4,0.1271,0.1869,0.719,0.3728,0.1343,4.2,18.27,154.4,56.0 -14.12,14.43,127.0,0.1836,0.4944,0.9644,0.4207,0.1848,14.12,14.43,127.0,57.0 -5.035,47.9,72.56,0.4219,0.09515,0.5376,0.8955,0.8164,5.035,47.9,72.56,58.0 -2.854,12.414,104.9,0.1271,0.1869,0.62,0.33,0.7886,2.854,12.414,104.9,59.0 -0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,0.0 -0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,1.0 -1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,2.0 -1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,3.0 -1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,4.0 -1.449,46.53,77.4,0.3828,0.03021,0.5156,0.379,0.228,1.449,46.53,77.4,5.0 -1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,6.0 -1.712,9.29,100.94,0.0983,0.1555,0.8833,0.3716,0.11,1.712,9.29,100.94,7.0 -1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,8.0 -1.881,68.0,89.06,0.4397,0.02692,0.0573,0.4207,0.11,1.881,68.0,89.06,9.0 -1.894,34.7,46.62,0.4397,0.0518,0.9907,0.4207,0.7847,1.894,34.7,46.62,10.0 -1.894,8.234,69.6,0.1271,0.1869,0.7754,0.1045,0.7886,1.894,8.234,69.6,11.0 -1.903,8.03,43.75,0.185,0.1915,0.989,0.4946,0.1848,1.903,8.03,43.75,12.0 -2.002,79.06,103.3,0.4397,0.02469,0.62,0.2715,0.1343,2.002,79.06,103.3,13.0 -2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,14.0 -2.238,8.12,71.1,0.1271,0.2161,0.62,0.2788,0.7993,2.238,8.12,71.1,15.0 -2.465,45.16,60.7,0.4397,0.0518,0.9644,0.4966,0.9077,2.465,45.16,60.7,16.0 -2.508,10.586,57.66,0.185,0.1915,0.898,0.8955,0.923,2.508,10.586,57.66,17.0 -2.73,50.0,67.2,0.4397,0.0518,0.9644,0.4966,0.1848,2.73,50.0,67.2,18.0 -2.768,68.56,119.5,0.3738,0.03882,0.53,0.4504,0.7847,2.768,68.56,119.5,19.0 -2.854,12.414,104.9,0.1271,0.1869,0.62,0.33,0.7886,2.854,12.414,104.9,20.0 -2.902,71.9,107.2,0.411,0.03882,0.5376,0.336,0.7905,2.902,71.9,107.2,21.0 -3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,22.0 -3.27,80.94,135.9,0.3828,0.03882,0.5376,0.379,0.259,3.27,80.94,135.9,23.0 -3.3,23.77,119.25,0.185,0.12195,0.898,0.2788,0.5444,3.3,23.77,119.25,24.0 -3.309,60.6,91.6,0.411,0.0518,0.9644,0.4207,0.1848,3.309,60.6,91.6,25.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,26.0 -3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,27.0 -3.38,83.75,124.9,0.411,0.03882,0.5376,0.4504,0.7847,3.38,83.75,124.9,28.0 -3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,29.0 -1.012,0.2228,226.2,0.00543,0.8193,0.5547,0.2489,0.1848,1.012,0.2228,226.2,30.0 -2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,31.0 -1.8545,45.94,68.5,0.411,0.03882,0.5376,0.3042,0.517,1.8545,45.94,68.5,32.0 -0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,33.0 -2.373,11.55,61.3,0.185,0.1704,0.898,0.2788,0.7847,2.373,11.55,61.3,34.0 -5.54,20.22,177.0,0.1271,0.2151,0.5903,0.2489,0.9355,5.54,20.22,177.0,35.0 -1.973,8.58,85.94,0.1093,0.1869,0.719,0.8955,0.923,1.973,8.58,85.94,36.0 -1.425,25.5,43.44,0.3828,0.05292,0.5156,0.4216,0.7075,1.425,25.5,43.44,37.0 -7.33,52.78,86.2,0.411,0.12195,0.898,0.2788,0.5444,7.33,52.78,86.2,38.0 -1.242,79.8,92.56,0.4668,0.01532,0.697,0.3428,0.7686,1.242,79.8,92.56,39.0 -0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,40.0 -1.406,25.75,186.5,0.1271,0.0518,0.9644,0.4207,0.1343,1.406,25.75,186.5,41.0 -3.002,74.3,124.7,0.3828,0.03882,0.5464,0.434,0.7847,3.002,74.3,124.7,42.0 -0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,43.0 -0.942,0.2085,210.9,0.00543,0.819,0.5376,0.4504,0.7847,0.942,0.2085,210.9,44.0 -2.56,18.44,93.94,0.1826,0.12195,0.898,0.2788,0.1718,2.56,18.44,93.94,45.0 -3.133,13.625,21.36,0.4397,0.1869,0.719,0.603,0.3013,3.133,13.625,21.36,46.0 -4.734,117.25,174.9,0.411,0.03882,0.5376,0.2489,0.955,4.734,117.25,174.9,47.0 -2.3,90.94,118.8,0.4397,0.02469,0.5376,0.4504,0.7847,2.3,90.94,118.8,48.0 -3.936,16.61,90.5,0.185,0.1915,0.898,0.4207,0.1718,3.936,16.61,90.5,49.0 -0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,50.0 -0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,51.0 -1.372,5.97,56.75,0.1145,0.1869,0.7197,0.4966,0.1848,1.372,5.97,56.75,52.0 -0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,53.0 -1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,54.0 -0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,55.0 -2.531,0.5576,94.7,0.0316,0.8193,0.01473,0.4216,0.1848,2.531,0.5576,94.7,56.0 -3.014,13.11,110.75,0.1271,0.1869,0.9214,0.914,0.923,3.014,13.11,110.75,57.0 -0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,58.0 -1.832,58.8,97.8,0.3828,0.03021,0.5156,0.3682,0.228,1.832,58.8,97.8,59.0 -0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,0.0 -0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,1.0 -0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,2.0 -0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,3.0 -0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,4.0 -0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,5.0 -0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,6.0 -0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,7.0 -0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,8.0 -0.942,0.2085,210.9,0.00543,0.819,0.5376,0.4504,0.7847,0.942,0.2085,210.9,9.0 -0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,10.0 -1.012,0.2228,226.2,0.00543,0.8193,0.5547,0.2489,0.1848,1.012,0.2228,226.2,11.0 -1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,12.0 -1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,13.0 -1.242,79.8,92.56,0.4668,0.01532,0.697,0.3428,0.7686,1.242,79.8,92.56,14.0 -1.372,5.97,56.75,0.1145,0.1869,0.7197,0.4966,0.1848,1.372,5.97,56.75,15.0 -1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,16.0 -1.406,25.75,186.5,0.1271,0.0518,0.9644,0.4207,0.1343,1.406,25.75,186.5,17.0 -1.425,25.5,43.44,0.3828,0.05292,0.5156,0.4216,0.7075,1.425,25.5,43.44,18.0 -1.449,46.53,77.4,0.3828,0.03021,0.5156,0.379,0.228,1.449,46.53,77.4,19.0 -1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,20.0 -1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,21.0 -1.712,9.29,100.94,0.0983,0.1555,0.8833,0.3716,0.11,1.712,9.29,100.94,22.0 -1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,23.0 -1.832,58.8,97.8,0.3828,0.03021,0.5156,0.3682,0.228,1.832,58.8,97.8,24.0 -1.8545,45.94,68.5,0.411,0.03882,0.5376,0.3042,0.517,1.8545,45.94,68.5,25.0 -1.881,68.0,89.06,0.4397,0.02692,0.0573,0.4207,0.11,1.881,68.0,89.06,26.0 -1.894,34.7,46.62,0.4397,0.0518,0.9907,0.4207,0.7847,1.894,34.7,46.62,27.0 -1.894,8.234,69.6,0.1271,0.1869,0.7754,0.1045,0.7886,1.894,8.234,69.6,28.0 -1.903,8.03,43.75,0.185,0.1915,0.989,0.4946,0.1848,1.903,8.03,43.75,29.0 -3.336,107.1,178.1,0.3828,0.03021,0.5625,0.4504,0.856,3.336,107.1,178.1,30.0 -1.258,40.38,67.1,0.3828,0.03021,0.5156,0.379,0.3235,1.258,40.38,67.1,31.0 -3.104,16.84,183.0,0.0983,0.1555,0.8833,0.3657,0.7617,3.104,16.84,183.0,32.0 -0.648,0.1427,144.9,0.00543,0.8193,0.62,0.33,0.1791,0.648,0.1427,144.9,33.0 -10.484,58.66,79.6,0.4648,0.1516,0.9644,0.4207,0.1876,10.484,58.66,79.6,34.0 -1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,35.0 -2.438,13.234,143.8,0.0983,0.1555,0.5234,0.4504,0.907,2.438,13.234,143.8,36.0 -0.9517,61.16,66.44,0.4832,0.01532,0.5156,0.4348,0.2156,0.9517,61.16,66.44,37.0 -0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,38.0 -0.1788,5.008,35.62,0.1271,0.0345,0.7197,0.603,0.3013,0.1788,5.008,35.62,39.0 -0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,40.0 -1.685,9.14,160.1,0.06335,0.1555,0.671,0.452,0.1952,1.685,9.14,160.1,41.0 -1.817,8.12,43.75,0.185,0.183,0.989,0.4946,0.1848,1.817,8.12,43.75,42.0 -1.513,59.75,78.06,0.4397,0.02469,0.7197,0.379,0.228,1.513,59.75,78.06,43.0 -23.14,5.094,222.5,0.1126,0.8193,0.5547,0.2489,0.1769,23.14,5.094,222.5,44.0 -1.919,97.75,127.06,0.4397,0.01926,0.5537,0.4216,0.7373,1.919,97.75,127.06,45.0 -12.17,2.68,294.2,0.04803,0.8193,0.5547,0.2489,0.955,12.17,2.68,294.2,46.0 -1.005,4.37,106.56,0.04803,0.1869,0.8833,0.3716,0.11,1.005,4.37,106.56,47.0 -0.9473,4.12,100.4,0.04803,0.1869,0.62,0.33,0.3013,0.9473,4.12,100.4,48.0 -4.77,20.75,148.1,0.147,0.1869,0.697,0.3428,0.7686,4.77,20.75,148.1,49.0 -0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,50.0 -1.718,62.1,81.3,0.4397,0.02692,0.0573,0.414,0.786,1.718,62.1,81.3,51.0 -1.369,5.953,50.3,0.1271,0.1869,0.719,0.603,0.786,1.369,5.953,50.3,52.0 -1.029,0.2367,232.0,0.00543,0.813,0.5156,0.2489,0.955,1.029,0.2367,232.0,53.0 -2.318,12.586,82.06,0.1537,0.1555,0.8833,0.3716,0.3013,2.318,12.586,82.06,54.0 -0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,55.0 -0.557,0.12274,124.6,0.00543,0.8193,0.5547,0.1045,0.11,0.557,0.12274,124.6,56.0 -2.377,76.3,126.94,0.3828,0.03021,0.5117,0.3428,0.7417,2.377,76.3,126.94,57.0 -0.583,23.05,30.11,0.4397,0.02469,0.7197,0.6123,0.3013,0.583,23.05,30.11,58.0 -0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,59.0 -0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,0.0 -0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,1.0 -0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,2.0 -0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,3.0 -0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,4.0 -0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,5.0 -0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,6.0 -0.1788,5.008,35.62,0.1271,0.0345,0.7197,0.603,0.3013,0.1788,5.008,35.62,7.0 -0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,8.0 -0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,9.0 -0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,10.0 -0.557,0.12274,124.6,0.00543,0.8193,0.5547,0.1045,0.11,0.557,0.12274,124.6,11.0 -0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,12.0 -0.583,23.05,30.11,0.4397,0.02469,0.7197,0.6123,0.3013,0.583,23.05,30.11,13.0 -0.648,0.1427,144.9,0.00543,0.8193,0.62,0.33,0.1791,0.648,0.1427,144.9,14.0 -0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,15.0 -0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,16.0 -0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,17.0 -0.942,0.2085,210.9,0.00543,0.819,0.5376,0.4504,0.7847,0.942,0.2085,210.9,18.0 -0.9473,4.12,100.4,0.04803,0.1869,0.62,0.33,0.3013,0.9473,4.12,100.4,19.0 -0.9517,61.16,66.44,0.4832,0.01532,0.5156,0.4348,0.2156,0.9517,61.16,66.44,20.0 -0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,21.0 -1.005,4.37,106.56,0.04803,0.1869,0.8833,0.3716,0.11,1.005,4.37,106.56,22.0 -1.012,0.2228,226.2,0.00543,0.8193,0.5547,0.2489,0.1848,1.012,0.2228,226.2,23.0 -1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,24.0 -1.029,0.2367,232.0,0.00543,0.813,0.5156,0.2489,0.955,1.029,0.2367,232.0,25.0 -1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,26.0 -1.242,79.8,92.56,0.4668,0.01532,0.697,0.3428,0.7686,1.242,79.8,92.56,27.0 -1.258,40.38,67.1,0.3828,0.03021,0.5156,0.379,0.3235,1.258,40.38,67.1,28.0 -1.369,5.953,50.3,0.1271,0.1869,0.719,0.603,0.786,1.369,5.953,50.3,29.0 -0.1581,0.03482,35.34,0.00543,0.8193,0.5156,0.4004,0.3103,0.1581,0.03482,35.34,30.0 -0.9624,17.62,127.7,0.1271,0.0518,0.898,0.2788,0.5444,0.9624,17.62,127.7,31.0 -1.688,7.344,179.0,0.04803,0.1869,0.8833,0.3716,0.1381,1.688,7.344,179.0,32.0 -1.692,108.8,97.6,0.531,0.01532,0.5474,0.412,0.3584,1.692,108.8,97.6,33.0 -0.8477,54.47,59.16,0.4832,0.01532,0.5156,0.4348,0.3103,0.8477,54.47,59.16,34.0 -0.8,51.4,105.44,0.3313,0.01532,0.898,0.2593,0.5264,0.8,51.4,105.44,35.0 -0.08136,2.611,82.5,0.0316,0.03021,0.5156,0.8955,0.923,0.08136,2.611,82.5,36.0 -0.00858,0.2129,40.6,0.00543,0.03876,0.7197,0.603,0.3013,0.00858,0.2129,40.6,37.0 -0.8374,53.8,47.16,0.5366,0.01532,0.697,0.3428,0.3013,0.8374,53.8,47.16,38.0 -0.833,53.53,62.1,0.4668,0.01532,0.697,0.3428,0.7886,0.833,53.53,62.1,39.0 -0.12396,0.539,124.06,0.005318,0.1869,0.65,0.603,0.786,0.12396,0.539,124.06,40.0 -1.12,0.2467,250.5,0.00543,0.8193,0.5547,0.2488,0.776,1.12,0.2467,250.5,41.0 -1.14,73.25,70.6,0.513,0.01532,0.5156,0.4504,0.786,1.14,73.25,70.6,42.0 -0.03796,1.537,48.28,0.0316,0.02412,0.5156,0.1045,0.7886,0.03796,1.537,48.28,43.0 -0.05725,3.68,115.94,0.03122,0.01532,0.898,0.3115,0.5444,0.05725,3.68,115.94,44.0 -0.4924,0.1084,110.1,0.00543,0.8193,0.5547,0.2078,0.3013,0.4924,0.1084,110.1,45.0 -0.04007,1.194,147.5,0.0083,0.03244,0.5156,0.447,0.2156,0.04007,1.194,147.5,46.0 -1.332,52.62,68.75,0.4397,0.02469,0.7197,0.379,0.3235,1.332,52.62,68.75,47.0 -0.9785,62.88,96.2,0.399,0.01532,0.9644,0.4778,0.1848,0.9785,62.88,96.2,48.0 -1.376,44.16,57.38,0.4426,0.03021,0.8833,0.3716,0.10126,1.376,44.16,57.38,49.0 -1.675,53.78,89.44,0.3828,0.03021,0.5156,0.4207,0.1345,1.675,53.78,89.44,50.0 -1.902,23.34,173.5,0.1271,0.0753,0.9644,0.5664,0.3179,1.902,23.34,173.5,51.0 -1.211,5.496,46.06,0.1271,0.1805,0.719,0.603,0.7886,1.211,5.496,46.06,52.0 -0.8936,18.19,30.77,0.3828,0.04684,0.5156,0.1045,0.7886,0.8936,18.19,30.77,53.0 -0.0761,2.443,77.25,0.0316,0.03021,0.5156,0.41,0.3235,0.0761,2.443,77.25,54.0 -0.01772,0.5283,194.6,0.002796,0.03244,0.9375,0.4207,0.228,0.01772,0.5283,194.6,55.0 -0.5938,23.45,31.42,0.4336,0.02469,0.7197,0.603,0.7886,0.5938,23.45,31.42,56.0 -0.9688,4.21,158.9,0.0316,0.1869,0.8833,0.3716,0.1289,0.9688,4.21,158.9,57.0 -0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,58.0 -1.0,32.1,53.4,0.3828,0.03021,0.5156,0.8955,0.9233,1.0,32.1,53.4,59.0 -0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,0.0 -0.00858,0.2129,40.6,0.00543,0.03876,0.7197,0.603,0.3013,0.00858,0.2129,40.6,1.0 -0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,2.0 -0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,3.0 -0.01772,0.5283,194.6,0.002796,0.03244,0.9375,0.4207,0.228,0.01772,0.5283,194.6,4.0 -0.03796,1.537,48.28,0.0316,0.02412,0.5156,0.1045,0.7886,0.03796,1.537,48.28,5.0 -0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,6.0 -0.04007,1.194,147.5,0.0083,0.03244,0.5156,0.447,0.2156,0.04007,1.194,147.5,7.0 -0.05725,3.68,115.94,0.03122,0.01532,0.898,0.3115,0.5444,0.05725,3.68,115.94,8.0 -0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,9.0 -0.0761,2.443,77.25,0.0316,0.03021,0.5156,0.41,0.3235,0.0761,2.443,77.25,10.0 -0.08136,2.611,82.5,0.0316,0.03021,0.5156,0.8955,0.923,0.08136,2.611,82.5,11.0 -0.12396,0.539,124.06,0.005318,0.1869,0.65,0.603,0.786,0.12396,0.539,124.06,12.0 -0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,13.0 -0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,14.0 -0.1581,0.03482,35.34,0.00543,0.8193,0.5156,0.4004,0.3103,0.1581,0.03482,35.34,15.0 -0.1788,5.008,35.62,0.1271,0.0345,0.7197,0.603,0.3013,0.1788,5.008,35.62,16.0 -0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,17.0 -0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,18.0 -0.4924,0.1084,110.1,0.00543,0.8193,0.5547,0.2078,0.3013,0.4924,0.1084,110.1,19.0 -0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,20.0 -0.557,0.12274,124.6,0.00543,0.8193,0.5547,0.1045,0.11,0.557,0.12274,124.6,21.0 -0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,22.0 -0.583,23.05,30.11,0.4397,0.02469,0.7197,0.6123,0.3013,0.583,23.05,30.11,23.0 -0.5938,23.45,31.42,0.4336,0.02469,0.7197,0.603,0.7886,0.5938,23.45,31.42,24.0 -0.648,0.1427,144.9,0.00543,0.8193,0.62,0.33,0.1791,0.648,0.1427,144.9,25.0 -0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,26.0 -0.8,51.4,105.44,0.3313,0.01532,0.898,0.2593,0.5264,0.8,51.4,105.44,27.0 -0.833,53.53,62.1,0.4668,0.01532,0.697,0.3428,0.7886,0.833,53.53,62.1,28.0 -0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,29.0 -0.010124,0.302,111.3,0.002796,0.03244,0.9824,0.4314,0.3013,0.010124,0.302,111.3,30.0 -0.3245,0.0928,162.0,0.00257,0.778,0.01473,0.4236,0.1343,0.3245,0.0928,162.0,31.0 -0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,32.0 -0.1951,6.26,127.94,0.04803,0.03021,0.4575,0.2893,0.1848,0.1951,6.26,127.94,33.0 -0.3982,0.08765,89.0,0.00543,0.8193,0.5156,0.395,0.228,0.3982,0.08765,89.0,34.0 -0.7393,47.5,97.44,0.3313,0.01532,0.62,0.33,0.1791,0.7393,47.5,97.44,35.0 -0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,36.0 -0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,37.0 -0.0549,1.763,143.0,0.01255,0.03021,0.5156,0.4504,0.2856,0.0549,1.763,143.0,38.0 -0.5996,38.56,107.1,0.2676,0.01532,0.898,0.2788,0.5444,0.5996,38.56,107.1,39.0 -0.02827,0.701,133.6,0.00543,0.03876,0.7197,0.603,0.2411,0.02827,0.701,133.6,40.0 -0.1198,3.846,121.56,0.0316,0.03021,0.5156,0.4504,0.3013,0.1198,3.846,121.56,41.0 -2.338,75.06,158.6,0.3281,0.03021,0.4746,0.4504,0.8345,2.338,75.06,158.6,42.0 -0.1328,0.03796,79.7,0.002136,0.778,0.01203,0.4207,0.11,0.1328,0.03796,79.7,43.0 -1.17,37.56,50.78,0.4329,0.03021,0.5156,0.395,0.228,1.17,37.56,50.78,44.0 -0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,45.0 -0.05728,0.2491,57.3,0.005318,0.1869,0.719,0.603,0.786,0.05728,0.2491,57.3,46.0 -0.1377,4.418,139.8,0.0316,0.03021,0.5156,0.4207,0.1343,0.1377,4.418,139.8,47.0 -0.1241,3.984,125.94,0.0316,0.03021,0.5156,0.4626,0.786,0.1241,3.984,125.94,48.0 -0.01628,0.467,88.56,0.00543,0.0337,0.898,0.2788,0.5786,0.01628,0.467,88.56,49.0 -0.02982,1.203,147.2,0.0083,0.02419,0.5156,0.447,0.2156,0.02982,1.203,147.2,50.0 -0.015205,0.4534,167.1,0.002796,0.03244,0.671,0.4207,0.1718,0.015205,0.4534,167.1,51.0 -0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,52.0 -2.818,87.94,115.6,0.4397,0.03107,0.898,0.3518,0.5444,2.818,87.94,115.6,53.0 -0.9067,58.25,76.6,0.4358,0.01532,0.898,0.2822,0.5444,0.9067,58.25,76.6,54.0 -0.5557,0.1241,124.6,0.00543,0.8174,0.5547,0.1045,0.11,0.5557,0.1241,124.6,55.0 -0.012474,0.372,162.9,0.002356,0.03244,0.9824,0.33,0.1746,0.012474,0.372,162.9,56.0 -0.02089,5.023,151.5,0.03226,0.004143,0.5156,0.379,0.7407,0.02089,5.023,151.5,57.0 -0.012054,2.898,87.3,0.03226,0.004143,0.5156,0.3943,0.228,0.012054,2.898,87.3,58.0 -3.85,0.8477,141.0,0.03226,0.8193,0.62,0.33,0.1791,3.85,0.8477,141.0,59.0 -0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,0.0 -0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,1.0 -0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,2.0 -0.00858,0.2129,40.6,0.00543,0.03876,0.7197,0.603,0.3013,0.00858,0.2129,40.6,3.0 -0.010124,0.302,111.3,0.002796,0.03244,0.9824,0.4314,0.3013,0.010124,0.302,111.3,4.0 -0.012054,2.898,87.3,0.03226,0.004143,0.5156,0.3943,0.228,0.012054,2.898,87.3,5.0 -0.012474,0.372,162.9,0.002356,0.03244,0.9824,0.33,0.1746,0.012474,0.372,162.9,6.0 -0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,7.0 -0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,8.0 -0.015205,0.4534,167.1,0.002796,0.03244,0.671,0.4207,0.1718,0.015205,0.4534,167.1,9.0 -0.01628,0.467,88.56,0.00543,0.0337,0.898,0.2788,0.5786,0.01628,0.467,88.56,10.0 -0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,11.0 -0.01772,0.5283,194.6,0.002796,0.03244,0.9375,0.4207,0.228,0.01772,0.5283,194.6,12.0 -0.02089,5.023,151.5,0.03226,0.004143,0.5156,0.379,0.7407,0.02089,5.023,151.5,13.0 -0.02827,0.701,133.6,0.00543,0.03876,0.7197,0.603,0.2411,0.02827,0.701,133.6,14.0 -0.02982,1.203,147.2,0.0083,0.02419,0.5156,0.447,0.2156,0.02982,1.203,147.2,15.0 -0.03796,1.537,48.28,0.0316,0.02412,0.5156,0.1045,0.7886,0.03796,1.537,48.28,16.0 -0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,17.0 -0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,18.0 -0.04007,1.194,147.5,0.0083,0.03244,0.5156,0.447,0.2156,0.04007,1.194,147.5,19.0 -0.0549,1.763,143.0,0.01255,0.03021,0.5156,0.4504,0.2856,0.0549,1.763,143.0,20.0 -0.05725,3.68,115.94,0.03122,0.01532,0.898,0.3115,0.5444,0.05725,3.68,115.94,21.0 -0.05728,0.2491,57.3,0.005318,0.1869,0.719,0.603,0.786,0.05728,0.2491,57.3,22.0 -0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,23.0 -0.0761,2.443,77.25,0.0316,0.03021,0.5156,0.41,0.3235,0.0761,2.443,77.25,24.0 -0.08136,2.611,82.5,0.0316,0.03021,0.5156,0.8955,0.923,0.08136,2.611,82.5,25.0 -0.1198,3.846,121.56,0.0316,0.03021,0.5156,0.4504,0.3013,0.1198,3.846,121.56,26.0 -0.12396,0.539,124.06,0.005318,0.1869,0.65,0.603,0.786,0.12396,0.539,124.06,27.0 -0.1241,3.984,125.94,0.0316,0.03021,0.5156,0.4626,0.786,0.1241,3.984,125.94,28.0 -0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,29.0 -0.003273,0.1324,48.38,0.002796,0.02412,0.5156,0.098,0.7886,0.003273,0.1324,48.38,30.0 -0.0188,0.466,98.6,0.004894,0.03876,0.7407,0.603,0.3013,0.0188,0.466,98.6,31.0 -0.0377,1.524,47.9,0.0316,0.02412,0.5156,0.11334,0.3013,0.0377,1.524,47.9,32.0 -0.0337,0.4197,89.06,0.005066,0.0743,0.5156,0.395,0.228,0.0337,0.4197,89.06,33.0 -0.0236,1.518,47.8,0.03122,0.01532,0.898,0.3115,0.3167,0.0236,1.518,47.8,34.0 -0.02122,0.681,74.44,0.009346,0.03021,0.5156,0.4207,0.312,0.02122,0.681,74.44,35.0 -0.02716,6.53,196.9,0.03226,0.004143,0.5156,0.453,0.2343,0.02716,6.53,196.9,36.0 -0.010124,0.302,111.3,0.002796,0.03244,0.9824,0.4314,0.3013,0.010124,0.302,111.3,37.0 -0.01539,0.3816,12.164,0.0316,0.03876,0.609,0.603,0.3013,0.01539,0.3816,12.164,38.0 -0.03004,1.931,38.84,0.04803,0.01532,0.7197,0.603,0.3013,0.03004,1.931,38.84,39.0 -0.123,0.5825,131.9,0.005318,0.1743,0.7197,0.603,0.2598,0.123,0.5825,131.9,40.0 -0.6655,2.895,62.72,0.05374,0.1869,0.719,0.603,0.3179,0.6655,2.895,62.72,41.0 -0.0627,3.623,86.4,0.04092,0.01701,0.5176,0.8955,0.923,0.0627,3.623,86.4,42.0 -0.02008,3.643,109.94,0.03226,0.00548,0.565,0.4912,0.2156,0.02008,3.643,109.94,43.0 -0.01793,0.4446,84.75,0.00543,0.03876,0.5156,0.8955,0.923,0.01793,0.4446,84.75,44.0 -0.04663,2.996,101.2,0.0292,0.01532,0.671,0.4207,0.3013,0.04663,2.996,101.2,45.0 -0.01732,1.113,135.0,0.0083,0.01532,0.7197,0.5557,0.3013,0.01732,1.113,135.0,46.0 -0.004715,0.1908,69.7,0.002796,0.02412,0.5225,0.1045,0.7886,0.004715,0.1908,69.7,47.0 -0.0244,0.7275,137.8,0.00543,0.03244,0.5117,0.447,0.2156,0.0244,0.7275,137.8,48.0 -0.01179,0.3516,129.6,0.002796,0.03244,0.9375,0.603,0.2812,0.01179,0.3516,129.6,49.0 -0.02681,1.085,34.06,0.0316,0.02412,0.5156,0.1045,0.3013,0.02681,1.085,34.06,50.0 -0.2299,7.38,150.8,0.04803,0.03021,0.5156,0.4207,0.2568,0.2299,7.38,150.8,51.0 -0.003702,0.1104,40.7,0.002796,0.03244,0.7197,0.603,0.3013,0.003702,0.1104,40.7,52.0 -0.2703,17.38,151.4,0.10443,0.01532,0.898,0.3289,0.5444,0.2703,17.38,151.4,53.0 -0.01822,0.585,110.5,0.00543,0.03021,0.5376,0.4841,0.3013,0.01822,0.585,110.5,54.0 -0.006306,0.4053,190.4,0.002157,0.01532,0.671,0.447,0.2156,0.006306,0.4053,190.4,55.0 -0.00999,0.2343,87.06,0.002796,0.0409,0.664,0.603,0.3013,0.00999,0.2343,87.06,56.0 -0.02046,1.315,69.75,0.0188,0.01532,0.876,0.3115,0.3013,0.02046,1.315,69.75,57.0 -0.00989,0.6353,118.25,0.00543,0.01532,0.671,0.4207,0.7886,0.00989,0.6353,118.25,58.0 -0.8486,3.691,100.7,0.04315,0.1869,0.65,0.603,0.3013,0.8486,3.691,100.7,59.0 diff --git a/spotpy/examples/cmf_data/driver_data_site24.csv b/spotpy/examples/cmf_data/driver_data_site24.csv deleted file mode 100644 index b8f81149..00000000 --- a/spotpy/examples/cmf_data/driver_data_site24.csv +++ /dev/null @@ -1,26312 +0,0 @@ -time,rain_mmday,airpressure_hPa,solarrad_Wm2,relhum_perc,airtemp_degC,windspeed_ms,gwhead_m -# -# A dataset containing data from a weather station at the Schwingbach near Rechtenbach, Hesse, Germany -# The data is cortesey of the Chair of Landscape, Water and Biogeochemical Cycles, Justus-Liebig-University Gießen -# https://www.uni-giessen.de/faculties/f09/institutes/ilr/hydro -# This dataset can be used for any purpose with proper references in publications -# The data is provided AS IS with no guarantee of correctness -# -2014-01-01 00:00:00,0.0,1007.89,0.0,93.38333333,0.814583333,2.619416667,238.033129 -2014-01-01 01:00:00,0.0,1007.6833330000001,0.0,93.20833333,0.711833333,2.4714166669999997,238.03279999999998 -2014-01-01 02:00:00,0.0,1007.835,0.0,96.175,0.8290833329999999,2.063583333,238.03185999999997 -2014-01-01 03:00:00,0.0,1007.583333,0.0,97.93333333,1.038666667,1.585,238.03123333333335 -2014-01-01 04:00:00,0.0,1007.633333,0.0,98.175,1.233666667,1.1610833329999999,238.030591 -2014-01-01 05:00:00,7.4303490000000005,1007.768333,0.0,99.325,1.342916667,0.44175,238.029933 -2014-01-01 06:00:00,9.72714384,1008.093333,0.0,100.0,1.203416667,0.38508333299999997,238.030262 -2014-01-01 07:00:00,0.0,1008.25,0.0,100.0,1.201916667,0.5063333329999999,238.02863266666665 -2014-01-01 08:00:00,0.0,1008.533333,0.9466916670000001,100.0,1.33925,0.432833333,238.028006 -2014-01-01 09:00:00,0.0,1008.655,23.31233333,100.0,2.02575,0.307,238.0276926666667 -2014-01-01 10:00:00,0.0,1008.653333,47.53175,100.0,3.240583333,1.01425,238.02737933333336 -2014-01-01 11:00:00,0.0,1008.421667,57.31483333,99.98333333,4.778416667,1.764666667,238.02673700000003 -2014-01-01 12:00:00,0.0,1007.721667,117.77325,93.56666667,5.675333332999999,2.769166667,238.02706600000002 -2014-01-01 13:00:00,0.0,1007.158333,129.1931667,79.5175,6.307583332999999,1.9751666669999999,238.028006 -2014-01-01 14:00:00,0.0,1006.53,54.94475,79.76083333,5.722583332999999,2.1278333330000003,238.02769266666667 -2014-01-01 15:00:00,0.0,1006.138333,27.01708333,86.99,5.191,1.90575,238.02673700000003 -2014-01-01 16:00:00,0.0,1005.483333,3.905183333,93.85833333,4.637166667,2.4493333330000002,238.02706600000002 -2014-01-01 17:00:00,0.0,1005.071667,0.0,93.9,4.887416667,2.665333333,238.026079 -2014-01-01 18:00:00,0.0,1004.1,0.0,92.55,5.084916667,3.0068333330000003,238.02575000000002 -2014-01-01 19:00:00,0.0,1003.345,0.0,91.34166667,4.697833333,2.440833333,238.02640800000003 -2014-01-01 20:00:00,0.0,1002.525,0.0,89.575,5.008666667,2.7689999999999997,238.02575000000002 -2014-01-01 21:00:00,0.0,1002.228333,0.0,87.55,5.813083333,4.369083333,238.02640800000003 -2014-01-01 22:00:00,5.603779007999999,1001.565,0.0,88.43333333,5.5615,4.518,238.02673700000003 -2014-01-01 23:00:00,0.0,1000.94,0.0,89.28333333,5.403083333,4.074833333,238.02640800000003 -2014-02-01 00:00:00,7.9645746,1000.323333,0.0,92.44166667,5.186833333,3.51225,238.0677895 -2014-02-01 01:00:00,0.0,999.3466667000001,0.0,89.36666667,5.06025,3.333583333,238.0672819 -2014-02-01 02:00:00,0.0,998.9916667000001,0.0,87.11666667,5.255166667,2.6860000000000004,238.0670281 -2014-02-01 03:00:00,0.0,998.8233332999998,0.0,83.5,5.660583333,2.1125833330000003,238.0670281 -2014-02-01 04:00:00,7.546049568,998.0033332999999,0.0,85.3,5.861916667000001,3.239833333,238.06728189999998 -2014-02-01 05:00:00,3.845696208,997.39,0.0,86.56666667,5.966416667000001,3.3631666669999998,238.0670281 -2014-02-01 06:00:00,11.46033955,997.2033332999998,0.0,91.70833333,6.2423333329999995,3.34025,238.06678639999998 -2014-02-01 07:00:00,3.82098684,997.15,0.0,93.325,6.904333332999999,4.009333333,238.0665447 -2014-02-01 08:00:00,0.0,997.38,1.65655,93.20833333,6.893583333,3.475666667,238.06630300000003 -2014-02-01 09:00:00,0.0,997.5266667000001,9.861308333,94.09166667,7.047000000000001,4.144666667,238.06630300000003 -2014-02-01 10:00:00,0.0,997.7366667000001,33.21033333,93.54166667,7.4335,4.155416667,238.06556580000003 -2014-02-01 11:00:00,0.0,997.85,54.13683333,91.59166667,7.720166667000001,3.9635,238.0643089 -2014-02-01 12:00:00,0.0,997.7916667000002,68.96575,90.60833333,8.654166667,4.226333333,238.06507030000003 -2014-02-01 13:00:00,0.0,997.7166667000001,76.28191667,89.99166667,8.890833333,3.8018333330000003,238.06456269999998 -2014-02-01 14:00:00,0.0,998.1616667000002,36.48341667,88.81666667,9.735833332999999,2.503833333,238.06380131666666 -2014-02-01 15:00:00,0.0,999.1416667000001,32.79616667,86.54166667,9.466666667,2.827,238.06380131666666 -2014-02-01 16:00:00,0.0,999.97,6.251758333,87.95833333,8.603166667,1.865083333,238.06380131666666 -2014-02-01 17:00:00,0.0,1000.995,0.019716667,88.06666667,7.63,1.55725,238.0648165 -2014-02-01 18:00:00,0.0,1001.915,0.0,87.7,6.3201666670000005,0.56925,238.06678639999998 -2014-02-01 19:00:00,0.0,1002.793333,0.0,90.2,6.801916667,1.3831666669999998,238.0677895 -2014-02-01 20:00:00,0.0,1003.165,0.0,91.70833333,5.3463333330000005,0.755,238.06879260000002 -2014-02-01 21:00:00,0.0,1003.79,0.0,93.38333333,2.5556666669999997,0.2905,238.06975939999998 -2014-02-01 22:00:00,0.0,1004.1916669999999,0.0,96.59166667,0.735583333,0.18958333300000002,238.07025489999998 -2014-02-01 23:00:00,0.0,1004.491667,0.0,99.56666667,1.8759166669999998,0.781416667,238.07000109999998 -2014-03-01 00:00:00,0.0,1004.533333,0.0,100.0,3.835583333,2.2141666669999998,238.0328026 -2014-03-01 01:00:00,0.0,1004.296667,0.0,100.0,2.711083333,1.3176666670000001,238.0327905 -2014-03-01 02:00:00,0.0,1004.3116669999999,0.0,100.0,1.4069999999999998,0.374666667,238.03254879999997 -2014-03-01 03:00:00,0.0,1004.223333,0.0,100.0,3.0811666669999997,1.2046666670000001,238.03204119999998 -2014-03-01 04:00:00,0.0,1003.975,0.0,96.425,4.828166667,1.7435,238.03229499999998 -2014-03-01 05:00:00,0.0,1003.781667,0.0,99.15,2.3056666669999997,0.400916667,238.0320412 -2014-03-01 06:00:00,0.0,1003.271667,0.0,99.84166667,4.098666667,2.772916667,238.0315336 -2014-03-01 07:00:00,0.0,1003.151667,0.0,96.40833333,5.419,2.93925,238.0312798 -2014-03-01 08:00:00,0.0,1002.8,3.135475,99.5,5.43575,1.518083333,238.0310260166667 -2014-03-01 09:00:00,3.158508144,1002.521667,21.57575,86.66666667,6.494333332999999,2.1669166669999997,238.03051845000002 -2014-03-01 10:00:00,6.414283056,1002.783333,22.56041667,89.25,6.5405,2.979166667,238.03026466666668 -2014-03-01 11:00:00,0.0,1002.991667,16.0125,86.55833333,7.468999999999999,3.5175,238.0310260166667 -2014-03-01 12:00:00,3.22332792,1002.76,15.65841667,87.025,8.038666667000001,1.9769166669999998,238.0312798 -2014-03-01 13:00:00,0.0,1002.935,15.9145,88.875,9.774166667000001,2.668333333,238.03077223333335 -2014-03-01 14:00:00,0.0,1002.825,63.16508333,88.63333333,9.148333333,2.55225,238.0310260166667 -2014-03-01 15:00:00,0.0,1002.8133330000001,34.57183333,87.70833333,8.13575,2.3689166669999997,238.03001088333335 -2014-03-01 16:00:00,0.0,1002.911667,4.220475,87.175,8.02375,3.148416667,238.0310260166667 -2014-03-01 17:00:00,0.0,1002.623333,0.019716667,88.325,7.409416667,1.9135,238.0297571 -2014-03-01 18:00:00,0.0,1002.831667,0.0,87.23333333,9.715333333,2.35,238.03051844999996 -2014-03-01 19:00:00,0.0,1003.245,0.0,84.41666667,9.885,2.525666667,238.03026466666668 -2014-03-01 20:00:00,0.0,1003.325,0.0,83.39166667,9.219166667,3.4595833330000003,238.03001088333335 -2014-03-01 21:00:00,0.0,1003.853333,0.0,79.98916667,11.16833333,3.290916667,238.0297571 -2014-03-01 22:00:00,0.0,1004.175,0.0,81.07583333,10.4475,2.5718333330000003,238.02927366666668 -2014-03-01 23:00:00,0.0,1005.046667,0.0,74.47083333,10.16666667,2.763583333,238.02879023333335 -2014-04-01 00:00:00,0.0,1005.951667,0.0,71.52416667,9.639166667000001,3.155833333,237.95717280000005 -2014-04-01 01:00:00,0.0,1006.761667,0.0,72.52833333,8.874166667,2.664083333,237.95752370000002 -2014-04-01 02:00:00,0.0,1007.3166669999999,0.0,76.9225,8.04975,1.65025,237.95752370000002 -2014-04-01 03:00:00,0.0,1007.61,0.0,82.41666667,6.114833332999999,1.759916667,237.95752370000002 -2014-04-01 04:00:00,0.0,1007.488333,0.0,91.69166667,5.33725,1.331916667,237.95717280000005 -2014-04-01 05:00:00,0.0,1006.976667,0.0,97.34166667,3.5245,0.722916667,237.9568386166667 -2014-04-01 06:00:00,0.0,1006.086667,0.0,92.5,3.8545,1.7788333330000001,237.95717280000005 -2014-04-01 07:00:00,0.0,1005.671667,0.0,99.05,4.092666667,2.599166667,237.9568386166667 -2014-04-01 08:00:00,0.0,1005.453333,2.446033333,100.0,4.119083333,2.3304166669999997,237.95752370000002 -2014-04-01 09:00:00,0.0,1004.96,14.9905,100.0,4.7700833330000005,2.45,237.95927819999997 -2014-04-01 10:00:00,0.0,1003.968333,35.5215,98.03333333,5.54275,1.134333333,237.9578746 -2014-04-01 11:00:00,0.0,1003.051667,44.8665,92.94166667,5.720416667,0.81275,237.9585764 -2014-04-01 12:00:00,0.0,1001.798333,45.33725,91.075,5.872333332999999,0.62025,237.9585764 -2014-04-01 13:00:00,0.0,999.965,74.81075,87.30833333,7.047333332999999,0.481916667,237.95927819999997 -2014-04-01 14:00:00,0.0,998.6316667000001,30.39166667,88.95,7.05075,0.5581666670000001,237.95927819999997 -2014-04-01 15:00:00,0.0,997.495,13.03563333,89.49166667,6.7110833329999995,0.9674166670000001,237.9589273 -2014-04-01 16:00:00,0.0,996.305,1.9915583330000002,91.89166667,5.82625,0.591333333,237.95927819999997 -2014-04-01 17:00:00,0.0,995.6166667000001,0.0,97.3,5.111833333,0.18858333300000002,237.9585764 -2014-04-01 18:00:00,0.0,995.225,0.0,98.78333333,5.291166667,0.776333333,237.9585764 -2014-04-01 19:00:00,0.0,994.5766667000001,0.0,96.31666667,5.917333332999999,0.7314166670000001,237.95717280000005 -2014-04-01 20:00:00,0.0,993.9583332999998,0.0,98.1,5.330166667,0.82875,237.95717280000005 -2014-04-01 21:00:00,0.0,993.6916667000002,0.0,99.98333333,4.288083333,0.335083333,237.95717280000005 -2014-04-01 22:00:00,0.0,993.88,0.0,99.71666667,5.02025,0.6005,237.9568386166667 -2014-04-01 23:00:00,0.0,993.775,0.0,99.91666667,3.745333333,0.39833333299999996,237.95683861666672 -2014-05-01 00:00:00,0.0,993.8516667000001,0.0,100.0,2.737916667,0.39175,237.89297551666667 -2014-05-01 01:00:00,0.0,994.0233332999999,0.0,100.0,4.1681666669999995,1.044166667,237.89297551666667 -2014-05-01 02:00:00,0.0,994.3966667000001,0.0,100.0,5.110916667,0.8785,237.89197296666669 -2014-05-01 03:00:00,0.0,994.6166667000001,0.0,100.0,5.458416667000001,1.480833333,237.89297551666667 -2014-05-01 04:00:00,18.14861201,994.925,0.0,100.0,5.564916667,0.70225,237.89163878333332 -2014-05-01 05:00:00,25.00303543,995.905,0.0,99.64166667,6.039833333,1.6759166669999999,237.8913046 -2014-05-01 06:00:00,11.83761881,997.3983332999999,0.0,99.35833333,6.298916667,1.7125,237.89197296666669 -2014-05-01 07:00:00,0.0,998.4216667000002,0.0,98.90833333,6.172916667000001,1.9065833330000002,237.8913046 -2014-05-01 08:00:00,0.0,1000.215,2.99775,97.44166667,6.3128333329999995,1.8786666669999998,237.889901 -2014-05-01 09:00:00,0.0,1001.576667,28.10266667,94.94166667,5.936666667000001,1.89275,237.88919919999998 -2014-05-01 10:00:00,0.0,1002.72,32.10725,94.08333333,5.6985,1.5519999999999998,237.88919919999998 -2014-05-01 11:00:00,0.0,1003.678333,110.89108329999999,92.51666667,6.690166667000001,1.888916667,237.88919919999998 -2014-05-01 12:00:00,0.0,1003.861667,54.60641667,89.075,7.410083332999999,1.585166667,237.8884974 -2014-05-01 13:00:00,0.0,1004.5,85.04008333,84.36333333,6.955083332999999,1.1385,237.8870938 -2014-05-01 14:00:00,0.0,1005.243333,88.04133333,77.465,8.027833333,1.32225,237.8870938 -2014-05-01 15:00:00,0.0,1006.338333,29.46358333,76.81666667,7.042833333,1.4850833330000002,237.88609125000002 -2014-05-01 16:00:00,0.0,1007.221667,5.088008333,82.2575,6.112833332999999,1.297,237.8850887 -2014-05-01 17:00:00,0.0,1007.8166669999999,0.019716667,95.83333333,3.3715833330000002,0.46833333299999996,237.8836851 -2014-05-01 18:00:00,0.0,1008.351667,0.0,91.64166667,4.474083333,0.9975,237.88131238333327 -2014-05-01 19:00:00,0.0,1008.056667,0.0,86.19166667,3.826333333,1.946833333,237.88097819999993 -2014-05-01 20:00:00,0.0,1007.81,0.0,84.73333333,4.11675,2.062833333,237.88097819999993 -2014-05-01 21:00:00,0.0,1008.006667,0.0,90.21666667,3.0133333330000003,1.537166667,237.88097819999993 -2014-05-01 22:00:00,0.0,1007.993333,0.0,98.125,1.8246666669999998,1.26525,237.88097819999993 -2014-05-01 23:00:00,0.0,1007.996667,0.0,99.00833333,1.4880000000000002,1.8145,237.88027639999996 -2014-06-01 00:00:00,0.0,1007.481667,0.0,100.0,1.099333333,2.1728333330000003,237.75114669999996 -2014-06-01 01:00:00,0.0,1006.973333,0.0,100.0,0.8375,1.629583333,237.7514976 -2014-06-01 02:00:00,0.0,1006.893333,0.0,100.0,0.315166667,0.598833333,237.75325209999997 -2014-06-01 03:00:00,0.0,1006.281667,0.0,100.0,1.51275,2.104333333,237.75325209999997 -2014-06-01 04:00:00,0.0,1005.828333,0.0,100.0,1.978833333,1.9425,237.75425464999998 -2014-06-01 05:00:00,0.0,1005.913333,0.0,100.0,2.751666667,2.32175,237.75525719999996 -2014-06-01 06:00:00,3.367142496,1006.248333,0.0,99.775,2.61025,2.300416667,237.7539204666666 -2014-06-01 07:00:00,0.0,1005.871667,0.0,97.30833333,3.3031666669999997,2.380416667,237.75525719999996 -2014-06-01 08:00:00,0.0,1005.868333,3.313916667,87.03333333,4.364916667,3.1269166669999997,237.75525719999996 -2014-06-01 09:00:00,0.0,1006.06,17.31625,86.71666667,4.398916667,3.208916667,237.75323538333328 -2014-06-01 10:00:00,0.0,1006.218333,18.97175,89.24166667,4.961666667,2.541083333,237.75044489999996 -2014-06-01 11:00:00,0.0,1006.0616669999999,23.1735,89.45,5.89275,2.120666667,237.7477045666666 -2014-06-01 12:00:00,0.0,1005.7,28.91291667,88.275,6.30725,2.423166667,237.74493080000002 -2014-06-01 13:00:00,0.0,1005.731667,41.15766667,87.01666667,7.107083332999999,2.498916667,237.74359406666665 -2014-06-01 14:00:00,0.0,1005.8083330000001,33.13216667,87.49166667,7.12475,2.2285,237.74292569999997 -2014-06-01 15:00:00,0.0,1005.611667,16.70433333,87.325,6.668916667,1.4841666669999998,237.74085373333332 -2014-06-01 16:00:00,0.0,1005.948333,2.3666416669999997,88.55833333,6.59975,1.02125,237.73881519999995 -2014-06-01 17:00:00,0.0,1005.583333,0.0,91.46666667,6.720833333,0.648416667,237.73881519999995 -2014-06-01 18:00:00,3.279418128,1004.856667,0.0,93.84166667,7.61725,1.6453333330000002,237.7367098 -2014-06-01 19:00:00,22.96530854,1004.583333,0.0,89.225,9.044166667,3.14075,237.7367098 -2014-06-01 20:00:00,22.87688916,1005.135,0.0,90.45833333,7.596333333,0.5525,237.73846429999995 -2014-06-01 21:00:00,25.27324438,1005.185,0.0,93.79166667,7.6159166670000005,1.174916667,237.73881519999995 -2014-06-01 22:00:00,55.13851154,1004.953333,0.0,94.15833333,7.511166667,0.919666667,237.74015193333332 -2014-06-01 23:00:00,17.77574448,1004.986667,0.0,93.46666667,8.48425,1.45075,237.74082030000002 -2014-07-01 00:00:00,17.03288537,1005.568333,0.0,94.83333333,9.623333333,1.4683333330000001,237.65429939999999 -2014-07-01 01:00:00,13.32338462,1006.346667,0.0,95.025,9.62,2.506333333,237.65597031666667 -2014-07-01 02:00:00,0.0,1006.703333,0.0,93.98333333,9.449166667,1.9610833330000002,237.6570063 -2014-07-01 03:00:00,0.0,1007.866667,0.0,91.96666667,9.106666667,1.39225,237.6591117 -2014-07-01 04:00:00,0.0,1008.318333,0.0,94.275,7.154666667000001,1.15425,237.66051530000001 -2014-07-01 05:00:00,0.0,1008.86,0.0,96.84166667,6.4035,1.1125,237.66118366666663 -2014-07-01 06:00:00,0.0,1009.513333,0.0,89.69166667,8.091666667,1.6725,237.6611836666667 -2014-07-01 07:00:00,0.0,1010.091667,0.0,90.44166667,7.857333333,1.37025,237.66252039999998 -2014-07-01 08:00:00,0.0,1010.225,3.470308333,88.075,7.414166667000001,1.47625,237.66287129999998 -2014-07-01 09:00:00,0.0,1010.928333,15.65783333,86.19166667,6.688916667000001,2.045,237.66116694999997 -2014-07-01 10:00:00,0.0,1011.248333,62.03808333,82.5675,8.954333333,2.027333333,237.65495105000002 -2014-07-01 11:00:00,0.0,1011.368333,104.1133333,78.99416667,11.64916667,2.035333333,237.64743185 -2014-07-01 12:00:00,0.0,1011.025,149.8875,77.4325,12.2575,2.518583333,237.64639586666667 -2014-07-01 13:00:00,0.0,1010.605,152.425,75.465,12.72583333,2.122083333,237.6412493833333 -2014-07-01 14:00:00,0.0,1010.468333,116.10725,73.26083333,12.72666667,1.98425,237.6364204 -2014-07-01 15:00:00,0.0,1010.573333,36.11066667,74.14833333,12.5075,1.758833333,237.6329783333333 -2014-07-01 16:00:00,0.0,1010.7,5.699516667,76.18583333,11.99083333,1.81625,237.6309398 -2014-07-01 17:00:00,0.0,1010.676667,0.039433333,77.54083333,10.51083333,1.678333333,237.6288678333333 -2014-07-01 18:00:00,0.0,1010.833333,0.0,80.87083333,9.726666667,2.544,237.62753109999997 -2014-07-01 19:00:00,0.0,1010.886667,0.0,83.825,9.565833332999999,1.17425,237.6257766 -2014-07-01 20:00:00,2.495569704,1011.108333,0.0,84.475,9.600833332999999,0.789416667,237.62718019999997 -2014-07-01 21:00:00,0.0,1010.8133330000001,0.0,86.4,9.814166667,0.639416667,237.62955291666663 -2014-07-01 22:00:00,0.0,1011.056667,0.0,86.475,11.1025,1.9845833330000002,237.63197578333327 -2014-07-01 23:00:00,0.0,1011.143333,0.0,89.375,10.98166667,1.7250833330000002,237.63264414999995 -2014-08-01 00:00:00,0.0,1010.995,0.0,89.98333333,10.73583333,1.4100833330000002,237.6426362666667 -2014-08-01 01:00:00,0.0,1010.856667,0.0,90.125,9.985,1.162333333,237.64056429999997 -2014-08-01 02:00:00,0.0,1011.47,0.0,90.68333333,9.986666667,0.98,237.63916073333328 -2014-08-01 03:00:00,0.0,1011.591667,0.0,89.76666667,10.77666667,0.893333333,237.63742299999998 -2014-08-01 04:00:00,6.028506264,1011.511667,0.0,92.975,11.025,1.96125,237.63468266666663 -2014-08-01 05:00:00,0.0,1011.101667,0.0,94.06666667,10.5825,2.3255,237.63164159999997 -2014-08-01 06:00:00,0.0,1011.585,0.0,91.40833333,10.75333333,2.741333333,237.6295362 -2014-08-01 07:00:00,0.0,1012.33,0.0,88.29166667,11.0525,2.604166667,237.6295362 -2014-08-01 08:00:00,0.0,1013.403333,3.609258333,85.45833333,10.6625,2.481416667,237.63023799999996 -2014-08-01 09:00:00,0.0,1014.638333,24.53266667,84.075,10.87833333,2.163166667,237.6299038166666 -2014-08-01 10:00:00,0.0,1015.181667,63.04783333,82.38333333,11.50666667,2.464666667,237.67202468 -2014-08-01 11:00:00,0.0,1015.495,77.68425,80.14333333,12.0475,2.70375,237.6680177833333 -2014-08-01 12:00:00,0.0,1015.081667,143.35416669999998,76.84333333,12.51833333,1.8720833330000002,237.65428268333332 -2014-08-01 13:00:00,0.0,1015.148333,77.16916667,74.93666667,12.34166667,2.316333333,237.64398971666662 -2014-08-01 14:00:00,0.0,1014.931667,86.5795,73.89833333,12.54583333,2.892416667,237.63540115 -2014-08-01 15:00:00,0.0,1014.858333,40.56733333,77.305,11.09833333,1.549916667,237.62784856666664 -2014-08-01 16:00:00,0.0,1014.983333,8.519175,82.89583333,9.900833333,1.4169999999999998,237.62338716666667 -2014-08-01 17:00:00,0.0,1014.658333,0.039433333,90.18333333,8.974333332999999,1.1785,237.61785635 -2014-08-01 18:00:00,0.0,1014.651667,0.0,97.65833333,5.858333332999999,0.2815,237.61376256666665 -2014-08-01 19:00:00,0.0,1014.658333,0.0,99.775,4.0575,0.33475,237.60998625 -2014-08-01 20:00:00,0.0,1014.65,0.0,100.0,3.026833333,0.21575,237.60758010000004 -2014-08-01 21:00:00,0.0,1014.273333,0.0,100.0,2.5365833330000003,0.24375,237.60415468333335 -2014-08-01 22:00:00,0.0,1013.6883330000001,0.0,100.0,2.29525,0.239583333,237.60101329999998 -2014-08-01 23:00:00,0.0,1013.315,0.0,100.0,2.5045833330000002,0.317,237.5982897166667 -2014-09-01 00:00:00,0.0,1012.395,0.0,100.0,2.248333333,0.19775,237.87258006666664 -2014-09-01 01:00:00,12.138738,1011.758333,0.0,100.0,3.2785833330000003,0.404416667,237.87117650000002 -2014-09-01 02:00:00,12.12921185,1010.931667,0.0,100.0,4.428916667,0.160083333,237.8708256 -2014-09-01 03:00:00,2.658794184,1010.076667,0.0,100.0,5.384166667000001,0.53325,237.87187830000002 -2014-09-01 04:00:00,0.0,1009.14,0.0,100.0,6.2095,0.576916667,237.87152740000002 -2014-09-01 05:00:00,0.0,1008.218333,0.0,100.0,6.1125,0.39383333299999995,237.86977290000002 -2014-09-01 06:00:00,0.0,1007.076667,0.0,100.0,5.465583333,0.238916667,237.86943871666668 -2014-09-01 07:00:00,0.0,1006.445,0.0,97.41666667,5.95775,0.5615,237.86977290000002 -2014-09-01 08:00:00,0.0,1006.116667,2.3862416669999997,98.95833333,6.5495,1.6730833330000001,237.86943871666668 -2014-09-01 09:00:00,0.0,1005.848333,22.561,90.26666667,6.74075,1.6604166669999998,237.8674169 -2014-09-01 10:00:00,0.0,1005.723333,51.21666667,83.675,10.10833333,1.50825,237.8656624 -2014-09-01 11:00:00,0.0,1005.108333,96.73416667,81.53,11.65,2.09925,237.8660133 -2014-09-01 12:00:00,3.7128867839999997,1004.386667,83.006,80.55916667,11.77416667,2.4475833330000003,237.86501075000004 -2014-09-01 13:00:00,0.0,1003.338333,46.73608333,81.26666667,11.72666667,2.219083333,237.86330640000003 -2014-09-01 14:00:00,0.0,1002.203333,47.66358333,81.59166667,11.80833333,1.977916667,237.8615519 -2014-09-01 15:00:00,28.27923403,1001.988333,7.1189416670000005,86.70833333,11.25416667,2.1534166669999997,237.8612177166667 -2014-09-01 16:00:00,55.35760989999999,1002.64,0.9268,92.775,9.559166667000001,2.6515,237.85954680000006 -2014-09-01 17:00:00,12.61907494,1002.451667,0.0,92.80833333,8.8625,2.694583333,237.85919590000003 -2014-09-01 18:00:00,3.743926608,1002.375,0.0,89.725,8.995833333,3.536833333,237.85919590000006 -2014-09-01 19:00:00,0.0,1002.458333,0.0,86.85833333,8.925833333,3.660916667,237.8581432 -2014-09-01 20:00:00,0.0,1003.381667,0.0,89.88333333,8.664166667,3.778916667,237.85643885 -2014-09-01 21:00:00,0.0,1005.395,0.0,84.475,7.626166667000001,3.324833333,237.85543629999998 -2014-09-01 22:00:00,0.0,1006.403333,0.0,80.34916667,6.863916667000001,3.0154166669999998,237.85543629999998 -2014-09-01 23:00:00,0.0,1007.076667,0.0,78.0275,6.40775,2.8305,237.85438359999998 -2014-10-01 00:00:00,0.0,1007.435,0.0,76.0,6.2664166670000006,2.470916667, -2014-10-01 01:00:00,0.0,1007.851667,0.0,78.02333333,6.081833333,2.50675, -2014-10-01 02:00:00,0.0,1008.468333,0.0,81.25833333,5.562583332999999,2.08575, -2014-10-01 03:00:00,0.0,1009.128333,0.0,85.45,5.35275,2.02325, -2014-10-01 04:00:00,0.0,1009.775,0.0,88.35,5.067833333,2.1141666669999997, -2014-10-01 05:00:00,0.0,1010.121667,0.0,89.14166667,4.703916667,1.6334166669999999, -2014-10-01 06:00:00,0.0,1010.736667,0.0,85.525,5.080083333,2.288583333, -2014-10-01 07:00:00,0.0,1011.18,0.0,89.29166667,4.4205,1.65975, -2014-10-01 08:00:00,0.0,1011.823333,4.358375,91.53333333,3.378833333,0.973, -2014-10-01 09:00:00,0.0,1012.325,15.02783333,91.625,4.3495,0.8295, -2014-10-01 10:00:00,0.0,1012.993333,68.86016667,88.09166667,5.571666667000001,2.023416667, -2014-10-01 11:00:00,0.0,1013.215,112.60666670000002,86.04166667,6.924666667,2.3176666669999997, -2014-10-01 12:00:00,0.0,1012.931667,186.5266667,81.55833333,7.630583333,2.789916667, -2014-10-01 13:00:00,0.0,1012.543333,106.76575,79.015,8.0205,2.597583333, -2014-10-01 14:00:00,0.0,1012.305,84.0735,77.97333333,7.667916667,2.616916667, -2014-10-01 15:00:00,0.0,1012.601667,53.75416667,77.40083333,7.511333333,1.728833333, -2014-10-01 16:00:00,0.0,1012.6916669999999,10.07690833,81.10916667,6.904083332999999,1.774666667, -2014-10-01 17:00:00,0.0,1012.943333,0.1183,86.45833333,5.30525,1.3113333329999999, -2014-10-01 18:00:00,0.0,1012.918333,0.0,89.66666667,2.9594166669999997,0.485333333, -2014-10-01 19:00:00,0.0,1013.123333,0.0,88.59166667,0.977,0.291916667, -2014-10-01 20:00:00,0.0,1013.296667,0.0,92.19166667,1.311166667,0.674, -2014-10-01 21:00:00,0.0,1013.466667,0.0,98.275,0.333583333,0.28425, -2014-10-01 22:00:00,0.0,1013.395,0.0,97.65833333,0.171166667,0.1355, -2014-10-01 23:00:00,0.0,1013.228333,0.0,94.71666667,-0.15358333300000002,0.13, -2014-11-01 00:00:00,0.0,1013.165,0.0,99.16666667,-0.5885,0.22475,237.9584025 -2014-11-01 01:00:00,0.0,1012.673333,0.0,100.0,-1.011583333,0.21741666699999998,237.95735249999998 -2014-11-01 02:00:00,0.0,1012.5616669999999,0.0,100.0,-1.688083333,0.1645,237.95805249999998 -2014-11-01 03:00:00,0.0,1012.396667,0.0,100.0,-2.133083333,0.1025,237.95875249999997 -2014-11-01 04:00:00,0.0,1012.173333,0.0,100.0,-2.417166667,0.084,237.95875249999997 -2014-11-01 05:00:00,0.0,1011.913333,0.0,100.0,-2.317416667,0.109083333,237.95875249999997 -2014-11-01 06:00:00,0.0,1011.623333,0.0,100.0,-2.533583333,0.1055,237.95875249999997 -2014-11-01 07:00:00,0.0,1011.511667,0.0,100.0,-1.588583333,0.21983333300000002,237.95875249999997 -2014-11-01 08:00:00,0.0,1011.708333,2.998741667,100.0,-1.2125,0.3595,237.95975249999995 -2014-11-01 09:00:00,0.0,1011.743333,32.5675,100.0,-0.5668333329999999,0.272166667,237.95941916666666 -2014-11-01 10:00:00,0.0,1012.035,43.11883333,100.0,-0.011333333000000001,0.139333333,237.96008583333332 -2014-11-01 11:00:00,2.458446384,1012.166667,111.4510833,100.0,0.737833333,0.44725,237.96075249999998 -2014-11-01 12:00:00,0.0,1012.013333,103.2733333,100.0,1.8285,0.856833333,237.9597525 -2014-11-01 13:00:00,0.0,1011.275,83.09583333,95.625,2.8445,1.025416667,237.96041916666664 -2014-11-01 14:00:00,0.0,1011.013333,101.1529167,85.70833333,4.64725,0.82625,237.95941916666663 -2014-11-01 15:00:00,0.0,1010.6916669999999,66.72633333,84.08333333,5.66025,0.9288333329999999,237.95875249999997 -2014-11-01 16:00:00,0.0,1010.595,10.25523333,85.76666667,7.1479166670000005,1.793166667,237.95840249999995 -2014-11-01 17:00:00,6.11515824,1012.213333,0.0,90.275,6.858916667000001,1.899083333,237.95875249999997 -2014-11-01 18:00:00,0.0,1013.513333,0.0,89.55,6.165583333,1.694166667,237.95908583333332 -2014-11-01 19:00:00,0.0,1014.77,0.0,84.85,5.638333332999999,1.7111666669999999,237.96008583333332 -2014-11-01 20:00:00,0.0,1016.081667,0.0,85.06666667,4.822916667,1.344916667,237.96041916666664 -2014-11-01 21:00:00,0.0,1016.806667,0.0,87.24166667,4.119083333,1.18875,237.9604191666666 -2014-11-01 22:00:00,0.0,1017.723333,0.0,91.68333333,3.3885,1.576583333,237.96075249999998 -2014-11-01 23:00:00,0.0,1018.368333,0.0,92.43333333,3.531916667,1.196083333,237.96075249999998 -2014-12-01 00:00:00,0.0,1018.868333,0.0,94.63333333,3.2319999999999998,1.4373333330000002,237.8440025 -2014-12-01 01:00:00,0.0,1019.065,0.0,96.70833333,2.020333333,0.4015,237.8440025 -2014-12-01 02:00:00,0.0,1019.675,0.0,96.53333333,1.49125,0.46625,237.8447025 -2014-12-01 03:00:00,0.0,1019.951667,0.0,95.6,1.88575,0.6336666670000001,237.84470250000004 -2014-12-01 04:00:00,0.0,1020.193333,0.0,95.525,0.9195,0.191083333,237.84505249999998 -2014-12-01 05:00:00,0.0,1020.351667,0.0,95.03333333,0.845,0.5579999999999999,237.84505249999998 -2014-12-01 06:00:00,0.0,1020.398333,0.0,96.05,0.52425,0.60625,237.8454025 -2014-12-01 07:00:00,0.0,1020.52,0.0,95.25,0.241083333,0.668333333,237.8454025 -2014-12-01 08:00:00,0.0,1020.631667,6.6277166670000005,98.40833333,-0.36891666700000003,0.329333333,237.8454025 -2014-12-01 09:00:00,0.0,1020.476667,36.29383333,100.0,0.3625,0.205833333,237.8460858333333 -2014-12-01 10:00:00,0.0,1020.815,87.10683333,100.0,2.405916667,0.201916667,237.8470858333333 -2014-12-01 11:00:00,0.0,1020.8083330000001,109.8475,96.15,4.28275,0.90725,237.8460858333333 -2014-12-01 12:00:00,0.0,1020.038333,158.2641667,90.30833333,3.993833333,1.3613333330000001,237.84777249999996 -2014-12-01 13:00:00,0.0,1019.106667,178.675,88.30833333,3.79875,1.287833333,237.84741916666667 -2014-12-01 14:00:00,0.0,1018.361667,143.8558333,87.88333333,4.79875,1.038166667,237.84641916666666 -2014-12-01 15:00:00,0.0,1017.73,98.07933333,82.56666667,4.8195,1.7269999999999999,237.84741916666667 -2014-12-01 16:00:00,0.0,1017.156667,11.577475,91.13333333,2.6445,2.121,237.84775249999998 -2014-12-01 17:00:00,0.0,1016.43,0.1183,99.09166667,0.869833333,1.68425,237.84775249999998 -2014-12-01 18:00:00,0.0,1015.695,0.0,100.0,-0.77925,0.043916667,237.84775249999998 -2014-12-01 19:00:00,0.0,1015.331667,0.0,100.0,-1.614916667,0.0205,237.84776916666667 -2014-12-01 20:00:00,0.0,1014.803333,0.0,100.0,-2.369583333,0.02525,237.84810249999998 -2014-12-01 21:00:00,0.0,1013.996667,0.0,100.0,-3.0026666669999997,0.11575,237.8484525 -2014-12-01 22:00:00,0.0,1013.166667,0.0,100.0,-3.09675,0.3175,237.8488025 -2014-12-01 23:00:00,0.0,1012.798333,0.0,100.0,-2.4859166669999997,0.281583333,237.84950249999997 -2014-01-13 00:00:00,0.0,1012.121667,0.0,100.0,-2.798833333,0.42575,238.04476933333333 -2014-01-13 01:00:00,0.0,1011.431667,0.0,100.0,-2.94775,0.39391666700000005,238.044456 -2014-01-13 02:00:00,0.0,1010.888333,0.0,100.0,-1.1926666670000001,1.405,238.044456 -2014-01-13 03:00:00,0.0,1010.751667,0.0,100.0,0.1485,1.241416667,238.044127 -2014-01-13 04:00:00,0.0,1010.36,0.0,100.0,0.198916667,0.19225,238.04314 -2014-01-13 05:00:00,0.0,1009.641667,0.0,100.0,0.40425,1.9815,238.043798 -2014-01-13 06:00:00,0.0,1009.341667,0.0,100.0,0.464416667,1.8955,238.043798 -2014-01-13 07:00:00,0.0,1009.341667,0.0,100.0,0.532166667,1.7536666669999998,238.043798 -2014-01-13 08:00:00,2.52322224,1009.511667,1.4793916669999998,100.0,0.779666667,0.685083333,238.042811 -2014-01-13 09:00:00,0.0,1009.53,8.26525,100.0,0.816916667,0.558333333,238.04248199999998 -2014-01-13 10:00:00,0.0,1009.4416669999999,25.30616667,100.0,1.218833333,0.319666667,238.04216866666664 -2014-01-13 11:00:00,0.0,1009.291667,33.49266667,100.0,1.5965,0.551583333,238.04122866666668 -2014-01-13 12:00:00,0.0,1009.021667,34.45808333,100.0,2.150833333,0.37541666700000004,238.04122866666668 -2014-01-13 13:00:00,0.0,1008.231667,47.49558333,100.0,2.6425,0.33833333299999996,238.04122866666668 -2014-01-13 14:00:00,0.0,1007.806667,52.83308333,100.0,3.29225,0.321333333,238.04248199999998 -2014-01-13 15:00:00,0.0,1007.591667,17.5525,100.0,3.5533333330000003,0.6233333329999999,238.04216866666664 -2014-01-13 16:00:00,0.0,1007.423333,2.938425,100.0,3.438,0.84025,238.040602 -2014-01-13 17:00:00,0.0,1007.15,0.05915,100.0,3.17025,1.153916667,238.04027299999998 -2014-01-13 18:00:00,0.0,1007.018333,0.0,100.0,3.105666667,0.66075,238.039615 -2014-01-13 19:00:00,0.0,1006.94,0.0,100.0,3.0773333330000003,0.706916667,238.038628 -2014-01-13 20:00:00,0.0,1006.781667,0.0,100.0,3.026166667,0.197666667,238.03928599999998 -2014-01-13 21:00:00,0.0,1006.618333,0.0,100.0,3.11525,0.794,238.038628 -2014-01-13 22:00:00,0.0,1006.338333,0.0,100.0,3.1044166669999997,0.158,238.038628 -2014-01-13 23:00:00,0.0,1005.698333,0.0,100.0,3.123333333,0.10041666699999999,238.03895699999998 -2014-01-14 00:00:00,0.0,1005.305,0.0,100.0,3.0855,0.053416667,238.038628 -2014-01-14 01:00:00,0.0,1004.588333,0.0,100.0,3.22725,0.15808333300000002,238.038628 -2014-01-14 02:00:00,0.0,1004.125,0.0,100.0,3.295666667,0.124333333,238.038628 -2014-01-14 03:00:00,0.0,1003.823333,0.0,100.0,3.336416667,0.054416667,238.038628 -2014-01-14 04:00:00,0.0,1003.431667,0.0,100.0,3.35075,0.166833333,238.03864366666664 -2014-01-14 05:00:00,0.0,1002.983333,0.0,100.0,3.464416667,0.567083333,238.03833033333333 -2014-01-14 06:00:00,0.0,1002.525,0.0,100.0,3.453416667,1.4811666669999999,238.038628 -2014-01-14 07:00:00,0.0,1002.358333,0.0,100.0,2.939166667,1.466666667,238.038628 -2014-01-14 08:00:00,0.0,1002.208333,2.485,100.0,2.4443333330000003,0.86925,238.03706133333333 -2014-01-14 09:00:00,0.0,1002.396667,16.88225,100.0,2.299,0.526333333,238.03706133333333 -2014-01-14 10:00:00,0.0,1002.295,31.63533333,100.0,2.8490833330000003,0.637916667,238.036748 -2014-01-14 11:00:00,0.0,1002.035,47.51308333,100.0,3.375666667,1.016666667,238.03831466666668 -2014-01-14 12:00:00,0.0,1001.725,55.82033333,100.0,3.839583333,1.43275,238.03831466666668 -2014-01-14 13:00:00,0.0,1001.633333,76.93291667,100.0,4.245833333,0.91325,238.037688 -2014-01-14 14:00:00,0.0,1001.685,53.15158333,99.90833333,4.746416667,1.075583333,238.03800133333334 -2014-01-14 15:00:00,0.0,1001.951667,25.83583333,99.36666667,4.80725,0.917666667,238.036748 -2014-01-14 16:00:00,0.0,1002.1866669999999,5.994975,99.83333333,4.60725,0.45291666700000005,238.036748 -2014-01-14 17:00:00,0.0,1002.493333,0.17745,100.0,4.358666667,0.377333333,238.03608999999997 -2014-01-14 18:00:00,0.0,1002.95,0.0,100.0,3.637833333,0.069083333,238.034774 -2014-01-14 19:00:00,0.0,1003.4366669999999,0.0,100.0,3.032166667,0.441166667,238.03543200000001 -2014-01-14 20:00:00,0.0,1003.926667,0.0,100.0,2.887666667,0.205333333,238.034116 -2014-01-14 21:00:00,0.0,1004.291667,0.0,100.0,2.164333333,0.289666667,238.034445 -2014-01-14 22:00:00,0.0,1004.618333,0.0,100.0,2.500083333,0.08641666699999999,238.034445 -2014-01-14 23:00:00,0.0,1004.63,0.0,100.0,2.461583333,0.09,238.03279999999998 -2014-01-15 00:00:00,0.0,1004.7,0.0,100.0,1.0424166670000001,0.16175,238.03279999999998 -2014-01-15 01:00:00,0.0,1004.878333,0.0,100.0,0.8713333329999999,0.07641666700000001,238.03185999999997 -2014-01-15 02:00:00,0.0,1005.243333,0.0,100.0,1.5945,0.057916667000000005,238.03154666666669 -2014-01-15 03:00:00,0.0,1005.806667,0.0,99.86666667,1.906916667,0.093083333,238.03123333333335 -2014-01-15 04:00:00,0.0,1005.845,0.0,98.05,2.516666667,0.107,238.03185999999997 -2014-01-15 05:00:00,0.0,1005.916667,0.0,98.575,3.22,0.326916667,238.03092 -2014-01-15 06:00:00,0.0,1006.093333,0.0,94.39166667,3.730916667,1.7814166669999998,238.030591 -2014-01-15 07:00:00,0.0,1006.013333,0.019716667,90.775,2.9056666669999998,1.24975,238.030262 -2014-01-15 08:00:00,2.432322576,1006.236667,6.252225,96.95833333,0.5329166670000001,0.317666667,238.030262 -2014-01-15 09:00:00,0.0,1006.44,25.78041667,99.89166667,1.4166666669999999,0.175416667,238.030262 -2014-01-15 10:00:00,0.0,1006.728333,65.62791667,91.99166667,3.951666667,1.83075,238.029933 -2014-01-15 11:00:00,0.0,1006.678333,122.36583329999999,87.4,4.516666667,1.87125,238.02960399999998 -2014-01-15 12:00:00,0.0,1006.048333,154.4725,82.29166667,5.407416667000001,1.994083333,238.028946 -2014-01-15 13:00:00,0.0,1005.45,71.37491667,85.05833333,4.961083333,2.185,238.028946 -2014-01-15 14:00:00,0.0,1005.301667,33.760999999999996,87.01666667,4.686166667,1.996,238.028946 -2014-01-15 15:00:00,0.0,1005.241667,16.5865,92.39166667,3.868583333,2.521666667,238.02831933333334 -2014-01-15 16:00:00,0.0,1004.856667,8.125483333,96.26666667,3.463083333,2.383916667,238.02831933333334 -2014-01-15 17:00:00,3.514824576,1004.513333,0.078866667,98.64166667,3.26225,2.45825,238.028946 -2014-01-15 18:00:00,0.0,1004.1916669999999,0.0,97.23333333,3.283833333,3.0636666669999997,238.028006 -2014-01-15 19:00:00,0.0,1003.946667,0.0,98.69166667,3.291416667,3.1181666669999997,238.02769266666667 -2014-01-15 20:00:00,0.0,1003.531667,0.0,97.30833333,3.434416667,2.9041666669999997,238.0276926666667 -2014-01-15 21:00:00,0.0,1003.223333,0.0,96.81666667,3.648916667,2.5980000000000003,238.02737933333336 -2014-01-15 22:00:00,0.0,1002.85,0.0,97.39166667,3.5955,1.807833333,238.02831933333331 -2014-01-15 23:00:00,2.927731248,1002.398333,0.0,99.96666667,3.538583333,1.7180000000000002,238.02831933333331 -2014-01-16 00:00:00,5.858206056,1001.98,0.0,100.0,3.5205,1.87225,238.028006 -2014-01-16 01:00:00,5.252563416,1001.41,0.0,100.0,3.56175,1.1823333329999999,238.028006 -2014-01-16 02:00:00,2.59766184,1001.548333,0.0,100.0,3.693,0.81575,238.0276926666667 -2014-01-16 03:00:00,2.560228152,1001.35,0.0,100.0,3.764916667,0.763916667,238.02737933333336 -2014-01-16 04:00:00,7.753875672,1001.035,0.0,100.0,3.8218333330000003,0.850833333,238.02706600000002 -2014-01-16 05:00:00,5.263116384,1000.761667,0.0,100.0,3.883416667,0.9225,238.02706600000002 -2014-01-16 06:00:00,5.36594076,1000.385,0.0,100.0,3.97975,1.2195,238.02706600000002 -2014-01-16 07:00:00,5.329402464,1000.015,0.0,100.0,4.0575,1.22075,238.02863266666665 -2014-01-16 08:00:00,0.0,1000.126667,1.8141666669999998,100.0,4.242916667,1.636916667,238.028946 -2014-01-16 09:00:00,0.0,1000.123333,14.69189167,100.0,4.488333333,1.465416667,238.028946 -2014-01-16 10:00:00,0.0,999.8483332999999,29.10891667,100.0,4.80775,1.910833333,238.02927499999998 -2014-01-16 11:00:00,3.1004526,999.4633332999998,40.66708333,100.0,5.256333333,1.743166667,238.030591 -2014-01-16 12:00:00,0.0,998.5966667000001,40.38591667,100.0,5.3435,1.77275,238.030591 -2014-01-16 13:00:00,0.0,997.83,31.82783333,100.0,5.664333332999999,1.737333333,238.03092 -2014-01-16 14:00:00,0.0,997.32,28.98816667,99.95833333,6.03,2.08625,238.03123333333335 -2014-01-16 15:00:00,0.0,996.9483332999998,11.20058333,98.63333333,6.365333333,2.223166667,238.03154666666663 -2014-01-16 16:00:00,5.727809664,996.455,4.712458333,99.7,6.236000000000001,0.9135833329999999,238.03123333333335 -2014-01-16 17:00:00,0.0,996.4083332999999,0.019716667,98.43333333,6.037166667,0.5920000000000001,238.0324866666667 -2014-01-16 18:00:00,9.623877696000001,996.435,0.0,93.88333333,6.456416667,2.306833333,238.03279999999998 -2014-01-16 19:00:00,3.113646096,996.7016667000001,0.0,98.46666667,6.292833333,2.5783333330000002,238.033129 -2014-01-16 20:00:00,0.0,996.8666667000001,0.0,97.00833333,6.02775,1.183916667,238.033458 -2014-01-16 21:00:00,0.0,997.235,0.0,98.11666667,5.950833332999999,1.22525,238.033787 -2014-01-16 22:00:00,16.54503758,997.6983332999998,0.0,98.79166667,5.94225,1.008583333,238.035761 -2014-01-16 23:00:00,0.0,997.4316667000002,0.0,98.45833333,5.120666667,1.051416667,238.036748 -2014-01-17 00:00:00,0.0,997.325,0.0,98.34166667,3.886166667,1.2825,238.03737466666666 -2014-01-17 01:00:00,2.81877804,997.445,0.0,97.28333333,4.0680000000000005,1.9651666669999999,238.03800133333334 -2014-01-17 02:00:00,0.0,997.8666667000001,0.0,93.50833333,5.63025,2.734833333,238.03895699999998 -2014-01-17 03:00:00,0.0,998.0416667000002,0.0,93.71666667,5.84775,2.502583333,238.039944 -2014-01-17 04:00:00,0.0,997.6483332999999,0.0,93.75833333,5.599583332999999,2.0705,238.040602 -2014-01-17 05:00:00,0.0,997.5733332999998,0.0,93.85,4.592416667,1.7225,238.040602 -2014-01-17 06:00:00,0.0,997.4083332999999,0.0,92.39166667,3.4154166669999997,1.7974166669999998,238.04216866666664 -2014-01-17 07:00:00,0.0,997.52,0.0,92.46666667,2.679,0.791333333,238.04248199999998 -2014-01-17 08:00:00,0.0,997.64,2.4649333330000003,92.575,1.4603333330000001,0.43708333299999996,238.042811 -2014-01-17 09:00:00,0.0,998.0866667000001,12.16716667,90.60833333,2.63175,0.9745,238.043798 -2014-01-17 10:00:00,0.0,998.3166667000002,77.69416667,84.58333333,6.66325,1.8221666669999999,238.0447693333333 -2014-01-17 11:00:00,0.0,998.2166667000001,126.98,80.74916667,9.5575,1.7345833330000002,238.04508266666667 -2014-01-17 12:00:00,0.0,998.0233332999999,184.24,78.67416667,9.938333333,2.54775,238.04539599999998 -2014-01-17 13:00:00,0.0,997.8083332999998,177.1233333,76.18,10.315,2.6135833330000002,238.04539599999998 -2014-01-17 14:00:00,0.0,997.6516667000001,142.1875,75.4625,10.4425,2.241916667,238.04602266666666 -2014-01-17 15:00:00,0.0,997.7166667000001,93.29833333,76.52916667,9.774166667000001,2.07075,238.046665 -2014-01-17 16:00:00,0.0,997.94,17.15624167,84.225,7.365083332999999,2.67725,238.04633599999997 -2014-01-17 17:00:00,0.0,998.0666667000002,0.374616667,90.13333333,5.882416667,2.5238333330000002,238.045396 -2014-01-17 18:00:00,0.0,998.1616667000002,0.0,87.84166667,5.12275,2.5465,238.04539599999998 -2014-01-17 19:00:00,0.0,998.3816667000001,0.0,84.60833333,4.91375,2.505833333,238.0447693333333 -2014-01-17 20:00:00,0.0,999.08,0.0,86.43333333,4.3703333330000005,2.30775,238.04633599999997 -2014-01-17 21:00:00,0.0,999.2066667000001,0.0,98.80833333,3.7920833330000003,2.288916667,238.045396 -2014-01-17 22:00:00,0.0,999.1266667000001,0.0,100.0,4.13625,3.1760833330000002,238.044456 -2014-01-17 23:00:00,0.0,999.3683332999999,0.0,100.0,3.2631666669999997,1.5315833330000002,238.044456 -2014-01-18 00:00:00,0.0,999.5316667000001,0.0,100.0,0.6075,0.4025,238.044456 -2014-01-18 01:00:00,0.0,999.6083332999999,0.0,100.0,-0.735666667,0.17425,238.043469 -2014-01-18 02:00:00,0.0,999.7533332999999,0.0,100.0,-0.9278333329999999,0.147666667,238.043798 -2014-01-18 03:00:00,0.0,999.8216667000002,0.0,100.0,-1.417666667,0.132833333,238.04314 -2014-01-18 04:00:00,0.0,999.8333332999998,0.0,100.0,-1.792416667,0.08033333299999999,238.04248199999998 -2014-01-18 05:00:00,0.0,999.5433332999999,0.0,100.0,-2.079416667,0.027000000000000003,238.04185533333336 -2014-01-18 06:00:00,0.0,999.4833332999999,0.0,100.0,-0.268333333,0.73225,238.04216866666664 -2014-01-18 07:00:00,0.0,999.6233332999999,0.019716667,100.0,0.8051666670000001,1.406833333,238.04154200000002 -2014-01-18 08:00:00,0.0,1000.05,4.635575,100.0,0.905666667,1.20275,238.04154200000002 -2014-01-18 09:00:00,2.606438352,1000.026667,35.580999999999996,100.0,0.999083333,0.96075,238.04091533333334 -2014-01-18 10:00:00,0.0,999.9833332999999,85.83283333,100.0,1.951583333,1.3705833330000001,238.04122866666668 -2014-01-18 11:00:00,0.0,999.6983332999998,118.7375,96.06666667,3.810166667,1.805833333,238.040602 -2014-01-18 12:00:00,0.0,999.3066667000002,113.33583329999999,92.15833333,4.712083333,1.4715,238.040602 -2014-01-18 13:00:00,0.0,998.6133332999999,96.215,90.1,5.242083333,1.347,238.040602 -2014-01-18 14:00:00,0.0,998.09,70.1925,94.93333333,4.091833333,1.837083333,238.040602 -2014-01-18 15:00:00,0.0,998.0,52.77183333,97.075,3.659166667,1.046333333,238.04091533333334 -2014-01-18 16:00:00,0.0,997.8333332999998,15.95434167,99.35,2.90825,0.232833333,238.039944 -2014-01-18 17:00:00,0.0,997.6666667000002,0.216941667,100.0,1.658833333,0.281833333,238.039615 -2014-01-18 18:00:00,0.0,997.4483332999998,0.0,100.0,0.988666667,0.276416667,238.038628 -2014-01-18 19:00:00,0.0,997.0733332999998,0.0,100.0,0.55125,0.946333333,238.038628 -2014-01-18 20:00:00,0.0,997.2933332999999,0.0,100.0,0.190583333,0.39041666700000005,238.03831466666665 -2014-01-18 21:00:00,0.0,997.125,0.0,100.0,0.3855,0.178333333,238.03737466666666 -2014-01-18 22:00:00,0.0,996.815,0.0,100.0,0.5548333329999999,0.15991666699999998,238.03768799999997 -2014-01-18 23:00:00,0.0,996.2366667000001,0.0,100.0,0.32966666699999997,0.06375,238.03800133333334 -2014-01-19 00:00:00,0.0,995.84,0.0,100.0,-0.289416667,0.198583333,238.037688 -2014-01-19 01:00:00,0.0,995.845,0.0,100.0,-0.10358333300000001,0.08575,238.038628 -2014-01-19 02:00:00,0.0,995.655,0.0,100.0,0.45475,0.41716666700000005,238.03706133333333 -2014-01-19 03:00:00,2.475305472,995.5833332999998,0.0,100.0,0.47383333299999997,0.730583333,238.03737466666666 -2014-01-19 04:00:00,0.0,995.3333332999998,0.0,100.0,0.336916667,1.3728333330000002,238.03706133333333 -2014-01-19 05:00:00,0.0,995.2416667000001,0.0,100.0,0.7463333329999999,1.2455,238.036748 -2014-01-19 06:00:00,0.0,995.3866667000001,0.0,100.0,1.272333333,1.16325,238.035761 -2014-01-19 07:00:00,0.0,995.39,0.0,100.0,1.50075,0.577416667,238.03608999999997 -2014-01-19 08:00:00,0.0,995.7166667000001,1.972075,100.0,1.6125833330000001,1.78325,238.03510300000002 -2014-01-19 09:00:00,0.0,996.23,14.89075,100.0,1.784583333,1.164166667,238.034774 -2014-01-19 10:00:00,0.0,996.515,29.60066667,100.0,2.204916667,1.164166667,238.034445 -2014-01-19 11:00:00,0.0,996.6116667000001,59.07766667,100.0,2.7405,1.8328333330000002,238.034774 -2014-01-19 12:00:00,0.0,996.4366667000002,55.13433333,100.0,3.25175,2.189916667,238.03279999999998 -2014-01-19 13:00:00,0.0,996.2333332999999,64.42041667,98.95,3.650083333,2.6198333330000003,238.033458 -2014-01-19 14:00:00,0.0,996.135,34.7655,98.11666667,3.91475,2.2088333330000003,238.034445 -2014-01-19 15:00:00,0.0,996.325,29.56041667,97.66666667,3.854083333,2.2,238.034774 -2014-01-19 16:00:00,0.0,996.735,8.3419,97.75833333,3.6846666669999997,1.650833333,238.033458 -2014-01-19 17:00:00,0.0,996.685,0.13801666699999998,98.075,3.338666667,0.689666667,238.03279999999998 -2014-01-19 18:00:00,0.0,996.7583332999999,0.0,99.49166667,2.269083333,0.33816666700000003,238.03279999999998 -2014-01-19 19:00:00,0.0,996.7916667000002,0.0,100.0,1.4869999999999999,0.171666667,238.03154666666669 -2014-01-19 20:00:00,0.0,996.7766667000001,0.0,100.0,2.089916667,0.17525,238.03248666666664 -2014-01-19 21:00:00,0.0,997.0233332999999,0.0,100.0,2.754083333,0.197416667,238.03092 -2014-01-19 22:00:00,0.0,997.0233332999999,0.0,100.0,3.4620833330000003,0.5419166670000001,238.030591 -2014-01-19 23:00:00,0.0,997.025,0.0,99.64166667,4.216083333,1.3173333329999999,238.030591 -2014-01-20 00:00:00,0.0,996.9683332999999,0.0,99.1,4.28775,2.07425,238.02927499999998 -2014-01-20 01:00:00,0.0,996.3516667000001,0.0,99.76666667,3.919833333,2.304083333,238.03092 -2014-01-20 02:00:00,0.0,996.1266667000001,0.0,100.0,3.625083333,2.409333333,238.030591 -2014-01-20 03:00:00,0.0,996.4183332999999,0.0,100.0,3.382583333,2.9135,238.030262 -2014-01-20 04:00:00,0.0,996.6533332999999,0.0,100.0,3.092916667,2.598083333,238.029933 -2014-01-20 05:00:00,0.0,996.48,0.0,100.0,2.8185833330000003,2.48125,238.02927499999998 -2014-01-20 06:00:00,0.0,996.5833332999998,0.0,100.0,2.6060000000000003,2.145666667,238.028946 -2014-01-20 07:00:00,0.0,996.71,0.0,100.0,2.527416667,2.1783333330000003,238.028946 -2014-01-20 08:00:00,0.0,997.4266667000002,0.9269166670000001,100.0,2.4028333330000002,1.957416667,238.028946 -2014-01-20 09:00:00,0.0,998.0566667000002,3.549875,100.0,2.3385833330000003,1.5496666669999999,238.02703466666665 -2014-01-20 10:00:00,0.0,998.53,13.88391667,99.91666667,2.3185833330000003,1.4164166669999998,238.028946 -2014-01-20 11:00:00,0.0,998.9683332999999,26.74175,99.55,2.35425,1.456166667,238.02831933333331 -2014-01-20 12:00:00,0.0,998.96,31.00066667,100.0,2.247083333,1.7109999999999999,238.02831933333334 -2014-01-20 13:00:00,0.0,998.9233332999999,33.38766667,100.0,2.4395,1.7331666669999999,238.028006 -2014-01-20 14:00:00,0.0,999.0866667000001,11.02441667,100.0,2.508833333,1.532083333,238.02863266666665 -2014-01-20 15:00:00,0.0,999.35,10.86516667,100.0,2.66875,1.026583333,238.028006 -2014-01-20 16:00:00,0.0,999.8666667000001,6.093908333,100.0,2.657166667,1.2670000000000001,238.02706600000002 -2014-01-20 17:00:00,0.0,1000.371667,0.05915,100.0,2.5540000000000003,1.24225,238.02706600000002 -2014-01-20 18:00:00,0.0,1000.886667,0.0,100.0,2.476083333,1.569833333,238.02640800000003 -2014-01-20 19:00:00,0.0,1001.3133330000001,0.0,100.0,2.1575833330000003,1.44825,238.026079 -2014-01-20 20:00:00,0.0,1001.73,0.0,100.0,2.0684166669999997,1.4093333330000002,238.02542100000002 -2014-01-20 21:00:00,0.0,1002.16,0.0,100.0,2.018583333,1.397416667,238.02477866666666 -2014-01-20 22:00:00,0.0,1002.393333,0.0,100.0,2.000166667,0.8865833329999999,238.025092 -2014-01-20 23:00:00,0.0,1002.583333,0.0,100.0,1.9045833330000002,0.28125,238.0238386666667 -2014-01-21 00:00:00,0.0,1002.863333,0.0,100.0,1.8221666669999999,0.829416667,238.02415200000004 -2014-01-21 01:00:00,0.0,1003.036667,0.0,100.0,1.809333333,0.5299166670000001,238.02383866666665 -2014-01-21 02:00:00,0.0,1003.31,0.0,100.0,1.76425,0.27325,238.022883 -2014-01-21 03:00:00,2.3865511440000002,1003.601667,0.0,100.0,1.7209999999999999,0.171666667,238.02321200000003 -2014-01-21 04:00:00,0.0,1003.868333,0.0,100.0,1.75575,0.000166667,238.02385433333336 -2014-01-21 05:00:00,7.159653432000001,1004.04,0.0,100.0,1.71125,0.011916666999999999,238.02960399999998 -2014-01-21 06:00:00,4.879642248,1004.516667,0.0,100.0,0.88675,0.21941666699999998,238.03123333333335 -2014-01-21 07:00:00,4.84387104,1004.995,0.0,100.0,0.610666667,0.18258333300000001,238.03281566666666 -2014-01-21 08:00:00,7.4620281120000005,1005.466667,3.333341667,100.0,0.9624166670000001,0.67975,238.03706133333333 -2014-01-21 09:00:00,7.4932077360000005,1006.088333,17.31625,100.0,1.273416667,0.8225,238.04089966666666 -2014-01-21 10:00:00,5.0205475680000005,1006.5666669999999,20.54966667,100.0,1.6185,0.919,238.0441113333333 -2014-01-21 11:00:00,0.0,1006.708333,67.11833333,100.0,2.11425,0.9690000000000001,238.04860766666664 -2014-01-21 12:00:00,0.0,1006.475,79.54916667,100.0,2.61175,1.4815,238.058834475 -2014-01-21 13:00:00,0.0,1004.823522,76.96908333,98.55833333,3.033833333,1.0945833329999999,238.07125798333334 -2014-01-21 14:00:00,0.0,1004.8657919999999,81.07166667,97.60833333,3.367166667,1.013916667,238.0834158 -2014-01-21 15:00:00,0.0,1004.983558,48.11041667,96.225,3.329583333,1.020416667,238.09209303333333 -2014-01-21 16:00:00,0.0,1005.1013230000001,12.83788333,96.80833333,3.0865,0.85975,238.09708426666666 -2014-01-21 17:00:00,0.0,1005.219088,0.512691667,97.675,2.871666667,0.741083333,238.09956178333334 -2014-01-21 18:00:00,0.0,1005.3368539999999,0.0,99.46666667,2.762916667,0.5698333329999999,238.10005728333337 -2014-01-21 19:00:00,0.0,1005.454619,0.0,99.95833333,2.740583333,0.32908333300000003,238.10056485000004 -2014-01-21 20:00:00,0.0,1005.5723849999999,0.0,100.0,2.6574166669999997,0.456583333,238.09956178333334 -2014-01-21 21:00:00,0.0,1005.69015,0.0,100.0,2.6795,0.698,238.0983532 -2014-01-21 22:00:00,0.0,1005.8079150000001,0.0,100.0,2.660166667,0.604,238.09759185 -2014-01-21 23:00:00,0.0,1005.925681,0.0,100.0,2.30025,0.440333333,238.0963229 -2014-01-22 00:00:00,0.0,1006.0434460000001,0.0,100.0,2.1189166669999997,0.496,238.095066 -2014-01-22 01:00:00,0.0,1006.1612119999999,0.0,100.0,2.432,0.146166667,238.09360370000002 -2014-01-22 02:00:00,0.0,1006.2789769999999,0.0,100.0,2.508833333,0.14375,238.09284230000003 -2014-01-22 03:00:00,0.0,1006.396742,0.0,100.0,2.534833333,0.10475,238.09112620000005 -2014-01-22 04:00:00,0.0,1006.514508,0.0,100.0,2.53775,0.0105,238.08986936666668 -2014-01-22 05:00:00,0.0,1006.632273,0.0,100.0,2.5558333330000003,0.11908333300000001,238.08912008333337 -2014-01-22 06:00:00,0.0,1006.750039,0.0,100.0,2.595,0.0,238.08791150000002 -2014-01-22 07:00:00,0.0,1006.8678039999999,0.0,100.0,2.526416667,0.0,238.08665465 -2014-01-22 08:00:00,0.0,1006.9855699999999,1.9719583330000001,100.0,2.5565,0.00725,238.08566365000001 -2014-01-22 09:00:00,0.0,1007.103335,11.26008333,100.0,2.7960000000000003,0.202333333,238.08392336666668 -2014-01-22 10:00:00,0.0,1007.2211,37.29133333,100.0,3.170583333,0.18791666699999998,238.08269070000003 -2014-01-22 11:00:00,0.0,1007.338866,39.61766667,99.95,3.5971666669999998,0.60225,238.0817118 -2014-01-22 12:00:00,0.0,1007.456631,28.98875,99.98333333,3.7480833330000003,0.731166667,238.08145800000003 -2014-01-22 13:00:00,0.0,1007.5743970000001,29.10775,100.0,3.923333333,0.486833333,238.07942766666667 -2014-01-22 14:00:00,0.0,1007.8091820000001,24.178,99.98333333,4.11075,0.34975,238.07795323333335 -2014-01-22 15:00:00,0.0,1007.966333,17.76775,99.99166667,4.10725,0.610583333,238.07771151666668 -2014-01-22 16:00:00,0.0,1008.441333,3.9638083330000002,100.0,4.033083333,0.690916667,238.07645466666665 -2014-01-22 17:00:00,0.0,1008.733333,0.09858333300000001,100.0,3.836833333,0.5375833329999999,238.07522195 -2014-01-22 18:00:00,0.0,1008.864333,0.0,100.0,3.671916667,0.606666667,238.07449680000005 -2014-01-22 19:00:00,0.0,1009.1060000000001,0.0,100.0,3.601916667,0.940083333,238.07322788333332 -2014-01-22 20:00:00,0.0,1009.4789999999999,0.0,100.0,3.535,0.638,238.07151179999997 -2014-01-22 21:00:00,0.0,1009.706,0.0,100.0,3.437333333,0.228166667,238.0710163 -2014-01-22 22:00:00,0.0,1009.956,0.0,100.0,3.358,0.165583333,238.07025489999998 -2014-01-22 23:00:00,0.0,1010.073,0.0,100.0,3.282,0.077916667,238.06879260000002 -2014-01-23 00:00:00,0.0,1010.035333,0.0,100.0,3.1238333330000003,0.038333333,238.0680433 -2014-01-23 01:00:00,0.0,1009.885667,0.0,100.0,3.01925,0.003,238.06704019999998 -2014-01-23 02:00:00,0.0,1009.9623330000001,0.0,100.0,3.007833333,0.10041666699999999,238.06557790000002 -2014-01-23 03:00:00,0.0,1010.141667,0.0,100.0,3.026583333,0.042,238.06481649999998 -2014-01-23 04:00:00,0.0,1010.043667,0.0,100.0,3.005833333,0.177166667,238.0640551 -2014-01-23 05:00:00,0.0,1009.985667,0.0,100.0,2.9266666669999997,0.197416667,238.06254448333334 -2014-01-23 06:00:00,0.0,1010.020667,0.0,100.0,2.869916667,0.27125,238.06204899999997 -2014-01-23 07:00:00,0.0,1009.979333,0.0,100.0,2.815833333,0.21633333300000002,238.06082839999996 -2014-01-23 08:00:00,0.0,1010.145333,1.222666667,100.0,2.94425,0.7999166670000001,238.05955940000004 -2014-01-23 09:00:00,0.0,1010.458333,4.772541667,100.0,3.198666667,0.9595,238.05931769999998 -2014-01-23 10:00:00,0.0,1010.5666669999999,9.426083333,100.0,3.53925,1.4769999999999999,238.0578554 -2014-01-23 11:00:00,0.0,1010.283667,21.77116667,99.79166667,3.7289999999999996,2.1830000000000003,238.05658640000001 -2014-01-23 12:00:00,0.0,1009.656667,56.40716667,96.64166667,4.124,2.157083333,238.05634469999998 -2014-01-23 13:00:00,0.0,1009.250667,79.77083333,92.0,5.003416667,1.973583333,238.05586129999998 -2014-01-23 14:00:00,0.0,1008.460667,38.25733333,87.975,5.032083333,1.873833333,238.05488239999997 -2014-01-23 15:00:00,0.0,1008.212667,19.36433333,88.8,4.841833333,2.0148333330000003,238.05437479999998 -2014-01-23 16:00:00,0.0,1008.148,12.79798333,90.58333333,4.461666667,1.690333333,238.05412099999998 -2014-01-23 17:00:00,0.0,1008.054333,0.29575,94.725,3.445833333,1.274833333,238.05264659999997 -2014-01-23 18:00:00,7.712290032,1007.827333,0.0,97.96666667,2.842333333,0.642916667,238.05240489999997 -2014-01-23 19:00:00,32.81409547,1007.475333,0.0,99.425,2.463916667,1.256416667,238.05240489999997 -2014-01-23 20:00:00,20.88756,1006.842333,0.0,100.0,1.867083333,1.24275,238.05313 -2014-01-23 21:00:00,0.0,1006.285667,0.0,100.0,1.8393333330000001,1.9046666669999999,238.05386719999998 -2014-01-23 22:00:00,0.0,1005.7610000000001,0.0,100.0,2.02925,2.369916667,238.05437479999998 -2014-01-23 23:00:00,0.0,1005.083667,0.0,100.0,2.24625,1.788583333,238.0546286 -2014-01-24 00:00:00,5.482378896,1004.84,0.0,100.0,2.388,1.4910833330000002,238.05513619999996 -2014-01-24 01:00:00,7.977361104,1004.466667,0.0,100.0,2.3745,1.04725,238.05537789999997 -2014-01-24 02:00:00,0.0,1004.579,0.0,100.0,2.430916667,0.26558333300000003,238.05561959999997 -2014-01-24 03:00:00,2.4050227680000003,1004.9580000000001,0.0,100.0,2.42875,0.038083333,238.05537789999997 -2014-01-24 04:00:00,0.0,1005.397333,0.0,100.0,2.333416667,0.5385,238.056103 -2014-01-24 05:00:00,5.145980112,1005.928667,0.0,100.0,1.689,0.793666667,238.05634470000004 -2014-01-24 06:00:00,7.50528036,1006.302,0.0,100.0,1.442083333,0.6343333329999999,238.0568402 -2014-01-24 07:00:00,0.0,1006.955333,0.0,100.0,1.6075,0.67675,238.0568402 -2014-01-24 08:00:00,0.0,1008.018,1.4593833330000001,100.0,1.92375,0.541666667,238.0576016 -2014-01-24 09:00:00,0.0,1008.683,10.29425833,100.0,2.2519166669999997,0.440666667,238.05883429999997 -2014-01-24 10:00:00,0.0,1009.170333,24.53266667,100.0,2.784416667,0.41266666700000004,238.05931769999998 -2014-01-24 11:00:00,0.0,1009.818333,28.1015,99.375,3.0651666669999997,0.74,238.0598132 -2014-01-24 12:00:00,0.0,1009.960333,43.54525,98.44166667,3.367083333,1.171916667,238.0603208 -2014-01-24 13:00:00,0.0,1010.083333,55.28016667,97.49166667,3.8080000000000003,1.18025,238.06108219999996 -2014-01-24 14:00:00,0.0,1010.272667,22.50033333,97.525,3.934166667,1.098333333,238.06156559999997 -2014-01-24 15:00:00,0.0,1010.551667,12.50258333,98.59166667,3.970916667,0.468416667,238.06132389999996 -2014-01-24 16:00:00,0.0,1011.195333,2.8986416669999997,99.25833333,3.715833333,0.760833333,238.06156559999997 -2014-01-24 17:00:00,0.0,1011.791,0.17745,99.86666667,3.4329166669999998,0.35383333299999997,238.06132389999996 -2014-01-24 18:00:00,0.0,1012.193667,0.0,100.0,3.0011666669999997,0.093333333,238.06108219999996 -2014-01-24 19:00:00,0.0,1012.566333,0.0,100.0,2.8801666669999997,0.579916667,238.06132389999996 -2014-01-24 20:00:00,0.0,1013.053667,0.0,100.0,2.6815833330000003,1.6593333330000002,238.06180729999997 -2014-01-24 21:00:00,0.0,1013.391667,0.0,99.95833333,2.267833333,1.078833333,238.06108219999996 -2014-01-24 22:00:00,0.0,1013.445667,0.0,100.0,1.726166667,1.51175,238.06180730000003 -2014-01-24 23:00:00,0.0,1013.720667,0.0,100.0,1.302083333,1.171833333,238.06156559999997 -2014-01-25 00:00:00,0.0,1013.8166669999999,0.0,100.0,1.213833333,1.132416667,238.06082839999996 -2014-01-25 01:00:00,0.0,1013.987333,0.0,100.0,0.9840000000000001,1.40975,238.06082839999996 -2014-01-25 02:00:00,0.0,1014.2810000000001,0.0,100.0,0.8330833329999999,1.601083333,238.06108219999996 -2014-01-25 03:00:00,0.0,1014.689333,0.0,100.0,0.7440000000000001,1.583666667,238.06057459999997 -2014-01-25 04:00:00,0.0,1014.679,0.0,100.0,0.492666667,1.034583333,238.06006699999998 -2014-01-25 05:00:00,0.0,1014.85,0.0,100.0,0.233833333,1.212166667,238.06032079999997 -2014-01-25 06:00:00,0.0,1014.6833330000001,0.0,100.0,0.010083333,1.2615,238.06006700000003 -2014-01-25 07:00:00,0.0,1014.6460000000001,0.039433333,99.3,-0.578416667,1.7648333330000001,238.05955940000004 -2014-01-25 08:00:00,0.0,1014.537333,5.2459166669999995,98.95,-0.794333333,1.94425,238.0593298 -2014-01-25 09:00:00,0.0,1014.793667,21.084,98.36666667,-0.77075,1.71825,238.0585926 -2014-01-25 10:00:00,0.0,1015.014333,43.40991667,96.525,-0.65125,1.08025,238.0578554 -2014-01-25 11:00:00,0.0,1015.050333,63.52966667,94.93333333,-0.5495,1.51325,238.05810919999996 -2014-01-25 12:00:00,0.0,1014.515,75.06916667,93.99166667,-0.29691666699999997,1.699,238.0568402 -2014-01-25 13:00:00,0.0,1013.904667,52.18558333,93.53333333,-0.13875,1.3925833330000001,238.05658640000001 -2014-01-25 14:00:00,0.0,1013.348333,47.88175,92.93333333,0.114,1.1634166670000001,238.05634469999998 -2014-01-25 15:00:00,0.0,1012.933667,35.57808333,92.61666667,0.506416667,0.965333333,238.05537789999994 -2014-01-25 16:00:00,0.0,1012.644333,10.59076667,93.86666667,0.63075,0.76175,238.05561959999997 -2014-01-25 17:00:00,0.0,1011.440333,0.532466667,96.26666667,0.55575,1.3575,238.056103 -2014-01-25 18:00:00,0.0,1011.356667,0.0,97.44166667,0.48425,0.68575,238.05512409999997 -2014-01-25 19:00:00,2.994629544,1009.786333,0.0,99.1,0.459083333,2.012,238.05561959999997 -2014-01-25 20:00:00,0.0,1008.298,0.0,98.95,0.6176666670000001,1.9998333330000002,238.05513619999996 -2014-01-25 21:00:00,0.0,1006.1260000000001,0.0,95.975,0.8385,2.499166667,238.05561959999997 -2014-01-25 22:00:00,0.0,1004.849667,0.0,97.20833333,1.105333333,2.523333333,238.056103 -2014-01-25 23:00:00,2.695911288,1002.897333,0.0,99.9,0.6805,2.101416667,238.05659849999998 -2014-01-26 00:00:00,2.505539208,1001.328,0.0,99.78333333,0.43491666700000003,1.257583333,238.0573478 -2014-01-26 01:00:00,8.017159104,1000.413,0.0,99.9,0.9725,1.303083333,238.0578554 -2014-01-26 02:00:00,16.89254345,1000.3853330000001,0.0,99.95833333,1.385083333,2.337166667,238.05810919999996 -2014-01-26 03:00:00,20.4659622,1000.668333,0.0,99.975,1.6080833330000002,2.845416667,238.05883430000003 -2014-01-26 04:00:00,20.21443157,1000.966333,0.0,99.05833333,2.26625,2.948416667,238.06032079999997 -2014-01-26 05:00:00,15.82144159,1001.8530000000001,0.0,97.31666667,3.186833333,2.177333333,238.06279826666665 -2014-01-26 06:00:00,0.0,1003.032667,0.0,95.35,3.644166667,1.6813333330000002,238.06630300000003 -2014-01-26 07:00:00,3.055723128,1004.072,0.019716667,95.55,3.7551666669999997,1.348,238.07100419999998 -2014-01-26 08:00:00,0.0,1004.770333,2.50425,95.35,3.69675,0.764166667,238.07646673333338 -2014-01-26 09:00:00,0.0,1005.206,31.913,95.15,4.024666667,1.6639166669999998,238.08192930000004 -2014-01-26 10:00:00,0.0,1005.4730000000001,41.94516667,95.725,4.3173333330000006,2.146,238.08542193333335 -2014-01-26 11:00:00,0.0,1005.2460000000001,64.39008333,94.08333333,4.4648333330000005,2.08625,238.08765771666666 -2014-01-26 12:00:00,0.0,1004.910667,82.84383333,90.31666667,4.82275,2.099583333,238.08962765 -2014-01-26 13:00:00,0.0,1004.265333,118.4925,85.46666667,5.96625,2.325333333,238.0908845 -2014-01-26 14:00:00,0.0,1003.136333,70.042,77.98083333,5.752583333,2.025833333,238.092093 -2014-01-26 15:00:00,0.0,1002.521333,51.58708333,77.06583333,5.0680000000000005,2.2675,238.09209299999998 -2014-01-26 16:00:00,0.0,1001.488667,15.40099167,82.875,4.098916667,1.2571666670000001,238.092093 -2014-01-26 17:00:00,0.0,1000.161333,0.29575,83.01666667,3.4868333330000003,2.032666667,238.09185130000003 -2014-01-26 18:00:00,0.0,998.7226667000001,0.0,84.2,3.5019166669999997,2.6905,238.0923347 -2014-01-26 19:00:00,0.0,996.6223332999999,0.0,84.85,3.6125,3.47125,238.092093 -2014-01-26 20:00:00,4.402843632,994.8203332999999,0.0,90.40833333,3.397833333,3.5678333330000003,238.09434086666667 -2014-01-26 21:00:00,11.53555999,992.9076667000002,0.0,95.44166667,2.82,4.0535,238.09784563333332 -2014-01-26 22:00:00,38.6244455,991.137,0.0,98.08333333,2.182083333,3.6766666669999997,238.09733806666668 -2014-01-26 23:00:00,11.953119099999999,989.784,0.0,99.81666667,0.8753333329999999,2.7985833330000003,238.09958591666668 -2014-01-27 00:00:00,19.66863773,988.83,0.0,100.0,0.76375,2.438416667,238.1045288 -2014-01-27 01:00:00,13.54790626,987.8693332999999,0.0,100.0,0.8390000000000001,1.973333333,238.1107285666667 -2014-01-27 02:00:00,10.43461507,987.5916667000001,0.0,100.0,0.940583333,1.3579166669999998,238.118439 -2014-01-27 03:00:00,4.857045768,987.9643332999999,0.0,100.0,0.9640000000000001,0.317666667,238.12686244999998 -2014-01-27 04:00:00,2.3865511440000002,988.5926667000001,0.0,100.0,0.830916667,0.299166667,238.13458493333334 -2014-01-27 05:00:00,9.059223527999999,989.535,0.0,98.74166667,2.781166667,1.96675,238.14051885 -2014-01-27 06:00:00,6.054889127999999,990.1556667000001,0.0,95.35,3.0405833330000003,2.187416667,238.1467307 -2014-01-27 07:00:00,0.0,990.9616667000001,0.05915,96.0,2.745666667,2.339,238.15172189999998 -2014-01-27 08:00:00,0.0,991.7913332999999,7.750925,96.05,2.491083333,1.830583333,238.15418730000002 -2014-01-27 09:00:00,5.304006816,992.4243332999998,62.18158333,93.74166667,2.9595,1.110666667,238.1546707 -2014-01-27 10:00:00,0.0,992.8726667000001,58.702,91.53333333,3.4555833330000003,1.4215,238.1546707 -2014-01-27 11:00:00,0.0,993.0583332999998,97.65233333,87.51666667,4.308,1.738833333,238.15394560000001 -2014-01-27 12:00:00,0.0,992.7523332999999,79.72766667,83.89166667,4.393916667,1.312333333,238.15295460000002 -2014-01-27 13:00:00,3.208353696,992.7126667000001,129.94333329999998,80.62166667,5.497083333,1.541166667,238.15270079999996 -2014-01-27 14:00:00,0.0,992.4896667000002,135.6384167,74.97666667,5.632999999999999,2.21475,238.1519515 -2014-01-27 15:00:00,0.0,992.4166667000002,77.53783333,71.99333333,5.42275,1.65325,238.14998163333334 -2014-01-27 16:00:00,0.0,992.4393332999998,10.39155833,76.83833333,4.679666667,1.41675,238.14871268333331 -2014-01-27 17:00:00,0.0,992.8603332999999,0.43376666700000005,88.475,3.5379166669999997,1.7929166669999999,238.1467186 -2014-01-27 18:00:00,0.0,993.033,0.0,91.53333333,1.7150833330000002,1.92625,238.1444828 -2014-01-27 19:00:00,0.0,993.252,0.0,93.36666667,2.016,1.459,238.14325010000002 -2014-01-27 20:00:00,0.0,993.1273332999999,0.0,91.64166667,2.390583333,2.073666667,238.1425129 -2014-01-27 21:00:00,0.0,993.2826667000002,0.0,92.75833333,2.558416667,3.2658333330000002,238.1402892 -2014-01-27 22:00:00,0.0,993.7976667000001,0.0,92.775,2.86525,3.0684166669999997,238.13879065 -2014-01-27 23:00:00,0.0,994.16,0.0,93.55,2.617916667,3.01575,238.13706243333334 -2014-01-28 00:00:00,0.0,994.6476667000002,0.0,93.975,2.6398333330000003,2.958916667,238.13531008333334 -2014-01-28 01:00:00,0.0,994.9019999999999,0.0,96.06666667,2.614666667,2.59275,238.13384771666668 -2014-01-28 02:00:00,0.0,994.8773332999999,0.0,97.46666667,2.264583333,0.751083333,238.1328325833333 -2014-01-28 03:00:00,0.0,994.825,0.0,98.61666667,2.19675,1.75125,238.1308143 -2014-01-28 04:00:00,3.2674750560000003,994.9953332999999,0.0,95.69166667,2.59525,2.242833333,238.12909823333334 -2014-01-28 05:00:00,0.0,995.3456667000002,0.0,95.65,2.597916667,2.1670833330000003,238.12785344999998 -2014-01-28 06:00:00,0.0,995.8183332999998,0.0,96.24166667,2.45275,2.2119999999999997,238.12587144999998 -2014-01-28 07:00:00,0.0,996.1203332999999,0.05915,97.74166667,2.0575,1.7271666669999999,238.12512216666667 -2014-01-28 08:00:00,0.0,996.602,10.058825,99.93333333,1.9371666669999998,1.550583333,238.12340601666668 -2014-01-28 09:00:00,0.0,996.7356667000001,23.3905,100.0,2.09425,1.4516666669999998,238.12239088333328 -2014-01-28 10:00:00,0.0,996.6683332999999,51.21491667,98.45,2.715416667,1.8811666669999998,238.12092859999998 -2014-01-28 11:00:00,0.0,996.825,144.47416669999998,88.46666667,4.739166667,2.4165,238.1201793 -2014-01-28 12:00:00,0.0,996.6816667000002,142.9108333,82.95,4.460083333,2.076333333,238.1194179 -2014-01-28 13:00:00,0.0,996.2669999999999,121.5375,79.015,5.11175,2.297333333,238.11868069999994 -2014-01-28 14:00:00,0.0,995.6943332999999,77.33483333,81.55666667,5.279,2.161833333,238.11771389999998 -2014-01-28 15:00:00,0.0,995.2313332999998,106.344,77.5775,5.943416667,2.01775,238.11720629999994 -2014-01-28 16:00:00,0.0,995.0333332999999,31.2585,83.92166667,4.518166667,2.314333333,238.1159615 -2014-01-28 17:00:00,0.0,995.096,1.123966667,91.54166667,3.25725,1.3631666669999998,238.1142333 -2014-01-28 18:00:00,0.0,995.1123332999998,0.0,96.35,1.6515,0.44591666700000004,238.1139795 -2014-01-28 19:00:00,0.0,995.1666667000002,0.0,99.95,0.43108333299999996,0.348416667,238.11271053333334 -2014-01-28 20:00:00,0.0,995.279,0.0,100.0,-0.639416667,0.130083333,238.1116954 -2014-01-28 21:00:00,0.0,995.423,0.0,100.0,-1.3159999999999998,0.208083333,238.1102452 -2014-01-28 22:00:00,0.0,995.5830000000001,0.0,100.0,-2.2515,0.16116666699999999,238.10973760000002 -2014-01-28 23:00:00,0.0,995.7476667000001,0.0,100.0,-2.769333333,0.198666667,238.1084807 -2014-01-29 00:00:00,0.0,996.052,0.0,100.0,-1.5590000000000002,0.584666667,238.108239 -2014-01-29 01:00:00,0.0,996.0873332999998,0.0,98.74166667,-0.013833333,0.9179999999999999,238.10727219999998 -2014-01-29 02:00:00,0.0,996.1273332999999,0.0,95.56666667,0.7509999999999999,1.6174166669999999,238.106257 -2014-01-29 03:00:00,0.0,995.8689999999999,0.0,94.75,0.768833333,1.688666667,238.1057494 -2014-01-29 04:00:00,0.0,995.6916667000002,0.0,93.93333333,0.571416667,1.48375,238.105266 -2014-01-29 05:00:00,0.0,995.8726667000001,0.0,93.675,0.43125,1.764583333,238.10428710000005 -2014-01-29 06:00:00,0.0,996.052,0.0,93.03333333,0.433666667,1.1840000000000002,238.10353780000003 -2014-01-29 07:00:00,0.0,996.2516667000001,0.039433333,92.34166667,0.44341666700000004,0.742583333,238.1027764 -2014-01-29 08:00:00,0.0,996.5893332999999,4.673433333,90.79166667,0.4955,1.1181666670000001,238.1020513 -2014-01-29 09:00:00,0.0,996.9436667000001,22.5645,89.125,0.8835,1.327583333,238.10131411666669 -2014-01-29 10:00:00,0.0,997.2413332999998,35.93625,87.85,1.20475,1.44325,238.10081863333335 -2014-01-29 11:00:00,0.0,997.346,55.25858333,87.34166667,1.226083333,1.967416667,238.0998035 -2014-01-29 12:00:00,0.0,997.0876667000001,64.67125,86.21666667,1.3501666669999999,1.9585833330000002,238.09859491666666 -2014-01-29 13:00:00,0.0,996.948,58.0195,84.64166667,1.3874166669999999,2.427333333,238.0983532 -2014-01-29 14:00:00,0.0,996.821,46.956,85.56666667,1.25075,2.182083333,238.0983532 -2014-01-29 15:00:00,0.0,996.835,26.80183333,86.8,0.88725,1.92,238.09784563333335 -2014-01-29 16:00:00,0.0,997.2433332999999,7.060433333,86.63333333,0.7905833329999999,1.93425,238.09708428333337 -2014-01-29 17:00:00,0.0,997.7810000000001,0.473375,86.16666667,0.7909166670000001,1.614,238.0963229 -2014-01-29 18:00:00,0.0,998.212,0.0,86.53333333,0.8019166670000001,1.5928333330000002,238.0958153 -2014-01-29 19:00:00,0.0,998.7433332999999,0.0,86.225,0.793583333,1.42875,238.0945826 -2014-01-29 20:00:00,0.0,999.0333332999999,0.0,86.25833333,0.792333333,1.3628333330000002,238.0945826 -2014-01-29 21:00:00,0.0,999.1663332999999,0.0,85.23333333,0.81575,1.6519166669999998,238.0938575 -2014-01-29 22:00:00,0.0,999.8723332999999,0.0,83.43333333,0.934583333,1.721416667,238.09309610000003 -2014-01-29 23:00:00,0.0,1000.116667,0.0,84.94166667,0.5970833329999999,0.6779166670000001,238.09284230000003 -2014-01-30 00:00:00,0.0,1000.3083330000001,0.0,89.69166667,-0.240666667,0.358916667,238.0918513 -2014-01-30 01:00:00,0.0,1000.447667,0.0,92.70833333,-0.301,0.42466666700000005,238.09136790000002 -2014-01-30 02:00:00,0.0,1000.681,0.0,94.29166667,-0.5419166670000001,0.497833333,238.0918513 -2014-01-30 03:00:00,0.0,1000.927,0.0,95.66666667,-0.43941666700000004,0.198583333,238.0908845 -2014-01-30 04:00:00,0.0,1001.235,0.0,97.23333333,-0.60775,0.04125,238.09012315000004 -2014-01-30 05:00:00,0.0,1001.454,0.0,99.05,-1.245,0.080833333,238.08912008333337 -2014-01-30 06:00:00,0.0,1001.504333,0.0,98.81666667,-1.474166667,0.5105,238.08863665 -2014-01-30 07:00:00,0.0,1001.845333,0.138075,99.80833333,-1.9944166669999999,0.440333333,238.08765771666666 -2014-01-30 08:00:00,0.0,1002.474333,11.14499167,100.0,-2.775,0.05025,238.0868963666667 -2014-01-30 09:00:00,0.0,1002.9623330000001,45.41016667,98.9,-0.593166667,0.32325,238.08443093333332 -2014-01-30 10:00:00,0.0,1003.2310000000001,109.9641667,91.80833333,1.271833333,1.139166667,238.08366958333337 -2014-01-30 11:00:00,0.0,1003.04,169.8025,85.84166667,2.114416667,1.68425,238.08341580000004 -2014-01-30 12:00:00,0.0,1003.118333,200.2933333,82.275,2.488083333,2.2021666669999997,238.082449 -2014-01-30 13:00:00,0.0,1003.254333,174.53916669999998,79.42083333,2.982333333,2.0324166669999997,238.082449 -2014-01-30 14:00:00,0.0,1002.638,126.6125,77.0625,3.2984166669999997,1.65575,238.08145800000003 -2014-01-30 15:00:00,0.0,1002.346,90.30291667,77.82333333,3.095,1.38725,238.0812042 -2014-01-30 16:00:00,0.0,1002.25,31.35475,83.8325,2.319666667,0.6064166670000001,238.08044280000004 -2014-01-30 17:00:00,0.0,1002.437333,1.617175,90.96666667,0.942583333,0.5801666670000001,238.0791738833333 -2014-01-30 18:00:00,0.0,1002.516667,0.0,92.375,0.7979166670000001,0.668666667,238.07892009999998 -2014-01-30 19:00:00,0.0,1002.752,0.0,97.525,-0.6905,0.0465,238.07795323333335 -2014-01-30 20:00:00,0.0,1002.527333,0.0,99.70833333,-1.255666667,0.15708333300000002,238.07746980000005 -2014-01-30 21:00:00,0.0,1002.333333,0.0,100.0,-1.02375,0.354333333,238.07771151666668 -2014-01-30 22:00:00,0.0,1002.306,0.0,100.0,-1.57025,0.15416666699999998,238.07696223333335 -2014-01-30 23:00:00,0.0,1002.633333,0.0,99.4,-1.18675,0.195416667,238.07696223333335 -2014-01-31 00:00:00,0.0,1002.633333,0.0,95.90833333,-0.661166667,0.42908333299999996,238.07620088333329 -2014-01-31 01:00:00,0.0,1002.533333,0.0,94.725,-0.272833333,0.555,238.0762008833333 -2014-01-31 02:00:00,0.0,1002.627333,0.0,94.675,-0.291166667,0.584833333,238.07594709999998 -2014-01-31 03:00:00,0.0,1002.470667,0.0,93.675,-0.271416667,0.872166667,238.07570538333331 -2014-01-31 04:00:00,0.0,1002.539333,0.0,93.84166667,-0.407916667,0.574416667,238.07449680000005 -2014-01-31 05:00:00,0.0,1003.1289999999999,0.0,95.00833333,-0.582666667,0.16925,238.07449680000005 -2014-01-31 06:00:00,0.0,1002.783667,0.0,97.06666667,-1.141833333,0.009000000000000001,238.0742430166667 -2014-01-31 07:00:00,0.0,1002.916,0.157791667,99.81666667,-2.6676666669999998,0.021833332999999996,238.07322788333332 -2014-01-31 08:00:00,0.0,1003.595333,9.725508332999999,100.0,-2.976833333,0.194916667,238.07298618333334 -2014-01-31 09:00:00,0.0,1004.222333,37.77783333,100.0,-0.715,0.2305,238.0720073 -2014-01-31 10:00:00,0.0,1004.895333,92.48983333,94.225,1.5700833330000001,0.372166667,238.07176560000005 -2014-01-31 11:00:00,0.0,1004.9960000000001,176.155,83.34166667,2.4361666669999997,1.056083333,238.0717535 -2014-01-31 12:00:00,0.0,1004.752667,201.565,81.5075,3.03675,1.773166667,238.07152390000002 -2014-01-31 13:00:00,0.0,1004.4,203.7583333,78.24833333,3.557083333,2.0638333330000003,238.07152390000002 -2014-01-31 14:00:00,0.0,1004.158667,171.44166669999998,77.18833333,4.066666667,1.8893333330000002,238.07127010000002 -2014-01-31 15:00:00,0.0,1004.324667,112.35,76.135,4.092833333,1.50575,238.0707625 -2014-01-31 16:00:00,0.0,1004.242,39.16558333,79.58916667,3.135,1.704166667,238.07000109999998 -2014-01-31 17:00:00,0.0,1004.174667,1.439491667,87.69166667,1.89375,1.999416667,238.06951769999998 -2014-01-31 18:00:00,0.0,1004.1669999999999,0.0,98.01666667,0.3225,0.50375,238.06879260000002 -2014-01-31 19:00:00,0.0,1004.225,0.0,99.99166667,-1.293083333,0.304083333,238.06879260000002 -2014-01-31 20:00:00,0.0,1003.529667,0.0,99.40833333,-1.229583333,0.8038333329999999,238.06855090000002 -2014-01-31 21:00:00,0.0,1003.000333,0.0,96.075,0.35233333299999997,1.69125,238.0680433 -2014-01-31 22:00:00,0.0,1002.656667,0.0,96.21666667,0.331416667,2.21975,238.0677895 -2014-01-31 23:00:00,0.0,1002.142333,0.0,98.68333333,0.255833333,2.649666667,238.0675357 -2014-01-02 00:00:00,0.0,1001.173667,0.0,96.36666667,-0.194666667,1.9245,238.02575000000002 -2014-01-02 01:00:00,0.0,1000.292333,0.0,96.98333333,-0.2095,2.935666667,238.02575000000002 -2014-01-02 02:00:00,0.0,999.763,0.0,97.075,-0.017416667,2.302833333,238.02542100000002 -2014-01-02 03:00:00,0.0,999.005,0.0,98.575,0.073,2.863333333,238.026079 -2014-01-02 04:00:00,0.0,998.1336667000002,0.0,97.86666667,0.46299999999999997,3.2141666669999998,238.02542100000002 -2014-01-02 05:00:00,0.0,997.4546667000001,0.0,96.25,0.96925,3.3569999999999998,238.02542100000002 -2014-01-02 06:00:00,0.0,996.6156667000001,0.0,91.575,1.09075,3.313916667,238.02542100000002 -2014-01-02 07:00:00,0.0,996.2539999999999,0.216941667,84.875,1.6095833330000002,3.309416667,238.02575000000002 -2014-01-02 08:00:00,0.0,996.2083332999998,7.356533333,86.1,1.64525,4.437833333,238.02575000000002 -2014-01-02 09:00:00,0.0,996.3186667000001,25.02675,83.8225,1.600333333,3.847583333,238.02510766666668 -2014-01-02 10:00:00,0.0,996.7683332999999,24.68958333,80.82,1.8984166669999998,3.188583333,238.02446533333338 -2014-01-02 11:00:00,0.0,996.825,24.73041667,81.81,2.36625,2.014333333,238.024152 -2014-01-02 12:00:00,0.0,996.6083332999999,34.88566667,81.765,3.029666667,1.8353333330000001,238.02415200000004 -2014-01-02 13:00:00,36.18932206,996.987,29.3825,88.8,5.752916667,3.002333333,238.02352533333337 -2014-01-02 14:00:00,21.62247742,997.4956667000001,27.17458333,93.64166667,5.257333333,1.8305,238.02352533333337 -2014-01-02 15:00:00,13.98360372,997.9556667000002,16.21083333,95.35833333,4.131083333,1.35075,238.021896 -2014-01-02 16:00:00,7.731700847999999,998.7139999999999,7.119,97.95833333,3.696583333,0.9218333329999999,238.021896 -2014-01-02 17:00:00,17.59084579,999.5306667000001,0.3549,100.0,3.328666667,0.696666667,238.021238 -2014-01-02 18:00:00,21.80355552,1000.314,0.0,99.45833333,3.363083333,1.23875,238.02061133333333 -2014-01-02 19:00:00,2.51738328,1000.878667,0.0,99.98333333,3.1750833330000003,0.60375,238.0199846666667 -2014-01-02 20:00:00,2.42468376,1001.676333,0.0,100.0,2.859666667,0.204333333,238.018371 -2014-01-02 21:00:00,5.050269864,1002.206,0.0,98.79166667,2.769916667,0.309083333,238.0187 -2014-01-02 22:00:00,2.4050227680000003,1002.364333,0.0,98.70833333,2.783416667,0.196666667,238.0187 -2014-01-02 23:00:00,0.0,1002.674667,0.0,98.41666667,2.5275,0.29791666699999997,238.018371 -2014-02-02 00:00:00,0.0,1003.041667,0.0,100.0,1.8660833330000002,0.1125,238.0712701 -2014-02-02 01:00:00,0.0,1003.274667,0.0,100.0,1.4250833330000001,0.049166667000000004,238.07101630000003 -2014-02-02 02:00:00,0.0,1003.593333,0.0,100.0,1.28175,0.070583333,238.07176560000002 -2014-02-02 03:00:00,0.0,1003.860333,0.0,100.0,1.14425,0.0655,238.07176560000002 -2014-02-02 04:00:00,0.0,1004.216333,0.0,100.0,0.890833333,0.038083333,238.07200730000002 -2014-02-02 05:00:00,0.0,1004.758,0.0,100.0,1.09625,0.223583333,238.07152390000002 -2014-02-02 06:00:00,0.0,1005.422,0.0,100.0,0.96675,0.133916667,238.07152390000002 -2014-02-02 07:00:00,0.0,1006.449333,0.13801666699999998,100.0,1.454,0.165666667,238.07152390000002 -2014-02-02 08:00:00,0.0,1007.028667,8.97365,100.0,1.38175,0.057083333,238.0712701 -2014-02-02 09:00:00,0.0,1007.863667,33.60583333,100.0,1.6048333330000002,0.07925,238.07101630000003 -2014-02-02 10:00:00,0.0,1008.553667,131.07675,100.0,4.106,0.570916667,238.0702549 -2014-02-02 11:00:00,0.0,1009.081,156.2225,85.46666667,6.6014166670000005,0.998,238.0705087 -2014-02-02 12:00:00,0.0,1009.420667,206.3360833,80.42166667,7.723833332999999,1.394916667,238.07050869999998 -2014-02-02 13:00:00,0.0,1009.541667,187.9033333,75.60666667,7.841833332999999,1.5255,238.07101630000003 -2014-02-02 14:00:00,0.0,1009.762,192.99583330000002,70.11083333,8.95,1.1663333329999999,238.06975939999995 -2014-02-02 15:00:00,0.0,1010.170667,117.70675,72.245,8.824166667,1.109916667,238.06927599999997 -2014-02-02 16:00:00,0.0,1010.422667,66.03625,78.20833333,7.9585,1.057916667,238.0687805 -2014-02-02 17:00:00,0.0,1010.753667,5.975083333,90.28333333,5.14475,1.38025,238.0675357 -2014-02-02 18:00:00,0.0,1011.389333,0.0,97.39166667,3.062833333,0.766833333,238.0665447 -2014-02-02 19:00:00,0.0,1012.097,0.0,99.65833333,1.706833333,0.278416667,238.06581960000003 -2014-02-02 20:00:00,0.0,1012.937,0.0,99.65,0.7195,0.19266666699999999,238.06581960000003 -2014-02-02 21:00:00,0.0,1013.116667,0.0,100.0,0.571583333,0.326416667,238.06557790000002 -2014-02-02 22:00:00,0.0,1013.2,0.0,100.0,-0.254416667,0.2965,238.0643089 -2014-02-02 23:00:00,0.0,1013.389333,0.0,100.0,-0.720833333,0.291666667,238.0640551 -2014-03-02 00:00:00,0.0,1013.308667,0.0,100.0,-1.33975,0.242833333,238.02927366666668 -2014-03-02 01:00:00,0.0,1012.962667,0.0,100.0,-1.655583333,0.111583333,238.02854851666666 -2014-03-02 02:00:00,0.0,1012.702333,0.0,100.0,-1.60975,0.1365,238.02854851666666 -2014-03-02 03:00:00,0.0,1012.596,0.0,100.0,-0.693416667,0.120583333,238.02830679999997 -2014-03-02 04:00:00,0.0,1012.448,0.0,100.0,-0.44575,0.3375,238.02729166666666 -2014-03-02 05:00:00,0.0,1012.129333,0.0,100.0,-0.5155,0.205416667,238.02729166666666 -2014-03-02 06:00:00,0.0,1011.677667,0.0,100.0,-0.276583333,0.516416667,238.02678410000001 -2014-03-02 07:00:00,0.0,1011.19,0.078866667,100.0,-0.2715,0.630583333,238.02654238333332 -2014-03-02 08:00:00,0.0,1010.500667,7.040366667000001,100.0,-0.179166667,0.4315,238.02581723333333 -2014-03-02 09:00:00,0.0,1010.117,21.77291667,100.0,0.141416667,1.4305833330000002,238.02655444999996 -2014-03-02 10:00:00,2.691079776,1009.327667,41.37875,100.0,0.533416667,1.5855833330000002,238.02678410000001 -2014-03-02 11:00:00,0.0,1008.665333,54.3585,100.0,1.235166667,1.382916667,238.02630066666666 -2014-03-02 12:00:00,0.0,1007.5239999999999,60.3505,100.0,2.0365833330000003,1.25725,238.02557551666666 -2014-03-02 13:00:00,0.0,1006.33,41.29533333,100.0,2.706583333,1.883833333,238.02605895 -2014-03-02 14:00:00,0.0,1005.33,29.10775,100.0,2.98725,1.3004166670000001,238.02654238333332 -2014-03-02 15:00:00,0.0,1004.683667,20.174,99.65833333,3.5550833330000002,1.3865833330000001,238.02581723333333 -2014-03-02 16:00:00,0.0,1004.250333,8.420708333,96.13333333,3.759083333,1.48,238.0253338 -2014-03-02 17:00:00,0.0,1004.112333,0.670425,93.79166667,3.601583333,1.7581666669999998,238.02508001666664 -2014-03-02 18:00:00,0.0,1004.4789999999999,0.0,92.11666667,3.392083333,1.998833333,238.0253338 -2014-03-02 19:00:00,0.0,1004.337667,0.0,90.80833333,3.134416667,2.13725,238.0253338 -2014-03-02 20:00:00,0.0,1004.004333,0.0,91.89166667,2.927916667,1.595166667,238.02457245000002 -2014-03-02 21:00:00,0.0,1004.158333,0.0,93.275,2.856583333,1.7755833330000002,238.0253338 -2014-03-02 22:00:00,0.0,1004.270667,0.0,93.54166667,2.8015,1.7541666669999998,238.0253338 -2014-03-02 23:00:00,0.0,1004.239333,0.0,93.775,2.728916667,2.284833333,238.0250800166667 -2014-04-02 00:00:00,0.0,1004.537333,0.0,94.18333333,2.550916667,2.15375,237.95717280000005 -2014-04-02 01:00:00,0.0,1004.462667,0.0,95.25833333,2.518916667,2.3595,237.95717280000005 -2014-04-02 02:00:00,0.0,1004.285667,0.0,96.39166667,1.76925,2.118833333,237.95650443333338 -2014-04-02 03:00:00,0.0,1004.341667,0.0,98.80833333,1.441583333,1.7920833330000001,237.9555018833333 -2014-04-02 04:00:00,0.0,1004.3560000000001,0.0,100.0,1.288916667,1.9005,237.95583606666665 -2014-04-02 05:00:00,0.0,1004.612333,0.0,100.0,0.944916667,2.1575833330000003,237.95516769999998 -2014-04-02 06:00:00,0.0,1004.991333,0.0,100.0,1.034583333,2.125333333,237.95481679999997 -2014-04-02 07:00:00,0.0,1005.2560000000001,0.13801666699999998,100.0,1.3825833330000001,2.690666667,237.95516769999998 -2014-04-02 08:00:00,0.0,1005.793333,3.569883333,99.54166667,1.5535833330000002,3.418166667,237.95617025 -2014-04-02 09:00:00,0.0,1006.251667,25.62,97.9,2.056,3.510333333,237.95650443333338 -2014-04-02 10:00:00,0.0,1006.5060000000001,69.2615,95.84166667,2.772333333,2.287,237.95617025 -2014-04-02 11:00:00,0.0,1006.693667,96.82166667,92.5,3.78125,1.8894166669999999,237.95583606666665 -2014-04-02 12:00:00,0.0,1006.8083330000001,90.86,90.50833333,4.490916667,1.2691666670000001,237.95650443333338 -2014-04-02 13:00:00,0.0,1006.743667,107.04166670000001,88.725,5.073916667,1.643,237.9568386166667 -2014-04-02 14:00:00,0.0,1006.400667,102.445,88.075,5.3165,2.265333333,237.95683861666672 -2014-04-02 15:00:00,0.0,1006.25,60.95541667,88.45833333,5.353,3.181,237.95617025 -2014-04-02 16:00:00,0.0,1006.096,24.374000000000002,90.875,4.905583333,2.070583333,237.95583606666665 -2014-04-02 17:00:00,0.0,1005.810667,3.7860083330000003,98.18333333,3.779833333,1.349666667,237.9555018833333 -2014-04-02 18:00:00,0.0,1005.352333,0.0,100.0,1.853083333,0.774416667,237.95516769999998 -2014-04-02 19:00:00,0.0,1005.19,0.0,100.0,-0.043,0.18600000000000003,237.954115 -2014-04-02 20:00:00,0.0,1004.652333,0.0,100.0,-0.41825,0.9664166670000001,237.95376410000003 -2014-04-02 21:00:00,0.0,1004.231667,0.0,99.14166667,1.546,1.80975,237.95306230000003 -2014-04-02 22:00:00,0.0,1003.557,0.0,99.65833333,1.01675,0.74625,237.95341320000003 -2014-04-02 23:00:00,0.0,1002.896333,0.0,99.975,0.48675,0.568,237.95306230000003 -2014-05-02 00:00:00,0.0,1002.231667,0.0,100.0,-0.208083333,0.36325,237.88027639999996 -2014-05-02 01:00:00,0.0,1001.607,0.0,100.0,-1.208416667,0.19925,237.87887279999998 -2014-05-02 02:00:00,0.0,1000.732,0.0,100.0,-0.8101666670000001,0.45825,237.87720188333333 -2014-05-02 03:00:00,0.0,999.8589999999999,0.0,100.0,-0.804666667,0.7805833329999999,237.87686769999996 -2014-05-02 04:00:00,0.0,999.0466667000002,0.0,100.0,-0.775666667,1.51925,237.87686769999996 -2014-05-02 05:00:00,0.0,998.2026667000001,0.0,100.0,-0.438333333,2.16675,237.87651681666662 -2014-05-02 06:00:00,0.0,997.6543332999998,0.0,99.925,-0.6396666670000001,1.3453333330000001,237.87581505 -2014-05-02 07:00:00,0.0,997.4003332999998,1.755425,100.0,-0.50075,2.2791666669999997,237.87511328333332 -2014-05-02 08:00:00,0.0,997.408,9.507808333,99.40833333,-0.18408333300000002,2.506916667,237.87476239999998 -2014-05-02 09:00:00,0.0,997.198,21.40075,98.28333333,0.19975,2.193166667,237.87476239999998 -2014-05-02 10:00:00,0.0,997.2836667000001,27.57183333,97.63333333,0.448166667,2.519083333,237.87476239999998 -2014-05-02 11:00:00,2.667179688,996.6653332999998,51.03816667,98.375,0.5515,2.309583333,237.8727572 -2014-05-02 12:00:00,2.761962144,995.7796667000001,115.6225,99.19166667,1.141583333,1.8373333330000001,237.87100278333332 -2014-05-02 13:00:00,0.0,994.953,92.02083333,96.56666667,2.145833333,2.361916667,237.87065189999998 -2014-05-02 14:00:00,0.0,994.4416667000002,47.74466667,94.025,2.801166667,3.46375,237.87065189999998 -2014-05-02 15:00:00,0.0,994.6956667000002,23.94,95.15833333,2.741333333,3.4485,237.87030099999996 -2014-05-02 16:00:00,0.0,994.5543332999998,19.8975,96.73333333,2.7545833330000002,3.0114166669999998,237.8688974 -2014-05-02 17:00:00,0.0,994.8036667000001,5.166525,96.44166667,2.79275,3.42,237.86854649999995 -2014-05-02 18:00:00,3.330986016,995.6303332999998,0.0,96.99166667,2.89,2.116333333,237.86854649999995 -2014-05-02 19:00:00,0.0,996.1560000000001,0.0,97.0,2.758083333,1.692666667,237.8678781333333 -2014-05-02 20:00:00,0.0,996.4726667000001,0.0,93.13333333,2.5213333330000003,1.934916667,237.8665414 -2014-05-02 21:00:00,0.0,996.9393332999998,0.0,93.6,3.277333333,2.602,237.8647869 -2014-05-02 22:00:00,0.0,997.2330000000001,0.0,92.98333333,4.19225,3.64775,237.8647869 -2014-05-02 23:00:00,0.0,997.5893332999999,0.0,89.45,4.453916667,2.77825,237.86443599999998 -2014-06-02 00:00:00,0.0,998.0556667000001,0.0,89.325,4.43625,1.869083333,237.74222389999997 -2014-06-02 01:00:00,0.0,998.6473332999999,0.0,90.875,4.353666667,1.5443333330000002,237.7404861166667 -2014-06-02 02:00:00,2.73107808,999.2496667000001,0.0,90.85,5.7375,1.249416667,237.74222389999997 -2014-06-02 03:00:00,0.0,999.664,0.0,89.41666667,6.51325,2.143416667,237.74292569999997 -2014-06-02 04:00:00,0.0,1000.022667,0.0,91.61666667,6.475916667000001,2.281083333,237.74292569999997 -2014-06-02 05:00:00,0.0,1000.502,0.0,91.15,5.637083333,2.227583333,237.74426243333335 -2014-06-02 06:00:00,0.0,1000.851667,0.0,90.05,5.3785,1.7515833330000001,237.7452817 -2014-06-02 07:00:00,0.0,1001.468333,0.2366,91.23333333,5.972333333,2.1785,237.74703619999994 -2014-06-02 08:00:00,0.0,1001.7330000000001,13.48800833,87.93333333,5.545083332999999,1.7425,237.74770456666667 -2014-06-02 09:00:00,0.0,1002.328667,35.63408333,85.34166667,6.7874166670000005,1.85125,237.7463344 -2014-06-02 10:00:00,0.0,1002.679,158.8475,82.10833333,7.882000000000001,2.5605833330000003,237.7411879166667 -2014-06-02 11:00:00,0.0,1002.946,192.57,79.2,8.821666667,2.738333333,237.7370607 -2014-06-02 12:00:00,0.0,1002.500333,227.51166669999998,79.19333333,8.806666667,2.6415833330000003,237.733652 -2014-06-02 13:00:00,0.0,1002.327333,248.6983333,76.64833333,9.765,2.2855,237.73084488333333 -2014-06-02 14:00:00,0.0,1001.502667,138.3859167,74.4375,10.095,2.573,237.728823 -2014-06-02 15:00:00,0.0,1000.871333,79.44766667,74.32583333,8.790833333,3.084916667,237.72708526666665 -2014-06-02 16:00:00,0.0,1000.508667,21.71166667,77.18083333,7.795333332999999,2.0459166669999997,237.72504676666665 -2014-06-02 17:00:00,0.0,999.6113332999998,2.12975,81.4675,6.90325,2.411083333,237.722824425 -2014-06-02 18:00:00,0.0,998.5446667000001,0.0,75.23916667,7.33625,2.083333333,237.719917 -2014-06-02 19:00:00,0.0,997.2446667000002,0.0,75.99166667,6.937333333,1.3665,237.7192152 -2014-06-02 20:00:00,0.0,996.4363332999999,0.0,76.2375,6.9379166670000005,1.6724166669999998,237.719917 -2014-06-02 21:00:00,0.0,995.4113332999999,0.0,71.57416667,7.432916667000001,1.92775,237.72026789999998 -2014-06-02 22:00:00,0.0,994.5673332999999,0.0,70.16083333,7.4124166670000005,3.1398333330000003,237.72127045000002 -2014-06-02 23:00:00,0.0,993.3236667000001,0.0,66.01833333,7.709333332999999,4.6915833330000005,237.7236766 -2014-07-02 00:00:00,0.0,992.5213332999999,0.0,63.93,7.550583333,4.371166667,237.63364669999996 -2014-07-02 01:00:00,0.0,991.9463332999999,0.0,63.26416667,7.261833332999999,1.6836666669999998,237.63606951666665 -2014-07-02 02:00:00,0.0,991.2316667000001,0.0,71.08416667,7.367000000000001,1.282333333,237.63810808333332 -2014-07-02 03:00:00,0.0,990.9983332999999,0.0,84.21083333,6.62425,0.972583333,237.6402134 -2014-07-02 04:00:00,0.0,990.5189999999999,0.0,70.00583333,6.6525,1.6645,237.64230208333333 -2014-07-02 05:00:00,0.0,990.35,0.0,67.91333333,7.65875,2.0975,237.643973 -2014-07-02 06:00:00,4.674198168,990.4523332999999,0.0,68.18666667,7.782083332999999,3.238833333,237.6453766 -2014-07-02 07:00:00,4.428252576,989.5696667000001,0.2366,74.98,7.714083333,3.733,237.64708095 -2014-07-02 08:00:00,0.0,989.2646667000001,13.19208333,73.91,7.756666667,3.174,237.64774931666668 -2014-07-02 09:00:00,0.0,988.615,41.21308333,70.7025,8.823333332999999,3.958583333,237.64297045 -2014-07-02 10:00:00,0.0,988.76,63.57166667,70.37166667,9.631666667000001,4.3724166669999995,237.63366340000002 -2014-07-02 11:00:00,0.0,988.9536667000001,147.6591667,69.63666667,12.14666667,4.678416667,237.62784856666664 -2014-07-02 12:00:00,0.0,989.9383332999998,132.25741670000002,67.59833333,12.0575,6.3964166670000004,237.62542569999997 -2014-07-02 13:00:00,0.0,991.3826667000002,115.81675,65.73166667,11.16833333,5.31925,237.62306969999997 -2014-07-02 14:00:00,0.0,992.3096667000001,95.16033333,65.66083333,10.52916667,4.829833333,237.61889233333332 -2014-07-02 15:00:00,0.0,993.3423332999998,44.19158333,65.72416667,10.02083333,5.000583333,237.61545020000003 -2014-07-02 16:00:00,0.0,994.8969999999999,18.06291667,67.88666667,9.498333333,5.370416667000001,237.61376256666665 -2014-07-02 17:00:00,0.0,995.8389999999999,2.168658333,71.02083333,8.816666667,4.492,237.61169060000006 -2014-07-02 18:00:00,0.0,996.8613332999998,0.0,72.70583333,8.081916667,4.060333333,237.61098880000006 -2014-07-02 19:00:00,0.0,998.1053332999999,0.0,77.54083333,7.3848333329999996,4.036833333,237.61032043333333 -2014-07-02 20:00:00,0.0,999.187,0.0,82.45,6.465,2.4176666669999998,237.61098880000006 -2014-07-02 21:00:00,0.0,999.6666667000002,0.0,85.16666667,5.975583332999999,1.899416667,237.6120415 -2014-07-02 22:00:00,0.0,999.7496667000001,0.0,86.9,5.319333333,2.073583333,237.61478183333335 -2014-07-02 23:00:00,0.0,999.7439999999999,0.0,86.5,4.601166667,1.70325,237.61820724999998 -2014-08-02 00:00:00,0.0,999.7666667000001,0.0,86.38333333,4.18925,1.207833333,237.5958836 -2014-08-02 01:00:00,0.0,999.3086667000001,0.0,86.80833333,0.992916667,0.248,237.59419591666668 -2014-08-02 02:00:00,0.0,998.6923332999999,0.0,85.65833333,-0.51875,0.360916667,237.59244149999998 -2014-08-02 03:00:00,0.0,998.0046667000001,0.0,82.525,0.736583333,1.6625,237.59244149999998 -2014-08-02 04:00:00,0.0,997.1173332999998,0.0,83.36666667,3.293166667,3.39275,237.5907705 -2014-08-02 05:00:00,0.0,996.5006667000001,0.0,84.38333333,3.5173333330000003,3.1124166669999997,237.58868188333335 -2014-08-02 06:00:00,0.0,995.4010000000001,0.0,83.5,3.937166667,3.187583333,237.5862256 -2014-08-02 07:00:00,0.0,994.9023332999999,0.966291667,82.59166667,4.459,4.2275,237.5862256 -2014-08-02 08:00:00,0.0,994.3193332999999,19.602625,79.7075,4.970833333,4.640416667,237.58798009999998 -2014-08-02 09:00:00,0.0,993.6796667000001,25.7145,76.48833333,4.999333333,3.9655,237.5865765 -2014-08-02 10:00:00,0.0,993.1483332999999,65.30416667,74.58416667,5.68525,3.8864166669999998,237.5848888666667 -2014-08-02 11:00:00,0.0,992.4426667000001,113.96583329999999,71.16333333,6.1573333329999995,3.8650833330000003,237.5835187 -2014-08-02 12:00:00,0.0,991.0343332999998,85.72083333,69.79,6.589166667000001,4.19775,237.5817809166667 -2014-08-02 13:00:00,0.0,990.1089999999999,61.56616667,67.57916667,7.162000000000001,3.16575,237.5776704166667 -2014-08-02 14:00:00,0.0,989.0983332999999,31.82783333,70.5775,7.8266666670000005,3.526833333,237.57599950000005 -2014-08-02 15:00:00,21.33163039,989.0313332999999,24.60966667,85.98416667,6.488416667,2.1993333330000002,237.5745959 -2014-08-02 16:00:00,25.81908125,988.715,11.49691667,90.98333333,5.733166667000001,3.463,237.57322573333337 -2014-08-02 17:00:00,13.63524278,988.4813332999998,1.143683333,93.15,5.363333333,3.149916667,237.5708363 -2014-08-02 18:00:00,8.814234648,988.4726667000001,0.0,93.51666667,5.2540833330000005,1.7836666669999999,237.56943270000002 -2014-08-02 19:00:00,8.071516824,988.5753332999999,0.0,92.79166667,5.37925,1.367,237.56767819999996 -2014-08-02 20:00:00,0.0,988.3586667000002,0.0,92.13333333,5.98375,2.16075,237.56565638333336 -2014-08-02 21:00:00,0.0,987.7626667000002,0.0,90.1,5.6675,2.061,237.5639186 -2014-08-02 22:00:00,0.0,987.7333332999999,0.0,86.91666667,6.6085,2.0045,237.5635677 -2014-08-02 23:00:00,0.0,988.2036667000001,0.0,85.625,6.631833332999999,2.6745,237.56189678333337 -2014-09-02 00:00:00,0.0,988.6076667000001,0.0,82.66666667,6.377583333,3.29075,237.85333089999997 -2014-09-02 01:00:00,0.0,989.0333332999999,0.0,81.625,6.07825,2.7694166669999998,237.85297999999997 -2014-09-02 02:00:00,0.0,989.404,0.0,83.975,5.644333333,2.5173333330000003,237.85333089999997 -2014-09-02 03:00:00,0.0,989.1273332999999,0.0,82.51666667,5.579666667000001,2.594,237.85333089999997 -2014-09-02 04:00:00,0.0,988.696,0.0,80.43666667,5.549083333,3.3544166669999997,237.85368179999998 -2014-09-02 05:00:00,0.0,989.1576667000002,0.0,80.0125,5.55375,2.050416667,237.85298 -2014-09-02 06:00:00,0.0,989.6853332999999,0.0,82.11666667,5.3345,1.88675,237.8505571333333 -2014-09-02 07:00:00,0.0,990.22,0.374616667,81.825,5.438416667,2.172416667,237.85122550000003 -2014-09-02 08:00:00,0.0,991.0203332999998,17.66840833,84.56666667,5.21775,2.30675,237.85122550000003 -2014-09-02 09:00:00,0.0,991.5076667000002,60.36275,84.98333333,5.155333333,1.7615,237.8515764 -2014-09-02 10:00:00,0.0,992.0916667000001,114.289,81.8075,5.940833333,2.488,237.84988876666662 -2014-09-02 11:00:00,0.0,992.3333332999998,169.14333330000002,81.99083333,6.31025,2.70375,237.8495545833333 -2014-09-02 12:00:00,0.0,991.9833332999999,193.2670833,77.36583333,7.533833333,3.147416667,237.8488527833333 -2014-09-02 13:00:00,0.0,992.1893332999998,166.45475,70.79583333,7.5335,3.651416667,237.84748261666664 -2014-09-02 14:00:00,0.0,992.1043332999999,80.41308333,74.98416667,6.787583333,2.5724166669999997,237.8478168 -2014-09-02 15:00:00,0.0,992.4016667000001,53.77458333,70.155,6.910416667000001,2.8585,237.84576155 -2014-09-02 16:00:00,0.0,992.8016667000002,40.18875,70.8775,6.281083333,2.276,237.84475899999998 -2014-09-02 17:00:00,0.0,993.2643332999999,5.9745,73.98,5.361333333,2.133,237.84510989999998 -2014-09-02 18:00:00,0.0,993.612,0.0,79.21166667,4.69675,1.6733333330000002,237.84475899999998 -2014-09-02 19:00:00,0.0,994.154,0.0,78.63166667,4.1385,1.969583333,237.8430045 -2014-09-02 20:00:00,0.0,994.564,0.0,82.73333333,2.782333333,1.6830833330000001,237.84200195000003 -2014-09-02 21:00:00,0.0,995.185,0.0,89.81666667,2.140083333,1.086666667,237.84099939999996 -2014-09-02 22:00:00,0.0,995.4643332999999,0.0,97.525,0.35566666700000005,0.666083333,237.84099939999996 -2014-09-02 23:00:00,0.0,995.7646667000001,0.0,99.35833333,0.242,1.211833333,237.8426870333333 -2014-10-02 00:00:00,0.0,995.6626667000002,0.0,100.0,-1.4305,0.24725, -2014-10-02 01:00:00,0.0,995.3376667000001,0.0,100.0,-1.109916667,0.421333333, -2014-10-02 02:00:00,0.0,995.1396667000001,0.0,100.0,-0.35175,0.907416667, -2014-10-02 03:00:00,0.0,994.7756667000001,0.0,100.0,0.33125,2.172333333, -2014-10-02 04:00:00,0.0,994.3106667000002,0.0,100.0,0.656833333,2.210916667, -2014-10-02 05:00:00,0.0,994.31,0.0,100.0,0.463916667,1.6855, -2014-10-02 06:00:00,0.0,993.8883332999999,0.0,100.0,0.710916667,1.72075, -2014-10-02 07:00:00,0.0,993.2653332999998,0.670716667,99.69166667,-0.066333333,0.494666667, -2014-10-02 08:00:00,0.0,992.804,19.508475,100.0,-0.2865,0.0545, -2014-10-02 09:00:00,0.0,992.6126667000001,50.64791667,99.43333333,0.6960833329999999,0.222833333, -2014-10-02 10:00:00,2.47922892,992.0386667000001,73.05666667,95.05,1.870416667,0.786833333, -2014-10-02 11:00:00,0.0,991.0046667000001,128.31,92.11666667,3.1766666669999997,2.175416667, -2014-10-02 12:00:00,0.0,990.4546667000001,80.05666667,87.20833333,4.456333333,2.0459166669999997, -2014-10-02 13:00:00,0.0,989.79,78.11416667,76.34916667,5.683583333,1.67025, -2014-10-02 14:00:00,0.0,989.2986667000001,53.13116667,63.705,6.05775,1.7409166669999998, -2014-10-02 15:00:00,0.0,988.8686667000002,23.4675,66.8675,5.606833332999999,1.6106666669999998, -2014-10-02 16:00:00,0.0,989.029,13.152999999999999,73.95916667,5.162916667,0.57925, -2014-10-02 17:00:00,0.0,988.9936667000002,2.583116667,78.34166667,4.547083333,1.097666667, -2014-10-02 18:00:00,2.953148112,989.5369999999999,0.0,92.76666667,3.4859166669999997,1.6305833330000001, -2014-10-02 19:00:00,2.582901408,989.935,0.0,98.05833333,3.00225,0.62025, -2014-10-02 20:00:00,2.717971416,990.4476667000001,0.0,99.99166667,3.02525,1.04625, -2014-10-02 21:00:00,2.4197052,990.9533332999998,0.0,99.575,2.6398333330000003,0.254166667, -2014-10-02 22:00:00,0.0,991.687,0.0,99.275,2.5669999999999997,0.300666667, -2014-10-02 23:00:00,3.1370923439999996,992.5303332999998,0.0,98.04166667,2.651166667,2.385333333, -2014-11-02 00:00:00,0.0,993.5036667000002,0.0,97.81666667,2.645833333,2.421166667,237.96075249999998 -2014-11-02 01:00:00,0.0,994.297,0.0,97.225,2.7689999999999997,1.981333333,237.96075249999998 -2014-11-02 02:00:00,0.0,995.1786667000001,0.0,96.00833333,3.04475,1.6286666669999998,237.96041916666664 -2014-11-02 03:00:00,0.0,995.987,0.0,95.39166667,3.1648333330000002,1.8419999999999999,237.95875249999997 -2014-11-02 04:00:00,0.0,996.3203332999999,0.0,94.16666667,3.3431666669999998,1.78875,237.95875249999997 -2014-11-02 05:00:00,0.0,997.091,0.0,92.96666667,3.240416667,1.367833333,237.95875249999997 -2014-11-02 06:00:00,0.0,997.841,0.0,90.43333333,3.8105,1.916166667,237.95875249999997 -2014-11-02 07:00:00,0.0,998.5453332999999,0.552125,86.84166667,4.452083333,2.571416667,237.95908583333332 -2014-11-02 08:00:00,0.0,999.1786667000001,20.430025,86.93333333,4.664916667,2.659166667,237.9597525 -2014-11-02 09:00:00,0.0,999.6560000000001,50.74533333,84.11666667,5.108166667,2.5916666669999997,237.96075249999998 -2014-11-02 10:00:00,0.0,1000.2080000000001,85.40641667,78.5625,5.419,3.243833333,237.96075249999998 -2014-11-02 11:00:00,0.0,1000.370333,124.8975,76.04833333,6.34375,3.096833333,237.9600858333333 -2014-11-02 12:00:00,0.0,1000.161333,94.33083333,85.53333333,5.506,2.058916667,237.96041916666664 -2014-11-02 13:00:00,0.0,999.4483332999998,177.4733333,84.85416667,6.480166667000001,1.796416667,237.95941916666666 -2014-11-02 14:00:00,0.0,998.9336667000001,183.2191667,71.67083333,7.171,2.399833333,237.95908583333335 -2014-11-02 15:00:00,0.0,998.8833332999999,105.455,65.36833333,7.237916667,2.165333333,237.95941916666663 -2014-11-02 16:00:00,0.0,998.8560000000001,73.69366667,63.34,7.30975,2.785666667,237.95770249999998 -2014-11-02 17:00:00,0.0,998.8043332999998,3.746691667,72.5275,5.703333333,1.4378333330000002,237.95840249999995 -2014-11-02 18:00:00,0.0,999.285,0.0,83.70833333,3.59225,1.886916667,237.95875249999997 -2014-11-02 19:00:00,0.0,999.4333332999998,0.0,82.40916667,2.2295,1.8249166669999999,237.95875249999997 -2014-11-02 20:00:00,0.0,999.1066667000001,0.0,78.89083333,2.070666667,2.0325833330000003,237.95875249999997 -2014-11-02 21:00:00,0.0,999.079,0.0,75.85583333,2.202083333,1.014666667,237.95875249999997 -2014-11-02 22:00:00,0.0,999.3953332999998,0.0,75.40833333,2.4395833330000003,1.213666667,237.95875249999997 -2014-11-02 23:00:00,0.0,999.8186667000001,0.0,74.53833333,4.333666667,1.124916667,237.95875249999997 -2014-12-02 00:00:00,0.0,999.9556667000002,0.0,75.25583333,4.462833333,1.104666667,237.8498525 -2014-12-02 01:00:00,6.386996016,1000.581,0.0,84.20416667,4.74925,1.9140000000000001,237.8498525 -2014-12-02 02:00:00,15.18609994,1000.960333,0.0,93.39166667,4.002416667,2.136916667,237.85085249999997 -2014-12-02 03:00:00,3.339709128,1001.16,0.0,93.90833333,3.917166667,2.76325,237.85051916666666 -2014-12-02 04:00:00,3.3854574719999997,1001.791,0.0,95.325,3.7460000000000004,2.96175,237.85185249999998 -2014-12-02 05:00:00,0.0,1002.285333,0.0,96.10833333,3.109416667,2.127333333,237.85185249999998 -2014-12-02 06:00:00,0.0,1002.934333,0.0,95.93333333,2.183416667,1.11825,237.85185249999998 -2014-12-02 07:00:00,0.0,1004.001333,1.045158333,96.075,0.26675,0.0935,237.8525525 -2014-12-02 08:00:00,0.0,1004.987,13.78591667,95.28333333,1.1085,0.259916667,237.85255249999997 -2014-12-02 09:00:00,0.0,1005.389333,44.70725,88.91666667,4.204166667,0.9940000000000001,237.8536025 -2014-12-02 10:00:00,0.0,1005.701667,177.0825,84.38333333,5.696416667,2.0665,237.8536025 -2014-12-02 11:00:00,0.0,1006.147667,132.02,77.8425,6.125,2.33675,237.85428583333336 -2014-12-02 12:00:00,0.0,1005.732,156.8116667,76.0175,6.345083333,1.9609166669999998,237.85395250000002 -2014-12-02 13:00:00,0.0,1005.146333,192.20833330000002,69.51583333,6.96975,2.448083333,237.8549525 -2014-12-02 14:00:00,0.0,1004.194667,225.80833330000002,65.89083333,7.8593333329999995,2.488666667,237.85461916666668 -2014-12-02 15:00:00,0.0,1003.556667,152.43375,67.03916667,7.877083333,2.191666667,237.85528583333334 -2014-12-02 16:00:00,0.0,1002.567333,79.2995,70.07916667,6.7343333329999995,2.393416667,237.85596916666668 -2014-12-02 17:00:00,0.0,1001.823667,3.214283333,77.26166667,4.517666667,2.403083333,237.85595250000003 -2014-12-02 18:00:00,0.0,1000.761333,0.0,92.05833333,3.5829166669999997,1.752083333,237.85735250000002 -2014-12-02 19:00:00,0.0,1000.023333,0.0,97.65833333,3.321333333,1.4069999999999998,237.8577025 -2014-12-02 20:00:00,0.0,999.4653332999999,0.0,99.98333333,3.585666667,1.8365,237.8577025 -2014-12-02 21:00:00,0.0,998.451,0.0,99.60833333,3.772,2.5855,237.85805249999999 -2014-12-02 22:00:00,0.0,997.1133332999999,0.0,99.39166667,4.024333333,2.77775,237.8583858333333 -2014-12-02 23:00:00,0.0,996.5563332999999,0.0,98.075,4.4285,2.8498333330000003,237.8590525 -2014-02-13 00:00:00,34.42240963,996.2963332999999,0.0,97.81666667,4.191916667,2.542416667,238.03601721666666 -2014-02-13 01:00:00,2.456902728,996.206,0.0,97.3,4.517666667,1.521166667,238.0357755 -2014-02-13 02:00:00,3.3598608480000003,996.2916667000002,0.0,96.11666667,5.161583333,2.127,238.03601721666666 -2014-02-13 03:00:00,0.0,996.0606667000002,0.0,95.44166667,5.422333332999999,2.047333333,238.03625893333333 -2014-02-13 04:00:00,0.0,995.9043332999998,0.0,94.29166667,5.567833332999999,1.7850833330000002,238.0357755 -2014-02-13 05:00:00,3.344342208,996.0126667000002,0.0,93.08333333,6.1375,3.26325,238.0357755 -2014-02-13 06:00:00,0.0,995.2836667000001,0.0,90.75833333,4.284916667,1.250916667,238.0357755 -2014-02-13 07:00:00,0.0,995.2666667000001,0.374616667,86.98333333,3.779,1.127916667,238.0357755 -2014-02-13 08:00:00,0.0,995.046,18.26078333,86.9,4.303416667,1.9060833330000002,238.0357755 -2014-02-13 09:00:00,0.0,994.4593332999999,46.72208333,84.525,5.3685,2.39825,238.03601721666666 -2014-02-13 10:00:00,0.0,993.307,69.53391667,79.26416667,5.938916667000001,2.91875,238.03650065 -2014-02-13 11:00:00,0.0,992.3056667000001,137.2991667,75.64,6.276916667,1.6185833330000001,238.0372258 -2014-02-13 12:00:00,0.0,989.923,95.14166667,84.915,6.054333333,2.3355,238.0374795833333 -2014-02-13 13:00:00,102.6948228,988.3296667000001,174.8891667,85.375,5.724583332999999,3.250666667,238.03947365 -2014-02-13 14:00:00,83.28253421,987.355,183.1025,72.65833333,4.204,4.592083333,238.04841674999997 -2014-02-13 15:00:00,68.64810965,986.927,102.5558333,65.97166667,3.6180000000000003,2.258666667,238.0593297833333 -2014-02-13 16:00:00,26.14674348,987.0666667000002,87.27833333,62.855,2.5484166669999997,0.883916667,238.07571746666667 -2014-02-13 17:00:00,5.124736512,987.6866667000002,4.772308333,71.40083333,2.187083333,1.065583333,238.09136791666666 -2014-02-13 18:00:00,0.0,988.5986667000001,0.019716667,83.85,3.2235,3.4225,238.10130201666666 -2014-02-13 19:00:00,0.0,990.305,0.0,81.80083333,4.016333333,2.1381666669999997,238.1055077 -2014-02-13 20:00:00,0.0,992.013,0.0,79.58666667,4.267916667,2.152166667,238.1060032 -2014-02-13 21:00:00,3.2526474960000002,993.8653332999999,0.0,76.03416667,4.396833333,2.298,238.1050243 -2014-02-13 22:00:00,0.0,995.2489999999999,0.0,75.29333333,4.10275,2.10575,238.10404540000002 -2014-02-13 23:00:00,0.0,996.684,0.0,74.77916667,4.1355,2.366833333,238.10353780000003 -2014-02-14 00:00:00,0.0,998.2113332999999,0.0,74.9475,3.9405,2.583416667,238.1025347 -2014-02-14 01:00:00,0.0,999.5386667000001,0.0,83.09583333,3.378916667,2.163166667,238.10156790000005 -2014-02-14 02:00:00,0.0,1000.538667,0.0,93.06666667,2.89275,2.356666667,238.10081863333335 -2014-02-14 03:00:00,0.0,1001.289333,0.0,93.875,3.290916667,2.62375,238.0998155666667 -2014-02-14 04:00:00,0.0,1001.691,0.0,95.25,2.889416667,1.702083333,238.09883663333332 -2014-02-14 05:00:00,0.0,1002.266333,0.0,96.05833333,1.426833333,1.504833333,238.09784563333332 -2014-02-14 06:00:00,0.0,1002.730667,0.0,95.96666667,1.5563333330000002,0.9773333329999999,238.0963229 -2014-02-14 07:00:00,0.0,1003.722333,0.6902,96.05833333,2.865333333,1.482833333,238.0945826 -2014-02-14 08:00:00,0.0,1004.383,12.56295833,95.575,3.263666667,1.9849166669999998,238.09360370000002 -2014-02-14 09:00:00,0.0,1004.593667,34.74683333,89.31666667,4.76525,1.831833333,238.09258850000003 -2014-02-14 10:00:00,0.0,1004.693333,164.5641667,85.01666667,5.962999999999999,2.184416667,238.0923347 -2014-02-14 11:00:00,0.0,1005.043667,148.1491667,78.1025,6.57625,2.122833333,238.09136790000002 -2014-02-14 12:00:00,0.0,1004.807,154.0291667,76.3125,7.442583332999999,2.337166667,238.09063071666665 -2014-02-14 13:00:00,0.0,1003.555333,181.7958333,70.2825,7.699083333,3.4209166669999997,238.08961558333337 -2014-02-14 14:00:00,0.0,1002.363,229.6583333,65.7425,7.248666667,3.776583333,238.08912008333337 -2014-02-14 15:00:00,0.0,1001.713333,158.60541669999998,66.84666667,7.194666667000001,3.3345,238.08789943333338 -2014-02-14 16:00:00,0.0,1001.0419999999999,89.572,69.44333333,6.938833333,2.675416667,238.08640086666665 -2014-02-14 17:00:00,4.312074096,1000.211333,4.199825,75.16333333,6.706583332999999,2.470416667,238.08590536666668 -2014-02-14 18:00:00,18.46535131,999.5213332999999,0.0,87.80833333,5.467083333,4.055583333,238.08542193333332 -2014-02-14 19:00:00,11.08153637,998.9960000000001,0.0,90.7,5.253416667,3.6430833330000003,238.08493849999994 -2014-02-14 20:00:00,3.550200528,998.17,0.0,90.075,5.324166667,3.2345,238.08341580000004 -2014-02-14 21:00:00,0.0,997.065,0.0,87.93333333,5.381583332999999,2.583166667,238.08341580000004 -2014-02-14 22:00:00,0.0,996.428,0.0,87.775,5.32825,2.9441666669999997,238.08269069999997 -2014-02-14 23:00:00,0.0,995.5903332999999,0.0,86.14166667,5.647333333,3.66425,238.08196559999996 -2014-02-15 00:00:00,3.790263936,994.5613332999999,0.0,85.53333333,5.81275,3.7569999999999997,238.08196559999996 -2014-02-15 01:00:00,0.0,993.6126667000001,0.0,88.84166667,6.0723333329999996,3.3954166669999997,238.0817118 -2014-02-15 02:00:00,0.0,993.5146667000001,0.0,91.16666667,6.756083332999999,2.095333333,238.08044280000004 -2014-02-15 03:00:00,0.0,993.5293332999998,0.0,82.375,7.0315,1.6635,238.08044280000004 -2014-02-15 04:00:00,0.0,993.3123332999999,0.0,79.8525,6.784833333,2.484333333,238.08044280000004 -2014-02-15 05:00:00,0.0,993.5060000000001,0.0,80.53666667,7.371416667,3.74075,238.0791738833333 -2014-02-15 06:00:00,0.0,993.7726667000002,0.0,80.75833333,8.352416667,4.3685,238.07892009999998 -2014-02-15 07:00:00,0.0,994.3786667000002,0.670483333,79.05333333,8.654166667,3.229083333,238.07819495 -2014-02-15 08:00:00,0.0,995.0016667000001,17.98475,77.79833333,10.26833333,2.12575,238.0772160166667 -2014-02-15 09:00:00,0.0,995.2833332999999,45.3355,75.14583333,10.835,2.716333333,238.07696223333335 -2014-02-15 10:00:00,0.0,995.502,65.82975,72.34166667,11.1825,2.3185,238.07570538333331 -2014-02-15 11:00:00,0.0,995.7183332999999,103.1625,72.6675,11.555,2.0619166669999998,238.07522195000004 -2014-02-15 12:00:00,0.0,996.1393332999999,84.94616667,74.01583333,11.2025,2.953666667,238.0742430166667 -2014-02-15 13:00:00,0.0,996.1623332999999,75.88291667,75.75916667,10.83916667,2.948416667,238.07348166666668 -2014-02-15 14:00:00,0.0,996.5203332999998,93.47916667,77.705,10.5075,3.08,238.07322788333332 -2014-02-15 15:00:00,0.0,996.5293332999998,72.8875,81.33333333,10.00583333,2.871916667,238.07297409999998 -2014-02-15 16:00:00,0.0,996.6326667000002,24.98533333,81.41666667,9.484166667,2.523416667,238.07273239999998 -2014-02-15 17:00:00,0.0,997.581,2.938366667,82.60833333,8.915833333,2.4330000000000003,238.07152390000002 -2014-02-15 18:00:00,0.0,998.4303332999999,0.039433333,84.29166667,8.439166667,2.168583333,238.07025489999998 -2014-02-15 19:00:00,0.0,999.1226667000001,0.0,84.775,8.343333333,3.152166667,238.07000109999998 -2014-02-15 20:00:00,0.0,999.0023332999999,0.0,85.91666667,8.08925,3.3778333330000003,238.07000109999998 -2014-02-15 21:00:00,0.0,999.4553332999999,0.0,85.24166667,7.924666667,3.771416667,238.0695177 -2014-02-15 22:00:00,0.0,1000.243333,0.0,84.5,8.017916667,3.346,238.06927600000003 -2014-02-15 23:00:00,0.0,1000.714333,0.0,84.725,7.857083332999999,3.352583333,238.06829710000002 -2014-02-16 00:00:00,3.1361670239999997,1001.014333,0.0,84.76666667,7.60625,2.77,238.06728189999998 -2014-02-16 01:00:00,0.0,1001.264333,0.0,89.59166667,6.8845,2.993666667,238.0665447 -2014-02-16 02:00:00,0.0,1001.626667,0.0,84.46666667,7.07575,3.136666667,238.06630300000003 -2014-02-16 03:00:00,0.0,1001.862667,0.0,84.875,6.962416667,2.76675,238.0653241 -2014-02-16 04:00:00,0.0,1001.818333,0.0,84.25,6.867833332999999,3.154833333,238.0648165 -2014-02-16 05:00:00,0.0,1001.979333,0.0,81.69166667,6.74775,2.687833333,238.0648165 -2014-02-16 06:00:00,0.0,1002.176667,0.0,82.46666667,6.521583333,1.930916667,238.06380131666666 -2014-02-16 07:00:00,0.0,1003.066,0.630933333,81.925,6.74725,1.738666667,238.0625324 -2014-02-16 08:00:00,0.0,1004.015667,13.98191667,81.30833333,6.9825,2.0573333330000003,238.0625324 -2014-02-16 09:00:00,0.0,1004.726667,53.73083333,82.98416667,7.031333332999999,2.196416667,238.0625324 -2014-02-16 10:00:00,0.0,1005.114333,191.485,77.57166667,8.3745,3.1665,238.06180729999997 -2014-02-16 11:00:00,0.0,1005.56,180.59475,73.99833333,8.791666667000001,3.6705,238.06156559999997 -2014-02-16 12:00:00,0.0,1005.735333,225.7091667,70.44333333,9.3925,3.492916667,238.06108219999996 -2014-02-16 13:00:00,0.0,1005.881333,188.8075,70.6875,9.631666667000001,3.5685833330000003,238.06108219999996 -2014-02-16 14:00:00,3.472863648,1005.727,161.0478333,75.39583333,9.373333333,3.0771666669999997,238.06057459999997 -2014-02-16 15:00:00,0.0,1005.783333,170.6308333,74.05416667,8.985833332999999,2.720583333,238.0603208 -2014-02-16 16:00:00,0.0,1006.068333,89.13333333,68.6875,7.7198333329999995,2.211416667,238.0603208 -2014-02-16 17:00:00,0.0,1006.404333,5.265516667,80.82333333,7.261666667,1.531333333,238.0585926 -2014-02-16 18:00:00,0.0,1006.626667,0.078866667,91.33333333,5.62575,1.17575,238.05810919999996 -2014-02-16 19:00:00,0.0,1006.943333,0.0,97.075,3.7675,0.81675,238.0576016 -2014-02-16 20:00:00,0.0,1007.214333,0.0,88.55,3.782916667,0.7081666670000001,238.0573478 -2014-02-16 21:00:00,0.0,1007.429333,0.0,84.00833333,5.609583333,1.600916667,238.057094 -2014-02-16 22:00:00,0.0,1007.5060000000001,0.0,86.64166667,3.73675,0.80625,238.0568402 -2014-02-16 23:00:00,0.0,1007.779,0.0,96.60833333,0.793166667,0.110416667,238.05537789999997 -2014-02-17 00:00:00,0.0,1007.910333,0.0,99.75833333,-0.548083333,0.240416667,238.05537789999994 -2014-02-17 01:00:00,0.0,1008.095667,0.0,100.0,-1.0955,0.12300000000000001,238.05488239999997 -2014-02-17 02:00:00,0.0,1008.044,0.0,100.0,-1.6615,0.012083333,238.05513619999996 -2014-02-17 03:00:00,0.0,1007.779333,0.0,100.0,-1.9075,0.081,238.0543748 -2014-02-17 04:00:00,0.0,1007.789333,0.0,100.0,-2.334333333,0.039916667,238.0538672 -2014-02-17 05:00:00,0.0,1008.312,0.0,100.0,-1.311416667,0.075333333,238.0536134 -2014-02-17 06:00:00,0.0,1008.570667,0.0,100.0,-0.0695,0.086,238.05337169999999 -2014-02-17 07:00:00,0.0,1008.9119999999999,3.451875,100.0,0.317083333,0.07666666700000001,238.05313 -2014-02-17 08:00:00,0.0,1009.470333,37.83733333,100.0,0.5459166670000001,0.178416667,238.05216319999997 -2014-02-17 09:00:00,2.408755728,1009.831333,101.2375,100.0,1.61275,0.286083333,238.05240489999997 -2014-02-17 10:00:00,0.0,1009.993333,227.395,98.68333333,3.266666667,0.657416667,238.05240489999997 -2014-02-17 11:00:00,0.0,1010.581,175.2391667,93.7,4.977833333,0.4315,238.0519094166666 -2014-02-17 12:00:00,0.0,1010.421,146.02583330000002,91.45833333,6.653583332999999,0.748416667,238.05216319999997 -2014-02-17 13:00:00,0.0,1010.387333,159.2791667,86.13583333,8.241166667,0.38225,238.05140184999996 -2014-02-17 14:00:00,0.0,1010.516667,119.81083329999998,76.72916667,9.520833332999999,0.8281666670000001,238.05114806666666 -2014-02-17 15:00:00,0.0,1010.610333,120.88475,71.24916667,10.0775,1.06525,238.05039878333332 -2014-02-17 16:00:00,0.0,1010.862333,41.23116667,73.375,9.5,1.74525,238.05015706666663 -2014-02-17 17:00:00,0.0,1010.968333,10.25383333,84.815,6.346166667,0.541583333,238.04991534999996 -2014-02-17 18:00:00,0.0,1011.464333,0.05915,96.35,3.83325,0.2705,238.04817506666666 -2014-02-17 19:00:00,0.0,1011.825,0.0,98.3,3.631416667,0.15708333300000002,238.04842884999996 -2014-02-17 20:00:00,0.0,1011.960333,0.0,99.95833333,2.124083333,0.416416667,238.04842884999996 -2014-02-17 21:00:00,0.0,1012.151667,0.0,100.0,0.50975,0.29883333300000003,238.0479212833333 -2014-02-17 22:00:00,0.0,1012.275,0.0,100.0,-0.1515,0.392166667,238.0476675 -2014-02-17 23:00:00,0.0,1012.335333,0.0,100.0,-0.808916667,0.2965,238.0476674833333 -2014-02-18 00:00:00,0.0,1012.5666669999999,0.0,100.0,-1.283083333,0.09,238.0474137 -2014-02-18 01:00:00,0.0,1012.437333,0.0,100.0,-1.766583333,0.042833333,238.0474137 -2014-02-18 02:00:00,0.0,1012.315,0.0,100.0,-1.9503333330000001,0.045416667,238.0474137 -2014-02-18 03:00:00,0.0,1012.008333,0.0,100.0,-1.77525,0.04325,238.0476675 -2014-02-18 04:00:00,0.0,1012.010667,0.0,100.0,-0.9165,0.018583333,238.0474137 -2014-02-18 05:00:00,0.0,1011.989333,0.0,100.0,-1.165833333,0.0,238.0471599 -2014-02-18 06:00:00,0.0,1011.8646669999999,0.0,100.0,-1.0756666670000001,0.047916667,238.0474137 -2014-02-18 07:00:00,0.0,1011.6439999999999,1.716166667,100.0,-1.553166667,0.0395,238.0471599 -2014-02-18 08:00:00,0.0,1011.614333,16.01716667,100.0,-1.559083333,0.06025,238.04614469999999 -2014-02-18 09:00:00,0.0,1011.746333,28.66033333,100.0,-1.311416667,0.2565,238.04614469999999 -2014-02-18 10:00:00,0.0,1011.377333,69.99066667,100.0,-0.7855,0.15733333300000002,238.04590299999998 -2014-02-18 11:00:00,2.3865511440000002,1010.825333,139.2475,100.0,0.9794166670000001,0.129083333,238.04614469999999 -2014-02-18 12:00:00,0.0,1010.336333,170.63666669999998,96.65833333,3.015916667,0.6809999999999999,238.04590299999995 -2014-02-18 13:00:00,0.0,1009.425333,211.96,87.09166667,5.822916667,1.1025,238.04615679999998 -2014-02-18 14:00:00,0.0,1008.809,121.1991667,81.55583333,7.432916667000001,1.392,238.04639849999998 -2014-02-18 15:00:00,0.0,1008.294,83.88333333,78.6275,7.628916667,1.8146666669999998,238.04639849999998 -2014-02-18 16:00:00,0.0,1008.027333,46.99275,80.3375,7.425583333,1.52525,238.04590299999998 -2014-02-18 17:00:00,0.0,1007.818667,14.35618333,90.50833333,6.350833333,1.4638333330000002,238.04566129999998 -2014-02-18 18:00:00,0.0,1007.870667,0.078866667,96.09166667,3.60825,0.349,238.0451779 -2014-02-18 19:00:00,0.0,1007.891667,0.0,98.15,2.4234166669999997,0.40700000000000003,238.04493620000002 -2014-02-18 20:00:00,0.0,1007.846,0.0,99.25833333,1.302083333,0.15683333300000002,238.0456613 -2014-02-18 21:00:00,0.0,1007.8480000000001,0.0,100.0,0.880916667,0.19899999999999998,238.04590299999998 -2014-02-18 22:00:00,0.0,1007.812667,0.0,99.925,1.395083333,0.10133333300000001,238.04615679999998 -2014-02-18 23:00:00,0.0,1007.498,0.0,100.0,1.002916667,0.12775,238.0469061 -2014-02-19 00:00:00,0.0,1007.577,0.0,100.0,1.02425,0.1015,238.0469061 -2014-02-19 01:00:00,2.39217816,1007.8560000000001,0.0,99.91666667,1.79025,0.05475,238.0471599 -2014-02-19 02:00:00,12.65108184,1007.7669999999999,0.0,95.95833333,2.6703333330000003,0.6809999999999999,238.04665229999998 -2014-02-19 03:00:00,0.0,1007.086,0.0,95.83333333,4.1775,1.131166667,238.0469061 -2014-02-19 04:00:00,0.0,1006.806333,0.0,93.88333333,3.899166667,0.10216666699999999,238.0469061 -2014-02-19 05:00:00,0.0,1006.985,0.0,92.48333333,4.185333333,0.165166667,238.04665229999998 -2014-02-19 06:00:00,2.4050227680000003,1007.062667,0.0,94.375,3.6503333330000003,0.057999999999999996,238.04665229999998 -2014-02-19 07:00:00,0.0,1007.220333,1.8338833330000002,94.3,3.32725,0.297083333,238.04639849999998 -2014-02-19 08:00:00,0.0,1007.785,26.79833333,92.01666667,4.11075,0.18966666699999998,238.04614469999999 -2014-02-19 09:00:00,0.0,1008.264333,76.258,91.33333333,7.05125,2.127583333,238.04590299999998 -2014-02-19 10:00:00,0.0,1008.551667,196.9391667,86.58333333,8.66475,2.59975,238.04639849999998 -2014-02-19 11:00:00,0.0,1008.9060000000001,330.5166667,80.45833333,9.523333333,2.708166667,238.04614469999999 -2014-02-19 12:00:00,0.0,1008.854667,182.3266667,75.93083333,9.925,2.2255,238.04590299999995 -2014-02-19 13:00:00,0.0,1008.483667,145.5008333,74.4175,10.115,2.253916667,238.04541959999997 -2014-02-19 14:00:00,0.0,1008.3789999999999,127.86375,72.32083333,10.44416667,2.01325,238.0456613 -2014-02-19 15:00:00,0.0,1008.2460000000001,76.03575,78.72666667,9.185833333,1.7625,238.04541959999997 -2014-02-19 16:00:00,0.0,1008.220667,55.39391667,83.01916667,9.140833333,0.997083333,238.0451779 -2014-02-19 17:00:00,0.0,1008.493333,5.1072,97.24166667,7.1375,0.283583333,238.04393309999998 -2014-02-19 18:00:00,0.0,1009.0830000000001,0.078866667,96.325,6.6975,0.5730833329999999,238.04367929999998 -2014-02-19 19:00:00,21.56295175,1009.830667,0.0,97.0,6.775583332999999,1.3999166669999998,238.04342549999998 -2014-02-19 20:00:00,0.0,1010.0269999999999,0.0,95.93333333,6.063166667000001,1.187083333,238.04342549999993 -2014-02-19 21:00:00,0.0,1010.295667,0.0,96.63333333,5.367083333,0.433333333,238.0444407 -2014-02-19 22:00:00,0.0,1010.343667,0.0,99.85833333,3.794083333,0.2435,238.0444407 -2014-02-19 23:00:00,0.0,1010.508333,0.0,100.0,4.137916667,0.21833333300000002,238.04393309999998 -2014-02-20 00:00:00,0.0,1010.5039999999999,0.0,97.3,4.42475,0.168333333,238.04393309999992 -2014-02-20 01:00:00,0.0,1010.5,0.0,95.475,3.724583333,0.21125,238.04367929999998 -2014-02-20 02:00:00,0.0,1010.548333,0.0,95.31666667,5.027666667,1.17125,238.04418689999997 -2014-02-20 03:00:00,0.0,1010.266667,0.0,95.29166667,4.577166667,0.2715,238.04469449999996 -2014-02-20 04:00:00,0.0,1010.079,0.0,94.78333333,4.325666667,0.35025,238.04393309999998 -2014-02-20 05:00:00,0.0,1009.925667,0.0,97.43333333,4.1155,0.16725,238.04367929999992 -2014-02-20 06:00:00,0.0,1009.3960000000001,0.0,99.95,3.902666667,0.36658333299999996,238.0439331 -2014-02-20 07:00:00,0.0,1009.156333,2.208733333,100.0,3.847916667,0.73725,238.0441869 -2014-02-20 08:00:00,0.0,1009.1353330000001,22.421,100.0,4.153416667,0.42616666700000005,238.04418689999997 -2014-02-20 09:00:00,0.0,1008.929667,72.80408333,96.025,5.09275,0.664166667,238.04469449999996 -2014-02-20 10:00:00,0.0,1008.660667,142.8991667,88.70833333,7.483833333,0.506833333,238.0451779 -2014-02-20 11:00:00,0.0,1008.385667,118.32916670000002,85.66666667,8.473333333,2.0245833330000003,238.04614469999999 -2014-02-20 12:00:00,0.0,1007.561333,293.4166667,79.26333333,9.753333332999999,2.4403333330000003,238.04614469999999 -2014-02-20 13:00:00,0.0,1006.592333,202.545,74.33,10.33666667,2.892,238.04639849999998 -2014-02-20 14:00:00,0.0,1005.832,100.3975,73.48916667,10.30916667,2.468416667,238.0474137 -2014-02-20 15:00:00,0.0,1005.235667,100.28200000000001,70.52583333,10.7225,1.9671666669999999,238.0474137 -2014-02-20 16:00:00,0.0,1004.731667,29.81708333,70.43083333,10.17416667,2.63125,238.0471599 -2014-02-20 17:00:00,0.0,1004.306667,4.614808333,74.87166667,9.653333332999999,2.090833333,238.04665229999998 -2014-02-20 18:00:00,0.0,1004.0189999999999,0.078866667,75.78833333,9.4325,2.61375,238.0469061 -2014-02-20 19:00:00,0.0,1003.648,0.0,75.5125,9.1825,2.28325,238.04614469999999 -2014-02-20 20:00:00,0.0,1003.273333,0.0,75.9375,9.0875,2.25925,238.04665229999998 -2014-02-20 21:00:00,0.0,1002.944,0.0,75.19833333,8.725833332999999,1.5095833330000001,238.0471599 -2014-02-20 22:00:00,0.0,1002.681667,0.0,77.73416667,8.978333333,1.3466666669999998,238.04665229999998 -2014-02-20 23:00:00,0.0,1002.102333,0.0,83.1,9.576666667000001,1.667416667,238.0471599 -2014-02-21 00:00:00,0.0,1001.496333,0.0,86.7,9.168333333,1.4909166669999998,238.04639849999998 -2014-02-21 01:00:00,9.424713528,1001.373333,0.0,89.66666667,9.288333332999999,1.934166667,238.04639849999998 -2014-02-21 02:00:00,19.51938041,1000.8646669999999,0.0,93.65833333,8.7675,1.4525,238.04639849999998 -2014-02-21 03:00:00,5.430857832,1000.473333,0.0,95.60833333,8.5625,2.119916667,238.04614469999999 -2014-02-21 04:00:00,0.0,1000.204,0.0,94.8,8.327166667,1.5801666669999999,238.04639849999998 -2014-02-21 05:00:00,0.0,1000.472667,0.0,92.81666667,8.5575,1.6996666669999998,238.04690609999997 -2014-02-21 06:00:00,0.0,1000.704333,0.0,91.1,8.38075,2.268916667,238.0469061 -2014-02-21 07:00:00,0.0,1000.7810000000001,2.8788083330000003,92.89166667,7.928583333,1.875833333,238.04614469999999 -2014-02-21 08:00:00,0.0,1000.887333,20.41025,91.5,8.115916667,1.3275,238.04566129999998 -2014-02-21 09:00:00,0.0,1001.335,72.17058333,85.11666667,8.725833332999999,1.700166667,238.0451779 -2014-02-21 10:00:00,0.0,1001.7810000000001,153.5916667,80.13333333,9.741666667,2.7534166669999998,238.04541960000003 -2014-02-21 11:00:00,0.0,1002.056,109.24666670000002,77.16083333,9.29,3.433333333,238.04566129999998 -2014-02-21 12:00:00,0.0,1001.981667,219.5025,72.39416667,9.375,4.091583333,238.04541960000003 -2014-02-21 13:00:00,3.581528664,1002.203667,138.59125,77.7675,8.83025,3.504416667,238.0451779 -2014-02-21 14:00:00,0.0,1002.505667,188.79641669999998,74.77833333,9.005,3.533833333,238.04418689999997 -2014-02-21 15:00:00,0.0,1003.060333,146.56191669999998,76.69083333,8.8975,2.85275,238.0441869 -2014-02-21 16:00:00,0.0,1003.353667,56.16391667,73.34416667,8.377416667,2.327666667,238.04393309999998 -2014-02-21 17:00:00,27.9999167,1004.5219999999999,7.374616667000001,90.84416667,5.817416667000001,1.739916667,238.04342549999993 -2014-02-21 18:00:00,0.0,1005.303333,0.216883333,93.19166667,4.494166667,1.407083333,238.04342549999993 -2014-02-21 19:00:00,0.0,1006.078667,0.0,96.575,2.85825,0.600166667,238.04317169999993 -2014-02-21 20:00:00,0.0,1006.6080000000001,0.0,97.175,1.7715833330000001,0.40433333299999996,238.04342549999993 -2014-02-21 21:00:00,0.0,1007.026667,0.0,95.94166667,0.665166667,0.133,238.04342549999998 -2014-02-21 22:00:00,0.0,1007.464333,0.0,94.05833333,-0.215166667,0.221833333,238.04317169999993 -2014-02-21 23:00:00,0.0,1007.720667,0.0,95.85,-0.696,0.166,238.04268829999998 -2014-02-22 00:00:00,0.0,1007.841667,0.0,92.04166667,-0.4935,0.26058333300000003,238.04317169999993 -2014-02-22 01:00:00,0.0,1007.741667,0.0,92.40833333,-0.123333333,0.0405,238.04342549999993 -2014-02-22 02:00:00,0.0,1007.796,0.0,93.46666667,0.142833333,0.738833333,238.04292999999996 -2014-02-22 03:00:00,0.0,1007.562333,0.0,91.98333333,3.25325,1.9365,238.04317169999993 -2014-02-22 04:00:00,3.1674283919999997,1007.747667,0.0,88.85833333,3.653666667,2.0789166669999997,238.04292999999996 -2014-02-22 05:00:00,2.981954232,1007.9960000000001,0.0,89.675,3.3351666669999998,1.275166667,238.04292999999996 -2014-02-22 06:00:00,0.0,1007.983333,0.0,89.65,-0.195833333,0.40875,238.04292999999996 -2014-02-22 07:00:00,0.0,1008.197333,4.278925,88.38333333,-0.3265,0.446,238.04292999999996 -2014-02-22 08:00:00,0.0,1008.591333,18.63691667,88.6,1.578,1.20175,238.04244659999995 -2014-02-22 09:00:00,0.0,1009.176667,100.37125,84.34166667,5.0425833330000005,1.9226666669999999,238.04268829999998 -2014-02-22 10:00:00,0.0,1009.5666669999999,195.6908333,83.25833333,5.73925,2.7160833330000003,238.04244659999995 -2014-02-22 11:00:00,0.0,1009.962,296.3683333,82.89166667,6.4235,2.887916667,238.04244659999998 -2014-02-22 12:00:00,0.0,1010.014667,114.1525,82.55,6.923666667000001,2.8770833330000003,238.04292999999996 -2014-02-22 13:00:00,0.0,1010.060333,102.50916670000001,86.46666667,6.411916667000001,2.1783333330000003,238.04196319999997 -2014-02-22 14:00:00,0.0,1010.214333,54.75983333,88.64166667,6.1129999999999995,1.561916667,238.0417215 -2014-02-22 15:00:00,0.0,1010.722667,50.04941667,89.74166667,6.268833333,1.4871666669999999,238.0417215 -2014-02-22 16:00:00,0.0,1011.1160000000001,22.08675,89.98333333,6.178583333,0.791166667,238.04121393333332 -2014-02-22 17:00:00,0.0,1011.5873330000001,6.566175,94.10833333,5.99675,0.214416667,238.04070636666665 -2014-02-22 18:00:00,0.0,1012.222333,0.13801666699999998,94.26666667,5.524666667000001,0.534166667,238.04045258333335 -2014-02-22 19:00:00,0.0,1012.855667,0.0,96.4,4.499916667,0.714916667,238.04019879999996 -2014-02-22 20:00:00,0.0,1013.428667,0.0,92.39166667,3.814083333,0.1025,238.03995708333332 -2014-02-22 21:00:00,0.0,1014.118,0.0,92.30833333,3.445583333,0.081916667,238.03995708333332 -2014-02-22 22:00:00,0.0,1014.766333,0.0,94.74166667,3.749166667,0.132416667,238.03995708333332 -2014-02-22 23:00:00,0.0,1015.0830000000001,0.0,93.96666667,3.93175,0.35558333299999995,238.03947365 -2014-02-23 00:00:00,0.0,1015.270667,0.0,94.35833333,3.5213333330000003,0.53225,238.03899021666666 -2014-02-23 01:00:00,0.0,1015.685333,0.0,97.83333333,3.96025,1.31075,238.03874850000003 -2014-02-23 02:00:00,0.0,1016.028667,0.0,91.81666667,4.711833333,1.5934166669999998,238.03899021666666 -2014-02-23 03:00:00,0.0,1016.397667,0.0,89.10833333,4.4975,1.03225,238.03849471666663 -2014-02-23 04:00:00,0.0,1016.612333,0.0,88.425,3.964916667,1.3053333329999999,238.03874850000003 -2014-02-23 05:00:00,0.0,1017.072667,0.0,88.79166667,3.817416667,1.4246666669999999,238.03874850000003 -2014-02-23 06:00:00,0.0,1017.264333,0.0,90.38333333,3.5545,1.7589166669999998,238.03849471666663 -2014-02-23 07:00:00,0.0,1017.375,5.008791667,93.70833333,3.297916667,1.8514166669999998,238.03747958333335 -2014-02-23 08:00:00,0.0,1017.7869999999999,39.30266667,86.94166667,3.678416667,1.57125,238.03773336666666 -2014-02-23 09:00:00,0.0,1018.048,110.6758333,81.2,5.634333333,1.6406666669999999,238.03698408333332 -2014-02-23 10:00:00,0.0,1018.124667,137.3808333,76.52083333,6.519333333,2.7239999999999998,238.0372258 -2014-02-23 11:00:00,0.0,1018.241667,335.6091667,70.015,7.483416667,3.371666667,238.03824093333333 -2014-02-23 12:00:00,0.0,1018.029667,350.3441667,67.8025,8.733166667,2.98325,238.03824093333333 -2014-02-23 13:00:00,0.0,1017.294333,331.4383333,67.43,8.909166667000001,3.57475,238.03773336666666 -2014-02-23 14:00:00,0.0,1016.825333,202.7841667,69.0825,9.160833333,2.4973333330000003,238.03798714999996 -2014-02-23 15:00:00,0.0,1016.435667,101.3425,69.35583333,9.196666667,1.78325,238.03849471666663 -2014-02-23 16:00:00,0.0,1016.314667,48.25916667,71.12083333,8.735,1.7915,238.03798715000002 -2014-02-23 17:00:00,0.0,1016.335333,7.256958332999999,72.80833333,8.21625,1.90225,238.03698408333332 -2014-02-23 18:00:00,0.0,1016.439333,0.09858333300000001,74.35416667,7.468666667000001,1.595,238.03674236666666 -2014-02-23 19:00:00,0.0,1016.541667,0.0,81.245,6.450416667000001,1.4485833330000002,238.0372258 -2014-02-23 20:00:00,0.0,1016.383667,0.0,90.95,3.384416667,0.526833333,238.03650065 -2014-02-23 21:00:00,0.0,1016.343667,0.0,95.25,1.6293333330000002,0.2935,238.03625893333333 -2014-02-23 22:00:00,0.0,1016.113,0.0,97.94166667,0.339416667,0.34033333299999996,238.03601721666666 -2014-02-23 23:00:00,0.0,1015.660667,0.0,99.90833333,-0.533416667,0.15466666699999998,238.0355217166667 -2014-02-24 00:00:00,0.0,1015.298333,0.0,100.0,-1.321,0.169833333,238.0355217166667 -2014-02-24 01:00:00,0.0,1014.875333,0.0,100.0,-1.917416667,0.179916667,238.03526793333333 -2014-02-24 02:00:00,0.0,1014.365,0.0,100.0,-2.2214166669999997,0.23975,238.03526793333336 -2014-02-24 03:00:00,0.0,1013.721333,0.0,100.0,-2.58425,0.1245,238.0357755 -2014-02-24 04:00:00,0.0,1013.358333,0.0,100.0,-3.0026666669999997,0.2005,238.0355217166667 -2014-02-24 05:00:00,0.0,1013.092,0.0,100.0,-3.324083333,0.128083333,238.0355217166667 -2014-02-24 06:00:00,0.0,1012.944,0.0,100.0,-3.638833333,0.202083333,238.0357755 -2014-02-24 07:00:00,0.0,1012.985,6.1737083329999995,100.0,-3.458916667,0.159833333,238.0357755 -2014-02-24 08:00:00,0.0,1013.289333,23.04108333,100.0,-1.058416667,0.10975,238.0357755 -2014-02-24 09:00:00,2.387461848,1013.221333,120.09841670000002,98.78333333,3.0220833330000003,0.5035,238.0355217166667 -2014-02-24 10:00:00,0.0,1013.073,241.2608333,78.35916667,5.838916667,2.8080000000000003,238.03576343333336 -2014-02-24 11:00:00,0.0,1012.408667,285.6991667,63.89083333,7.7409166670000005,3.455083333,238.03625893333333 -2014-02-24 12:00:00,0.0,1011.971667,306.7925,55.80666667,9.395,3.09975,238.03625893333333 -2014-02-24 13:00:00,0.0,1010.9839999999999,299.2733333,54.60333333,10.795,2.798916667,238.03601721666666 -2014-02-24 14:00:00,0.0,1010.319333,270.9583333,51.2775,11.7725,2.806166667,238.03625893333333 -2014-02-24 15:00:00,0.0,1009.7189999999999,196.035,50.095,11.80666667,2.913333333,238.03601721666666 -2014-02-24 16:00:00,0.0,1009.516667,108.83833329999999,49.29583333,10.97,2.82475,238.0357755 -2014-02-24 17:00:00,0.0,1009.695667,29.26455,63.71083333,8.689166667,1.76325,238.0355217166667 -2014-02-24 18:00:00,0.0,1009.897667,0.41405,79.655,6.10475,1.688833333,238.03425280000002 -2014-02-24 19:00:00,0.0,1010.048,0.0,62.44416667,6.074166667,2.540083333,238.03376939999998 -2014-02-24 20:00:00,0.0,1010.093667,0.0,68.68,4.284166667,1.302166667,238.03425280000002 -2014-02-24 21:00:00,0.0,1010.092,0.0,89.75833333,1.7761666669999998,0.32358333300000003,238.03401109999996 -2014-02-24 22:00:00,0.0,1009.714667,0.0,96.05833333,0.58025,0.34466666700000004,238.03401110000001 -2014-02-24 23:00:00,0.0,1009.498,0.0,98.10833333,-0.11958333300000001,0.303666667,238.0335277 -2014-02-25 00:00:00,0.0,1009.315,0.0,99.31666667,-0.91325,0.21858333300000002,238.0328026 -2014-02-25 01:00:00,0.0,1009.175,0.0,99.99166667,-1.24825,0.154,238.033286 -2014-02-25 02:00:00,0.0,1008.873333,0.0,100.0,-1.486,0.258083333,238.0328026 -2014-02-25 03:00:00,0.0,1008.410667,0.0,100.0,-1.66425,0.235,238.03328599999998 -2014-02-25 04:00:00,0.0,1008.1916669999999,0.0,100.0,-1.8645833330000001,0.203083333,238.0328026 -2014-02-25 05:00:00,0.0,1008.189667,0.0,100.0,-2.091333333,0.237,238.0328026 -2014-02-25 06:00:00,0.0,1008.1353330000001,0.0,100.0,-1.972666667,0.11591666699999999,238.03304430000003 -2014-02-25 07:00:00,0.0,1008.262333,7.3185583329999995,100.0,-1.3980000000000001,0.073916667,238.03304430000003 -2014-02-25 08:00:00,0.0,1008.497667,19.05516667,100.0,-0.19075,0.02325,238.0325488 -2014-02-25 09:00:00,0.0,1008.142333,106.92266670000001,96.85833333,1.7765,0.048416667000000004,238.03304430000003 -2014-02-25 10:00:00,0.0,1007.8563330000001,218.8025,87.03333333,6.897083332999999,0.36775,238.0335277 -2014-02-25 11:00:00,3.839973768,1007.908333,257.5883333,69.3525,10.01166667,2.463333333,238.0335277 -2014-02-25 12:00:00,0.0,1007.496667,250.3025,64.61583333,11.08666667,2.9866666669999997,238.03401109999996 -2014-02-25 13:00:00,0.0,1007.191333,234.5816667,60.94333333,11.75083333,3.44075,238.03425280000002 -2014-02-25 14:00:00,0.0,1007.254333,92.52366667,63.54166667,11.625,2.2805,238.03328599999998 -2014-02-25 15:00:00,0.0,1006.858333,38.63125,68.895,10.61333333,1.84575,238.03401109999996 -2014-02-25 16:00:00,0.0,1006.8710000000001,26.91675,71.48583333,10.03333333,1.810416667,238.0335277 -2014-02-25 17:00:00,0.0,1007.068333,8.73635,73.67166667,9.400833333,0.938416667,238.03328599999998 -2014-02-25 18:00:00,0.0,1007.233333,0.335183333,87.21666667,8.223333333,0.9895,238.03328599999998 -2014-02-25 19:00:00,0.0,1007.456,0.0,84.88166667,7.973166667,1.32375,238.0327905 -2014-02-25 20:00:00,0.0,1007.610667,0.0,79.88166667,8.254166667,1.9024166669999998,238.03229499999998 -2014-02-25 21:00:00,0.0,1007.370667,0.0,86.67416667,7.6325833329999995,1.866333333,238.0328026 -2014-02-25 22:00:00,0.0,1007.714333,0.0,77.68333333,7.148,1.8446666669999998,238.03204119999998 -2014-02-25 23:00:00,0.0,1007.571,0.0,77.04166667,7.062583332999999,0.905166667,238.03178739999998 -2014-02-26 00:00:00,0.0,1007.65,0.0,87.875,5.519083332999999,0.322833333,238.03204119999998 -2014-02-26 01:00:00,0.0,1007.797667,0.0,86.82666667,5.2565,0.2915,238.03178739999998 -2014-02-26 02:00:00,0.0,1007.960667,0.0,91.69166667,5.04375,0.164833333,238.0312798 -2014-02-26 03:00:00,0.0,1007.862333,0.0,94.11666667,5.189333333,0.06375,238.0315336 -2014-02-26 04:00:00,0.0,1007.931,0.0,95.66666667,5.050333333,0.02275,238.0315336 -2014-02-26 05:00:00,0.0,1008.2810000000001,0.0,97.075,5.632083333,0.902666667,238.03204119999998 -2014-02-26 06:00:00,0.0,1008.6289999999999,0.0,97.4,5.7285833329999996,0.9780833329999999,238.0312798 -2014-02-26 07:00:00,0.0,1009.103333,3.115816667,96.85833333,5.31125,0.8271666670000001,238.0310260166667 -2014-02-26 08:00:00,0.0,1009.876667,27.19325,85.225,6.694166667,1.2185,238.03077223333332 -2014-02-26 09:00:00,0.0,1010.470333,103.04175,82.1925,8.629583333,0.806583333,238.03051845000002 -2014-02-26 10:00:00,0.0,1010.926667,124.425,78.71583333,9.348333333,1.08625,238.0315336 -2014-02-26 11:00:00,0.0,1011.326667,121.555,76.13916667,9.835,0.9933333329999999,238.03127981666668 -2014-02-26 12:00:00,0.0,1011.4689999999999,221.94666669999998,73.01166667,10.80166667,1.318916667,238.03051845000002 -2014-02-26 13:00:00,0.0,1011.522667,169.21333330000002,71.54166667,10.95,1.294833333,238.03077223333332 -2014-02-26 14:00:00,0.0,1011.544,96.71083333,71.65333333,10.8825,1.305083333,238.03053051666666 -2014-02-26 15:00:00,0.0,1011.556,46.69466667,73.8975,10.37333333,0.8364166670000001,238.03500208333335 -2014-02-26 16:00:00,0.0,1011.822667,30.58533333,75.86666667,9.809166667000001,0.49841666700000004,238.0330443 -2014-02-26 17:00:00,0.0,1012.116333,12.10755,82.31416667,8.81,0.19399999999999998,238.032295 -2014-02-26 18:00:00,0.0,1012.87,0.2366,90.83333333,7.976666667000001,0.407916667,238.03077223333332 -2014-02-26 19:00:00,0.0,1013.5310000000001,0.0,89.25833333,7.746833333,0.3545,238.03077223333332 -2014-02-26 20:00:00,2.53163736,1013.993333,0.0,96.81666667,7.081166667000001,0.47275,238.0297571 -2014-02-26 21:00:00,5.01056124,1014.4810000000001,0.0,99.65833333,6.673666667000001,0.41283333299999997,238.02903195 -2014-02-26 22:00:00,0.0,1014.533333,0.0,100.0,6.1115,0.165833333,238.02879023333335 -2014-02-26 23:00:00,0.0,1014.568667,0.0,100.0,5.593999999999999,0.045166667,238.0287902333333 -2014-02-27 00:00:00,0.0,1014.675,0.0,100.0,4.410666667,0.16875,238.02830679999997 -2014-02-27 01:00:00,2.489200824,1014.7,0.0,100.0,2.604083333,0.304083333,238.02779923333333 -2014-02-27 02:00:00,0.0,1014.7810000000001,0.0,100.0,1.4998333330000002,0.2465,238.02754545000002 -2014-02-27 03:00:00,0.0,1014.866667,0.0,100.0,1.8495,0.134916667,238.02729166666668 -2014-02-27 04:00:00,0.0,1014.798,0.0,100.0,1.8965833330000001,0.16775,238.02729166666666 -2014-02-27 05:00:00,0.0,1014.573333,0.0,100.0,1.414833333,0.113,238.02703788333338 -2014-02-27 06:00:00,0.0,1014.273,0.019716667,100.0,0.275333333,0.210916667,238.02703788333338 -2014-02-27 07:00:00,0.0,1014.1560000000001,6.922941667000001,100.0,-0.497666667,0.062333333,238.02703788333335 -2014-02-27 08:00:00,0.0,1014.502,29.92033333,100.0,0.6811666670000001,0.14775,238.02630066666666 -2014-02-27 09:00:00,0.0,1014.296333,85.69925,100.0,3.021833333,0.365,238.02678410000001 -2014-02-27 10:00:00,0.0,1013.615333,220.0625,97.10833333,5.3638333330000005,0.9328333329999999,238.02729166666668 -2014-02-27 11:00:00,0.0,1012.569667,284.10083330000003,90.51666667,6.829,1.841666667,238.02754545000002 -2014-02-27 12:00:00,0.0,1011.432333,262.1733333,66.53083333,9.305,2.266,238.02830679999997 -2014-02-27 13:00:00,0.0,1010.178,279.895,59.5975,10.01833333,2.850333333,238.02853644999996 -2014-02-27 14:00:00,0.0,1009.300333,221.06,60.045,9.921666667,2.8165,238.02903195 -2014-02-27 15:00:00,0.0,1008.557333,114.75333329999998,67.08666667,8.821666667,2.68925,238.02854851666666 -2014-02-27 16:00:00,0.0,1007.561,60.102,69.73166667,8.596666667000001,2.5525,238.02879023333335 -2014-02-27 17:00:00,0.0,1006.865,7.493441667000001,71.91583333,7.656083333,2.4748333330000003,238.02830679999997 -2014-02-27 18:00:00,0.0,1006.452333,0.2366,73.9625,6.858083333,1.97625,238.02830679999997 -2014-02-27 19:00:00,0.0,1006.383,0.0,77.18416667,6.683666667000001,1.179833333,238.02854851666666 -2014-02-27 20:00:00,18.08217634,1006.402667,0.0,91.55,5.185916667,1.9825,238.02830679999997 -2014-02-27 21:00:00,5.38075824,1005.763,0.0,93.95,4.70125,0.807,238.02829473333335 -2014-02-27 22:00:00,9.870650376,1005.144333,0.0,97.13333333,4.4255833330000005,0.360333333,238.02927366666668 -2014-02-27 23:00:00,2.665908552,1004.398667,0.0,99.0,4.381166667,0.388083333,238.02951538333335 -2014-02-28 00:00:00,2.57737512,1003.804333,0.0,96.33333333,4.1425,0.236916667,238.03026466666665 -2014-02-28 01:00:00,5.470464744,1003.656333,0.0,96.00833333,3.985666667,1.214083333,238.03051844999996 -2014-02-28 02:00:00,0.0,1003.267333,0.0,97.0,3.727083333,1.255583333,238.03051845000002 -2014-02-28 03:00:00,2.9216481360000004,1002.796,0.0,97.58333333,3.645333333,1.202333333,238.0310260166667 -2014-02-28 04:00:00,2.85681288,1002.350333,0.0,98.75833333,3.694583333,1.676166667,238.03127981666668 -2014-02-28 05:00:00,2.6027514,1001.979333,0.0,96.11666667,3.0213333330000003,0.664416667,238.03204119999998 -2014-02-28 06:00:00,0.0,1001.763,0.019716667,97.75833333,2.3805,0.884166667,238.0312798 -2014-02-28 07:00:00,0.0,1001.202333,6.389191667,99.9,2.4811666669999997,1.3700833330000002,238.0312798 -2014-02-28 08:00:00,0.0,1000.731667,27.51058333,99.25833333,2.926583333,1.50325,238.03178739999998 -2014-02-28 09:00:00,0.0,1000.207,82.33925,95.85,4.233666667,1.9690833330000002,238.03178739999998 -2014-02-28 10:00:00,0.0,999.4566667000001,156.9983333,89.94166667,5.794083333,2.492666667,238.03204119999998 -2014-02-28 11:00:00,0.0,999.044,198.6191667,83.59,6.957166667,3.085916667,238.0325488 -2014-02-28 12:00:00,0.0,998.3839999999999,192.3425,81.66833333,7.290666667000001,2.739416667,238.03304430000003 -2014-02-28 13:00:00,0.0,997.5986667000001,116.67716670000001,85.54166667,6.834833333,2.5590833330000002,238.03376939999998 -2014-02-28 14:00:00,0.0,996.938,185.6283333,85.48416667,7.873416667000001,2.064166667,238.03376939999998 -2014-02-28 15:00:00,0.0,996.6043332999999,114.6133333,79.59666667,7.75975,1.92225,238.03425280000002 -2014-02-28 16:00:00,0.0,996.4396667000001,69.86758333,80.61833333,7.577666667000001,1.65125,238.03376939999998 -2014-02-28 17:00:00,0.0,996.1856667000002,18.91166667,81.48333333,7.5853333329999995,1.07225,238.0335277 -2014-02-28 18:00:00,0.0,995.9143332999998,0.8282166670000001,89.175,5.792000000000001,0.434,238.0335277 -2014-02-28 19:00:00,0.0,996.3043332999998,0.0,96.65833333,4.747,0.050333333,238.0335277 -2014-02-28 20:00:00,0.0,996.154,0.0,93.88333333,4.6925,0.132833333,238.03304430000003 -2014-02-28 21:00:00,0.0,996.0793332999999,0.0,92.64166667,5.16325,0.448083333,238.03376939999998 -2014-02-28 22:00:00,0.0,996.0146667000001,0.0,96.85,4.504,0.140916667,238.0335277 -2014-02-28 23:00:00,0.0,996.1996667000001,0.0,90.74166667,4.57425,0.2955,238.0328026 -2014-01-03 00:00:00,0.0,996.4893332999999,0.0,93.00833333,4.305583333,0.30925,238.017713 -2014-01-03 01:00:00,0.0,996.86,0.0,93.29166667,5.118083333,1.085083333,238.01707066666665 -2014-01-03 02:00:00,0.0,996.9316667000002,0.0,93.61666667,5.292083333,1.1465,238.01644399999998 -2014-01-03 03:00:00,0.0,996.7146667000002,0.0,98.9,2.61,0.46233333299999996,238.01707066666665 -2014-01-03 04:00:00,0.0,996.7143332999999,0.0,100.0,1.827666667,0.15383333300000002,238.01675733333332 -2014-01-03 05:00:00,0.0,996.9643332999999,0.0,100.0,1.39175,0.21383333300000001,238.01644399999998 -2014-01-03 06:00:00,0.0,997.0833332999998,0.05915,100.0,0.778416667,0.2595,238.01675733333332 -2014-01-03 07:00:00,0.0,997.3123332999999,9.113416667000001,100.0,-0.177833333,0.203083333,238.01644399999998 -2014-01-03 08:00:00,0.0,997.5976667000001,49.07058333,100.0,2.0789166669999997,0.08825,238.01581733333333 -2014-01-03 09:00:00,0.0,997.802,133.0233333,98.68333333,4.466666667,0.6928333329999999,238.01675733333332 -2014-01-03 10:00:00,0.0,997.8206667000002,122.61666670000001,93.275,6.017416667000001,1.151666667,238.01644399999998 -2014-01-03 11:00:00,0.0,997.8023332999999,115.115,87.09166667,7.0375,0.54325,238.01675733333332 -2014-01-03 12:00:00,0.0,997.44,46.44033333,82.80833333,6.760416667,0.50075,238.01707066666665 -2014-01-03 13:00:00,0.0,997.0939999999999,52.86166667,81.13333333,6.741083333,0.26425,238.01613066666664 -2014-01-03 14:00:00,0.0,996.8833332999999,60.34291667,84.2,6.749916667000001,0.416416667,238.015504 -2014-01-03 15:00:00,0.0,996.694,42.04375,84.04166667,6.91075,0.743916667,238.01548833333334 -2014-01-03 16:00:00,0.0,996.5626667000001,25.557,83.625,6.89225,0.276416667,238.015504 -2014-01-03 17:00:00,0.0,996.35,11.00376667,84.4,6.372916667,0.292083333,238.015175 -2014-01-03 18:00:00,0.0,996.6416667000001,0.3549,91.98333333,5.606166667,0.319666667,238.014846 -2014-01-03 19:00:00,0.0,996.529,0.0,97.81666667,4.36825,0.346583333,238.014188 -2014-01-03 20:00:00,0.0,996.5333332999999,0.0,99.75833333,2.67925,0.318,238.013859 -2014-01-03 21:00:00,0.0,996.9746667000002,0.0,100.0,2.089666667,0.179583333,238.01352999999997 -2014-01-03 22:00:00,0.0,997.2206667000002,0.0,98.85833333,3.277083333,0.10116666699999999,238.01320099999998 -2014-01-03 23:00:00,0.0,996.9939999999999,0.0,98.91666667,3.587916667,0.1275,238.012872 -2014-02-03 00:00:00,0.0,996.9956667000001,0.0,99.98333333,2.399916667,0.170916667,238.0640551 -2014-02-03 01:00:00,0.0,997.075,0.0,100.0,0.39866666700000003,0.232833333,238.06380131666666 -2014-02-03 02:00:00,0.0,996.9960000000001,0.0,100.0,-0.402583333,0.21325,238.06380131666666 -2014-02-03 03:00:00,0.0,997.2226667000001,0.0,100.0,-0.8905,0.23875,238.06329374999999 -2014-02-03 04:00:00,0.0,997.4703332999999,0.0,100.0,-1.506666667,0.062583333,238.06329374999999 -2014-02-03 05:00:00,0.0,998.0953332999999,0.0,100.0,-1.8769999999999998,0.156,238.06278618333337 -2014-02-03 06:00:00,0.0,998.508,0.05915,100.0,-2.2301666669999998,0.285,238.06303996666668 -2014-02-03 07:00:00,0.0,999.193,6.884325,100.0,-2.607583333,0.163666667,238.06303996666668 -2014-02-03 08:00:00,0.0,1000.049333,47.85433333,100.0,-1.478833333,0.305666667,238.06278618333337 -2014-02-03 09:00:00,2.6488661280000003,1000.416667,150.1908333,97.38333333,1.50625,0.756916667,238.06204899999997 -2014-02-03 10:00:00,0.0,1000.5060000000001,243.3258333,80.27916667,6.086916667000001,1.23475,238.0625324 -2014-02-03 11:00:00,0.0,1000.933,287.8516667,78.03166667,6.5396666670000005,1.6165,238.06229069999998 -2014-02-03 12:00:00,0.0,1000.902333,242.06,73.46,7.382999999999999,1.5434166669999998,238.0625324 -2014-02-03 13:00:00,0.0,1000.469333,197.0266667,71.43833333,7.715416667,1.531166667,238.0625324 -2014-02-03 14:00:00,0.0,999.7756667000001,151.375,70.07083333,7.391583333,1.4384166669999998,238.06278618333337 -2014-02-03 15:00:00,25.38205949,999.2376667000001,121.28083329999998,71.6075,7.312666667,1.0231666670000001,238.06278618333337 -2014-02-03 16:00:00,0.0,999.069,91.01983333,74.56583333,7.078416667000001,1.84725,238.06278618333337 -2014-02-03 17:00:00,0.0,998.6173332999998,20.46910833,79.59416667,6.337083333,2.2023333330000003,238.06278618333337 -2014-02-03 18:00:00,0.0,997.8693332999999,0.611275,82.1,4.539666667,1.47425,238.0625324 -2014-02-03 19:00:00,0.0,997.3710000000001,0.0,88.95,1.322083333,0.769333333,238.0615656 -2014-02-03 20:00:00,0.0,996.6343332999999,0.0,97.59166667,0.068833333,0.655,238.06180729999997 -2014-02-03 21:00:00,0.0,995.4863332999998,0.0,99.825,-0.839833333,0.071916667,238.06180729999997 -2014-02-03 22:00:00,0.0,994.4406667000002,0.0,100.0,-1.462666667,0.023,238.06132389999993 -2014-02-03 23:00:00,0.0,993.332,0.0,100.0,-1.661583333,0.213166667,238.0608284 -2014-03-03 00:00:00,0.0,992.432,0.0,100.0,-1.307083333,0.4275,238.0253338 -2014-03-03 01:00:00,0.0,991.4966667000001,0.0,99.55833333,-0.886166667,0.7443333329999999,238.0253338 -2014-03-03 02:00:00,0.0,990.6713332999999,0.0,97.725,-1.52725,0.0365,238.02605895 -2014-03-03 03:00:00,0.0,989.6533332999999,0.0,98.89166667,-0.725666667,0.02075,238.02605895 -2014-03-03 04:00:00,0.0,988.6066667000001,0.0,99.175,0.03975,0.368333333,238.02581723333333 -2014-03-03 05:00:00,0.0,988.171,0.0,99.81666667,0.788083333,0.198833333,238.02605895 -2014-03-03 06:00:00,0.0,987.5653332999999,0.05915,98.575,1.0776666670000001,0.571916667,238.02605895 -2014-03-03 07:00:00,0.0,987.073,14.55638333,99.03333333,0.773166667,0.441666667,238.02605895 -2014-03-03 08:00:00,0.0,986.9726667000001,50.64966667,94.29166667,2.0225,0.63975,238.02630066666666 -2014-03-03 09:00:00,0.0,987.1833332999998,79.96333333,89.2,3.9674166669999997,2.523583333,238.02630066666666 -2014-03-03 10:00:00,0.0,987.5453332999999,67.14166667,85.54166667,4.863166667,2.353333333,238.02654238333335 -2014-03-03 11:00:00,0.0,987.8853332999998,105.55416670000001,90.95833333,5.42275,2.22375,238.02605895 -2014-03-03 12:00:00,0.0,988.0980000000001,227.96083330000002,83.85833333,7.27075,2.46975,238.02581723333333 -2014-03-03 13:00:00,3.516496896,987.875,128.58416670000003,83.81666667,7.8034166670000005,2.759,238.02581723333333 -2014-03-03 14:00:00,0.0,987.9643332999999,153.2883333,82.12833333,7.39725,2.75325,238.02557551666666 -2014-03-03 15:00:00,0.0,988.4266667000002,94.52566667,78.6075,7.425583333,2.795666667,238.0253338 -2014-03-03 16:00:00,0.0,988.7726667000002,61.41391667,79.31166667,8.000083333,1.97175,238.0253338 -2014-03-03 17:00:00,0.0,989.258,27.74625,82.0825,6.7423333329999995,1.4651666669999999,238.02457245000002 -2014-03-03 18:00:00,0.0,989.941,1.636775,91.60833333,5.0360833330000006,1.075583333,238.02406488333335 -2014-03-03 19:00:00,0.0,990.3933332999999,0.0,98.9,2.80575,0.5750833329999999,238.0235694 -2014-03-03 20:00:00,0.0,990.812,0.0,99.95833333,1.6910833330000001,0.27625,238.02356940000004 -2014-03-03 21:00:00,0.0,991.3893332999999,0.0,100.0,0.9604166670000001,0.278083333,238.02381110000002 -2014-03-03 22:00:00,0.0,991.7289999999999,0.0,100.0,0.29833333300000003,0.300166667,238.0235694 -2014-03-03 23:00:00,0.0,991.9810000000001,0.0,100.0,-0.54575,0.225166667,238.0228443 -2014-04-03 00:00:00,0.0,992.3016667000002,0.0,100.0,-1.012833333,0.15425,237.95376410000003 -2014-04-03 01:00:00,0.0,992.9036667000001,0.0,100.0,-1.56525,0.11466666699999999,237.9534132 -2014-04-03 02:00:00,0.0,993.0793332999999,0.0,100.0,-1.979,0.138083333,237.9534132 -2014-04-03 03:00:00,0.0,993.4576667000001,0.0,100.0,-1.5343333330000002,0.095083333,237.954115 -2014-04-03 04:00:00,0.0,994.2076667000001,0.0,100.0,-0.525083333,0.069333333,237.9534132 -2014-04-03 05:00:00,0.0,994.7953332999999,0.0,100.0,-0.28425,0.193833333,237.95376410000003 -2014-04-03 06:00:00,0.0,995.5036667000002,0.078866667,100.0,-0.6034166670000001,0.229416667,237.95306230000003 -2014-04-03 07:00:00,0.0,996.1410000000001,6.568741667,100.0,-0.6559166670000001,0.550416667,237.95306230000003 -2014-04-03 08:00:00,0.0,997.041,47.79541667,100.0,-0.262916667,0.565666667,237.9534132 -2014-04-03 09:00:00,0.0,997.7473332999999,113.09083329999999,100.0,0.771083333,0.87225,237.954115 -2014-04-03 10:00:00,0.0,998.331,232.7441667,99.95,2.898916667,0.841666667,237.95341320000003 -2014-04-03 11:00:00,0.0,998.6246667000001,292.0341667,89.54166667,5.404166667,0.75125,237.954115 -2014-04-03 12:00:00,0.0,998.796,331.9458333,77.52166667,8.575416667,1.1663333329999999,237.95306230000003 -2014-04-03 13:00:00,0.0,998.7289999999999,316.0558333,58.28166667,11.21333333,0.844333333,237.9548168 -2014-04-03 14:00:00,0.0,998.8726667000001,282.8175,52.9975,11.60416667,1.2508333329999999,237.95376410000003 -2014-04-03 15:00:00,0.0,999.0893332999999,220.745,52.72666667,12.16166667,1.4085,237.95306230000003 -2014-04-03 16:00:00,0.0,999.4996667000001,134.45833330000002,53.39916667,11.66666667,1.4135,237.95376410000003 -2014-04-03 17:00:00,0.0,999.904,35.59091667,61.32416667,9.749,0.964333333,237.954115 -2014-04-03 18:00:00,0.0,1000.557333,2.189366667,81.15166667,5.137416667,0.17275,237.95306230000003 -2014-04-03 19:00:00,0.0,1001.430667,0.0,91.75,3.131916667,0.30141666699999997,237.95236050000003 -2014-04-03 20:00:00,0.0,1002.128667,0.0,94.28333333,2.19,0.5205833329999999,237.9520096 -2014-04-03 21:00:00,0.0,1002.857667,0.0,96.66666667,1.3771666669999998,0.193666667,237.9513078 -2014-04-03 22:00:00,0.0,1003.597667,0.0,97.05,0.8583333329999999,0.180083333,237.9513078 -2014-04-03 23:00:00,0.0,1003.937,0.0,97.79166667,0.546166667,0.130666667,237.9513078 -2014-05-03 00:00:00,0.0,1004.578667,0.0,97.26666667,0.2825,0.345083333,237.86443599999998 -2014-05-03 01:00:00,0.0,1005.282667,0.0,98.89166667,2.4619999999999997,0.726833333,237.86443599999998 -2014-05-03 02:00:00,0.0,1005.843333,0.0,99.99166667,2.565416667,0.45075,237.86443599999998 -2014-05-03 03:00:00,19.06837476,1006.472333,0.0,99.88333333,2.090083333,0.5043333329999999,237.86410181666665 -2014-05-03 04:00:00,4.762788768,1007.255667,0.0,100.0,2.183333333,0.273,237.86243089999996 -2014-05-03 05:00:00,0.0,1008.038667,0.0,100.0,3.334333333,0.806916667,237.86243089999996 -2014-05-03 06:00:00,0.0,1009.076333,0.078866667,100.0,3.319666667,0.693333333,237.86243089999996 -2014-05-03 07:00:00,0.0,1010.174,9.486108332999999,100.0,3.271833333,0.605583333,237.86243089999996 -2014-05-03 08:00:00,0.0,1011.238667,42.245,99.85833333,4.11475,0.8121666670000001,237.86243089999996 -2014-05-03 09:00:00,0.0,1012.166,119.67200000000001,93.25833333,5.71325,1.5463333330000002,237.86243089999996 -2014-05-03 10:00:00,0.0,1012.885,218.785,84.8025,7.30925,2.019583333,237.86243089999996 -2014-05-03 11:00:00,0.0,1013.387,274.6975,74.915,8.2225,2.8490833330000003,237.8613782 -2014-05-03 12:00:00,0.0,1013.822667,255.0216667,67.58833333,9.310833333,2.3681666669999997,237.86067640000002 -2014-05-03 13:00:00,0.0,1014.083333,288.4991667,66.27833333,9.441666667,2.323833333,237.8583204 -2014-05-03 14:00:00,0.0,1014.453667,180.9616667,64.48333333,9.755,2.990583333,237.8579695 -2014-05-03 15:00:00,0.0,1015.059667,107.6915,65.4475,9.546666667,3.1095833330000002,237.856215 -2014-05-03 16:00:00,3.222843024,1015.741333,62.993,67.86,9.691666667,2.516166667,237.85487826666667 -2014-05-03 17:00:00,0.0,1016.447,25.3015,69.595,8.920833333,2.209166667,237.85420990000003 -2014-05-03 18:00:00,0.0,1017.428333,1.5971083330000002,75.6325,6.613166667000001,1.4636666669999998,237.85245540000003 -2014-05-03 19:00:00,0.0,1018.449333,0.0,92.775,3.99675,0.38383333299999994,237.8521045 -2014-05-03 20:00:00,0.0,1019.2660000000001,0.0,96.5,2.017,0.336,237.85075104999999 -2014-05-03 21:00:00,0.0,1019.870333,0.0,98.85,0.7403333329999999,0.29975,237.8483449 -2014-05-03 22:00:00,0.0,1020.653667,0.0,99.93333333,-0.064,0.419416667,237.847994 -2014-05-03 23:00:00,0.0,1020.964333,0.0,100.0,-0.899083333,0.029916667,237.847994 -2014-06-03 00:00:00,0.0,1021.457667,0.0,100.0,-1.51375,0.172416667,237.7236766 -2014-06-03 01:00:00,0.0,1021.904,0.0,100.0,-1.70375,0.250583333,237.7243784 -2014-06-03 02:00:00,0.0,1022.220667,0.0,100.0,-2.285166667,0.0435,237.72638349999997 -2014-06-03 03:00:00,0.0,1022.370667,0.0,100.0,-2.833333333,0.083083333,237.72708526666665 -2014-06-03 04:00:00,0.0,1022.674333,0.0,100.0,-3.07925,0.142583333,237.7284888 -2014-06-03 05:00:00,0.0,1023.341667,0.0,100.0,-3.08525,0.164583333,237.728823 -2014-06-03 06:00:00,0.0,1023.651667,0.236716667,100.0,-3.2985,0.24983333300000002,237.730494 -2014-06-03 07:00:00,0.0,1024.334667,7.317858332999999,100.0,-1.19975,0.12716666699999998,237.73119576666667 -2014-06-03 08:00:00,2.456998224,1025.014,28.97766667,100.0,0.627083333,0.4095,237.73259930000003 -2014-06-03 09:00:00,0.0,1025.699667,56.50866667,100.0,1.63825,1.007666667,237.73086156666668 -2014-06-03 10:00:00,0.0,1025.964333,80.1675,100.0,2.16025,0.9209166670000001,237.7264169 -2014-06-03 11:00:00,0.0,1026.056333,114.68333329999999,100.0,2.6808333330000003,1.014,237.72127045 -2014-06-03 12:00:00,0.0,1025.856667,210.25666669999998,100.0,3.693166667,0.91025,237.71782831666667 -2014-06-03 13:00:00,0.0,1025.283667,335.7608333,92.75833333,5.63275,0.8823333329999999,237.71649158333332 -2014-06-03 14:00:00,0.0,1024.733667,303.54333330000003,80.65416667,9.163333332999999,0.8535,237.7140687166667 -2014-06-03 15:00:00,0.0,1024.259,237.7258333,66.53583333,10.5975,0.816666667,237.7158065 -2014-06-03 16:00:00,0.0,1023.725333,145.06916669999998,66.0475,10.575,0.871416667,237.7154556 -2014-06-03 17:00:00,0.0,1023.55,38.63241667,73.26916667,9.539166667,0.833416667,237.714052 -2014-06-03 18:00:00,0.0,1023.639333,2.386183333,91.89166667,4.768,0.6226666670000001,237.7147538 -2014-06-03 19:00:00,0.0,1023.958333,0.0,97.525,2.091333333,0.563666667,237.71580649999999 -2014-06-03 20:00:00,0.0,1023.931333,0.0,99.33333333,0.628833333,0.391666667,237.71615740000001 -2014-06-03 21:00:00,0.0,1023.7769999999999,0.0,99.975,-0.461583333,0.214916667,237.7178283166667 -2014-06-03 22:00:00,0.0,1023.6833330000001,0.0,100.0,-0.96025,0.344083333,237.71956609999998 -2014-06-03 23:00:00,0.0,1023.456667,0.0,100.0,-1.3980833330000002,0.165333333,237.72060208333335 -2014-07-03 00:00:00,0.0,1023.123,0.0,100.0,-1.9783333330000001,0.180166667,237.62061340000002 -2014-07-03 01:00:00,0.0,1022.992,0.0,100.0,-2.438333333,0.253166667,237.62271879999994 -2014-07-03 02:00:00,0.0,1022.685667,0.0,100.0,-2.81625,0.21225,237.62509151666666 -2014-07-03 03:00:00,0.0,1022.263,0.0,100.0,-3.16475,0.21733333300000002,237.62718019999997 -2014-07-03 04:00:00,0.0,1022.0039999999999,0.0,100.0,-3.519666667,0.050583333,237.62753109999997 -2014-07-03 05:00:00,0.0,1022.054333,0.0,100.0,-2.8930833330000003,0.08466666699999999,237.62920201666665 -2014-07-03 06:00:00,0.0,1021.891667,0.394508333,100.0,-2.999083333,0.0,237.63093979999996 -2014-07-03 07:00:00,0.0,1022.051667,16.72725833,100.0,-3.788166667,0.000833333,237.63264414999995 -2014-07-03 08:00:00,0.0,1022.262667,54.87766667,100.0,-2.291583333,0.111,237.63331251666662 -2014-07-03 09:00:00,2.402127936,1022.327,155.575,100.0,0.85875,0.364333333,237.62474061666663 -2014-07-03 10:00:00,0.0,1022.298,249.4625,93.81666667,4.1095,0.553583333,237.61613528333336 -2014-07-03 11:00:00,0.0,1022.035667,302.6858333,83.24166667,7.464416667,0.5195,237.61033715 -2014-07-03 12:00:00,0.0,1021.706333,319.5325,73.06166667,10.0425,0.681583333,237.607931 -2014-07-03 13:00:00,0.0,1021.446333,321.5041667,64.15083333,11.625,1.18275,237.6052073833333 -2014-07-03 14:00:00,0.0,1020.9839999999999,272.2008333,59.72583333,13.11583333,1.1320000000000001,237.6031187 -2014-07-03 15:00:00,0.0,1020.391667,205.135,58.94,13.18333333,1.40275,237.59999403333333 -2014-07-03 16:00:00,0.0,1020.387333,97.60916667,59.78416667,12.65583333,0.967333333,237.59690288333334 -2014-07-03 17:00:00,0.0,1020.656333,26.3445,76.77083333,10.655,0.577666667,237.59488100000002 -2014-07-03 18:00:00,0.0,1020.55,1.597283333,87.78333333,7.567416667000001,0.21633333300000002,237.59279238333332 -2014-07-03 19:00:00,0.0,1020.995667,0.0,89.81666667,6.926583333,0.35625,237.59210729999998 -2014-07-03 20:00:00,0.0,1021.240667,0.0,92.04166667,6.105166667000001,0.44925,237.59279238333332 -2014-07-03 21:00:00,0.0,1022.723667,0.0,93.93333333,4.467416667,0.48708333299999995,237.5955494 -2014-07-03 22:00:00,0.0,1023.223333,0.0,95.91666667,3.074416667,0.528666667,237.5982897166667 -2014-07-03 23:00:00,0.0,1023.26,0.0,98.8,1.2508333329999999,0.288666667,237.6013642 -2014-08-03 00:00:00,0.0,1023.762,0.0,99.875,0.622166667,0.274583333,237.56156260000003 -2014-08-03 01:00:00,0.0,1024.301667,0.0,99.99166667,0.08925,0.135083333,237.56086080000003 -2014-08-03 02:00:00,0.0,1024.660333,0.0,100.0,-0.625916667,0.24533333300000001,237.55945719999997 -2014-08-03 03:00:00,0.0,1024.943333,0.0,100.0,-0.899833333,0.179666667,237.5587888333333 -2014-08-03 04:00:00,0.0,1025.797,0.0,100.0,-1.32275,0.209083333,237.55569759999995 -2014-08-03 05:00:00,0.0,1026.705667,0.0,100.0,-1.620333333,0.169583333,237.55534669999997 -2014-08-03 06:00:00,0.0,1026.999667,0.414283333,100.0,-1.8825833330000001,0.159333333,237.55501251666666 -2014-08-03 07:00:00,0.0,1027.707667,16.33339167,100.0,-1.5915,0.08391666699999999,237.55367578333332 -2014-08-03 08:00:00,0.0,1028.462,49.21875,100.0,0.78775,0.079166667,237.55334159999998 -2014-08-03 09:00:00,0.0,1028.742,162.7325,96.01666667,6.028666667,0.24558333300000001,237.55263979999998 -2014-08-03 10:00:00,0.0,1028.489667,243.9616667,81.93416667,9.14,0.801083333,237.54916426666662 -2014-08-03 11:00:00,0.0,1028.545667,267.54,71.7025,10.69916667,1.3944166669999998,237.54712569999995 -2014-08-03 12:00:00,0.0,1028.325333,330.7266667,62.22,13.2225,2.6190833330000003,237.54607305 -2014-08-03 13:00:00,0.0,1027.763,331.5316667,56.37,13.9525,2.75275,237.54368359999998 -2014-08-03 14:00:00,0.0,1027.236,296.3858333,55.0725,14.63666667,2.1463333330000003,237.54196255 -2014-08-03 15:00:00,0.0,1026.868667,238.14583330000002,51.9025,14.925,1.8015833330000002,237.53957316666666 -2014-08-03 16:00:00,0.0,1026.610667,153.3525,52.11583333,14.38166667,1.7830000000000001,237.53820299999998 -2014-08-03 17:00:00,0.0,1026.389667,36.32008333,60.41583333,11.8275,1.21,237.53574669999998 -2014-08-03 18:00:00,0.0,1026.5539999999999,3.2734333330000003,86.37166667,6.456166667000001,0.454083333,237.5319871 -2014-08-03 19:00:00,0.0,1026.762333,0.0,93.875,4.001833333,0.5349166670000001,237.5305835 -2014-08-03 20:00:00,0.0,1026.764667,0.0,97.40833333,2.3199166669999998,0.421416667,237.52991513333333 -2014-08-03 21:00:00,0.0,1026.8,0.0,99.21666667,1.067083333,0.537083333,237.5285784 -2014-08-03 22:00:00,0.0,1026.899667,0.0,99.98333333,0.5205,0.49066666700000006,237.52682390000004 -2014-08-03 23:00:00,0.0,1027.021,0.0,100.0,-0.196833333,0.41166666700000004,237.5261388166667 -2014-09-03 00:00:00,0.0,1026.789667,0.0,100.0,-0.75775,0.33058333300000003,237.8430045 -2014-09-03 01:00:00,0.0,1026.600333,0.0,100.0,-1.21775,0.225583333,237.8413335833333 -2014-09-03 02:00:00,0.0,1026.315,0.0,100.0,-1.50625,0.123916667,237.84099939999996 -2014-09-03 03:00:00,0.0,1026.052,0.0,100.0,-1.841,0.16075,237.84029759999999 -2014-09-03 04:00:00,0.0,1026.048,0.0,100.0,-2.2778333330000002,0.259333333,237.84064849999996 -2014-09-03 05:00:00,0.0,1026.087333,0.0,100.0,-2.656333333,0.11,237.8399467 -2014-09-03 06:00:00,0.0,1026.4080000000001,0.631225,100.0,-2.96775,0.21758333300000002,237.8399299833333 -2014-09-03 07:00:00,0.0,1026.635333,14.932575,100.0,-2.6635,0.011833333,237.83889399999998 -2014-09-03 08:00:00,2.3865511440000002,1027.068333,35.31091667,100.0,0.4475,0.009416667,237.83889399999998 -2014-09-03 09:00:00,0.0,1027.362333,193.5791667,96.99166667,4.55325,0.39641666700000006,237.83854311666664 -2014-09-03 10:00:00,0.0,1027.194,280.60083330000003,81.6875,8.95625,0.664083333,237.83749046666665 -2014-09-03 11:00:00,0.0,1026.923333,332.5,62.30416667,12.88833333,2.2160833330000003,237.8371395833333 -2014-09-03 12:00:00,0.0,1026.537667,355.4308333,49.475,15.015,1.8299166669999998,237.8371395833333 -2014-09-03 13:00:00,0.0,1026.108667,346.8908333,42.58083333,16.0275,2.665,237.84024750000003 -2014-09-03 14:00:00,0.0,1025.665,317.695,38.79333333,16.91083333,1.901,237.8399467 -2014-09-03 15:00:00,0.0,1025.321333,258.8775,36.26666667,17.58583333,1.670833333,237.83784134999996 -2014-09-03 16:00:00,0.0,1024.785667,174.06666669999998,38.50083333,17.70083333,1.067416667,237.83578609999998 -2014-09-03 17:00:00,0.0,1024.566667,37.54333333,52.10666667,14.965,0.7919166670000001,237.83443261666665 -2014-09-03 18:00:00,0.0,1024.579333,3.2334166669999997,80.95083333,7.817666667,0.626416667,237.83267819999995 -2014-09-03 19:00:00,0.0,1024.629,0.0,91.29166667,4.66475,0.601166667,237.83267819999995 -2014-09-03 20:00:00,0.0,1024.521,0.0,94.68333333,3.0285,0.5990833329999999,237.83267819999995 -2014-09-03 21:00:00,0.0,1024.391667,0.0,97.075,1.718666667,0.510416667,237.83200979999995 -2014-09-03 22:00:00,0.0,1024.383333,0.0,98.06666667,1.068166667,0.488833333,237.83134139999996 -2014-09-03 23:00:00,0.0,1024.069333,0.0,99.475,0.34016666700000003,0.41233333299999997,237.83067299999996 -2014-10-03 00:00:00,0.0,1023.546,0.0,99.825,-0.56875,0.257166667, -2014-10-03 01:00:00,0.0,1023.2860000000001,0.0,100.0,-1.111666667,0.38108333299999997, -2014-10-03 02:00:00,0.0,1022.548333,0.0,100.0,-1.260833333,0.18733333300000002, -2014-10-03 03:00:00,0.0,1022.214667,0.0,100.0,-1.47375,0.312, -2014-10-03 04:00:00,0.0,1022.064667,0.0,100.0,-1.929416667,0.2915, -2014-10-03 05:00:00,0.0,1021.754667,0.0,100.0,-2.071166667,0.107916667, -2014-10-03 06:00:00,0.0,1021.608333,0.71015,100.0,-2.479,0.18641666699999998, -2014-10-03 07:00:00,0.0,1021.681,13.809425,100.0,-2.149,0.15708333300000002, -2014-10-03 08:00:00,2.38806936,1022.081,35.3535,100.0,1.42775,0.054666667, -2014-10-03 09:00:00,0.0,1021.815,197.2425,95.21666667,5.50425,0.41908333299999995, -2014-10-03 10:00:00,0.0,1021.242,273.49,75.88333333,8.792833332999999,0.667083333, -2014-10-03 11:00:00,0.0,1020.852333,328.7433333,58.20833333,12.51166667,0.6515, -2014-10-03 12:00:00,0.0,1020.542333,350.71166669999997,49.19833333,14.62583333,0.7959166670000001, -2014-10-03 13:00:00,0.0,1019.771333,345.1641667,44.62166667,15.68333333,0.990833333, -2014-10-03 14:00:00,0.0,1019.450333,310.8233333,43.06583333,16.09416667,1.7058333330000002, -2014-10-03 15:00:00,0.0,1019.0980000000001,250.26166669999998,37.83083333,16.815,2.52625, -2014-10-03 16:00:00,0.0,1018.954333,163.8525,35.53916667,17.3025,2.36675, -2014-10-03 17:00:00,0.0,1019.0060000000001,35.45383333,49.06083333,16.215,2.153916667, -2014-10-03 18:00:00,0.0,1019.293333,3.352066667,73.42166667,10.93358333,0.82575, -2014-10-03 19:00:00,0.0,1019.5666669999999,0.0,83.825,6.33625,0.6659166670000001, -2014-10-03 20:00:00,0.0,1019.641667,0.0,86.275,4.797,0.45933333299999995, -2014-10-03 21:00:00,0.0,1019.620667,0.0,89.0,3.21975,0.407583333, -2014-10-03 22:00:00,0.0,1019.789333,0.0,90.06666667,2.302,0.40225, -2014-10-03 23:00:00,0.0,1020.378667,0.0,93.4,1.9005833330000002,0.614166667, -2014-11-03 00:00:00,0.0,1020.901667,0.0,95.15,1.183416667,0.43841666700000004,237.95875249999997 -2014-11-03 01:00:00,0.0,1021.15,0.0,96.46666667,0.942416667,0.29175,237.95805249999998 -2014-11-03 02:00:00,0.0,1021.283333,0.0,96.59166667,-0.2555,0.369833333,237.95770249999998 -2014-11-03 03:00:00,0.0,1021.3560000000001,0.0,97.1,-0.582666667,0.303583333,237.95805249999998 -2014-11-03 04:00:00,0.0,1021.745333,0.0,97.975,-0.96675,0.314416667,237.95805249999998 -2014-11-03 05:00:00,0.0,1022.312,0.0,98.91666667,-0.91825,0.49025,237.95666916666664 -2014-11-03 06:00:00,0.0,1022.86,0.946866667,98.45833333,-0.3825,0.529666667,237.95631916666665 -2014-11-03 07:00:00,0.0,1023.409667,15.46475,99.11666667,0.694916667,0.528333333,237.9566525 -2014-11-03 08:00:00,0.0,1024.170667,37.736999999999995,94.90833333,5.149583333,0.710833333,237.9566525 -2014-11-03 09:00:00,0.0,1024.4933330000001,195.37,73.03666667,9.251416667,2.295416667,237.9566525 -2014-11-03 10:00:00,0.0,1024.949667,276.22583330000003,61.26666667,11.3975,2.9506666669999997,237.9566525 -2014-11-03 11:00:00,0.0,1025.3,332.43,54.165,13.28833333,3.771416667, -2014-11-03 12:00:00,0.0,1025.2,355.3491667,49.1275,15.26333333,3.781916667, -2014-11-03 13:00:00,0.0,1024.809,349.8658333,43.11833333,16.3225,4.359416667, -2014-11-03 14:00:00,0.0,1024.364667,311.1908333,42.48416667,17.23666667,3.942166667,237.95975249999998 -2014-11-03 15:00:00,0.0,1024.152,243.215,44.32666667,17.61583333,3.774333333,237.95735249999998 -2014-11-03 16:00:00,0.0,1024.085667,151.38666669999998,47.41166667,16.7475,3.283583333,237.9566525 -2014-11-03 17:00:00,0.0,1024.353667,36.085,51.21166667,15.63583333,2.438166667,237.95598583333333 -2014-11-03 18:00:00,0.0,1024.918333,3.88535,55.30666667,13.3825,1.7404166669999999,237.95598583333333 -2014-11-03 19:00:00,0.0,1025.578667,0.0,71.75916667,9.120583332999999,0.71925,237.9566525 -2014-11-03 20:00:00,0.0,1026.239,0.0,80.51,8.226166667000001,0.648083333,237.95598583333333 -2014-11-03 21:00:00,0.0,1026.905667,0.0,72.485,8.12075,1.262166667,237.95430249999995 -2014-11-03 22:00:00,0.0,1027.272667,0.0,80.24166667,8.734166667,2.697666667,237.9512025 -2014-11-03 23:00:00,0.0,1027.56,0.0,81.26666667,7.954416667,2.040333333,237.9470525 -2014-12-03 00:00:00,0.0,1027.877333,0.0,84.325,7.35925,2.165916667,237.85905249999996 -2014-12-03 01:00:00,0.0,1027.548,0.0,86.75,6.075583332999999,1.1330833329999999,237.85938583333328 -2014-12-03 02:00:00,0.0,1027.362667,0.0,94.35,4.071833333,0.372166667,237.86005249999997 -2014-12-03 03:00:00,0.0,1027.360333,0.0,99.16666667,2.74725,0.49775,237.86005249999997 -2014-12-03 04:00:00,0.0,1027.235667,0.0,100.0,1.310666667,0.374666667,237.86005249999997 -2014-12-03 05:00:00,0.0,1027.125,0.0,100.0,0.61225,0.36741666700000003,237.86180249999998 -2014-12-03 06:00:00,0.0,1027.41,1.124375,100.0,-0.12916666699999999,0.270416667,237.86145249999996 -2014-12-03 07:00:00,0.0,1027.835,21.67958333,100.0,0.738583333,0.328916667,237.86248583333335 -2014-12-03 08:00:00,0.0,1028.335333,55.17516667,100.0,4.231916667,0.86275,237.86281916666667 -2014-12-03 09:00:00,0.0,1028.556,187.4133333,93.20833333,7.213083332999999,2.1465,237.86348583333336 -2014-12-03 10:00:00,0.0,1028.539667,276.8208333,82.13083333,9.148333333,1.9690833330000002,237.8645025 -2014-12-03 11:00:00,0.0,1028.425333,335.825,70.8125,10.86166667,2.761,237.86450250000004 -2014-12-03 12:00:00,0.0,1027.938,364.245,60.1175,12.93416667,2.044,237.8648525 -2014-12-03 13:00:00,0.0,1027.136,357.595,52.57916667,14.69666667,2.036916667,237.8645025 -2014-12-03 14:00:00,0.0,1026.569,318.5583333,46.67166667,16.02583333,2.375333333,237.8655525 -2014-12-03 15:00:00,0.0,1026.079667,254.1116667,44.3775,16.55833333,2.40625,237.8655525 -2014-12-03 16:00:00,0.0,1025.608667,160.73166669999998,45.73,16.48333333,2.304083333,237.8662525 -2014-12-03 17:00:00,0.0,1025.2169999999999,38.72983333,56.8025,15.24083333,1.8115833330000002,237.8666025 -2014-12-03 18:00:00,0.0,1025.260333,4.4177,77.18583333,11.455,0.926083333,237.86730249999997 -2014-12-03 19:00:00,0.0,1025.439333,0.0,88.95833333,7.8208333329999995,0.7835833329999999,237.8669525 -2014-12-03 20:00:00,0.0,1025.520667,0.0,92.56666667,5.36175,0.5910833329999999,237.8680025 -2014-12-03 21:00:00,0.0,1025.546,0.0,94.36666667,3.64625,0.478,237.8683525 -2014-12-03 22:00:00,0.0,1025.525,0.0,95.15833333,2.51575,0.400583333,237.86868583333333 -2014-12-03 23:00:00,0.0,1025.427333,0.0,95.75,1.497416667,0.396,237.86901916666662 -2014-03-13 00:00:00,0.0,1025.062667,0.0,96.675,0.210083333,0.376333333,237.9945163 -2014-03-13 01:00:00,0.0,1024.856333,0.0,96.75,-0.5115833329999999,0.311916667,237.9942625 -2014-03-13 02:00:00,0.0,1024.515,0.0,96.95,-0.967666667,0.2205,237.9947701 -2014-03-13 03:00:00,0.0,1024.19,0.0,98.34166667,-1.4439166669999999,0.258583333,237.9945163 -2014-03-13 04:00:00,0.0,1023.975,0.0,99.275,-1.746,0.13925,237.99477009999998 -2014-03-13 05:00:00,0.0,1023.997667,0.0,99.4,-2.208,0.239083333,237.99477009999998 -2014-03-13 06:00:00,0.0,1024.033333,1.321716667,99.80833333,-2.58075,0.180916667,237.9947701 -2014-03-13 07:00:00,0.0,1024.31,17.91183333,99.99166667,-1.814583333,0.03,237.9940087 -2014-03-13 08:00:00,2.405739264,1024.720667,48.51175,99.33333333,2.4733333330000002,0.026000000000000002,237.9942625 -2014-03-13 09:00:00,0.0,1024.75,206.0158333,75.72666667,6.170083332999999,0.58325,237.99502389999998 -2014-03-13 10:00:00,0.0,1024.760667,283.90833330000004,64.64916667,9.473333333,0.8045,237.9942625 -2014-03-13 11:00:00,0.0,1024.504333,341.29083330000003,59.4275,12.19916667,0.6735,237.9935374 -2014-03-13 12:00:00,0.0,1024.183667,367.45916669999997,52.8175,15.39916667,0.77525,237.99477009999998 -2014-03-13 13:00:00,0.0,1023.475667,365.0208333,44.2375,17.2575,0.9155833329999999,237.9955315 -2014-03-13 14:00:00,0.0,1022.678,326.2466667,32.61416667,18.24916667,1.08775,237.9955315 -2014-03-13 15:00:00,0.0,1022.152333,255.8966667,29.77166667,18.90166667,1.137666667,237.9955315 -2014-03-13 16:00:00,0.0,1021.623333,162.2366667,33.275,17.9425,1.7078333330000002,237.9952777 -2014-03-13 17:00:00,0.0,1021.437333,38.31333333,47.41916667,14.90083333,1.5015833330000001,237.99477009999998 -2014-03-13 18:00:00,0.0,1021.6039999999999,5.145991667,73.835,10.04583333,0.5601666670000001,237.9940087 -2014-03-13 19:00:00,0.0,1021.804,0.0,84.885,6.557916667000001,0.544416667,237.99352530000002 -2014-03-13 20:00:00,0.0,1022.143333,0.0,85.475,5.39025,0.165333333,237.9928002 -2014-03-13 21:00:00,0.0,1022.429,0.0,85.46666667,5.071583333,0.345083333,237.9932836 -2014-03-13 22:00:00,0.0,1022.841333,0.0,88.45,4.052416667,0.5479166670000001,237.9932836 -2014-03-13 23:00:00,0.0,1022.966667,0.0,89.03333333,2.3344166669999997,0.48408333299999995,237.9930419 -2014-03-14 00:00:00,0.0,1022.895667,0.0,93.15,1.333833333,0.377833333,237.9925585 -2014-03-14 01:00:00,0.0,1022.885667,0.0,96.24166667,0.539416667,0.26275,237.9925585 -2014-03-14 02:00:00,0.0,1022.773,0.0,97.83333333,-0.128083333,0.236333333,237.9925585 -2014-03-14 03:00:00,0.0,1022.650333,0.0,98.43333333,-0.795166667,0.26158333300000003,237.99205093333333 -2014-03-14 04:00:00,0.0,1022.523,0.0,99.29166667,-1.312833333,0.182166667,237.99205093333333 -2014-03-14 05:00:00,0.0,1022.435333,0.0,99.75,-1.7150833330000002,0.227166667,237.9910358 -2014-03-14 06:00:00,0.0,1022.458333,1.6176416669999998,99.91666667,-2.117,0.113166667,237.99205093333333 -2014-03-14 07:00:00,0.0,1022.545667,20.23933333,99.98333333,-1.5050833330000002,0.10491666699999999,237.9923047166667 -2014-03-14 08:00:00,0.0,1022.912333,61.23308333,96.39166667,2.42675,0.18675,237.99205093333333 -2014-03-14 09:00:00,0.0,1022.852,200.82416669999998,73.8725,6.929416667000001,0.321666667,237.9928002 -2014-03-14 10:00:00,0.0,1022.548333,285.7575,63.56666667,10.28583333,0.8029166670000001,237.9932836 -2014-03-14 11:00:00,0.0,1022.238,341.2266667,56.24,11.945,1.248,237.99352530000002 -2014-03-14 12:00:00,0.0,1021.521333,365.6391667,50.42166667,14.75083333,0.8676666670000001,237.99304189999998 -2014-03-14 13:00:00,0.0,1020.6196669999999,360.1383333,45.87083333,15.79416667,0.935583333,237.99376700000002 -2014-03-14 14:00:00,0.0,1019.738333,326.3925,42.09416667,17.21,1.4478333330000002,237.9932836 -2014-03-14 15:00:00,0.0,1018.8530000000001,265.4458333,37.36083333,17.80916667,1.47375,237.9930419 -2014-03-14 16:00:00,0.0,1017.942,174.0433333,37.17916667,17.555,1.45175,237.9925585 -2014-03-14 17:00:00,0.0,1017.379667,39.319,42.59416667,15.17333333,1.313833333,237.9925585 -2014-03-14 18:00:00,0.0,1016.717,5.107433333,68.45083333,10.18916667,0.718333333,237.9925585 -2014-03-14 19:00:00,0.0,1016.770667,0.0,80.94083333,6.701083333,0.5708333329999999,237.9925585 -2014-03-14 20:00:00,0.0,1016.947667,0.0,80.81083333,4.897583333,0.4855,237.9923047166667 -2014-03-14 21:00:00,0.0,1016.561333,0.0,86.04166667,4.436583333,0.124083333,237.9923047166667 -2014-03-14 22:00:00,0.0,1015.956333,0.0,87.28333333,3.49775,0.063916667,237.99254641666664 -2014-03-14 23:00:00,0.0,1015.488333,0.0,89.75833333,3.087916667,0.1015,237.9932836 -2014-03-15 00:00:00,0.0,1014.7396669999999,0.0,74.2375,5.342166667,0.96875,237.9935253 -2014-03-15 01:00:00,0.0,1014.737667,0.0,75.64166667,9.093333333,1.93175,237.9935253 -2014-03-15 02:00:00,0.0,1014.1339999999999,0.0,72.82583333,9.208333332999999,1.9479166669999999,237.99376700000002 -2014-03-15 03:00:00,0.0,1013.186,0.0,72.11666667,8.719166667,1.8665833330000001,237.99376700000002 -2014-03-15 04:00:00,0.0,1012.8439999999999,0.0,74.84416667,8.581666667,1.82525,237.9942746 -2014-03-15 05:00:00,0.0,1012.735333,0.0,77.8025,8.9725,1.9858333330000002,237.9940087 -2014-03-15 06:00:00,0.0,1012.820667,0.37473333299999995,83.11666667,8.910833333,2.0065,237.9940087 -2014-03-15 07:00:00,0.0,1013.133333,7.849041667000001,87.51666667,8.631666667000001,2.022916667,237.9940087 -2014-03-15 08:00:00,0.0,1013.485,18.67716667,92.65,7.967583332999999,1.995166667,237.9940087 -2014-03-15 09:00:00,15.53790581,1013.508,33.15375,97.1,7.5620833329999995,2.0131666669999997,237.9940087 -2014-03-15 10:00:00,18.33769992,1014.226667,40.29375,92.94166667,7.177333332999999,2.7395,237.9940087 -2014-03-15 11:00:00,0.0,1015.068,207.6841667,83.75083333,8.004916667,3.127333333,237.9940087 -2014-03-15 12:00:00,0.0,1015.404333,199.07416669999998,74.66666667,9.306666667,3.65875,237.9942625 -2014-03-15 13:00:00,0.0,1015.3083330000001,129.5880833,74.635,9.2775,2.929166667,237.99402080000002 -2014-03-15 14:00:00,0.0,1015.347667,115.07475,80.48916667,9.120833333,2.4521666669999997,237.9942625 -2014-03-15 15:00:00,0.0,1015.724667,63.29166667,71.115,9.335833333,2.621916667,237.99377909999998 -2014-03-15 16:00:00,0.0,1015.821,59.47783333,67.935,9.370833333,2.36075,237.9942625 -2014-03-15 17:00:00,0.0,1015.81,30.66571667,68.76666667,9.289166667,1.5148333330000001,237.9942625 -2014-03-15 18:00:00,0.0,1016.1436669999999,1.9324083330000001,69.98833333,8.85,1.46575,237.9942625 -2014-03-15 19:00:00,0.0,1016.152333,0.0,71.60583333,8.540833333,1.401416667,237.9942625 -2014-03-15 20:00:00,0.0,1016.048,0.0,73.3675,8.46,1.6395,237.9940087 -2014-03-15 21:00:00,0.0,1015.8439999999999,0.0,74.84333333,8.563333333,1.95825,237.9940087 -2014-03-15 22:00:00,0.0,1015.5210000000001,0.0,79.20333333,8.475,1.9318333330000002,237.9940087 -2014-03-15 23:00:00,0.0,1015.198333,0.0,82.8625,8.182083333,2.1069999999999998,237.9942625 -2014-03-16 00:00:00,0.0,1014.321667,0.0,91.175,7.142333333,1.85625,237.9942625 -2014-03-16 01:00:00,0.0,1013.584,0.0,90.225,7.540583333,2.1885,237.99477009999998 -2014-03-16 02:00:00,0.0,1013.0210000000001,0.0,86.46666667,8.035083333,2.20775,237.9955315 -2014-03-16 03:00:00,0.0,1012.696333,0.0,83.68333333,8.8325,2.5140000000000002,237.9955315 -2014-03-16 04:00:00,0.0,1012.289333,0.0,86.30833333,8.870833333,2.300333333,237.9955315 -2014-03-16 05:00:00,0.0,1012.323333,0.0,92.45,8.47,2.4049166669999997,237.9955315 -2014-03-16 06:00:00,0.0,1012.457667,0.45354166700000004,94.59166667,8.5525,2.635916667,237.9955315 -2014-03-16 07:00:00,0.0,1012.966667,12.34490833,94.38333333,8.6825,2.3025833330000003,237.9955315 -2014-03-16 08:00:00,0.0,1013.341,27.03633333,90.7,9.428333333,2.199,237.9952777 -2014-03-16 09:00:00,0.0,1013.8166669999999,118.52633329999999,88.65833333,9.824166667,2.6854166669999997,237.99502389999998 -2014-03-16 10:00:00,0.0,1013.928667,88.9105,86.65833333,10.25583333,2.6116666669999997,237.99502389999998 -2014-03-16 11:00:00,0.0,1014.4810000000001,66.15991667,86.53333333,10.3025,2.284416667,237.9942625 -2014-03-16 12:00:00,0.0,1014.6063330000001,166.0866667,85.30833333,11.05,2.51875,237.9940087 -2014-03-16 13:00:00,0.0,1014.123333,305.1766667,80.89583333,12.4975,3.1408333330000002,237.9940087 -2014-03-16 14:00:00,0.0,1013.498667,229.67,77.15833333,13.2425,3.093,237.9942625 -2014-03-16 15:00:00,0.0,1013.15,104.94166670000001,76.80416667,13.79833333,2.4935,237.9942625 -2014-03-16 16:00:00,0.0,1013.349667,50.36558333,77.21,13.36666667,3.782666667,237.9940087 -2014-03-16 17:00:00,0.0,1013.780667,29.12583333,76.16666667,12.83,4.527,237.9945163 -2014-03-16 18:00:00,0.0,1014.116667,3.2734333330000003,75.91,12.28,1.59475,237.9945163 -2014-03-16 19:00:00,0.0,1014.433,0.0,77.95333333,11.65416667,1.6545833330000002,237.99376700000002 -2014-03-16 20:00:00,0.0,1014.916333,0.0,79.3875,10.61166667,1.008666667,237.9928002 -2014-03-16 21:00:00,0.0,1014.945667,0.0,81.16666667,10.34166667,1.255,237.9925585 -2014-03-16 22:00:00,0.0,1015.1519999999999,0.0,84.225,9.9625,1.428166667,237.9928002 -2014-03-16 23:00:00,0.0,1015.5060000000001,0.0,80.3725,9.774166667000001,1.864,237.9925585 -2014-03-17 00:00:00,0.0,1015.265,0.0,81.85,8.71025,1.1926666670000001,237.9928002 -2014-03-17 01:00:00,0.0,1015.243667,0.0,86.75833333,6.939083332999999,0.44583333299999994,237.9923047166667 -2014-03-17 02:00:00,0.0,1015.083667,0.0,94.40833333,4.558166667,0.319583333,237.99154336666666 -2014-03-17 03:00:00,0.0,1014.535667,0.0,94.46666667,4.149333333,0.314666667,237.99179715000002 -2014-03-17 04:00:00,0.0,1014.3689999999999,0.0,88.61666667,5.619666667000001,0.521166667,237.9923047166667 -2014-03-17 05:00:00,0.0,1014.474667,0.0,89.91666667,8.13825,0.7535,237.9925585 -2014-03-17 06:00:00,0.0,1014.614333,1.005666667,90.25833333,8.469166667,1.126083333,237.99205093333333 -2014-03-17 07:00:00,0.0,1014.862333,11.39751667,90.025,8.811666667,1.5993333330000001,237.9923047166667 -2014-03-17 08:00:00,0.0,1015.339333,32.83641667,90.75,9.079166667,1.54525,237.99128958333333 -2014-03-17 09:00:00,0.0,1015.704,64.73716667,89.2,9.696666667,2.275833333,237.99128958333333 -2014-03-17 10:00:00,0.0,1015.831,69.02,87.66666667,10.0,1.946333333,237.99154336666666 -2014-03-17 11:00:00,0.0,1015.833333,72.02416667,85.16666667,10.47666667,1.792666667,237.99104786666666 -2014-03-17 12:00:00,0.0,1015.860667,74.64275,82.275,11.0225,1.9756666669999998,237.99079408333333 -2014-03-17 13:00:00,0.0,1015.512667,196.4316667,77.30833333,11.56083333,1.680083333,237.99128958333333 -2014-03-17 14:00:00,0.0,1015.416667,158.9058333,73.0275,12.20833333,3.0716666669999997,237.9910358 -2014-03-17 15:00:00,0.0,1015.277333,131.1041667,71.67083333,12.35666667,3.5964166669999997,237.9910358 -2014-03-17 16:00:00,0.0,1015.118667,72.42666667,68.86166667,12.32166667,2.889416667,237.9910358 -2014-03-17 17:00:00,0.0,1015.052333,36.83575,67.00083333,11.75333333,2.313333333,237.9910358 -2014-03-17 18:00:00,0.0,1015.293333,5.502175,69.49333333,11.36833333,1.079833333,237.99079408333333 -2014-03-17 19:00:00,0.0,1015.514333,0.0,76.08166667,10.6775,0.681416667,237.99079408333333 -2014-03-17 20:00:00,0.0,1015.702333,0.0,76.89666667,9.765,0.32725,237.99055236666666 -2014-03-17 21:00:00,0.0,1015.296,0.0,81.5825,8.6275,0.275833333,237.98982721666667 -2014-03-17 22:00:00,0.0,1015.123,0.0,87.21666667,8.231666667,0.09958333300000001,237.99006893333333 -2014-03-17 23:00:00,0.0,1014.9126669999999,0.0,89.63333333,7.785166667,0.197583333,237.9895855 -2014-03-18 00:00:00,0.0,1014.671333,0.0,92.15833333,7.511083332999999,0.070833333,237.9895855 -2014-03-18 01:00:00,0.0,1014.298,0.0,93.86666667,6.9165,0.14925,237.99006893333333 -2014-03-18 02:00:00,0.0,1014.033667,0.0,94.45,7.051666667,0.22166666699999998,237.99006893333333 -2014-03-18 03:00:00,0.0,1013.471333,0.0,93.20833333,7.1075,0.12741666699999998,237.9895855 -2014-03-18 04:00:00,0.0,1013.006667,0.0,95.93333333,6.858,0.04775,237.98933171666667 -2014-03-18 05:00:00,0.0,1012.5169999999999,0.0,95.81666667,7.178833332999999,0.271916667,237.9895855 -2014-03-18 06:00:00,0.0,1011.952333,2.1688333330000003,96.55833333,6.744333332999999,0.317416667,237.9895855 -2014-03-18 07:00:00,0.0,1011.852,32.91283333,92.85,6.774916667,0.13425,237.9895855 -2014-03-18 08:00:00,0.0,1011.958667,72.5725,83.525,8.589083333,0.282166667,237.9895855 -2014-03-18 09:00:00,0.0,1011.7439999999999,104.2416667,80.80166667,10.10666667,0.545,237.99055236666666 -2014-03-18 10:00:00,0.0,1011.5186669999999,101.9141667,78.61833333,11.12333333,0.891916667,237.98982721666667 -2014-03-18 11:00:00,0.0,1011.398333,112.0875,80.64,11.26916667,0.959833333,237.98982721666667 -2014-03-18 12:00:00,0.0,1010.654667,141.015,82.025,11.3225,1.269583333,237.98982721666667 -2014-03-18 13:00:00,0.0,1010.229667,187.0575,80.185,11.64166667,1.8021666669999998,237.99031065 -2014-03-18 14:00:00,0.0,1009.69,127.19,80.2125,11.17916667,2.1665,237.99031065 -2014-03-18 15:00:00,0.0,1009.420667,86.09533333,81.5425,10.6125,1.4830833330000002,237.99079408333333 -2014-03-18 16:00:00,0.0,1009.335667,50.77741667,83.53333333,9.8475,1.7730833330000002,237.99055236666666 -2014-03-18 17:00:00,0.0,1008.696333,32.52025,83.175,9.908333333,1.5826666669999998,237.99055236666666 -2014-03-18 18:00:00,0.0,1008.849667,6.408675,83.3,9.706666667,1.4509166669999998,237.99079408333333 -2014-03-18 19:00:00,0.0,1009.272667,0.0,83.58333333,9.704166667,1.5675833330000002,237.99079408333333 -2014-03-18 20:00:00,0.0,1009.466667,0.0,82.29666667,9.713333333,1.368166667,237.99006893333333 -2014-03-18 21:00:00,0.0,1009.945,0.0,77.03666667,9.74,1.97825,237.98982721666667 -2014-03-18 22:00:00,2.891617992,1010.502,0.0,75.79166667,9.6075,2.225916667,237.9895855 -2014-03-18 23:00:00,0.0,1010.454,0.0,75.65416667,9.426666667000001,2.4145,237.98982721666667 -2014-03-19 00:00:00,3.441360528,1010.683,0.0,83.61916667,8.853333333,2.74775,237.98933171666667 -2014-03-19 01:00:00,15.92489736,1011.559333,0.0,89.15833333,8.505666667,2.48925,237.98882415000003 -2014-03-19 02:00:00,99.9223272,1012.306,0.0,94.59166667,7.3040833329999995,2.536333333,237.99328361666664 -2014-03-19 03:00:00,0.0,1012.728667,0.0,96.60833333,7.2139999999999995,1.850333333,238.00147748333333 -2014-03-19 04:00:00,0.0,1013.688667,0.0,90.85833333,8.353333333,1.884166667,238.00046229999998 -2014-03-19 05:00:00,0.0,1014.582667,0.0,90.325,8.435833333,1.8585833330000001,237.9999547 -2014-03-19 06:00:00,0.0,1015.541,1.6366583330000002,93.08333333,8.233333333,1.4938333330000002,238.00096989999997 -2014-03-19 07:00:00,0.0,1016.476333,18.06291667,91.40833333,8.5925,1.7808333330000001,238.0012237 -2014-03-19 08:00:00,0.0,1017.511333,41.25391667,90.74166667,8.995833333,2.0845,238.0014775 -2014-03-19 09:00:00,0.0,1018.166667,43.40758333,89.175,9.295833333,2.272333333,238.0014775 -2014-03-19 10:00:00,6.239659632,1018.51,107.38,86.7,9.8925,2.321333333,238.00198506666666 -2014-03-19 11:00:00,0.0,1019.0060000000001,161.98641669999998,82.2175,10.68416667,2.530583333,238.0024926333333 -2014-03-19 12:00:00,0.0,1018.958333,257.8041667,74.82166667,12.1075,2.74825,238.00273433333334 -2014-03-19 13:00:00,0.0,1018.925,213.1266667,70.79666667,13.17583333,2.520916667,238.0032419 -2014-03-19 14:00:00,0.0,1018.777333,229.67583330000002,66.29416667,13.9525,2.098416667,238.00445040000002 -2014-03-19 15:00:00,0.0,1018.508667,196.7,63.345,14.7575,2.2835,238.003967 -2014-03-19 16:00:00,0.0,1018.331333,155.44666669999998,62.4975,14.97666667,2.4595833330000003,238.00420870000002 -2014-03-19 17:00:00,0.0,1018.096,49.16508333,62.75916667,14.375,1.9533333330000002,238.00445040000002 -2014-03-19 18:00:00,0.0,1018.522333,7.316108333,68.39166667,12.79,1.4718333330000002,238.00372530000004 -2014-03-19 19:00:00,0.0,1018.729333,0.0,71.135,11.82583333,1.569666667,238.0032419 -2014-03-19 20:00:00,0.0,1018.753667,0.0,72.99833333,11.6675,1.6720833330000002,238.00300019999995 -2014-03-19 21:00:00,0.0,1019.1560000000001,0.0,74.26083333,11.23083333,1.4955833330000001,238.0027464166666 -2014-03-19 22:00:00,0.0,1019.083667,0.0,75.49666667,10.3625,0.99875,238.00300019999995 -2014-03-19 23:00:00,0.0,1018.971,0.0,77.03583333,9.27,0.4785,238.00300019999995 -2014-03-20 00:00:00,0.0,1018.592,0.0,78.11416667,7.1855,0.25825,238.0027464166666 -2014-03-20 01:00:00,0.0,1018.446,0.0,79.5525,5.604333333,0.276666667,238.0024926333333 -2014-03-20 02:00:00,0.0,1018.077333,0.0,81.96416667,3.2976666669999997,0.268416667,238.0027464166666 -2014-03-20 03:00:00,0.0,1017.575667,0.0,91.40833333,1.9570833330000001,0.290166667,238.00173128333333 -2014-03-20 04:00:00,0.0,1017.131333,0.0,98.65,0.8773333329999999,0.24933333300000002,238.00147748333333 -2014-03-20 05:00:00,0.0,1017.091667,0.0,100.0,0.6213333329999999,0.265416667,238.0014775 -2014-03-20 06:00:00,0.0,1016.946,3.786825,100.0,0.590333333,0.435833333,238.00020849999999 -2014-03-20 07:00:00,0.0,1016.9623330000001,25.58266667,100.0,1.94825,0.340916667,237.99947129999998 -2014-03-20 08:00:00,0.0,1016.706667,89.70208333,99.53333333,5.901416667,0.581666667,237.999713 -2014-03-20 09:00:00,0.0,1016.4126669999999,246.7033333,87.65,9.340833332999999,1.63525,237.9992296 -2014-03-20 10:00:00,0.0,1016.044333,318.4008333,76.80333333,11.98,1.9658333330000002,237.9999547 -2014-03-20 11:00:00,0.0,1015.069667,355.3083333,69.19166667,14.11833333,2.554666667,237.99947129999998 -2014-03-20 12:00:00,0.0,1013.924,396.9058333,44.32583333,16.70083333,2.424666667,237.9999547 -2014-03-20 13:00:00,0.0,1012.950667,402.2375,40.41583333,17.9175,2.837333333,237.99971299999996 -2014-03-20 14:00:00,0.0,1011.892667,348.8566667,39.8025,18.9175,2.638,237.99947129999998 -2014-03-20 15:00:00,0.0,1010.678,266.1108333,38.98416667,19.5875,2.465416667,237.9989879 -2014-03-20 16:00:00,0.0,1009.097667,134.3825,38.65166667,18.41333333,2.289166667,237.99971299999996 -2014-03-20 17:00:00,0.0,1007.983667,45.41016667,38.0275,18.21666667,2.355416667,237.9992296 -2014-03-20 18:00:00,0.0,1007.560333,9.5424,44.60166667,15.86833333,2.30475,237.99898789999997 -2014-03-20 19:00:00,0.0,1007.573,0.0,49.61333333,15.35833333,1.874166667,237.9982507 -2014-03-20 20:00:00,0.0,1007.306667,0.0,62.20916667,13.55,2.561833333,237.99774309999998 -2014-03-20 21:00:00,0.0,1007.1289999999999,0.0,55.96666667,12.29166667,2.762833333,237.9977431 -2014-03-20 22:00:00,0.0,1006.952667,0.0,53.90333333,9.848333333,0.5545,237.9985045 -2014-03-20 23:00:00,0.0,1006.300333,0.0,59.06,12.25833333,0.979083333,237.9972355 -2014-03-21 00:00:00,0.0,1005.79,0.0,59.11833333,15.44666667,1.8519166669999998,237.9974893 -2014-03-21 01:00:00,0.0,1005.479333,0.0,56.1625,14.8525,1.3858333330000001,237.99748929999998 -2014-03-21 02:00:00,0.0,1005.1189999999999,0.0,57.195,14.62416667,1.7510833330000002,237.99698170000002 -2014-03-21 03:00:00,0.0,1004.7919999999999,0.0,59.90666667,14.3775,2.0204166669999997,237.9979969 -2014-03-21 04:00:00,0.0,1004.562667,0.0,59.7875,14.28333333,2.170416667,237.9972355 -2014-03-21 05:00:00,0.0,1004.410667,0.0,61.89833333,14.86,2.985416667,237.99698170000002 -2014-03-21 06:00:00,0.0,1004.266667,6.192316667,63.9925,14.60833333,3.217166667,237.99698170000002 -2014-03-21 07:00:00,0.0,1004.2539999999999,50.46358333,67.05583333,14.24833333,2.26825,237.99698170000002 -2014-03-21 08:00:00,0.0,1004.304333,111.10166670000001,65.37333333,14.9975,2.097833333,237.99698170000002 -2014-03-21 09:00:00,0.0,1004.0210000000001,207.025,63.3275,15.30083333,3.199583333,237.9972355 -2014-03-21 10:00:00,0.0,1004.045667,219.5491667,57.96916667,15.68,3.926416667,237.99698170000002 -2014-03-21 11:00:00,0.0,1003.9939999999999,303.3858333,56.31583333,16.39833333,3.929,237.99698170000002 -2014-03-21 12:00:00,0.0,1003.908333,181.0608333,51.76833333,16.84,3.679,237.99649829999998 -2014-03-21 13:00:00,0.0,1003.413,101.80508329999999,49.97333333,16.78166667,3.812083333,237.99625659999995 -2014-03-21 14:00:00,0.0,1003.778667,108.96316670000002,57.35333333,15.89583333,4.737416667,237.9955194 -2014-03-21 15:00:00,0.0,1003.989333,154.2741667,62.835,15.14583333,4.086833333,237.99502389999998 -2014-03-21 16:00:00,0.0,1004.437,85.337,66.865,14.2975,3.906166667,237.9942625 -2014-03-21 17:00:00,0.0,1005.288667,21.45383333,70.58166667,12.77166667,2.56425,237.9940087 -2014-03-21 18:00:00,0.0,1006.374333,11.12241667,74.4,10.79166667,1.6584166669999998,237.9930419 -2014-03-21 19:00:00,0.0,1006.8083330000001,0.019716667,73.3875,9.509166667,1.944083333,237.99230471666667 -2014-03-21 20:00:00,0.0,1006.658333,0.0,76.9525,8.599166667,1.130833333,237.99230471666667 -2014-03-21 21:00:00,0.0,1006.456667,0.0,85.29166667,7.972416667,0.2895,237.99179715000002 -2014-03-21 22:00:00,0.0,1006.163,0.0,90.95,7.4605,0.687916667,237.9923047166667 -2014-03-21 23:00:00,2.862228216,1005.221333,0.0,90.825,7.178833332999999,0.8515,237.99205093333333 -2014-03-22 00:00:00,5.298127704,1004.667333,0.0,94.075,6.984833332999999,1.129916667,237.99154336666666 -2014-03-22 01:00:00,2.742945,1003.665333,0.0,99.03333333,6.403916667000001,1.7149166669999998,237.99154336666666 -2014-03-22 02:00:00,0.0,1003.073333,0.0,100.0,6.47125,1.88975,237.9910358 -2014-03-22 03:00:00,0.0,1002.286333,0.0,100.0,4.711666667,0.327,237.9910358 -2014-03-22 04:00:00,0.0,1001.552333,0.0,99.33333333,5.462833333,0.66525,237.9910358 -2014-03-22 05:00:00,0.0,1000.990333,0.0,93.75833333,6.443916667000001,0.749916667,237.9910358 -2014-03-22 06:00:00,0.0,1000.354333,1.301475,95.00833333,6.826583332999999,1.254,237.99128958333333 -2014-03-22 07:00:00,13.61270016,1000.3646669999999,9.229616667,91.275,7.612166667,1.4039166669999998,237.99205093333333 -2014-03-22 08:00:00,0.0,1000.141667,37.29425,88.75833333,8.505,1.878916667,237.99128958333336 -2014-03-22 09:00:00,0.0,1000.447667,84.72333333,85.325,9.1425,2.0346666669999998,237.99154336666666 -2014-03-22 10:00:00,0.0,1000.504333,104.41666670000001,80.50583333,9.695833333,2.038916667,237.99179715000002 -2014-03-22 11:00:00,0.0,1000.516667,143.4941667,78.81583333,9.939166667,1.9855833330000001,237.99128958333333 -2014-03-22 12:00:00,3.053517648,999.9463332999999,166.6875,76.8,10.39083333,2.01925,237.99179715 -2014-03-22 13:00:00,0.0,999.3006667000001,199.5466667,76.17583333,10.74083333,2.4441666669999997,237.99205093333333 -2014-03-22 14:00:00,0.0,998.7146667000002,141.1608333,74.49166667,11.075,1.910833333,237.99154336666666 -2014-03-22 15:00:00,0.0,998.2133332999998,138.0983333,74.19916667,10.6825,2.9995,237.99154336666666 -2014-03-22 16:00:00,0.0,997.6296667000001,103.7225,76.43916667,10.555,3.409166667,237.99154336666666 -2014-03-22 17:00:00,33.55582654,997.666,41.70640833,85.9725,9.825833333,1.743166667,237.99128958333333 -2014-03-22 18:00:00,60.81299318,998.8363332999999,8.814225,92.73333333,7.218833332999999,1.7625,237.99178506666667 -2014-03-22 19:00:00,19.31217986,999.2603332999998,0.0,97.45833333,4.50225,0.935916667,237.9952777 -2014-03-22 20:00:00,0.0,999.6266667000001,0.0,99.56666667,3.793916667,0.504916667,237.99502389999998 -2014-03-22 21:00:00,0.0,1000.147667,0.0,99.525,3.46475,0.395083333,237.99477009999998 -2014-03-22 22:00:00,0.0,1000.206333,0.0,96.44166667,4.14675,0.865583333,237.99527769999997 -2014-03-22 23:00:00,0.0,1000.4580000000001,0.0,95.85833333,3.332083333,0.42741666700000003,237.99502389999998 -2014-03-23 00:00:00,0.0,1000.573,0.0,97.95,1.480166667,0.238416667,237.99502389999998 -2014-03-23 01:00:00,2.431692336,1000.446,0.0,99.89166667,0.82325,0.09825,237.99477009999998 -2014-03-23 02:00:00,0.0,1000.3646669999999,0.0,100.0,1.559916667,0.07666666700000001,237.99477009999998 -2014-03-23 03:00:00,0.0,1000.091667,0.0,100.0,2.19825,0.30425,237.99527769999997 -2014-03-23 04:00:00,0.0,1000.1833330000001,0.0,94.91666667,2.3776666669999997,0.234083333,237.99527769999997 -2014-03-23 05:00:00,0.0,1000.443667,0.0,96.85,2.81425,0.569916667,237.9955315 -2014-03-23 06:00:00,0.0,1000.3373330000001,3.115933333,100.0,1.323083333,0.1195,237.9955315 -2014-03-23 07:00:00,0.0,1000.758,23.19625,100.0,0.92875,0.2555,237.9957732 -2014-03-23 08:00:00,0.0,1001.247333,79.62266667,97.41666667,2.862083333,0.28475,237.9955315 -2014-03-23 09:00:00,0.0,1001.65,210.5133333,87.56666667,5.604,1.24825,237.99649829999998 -2014-03-23 10:00:00,0.0,1001.827,222.38416669999998,79.84083333,6.876333333,1.789833333,237.99673999999996 -2014-03-23 11:00:00,0.0,1001.791667,184.66,74.38416667,7.4625833329999995,1.9040833330000002,237.99698170000002 -2014-03-23 12:00:00,0.0,1001.756333,221.4683333,70.92666667,7.698666667,1.815,237.99674000000002 -2014-03-23 13:00:00,0.0,1001.6436669999999,271.8916667,67.92583333,8.341666667,1.98925,237.99649829999998 -2014-03-23 14:00:00,0.0,1001.673,178.01,66.73916667,8.860833332999999,2.281916667,237.99601489999998 -2014-03-23 15:00:00,0.0,1001.681,162.25416669999998,64.165,8.234083333,2.39025,237.9955194 -2014-03-23 16:00:00,0.0,1001.939333,97.93583333,61.6125,7.82125,2.0996666669999997,237.9952777 -2014-03-23 17:00:00,0.0,1002.206,47.229,65.025,7.1944166670000005,1.3574166669999999,237.9950239 -2014-03-23 18:00:00,0.0,1002.475,10.17560833,70.62333333,5.529833332999999,0.7120833329999999,237.9940087 -2014-03-23 19:00:00,0.0,1002.878667,0.039433333,72.17083333,3.889416667,0.11783333300000001,237.9940087 -2014-03-23 20:00:00,0.0,1003.069,0.0,77.61166667,3.875916667,0.136916667,237.9940087 -2014-03-23 21:00:00,0.0,1003.284667,0.0,85.76083333,2.23175,0.149083333,237.9940087 -2014-03-23 22:00:00,0.0,1004.001667,0.0,93.64166667,0.9035,0.29875,237.9925585 -2014-03-23 23:00:00,0.0,1004.071,0.0,98.15833333,0.139083333,0.36408333299999995,237.9925585 -2014-03-24 00:00:00,0.0,1004.293333,0.0,99.69166667,-0.5255833329999999,0.290083333,237.9925585 -2014-03-24 01:00:00,0.0,1004.672667,0.0,100.0,-1.033083333,0.2865,237.99205093333333 -2014-03-24 02:00:00,0.0,1004.704,0.0,100.0,-1.064166667,0.10475,237.99179715 -2014-03-24 03:00:00,0.0,1005.016333,0.0,100.0,-0.77375,0.470416667,237.99055236666666 -2014-03-24 04:00:00,0.0,1005.599667,0.0,100.0,-1.3535833330000002,0.328416667,237.99006893333333 -2014-03-24 05:00:00,0.0,1005.939333,0.0,100.0,-1.5419999999999998,0.271083333,237.99006893333333 -2014-03-24 06:00:00,0.0,1006.484667,4.162666667,100.0,-0.938083333,0.6004166670000001,237.98982721666667 -2014-03-24 07:00:00,0.0,1007.168333,32.15391667,100.0,0.255666667,0.250666667,237.98882415 -2014-03-24 08:00:00,2.4414978,1007.666333,115.9258333,97.70833333,2.737083333,1.023833333,237.98907793333333 -2014-03-24 09:00:00,0.0,1008.054,216.3525,91.34166667,3.77875,1.7954166669999998,237.98907793333333 -2014-03-24 10:00:00,0.0,1008.118667,321.8133333,83.39666667,6.6175,0.914,237.98933171666667 -2014-03-24 11:00:00,0.0,1007.979667,438.29916669999994,73.22,7.4345,1.246416667,237.98933171666667 -2014-03-24 12:00:00,0.0,1007.5939999999999,214.3925,67.865,8.336083333,1.75275,237.9893317166667 -2014-03-24 13:00:00,0.0,1007.325,227.94916669999998,72.02416667,7.40675,1.6105,237.9880628 -2014-03-24 14:00:00,0.0,1007.206333,247.4091667,64.73083333,8.340166667,1.4296666669999998,237.98857036666666 -2014-03-24 15:00:00,0.0,1006.902667,309.085,62.70083333,9.1775,0.897166667,237.98857036666666 -2014-03-24 16:00:00,0.0,1006.635,240.44416669999998,59.9025,8.060916667,2.43875,237.98857036666666 -2014-03-24 17:00:00,0.0,1006.7710000000001,92.55225,73.18166667,6.085916667,3.1350833330000003,237.98709593333334 -2014-03-24 18:00:00,0.0,1006.883,9.702291667,78.78833333,5.2725,0.833333333,237.98684215 -2014-03-24 19:00:00,0.0,1007.397667,0.05915,90.86666667,2.311666667,0.37925,237.98559736666667 -2014-03-24 20:00:00,0.0,1007.699667,0.0,94.675,2.26125,0.26775,237.98559736666667 -2014-03-24 21:00:00,0.0,1007.8939999999999,0.0,97.56666667,0.654083333,0.51275,237.98559736666667 -2014-03-24 22:00:00,0.0,1007.791667,0.0,98.65,-0.5721666670000001,0.124,237.98432839999998 -2014-03-24 23:00:00,0.0,1007.7810000000001,0.0,99.825,-1.199,0.28525,237.98432839999998 -2014-03-25 00:00:00,0.0,1007.748,0.0,100.0,-1.8273333330000001,0.122583333,237.98407459999999 -2014-03-25 01:00:00,0.0,1007.471333,0.0,100.0,-2.3615,0.08875,237.9838208 -2014-03-25 02:00:00,0.0,1006.923333,0.0,100.0,-2.885,0.11383333300000001,237.983567 -2014-03-25 03:00:00,0.0,1006.762667,0.0,100.0,-3.310166667,0.10875,237.983567 -2014-03-25 04:00:00,0.0,1006.720667,0.0,100.0,-3.572333333,0.134,237.9838208 -2014-03-25 05:00:00,0.0,1006.569,0.0,100.0,-3.992833333,0.12733333300000002,237.983567 -2014-03-25 06:00:00,0.0,1006.435333,6.075825,100.0,-4.150166667,0.1105,237.983567 -2014-03-25 07:00:00,0.0,1006.456333,34.20608333,100.0,-2.363083333,0.0058333330000000004,237.98332529999996 -2014-03-25 08:00:00,2.3865511440000002,1006.325,80.07708333,99.075,0.586916667,0.061833333,237.983567 -2014-03-25 09:00:00,0.0,1006.333333,258.2941667,90.25,3.452083333,0.571583333,237.98407459999999 -2014-03-25 10:00:00,0.0,1006.079667,333.8825,83.3975,5.265416667,0.990833333,237.9838208 -2014-03-25 11:00:00,0.0,1005.3839999999999,404.9675,73.33666667,7.9285,1.1461666670000001,237.9838208 -2014-03-25 12:00:00,0.0,1004.848333,310.205,63.85583333,9.465833332999999,1.34,237.9838208 -2014-03-25 13:00:00,0.0,1004.4689999999999,143.83833330000002,63.59833333,9.225833332999999,1.089583333,237.9828419 -2014-03-25 14:00:00,0.0,1004.454,345.7183333,63.50416667,7.6815,3.4835833330000003,237.9828419 -2014-03-25 15:00:00,0.0,1004.108667,148.48166669999998,59.33416667,8.6225,0.99575,237.9828419 -2014-03-25 16:00:00,0.0,1004.008333,102.5383333,59.50416667,9.168333333,1.060166667,237.9826002 -2014-03-25 17:00:00,0.0,1004.191333,52.94508333,63.9825,8.2875,1.3486666669999998,237.9823585 -2014-03-25 18:00:00,0.0,1004.581,17.41296667,67.565,7.556,1.6875,237.9823585 -2014-03-25 19:00:00,0.0,1005.080667,0.078866667,78.56333333,5.649666667000001,0.47475,237.9821168 -2014-03-25 20:00:00,0.0,1005.658,0.0,92.34166667,3.70225,0.19191666699999999,237.98084788333333 -2014-03-25 21:00:00,0.0,1005.797667,0.0,96.24166667,2.193833333,0.425,237.98084788333335 -2014-03-25 22:00:00,0.0,1006.046,0.0,98.15833333,-0.07883333299999999,0.335166667,237.98084788333333 -2014-03-25 23:00:00,0.0,1006.079,0.0,99.43333333,-1.057916667,0.201833333,237.9805941 -2014-03-26 00:00:00,0.0,1006.127,0.0,99.95,-1.593666667,0.275166667,237.9805941 -2014-03-26 01:00:00,0.0,1006.112333,0.0,100.0,-1.97025,0.14075,237.9805941 -2014-03-26 02:00:00,0.0,1006.210667,0.0,100.0,-2.660083333,0.18941666699999998,237.97986895 -2014-03-26 03:00:00,0.0,1006.189333,0.0,100.0,-3.1775,0.094083333,237.98035238333333 -2014-03-26 04:00:00,0.0,1006.447667,0.0,100.0,-3.53625,0.0795,237.97938551666667 -2014-03-26 05:00:00,0.0,1006.739333,0.019716667,100.0,-3.883916667,0.140833333,237.9791438 -2014-03-26 06:00:00,0.0,1007.195333,7.555508333,100.0,-3.74325,0.19325,237.97938551666667 -2014-03-26 07:00:00,0.0,1007.878667,30.89158333,100.0,-2.266166667,0.0415,237.97962723333333 -2014-03-26 08:00:00,0.0,1008.607667,53.06758333,100.0,-0.7995,0.041166667000000004,237.97863623333333 -2014-03-26 09:00:00,2.418688344,1009.016667,180.2791667,95.05,1.9311666669999998,0.275666667,237.97938551666667 -2014-03-26 10:00:00,0.0,1009.081333,337.5458333,80.28,6.101583333,0.756583333,237.9791438 -2014-03-26 11:00:00,0.0,1008.952,382.8883333,66.28666667,9.036666667,0.841333333,237.9791438 -2014-03-26 12:00:00,0.0,1008.8939999999999,332.09166669999996,57.74833333,10.10166667,1.165166667,237.97962723333333 -2014-03-26 13:00:00,0.0,1008.577333,206.6866667,54.53583333,9.933333333,2.3351666669999998,237.97938551666667 -2014-03-26 14:00:00,0.0,1008.362667,246.2308333,58.26166667,9.1375,2.5860000000000003,237.9791438 -2014-03-26 15:00:00,0.0,1008.089667,122.80333329999999,54.71833333,9.450833333,1.0675,237.97787488333339 -2014-03-26 16:00:00,0.0,1008.102,145.53408330000002,57.75083333,9.266666667,1.652333333,237.97838245000003 -2014-03-26 17:00:00,0.0,1008.158,51.06908333,74.9625,8.529333333,0.93925,237.97762110000005 -2014-03-26 18:00:00,0.0,1008.585333,14.060375,84.6,7.369083333,0.73925,237.97762110000005 -2014-03-26 19:00:00,0.0,1008.914333,0.078866667,94.24166667,5.6375,0.59525,237.97762110000005 -2014-03-26 20:00:00,0.0,1009.1289999999999,0.0,96.39166667,4.633666667,0.558083333,237.97737938333333 -2014-03-26 21:00:00,0.0,1009.243667,0.0,94.375,5.567416667000001,0.532083333,237.97762110000005 -2014-03-26 22:00:00,0.0,1009.150333,0.0,94.23333333,6.34225,1.187416667,237.97737938333339 -2014-03-26 23:00:00,0.0,1008.75,0.0,98.10833333,6.269666667,1.176083333,237.97762110000005 -2014-03-27 00:00:00,0.0,1008.777333,0.0,99.83333333,4.237083333,0.0805,237.97689595 -2014-03-27 01:00:00,0.0,1008.4960000000001,0.0,93.325,3.548,0.337083333,237.97665423333333 -2014-03-27 02:00:00,0.0,1008.360667,0.0,94.95833333,1.5335,0.7445,237.97665423333333 -2014-03-27 03:00:00,0.0,1007.962667,0.0,99.03333333,1.4780000000000002,0.655,237.97713766666672 -2014-03-27 04:00:00,0.0,1007.875,0.0,100.0,0.5955,0.578833333,237.9759170166667 -2014-03-27 05:00:00,0.0,1007.9416669999999,0.019716667,100.0,-0.304666667,0.597333333,237.97591701666667 -2014-03-27 06:00:00,0.0,1008.255667,7.792225,99.49166667,-0.41216666700000004,0.46166666700000003,237.9761708 -2014-03-27 07:00:00,0.0,1008.604333,41.16991667,95.01666667,2.226083333,0.9885,237.9761708 -2014-03-27 08:00:00,0.0,1008.556,79.75333333,84.98333333,5.56125,1.874166667,237.97665423333333 -2014-03-27 09:00:00,0.0,1008.610667,259.5775,74.85916667,8.024416667,2.573666667,237.9766542333334 -2014-03-27 10:00:00,0.0,1008.310667,336.1341667,64.80916667,10.03583333,2.870166667,237.97762110000005 -2014-03-27 11:00:00,0.0,1007.923333,369.5825,62.3,11.10333333,3.0339166669999997,237.97737938333339 -2014-03-27 12:00:00,0.0,1007.444,388.96666669999996,58.6,12.14833333,3.797916667,237.97542153333336 -2014-03-27 13:00:00,0.0,1007.081667,339.10333330000003,54.185,13.175,3.117666667,237.97689595 -2014-03-27 14:00:00,0.0,1006.677333,322.84583330000004,54.32333333,13.67,3.1705,237.97665423333333 -2014-03-27 15:00:00,0.0,1006.556333,224.72916669999998,52.5925,14.0625,3.835333333,237.97641251666667 -2014-03-27 16:00:00,0.0,1006.475,157.79633330000001,53.06416667,13.6875,3.853916667,237.97665423333333 -2014-03-27 17:00:00,0.0,1006.368667,50.05291667,56.535,12.64,2.821333333,237.9761708 -2014-03-27 18:00:00,0.0,1006.718333,14.88870833,61.25,11.46583333,2.898666667,237.97566323333334 -2014-03-27 19:00:00,0.0,1007.291,0.1183,73.61916667,9.487666667000001,1.7209166669999998,237.97540945 -2014-03-27 20:00:00,0.0,1007.966333,0.0,88.75,6.318083333,0.37108333299999996,237.9746481 -2014-03-27 21:00:00,0.0,1008.4639999999999,0.0,94.21666667,7.878666667,1.282666667,237.9741647 -2014-03-27 22:00:00,0.0,1008.922667,0.0,96.61666667,5.542583333,0.6385,237.97319790000003 -2014-03-27 23:00:00,0.0,1009.1436669999999,0.0,97.95833333,3.4565,0.545666667,237.97368130000004 -2014-03-28 00:00:00,0.0,1009.3,0.0,99.25833333,3.690416667,0.6509999999999999,237.973923 -2014-03-28 01:00:00,0.0,1009.46,0.0,93.60833333,4.40425,0.606083333,237.97416470000005 -2014-03-28 02:00:00,0.0,1009.9623330000001,0.0,91.975,4.516666667,0.4295,237.97317370000005 -2014-03-28 03:00:00,0.0,1010.2560000000001,0.0,92.55833333,4.148416667,0.286583333,237.97192890000005 -2014-03-28 04:00:00,0.0,1010.464333,0.0,97.8,2.933083333,0.5076666670000001,237.97192890000005 -2014-03-28 05:00:00,0.0,1010.899667,0.039433333,99.30833333,1.5523333330000002,0.540333333,237.97218270000005 -2014-03-28 06:00:00,0.0,1011.47,7.614425,99.96666667,1.068416667,0.332,237.97319790000003 -2014-03-28 07:00:00,0.0,1012.139333,31.04966667,95.725,4.604,1.597833333,237.97192890000005 -2014-03-28 08:00:00,0.0,1012.720333,78.57383333,81.48333333,7.057916667000001,2.7073333330000002,237.97167510000006 -2014-03-28 09:00:00,0.0,1013.185,257.09833330000004,73.965,8.904166667,2.69675,237.97167510000006 -2014-03-28 10:00:00,0.0,1013.35,345.6775,67.36083333,11.47916667,2.6848333330000003,237.97192890000005 -2014-03-28 11:00:00,0.0,1013.073333,392.595,59.42333333,14.205,2.9955,237.97269030000004 -2014-03-28 12:00:00,0.0,1012.891667,409.325,44.96666667,16.16,2.621416667,237.97243650000004 -2014-03-28 13:00:00,0.0,1012.752333,398.9533333,43.085,16.31333333,2.819416667,237.97269030000004 -2014-03-28 14:00:00,0.0,1012.512667,315.5133333,45.98833333,16.37916667,3.351583333,237.97269030000004 -2014-03-28 15:00:00,0.0,1012.0419999999999,275.8583333,43.1625,16.36333333,3.074416667,237.97319790000003 -2014-03-28 16:00:00,0.0,1012.056,130.6083333,51.055,14.56416667,3.9900833330000003,237.97192890000005 -2014-03-28 17:00:00,0.0,1012.485,66.62366667,57.93166667,12.85583333,3.6135833330000002,237.97167510000006 -2014-03-28 18:00:00,0.0,1013.174333,20.508425,61.47333333,11.08166667,3.557833333,237.97022489999998 -2014-03-28 19:00:00,0.0,1014.128333,0.13801666699999998,71.87916667,9.210833333,2.794083333,237.96997109999995 -2014-03-28 20:00:00,0.0,1014.76,0.0,86.89166667,7.23175,1.162833333,237.96920969999996 -2014-03-28 21:00:00,0.0,1015.247667,0.0,88.28333333,6.321833333,1.0280833329999999,237.96895589999997 -2014-03-28 22:00:00,0.0,1015.639333,0.0,95.03333333,3.826916667,0.535666667,237.96870209999997 -2014-03-28 23:00:00,0.0,1015.889333,0.0,98.04166667,3.265166667,0.46875,237.96870209999997 -2014-03-29 00:00:00,0.0,1016.141667,0.0,99.00833333,1.6580833330000002,0.42325,237.96870209999997 -2014-03-29 01:00:00,0.0,1015.964667,0.0,100.0,0.581,0.29583333300000003,237.96819453333333 -2014-03-29 02:00:00,0.0,1016.0103330000001,0.0,100.0,0.236666667,0.256333333,237.96743318333336 -2014-03-29 03:00:00,0.0,1016.0583330000001,0.0,100.0,-0.009666667,0.278333333,237.96669596666666 -2014-03-29 04:00:00,0.0,1016.048,0.0,100.0,-0.5740833329999999,0.284,237.96669596666666 -2014-03-29 05:00:00,0.0,1016.145333,0.05915,100.0,-1.05375,0.06975,237.96597081666664 -2014-03-29 06:00:00,0.0,1016.589333,11.086425,100.0,-1.14925,0.19375,237.96597081666664 -2014-03-29 07:00:00,0.0,1017.203667,42.17441667,100.0,1.3195,0.12925,237.9654753166666 -2014-03-29 08:00:00,0.0,1017.597667,85.295,98.00833333,5.022,1.618916667,237.9652215333333 -2014-03-29 09:00:00,0.0,1017.569,249.83,87.00833333,7.820333333,2.162666667,237.96572909999995 -2014-03-29 10:00:00,0.0,1017.208667,348.9208333,74.87666667,10.43916667,1.54175,237.96572909999995 -2014-03-29 11:00:00,0.0,1016.756667,403.6841667,65.69583333,14.23333333,0.8605,237.96597081666664 -2014-03-29 12:00:00,0.0,1016.2439999999999,430.98416669999995,52.075,16.9725,2.45375,237.96572909999995 -2014-03-29 13:00:00,0.0,1015.867333,420.26833330000005,42.17666667,18.32166667,2.187083333,237.96572909999995 -2014-03-29 14:00:00,0.0,1015.192,371.16333330000003,38.1025,19.1075,1.834416667,237.96669596666666 -2014-03-29 15:00:00,0.0,1014.440333,255.7158333,36.39916667,19.14583333,1.8245,237.96572909999995 -2014-03-29 16:00:00,0.0,1013.763,177.1875,38.545,18.7975,1.7204166669999998,237.96572909999995 -2014-03-29 17:00:00,0.0,1013.414667,48.12791667,37.575,18.3,1.56025,237.96572909999995 -2014-03-29 18:00:00,0.0,1013.564333,20.3882,51.37,14.16916667,0.9740000000000001,237.9652215333333 -2014-03-29 19:00:00,0.0,1013.658333,0.216883333,77.7525,8.125166667,0.404583333,237.96396470000002 -2014-03-29 20:00:00,0.0,1013.764667,0.0,86.10833333,6.998666667,0.586583333,237.9642064 -2014-03-29 21:00:00,0.0,1013.924667,0.0,89.55,6.168083332999999,0.47433333299999997,237.96396470000002 -2014-03-29 22:00:00,0.0,1013.837667,0.0,94.58333333,4.417083333,0.5116666670000001,237.9639647 -2014-03-29 23:00:00,0.0,1013.798,0.0,97.40833333,3.3658333330000003,0.39541666700000005,237.96372300000004 -2014-03-30 00:00:00,0.0,1013.477333,0.0,99.13333333,2.3995833330000003,0.3795,237.963723 -2014-03-30 01:00:00,0.0,1013.194,0.0,99.88333333,1.71175,0.34033333299999996,237.9642064 -2014-03-30 02:00:00,0.0,1013.083333,0.0,100.0,1.0424166670000001,0.298583333,237.9639647 -2014-03-30 03:00:00,0.0,1013.0189999999999,0.0,100.0,0.674416667,0.241666667,237.96396470000002 -2014-03-30 04:00:00,0.0,1012.783333,0.0,100.0,0.047166667,0.174916667,237.9624903 -2014-03-30 05:00:00,0.0,1012.868667,0.157791667,100.0,-0.39083333299999995,0.26458333300000003,237.96250240000003 -2014-03-30 06:00:00,0.0,1013.151667,15.97930833,100.0,-0.2105,0.16275,237.96250240000003 -2014-03-30 07:00:00,0.0,1013.318667,48.80691667,100.0,2.821333333,0.068083333,237.96148720000005 -2014-03-30 08:00:00,0.0,1013.302333,96.78666667,96.29166667,7.263,0.26725,237.96275620000003 -2014-03-30 09:00:00,0.0,1013.366667,235.83,81.95916667,10.5525,0.827916667,237.96275620000003 -2014-03-30 10:00:00,0.0,1013.256333,317.3041667,73.00083333,12.65833333,1.0075,237.96323960000004 -2014-03-30 11:00:00,0.0,1012.794333,377.9825,62.50416667,16.495,0.770166667,237.9634813 -2014-03-30 12:00:00,0.0,1012.385667,410.2291667,44.2025,18.28416667,1.161916667,237.963723 -2014-03-30 13:00:00,0.0,1011.988,403.4625,44.75916667,19.41416667,1.43825,237.9639647 -2014-03-30 14:00:00,0.0,1011.254667,363.6908333,41.87666667,20.06083333,1.079916667,237.963723 -2014-03-30 15:00:00,0.0,1010.846,241.48833330000002,39.99416667,20.17833333,0.7184166670000001,237.9642064 -2014-03-30 16:00:00,0.0,1010.4689999999999,109.88833329999999,44.11583333,19.38916667,0.486833333,237.9639647 -2014-03-30 17:00:00,0.0,1010.3563330000001,55.72,54.58416667,17.18083333,0.238083333,237.9634813 -2014-03-30 18:00:00,0.0,1010.293667,13.29014167,75.25583333,12.43666667,0.324666667,237.96224860000004 -2014-03-30 19:00:00,0.0,1010.6060000000001,0.1183,81.20333333,10.04,0.5063333329999999,237.96123340000005 -2014-03-30 20:00:00,0.0,1010.820667,0.0,84.425,8.201166667,0.212166667,237.96148720000005 -2014-03-30 21:00:00,0.0,1010.9019999999999,0.0,88.63333333,6.222,0.398416667,237.96123340000005 -2014-03-30 22:00:00,0.0,1010.939667,0.0,90.25,5.689,0.297166667,237.96123340000005 -2014-03-30 23:00:00,0.0,1010.883333,0.0,90.55833333,5.118833333,0.1605,237.96123340000005 -2014-03-31 00:00:00,0.0,1010.835667,0.0,91.75,4.604083333,0.11775,237.96123340000005 -2014-03-31 01:00:00,0.0,1010.377333,0.0,94.09166667,4.032666667,0.26425,237.96148720000005 -2014-03-31 02:00:00,0.0,1010.087667,0.0,95.25833333,3.5964166669999997,0.14775,237.96123340000005 -2014-03-31 03:00:00,0.0,1009.9813330000001,0.0,95.925,3.614416667,0.183166667,237.96123340000005 -2014-03-31 04:00:00,0.0,1010.012667,0.0,97.13333333,3.070083333,0.1535,237.96123340000005 -2014-03-31 05:00:00,0.0,1009.931,0.039433333,98.21666667,2.633083333,0.229583333,237.96050830000001 -2014-03-31 06:00:00,0.0,1010.095667,6.469516667000001,98.38333333,2.784833333,0.061333333,237.96075 -2014-03-31 07:00:00,0.0,1010.4830000000001,42.71691667,96.61666667,4.010833333,0.048,237.96050830000001 -2014-03-31 08:00:00,0.0,1010.737333,95.375,88.81666667,6.3865,0.149583333,237.9605083 -2014-03-31 09:00:00,0.0,1011.124667,146.8425,75.88083333,8.95475,0.34700000000000003,237.96002489999998 -2014-03-31 10:00:00,0.0,1011.377,168.1633333,67.95583333,11.55583333,0.166166667,237.96050830000001 -2014-03-31 11:00:00,0.0,1011.375,213.3483333,64.91583333,14.01083333,0.342083333,237.96123340000005 -2014-03-31 12:00:00,0.0,1011.131667,258.8075,60.34416667,15.49666667,0.72,237.96099170000002 -2014-03-31 13:00:00,0.0,1010.652333,252.4841667,53.99833333,17.3925,0.441166667,237.96099170000005 -2014-03-31 14:00:00,0.0,1010.2610000000001,256.8475,50.0975,18.03833333,0.625083333,237.96123340000005 -2014-03-31 15:00:00,0.0,1009.746333,234.4183333,46.82083333,18.6275,0.671583333,237.96123340000003 -2014-03-31 16:00:00,0.0,1009.235667,208.06916669999998,37.53416667,19.03666667,1.123166667,237.95959566666667 -2014-03-31 17:00:00,0.0,1008.717667,83.37641667,38.99083333,18.3325,1.1675,237.96028075 -2014-03-31 18:00:00,0.0,1008.7660000000001,18.14248333,60.8175,14.08333333,0.592916667,237.9585764 -2014-03-31 19:00:00,0.0,1008.9573330000001,0.197166667,79.985,8.946333333,0.458166667,237.95822550000003 -2014-03-31 20:00:00,0.0,1009.125,0.0,85.225,7.399,0.35316666700000005,237.9578746 -2014-03-31 21:00:00,0.0,1009.041667,0.0,88.11666667,5.971416667000001,0.2855,237.95822550000003 -2014-03-31 22:00:00,0.0,1009.158333,0.0,89.55833333,5.3739166670000005,0.47675,237.9585764 -2014-03-31 23:00:00,0.0,1009.2,0.0,90.175,4.5896666669999995,0.173916667,237.95717280000005 -2014-01-04 00:00:00,0.0,1009.266667,0.0,91.475,4.9135,0.11641666699999999,238.01092933333334 -2014-01-04 01:00:00,0.0,1008.96,0.0,93.75,4.849916667,0.09925,238.011556 -2014-01-04 02:00:00,0.0,1008.6010000000001,0.0,96.475,4.251416667,0.10258333300000001,238.01030266666666 -2014-01-04 03:00:00,0.0,1008.275667,0.0,97.88333333,3.765166667,0.24958333300000002,238.01092933333334 -2014-01-04 04:00:00,0.0,1008.416,0.0,99.025,3.987166667,0.163583333,238.01092933333334 -2014-01-04 05:00:00,0.0,1008.2760000000001,0.09858333300000001,98.81666667,4.356166667,0.073333333,238.00998933333332 -2014-01-04 06:00:00,0.0,1008.157333,11.04495,99.66666667,3.70225,0.08716666699999999,238.00967599999998 -2014-01-04 07:00:00,0.0,1008.574,44.3905,99.53333333,4.744,0.27075,238.00934699999996 -2014-01-04 08:00:00,0.0,1008.641667,114.40916670000001,85.16416667,9.694166667000001,0.13375,238.00934699999996 -2014-01-04 09:00:00,0.0,1008.6089999999999,233.24,72.90666667,12.45916667,0.541583333,238.00901799999997 -2014-01-04 10:00:00,0.0,1008.4760000000001,327.97333330000004,69.27083333,14.81833333,1.0665,238.00934700000002 -2014-01-04 11:00:00,0.0,1008.150333,382.1358333,60.725,17.695,1.090666667,238.00967599999998 -2014-01-04 12:00:00,0.0,1007.586,342.5391667,55.535,19.56166667,1.118083333,238.01030266666666 -2014-01-04 13:00:00,0.0,1006.977,288.75,46.43833333,20.03416667,1.678916667,238.01124266666667 -2014-01-04 14:00:00,0.0,1006.311,303.0183333,39.81416667,20.78,1.55725,238.01124266666667 -2014-01-04 15:00:00,0.0,1005.701333,250.0458333,36.46,20.60916667,1.873583333,238.01124266666667 -2014-01-04 16:00:00,0.0,1005.268,164.535,34.94083333,20.53083333,1.91525,238.011556 -2014-01-04 17:00:00,0.0,1005.250333,72.3975,38.3575,19.01666667,1.650916667,238.01092933333334 -2014-01-04 18:00:00,0.0,1005.124667,19.578825,60.295,14.87333333,0.504833333,238.01092933333334 -2014-01-04 19:00:00,0.0,1005.2739999999999,0.2366,74.41916667,11.94416667,0.42575,238.010616 -2014-01-04 20:00:00,0.0,1005.366667,0.0,78.93666667,10.8575,0.15658333300000002,238.00998933333332 -2014-01-04 21:00:00,0.0,1005.35,0.0,84.36666667,8.86,0.297,238.011556 -2014-01-04 22:00:00,0.0,1005.457667,0.0,88.78333333,7.34225,0.4345,238.01030266666666 -2014-01-04 23:00:00,0.0,1005.492333,0.0,91.00833333,6.91175,0.256583333,238.010616 -2014-02-04 00:00:00,0.0,1005.333667,0.0,92.5,6.010166667000001,0.304416667,238.06082839999996 -2014-02-04 01:00:00,0.0,1005.3083330000001,0.0,93.80833333,5.2866666669999995,0.26325,238.0603208 -2014-02-04 02:00:00,0.0,1005.275667,0.0,95.38333333,4.19675,0.264,238.06006699999998 -2014-02-04 03:00:00,0.0,1005.050333,0.0,96.38333333,3.4315833330000003,0.238916667,238.0598132 -2014-02-04 04:00:00,0.0,1004.967333,0.0,97.24166667,2.600333333,0.221,238.05955940000004 -2014-02-04 05:00:00,0.0,1004.9,0.27615,99.425,2.04075,0.21325,238.05883429999997 -2014-02-04 06:00:00,0.0,1005.089667,12.62333333,99.975,1.803166667,0.19375,238.05883430000003 -2014-02-04 07:00:00,0.0,1005.209333,43.76925,98.85,5.500916667,0.22091666699999998,238.0583388 -2014-02-04 08:00:00,0.0,1005.025333,101.9841667,85.825,9.4475,0.664083333,238.05810919999996 -2014-02-04 09:00:00,0.0,1005.083333,232.96,69.63,12.61666667,0.924666667,238.057094 -2014-02-04 10:00:00,0.0,1004.8839999999999,334.5183333,66.7075,15.19166667,1.141833333,238.0568402 -2014-02-04 11:00:00,0.0,1004.319333,348.7458333,60.6,17.64083333,1.165583333,238.057094 -2014-02-04 12:00:00,0.0,1003.7180000000001,232.5225,59.85583333,18.8925,1.202,238.0578554 -2014-02-04 13:00:00,0.0,1003.293333,275.46166669999997,57.6175,19.4875,0.9285,238.057094 -2014-02-04 14:00:00,0.0,1002.370667,285.2966667,49.50833333,20.35916667,1.040583333,238.0576016 -2014-02-04 15:00:00,0.0,1001.71,131.0925,45.0875,21.22416667,1.7381666669999998,238.0568402 -2014-02-04 16:00:00,0.0,1001.168667,145.3783333,45.89166667,20.39833333,1.7345,238.05659849999998 -2014-02-04 17:00:00,0.0,1000.842333,64.76633333,49.52,19.4875,1.59225,238.05658640000001 -2014-02-04 18:00:00,0.0,1000.75,21.43300833,62.03583333,16.95916667,1.2348333329999999,238.05634470000004 -2014-02-04 19:00:00,0.0,1000.881667,0.256316667,81.54666667,11.82416667,0.48758333299999995,238.05586129999998 -2014-02-04 20:00:00,0.0,1000.958333,0.0,87.675,9.416666667000001,0.317916667,238.05513619999996 -2014-02-04 21:00:00,0.0,1000.875667,0.0,92.29166667,7.999333332999999,0.283916667,238.05561959999997 -2014-02-04 22:00:00,0.0,1000.733667,0.0,94.15,7.322666667000001,0.257666667,238.05537789999997 -2014-02-04 23:00:00,0.0,1000.642333,0.0,95.35833333,6.477666667,0.1835,238.05512409999997 -2014-03-04 00:00:00,0.0,1000.492,0.0,97.375,5.86275,0.35333333299999997,238.0223609 -2014-03-04 01:00:00,0.0,1000.259333,0.0,98.66666667,5.309583333,0.367333333,238.0221071 -2014-03-04 02:00:00,0.0,1000.150667,0.0,99.69166667,5.003583333,0.228333333,238.0223609 -2014-03-04 03:00:00,0.0,999.9506667000002,0.0,100.0,5.200333333000001,0.169916667,238.0215995 -2014-03-04 04:00:00,0.0,999.717,0.0,100.0,5.4916666670000005,0.178416667,238.0208381 -2014-03-04 05:00:00,0.0,999.55,0.216941667,100.0,5.648833333,0.1345,238.0208381 -2014-03-04 06:00:00,0.0,999.9063332999999,19.54516667,100.0,4.6819999999999995,0.271416667,238.0208381 -2014-03-04 07:00:00,0.0,1000.548333,69.16933333,98.83333333,7.54975,0.202166667,238.02059640000002 -2014-03-04 08:00:00,0.0,1000.8489999999999,142.9691667,82.10083333,11.38583333,0.629166667,238.0198713 -2014-03-04 09:00:00,0.0,1001.075667,203.6883333,75.00583333,13.49416667,0.69975,238.02059640000002 -2014-03-04 10:00:00,0.0,1001.074333,211.2833333,70.49833333,15.95583333,0.7506666670000001,238.02059640000002 -2014-03-04 11:00:00,0.0,1001.0583330000001,202.06666669999998,66.34416667,17.5875,0.868166667,238.01962960000003 -2014-03-04 12:00:00,0.0,1000.801,234.4358333,62.39666667,17.83,1.696833333,238.01938790000005 -2014-03-04 13:00:00,0.0,1000.6089999999999,319.9058333,57.38083333,19.8625,1.4215,238.01962960000003 -2014-03-04 14:00:00,0.0,1000.193667,267.0733333,51.50166667,21.3025,1.538666667,238.01987130000006 -2014-03-04 15:00:00,0.0,999.925,179.2933333,50.97166667,21.59,1.171833333,238.0198713 -2014-03-04 16:00:00,0.0,999.8760000000001,100.8233333,48.9475,20.71083333,1.046833333,238.01938790000005 -2014-03-04 17:00:00,0.0,1000.040667,69.40266667,50.89666667,19.35333333,1.58325,238.01837270000001 -2014-03-04 18:00:00,0.0,1000.056667,14.2163,73.2075,16.5225,0.8171666670000001,238.0181189 -2014-03-04 19:00:00,0.0,1000.300667,0.276033333,84.44166667,12.65333333,0.300583333,238.0173817 -2014-03-04 20:00:00,0.0,1000.606667,0.0,87.9,10.47083333,0.391,238.0164149 -2014-03-04 21:00:00,0.0,1000.932,0.0,91.25,9.785,0.337916667,238.0164149 -2014-03-04 22:00:00,0.0,1001.2660000000001,0.0,90.49166667,11.13166667,0.259,238.0164149 -2014-03-04 23:00:00,0.0,1001.432667,0.0,91.825,10.8925,0.11199999999999999,238.0161611 -2014-04-04 00:00:00,0.0,1001.483333,0.0,92.50833333,10.85916667,0.345916667,237.9513078 -2014-04-04 01:00:00,0.0,1001.658333,0.0,91.50833333,10.9725,0.40916666700000004,237.95028853333335 -2014-04-04 02:00:00,0.0,1001.583333,0.0,93.65,10.65916667,0.09916666699999999,237.95062271666666 -2014-04-04 03:00:00,0.0,1001.675,0.0,91.13333333,10.33416667,0.108583333,237.95062271666666 -2014-04-04 04:00:00,0.0,1001.641667,0.0,94.49166667,9.8825,0.277333333,237.94995435 -2014-04-04 05:00:00,0.0,1001.690667,0.276033333,96.425,8.9525,0.167416667,237.94995435 -2014-04-04 06:00:00,0.0,1002.0319999999999,13.82319167,98.3,7.753083332999999,0.22775,237.94928598333334 -2014-04-04 07:00:00,0.0,1002.623333,56.45091667,96.55833333,9.003333332999999,0.224583333,237.94995435 -2014-04-04 08:00:00,0.0,1002.765667,111.8075,85.32583333,12.3475,0.45041666700000005,237.94962016666668 -2014-04-04 09:00:00,0.0,1003.1833330000001,167.5333333,71.62166667,14.46333333,0.45,237.95095690000002 -2014-04-04 10:00:00,0.0,1003.282667,206.9083333,62.26666667,15.9025,0.94175,237.9489518 -2014-04-04 11:00:00,0.0,1003.365667,211.8316667,63.58083333,17.15916667,1.088166667,237.94962016666668 -2014-04-04 12:00:00,0.0,1003.3510000000001,256.2291667,57.29416667,18.28166667,1.8189166669999999,237.94928598333334 -2014-04-04 13:00:00,0.0,1003.035,238.98,54.91083333,19.14833333,2.0743333330000002,237.9489518 -2014-04-04 14:00:00,0.0,1002.783333,195.4341667,54.8975,19.46833333,2.58075,237.9489518 -2014-04-04 15:00:00,0.0,1002.567333,148.995,57.34666667,19.4475,3.223583333,237.9489518 -2014-04-04 16:00:00,0.0,1002.5160000000001,96.53583333,58.27666667,18.725,3.0099166669999997,237.94825 -2014-04-04 17:00:00,0.0,1002.799333,50.90108333,64.29833333,17.8825,2.23325,237.94684640000006 -2014-04-04 18:00:00,0.0,1003.190333,13.46881667,71.09916667,16.93583333,1.85975,237.94719730000006 -2014-04-04 19:00:00,0.0,1003.714667,0.216883333,82.49583333,15.76333333,1.3973333330000002,237.94617803333335 -2014-04-04 20:00:00,0.0,1004.248333,0.0,91.875,14.2675,0.821583333,237.94550966666668 -2014-04-04 21:00:00,0.0,1005.113667,0.0,90.55,12.03416667,0.600916667,237.9448413 -2014-04-04 22:00:00,0.0,1005.408667,0.0,95.6,10.63666667,0.3345,237.9448413 -2014-04-04 23:00:00,0.0,1005.407333,0.0,98.50833333,9.0025,0.279416667,237.9448413 -2014-05-04 00:00:00,0.0,1005.508667,0.0,99.675,8.540833333,0.35625,237.847994 -2014-05-04 01:00:00,0.0,1005.725,0.0,99.9,8.155916667,0.133333333,237.847994 -2014-05-04 02:00:00,0.0,1005.55,0.0,100.0,7.45725,0.198,237.847994 -2014-05-04 03:00:00,0.0,1005.8969999999999,0.0,100.0,7.738666667,0.38208333299999997,237.847994 -2014-05-04 04:00:00,5.066574264,1006.523667,0.0,100.0,9.929166667,0.5195,237.847994 -2014-05-04 05:00:00,18.29828995,1007.081667,0.1183,99.99166667,10.445,0.8009999999999999,237.8458886 -2014-05-04 06:00:00,2.421557784,1007.531667,3.7667583330000003,98.75,10.21833333,0.517416667,237.8458886 -2014-05-04 07:00:00,12.51216617,1008.164667,31.3775,97.75833333,10.63333333,0.5389166670000001,237.8458886 -2014-05-04 08:00:00,0.0,1008.548333,93.33916667,94.55,11.67416667,0.9209999999999999,237.8465904 -2014-05-04 09:00:00,0.0,1009.107,179.41,88.70833333,13.49,1.42925,237.84764310000003 -2014-05-04 10:00:00,0.0,1009.4910000000001,207.4916667,82.405,14.635,1.636416667,237.8458886 -2014-05-04 11:00:00,0.0,1009.816333,139.4866667,81.74166667,14.92416667,0.9933333329999999,237.8458886 -2014-05-04 12:00:00,2.4050227680000003,1009.882,144.0308333,79.01666667,15.6025,0.35266666700000004,237.84488605 -2014-05-04 13:00:00,0.0,1010.116667,142.8175,78.53416667,15.7125,1.06525,237.84388349999998 -2014-05-04 14:00:00,0.0,1010.298667,135.3975,80.89666667,15.6325,1.3155,237.8411097333333 -2014-05-04 15:00:00,0.0,1010.474333,140.5658333,83.23333333,15.74333333,1.3966666669999999,237.84010718333332 -2014-05-04 16:00:00,0.0,1010.7073330000001,83.27666667,83.05833333,15.65333333,1.353083333,237.839773 -2014-05-04 17:00:00,0.0,1011.148,32.7775,83.96666667,15.18,1.710833333,237.839773 -2014-05-04 18:00:00,0.0,1011.591,13.48841667,87.225,14.16333333,1.40325,237.8383694 -2014-05-04 19:00:00,0.0,1012.148,1.775025,90.56666667,13.31,1.317916667,237.8376676 -2014-05-04 20:00:00,0.0,1012.714667,0.0,90.825,13.0025,0.924416667,237.8376676 -2014-05-04 21:00:00,0.0,1013.09,0.0,91.925,12.67833333,0.26475,237.8376676 -2014-05-04 22:00:00,0.0,1013.316333,0.0,93.4,11.51416667,0.25525,237.83599668333332 -2014-05-04 23:00:00,0.0,1013.5169999999999,0.0,98.95,9.626166667,0.34166666700000003,237.83566250000004 -2014-06-04 00:00:00,0.0,1013.5906669999999,0.0,99.95,7.239416667,0.339583333,237.722273 -2014-06-04 01:00:00,0.0,1013.708333,0.0,100.0,5.920833332999999,0.11825,237.7240275 -2014-06-04 02:00:00,0.0,1013.575,0.0,100.0,5.22975,0.0185,237.72538094999996 -2014-06-04 03:00:00,0.0,1013.467667,0.0,100.0,4.417666667,0.08641666699999999,237.72638349999997 -2014-06-04 04:00:00,0.0,1013.325,0.0,100.0,3.417833333,0.167166667,237.7284888 -2014-06-04 05:00:00,0.0,1013.565333,0.4536,100.0,2.7846666669999998,0.040083333,237.72778703333333 -2014-06-04 06:00:00,0.0,1014.239333,15.46265,100.0,4.224416667,0.0355,237.7284888 -2014-06-04 07:00:00,0.0,1014.490667,61.96225,100.0,6.192166667,0.1255,237.7294914 -2014-06-04 08:00:00,0.0,1014.708333,95.82416667,100.0,7.34575,0.31275,237.730494 -2014-06-04 09:00:00,0.0,1014.716667,221.8825,96.23333333,9.256666667000001,0.751166667,237.72914051666666 -2014-06-04 10:00:00,0.0,1014.692333,367.8675,84.91666667,11.96833333,1.4058333330000001,237.7233257 -2014-06-04 11:00:00,0.0,1014.483667,346.7216667,71.79333333,15.69083333,1.48825,237.7168257666667 -2014-06-04 12:00:00,0.0,1014.192667,393.3125,53.00083333,17.15916667,1.11475,237.714052 -2014-06-04 13:00:00,0.0,1013.984667,312.0833333,50.84166667,18.74916667,1.49775,237.7119466 -2014-06-04 14:00:00,0.0,1013.551,174.0725,53.32666667,18.2325,1.26475,237.71094405 -2014-06-04 15:00:00,0.0,1013.2510000000001,160.4516667,54.13,18.23,0.580916667,237.7099415 -2014-06-04 16:00:00,0.0,1013.076,111.52166670000001,55.59583333,18.47,1.012666667,237.7099415 -2014-06-04 17:00:00,0.0,1012.9910000000001,61.3095,57.53833333,17.67416667,1.124583333,237.7106098666667 -2014-06-04 18:00:00,0.0,1013.3489999999999,23.6824,64.09666667,17.06833333,1.067583333,237.7122975 -2014-06-04 19:00:00,0.0,1013.565333,0.453483333,70.22916667,14.67,0.19475,237.7154556 -2014-06-04 20:00:00,0.0,1014.189,0.0,84.08833333,11.74,0.073166667,237.7178283166667 -2014-06-04 21:00:00,0.0,1014.4760000000001,0.0,93.49166667,10.36333333,0.26408333300000003,237.72026789999998 -2014-06-04 22:00:00,0.0,1014.4739999999999,0.0,92.88333333,10.87166667,0.141916667,237.7219388166667 -2014-06-04 23:00:00,0.0,1014.674333,0.0,89.95,10.94416667,0.002,237.7229748 -2014-07-04 00:00:00,0.0,1014.551,0.0,93.3,10.0775,0.133,237.60417139999996 -2014-07-04 01:00:00,0.0,1014.359333,0.0,92.8,10.25083333,0.15758333300000002,237.6072292 -2014-07-04 02:00:00,0.0,1014.1916669999999,0.0,95.96666667,8.9625,0.177083333,237.60965206666665 -2014-07-04 03:00:00,0.0,1014.2330000000001,0.0,98.1,9.538333332999999,0.132166667,237.6123924 -2014-07-04 04:00:00,0.0,1014.208667,0.0,97.125,10.1925,0.08525,237.61409675000002 -2014-07-04 05:00:00,0.0,1014.316333,0.49291666700000003,97.11666667,10.41666667,0.018833333,237.61615199999997 -2014-07-04 06:00:00,0.0,1014.3660000000001,6.034641667000001,97.15833333,10.67416667,0.260083333,237.61820724999998 -2014-07-04 07:00:00,0.0,1014.400667,39.87666667,94.75,11.47083333,0.5235,237.6202625 -2014-07-04 08:00:00,0.0,1014.333333,79.91083333,91.025,12.28916667,1.0375,237.61889233333332 -2014-07-04 09:00:00,0.0,1014.342,154.3325,87.55833333,13.19916667,1.2720833329999999,237.6116906 -2014-07-04 10:00:00,0.0,1013.951333,291.5325,82.46,15.2575,1.23125,237.60104675 -2014-07-04 11:00:00,0.0,1013.295,315.3441667,73.07416667,18.26666667,1.861083333,237.59247486666666 -2014-07-04 12:00:00,0.0,1012.452667,333.41,65.05583333,19.27583333,2.4325,237.58833098333335 -2014-07-04 13:00:00,0.0,1011.7769999999999,294.5133333,62.8975,19.31833333,2.804333333,237.5859081333333 -2014-07-04 14:00:00,0.0,1010.952667,301.2216667,60.14083333,20.08416667,2.5779166669999998,237.5835187 -2014-07-04 15:00:00,0.0,1010.02,233.0125,56.60333333,20.1975,2.5964166669999997,237.57974238333335 -2014-07-04 16:00:00,0.0,1009.169667,163.44416669999998,53.90166667,19.81833333,2.4075833330000003,237.57905730000002 -2014-07-04 17:00:00,0.0,1008.360333,70.79333333,53.60416667,19.61666667,2.654666667,237.57700205000003 -2014-07-04 18:00:00,0.0,1007.818333,17.07533333,61.65666667,16.6875,1.131333333,237.57564860000002 -2014-07-04 19:00:00,0.0,1007.492667,0.670425,84.66583333,12.0025,0.35958333299999995,237.57599950000005 -2014-07-04 20:00:00,0.0,1006.927,0.0,90.86666667,11.1775,0.240083333,237.57767041666668 -2014-07-04 21:00:00,0.0,1006.683,0.0,77.28583333,11.56666667,0.469416667,237.58111255000003 -2014-07-04 22:00:00,0.0,1006.509667,0.0,71.9975,13.7575,1.021916667,237.58420378333335 -2014-07-04 23:00:00,0.0,1006.151667,0.0,58.45,14.5075,0.971666667,237.58727829999998 -2014-08-04 00:00:00,0.0,1006.008333,0.0,59.375,18.26,1.5005,237.5244679 -2014-08-04 01:00:00,0.0,1005.468333,0.0,65.1975,16.85916667,1.102666667,237.5223625 -2014-08-04 02:00:00,0.0,1005.557,0.0,65.98666667,16.99416667,1.5348333330000001,237.5203574 -2014-08-04 03:00:00,0.0,1005.825667,0.0,78.3525,13.9125,0.5914166670000001,237.5203574 -2014-08-04 04:00:00,0.0,1005.557667,0.0,92.64166667,9.7575,0.26558333300000003,237.5203574 -2014-08-04 05:00:00,0.0,1005.915333,0.571783333,75.43583333,11.54083333,0.824666667,237.5203574 -2014-08-04 06:00:00,6.500866104,1007.2860000000001,9.228916667,85.13083333,12.84583333,2.163833333,237.51860290000002 -2014-08-04 07:00:00,0.0,1008.803667,56.69066667,83.69166667,11.57166667,2.149916667,237.51649749999999 -2014-08-04 08:00:00,0.0,1010.220333,133.2916667,73.725,11.66583333,2.26125,237.51581241666665 -2014-08-04 09:00:00,0.0,1010.898333,300.6908333,65.48333333,12.20833333,2.4845,237.51581241666668 -2014-08-04 10:00:00,0.0,1011.357667,254.0825,59.37583333,12.76666667,2.115416667,237.51343969999996 -2014-08-04 11:00:00,0.0,1011.715333,155.1725,59.38,12.295,2.234833333,237.51203610000002 -2014-08-04 12:00:00,0.0,1011.973333,208.6128333,60.7725,12.625,2.353583333,237.51103355 -2014-08-04 13:00:00,0.0,1012.259333,233.6658333,54.09166667,12.74,2.608833333,237.50727395 -2014-08-04 14:00:00,3.8546220960000004,1012.4889999999999,176.3673333,57.2275,11.77166667,2.3955833330000003,237.5041660833333 -2014-08-04 15:00:00,0.0,1012.775,108.773,53.49416667,11.73333333,2.0411666669999997,237.50214419999998 -2014-08-04 16:00:00,0.0,1013.164667,118.28891670000002,55.08916667,10.92083333,2.939666667,237.50181 -2014-08-04 17:00:00,0.0,1013.449,65.20208333,60.33666667,10.27166667,1.4950833330000002,237.49970469999997 -2014-08-04 18:00:00,0.0,1014.130667,23.05391667,61.1725,9.770833332999999,1.74275,237.49759930000002 -2014-08-04 19:00:00,50.44218149,1015.353667,0.571841667,73.22833333,8.451,2.137333333,237.49726511666665 -2014-08-04 20:00:00,2.9806903680000003,1016.1063330000001,0.0,85.35833333,5.9110000000000005,0.775333333,237.49524329999997 -2014-08-04 21:00:00,0.0,1016.698333,0.0,83.69166667,5.33525,1.251583333,237.4941906 -2014-08-04 22:00:00,9.249057264,1017.6063330000001,0.0,88.25833333,5.44825,1.555,237.49348880000002 -2014-08-04 23:00:00,0.0,1018.081333,0.0,89.44166667,5.52675,1.21,237.4918178833333 -2014-09-04 00:00:00,0.0,1018.25,0.0,90.24166667,4.81825,1.280916667,237.83067299999996 -2014-09-04 01:00:00,0.0,1018.3739999999999,0.0,93.81666667,3.935083333,0.991833333,237.83067299999996 -2014-09-04 02:00:00,0.0,1018.723333,0.0,95.675,2.774166667,0.419916667,237.82997123333328 -2014-09-04 03:00:00,0.0,1018.950667,0.0,98.24166667,2.449,0.408,237.82891858333332 -2014-09-04 04:00:00,0.0,1019.206667,0.0,97.70833333,1.331833333,0.135583333,237.82856769999998 -2014-09-04 05:00:00,0.0,1019.432,1.18335,97.125,2.66975,0.444166667,237.82997123333328 -2014-09-04 06:00:00,0.0,1019.841,25.77691667,96.46666667,4.300833333,0.918083333,237.83067299999996 -2014-09-04 07:00:00,2.603954136,1020.139667,74.45958333,93.06666667,5.84175,0.893916667,237.83067299999996 -2014-09-04 08:00:00,0.0,1020.591,148.4408333,87.29166667,7.981416667,0.92775,237.83234399999995 -2014-09-04 09:00:00,0.0,1020.916,237.2416667,82.74166667,9.32,1.5865,237.83134139999996 -2014-09-04 10:00:00,0.0,1020.892333,235.11833330000002,78.40833333,9.526666667,1.305166667,237.83100719999996 -2014-09-04 11:00:00,0.0,1020.542333,240.73,68.5275,10.315,1.4565833330000002,237.82997123333334 -2014-09-04 12:00:00,0.0,1020.4093330000001,291.7541667,61.5225,12.0,2.5100833330000003,237.82856769999998 -2014-09-04 13:00:00,0.0,1019.926667,322.58916669999996,56.68416667,12.60083333,2.966,237.82823349999998 -2014-09-04 14:00:00,0.0,1019.459333,190.505,56.64833333,12.15416667,2.05925,237.8268967 -2014-09-04 15:00:00,0.0,1019.2510000000001,182.77,57.11583333,12.22583333,2.734416667,237.8265625 -2014-09-04 16:00:00,0.0,1018.959333,112.68833329999998,59.11666667,12.2225,2.13675,237.82621161666665 -2014-09-04 17:00:00,0.0,1018.584333,97.01766667,59.22416667,12.525,1.3565,237.82445719999996 -2014-09-04 18:00:00,0.0,1018.467667,32.9735,61.45583333,11.95583333,1.4133333330000002,237.82445719999996 -2014-09-04 19:00:00,0.0,1018.416,1.203125,64.21416667,10.80583333,0.2445,237.82445719999996 -2014-09-04 20:00:00,0.0,1018.466333,0.0,65.3975,10.53416667,0.354916667,237.8234045 -2014-09-04 21:00:00,0.0,1018.551,0.0,66.22833333,10.83166667,1.003333333,237.82305359999998 -2014-09-04 22:00:00,0.0,1018.399333,0.0,67.595,10.70583333,1.211083333,237.8227027 -2014-09-04 23:00:00,0.0,1018.225333,0.0,68.925,10.52416667,1.09425,237.8234045 -2014-10-04 00:00:00,0.0,1017.852333,0.0,70.71666667,10.5275,1.8494166669999998, -2014-10-04 01:00:00,0.0,1017.649667,0.0,68.90583333,10.59333333,2.727416667, -2014-10-04 02:00:00,0.0,1017.584333,0.0,68.36166667,10.3,2.166833333, -2014-10-04 03:00:00,0.0,1017.259333,0.0,73.3775,10.0325,2.223666667, -2014-10-04 04:00:00,0.0,1017.091667,0.0,78.5975,9.175,0.7905833329999999, -2014-10-04 05:00:00,0.0,1017.107667,0.650708333,80.0025,8.76,0.818666667, -2014-10-04 06:00:00,0.0,1017.4069999999999,11.85146667,82.84166667,8.82,0.51675, -2014-10-04 07:00:00,0.0,1018.006667,44.47216667,81.15583333,9.490833333,0.645, -2014-10-04 08:00:00,0.0,1018.1916669999999,106.855,79.75,10.37166667,0.81825, -2014-10-04 09:00:00,0.0,1018.292333,143.7975,77.15833333,11.29583333,1.7835833330000002, -2014-10-04 10:00:00,0.0,1018.1,300.4866667,73.37333333,13.04916667,1.46575, -2014-10-04 11:00:00,0.0,1017.942333,284.2583333,69.26083333,14.05166667,1.0068333329999999, -2014-10-04 12:00:00,0.0,1017.410667,170.9108333,67.39833333,14.18583333,0.942583333, -2014-10-04 13:00:00,0.0,1016.926,132.4575,68.53583333,14.39666667,0.61825, -2014-10-04 14:00:00,0.0,1016.467667,124.20333329999998,65.86416667,14.775,0.715833333, -2014-10-04 15:00:00,0.0,1016.117667,63.65158333,67.60416667,14.69,0.7745833329999999, -2014-10-04 16:00:00,0.0,1015.867667,56.18783333,69.22583333,14.26416667,0.9188333329999999, -2014-10-04 17:00:00,0.0,1015.700667,59.95616667,69.1275,14.1825,0.8866666670000001, -2014-10-04 18:00:00,0.0,1015.906667,25.0635,73.53833333,13.3925,0.627, -2014-10-04 19:00:00,0.0,1016.0583330000001,1.3802833330000002,80.81666667,12.08833333,0.451583333, -2014-10-04 20:00:00,0.0,1015.95,0.0,85.65833333,10.97166667,0.235833333, -2014-10-04 21:00:00,0.0,1015.926,0.0,91.28333333,10.38333333,0.092083333, -2014-10-04 22:00:00,0.0,1015.7926669999999,0.0,93.925,9.605833333,0.060083332999999996, -2014-10-04 23:00:00,0.0,1015.334667,0.0,95.825,8.355333332999999,0.159583333, -2014-11-04 00:00:00,0.0,1014.843667,0.0,99.35,5.886833332999999,0.18866666699999998,237.94635250000002 -2014-11-04 01:00:00,0.0,1014.567667,0.0,100.0,5.989083333,0.10333333300000001,237.94635250000002 -2014-11-04 02:00:00,0.0,1014.2919999999999,0.0,99.74166667,7.051666667,0.062916667,237.9470525 -2014-11-04 03:00:00,0.0,1013.793333,0.0,99.11666667,7.462333332999999,0.0055,237.94635250000002 -2014-11-04 04:00:00,0.0,1013.684,0.0,99.79166667,7.73475,0.019333333,237.9481025 -2014-11-04 05:00:00,0.0,1013.773667,0.453483333,100.0,7.7415,0.022583332999999997,237.94635250000002 -2014-11-04 06:00:00,0.0,1014.098667,10.98434167,100.0,7.948666667,0.022583332999999997,237.94635250000002 -2014-11-04 07:00:00,0.0,1014.134333,38.55133333,98.75833333,8.716666667,0.174166667,237.94635250000002 -2014-11-04 08:00:00,0.0,1014.190667,112.63583329999999,87.93333333,10.11083333,0.338416667,237.94635250000002 -2014-11-04 09:00:00,0.0,1014.275,213.7158333,80.1525,12.67583333,1.132666667,237.94635250000002 -2014-11-04 10:00:00,0.0,1014.018333,384.0141667,73.17666667,14.56333333,1.438083333,237.94635250000002 -2014-11-04 11:00:00,0.0,1013.634333,207.19416669999998,73.185,15.19583333,1.6354166669999999,237.94601916666667 -2014-11-04 12:00:00,0.0,1013.376333,291.5908333,73.85916667,15.07333333,2.186083333,237.94635250000002 -2014-11-04 13:00:00,0.0,1012.893333,260.5108333,64.75916667,16.57916667,1.5848333330000002,237.94635250000002 -2014-11-04 14:00:00,0.0,1012.533667,228.03666669999998,57.5975,17.4325,1.3719166669999998,237.94635250000002 -2014-11-04 15:00:00,0.0,1012.151667,91.63,54.82833333,16.9925,0.991166667,237.94635250000002 -2014-11-04 16:00:00,0.0,1011.950667,105.50283329999999,63.485,16.08666667,2.1011666669999998,237.94635250000002 -2014-11-04 17:00:00,0.0,1011.8166669999999,22.4595,70.86083333,15.29,1.1540000000000001,237.94635250000002 -2014-11-04 18:00:00,0.0,1011.9739999999999,14.57236667,85.94166667,14.085,0.60175,237.94635250000002 -2014-11-04 19:00:00,0.0,1012.521667,0.571783333,90.96666667,12.9925,1.8435833330000002,237.94635250000002 -2014-11-04 20:00:00,0.0,1013.523,0.0,87.98333333,11.88916667,2.200166667,237.9470525 -2014-11-04 21:00:00,0.0,1013.8739999999999,0.0,91.7,11.2025,1.91975,237.9484525 -2014-11-04 22:00:00,0.0,1013.859333,0.0,95.44166667,10.53083333,1.508083333,237.9481025 -2014-11-04 23:00:00,0.0,1013.866667,0.0,96.25833333,9.985833332999999,0.830416667,237.94775249999998 -2014-12-04 00:00:00,0.0,1013.675667,0.0,97.375,9.36,0.728583333,237.8686858333333 -2014-12-04 01:00:00,0.0,1013.2843330000001,0.0,99.425,8.954166667,0.256666667,237.8686858333333 -2014-12-04 02:00:00,0.0,1012.9760000000001,0.0,97.41666667,9.118333332999999,0.70375,237.8696858333333 -2014-12-04 03:00:00,0.0,1012.452,0.0,96.03333333,8.593333333,0.876083333,237.86968583333336 -2014-12-04 04:00:00,0.0,1012.257667,0.0,98.05,7.002000000000001,0.14800000000000002,237.87001916666665 -2014-12-04 05:00:00,0.0,1012.524667,1.202658333,100.0,6.183833333,0.239583333,237.87001916666668 -2014-12-04 06:00:00,0.0,1012.699333,30.58241667,100.0,6.749083333,0.047083333,237.87001916666668 -2014-12-04 07:00:00,0.0,1013.073,73.92408333,95.00833333,8.133583332999999,0.754,237.8703525 -2014-12-04 08:00:00,0.0,1013.491333,130.24666670000002,89.625,9.409166667000001,2.220416667,237.8703525 -2014-12-04 09:00:00,0.0,1013.442,217.7466667,87.74166667,10.21083333,2.213166667,237.8703525 -2014-12-04 10:00:00,0.0,1013.475,294.71166669999997,82.60833333,11.48333333,1.888166667,237.87105250000002 -2014-12-04 11:00:00,0.0,1013.035,346.745,77.41,13.41583333,1.4896666669999998,237.87140249999996 -2014-12-04 12:00:00,0.0,1012.477,379.83166669999997,70.22,15.2725,1.21075,237.87105250000002 -2014-12-04 13:00:00,0.0,1011.96,315.525,63.27916667,16.37916667,0.949583333,237.87175249999999 -2014-12-04 14:00:00,0.0,1011.402667,354.2525,59.78166667,16.63666667,0.8121666670000001,237.87175249999999 -2014-12-04 15:00:00,0.0,1010.577,178.1908333,58.9975,17.23916667,1.08475,237.87140250000002 -2014-12-04 16:00:00,0.0,1010.4333330000001,174.4925,53.18583333,17.47833333,1.171,237.87245249999998 -2014-12-04 17:00:00,0.0,1010.541,61.24358333,56.22,15.75583333,0.8495,237.8737858333333 -2014-12-04 18:00:00,0.0,1010.716333,18.20116667,56.59333333,15.04166667,1.4709166669999998,237.87345249999998 -2014-12-04 19:00:00,0.0,1011.3380000000001,0.8085,58.51666667,14.09166667,2.576083333,237.8737858333333 -2014-12-04 20:00:00,0.0,1012.031667,0.0,61.91083333,13.1725,2.036833333,237.8737858333333 -2014-12-04 21:00:00,0.0,1012.308,0.0,63.955,12.43416667,1.464833333,237.8744525 -2014-12-04 22:00:00,0.0,1012.424667,0.0,64.94,12.0125,1.446083333,237.8748025 -2014-12-04 23:00:00,0.0,1012.698667,0.0,67.91416667,10.1675,0.282,237.87515249999998 -2014-04-13 00:00:00,0.0,1012.3853330000001,0.0,80.80166667,9.355833333,0.11958333300000001,237.8829833 -2014-04-13 01:00:00,0.0,1012.241667,0.0,84.72666667,8.886666667,0.049166667000000004,237.8829833 -2014-04-13 02:00:00,0.0,1012.4,0.0,79.82333333,8.5,0.12525,237.8829833 -2014-04-13 03:00:00,0.0,1012.374667,0.0,88.52666667,6.7425,0.19041666699999998,237.8829833 -2014-04-13 04:00:00,0.0,1012.333667,0.0,96.475,4.4168333330000005,0.146583333,237.8829833 -2014-04-13 05:00:00,0.0,1012.6303330000001,2.071125,95.19166667,3.812666667,0.44375,237.8829833 -2014-04-13 06:00:00,0.0,1013.605,26.96166667,90.50833333,4.355166667,0.1025,237.8829833 -2014-04-13 07:00:00,0.0,1014.398,100.44066670000001,84.50833333,8.342416667,0.6778333329999999,237.88198075 -2014-04-13 08:00:00,0.0,1015.015667,111.8775,77.785,10.715,1.266666667,237.88097819999993 -2014-04-13 09:00:00,0.0,1015.2156669999999,234.9316667,72.45166667,12.02916667,1.80725,237.88097819999993 -2014-04-13 10:00:00,0.0,1015.3839999999999,430.64,66.095,13.3975,1.74325,237.88097819999993 -2014-04-13 11:00:00,0.0,1015.026333,357.9741667,63.96166667,13.94916667,1.0759999999999998,237.88097819999993 -2014-04-13 12:00:00,0.0,1014.659,193.8825,64.07,14.11083333,1.239583333,237.88062729999993 -2014-04-13 13:00:00,0.0,1014.725,115.11908329999999,63.47416667,13.79,1.40275,237.88062729999993 -2014-04-13 14:00:00,0.0,1014.551,105.39316670000001,64.7975,13.47333333,1.78025,237.87922369999998 -2014-04-13 15:00:00,0.0,1014.3,133.32083329999998,63.17083333,13.495,2.435916667,237.8792237 -2014-04-13 16:00:00,0.0,1014.0426669999999,182.035,60.6675,13.72166667,2.2608333330000003,237.87888951666665 -2014-04-13 17:00:00,0.0,1013.809,52.67033333,61.965,13.45333333,2.337583333,237.87720188333333 -2014-04-13 18:00:00,0.0,1013.6010000000001,28.04083333,68.495,12.61416667,1.5055833330000001,237.87686769999996 -2014-04-13 19:00:00,0.0,1013.583333,2.010983333,72.18166667,10.99333333,0.7174166670000001,237.87686769999996 -2014-04-13 20:00:00,0.0,1013.583667,0.0,78.45916667,9.5675,0.23375,237.87686769999996 -2014-04-13 21:00:00,0.0,1013.1610000000001,0.0,78.24333333,7.8555,0.043083333,237.87686769999996 -2014-04-13 22:00:00,0.0,1012.725,0.0,83.62333333,5.472666667,0.1625,237.87686769999996 -2014-04-13 23:00:00,0.0,1012.732667,0.0,81.3025,3.75625,0.066833333,237.87686769999996 -2014-04-14 00:00:00,0.0,1012.427333,0.0,79.85583333,4.348083333,0.24225,237.87686769999996 -2014-04-14 01:00:00,0.0,1011.902333,0.0,78.92666667,6.720333332999999,0.7719166670000001,237.87853861666667 -2014-04-14 02:00:00,0.0,1010.845,0.0,81.1225,6.40775,0.4165,237.8782044333333 -2014-04-14 03:00:00,0.0,1010.302,0.0,78.65833333,7.47775,0.641416667,237.87720188333333 -2014-04-14 04:00:00,0.0,1009.701,0.0,79.4425,8.196333333,1.2075,237.87686769999996 -2014-04-14 05:00:00,0.0,1009.583333,0.769066667,81.13333333,8.384166667,1.2219166670000001,237.87686769999996 -2014-04-14 06:00:00,0.0,1009.9813330000001,9.347683332999999,82.89166667,8.433333333,1.1806666670000001,237.87720188333333 -2014-04-14 07:00:00,2.7432960239999997,1010.34,64.96,87.38333333,8.603333333,1.146,237.87686769999996 -2014-04-14 08:00:00,5.725462127999999,1010.557333,119.182,83.165,9.544166667,1.7065,237.87787024999997 -2014-04-14 09:00:00,0.0,1011.008333,255.4673333,80.43166667,10.155,2.1926666669999997,237.8782044333333 -2014-04-14 10:00:00,0.0,1011.024667,329.9683333,73.79333333,11.07083333,1.9398333330000002,237.87720188333333 -2014-04-14 11:00:00,0.0,1011.125,374.955,58.77333333,11.70916667,4.4639166669999994,237.87686769999996 -2014-04-14 12:00:00,0.0,1011.149333,372.1375,56.52666667,12.3475,3.445916667,237.87686769999996 -2014-04-14 13:00:00,46.59470424,1011.107667,293.58175,57.94583333,11.75166667,4.0279166669999995,237.87511328333332 -2014-04-14 14:00:00,8.847567888,1011.448,411.9365833,58.84416667,10.38666667,4.794833333,237.87442819999998 -2014-04-14 15:00:00,0.0,1011.633333,319.1766667,65.36,11.02166667,3.151166667,237.8727572 -2014-04-14 16:00:00,0.0,1012.157333,200.20233330000002,62.39583333,10.65916667,3.7959166669999997,237.8727572 -2014-04-14 17:00:00,0.0,1013.030667,44.9015,78.40583333,8.001083333,4.3076666669999994,237.87170454999998 -2014-04-14 18:00:00,0.0,1013.647333,24.59041667,82.34583333,7.5895,2.7008333330000003,237.87170455 -2014-04-14 19:00:00,8.589951336,1014.338667,1.419775,85.835,5.42575,3.274166667,237.87065189999998 -2014-04-14 20:00:00,15.44473411,1015.1489999999999,0.0,89.06666667,4.969833333,3.2008333330000003,237.87065189999998 -2014-04-14 21:00:00,9.340468536,1015.581333,0.0,90.74166667,4.513999999999999,2.8824166669999998,237.87065189999998 -2014-04-14 22:00:00,0.0,1015.923333,0.0,93.41666667,3.72825,0.9844166670000001,237.87065189999998 -2014-04-14 23:00:00,0.0,1016.5239999999999,0.0,94.71666667,3.2233333330000002,0.9890000000000001,237.87030099999996 -2014-04-15 00:00:00,0.0,1016.442333,0.0,95.94166667,2.7199166669999997,0.642166667,237.87030099999996 -2014-04-15 01:00:00,0.0,1016.748333,0.0,96.66666667,2.2886666669999998,0.585583333,237.87065189999998 -2014-04-15 02:00:00,0.0,1017.14,0.0,91.0,3.818,1.264833333,237.87030099999996 -2014-04-15 03:00:00,0.0,1017.299667,0.0,89.4,3.828083333,0.914,237.87065189999998 -2014-04-15 04:00:00,0.0,1017.5239999999999,0.0,88.525,3.9275,0.707333333,237.87065189999998 -2014-04-15 05:00:00,2.549612256,1018.023333,2.327266667,89.15833333,3.6648333330000002,1.046166667,237.87065189999998 -2014-04-15 06:00:00,2.646005064,1018.564667,25.20525,90.94166667,3.865333333,1.043,237.87065189999998 -2014-04-15 07:00:00,0.0,1019.097667,68.05458333,87.01666667,4.539166667,1.369666667,237.87065189999998 -2014-04-15 08:00:00,0.0,1019.648667,87.6575,82.28666667,5.136833333,1.393083333,237.86924829999998 -2014-04-15 09:00:00,0.0,1020.2073330000001,142.4033333,81.205,5.471166667,2.052833333,237.86854649999995 -2014-04-15 10:00:00,0.0,1020.449,228.1825,74.45666667,6.39025,2.987666667,237.87065189999998 -2014-04-15 11:00:00,0.0,1020.575333,245.3733333,69.81333333,6.882000000000001,3.538166667,237.87065189999998 -2014-04-15 12:00:00,0.0,1020.524667,205.9458333,61.9825,8.16425,3.0771666669999997,237.87065189999998 -2014-04-15 13:00:00,0.0,1020.5583330000001,277.515,56.87583333,8.51,3.035666667,237.87065189999998 -2014-04-15 14:00:00,0.0,1020.442,175.18083330000002,56.09833333,8.6925,3.788583333,237.87065189999998 -2014-04-15 15:00:00,0.0,1020.284,142.4033333,56.47833333,8.589166667,3.5796666669999997,237.86995009999998 -2014-04-15 16:00:00,0.0,1020.307667,89.9325,55.56583333,8.704166667,3.506166667,237.86924829999998 -2014-04-15 17:00:00,0.0,1020.292333,68.90508333,59.91416667,8.345833333,3.3136666669999997,237.86854649999995 -2014-04-15 18:00:00,0.0,1020.431667,25.97,63.475,7.9625,1.909666667,237.8665414 -2014-04-15 19:00:00,0.0,1020.965,1.8143416669999999,65.85333333,7.367166667,1.642166667,237.8665414 -2014-04-15 20:00:00,0.0,1021.357333,0.0,71.13166667,5.528416667,1.028666667,237.8665414 -2014-04-15 21:00:00,0.0,1021.9889999999999,0.0,91.20833333,2.113916667,0.12475,237.8665414 -2014-04-15 22:00:00,0.0,1022.508,0.0,95.575,0.829833333,0.47383333299999997,237.8665414 -2014-04-15 23:00:00,0.0,1022.723333,0.0,97.55,-0.301,0.066833333,237.8661905 -2014-04-16 00:00:00,0.0,1022.9989999999999,0.0,98.59166667,-0.597166667,0.0435,237.8661905 -2014-04-16 01:00:00,0.0,1023.225333,0.0,99.20833333,-0.76025,0.074666667,237.8665414 -2014-04-16 02:00:00,0.0,1023.324333,0.0,100.0,-1.2359166670000001,0.174333333,237.8661905 -2014-04-16 03:00:00,0.0,1023.656333,0.0,100.0,-1.640916667,0.109,237.8647869 -2014-04-16 04:00:00,0.0,1023.9656669999999,0.0,100.0,-2.119,0.09858333300000001,237.86410181666668 -2014-04-16 05:00:00,0.0,1024.4569999999999,3.748441667,100.0,-2.46375,0.00975,237.86443599999998 -2014-04-16 06:00:00,0.0,1024.897667,25.921,100.0,-1.4829166669999998,0.015166667,237.8637676333333 -2014-04-16 07:00:00,0.0,1025.407,120.7675,96.35833333,2.3039166669999998,0.29125,237.86410181666665 -2014-04-16 08:00:00,0.0,1025.799,104.4236667,82.5175,4.935166667,1.573166667,237.86513779999999 -2014-04-16 09:00:00,0.0,1026.016667,256.96299999999997,77.39166667,7.517333333,1.40775,237.8654887 -2014-04-16 10:00:00,0.0,1025.876,345.2808333,67.88916667,9.966666667,1.162583333,237.8654887 -2014-04-16 11:00:00,0.0,1025.576,247.345,62.02916667,10.475,1.6573333330000002,237.86548870000001 -2014-04-16 12:00:00,0.0,1025.358333,330.0966667,52.3875,11.33083333,2.34675,237.86343345 -2014-04-16 13:00:00,0.0,1024.9933330000001,489.3816666999999,48.0475,13.25083333,1.960666667,237.8637676333333 -2014-04-16 14:00:00,0.0,1024.668667,516.9733333,45.6,13.55833333,1.7710833330000002,237.8637676333333 -2014-04-16 15:00:00,0.0,1024.192667,234.2258333,46.98916667,13.15666667,1.5214166669999998,237.86243089999996 -2014-04-16 16:00:00,0.0,1024.000667,175.9374167,44.38166667,13.16,1.51975,237.86243089999996 -2014-04-16 17:00:00,0.0,1023.559333,47.761,46.57833333,13.01666667,1.4471666669999999,237.86243089999996 -2014-04-16 18:00:00,0.0,1023.566,25.45841667,50.83333333,10.55333333,1.178,237.86243089999996 -2014-04-16 19:00:00,0.0,1023.7739999999999,3.3921416669999997,75.39333333,6.2845,0.195416667,237.86067640000002 -2014-04-16 20:00:00,0.0,1023.867667,0.0,88.23333333,2.471,0.199916667,237.8596571333333 -2014-04-16 21:00:00,0.0,1023.667333,0.0,93.2,1.025166667,0.11566666699999999,237.8583204 -2014-04-16 22:00:00,0.0,1023.583333,0.0,96.0,-0.015916667,0.135,237.85965713333334 -2014-04-16 23:00:00,0.0,1023.5583330000001,0.0,97.74166667,-0.49691666700000003,0.10141666699999999,237.85932295 -2014-04-17 00:00:00,0.0,1023.293333,0.0,99.075,-0.905333333,0.10308333300000001,237.85999131666668 -2014-04-17 01:00:00,0.0,1022.818333,0.0,99.95,-1.2700833329999999,0.035,237.86032550000002 -2014-04-17 02:00:00,0.0,1022.284667,0.0,100.0,-1.649666667,0.054916667,237.85999131666665 -2014-04-17 03:00:00,0.0,1021.959333,0.0,100.0,-1.838416667,0.10066666699999999,237.85999131666665 -2014-04-17 04:00:00,0.0,1021.751667,0.0,100.0,-2.30125,0.059916667,237.8586545833333 -2014-04-17 05:00:00,0.0,1021.581667,3.3138,100.0,-2.622666667,0.0145,237.8583204 -2014-04-17 06:00:00,0.0,1021.692667,19.3515,100.0,-1.446666667,0.028333333,237.85865458333333 -2014-04-17 07:00:00,0.0,1021.3510000000001,133.09333329999998,94.45,2.29975,0.38091666700000004,237.85999131666668 -2014-04-17 08:00:00,0.0,1021.017333,119.8575,68.59666667,6.394,1.3539166669999998,237.86172909999996 -2014-04-17 09:00:00,0.0,1020.6353330000001,262.15525,57.20916667,9.644166667,2.160416667,237.86172909999996 -2014-04-17 10:00:00,0.0,1019.829333,426.5508333000001,49.5875,11.65833333,2.4788333330000003,237.86243089999996 -2014-04-17 11:00:00,3.8065213680000003,1018.7363330000001,479.03916669999995,45.52,12.80916667,2.775,237.86243089999996 -2014-04-17 12:00:00,0.0,1017.488,468.60916669999995,41.77333333,13.62916667,2.964333333,237.86243089999996 -2014-04-17 13:00:00,0.0,1016.220333,461.17166669999995,41.69666667,14.31583333,2.545666667,237.86243089999996 -2014-04-17 14:00:00,0.0,1014.954667,346.58166669999997,38.88833333,14.6325,2.496333333,237.86172910000002 -2014-04-17 15:00:00,0.0,1013.7363330000001,340.1766667,37.915,15.52,2.419666667,237.86032550000002 -2014-04-17 16:00:00,0.0,1012.886667,260.41108330000003,37.9625,16.08916667,1.988083333,237.86032550000002 -2014-04-17 17:00:00,0.0,1011.87,35.510999999999996,40.45583333,15.405,1.009916667,237.86032550000002 -2014-04-17 18:00:00,0.0,1010.936,20.369825,49.12833333,12.70166667,0.8170000000000001,237.85999131666665 -2014-04-17 19:00:00,0.0,1010.102,1.301475,68.85166667,8.633416667,0.6891666670000001,237.85965713333334 -2014-04-17 20:00:00,0.0,1009.602667,0.0,79.00333333,7.035666667,0.35016666700000004,237.86032550000002 -2014-04-17 21:00:00,0.0,1008.992667,0.0,82.85833333,7.0374166670000005,0.266916667,237.86032550000002 -2014-04-17 22:00:00,0.0,1008.610667,0.0,63.6775,7.152666667,0.15475,237.8606764 -2014-04-17 23:00:00,0.0,1007.7603330000001,0.0,55.57916667,8.049083332999999,0.235666667,237.86172910000002 -2014-04-18 00:00:00,0.0,1007.168667,0.0,54.57083333,9.474166667,0.292,237.86067640000002 -2014-04-18 01:00:00,0.0,1006.835333,0.0,56.52333333,9.501666667,0.141083333,237.8606764 -2014-04-18 02:00:00,0.0,1006.26,0.0,70.77916667,9.378333332999999,0.2865,237.86243089999996 -2014-04-18 03:00:00,3.126479952,1005.9169999999999,0.0,81.8975,9.304166667,1.186916667,237.86243089999996 -2014-04-18 04:00:00,3.687606888,1005.983333,0.0,88.53333333,8.449416667000001,2.940416667,237.86243089999996 -2014-04-18 05:00:00,0.0,1006.206,1.400175,89.225,7.806833332999999,1.462083333,237.86243089999996 -2014-04-18 06:00:00,0.0,1006.857333,23.97966667,82.0925,7.66325,2.375666667,237.86243089999996 -2014-04-18 07:00:00,0.0,1007.065,87.57525,79.05666667,7.923416667000001,2.859416667,237.86243089999996 -2014-04-18 08:00:00,4.76581644,1007.407667,105.84933329999998,72.345,8.710833333,3.606666667,237.86243089999996 -2014-04-18 09:00:00,0.0,1007.7073330000001,196.44916669999998,64.5875,9.5425,3.79925,237.86102730000002 -2014-04-18 10:00:00,0.0,1007.825,272.3641667,66.565,9.0625,4.089416667,237.86067640000002 -2014-04-18 11:00:00,0.0,1007.783333,415.3216667,61.38416667,10.37166667,4.2865,237.86067640000002 -2014-04-18 12:00:00,0.0,1007.8,440.2825,54.06916667,10.815,4.11675,237.86032550000002 -2014-04-18 13:00:00,0.0,1007.775,361.7425,52.33166667,11.36833333,4.250666667,237.8586545833333 -2014-04-18 14:00:00,0.0,1007.567667,197.19,49.265,11.66666667,3.236916667,237.8583204 -2014-04-18 15:00:00,0.0,1007.699667,239.29675,50.24666667,11.57916667,4.108666667,237.8583204 -2014-04-18 16:00:00,0.0,1007.815,240.66175,48.84333333,11.55583333,4.725083333,237.8583204 -2014-04-18 17:00:00,0.0,1007.851667,38.68783333,49.10333333,11.3375,4.12175,237.85796949999997 -2014-04-18 18:00:00,0.0,1007.898,33.52358333,51.35583333,10.62083333,2.86325,237.8583204 -2014-04-18 19:00:00,0.0,1008.44,4.949291667,60.96666667,8.9925,1.120666667,237.8545440833333 -2014-04-18 20:00:00,0.0,1008.9896669999999,0.0,72.67083333,8.29575,1.47725,237.85454408333337 -2014-04-18 21:00:00,0.0,1009.399333,0.0,71.4,7.807666667,1.252083333,237.85588081666666 -2014-04-18 22:00:00,0.0,1009.5,0.0,85.61083333,5.776,0.5365833329999999,237.85554663333335 -2014-04-18 23:00:00,0.0,1009.583333,0.0,91.925,4.72,0.15533333300000002,237.85554663333335 -2014-04-19 00:00:00,0.0,1009.516667,0.0,95.19166667,3.910666667,0.169916667,237.856215 -2014-04-19 01:00:00,0.0,1009.657333,0.0,97.95,1.307416667,0.111333333,237.85588081666666 -2014-04-19 02:00:00,0.0,1010.015,0.0,99.425,-0.22,0.137583333,237.856215 -2014-04-19 03:00:00,0.0,1010.1339999999999,0.0,100.0,0.288916667,0.23425,237.856215 -2014-04-19 04:00:00,0.0,1010.282667,0.0,100.0,0.18875,0.10225,237.85521245000004 -2014-04-19 05:00:00,0.0,1010.839667,5.601575,100.0,-0.004583333,0.13575,237.85420990000003 -2014-04-19 06:00:00,0.0,1011.2639999999999,26.03941667,100.0,2.83475,1.8615,237.85420990000003 -2014-04-19 07:00:00,0.0,1011.965333,52.8605,99.41666667,4.5889166669999994,2.832,237.85420990000003 -2014-04-19 08:00:00,0.0,1012.2,118.32916670000002,93.13333333,6.0165,3.0839999999999996,237.85420990000003 -2014-04-19 09:00:00,0.0,1012.2410000000001,238.4025,83.41166667,7.687,4.516666667,237.85588081666666 -2014-04-19 10:00:00,0.0,1011.828,387.485,74.98666667,8.939166667,4.229,237.85521244999998 -2014-04-19 11:00:00,0.0,1011.044333,398.2475,67.43666667,11.78166667,4.9545,237.85487826666667 -2014-04-19 12:00:00,0.0,1010.2769999999999,491.03833330000003,63.1125,13.44,5.852666667,237.85588081666666 -2014-04-19 13:00:00,0.0,1009.651667,395.8675,62.80083333,14.445,6.093583333,237.8545440833333 -2014-04-19 14:00:00,0.0,1008.620667,266.8575,63.93416667,15.27416667,6.46025,237.8528063 -2014-04-19 15:00:00,0.0,1007.8939999999999,299.1508333,63.65666667,15.79833333,6.06875,237.8521045 -2014-04-19 16:00:00,0.0,1007.400333,251.1191667,62.71833333,16.3425,6.193,237.8521045 -2014-04-19 17:00:00,0.0,1007.142667,67.78916667,65.35,15.94833333,4.064833333,237.8521045 -2014-04-19 18:00:00,0.0,1007.398667,30.62325,68.68166667,14.78666667,4.724833333,237.85143613333335 -2014-04-19 19:00:00,0.0,1007.3760000000001,3.944383333,75.0275,13.92166667,4.879583333,237.85110195000001 -2014-04-19 20:00:00,0.0,1007.225333,0.0,79.83583333,13.2,3.912666667,237.8521045 -2014-04-19 21:00:00,0.0,1007.025667,0.0,87.71666667,13.11083333,3.19725,237.8521045 -2014-04-19 22:00:00,0.0,1006.6519999999999,0.0,92.825,12.72666667,2.081083333,237.8521045 -2014-04-19 23:00:00,0.0,1006.458333,0.0,95.90833333,12.74333333,1.9505833330000002,237.8535081 -2014-04-20 00:00:00,0.0,1005.878333,0.0,98.38333333,10.12916667,0.651333333,237.85245540000003 -2014-04-20 01:00:00,0.0,1005.185333,0.0,100.0,8.946666667,0.661666667,237.8521045 -2014-04-20 02:00:00,0.0,1004.9333330000001,0.0,100.0,9.845,0.557083333,237.8521045 -2014-04-20 03:00:00,0.0,1004.509667,0.0,100.0,10.85166667,0.8816666670000001,237.8521045 -2014-04-20 04:00:00,0.0,1003.819333,0.0,100.0,11.86666667,1.274833333,237.85280630000003 -2014-04-20 05:00:00,0.0,1003.342333,4.751775,100.0,11.79583333,2.9419999999999997,237.85420990000003 -2014-04-20 06:00:00,0.0,1003.657667,33.72133333,93.19166667,12.2175,3.054583333,237.85420990000003 -2014-04-20 07:00:00,0.0,1003.724667,129.33725,82.6925,13.74416667,2.418583333,237.85420990000003 -2014-04-20 08:00:00,0.0,1003.5343330000001,109.42458329999998,74.24166667,15.14833333,3.430916667,237.85588081666666 -2014-04-20 09:00:00,0.0,1003.383667,261.7008333,66.78166667,16.94666667,2.46925,237.8545440833333 -2014-04-20 10:00:00,0.0,1003.076667,256.9291667,59.855,18.1075,2.838166667,237.85420990000003 -2014-04-20 11:00:00,0.0,1002.6676669999999,484.4,52.75583333,18.055,2.399666667,237.8521045 -2014-04-20 12:00:00,0.0,1002.252,450.695,49.06583333,19.23333333,2.660666667,237.84974850000003 -2014-04-20 13:00:00,0.0,1002.008,438.40416669999996,46.265,19.7825,2.808166667,237.8493976 -2014-04-20 14:00:00,0.0,1001.884667,371.0525,44.2,19.98416667,2.74,237.847994 -2014-04-20 15:00:00,0.0,1001.625,295.3183333,43.06,20.18833333,2.763833333,237.8476431 -2014-04-20 16:00:00,0.0,1001.184667,242.12591669999998,41.735,19.89166667,2.66325,237.84694130000003 -2014-04-20 17:00:00,0.0,1000.8760000000001,58.88691667,47.45,18.33583333,1.220916667,237.8458886 -2014-04-20 18:00:00,0.0,1000.949,30.42433333,53.07333333,17.70333333,2.530333333,237.84623950000002 -2014-04-20 19:00:00,0.0,1001.597333,3.351891667,53.62583333,16.05166667,1.9689166669999998,237.8458886 -2014-04-20 20:00:00,0.0,1002.339667,0.0,73.98583333,11.77916667,0.398083333,237.8458886 -2014-04-20 21:00:00,0.0,1002.508667,0.0,87.375,9.0465,0.288333333,237.8465904 -2014-04-20 22:00:00,0.0,1002.541333,0.0,94.375,7.205166667,0.36366666700000005,237.8476431 -2014-04-20 23:00:00,0.0,1002.699333,0.0,97.19166667,6.258916667,0.489833333,237.8472922 -2014-04-21 00:00:00,0.0,1002.585,0.0,99.075,5.526916667,0.311,237.8458886 -2014-04-21 01:00:00,0.0,1001.952333,0.0,100.0,4.466083333,0.180583333,237.84623950000002 -2014-04-21 02:00:00,0.0,1001.492333,0.0,100.0,3.50975,0.08033333299999999,237.847994 -2014-04-21 03:00:00,0.0,1001.076667,0.0,100.0,2.9619166669999997,0.059333332999999995,237.84834490000003 -2014-04-21 04:00:00,0.0,1000.552,0.0,100.0,2.594833333,0.163166667,237.847994 -2014-04-21 05:00:00,0.0,1000.391667,3.530566667,100.0,2.39125,0.067916667,237.847994 -2014-04-21 06:00:00,0.0,1000.698,29.01325,100.0,3.3725,0.034666667000000005,237.84974850000003 -2014-04-21 07:00:00,0.0,1000.668,52.15233333,100.0,6.870833332999999,0.1025,237.8500994 -2014-04-21 08:00:00,0.0,1000.3589999999999,108.59333329999998,89.46666667,10.22583333,1.306583333,237.85076776666668 -2014-04-21 09:00:00,0.0,1000.184333,269.395,77.68,13.1175,2.605666667,237.85043358333334 -2014-04-21 10:00:00,0.0,999.8510000000001,415.3858333,66.08166667,15.00083333,1.555833333,237.8500994 -2014-04-21 11:00:00,0.0,999.4016667000001,396.9583333,62.45166667,16.66833333,1.25075,237.847994 -2014-04-21 12:00:00,0.0,999.0676667000001,386.6333333,62.435,16.71833333,2.0565833330000003,237.84625621666666 -2014-04-21 13:00:00,0.0,998.7260000000001,143.6983333,69.46,16.23,2.1815833330000003,237.84388349999998 -2014-04-21 14:00:00,0.0,998.7243332999999,515.3516666999999,60.05083333,16.83166667,2.78475,237.84388349999998 -2014-04-21 15:00:00,0.0,998.6166667000001,314.4983333,65.08916667,16.13666667,3.880833333,237.8435326 -2014-04-21 16:00:00,0.0,998.8246667000001,128.4599167,69.41,15.83666667,3.947833333,237.84247990000003 -2014-04-21 17:00:00,0.0,998.967,59.948,71.28666667,14.83,1.31225,237.84177810000003 -2014-04-21 18:00:00,0.0,999.0986667000001,18.61416667,75.79666667,13.9175,0.8855,237.84177810000003 -2014-04-21 19:00:00,0.0,999.6216667000001,1.833941667,83.28,12.68166667,0.35475,237.84177810000003 -2014-04-21 20:00:00,0.0,1000.522667,0.0,89.39166667,11.95166667,0.72275,237.84177810000003 -2014-04-21 21:00:00,35.92975577,1000.833333,0.0,97.25833333,11.00083333,0.6980833329999999,237.84247990000003 -2014-04-21 22:00:00,2.4547364640000002,1001.098333,0.0,100.0,9.873333333,0.26725,237.84388349999998 -2014-04-21 23:00:00,0.0,1001.35,0.0,100.0,8.019583333,0.15541666699999998,237.84388349999998 -2014-04-22 00:00:00,0.0,1001.656667,0.0,100.0,8.106083332999999,0.004333333,237.84388349999998 -2014-04-22 01:00:00,0.0,1001.974667,0.0,100.0,8.626666667,0.081166667,237.8435326 -2014-04-22 02:00:00,0.0,1002.355667,0.0,100.0,8.95,0.009000000000000001,237.84353259999997 -2014-04-22 03:00:00,0.0,1002.8660000000001,0.0,100.0,9.06,0.009000000000000001,237.84388349999998 -2014-04-22 04:00:00,0.0,1003.1489999999999,0.0,100.0,9.066666667,0.083416667,237.84388349999998 -2014-04-22 05:00:00,0.0,1003.7810000000001,1.932525,100.0,8.941666667,0.027083332999999998,237.84388349999998 -2014-04-22 06:00:00,0.0,1004.572333,24.35358333,100.0,9.475833332999999,0.090083333,237.84421768333334 -2014-04-22 07:00:00,0.0,1005.23,76.37641667,100.0,10.62833333,0.38408333299999997,237.84388349999998 -2014-04-22 08:00:00,0.0,1006.006333,114.96916670000002,94.73333333,11.77833333,0.254416667,237.84488605 -2014-04-22 09:00:00,0.0,1006.664,110.495,90.425,12.98,0.397583333,237.84455186666665 -2014-04-22 10:00:00,0.0,1007.432333,193.0075,87.01666667,13.67166667,0.7593333329999999,237.8458886 -2014-04-22 11:00:00,0.0,1007.757333,282.1233333,81.72333333,15.2,0.5718333329999999,237.84522023333332 -2014-04-22 12:00:00,2.7074017439999998,1007.824667,205.28666669999998,79.17166667,16.0625,1.06475,237.8442176833333 -2014-04-22 13:00:00,5.690521176,1008.198333,130.50333329999998,81.29166667,14.81222728,1.9765833330000002,237.84388349999998 -2014-04-22 14:00:00,18.69268265,1008.640667,53.739,92.05833333,13.50599661,1.3435,237.84283080000003 -2014-04-22 15:00:00,8.399510592,1008.6419999999999,182.5425,90.99166667,14.36166667,1.278916667,237.842129 -2014-04-22 16:00:00,0.0,1008.7080000000001,219.0591667,69.32833333,17.23583333,1.14325,237.84212900000003 -2014-04-22 17:00:00,0.0,1008.766667,58.548,70.42666667,16.8525,1.301583333,237.84177810000003 -2014-04-22 18:00:00,0.0,1009.105667,32.73783333,80.0275,14.78416667,0.598,237.84177810000003 -2014-04-22 19:00:00,0.0,1009.814667,6.290083332999999,93.80833333,11.41083333,0.225416667,237.84044136666668 -2014-04-22 20:00:00,0.0,1010.730333,0.0,98.6,8.4615,0.223583333,237.839773 -2014-04-22 21:00:00,0.0,1011.223333,0.0,99.93333333,7.490583332999999,0.183166667,237.839773 -2014-04-22 22:00:00,0.0,1011.731667,0.0,100.0,6.518833333,0.128083333,237.839773 -2014-04-22 23:00:00,0.0,1012.165667,0.0,100.0,5.720333332999999,0.128833333,237.839773 -2014-04-23 00:00:00,0.0,1012.581667,0.0,100.0,4.8215,0.049666667000000005,237.839773 -2014-04-23 01:00:00,0.0,1012.758333,0.0,100.0,4.1064166669999995,0.068083333,237.84010718333332 -2014-04-23 02:00:00,0.0,1012.949,0.0,100.0,3.978583333,0.06425,237.84077555000002 -2014-04-23 03:00:00,0.0,1013.298667,0.0,100.0,4.098333333,0.015916667,237.84044136666668 -2014-04-23 04:00:00,0.0,1013.773667,0.0,100.0,4.6123333330000005,0.0105,237.84009046666665 -2014-04-23 05:00:00,0.0,1014.173667,11.3211,100.0,6.102416667000001,0.001333333,237.8390712 -2014-04-23 06:00:00,0.0,1014.531667,73.74908333,100.0,7.315416667,0.046833333,237.839773 -2014-04-23 07:00:00,2.4050227680000003,1014.949,88.36916667,100.0,8.270333333,0.166416667,237.839773 -2014-04-23 08:00:00,0.0,1015.2330000000001,114.82333329999999,99.80833333,9.385,0.5465,237.839773 -2014-04-23 09:00:00,0.0,1015.656667,221.75416669999998,92.00833333,11.59083333,0.320833333,237.839773 -2014-04-23 10:00:00,0.0,1015.575333,402.78583330000004,80.44416667,15.76,0.916166667,237.839773 -2014-04-23 11:00:00,0.0,1015.218333,327.9558333,67.4925,18.16583333,0.858,237.839773 -2014-04-23 12:00:00,0.0,1014.835,266.0466667,65.725,18.91916667,0.590166667,237.839773 -2014-04-23 13:00:00,0.0,1014.692,345.3683333,55.5325,20.6575,0.9461666670000001,237.8373501333333 -2014-04-23 14:00:00,0.0,1014.317333,228.1358333,49.21166667,21.57916667,1.158083333,237.83666505000005 -2014-04-23 15:00:00,0.0,1013.992,119.1925,54.8875,20.43666667,0.8240833329999999,237.83633086666669 -2014-04-23 16:00:00,0.0,1013.943333,79.00083333,60.08333333,18.695,0.6809999999999999,237.83564578333335 -2014-04-23 17:00:00,0.0,1014.098333,66.17333333,61.15333333,17.57083333,3.5186666669999997,237.83566250000004 -2014-04-23 18:00:00,0.0,1014.175,37.79591667,66.75416667,15.45333333,1.664916667,237.8349607 -2014-04-23 19:00:00,0.0,1014.605333,5.383875,85.18333333,11.84083333,0.227833333,237.8335571 -2014-04-23 20:00:00,0.0,1015.158,0.0,95.5,8.994166667,0.448666667,237.8335571 -2014-04-23 21:00:00,0.0,1015.190667,0.0,98.94166667,8.032916667,0.1735,237.8335571 -2014-04-23 22:00:00,0.0,1015.400333,0.0,99.98333333,6.93275,0.18283333300000001,237.8335571 -2014-04-23 23:00:00,0.0,1015.4333330000001,0.0,100.0,6.17675,0.111,237.8335571 -2014-04-24 00:00:00,0.0,1015.2926669999999,0.0,100.0,5.173416667,0.048,237.8335571 -2014-04-24 01:00:00,0.0,1015.050667,0.0,100.0,4.325833333,0.11308333300000001,237.83390799999998 -2014-04-24 02:00:00,0.0,1014.975,0.0,100.0,4.230333333,0.12741666699999998,237.83531159999998 -2014-04-24 03:00:00,0.0,1014.85,0.0,100.0,4.49925,0.0335,237.83566250000004 -2014-04-24 04:00:00,0.0,1014.7760000000001,0.019716667,100.0,4.60125,0.049083333,237.83566250000004 -2014-04-24 05:00:00,0.0,1014.7239999999999,9.663616667000001,100.0,3.728166667,0.0185,237.83566250000004 -2014-04-24 06:00:00,0.0,1015.115667,51.11283333,100.0,5.855083333,0.013333333000000001,237.8349607 -2014-04-24 07:00:00,0.0,1015.473333,163.8116667,94.65,10.08833333,0.26608333300000003,237.83390800000004 -2014-04-24 08:00:00,0.0,1015.517333,110.68166670000001,81.45833333,13.07416667,1.145666667,237.83427561666667 -2014-04-24 09:00:00,0.0,1015.467,263.8475,75.465,15.0625,1.0045,237.83357381666667 -2014-04-24 10:00:00,0.0,1015.043667,398.15416669999996,70.5025,18.09916667,1.287333333,237.8335571 -2014-04-24 11:00:00,0.0,1014.452,450.84083330000004,60.36083333,20.33166667,1.212666667,237.8335571 -2014-04-24 12:00:00,0.0,1013.818667,451.955,53.44666667,21.83166667,1.185416667,237.83155200000002 -2014-04-24 13:00:00,0.0,1013.0110000000001,368.0366667,52.1775,22.51416667,1.442166667,237.8308502 -2014-04-24 14:00:00,0.0,1012.386333,450.3975,43.97583333,22.93166667,2.117333333,237.8297975 -2014-04-24 15:00:00,0.0,1011.335667,302.7033333,41.37083333,23.02083333,2.40275,237.82839395 -2014-04-24 16:00:00,0.0,1010.951667,148.88416669999998,42.95,22.7875,2.348666667,237.82734130000003 -2014-04-24 17:00:00,0.0,1010.3439999999999,53.35633333,43.905,22.045,2.507083333,237.82769218333337 -2014-04-24 18:00:00,0.0,1010.173667,28.64575,49.18166667,20.3875,1.120833333,237.82734130000003 -2014-04-24 19:00:00,0.0,1010.416667,2.759983333,66.4575,17.57583333,1.257416667,237.82734130000003 -2014-04-24 20:00:00,0.0,1010.615,0.0,82.14833333,16.52166667,1.2165,237.82734130000003 -2014-04-24 21:00:00,0.0,1010.659,0.0,90.41666667,13.9525,0.510083333,237.82734130000003 -2014-04-24 22:00:00,0.0,1010.5426669999999,0.0,95.275,13.73416667,0.949583333,237.82567029999998 -2014-04-24 23:00:00,0.0,1010.4,0.0,97.8,11.0,0.369166667,237.8253361 -2014-04-25 00:00:00,0.0,1010.092667,0.0,93.51666667,10.1325,0.4575,237.82667290000003 -2014-04-25 01:00:00,0.0,1009.693333,0.0,95.91666667,8.643333333,0.272666667,237.82734130000003 -2014-04-25 02:00:00,0.0,1009.160667,0.0,96.8,9.0325,0.259083333,237.82839395 -2014-04-25 03:00:00,0.0,1008.975,0.0,98.76666667,9.436666667,0.192,237.83253783333336 -2014-04-25 04:00:00,0.0,1008.7339999999999,0.05915,100.0,8.839166667,0.34975,237.8376843166667 -2014-04-25 05:00:00,0.0,1008.5169999999999,11.67425,100.0,9.255833333,0.24675,237.83014839999998 -2014-04-25 06:00:00,0.0,1008.616667,64.2635,99.98333333,10.9475,1.383666667,237.82600449999998 -2014-04-25 07:00:00,0.0,1008.55,141.6275,96.33333333,12.66166667,2.813166667,237.82221151666667 -2014-04-25 08:00:00,0.0,1008.666333,139.1716667,90.99166667,14.38083333,2.597583333,237.8308502 -2014-04-25 09:00:00,0.0,1008.575,298.2175,83.15333333,16.4075,2.667833333,237.8318861833333 -2014-04-25 10:00:00,0.0,1008.202667,396.2408333,74.93583333,18.71333333,2.3483333330000002,237.83014839999998 -2014-04-25 11:00:00,0.0,1007.544,463.93666669999993,65.30333333,20.52833333,2.2061666669999997,237.82839395 -2014-04-25 12:00:00,0.0,1006.926,517.0725,58.1025,21.985,2.2454166669999998,237.82563693333336 -2014-04-25 13:00:00,0.0,1006.510667,419.51,52.85,22.96833333,1.997916667,237.82323080000006 -2014-04-25 14:00:00,0.0,1006.1676669999999,352.3566667,49.15083333,23.65,1.4756666669999998,237.82189400000001 -2014-04-25 15:00:00,0.0,1005.9010000000001,351.1666667,47.99583333,23.60333333,1.945,237.82122559999996 -2014-04-25 16:00:00,0.0,1005.501667,248.36,50.96916667,23.5725,1.8481666669999999,237.81982206666666 -2014-04-25 17:00:00,0.0,1005.348333,90.62666667,53.68416667,22.43,2.6583333330000003,237.81912030000004 -2014-04-25 18:00:00,0.0,1005.575,41.84133333,66.765,18.72916667,0.927416667,237.8187861166667 -2014-04-25 19:00:00,0.0,1005.9730000000001,5.008733333,87.065,15.69833333,0.22058333300000002,237.81778356666666 -2014-04-25 20:00:00,0.0,1006.399333,0.0,96.01666667,12.84083333,0.198916667,237.8171152 -2014-04-25 21:00:00,0.0,1006.624667,0.0,98.25833333,11.58666667,0.21875,237.81912030000004 -2014-04-25 22:00:00,0.0,1006.467,0.0,99.79166667,10.6675,0.05475,237.81912030000004 -2014-04-25 23:00:00,0.0,1006.756333,0.0,100.0,9.9525,0.10725,237.81912030000004 -2014-04-26 00:00:00,0.0,1007.406667,0.0,99.61666667,11.47333333,0.18866666699999998,237.81912030000004 -2014-04-26 01:00:00,17.84913379,1007.7230000000001,0.0,86.70833333,13.53333333,0.549583333,237.82087471666662 -2014-04-26 02:00:00,7.57259556,1007.934333,0.0,88.23333333,13.805,0.603,237.81947118333332 -2014-04-26 03:00:00,2.518946376,1007.178333,0.0,96.5,13.10166667,0.729916667,237.81947118333335 -2014-04-26 04:00:00,0.0,1007.165,0.039433333,97.13333333,12.83416667,0.5485,237.81982206666666 -2014-04-26 05:00:00,0.0,1007.49,7.671825,99.85833333,11.90416667,0.215,237.82291328333335 -2014-04-26 06:00:00,0.0,1007.7,52.45391667,99.9,12.2675,0.4345,237.82122559999996 -2014-04-26 07:00:00,0.0,1007.924667,87.64,95.23333333,14.03333333,0.563916667,237.82122559999996 -2014-04-26 08:00:00,0.0,1007.891667,128.17,92.075,14.63,0.602833333,237.82222819999996 -2014-04-26 09:00:00,0.0,1007.958333,94.33666667,91.04166667,15.16083333,0.539416667,237.82358168333337 -2014-04-26 10:00:00,0.0,1007.659667,150.0333333,93.81666667,14.9675,0.48758333299999995,237.8184519166667 -2014-04-26 11:00:00,0.0,1007.318333,224.8225,88.35833333,15.87166667,0.59375,237.81880281666668 -2014-04-26 12:00:00,0.0,1006.693667,450.47333330000004,78.8375,17.77916667,0.655666667,237.82393256666668 -2014-04-26 13:00:00,0.0,1006.035333,396.62,71.19333333,18.22916667,1.28075,237.82120891666668 -2014-04-26 14:00:00,0.0,1005.087,182.7991667,72.85,19.39333333,0.8515,237.82050715 -2014-04-26 15:00:00,0.0,1004.5426669999999,166.7166667,68.20166667,19.4625,0.771833333,237.8171152 -2014-04-26 16:00:00,0.0,1003.985667,47.77383333,74.225,18.62083333,1.009666667,237.8171152 -2014-04-26 17:00:00,2.65333572,1003.543,32.81016667,83.48333333,17.15583333,0.41583333299999997,237.8171152 -2014-04-26 18:00:00,0.0,1003.390667,15.16316667,84.725,15.99583333,0.9813333329999999,237.8171152 -2014-04-26 19:00:00,0.0,1003.6569999999999,2.5636333330000003,86.74166667,14.91333333,0.865833333,237.81811774999997 -2014-04-26 20:00:00,0.0,1003.827,0.0,91.58333333,13.56,0.721916667,237.81912030000004 -2014-04-26 21:00:00,0.0,1003.259667,0.0,95.525,12.76,0.271916667,237.81912030000004 -2014-04-26 22:00:00,0.0,1002.776333,0.0,99.625,12.09916667,0.261,237.81912030000004 -2014-04-26 23:00:00,0.0,1002.418667,0.0,100.0,9.993333332999999,0.210666667,237.82087471666662 -2014-04-27 00:00:00,0.0,1002.0260000000001,0.0,100.0,9.665833333,0.09908333300000001,237.82122559999996 -2014-04-27 01:00:00,0.0,1001.7,0.0,100.0,9.928333333,0.109833333,237.82189400000001 -2014-04-27 02:00:00,0.0,1001.551,0.0,100.0,10.96416667,0.328833333,237.8225624 -2014-04-27 03:00:00,140.1672165,1001.648333,0.0,100.0,11.63166667,0.809416667,237.8222448833333 -2014-04-27 04:00:00,67.69901894,1001.510667,0.0,100.0,11.30083333,0.91925,237.88231496666666 -2014-04-27 05:00:00,15.43633363,1001.448667,1.893091667,100.0,11.10416667,0.7416666670000001,237.91805621666666 -2014-04-27 06:00:00,30.14290051,1001.616333,12.561325,100.0,10.72833333,0.530666667,237.92422196666666 -2014-04-27 07:00:00,46.60968144,1001.807667,29.77625,100.0,10.95,0.304833333,237.9283324666667 -2014-04-27 08:00:00,20.54797786,1002.0906669999999,68.88233333,99.85,11.09083333,0.776333333,237.93180800000002 -2014-04-27 09:00:00,2.672425392,1002.507333,76.13666667,99.53333333,11.25666667,0.7390000000000001,237.93250980000002 -2014-04-27 10:00:00,2.57824464,1002.965,103.0575,98.34166667,11.59833333,0.661333333,237.93145710000002 -2014-04-27 11:00:00,0.0,1003.05,232.8783333,92.1,12.94333333,1.08725,237.92900086666668 -2014-04-27 12:00:00,0.0,1003.2739999999999,191.2633333,89.05833333,13.95166667,0.7739166670000001,237.9276307 -2014-04-27 13:00:00,0.0,1003.399667,195.5683333,82.77,13.82333333,0.864833333,237.92594301666668 -2014-04-27 14:00:00,0.0,1003.234667,105.70583329999998,85.075,13.25166667,0.67925,237.9238544 -2014-04-27 15:00:00,4.883689848,1003.065667,105.58333329999999,85.11666667,13.33833333,0.204666667,237.92218340000002 -2014-04-27 16:00:00,0.0,1003.349667,110.845,83.40416667,13.3525,1.091583333,237.92113075 -2014-04-27 17:00:00,0.0,1003.4910000000001,81.725,88.675,13.23333333,1.1803333329999999,237.9194097 -2014-04-27 18:00:00,0.0,1003.574,44.44475,92.45,12.94666667,0.7275,237.91772201666666 -2014-04-27 19:00:00,0.0,1004.14,5.245158333,97.69166667,11.7875,0.30925,237.91596759999996 -2014-04-27 20:00:00,0.0,1004.424667,0.0,100.0,10.86833333,0.133416667,237.91396239999997 -2014-04-27 21:00:00,0.0,1004.3919999999999,0.0,100.0,10.07,0.072666667,237.91220798333333 -2014-04-27 22:00:00,0.0,1004.673667,0.0,100.0,9.379166667,0.089333333,237.9111553 -2014-04-27 23:00:00,0.0,1004.908333,0.0,100.0,9.013333333,0.168583333,237.9097517 -2014-04-28 00:00:00,0.0,1004.8660000000001,0.0,100.0,9.2425,0.07925,237.90669390000002 -2014-04-28 01:00:00,0.0,1004.975,0.0,100.0,9.800833333,0.109583333,237.9056412 -2014-04-28 02:00:00,0.0,1004.6593330000001,0.0,100.0,9.7975,0.22625,237.90463865 -2014-04-28 03:00:00,0.0,1004.509333,0.0,100.0,9.7875,0.0,237.90397028333334 -2014-04-28 04:00:00,0.0,1004.483333,0.019716667,100.0,9.758333333,0.34566666700000004,237.9025834 -2014-04-28 05:00:00,0.0,1004.682,2.918766667,100.0,9.8,0.308333333,237.9015307 -2014-04-28 06:00:00,0.0,1004.966,20.98191667,100.0,10.085,0.10391666699999999,237.90052815 -2014-04-28 07:00:00,0.0,1005.174,27.29241667,100.0,10.43583333,0.197583333,237.89952560000003 -2014-04-28 08:00:00,0.0,1005.291667,70.08341667,100.0,11.03833333,0.2435,237.89882379999997 -2014-04-28 09:00:00,0.0,1005.3739999999999,119.4725,97.8,11.94583333,0.411916667,237.89742019999997 -2014-04-28 10:00:00,5.188750896,1005.674333,131.01083329999997,88.54166667,12.53833333,0.97675,237.89742019999997 -2014-04-28 11:00:00,0.0,1005.6916669999999,96.48333333,87.225,12.7125,1.6120833330000002,237.89504748333331 -2014-04-28 12:00:00,0.0,1005.8330000000001,93.24583333,89.84166667,12.39,1.80525,237.89297551666667 -2014-04-28 13:00:00,0.0,1005.924333,149.8991667,90.50833333,12.62333333,1.765166667,237.8913046 -2014-04-28 14:00:00,0.0,1005.9333330000001,92.45833333,87.675,13.0025,1.6205833330000001,237.8913046 -2014-04-28 15:00:00,0.0,1005.742667,67.12183333,91.30833333,13.00333333,1.7391666669999999,237.889901 -2014-04-28 16:00:00,0.0,1005.758333,38.80858333,94.3,12.91,1.59825,237.88919919999998 -2014-04-28 17:00:00,0.0,1005.716667,35.08166667,95.875,13.1,1.5236666669999999,237.88919919999998 -2014-04-28 18:00:00,0.0,1005.990667,21.71108333,95.33333333,13.42166667,0.49908333299999996,237.8877956 -2014-04-28 19:00:00,0.0,1006.3739999999999,1.636716667,97.81666667,13.2475,0.108666667,237.8867596166667 -2014-04-28 20:00:00,4.948902192,1006.681333,0.0,99.40833333,12.805,0.1445,237.88609125000002 -2014-04-28 21:00:00,0.0,1007.007667,0.0,100.0,12.63083333,0.020666667,237.8850887 -2014-04-28 22:00:00,0.0,1007.099667,0.0,100.0,12.445,0.06308333299999999,237.8850887 -2014-04-28 23:00:00,0.0,1007.258333,0.0,100.0,12.29083333,0.042083333,237.884036 -2014-04-29 00:00:00,0.0,1007.1676669999999,0.0,100.0,11.94,0.04825,237.8829833 -2014-04-29 01:00:00,0.0,1006.925667,0.0,100.0,12.11333333,0.1865,237.88164656666663 -2014-04-29 02:00:00,0.0,1006.8660000000001,0.0,100.0,12.22666667,0.227833333,237.88097819999993 -2014-04-29 03:00:00,7.4153362320000005,1006.8589999999999,0.0,100.0,12.20083333,0.18833333300000002,237.88097819999993 -2014-04-29 04:00:00,19.30717195,1006.783667,0.019716667,100.0,12.13416667,0.11800000000000001,237.88097819999993 -2014-04-29 05:00:00,0.0,1006.84,3.155133333,100.0,12.13583333,0.0,237.88097819999993 -2014-04-29 06:00:00,0.0,1007.059,16.40741667,100.0,12.47666667,0.006083333000000001,237.87922369999998 -2014-04-29 07:00:00,17.10440734,1007.3739999999999,26.0295,100.0,12.75083333,0.21716666699999998,237.87887279999998 -2014-04-29 08:00:00,2.540005776,1007.499333,45.37341667,100.0,12.97,0.284416667,237.87887279999998 -2014-04-29 09:00:00,0.0,1007.640667,75.72716667,100.0,13.6875,0.197083333,237.87853861666667 -2014-04-29 10:00:00,0.0,1007.784,117.7989167,98.03333333,14.57166667,1.131166667,237.87787024999997 -2014-04-29 11:00:00,0.0,1007.658333,77.8925,96.23333333,14.6825,1.140916667,237.87788696666667 -2014-04-29 12:00:00,45.96853673,1007.558667,56.40425,99.20833333,14.3375,1.073083333,237.87787024999997 -2014-04-29 13:00:00,46.20296683,1007.467333,95.76583333,98.00833333,14.19833333,1.176833333,237.87992549999998 -2014-04-29 14:00:00,19.63248595,1007.009333,150.9725,97.35833333,14.38333333,0.331916667,237.88266583333333 -2014-04-29 15:00:00,0.0,1006.676667,260.46416669999996,90.08333333,15.9575,0.580833333,237.8870938 -2014-04-29 16:00:00,0.0,1006.259667,207.07166669999998,89.125,17.3875,0.481333333,237.88919919999998 -2014-04-29 17:00:00,0.0,1006.05,77.02916667,89.75833333,16.27333333,0.486833333,237.88955009999998 -2014-04-29 18:00:00,0.0,1005.934,24.29466667,93.33333333,15.16333333,0.742833333,237.89095369999998 -2014-04-29 19:00:00,2.477500392,1006.040667,6.054533332999999,95.00833333,14.28833333,0.51125,237.8913046 -2014-04-29 20:00:00,4.854612192,1006.432667,0.019716667,99.575,13.17583333,0.224583333,237.89197296666666 -2014-04-29 21:00:00,7.404058728,1006.267333,0.0,100.0,12.70416667,0.252583333,237.8933097 -2014-04-29 22:00:00,0.0,1006.299333,0.0,100.0,11.78416667,0.113916667,237.8950642 -2014-04-29 23:00:00,0.0,1006.217333,0.0,100.0,11.49083333,0.025,237.89708601666663 -2014-04-30 00:00:00,0.0,1005.835333,0.0,100.0,11.14333333,0.024583333,237.89812200000003 -2014-04-30 01:00:00,0.0,1005.674333,0.0,100.0,10.4225,0.0,237.89952560000003 -2014-04-30 02:00:00,0.0,1005.568,0.0,100.0,9.776666667,0.02625,237.89777109999997 -2014-04-30 03:00:00,0.0,1005.525,0.0,100.0,10.51666667,0.146416667,237.89952560000003 -2014-04-30 04:00:00,0.0,1005.250333,0.039433333,100.0,11.0175,0.12091666699999999,237.89952560000003 -2014-04-30 05:00:00,0.0,1005.15,3.312983333,100.0,11.19583333,0.140416667,237.90052814999999 -2014-04-30 06:00:00,0.0,1005.2489999999999,13.90258333,100.0,11.72583333,0.5651666670000001,237.9015307 -2014-04-30 07:00:00,0.0,1005.550667,34.43066667,100.0,12.1975,0.344083333,237.9015307 -2014-04-30 08:00:00,0.0,1005.848333,52.101000000000006,100.0,12.5775,1.03325,237.9022325 -2014-04-30 09:00:00,0.0,1006.0823330000001,69.35833333,100.0,12.97833333,1.319083333,237.90328520000003 -2014-04-30 10:00:00,0.0,1006.3989999999999,103.1333333,97.55,13.4275,1.018166667,237.9036361 -2014-04-30 11:00:00,0.0,1006.458667,238.18083330000002,91.53333333,15.0925,0.5551666670000001,237.90328520000003 -2014-04-30 12:00:00,0.0,1006.200667,394.6016667,84.075,17.18583333,0.78375,237.9032852 -2014-04-30 13:00:00,0.0,1006.0426669999999,486.47083330000004,78.27416667,19.16583333,0.8009166670000001,237.90154741666666 -2014-04-30 14:00:00,0.0,1005.817667,415.2866667,74.54083333,18.44583333,2.694,237.89952560000003 -2014-04-30 15:00:00,0.0,1005.5169999999999,383.635,72.57333333,18.69333333,2.549,237.89952560000003 -2014-04-30 16:00:00,0.0,1005.433667,302.47,68.96166667,18.755,2.238916667,237.89812199999997 -2014-04-30 17:00:00,0.0,1005.2260000000001,100.24525,69.8975,18.55083333,2.25425,237.89742019999997 -2014-04-30 18:00:00,0.0,1005.2410000000001,42.13533333,76.64666667,16.18333333,0.687,237.89742019999997 -2014-04-30 19:00:00,0.0,1005.307333,7.117658333,91.875,12.96083333,0.34725,237.89641765000002 -2014-04-30 20:00:00,0.0,1005.898,0.05915,99.73333333,11.20083333,0.30175,237.8954151 -2014-04-30 21:00:00,0.0,1006.481667,0.0,100.0,11.085,0.34433333299999996,237.8954151 -2014-04-30 22:00:00,0.0,1006.575,0.0,100.0,11.64083333,0.082833333,237.8954151 -2014-04-30 23:00:00,0.0,1006.616667,0.0,100.0,11.37166667,0.07591666700000001,237.89366059999998 -2014-01-05 00:00:00,0.0,1006.799667,0.0,100.0,11.00166667,0.230833333,238.01030266666666 -2014-01-05 01:00:00,0.0,1006.701,0.0,100.0,10.67916667,0.11358333300000001,238.009018 -2014-01-05 02:00:00,0.0,1006.467,0.0,100.0,10.28166667,0.15925,238.00934699999996 -2014-01-05 03:00:00,0.0,1006.250667,0.0,100.0,10.38166667,0.03825,238.00868899999998 -2014-01-05 04:00:00,0.0,1006.117,0.1183,100.0,11.13083333,0.28925,238.00901799999997 -2014-01-05 05:00:00,0.0,1006.232333,4.634758333,100.0,11.1675,0.29025,238.00998933333332 -2014-01-05 06:00:00,0.0,1006.4656669999999,25.241999999999997,99.80833333,11.62583333,0.27399999999999997,238.00998933333332 -2014-01-05 07:00:00,0.0,1006.766333,67.14516667,98.08333333,12.70083333,0.46433333299999996,238.00967599999998 -2014-01-05 08:00:00,0.0,1006.8,88.52083333,95.325,13.36916667,0.556666667,238.00998933333332 -2014-01-05 09:00:00,0.0,1007.04,141.9016667,89.91666667,14.14333333,0.549666667,238.00967599999998 -2014-01-05 10:00:00,0.0,1007.208667,204.925,84.20333333,14.96083333,0.498333333,238.00901799999997 -2014-01-05 11:00:00,0.0,1007.018333,494.06,73.2975,16.99916667,0.71575,238.00901799999997 -2014-01-05 12:00:00,0.0,1006.501667,395.92,65.53916667,18.46166667,0.8251666670000001,238.00835999999995 -2014-01-05 13:00:00,0.0,1005.993,213.8966667,68.1775,17.86583333,0.85725,238.00835999999995 -2014-01-05 14:00:00,0.0,1005.625667,273.35583330000003,70.86833333,17.91,1.9219166669999999,238.00835999999995 -2014-01-05 15:00:00,0.0,1005.335,300.8775,59.40416667,18.2425,1.96825,238.00770199999997 -2014-01-05 16:00:00,0.0,1004.793,109.34175,69.56333333,17.10833333,2.021416667,238.008031 -2014-01-05 17:00:00,0.0,1004.575,56.29925,78.17083333,15.34083333,1.7485,238.006762 -2014-01-05 18:00:00,0.0,1004.616667,44.28491667,76.995,15.00166667,0.62325,238.00770199999997 -2014-01-05 19:00:00,0.0,1004.7080000000001,8.5386,87.37,13.36166667,0.371833333,238.00835999999995 -2014-01-05 20:00:00,0.0,1005.248333,0.019716667,97.26666667,12.0575,0.21916666699999998,238.00868899999998 -2014-01-05 21:00:00,0.0,1005.789,0.0,94.30833333,12.50916667,0.84725,238.008031 -2014-01-05 22:00:00,0.0,1006.125,0.0,96.20833333,12.70833333,0.47375,238.009018 -2014-01-05 23:00:00,0.0,1006.216333,0.0,95.99166667,12.07666667,0.169166667,238.009018 -2014-02-05 00:00:00,0.0,1006.117667,0.0,98.975,11.35083333,0.061833333,238.0548824 -2014-02-05 01:00:00,0.0,1005.7669999999999,0.0,100.0,11.01916667,0.111416667,238.05488239999997 -2014-02-05 02:00:00,0.0,1005.650667,0.0,100.0,10.83583333,0.0265,238.05488239999997 -2014-02-05 03:00:00,0.0,1005.625,0.0,100.0,10.74583333,0.024916667000000003,238.0548824 -2014-02-05 04:00:00,0.0,1005.873,0.078866667,100.0,10.7075,0.08025,238.05488239999997 -2014-02-05 05:00:00,0.0,1006.381667,10.1556,100.0,10.38666667,0.52275,238.05488239999997 -2014-02-05 06:00:00,0.0,1006.84,50.30025,99.95833333,10.9275,0.292416667,238.05462859999997 -2014-02-05 07:00:00,0.0,1007.498,116.3925,94.65833333,12.00416667,1.135666667,238.05462859999997 -2014-02-05 08:00:00,0.0,1007.990333,160.38166669999998,89.28333333,12.64833333,2.127,238.0538672 -2014-02-05 09:00:00,0.0,1008.681,181.3875,86.34166667,13.11083333,2.33675,238.0536134 -2014-02-05 10:00:00,0.0,1009.123667,267.59833330000004,81.505,14.3225,1.70275,238.05313 -2014-02-05 11:00:00,0.0,1009.250333,302.58666669999997,74.02416667,15.35,2.00375,238.05313 -2014-02-05 12:00:00,6.254472816,1009.539667,76.02233333,90.23583333,13.38416667,3.01475,238.0533838 -2014-02-05 13:00:00,0.0,1009.6089999999999,109.19416670000001,91.825,13.41916667,2.152083333,238.05313 -2014-02-05 14:00:00,0.0,1009.807667,73.74675,94.24166667,13.47416667,2.2465833330000002,238.05412099999998 -2014-02-05 15:00:00,0.0,1010.223333,85.12816667,91.38333333,13.46083333,2.872,238.0536134 -2014-02-05 16:00:00,11.56311022,1010.523667,35.41358333,92.8,12.3875,3.492,238.0538672 -2014-02-05 17:00:00,0.0,1011.196667,22.30258333,91.74166667,11.47916667,3.416083333,238.05337169999999 -2014-02-05 18:00:00,0.0,1012.123,20.705125,90.725,10.60083333,4.19275,238.05288830000003 -2014-02-05 19:00:00,0.0,1012.972,1.5184166669999999,92.35,9.385833332999999,3.508833333,238.0526466 -2014-02-05 20:00:00,0.0,1013.913,0.0,93.25833333,8.401666667,3.32275,238.05240489999997 -2014-02-05 21:00:00,0.0,1014.7389999999999,0.0,95.46666667,7.615333333,3.185166667,238.05216319999997 -2014-02-05 22:00:00,0.0,1015.182667,0.0,97.54166667,7.172999999999999,2.9755833330000003,238.05216319999997 -2014-02-05 23:00:00,0.0,1015.399667,0.0,93.44166667,7.062666667,3.3218333330000003,238.05190941666663 -2014-03-05 00:00:00,0.0,1015.5906669999999,0.0,90.29166667,6.693,3.464,238.0153997 -2014-03-05 01:00:00,0.0,1015.815,0.0,89.45,6.074,3.29325,238.0151459 -2014-03-05 02:00:00,0.0,1016.141333,0.0,88.84166667,5.664333332999999,2.39875,238.0148921 -2014-03-05 03:00:00,0.0,1016.25,0.0,93.19166667,4.857416667,0.4375,238.0148921 -2014-03-05 04:00:00,0.0,1016.673333,0.35495833299999996,99.49166667,3.4668333330000003,0.142833333,238.0148921 -2014-03-05 05:00:00,0.0,1017.106667,18.85549167,100.0,3.02375,0.122,238.01387696666666 -2014-03-05 06:00:00,0.0,1017.558,49.36108333,95.21666667,5.071416667,0.70475,238.01362318333335 -2014-03-05 07:00:00,0.0,1017.9810000000001,70.48416667,88.53333333,6.319916667,1.97675,238.01362318333335 -2014-03-05 08:00:00,0.0,1018.439667,81.3575,85.975,6.720916667000001,2.6301666669999997,238.01362318333335 -2014-03-05 09:00:00,0.0,1018.641667,299.425,80.535,7.9105,2.929166667,238.01336940000002 -2014-03-05 10:00:00,0.0,1018.559,315.6533333,73.495,9.065833332999999,2.967083333,238.01362318333338 -2014-03-05 11:00:00,0.0,1018.666667,274.79083330000003,66.06083333,10.17333333,3.372,238.01336940000002 -2014-03-05 12:00:00,0.0,1018.525,422.71833330000004,58.545,10.82333333,3.3855,238.01336940000002 -2014-03-05 13:00:00,0.0,1018.4093330000001,464.135,51.0575,11.84666667,3.71525,238.01336940000002 -2014-03-05 14:00:00,0.0,1018.1089999999999,469.25083330000007,46.34,12.43833333,3.0699166669999998,238.01312770000004 -2014-03-05 15:00:00,0.0,1017.9093330000001,345.45,43.28166667,12.80666667,3.094166667,238.012886 -2014-03-05 16:00:00,0.0,1017.675,274.8730833,42.0675,13.05416667,2.8138333330000003,238.0121609 -2014-03-05 17:00:00,0.0,1017.6669999999999,64.21333333,40.52583333,12.99416667,3.00125,238.01239050000004 -2014-03-05 18:00:00,0.0,1017.724667,26.56325,41.55,12.19083333,2.308083333,238.0116654 -2014-03-05 19:00:00,0.0,1018.056667,10.72720833,68.15333333,9.19775,0.84875,238.0111578 -2014-03-05 20:00:00,0.0,1018.473333,0.13801666699999998,90.11666667,4.4036666669999995,0.282916667,238.01039640000002 -2014-03-05 21:00:00,0.0,1018.857,0.0,94.24166667,2.7206666669999997,0.175083333,238.01015470000002 -2014-03-05 22:00:00,0.0,1019.249333,0.0,96.78333333,1.749416667,0.108916667,238.01015470000002 -2014-03-05 23:00:00,0.0,1019.474667,0.0,98.21666667,0.893916667,0.231666667,238.0089462 -2014-04-05 00:00:00,0.0,1019.208667,0.0,99.76666667,0.5539166670000001,0.198166667,237.9448413 -2014-04-05 01:00:00,0.0,1019.018333,0.0,100.0,0.061166667,0.135083333,237.94449040000003 -2014-04-05 02:00:00,0.0,1018.733333,0.0,100.0,-0.5591666670000001,0.007333333,237.94378860000003 -2014-04-05 03:00:00,0.0,1018.758667,0.0,100.0,-0.824416667,0.08658333300000001,237.9448413 -2014-04-05 04:00:00,0.0,1018.7,0.414225,100.0,-1.0453333329999999,0.027333332999999998,237.94343770000003 -2014-04-05 05:00:00,0.0,1018.8580000000001,14.972825,100.0,-0.603,0.0005,237.94378860000003 -2014-04-05 06:00:00,0.0,1019.056667,88.51383333,98.33333333,2.266916667,0.043,237.94308680000003 -2014-04-05 07:00:00,0.0,1019.159,200.8825,83.36166667,5.467083333,0.40525,237.94273590000003 -2014-04-05 08:00:00,0.0,1019.191,112.4491667,74.81416667,8.603916667,0.605583333,237.9448413 -2014-04-05 09:00:00,0.0,1019.118667,246.7791667,65.48666667,11.02166667,0.747083333,237.94273590000003 -2014-04-05 10:00:00,0.0,1018.6676669999999,417.34,61.00166667,11.9475,1.2819999999999998,237.9448413 -2014-04-05 11:00:00,0.0,1018.2603330000001,463.9833333000001,57.9075,12.375,1.1510833329999999,237.94241843333336 -2014-04-05 12:00:00,0.0,1017.667333,489.6675,54.73083333,13.7225,1.05325,237.94273590000003 -2014-04-05 13:00:00,0.0,1017.161667,463.1783333000001,53.30416667,15.585,1.01375,237.94173335000002 -2014-04-05 14:00:00,0.0,1016.501333,465.22583330000003,50.1525,15.1925,1.257083333,237.94173335000002 -2014-04-05 15:00:00,0.0,1016.051,349.71416669999996,49.11,16.23833333,0.764,237.94139916666668 -2014-04-05 16:00:00,0.0,1015.676667,221.935,50.8025,16.40416667,0.9099166670000001,237.9403799 -2014-04-05 17:00:00,0.0,1015.225667,100.345,49.94,16.23333333,0.540416667,237.93967810000004 -2014-04-05 18:00:00,0.0,1015.1669999999999,44.94175,53.50583333,15.44666667,0.514333333,237.9396781 -2014-04-05 19:00:00,0.0,1015.1410000000001,8.026725,70.8,11.42,0.8351666670000001,237.93897630000004 -2014-04-05 20:00:00,0.0,1015.665333,0.09858333300000001,84.74083333,9.559166667000001,1.296666667,237.9386254 -2014-04-05 21:00:00,0.0,1015.7919999999999,0.0,93.825,7.722083333,0.716,237.9386254 -2014-04-05 22:00:00,0.0,1015.658333,0.0,93.80833333,6.0995,0.40475,237.93795703333333 -2014-04-05 23:00:00,0.0,1015.633,0.0,97.40833333,4.455916666999999,0.191583333,237.9366203 -2014-05-05 00:00:00,0.0,1015.434333,0.0,99.49166667,4.415583333,0.1075,237.83566250000004 -2014-05-05 01:00:00,0.0,1014.993667,0.0,100.0,3.681833333,0.151416667,237.83566250000004 -2014-05-05 02:00:00,0.0,1014.567667,0.0,100.0,3.1075,0.137333333,237.83566250000004 -2014-05-05 03:00:00,0.0,1014.442333,0.0,100.0,1.876333333,0.07641666700000001,237.83566250000004 -2014-05-05 04:00:00,0.0,1014.416667,0.41416666700000004,100.0,1.250666667,0.065,237.83566250000004 -2014-05-05 05:00:00,0.0,1014.54,16.60849167,100.0,1.2935,0.0315,237.83531160000004 -2014-05-05 06:00:00,0.0,1014.741667,84.02975,97.33333333,4.253416667,0.0065,237.83390800000004 -2014-05-05 07:00:00,0.0,1014.600667,189.3733333,81.99166667,6.560416667,0.824916667,237.83390799999998 -2014-05-05 08:00:00,0.0,1014.5666669999999,128.0125,77.575,8.53375,0.805,237.83566250000004 -2014-05-05 09:00:00,0.0,1014.144333,306.915,72.85083333,11.5525,0.595666667,237.83566250000004 -2014-05-05 10:00:00,0.0,1013.543,415.58416669999997,65.71666667,13.395,1.047166667,237.83531159999998 -2014-05-05 11:00:00,0.0,1013.243333,351.7033333,63.28583333,14.59333333,1.048166667,237.83390800000004 -2014-05-05 12:00:00,0.0,1012.7926669999999,429.77666669999996,60.675,16.03833333,1.4233333330000002,237.8335571 -2014-05-05 13:00:00,0.0,1012.302,401.1991667,58.5275,16.65166667,1.3155,237.83288873333336 -2014-05-05 14:00:00,0.0,1011.7843330000001,396.025,55.5025,17.2075,1.58025,237.8308502 -2014-05-05 15:00:00,0.0,1011.236667,387.415,54.4625,18.0525,1.470666667,237.82874483333333 -2014-05-05 16:00:00,0.0,1010.733667,296.9575,50.47416667,18.36,1.561,237.82734130000003 -2014-05-05 17:00:00,0.0,1010.285333,68.10591667,50.41416667,18.25833333,1.388166667,237.82734130000003 -2014-05-05 18:00:00,0.0,1009.751667,29.141,51.89416667,17.47916667,1.13275,237.82600449999998 -2014-05-05 19:00:00,0.0,1009.658,7.492625,75.6175,12.32083333,0.538666667,237.8253361 -2014-05-05 20:00:00,0.0,1009.9573330000001,0.1183,91.25833333,8.309083333,0.18908333300000002,237.8253361 -2014-05-05 21:00:00,0.0,1009.7510000000001,0.0,96.29166667,6.408333333,0.10408333300000001,237.8253361 -2014-05-05 22:00:00,0.0,1009.343667,0.0,99.1,5.40975,0.017666667,237.82428345000002 -2014-05-05 23:00:00,0.0,1008.842,0.0,100.0,4.650416667,0.02,237.82323080000006 -2014-06-05 00:00:00,0.0,1008.759333,0.0,100.0,4.3185,0.11599999999999999,237.7243784 -2014-06-05 01:00:00,0.0,1008.209667,0.0,100.0,4.090166667,0.136666667,237.7243784 -2014-06-05 02:00:00,0.0,1007.8439999999999,0.0,100.0,3.051166667,0.0695,237.7243616833333 -2014-06-05 03:00:00,0.0,1007.508,0.0,100.0,2.44225,0.062666667,237.7243784 -2014-06-05 04:00:00,0.0,1007.168,0.473375,100.0,2.2315,0.14875,237.7243784 -2014-06-05 05:00:00,0.0,1007.101333,23.56981667,100.0,2.70275,0.01725,237.7243784 -2014-06-05 06:00:00,0.0,1006.932667,56.89775,100.0,5.4195,0.122583333,237.7260493166667 -2014-06-05 07:00:00,0.0,1006.676,163.91666669999998,95.075,8.544,0.43991666700000004,237.72638349999997 -2014-06-05 08:00:00,0.0,1006.684,174.0025,81.94333333,12.3275,0.5145,237.72638349999997 -2014-06-05 09:00:00,0.0,1006.708333,261.4558333,75.99583333,14.53083333,0.722916667,237.72401078333334 -2014-06-05 10:00:00,0.0,1006.691,328.48083330000003,67.13333333,17.2375,0.5825,237.71990028333335 -2014-06-05 11:00:00,0.0,1006.575667,295.225,59.885,19.44583333,0.983916667,237.71543888333335 -2014-06-05 12:00:00,0.0,1006.441,253.33583330000002,60.77333333,19.565,1.6413333330000002,237.7106098666667 -2014-06-05 13:00:00,0.0,1006.7739999999999,198.4383333,64.78083333,18.21416667,1.4921666669999998,237.70716773333334 -2014-06-05 14:00:00,15.49329782,1007.117333,90.055,82.10083333,15.81416667,1.0464166670000001,237.70512920000002 -2014-06-05 15:00:00,0.0,1006.243667,89.5125,90.325,15.17833333,0.9883333329999999,237.7037256 -2014-06-05 16:00:00,0.0,1005.992667,46.18016667,89.325,15.61166667,1.699,237.70272305 -2014-06-05 17:00:00,0.0,1005.858667,61.01608333,83.09916667,16.12833333,1.207,237.7017205 -2014-06-05 18:00:00,0.0,1005.569,38.6505,80.8075,16.78583333,0.775666667,237.7017205 -2014-06-05 19:00:00,0.0,1005.141667,13.82441667,79.2925,15.77833333,1.175583333,237.7013696 -2014-06-05 20:00:00,0.0,1005.249333,0.157733333,80.08333333,15.01833333,1.151833333,237.7017205 -2014-06-05 21:00:00,0.0,1005.085,0.0,75.92833333,16.265,1.676083333,237.7017205 -2014-06-05 22:00:00,0.0,1004.270333,0.0,73.4925,15.91916667,1.311166667,237.70339141666668 -2014-06-05 23:00:00,0.0,1003.558667,0.0,68.235,16.4225,2.2680000000000002,237.7037256 -2014-07-05 00:00:00,0.0,1003.607,0.0,68.89583333,16.06,1.4496666669999998,237.58971784999997 -2014-07-05 01:00:00,34.78928426,1004.722667,0.0,90.495,13.1075,1.237833333,237.5907705 -2014-07-05 02:00:00,12.98498765,1004.6833330000001,0.0,97.15833333,11.6725,0.813333333,237.59349415 -2014-07-05 03:00:00,23.41695437,1004.02,0.0,97.43333333,11.12,0.942416667,237.5958836 -2014-07-05 04:00:00,0.0,1004.1139999999999,0.315466667,98.16666667,10.59916667,0.528416667,237.5983064166667 -2014-07-05 05:00:00,2.484616152,1005.0219999999999,11.59555833,99.69166667,9.585,0.205,237.59965985 -2014-07-05 06:00:00,0.0,1005.79,64.06983333,98.38333333,11.03916667,0.654666667,237.60066239999995 -2014-07-05 07:00:00,0.0,1006.331333,86.9715,95.56666667,12.02666667,0.749833333,237.60066239999995 -2014-07-05 08:00:00,0.0,1006.690667,128.7475,85.1,12.98,0.9095,237.59725376666668 -2014-07-05 09:00:00,0.0,1007.065,186.2175,75.25583333,13.49583333,1.8713333330000002,237.59178978333333 -2014-07-05 10:00:00,0.0,1007.365667,305.9583333,72.88333333,13.83083333,1.405,237.58280018333335 -2014-07-05 11:00:00,0.0,1007.625,255.9316667,69.2925,14.78333333,1.709916667,237.57392753333338 -2014-07-05 12:00:00,0.0,1007.8989999999999,344.2133333,63.88916667,15.34416667,1.355083333,237.57013450000002 -2014-07-05 13:00:00,0.0,1008.024333,449.7383333000001,62.585,16.24166667,1.544,237.56804581666665 -2014-07-05 14:00:00,0.0,1007.951,419.65,69.25916667,16.8625,1.4473333330000002,237.56600728333333 -2014-07-05 15:00:00,21.81389074,1007.867333,289.50425,80.15916667,14.385,1.185916667,237.56426950000002 -2014-07-05 16:00:00,2.846814792,1007.671667,221.6764667,70.88,16.32166667,1.0696666670000001,237.5635677 -2014-07-05 17:00:00,33.88977391,1008.045,63.83638333,93.99166667,11.7075,0.950416667,237.5635677 -2014-07-05 18:00:00,17.49927406,1008.1883330000001,36.59483333,89.175,12.99,0.392166667,237.56189678333337 -2014-07-05 19:00:00,2.434677192,1008.623667,7.040425,95.28333333,12.0,0.327916667,237.56256515000004 -2014-07-05 20:00:00,0.0,1008.75,0.256316667,98.08333333,10.44666667,0.515833333,237.5642695 -2014-07-05 21:00:00,0.0,1008.982667,0.0,90.05,10.96083333,1.248583333,237.56769491666662 -2014-07-05 22:00:00,0.0,1009.308,0.0,92.66666667,10.11416667,0.655666667,237.57048540000002 -2014-07-05 23:00:00,0.0,1009.432667,0.0,96.6,9.1675,0.44625,237.57289155 -2014-08-05 00:00:00,0.0,1009.516333,0.0,97.05833333,8.643333333,0.40733333299999996,237.49181788333328 -2014-08-05 01:00:00,0.0,1009.591333,0.0,97.49166667,7.445583332999999,0.1885,237.49181788333328 -2014-08-05 02:00:00,0.0,1009.567,0.0,97.64166667,6.258583333,0.114,237.49148369999997 -2014-08-05 03:00:00,2.4050227680000003,1009.4169999999999,0.0,95.5,7.727416667000001,0.302333333,237.4900801 -2014-08-05 04:00:00,0.0,1009.416667,1.084416667,94.25,9.5275,0.7466666670000001,237.48937830000003 -2014-08-05 05:00:00,0.0,1009.656333,16.939125,95.19166667,9.75,0.9208333329999999,237.48937830000003 -2014-08-05 06:00:00,0.0,1010.274333,44.037,92.75833333,9.984166667,0.271666667,237.48937830000003 -2014-08-05 07:00:00,0.0,1010.466333,95.12416667,89.13333333,10.77916667,0.877916667,237.4890441166667 -2014-08-05 08:00:00,0.0,1010.3510000000001,161.6591667,81.555,12.51416667,1.31775,237.48770738333334 -2014-08-05 09:00:00,0.0,1010.266667,169.2016667,79.43333333,12.8725,1.11575,237.4877073833333 -2014-08-05 10:00:00,0.0,1010.0666669999999,183.25416669999998,80.20833333,12.71416667,1.0795,237.4863205 -2014-08-05 11:00:00,0.0,1010.125333,199.325,76.87166667,13.70833333,1.197833333,237.4852678 -2014-08-05 12:00:00,0.0,1009.834,263.1825,73.19583333,14.98333333,1.27025,237.48491690000003 -2014-08-05 13:00:00,0.0,1009.6010000000001,232.3941667,71.00916667,15.35083333,1.238333333,237.4835133 -2014-08-05 14:00:00,0.0,1009.168667,152.28033330000002,70.1825,15.26,1.106333333,237.48251075 -2014-08-05 15:00:00,0.0,1008.461,99.86083333,72.37333333,14.47,0.705416667,237.48080640000003 -2014-08-05 16:00:00,0.0,1008.2073330000001,71.26233333,75.49583333,14.5225,0.948583333,237.4794028 -2014-08-05 17:00:00,5.237952552,1007.761333,51.74283333,91.7,12.445,0.82925,237.48282821666666 -2014-08-05 18:00:00,7.569627024,1007.2339999999999,25.20233333,95.78333333,12.24333333,0.589583333,237.47975370000003 -2014-08-05 19:00:00,10.2765319,1006.661333,6.2115666670000005,97.925,11.84333333,0.83625,237.47804935 -2014-08-05 20:00:00,13.72464953,1006.0343330000001,0.039433333,97.11666667,11.68666667,1.22325,237.4752923 -2014-08-05 21:00:00,23.22633377,1005.802333,0.0,98.75833333,11.5525,0.749083333,237.47495811666667 -2014-08-05 22:00:00,20.44037263,1005.475,0.0,98.59166667,11.59416667,0.694916667,237.4729363 -2014-08-05 23:00:00,13.73740411,1005.442,0.0,98.25833333,12.0025,1.251083333,237.47258539999996 -2014-09-05 00:00:00,10.933305599999999,1005.001667,0.0,96.41666667,12.45083333,1.2935,237.8230536 -2014-09-05 01:00:00,5.635683407999999,1004.866667,0.0,95.7,12.8525,1.41775,237.82375539999998 -2014-09-05 02:00:00,0.0,1005.023333,0.0,95.6,12.80916667,1.237166667,237.8230536 -2014-09-05 03:00:00,0.0,1005.54,0.0,95.4,12.945,0.939333333,237.8234045 -2014-09-05 04:00:00,2.48702172,1005.940667,0.690141667,96.25,12.31916667,0.68525,237.82375539999998 -2014-09-05 05:00:00,0.0,1006.721333,16.48546667,95.63333333,12.29916667,0.461416667,237.82305359999998 -2014-09-05 06:00:00,0.0,1007.2156669999999,87.14591667,91.625,13.73083333,0.708416667,237.8223518 -2014-09-05 07:00:00,2.519729904,1007.6569999999999,178.9316667,87.30833333,14.47416667,0.915083333,237.82201761666667 -2014-09-05 08:00:00,0.0,1008.016667,159.7225,81.31333333,15.34583333,1.085916667,237.8223518 -2014-09-05 09:00:00,0.0,1007.991667,317.3858333,72.67916667,16.40666667,1.3245,237.8223518 -2014-09-05 10:00:00,0.0,1007.990667,294.90416669999996,70.23166667,16.57833333,1.496,237.82101506666663 -2014-09-05 11:00:00,0.0,1008.166667,195.0608333,64.28,16.67583333,1.4958333330000002,237.82034669999993 -2014-09-05 12:00:00,0.0,1008.026333,419.28833330000003,58.945,17.86833333,1.6194166669999999,237.82034669999993 -2014-09-05 13:00:00,0.0,1007.866333,395.5525,55.855,18.345,2.196916667,237.81894309999996 -2014-09-05 14:00:00,0.0,1008.256667,374.8091667,54.0975,17.94416667,2.5540000000000003,237.81894309999996 -2014-09-05 15:00:00,0.0,1008.276667,259.5075,54.63416667,17.25083333,2.224583333,237.81757293333337 -2014-09-05 16:00:00,0.0,1007.934333,295.54,55.165,17.26583333,2.038916667,237.8158853 -2014-09-05 17:00:00,0.0,1007.508667,82.73591667,55.44083333,17.05083333,1.786416667,237.81623619999996 -2014-09-05 18:00:00,0.0,1007.757,40.24825,58.8425,16.39583333,1.03925,237.8151835 -2014-09-05 19:00:00,12.19200305,1008.762333,11.28038333,80.10583333,12.7925,1.29825,237.81413080000002 -2014-09-05 20:00:00,0.0,1009.4730000000001,0.29575,83.69166667,11.17666667,0.712666667,237.81413080000002 -2014-09-05 21:00:00,0.0,1010.04,0.0,88.41666667,10.12333333,0.464416667,237.81312825 -2014-09-05 22:00:00,0.0,1010.756333,0.0,88.76666667,9.69,0.53375,237.8124598833333 -2014-09-05 23:00:00,0.0,1011.065667,0.0,88.45,9.156666667,0.34766666700000004,237.81379661666665 -2014-10-05 00:00:00,0.0,1011.3489999999999,0.0,96.85833333,6.935333332999999,0.063666667, -2014-10-05 01:00:00,0.0,1011.524333,0.0,100.0,5.176416667,0.226583333, -2014-10-05 02:00:00,0.0,1011.567333,0.0,99.90833333,4.77,0.09708333300000001, -2014-10-05 03:00:00,0.0,1011.3839999999999,0.0,93.35833333,4.448416667,0.15275, -2014-10-05 04:00:00,2.432383272,1011.325,1.8734333330000001,92.75,4.056,0.046, -2014-10-05 05:00:00,0.0,1011.1676669999999,15.63858333,91.725,5.662916667,0.00725, -2014-10-05 06:00:00,0.0,1010.833667,42.14175,91.13333333,7.63425,0.07825, -2014-10-05 07:00:00,0.0,1010.6593330000001,77.71633333,85.8,9.611666667,0.69975, -2014-10-05 08:00:00,0.0,1010.185333,137.9525,82.95833333,11.63666667,1.175833333, -2014-10-05 09:00:00,0.0,1009.519333,186.9875,76.77833333,13.34666667,0.7919166670000001, -2014-10-05 10:00:00,0.0,1009.009333,226.79416669999998,77.68833333,14.01583333,1.202583333, -2014-10-05 11:00:00,0.0,1008.195333,347.585,76.81583333,15.0025,1.57875, -2014-10-05 12:00:00,0.0,1007.210333,199.5758333,72.79416667,16.14166667,2.334833333, -2014-10-05 13:00:00,0.0,1006.344333,106.86783329999999,76.11,15.55916667,2.326916667, -2014-10-05 14:00:00,17.01165571,1006.019333,90.50241667,93.63333333,12.93916667,1.5201666669999998, -2014-10-05 15:00:00,14.07624197,1004.937333,134.0441667,92.74166667,13.15,1.5935, -2014-10-05 16:00:00,11.13391572,1003.995333,60.44966667,92.80833333,13.54166667,1.39175, -2014-10-05 17:00:00,8.382791088,1003.076667,32.55991667,95.90833333,12.70916667,1.5589166669999999, -2014-10-05 18:00:00,8.878098432,1002.568333,21.98933333,96.34166667,12.39166667,1.275166667, -2014-10-05 19:00:00,2.70570732,1001.844667,6.90235,98.45,11.59916667,0.933916667, -2014-10-05 20:00:00,2.497551024,1000.936333,0.216883333,96.63333333,11.99416667,1.23675, -2014-10-05 21:00:00,2.768509584,1001.260667,0.0,95.95833333,11.6075,2.136, -2014-10-05 22:00:00,0.0,1001.378,0.0,97.13333333,9.215833332999999,0.549333333, -2014-10-05 23:00:00,2.6216142000000002,1001.2260000000001,0.0,94.19166667,9.573333332999999,0.938, -2014-11-05 00:00:00,2.616701472,1001.091667,0.0,94.48333333,9.738333333,0.9864166670000001,237.94635250000002 -2014-11-05 01:00:00,0.0,1001.133,0.0,93.575,8.733333333,0.68225,237.94635250000002 -2014-11-05 02:00:00,0.0,1001.158667,0.0,93.81666667,8.337583333,0.619083333,237.9456858333333 -2014-11-05 03:00:00,0.0,1001.141667,0.0,92.00833333,7.089666667,0.538416667,237.94435249999995 -2014-11-05 04:00:00,2.550720648,1001.058,1.1635166670000001,91.03333333,7.955333333,0.955916667,237.9426025 -2014-11-05 05:00:00,0.0,1001.182667,38.1395,88.25833333,8.4575,1.5905,237.9402525 -2014-11-05 06:00:00,2.840700216,1001.549333,107.62325,84.19166667,9.219166667,1.7216666669999998,237.9402525 -2014-11-05 07:00:00,3.0023176560000002,1001.384667,143.35416669999998,81.3625,10.49083333,1.893,237.9402525 -2014-11-05 08:00:00,6.24221544,1001.307,150.85,76.54833333,11.325,1.77925,237.9402525 -2014-11-05 09:00:00,3.576373704,1001.160667,416.97833330000003,75.2725,12.14666667,2.453166667,237.9402525 -2014-11-05 10:00:00,6.156822864,1001.024333,368.27,70.02916667,13.19083333,2.19775,237.9402525 -2014-11-05 11:00:00,6.096435864,1001.016333,430.33083330000005,72.36833333,12.94416667,2.339583333,237.93920249999996 -2014-11-05 12:00:00,7.025515368,1000.6519999999999,542.4883332999999,70.6875,13.76666667,2.4979166669999997,237.93920250000005 -2014-11-05 13:00:00,5.84439156,1000.451333,239.8894167,74.19333333,12.5225,1.7329166669999998,237.9385025 -2014-11-05 14:00:00,3.186826728,1000.764667,426.93583330000007,68.35833333,13.64583333,2.659833333,237.9374858333333 -2014-11-05 15:00:00,6.096009216000001,1000.56,269.5175,68.60416667,13.66333333,1.7763333330000002,237.9371525 -2014-11-05 16:00:00,2.71865712,1000.748333,128.0830833,82.315,11.34083333,1.231083333,237.93815249999997 -2014-11-05 17:00:00,2.73769332,1000.758,67.74191667,76.58666667,12.835,0.7393333329999999,237.93815249999997 -2014-11-05 18:00:00,2.5961717280000003,1001.049,53.44616667,76.87166667,12.255,0.6425833329999999,237.93815249999997 -2014-11-05 19:00:00,0.0,1001.59,15.3622,76.44416667,11.00333333,0.41475,237.93815249999997 -2014-11-05 20:00:00,2.803881288,1002.305667,0.216883333,80.91916667,10.44833333,0.988916667,237.9385025 -2014-11-05 21:00:00,2.585828376,1002.666333,0.0,82.925,9.976666667,1.039166667,237.9385025 -2014-11-05 22:00:00,0.0,1003.0139999999999,0.0,81.36333333,9.271666667,0.633,237.9395525 -2014-11-05 23:00:00,2.73420648,1003.573333,0.0,82.93333333,9.621666667000001,1.13175,237.9399025 -2014-12-05 00:00:00,0.0,1004.040667,0.0,79.66833333,9.365,1.5454166669999998,237.87515249999998 -2014-12-05 01:00:00,0.0,1004.39,0.0,85.77583333,8.22725,1.204916667,237.87585249999998 -2014-12-05 02:00:00,2.7053687760000003,1004.534,0.0,88.8,7.44925,1.156416667,237.8762025 -2014-12-05 03:00:00,0.0,1004.5666669999999,0.0,88.19166667,6.88325,0.93075,237.8768858333333 -2014-12-05 04:00:00,0.0,1004.748333,1.08465,90.56666667,6.596333333,0.737166667,237.87688583333332 -2014-12-05 05:00:00,2.78042352,1005.074,41.05966667,89.31666667,7.1973333329999996,1.110333333,237.87655249999997 -2014-12-05 06:00:00,0.0,1005.565,82.67641667,84.275,8.496666667000001,1.410916667,237.8772191666667 -2014-12-05 07:00:00,0.0,1005.891333,116.1825,81.1125,9.143333333,1.6745,237.8775525 -2014-12-05 08:00:00,2.852188848,1006.007333,151.50916669999998,77.02083333,10.69416667,1.8259166669999998,237.87890249999998 -2014-12-05 09:00:00,0.0,1006.449333,294.8516667,74.36583333,11.485,1.605666667,237.87890249999998 -2014-12-05 10:00:00,0.0,1006.35,209.83083330000002,77.24916667,11.9225,1.4055,237.87890249999998 -2014-12-05 11:00:00,2.676029568,1006.242667,410.41583330000003,88.09666667,11.00416667,1.070333333,237.87890249999998 -2014-12-05 12:00:00,0.0,1005.984333,557.7075,74.5375,13.60583333,1.7535,237.87995249999997 -2014-12-05 13:00:00,0.0,1005.915333,328.72583330000003,67.8625,14.39416667,1.689583333,237.88030249999997 -2014-12-05 14:00:00,3.074811864,1006.257667,274.0476667,80.98416667,12.1175,1.58125,237.88030249999997 -2014-12-05 15:00:00,0.0,1005.818667,330.8083333,84.19416667,12.08083333,1.138583333,237.8806525 -2014-12-05 16:00:00,0.0,1005.75,314.86875,70.05333333,14.46083333,1.29875,237.8806525 -2014-12-05 17:00:00,0.0,1006.43,36.14975,80.50583333,11.78083333,1.8939166669999998,237.8809858333333 -2014-12-05 18:00:00,0.0,1006.625333,41.03866667,93.725,9.365,0.48658333299999995,237.8819858333333 -2014-12-05 19:00:00,0.0,1006.633,15.698025,96.11666667,9.265833333,0.179916667,237.8819858333333 -2014-12-05 20:00:00,0.0,1007.414333,0.35495833299999996,99.28333333,8.501666667,0.262916667,237.88265249999998 -2014-12-05 21:00:00,0.0,1007.5239999999999,0.0,100.0,7.602,0.072583333,237.88265249999998 -2014-12-05 22:00:00,0.0,1007.732333,0.0,99.975,6.460916667,0.09300000000000001,237.88265249999998 -2014-12-05 23:00:00,0.0,1008.125,0.0,97.93333333,6.861166667000001,0.152666667,237.88300249999998 -2014-05-13 00:00:00,0.0,1008.166333,0.0,98.125,7.8805,0.56175,237.84902998333334 -2014-05-13 01:00:00,0.0,1008.192,0.0,99.675,7.538416667000001,0.208666667,237.85076776666665 -2014-05-13 02:00:00,0.0,1008.166667,0.0,99.31666667,7.1625,0.205333333,237.85213793333332 -2014-05-13 03:00:00,0.0,1008.049667,0.0,99.31666667,6.792916667,0.29533333300000003,237.8538422833333 -2014-05-13 04:00:00,2.41677756,1008.299667,0.6902,99.675,7.013833332999999,0.26466666699999997,237.8528063 -2014-05-13 05:00:00,0.0,1008.590333,6.370525,99.93333333,7.351916667,0.40775,237.8493808833333 -2014-05-13 06:00:00,0.0,1009.047333,25.697,99.40833333,7.877416667,0.4305,237.847994 -2014-05-13 07:00:00,0.0,1009.5906669999999,39.83991667,99.89166667,7.935583332999999,0.3925,237.84044136666668 -2014-05-13 08:00:00,0.0,1009.9739999999999,133.65333329999999,96.63333333,8.629166667,0.48866666700000005,237.8376676 -2014-05-13 09:00:00,0.0,1010.341,353.8325,90.2,10.46916667,0.7155,237.8380185 -2014-05-13 10:00:00,0.0,1010.4989999999999,302.015,81.55416667,11.77,1.32375,237.8383694 -2014-05-13 11:00:00,0.0,1010.309,281.9425,73.52166667,12.74083333,1.56175,237.8376676 -2014-05-13 12:00:00,0.0,1010.45,433.27666669999996,76.29166667,12.7775,1.7315,237.8376676 -2014-05-13 13:00:00,0.0,1010.655667,493.185,69.7575,14.58166667,1.35075,237.83633086666669 -2014-05-13 14:00:00,5.182730472,1011.209,169.0908333,81.1825,10.47833333,2.2045,237.83566250000004 -2014-05-13 15:00:00,0.0,1011.149333,459.8825,67.6225,14.3175,0.7726666670000001,237.83360725000003 -2014-05-13 16:00:00,0.0,1011.638,146.1185833,76.49583333,11.88,2.822083333,237.83155200000002 -2014-05-13 17:00:00,0.0,1012.5823330000001,111.60333329999999,84.31666667,10.9525,3.704916667,237.83155200000002 -2014-05-13 18:00:00,0.0,1013.105333,24.33666667,84.125,10.32416667,1.5908333330000002,237.83120110000002 -2014-05-13 19:00:00,0.0,1013.880667,10.117625,85.08333333,10.04666667,0.78525,237.8301484 -2014-05-13 20:00:00,0.0,1014.904667,0.49291666700000003,88.36666667,9.739166667000001,1.210833333,237.8294466 -2014-05-13 21:00:00,0.0,1015.573333,0.0,91.5,9.109166667,0.863583333,237.8294466 -2014-05-13 22:00:00,0.0,1016.355333,0.0,94.825,8.420833333,0.5551666670000001,237.8294466 -2014-05-13 23:00:00,0.0,1017.039667,0.0,99.025,6.892666667,0.36175,237.82874483333333 -2014-05-14 00:00:00,0.0,1017.615667,0.0,100.0,5.342083333,0.258166667,237.8294466 -2014-05-14 01:00:00,0.0,1018.205667,0.0,100.0,4.363333333,0.142833333,237.82909571666667 -2014-05-14 02:00:00,0.0,1018.657333,0.0,100.0,3.746166667,0.10083333300000001,237.82734130000003 -2014-05-14 03:00:00,0.0,1019.215,0.0,100.0,2.793,0.0275,237.82700710000003 -2014-05-14 04:00:00,0.0,1019.664667,1.715991667,100.0,2.072083333,0.023916667000000003,237.82667289999998 -2014-05-14 05:00:00,0.0,1020.289,54.838,100.0,3.289083333,0.017166667,237.82633870000004 -2014-05-14 06:00:00,0.0,1021.039667,142.3858333,95.56666667,5.978,0.6295,237.8253194166667 -2014-05-14 07:00:00,0.0,1021.740333,176.5225,88.925,7.981083333,1.6539166669999998,237.82598781666664 -2014-05-14 08:00:00,0.0,1022.156333,131.96166670000002,81.79583333,8.916666667000001,3.191833333,237.82734130000003 -2014-05-14 09:00:00,0.0,1022.639667,356.13375,71.71833333,10.55333333,3.516916667,237.82700710000003 -2014-05-14 10:00:00,0.0,1022.941333,292.7633333,66.01083333,11.64083333,2.138833333,237.8253361 -2014-05-14 11:00:00,0.0,1022.882667,334.83916669999996,65.1575,12.4352617,3.1275,237.82463433333336 -2014-05-14 12:00:00,0.0,1022.819333,299.3841667,63.19083333,12.50995361,2.398333333,237.82358168333334 -2014-05-14 13:00:00,0.0,1022.575,303.65416669999996,59.535,12.99139912,2.6070833330000003,237.8225624 -2014-05-14 14:00:00,0.0,1022.475,240.44416669999998,63.6925,13.06166667,1.95675,237.82017295 -2014-05-14 15:00:00,0.0,1022.282667,126.49408329999999,65.3675,12.96583333,1.906833333,237.81912030000004 -2014-05-14 16:00:00,0.0,1022.442333,85.2775,78.6525,12.38916667,1.913416667,237.81912030000004 -2014-05-14 17:00:00,0.0,1022.615667,120.6980833,65.07666667,12.9875,2.598416667,237.81912030000004 -2014-05-14 18:00:00,0.0,1023.420667,16.25096667,77.75083333,11.21333333,3.525083333,237.8187861166667 -2014-05-14 19:00:00,0.0,1023.608667,2.9386,98.1,8.019166667,0.834666667,237.82052383333328 -2014-05-14 20:00:00,0.0,1024.222667,0.315466667,99.325,8.227,0.79775,237.82189400000001 -2014-05-14 21:00:00,0.0,1024.624333,0.0,100.0,7.866166667000001,0.4895,237.82289660000006 -2014-05-14 22:00:00,0.0,1024.915333,0.0,100.0,6.751416667000001,0.28575,237.82323080000006 -2014-05-14 23:00:00,0.0,1025.307667,0.0,100.0,5.558916667,0.170916667,237.8225624 -2014-05-15 00:00:00,0.0,1025.532333,0.0,100.0,4.93275,0.162916667,237.82155979999996 -2014-05-15 01:00:00,0.0,1025.857333,0.0,100.0,3.9733333330000002,0.07325,237.82122559999996 -2014-05-15 02:00:00,0.0,1026.074333,0.0,100.0,3.042,0.061083333,237.82087471666668 -2014-05-15 03:00:00,0.0,1026.373667,0.0,100.0,2.040833333,0.008583333,237.82122559999996 -2014-05-15 04:00:00,0.0,1026.566,0.907375,100.0,2.2991666669999997,0.006666666999999999,237.82122559999996 -2014-05-15 05:00:00,0.0,1026.907,13.352675,100.0,4.138083333,0.030583332999999997,237.81674756666666 -2014-05-15 06:00:00,0.0,1027.481333,35.1855,100.0,5.443166667000001,0.78225,237.8116011 -2014-05-15 07:00:00,0.0,1028.040333,99.88416667,96.8,6.659166667,1.2409999999999999,237.8102142 -2014-05-15 08:00:00,0.0,1028.499667,171.47666669999998,92.7,7.81225,1.405666667,237.82122559999996 -2014-05-15 09:00:00,0.0,1028.615667,191.345,87.70833333,8.774166667000001,1.376916667,237.82155980000002 -2014-05-15 10:00:00,0.0,1028.558667,164.47666669999998,83.19666667,9.42,1.9396666669999998,237.82155980000002 -2014-05-15 11:00:00,0.0,1028.607667,192.2841667,76.905,10.18916667,2.129166667,237.82050715 -2014-05-15 12:00:00,0.0,1028.642,178.2258333,73.47,11.10083333,2.117666667,237.81912030000004 -2014-05-15 13:00:00,0.0,1028.641667,173.5708333,74.9375,11.95333333,2.242,237.81912030000004 -2014-05-15 14:00:00,0.0,1028.401,227.76833330000002,71.6925,12.30416667,2.4435833330000003,237.81912030000004 -2014-05-15 15:00:00,0.0,1028.325333,157.33083330000002,70.88583333,12.7375,2.593666667,237.81912030000004 -2014-05-15 16:00:00,0.0,1028.183,110.59416670000002,71.42,12.80166667,2.309,237.81912030000004 -2014-05-15 17:00:00,0.0,1028.117667,75.19516667,72.62166667,12.845,1.823083333,237.8187861166667 -2014-05-15 18:00:00,0.0,1028.199333,36.26583333,75.38833333,12.53,2.4255,237.81811774999997 -2014-05-15 19:00:00,0.0,1028.390333,11.813725,79.64166667,11.7925,1.569166667,237.81778356666666 -2014-05-15 20:00:00,0.0,1028.899,0.315466667,83.03333333,10.95833333,1.300583333,237.8171152 -2014-05-15 21:00:00,0.0,1029.106667,0.0,92.3,9.251666667,1.089,237.8171152 -2014-05-15 22:00:00,0.0,1029.208667,0.0,99.83333333,8.098666667,0.586583333,237.81641340000002 -2014-05-15 23:00:00,0.0,1028.894,0.0,100.0,6.841166667,0.175833333,237.8150098 -2014-05-16 00:00:00,0.0,1028.583667,0.0,100.0,5.646666667000001,0.10925,237.8150098 -2014-05-16 01:00:00,0.0,1028.268333,0.0,100.0,4.540916667,0.16699999999999998,237.8150098 -2014-05-16 02:00:00,0.0,1027.6760000000002,0.0,100.0,4.116166667,0.067416667,237.8171152 -2014-05-16 03:00:00,0.0,1027.533667,0.0,100.0,5.715333332999999,0.553083333,237.8171152 -2014-05-16 04:00:00,2.938745712,1027.508,0.670483333,100.0,8.00425,1.060583333,237.8171152 -2014-05-16 05:00:00,0.0,1027.4260000000002,14.08143333,95.81666667,8.779166667,1.276666667,237.8171152 -2014-05-16 06:00:00,0.0,1027.358333,83.23991667,90.075,9.8475,1.9085,237.8187861166667 -2014-05-16 07:00:00,0.0,1027.193333,160.1191667,84.95833333,10.22083333,2.539666667,237.81912030000004 -2014-05-16 08:00:00,0.0,1026.942,128.12333329999998,78.6075,11.365,2.5405,237.81912030000004 -2014-05-16 09:00:00,0.0,1026.734333,363.3,71.3225,12.7125,2.631416667,237.81845193333334 -2014-05-16 10:00:00,0.0,1026.002667,494.83583330000005,63.705,13.91083333,2.681166667,237.81606250000002 -2014-05-16 11:00:00,0.0,1025.078333,540.575,54.5375,15.27666667,3.576916667,237.81400725 -2014-05-16 12:00:00,0.0,1024.385333,559.0316667000001,52.51833333,16.235,4.196333333,237.81300469999996 -2014-05-16 13:00:00,0.0,1023.802333,550.41,49.19333333,16.95833333,4.08425,237.81089930000005 -2014-05-16 14:00:00,0.0,1023.168667,486.50583330000006,47.41583333,17.485,4.26275,237.80984660000001 -2014-05-16 15:00:00,0.0,1022.551667,458.89666669999997,46.34666667,17.81583333,3.791833333,237.80879389999998 -2014-05-16 16:00:00,0.0,1021.993,338.3916667,47.18666667,17.48916667,3.81775,237.8074571666667 -2014-05-16 17:00:00,0.0,1021.493667,78.456,48.4825,17.06583333,2.97925,237.80678880000002 -2014-05-16 18:00:00,0.0,1021.208667,31.07533333,54.23583333,16.38416667,2.60375,237.80643790000002 -2014-05-16 19:00:00,0.0,1021.290667,22.85558333,63.3025,15.4375,2.087333333,237.80608700000002 -2014-05-16 20:00:00,0.0,1021.616333,1.222725,85.78916667,12.78583333,1.183833333,237.80468340000002 -2014-05-16 21:00:00,0.0,1021.633667,0.0,95.925,8.652333333,0.2905,237.80538520000002 -2014-05-16 22:00:00,0.0,1021.118333,0.0,98.20833333,7.1655,0.137583333,237.80573610000002 -2014-05-16 23:00:00,0.0,1020.669333,0.0,99.78333333,5.978916667000001,0.124916667,237.8050343 -2014-05-17 00:00:00,0.0,1020.3660000000001,0.0,100.0,5.0365,0.071416667,237.80468340000002 -2014-05-17 01:00:00,0.0,1020.135,0.0,100.0,4.4405,0.06408333299999999,237.80468340000002 -2014-05-17 02:00:00,0.0,1019.709333,0.0,100.0,4.2613333330000005,0.069083333,237.80538520000002 -2014-05-17 03:00:00,0.0,1019.285,0.0,100.0,3.984666667,0.060333332999999996,237.80678880000002 -2014-05-17 04:00:00,0.0,1018.967667,1.5779166669999998,100.0,3.593,0.132083333,237.80678880000002 -2014-05-17 05:00:00,0.0,1018.816,49.16916667,100.0,4.343833333,0.11333333300000001,237.80678880000002 -2014-05-17 06:00:00,0.0,1018.974667,129.9608333,95.60833333,7.944583333,0.20525,237.80712298333336 -2014-05-17 07:00:00,0.0,1019.291,201.8228333,84.18333333,10.73666667,1.20975,237.8081255333333 -2014-05-17 08:00:00,0.0,1019.3166669999999,134.2075,81.55333333,12.05666667,3.190833333,237.80879389999998 -2014-05-17 09:00:00,0.0,1018.976667,266.315,81.67666667,12.03416667,2.8405,237.80879389999998 -2014-05-17 10:00:00,0.0,1018.377667,392.91,75.69916667,13.52083333,2.646666667,237.80879389999998 -2014-05-17 11:00:00,0.0,1017.859667,495.0575,70.44583333,14.63416667,3.039333333,237.80538520000002 -2014-05-17 12:00:00,0.0,1017.252667,560.6125,63.85916667,15.7875,2.7085,237.80368085 -2014-05-17 13:00:00,0.0,1016.841667,538.5158332999999,57.17583333,16.8325,2.5595,237.80232740000005 -2014-05-17 14:00:00,0.0,1016.294333,503.4225,56.05583333,17.68166667,2.7205,237.80092380000005 -2014-05-17 15:00:00,0.0,1016.043,435.6158333000001,56.375,18.17833333,2.552916667,237.80057290000005 -2014-05-17 16:00:00,0.0,1015.476333,343.3675,54.12916667,18.65166667,2.466166667,237.79890198333337 -2014-05-17 17:00:00,0.0,1015.0103330000001,75.69333333,55.36916667,18.71416667,2.6364166669999998,237.79856780000003 -2014-05-17 18:00:00,0.0,1014.649333,55.31866667,59.7625,17.8575,2.90475,237.79751510000006 -2014-05-17 19:00:00,0.0,1014.592333,36.08325,66.21833333,16.53083333,2.234,237.79646240000002 -2014-05-17 20:00:00,0.0,1014.782333,2.2085,86.65083333,13.85333333,1.251833333,237.79646240000002 -2014-05-17 21:00:00,0.0,1014.9333330000001,0.0,95.875,11.0925,0.7001666670000001,237.79646240000002 -2014-05-17 22:00:00,0.0,1014.7843330000001,0.0,98.75,8.418333333,0.162666667,237.79646240000002 -2014-05-17 23:00:00,0.0,1014.666667,0.0,99.925,7.371333333,0.12041666699999999,237.7971642 -2014-05-18 00:00:00,0.0,1014.285333,0.0,100.0,6.90275,0.178333333,237.79821690000003 -2014-05-18 01:00:00,0.0,1013.900667,0.0,100.0,7.7743333329999995,0.15766666699999998,237.79646240000002 -2014-05-18 02:00:00,0.0,1013.5930000000001,0.0,100.0,8.013833333,0.062,237.79646240000002 -2014-05-18 03:00:00,0.0,1013.226667,0.0,100.0,7.142916667000001,0.061333333,237.79856780000003 -2014-05-18 04:00:00,0.0,1012.635,1.873725,100.0,6.798916667,0.1455,237.79856780000003 -2014-05-18 05:00:00,0.0,1012.425,35.42233333,100.0,7.539833333,0.164833333,237.79856780000003 -2014-05-18 06:00:00,0.0,1012.458667,119.14233329999999,97.49166667,10.715,0.142666667,237.79990453333335 -2014-05-18 07:00:00,0.0,1012.1089999999999,203.1248333,82.2475,13.49083333,0.831833333,237.80057290000005 -2014-05-18 08:00:00,0.0,1011.7603330000001,95.613,77.3525,14.74666667,1.82975,237.80092380000005 -2014-05-18 09:00:00,0.0,1011.293667,361.2758333,68.91166667,16.18,1.5390833330000002,237.80057290000005 -2014-05-18 10:00:00,0.0,1010.950667,473.59666669999996,64.715,17.57916667,2.3904166669999998,237.79856780000003 -2014-05-18 11:00:00,0.0,1010.235667,530.3083333000001,59.20333333,18.57916667,2.143916667,237.79681330000003 -2014-05-18 12:00:00,0.0,1009.569,532.3441667,54.92166667,19.22333333,1.6684166669999998,237.79579403333332 -2014-05-18 13:00:00,0.0,1009.059333,515.5208333,51.77833333,20.38666667,1.674166667,237.7941064 -2014-05-18 14:00:00,0.0,1008.461667,520.6891667,47.635,21.13833333,1.72425,237.79068098333335 -2014-05-18 15:00:00,0.0,1007.727333,270.4683333,48.15666667,21.06333333,1.5743333330000002,237.7899959 -2014-05-18 16:00:00,0.0,1007.0269999999999,342.055,45.85333333,21.0675,1.246,237.7885923 -2014-05-18 17:00:00,0.0,1006.552,88.4065,53.68833333,21.445,0.64525,237.78824139999998 -2014-05-18 18:00:00,0.0,1006.050667,37.87641667,61.73333333,21.905,0.015833333,237.78824139999998 -2014-05-18 19:00:00,0.0,1005.916667,18.02325,80.06666667,19.4625,0.068333333,237.78824139999998 -2014-05-18 20:00:00,0.0,1006.1146669999999,1.1438,90.94166667,14.625,0.574333333,237.78824139999998 -2014-05-18 21:00:00,0.0,1006.7073330000001,0.0,82.61666667,14.64416667,2.436833333,237.78824139999998 -2014-05-18 22:00:00,0.0,1006.6010000000001,0.0,89.79166667,12.24416667,0.506583333,237.78859229999998 -2014-05-18 23:00:00,0.0,1006.4760000000001,0.0,98.36666667,9.239166667000001,0.177333333,237.78964500000004 -2014-05-19 00:00:00,0.0,1006.150333,0.0,100.0,7.975583332999999,0.10025,237.79034680000004 -2014-05-19 01:00:00,0.0,1005.834333,0.0,100.0,7.913666667,0.038416667,237.79134935000002 -2014-05-19 02:00:00,0.0,1005.650667,0.0,100.0,7.402,0.040833333,237.79201771666666 -2014-05-19 03:00:00,0.0,1005.409,0.0,100.0,6.269833332999999,0.055583333,237.7916835333333 -2014-05-19 04:00:00,0.0,1005.2843330000001,2.4456833330000003,100.0,5.6093333329999995,0.044583332999999996,237.79034680000004 -2014-05-19 05:00:00,0.0,1005.15,55.41666667,100.0,6.648083333,0.12683333300000002,237.7923519 -2014-05-19 06:00:00,0.0,1005.341,138.1333333,95.58333333,10.41416667,0.11566666699999999,237.7923519 -2014-05-19 07:00:00,0.0,1005.3166669999999,209.79291669999998,85.30833333,12.5975,0.803583333,237.7923519 -2014-05-19 08:00:00,0.0,1005.275,90.85825,79.71916667,15.52583333,0.6811666670000001,237.7944573 -2014-05-19 09:00:00,0.0,1005.225667,357.24733330000004,73.17666667,18.13916667,1.409083333,237.7927028 -2014-05-19 10:00:00,0.0,1004.984333,481.6525,63.24,20.29583333,1.84675,237.79034680000004 -2014-05-19 11:00:00,0.0,1004.692667,449.1083333000001,57.73833333,21.69083333,2.0435,237.78753959999997 -2014-05-19 12:00:00,0.0,1004.350333,317.2866667,56.7725,22.2925,2.2021666669999997,237.78613599999997 -2014-05-19 13:00:00,0.0,1004.175667,387.9341667,50.99416667,23.3725,2.6814166669999997,237.78513345 -2014-05-19 14:00:00,0.0,1004.067667,387.8116667,52.0775,22.82057511,2.557666667,237.78307825 -2014-05-19 15:00:00,0.0,1003.85,191.68333330000002,53.31166667,22.62336605,1.335,237.7820256 -2014-05-19 16:00:00,0.0,1004.024333,346.0858333,47.845,24.365,0.8394166670000001,237.78002039999998 -2014-05-19 17:00:00,0.0,1003.8589999999999,59.08583333,47.38166667,25.615,0.31975,237.77896775 -2014-05-19 18:00:00,0.0,1003.974667,39.92858333,55.84833333,24.60583333,0.6525833329999999,237.77691249999998 -2014-05-19 19:00:00,0.0,1004.315,26.61925,75.06416667,20.74166667,0.716,237.7759099 -2014-05-19 20:00:00,0.0,1004.731667,1.439316667,85.40833333,15.73083333,0.27,237.7759099 -2014-05-19 21:00:00,0.0,1005.107333,0.0,92.525,13.16083333,0.142166667,237.7759099 -2014-05-19 22:00:00,0.0,1005.431667,0.0,97.56666667,11.35666667,0.11775,237.77624409999999 -2014-05-19 23:00:00,0.0,1005.833333,0.0,99.76666667,10.19333333,0.14175,237.7779151 -2014-05-20 00:00:00,0.0,1006.007333,0.0,100.0,9.2575,0.194166667,237.7779151 -2014-05-20 01:00:00,0.0,1006.248,0.0,100.0,8.583333332999999,0.139833333,237.7779151 -2014-05-20 02:00:00,0.0,1006.749667,0.0,100.0,8.019333332999999,0.092833333,237.7779151 -2014-05-20 03:00:00,0.0,1007.172667,0.0,100.0,8.7375,0.108416667,237.78002039999998 -2014-05-20 04:00:00,0.0,1007.275667,2.484825,100.0,8.572000000000001,0.102,237.78002039999998 -2014-05-20 05:00:00,0.0,1007.689667,66.10566667,99.85,8.925666667,0.031333333,237.78002039999998 -2014-05-20 06:00:00,0.0,1008.131667,151.4216667,92.29166667,12.495,0.141083333,237.78035459999998 -2014-05-20 07:00:00,0.0,1008.449,233.275,83.47583333,15.05166667,0.996083333,237.7820256 -2014-05-20 08:00:00,0.0,1008.666667,148.2016667,75.20666667,18.79666667,0.77425,237.7820256 -2014-05-20 09:00:00,0.0,1008.932667,259.9275,68.54666667,21.035,1.4018333330000001,237.7803546 -2014-05-20 10:00:00,0.0,1008.841667,473.8241666999999,54.6375,23.06666667,1.585666667,237.77589321666665 -2014-05-20 11:00:00,0.0,1008.8083330000001,520.415,49.20916667,24.39583333,2.1615833330000003,237.77380459999998 -2014-05-20 12:00:00,0.0,1008.634333,496.03166669999996,42.51666667,25.81166667,1.99025,237.77144851666665 -2014-05-20 13:00:00,0.0,1008.757333,521.465,41.1625,26.22916667,2.569833333,237.7693432 -2014-05-20 14:00:00,0.0,1008.651667,490.07,38.39666667,26.785,2.658416667,237.76553345 -2014-05-20 15:00:00,0.0,1008.4169999999999,386.70916669999997,38.45083333,27.1725,2.23,237.76556688333335 -2014-05-20 16:00:00,0.0,1008.217667,316.0616667,38.17166667,27.325,1.974166667,237.76382909999998 -2014-05-20 17:00:00,0.0,1007.817333,92.16258333,40.69166667,26.64,1.7930833330000002,237.76180728333335 -2014-05-20 18:00:00,0.0,1007.617333,38.507,47.89333333,25.8825,1.3831666669999998,237.7600695 -2014-05-20 19:00:00,0.0,1007.7239999999999,20.9615,74.52416667,21.80583333,0.312833333,237.75936769999996 -2014-05-20 20:00:00,0.0,1007.957667,1.183058333,87.83333333,16.23416667,0.138666667,237.75936769999996 -2014-05-20 21:00:00,0.0,1008.199,0.0,93.04166667,13.62916667,0.09425,237.75936769999996 -2014-05-20 22:00:00,0.0,1008.45,0.0,96.725,12.08416667,0.027833333,237.7600695 -2014-05-20 23:00:00,0.0,1008.6160000000001,0.0,98.55,11.125,0.04925,237.76147310000002 -2014-05-21 00:00:00,0.0,1008.7,0.0,99.99166667,10.38916667,0.047916667,237.76180728333335 -2014-05-21 01:00:00,0.0,1008.749667,0.0,100.0,9.691666667,0.040416667,237.76280983333334 -2014-05-21 02:00:00,0.0,1009.306333,0.0,99.925,10.23166667,0.191083333,237.76347819999998 -2014-05-21 03:00:00,0.0,1009.217667,0.0,100.0,10.03833333,0.174333333,237.76523269999998 -2014-05-21 04:00:00,0.0,1009.373333,4.2401916669999995,100.0,8.735,0.095333333,237.76558359999999 -2014-05-21 05:00:00,0.0,1009.914,45.16516667,100.0,9.6475,0.003416667,237.76558359999999 -2014-05-21 06:00:00,0.0,1010.224667,133.9275,91.91666667,13.85333333,0.12125,237.76591778333332 -2014-05-21 07:00:00,0.0,1010.333333,148.3766667,88.55833333,15.68833333,0.618416667,237.7675887 -2014-05-21 08:00:00,0.0,1010.333333,171.3133333,80.60583333,17.9575,0.727583333,237.7675887 -2014-05-21 09:00:00,0.0,1010.2260000000001,311.5758333,75.97666667,20.5675,0.919666667,237.76591778333332 -2014-05-21 10:00:00,0.0,1009.784667,372.8083333,60.78833333,23.58083333,0.793583333,237.76247564999997 -2014-05-21 11:00:00,0.0,1009.318667,456.61,53.165,24.89083333,1.2275,237.75905023333334 -2014-05-21 12:00:00,0.0,1008.602667,389.0775,48.2325,26.00666667,1.512666667,237.75701170000002 -2014-05-21 13:00:00,0.0,1008.001667,333.4216667,46.86583333,26.36416667,1.7210833330000002,237.75525719999996 -2014-05-21 14:00:00,0.0,1007.468333,418.3433333,39.61583333,26.99083333,2.59275,237.7535862833333 -2014-05-21 15:00:00,0.0,1007.102667,265.41083330000004,40.12333333,26.81166667,2.449166667,237.75114669999996 -2014-05-21 16:00:00,0.0,1006.328,182.18083330000002,46.95583333,26.45666667,0.975333333,237.74939220000002 -2014-05-21 17:00:00,0.0,1005.683667,99.10833333,64.48083333,25.8775,0.5705,237.74904130000002 -2014-05-21 18:00:00,0.0,1005.1189999999999,66.997,76.695,25.45083333,0.36325,237.74737038333328 -2014-05-21 19:00:00,0.0,1004.883333,25.2595,86.65083333,22.16583333,0.034583333,237.74703619999994 -2014-05-21 20:00:00,0.0,1004.757667,1.321075,95.34166667,17.305,0.17575,237.74837293333334 -2014-05-21 21:00:00,0.0,1004.676667,0.0,98.19166667,14.83416667,0.1575,237.74974310000002 -2014-05-21 22:00:00,0.0,1003.878667,0.0,100.0,13.17333333,0.133583333,237.75114669999996 -2014-05-21 23:00:00,0.0,1003.143,0.0,100.0,12.015,0.092,237.75325209999997 -2014-05-22 00:00:00,0.0,1003.000667,0.0,100.0,11.7825,0.161833333,237.7549230166666 -2014-05-22 01:00:00,0.0,1002.551667,0.0,100.0,11.3875,0.238083333,237.75630990000002 -2014-05-22 02:00:00,0.0,1003.4863330000001,0.0,95.075,12.11916667,0.630416667,237.75736260000005 -2014-05-22 03:00:00,0.0,1003.451,0.0,97.30833333,12.3875,0.540333333,237.75803096666667 -2014-05-22 04:00:00,0.0,1003.799667,2.8595583330000003,99.94166667,11.0575,0.251,237.75903351666662 -2014-05-22 05:00:00,0.0,1004.296667,38.33958333,99.30833333,11.53,0.04525,237.75936769999996 -2014-05-22 06:00:00,0.0,1004.749667,113.42333329999998,84.475,15.4125,0.277916667,237.75936769999996 -2014-05-22 07:00:00,0.0,1005.023333,204.1141667,75.73916667,19.72916667,0.56875,237.76112220000002 -2014-05-22 08:00:00,0.0,1005.299333,133.035,60.58916667,22.29166667,0.44408333299999997,237.7586993333333 -2014-05-22 09:00:00,0.0,1005.624667,342.8133333,54.135,23.195,0.6625,237.75184849999997 -2014-05-22 10:00:00,0.0,1005.816,442.18416669999993,51.40083333,24.40833333,0.61425,237.7466685833333 -2014-05-22 11:00:00,0.0,1005.8083330000001,467.06333330000007,49.32833333,25.12,0.7795,237.74392824999998 -2014-05-22 12:00:00,0.0,1005.7260000000001,483.85166669999995,46.71416667,26.275,1.119583333,237.7422239 -2014-05-22 13:00:00,0.0,1005.193333,313.6,51.30416667,26.54583333,1.310333333,237.74015193333335 -2014-05-22 14:00:00,0.0,1004.66,247.9866667,56.2075,25.94973185,1.5296666669999999,237.73881519999995 -2014-05-22 15:00:00,0.0,1004.35,170.3158333,55.4625,25.8225,1.4433333330000002,237.73741159999997 -2014-05-22 16:00:00,0.0,1004.442,253.9483333,49.27916667,26.13583333,0.40525,237.7367098 -2014-05-22 17:00:00,0.0,1004.102333,89.075,49.3025,26.25583333,0.7915,237.73570725000002 -2014-05-22 18:00:00,0.0,1004.086333,36.635375,62.46666667,23.58416667,0.75225,237.73470469999998 -2014-05-22 19:00:00,52.25719802,1005.440667,16.78075,86.63166667,16.735,1.423583333,237.73470469999998 -2014-05-22 20:00:00,3.21606756,1005.953667,1.0451,88.75,15.7025,1.436666667,237.73570725000002 -2014-05-22 21:00:00,18.57863153,1006.833333,0.0,94.825,14.41583333,0.93225,237.7432431666667 -2014-05-22 22:00:00,0.0,1007.2410000000001,0.0,94.775,14.28,0.466083333,237.74633439999994 -2014-05-22 23:00:00,0.0,1006.876333,0.0,98.63333333,13.9825,0.445333333,237.74770456666667 -2014-05-23 00:00:00,0.0,1006.163333,0.0,100.0,13.75,0.383666667,237.74974310000002 -2014-05-23 01:00:00,0.0,1005.399667,0.0,100.0,13.46666667,0.386,237.750094 -2014-05-23 02:00:00,0.0,1005.209333,0.0,100.0,13.33666667,0.228166667,237.75079579999996 -2014-05-23 03:00:00,0.0,1004.959667,0.0,100.0,12.99083333,0.24275,237.75114669999996 -2014-05-23 04:00:00,0.0,1004.508333,4.1414916669999995,100.0,12.25416667,0.11441666699999999,237.75325209999997 -2014-05-23 05:00:00,9.802697136,1005.139333,8.263091667000001,100.0,12.6575,0.37,237.75325209999997 -2014-05-23 06:00:00,0.0,1005.2843330000001,15.91508333,100.0,13.04666667,0.41775,237.75325209999997 -2014-05-23 07:00:00,0.0,1005.372333,42.43983333,100.0,13.66833333,0.26975,237.75525719999996 -2014-05-23 08:00:00,35.48599927,1006.3646669999999,34.2755,100.0,13.8025,0.5611666670000001,237.755959 -2014-05-23 09:00:00,36.83917786,1006.864333,74.62816667,99.875,14.025,0.313666667,237.75836515 -2014-05-23 10:00:00,28.05776436,1007.507,127.30666670000001,98.78333333,14.49166667,0.72925,237.76180728333335 -2014-05-23 11:00:00,5.2339366080000005,1007.450333,206.3075,92.61666667,16.1525,0.811416667,237.76382909999998 -2014-05-23 12:00:00,0.0,1007.565333,223.1425,87.4,17.23916667,0.762083333,237.76558359999999 -2014-05-23 13:00:00,0.0,1007.775333,172.22916669999998,85.7775,17.16916667,0.405916667,237.7662519666667 -2014-05-23 14:00:00,0.0,1007.85,261.9575,81.72083333,17.7775,0.7135,237.76558359999999 -2014-05-23 15:00:00,0.0,1007.7843330000001,425.95,69.7125,19.71,0.6223333329999999,237.76384581666665 -2014-05-23 16:00:00,0.0,1007.475,394.4325,66.11333333,19.7275,1.21875,237.7586993333333 -2014-05-23 17:00:00,0.0,1007.11,119.54308329999999,70.55333333,18.74583333,1.006416667,237.7604036833333 -2014-05-23 18:00:00,0.0,1006.883333,34.99766667,77.15833333,18.6025,0.647333333,237.75803096666667 -2014-05-23 19:00:00,0.0,1007.34,19.97566667,88.01,18.51333333,0.36508333299999995,237.75903351666662 -2014-05-23 20:00:00,0.0,1007.440667,1.7157,98.53333333,13.6525,0.12008333300000001,237.75936769999996 -2014-05-23 21:00:00,0.0,1007.65,0.0,100.0,10.96583333,0.11733333300000001,237.75936769999996 -2014-05-23 22:00:00,0.0,1007.741333,0.0,100.0,9.608333333,0.109,237.76077130000002 -2014-05-23 23:00:00,0.0,1008.007667,0.0,100.0,8.923333332999999,0.129583333,237.76147310000002 -2014-05-24 00:00:00,0.0,1007.842667,0.0,100.0,8.264166667000001,0.033,237.76147310000002 -2014-05-24 01:00:00,0.0,1007.525,0.0,100.0,7.6021666670000005,0.049583333,237.76314401666664 -2014-05-24 02:00:00,0.0,1007.865333,0.0,100.0,7.258916667,0.0685,237.76347819999998 -2014-05-24 03:00:00,0.0,1008.6310000000001,0.0,100.0,7.63125,0.11525,237.76347819999998 -2014-05-24 04:00:00,0.0,1009.314667,3.076266667,100.0,10.545,0.885416667,237.7631607333333 -2014-05-24 05:00:00,0.0,1009.781333,44.29366667,100.0,10.8275,0.318166667,237.76147310000002 -2014-05-24 06:00:00,0.0,1010.2,115.15291670000002,97.2,12.355,0.2495,237.76314401666664 -2014-05-24 07:00:00,0.0,1010.4889999999999,84.58216667,89.475,13.90666667,0.2895,237.76347819999998 -2014-05-24 08:00:00,0.0,1011.041667,124.04,85.79166667,14.90416667,0.34833333299999997,237.76347819999998 -2014-05-24 09:00:00,0.0,1011.165,166.9091667,82.655,15.56083333,0.48125,237.75868261666665 -2014-05-24 10:00:00,0.0,1011.433,272.9416667,74.39833333,16.9975,0.901333333,237.74838965 -2014-05-24 11:00:00,0.0,1011.848333,229.3725,75.80666667,17.75416667,0.7659999999999999,237.7518317833333 -2014-05-24 12:00:00,0.0,1011.900667,158.795,75.11,17.02833333,0.411416667,237.75973531666668 -2014-05-24 13:00:00,0.0,1011.882667,235.7658333,76.5475,17.52583333,0.917666667,237.75077908333333 -2014-05-24 14:00:00,0.0,1012.015667,303.9633333,76.20666667,18.0825,1.23875,237.7456493166666 -2014-05-24 15:00:00,0.0,1012.3580000000001,406.8225,67.3,18.53166667,1.6128333330000002,237.7463344 -2014-05-24 16:00:00,0.0,1012.2260000000001,416.2025,62.1675,19.155,1.135166667,237.7432598833333 -2014-05-24 17:00:00,0.0,1011.958667,80.49008333,60.04583333,18.575,1.4078333330000001,237.74529841666666 -2014-05-24 18:00:00,0.0,1012.132,28.930999999999997,61.5325,18.07666667,1.4078333330000001,237.74292569999997 -2014-05-24 19:00:00,0.0,1012.707,36.32708333,66.45666667,16.33333333,0.767833333,237.7415221 -2014-05-24 20:00:00,0.0,1013.380667,2.859791667,85.3125,13.22166667,0.29475,237.74082030000002 -2014-05-24 21:00:00,0.0,1014.122667,0.0,95.25,9.59,0.06475,237.7415221 -2014-05-24 22:00:00,0.0,1014.515,0.0,99.29166667,7.915833332999999,0.058833333,237.74257479999997 -2014-05-24 23:00:00,0.0,1014.891667,0.0,100.0,6.872999999999999,0.0,237.74426243333335 -2014-05-25 00:00:00,0.0,1014.816333,0.0,100.0,5.881,0.139916667,237.74493080000002 -2014-05-25 01:00:00,0.0,1015.058,0.0,100.0,5.08975,0.07,237.74633439999994 -2014-05-25 02:00:00,0.0,1015.3563330000001,0.0,100.0,4.432916667,0.051,237.74703619999994 -2014-05-25 03:00:00,0.0,1015.599667,0.0,100.0,4.010333333,0.012833333,237.74870711666668 -2014-05-25 04:00:00,0.0,1016.032333,5.009725,100.0,3.585333333,0.011083333,237.74737038333328 -2014-05-25 05:00:00,0.0,1016.3480000000001,77.32491667,99.875,5.1929166669999995,0.021,237.74703619999994 -2014-05-25 06:00:00,0.0,1016.865333,162.82,93.40833333,8.432,0.317916667,237.74803875 -2014-05-25 07:00:00,0.0,1017.049667,217.5075,85.24166667,10.87666667,0.81225,237.74870711666665 -2014-05-25 08:00:00,0.0,1017.108667,90.58466667,78.61083333,13.93166667,0.6409999999999999,237.73535635 -2014-05-25 09:00:00,0.0,1016.9839999999999,350.805,71.41833333,16.665,0.8394166670000001,237.7298256 -2014-05-25 10:00:00,0.0,1016.684,471.6833333000001,61.90833333,19.56583333,1.0485,237.7295081 -2014-05-25 11:00:00,0.0,1016.426333,455.29166669999995,56.44166667,19.67583333,1.3975,237.7260827 -2014-05-25 12:00:00,0.0,1016.000667,432.34333330000004,51.545,20.46166667,1.091583333,237.73533965000001 -2014-05-25 13:00:00,0.0,1015.660333,446.565,46.575,21.47083333,0.860833333,237.73498876666667 -2014-05-25 14:00:00,0.0,1015.252,472.08583330000005,46.14166667,21.87666667,1.187,237.73054408333329 -2014-05-25 15:00:00,0.0,1014.833333,414.8258333,45.3425,22.16333333,1.218916667,237.73017648333334 -2014-05-25 16:00:00,0.0,1014.800667,378.1983333,45.34333333,22.92666667,0.957416667,237.72469585 -2014-05-25 17:00:00,0.0,1014.177,125.21833329999998,47.67583333,22.07416667,2.406083333,237.72952483333333 -2014-05-25 18:00:00,0.0,1014.0,57.97516667,59.42416667,20.3675,1.4411666669999998,237.72638349999997 -2014-05-25 19:00:00,0.0,1014.033333,30.83908333,79.00833333,18.6675,0.176333333,237.72708526666665 -2014-05-25 20:00:00,0.0,1014.140667,1.5182416669999999,92.05,14.79416667,0.08733333300000001,237.7284888 -2014-05-25 21:00:00,0.0,1014.383333,0.0,95.725,12.5225,0.142166667,237.7301598 -2014-05-25 22:00:00,0.0,1014.474333,0.0,96.68333333,11.86583333,0.102,237.73189753333335 -2014-05-25 23:00:00,0.0,1014.45,0.0,98.98333333,10.79916667,0.06475,237.73295020000003 -2014-05-26 00:00:00,0.0,1014.151667,0.0,99.99166667,10.78583333,0.2755,237.73470469999998 -2014-05-26 01:00:00,0.0,1013.718333,0.0,100.0,11.83666667,0.37858333299999997,237.7367098 -2014-05-26 02:00:00,0.0,1013.284667,0.0,100.0,10.54833333,0.06575,237.7374116 -2014-05-26 03:00:00,0.0,1013.216333,0.0,91.05833333,10.2625,0.06433333299999999,237.73706070000003 -2014-05-26 04:00:00,0.0,1013.041667,8.756766667,81.13083333,13.1425,0.916666667,237.73881519999995 -2014-05-26 05:00:00,0.0,1013.092667,25.89416667,81.74333333,14.1975,0.281333333,237.73881519999995 -2014-05-26 06:00:00,0.0,1012.8510000000001,43.582,96.375,14.52416667,0.292916667,237.7404861166667 -2014-05-26 07:00:00,2.5140145919999997,1012.310333,32.12708333,96.66666667,14.78083333,0.975333333,237.74117120000003 -2014-05-26 08:00:00,12.1991784,1012.390333,43.24541667,99.6,14.1675,0.24733333300000002,237.74292569999997 -2014-05-26 09:00:00,7.940727096,1012.2669999999999,92.6905,99.45833333,14.62166667,0.74875,237.74426243333335 -2014-05-26 10:00:00,5.627361552000001,1012.018333,84.27941667,98.49166667,14.7125,1.686666667,237.74668529999997 -2014-05-26 11:00:00,6.495896712,1011.617667,154.2041667,99.38333333,15.02333333,2.334333333,237.7493922 -2014-05-26 12:00:00,5.705093616,1011.326,95.41641667,99.11666667,15.69083333,1.7351666669999999,237.75079579999996 -2014-05-26 13:00:00,3.059700432,1010.7363330000001,168.3208333,96.775,16.00333333,1.847666667,237.75114669999996 -2014-05-26 14:00:00,5.781262752000001,1009.844333,113.65666670000002,94.65,16.35333333,1.454083333,237.7529012 -2014-05-26 15:00:00,5.608133447999999,1009.193667,145.0458333,91.425,16.79583333,1.47625,237.7535862833333 -2014-05-26 16:00:00,3.050434896,1008.567667,139.7608333,89.675,17.47416667,1.4765833330000002,237.75525719999996 -2014-05-26 17:00:00,0.0,1008.360667,58.63258333,93.16666667,17.7125,1.361,237.7556081 -2014-05-26 18:00:00,5.669060784,1007.801,42.42058333,94.425,17.31333333,1.717583333,237.75736260000005 -2014-05-26 19:00:00,2.600651352,1007.517667,13.21261667,99.03333333,16.48916667,0.70775,237.75769678333336 -2014-05-26 20:00:00,2.494829304,1007.407333,0.6113333329999999,100.0,15.46583333,0.61275,237.75936769999996 -2014-05-26 21:00:00,0.0,1007.359333,0.0,100.0,14.685,0.16675,237.75936769999996 -2014-05-26 22:00:00,0.0,1007.266667,0.0,100.0,14.525,0.313416667,237.76112220000002 -2014-05-26 23:00:00,0.0,1007.109333,0.0,100.0,14.03666667,0.059666667,237.76077130000002 -2014-05-27 00:00:00,2.4050227680000003,1006.767667,0.0,100.0,13.84666667,0.0815,237.76316073333336 -2014-05-27 01:00:00,0.0,1006.4093330000001,0.0,100.0,13.7575,0.33866666700000003,237.76658615 -2014-05-27 02:00:00,0.0,1005.927,0.0,100.0,13.66833333,0.0745,237.77004498333335 -2014-05-27 03:00:00,0.0,1005.493333,0.0,100.0,13.48333333,0.013416667,237.7721336 -2014-05-27 04:00:00,2.50913604,1005.0186669999999,1.912808333,100.0,13.3,0.308,237.77380459999998 -2014-05-27 05:00:00,0.0,1005.115333,13.21191667,100.0,13.5425,0.44683333299999994,237.77624409999999 -2014-05-27 06:00:00,0.0,1005.266667,23.21258333,100.0,13.98583333,0.145583333,237.77758089999998 -2014-05-27 07:00:00,0.0,1005.324,40.922,100.0,14.2875,0.059916667,237.77931863333333 -2014-05-27 08:00:00,0.0,1005.515,83.32916667,99.875,14.70083333,0.1205,237.77861686666665 -2014-05-27 09:00:00,0.0,1005.634667,158.0016667,95.55833333,15.56916667,0.762416667,237.77966951666667 -2014-05-27 10:00:00,2.477735112,1005.6080000000001,171.3483333,95.89166667,16.84416667,0.37741666700000004,237.781023 -2014-05-27 11:00:00,0.0,1005.716667,90.22183333,96.35833333,16.10416667,0.55925,237.7820256 -2014-05-27 12:00:00,0.0,1005.649333,145.9675,98.98333333,15.94,0.501,237.78307825000002 -2014-05-27 13:00:00,0.0,1005.766667,118.965,96.95,16.07583333,0.5815,237.78446508333332 -2014-05-27 14:00:00,0.0,1005.907333,296.2458333,89.9,17.1425,0.8823333329999999,237.78580181666663 -2014-05-27 15:00:00,0.0,1005.785667,97.81216667,87.39166667,17.01,1.614333333,237.78613599999997 -2014-05-27 16:00:00,2.732467344,1005.806667,156.6035333,87.78333333,16.90833333,1.3519999999999999,237.78613599999997 -2014-05-27 17:00:00,0.0,1005.850333,33.05225,98.95,14.94666667,0.43700000000000006,237.78513345 -2014-05-27 18:00:00,0.0,1005.940667,41.19675,99.36666667,14.84083333,0.7636666670000001,237.78580181666663 -2014-05-27 19:00:00,0.0,1006.024667,22.38425,99.15,14.86583333,0.354,237.78613599999997 -2014-05-27 20:00:00,0.0,1006.315,1.124083333,100.0,14.41333333,0.36608333299999996,237.78613599999997 -2014-05-27 21:00:00,0.0,1006.741333,0.0,100.0,14.19083333,0.462416667,237.78683780000003 -2014-05-27 22:00:00,0.0,1006.857667,0.0,99.95833333,13.83583333,0.033916667000000005,237.78683780000003 -2014-05-27 23:00:00,0.0,1006.883667,0.0,99.61666667,13.44666667,0.110666667,237.78824139999998 -2014-05-28 00:00:00,0.0,1006.642333,0.0,99.225,13.24416667,0.45791666700000005,237.78824139999998 -2014-05-28 01:00:00,0.0,1006.501667,0.0,98.95,13.30916667,0.33875,237.78824139999998 -2014-05-28 02:00:00,0.0,1006.150333,0.0,99.31666667,13.105,0.231666667,237.7885923 -2014-05-28 03:00:00,0.0,1005.975,0.0,98.64166667,12.94,0.34666666700000004,237.78753959999997 -2014-05-28 04:00:00,0.0,1006.108333,1.6169416669999999,99.16666667,12.73333333,0.168,237.78824139999998 -2014-05-28 05:00:00,0.0,1006.332,15.14683333,98.65833333,12.69166667,0.172833333,237.78824139999998 -2014-05-28 06:00:00,0.0,1006.408333,35.85341667,97.54166667,12.925,0.341083333,237.78824139999998 -2014-05-28 07:00:00,0.0,1006.574333,80.64991667,96.45833333,13.54916667,0.5156666670000001,237.78824139999998 -2014-05-28 08:00:00,0.0,1006.583333,135.35666669999998,93.10833333,14.40583333,0.688083333,237.78824139999998 -2014-05-28 09:00:00,0.0,1006.757333,120.52833329999999,90.41666667,14.77833333,1.018333333,237.78824139999998 -2014-05-28 10:00:00,0.0,1007.015667,159.7166667,86.475,14.945,1.18025,237.78824139999998 -2014-05-28 11:00:00,0.0,1007.183667,78.11066667,87.65,15.0225,0.837833333,237.78718869999997 -2014-05-28 12:00:00,2.568743376,1007.232333,78.4875,86.39166667,14.77916667,0.834833333,237.78446508333334 -2014-05-28 13:00:00,0.0,1007.425667,76.22241667,84.25,14.76916667,0.6033333329999999,237.7841309 -2014-05-28 14:00:00,0.0,1007.475,79.57541667,84.2,14.89083333,0.7895833329999999,237.7841309 -2014-05-28 15:00:00,0.0,1007.673333,77.01166667,84.625,15.04833333,0.9890000000000001,237.78272736666668 -2014-05-28 16:00:00,0.0,1007.667333,71.95941667,84.325,15.10916667,1.59125,237.7820256 -2014-05-28 17:00:00,0.0,1007.725,41.27666667,93.25833333,14.33916667,1.42775,237.7820256 -2014-05-28 18:00:00,0.0,1007.773333,24.25733333,93.425,14.3225,1.058916667,237.7820256 -2014-05-28 19:00:00,0.0,1008.132667,10.03858333,95.65,14.01166667,0.137666667,237.7816914 -2014-05-28 20:00:00,0.0,1008.565333,0.571841667,99.075,13.31083333,0.02375,237.78100631666666 -2014-05-28 21:00:00,0.0,1008.742,0.0,100.0,12.7275,0.0,237.77931863333333 -2014-05-28 22:00:00,0.0,1008.940333,0.0,100.0,12.37166667,8.329999999999999e-05,237.77861686666665 -2014-05-28 23:00:00,0.0,1008.950333,0.0,100.0,12.11333333,0.030083332999999997,237.77861686666665 -2014-05-29 00:00:00,0.0,1008.917333,0.0,100.0,12.06,0.001,237.77931863333333 -2014-05-29 01:00:00,0.0,1008.8083330000001,0.0,100.0,12.09083333,0.025,237.78002039999998 -2014-05-29 02:00:00,0.0,1008.749333,0.0,100.0,12.0225,0.051333332999999995,237.78002039999998 -2014-05-29 03:00:00,0.0,1008.725667,0.0,100.0,11.83583333,0.0075,237.78002039999998 -2014-05-29 04:00:00,0.0,1008.865667,1.005725,100.0,11.86166667,0.054083333,237.78002039999998 -2014-05-29 05:00:00,0.0,1009.265667,5.758141667,100.0,12.05083333,0.018833333,237.77896775 -2014-05-29 06:00:00,0.0,1009.482667,13.15475,100.0,12.35666667,0.50625,237.7779151 -2014-05-29 07:00:00,0.0,1009.7156669999999,27.2545,100.0,12.53083333,0.49391666700000003,237.7779151 -2014-05-29 08:00:00,0.0,1009.924333,58.7055,99.875,12.80333333,0.557,237.7779151 -2014-05-29 09:00:00,0.0,1010.198667,83.38166667,96.925,12.55166667,1.6910833330000001,237.7779151 -2014-05-29 10:00:00,0.0,1010.5239999999999,64.71208333,98.475,12.03333333,1.802416667,237.7779151 -2014-05-29 11:00:00,0.0,1010.682667,73.30108333,100.0,12.10083333,1.472,237.7779151 -2014-05-29 12:00:00,0.0,1011.081667,61.03591667,100.0,12.1925,1.6924166669999998,237.7779151 -2014-05-29 13:00:00,0.0,1011.283,95.98166667,99.925,12.3775,1.539916667,237.7779151 -2014-05-29 14:00:00,0.0,1011.731667,102.7483333,99.45,12.93833333,1.367666667,237.77966951666667 -2014-05-29 15:00:00,0.0,1011.883333,69.49833333,99.60833333,12.8,1.967916667,237.7806888 -2014-05-29 16:00:00,0.0,1012.066333,45.29758333,100.0,11.89166667,2.364083333,237.78272736666668 -2014-05-29 17:00:00,0.0,1012.622333,38.39733333,100.0,11.22916667,2.404,237.7841309 -2014-05-29 18:00:00,0.0,1013.081667,17.395,100.0,10.87333333,2.1405,237.7854676333333 -2014-05-29 19:00:00,0.0,1013.5906669999999,6.922883333,100.0,10.31,2.2545,237.78613599999997 -2014-05-29 20:00:00,0.0,1014.064667,1.636775,100.0,10.00833333,1.5330833330000002,237.7871887 -2014-05-29 21:00:00,0.0,1014.681333,0.0,100.0,9.55,1.855833333,237.78824139999998 -2014-05-29 22:00:00,0.0,1014.958667,0.0,100.0,9.2225,1.757916667,237.78824139999998 -2014-05-29 23:00:00,0.0,1015.165,0.0,100.0,8.95,1.655666667,237.78894320000003 -2014-05-30 00:00:00,0.0,1015.266333,0.0,99.99166667,8.854166667000001,1.8915,237.78824139999998 -2014-05-30 01:00:00,0.0,1015.349333,0.0,100.0,8.675833333,1.4698333330000002,237.78824139999998 -2014-05-30 02:00:00,0.0,1015.458333,0.0,100.0,7.422999999999999,0.311416667,237.7885923 -2014-05-30 03:00:00,0.0,1015.641333,0.019716667,100.0,5.095666667,0.122,237.78929409999998 -2014-05-30 04:00:00,0.0,1015.849333,2.504483333,100.0,6.201916667000001,0.11491666699999999,237.79034680000004 -2014-05-30 05:00:00,0.0,1016.190333,18.91341667,100.0,7.411333332999999,0.36125,237.79034680000004 -2014-05-30 06:00:00,2.49804792,1016.648333,37.33158333,100.0,8.027083333,0.172083333,237.79034680000004 -2014-05-30 07:00:00,0.0,1017.081667,66.06833333,99.475,8.745,0.715333333,237.79068098333337 -2014-05-30 08:00:00,0.0,1017.4580000000001,123.43333329999999,94.45833333,10.18166667,0.7456666670000001,237.79134935000002 -2014-05-30 09:00:00,0.0,1017.681667,154.7116667,84.83583333,10.68083333,2.0165,237.78964499999998 -2014-05-30 10:00:00,0.0,1018.0239999999999,148.8141667,84.50833333,10.5875,1.685416667,237.78824139999998 -2014-05-30 11:00:00,0.0,1018.232667,117.08666670000001,81.5375,10.84166667,1.040583333,237.78824139999998 -2014-05-30 12:00:00,0.0,1018.4416669999999,190.3475,80.02666667,11.63333333,1.238333333,237.78824139999998 -2014-05-30 13:00:00,0.0,1018.516333,248.5525,76.44333333,12.6375,1.33725,237.78789049999997 -2014-05-30 14:00:00,0.0,1018.500333,292.4833333,68.57416667,13.7825,1.06575,237.78580181666666 -2014-05-30 15:00:00,0.0,1018.393,301.5133333,65.645,14.35083333,1.110333333,237.7841309 -2014-05-30 16:00:00,0.0,1017.992,336.945,63.23583333,15.48166667,0.859083333,237.7813572 -2014-05-30 17:00:00,0.0,1017.609333,86.58416667,63.72166667,15.40083333,0.9095,237.77861686666665 -2014-05-30 18:00:00,0.0,1017.451,44.70375,65.1475,16.04666667,0.37191666700000003,237.77826598333334 -2014-05-30 19:00:00,0.0,1017.440667,29.74241667,85.9425,14.27,0.26658333300000003,237.7775809 -2014-05-30 20:00:00,0.0,1017.723667,3.0567833330000003,98.11666667,10.01416667,0.291666667,237.7759099 -2014-05-30 21:00:00,0.0,1017.9169999999999,0.0,100.0,7.630666667000001,0.29933333300000003,237.7759099 -2014-05-30 22:00:00,0.0,1018.140667,0.0,100.0,6.465666667000001,0.129333333,237.77555901666665 -2014-05-30 23:00:00,0.0,1018.366333,0.0,100.0,5.73575,0.029833332999999997,237.77555901666665 -2014-05-31 00:00:00,0.0,1018.316,0.0,100.0,5.095916667,0.008916667,237.7759099 -2014-05-31 01:00:00,0.0,1018.384333,0.0,100.0,4.3943333330000005,0.000666667,237.7752081333333 -2014-05-31 02:00:00,0.0,1018.292333,0.0,100.0,3.760416667,0.001,237.77380459999998 -2014-05-31 03:00:00,0.0,1018.0169999999999,0.019716667,100.0,3.393916667,0.01525,237.77313619999998 -2014-05-31 04:00:00,0.0,1017.775,7.219333333,100.0,2.98325,0.0,237.7721336 -2014-05-31 05:00:00,0.0,1017.974667,75.77733333,100.0,4.618666667,0.003,237.7724678 -2014-05-31 06:00:00,0.0,1018.265333,158.55583330000002,96.29166667,7.668166667,0.2945,237.77380459999998 -2014-05-31 07:00:00,0.0,1018.5666669999999,174.4545833,84.03333333,10.72083333,0.569333333,237.77380459999998 -2014-05-31 08:00:00,0.0,1018.508333,55.00191667,78.49416667,12.94166667,1.0556666670000001,237.77380459999998 -2014-05-31 09:00:00,0.0,1018.4333330000001,368.025,70.4025,15.0925,1.967583333,237.77347039999998 -2014-05-31 10:00:00,0.0,1018.276667,494.5325,60.05833333,17.0,1.813916667,237.7710976333333 -2014-05-31 11:00:00,0.0,1017.884333,370.02,57.49083333,18.79916667,1.3685,237.76797303333333 -2014-05-31 12:00:00,0.0,1017.434333,273.9275,59.02083333,17.53166667,2.0131666669999997,237.76382909999998 -2014-05-31 13:00:00,0.0,1017.1339999999999,565.6525,51.2925,19.1825,1.786083333,237.76145638333332 -2014-05-31 14:00:00,0.0,1016.801667,285.7225,52.71166667,19.52333333,1.317,237.75836515 -2014-05-31 15:00:00,0.0,1016.509333,202.2183333,52.7925,19.7225,1.05725,237.7563099 -2014-05-31 16:00:00,0.0,1016.233667,255.7625,51.57916667,19.7475,1.56,237.75492301666665 -2014-05-31 17:00:00,0.0,1015.8853330000001,75.13391667,53.88916667,19.80916667,1.181416667,237.75325209999997 -2014-05-31 18:00:00,0.0,1015.708333,50.24133333,59.95666667,17.53166667,0.0495,237.75114669999996 -2014-05-31 19:00:00,0.0,1015.766667,20.72408333,80.675,15.14583333,0.15941666699999998,237.75149759999996 -2014-05-31 20:00:00,0.0,1015.972667,2.879333333,91.08333333,13.21166667,0.08991666699999999,237.75114669999996 -2014-05-31 21:00:00,0.0,1016.3660000000001,0.0,96.00833333,12.51916667,0.357916667,237.74974310000002 -2014-05-31 22:00:00,0.0,1016.483333,0.0,97.06666667,10.85583333,0.065,237.75079579999996 -2014-05-31 23:00:00,0.0,1016.383333,0.0,98.45,10.4975,0.053,237.75114669999996 -2014-01-06 00:00:00,0.0,1016.243333,0.0,99.05,9.425833333,0.1335,238.00967599999998 -2014-01-06 01:00:00,0.0,1016.091667,0.0,100.0,8.501666667,0.05725,238.00967599999998 -2014-01-06 02:00:00,0.0,1016.0583330000001,0.0,100.0,8.324833332999999,0.072416667,238.00901799999997 -2014-01-06 03:00:00,0.0,1015.942,0.019716667,100.0,7.651416667,0.15925,238.00967599999998 -2014-01-06 04:00:00,0.0,1016.049,4.5553666669999995,100.0,8.236,0.1765,238.00967599999998 -2014-01-06 05:00:00,0.0,1016.2739999999999,46.25016667,99.95833333,7.881583332999999,0.084,238.00934699999996 -2014-01-06 06:00:00,0.0,1016.433,67.7005,96.64166667,10.38916667,0.096083333,238.00901799999997 -2014-01-06 07:00:00,0.0,1016.508333,161.98,80.52916667,12.195,0.560083333,238.00934699999996 -2014-01-06 08:00:00,0.0,1016.592,117.1975,72.33083333,13.3625,1.95575,238.00934699999996 -2014-01-06 09:00:00,0.0,1016.342667,363.8658333,65.28916667,14.9075,1.4878333330000002,238.00901799999997 -2014-01-06 10:00:00,0.0,1016.117333,484.67416669999994,61.0575,16.76333333,1.258666667,238.00967599999998 -2014-01-06 11:00:00,0.0,1015.826,484.9833333000001,52.22833333,18.52916667,1.198083333,238.00934699999996 -2014-01-06 12:00:00,0.0,1015.700333,139.65,58.565,17.64416667,1.84975,238.00901799999997 -2014-01-06 13:00:00,0.0,1015.533333,109.8008333,61.74416667,17.2175,1.68775,238.00967599999998 -2014-01-06 14:00:00,0.0,1015.309333,186.5675,59.09333333,17.29333333,1.7515833330000001,238.00901799999997 -2014-01-06 15:00:00,0.0,1015.2919999999999,209.85416669999998,62.72416667,17.3575,2.2769999999999997,238.00770199999997 -2014-01-06 16:00:00,0.0,1015.009333,117.13333329999999,65.71166667,16.88833333,2.3409999999999997,238.00835999999995 -2014-01-06 17:00:00,0.0,1014.949333,128.1291667,68.09833333,16.51,2.074666667,238.00901799999997 -2014-01-06 18:00:00,0.0,1014.792333,54.10183333,67.0325,17.19416667,1.73075,238.00967599999998 -2014-01-06 19:00:00,0.0,1014.7919999999999,17.11616667,85.17166667,14.9825,0.591333333,238.00967599999998 -2014-01-06 20:00:00,0.0,1015.164667,2.228216667,96.64166667,11.69333333,0.151916667,238.00835999999995 -2014-01-06 21:00:00,0.0,1015.474667,0.0,98.66666667,11.49,0.109583333,238.00901799999997 -2014-01-06 22:00:00,0.0,1015.558,0.0,98.45,11.48916667,0.00375,238.0167416666667 -2014-01-06 23:00:00,0.0,1015.393,0.0,99.78333333,11.0225,0.064166667,238.02673700000003 -2014-02-06 00:00:00,0.0,1015.357667,0.0,100.0,9.791666667000001,0.10283333300000001,238.05190941666663 -2014-02-06 01:00:00,0.0,1015.184,0.0,100.0,7.772083332999999,0.121083333,238.05165563333333 -2014-02-06 02:00:00,0.0,1015.1916669999999,0.0,100.0,6.757999999999999,0.10233333300000001,238.05140184999996 -2014-02-06 03:00:00,0.0,1015.117,0.019716667,100.0,5.9365,0.07775,238.05089428333335 -2014-02-06 04:00:00,0.0,1015.091667,5.660083332999999,100.0,5.28075,0.015166667,238.05015706666663 -2014-02-06 05:00:00,0.0,1015.240667,53.27175,100.0,6.131833332999999,0.00225,238.04943191666666 -2014-02-06 06:00:00,0.0,1015.284,142.03,96.34166667,9.934166667000001,0.090583333,238.04991535 -2014-02-06 07:00:00,0.0,1015.241667,141.89,86.25833333,12.295,0.781333333,238.04943191666663 -2014-02-06 08:00:00,0.0,1015.258333,167.70833330000002,80.59666667,13.50666667,1.096666667,238.04893641666663 -2014-02-06 09:00:00,0.0,1015.050333,343.4491667,71.50416667,15.925,1.329416667,238.04893641666663 -2014-02-06 10:00:00,0.0,1014.8510000000001,442.86666669999994,61.42166667,17.97833333,1.515916667,238.0496736333333 -2014-02-06 11:00:00,0.0,1014.5343330000001,505.48166669999995,57.74416667,18.48333333,1.18975,238.0491781333333 -2014-02-06 12:00:00,0.0,1014.0110000000001,320.145,55.89,19.285,1.6498333330000001,238.04919019999997 -2014-02-06 13:00:00,0.0,1013.584333,505.70916669999997,48.96833333,19.71166667,1.341916667,238.04919019999997 -2014-02-06 14:00:00,0.0,1013.193667,368.4275,49.94166667,20.5375,0.914333333,238.04943191666666 -2014-02-06 15:00:00,0.0,1013.016667,440.27083330000005,49.08333333,20.2775,1.219,238.04893641666663 -2014-02-06 16:00:00,0.0,1012.484667,271.1566667,45.6475,20.7225,1.0035,238.04842884999996 -2014-02-06 17:00:00,0.0,1012.300333,62.76375,47.19,20.9275,1.316083333,238.0486826333333 -2014-02-06 18:00:00,0.0,1012.1089999999999,39.39716667,51.775,20.84,1.131083333,238.04893641666663 -2014-02-06 19:00:00,0.0,1012.133333,29.1235,69.71833333,18.80916667,0.85,238.0486826333333 -2014-02-06 20:00:00,0.0,1012.423333,3.45135,90.75,13.13166667,0.12841666699999998,238.04919019999997 -2014-02-06 21:00:00,0.0,1012.823333,0.0,95.44166667,9.713333333,0.11508333300000001,238.04919019999997 -2014-02-06 22:00:00,0.0,1012.842667,0.0,98.91666667,8.487916667,0.0845,238.04943191666663 -2014-02-06 23:00:00,0.0,1012.725667,0.0,99.99166667,7.560083333,0.060416667,238.04991535 -2014-03-06 00:00:00,0.0,1012.666667,0.0,100.0,6.92875,0.11375,238.0089462 -2014-03-06 01:00:00,0.0,1012.459333,0.0,100.0,6.19525,0.054000000000000006,238.0089462 -2014-03-06 02:00:00,0.0,1012.0103330000001,0.0,100.0,5.85475,0.10216666699999999,238.0089462 -2014-03-06 03:00:00,0.0,1011.692333,0.019716667,100.0,5.3075,0.03825,238.0089462 -2014-03-06 04:00:00,0.0,1011.541667,7.139766667000001,100.0,4.923416667,0.021333333,238.0089462 -2014-03-06 05:00:00,0.0,1011.582667,65.03699999999999,100.0,6.67225,0.008166666999999999,238.0089462 -2014-03-06 06:00:00,0.0,1011.824667,147.02333330000002,95.00833333,10.55416667,0.2045,238.0089462 -2014-03-06 07:00:00,0.0,1011.692,162.9366667,81.26083333,13.195,0.401,238.00869239999997 -2014-03-06 08:00:00,0.0,1011.675,164.0566667,77.8125,14.74833333,0.8494166670000001,238.00742340000002 -2014-03-06 09:00:00,0.0,1011.435667,348.74,74.53083333,17.5025,0.8079999999999999,238.00742340000002 -2014-03-06 10:00:00,0.0,1011.0169999999999,433.41666669999995,62.205,19.51083333,1.06875,238.00742340000002 -2014-03-06 11:00:00,0.0,1010.643333,374.1616667,57.24,21.06166667,1.16975,238.0076772 -2014-03-06 12:00:00,0.0,1010.475333,206.605,67.7775,19.20666667,1.8135833330000002,238.0096834 -2014-03-06 13:00:00,0.0,1010.284,483.58333330000005,63.00333333,18.295,2.108166667,238.00942959999998 -2014-03-06 14:00:00,0.0,1009.701667,322.5833333,55.235,21.03583333,1.171166667,238.00942959999998 -2014-03-06 15:00:00,0.0,1009.376333,471.54916669999994,54.39916667,20.9875,2.022833333,238.00967129999995 -2014-03-06 16:00:00,0.0,1009.059333,156.2166667,63.44583333,20.13583333,1.2800833329999999,238.00942959999998 -2014-03-06 17:00:00,0.0,1008.526667,53.711000000000006,72.37333333,18.47,0.23275,238.0089341 -2014-03-06 18:00:00,0.0,1008.250667,46.87025,77.98166667,17.67916667,0.831666667,238.00869239999997 -2014-03-06 19:00:00,0.0,1008.456667,29.38133333,80.67083333,16.50416667,1.074666667,238.0081848 -2014-03-06 20:00:00,0.0,1008.675,2.8786333330000002,95.04166667,13.35333333,0.10516666699999999,238.00767720000002 -2014-03-06 21:00:00,0.0,1008.509333,0.0,98.60833333,11.58666667,0.08583333300000001,238.007931 -2014-03-06 22:00:00,0.0,1008.292333,0.0,99.98333333,10.30416667,0.13699999999999998,238.00742340000002 -2014-03-06 23:00:00,0.0,1007.984333,0.0,100.0,9.899166667000001,0.055083333,238.00767720000002 -2014-04-06 00:00:00,0.0,1007.668667,0.0,100.0,9.584166667,0.236416667,237.9366203 -2014-04-06 01:00:00,0.0,1007.234333,0.0,100.0,8.253833333,0.18875,237.9366203 -2014-04-06 02:00:00,0.0,1006.710333,0.0,100.0,8.3875,0.09016666699999999,237.9366203 -2014-04-06 03:00:00,0.0,1006.26,0.039433333,100.0,7.4225,0.038416667,237.9366203 -2014-04-06 04:00:00,0.0,1005.933667,7.119058333,100.0,6.412999999999999,0.024333333,237.9366203 -2014-04-06 05:00:00,0.0,1005.874667,63.9765,99.99166667,7.623333333,0.0,237.9355676 -2014-04-06 06:00:00,0.0,1005.568,150.36,96.05833333,11.70583333,0.23,237.93451490000004 -2014-04-06 07:00:00,0.0,1005.309667,137.6025,91.50833333,13.90833333,0.509083333,237.93451490000004 -2014-04-06 08:00:00,0.0,1004.934333,90.48666667,80.66083333,17.00833333,1.558416667,237.9348658 -2014-04-06 09:00:00,0.0,1004.5269999999999,355.775,64.90083333,18.96666667,2.06025,237.93521670000004 -2014-04-06 10:00:00,0.0,1004.134333,460.2325,61.055,20.50666667,2.3865,237.9362694 -2014-04-06 11:00:00,0.0,1003.601667,396.6666667,61.2025,21.045,2.881416667,237.9348658 -2014-04-06 12:00:00,0.0,1003.0186669999999,232.9483333,64.20416667,21.55833333,2.237916667,237.93451490000004 -2014-04-06 13:00:00,0.0,1002.708333,373.7708333,61.95833333,20.81083333,3.368583333,237.93451490000004 -2014-04-06 14:00:00,0.0,1002.360333,171.2608333,65.0475,20.41083333,2.665916667,237.93451490000004 -2014-04-06 15:00:00,0.0,1002.490333,89.4145,79.33333333,19.6975,1.384916667,237.9338465333333 -2014-04-06 16:00:00,0.0,1002.3919999999999,41.01358333,95.80833333,16.74166667,0.45399999999999996,237.9321254666667 -2014-04-06 17:00:00,0.0,1002.293667,30.78191667,94.275,16.2575,0.35025,237.9314571 -2014-04-06 18:00:00,0.0,1002.1239999999999,17.3145,96.20833333,15.14916667,1.59475,237.93110620000002 -2014-04-06 19:00:00,0.0,1002.432333,7.73115,99.95833333,14.3175,0.5545,237.93005355 -2014-04-06 20:00:00,0.0,1002.541333,3.4314,100.0,14.04,0.77625,237.9282991 -2014-04-06 21:00:00,0.0,1002.657667,0.0,100.0,13.98666667,1.073083333,237.9282991 -2014-04-06 22:00:00,0.0,1002.784,0.0,100.0,13.70583333,0.29791666699999997,237.9282991 -2014-04-06 23:00:00,0.0,1002.9060000000001,0.0,99.18333333,13.15083333,0.786083333,237.92629390000002 -2014-05-06 00:00:00,0.0,1003.722,0.0,95.81666667,12.845,0.70325,237.82393256666668 -2014-05-06 01:00:00,0.0,1005.243667,0.0,97.18333333,12.24166667,1.230083333,237.82498521666665 -2014-05-06 02:00:00,0.0,1006.265667,0.0,98.84166667,10.70083333,0.772083333,237.8253361 -2014-05-06 03:00:00,0.0,1006.756333,0.019716667,98.20833333,10.515,0.523666667,237.8253361 -2014-05-06 04:00:00,0.0,1007.456333,8.874191667,95.44166667,9.221666667000001,0.411916667,237.8253361 -2014-05-06 05:00:00,0.0,1008.146333,87.54783333,92.91666667,9.295833333,0.164666667,237.8253361 -2014-05-06 06:00:00,0.0,1008.616667,168.16916669999998,87.825,10.90166667,0.7413333329999999,237.82600449999998 -2014-05-06 07:00:00,0.0,1009.04,135.69441669999998,80.23416667,12.195,1.212083333,237.8253361 -2014-05-06 08:00:00,0.0,1009.3323330000001,87.59333333,74.45083333,13.75666667,1.213083333,237.82700710000003 -2014-05-06 09:00:00,0.0,1009.5823330000001,368.62,67.0925,15.24166667,1.38825,237.82700710000003 -2014-05-06 10:00:00,0.0,1009.766333,382.6783333,67.9725,16.06916667,1.5021666669999998,237.8253361 -2014-05-06 11:00:00,0.0,1009.783667,397.4483333,61.34083333,16.54583333,1.42275,237.8249852166667 -2014-05-06 12:00:00,0.0,1009.924333,533.7908333,55.23,17.33583333,1.35175,237.82358168333334 -2014-05-06 13:00:00,0.0,1010.2239999999999,463.14333330000005,51.61083333,18.12916667,1.68125,237.82076450000005 -2014-05-06 14:00:00,0.0,1010.383,351.0558333,50.14916667,18.62416667,1.0320833329999999,237.82122559999996 -2014-05-06 15:00:00,0.0,1010.267667,248.52333330000002,51.175,18.04416667,0.816916667,237.82122559999996 -2014-05-06 16:00:00,0.0,1010.240667,180.41916669999998,53.03666667,18.44666667,0.81275,237.82155979999996 -2014-05-06 17:00:00,0.0,1010.342,83.84483333,54.59083333,19.25333333,0.6871666670000001,237.82122559999996 -2014-05-06 18:00:00,0.0,1010.465333,72.898,53.83333333,18.58083333,0.803333333,237.82122559999996 -2014-05-06 19:00:00,0.0,1010.831667,29.95358333,62.83666667,18.2975,0.414083333,237.82122559999996 -2014-05-06 20:00:00,0.0,1011.456333,3.1949166669999998,85.58,12.84,0.24225,237.82122559999996 -2014-05-06 21:00:00,0.0,1012.015,0.019716667,95.375,9.518333333,0.123083333,237.82122559999996 -2014-05-06 22:00:00,0.0,1012.4739999999999,0.0,97.99166667,7.647583332999999,0.012833333,237.82155979999996 -2014-05-06 23:00:00,0.0,1012.907333,0.0,99.09166667,6.684666667,0.12516666699999998,237.82122559999996 -2014-06-06 00:00:00,0.0,1013.0989999999999,0.0,99.95833333,5.4110000000000005,0.022666667,237.70442740000001 -2014-06-06 01:00:00,0.0,1013.208333,0.0,100.0,4.578916667,0.0655,237.70616518333335 -2014-06-06 02:00:00,0.0,1013.274333,0.0,100.0,4.289416667,0.067083333,237.70783609999998 -2014-06-06 03:00:00,0.0,1013.440667,0.039433333,100.0,3.658416667,0.092916667,237.70783609999998 -2014-06-06 04:00:00,0.0,1013.774667,11.184425,100.0,3.218916667,0.033,237.7099415 -2014-06-06 05:00:00,0.0,1013.95,83.96675,99.51666667,5.25775,0.0,237.71060986666666 -2014-06-06 06:00:00,0.0,1014.081667,174.3466667,88.375,9.577333333,0.09475,237.7119466 -2014-06-06 07:00:00,0.0,1014.1833330000001,144.2455,83.10583333,11.57583333,0.46225,237.7126484 -2014-06-06 08:00:00,0.0,1013.9760000000001,171.8441667,75.85,14.435,0.8740000000000001,237.714052 -2014-06-06 09:00:00,0.0,1013.95,305.77166669999997,69.23833333,17.41333333,1.0593333329999999,237.70202125000003 -2014-06-06 10:00:00,0.0,1013.776667,410.3108333,58.94333333,19.41833333,1.18775,237.69480283333334 -2014-06-06 11:00:00,0.0,1013.252,516.32,51.8375,21.75333333,1.7425,237.68349061666666 -2014-06-06 12:00:00,0.0,1012.884333,557.2466667,47.7325,22.77083333,1.789166667,237.69104323333332 -2014-06-06 13:00:00,0.0,1012.409667,538.4925,46.31166667,23.59083333,1.851,237.6965573 -2014-06-06 14:00:00,0.0,1012.000667,472.6108333000001,44.99166667,24.4375,1.59275,237.6944519 -2014-06-06 15:00:00,0.0,1011.742667,433.11916669999994,42.57083333,25.0575,1.787333333,237.69378353333335 -2014-06-06 16:00:00,0.0,1011.46,377.3408333,42.69666667,25.56083333,1.416333333,237.69034143333332 -2014-06-06 17:00:00,21.79441349,1010.851667,48.79816667,45.21416667,25.66416667,1.3955,237.69032476666666 -2014-06-06 18:00:00,0.0,1010.766667,29.69341667,46.26083333,25.68166667,0.822416667,237.6876178 -2014-06-06 19:00:00,0.0,1010.849333,25.02208333,67.14333333,24.25416667,0.177,237.6872836 -2014-06-06 20:00:00,0.0,1011.081667,3.7261583330000003,87.75833333,17.18333333,0.065166667,237.687952 -2014-06-06 21:00:00,0.0,1011.632,0.0,93.53333333,13.25,0.06,237.68895460000002 -2014-06-06 22:00:00,0.0,1011.6676669999999,0.0,98.325,11.67083333,0.077,237.6889546 -2014-06-06 23:00:00,0.0,1011.6410000000001,0.0,99.76666667,10.6375,0.03975,237.69104321666669 -2014-07-06 00:00:00,0.0,1011.659,0.0,100.0,9.815833332999999,0.078,237.57564860000005 -2014-07-06 01:00:00,0.0,1011.691,0.0,100.0,9.2425,0.12583333300000002,237.57905730000004 -2014-07-06 02:00:00,0.0,1011.625,0.0,100.0,8.59,0.045333332999999996,237.58144673333334 -2014-07-06 03:00:00,0.0,1011.650667,0.078866667,100.0,8.182,0.054166667,237.58420378333335 -2014-07-06 04:00:00,0.0,1011.7660000000001,11.61638333,100.0,8.035583333,0.021833332999999996,237.58589141666667 -2014-07-06 05:00:00,0.0,1012.048667,73.57583333,99.975,10.13416667,0.0,237.5862256 -2014-07-06 06:00:00,0.0,1012.175,152.0866667,92.55,14.1725,0.199666667,237.588331 -2014-07-06 07:00:00,0.0,1012.2,126.75425,83.84083333,16.31833333,0.550333333,237.5897345333333 -2014-07-06 08:00:00,0.0,1012.208333,46.79383333,71.41833333,19.33166667,0.8460833329999999,237.5904363 -2014-07-06 09:00:00,0.0,1011.967,358.0260833,62.77916667,23.07833333,1.341,237.58453796666666 -2014-07-06 10:00:00,0.0,1011.942,481.18,55.3825,25.225,1.817333333,237.57287483333334 -2014-07-06 11:00:00,0.0,1011.776667,525.455,53.19166667,26.5925,2.103916667,237.56221424999998 -2014-07-06 12:00:00,0.0,1011.665,524.5566666999999,48.42416667,28.17166667,2.51125,237.5563994 -2014-07-06 13:00:00,0.0,1011.543,438.34583330000004,45.57666667,28.47166667,2.890333333,237.55400996666665 -2014-07-06 14:00:00,0.0,1011.400333,393.8083333,44.8375,29.37666667,2.69875,237.55088531666664 -2014-07-06 15:00:00,0.0,1011.4580000000001,264.71666669999996,46.78583333,29.06916667,1.574416667,237.54812829999995 -2014-07-06 16:00:00,0.0,1011.475333,165.1008333,55.38416667,28.66833333,0.57875,237.54677481666667 -2014-07-06 17:00:00,0.0,1011.417333,103.7458333,70.295,27.05166667,0.242083333,237.5453712833333 -2014-07-06 18:00:00,0.0,1011.574333,77.1925,77.71166667,26.88583333,0.37008333299999996,237.54334939999998 -2014-07-06 19:00:00,0.0,1011.673667,25.69,81.93416667,25.69333333,0.36258333299999995,237.54301519999999 -2014-07-06 20:00:00,0.0,1012.04,3.4706583330000003,88.975,19.8725,0.041333333,237.54401779999998 -2014-07-06 21:00:00,0.0,1012.408,0.0,95.54166667,16.51583333,0.1195,237.54401779999998 -2014-07-06 22:00:00,0.0,1012.84,0.0,98.98333333,14.63833333,0.15558333300000002,237.5487967 -2014-07-06 23:00:00,0.0,1012.832667,0.0,99.98333333,13.4,0.06875,237.55297398333332 -2014-08-06 00:00:00,0.0,1012.9333330000001,0.0,100.0,13.52166667,0.227166667,237.4729363 -2014-08-06 01:00:00,0.0,1013.0010000000001,0.0,100.0,12.6025,0.083333333,237.47190031666665 -2014-08-06 02:00:00,0.0,1012.891667,0.0,100.0,11.81083333,0.105333333,237.4691599833333 -2014-08-06 03:00:00,0.0,1012.758333,0.039433333,100.0,11.35083333,0.0465,237.46882580000002 -2014-08-06 04:00:00,0.0,1012.857333,8.243841667,100.0,10.97833333,0.07075,237.46847490000002 -2014-08-06 05:00:00,0.0,1013.282333,53.7215,100.0,12.58916667,0.002333333,237.46707130000001 -2014-08-06 06:00:00,0.0,1013.475,145.95583330000002,93.98333333,16.125,0.20075,237.46707130000001 -2014-08-06 07:00:00,0.0,1013.6410000000001,138.32,85.85,18.91083333,0.978666667,237.46777309999996 -2014-08-06 08:00:00,0.0,1013.915667,72.56666667,77.805,22.27333333,0.9225,237.4674222 -2014-08-06 09:00:00,0.0,1013.916667,339.2841667,70.01666667,25.57333333,1.126916667,237.468124 -2014-08-06 10:00:00,0.0,1014.024667,447.5741666999999,60.25,27.74916667,1.402916667,237.46672041666667 -2014-08-06 11:00:00,0.0,1014.108333,497.4725,58.05166667,29.14,1.67425,237.46566774999997 -2014-08-06 12:00:00,0.0,1013.9093330000001,485.8,54.795,30.0325,1.716,237.46361249999998 -2014-08-06 13:00:00,0.0,1013.717,502.4425,45.76,31.09666667,1.2435,237.4619081333333 -2014-08-06 14:00:00,0.0,1013.525667,472.7041666999999,44.64,31.78583333,1.1205,237.45950199999996 -2014-08-06 15:00:00,0.0,1013.317667,415.2925,44.96833333,31.98916667,1.2555,237.45849939999997 -2014-08-06 16:00:00,0.0,1013.134333,344.9716667,40.8375,32.60166667,0.6875,237.45639410000004 -2014-08-06 17:00:00,0.0,1012.6593330000001,62.3525,41.29666667,31.8075,1.08175,237.4547231 -2014-08-06 18:00:00,0.0,1012.690333,35.01925,55.12833333,31.51916667,0.35183333299999997,237.45333625 -2014-08-06 19:00:00,0.0,1012.908333,27.16816667,74.7325,28.26,0.38733333299999995,237.4515818 -2014-08-06 20:00:00,0.0,1013.230667,4.200175,85.86666667,23.22083333,0.502916667,237.45017819999995 -2014-08-06 21:00:00,0.0,1013.724667,0.019716667,93.925,20.00666667,0.15366666699999998,237.45017819999995 -2014-08-06 22:00:00,0.0,1013.923667,0.0,98.775,17.90833333,0.113416667,237.44917565 -2014-08-06 23:00:00,0.0,1014.033333,0.0,100.0,16.505,0.112166667,237.44884146666666 -2014-09-06 00:00:00,0.0,1013.768333,0.0,100.0,15.83083333,0.091416667,237.81413080000002 -2014-09-06 01:00:00,0.0,1013.725667,0.0,100.0,15.5075,0.092916667,237.81379661666668 -2014-09-06 02:00:00,0.0,1013.674333,0.0,100.0,15.28166667,0.230083333,237.81346243333334 -2014-09-06 03:00:00,0.0,1013.541667,0.05915,100.0,15.1825,0.065333333,237.81413080000002 -2014-09-06 04:00:00,0.0,1013.758,7.888708332999999,100.0,14.4875,0.208166667,237.81379661666665 -2014-09-06 05:00:00,0.0,1013.807,68.768,100.0,16.52583333,0.107,237.81379661666665 -2014-09-06 06:00:00,0.0,1014.183,144.2525,94.24166667,18.9725,1.553916667,237.8121257 -2014-09-06 07:00:00,0.0,1014.483333,130.56166670000002,85.575,20.735,2.20475,237.8121257 -2014-09-06 08:00:00,0.0,1014.541,71.32416667,80.53583333,22.64583333,2.460083333,237.81279406666667 -2014-09-06 09:00:00,0.0,1014.235333,340.2875,74.28416667,24.49833333,2.437333333,237.81312824999998 -2014-09-06 10:00:00,0.0,1013.833333,455.385,67.0975,26.8925,1.8728333330000002,237.81379661666665 -2014-09-06 11:00:00,0.0,1013.826,493.72166669999996,60.28166667,29.0275,1.166166667,237.81279406666667 -2014-09-06 12:00:00,0.0,1013.4093330000001,501.375,54.905,30.67833333,0.88725,237.81177479999997 -2014-09-06 13:00:00,0.0,1013.025667,504.63,55.09916667,31.515,1.22875,237.81072210000002 -2014-09-06 14:00:00,0.0,1012.977,466.8475,52.60083333,32.2225,1.385083333,237.8100203 -2014-09-06 15:00:00,0.0,1012.151667,411.22083330000004,48.44916667,32.87166667,1.1025833329999999,237.80791490000001 -2014-09-06 16:00:00,0.0,1011.602667,326.08916669999996,49.9775,32.98416667,1.232666667,237.8065781666667 -2014-09-06 17:00:00,0.0,1010.959333,94.74616667,50.92333333,32.79833333,1.034333333,237.80555890000005 -2014-09-06 18:00:00,0.0,1010.81,40.22491667,55.1925,32.22833333,0.939083333,237.80415530000002 -2014-09-06 19:00:00,0.0,1010.873333,10.588375,78.53416667,27.16416667,0.18466666699999998,237.80380440000002 -2014-09-06 20:00:00,0.0,1011.447,3.174441667,91.53333333,21.66583333,0.168166667,237.80347021666668 -2014-09-06 21:00:00,0.0,1012.263,0.0,91.75666667,20.9025,0.6010833329999999,237.80380440000002 -2014-09-06 22:00:00,16.3968499,1013.131667,0.0,85.65583333,22.685,2.524333333,237.80380440000002 -2014-09-06 23:00:00,2.648229504,1013.2589999999999,0.0,99.98333333,18.66416667,0.505083333,237.80179930000006 -2014-10-06 00:00:00,2.418878592,1013.65,0.0,100.0,18.00333333,0.850916667, -2014-10-06 01:00:00,0.0,1012.884667,0.0,98.36666667,19.1175,1.52575, -2014-10-06 02:00:00,0.0,1012.600667,0.0,95.00833333,18.40166667,1.130083333, -2014-10-06 03:00:00,2.9647714080000003,1012.5260000000001,0.019716667,99.84166667,17.3525,1.0889166670000001, -2014-10-06 04:00:00,0.0,1012.464667,6.251233332999999,100.0,15.8225,0.409583333, -2014-10-06 05:00:00,0.0,1013.24,62.65233333,100.0,16.37583333,0.066833333, -2014-10-06 06:00:00,2.57737512,1013.890333,98.5075,98.53333333,19.15083333,0.3535, -2014-10-06 07:00:00,0.0,1014.214333,121.42666670000001,86.94166667,21.01833333,0.29383333300000003, -2014-10-06 08:00:00,0.0,1014.195333,155.9425,80.56666667,22.01333333,1.9861666669999998, -2014-10-06 09:00:00,0.0,1014.767667,206.31916669999998,80.8675,22.49916667,1.339666667, -2014-10-06 10:00:00,2.558258232,1015.228333,180.5941667,79.8075,23.52083333,0.709666667, -2014-10-06 11:00:00,0.0,1014.317667,287.58916669999996,77.025,24.8625,1.5781666669999999, -2014-10-06 12:00:00,0.0,1014.109333,445.5325,69.87083333,26.83333333,1.08575, -2014-10-06 13:00:00,0.0,1014.0010000000001,468.5625,64.93333333,28.775,1.003833333, -2014-10-06 14:00:00,0.0,1013.857667,454.25333330000007,64.22416667,30.05416667,0.946416667, -2014-10-06 15:00:00,2.8259174639999998,1013.792333,407.5341667,54.98583333,31.06666667,1.488833333, -2014-10-06 16:00:00,0.0,1013.384667,251.06666669999998,57.82083333,31.6375,0.805083333, -2014-10-06 17:00:00,0.0,1013.408,136.115,67.95,31.36416667,0.69425, -2014-10-06 18:00:00,0.0,1014.029667,50.6555,75.60416667,28.00166667,0.5115, -2014-10-06 19:00:00,0.0,1014.3083330000001,19.18466667,66.57333333,26.7525,2.74775, -2014-10-06 20:00:00,0.0,1015.295333,3.154958333,74.52916667,25.29583333,2.39225, -2014-10-06 21:00:00,0.0,1016.175,0.0,90.775,23.2675,1.0815, -2014-10-06 22:00:00,0.0,1016.139667,0.0,85.425,21.78333333,0.68875, -2014-10-06 23:00:00,0.0,1016.451667,0.0,94.04166667,20.43333333,0.782416667, -2014-11-06 00:00:00,0.0,1016.216667,0.0,99.79166667,19.11166667,0.243333333,237.9402525 -2014-11-06 01:00:00,0.0,1015.7260000000001,0.0,100.0,17.61083333,0.141666667,237.9402525 -2014-11-06 02:00:00,0.0,1016.345667,0.0,100.0,17.4075,0.17300000000000001,237.94091916666665 -2014-11-06 03:00:00,0.0,1017.032333,0.019716667,100.0,18.59583333,0.194166667,237.9409191666667 -2014-11-06 04:00:00,0.0,1017.789667,3.293383333,96.45,19.03916667,0.5025,237.9402525 -2014-11-06 05:00:00,0.0,1017.692667,2.563691667,96.15833333,20.07833333,1.9135,237.9402525 -2014-11-06 06:00:00,0.0,1019.175667,0.453483333,99.26666667,18.66833333,1.8546666669999998,237.94058583333333 -2014-11-06 07:00:00,2.874298488,1019.222333,4.515758333,100.0,17.07166667,1.40025,237.9422525 -2014-11-06 08:00:00,0.0,1018.697,52.09925,100.0,16.96916667,1.85925,237.9422525 -2014-11-06 09:00:00,0.0,1019.091667,156.9464167,98.45833333,17.74583333,1.337583333,237.9422525 -2014-11-06 10:00:00,3.074811864,1019.398667,380.4091667,90.31666667,20.06583333,2.624166667,237.9426025 -2014-11-06 11:00:00,3.2674750560000003,1019.533333,505.6975,81.91083333,21.79166667,2.32775,237.94365249999996 -2014-11-06 12:00:00,2.6066675040000002,1019.7239999999999,271.8566667,78.79583333,23.50833333,1.221083333,237.94365249999996 -2014-11-06 13:00:00,0.0,1019.841,454.28833330000003,70.3675,24.64666667,0.791666667,237.94435249999995 -2014-11-06 14:00:00,0.0,1019.958333,395.1616667,72.30416667,24.03916667,1.9196666669999998,237.94435249999995 -2014-11-06 15:00:00,3.1655468160000004,1019.824667,159.66416669999998,77.92166667,24.62416667,1.053833333,237.9446858333333 -2014-11-06 16:00:00,0.0,1020.166333,95.58033333,79.72166667,24.46,1.422333333,237.9446858333333 -2014-11-06 17:00:00,0.0,1020.1,92.70916667,81.32916667,23.47666667,1.50075,237.94635250000002 -2014-11-06 18:00:00,0.0,1020.464333,45.18966667,75.42,22.6375,1.8180833330000001,237.94601916666667 -2014-11-06 19:00:00,0.0,1021.157333,26.06683333,78.59833333,21.71916667,1.5228333330000001,237.94535249999998 -2014-11-06 20:00:00,0.0,1021.514667,2.878866667,84.60583333,20.78083333,1.267833333,237.94501916666664 -2014-11-06 21:00:00,0.0,1021.949667,0.0,84.09083333,19.36333333,1.4444166669999998,237.94635250000002 -2014-11-06 22:00:00,0.0,1022.148333,0.0,97.88333333,16.67833333,0.230583333,237.94635250000002 -2014-11-06 23:00:00,0.0,1022.508,0.0,99.98333333,14.7525,0.139916667,237.94635250000002 -2014-12-06 00:00:00,0.0,1022.392333,0.0,100.0,13.89916667,0.151,237.88370250000003 -2014-12-06 01:00:00,0.0,1021.959,0.0,100.0,13.37833333,0.179166667,237.88405249999997 -2014-12-06 02:00:00,0.0,1021.8510000000001,0.0,100.0,12.92166667,0.1535,237.88405249999997 -2014-12-06 03:00:00,0.0,1021.825,0.157733333,100.0,12.17416667,0.03075,237.88475250000002 -2014-12-06 04:00:00,0.0,1021.808,9.604291667,100.0,11.7725,0.08691666699999999,237.88580249999998 -2014-12-06 05:00:00,0.0,1022.140333,63.16975,100.0,13.28666667,0.01625,237.88580249999998 -2014-12-06 06:00:00,0.0,1022.4656669999999,138.9325,93.7,15.41083333,0.42275,237.88580250000004 -2014-12-06 07:00:00,0.0,1022.740667,139.0958333,86.15833333,17.185,1.851666667,237.8868525 -2014-12-06 08:00:00,0.0,1022.742667,95.655,82.18083333,18.36166667,2.304583333,237.88718583333332 -2014-12-06 09:00:00,0.0,1022.418333,303.1291667,76.93333333,19.9575,2.32575,237.8878525 -2014-12-06 10:00:00,3.647212512,1022.107667,356.125,71.55666667,20.98833333,2.52175,237.88920249999998 -2014-12-06 11:00:00,0.0,1021.843333,541.6366667000001,65.23666667,22.1175,1.73225,237.89093583333332 -2014-12-06 12:00:00,0.0,1021.443667,481.12166669999993,61.6525,22.84666667,1.7170833330000002,237.89605250000002 -2014-12-06 13:00:00,0.0,1021.1593330000001,424.585,58.0425,23.53666667,1.5765,237.90185250000002 -2014-12-06 14:00:00,0.0,1020.726667,534.065,55.21916667,23.96,1.649583333,237.90460249999998 -2014-12-06 15:00:00,0.0,1020.209333,365.645,53.62333333,24.13833333,1.395083333,237.91283583333333 -2014-12-06 16:00:00,0.0,1019.669333,308.1925,53.26083333,24.66666667,1.208083333,237.91078583333334 -2014-12-06 17:00:00,0.0,1019.143333,57.19583333,59.37833333,24.37166667,1.807,237.91863583333335 -2014-12-06 18:00:00,0.0,1018.990667,48.3105,62.5025,23.16666667,2.47675,237.9279025 -2014-12-06 19:00:00,0.0,1019.191,18.83116667,69.74333333,20.92916667,2.7433333330000003,237.9344025 -2014-12-06 20:00:00,0.0,1019.623,4.674075,75.25,19.37833333,2.1535833330000003,237.94021916666668 -2014-12-06 21:00:00,0.0,1020.073333,0.05915,90.94166667,17.04916667,1.036583333,237.95053583333333 -2014-12-06 22:00:00,0.0,1020.242667,0.0,96.78333333,13.355,0.09425,237.96043583333332 -2014-12-06 23:00:00,0.0,1020.25,0.0,99.20833333,11.97583333,0.134583333,237.9679858333333 -2014-06-13 00:00:00,0.0,1019.884333,0.0,99.94166667,11.08166667,0.13825,238.02858843333334 -2014-06-13 01:00:00,0.0,1019.476667,0.0,100.0,10.15333333,0.065833333,238.0258481666667 -2014-06-13 02:00:00,0.0,1019.001667,0.0,100.0,9.3975,0.18733333300000002,238.02243943333335 -2014-06-13 03:00:00,0.0,1018.925,0.05915,100.0,8.94,0.05175,238.0190140166667 -2014-06-13 04:00:00,0.0,1018.6669999999999,9.762141667,100.0,8.229166667000001,0.04075,238.01657450000005 -2014-06-13 05:00:00,0.0,1018.699667,81.94083333,99.61666667,10.23166667,0.0,238.01381745 -2014-06-13 06:00:00,0.0,1018.692,159.8041667,92.175,14.13666667,0.124833333,238.01141130000005 -2014-06-13 07:00:00,0.0,1018.667333,131.07208329999997,77.96833333,16.47916667,0.511916667,238.00903858333334 -2014-06-13 08:00:00,0.0,1018.459333,56.81725,68.75666667,18.21583333,0.6476666670000001,238.00694990000002 -2014-06-13 09:00:00,0.0,1018.1833330000001,283.47083330000004,62.69166667,20.4025,0.8035,238.0052622666667 -2014-06-13 10:00:00,0.0,1017.6610000000001,493.8266666999999,59.3675,20.5025,1.272,238.00215431666666 -2014-06-13 11:00:00,0.0,1017.076333,454.9475,55.52166667,21.28333333,1.63075,237.99737545000002 -2014-06-13 12:00:00,3.7809302160000002,1016.552,503.6325,54.03916667,22.4625,2.6455,237.9946184 -2014-06-13 13:00:00,0.0,1016.076667,456.53416669999996,51.8225,22.99333333,2.4948333330000003,237.99115955 -2014-06-13 14:00:00,0.0,1015.585,548.065,46.63916667,22.94916667,2.943666667,237.9884025 -2014-06-13 15:00:00,0.0,1015.243,386.8025,50.2475,22.87416667,3.203583333,237.98430871666665 -2014-06-13 16:00:00,0.0,1015.1080000000001,112.56583329999998,55.9075,21.325,3.395,237.981936 -2014-06-13 17:00:00,0.0,1015.0260000000001,117.29666670000002,58.4225,20.7475,3.453583333,237.9791622333333 -2014-06-13 18:00:00,0.0,1014.990667,63.57166667,63.27333333,19.89,2.970416667,237.9771237 -2014-06-13 19:00:00,0.0,1015.075667,30.506,65.82666667,18.91916667,2.0665,237.9733641 -2014-06-13 20:00:00,0.0,1015.007667,5.3641,76.605,16.71,1.0576666670000001,237.97125871666665 -2014-06-13 21:00:00,0.0,1015.208333,0.039433333,92.16666667,14.31916667,0.4825,237.9695043 -2014-06-13 22:00:00,0.0,1015.024667,0.0,97.03333333,12.65583333,0.111666667,237.96850175 -2014-06-13 23:00:00,0.0,1015.075333,0.0,99.56666667,12.04,0.072166667,237.96679740000005 -2014-06-14 00:00:00,0.0,1014.876667,0.0,99.96666667,12.15333333,0.041916667000000005,237.96472543333334 -2014-06-14 01:00:00,0.0,1014.791,0.0,99.69166667,11.6925,0.0875,237.96372288333336 -2014-06-14 02:00:00,0.0,1014.517667,0.0,100.0,11.10666667,0.10875,237.96200181666669 -2014-06-14 03:00:00,0.0,1014.275667,0.09858333300000001,100.0,10.55583333,0.194416667,237.95927819999997 -2014-06-14 04:00:00,0.0,1014.383333,9.032391667,100.0,10.90833333,0.5950833329999999,237.95822550000003 -2014-06-14 05:00:00,0.0,1014.598333,21.79158333,100.0,12.7075,1.27325,237.95717280000005 -2014-06-14 06:00:00,0.0,1014.915667,60.31083333,91.68333333,13.44833333,1.975916667,237.95617024999999 -2014-06-14 07:00:00,0.0,1015.075,124.34333329999998,77.59416667,14.36833333,2.504833333,237.95516769999998 -2014-06-14 08:00:00,0.0,1015.2156669999999,158.83,67.8675,14.87416667,2.2286666669999997,237.95446589999997 -2014-06-14 09:00:00,0.0,1015.176333,262.89666669999997,63.68916667,15.77583333,1.673583333,237.9520096 -2014-06-14 10:00:00,0.0,1015.099667,216.4575,64.60583333,16.08083333,1.968666667,237.94962016666668 -2014-06-14 11:00:00,0.0,1015.158333,131.9208333,67.75833333,15.815,1.92475,237.9478991 -2014-06-14 12:00:00,0.0,1015.174667,152.2558333,68.32,16.39083333,1.7908333330000001,237.94651221666672 -2014-06-14 13:00:00,0.0,1015.258333,219.6308333,63.59583333,16.62416667,2.617416667,237.9448413 -2014-06-14 14:00:00,0.0,1015.307667,198.4325,60.99833333,16.81333333,1.935,237.94308680000003 -2014-06-14 15:00:00,0.0,1015.1593330000001,285.0166667,59.9075,17.41083333,1.708083333,237.94173335000002 -2014-06-14 16:00:00,0.0,1015.034,88.23616667,67.26083333,16.92166667,1.9315,237.93832465 -2014-06-14 17:00:00,0.0,1014.800333,105.74141670000002,64.50833333,17.95166667,2.6230833330000003,237.9366203 -2014-06-14 18:00:00,0.0,1014.675,46.74075,70.43166667,17.40333333,2.2515,237.9355676 -2014-06-14 19:00:00,0.0,1015.098667,32.38316667,73.1425,16.5,2.0925833330000003,237.9338465333333 -2014-06-14 20:00:00,0.0,1015.481667,6.862508332999999,83.0975,14.915,1.292666667,237.93145710000002 -2014-06-14 21:00:00,0.0,1016.106667,0.078866667,96.7,11.71916667,0.037833333,237.92970263333336 -2014-06-14 22:00:00,0.0,1016.539667,0.0,99.59166667,9.768333333,0.082333333,237.9282991 -2014-06-14 23:00:00,0.0,1016.741333,0.0,100.0,8.8825,0.18683333300000002,237.92522456666666 -2014-06-15 00:00:00,0.0,1016.833333,0.0,100.0,8.0505,0.052166667,237.9241886 -2014-06-15 01:00:00,0.0,1016.941333,0.0,100.0,7.760666667000001,0.19275,237.92218340000002 -2014-06-15 02:00:00,0.0,1016.9,0.0,100.0,7.13525,0.0445,237.92183251666668 -2014-06-15 03:00:00,0.0,1016.834,0.078866667,100.0,6.863083333,0.256083333,237.92007809999998 -2014-06-15 04:00:00,0.0,1017.023333,12.0897,100.0,6.764416667000001,0.01675,237.9190755 -2014-06-15 05:00:00,0.0,1017.407333,85.00158333,99.725,9.061916667,0.00575,237.9180729 -2014-06-15 06:00:00,0.0,1017.6080000000001,165.5616667,91.275,13.30333333,0.309583333,237.91703693333332 -2014-06-15 07:00:00,0.0,1017.75,132.3869167,88.475,13.88666667,2.807083333,237.91396239999997 -2014-06-15 08:00:00,0.0,1017.791,60.32716667,81.6625,15.39416667,2.2655,237.91396239999997 -2014-06-15 09:00:00,0.0,1017.891667,396.5791667,73.18083333,17.16333333,1.9245,237.91220798333333 -2014-06-15 10:00:00,0.0,1017.6676669999999,245.63,67.29166667,18.03583333,2.325416667,237.9104535 -2014-06-15 11:00:00,0.0,1017.600667,335.7433333,69.085,18.4525,2.448583333,237.90841496666667 -2014-06-15 12:00:00,0.0,1017.391667,370.3058333,66.61083333,19.065,3.1350833330000003,237.90669390000002 -2014-06-15 13:00:00,0.0,1017.176333,481.75166669999993,58.93,19.45333333,3.025833333,237.90430446666667 -2014-06-15 14:00:00,0.0,1016.975,475.6733333000001,57.985,19.73833333,2.913333333,237.9018816 -2014-06-15 15:00:00,0.0,1016.659667,276.3308333,57.39833333,19.79166667,2.7951666669999997,237.89847289999997 -2014-06-15 16:00:00,0.0,1016.400333,286.1891667,55.90666667,20.105,3.250916667,237.8954151 -2014-06-15 17:00:00,0.0,1016.284,157.48833330000002,55.86916667,20.2625,2.672333333,237.89297551666667 -2014-06-15 18:00:00,0.0,1016.217,31.86516667,61.92416667,19.50333333,1.97625,237.89095370000004 -2014-06-15 19:00:00,0.0,1016.266667,22.344,73.28166667,18.47,1.581083333,237.88919919999998 -2014-06-15 20:00:00,0.0,1016.4896669999999,6.567341667000001,88.83333333,15.2775,0.504833333,237.8870938 -2014-06-15 21:00:00,0.0,1017.172333,0.05915,95.44166667,11.20166667,0.094583333,237.88575706666668 -2014-06-15 22:00:00,0.0,1017.425667,0.0,97.80833333,9.760833332999999,0.097416667,237.8850887 -2014-06-15 23:00:00,0.0,1017.475333,0.0,99.21666667,8.79,0.168083333,237.88264911666667 -2014-06-16 00:00:00,0.0,1017.4,0.0,100.0,8.206666667,0.093083333,237.88097819999993 -2014-06-16 01:00:00,0.0,1017.275667,0.0,100.0,7.592583332999999,0.026416667,237.88062729999993 -2014-06-16 02:00:00,0.0,1017.2660000000001,0.0,100.0,7.15525,0.054083333,237.87922369999998 -2014-06-16 03:00:00,0.0,1017.267333,0.078866667,100.0,7.128916667,0.12708333300000002,237.87853861666667 -2014-06-16 04:00:00,0.0,1017.059333,10.13745833,100.0,6.991083333,0.021166667000000004,237.87753606666664 -2014-06-16 05:00:00,0.0,1017.256333,80.46208333,99.40833333,9.0095,0.00275,237.87616593333328 -2014-06-16 06:00:00,0.0,1017.192667,152.58833330000002,90.5,13.2525,0.288833333,237.87476239999998 -2014-06-16 07:00:00,0.0,1017.216,166.8858333,83.54333333,14.30833333,1.299916667,237.87476239999998 -2014-06-16 08:00:00,0.0,1017.134333,133.945,78.6775,15.81583333,1.607083333,237.87476239999998 -2014-06-16 09:00:00,0.0,1016.818,269.54083330000003,75.76333333,17.1125,1.7783333330000002,237.8730914 -2014-06-16 10:00:00,0.0,1016.508667,350.8283333,70.24416667,18.3875,1.400333333,237.8727572 -2014-06-16 11:00:00,0.0,1016.143333,425.78666669999996,62.85416667,18.76,2.35775,237.870301 -2014-06-16 12:00:00,0.0,1016.091667,465.66916669999995,63.91583333,19.29416667,3.318,237.86821231666661 -2014-06-16 13:00:00,0.0,1015.967667,481.83333330000005,63.22666667,18.89166667,3.601666667,237.8641185333333 -2014-06-16 14:00:00,0.0,1015.600333,421.62166669999993,58.71083333,18.77166667,3.108916667,237.86172910000002 -2014-06-16 15:00:00,0.0,1015.209667,326.96416669999996,56.4325,19.05,2.993083333,237.85999131666665 -2014-06-16 16:00:00,0.0,1015.291667,159.4366667,62.95,17.93416667,3.558333333,237.8583204 -2014-06-16 17:00:00,0.0,1015.175333,118.04916670000001,65.975,17.56166667,3.096833333,237.856215 -2014-06-16 18:00:00,0.0,1015.174667,75.30541667,70.215,16.79166667,2.7255,237.85588081666666 -2014-06-16 19:00:00,0.0,1015.1916669999999,23.31058333,74.54083333,16.03,2.281583333,237.8521045 -2014-06-16 20:00:00,0.0,1015.25,4.101941667,80.655,15.23083333,2.128833333,237.8521045 -2014-06-16 21:00:00,0.0,1015.407667,0.05915,88.14166667,14.69833333,0.90675,237.8521045 -2014-06-16 22:00:00,0.0,1015.474667,0.0,93.425,14.23083333,0.418,237.8517703166667 -2014-06-16 23:00:00,0.0,1015.317,0.0,93.13333333,13.82416667,0.256916667,237.85110195000001 -2014-06-17 00:00:00,0.0,1015.524333,0.0,92.78333333,14.04,0.49441666700000003,237.85043358333334 -2014-06-17 01:00:00,0.0,1015.5419999999999,0.0,96.10833333,13.74583333,0.511916667,237.85043358333334 -2014-06-17 02:00:00,0.0,1015.533667,0.0,97.6,13.30333333,0.304333333,237.8483449 -2014-06-17 03:00:00,0.0,1015.383333,0.039433333,99.33333333,13.06,0.47333333299999997,237.847994 -2014-06-17 04:00:00,0.0,1015.6239999999999,4.910558333,93.64166667,13.02416667,1.03,237.847994 -2014-06-17 05:00:00,0.0,1016.015,38.49883333,90.80833333,12.74,1.0576666670000001,237.847994 -2014-06-17 06:00:00,0.0,1016.448667,128.9866667,85.89166667,13.42666667,1.60525,237.847994 -2014-06-17 07:00:00,0.0,1016.915,136.55833330000002,78.60083333,14.3675,2.635416667,237.847994 -2014-06-17 08:00:00,0.0,1017.141667,72.64833333,75.54833333,15.11583333,2.5675,237.8472922 -2014-06-17 09:00:00,0.0,1017.166667,355.7983333,72.6225,15.97083333,2.148333333,237.8442176833333 -2014-06-17 10:00:00,0.0,1016.9176669999999,458.82083330000006,67.22166667,17.51416667,2.105083333,237.84388349999998 -2014-06-17 11:00:00,0.0,1016.592667,285.39,63.4975,18.79416667,1.7815,237.84144391666666 -2014-06-17 12:00:00,0.0,1016.483667,553.3208333,55.96,18.8475,1.5703333330000002,237.839773 -2014-06-17 13:00:00,0.0,1016.176333,311.8033333,60.07833333,19.79333333,2.7489999999999997,237.83596325 -2014-06-17 14:00:00,0.0,1016.232667,348.2733333,62.125,19.30583333,3.508416667,237.83288873333336 -2014-06-17 15:00:00,0.0,1015.876667,388.29,62.12833333,19.26,3.671166667,237.83155200000002 -2014-06-17 16:00:00,0.0,1015.525667,294.9391667,59.17,19.9075,3.6425,237.8294466 -2014-06-17 17:00:00,0.0,1015.31,130.1183333,59.13583333,19.72,3.0735,237.82804306666665 -2014-06-17 18:00:00,0.0,1015.084,32.91225,59.64416667,19.6725,2.052833333,237.82633869999998 -2014-06-17 19:00:00,0.0,1015.049,10.09691667,82.00916667,16.37,0.68475,237.8253361 -2014-06-17 20:00:00,0.0,1015.390333,2.8989916669999998,94.9,13.25333333,0.137583333,237.82428345000002 -2014-06-17 21:00:00,0.0,1015.898333,0.078866667,95.71666667,11.60916667,0.241083333,237.82155979999996 -2014-06-17 22:00:00,0.0,1016.025,0.0,98.75833333,10.0225,0.039916667,237.82122559999996 -2014-06-17 23:00:00,0.0,1016.025,0.0,99.99166667,9.4725,0.0525,237.82122559999996 -2014-06-18 00:00:00,0.0,1016.166,0.0,100.0,9.0075,0.065083333,237.82155979999996 -2014-06-18 01:00:00,0.0,1015.993333,0.0,100.0,8.64,0.093666667,237.82189400000001 -2014-06-18 02:00:00,0.0,1015.924,0.0,100.0,8.209083332999999,0.043333332999999995,237.82120891666668 -2014-06-18 03:00:00,0.0,1015.999333,0.039433333,100.0,7.358,0.05675,237.81947118333338 -2014-06-18 04:00:00,0.0,1016.199667,7.96705,100.0,7.122416667,0.039916667,237.81982206666666 -2014-06-18 05:00:00,0.0,1016.548667,67.30441667,100.0,9.02875,0.012,237.81947118333335 -2014-06-18 06:00:00,0.0,1016.881333,148.3475,94.53333333,13.915,0.098166667,237.81982206666666 -2014-06-18 07:00:00,0.0,1017.116667,139.2533333,85.00833333,15.32916667,1.585083333,237.82017295 -2014-06-18 08:00:00,0.0,1017.366333,80.26666667,80.2575,16.70583333,2.6715,237.82087471666668 -2014-06-18 09:00:00,0.0,1017.193,349.4283333,76.245,18.30416667,2.0379166669999997,237.81912030000004 -2014-06-18 10:00:00,0.0,1016.875667,537.2383332999999,66.01083333,20.30833333,1.14825,237.81741595000003 -2014-06-18 11:00:00,0.0,1016.626333,482.1366666999999,58.23833333,21.80166667,1.257916667,237.81333888333333 -2014-06-18 12:00:00,0.0,1016.134667,261.2983333,55.98,22.365,1.4861666669999998,237.81160110000005 -2014-06-18 13:00:00,0.0,1015.817,461.21833330000004,53.99666667,23.13,1.436833333,237.80949569999999 -2014-06-18 14:00:00,0.0,1015.6676669999999,230.3175,55.35333333,22.5925,2.86375,237.8074571666667 -2014-06-18 15:00:00,0.0,1015.4760000000001,366.73,51.41333333,22.52833333,2.140083333,237.80538520000002 -2014-06-18 16:00:00,0.0,1014.951,244.7141667,56.11333333,22.13833333,2.124333333,237.8033466666667 -2014-06-18 17:00:00,0.0,1014.584667,189.46083330000002,56.515,21.96416667,1.9778333330000002,237.80164231666672 -2014-06-18 18:00:00,0.0,1014.65,79.89858333,58.69583333,21.20333333,2.548666667,237.79821690000003 -2014-06-18 19:00:00,0.0,1014.740667,34.8985,65.86916667,19.75333333,2.194833333,237.79646240000002 -2014-06-18 20:00:00,0.0,1015.048667,6.211041667000001,79.39083333,17.20916667,1.039666667,237.7961282166667 -2014-06-18 21:00:00,0.0,1015.706333,0.05915,93.825,14.71833333,1.000083333,237.79545985000004 -2014-06-18 22:00:00,0.0,1015.908333,0.0,97.2,13.09166667,0.290916667,237.79579403333332 -2014-06-18 23:00:00,0.0,1015.999667,0.0,98.44166667,10.94416667,0.056833333,237.7961282166667 -2014-06-19 00:00:00,0.0,1016.025,0.0,99.95833333,9.839166667,0.079166667,237.7944573 -2014-06-19 01:00:00,0.0,1015.759667,0.0,100.0,9.110833332999999,0.16025,237.7944573 -2014-06-19 02:00:00,0.0,1015.608333,0.0,100.0,9.064166667,0.10441666699999999,237.7944573 -2014-06-19 03:00:00,0.0,1015.3430000000001,0.1183,100.0,8.541666667000001,0.024833333,237.79545985000004 -2014-06-19 04:00:00,0.0,1015.158667,6.2118583329999995,100.0,7.82,0.021,237.79646240000002 -2014-06-19 05:00:00,0.0,1015.191333,35.28116667,100.0,9.078666667,0.030083332999999997,237.79646240000002 -2014-06-19 06:00:00,0.0,1015.25,80.34716667,99.54166667,12.7025,0.10516666699999999,237.79545984999996 -2014-06-19 07:00:00,0.0,1015.399333,142.56666669999998,88.7,14.7275,1.154833333,237.79545985000004 -2014-06-19 08:00:00,0.0,1015.549333,121.91666670000001,84.15,14.95666667,2.96375,237.79646240000002 -2014-06-19 09:00:00,0.0,1015.658,190.9425,75.73083333,15.2,2.891833333,237.79479148333334 -2014-06-19 10:00:00,0.0,1015.335,233.1875,73.00416667,15.3275,2.617333333,237.79305369999997 -2014-06-19 11:00:00,0.0,1015.067667,375.9175,71.67333333,16.12916667,1.8631666669999998,237.79201771666666 -2014-06-19 12:00:00,0.0,1014.925333,330.6975,68.96833333,16.595,2.3205,237.79034680000004 -2014-06-19 13:00:00,0.0,1014.825,337.435,65.215,17.65166667,3.147583333,237.78650361666666 -2014-06-19 14:00:00,0.0,1014.5103330000001,274.1433333,67.45166667,17.09083333,3.7341666669999998,237.7841309 -2014-06-19 15:00:00,0.0,1014.059667,391.475,66.6425,17.9275,2.04275,237.78237648333334 -2014-06-19 16:00:00,0.0,1013.583667,141.365,69.97583333,17.46166667,2.56225,237.7806888 -2014-06-19 17:00:00,0.0,1013.3760000000001,109.68416670000002,71.95,16.90583333,3.326166667,237.78002039999998 -2014-06-19 18:00:00,0.0,1013.342333,43.93783333,73.98416667,16.31916667,3.4579166669999997,237.77861686666665 -2014-06-19 19:00:00,3.474192912,1013.424333,10.19666667,83.39166667,15.03583333,2.09425,237.7779151 -2014-06-19 20:00:00,0.0,1013.292333,4.12195,92.4,14.19,0.932666667,237.77724669999998 -2014-06-19 21:00:00,0.0,1013.383333,0.039433333,91.59166667,14.0675,1.38975,237.77691249999998 -2014-06-19 22:00:00,0.0,1013.4573330000001,0.0,91.125,13.99083333,1.5090000000000001,237.7779151 -2014-06-19 23:00:00,0.0,1013.582667,0.0,90.11666667,14.03416667,1.6166666669999998,237.7779151 -2014-06-20 00:00:00,0.0,1013.426,0.0,87.9,13.7275,1.5899166669999998,237.7779151 -2014-06-20 01:00:00,0.0,1013.300667,0.0,89.95833333,12.71333333,1.36975,237.7779151 -2014-06-20 02:00:00,0.0,1013.084333,0.0,90.08333333,12.19833333,0.516333333,237.77966951666667 -2014-06-20 03:00:00,0.0,1012.933667,0.039433333,91.025,11.50916667,0.23600000000000002,237.77861686666665 -2014-06-20 04:00:00,0.0,1012.749667,3.174791667,91.65833333,11.37083333,0.161916667,237.7779151 -2014-06-20 05:00:00,0.0,1012.817,22.10658333,91.88333333,11.91,0.235833333,237.7779151 -2014-06-20 06:00:00,0.0,1013.132333,44.21608333,91.075,12.63166667,0.647333333,237.7782659833333 -2014-06-20 07:00:00,0.0,1013.065667,109.92916670000001,86.13333333,13.49166667,1.4025,237.7782659833333 -2014-06-20 08:00:00,0.0,1013.4,104.6494167,79.1275,14.2825,2.1534166669999997,237.7779151 -2014-06-20 09:00:00,0.0,1013.4830000000001,203.9275,75.6325,14.5075,1.878916667,237.7759099 -2014-06-20 10:00:00,0.0,1013.607333,105.37275,73.82916667,14.87,2.1025,237.7705362 -2014-06-20 11:00:00,0.0,1013.799333,137.4275,78.75333333,14.82916667,1.66375,237.77144851666665 -2014-06-20 12:00:00,0.0,1013.8589999999999,111.24633329999999,79.16083333,15.45,1.1218333329999999,237.7710976333333 -2014-06-20 13:00:00,0.0,1013.957667,214.13,75.045,16.0625,1.272666667,237.7710976333333 -2014-06-20 14:00:00,0.0,1013.759333,287.1866667,68.63666667,17.475,1.775166667,237.7693432 -2014-06-20 15:00:00,0.0,1013.6833330000001,399.6125,59.14833333,17.79166667,2.649833333,237.7675887 -2014-06-20 16:00:00,0.0,1013.6010000000001,204.015,59.43916667,17.74083333,3.416083333,237.76523269999998 -2014-06-20 17:00:00,0.0,1013.5319999999999,113.40583329999998,61.84083333,18.21,1.8246666669999998,237.76215818333336 -2014-06-20 18:00:00,0.0,1013.807333,78.97516667,62.7125,17.16083333,1.8029166669999999,237.7600695 -2014-06-20 19:00:00,0.0,1013.967333,21.9695,69.87666667,16.17166667,1.7883333330000002,237.75936769999996 -2014-06-20 20:00:00,0.0,1014.090333,2.9582,71.25583333,15.39916667,1.13675,237.75936769999996 -2014-06-20 21:00:00,0.0,1014.217,0.019716667,79.78916667,14.28583333,0.15508333300000002,237.75936769999996 -2014-06-20 22:00:00,0.0,1014.208333,0.0,81.63166667,13.71666667,0.289166667,237.75971859999996 -2014-06-20 23:00:00,0.0,1014.116667,0.0,81.58166667,13.58833333,0.200416667,237.76147310000002 -2014-06-21 00:00:00,0.0,1014.141667,0.0,84.75833333,12.60416667,0.488833333,237.76112220000002 -2014-06-21 01:00:00,0.0,1014.159,0.0,94.54166667,11.61583333,0.165916667,237.75971859999996 -2014-06-21 02:00:00,0.0,1014.199333,0.0,97.26666667,11.4,0.0068333330000000005,237.76147310000002 -2014-06-21 03:00:00,0.0,1014.324667,0.05915,98.75,11.33583333,0.110416667,237.76147310000002 -2014-06-21 04:00:00,0.0,1014.35,6.783641667,99.16666667,10.65333333,0.2415,237.76214146666666 -2014-06-21 05:00:00,0.0,1014.673,53.91341667,96.75833333,10.67416667,0.181083333,237.76314401666664 -2014-06-21 06:00:00,0.0,1014.907333,155.3766667,85.94583333,13.17333333,0.644,237.76347819999998 -2014-06-21 07:00:00,0.0,1015.2080000000001,144.5325,78.55833333,13.99,1.7178333330000002,237.76247564999997 -2014-06-21 08:00:00,0.0,1014.984667,107.835,76.98916667,14.81166667,1.800583333,237.7607713 -2014-06-21 09:00:00,0.0,1014.958333,218.3533333,70.06083333,15.53416667,1.9365,237.75836515 -2014-06-21 10:00:00,0.0,1014.9,215.08083330000002,66.0825,16.05166667,1.534083333,237.7566608 -2014-06-21 11:00:00,0.0,1014.875333,306.3958333,60.9775,16.65083333,1.7410833330000002,237.75425464999998 -2014-06-21 12:00:00,0.0,1014.6089999999999,219.9808333,60.5725,16.865,2.1084166669999997,237.75184849999997 -2014-06-21 13:00:00,0.0,1014.682667,223.02,61.36583333,17.34333333,1.818583333,237.74872383333332 -2014-06-21 14:00:00,0.0,1014.576,260.5575,64.40083333,17.555,1.4565833330000002,237.7459835 -2014-06-21 15:00:00,0.0,1014.434,264.4775,59.0625,18.32416667,1.186,237.74493080000002 -2014-06-21 16:00:00,0.0,1014.2260000000001,196.6883333,60.9575,18.605,1.010833333,237.74257479999997 -2014-06-21 17:00:00,0.0,1013.825667,114.0125,62.73,18.89333333,0.5195833329999999,237.74082030000002 -2014-06-21 18:00:00,0.0,1013.6916669999999,58.23066667,70.02,17.86416667,0.173333333,237.74015193333335 -2014-06-21 19:00:00,0.0,1013.7669999999999,23.96041667,84.66,17.23833333,0.06775,237.74082030000002 -2014-06-21 20:00:00,0.0,1013.948333,7.039841667,94.0,13.235,0.079166667,237.74048611666672 -2014-06-21 21:00:00,0.0,1014.350667,0.078866667,97.625,9.963333333,0.10283333300000001,237.73948356666665 -2014-06-21 22:00:00,0.0,1014.141667,0.0,99.28333333,8.4675,0.054416667,237.74082030000002 -2014-06-21 23:00:00,0.0,1014.125,0.0,99.98333333,7.628333333,0.031416667,237.74187299999997 -2014-06-22 00:00:00,0.0,1013.900667,0.0,100.0,7.22025,0.077833333,237.74292569999997 -2014-06-22 01:00:00,0.0,1013.783333,0.0,100.0,6.600166667000001,0.013583333000000001,237.74459661666666 -2014-06-22 02:00:00,0.0,1013.9,0.0,100.0,6.101,0.042833333,237.74493080000002 -2014-06-22 03:00:00,0.0,1013.6510000000001,0.078866667,100.0,6.082833333,0.0135,237.74598349999997 -2014-06-22 04:00:00,0.0,1013.632667,4.752883333,100.0,5.861000000000001,0.008416667,237.74493080000002 -2014-06-22 05:00:00,0.0,1014.04,63.60375,99.86666667,7.052583332999999,0.08825,237.74633439999994 -2014-06-22 06:00:00,0.0,1014.448,141.8025,89.575,11.26,0.45975,237.74703619999994 -2014-06-22 07:00:00,0.0,1014.9656669999999,148.7033333,82.08333333,14.565,0.673583333,237.74703619999994 -2014-06-22 08:00:00,0.0,1015.473333,104.3116667,76.935,16.32583333,1.698166667,237.7463344 -2014-06-22 09:00:00,0.0,1015.508333,281.8608333,72.03666667,17.71333333,1.7575,237.74359406666665 -2014-06-22 10:00:00,0.0,1015.500667,336.2391667,63.01916667,18.24666667,2.520166667,237.73948356666665 -2014-06-22 11:00:00,0.0,1015.482667,476.735,57.255,19.29083333,2.2984166669999997,237.7363756166667 -2014-06-22 12:00:00,0.0,1015.434,329.3441667,53.07083333,19.27916667,2.012833333,237.73189753333335 -2014-06-22 13:00:00,0.0,1015.591,253.6975,50.59333333,19.75833333,2.448416667,237.7294914 -2014-06-22 14:00:00,0.0,1015.732,338.6833333,50.3175,20.295,2.11825,237.7267343833333 -2014-06-22 15:00:00,0.0,1015.859333,458.3425,47.16333333,21.17833333,1.4785833330000002,237.72402750000003 -2014-06-22 16:00:00,0.0,1015.783667,256.34583330000004,47.325,20.4025,2.9228333330000003,237.72160463333333 -2014-06-22 17:00:00,0.0,1015.708333,106.8170833,50.59083333,20.17333333,3.2635,237.71921520000004 -2014-06-22 18:00:00,0.0,1015.890333,55.91541667,54.18916667,19.52,2.84225,237.7174941333333 -2014-06-22 19:00:00,0.0,1015.999333,35.90766667,61.82833333,18.52916667,1.966666667,237.71615740000001 -2014-06-22 20:00:00,0.0,1016.373,10.56953333,75.17166667,16.17916667,0.996833333,237.71615740000001 -2014-06-22 21:00:00,0.0,1017.2313330000001,0.13801666699999998,92.88333333,12.28333333,0.16041666699999999,237.7154556 -2014-06-22 22:00:00,0.0,1017.358333,0.0,96.03333333,10.06,0.147916667,237.71615740000001 -2014-06-22 23:00:00,0.0,1017.574333,0.0,99.00833333,8.961666667000001,0.06025,237.7178283166667 -2014-06-23 00:00:00,0.0,1017.560648,0.0,100.0,7.64275,0.06283333299999999,237.71956609999998 -2014-06-23 01:00:00,0.0,1017.470184,0.0,100.0,6.676333333,0.051916667,237.72060208333335 -2014-06-23 02:00:00,0.0,1017.4006410000001,0.0,100.0,6.015,0.042416667000000005,237.7219388166667 -2014-06-23 03:00:00,0.0,1017.319225,0.13801666699999998,100.0,5.690166667000001,0.093833333,237.7226239 -2014-06-23 04:00:00,0.0,1017.504108,13.09530833,100.0,5.471333333,0.058583333,237.7243784 -2014-06-23 05:00:00,0.0,1017.7958480000001,85.98041667,98.70833333,7.500583333,0.011833333,237.72262390000003 -2014-06-23 06:00:00,0.0,1018.1520429999999,144.99333330000002,90.63333333,10.3225,0.203166667,237.7236766 -2014-06-23 07:00:00,0.0,1018.7728400000001,146.16,81.525,12.8725,0.5036666670000001,237.72471258333334 -2014-06-23 08:00:00,0.0,1018.7745359999999,141.4641667,75.41,14.74583333,2.024916667,237.72538095000002 -2014-06-23 09:00:00,0.0,1018.5201109999999,175.875,73.6325,15.29,1.7483333330000002,237.722273 -2014-06-23 10:00:00,0.0,1018.3912029999999,379.3066667,68.59583333,16.20416667,2.145166667,237.71853011666667 -2014-06-23 11:00:00,0.0,1017.8925300000001,498.4466666999999,65.47583333,17.1975,2.462416667,237.7151047 -2014-06-23 12:00:00,0.0,1017.7721019999999,535.0975,61.86666667,17.7325,2.3505833330000003,237.71025896666666 -2014-06-23 13:00:00,0.0,1017.8094179999999,519.0208333,60.40333333,18.43583333,2.465,237.70649936666666 -2014-06-23 14:00:00,0.0,1017.37011,515.6841667,56.44833333,19.54333333,1.87,237.70272305 -2014-06-23 15:00:00,0.0,1016.391422,455.04083330000003,54.08916667,20.21,1.377833333,237.70066780000002 -2014-06-23 16:00:00,0.0,1015.7383980000001,335.51,53.74916667,20.64333333,2.60325,237.6972591 -2014-06-23 17:00:00,0.0,1015.227852,127.77333329999999,56.4175,20.35916667,2.5475,237.6944519 -2014-06-23 18:00:00,0.0,1015.015831,83.39916667,60.31,19.64666667,2.1030833330000003,237.69306501666665 -2014-06-23 19:00:00,0.0,1014.925934,40.52008333,63.68416667,18.4925,1.761166667,237.69139410000002 -2014-06-23 20:00:00,0.0,1014.9954769999999,12.6602,78.1425,16.91166667,0.231166667,237.69239665 -2014-06-23 21:00:00,0.0,1015.400861,0.17745,90.625,12.97583333,0.008833333,237.69172828333333 -2014-06-23 22:00:00,0.0,1015.339799,0.0,96.19166667,11.1575,0.033916667000000005,237.69410100000002 -2014-06-23 23:00:00,0.0,1015.3669369999999,0.0,98.03333333,10.05333333,0.12583333300000002,237.6958555 -2014-06-24 00:00:00,0.0,1015.183751,0.0,99.525,8.813333333,0.058916667,237.69794418333333 -2014-06-24 01:00:00,0.0,1014.947984,0.0,100.0,7.746666667,0.030916667000000002,237.6992809166667 -2014-06-24 02:00:00,0.0,1014.8360369999999,0.0,100.0,6.856333332999999,0.040083333,237.7010187 -2014-06-24 03:00:00,0.0,1014.605359,0.05915,100.0,6.36175,0.039583333,237.70305723333334 -2014-06-24 04:00:00,0.0,1014.5188539999999,9.723291667,100.0,5.872000000000001,0.025916667,237.70442740000001 -2014-06-24 05:00:00,0.0,1014.5765240000001,83.64416667,99.34166667,8.507,0.01275,237.70407650000004 -2014-06-24 06:00:00,0.0,1014.515462,157.4358333,90.04166667,13.27583333,0.29025,237.70477830000002 -2014-06-24 07:00:00,0.0,1014.752925,150.0216667,75.1225,15.62,0.35766666700000005,237.70583100000002 -2014-06-24 08:00:00,0.0,1014.756317,84.00583333,69.04833333,17.34666667,0.573666667,237.70683355000003 -2014-06-24 09:00:00,0.0,1014.7359630000001,280.875,64.07333333,18.9075,0.733666667,237.7020379666667 -2014-06-24 10:00:00,0.0,1014.52055,492.42666669999994,58.7725,20.14,1.036666667,237.69550460000002 -2014-06-24 11:00:00,0.0,1014.057497,334.5533333,56.56833333,20.4775,1.207916667,237.69034145 -2014-06-24 12:00:00,0.0,1013.738617,277.66083330000004,57.285,21.31833333,0.6579166670000001,237.68726691666666 -2014-06-24 13:00:00,0.0,1013.3349300000001,353.5233333,57.63833333,21.035,1.54175,237.6845099 -2014-06-24 14:00:00,1.20105972,1012.817599,208.7131667,85.55666667,15.885,3.471,237.6804160833333 -2014-06-24 15:00:00,0.0,1012.1035130000001,400.6741667,72.9125,18.1325,1.491166667,237.67906259999998 -2014-06-24 16:00:00,0.0,1011.338542,288.085,60.52166667,19.985,1.755166667,237.67695730000005 -2014-06-24 17:00:00,0.0,1010.729618,120.63741670000002,62.91,19.9925,1.473416667,237.6752028 -2014-06-24 18:00:00,5.946483456,1010.861919,17.45041667,82.25833333,17.6,0.875166667,237.67451771666666 -2014-06-24 19:00:00,0.0,1010.107125,32.361,98.66666667,14.98666667,0.46266666700000003,237.6766064 -2014-06-24 20:00:00,0.0,1009.9392039999999,8.243083333,100.0,14.31666667,0.200666667,237.68039940000003 -2014-06-24 21:00:00,53.77819231,1010.556609,0.078866667,99.625,13.085,1.921416667,237.6835073 -2014-06-24 22:00:00,0.698200728,1010.519293,0.0,99.78333333,12.60583333,0.45733333299999995,237.68760111666666 -2014-06-24 23:00:00,0.0,1010.037582,0.0,100.0,11.68416667,0.22899999999999998,237.69171158333333 -2014-06-25 00:00:00,0.0,1009.5847050000001,0.0,100.0,10.2825,0.3055,237.69339920000002 -2014-06-25 01:00:00,0.0,1009.196283,0.0,100.0,9.690833332999999,0.18516666699999998,237.69445190000002 -2014-06-25 02:00:00,0.0,1008.933377,0.0,100.0,10.295,0.12691666699999998,237.69620640000002 -2014-06-25 03:00:00,0.493181184,1008.7128759999999,0.0,100.0,10.91666667,0.255166667,237.69794418333333 -2014-06-25 04:00:00,2.212150248,1008.5568279999999,1.67615,100.0,11.0875,0.55225,237.69961510000005 -2014-06-25 05:00:00,0.0,1008.750191,24.78933333,100.0,11.28416667,0.0855,237.7006678 -2014-06-25 06:00:00,0.0,1008.690826,92.74708333,98.55833333,11.81666667,1.005583333,237.7017205 -2014-06-25 07:00:00,0.0,1008.750191,101.79575,83.95666667,13.44666667,2.482916667,237.70272305000003 -2014-06-25 08:00:00,0.0,1009.1216519999999,79.191,75.32416667,14.4575,2.716,237.70272305 -2014-06-25 09:00:00,0.0,1009.3489380000001,148.645,74.9975,14.54083333,3.2341666669999998,237.69928091666668 -2014-06-25 10:00:00,0.0,1009.6847789999999,250.74,67.17666667,14.92166667,2.97825,237.69690820000002 -2014-06-25 11:00:00,0.0,1009.733968,269.7916667,60.42166667,15.82916667,2.57375,237.69308173333334 -2014-06-25 12:00:00,0.0,1009.786549,294.7875,53.8,16.75666667,3.2795,237.68863708333333 -2014-06-25 13:00:00,0.0,1009.8764460000001,378.9333333,55.035,16.94,3.3725,237.68280553333332 -2014-06-25 14:00:00,0.0,1009.9205460000001,157.4591667,55.035,17.32333333,2.772333333,237.67800995000002 -2014-06-25 15:00:00,0.0,1009.788245,425.03416669999996,50.3275,17.65416667,2.731833333,237.6759046 -2014-06-25 16:00:00,0.0,1009.8611800000001,190.1141667,50.6325,17.5775,1.9838333330000002,237.67249590000003 -2014-06-25 17:00:00,0.0,1009.912066,87.42416667,62.845,16.385,2.1070833330000003,237.6707414 -2014-06-25 18:00:00,0.0,1010.422612,26.50433333,75.98166667,17.01916667,1.377666667,237.6707414 -2014-06-25 19:00:00,0.0,1010.724529,18.81425,73.28,15.2475,2.341583333,237.67249590000003 -2014-06-25 20:00:00,0.0,1011.1265210000001,5.068525,85.24,13.9575,1.0855,237.67249590000003 -2014-06-25 21:00:00,0.0,1011.667598,0.039433333,96.51666667,10.15166667,0.0845,237.67351516666668 -2014-06-25 22:00:00,0.0,1011.9898699999999,0.0,99.79166667,8.521666667,0.14400000000000002,237.6755537 -2014-06-25 23:00:00,0.0,1011.9457689999999,0.0,100.0,7.9475,0.15641666699999998,237.67765906666668 -2014-06-26 00:00:00,0.0,1011.8151650000001,0.0,100.0,6.60175,0.094583333,237.67939679999998 -2014-06-26 01:00:00,0.0,1011.545474,0.0,100.0,5.858083333,0.03575,237.68141868333336 -2014-06-26 02:00:00,0.0,1011.257126,0.0,100.0,5.29725,0.079416667,237.6831731 -2014-06-26 03:00:00,0.0,1011.224899,0.039433333,100.0,5.514333333,0.130583333,237.6851783 -2014-06-26 04:00:00,0.0,1011.257126,4.7136833330000005,100.0,5.387416667,0.09475,237.68623095 -2014-06-26 05:00:00,0.0,1011.516639,47.70325,100.0,6.7641666670000005,0.039583333,237.6876178 -2014-06-26 06:00:00,0.0,1011.7388369999999,65.247,100.0,9.030083333,0.22166666699999998,237.6872836 -2014-06-26 07:00:00,0.0,1011.584486,105.51333329999999,97.99166667,10.18416667,0.4895,237.6882862 -2014-06-26 08:00:00,0.0,1011.765976,157.5758333,88.39166667,12.05583333,0.732,237.6892888 -2014-06-26 09:00:00,0.0,1011.791418,267.5575,81.28833333,14.63416667,1.011333333,237.68930548333333 -2014-06-26 10:00:00,0.0,1011.9372890000001,245.42583330000002,73.58083333,16.1925,1.5554166669999998,237.68554586666664 -2014-06-26 11:00:00,0.0,1011.901669,349.8891667,66.8175,16.92916667,1.5055,237.6804160833333 -2014-06-26 12:00:00,0.0,1011.732052,311.955,64.58,18.395,1.7049166669999998,237.67488533333338 -2014-06-26 13:00:00,0.0,1011.440312,349.1075,61.0925,18.95583333,1.872333333,237.6707581166667 -2014-06-26 14:00:00,0.0,1011.46745,512.8608333000001,54.82,19.37416667,1.654333333,237.66803449999998 -2014-06-26 15:00:00,0.0,1010.8670070000001,446.705,51.97083333,20.49833333,1.261833333,237.66494326666668 -2014-06-26 16:00:00,0.0,1010.476889,398.7083333,49.48083333,20.40833333,1.6369999999999998,237.66151785 -2014-06-26 17:00:00,0.0,1010.3004880000001,100.97616670000001,48.51333333,20.9825,1.28775,237.65805899999998 -2014-06-26 18:00:00,0.0,1010.568482,50.49683333,55.14916667,20.955,0.9249166670000001,237.65597031666664 -2014-06-26 19:00:00,0.0,1010.7177449999999,35.77,76.505,19.13583333,0.240916667,237.6563045 -2014-06-26 20:00:00,0.0,1010.899234,7.335475,90.50833333,15.02083333,0.016666667,237.6570063 -2014-06-26 21:00:00,0.0,1011.187583,0.039433333,96.71666667,11.00416667,8.329999999999999e-05,237.6591117 -2014-06-26 22:00:00,0.0,1011.1824939999999,0.0,98.94166667,9.120833333,0.0065,237.66084948333332 -2014-06-26 23:00:00,0.0,1011.2859609999999,0.0,100.0,8.131916667,0.045166667,237.6628713 -2014-06-27 00:00:00,0.0,1011.224899,0.0,100.0,7.38275,0.019416667,237.66495998333332 -2014-06-27 01:00:00,0.0,1010.965385,0.0,100.0,7.01325,0.01925,237.6673327 -2014-06-27 02:00:00,0.0,1010.967081,0.0,100.0,6.169166667000001,0.0,237.66940466666665 -2014-06-27 03:00:00,0.0,1011.16214,0.039433333,100.0,6.101583333,0.040916667000000004,237.66940466666665 -2014-06-27 04:00:00,0.0,1011.4335269999999,3.9835833330000003,100.0,6.74,0.0,237.6707414 -2014-06-27 05:00:00,0.0,1011.570917,43.58666667,100.0,7.614416667,0.006333333000000001,237.67249590000003 -2014-06-27 06:00:00,0.0,1011.574309,141.58025,96.29166667,10.69416667,0.06383333299999999,237.67384935000004 -2014-06-27 07:00:00,0.0,1011.625194,141.49625,83.85666667,13.34416667,0.639333333,237.6755537 -2014-06-27 08:00:00,0.0,1011.796507,127.7383333,74.77916667,15.91833333,1.306,237.67625550000002 -2014-06-27 09:00:00,0.0,1011.6572060000001,284.0425,66.03583333,19.82333333,1.223083333,237.67179410000003 -2014-06-27 10:00:00,0.0,1011.25,332.43,60.84583333,21.415,1.61675,237.66355638333332 -2014-06-27 11:00:00,0.0,1011.077333,486.0275,48.15,23.22583333,1.385,237.6566554 -2014-06-27 12:00:00,0.0,1010.751167,387.5316667,46.23916667,23.79166667,0.8866666670000001,237.65359759999998 -2014-06-27 13:00:00,0.0,1010.61425,359.2458333,47.60916667,23.35333333,0.750916667,237.6494871 -2014-06-27 14:00:00,0.0,1010.12375,485.79416669999995,45.40833333,24.21083333,1.2165,237.6450257 -2014-06-27 15:00:00,0.0,1009.5785,219.9925,48.66083333,24.42166667,0.91425,237.64196790000003 -2014-06-27 16:00:00,0.0,1009.026167,226.8,48.45416667,24.9775,0.417333333,237.63951161666662 -2014-06-27 17:00:00,0.0,1009.42275,44.16708333,67.45666667,22.44583333,0.169083333,237.63775719999998 -2014-06-27 18:00:00,0.0,1009.855917,68.52008333,69.16083333,20.35416667,1.52375,237.63810808333332 -2014-06-27 19:00:00,0.0,1009.73575,29.064,80.1725,18.72,0.350416667,237.63880985 -2014-06-27 20:00:00,0.0,1010.0488330000001,5.639783333,91.58333333,16.815,0.082666667,237.64160028333333 -2014-06-27 21:00:00,0.0,1010.258333,0.019716667,98.20833333,14.86166667,0.128833333,237.643973 -2014-06-27 22:00:00,0.0,1010.181,0.0,99.875,13.74083333,0.129083333,237.64708095 -2014-06-27 23:00:00,0.0,1010.116583,0.0,96.49166667,14.70916667,1.257083333,237.6494871 -2014-06-28 00:00:00,0.0,1010.0452740000001,0.0,96.15833333,14.85583333,0.9109999999999999,237.65221071666667 -2014-06-28 01:00:00,0.0,1009.814333,0.0,98.89166667,13.74166667,0.518416667,237.65429939999999 -2014-06-28 02:00:00,0.0,1009.514333,0.0,100.0,13.0275,0.35066666700000004,237.6570063 -2014-06-28 03:00:00,0.0,1009.282222,0.019716667,100.0,12.29333333,0.137416667,237.65770809999995 -2014-06-28 04:00:00,0.0,1009.152333,5.384341667,100.0,11.43333333,0.164666667,237.65876079999998 -2014-06-28 05:00:00,0.0,1009.358333,34.37583333,100.0,11.77666667,0.066333333,237.66051530000001 -2014-06-28 06:00:00,0.0,1009.2047779999999,80.32208333,99.24166667,13.7325,0.199083333,237.66252039999998 -2014-06-28 07:00:00,0.0,1009.325,147.0175,90.23333333,15.74583333,0.48116666700000005,237.66392399999998 -2014-06-28 08:00:00,0.0,1009.2595560000001,155.6858333,84.96666667,17.78416667,0.329416667,237.66392399999998 -2014-06-28 09:00:00,0.0,1008.885778,222.95,78.17333333,19.36166667,0.47866666700000005,237.66048186666663 -2014-06-28 10:00:00,0.0,1008.4084439999999,307.86,72.29,20.75583333,0.57725,237.65393178333338 -2014-06-28 11:00:00,0.0,1007.687,290.7625,72.755,21.69333333,1.5309166669999998,237.64535988333333 -2014-06-28 12:00:00,0.0,1007.263111,233.8525,63.555,21.58166667,1.8130000000000002,237.63880985 -2014-06-28 13:00:00,0.0,1006.858444,130.9116667,77.04166667,19.98166667,0.81775,237.63742299999998 -2014-06-28 14:00:00,0.0,1006.3191109999999,145.8975,77.465,19.91416667,0.8906666670000001,237.6370888 -2014-06-28 15:00:00,14.09801928,1005.8132220000001,66.51166667,82.75083333,19.45333333,1.8513333330000001,237.635752 -2014-06-28 16:00:00,0.778143,1004.978667,50.45483333,95.1,17.31,0.7215,237.63777388333332 -2014-06-28 17:00:00,0.0,1004.3336029999999,35.47366667,96.84166667,17.73166667,0.297,237.63986251666665 -2014-06-28 18:00:00,2.5745124,1003.4525560000001,21.04025,99.51666667,17.545,0.18558333300000002,237.64297044999998 -2014-06-28 19:00:00,0.0,1003.156083,15.39976667,100.0,17.1625,0.7095,237.64606168333333 -2014-06-28 20:00:00,0.0,1003.1785279999999,6.4085,100.0,16.83333333,0.151416667,237.6494871 -2014-06-28 21:00:00,0.0,1003.257056,0.039433333,100.0,16.12,0.12616666699999998,237.65254489999998 -2014-06-28 22:00:00,17.01380266,1003.0028609999999,0.0,100.0,15.5575,0.19375,237.65496776666666 -2014-06-28 23:00:00,6.583482288,1001.980111,0.0,100.0,15.0025,0.40366666700000003,237.65944588333332 -2014-06-29 00:00:00,1.415437992,1001.731083,0.0,100.0,14.86583333,0.37858333299999997,237.66425818333332 -2014-06-29 01:00:00,0.0,1001.710583,0.0,100.0,14.44583333,0.042166667000000005,237.66803449999998 -2014-06-29 02:00:00,0.0,1001.4955,0.0,100.0,14.5125,0.006416666999999999,237.66803449999998 -2014-06-29 03:00:00,0.0,1001.136861,0.0,100.0,14.40833333,0.234916667,237.66907048333334 -2014-06-29 04:00:00,0.684999384,1001.0653890000001,2.8595,100.0,13.74083333,0.404416667,237.6707414 -2014-06-29 05:00:00,4.145911872,1001.533333,12.720575,100.0,13.92,0.057166667000000004,237.67249590000003 -2014-06-29 06:00:00,2.212389768,1001.936556,36.97726667,100.0,13.95583333,0.604916667,237.67384934999998 -2014-06-29 07:00:00,0.512614848,1002.168917,31.00008333,100.0,14.17083333,0.69025,237.6748519 -2014-06-29 08:00:00,0.755444688,1003.141056,67.28575,99.09166667,14.20833333,1.9738333330000002,237.67695730000005 -2014-06-29 09:00:00,0.0,1004.100949,121.40741670000001,94.55,14.78583333,1.543333333,237.67695730000005 -2014-06-29 10:00:00,0.740303232,1004.5285,145.5125,93.34166667,14.95,1.8273333330000001,237.67695730000005 -2014-06-29 11:00:00,2.263878552,1004.973167,215.25,88.24166667,16.10833333,1.266,237.67695730000005 -2014-06-29 12:00:00,0.0,1005.432,125.90083329999999,93.54166667,15.375,0.5970833329999999,237.67555370000002 -2014-06-29 13:00:00,0.0,1005.548667,335.8541667,90.14416667,15.69916667,0.8604166670000001,237.6748519 -2014-06-29 14:00:00,0.0,1005.565833,206.1091667,80.94083333,16.72416667,1.8419999999999999,237.67144320000003 -2014-06-29 15:00:00,0.0,1005.445167,412.02,72.75166667,18.05416667,1.361083333,237.6676836 -2014-06-29 16:00:00,0.0,1005.618333,126.90533329999998,73.12333333,18.595,0.600916667,237.66322219999998 -2014-06-29 17:00:00,17.88826344,1006.443,43.71791667,94.60833333,15.58666667,0.7021666670000001,237.66051530000001 -2014-06-29 18:00:00,4.424697384,1006.1465,73.4825,97.15,13.73833333,0.85525,237.66151784999997 -2014-06-29 19:00:00,0.0,1006.505667,22.61758333,95.29166667,14.505,0.344083333,237.66252039999998 -2014-06-29 20:00:00,0.675841008,1006.959167,4.575375,99.48333333,13.1,0.079,237.66462579999998 -2014-06-29 21:00:00,0.0,1007.259167,0.019716667,99.33333333,12.73333333,0.43825,237.66562835 -2014-06-29 22:00:00,0.0,1007.5889999999999,0.0,99.89166667,12.54916667,0.032666667,237.6673327 -2014-06-29 23:00:00,0.0,1007.891667,0.0,100.0,12.45083333,0.146333333,237.6687363 -2014-06-30 00:00:00,0.672808848,1007.916667,0.0,99.60833333,12.36666667,0.287666667,237.66940466666665 -2014-06-30 01:00:00,0.0,1008.1105,0.0,99.4,12.41083333,0.0755,237.6707414 -2014-06-30 02:00:00,0.0,1008.290278,0.0,99.375,12.29083333,0.040833333,237.67144320000003 -2014-06-30 03:00:00,1.16338884,1008.475,0.019716667,99.91666667,12.28416667,0.10041666699999999,237.67249590000006 -2014-06-30 04:00:00,0.0,1008.5423609999999,3.806308333,100.0,11.95166667,0.36208333299999995,237.67284680000003 -2014-06-30 05:00:00,0.0,1008.935417,25.67483333,100.0,11.5025,0.448166667,237.67249590000003 -2014-06-30 06:00:00,0.0,1009.602778,126.20008329999999,96.19166667,12.505,0.222083333,237.67318098333337 -2014-06-30 07:00:00,0.0,1010.390972,150.57,90.375,14.66166667,0.8553333329999999,237.6748519 -2014-06-30 08:00:00,0.0,1010.802083,103.4308333,82.04333333,15.37083333,1.042333333,237.67384935000004 -2014-06-30 09:00:00,0.0,1010.929861,243.8158333,77.43916667,16.3775,1.4530833330000001,237.67110901666663 -2014-06-30 10:00:00,0.0,1011.0423609999999,221.94666669999998,74.85833333,16.74166667,0.96175,237.66664761666667 -2014-06-30 11:00:00,0.0,1011.0423609999999,346.6983333,79.35416667,17.11916667,1.069583333,237.66220293333333 -2014-06-30 12:00:00,3.656796192,1010.8319439999999,446.61983330000004,78.775,16.0125,1.116666667,237.65840989999995 -2014-06-30 13:00:00,0.7071170640000001,1011.3944439999999,474.0575,71.62,18.53333333,1.45925,237.6604818666667 -2014-06-30 14:00:00,0.8937424079999999,1011.641667,345.9458333,62.0925,18.5825,2.248,237.66462579999998 -2014-06-30 15:00:00,0.0,1011.897222,422.5725,56.08833333,18.84,2.9505,237.66083276666666 -2014-06-30 16:00:00,0.0,1011.772917,128.0125,60.27,18.20416667,3.6455,237.6559870333333 -2014-06-30 17:00:00,0.0,1012.086111,120.65666670000002,60.925,18.2075,2.58775,237.65324669999998 -2014-06-30 18:00:00,0.0,1012.6,56.945,65.76333333,17.815,2.841333333,237.65017218333332 -2014-06-30 19:00:00,0.0,1013.0339720000001,22.20225,72.93583333,16.60583333,1.9175,237.64808349999998 -2014-06-30 20:00:00,0.0,1013.524111,6.112808332999999,84.48333333,13.93,0.150166667,237.64808349999998 -2014-06-30 21:00:00,0.0,1013.945111,0.078866667,96.5,11.03583333,0.148833333,237.64983799999996 -2014-06-30 22:00:00,0.0,1014.1436669999999,0.0,99.675,10.32416667,0.014416667,237.65119144999997 -2014-06-30 23:00:00,0.0,1014.291667,0.0,100.0,9.874166667,0.030166667,237.65254489999998 -2014-01-07 00:00:00,0.0,1014.168111,0.0,100.0,8.6975,0.110333333,238.03250233333333 -2014-01-07 01:00:00,0.0,1013.9416669999999,0.0,100.0,7.64175,0.312833333,238.04281099999994 -2014-01-07 02:00:00,0.0,1013.9764439999999,0.0,100.0,6.591666667,0.194083333,238.05440433333334 -2014-01-07 03:00:00,0.0,1014.0005560000001,0.039433333,100.0,6.0889999999999995,0.071583333,238.06568433333334 -2014-01-07 04:00:00,0.49520757600000004,1014.433889,7.100275,100.0,5.31925,0.11358333300000001,238.075335 -2014-01-07 05:00:00,0.0,1014.825,67.3295,100.0,6.806416667000001,0.007416666999999999,238.08048933333336 -2014-01-07 06:00:00,2.333889864,1014.8985560000001,147.0816667,95.95,10.27333333,0.45575,238.08403 -2014-01-07 07:00:00,0.0,1015.206889,145.5241667,85.375,13.16166667,1.1009166670000001,238.085957 -2014-01-07 08:00:00,0.0,1015.154889,154.0933333,77.34583333,15.41916667,0.9278333329999999,238.08819733333334 -2014-01-07 09:00:00,0.0,1014.956333,331.59,60.57083333,17.8,0.7010833329999999,238.08851066666668 -2014-01-07 10:00:00,0.0,1014.487667,504.26833330000005,58.44083333,18.655,0.7988333329999999,238.08882400000002 -2014-01-07 11:00:00,0.0,1014.159778,269.3425,57.37333333,19.5125,0.806583333,238.08981100000003 -2014-01-07 12:00:00,0.0,1013.993167,499.96916669999996,54.16916667,19.97666667,1.718666667,238.09046899999998 -2014-01-07 13:00:00,0.0,1013.686333,482.60916669999995,49.96666667,20.10916667,1.0745833329999999,238.09270933333335 -2014-01-07 14:00:00,0.0,1013.425,397.7458333,44.09916667,21.13666667,1.027416667,238.095592 -2014-01-07 15:00:00,0.0,1013.281417,453.5125,40.31666667,21.49166667,1.278833333,238.09496533333333 -2014-01-07 16:00:00,0.0,1013.078417,359.7941667,37.71166667,21.4225,1.9380000000000002,238.09236466666664 -2014-01-07 17:00:00,0.0,1013.190167,82.20625,39.405,21.34916667,2.32575,238.09109566666663 -2014-01-07 18:00:00,0.0,1013.320083,50.02433333,41.34333333,20.7125,1.7890000000000001,238.08948199999998 -2014-01-07 19:00:00,0.0,1013.790583,33.06741667,47.54416667,19.97666667,1.017666667,238.08819733333334 -2014-01-07 20:00:00,0.0,1014.4489169999999,11.51540833,80.45833333,16.6075,0.11933333300000001,238.085957 -2014-01-07 21:00:00,0.0,1015.0485,0.1183,92.275,12.035,0.15866666699999998,238.08562800000004 -2014-01-07 22:00:00,0.0,1015.26025,0.0,96.03333333,9.99,0.054583333,238.08309 -2014-01-07 23:00:00,0.0,1015.2515,0.0,98.39166667,8.708333332999999,0.01575,238.081774 -2014-02-07 00:00:00,0.0,1015.15,0.0,99.925,7.73775,0.029583333,238.04991535 -2014-02-07 01:00:00,0.0,1015.18825,0.0,100.0,6.848166667,0.06375,238.04919019999997 -2014-02-07 02:00:00,0.0,1015.270083,0.0,100.0,5.946333332999999,0.0215,238.04893641666663 -2014-02-07 03:00:00,0.0,1015.3735,0.039433333,100.0,5.496583332999999,0.059583332999999995,238.04842885000002 -2014-02-07 04:00:00,0.0,1015.612044,7.534041667,100.0,5.1834166669999995,0.03025,238.04868263333333 -2014-02-07 05:00:00,0.0,1016.1752779999999,76.53333333,99.6,7.242083332999999,0.0035,238.04817506666666 -2014-02-07 06:00:00,0.0,1016.750278,153.8775,91.63333333,11.76166667,0.09708333300000001,238.0486826333333 -2014-02-07 07:00:00,0.0,1017.095056,145.425,78.31166667,13.835,0.802333333,238.0479212833333 -2014-02-07 08:00:00,0.0,1016.8598890000001,56.04258333,71.85333333,15.27333333,1.3746666669999998,238.04817506666666 -2014-02-07 09:00:00,0.0,1016.633056,338.135,63.705,17.4125,1.9305,238.04842885000002 -2014-02-07 10:00:00,0.0,1016.715111,476.39083330000005,57.61083333,18.6925,1.66525,238.04868263333333 -2014-02-07 11:00:00,0.0,1016.688278,480.91166669999996,52.41666667,19.945,1.4963333330000002,238.04817506666666 -2014-02-07 12:00:00,0.0,1016.563278,472.62833330000007,46.93666667,20.55166667,1.8768333330000002,238.04817506666666 -2014-02-07 13:00:00,0.0,1016.416667,531.8891666999999,41.41083333,21.90166667,1.745333333,238.0469061 -2014-02-07 14:00:00,0.0,1016.3867220000001,499.08833330000004,43.2575,22.34333333,1.911583333,238.0474137 -2014-02-07 15:00:00,0.0,1016.5382779999999,477.44083330000007,39.59916667,23.24166667,1.043916667,238.04590299999998 -2014-02-07 16:00:00,0.0,1016.465111,252.3908333,39.27666667,23.46583333,1.432166667,238.04615679999998 -2014-02-07 17:00:00,0.0,1016.721889,68.75691667,42.26083333,23.81166667,1.031666667,238.04468239999997 -2014-02-07 18:00:00,0.0,1017.185167,44.58183333,42.3,23.01416667,1.529833333,238.04493620000002 -2014-02-07 19:00:00,0.0,1017.6737220000001,25.08158333,47.25333333,21.93583333,1.020833333,238.04418689999997 -2014-02-07 20:00:00,0.0,1018.533889,5.638966667,78.11916667,17.31666667,0.51525,238.04393309999998 -2014-02-07 21:00:00,0.0,1019.160167,0.039433333,91.825,12.42666667,0.067083333,238.04342549999993 -2014-02-07 22:00:00,0.0,1019.193278,0.0,97.46666667,10.35916667,0.02975,238.04292999999996 -2014-02-07 23:00:00,0.0,1019.308472,0.0,99.725,9.25,0.11541666699999999,238.04292999999996 -2014-03-07 00:00:00,0.0,1019.725,0.0,100.0,8.554166667,0.080833333,238.00742340000002 -2014-03-07 01:00:00,0.0,1019.6049720000001,0.0,100.0,8.015333333,0.068416667,238.00718170000002 -2014-03-07 02:00:00,0.0,1019.3849439999999,0.0,100.0,7.31975,0.10075,238.00767720000002 -2014-03-07 03:00:00,0.0,1019.2533609999999,0.039433333,100.0,6.666666667,0.080416667,238.00742340000002 -2014-03-07 04:00:00,0.0,1019.415056,6.70565,100.0,6.244916667000001,0.040833333,238.00718170000002 -2014-03-07 05:00:00,0.0,1019.591667,67.89825,99.84166667,7.711,0.009583333000000001,238.0074355 -2014-03-07 06:00:00,0.0,1019.6833330000001,154.035,89.3,12.09333333,0.07075,238.00742340000002 -2014-03-07 07:00:00,0.0,1019.681722,152.39991669999998,76.46666667,14.66583333,0.363416667,238.00718170000002 -2014-03-07 08:00:00,0.0,1019.6349439999999,58.29133333,69.6075,17.32416667,0.45041666700000005,238.00718170000002 -2014-03-07 09:00:00,0.0,1019.606583,331.275,60.58916667,20.105,0.81,238.007931 -2014-03-07 10:00:00,0.0,1019.4733890000001,470.66833330000003,54.485,22.41083333,1.1095,238.00843859999998 -2014-03-07 11:00:00,0.0,1019.1965,515.7483333,53.5025,23.97166667,1.5095,238.00818479999998 -2014-03-07 12:00:00,0.0,1018.7415279999999,539.0758333,48.765,25.075,1.788583333,238.0089462 -2014-03-07 13:00:00,0.0,1018.149883,541.7066667,42.98,26.2775,1.406833333,238.0086924 -2014-03-07 14:00:00,0.0,1017.56,507.43583330000007,34.49083333,27.16583333,1.05525,238.00869239999997 -2014-03-07 15:00:00,0.0,1016.825,461.4225,29.34583333,28.005,1.036833333,238.00843859999998 -2014-03-07 16:00:00,0.0,1016.131667,384.3583333,29.4825,28.69083333,0.829583333,238.0089462 -2014-03-07 17:00:00,0.0,1015.64,59.01758333,31.5525,28.90083333,0.569916667,238.00843859999998 -2014-03-07 18:00:00,0.0,1015.3116669999999,27.4085,34.03166667,28.48166667,0.431833333,238.00767720000002 -2014-03-07 19:00:00,0.0,1015.146667,21.82775,54.585,26.7275,0.17875,238.00742340000002 -2014-03-07 20:00:00,0.0,1015.293333,7.729575,76.90833333,19.29,0.132083333,238.00694 -2014-03-07 21:00:00,0.0,1015.363333,0.05915,84.1725,14.69,0.0645,238.0066983 -2014-03-07 22:00:00,0.0,1015.295,0.0,87.09166667,12.7025,0.005083333,238.0066983 -2014-03-07 23:00:00,0.0,1015.26,0.0,91.925,11.48166667,0.132083333,238.00645659999998 -2014-04-07 00:00:00,0.0,1014.746667,0.0,94.31666667,10.64916667,0.076083333,237.92662810000002 -2014-04-07 01:00:00,0.0,1014.536667,0.0,94.95,9.77,0.02525,237.92629390000002 -2014-04-07 02:00:00,0.0,1013.866667,0.0,98.375,9.3075,0.06433333299999999,237.92629390000002 -2014-04-07 03:00:00,0.0,1013.675,0.019716667,99.91666667,8.515,0.034,237.92629390000002 -2014-04-07 04:00:00,0.0,1013.4333330000001,6.843491667,100.0,8.2025,0.021083333,237.92629390000002 -2014-04-07 05:00:00,0.0,1012.945,73.56475,97.15,10.43666667,0.002666667,237.92594301666668 -2014-04-07 06:00:00,0.0,1012.500039,150.71,83.5025,14.74916667,0.32525,237.92629390000002 -2014-04-07 07:00:00,0.0,1012.1584720000001,155.2804167,75.63333333,16.83666667,0.7285,237.92489036666666 -2014-04-07 08:00:00,0.0,1011.461917,62.82791667,68.73833333,20.27,0.70975,237.92453948333335 -2014-04-07 09:00:00,0.0,1010.591806,314.5741667,56.3475,23.45666667,1.482833333,237.9241886 -2014-04-07 10:00:00,0.0,1009.7769999999999,440.21833330000004,48.82083333,25.79,1.469583333,237.92489036666666 -2014-04-07 11:00:00,0.0,1008.613639,476.5075,43.745,27.49416667,2.182416667,237.92453948333332 -2014-04-07 12:00:00,0.0,1007.7568890000001,509.1391666999999,40.6,28.41916667,2.35025,237.9241886 -2014-04-07 13:00:00,0.0,1007.1885,402.0275,36.7675,28.84,1.9976666669999998,237.9241886 -2014-04-07 14:00:00,0.0,1006.839944,318.90833330000004,33.67166667,28.97083333,1.811,237.9241886 -2014-04-07 15:00:00,0.0,1006.5268609999999,89.95641667,47.84833333,27.01666667,0.92625,237.9241886 -2014-04-07 16:00:00,0.0,1005.6353330000001,307.6966667,43.00416667,27.41416667,0.46183333299999996,237.92350351666667 -2014-04-07 17:00:00,0.0,1004.5235560000001,121.2575,38.29083333,28.67166667,0.85675,237.92281843333333 -2014-04-07 18:00:00,0.0,1004.52975,43.50383333,51.47083333,26.3925,0.90875,237.92042898333332 -2014-04-07 19:00:00,0.0,1004.955028,11.41641667,69.425,21.60666667,0.16066666699999999,237.92007809999998 -2014-04-07 20:00:00,0.0,1004.516945,2.464875,78.935,20.4275,0.015083333,237.92007809999998 -2014-04-07 21:00:00,0.0,1004.0300279999999,0.0,86.33333333,18.97416667,0.18883333300000002,237.92007809999998 -2014-04-07 22:00:00,0.0,1003.9333330000001,0.0,89.325,18.08083333,0.08800000000000001,237.92007809999998 -2014-04-07 23:00:00,0.0,1004.234884,0.0,89.49166667,17.94666667,0.417333333,237.92007809999998 -2014-05-07 00:00:00,0.0,1003.9184439999999,0.0,90.89166667,17.67333333,0.21458333300000001,237.82122559999996 -2014-05-07 01:00:00,0.0,1003.938389,0.0,94.775,17.40416667,0.204833333,237.82189400000001 -2014-05-07 02:00:00,0.0,1003.7985,0.0,95.88333333,16.66166667,0.169916667,237.8225624 -2014-05-07 03:00:00,0.0,1003.703278,0.0,96.00833333,14.80166667,0.22291666699999999,237.82323080000006 -2014-05-07 04:00:00,0.0,1003.891389,5.6795666670000005,95.65,13.63,0.260166667,237.82323080000006 -2014-05-07 05:00:00,0.0,1004.175,47.62158333,95.18333333,14.6375,0.231166667,237.82189399999996 -2014-05-07 06:00:00,0.0,1004.484833,85.43908333,83.62916667,18.12,0.519333333,237.8228966 -2014-05-07 07:00:00,0.0,1004.616667,107.70083329999999,77.9325,20.72833333,0.47908333299999994,237.82323080000006 -2014-05-07 08:00:00,0.0,1004.641667,140.37916669999998,76.96833333,21.4225,0.44625,237.82323080000006 -2014-05-07 09:00:00,0.0,1004.781556,186.8883333,76.22833333,22.48666667,1.10975,237.82289660000004 -2014-05-07 10:00:00,0.0,1004.8101109999999,231.2858333,75.03583333,22.37916667,1.6265,237.82122559999996 -2014-05-07 11:00:00,0.0,1004.6982220000001,259.7466667,71.34,23.44,1.270416667,237.82122559999996 -2014-05-07 12:00:00,0.0,1005.1295,184.8233333,67.08833333,23.5925,1.8705833330000001,237.82017294999994 -2014-05-07 13:00:00,0.0,1005.4898890000001,158.2525,76.47166667,21.99,1.192416667,237.81947118333332 -2014-05-07 14:00:00,0.0,1005.7616109999999,202.4225,82.425,21.1975,1.064083333,237.81778356666666 -2014-05-07 15:00:00,0.0,1005.8050720000001,110.3165,80.96666667,21.48666667,1.4795833330000001,237.8177835666667 -2014-05-07 16:00:00,0.0,1005.87825,99.18416667,83.39166667,20.85,1.658166667,237.8174326666667 -2014-05-07 17:00:00,0.0,1005.973167,99.2775,81.725,21.23166667,1.279833333,237.8164134 -2014-05-07 18:00:00,0.0,1006.243083,60.05708333,82.93333333,21.25916667,1.35775,237.8171152 -2014-05-07 19:00:00,0.0,1006.618083,19.89575,87.45833333,20.52416667,1.25825,237.8171152 -2014-05-07 20:00:00,0.0,1007.120917,2.445158333,91.25,19.73,1.132333333,237.81811774999997 -2014-05-07 21:00:00,0.0,1007.568083,0.039433333,92.04166667,19.34583333,0.949833333,237.81912030000004 -2014-05-07 22:00:00,0.0,1007.966667,0.0,90.475,19.47,0.829833333,237.81912030000004 -2014-05-07 23:00:00,0.0,1007.88475,0.0,91.025,19.2925,0.920416667,237.81912030000004 -2014-06-07 00:00:00,0.493837776,1007.772167,0.0,94.50833333,18.91583333,0.535166667,237.69273083333334 -2014-06-07 01:00:00,0.0,1007.431917,0.0,99.89166667,17.85833333,0.9179166670000001,237.69445190000002 -2014-06-07 02:00:00,0.0,1007.273583,0.0,100.0,16.475,0.24958333300000002,237.69620640000002 -2014-06-07 03:00:00,0.0,1007.123167,0.0,100.0,15.65166667,0.071416667,237.69760999999997 -2014-06-07 04:00:00,0.0,1007.336583,3.4512333330000002,100.0,15.78083333,0.05025,237.6992809166667 -2014-06-07 05:00:00,0.0,1007.289833,33.01375,100.0,16.52583333,0.16325,237.69961510000005 -2014-06-07 06:00:00,0.0,1007.3,49.44975,99.94166667,17.88333333,0.278666667,237.7017205 -2014-06-07 07:00:00,0.0,1007.398583,133.7291667,89.26666667,19.98916667,1.3571666669999998,237.70272305000003 -2014-06-07 08:00:00,0.0,1007.083333,56.19716667,76.5925,23.155,2.570083333,237.70136960000002 -2014-06-07 09:00:00,0.0,1006.900556,272.09,66.92666667,23.86666667,2.226666667,237.69654058333333 -2014-06-07 10:00:00,0.0,1006.618556,378.07,65.9675,25.13916667,2.5158333330000002,237.68932216666667 -2014-06-07 11:00:00,0.0,1006.162111,333.445,62.32583333,27.05833333,3.2875,237.68519498333333 -2014-06-07 12:00:00,0.0,1005.865333,277.9525,58.90833333,27.4925,2.693666667,237.68247133333332 -2014-06-07 13:00:00,0.0,1005.4408890000001,273.3033333,54.875,28.15583333,2.3515,237.67973099999998 -2014-06-07 14:00:00,0.0,1004.9102220000001,244.70833330000002,53.10666667,29.0825,2.368833333,237.67695728333334 -2014-06-07 15:00:00,0.0,1004.477444,203.4783333,49.76,28.83583333,2.104666667,237.67451771666666 -2014-06-07 16:00:00,0.0,1003.652445,206.4475,50.6675,28.44583333,2.252166667,237.67284680000003 -2014-06-07 17:00:00,0.0,1003.283333,106.83575,47.78083333,29.60666667,3.096166667,237.6714432 -2014-06-07 18:00:00,0.0,1003.2819999999999,42.51625,46.05083333,29.33166667,2.28575,237.67109230000003 -2014-06-07 19:00:00,0.0,1003.118,18.988375,60.96166667,27.08333333,0.47033333299999996,237.6707414 -2014-06-07 20:00:00,0.0,1005.942333,2.878925,77.12916667,21.99916667,0.513166667,237.6707414 -2014-06-07 21:00:00,15.92153042,1006.6172220000001,0.0,93.19416667,18.22916667,1.168666667,237.67144320000003 -2014-06-07 22:00:00,16.03378306,1007.7617779999999,0.0,98.80833333,16.73416667,0.786333333,237.67451771666666 -2014-06-07 23:00:00,21.51880814,1008.4308890000001,0.0,99.94166667,16.94,1.04725,237.67695728333334 -2014-07-07 00:00:00,7.490992896,1008.962889,0.0,99.73333333,16.8975,0.566416667,237.5574353833333 -2014-07-07 01:00:00,5.008751352,1009.3492949999999,0.0,98.30833333,16.84166667,0.543166667,237.56086080000003 -2014-07-07 02:00:00,2.421557784,1010.0525,0.0,99.925,16.53333333,0.075,237.56358441666666 -2014-07-07 03:00:00,0.0,1010.60125,0.0,98.95833333,16.59333333,0.8584166670000001,237.56600728333333 -2014-07-07 04:00:00,2.419539072,1011.2255560000001,4.930391667,97.25833333,16.07666667,0.278583333,237.56767819999996 -2014-07-07 05:00:00,0.0,1012.131944,14.90825,98.38333333,15.95166667,0.27625,237.57013450000002 -2014-07-07 06:00:00,0.0,1013.137083,49.15866667,97.34166667,15.50666667,0.583916667,237.57188900000003 -2014-07-07 07:00:00,0.0,1013.509583,150.2783333,91.475,16.25,0.9381666670000001,237.57355991666665 -2014-07-07 08:00:00,0.0,1013.741667,121.72416670000001,84.84166667,16.30166667,1.9409999999999998,237.5725573666667 -2014-07-07 09:00:00,0.0,1013.999306,107.6133333,83.45,16.34916667,1.29675,237.5701345 -2014-07-07 10:00:00,0.0,1014.341667,247.05333330000002,79.57916667,17.22666667,1.051916667,237.5687309 -2014-07-07 11:00:00,0.0,1014.251944,296.2866667,70.28666667,18.61666667,1.6126666669999998,237.5646204 -2014-07-07 12:00:00,3.228669816,1013.8455560000001,354.9466667,62.52916667,19.99583333,1.7645,237.55776956666668 -2014-07-07 13:00:00,0.0,1013.4423609999999,390.845,55.14416667,20.805,1.9519166669999999,237.5491642833333 -2014-07-07 14:00:00,0.0,1012.655833,282.6308333,50.03666667,21.25083333,1.84125,237.53990733333333 -2014-07-07 15:00:00,0.0,1012.018056,259.0758333,52.45333333,21.47666667,1.8739166669999998,237.53404235000002 -2014-07-07 16:00:00,0.0,1011.3372220000001,234.9433333,52.875,21.97833333,2.009,237.53163619999998 -2014-07-07 17:00:00,0.0,1011.1269550000001,111.24166670000001,59.17916667,21.91333333,1.856333333,237.5305835 -2014-07-07 18:00:00,0.0,1010.664333,63.37625,64.34416667,21.30083333,1.9418333330000002,237.5305835 -2014-07-07 19:00:00,0.0,1010.252,26.42208333,69.5725,20.47666667,1.851833333,237.5319871 -2014-07-07 20:00:00,0.0,1010.233333,3.01665,77.61,19.02416667,1.15375,237.53435981666664 -2014-07-07 21:00:00,0.0,1009.781833,0.019716667,75.2125,18.67333333,1.233166667,237.53785209999998 -2014-07-07 22:00:00,0.0,1008.8810000000001,0.0,75.83,18.095,1.246583333,237.5412774833333 -2014-07-07 23:00:00,0.0,1008.074667,0.0,85.16666667,16.89666667,0.47875,237.54436868333332 -2014-08-07 00:00:00,0.0,1007.149667,0.0,81.93333333,16.72333333,0.305833333,237.4471204 -2014-08-07 01:00:00,0.0,1006.5635,0.0,84.20333333,17.51583333,0.621416667,237.44506515 -2014-08-07 02:00:00,0.0,1006.237,0.0,99.53333333,15.97,0.131583333,237.4447309666667 -2014-08-07 03:00:00,0.0,1004.881833,0.0,100.0,15.33333333,1.2755,237.44439678333336 -2014-08-07 04:00:00,0.0,1003.984167,1.439316667,100.0,15.25666667,1.8183333330000002,237.44406260000002 -2014-08-07 05:00:00,0.0,1003.702,7.158025,100.0,15.5325,1.1615,237.4447309666667 -2014-08-07 06:00:00,0.0,1003.4789999999999,16.4465,100.0,16.1575,1.028833333,237.44439678333333 -2014-08-07 07:00:00,0.0,1003.1175,15.06691667,100.0,16.43083333,1.28025,237.44471424999998 -2014-08-07 08:00:00,0.0,1002.766667,23.36658333,100.0,16.66166667,0.5895,237.44195719999996 -2014-08-07 09:00:00,0.0,1002.573833,89.0295,100.0,17.37583333,0.624833333,237.44195719999996 -2014-08-07 10:00:00,0.0,1002.4416669999999,153.6266667,98.69166667,18.09083333,0.441833333,237.44230809999996 -2014-08-07 11:00:00,0.0,1002.636472,72.40683333,98.13333333,18.53583333,0.37641666700000004,237.4412888333333 -2014-08-07 12:00:00,0.0,1002.630194,106.48166670000002,100.0,17.21916667,0.42700000000000005,237.4399521 -2014-08-07 13:00:00,0.0,1002.659417,148.93083330000002,97.45833333,17.30166667,0.436833333,237.43650996666665 -2014-08-07 14:00:00,0.0,1002.5853890000001,136.9999167,95.275,17.69583333,0.492166667,237.43513979999997 -2014-08-07 15:00:00,0.0,1002.6,74.46600000000001,96.21666667,17.18583333,0.587666667,237.43064496666662 -2014-08-07 16:00:00,0.0,1002.6646109999999,57.75,98.125,16.56833333,0.522083333,237.4296257 -2014-08-07 17:00:00,0.0,1002.741667,87.29700000000001,96.975,16.80916667,0.4105,237.42822209999997 -2014-08-07 18:00:00,0.0,1002.608333,26.00733333,97.55,16.4625,0.40266666700000003,237.42618356666665 -2014-08-07 19:00:00,0.0,1002.8010830000001,14.25754167,99.33333333,15.89416667,0.49175,237.42584938333331 -2014-08-07 20:00:00,0.0,1003.55325,1.2817,100.0,15.10166667,0.6023333329999999,237.4237607 -2014-08-07 21:00:00,0.0,1004.0583330000001,0.0,99.575,14.5225,1.109666667,237.42340980000003 -2014-08-07 22:00:00,0.0,1004.008333,0.0,100.0,13.58,1.167666667,237.42240725000002 -2014-08-07 23:00:00,0.0,1004.008333,0.0,100.0,13.12916667,0.477916667,237.42000110000004 -2014-09-07 00:00:00,0.0,1003.7124439999999,0.0,100.0,12.62,0.5505,237.80179930000006 -2014-09-07 01:00:00,0.0,1003.465583,0.0,100.0,12.2125,0.5229166670000001,237.80246766666673 -2014-09-07 02:00:00,0.0,1003.278139,0.0,100.0,11.99916667,0.503833333,237.80213348333336 -2014-09-07 03:00:00,0.0,1003.016677,0.0,100.0,11.73833333,0.6489166670000001,237.80380440000002 -2014-09-07 04:00:00,0.0,1002.996778,0.29575,100.0,11.60666667,0.5215,237.80380440000002 -2014-09-07 05:00:00,0.0,1002.858444,4.220416667,100.0,11.56166667,0.718333333,237.80380440000002 -2014-09-07 06:00:00,0.0,1002.064667,15.659,100.0,11.67666667,0.669333333,237.80380440000002 -2014-09-07 07:00:00,0.0,1001.865667,31.21941667,100.0,11.88583333,0.6336666670000001,237.80313603333335 -2014-09-07 08:00:00,0.0,1001.4292220000001,28.99225,100.0,11.91833333,0.543333333,237.80179930000006 -2014-09-07 09:00:00,0.0,1001.0385560000001,59.99466667,100.0,12.29416667,0.46466666700000003,237.80347021666668 -2014-09-07 10:00:00,0.0,1000.882333,54.2185,100.0,12.715,0.47566666700000004,237.80280185 -2014-09-07 11:00:00,0.0,1000.8531109999999,94.2725,100.0,13.28083333,0.599833333,237.80313603333335 -2014-09-07 12:00:00,0.0,1001.0395560000001,107.87,100.0,13.68833333,0.473583333,237.80144840000003 -2014-09-07 13:00:00,0.0,1001.1021109999999,91.65916667,100.0,13.92083333,0.442333333,237.7996939 -2014-09-07 14:00:00,0.0,1000.963556,106.49333329999999,100.0,14.415,0.465416667,237.7993597166667 -2014-09-07 15:00:00,0.0,1000.8697779999999,95.98166667,99.98333333,14.81,0.5455,237.79802298333337 -2014-09-07 16:00:00,0.0,1001.092667,59.59391667,99.975,14.82083333,0.527,237.7966361 -2014-09-07 17:00:00,0.0,1001.258333,33.95991667,100.0,14.53333333,0.33216666699999997,237.79558340000003 -2014-09-07 18:00:00,0.0,1001.5717779999999,23.62616667,100.0,14.26916667,0.26075,237.79488163333335 -2014-09-07 19:00:00,0.0,1001.917611,7.671358333,100.0,14.10333333,0.134666667,237.79417986666667 -2014-09-07 20:00:00,0.0,1002.074083,0.86765,100.0,13.9425,0.144083333,237.7934781 -2014-09-07 21:00:00,0.0,1002.0259169999999,0.0,100.0,13.8725,0.08733333300000001,237.79382898333333 -2014-09-07 22:00:00,0.0,1002.26975,0.0,100.0,13.82916667,0.259583333,237.7934781 -2014-09-07 23:00:00,0.0,1002.463583,0.0,100.0,13.8575,0.166916667,237.7934781 -2014-10-07 00:00:00,0.0,1002.3864169999999,0.0,100.0,13.65166667,0.6801666670000001, -2014-10-07 01:00:00,0.0,1002.531167,0.0,100.0,13.385,0.611166667, -2014-10-07 02:00:00,0.0,1002.735167,0.0,100.0,13.13333333,0.7065, -2014-10-07 03:00:00,0.0,1002.94075,0.0,100.0,13.09833333,0.5531666670000001, -2014-10-07 04:00:00,0.0,1003.0935,2.050941667,100.0,13.14333333,0.28925, -2014-10-07 05:00:00,0.0,1003.550917,20.6885,100.0,13.19166667,0.362916667, -2014-10-07 06:00:00,0.0,1003.89875,38.77125,99.8,13.68,0.4395, -2014-10-07 07:00:00,0.0,1004.691333,98.4375,96.275,14.6175,0.459583333, -2014-10-07 08:00:00,0.0,1004.983333,107.75741670000001,93.4,15.4025,1.345833333, -2014-10-07 09:00:00,0.0,1005.23425,167.57416669999998,88.43333333,16.305,1.619, -2014-10-07 10:00:00,0.0,1005.257083,236.1625,83.165,17.62833333,1.2715, -2014-10-07 11:00:00,0.0,1005.487667,267.4175,83.02583333,18.7575,1.6451666669999998, -2014-10-07 12:00:00,0.0,1005.488639,352.2866667,80.53916667,20.40916667,1.081, -2014-10-07 13:00:00,0.0,1005.361389,348.16833330000003,77.735,22.5175,0.914166667,238.0339525 -2014-10-07 14:00:00,0.0,1005.19,327.1508333,77.32833333,23.63916667,0.8444166670000001,238.03341916666668 -2014-10-07 15:00:00,0.0,1004.9425,110.3165,80.96666667,24.57,0.765916667,238.0327525 -2014-10-07 16:00:00,0.0,1004.6786109999999,99.18416667,83.39166667,24.28583333,1.6179166669999998,238.0340858333333 -2014-10-07 17:00:00,0.0,1004.785,99.2775,81.725,24.435,1.4195,238.0347525 -2014-10-07 18:00:00,0.0,1006.804444,60.05708333,82.93333333,23.38916667,1.5729166669999999,238.03168583333334 -2014-10-07 19:00:00,0.0,1007.3552779999999,19.89575,87.45833333,16.79083333,1.559916667,238.0101025 -2014-10-07 20:00:00,0.0,1007.3263890000001,2.445158333,91.25,16.03166667,0.39091666700000005,238.0025525 -2014-10-07 21:00:00,0.0,1007.4319439999999,0.039433333,92.04166667,15.66583333,0.718166667,238.00051916666666 -2014-10-07 22:00:00,0.0,1007.5425,0.0,90.475,15.49833333,0.204416667,238.0018525 -2014-10-07 23:00:00,0.0,1007.6833330000001,0.0,91.025,15.22166667,0.61775,238.0018525 -2014-11-07 00:00:00,0.0,1007.4347220000001,0.0,94.50833333,15.035,0.7165,237.94635250000002 -2014-11-07 01:00:00,0.0,1007.3083330000001,0.0,99.89166667,15.18,0.901833333,237.9467025 -2014-11-07 02:00:00,0.0,1007.600833,0.0,100.0,15.14833333,0.732916667,237.94635250000002 -2014-11-07 03:00:00,0.0,1007.834167,0.0,100.0,14.6725,0.075166667,237.94775249999998 -2014-11-07 04:00:00,0.0,1008.0425,3.4512333330000002,100.0,14.0375,0.023416667000000002,237.9467025 -2014-11-07 05:00:00,0.0,1008.537202,33.01375,100.0,14.3975,0.054583333,237.9470525 -2014-11-07 06:00:00,0.0,1009.068167,49.44975,99.94166667,16.80166667,0.234166667,237.94635250000002 -2014-11-07 07:00:00,0.0,1009.467417,133.7291667,89.26666667,18.58416667,0.559666667,237.9470525 -2014-11-07 08:00:00,0.0,1009.5583330000001,56.19716667,76.5925,20.0475,0.826,237.94635250000002 -2014-11-07 09:00:00,0.0,1009.335611,272.09,66.92666667,21.80916667,0.87725,237.94636916666664 -2014-11-07 10:00:00,0.0,1009.090917,378.07,65.9675,22.855,0.802166667,237.94435249999995 -2014-11-07 11:00:00,0.0,1008.6235,333.445,62.32583333,24.1,1.25075,237.9446858333333 -2014-11-07 12:00:00,0.0,1008.141667,277.9525,58.90833333,25.365,1.096083333,237.94435249999995 -2014-11-07 13:00:00,0.0,1008.783333,273.3033333,54.875,22.75666667,2.6989166669999998,237.94501916666664 -2014-11-07 14:00:00,0.0,1008.534083,244.70833330000002,53.10666667,18.29,0.9205,237.9456858333333 -2014-11-07 15:00:00,0.0,1008.6833330000001,203.4783333,49.76,18.6725,0.5535,237.94635250000002 -2014-11-07 16:00:00,0.0,1008.331833,206.4475,50.6675,18.51416667,0.6144166670000001,237.94635250000002 -2014-11-07 17:00:00,0.0,1007.832583,106.83575,47.78083333,18.25333333,0.39666666700000003,237.94635250000002 -2014-11-07 18:00:00,0.0,1007.9787779999999,42.51625,46.05083333,18.58583333,0.53275,237.9470525 -2014-11-07 19:00:00,0.0,1008.653778,18.988375,60.96166667,18.58666667,0.169583333,237.9484525 -2014-11-07 20:00:00,0.0,1008.5037779999999,2.878925,77.12916667,17.94333333,0.5335,237.9484525 -2014-11-07 21:00:00,0.0,1008.988669,0.0,93.19416667,17.24666667,0.477916667,237.9484525 -2014-11-07 22:00:00,0.0,1008.911333,0.0,98.80833333,16.45,0.226,237.9491525 -2014-11-07 23:00:00,0.0,1008.841,0.0,99.94166667,16.88583333,0.33025,237.9498525 -2014-12-07 00:00:00,0.0,1008.65,0.0,99.73333333,16.56416667,0.069083333,237.97143583333332 -2014-12-07 01:00:00,0.0,1008.5880000000001,0.0,98.30833333,16.38666667,0.066333333,237.97723583333334 -2014-12-07 02:00:00,0.0,1008.2553330000001,0.0,99.925,16.07833333,0.032583333,237.9833858333333 -2014-12-07 03:00:00,0.0,1008.091667,0.0,98.95833333,15.40916667,0.0795,237.98578583333332 -2014-12-07 04:00:00,0.0,1008.225667,4.930391667,97.25833333,15.44333333,0.090833333,237.99023583333334 -2014-12-07 05:00:00,0.0,1008.4780000000001,14.90825,98.38333333,15.755,0.094,238.0056525 -2014-12-07 06:00:00,0.0,1008.5666669999999,49.15866667,97.34166667,16.43,0.38108333299999997,238.01526916666668 -2014-12-07 07:00:00,0.0,1008.583333,150.2783333,91.475,16.405,0.612083333,238.01900249999994 -2014-12-07 08:00:00,0.0,1008.669667,121.72416670000001,84.84166667,17.50083333,0.99175,238.02691916666663 -2014-12-07 09:00:00,0.0,1008.496333,107.6133333,83.45,19.70416667,1.9795,238.0409358333333 -2014-12-07 10:00:00,0.0,1008.001667,247.05333330000002,79.57916667,20.73916667,1.6199166669999998,238.04540250000002 -2014-12-07 11:00:00,0.0,1007.626667,296.2866667,70.28666667,21.20083333,1.913,238.05121916666664 -2014-12-07 12:00:00,0.0,1007.291667,354.9466667,62.52916667,22.39833333,2.136083333,238.06421916666667 -2014-12-07 13:00:00,0.0,1007.0880000000001,390.845,55.14416667,23.235,1.57875,238.07110250000002 -2014-12-07 14:00:00,0.0,1006.821409,282.6308333,50.03666667,23.62333333,1.328333333,238.08101916666666 -2014-12-07 15:00:00,0.0,1006.45775,259.0758333,52.45333333,23.41916667,1.312083333,238.09540249999998 -2014-12-07 16:00:00,0.0,1006.41725,234.9433333,52.875,23.7775,1.011666667,238.1043358333333 -2014-12-07 17:00:00,0.0,1006.583333,111.24166670000001,59.17916667,22.92583333,1.221833333,238.10911916666666 -2014-12-07 18:00:00,0.0,1006.9291390000001,63.37625,64.34416667,21.4375,0.006999999999999999,238.1128858333333 -2014-12-07 19:00:00,0.0,1007.3952220000001,26.42208333,69.5725,20.4075,0.091916667,238.1043358333333 -2014-12-07 20:00:00,0.0,1007.833917,3.01665,77.61,20.04333333,0.8786666670000001,238.12316916666666 -2014-12-07 21:00:00,0.0,1007.9470279999999,0.019716667,75.2125,18.22416667,0.308833333,238.13276916666666 -2014-12-07 22:00:00,0.0,1007.975,0.0,75.83,16.36166667,0.304083333,238.1348025 -2014-12-07 23:00:00,0.0,1007.727389,0.0,85.16666667,15.715,0.428,238.1509025 -2014-07-13 00:00:00,0.0,1007.28275,0.0,81.93333333,15.245,0.5145,237.78894320000003 -2014-07-13 01:00:00,0.0,1007.2136939999999,0.0,84.20333333,14.64083333,0.645166667,237.78616943333336 -2014-07-13 02:00:00,0.0,1006.9381109999999,0.0,99.53333333,14.785,0.7665833329999999,237.78307825 -2014-07-13 03:00:00,0.0,1006.407167,0.0,100.0,15.26916667,0.615,237.7820256 -2014-07-13 04:00:00,0.0,1006.2392779999999,1.439316667,100.0,15.04166667,0.269583333,237.7803546 -2014-07-13 05:00:00,0.0,1006.2684720000001,7.158025,100.0,14.60833333,0.139833333,237.7782659833333 -2014-07-13 06:00:00,0.0,1005.913694,16.4465,100.0,15.8475,0.18675,237.77758089999998 -2014-07-13 07:00:00,0.0,1005.7862779999999,15.06691667,100.0,16.26416667,0.244416667,237.77657829999998 -2014-07-13 08:00:00,0.0,1005.7215560000001,23.36658333,100.0,16.96333333,0.212333333,237.7759099 -2014-07-13 09:00:00,0.0,1005.475,89.0295,100.0,16.99166667,0.3245,237.77415548333332 -2014-07-13 10:00:00,0.0,1005.5387220000001,153.6266667,98.69166667,17.6175,0.454583333,237.77380459999998 -2014-07-13 11:00:00,0.0,1005.2745,72.40683333,98.13333333,18.32,0.39766666700000003,237.7717660333333 -2014-07-13 12:00:00,0.0,1004.824,106.48166670000002,100.0,19.92916667,0.609583333,237.7696941 -2014-07-13 13:00:00,0.0,1004.388722,148.93083330000002,97.45833333,21.29166667,0.994583333,237.7686414 -2014-07-13 14:00:00,0.0,1004.135778,136.9999167,95.275,20.03416667,0.946916667,237.7675887 -2014-07-13 15:00:00,0.0,1003.994111,74.46600000000001,96.21666667,19.36916667,0.36666666700000006,237.76591778333332 -2014-07-13 16:00:00,0.0,1003.832833,57.75,98.125,20.78166667,0.678083333,237.76558359999999 -2014-07-13 17:00:00,0.0,1003.647056,87.29700000000001,96.975,21.12,0.48516666700000005,237.76523269999998 -2014-07-13 18:00:00,0.0,1003.728444,26.00733333,97.55,18.73416667,0.1975,237.76347819999998 -2014-07-13 19:00:00,0.0,1003.9475560000001,14.25754167,99.33333333,17.99,0.10233333300000001,237.76347819999998 -2014-07-13 20:00:00,0.0,1004.372556,1.2817,100.0,17.44666667,0.004,237.76314401666664 -2014-07-13 21:00:00,0.0,1004.341667,0.0,99.575,17.0725,0.283833333,237.76349491666664 -2014-07-13 22:00:00,0.0,1004.408333,0.0,100.0,16.27583333,0.159833333,237.76523269999998 -2014-07-13 23:00:00,0.0,1004.7034150000001,0.0,100.0,15.66083333,0.001,237.7675887 -2014-07-14 00:00:00,0.0,1004.8,0.0,100.0,15.9525,0.0048333329999999996,237.76793959999998 -2014-07-14 01:00:00,0.0,1005.150833,0.0,100.0,15.04,0.093833333,237.7696941 -2014-07-14 02:00:00,0.0,1005.452917,0.0,100.0,14.79083333,0.047583333,237.7703958666667 -2014-07-14 03:00:00,0.0,1005.742083,0.0,100.0,15.21833333,0.173916667,237.77144851666665 -2014-07-14 04:00:00,0.0,1006.170417,0.29575,100.0,14.75583333,0.18025,237.7717994 -2014-07-14 05:00:00,0.0,1006.872917,4.220416667,100.0,15.54,0.0295,237.7696941 -2014-07-14 06:00:00,0.0,1007.49,15.659,100.0,17.25833333,0.18225,237.7696941 -2014-07-14 07:00:00,0.0,1008.039583,31.21941667,100.0,18.12916667,0.361833333,237.76934319999998 -2014-07-14 08:00:00,0.0,1008.327917,28.99225,100.0,19.0825,0.527833333,237.7689923 -2014-07-14 09:00:00,0.0,1008.8175,59.99466667,100.0,19.56916667,1.3825833330000001,237.7675887 -2014-07-14 10:00:00,0.0,1009.0975,54.2185,100.0,20.5475,1.0985,237.76658614999997 -2014-07-14 11:00:00,0.0,1009.252917,94.2725,100.0,21.74916667,1.210583333,237.76418 -2014-07-14 12:00:00,0.0,1009.51125,107.87,100.0,22.26083333,1.48575,237.76145638333332 -2014-07-14 13:00:00,0.0,1009.580417,91.65916667,100.0,23.1475,1.42275,237.75836515 -2014-07-14 14:00:00,0.0,1009.75375,106.49333329999999,100.0,23.38583333,1.50175,237.755959 -2014-07-14 15:00:00,0.0,1010.053333,95.98166667,99.98333333,23.8125,1.97525,237.7507958 -2014-07-14 16:00:00,0.0,1010.6504359999999,59.59391667,99.975,22.24833333,2.1430000000000002,237.74803874999998 -2014-07-14 17:00:00,0.0,1011.039444,33.95991667,100.0,21.19083333,1.7498333330000002,237.7452817 -2014-07-14 18:00:00,0.0,1011.5144449999999,23.62616667,100.0,20.56,1.0895,237.7432598833333 -2014-07-14 19:00:00,0.0,1011.775667,7.671358333,100.0,19.99833333,0.50875,237.74082030000002 -2014-07-14 20:00:00,0.0,1012.417333,0.86765,100.0,18.0525,0.046916667,237.7387984833333 -2014-07-14 21:00:00,0.0,1013.245222,0.0,100.0,15.92083333,0.007333333,237.73604143333338 -2014-07-14 22:00:00,0.0,1013.861889,0.0,100.0,14.62583333,0.027916667000000003,237.73470469999998 -2014-07-14 23:00:00,0.0,1014.3083330000001,0.0,100.0,14.27583333,0.164666667,237.7329502 -2014-07-15 00:00:00,0.0,1014.6394439999999,0.0,100.0,14.47833333,0.065916667,237.73189753333335 -2014-07-15 01:00:00,0.0,1014.8275560000001,0.0,100.0,14.63416667,0.0,237.728823 -2014-07-15 02:00:00,0.0,1014.9782220000001,0.0,100.0,14.45166667,0.041333333,237.72638349999997 -2014-07-15 03:00:00,0.0,1015.0137779999999,0.0,100.0,12.9425,0.04,237.7260493166667 -2014-07-15 04:00:00,0.0,1015.1561109999999,2.050941667,100.0,12.13833333,0.135833333,237.7243784 -2014-07-15 05:00:00,0.0,1015.575333,20.6885,100.0,12.50416667,0.0425,237.72332570000003 -2014-07-15 06:00:00,0.0,1015.883667,38.77125,99.8,15.3775,0.207666667,237.722273 -2014-07-15 07:00:00,0.0,1016.309,98.4375,96.275,18.03083333,0.369666667,237.72127045 -2014-07-15 08:00:00,0.0,1016.430444,107.75741670000001,93.4,20.01833333,0.96325,237.72026789999998 -2014-07-15 09:00:00,0.0,1016.5557140000001,167.57416669999998,88.43333333,21.49833333,1.004,237.71851340000003 -2014-07-15 10:00:00,0.0,1016.458083,236.1625,83.165,21.81583333,1.073833333,237.71578978333335 -2014-07-15 11:00:00,0.0,1016.475,267.4175,83.02583333,23.315,1.21925,237.71094405 -2014-07-15 12:00:00,0.0,1016.308083,352.2866667,80.53916667,24.03916667,1.265083333,237.70818700000004 -2014-07-15 13:00:00,0.0,1016.141667,348.16833330000003,77.735,24.86916667,1.218166667,237.70548010000005 -2014-07-15 14:00:00,0.0,1016.0666669999999,383.695,68.45833333,25.41416667,1.140333333,237.70238886666667 -2014-07-15 15:00:00,0.0,1015.9776109999999,454.4,55.52333333,24.65916667,1.4253333330000002,237.69928091666668 -2014-07-15 16:00:00,0.0,1015.8692779999999,365.55,55.50916667,24.93583333,1.39475,237.6972591 -2014-07-15 17:00:00,0.0,1015.7640560000001,137.3808333,55.2325,24.80916667,1.183083333,237.69480280000002 -2014-07-15 18:00:00,0.0,1016.0697779999999,39.67666667,58.59916667,24.46166667,1.37775,237.6920624666667 -2014-07-15 19:00:00,0.0,1016.503111,31.67666667,64.07916667,23.54166667,1.154083333,237.6892888 -2014-07-15 20:00:00,0.0,1017.108833,5.71775,76.73583333,20.26333333,0.62375,237.6876178 -2014-07-15 21:00:00,0.0,1017.57525,0.022083332999999997,93.84166667,17.17166667,0.013083333,237.68589674999998 -2014-07-15 22:00:00,0.0,1017.9505,0.0,98.48333333,15.28,0.043333332999999995,237.68282221666666 -2014-07-15 23:00:00,0.0,1018.15,0.0,100.0,15.0875,0.043583332999999995,237.68106780000002 -2014-07-16 00:00:00,0.0,1018.108083,0.0,100.0,15.77583333,0.027916667000000003,237.68006519999997 -2014-07-16 01:00:00,0.0,1017.989028,0.0,100.0,16.04166667,0.037666667,237.67906259999998 -2014-07-16 02:00:00,0.0,1017.977667,0.0,100.0,16.16583333,0.01225,237.67800995000002 -2014-07-16 03:00:00,0.0,1017.986167,0.0,100.0,16.28583333,0.00041666699999999996,237.67695730000005 -2014-07-16 04:00:00,0.0,1017.961,1.1325,100.0,16.19583333,0.06975,237.67695730000005 -2014-07-16 05:00:00,0.0,1017.980667,12.84883333,99.99166667,16.51416667,0.018583333,237.67555370000002 -2014-07-16 06:00:00,0.0,1017.925,46.21166667,98.95,17.08583333,0.051583332999999995,237.6748519 -2014-07-16 07:00:00,0.0,1018.091833,155.65,90.16666667,18.90416667,0.11325,237.67281336666667 -2014-07-16 08:00:00,0.0,1018.152833,232.95833330000002,82.45916667,20.8525,0.516333333,237.6707414 -2014-07-16 09:00:00,0.0,1018.1665,376.8583333,72.74,22.1,0.570666667,237.67007303333335 -2014-07-16 10:00:00,0.0,1017.966667,519.3416666999999,66.54666667,23.86416667,0.822833333,237.6683854 -2014-07-16 11:00:00,0.0,1017.794167,594.6083332999999,61.515,24.1675,1.1085,237.66562835000002 -2014-07-16 12:00:00,0.0,1017.474833,460.59166669999996,57.905,25.12083333,0.788333333,237.66287129999998 -2014-07-16 13:00:00,0.0,1017.347333,535.7,56.54,25.8925,1.174583333,237.65946259999996 -2014-07-16 14:00:00,0.0,1017.071833,677.8083333,51.22916667,26.25666667,1.085083333,237.6573572 -2014-07-16 15:00:00,0.0,1016.7805,489.9833333000001,50.34666667,26.5675,1.039416667,237.65426596666669 -2014-07-16 16:00:00,0.0,1016.6525,517.8333333,47.65916667,27.29,0.9704166670000001,237.64983800000002 -2014-07-16 17:00:00,0.0,1016.269333,106.50333329999998,49.13166667,27.43916667,0.8540000000000001,237.64808349999998 -2014-07-16 18:00:00,0.0,1016.172315,37.09166667,50.58416667,27.2825,0.603833333,237.6453766 -2014-07-16 19:00:00,0.0,1016.4085,29.55166667,65.92166667,26.16083333,0.4005,237.64363881666668 -2014-07-16 20:00:00,0.0,1016.847361,5.97575,84.8175,20.70666667,0.39883333299999996,237.64126609999997 -2014-07-16 21:00:00,0.0,1017.308417,0.000916667,94.14166667,16.82416667,0.337583333,237.64056429999997 -2014-07-16 22:00:00,0.0,1017.583333,0.0,97.81666667,15.2375,0.105083333,237.63880985 -2014-07-16 23:00:00,0.0,1017.708333,0.0,99.70833333,14.09,0.015,237.63775719999998 -2014-07-17 00:00:00,0.0,1017.69175,0.0,100.0,13.34833333,0.0,237.63775719999998 -2014-07-17 01:00:00,0.0,1017.7027220000001,0.0,100.0,12.89,0.0,237.63503354999997 -2014-07-17 02:00:00,0.0,1017.672194,0.0,100.0,12.38833333,0.0,237.63364669999996 -2014-07-17 03:00:00,0.0,1017.561056,0.0,100.0,12.025,0.0,237.63331251666662 -2014-07-17 04:00:00,0.0,1017.56675,2.5845,100.0,11.63333333,0.023583332999999998,237.63197578333333 -2014-07-17 05:00:00,0.0,1017.863944,72.87916667,99.98333333,12.845,0.0,237.63164159999997 -2014-07-17 06:00:00,0.0,1018.0194720000001,182.2166667,91.40833333,16.39833333,0.1255,237.63164159999997 -2014-07-17 07:00:00,0.0,1018.1472779999999,247.765,80.99583333,18.9625,0.32875,237.6295362 -2014-07-17 08:00:00,0.0,1018.258417,190.1,76.83583333,20.75833333,0.874416667,237.62920201666665 -2014-07-17 09:00:00,0.0,1018.2137779999999,366.4916667,68.56916667,23.61166667,0.634166667,237.6271634833333 -2014-07-17 10:00:00,0.0,1018.019306,596.625,56.515,26.25083333,0.9115,237.6247573333333 -2014-07-17 11:00:00,0.0,1017.813944,607.2333332999999,54.4225,27.06583333,0.785083333,237.6216661 -2014-07-17 12:00:00,0.0,1017.552778,505.7333333000001,54.08,27.44583333,1.310333333,237.61820724999998 -2014-07-17 13:00:00,0.0,1017.305556,685.5083333,51.4325,28.0625,0.883083333,237.61545020000003 -2014-07-17 14:00:00,0.0,1017.016667,734.9583332999999,48.41083333,27.4075,0.6085,237.61307748333334 -2014-07-17 15:00:00,0.0,1016.4972220000001,558.7416667,49.3975,28.36,1.30525,237.60998625 -2014-07-17 16:00:00,0.0,1016.102778,526.6916666999999,50.76916667,28.755,1.231333333,237.607931 -2014-07-17 17:00:00,0.0,1015.5055560000001,126.765,58.75083333,28.9,1.27775,237.60654411666667 -2014-07-17 18:00:00,0.0,1015.3777779999999,38.38916667,64.19916667,28.99916667,0.73075,237.60487319999996 -2014-07-17 19:00:00,0.0,1015.458333,27.07,73.285,27.95083333,0.199333333,237.60136419999995 -2014-07-17 20:00:00,0.0,1015.9805560000001,5.267666667,87.16666667,21.87833333,0.008416667,237.59999403333333 -2014-07-17 21:00:00,0.0,1016.044444,0.015,93.14166667,18.36333333,0.0,237.59899148333338 -2014-07-17 22:00:00,0.0,1016.091667,0.0,96.31666667,16.65583333,0.0,237.59865730000004 -2014-07-17 23:00:00,0.0,1016.0666669999999,0.0,99.59166667,15.57666667,0.0,237.59865730000004 -2014-07-18 00:00:00,0.0,1015.8638890000001,0.0,100.0,14.89583333,0.0,237.59865730000004 -2014-07-18 01:00:00,0.0,1015.508333,0.0,100.0,14.25166667,0.0,237.59865730000004 -2014-07-18 02:00:00,0.0,1015.197222,0.0,100.0,13.55666667,0.0,237.59865730000004 -2014-07-18 03:00:00,0.0,1015.2222220000001,0.0,100.0,12.96416667,0.0,237.59656868333335 -2014-07-18 04:00:00,0.0,1015.499917,2.4380833330000002,100.0,12.54666667,0.0,237.5958836 -2014-07-18 05:00:00,0.0,1015.78325,73.33166667,100.0,13.74,0.0,237.59488100000002 -2014-07-18 06:00:00,0.0,1015.905583,180.0333333,92.675,18.03833333,0.0,237.59454680000002 -2014-07-18 07:00:00,0.0,1015.736167,244.0008333,84.60083333,19.7075,0.6559166670000001,237.59454680000002 -2014-07-18 08:00:00,0.0,1015.522333,178.155,73.57166667,22.955,0.447166667,237.59488100000002 -2014-07-18 09:00:00,0.0,1015.161167,375.065,63.91583333,25.37083333,1.0555,237.60236678 -2014-07-18 10:00:00,0.0,1015.025083,612.2666667000001,54.36333333,27.81,1.3971666669999998,237.61616871666664 -2014-07-18 11:00:00,0.0,1014.730667,677.325,47.97,29.26083333,2.0485833330000003,237.60241691666667 -2014-07-18 12:00:00,0.0,1014.21125,714.4166667000001,44.12083333,30.345,2.0305,237.59212398333332 -2014-07-18 13:00:00,0.0,1013.76125,715.525,41.325,31.11083333,2.092166667,237.58487215 -2014-07-18 14:00:00,0.0,1013.405583,659.4666667,39.91083333,31.54666667,2.522583333,237.58007656666666 -2014-07-18 15:00:00,0.0,1012.886333,524.8,38.2025,31.885,2.114833333,237.57494680000002 -2014-07-18 16:00:00,0.0,1012.2251669999999,431.075,39.23333333,31.94416667,1.9536666669999998,237.57013450000002 -2014-07-18 17:00:00,0.0,1011.966667,134.7325,42.95916667,31.76833333,1.4941666669999998,237.56667564999998 -2014-07-18 18:00:00,0.0,1011.82775,49.90916667,52.86583333,31.38333333,1.417666667,237.56358441666669 -2014-07-18 19:00:00,0.0,1011.916667,28.57166667,69.765,29.38083333,0.42658333299999995,237.56156260000003 -2014-07-18 20:00:00,0.0,1011.9028890000001,4.86225,84.63666667,22.75666667,0.0010833330000000001,237.55945719999997 -2014-07-18 21:00:00,0.0,1011.883167,0.0075,91.68333333,18.78416667,0.0,237.55945719999997 -2014-07-18 22:00:00,0.0,1012.125,0.0,96.75,17.2275,0.0,237.55745209999995 -2014-07-18 23:00:00,0.0,1012.2806109999999,0.0,99.34166667,16.27666667,0.0,237.55745209999995 -2014-07-19 00:00:00,0.0,1011.9195560000001,0.0,100.0,15.64166667,0.0,237.5577862833333 -2014-07-19 01:00:00,0.0,1011.9056109999999,0.0,100.0,15.12333333,0.0,237.5577862833333 -2014-07-19 02:00:00,0.0,1011.550167,0.0,100.0,14.67583333,0.0,237.55745209999995 -2014-07-19 03:00:00,0.0,1011.536056,0.0,100.0,14.29,0.0,237.55745209999995 -2014-07-19 04:00:00,0.0,1011.575,4.772583333,100.0,13.805,0.0,237.55710119999995 -2014-07-19 05:00:00,0.0,1011.555444,49.57333333,100.0,14.915,0.0,237.55534669999997 -2014-07-19 06:00:00,0.0,1011.6916669999999,168.8666667,94.75,17.775,0.0,237.55534669999997 -2014-07-19 07:00:00,0.0,1011.469722,238.9891667,85.59166667,20.4225,1.168583333,237.55534669999997 -2014-07-19 08:00:00,0.0,1011.0585,181.5541667,69.45166667,23.87166667,0.847833333,237.55569759999995 -2014-07-19 09:00:00,0.0,1010.6585,366.1925,56.9275,27.1075,1.422166667,237.55365906666665 -2014-07-19 10:00:00,0.0,1010.463944,601.1666667000001,50.44583333,29.08166667,1.891583333,237.54949846666662 -2014-07-19 11:00:00,0.0,1010.0033890000001,660.6833333,46.31083333,30.53,1.9938333330000002,237.54607305 -2014-07-19 12:00:00,0.0,1009.45,687.9333333,40.75583333,31.60916667,2.487083333,237.54299851666667 -2014-07-19 13:00:00,0.0,1009.111501,680.4416667,37.77583333,31.88833333,2.99425,237.53922226666668 -2014-07-19 14:00:00,0.0,1008.833583,656.3083333,40.03916667,32.38,2.653,237.53404235000002 -2014-07-19 15:00:00,0.0,1008.367167,562.1083332999999,40.20416667,32.57416667,2.270666667,237.53060021666667 -2014-07-19 16:00:00,0.0,1007.5563890000001,421.775,39.31833333,32.75,2.26225,237.52752569999998 -2014-07-19 17:00:00,0.0,1006.947306,162.91666669999998,52.39333333,32.01916667,1.5589166669999999,237.5248020833333 -2014-07-19 18:00:00,0.0,1007.041667,85.07,66.185,31.39333333,0.56125,237.52341520000002 -2014-07-19 19:00:00,0.0,1006.8693609999999,30.27083333,74.34666667,29.28916667,0.15708333300000002,237.5223625 -2014-07-19 20:00:00,0.0,1006.95,3.151416667,88.61666667,22.89416667,0.001,237.5223625 -2014-07-19 21:00:00,0.0,1006.75025,0.0,93.40833333,20.17166667,0.0,237.52306430000002 -2014-07-19 22:00:00,0.0,1006.458583,0.0,97.075,18.87,0.0,237.52411699999996 -2014-07-19 23:00:00,0.0,1006.2862779999999,0.0,98.925,18.05583333,0.0,237.52271340000001 -2014-07-20 00:00:00,0.0,1006.008583,0.0,100.0,17.53666667,0.0,237.52341520000002 -2014-07-20 01:00:00,0.0,1005.7615279999999,0.0,100.0,17.60666667,0.0,237.5244679 -2014-07-20 02:00:00,0.0,1005.308583,0.0,100.0,17.37833333,0.0,237.52547044999997 -2014-07-20 03:00:00,0.0,1005.27475,0.0,100.0,17.33083333,0.0,237.52647299999998 -2014-07-20 04:00:00,0.0,1005.871556,2.1975,100.0,17.37916667,0.0025833329999999997,237.52647299999998 -2014-07-20 05:00:00,0.0,1006.646518,47.69166667,99.98333333,17.65166667,0.005416666999999999,237.5248020833333 -2014-07-20 06:00:00,0.0,1007.208333,110.41333329999999,91.7,20.58333333,0.1615,237.52306430000002 -2014-07-20 07:00:00,2.420878824,1007.080333,70.125,91.675,22.08666667,0.554583333,237.52411699999996 -2014-07-20 08:00:00,0.0,1007.083667,129.00166670000002,89.65833333,22.89333333,0.5056666670000001,237.52306430000002 -2014-07-20 09:00:00,0.0,1006.680667,67.81916667,92.06666667,22.61333333,0.347416667,237.52271340000001 -2014-07-20 10:00:00,0.0,1006.614333,124.73333329999998,89.03333333,24.045,0.8029166670000001,237.52271340000001 -2014-07-20 11:00:00,0.0,1006.494333,230.35,82.21583333,24.6375,0.86225,237.5223625 -2014-07-20 12:00:00,0.0,1006.364333,499.6083333000001,64.46666667,26.97416667,0.5509166670000001,237.5199730666667 -2014-07-20 13:00:00,0.0,1006.341333,531.025,52.71666667,30.1375,1.3648333330000002,237.51410806666664 -2014-07-20 14:00:00,0.0,1006.294667,272.4166667,53.2575,29.50416667,2.2618333330000002,237.5093292 -2014-07-20 15:00:00,0.0,1005.850667,226.3416667,55.98333333,28.54166667,1.568583333,237.50725723333332 -2014-07-20 16:00:00,0.0,1005.65,245.95833330000002,54.17833333,28.05833333,0.702833333,237.50486784999998 -2014-07-20 17:00:00,0.0,1005.963333,116.675,62.25166667,26.86333333,0.308083333,237.50314679999997 -2014-07-20 18:00:00,0.0,1006.311,48.17916667,68.94833333,25.51083333,0.46683333299999996,237.5021442 -2014-07-20 19:00:00,0.0,1006.2636669999999,15.29891667,76.97916667,23.47,0.011583333000000001,237.50381519999996 -2014-07-20 20:00:00,0.0,1006.253,0.861083333,90.4,22.05,0.61975,237.50381519999996 -2014-07-20 21:00:00,9.801251376,1006.3910000000001,0.0,97.68333333,20.95583333,0.29683333300000003,237.50281259999997 -2014-07-20 22:00:00,20.09199545,1006.941722,0.0,100.0,20.3025,0.41766666700000005,237.50314679999997 -2014-07-20 23:00:00,70.22908505,1006.983333,0.0,100.0,19.74916667,0.200166667,237.50486784999998 -2014-07-21 00:00:00,16.88147083,1006.6723609999999,0.0,100.0,19.345,0.222333333,237.50829321666666 -2014-07-21 01:00:00,0.0,1006.591667,0.0,100.0,18.41166667,0.108333333,237.51069936666667 -2014-07-21 02:00:00,2.4050227680000003,1006.50875,0.0,100.0,18.27333333,0.0905,237.51308880000002 -2014-07-21 03:00:00,0.0,1006.261389,0.0,100.0,18.23833333,0.0145,237.51414150000002 -2014-07-21 04:00:00,0.0,1006.241667,0.529166667,100.0,17.97416667,0.029083333,237.51273790000002 -2014-07-21 05:00:00,0.0,1006.1890279999999,11.59875,100.0,18.145,0.016833333,237.51308880000002 -2014-07-21 06:00:00,0.0,1006.210556,33.30166667,100.0,18.47583333,0.057083333,237.51414150000002 -2014-07-21 07:00:00,9.726710832,1006.571528,56.555,100.0,18.605,0.08608333300000001,237.51414150000002 -2014-07-21 08:00:00,2.417096088,1006.975,68.5425,100.0,19.08416667,0.048333333,237.51414150000002 -2014-07-21 09:00:00,2.4050227680000003,1007.324583,192.95,97.375,19.63833333,0.43141666700000003,237.51414150000002 -2014-07-21 10:00:00,0.0,1007.239028,233.19166669999998,93.6,20.67,0.755083333,237.51414150000002 -2014-07-21 11:00:00,0.0,1007.432917,326.875,85.48333333,22.14333333,0.42825,237.51310551666666 -2014-07-21 12:00:00,0.0,1007.1618060000001,444.34166669999996,81.24916667,23.34666667,0.645833333,237.510031 -2014-07-21 13:00:00,0.0,1007.288194,133.1833333,83.17583333,23.20166667,0.704333333,237.50725723333332 -2014-07-21 14:00:00,0.0,1007.425417,158.41666669999998,83.215,23.58583333,0.80325,237.5059205 -2014-07-21 15:00:00,31.714294199999998,1007.366186,180.6166667,80.33416667,22.335,1.6119999999999999,237.50521873333332 -2014-07-21 16:00:00,0.0,1007.552611,142.75,80.71,22.84,0.97975,237.50348099999997 -2014-07-21 17:00:00,0.0,1007.525,136.8916667,84.63333333,23.75666667,0.709666667,237.50181 -2014-07-21 18:00:00,0.0,1007.832833,101.8891667,80.13666667,23.84666667,2.068666667,237.49970469999997 -2014-07-21 19:00:00,0.0,1008.2797220000001,30.88808333,82.25416667,22.915,1.134666667,237.49661346666662 -2014-07-21 20:00:00,0.0,1008.605222,2.438416667,87.75,21.80833333,0.638166667,237.49559419999994 -2014-07-21 21:00:00,0.0,1008.807833,0.0,93.68333333,20.13833333,0.168083333,237.4959283833333 -2014-07-21 22:00:00,0.0,1009.174,0.0,99.54166667,18.83,0.035,237.49559419999994 -2014-07-21 23:00:00,0.0,1009.375,0.0,98.45,19.30583333,0.240083333,237.49659674999998 -2014-07-22 00:00:00,37.07400602,1009.2005,0.0,98.78333333,19.775,0.602666667,237.49759930000002 -2014-07-22 01:00:00,0.0,1009.3083330000001,0.0,100.0,19.28416667,0.229083333,237.4979502 -2014-07-22 02:00:00,14.91624802,1009.2276109999999,0.0,100.0,19.43416667,0.413916667,237.49726511666668 -2014-07-22 03:00:00,44.99226698,1009.4218890000001,0.0,100.0,19.64166667,0.8464166670000001,237.4979502 -2014-07-22 04:00:00,2.8346146560000003,1009.5245,2.4268333330000003,100.0,19.46,1.5655,237.50075735 -2014-07-22 05:00:00,0.0,1009.907833,16.29591667,100.0,19.28166667,1.13475,237.50181 -2014-07-22 06:00:00,0.0,1010.371389,87.65583333,99.95,19.88833333,1.90525,237.50281259999997 -2014-07-22 07:00:00,0.0,1010.852102,81.1325,98.79166667,20.10833333,2.36225,237.50381519999996 -2014-07-22 08:00:00,0.0,1011.32125,117.475,96.68333333,20.42083333,2.352833333,237.50348099999997 -2014-07-22 09:00:00,0.0,1011.6885,233.1166667,90.05833333,21.7525,2.632583333,237.50214419999998 -2014-07-22 10:00:00,0.0,1011.65775,488.90833330000004,80.05333333,23.59166667,2.69325,237.50181 -2014-07-22 11:00:00,0.0,1011.83075,618.6333333,71.18833333,25.36916667,2.9275833330000003,237.49970469999997 -2014-07-22 12:00:00,0.0,1011.858333,685.8416667,63.95583333,26.55666667,3.7560833330000003,237.49659674999998 -2014-07-22 13:00:00,0.0,1011.735917,548.6333333,59.16416667,27.11916667,3.325,237.49282043333332 -2014-07-22 14:00:00,0.0,1011.872417,595.4583332999999,56.80166667,27.36833333,3.4695,237.48802485 -2014-07-22 15:00:00,0.0,1011.673,472.325,56.355,27.68333333,3.3835833330000002,237.48421510000003 -2014-07-22 16:00:00,0.0,1011.441083,278.785,60.525,27.02833333,3.349333333,237.48149148333334 -2014-07-22 17:00:00,0.0,1011.918667,125.31166670000002,62.94666667,26.86416667,3.576083333,237.4801046 -2014-07-22 18:00:00,0.0,1012.4405,73.51083333,65.26,26.26666667,3.43775,237.47905189999997 -2014-07-22 19:00:00,0.0,1013.001417,29.26416667,68.26916667,25.52916667,3.012833333,237.47838353333336 -2014-07-22 20:00:00,0.0,1013.67125,4.24425,87.67416667,23.26416667,0.756583333,237.47738098333335 -2014-07-22 21:00:00,0.0,1013.946833,0.0,95.80833333,19.72416667,0.00475,237.48215985 -2014-07-22 22:00:00,0.0,1014.083333,0.0,97.95,18.66583333,0.015083333,237.48665468333334 -2014-07-22 23:00:00,0.0,1014.060917,0.0,99.60833333,17.71416667,0.032166667,237.4900801 -2014-07-23 00:00:00,0.0,1013.9788060000001,0.0,100.0,16.94333333,0.0005,237.49043099999997 -2014-07-23 01:00:00,0.0,1013.875,0.0,100.0,16.24583333,0.018333333,237.49148369999997 -2014-07-23 02:00:00,0.0,1013.6064439999999,0.0,100.0,15.95666667,0.003833333,237.49385641666666 -2014-07-23 03:00:00,0.0,1013.549333,0.0,100.0,15.47083333,0.0055,237.49524329999997 -2014-07-23 04:00:00,0.0,1013.7025560000001,1.7335833330000001,100.0,14.9125,0.0025833329999999997,237.49559419999994 -2014-07-23 05:00:00,0.0,1013.993556,69.13083333,100.0,15.92083333,0.04975,237.49559419999994 -2014-07-23 06:00:00,0.0,1014.1833330000001,104.8075,95.28333333,18.91833333,0.7665,237.4938397 -2014-07-23 07:00:00,0.0,1014.266667,202.1333333,85.69166667,20.04166667,2.10225,237.49348880000002 -2014-07-23 08:00:00,0.0,1014.241667,201.2833333,80.73583333,21.1,2.3178333330000003,237.4948924 -2014-07-23 09:00:00,0.0,1014.017333,378.53333330000004,75.765,22.5725,2.5644166669999997,237.49215206666665 -2014-07-23 10:00:00,0.0,1013.758333,576.95,69.0375,24.38166667,2.877583333,237.48769066666668 -2014-07-23 11:00:00,0.0,1013.4680000000001,581.8166667,65.08833333,25.2075,3.5148333330000003,237.48317911666666 -2014-07-23 12:00:00,0.0,1013.2115560000001,649.325,60.46416667,26.15083333,3.735833333,237.4794028 -2014-07-23 13:00:00,0.0,1012.793,628.4,57.22166667,27.14833333,3.085666667,237.47462393333333 -2014-07-23 14:00:00,0.0,1011.993,579.4416667,50.58,27.81833333,3.01375,237.46982835000003 -2014-07-23 15:00:00,0.0,1011.6321109999999,473.6916666999999,49.06,27.9925,3.003833333,237.4660186333333 -2014-07-23 16:00:00,0.0,1011.0089999999999,313.9333333,48.4875,27.7675,2.9735,237.4629441 -2014-07-23 17:00:00,0.0,1011.0967609999999,137.5141667,54.17083333,26.9,4.43225,237.4598362 -2014-07-23 18:00:00,0.0,1011.158333,60.62583333,56.40333333,26.29166667,3.649833333,237.45674498333332 -2014-07-23 19:00:00,0.0,1011.559361,19.84791667,67.45833333,24.8,2.4931666669999997,237.45572570000002 -2014-07-23 20:00:00,0.0,1011.8166669999999,2.8545,87.275,21.0975,0.208333333,237.4543889 -2014-07-23 21:00:00,0.0,1011.908333,0.0,94.70833333,17.83,0.08800000000000001,237.45368713333332 -2014-07-23 22:00:00,0.0,1011.766667,0.0,98.51666667,16.59166667,0.09275,237.4543889 -2014-07-23 23:00:00,0.0,1011.714139,0.0,99.975,15.74,0.055416667,237.4543889 -2014-07-24 00:00:00,0.0,1011.3873609999999,0.0,100.0,15.305,0.050166667000000005,237.45605990000004 -2014-07-24 01:00:00,0.0,1010.934083,0.0,100.0,14.84166667,0.183,237.45674498333335 -2014-07-24 02:00:00,0.0,1010.7,0.0,100.0,14.97833333,0.333583333,237.45849939999997 -2014-07-24 03:00:00,0.0,1010.495694,0.0,100.0,13.86666667,0.020416667,237.45744675 -2014-07-24 04:00:00,0.0,1010.430056,1.5336666669999999,100.0,12.7875,0.020916667,237.45779763333329 -2014-07-24 05:00:00,0.0,1010.9101109999999,49.53833333,100.0,13.45416667,0.4975,237.45849939999997 -2014-07-24 06:00:00,0.0,1011.088389,149.12083330000002,92.80833333,16.98833333,1.126,237.45849939999997 -2014-07-24 07:00:00,0.0,1011.180056,228.8608333,79.1025,18.61666667,2.8645,237.45849939999997 -2014-07-24 08:00:00,0.0,1011.048972,185.2666667,74.38,19.9575,2.440666667,237.45849939999997 -2014-07-24 09:00:00,0.0,1010.852536,353.0166667,67.415,21.755,2.595333333,237.45537481666668 -2014-07-24 10:00:00,0.0,1010.715,584.625,63.28666667,23.01,3.446,237.44884146666666 -2014-07-24 11:00:00,0.0,1010.400833,663.7833333,57.315,24.07416667,3.730416667,237.4453993333333 -2014-07-24 12:00:00,0.0,1009.965,711.975,53.96166667,25.17416667,2.709833333,237.4412888333333 -2014-07-24 13:00:00,0.0,1009.470833,572.7333332999999,50.7825,25.29166667,3.416416667,237.43854849999994 -2014-07-24 14:00:00,0.0,1009.0975,572.4666667,49.15083333,25.915,2.542333333,237.43513979999997 -2014-07-24 15:00:00,0.0,1008.953333,488.28333330000004,45.63,26.28666667,2.5596666669999997,237.4330344 -2014-07-24 16:00:00,0.0,1008.9175,194.95,51.0275,25.765,2.1109999999999998,237.43096243333335 -2014-07-24 17:00:00,1755.6531719999998,1010.070833,41.76408333,78.17666667,20.09583333,3.042333333,237.45126429999996 -2014-07-24 18:00:00,2056.548871,1009.9333330000001,4.224416667,97.94166667,16.87583333,3.552333333,238.0893436 -2014-07-24 19:00:00,0.0,1010.224167,7.719916667000001,100.0,16.6875,0.981,238.15801898333333 -2014-07-24 20:00:00,0.0,1010.488333,2.2311666669999997,100.0,17.47166667,1.18875,238.01142798333333 -2014-07-24 21:00:00,0.0,1010.6275,0.0,100.0,16.7525,0.409083333,237.94175006666669 -2014-07-24 22:00:00,0.0,1010.6916669999999,0.0,100.0,15.4825,0.1335,237.90017723333332 -2014-07-24 23:00:00,0.0,1010.655833,0.0,100.0,14.6025,0.0685,237.87304130000004 -2014-07-25 00:00:00,3.060585552,1010.395833,0.0,100.0,16.35,1.6275,237.8538422833333 -2014-07-25 01:00:00,0.0,1010.2725,0.0,100.0,16.07916667,0.507416667,237.83975628333334 -2014-07-25 02:00:00,0.0,1010.149092,0.0,100.0,14.635,0.408416667,237.82805976666668 -2014-07-25 03:00:00,0.0,1010.283333,0.0,100.0,13.41916667,0.08616666699999999,237.81778353333334 -2014-07-25 04:00:00,0.0,1010.141667,1.642,100.0,12.59833333,0.09425,237.8088273333333 -2014-07-25 05:00:00,0.0,1010.241667,74.17666667,100.0,13.86,0.140833333,237.80195978333336 -2014-07-25 06:00:00,0.0,1010.360806,111.04583329999998,100.0,15.72666667,0.970916667,237.79614493333335 -2014-07-25 07:00:00,0.0,1010.446611,193.83333330000002,95.88333333,16.8625,1.935,237.78927738333334 -2014-07-25 08:00:00,0.0,1010.428389,229.6583333,87.55,18.04916667,1.81775,237.78479926666668 -2014-07-25 09:00:00,0.0,1010.33425,336.4833333,82.92583333,19.0325,1.256083333,237.77998703333333 -2014-07-25 10:00:00,0.0,1010.025,426.8083333000001,76.29333333,20.42083333,1.267416667,237.77383796666663 -2014-07-25 11:00:00,0.0,1009.6302220000001,596.9583332999999,72.81,21.05166667,1.7555,237.7689923 -2014-07-25 12:00:00,0.0,1009.372528,518.3666667,69.37166667,21.785,1.60575,237.76521598333332 -2014-07-25 13:00:00,0.0,1008.95925,686.2583333,63.03583333,23.11,1.39075,237.75973531666668 -2014-07-25 14:00:00,0.0,1008.6043060000001,673.5833332999999,61.555,23.93916667,1.128583333,237.7532186666666 -2014-07-25 15:00:00,0.0,1008.090111,431.35,59.42333333,24.43083333,1.4119166669999998,237.74631768333333 -2014-07-25 16:00:00,0.0,1007.9225279999999,253.3416667,61.06,24.29833333,0.9345,237.7415221 -2014-07-25 17:00:00,0.0,1007.617583,163.1083333,59.29,25.74166667,0.311083333,237.73742831666667 -2014-07-25 18:00:00,0.0,1007.737361,70.075,73.15166667,24.45,0.430666667,237.733652 -2014-07-25 19:00:00,0.0,1007.9783689999999,34.87583333,84.285,22.565,0.09675,237.7298256 -2014-07-25 20:00:00,0.0,1008.1205560000001,2.295,93.53333333,19.11083333,0.2295,237.72606601666666 -2014-07-25 21:00:00,0.0,1008.425,0.0,98.55,16.78166667,0.09916666699999999,237.72228971666667 -2014-07-25 22:00:00,0.0,1008.45,0.0,100.0,15.9125,0.138583333,237.71921520000004 -2014-07-25 23:00:00,0.0,1008.578889,0.0,100.0,15.32416667,0.08325,237.71614068333335 -2014-07-26 00:00:00,0.0,1008.7701109999999,0.0,100.0,14.78666667,0.0285,237.7126484 -2014-07-26 01:00:00,0.0,1008.639222,0.0,100.0,14.10833333,0.028999999999999998,237.70959060000004 -2014-07-26 02:00:00,0.0,1008.5117779999999,0.0,100.0,13.9675,0.035416667,237.70716773333334 -2014-07-26 03:00:00,0.0,1008.3024439999999,0.0,100.0,14.03166667,0.027000000000000003,237.70407650000004 -2014-07-26 04:00:00,0.0,1008.4274449999999,1.09825,100.0,13.435,0.052416667,237.70170378333333 -2014-07-26 05:00:00,0.0,1008.676445,32.34333333,100.0,13.34083333,0.028333333,237.69861254999998 -2014-07-26 06:00:00,0.0,1008.9739999999999,104.0575,99.96666667,15.005,0.323833333,237.6951537 -2014-07-26 07:00:00,0.0,1009.3298890000001,123.29166670000001,99.79166667,16.075,1.4616666669999998,237.69239665 -2014-07-26 08:00:00,0.0,1009.4416669999999,139.8416667,96.225,17.26416667,0.8683333329999999,237.68999056666667 -2014-07-26 09:00:00,0.0,1009.217667,353.425,83.34,19.88,1.301583333,237.6876178 -2014-07-26 10:00:00,0.0,1009.216667,569.7166667,73.29166667,22.4925,1.594916667,237.6841757 -2014-07-26 11:00:00,0.0,1009.051028,609.0583333,63.95,24.13166667,1.6750833330000001,237.68108448333336 -2014-07-26 12:00:00,0.0,1008.745167,502.3166666999999,59.975,25.17833333,1.0556666670000001,237.67765906666668 -2014-07-26 13:00:00,0.0,1008.61775,618.35,57.43083333,26.96333333,0.798083333,237.67281336666667 -2014-07-26 14:00:00,0.0,1008.55,263.84166669999996,59.09333333,26.38083333,0.40583333299999996,237.67008975 -2014-07-26 15:00:00,0.0,1008.465583,171.05833330000002,66.51583333,25.61833333,0.618916667,237.6662967166667 -2014-07-26 16:00:00,0.0,1008.741667,352.90833330000004,61.1075,25.76916667,0.7819166670000001,237.66427489999998 -2014-07-26 17:00:00,0.0,1008.829833,125.31666670000001,61.8075,25.4975,0.973833333,237.66151785 -2014-07-26 18:00:00,0.0,1009.10725,39.10416667,74.88583333,23.38,0.229333333,237.66016439999999 -2014-07-26 19:00:00,0.0,1009.259667,40.49083333,86.26666667,22.33916667,0.243833333,237.6573572 -2014-07-26 20:00:00,0.0,1010.002667,5.47525,91.95,20.6125,0.047083333,237.65496776666666 -2014-07-26 21:00:00,0.0,1010.341667,0.0,96.675,18.66166667,0.039583333,237.6528958 -2014-07-26 22:00:00,0.0,1010.404833,0.0,98.95,18.3775,0.178916667,237.65048965000003 -2014-07-26 23:00:00,0.0,1010.675,0.0,99.93333333,18.14416667,0.227833333,237.64743185 -2014-07-27 00:00:00,0.0,1010.461833,0.0,100.0,17.89583333,0.22325,237.6443239 -2014-07-27 01:00:00,0.0,1010.347583,0.0,99.99166667,17.02833333,0.175,237.6426362666667 -2014-07-27 02:00:00,0.0,1010.166667,0.0,100.0,16.94416667,0.08441666699999999,237.64091519999997 -2014-07-27 03:00:00,0.0,1010.373917,0.0,100.0,16.7175,0.057999999999999996,237.63951161666662 -2014-07-27 04:00:00,0.0,1010.640508,0.528666667,100.0,15.85083333,0.078,237.63775719999998 -2014-07-27 05:00:00,0.0,1011.145278,19.9735,100.0,15.705,0.318083333,237.6364204 -2014-07-27 06:00:00,0.0,1011.5262220000001,60.85833333,100.0,16.0275,0.297083333,237.63434846666664 -2014-07-27 07:00:00,0.0,1011.758333,174.9,89.325,18.53833333,0.7061666670000001,237.6329783333333 -2014-07-27 08:00:00,0.0,1011.7345,165.475,79.32166667,20.91416667,0.6144166670000001,237.6295362 -2014-07-27 09:00:00,0.0,1011.671444,344.3333333,71.1575,23.20083333,1.1585,237.6278652833333 -2014-07-27 10:00:00,0.0,1011.611889,565.3166667,65.935,24.51583333,1.49075,237.62509151666663 -2014-07-27 11:00:00,0.0,1011.522611,504.7666666999999,64.71666667,25.8475,0.872833333,237.622017 -2014-07-27 12:00:00,0.0,1011.475,477.6416666999999,64.8425,25.4675,1.5680833330000001,237.61889233333332 -2014-07-27 13:00:00,0.0,1011.2702220000001,652.2666667000001,60.48166667,25.5925,1.958833333,237.61615200000003 -2014-07-27 14:00:00,0.0,1010.827333,631.925,53.21666667,26.30333333,1.85975,237.61307748333334 -2014-07-27 15:00:00,0.0,1010.488056,552.2083332999999,53.80333333,26.60083333,2.078166667,237.60893355000005 -2014-07-27 16:00:00,0.0,1009.9595,424.53333330000004,54.49916667,26.94916667,1.181833333,237.6048564833333 -2014-07-27 17:00:00,0.0,1010.0786109999999,101.9658333,56.41166667,26.85,0.879,237.60171509999998 -2014-07-27 18:00:00,0.0,1010.4023890000001,49.22416667,63.7325,25.21333333,0.82475,237.5993256666667 -2014-07-27 19:00:00,0.0,1010.636944,35.98916667,70.475,24.09416667,0.52,237.59690288333334 -2014-07-27 20:00:00,0.0,1010.7868890000001,2.212166667,87.07833333,21.15833333,0.066083333,237.59419591666668 -2014-07-27 21:00:00,0.0,1010.8560359999999,0.0,94.75833333,19.19083333,0.08800000000000001,237.5907371333333 -2014-07-27 22:00:00,0.0,1010.6,0.0,97.63333333,18.47833333,0.10408333300000001,237.58903276666663 -2014-07-27 23:00:00,0.0,1010.7119439999999,0.0,99.85833333,17.21,0.04325,237.5879801 -2014-07-28 00:00:00,0.0,1010.290556,0.0,100.0,17.05583333,0.053583333,237.58589141666667 -2014-07-28 01:00:00,0.0,1009.7548609999999,0.0,100.0,16.3425,0.107416667,237.58386959999999 -2014-07-28 02:00:00,0.0,1009.242917,0.0,100.0,15.58333333,0.010916667,237.5828169 -2014-07-28 03:00:00,0.0,1009.0452779999999,0.0,100.0,14.77333333,0.016916667,237.5821151 -2014-07-28 04:00:00,0.0,1009.165417,0.424416667,100.0,14.925,0.008333333,237.57939148333332 -2014-07-28 05:00:00,0.0,1009.0643060000001,26.21183333,100.0,15.49333333,0.0,237.57733623333334 -2014-07-28 06:00:00,0.0,1009.120278,100.61,98.54166667,17.0125,0.09875,237.57700205000003 -2014-07-28 07:00:00,0.0,1008.9643060000001,199.2833333,90.04166667,19.38666667,0.932916667,237.57529770000005 -2014-07-28 08:00:00,0.0,1008.5775,214.525,82.5075,21.6275,0.930333333,237.5738941 -2014-07-28 09:00:00,0.0,1008.209583,338.8,76.205,23.65666667,1.572416667,237.5725573666667 -2014-07-28 10:00:00,0.0,1007.763194,542.875,71.40666667,24.6125,1.252333333,237.56978360000002 -2014-07-28 11:00:00,0.0,1007.3452779999999,616.2416667,66.51416667,25.5225,1.287166667,237.56565638333336 -2014-07-28 12:00:00,0.0,1006.757361,593.675,62.0875,27.14416667,1.080666667,237.56289933333335 -2014-07-28 13:00:00,0.0,1006.17625,549.9833332999999,56.725,27.50833333,1.0576666670000001,237.56121170000003 -2014-07-28 14:00:00,0.0,1005.5169999999999,564.9916667,50.69583333,28.25916667,1.2431666670000001,237.55810374999996 -2014-07-28 15:00:00,3.232076976,1005.294,304.6408333,58.86833333,27.25333333,2.140166667,237.55400996666665 -2014-07-28 16:00:00,34.54447145,1004.853667,90.475,95.7,21.96666667,0.82425,237.55158709999998 -2014-07-28 17:00:00,0.0,1005.27,68.29333333,97.05833333,22.15,0.372333333,237.55123619999998 -2014-07-28 18:00:00,0.0,1005.579667,17.63833333,93.95833333,20.48833333,0.577333333,237.55018354999996 -2014-07-28 19:00:00,0.0,1005.562,12.82466667,93.25,19.875,0.50975,237.5491309 -2014-07-28 20:00:00,0.0,1006.024333,1.741416667,95.86666667,19.50333333,0.3825,237.54779409999995 -2014-07-28 21:00:00,138.0445682,1006.329,0.0,98.725,18.95666667,1.156333333,237.54573885 -2014-07-28 22:00:00,7.310246447999999,1005.860667,0.0,100.0,18.565,0.322083333,237.54674144999998 -2014-07-28 23:00:00,343.332121,1005.882333,0.0,100.0,18.53333333,1.154666667,237.560159 -2014-07-29 00:00:00,0.0,1005.632333,0.0,100.0,18.63,0.37625,237.55980809999997 -2014-07-29 01:00:00,0.0,1005.393,0.0,100.0,18.665,0.206416667,237.55945719999997 -2014-07-29 02:00:00,2.4050227680000003,1005.147667,0.0,100.0,18.51416667,0.21358333300000001,237.5577862833333 -2014-07-29 03:00:00,0.0,1005.016667,0.0,100.0,18.575,0.38441666700000005,237.55745209999995 -2014-07-29 04:00:00,0.0,1004.853667,0.554916667,100.0,18.63,0.5691666670000001,237.55675029999998 -2014-07-29 05:00:00,0.0,1004.841667,14.91166667,100.0,18.63583333,0.604583333,237.55569759999995 -2014-07-29 06:00:00,0.0,1005.1533410000001,20.685,100.0,18.865,0.594583333,237.55745209999995 -2014-07-29 07:00:00,5.269510776000001,1005.311528,72.17583333,100.0,19.20166667,1.13025,237.55912301666663 -2014-07-29 08:00:00,0.0,1005.543083,152.6083333,98.91666667,20.20666667,1.9498333330000002,237.5587888333333 -2014-07-29 09:00:00,0.0,1005.483333,205.29166669999998,95.15,20.99166667,2.20525,237.55945719999997 -2014-07-29 10:00:00,0.0,1005.477306,168.33333330000002,93.61666667,21.56333333,1.6,237.55845464999993 -2014-07-29 11:00:00,0.0,1005.252833,181.7333333,90.05,22.14583333,2.391,237.55604849999997 -2014-07-29 12:00:00,0.0,1004.843083,225.45833330000002,88.0,23.09,2.7433333330000003,237.55745209999995 -2014-07-29 13:00:00,0.0,1004.066306,526.0916666999999,80.67833333,23.94583333,3.531416667,237.55710119999995 -2014-07-29 14:00:00,0.0,1003.5953890000001,470.9833333000001,76.81583333,24.6225,3.430333333,237.55534669999997 -2014-07-29 15:00:00,0.0,1003.1393609999999,395.28333330000004,76.97583333,24.8075,2.2005,237.55400996666665 -2014-07-29 16:00:00,0.0,1003.012056,142.4591667,80.3825,24.40166667,1.982083333,237.55299069999998 -2014-07-29 17:00:00,15.92119222,1003.4531939999999,22.90008333,93.26666667,22.60083333,1.415666667,237.54948178333333 -2014-07-29 18:00:00,0.0,1004.154083,6.303166667,99.2,19.5875,0.9388333329999999,238.00725066666666 -2014-07-29 19:00:00,0.0,1004.366667,7.34725,100.0,19.99583333,1.8030000000000002,238.17723471666667 -2014-07-29 20:00:00,0.0,1004.177833,0.275166667,100.0,19.24416667,0.318083333,238.07118058333333 -2014-07-29 21:00:00,0.0,1004.1439720000001,0.0,100.0,18.63916667,0.22058333300000002,238.0066157 -2014-07-29 22:00:00,0.0,1004.234222,0.0,100.0,18.4925,0.31,237.9534131833333 -2014-07-29 23:00:00,0.0,1004.1135960000001,0.0,100.0,18.67916667,0.369666667,237.90534043333332 -2014-07-30 00:00:00,0.0,1003.645444,0.0,100.0,18.79083333,0.415416667,237.87031766666664 -2014-07-30 01:00:00,82.16559156,1003.6378890000001,0.0,100.0,18.62083333,0.14425,237.84558785 -2014-07-30 02:00:00,46.65568541,1003.810611,0.0,100.0,18.49833333,0.26725,237.8339247166667 -2014-07-30 03:00:00,4.854706536,1004.0757779999999,0.0,100.0,18.495,0.132083333,237.83288873333333 -2014-07-30 04:00:00,2.6216142000000002,1004.278778,0.06575,100.0,18.50333333,0.58225,237.83153528333332 -2014-07-30 05:00:00,0.0,1004.4363890000001,6.594416667000001,100.0,18.55333333,0.412083333,237.8253027333333 -2014-07-30 06:00:00,0.0,1004.7235,44.10583333,100.0,18.7225,0.60025,237.81674756666666 -2014-07-30 07:00:00,0.0,1005.2841109999999,123.8175,99.28333333,19.60666667,1.3571666669999998,237.80779135 -2014-07-30 08:00:00,0.0,1005.8257779999999,141.475,96.81666667,19.92,2.04975,237.79921945 -2014-07-30 09:00:00,2.7688687919999997,1005.9106109999999,151.3458333,97.23333333,19.66666667,1.49675,237.79031336666665 -2014-07-30 10:00:00,0.0,1006.4598890000001,303.4583333,91.45,20.88833333,3.004833333,237.78342911666667 -2014-07-30 11:00:00,0.0,1006.853056,170.2483333,92.225,20.2425,2.681833333,237.77657829999998 -2014-07-30 12:00:00,0.0,1007.275778,178.79166669999998,92.275,19.75416667,2.494166667,237.7686748 -2014-07-30 13:00:00,0.0,1007.708333,224.35,86.90833333,20.76833333,3.2624166669999997,237.76143966666663 -2014-07-30 14:00:00,0.0,1007.846222,78.845,83.79166667,21.23666667,2.789166667,237.7563099 -2014-07-30 15:00:00,0.0,1007.9735,109.63583329999999,80.31083333,21.29583333,2.6470833330000003,237.75114669999996 -2014-07-30 16:00:00,0.0,1007.983333,73.585,78.69833333,21.4175,1.8535,237.74392824999998 -2014-07-30 17:00:00,0.0,1008.115083,55.29333333,88.26,21.41166667,0.846666667,237.73878176666668 -2014-07-30 18:00:00,0.0,1008.6051669999999,39.14333333,76.49916667,21.3975,1.3175,237.73432036666668 -2014-07-30 19:00:00,0.0,1009.227917,32.54916667,73.91416667,21.17416667,1.167,237.72914051666666 -2014-07-30 20:00:00,0.0,1009.769583,1.875,94.66666667,18.095,0.31125,237.72436168333334 -2014-07-30 21:00:00,0.0,1010.098417,0.0,98.65,16.7925,0.10300000000000001,237.72056865000002 -2014-07-30 22:00:00,0.0,1010.340083,0.0,99.25,17.71333333,0.09091666699999999,237.71680904999997 -2014-07-30 23:00:00,0.0,1010.483333,0.0,96.03333333,17.5975,0.07025,237.71299929999998 -2014-07-31 00:00:00,0.0,1010.62725,0.0,93.86666667,17.5575,0.24875,237.70888879999998 -2014-07-31 01:00:00,0.0,1010.875,0.0,94.49166667,17.02666667,0.18575,237.70410993333334 -2014-07-31 02:00:00,0.0,1010.833333,0.0,96.7,16.20833333,0.315166667,237.70170378333333 -2014-07-31 03:00:00,0.0,1010.977917,0.0,98.86666667,15.87583333,0.29225,237.69861254999998 -2014-07-31 04:00:00,0.0,1011.216667,0.46533333299999996,99.98333333,15.50833333,0.131833333,237.69480280000002 -2014-07-31 05:00:00,0.0,1011.684667,20.91008333,100.0,15.00583333,0.227833333,237.69069233333335 -2014-07-31 06:00:00,0.0,1012.2589999999999,103.0516667,97.51666667,16.06666667,0.7154166670000001,237.687952 -2014-07-31 07:00:00,0.0,1012.667333,197.025,90.90833333,17.43916667,0.676416667,237.68552918333333 -2014-07-31 08:00:00,0.0,1012.634959,176.58333330000002,86.21666667,18.74833333,1.17475,237.6835073 -2014-07-31 09:00:00,0.0,1012.527222,333.6666667,79.50583333,19.99416667,0.7516666670000001,237.68106780000002 -2014-07-31 10:00:00,0.0,1012.280556,470.875,72.14166667,21.305,0.9208333329999999,237.67730816666668 -2014-07-31 11:00:00,0.0,1011.9077779999999,606.9583332999999,67.00916667,22.07333333,1.043166667,237.6735151666667 -2014-07-31 12:00:00,0.0,1011.708333,656.4,62.23083333,22.96083333,1.235666667,237.66973885000002 -2014-07-31 13:00:00,0.0,1011.322222,659.8916667000001,58.76083333,23.75333333,1.19075,237.66699851666667 -2014-07-31 14:00:00,0.0,1010.8744439999999,624.8916667000001,54.8675,24.56333333,0.89275,237.66357309999998 -2014-07-31 15:00:00,0.0,1010.5138890000001,540.6833333,54.03,25.14083333,0.874083333,237.65946259999996 -2014-07-31 16:00:00,0.0,1010.043333,449.40833330000004,49.75583333,25.53916667,0.862083333,237.6559870333333 -2014-07-31 17:00:00,0.0,1009.676667,104.2366667,61.78333333,26.16416667,0.354,237.65254490000004 -2014-07-31 18:00:00,0.0,1009.6144449999999,53.715,63.75833333,25.9,0.501166667,237.65017218333332 -2014-07-31 19:00:00,0.0,1009.790556,20.73716667,79.64666667,23.265,0.196916667,237.6460616833333 -2014-07-31 20:00:00,0.0,1009.9955560000001,0.951666667,93.20833333,18.14166667,0.11825,237.643973 -2014-07-31 21:00:00,0.0,1010.025,0.0,96.95,15.91416667,0.08583333300000001,237.64196790000003 -2014-07-31 22:00:00,0.0,1010.016667,0.0,99.375,14.695,0.046166667,237.63986249999996 -2014-07-31 23:00:00,0.0,1009.893333,0.0,100.0,14.02833333,0.026916667000000002,237.63810808333332 -2014-01-08 00:00:00,0.0,1009.7,0.0,100.0,13.76333333,0.00041666699999999996,238.0808026666667 -2014-01-08 01:00:00,0.0,1009.6622169999999,0.0,100.0,13.02916667,0.00175,238.07954933333335 -2014-01-08 02:00:00,0.0,1009.47675,0.0,100.0,12.41416667,0.039666667,238.078249 -2014-01-08 03:00:00,0.0,1009.164472,0.0,100.0,11.85583333,0.0,238.07693300000003 -2014-01-08 04:00:00,0.0,1008.970611,0.56725,100.0,11.5075,0.0,238.075617 -2014-01-08 05:00:00,0.0,1009.02325,22.01825,100.0,11.49,0.0,238.074348 -2014-01-08 06:00:00,0.0,1009.189472,123.72666670000001,98.54166667,13.96333333,0.0,238.073079 -2014-01-08 07:00:00,0.0,1009.035083,213.1525,89.63333333,16.14666667,0.39041666700000005,238.072421 -2014-01-08 08:00:00,0.0,1008.8956109999999,180.79166669999998,82.8075,18.77,0.731166667,238.0708073333333 -2014-01-08 09:00:00,0.0,1008.474556,335.775,74.51166667,21.4375,0.97925,238.068896 -2014-01-08 10:00:00,0.0,1008.3,534.375,66.58833333,24.15666667,1.26275,238.06823799999998 -2014-01-08 11:00:00,0.0,1007.865778,590.8666667,60.3975,25.46333333,1.900166667,238.06664 -2014-01-08 12:00:00,0.0,1007.3890279999999,583.9583332999999,58.62666667,26.28583333,2.1429166669999997,238.06570000000002 -2014-01-08 13:00:00,0.0,1007.0144720000001,647.5166667000001,52.89583333,27.075,1.791916667,238.065371 -2014-01-08 14:00:00,0.0,1006.691222,695.85,47.025,27.375,1.906,238.06438399999993 -2014-01-08 15:00:00,0.0,1006.324556,558.5916667,49.69416667,27.21833333,1.8521666669999999,238.06341266666664 -2014-01-08 16:00:00,0.0,1006.00175,469.075,48.24833333,26.985,1.57725,238.06184600000003 -2014-01-08 17:00:00,0.0,1005.760167,172.8916667,50.02833333,27.29916667,1.643583333,238.06085900000002 -2014-01-08 18:00:00,0.0,1005.627167,64.44333333,60.92416667,26.18916667,1.789333333,238.060201 -2014-01-08 19:00:00,0.0,1005.839833,22.73333333,82.8775,24.37833333,1.070333333,238.05924533333334 -2014-01-08 20:00:00,0.0,1006.1210000000001,1.2864166670000001,91.44166667,18.8875,0.005416666999999999,238.05799199999998 -2014-01-08 21:00:00,0.0,1006.029,0.0,95.925,16.755,0.01425,238.05797633333336 -2014-01-08 22:00:00,0.0,1006.046,0.0,99.025,15.45166667,0.0335,238.05601800000002 -2014-01-08 23:00:00,0.0,1006.029,0.0,99.9,14.53916667,0.021333333,238.05634700000004 -2014-02-08 00:00:00,0.0,1005.6725,0.0,100.0,13.89416667,0.011333333000000001,238.04196319999997 -2014-02-08 01:00:00,0.0,1005.266333,0.0,100.0,13.13833333,0.08591666699999999,238.04244659999995 -2014-02-08 02:00:00,0.0,1004.8935,0.0,100.0,12.4875,0.0295,238.04268829999998 -2014-02-08 03:00:00,0.0,1004.5583330000001,0.0,100.0,12.27916667,0.003333333,238.04317169999993 -2014-02-08 04:00:00,0.0,1004.529,1.1045,100.0,11.735,0.0,238.04268829999998 -2014-02-08 05:00:00,0.0,1004.679333,22.87258333,100.0,11.93833333,0.0,238.04317169999993 -2014-02-08 06:00:00,0.0,1004.451833,87.66916667,100.0,13.61666667,0.0,238.04393309999992 -2014-02-08 07:00:00,0.0,1004.516667,168.8,97.34166667,16.32833333,0.193083333,238.0444407 -2014-02-08 08:00:00,0.0,1004.4188330000001,182.9,86.81666667,18.75583333,0.578416667,238.04493619999997 -2014-02-08 09:00:00,0.0,1004.2725,303.475,73.6975,21.7,1.035833333,238.0451779 -2014-02-08 10:00:00,0.0,1004.037632,378.3833333,69.1425,23.74833333,1.468666667,238.04566129999998 -2014-02-08 11:00:00,0.0,1003.981194,330.9583333,67.165,24.43,1.674833333,238.04614469999999 -2014-02-08 12:00:00,0.0,1003.962389,279.4333333,70.63666667,24.5875,1.922166667,238.04590299999998 -2014-02-08 13:00:00,0.0,1003.716667,216.4083333,70.93,24.32666667,2.427083333,238.04614469999999 -2014-02-08 14:00:00,0.0,1003.5328890000001,335.28333330000004,65.63,25.4675,1.6753333330000002,238.04541959999997 -2014-02-08 15:00:00,0.0,1002.964528,518.525,63.33666667,26.01,1.612333333,238.0456613 -2014-02-08 16:00:00,0.0,1003.043583,384.45,61.4025,26.46166667,1.8859166669999998,238.04541959999997 -2014-02-08 17:00:00,0.0,1002.83975,141.6333333,63.27166667,26.2875,2.4986666669999997,238.04566129999998 -2014-02-08 18:00:00,0.0,1003.2668890000001,27.04166667,76.37,24.8275,1.70275,238.04614469999999 -2014-02-08 19:00:00,0.0,1003.587833,10.3285,87.01666667,21.72916667,0.27025,238.04614469999999 -2014-02-08 20:00:00,0.0,1003.991667,0.9600833329999999,96.1,20.31916667,0.20425,238.04614469999999 -2014-02-08 21:00:00,0.0,1004.133333,0.0,98.8,18.71666667,0.15558333300000002,238.0469061 -2014-02-08 22:00:00,0.0,1004.054278,0.0,99.975,17.27333333,0.07933333299999999,238.0471599 -2014-02-08 23:00:00,0.0,1004.206417,0.0,100.0,16.62666667,0.04475,238.04614469999999 -2014-03-08 00:00:00,0.0,1004.239528,0.0,100.0,16.08666667,0.16699999999999998,238.00597319999997 -2014-03-08 01:00:00,0.0,1004.583556,0.0,100.0,15.81333333,0.0275,238.00571939999998 -2014-03-08 02:00:00,0.0,1004.8145279999999,0.0,100.0,15.94666667,0.021833332999999996,238.00546559999998 -2014-03-08 03:00:00,0.0,1004.991889,0.0,100.0,16.37416667,0.074583333,238.0047042 -2014-03-08 04:00:00,0.0,1005.498111,0.077916667,100.0,16.07416667,0.064166667,238.00546559999998 -2014-03-08 05:00:00,0.0,1005.806333,4.271416667,100.0,16.3875,0.149083333,238.00445040000002 -2014-03-08 06:00:00,0.0,1006.189667,75.0575,98.9,17.45083333,0.15833333300000002,238.00445040000002 -2014-03-08 07:00:00,0.0,1006.8168890000001,147.1391667,89.59166667,18.7725,0.205833333,238.00420870000002 -2014-03-08 08:00:00,0.0,1007.2313330000001,206.8,83.615,21.03583333,0.5785,238.003967 -2014-03-08 09:00:00,0.0,1007.6063330000001,240.0333333,77.86166667,22.16166667,0.701333333,238.00446250000002 -2014-03-08 10:00:00,0.0,1007.785444,308.3,73.0175,23.3525,0.72225,238.004958 -2014-03-08 11:00:00,0.0,1007.612333,280.125,68.055,24.26666667,0.7194166670000001,238.00521179999998 -2014-03-08 12:00:00,0.0,1007.383333,514.4583333,61.36666667,25.065,0.8634166670000001,238.00571939999998 -2014-03-08 13:00:00,0.0,1007.504222,517.8833333,57.66333333,25.37666667,0.99775,238.00546559999998 -2014-03-08 14:00:00,0.0,1007.387444,399.9333333,57.57083333,25.31166667,0.711583333,238.00571939999998 -2014-03-08 15:00:00,0.0,1007.15,376.2083333,54.03083333,26.15083333,0.46975,238.00597319999997 -2014-03-08 16:00:00,0.0,1007.2,217.1583333,65.09916667,24.68583333,1.385,238.00571939999998 -2014-03-08 17:00:00,0.0,1007.4730000000001,137.2666667,70.4325,23.77583333,1.33725,238.00521179999998 -2014-03-08 18:00:00,0.0,1007.737556,89.79583333,73.6975,23.73,1.01625,238.00420870000002 -2014-03-08 19:00:00,0.0,1008.0250689999999,30.22583333,85.07583333,22.27333333,0.9520000000000001,238.003967 -2014-03-08 20:00:00,0.0,1008.664583,1.1545,95.625,19.84916667,0.08800000000000001,238.00420870000002 -2014-03-08 21:00:00,0.0,1008.6520830000001,0.0,99.88333333,17.82583333,0.059166667,238.00372529999996 -2014-03-08 22:00:00,0.0,1008.63125,0.0,100.0,17.31916667,0.00925,238.00300019999995 -2014-03-08 23:00:00,0.0,1009.0895830000001,0.0,100.0,16.49833333,0.073916667,238.0032419 -2014-04-08 00:00:00,0.0,1009.116667,0.0,100.0,16.14416667,0.026333332999999997,237.92007809999998 -2014-04-08 01:00:00,0.0,1009.079167,0.0,100.0,15.5925,0.036166667,237.92007809999998 -2014-04-08 02:00:00,0.0,1009.029167,0.0,100.0,15.8175,0.019166667,237.9194097 -2014-04-08 03:00:00,0.0,1009.24375,0.0,100.0,15.06916667,0.049583333,237.9187413 -2014-04-08 04:00:00,0.0,1009.572917,0.1995,100.0,14.29416667,0.030583332999999997,237.9180729 -2014-04-08 05:00:00,0.0,1009.991667,21.40116667,100.0,13.9325,0.025,237.9180729 -2014-04-08 06:00:00,0.0,1010.666667,132.28333329999998,99.41666667,16.08166667,0.21725,237.9180729 -2014-04-08 07:00:00,0.0,1011.25625,144.035,94.21666667,18.41166667,0.42125,237.91737113333332 -2014-04-08 08:00:00,0.0,1011.45625,221.4916667,87.55,19.0725,1.139916667,237.91702024999998 -2014-04-08 09:00:00,0.0,1011.270833,309.3916667,80.71583333,20.6075,1.1995833329999999,237.91596759999996 -2014-04-08 10:00:00,0.0,1011.454167,505.70833330000005,72.35166667,23.29333333,0.6858333329999999,237.91429659999997 -2014-04-08 11:00:00,0.0,1011.077083,612.525,68.37916667,23.485,0.846833333,237.91361151666663 -2014-04-08 12:00:00,0.0,1010.795799,383.875,68.055,23.38166667,0.83375,237.9132606333333 -2014-04-08 13:00:00,0.0,1010.887444,377.6416667,69.42166667,23.225,0.7566666670000001,237.91396239999997 -2014-04-08 14:00:00,0.0,1010.841778,430.21666669999996,64.19916667,24.4725,0.922083333,237.91220798333333 -2014-04-08 15:00:00,0.0,1010.9665560000001,167.2533333,62.52833333,24.28833333,0.934916667,237.9118571 -2014-04-08 16:00:00,2.414904624,1011.0666669999999,142.0675,71.7925,22.335,0.37341666700000004,237.9118571 -2014-04-08 17:00:00,4.9474217519999995,1011.4332220000001,114.16166670000001,71.64833333,22.3,0.365833333,237.91150619999996 -2014-04-08 18:00:00,0.0,1011.762333,36.65916667,82.6175,20.89833333,0.174416667,237.9108044 -2014-04-08 19:00:00,26.72813515,1012.270778,13.62525,97.65,19.14083333,0.91075,237.9090833333333 -2014-04-08 20:00:00,0.0,1012.635278,0.68025,99.99166667,17.445,0.08625,237.90772988333333 -2014-04-08 21:00:00,0.0,1012.866667,0.0,100.0,16.995,0.354333333,237.90739569999997 -2014-04-08 22:00:00,0.0,1013.0915560000001,0.0,100.0,16.9725,0.326333333,237.9070448 -2014-04-08 23:00:00,0.0,1013.083333,0.0,99.79166667,16.79833333,0.6455,237.90669390000002 -2014-05-08 00:00:00,0.0,1013.083333,0.0,99.825,16.6125,0.34675,237.81778356666666 -2014-05-08 01:00:00,22.70307341,1013.2729439999999,0.0,99.06666667,16.52,0.293416667,237.81912030000004 -2014-05-08 02:00:00,10.24815912,1013.404,0.0,98.13333333,16.2,0.7495,237.81912030000004 -2014-05-08 03:00:00,95.94857215,1013.752056,0.0,100.0,15.92833333,0.435666667,237.81912030000004 -2014-05-08 04:00:00,2.471229648,1013.9832220000001,0.162916667,100.0,15.7625,0.33566666700000003,237.82052383333328 -2014-05-08 05:00:00,0.0,1014.339424,8.60975,100.0,14.8175,0.055166667,237.82122559999996 -2014-05-08 06:00:00,0.0,1014.543694,52.18416667,100.0,15.11583333,0.22875,237.82122559999996 -2014-05-08 07:00:00,0.0,1014.6290560000001,145.68333330000002,98.19166667,16.6075,0.78225,237.82122559999996 -2014-05-08 08:00:00,0.0,1014.989417,185.6416667,90.01666667,17.68666667,1.208083333,237.82122559999996 -2014-05-08 09:00:00,0.0,1015.3040550000001,293.7666667,87.125,18.24333333,1.504833333,237.82087471666668 -2014-05-08 10:00:00,0.0,1015.214639,440.025,79.225,19.42583333,1.755,237.8187861166667 -2014-05-08 11:00:00,0.0,1015.0959439999999,367.0083333,75.3325,20.11833333,1.7990833330000002,237.8187861166667 -2014-05-08 12:00:00,0.0,1015.185361,246.4666667,72.38083333,20.56083333,2.1595,237.8171152 -2014-05-08 13:00:00,0.0,1015.0313060000001,161.43333330000002,72.24666667,20.76583333,1.374333333,237.8171152 -2014-05-08 14:00:00,0.0,1014.975,305.90833330000004,66.02333333,21.895,1.125916667,237.81571160000001 -2014-05-08 15:00:00,0.0,1014.887611,373.5166667,62.355,21.84,0.756583333,237.8153607 -2014-05-08 16:00:00,0.0,1014.52725,306.28333330000004,59.10166667,22.4175,1.24025,237.8150098 -2014-05-08 17:00:00,0.0,1014.5686939999999,102.5291667,71.4675,21.43833333,1.414166667,237.8153607 -2014-05-08 18:00:00,0.0,1014.666667,80.74416667,70.64166667,21.15666667,0.779666667,237.81676430000002 -2014-05-08 19:00:00,0.0,1015.057889,21.44191667,88.35833333,19.13916667,0.049,237.8150098 -2014-05-08 20:00:00,0.0,1015.4333330000001,0.9089166670000001,96.05,16.28583333,0.028833333,237.8164134 -2014-05-08 21:00:00,0.0,1015.5040140000001,0.0,99.0,14.29416667,0.00175,237.81915371666665 -2014-05-08 22:00:00,0.0,1015.6460000000001,0.0,100.0,13.25333333,0.061083333,237.8246343333333 -2014-05-08 23:00:00,0.0,1015.358333,0.0,100.0,12.63166667,0.02925,237.82700710000003 -2014-06-08 00:00:00,0.0,1015.123333,0.0,100.0,12.73833333,0.00125,237.67939679999998 -2014-06-08 01:00:00,0.0,1015.070667,0.0,100.0,11.76,0.0275,237.68106780000002 -2014-06-08 02:00:00,0.0,1015.079333,0.0,100.0,11.0425,0.0,237.6831731 -2014-06-08 03:00:00,0.0,1014.710667,0.0,100.0,10.58916667,0.0,237.6848441 -2014-06-08 04:00:00,0.0,1014.570667,0.25125,100.0,10.18833333,0.0,237.68623095 -2014-06-08 05:00:00,0.0,1014.818667,14.7575,100.0,10.9825,0.000166667,237.6872836 -2014-06-08 06:00:00,0.0,1014.652333,56.56166667,100.0,12.54666667,0.083083333,237.6886204 -2014-06-08 07:00:00,0.0,1014.367,120.73416670000002,100.0,13.09166667,0.329333333,237.68930548333336 -2014-06-08 08:00:00,0.0,1014.196,182.1166667,100.0,14.4525,0.520333333,237.687952 -2014-06-08 09:00:00,0.0,1013.84,316.34166669999996,90.59166667,17.17666667,0.754916667,237.68212044999999 -2014-06-08 10:00:00,0.0,1013.225333,462.25833330000006,73.83583333,21.30833333,1.138583333,237.67420025 -2014-06-08 11:00:00,0.0,1012.815,453.4333333000001,64.3225,23.20833333,1.86925,237.66940466666665 -2014-06-08 12:00:00,0.0,1012.452333,286.5,64.15083333,22.74666667,1.6008333330000002,237.66664761666667 -2014-06-08 13:00:00,0.0,1012.129667,319.53333330000004,60.05666667,22.85916667,1.4703333330000001,237.66357309999998 -2014-06-08 14:00:00,0.0,1011.619041,417.9916667,55.6625,23.61666667,0.70525,237.66151785 -2014-06-08 15:00:00,0.0,1011.177417,284.7583333,55.39583333,24.3025,1.8575,237.65946259999996 -2014-06-08 16:00:00,0.0,1010.7861939999999,261.5583333,59.18583333,23.66166667,1.9226666669999999,237.6570063 -2014-06-08 17:00:00,0.0,1010.239694,169.7841667,57.92083333,24.22,1.6245833330000001,237.65496776666666 -2014-06-08 18:00:00,0.0,1010.251972,57.36083333,74.61,22.42,0.6709166670000001,237.65254490000004 -2014-06-08 19:00:00,0.0,1010.283333,18.5575,86.50833333,19.7225,0.113,237.652194 -2014-06-08 20:00:00,0.0,1011.0535,0.36475,86.00333333,17.54333333,0.144666667,237.65394849999998 -2014-06-08 21:00:00,0.0,1011.1980279999999,0.0,81.66666667,18.35333333,0.5035,237.65563613333333 -2014-06-08 22:00:00,0.0,1010.866667,0.0,83.66666667,17.57583333,0.31775,237.6563045 -2014-06-08 23:00:00,0.0,1010.908333,0.0,85.375,17.2025,0.27675,237.6591117 -2014-07-08 00:00:00,0.0,1010.796056,0.0,94.10833333,16.27416667,0.032666667,237.5477941 -2014-07-08 01:00:00,0.0,1010.5004439999999,0.0,97.91666667,15.96166667,0.036000000000000004,237.54949846666668 -2014-07-08 02:00:00,2.5153073040000002,1010.376972,0.0,97.425,16.05666667,0.605916667,237.55297398333332 -2014-07-08 03:00:00,14.76572162,1010.2671109999999,0.0,99.8,15.46083333,0.49625,237.5732090166667 -2014-07-08 04:00:00,0.0,1010.1936390000001,0.020666667,100.0,15.39916667,0.213333333,237.59727041666667 -2014-07-08 05:00:00,0.0,1010.297583,5.042833333,100.0,15.44,0.089333333,237.60656083333333 -2014-07-08 06:00:00,0.0,1010.595611,38.0325,100.0,15.80916667,0.06575,237.6106546166667 -2014-07-08 07:00:00,0.0,1010.7058609999999,118.685,97.25,16.89166667,0.336083333,237.6127433 -2014-07-08 08:00:00,0.0,1011.164167,115.48083329999999,92.79166667,17.94416667,0.34933333299999997,237.6147651166667 -2014-07-08 09:00:00,0.0,1011.3975,157.41666669999998,91.06666667,18.76666667,0.329416667,237.6158011 -2014-07-08 10:00:00,0.0,1011.369167,369.0083333,82.4475,20.24,0.740833333,237.61720469999997 -2014-07-08 11:00:00,0.0,1011.0775,534.1583333000001,72.5825,22.15,0.6848333329999999,237.61720469999997 -2014-07-08 12:00:00,0.0,1010.796111,536.625,66.235,23.53666667,0.671083333,237.61787306666665 -2014-07-08 13:00:00,0.0,1010.498056,406.225,64.285,24.18833333,0.555666667,237.61920980000005 -2014-07-08 14:00:00,0.0,1010.598056,442.75,60.14833333,24.4625,0.6045,237.61956070000005 -2014-07-08 15:00:00,0.0,1010.626944,419.50833330000006,56.5125,23.63666667,1.149916667,237.61991160000002 -2014-07-08 16:00:00,0.0,1010.3525,433.15833330000004,55.4675,24.32083333,2.06025,237.6202625 -2014-07-08 17:00:00,0.0,1010.3269439999999,77.9875,59.16,24.7625,0.678583333,237.6202625 -2014-07-08 18:00:00,0.0,1010.453889,36.94166667,62.73166667,24.44916667,0.456666667,237.6209643 -2014-07-08 19:00:00,0.0,1010.8911109999999,15.34908333,81.72666667,21.49166667,0.19191666699999999,237.6209643 -2014-07-08 20:00:00,0.0,1011.363611,0.523416667,93.175,17.53583333,0.308916667,237.6213152 -2014-07-08 21:00:00,0.0,1011.6936109999999,0.0,97.24166667,15.5725,0.265,237.6213152 -2014-07-08 22:00:00,0.0,1011.9,0.0,99.7,14.77333333,0.1,237.6254591333333 -2014-07-08 23:00:00,0.0,1011.8205,0.0,100.0,14.04583333,0.015666667,237.63469936666664 -2014-08-08 00:00:00,0.0,1011.866667,0.0,100.0,12.90583333,0.008333333,237.41965020000006 -2014-08-08 01:00:00,0.0,1011.87375,0.0,100.0,12.38333333,0.0019166670000000002,237.42070290000004 -2014-08-08 02:00:00,0.0,1011.633333,0.0,100.0,11.88083333,0.00033333300000000006,237.420352 -2014-08-08 03:00:00,0.0,1011.548083,0.0,100.0,11.43166667,0.0,237.4207029 -2014-08-08 04:00:00,0.0,1011.362833,0.136666667,100.0,11.04833333,0.0,237.41965020000006 -2014-08-08 05:00:00,0.0,1011.353833,12.76083333,100.0,11.07083333,0.004166667,237.41789578333336 -2014-08-08 06:00:00,0.0,1011.418583,85.29333333,99.99166667,13.39583333,0.0,237.41824665000004 -2014-08-08 07:00:00,0.0,1011.260917,218.95833330000002,93.89166667,15.64083333,0.6848333329999999,237.41859753333338 -2014-08-08 08:00:00,0.0,1010.977583,169.6166667,87.46666667,18.67166667,0.631166667,237.4178957666667 -2014-08-08 09:00:00,0.0,1010.640417,322.8541667,76.05583333,21.37,1.044916667,237.41719400000002 -2014-08-08 10:00:00,0.0,1010.26925,549.8,63.6125,24.11333333,1.887583333,237.41552300000004 -2014-08-08 11:00:00,19.17090818,1009.67825,614.925,58.29583333,25.17916667,2.344166667,237.4131002 -2014-08-08 12:00:00,0.0,1009.04875,650.7083332999999,55.6425,25.77583333,2.220583333,237.41002570000003 -2014-08-08 13:00:00,0.0,1008.328917,627.175,52.14583333,26.09436558,2.1368333330000002,237.40897300000003 -2014-08-08 14:00:00,0.0,1007.5385,419.0583333,52.07583333,26.68254019,2.1621666669999997,237.40728536666668 -2014-08-08 15:00:00,0.0,1006.89875,189.425,53.93416667,26.46333333,2.1823333330000003,237.40451159999998 -2014-08-08 16:00:00,0.0,1006.5128699999999,102.2583333,69.20166667,25.15666667,1.33025,237.4034589 -2014-08-08 17:00:00,3.1086298560000003,1006.355333,55.58833333,78.26083333,23.98166667,0.8989166670000001,237.4027571 -2014-08-08 18:00:00,2.967691344,1005.634889,50.80916667,97.70833333,21.045,0.261916667,237.4034589 -2014-08-08 19:00:00,0.0,1005.031444,13.58583333,99.90833333,20.6125,0.15716666699999998,237.4041607 -2014-08-08 20:00:00,0.0,1004.7860000000001,0.325916667,100.0,18.535,0.135333333,237.40451159999998 -2014-08-08 21:00:00,0.0,1004.440556,0.0,100.0,17.18083333,0.02725,237.40310799999997 -2014-08-08 22:00:00,0.0,1003.793222,0.0,100.0,16.375,0.005333333000000001,237.4045116 -2014-08-08 23:00:00,0.0,1003.2091109999999,0.0,100.0,15.92583333,0.006999999999999999,237.4041607 -2014-09-08 00:00:00,0.0,1002.570111,0.0,100.0,15.24,0.0,237.7931439 -2014-09-08 01:00:00,0.0,1002.131444,0.0,100.0,15.635,0.37458333299999996,237.79488163333335 -2014-09-08 02:00:00,27.42198096,1001.7878890000001,0.0,99.85833333,18.07083333,1.27275,237.7934781 -2014-09-08 03:00:00,0.0,1002.080667,0.0,100.0,17.50166667,0.33633333299999996,237.7931439 -2014-09-08 04:00:00,2.874298488,1002.125,0.094416667,96.0,18.81833333,1.63,237.7924755 -2014-09-08 05:00:00,0.0,1003.0457779999999,19.32358333,93.15,19.6225,1.5481666669999998,237.7928097 -2014-09-08 06:00:00,0.0,1003.919667,58.14,90.21666667,19.61333333,0.8845833329999999,237.7924755 -2014-09-08 07:00:00,0.0,1004.529889,167.0458333,86.88333333,19.905,1.4921666669999998,237.7921413 -2014-09-08 08:00:00,0.0,1005.117,108.63916670000002,84.7,20.45333333,2.554416667,237.7934781 -2014-09-08 09:00:00,0.0,1006.059401,204.8666667,80.02916667,21.47583333,2.0878333330000003,237.7934781 -2014-09-08 10:00:00,2.64410304,1007.3538060000001,290.25,79.6325,21.0925,1.22125,237.7931439 -2014-09-08 11:00:00,0.0,1008.4648890000001,532.6916666999999,70.71333333,21.76833333,1.770666667,237.7914729 -2014-09-08 12:00:00,0.0,1009.0768609999999,669.5,63.31666667,21.925,2.243666667,237.79042024999998 -2014-09-08 13:00:00,0.0,1009.6148890000001,451.25,61.795,22.59333333,2.4135,237.78903339999997 -2014-09-08 14:00:00,0.0,1009.869417,488.5,57.16,22.41,1.047166667,237.78736239999998 -2014-09-08 15:00:00,0.0,1009.884306,428.21666669999996,55.69833333,23.115,1.007916667,237.78701151666664 -2014-09-08 16:00:00,0.0,1009.736083,364.0416667,52.60833333,23.60833333,0.9470000000000001,237.7852571 -2014-09-08 17:00:00,0.0,1009.6462779999999,117.6375,57.725,23.41416667,0.392666667,237.78425454999999 -2014-09-08 18:00:00,0.0,1009.45,50.99833333,65.825,22.8625,0.062166667,237.78325199999998 -2014-09-08 19:00:00,0.0,1009.634305,22.14375,84.2175,20.61583333,0.021333333,237.78325199999998 -2014-09-08 20:00:00,0.0,1010.0351939999999,0.317916667,93.25,16.20583333,0.053916667,237.78184840000003 -2014-09-08 21:00:00,0.0,1009.7805,0.0,97.01666667,14.35666667,0.032416667,237.78184840000003 -2014-09-08 22:00:00,0.0,1009.4351939999999,0.0,99.94166667,12.8925,0.10133333300000001,237.78114660000003 -2014-09-08 23:00:00,0.0,1009.13325,0.0,100.0,12.385,0.058583333,237.78114660000003 -2014-10-08 00:00:00,0.0,1008.607361,0.0,100.0,12.45833333,0.0205,238.0018525 -2014-10-08 01:00:00,0.0,1008.428735,0.0,100.0,13.22083333,0.015333333000000001,238.00220249999998 -2014-10-08 02:00:00,0.0,1008.1436669999999,0.0,100.0,14.14916667,0.124666667,238.00220249999998 -2014-10-08 03:00:00,4.884796752,1007.455667,0.0,99.46666667,14.57166667,0.232083333,238.00360249999997 -2014-10-08 04:00:00,4.96949388,1007.004667,0.033833333,99.89166667,14.79,0.49458333299999996,238.0039525 -2014-10-08 05:00:00,0.0,1006.739833,5.007666667,100.0,14.74583333,0.319583333,238.0032525 -2014-10-08 06:00:00,0.0,1006.5575,29.10833333,100.0,15.035,0.036666667,238.0039525 -2014-10-08 07:00:00,2.437205664,1006.239833,207.4666667,96.875,16.22916667,0.677333333,238.0039525 -2014-10-08 08:00:00,0.0,1005.730667,195.2833333,88.7,18.95916667,1.8573333330000001,238.0039525 -2014-10-08 09:00:00,0.0,1005.446333,207.29166669999998,86.94166667,19.5925,2.95775,238.0039525 -2014-10-08 10:00:00,0.0,1004.915833,447.625,85.10833333,19.825,3.247833333,238.0039525 -2014-10-08 11:00:00,0.0,1004.5186669999999,333.5,79.72166667,21.825,2.773,238.0039525 -2014-10-08 12:00:00,0.0,1003.986167,470.675,75.27166667,23.62916667,3.020916667,238.0018691666667 -2014-10-08 13:00:00,24.56347846,1003.5315,174.5425,81.59166667,23.44666667,2.0531666669999997,237.99368583333333 -2014-10-08 14:00:00,26.27430982,1003.5325,48.16583333,99.60833333,21.11833333,0.512166667,237.98718583333334 -2014-10-08 15:00:00,67.60695269,1002.810333,19.9875,99.775,20.3675,0.545416667,237.9844025 -2014-10-08 16:00:00,6.142366824,1001.9955,124.545,94.64166667,20.22583333,1.029083333,237.98301916666665 -2014-10-08 17:00:00,2.4050227680000003,1001.7489999999999,32.36066667,98.58333333,20.29083333,0.39141666700000005,237.98301916666665 -2014-10-08 18:00:00,170.8390764,1001.7415619999999,3.427083333,99.325,19.69833333,1.274833333,237.98168583333333 -2014-10-08 19:00:00,9.160374312,1001.464167,3.111583333,98.36666667,19.5375,1.311583333,237.98168583333333 -2014-10-08 20:00:00,0.0,1001.831111,0.145,95.99166667,18.92583333,0.5355,237.98135249999999 -2014-10-08 21:00:00,13.11260405,1002.3822220000001,0.0,93.44166667,19.50583333,0.9760833329999999,237.98168583333333 -2014-10-08 22:00:00,2.43257292,1002.9459720000001,0.0,98.76666667,18.32583333,0.171666667,237.98135249999999 -2014-10-08 23:00:00,0.0,1003.694861,0.0,95.91666667,17.68916667,0.258833333,237.98135249999999 -2014-11-08 00:00:00,0.0,1004.96625,0.0,96.54166667,17.0575,0.073333333,237.9505525 -2014-11-08 01:00:00,0.0,1005.6394439999999,0.0,97.40833333,16.56166667,0.0955,237.94880250000003 -2014-11-08 02:00:00,0.0,1006.3488890000001,0.0,94.1,15.96333333,0.09908333300000001,237.9484525 -2014-11-08 03:00:00,2.430129504,1006.8209720000001,0.0,95.54166667,14.05583333,0.3075,237.94880250000003 -2014-11-08 04:00:00,0.0,1007.230417,0.040833333,98.48333333,12.22333333,0.005583333,237.9498525 -2014-11-08 05:00:00,0.0,1007.8209720000001,11.72591667,96.9,11.43166667,0.0,237.9505525 -2014-11-08 06:00:00,0.0,1008.450694,86.10666667,92.65,13.28416667,0.090583333,237.9505525 -2014-11-08 07:00:00,0.0,1008.947083,181.445,88.725,14.89416667,0.230333333,237.9505525 -2014-11-08 08:00:00,0.0,1009.1840279999999,151.06666669999998,84.15,16.51333333,0.5195,237.95155249999996 -2014-11-08 09:00:00,0.0,1009.525,271.46666669999996,80.095,17.615,0.56975,237.95221916666665 -2014-11-08 10:00:00,0.0,1009.6351390000001,487.8,71.6975,18.79583333,0.830583333,237.9525525 -2014-11-08 11:00:00,0.0,1009.5487720000001,592.225,63.8,19.87410096,0.782333333,237.9525525 -2014-11-08 12:00:00,0.0,1009.684555,543.6916667,58.4725,20.35001765,0.751416667,237.9525525 -2014-11-08 13:00:00,0.0,1009.4012220000001,590.0583333,55.1525,20.94973838,0.9135833329999999,237.9525525 -2014-11-08 14:00:00,0.0,1009.243444,610.9666667,55.84416667,22.06416667,0.85525,237.95221916666665 -2014-11-08 15:00:00,0.0,1009.169667,376.3583333,58.86333333,19.66666667,1.8655,237.9525525 -2014-11-08 16:00:00,0.0,1008.803,328.525,55.13083333,20.79166667,0.7513333329999999,237.9525525 -2014-11-08 17:00:00,0.0,1008.7868890000001,107.005,51.30416667,21.96166667,0.638166667,237.9525525 -2014-11-08 18:00:00,0.0,1008.8547779999999,36.70333333,53.87,20.67083333,0.670166667,237.9525525 -2014-11-08 19:00:00,0.0,1008.955333,14.68641667,62.625,18.31083333,0.8291666670000001,237.9525525 -2014-11-08 20:00:00,0.0,1009.1868890000001,0.31875,76.9875,15.83083333,0.733916667,237.9539525 -2014-11-08 21:00:00,0.0,1009.188667,0.0,77.65916667,13.6,0.19525,237.9539525 -2014-11-08 22:00:00,0.0,1009.5101109999999,0.0,78.82333333,12.3875,0.037833333,237.95395249999999 -2014-11-08 23:00:00,0.0,1009.364333,0.0,92.94166667,11.46833333,0.054333333,237.9532525 -2014-12-08 00:00:00,0.0,1009.041667,0.0,83.85833333,10.56916667,0.05525,238.15265250000002 -2014-12-08 01:00:00,0.0,1008.842889,0.0,77.99833333,12.66583333,0.2465,238.16838583333333 -2014-12-08 02:00:00,4.888250448,1008.672,0.0,85.10583333,14.51416667,0.304416667,238.18141916666664 -2014-12-08 03:00:00,0.0,1008.5612779999999,0.0,91.3,13.37,0.050416667000000005,238.18206916666665 -2014-12-08 04:00:00,0.0,1008.568417,0.040416667,91.41666667,13.185,0.060083332999999996,238.1944358333333 -2014-12-08 05:00:00,0.0,1008.88375,11.21791667,93.69166667,12.33333333,0.025833332999999997,238.2033358333333 -2014-12-08 06:00:00,0.0,1009.318417,77.77666667,89.96666667,13.7925,0.145333333,238.22288583333332 -2014-12-08 07:00:00,0.0,1009.463583,90.78416667,86.46666667,14.67166667,0.35475,238.22183583333333 -2014-12-08 08:00:00,0.0,1009.65,158.3,81.23166667,15.5975,0.761166667,238.2191025 -2014-12-08 09:00:00,0.0,1009.7285,267.7083333,76.8025,17.17666667,0.70325,238.24480250000002 -2014-12-08 10:00:00,0.0,1009.6364169999999,338.09166669999996,69.41333333,18.38416667,0.571666667,238.2379525 -2014-12-08 11:00:00,0.0,1009.411417,551.3833333,60.01416667,20.28,1.079833333,238.2660525 -2014-12-08 12:00:00,0.0,1009.099583,615.0916667,51.09916667,21.06416667,0.978833333, -2014-12-08 13:00:00,0.0,1008.701333,540.5583333,49.58416667,21.74166667,0.922416667, -2014-12-08 14:00:00,0.0,1007.98775,569.3333332999999,48.83666667,22.13916667,0.874583333, -2014-12-08 15:00:00,0.0,1007.3645,509.45,45.00833333,22.43916667,0.9770833329999999, -2014-12-08 16:00:00,0.0,1006.64125,433.5583333000001,44.34333333,22.49,1.187083333, -2014-12-08 17:00:00,0.0,1006.1978330000001,108.2375,46.54833333,22.11833333,1.285, -2014-12-08 18:00:00,0.0,1006.170167,39.30166667,54.55833333,20.52916667,1.009333333, -2014-12-08 19:00:00,0.0,1006.171917,16.11333333,66.55,17.96416667,0.34366666700000004, -2014-12-08 20:00:00,0.0,1006.4301730000001,0.235166667,79.87166667,17.2825,0.959333333, -2014-12-08 21:00:00,0.0,1006.666667,0.0,76.4975,16.735,0.8896666670000001, -2014-12-08 22:00:00,0.0,1006.6448330000001,0.0,85.61666667,14.82583333,0.40675, -2014-12-08 23:00:00,0.0,1006.254889,0.0,94.74166667,12.56,0.056083333, -2014-08-13 00:00:00,0.0,1005.7945560000001,0.0,95.50833333,12.85916667,0.04725,237.4543889 -2014-08-13 01:00:00,0.0,1004.967833,0.0,97.25833333,13.2875,0.058083333,237.4543889 -2014-08-13 02:00:00,0.0,1004.323,0.0,97.74166667,13.3425,0.162083333,237.4543889 -2014-08-13 03:00:00,0.0,1003.9,0.0,99.9,12.01916667,0.08425,237.4543889 -2014-08-13 04:00:00,0.0,1003.631333,0.000916667,100.0,12.69166667,0.044000000000000004,237.45333625 -2014-08-13 05:00:00,0.0,1003.0580560000001,6.953583332999999,100.0,13.15416667,0.09575,237.45228360000002 -2014-08-13 06:00:00,0.0,1002.7298890000001,40.67,97.74166667,13.85916667,0.7383333329999999,237.45228360000002 -2014-08-13 07:00:00,0.0,1002.464944,185.29166669999998,87.31666667,15.09916667,0.805416667,237.45123089999996 -2014-08-13 08:00:00,0.0,1002.102889,123.38916670000002,81.6925,17.01166667,0.4285,237.45052909999995 -2014-08-13 09:00:00,0.0,1001.6833330000001,210.4,78.77666667,18.2,0.600916667,237.45019491666665 -2014-08-13 10:00:00,0.0,1001.758056,206.5166667,75.23666667,19.41,0.7908333329999999,237.44676949999996 -2014-08-13 11:00:00,0.0,1001.214944,192.45,72.38833333,20.05416667,1.053166667,237.4453993333333 -2014-08-13 12:00:00,0.0,1000.966389,137.1333333,76.50583333,19.42,1.1525,237.44506515 -2014-08-13 13:00:00,0.0,1000.5166609999999,219.29166669999998,79.1475,19.26333333,0.680416667,237.44406260000002 -2014-08-13 14:00:00,7.299489287999999,1000.4315,73.655,87.175,18.5875,0.429,237.4437117 -2014-08-13 15:00:00,26.51891606,999.7915277999999,79.0175,98.06666667,17.3575,0.0465,237.44336079999997 -2014-08-13 16:00:00,9.94771116,1000.126972,56.94166667,98.53333333,16.915,0.43741666700000004,237.44195719999996 -2014-08-13 17:00:00,167.15106640000002,1000.888417,6.302916667000001,99.71666667,15.80333333,1.027333333,237.4419906333333 -2014-08-13 18:00:00,136.1225809,1001.0334720000001,9.088666667,100.0,14.89833333,0.947666667,237.46429758333332 -2014-08-13 19:00:00,17.97216286,1001.885306,8.984583333,100.0,14.58416667,0.527166667,237.49317133333332 -2014-08-13 20:00:00,2.4050227680000003,1002.9186390000001,0.181666667,100.0,14.41916667,0.042,237.50623798333334 -2014-08-13 21:00:00,0.0,1003.8435,0.0,99.9,14.39333333,0.11808333300000001,237.51275461666668 -2014-08-13 22:00:00,0.0,1004.6603060000001,0.0,99.99166667,14.44583333,0.242916667,237.5164975 -2014-08-13 23:00:00,2.420878824,1005.266667,0.0,99.83333333,14.19583333,0.3075,237.518252 -2014-08-14 00:00:00,0.0,1005.716805,0.0,99.3,14.3725,0.20225,237.5175502 -2014-08-14 01:00:00,0.0,1005.8817779999999,0.0,99.05,13.59083333,0.095083333,237.5171993 -2014-08-14 02:00:00,0.0,1006.155083,0.0,99.625,12.49416667,0.040583333,237.5171993 -2014-08-14 03:00:00,2.414447112,1006.3399720000001,0.0,99.46666667,12.4725,0.37391666700000004,237.51514405000003 -2014-08-14 04:00:00,0.0,1006.5884169999999,0.0235,99.95,11.87416667,0.006166667,237.51379060000002 -2014-08-14 05:00:00,0.0,1006.8167609999999,10.56816667,100.0,10.94166667,0.013416667,237.51273790000002 -2014-08-14 06:00:00,0.0,1007.135,63.79583333,98.15,11.83666667,0.10175,237.51203610000002 -2014-08-14 07:00:00,0.0,1007.503333,135.555,94.65,14.5625,0.29583333300000003,237.510031 -2014-08-14 08:00:00,0.0,1007.505,178.3666667,91.4,15.155,0.472583333,237.5103651833333 -2014-08-14 09:00:00,0.0,1007.513333,366.3583333,85.53333333,16.17,0.621416667,237.5089783 -2014-08-14 10:00:00,0.0,1007.64,438.675,78.88583333,17.525,0.5835,237.50725723333332 -2014-08-14 11:00:00,0.0,1007.32,547.325,74.045,18.79666667,0.916666667,237.50556961666666 -2014-08-14 12:00:00,0.0,1007.001667,450.65833330000004,72.58083333,19.01833333,0.970166667,237.50351436666665 -2014-08-14 13:00:00,0.0,1006.703333,435.90833330000004,71.78083333,18.4975,1.689416667,237.94478359999997 -2014-08-14 14:00:00,0.0,1006.483333,355.4333333,70.59,19.65583333,1.84575,238.05262309999998 -2014-08-14 15:00:00,0.0,1006.611667,282.9916667,68.32083333,19.99,1.041,238.03576339999995 -2014-08-14 16:00:00,0.0,1006.605,412.28333330000004,62.4025,19.40916667,1.185833333,238.02271340000001 -2014-08-14 17:00:00,0.0,1006.661667,95.905,68.3825,19.53,0.9411666670000001,238.0130888 -2014-08-14 18:00:00,0.0,1007.085,33.76416667,74.57416667,18.36666667,0.40425,238.0058871 -2014-08-14 19:00:00,102.7655311,1007.6833330000001,1.6990833330000001,95.20833333,15.305,0.6469166670000001,238.0055528833333 -2014-08-14 20:00:00,0.0,1007.76,0.060583332999999996,99.66666667,13.95916667,0.726333333,238.00521873333332 -2014-08-14 21:00:00,0.0,1007.745,0.0,100.0,13.09833333,0.12941666699999999,238.00247839999997 -2014-08-14 22:00:00,2.421048024,1007.911667,0.0,100.0,12.84166667,0.124833333,238.0000555833333 -2014-08-14 23:00:00,0.0,1007.678333,0.0,100.0,12.49916667,0.096416667,237.99795020000002 -2014-08-15 00:00:00,0.0,1007.591667,0.0,100.0,12.1925,0.070166667,237.99693093333335 -2014-08-15 01:00:00,0.0,1007.576667,0.0,100.0,12.42666667,0.054583333,237.99559419999994 -2014-08-15 02:00:00,0.0,1007.498333,0.0,100.0,12.315,0.000666667,237.9938397 -2014-08-15 03:00:00,0.0,1007.156667,0.0,100.0,12.00583333,0.050916667,237.99248624999998 -2014-08-15 04:00:00,2.4050227680000003,1007.115,0.0,100.0,11.38166667,0.02875,237.99113279999997 -2014-08-15 05:00:00,0.0,1007.43,3.5916666669999997,100.0,11.30583333,0.0,237.98937830000003 -2014-08-15 06:00:00,0.0,1007.65,18.54666667,100.0,11.98166667,0.0,237.98937830000003 -2014-08-15 07:00:00,7.261560407999999,1007.746667,42.57083333,100.0,12.68166667,0.057583333,237.98937830000003 -2014-08-15 08:00:00,9.695853984,1007.983333,63.84416667,100.0,13.4375,0.11800000000000001,237.98837575000002 -2014-08-15 09:00:00,19.23806326,1008.078333,173.66916669999998,98.20833333,14.12,0.0785,237.9890441166667 -2014-08-15 10:00:00,0.0,1007.896667,300.9916667,88.79166667,16.15,0.3535,237.98904411666672 -2014-08-15 11:00:00,17.99608697,1007.756667,237.3258333,92.10833333,16.295,0.58125,237.98837575000002 -2014-08-15 12:00:00,15.10054099,1007.8166669999999,253.575,91.25,15.65083333,0.47375,237.98937830000003 -2014-08-15 13:00:00,0.0,1007.926667,211.4083333,90.93333333,16.325,0.65675,237.9918178833333 -2014-08-15 14:00:00,0.0,1008.096667,280.8833333,89.61666667,16.77416667,0.37158333299999996,237.99348880000002 -2014-08-15 15:00:00,0.0,1008.465,266.075,84.71666667,17.455,0.510416667,237.99454149999997 -2014-08-15 16:00:00,0.0,1008.725,225.16666669999998,87.6,16.85833333,0.688333333,237.99559419999994 -2014-08-15 17:00:00,0.0,1008.885,107.07,89.725,16.6175,0.47816666700000005,237.99592838333328 -2014-08-15 18:00:00,0.0,1009.11,49.72,89.64166667,15.985,0.21891666699999998,237.99659674999998 -2014-08-15 19:00:00,0.0,1009.571667,14.40716667,92.96666667,15.12083333,0.053333333,237.99557748333328 -2014-08-15 20:00:00,0.0,1010.296667,0.12866666699999998,94.625,14.21,0.471916667,237.99348880000002 -2014-08-15 21:00:00,0.0,1010.508333,0.0,96.51666667,13.5875,0.108083333,237.99348880000002 -2014-08-15 22:00:00,0.0,1011.041667,0.0,99.75,12.87583333,0.34383333299999996,237.99348880000002 -2014-08-15 23:00:00,0.0,1011.496667,0.0,100.0,13.18,0.136583333,237.99348880000002 -2014-08-16 00:00:00,0.0,1011.68,0.0,99.45,13.19,0.167833333,237.99282043333335 -2014-08-16 01:00:00,0.0,1011.653333,0.0,99.43333333,13.09,0.39916666700000003,237.99282043333335 -2014-08-16 02:00:00,0.0,1011.956667,0.0,99.90833333,12.86083333,0.36008333299999995,237.99148369999997 -2014-08-16 03:00:00,2.411944176,1012.266667,0.0,99.68333333,12.90833333,0.21925,237.99248624999998 -2014-08-16 04:00:00,0.0,1012.6883330000001,0.0,99.33333333,12.88,0.177666667,237.99148369999997 -2014-08-16 05:00:00,0.0,1013.013333,4.231833333,99.89166667,12.93416667,0.641333333,237.9921687833333 -2014-08-16 06:00:00,0.0,1013.391667,33.89083333,99.88333333,12.8825,0.35075,237.99148369999997 -2014-08-16 07:00:00,0.0,1014.025,211.45833330000002,93.875,14.17416667,0.577666667,237.99113279999997 -2014-08-16 08:00:00,0.0,1014.351667,142.3,92.275,15.81833333,0.47,237.9900801 -2014-08-16 09:00:00,0.0,1014.763333,186.1425,92.78333333,16.33583333,0.75275,237.9873732 -2014-08-16 10:00:00,0.0,1014.8166669999999,490.84166669999996,89.0,16.56833333,1.024666667,237.9873732 -2014-08-16 11:00:00,23.48717474,1014.756667,361.4416667,83.6375,16.65916667,1.040666667,237.9873732 -2014-08-16 12:00:00,0.0,1014.518333,360.8,86.39166667,16.61833333,0.91825,237.9856187 -2014-08-16 13:00:00,3.166017024,1014.611667,485.24166669999994,78.30583333,17.87333333,1.686833333,237.98456600000006 -2014-08-16 14:00:00,0.0,1014.578333,524.5416667,69.87833333,18.87666667,1.231083333,237.984566 -2014-08-16 15:00:00,0.0,1014.325,301.35,72.61,19.32083333,0.995166667,237.9831624 -2014-08-16 16:00:00,0.0,1014.295,254.30833330000002,69.58666667,18.93833333,1.06725,237.98115730000004 -2014-08-16 17:00:00,0.0,1014.055,99.735,69.53666667,17.83,1.7243333330000001,237.98115730000004 -2014-08-16 18:00:00,0.0,1013.891667,52.58416667,74.52916667,17.23166667,0.53325,237.9790853333334 -2014-08-16 19:00:00,0.0,1013.93,12.60008333,77.9725,15.81166667,0.053333333,237.97704680000007 -2014-08-16 20:00:00,0.0,1014.3,0.078416667,81.76666667,14.75083333,0.004,237.976345 -2014-08-16 21:00:00,0.0,1014.328333,0.0,83.725,14.61583333,0.20425,237.9749414 -2014-08-16 22:00:00,0.0,1014.271667,0.0,88.24166667,14.435,0.04775,237.9736046666666 -2014-08-16 23:00:00,0.0,1013.896667,0.0,91.55,14.38666667,0.017,237.97360466666666 -2014-08-17 00:00:00,0.0,1013.418333,0.0,95.08333333,13.3325,0.0,237.9729363 -2014-08-17 01:00:00,0.0,1012.868333,0.0,98.475,11.53333333,0.03275,237.9729363 -2014-08-17 02:00:00,0.0,1012.38,0.0,99.53333333,10.495,0.003416667,237.9729363 -2014-08-17 03:00:00,0.0,1011.871667,0.0,96.25833333,9.870833333,0.0,237.97188359999998 -2014-08-17 04:00:00,0.0,1011.355,0.0,98.94166667,9.381666667000001,0.0,237.97083089999998 -2014-08-17 05:00:00,0.0,1011.291667,8.132583333,98.05,9.223333333,0.0,237.9691599833333 -2014-08-17 06:00:00,0.0,1011.055,57.67583333,89.04166667,10.84166667,0.057583333,237.96882580000002 -2014-08-17 07:00:00,0.0,1010.785,137.3833333,83.45833333,14.67166667,0.40433333299999996,237.96847489999996 -2014-08-17 08:00:00,0.0,1010.231667,175.3583333,76.46166667,16.91166667,0.837166667,237.96777309999996 -2014-08-17 09:00:00,0.0,1009.893333,312.7,71.13416667,18.34166667,0.788333333,237.968124 -2014-08-17 10:00:00,0.0,1009.4366669999999,203.7775,71.755,18.1625,0.802,237.96672039999999 -2014-08-17 11:00:00,0.0,1009.076667,303.9091667,71.75833333,17.69416667,0.755166667,237.96672039999999 -2014-08-17 12:00:00,0.0,1008.621667,262.6916667,67.01333333,18.29583333,0.933916667,237.96566774999997 -2014-08-17 13:00:00,0.0,1007.988333,190.95833330000002,64.68083333,18.36333333,1.0170000000000001,237.96428089999998 -2014-08-17 14:00:00,0.0,1007.486667,152.9,65.50666667,17.7,0.64075,237.9626099 -2014-08-17 15:00:00,0.0,1007.166667,200.0166667,65.1675,17.87666667,0.6203333329999999,237.9601704 -2014-08-17 16:00:00,0.0,1006.56,177.375,64.68166667,18.115,0.5529999999999999,237.9598362 -2014-08-17 17:00:00,0.0,1005.871667,91.19916667,64.6,18.2,0.56375,237.95883359999996 -2014-08-17 18:00:00,0.0,1005.406667,43.37833333,65.18916667,17.49333333,0.604833333,237.9553915 -2014-08-17 19:00:00,0.0,1005.101667,8.897583333,70.16916667,16.245,1.093083333,237.9543889 -2014-08-17 20:00:00,0.0,1005.115,0.069916667,71.085,15.565,0.607,237.95263448333336 -2014-08-17 21:00:00,0.0,1004.841667,0.0,70.94083333,16.39416667,1.4876666669999998,237.95333624999998 -2014-08-17 22:00:00,0.0,1004.598333,0.0,71.5375,16.14916667,1.3519166669999998,237.95228360000002 -2014-08-17 23:00:00,0.0,1004.21,0.0,72.9,15.96666667,1.0513333329999999,237.95193270000001 -2014-08-18 00:00:00,0.0,1003.823333,0.0,73.71083333,15.89416667,1.014333333,237.94917565 -2014-08-18 01:00:00,0.0,1003.273333,0.0,75.40333333,15.35333333,0.674083333,237.94817310000005 -2014-08-18 02:00:00,0.0,1003.136667,0.0,76.61166667,14.62916667,0.66075,237.9464186 -2014-08-18 03:00:00,0.0,1003.0583330000001,0.0,77.60666667,14.815,0.656833333,237.9453993333333 -2014-08-18 04:00:00,0.0,1002.993333,0.0,83.925,14.18166667,0.273833333,237.94406260000002 -2014-08-18 05:00:00,0.0,1002.728333,8.198583333,87.84166667,13.96833333,0.923416667,237.94406260000002 -2014-08-18 06:00:00,0.0,1002.95,40.465,83.06666667,14.525,1.1735,237.94406260000002 -2014-08-18 07:00:00,0.0,1003.091667,66.87666667,83.71666667,14.69,0.7031666670000001,237.94336080000002 -2014-08-18 08:00:00,0.0,1003.271667,91.78,86.68333333,14.705,0.7835,237.94336080000002 -2014-08-18 09:00:00,2.5923119999999997,1003.391667,132.4833333,92.55833333,14.23,0.6728333329999999,237.94195719999996 -2014-08-18 10:00:00,0.0,1003.516667,368.575,89.81666667,15.62416667,0.6246666670000001,237.94195719999996 -2014-08-18 11:00:00,0.0,1003.496667,369.21666669999996,78.13166667,16.78416667,0.7799166670000001,237.94028628333334 -2014-08-18 12:00:00,0.0,1003.256667,671.8,69.835,18.6125,1.2135,237.93751251666663 -2014-08-18 13:00:00,2.7314252160000003,1003.746667,418.4,73.28833333,18.66416667,1.130666667,237.9361757833333 -2014-08-18 14:00:00,0.0,1003.825,526.7583333,75.05166667,17.185,0.890833333,237.93478889999994 -2014-08-18 15:00:00,2.73003732,1003.943333,462.33333330000005,64.19,19.22,1.07725,237.93373619999997 -2014-08-18 16:00:00,0.0,1004.375,335.1666667,66.11833333,19.665,0.644916667,237.93163080000002 -2014-08-18 17:00:00,0.0,1004.655,71.96,60.92666667,18.61583333,0.7583333329999999,237.93029406666665 -2014-08-18 18:00:00,0.0,1005.221667,47.15416667,58.85583333,17.59666667,1.42025,237.92822209999997 -2014-08-18 19:00:00,0.0,1005.896667,8.747583333,70.19916667,15.965,1.3768333330000002,237.92685193333338 -2014-08-18 20:00:00,0.0,1006.34,0.062,89.75833333,13.535,0.146583333,237.92551519999998 -2014-08-18 21:00:00,0.0,1006.638333,0.0,95.825,11.58166667,0.034583333,237.92551519999998 -2014-08-18 22:00:00,0.0,1006.898333,0.0,98.64166667,10.6025,0.044916667,237.92551519999998 -2014-08-18 23:00:00,0.0,1006.918333,0.0,99.775,10.5075,0.10158333300000001,237.92411159999997 -2014-08-19 00:00:00,0.0,1006.935,0.0,100.0,9.5175,0.026000000000000002,237.92208978333335 -2014-08-19 01:00:00,0.0,1006.733333,0.0,100.0,8.649166667000001,0.033583333,237.9214047 -2014-08-19 02:00:00,0.0,1006.263333,0.0,100.0,7.674916667000001,0.097666667,237.9214047 -2014-08-19 03:00:00,0.0,1006.246667,0.0,100.0,6.954083333,0.005083333,237.9214047 -2014-08-19 04:00:00,0.0,1006.671667,0.0,100.0,6.43,0.014833333,237.9214047 -2014-08-19 05:00:00,0.0,1006.581667,6.207166667,100.0,6.1845,0.008333333,237.920352 -2014-08-19 06:00:00,0.0,1006.935,43.85833333,100.0,7.409666667000001,0.017583333,237.92000110000004 -2014-08-19 07:00:00,0.0,1007.115,225.65,97.875,10.5,0.54175,237.91929930000006 -2014-08-19 08:00:00,0.0,1006.918333,207.80833330000002,81.55416667,14.68916667,0.7665833329999999,237.91929930000006 -2014-08-19 09:00:00,0.0,1006.8116669999999,230.9833333,75.5775,16.655,0.823833333,237.91929930000006 -2014-08-19 10:00:00,0.0,1006.7,370.34166669999996,70.86583333,16.94083333,1.10525,237.91929930000006 -2014-08-19 11:00:00,0.0,1006.59,419.1333333,63.86,18.10916667,0.8563333329999999,237.9178957666667 -2014-08-19 12:00:00,0.0,1006.321667,471.88333330000006,58.245,19.9825,0.9255,237.91685980000003 -2014-08-19 13:00:00,0.0,1005.956667,602.5083333,53.11666667,20.025,1.36775,237.9151721166667 -2014-08-19 14:00:00,0.0,1006.675,256.65,58.8075,19.525,1.514666667,237.91346778333335 -2014-08-19 15:00:00,3.163667184,1008.008333,133.2175,83.73416667,14.90666667,2.347916667,237.90932390000003 -2014-08-19 16:00:00,0.0,1008.043333,132.03166670000002,84.85,13.23083333,0.489833333,237.90897300000003 -2014-08-19 17:00:00,0.0,1008.151667,85.83666667,83.07083333,13.99,0.339083333,237.90830463333336 -2014-08-19 18:00:00,0.0,1008.571667,62.6625,83.39166667,13.88833333,0.11491666699999999,237.90730208333332 -2014-08-19 19:00:00,0.0,1008.981667,11.87216667,87.325,13.30333333,0.135166667,237.9069679 -2014-08-19 20:00:00,0.0,1009.805,0.024416667000000003,89.575,12.1675,0.538666667,237.9048625 -2014-08-19 21:00:00,0.0,1010.083333,0.0,83.90833333,11.79833333,0.37225,237.9034589 -2014-08-19 22:00:00,0.0,1010.405,0.0,93.29166667,8.962333333,0.053583333,237.90310799999997 -2014-08-19 23:00:00,0.0,1010.726667,0.0,99.73333333,7.178583333,0.05925,237.9027571 -2014-08-20 00:00:00,0.0,1010.786667,0.0,99.64166667,8.056166667000001,0.313166667,237.9027571 -2014-08-20 01:00:00,0.0,1010.843333,0.0,100.0,8.0145,0.47625,237.9027571 -2014-08-20 02:00:00,0.0,1011.053333,0.0,100.0,6.645583332999999,0.056166667,237.90173783333339 -2014-08-20 03:00:00,0.0,1011.261667,0.0,100.0,7.3845,0.64275,237.8993484 -2014-08-20 04:00:00,0.0,1011.621667,0.0,97.98333333,7.3155,0.662666667,237.89899750000004 -2014-08-20 05:00:00,0.0,1011.86,5.736083333,99.33333333,6.664,0.091916667,237.89864660000003 -2014-08-20 06:00:00,0.0,1012.126667,37.70583333,100.0,6.97325,0.148666667,237.89864660000003 -2014-08-20 07:00:00,0.0,1012.62,196.2158333,89.30833333,10.50416667,0.14300000000000002,237.89864660000003 -2014-08-20 08:00:00,0.0,1012.886667,153.8883333,81.24166667,13.34833333,0.593833333,237.89764405000005 -2014-08-20 09:00:00,0.0,1012.958333,305.66083330000004,74.05,14.70916667,0.639333333,237.89797823333333 -2014-08-20 10:00:00,0.0,1012.751667,508.66666669999995,65.19833333,15.88333333,0.7945,237.89664150000002 -2014-08-20 11:00:00,0.0,1012.451667,601.9916667,58.0025,17.35333333,0.7476666670000001,237.8959397 -2014-08-20 12:00:00,0.0,1012.443333,515.7916667,57.91916667,17.70583333,0.80875,237.8945361 -2014-08-20 13:00:00,0.0,1012.173333,537.0916667,53.64333333,18.46333333,0.7250833329999999,237.89286518333333 -2014-08-20 14:00:00,0.0,1011.896667,479.1083333000001,52.1275,18.68583333,0.767166667,237.89042560000004 -2014-08-20 15:00:00,0.0,1011.57,311.85,52.74333333,18.26583333,0.78375,237.88908886666664 -2014-08-20 16:00:00,0.0,1011.3166669999999,189.2583333,56.1825,17.90916667,0.535833333,237.88842049999997 -2014-08-20 17:00:00,0.0,1011.168333,121.125,58.69583333,17.28166667,0.633166667,237.88771870000002 -2014-08-20 18:00:00,0.0,1011.076667,56.32916667,69.995,16.17666667,0.45783333299999995,237.88631510000002 -2014-08-20 19:00:00,0.0,1011.36,8.50975,87.14166667,13.94166667,0.029416667,237.8845606 -2014-08-20 20:00:00,0.0,1011.586667,0.010833333,93.09166667,12.44916667,0.0415,237.8842097 -2014-08-20 21:00:00,0.0,1011.9416669999999,0.0,96.16666667,11.15583333,0.043583332999999995,237.8859642 -2014-08-20 22:00:00,0.0,1012.201667,0.0,90.58333333,11.33833333,0.232333333,237.88422641666668 -2014-08-20 23:00:00,0.0,1012.158333,0.0,97.5,9.275,0.1335,237.88354133333334 -2014-08-21 00:00:00,0.0,1012.166667,0.0,99.69166667,8.277999999999999,0.023916667000000003,237.8825387833334 -2014-08-21 01:00:00,0.0,1012.116667,0.0,100.0,7.314416667000001,0.057916667000000005,237.8828729666667 -2014-08-21 02:00:00,0.0,1012.171667,0.0,100.0,6.51075,0.023333332999999998,237.88185370000005 -2014-08-21 03:00:00,0.0,1012.511667,0.0,100.0,7.4365,0.026583332999999997,237.88009920000005 -2014-08-21 04:00:00,0.0,1012.4333330000001,0.0,99.325,8.973333333,0.040416667,237.88009920000005 -2014-08-21 05:00:00,0.0,1012.713333,5.847083333,99.925,7.782583333,0.01575,237.88009920000005 -2014-08-21 06:00:00,0.0,1013.125,41.87166667,100.0,8.05125,0.002666667,237.88009920000005 -2014-08-21 07:00:00,0.0,1013.418333,165.7441667,95.58333333,10.72083333,0.18633333300000002,237.88009920000005 -2014-08-21 08:00:00,0.0,1013.553333,164.7666667,87.525,13.315,0.287916667,237.88009920000005 -2014-08-21 09:00:00,0.0,1013.588333,314.0833333,77.6625,14.9125,0.6065,237.87909664999998 -2014-08-21 10:00:00,0.0,1013.381667,483.7666666999999,68.48833333,16.07916667,0.8138333329999999,237.87876246666667 -2014-08-21 11:00:00,0.0,1013.291667,607.4166667000001,60.3275,17.2225,0.912083333,237.87739233333332 -2014-08-21 12:00:00,0.0,1013.153333,659.0583333,54.74416667,17.7975,1.192,237.8759888 -2014-08-21 13:00:00,0.0,1012.75,644.9416667,50.56583333,18.8225,0.978916667,237.874652 -2014-08-21 14:00:00,0.0,1012.3083330000001,435.875,48.675,18.75,0.8975833329999999,237.8739836 -2014-08-21 15:00:00,0.0,1012.023333,165.58333330000002,53.23166667,17.7625,0.703416667,237.87258006666664 -2014-08-21 16:00:00,0.0,1011.5583330000001,252.55833330000002,51.19,18.47166667,0.5225,237.87047470000002 -2014-08-21 17:00:00,0.0,1011.321667,70.09,53.0975,17.83916667,0.594166667,237.86841945 -2014-08-21 18:00:00,0.0,1011.331667,53.4775,59.43333333,16.43,0.254416667,237.8674169 -2014-08-21 19:00:00,0.0,1011.451667,6.92,80.24333333,13.86083333,0.0010833330000000001,237.86465985000004 -2014-08-21 20:00:00,0.0,1011.861667,0.0005,92.025,10.67333333,0.0,237.86365730000003 -2014-08-21 21:00:00,0.0,1011.725,0.0,95.95,8.79,0.007666666999999999,237.86365730000003 -2014-08-21 22:00:00,0.0,1011.641667,0.0,98.64166667,8.601666667,0.0,237.86365730000003 -2014-08-21 23:00:00,0.0,1011.453333,0.0,99.925,8.17475,0.010416667,237.86365730000003 -2014-08-22 00:00:00,0.0,1011.116667,0.0,100.0,7.31975,0.045333332999999996,237.86330640000003 -2014-08-22 01:00:00,0.0,1011.021667,0.0,100.0,6.467166667000001,0.06458333299999999,237.8629555 -2014-08-22 02:00:00,0.0,1010.851667,0.0,100.0,5.846666667,0.012416667,237.86190279999997 -2014-08-22 03:00:00,0.0,1010.555,0.0,100.0,5.157,0.00875,237.86365730000003 -2014-08-22 04:00:00,0.0,1010.47,0.0,100.0,4.842,0.0,237.8629555 -2014-08-22 05:00:00,0.0,1010.65,3.937166667,100.0,5.303583333,0.00475,237.8615519 -2014-08-22 06:00:00,0.0,1010.608333,45.865,100.0,6.830333333,0.02025,237.86190279999997 -2014-08-22 07:00:00,0.0,1010.388333,162.32166669999998,98.525,9.286333333,0.32508333300000003,237.8629555 -2014-08-22 08:00:00,0.0,1010.455,208.75,89.71666667,12.26916667,0.693916667,237.8615519 -2014-08-22 09:00:00,0.0,1010.46,286.3583333,82.43583333,14.725,0.5226666670000001,237.8615519 -2014-08-22 10:00:00,0.0,1010.1833330000001,377.6833333,58.4275,17.85416667,0.858916667,237.86021516666673 -2014-08-22 11:00:00,0.0,1009.966667,427.90833330000004,52.3,19.04,1.573916667,237.86054935000004 -2014-08-22 12:00:00,0.0,1009.531667,315.4,51.74333333,18.7875,1.2580833329999999,237.8581432 -2014-08-22 13:00:00,0.0,1009.238333,230.8,50.19083333,18.81583333,1.44925,237.8571072166667 -2014-08-22 14:00:00,0.0,1009.098333,207.4858333,55.295,17.89333333,1.4064166669999998,237.85575376666665 -2014-08-22 15:00:00,0.0,1008.761667,364.6666667,52.73,18.90083333,1.6453333330000002,237.85403269999998 -2014-08-22 16:00:00,0.0,1008.505,204.6333333,50.67583333,19.41416667,1.5290000000000001,237.8522782 -2014-08-22 17:00:00,0.0,1008.15,95.6675,55.845,18.27416667,1.671,237.8512422166667 -2014-08-22 18:00:00,0.0,1007.931667,39.81,61.53166667,17.5025,1.40725,237.84955458333332 -2014-08-22 19:00:00,0.0,1007.935,5.954916667000001,65.95833333,16.12916667,0.9734166670000001,237.84922039999995 -2014-08-22 20:00:00,0.0,1008.13,0.0,67.05083333,15.53666667,1.21175,237.8485186 -2014-08-22 21:00:00,0.0,1008.826667,0.0,69.94583333,15.25166667,1.450666667,237.847115 -2014-08-22 22:00:00,0.0,1009.011667,0.0,87.00666667,12.99083333,0.290416667,237.847115 -2014-08-22 23:00:00,0.0,1009.0666669999999,0.0,94.91666667,11.625,0.02425,237.84678081666667 -2014-08-23 00:00:00,0.0,1008.885,0.0,89.48333333,11.245,0.011083333,237.84611245 -2014-08-23 01:00:00,0.0,1008.723333,0.0,89.1,12.40333333,0.047333333,237.847115 -2014-08-23 02:00:00,0.0,1008.87,0.0,88.58333333,12.18666667,0.038583333,237.8454440833333 -2014-08-23 03:00:00,2.4050227680000003,1008.451667,0.0,94.11666667,11.99083333,0.047416667,237.84544408333332 -2014-08-23 04:00:00,0.0,1008.473333,0.0,95.84166667,11.66583333,0.039416667,237.847115 -2014-08-23 05:00:00,0.0,1008.786667,2.434416667,95.68333333,11.36833333,0.031666667,237.84577826666666 -2014-08-23 06:00:00,0.0,1009.171667,22.58916667,94.775,11.30833333,0.003166667,237.84510989999998 -2014-08-23 07:00:00,0.0,1009.263333,80.28166667,93.38333333,12.6925,0.04875,237.84510989999998 -2014-08-23 08:00:00,0.0,1009.383333,201.6333333,89.35,15.75666667,0.36208333299999995,237.84510989999998 -2014-08-23 09:00:00,0.0,1009.386667,290.3183333,81.3675,16.12416667,0.6466666670000001,237.84475899999998 -2014-08-23 10:00:00,0.0,1009.293333,286.45,77.39166667,16.76333333,0.500833333,237.84405719999998 -2014-08-23 11:00:00,0.0,1009.231667,519.0416667,64.84333333,18.45833333,0.875833333,237.8430045 -2014-08-23 12:00:00,0.0,1008.996667,562.2583333,61.83583333,18.65583333,0.860833333,237.8430045 -2014-08-23 13:00:00,0.0,1008.87,294.09166669999996,60.97833333,18.2425,0.814333333,237.84098268333332 -2014-08-23 14:00:00,0.0,1008.796667,366.3833333,57.77666667,19.28166667,1.0151666670000001,237.83819225 -2014-08-23 15:00:00,108.8064845,1009.48,129.46416670000002,80.73,15.6775,1.266583333,237.83612029999998 -2014-08-23 16:00:00,2.407283112,1009.358333,86.92083333,89.825,13.38083333,0.364333333,237.8347835 -2014-08-23 17:00:00,0.0,1009.633333,70.065,86.30833333,13.38666667,0.38975,237.8347835 -2014-08-23 18:00:00,0.0,1010.03,34.78083333,90.8,12.6275,0.70475,237.83373084999997 -2014-08-23 19:00:00,0.0,1010.635,6.2104166670000005,92.16666667,11.48,0.489,237.83373084999997 -2014-08-23 20:00:00,0.0,1011.175,0.0,95.825,11.10583333,0.21175,237.83267819999995 -2014-08-23 21:00:00,2.448781992,1011.413333,0.0,96.85833333,11.18333333,0.24875,237.83337996666663 -2014-08-23 22:00:00,0.0,1011.605,0.0,97.95,11.15833333,0.192583333,237.83267819999995 -2014-08-23 23:00:00,0.0,1012.003333,0.0,98.74166667,10.77416667,0.192833333,237.83267819999995 -2014-08-24 00:00:00,0.0,1012.05,0.0,98.78333333,9.800833333,0.412083333,237.83167559999995 -2014-08-24 01:00:00,0.0,1012.068333,0.0,99.98333333,8.985833332999999,0.5385,237.83267819999995 -2014-08-24 02:00:00,0.0,1012.333333,0.0,99.91666667,8.586666667000001,0.715833333,237.83267819999995 -2014-08-24 03:00:00,0.0,1012.6833330000001,0.0,99.775,8.678333333,0.521083333,237.83267819999995 -2014-08-24 04:00:00,0.0,1012.596667,0.0,99.76666667,9.013333333,0.390166667,237.83267819999995 -2014-08-24 05:00:00,0.0,1013.23,3.6685,100.0,8.186583333,0.260083333,237.83267819999995 -2014-08-24 06:00:00,0.0,1013.993333,30.065,99.99166667,8.255166667000001,0.227583333,237.83267819999995 -2014-08-24 07:00:00,0.0,1014.345,141.78666669999998,95.75,10.4325,0.223083333,237.83234399999995 -2014-08-24 08:00:00,0.0,1014.801667,151.0408333,87.99166667,12.42666667,0.514166667,237.83167559999995 -2014-08-24 09:00:00,0.0,1015.218333,303.925,80.5775,13.5975,1.006583333,237.83200979999995 -2014-08-24 10:00:00,0.0,1015.348333,508.5166666999999,75.21583333,14.74916667,1.214833333,237.83134139999996 -2014-08-24 11:00:00,0.0,1015.011667,457.8583333000001,69.63666667,15.7725,0.773833333,237.83067299999996 -2014-08-24 12:00:00,0.0,1014.85,341.55,64.9025,15.2975,1.1281666670000001,237.82891858333332 -2014-08-24 13:00:00,0.0,1014.761667,524.2583333,60.095,16.26416667,1.5463333330000002,237.83134139999996 -2014-08-24 14:00:00,0.0,1014.426667,183.66666669999998,68.2725,17.1075,0.776666667,237.82789929999998 -2014-08-24 15:00:00,0.0,1014.473333,370.1666667,66.60333333,16.21583333,0.690083333,237.8265625 -2014-08-24 16:00:00,0.0,1014.15,218.1108333,65.49833333,17.66333333,0.48816666700000005,237.82445719999996 -2014-08-24 17:00:00,0.0,1013.883333,61.52666667,68.575,16.26083333,0.170916667,237.8223518 -2014-08-24 18:00:00,0.0,1014.288333,33.09,72.2025,15.2425,0.775833333,237.8223518 -2014-08-24 19:00:00,0.0,1014.625,10.22616667,90.7875,12.89333333,0.212166667,237.82101506666663 -2014-08-24 20:00:00,0.0,1014.818333,0.0,99.64166667,10.00833333,0.04725,237.82201761666667 -2014-08-24 21:00:00,0.0,1014.798333,0.0,100.0,8.694166667000001,0.003416667,237.82068088333327 -2014-08-24 22:00:00,0.0,1014.888333,0.0,100.0,9.2475,0.21075,237.82034669999993 -2014-08-24 23:00:00,0.0,1014.615,0.0,100.0,9.001666667,0.044833332999999996,237.82034669999993 -2014-08-25 00:00:00,0.0,1014.23,0.0,100.0,7.403166667000001,0.046583333,237.8216834333333 -2014-08-25 01:00:00,0.0,1013.618333,0.0,100.0,6.556916667,0.075583333,237.82101506666663 -2014-08-25 02:00:00,0.0,1013.295,0.0,100.0,6.142583332999999,0.007666666999999999,237.82068088333327 -2014-08-25 03:00:00,0.0,1013.141667,0.0,100.0,6.191916667,0.0,237.82034669999993 -2014-08-25 04:00:00,0.0,1012.843333,0.0,100.0,6.69175,0.0,237.82101506666663 -2014-08-25 05:00:00,0.0,1012.705,2.066,100.0,7.114166667,0.0,237.82034669999993 -2014-08-25 06:00:00,0.0,1012.626667,28.08416667,100.0,7.8811666670000005,0.020833333,237.82034669999993 -2014-08-25 07:00:00,0.0,1012.668333,91.93333333,100.0,8.775,0.152916667,237.82101506666663 -2014-08-25 08:00:00,0.0,1012.803333,190.65,99.95833333,9.936666667,0.38591666700000005,237.82168343333333 -2014-08-25 09:00:00,0.0,1012.44,221.575,95.61666667,12.22416667,0.241583333,237.82034669999993 -2014-08-25 10:00:00,0.0,1011.923333,266.0416667,88.49166667,14.87916667,0.80275,237.82721421666665 -2014-08-25 11:00:00,0.0,1011.031667,229.94166669999998,78.695,17.30083333,1.2005,237.84063178333335 -2014-08-25 12:00:00,0.0,1010.411667,336.9583333,65.41166667,18.4125,1.415083333,237.83578609999998 -2014-08-25 13:00:00,0.0,1009.993333,275.64916669999997,67.50666667,18.09833333,1.2235833329999999,237.83132471666661 -2014-08-25 14:00:00,0.0,1009.565,167.4216667,69.77083333,17.19416667,1.0905833329999999,237.82515896666663 -2014-08-25 15:00:00,0.0,1009.006667,192.975,70.87916667,17.88666667,1.3769999999999998,237.82307031666664 -2014-08-25 16:00:00,0.0,1008.248333,66.74666667,71.66166667,17.7025,1.2491666670000001,237.81894309999996 -2014-08-25 17:00:00,0.0,1007.97,14.0,81.02916667,16.2625,0.403083333,237.81824129999998 -2014-08-25 18:00:00,2.446696512,1007.73,15.63683333,86.9,14.905,0.106,237.81657038333333 -2014-08-25 19:00:00,2.439180192,1007.426667,1.6086666669999998,93.25,14.36416667,0.19899999999999998,237.8158853 -2014-08-25 20:00:00,7.375746024,1006.733333,0.0,99.80833333,13.79833333,0.326416667,237.81413080000002 -2014-08-25 21:00:00,7.500724848,1006.403333,0.0,100.0,13.4525,0.74275,237.8158853 -2014-08-25 22:00:00,12.90267161,1005.543333,0.0,100.0,13.37,0.856083333,237.81623619999996 -2014-08-25 23:00:00,15.8111304,1004.586667,0.0,100.0,12.93916667,0.944916667,237.81657038333333 -2014-08-26 00:00:00,33.12052406,1003.401667,0.0,100.0,12.58666667,0.725333333,237.81824129999998 -2014-08-26 01:00:00,22.36254941,1002.163333,0.0,100.0,12.395,1.4065833330000002,237.81999579999993 -2014-08-26 02:00:00,48.63259296,1001.116667,0.0,100.0,12.1,1.1585,237.82271941666667 -2014-08-26 03:00:00,93.63949325,1000.37,0.0,100.0,11.96083333,1.310583333,237.8323606833333 -2014-08-26 04:00:00,37.75468529,999.9833332999999,0.0,100.0,11.90083333,1.130083333,237.84372301666664 -2014-08-26 05:00:00,24.10389854,999.7083332999998,0.5235833329999999,100.0,11.9325,1.140833333,237.8492036833333 -2014-08-26 06:00:00,7.938455928,999.8233332999998,8.442166667,100.0,12.0625,0.8301666670000001,237.85297999999997 -2014-08-26 07:00:00,7.627605384,1000.148333,47.66833333,100.0,12.40833333,0.6345,237.85473449999998 -2014-08-26 08:00:00,9.997108127999999,1000.838333,66.72166667,100.0,12.62583333,0.586833333,237.8574414 -2014-08-26 09:00:00,10.01027506,1001.421667,98.09083333,100.0,13.1975,0.48458333299999995,237.8574414 -2014-08-26 10:00:00,0.0,1001.921667,128.585,99.88333333,13.80083333,0.5598333329999999,237.85919590000006 -2014-08-26 11:00:00,0.0,1002.088333,144.125,98.625,14.36666667,0.83475,237.88014940000002 -2014-08-26 12:00:00,2.41414464,1002.325,146.375,97.3,15.15,0.337583333,237.90519668333332 -2014-08-26 13:00:00,13.32645701,1002.42,121.925,99.15,15.13833333,0.763,237.89629060000001 -2014-08-26 14:00:00,15.87645425,1002.541667,70.7275,100.0,14.47916667,1.8108333330000002,237.8876852666667 -2014-08-26 15:00:00,34.71055603,1002.413333,83.43333333,100.0,14.45333333,1.6953333330000002,237.886666 -2014-08-26 16:00:00,44.68201114,1002.48,68.79083333,100.0,14.5475,1.8575833330000002,237.89181248333338 -2014-08-26 17:00:00,9.032650656,1002.408333,42.56916667,100.0,14.5275,1.9065,237.90038438333332 -2014-08-26 18:00:00,8.758908072,1002.531667,16.91058333,100.0,14.18166667,1.7535833330000001,237.90521339999998 -2014-08-26 19:00:00,8.933766624,1002.965,0.742833333,100.0,13.58833333,1.7845,237.90797045000002 -2014-08-26 20:00:00,44.40470105,1003.608333,0.0,100.0,13.36583333,1.8280833330000001,237.91276601666664 -2014-08-26 21:00:00,58.93188106,1004.13,0.0,100.0,13.01583333,1.8659166669999998,237.92444579999997 -2014-08-26 22:00:00,29.59634902,1004.385,0.0,100.0,12.89166667,1.5235833330000002,237.9516151833333 -2014-08-26 23:00:00,8.688118487999999,1004.9,0.0,100.0,12.7425,1.33325,237.97256868333338 -2014-08-27 00:00:00,13.87372884,1005.341667,0.0,100.0,12.53333333,1.3539166669999998,237.98491690000003 -2014-08-27 01:00:00,5.260596072,1005.946667,0.0,100.0,12.5,1.0949166670000001,237.99420731666666 -2014-08-27 02:00:00,2.652056328,1006.326667,0.0,100.0,12.3775,0.506,238.00074064999998 -2014-08-27 03:00:00,0.0,1007.06,0.0,100.0,11.34666667,0.040583333,238.00556961666666 -2014-08-27 04:00:00,0.0,1007.793333,0.0,100.0,10.93083333,0.050583333,238.00759141666666 -2014-08-27 05:00:00,0.0,1008.73,2.8976666669999998,100.0,10.46666667,0.002416667,238.010031 -2014-08-27 06:00:00,2.4050227680000003,1009.806667,27.57666667,100.0,10.39,0.00275,238.0096801 -2014-08-27 07:00:00,0.0,1010.78,104.99,100.0,11.95416667,0.8490833329999999,238.00827649999997 -2014-08-27 08:00:00,0.0,1011.621667,123.69,98.54166667,13.22583333,1.572583333,238.00827649999997 -2014-08-27 09:00:00,0.0,1012.0633330000001,265.5416667,90.20833333,14.99333333,1.148916667,238.0089783 -2014-08-27 10:00:00,0.0,1012.646667,474.11666669999994,81.65666667,16.4425,1.65025,238.0079256 -2014-08-27 11:00:00,0.0,1012.791667,510.91666669999995,73.11583333,17.89333333,1.093833333,238.0062546833333 -2014-08-27 12:00:00,0.0,1012.7,346.1333333,65.36166667,18.46916667,1.43525,238.00556961666666 -2014-08-27 13:00:00,0.0,1012.866667,571.0416667000001,58.39,19.67,0.9531666670000001,238.0041660833333 -2014-08-27 14:00:00,0.0,1012.876667,547.4,53.50833333,20.355,0.738666667,238.00281259999997 -2014-08-27 15:00:00,0.0,1012.728333,475.74166669999994,50.48083333,20.39666667,0.717833333,238.00005556666667 -2014-08-27 16:00:00,0.0,1012.763333,336.4908333,49.6675,20.46083333,0.5478333329999999,237.99659674999998 -2014-08-27 17:00:00,0.0,1012.728333,37.7025,59.0925,19.63833333,0.34316666700000004,237.9945415 -2014-08-27 18:00:00,0.0,1012.871667,25.37083333,84.925,17.3575,0.022833332999999997,237.9918178833333 -2014-08-27 19:00:00,0.0,1013.285,2.935166667,95.38333333,13.52583333,0.045916667,237.98972920000003 -2014-08-27 20:00:00,0.0,1013.361667,0.0,99.19166667,11.12583333,0.10525,237.9877073833333 -2014-08-27 21:00:00,0.0,1013.49,0.0,100.0,9.705,0.00675,237.9863205 -2014-08-27 22:00:00,0.0,1013.553333,0.0,100.0,8.953333333,0.016833333,237.98491690000003 -2014-08-27 23:00:00,0.0,1013.748333,0.0,100.0,8.152333333,0.0,237.9838642 -2014-08-28 00:00:00,0.0,1013.71,0.0,100.0,7.651833333,0.0055,237.98114058333337 -2014-08-28 01:00:00,0.0,1013.501667,0.0,100.0,7.386083332999999,0.0,237.98045550000003 -2014-08-28 02:00:00,0.0,1013.416667,0.0,100.0,6.946833333,0.0,237.97704680000007 -2014-08-28 03:00:00,0.0,1013.333333,0.0,100.0,6.803583333,0.0,237.97564320000004 -2014-08-28 04:00:00,0.0,1013.241667,0.0,100.0,6.519166667,0.0,237.97360466666666 -2014-08-28 05:00:00,0.0,1013.505,3.573666667,100.0,6.714666667,0.008083333,237.97256868333332 -2014-08-28 06:00:00,0.0,1013.725,32.13,100.0,8.022166667,0.01275,237.97083089999998 -2014-08-28 07:00:00,0.0,1013.746667,80.4675,100.0,9.668333333,0.12225,237.96982835000003 -2014-08-28 08:00:00,0.0,1013.805,191.575,97.83333333,11.50583333,0.455166667,237.96847489999996 -2014-08-28 09:00:00,0.0,1013.693333,305.46666669999996,87.81666667,15.0825,0.5965,237.96847489999996 -2014-08-28 10:00:00,0.0,1013.338333,527.3166666999999,77.5375,18.31166667,1.3575833330000002,237.9660186333333 -2014-08-28 11:00:00,0.0,1012.995,388.9916667,73.62916667,20.42583333,1.7230833330000002,237.96428089999998 -2014-08-28 12:00:00,0.0,1012.728333,311.1833333,72.78416667,20.905,2.1109166669999997,237.9619081333333 -2014-08-28 13:00:00,0.0,1012.461667,470.15833330000004,68.40833333,22.445,2.353333333,237.9601704 -2014-08-28 14:00:00,0.0,1012.095,385.8083333,64.08916667,22.36083333,1.9153333330000002,237.95814851666668 -2014-08-28 15:00:00,0.0,1011.753333,293.0083333,64.53,22.5125,2.559416667,237.9560599 -2014-08-28 16:00:00,0.0,1011.5616669999999,78.49166667,72.26416667,21.77666667,1.236083333,237.95403801666666 -2014-08-28 17:00:00,0.0,1011.43,50.8225,78.99333333,20.71166667,0.48225,237.95605989999999 -2014-08-28 18:00:00,0.0,1011.461667,30.71,80.6825,20.08333333,0.281583333,237.9547231 -2014-08-28 19:00:00,0.0,1011.493333,3.637333333,84.03583333,19.24583333,0.34333333299999996,237.95193270000001 -2014-08-28 20:00:00,0.0,1011.625,0.0,98.41666667,17.43166667,0.032166667,237.94984401666662 -2014-08-28 21:00:00,0.0,1011.54,0.0,99.46666667,16.64583333,0.024083333,237.94884146666666 -2014-08-28 22:00:00,0.0,1011.3083330000001,0.0,100.0,14.79583333,0.063416667,237.94884146666666 -2014-08-28 23:00:00,0.0,1011.146667,0.0,100.0,13.69166667,0.007333333,237.94815638333333 -2014-08-29 00:00:00,0.0,1010.878333,0.0,100.0,12.91416667,0.012166666999999999,237.94778876666666 -2014-08-29 01:00:00,0.0,1010.7,0.0,100.0,12.48333333,0.004583333,237.9474713 -2014-08-29 02:00:00,33.80126753,1010.8083330000001,0.0,100.0,13.26083333,0.107416667,237.94606769999996 -2014-08-29 03:00:00,2.4050227680000003,1010.961667,0.0,100.0,14.09083333,0.132666667,237.9433440833333 -2014-08-29 04:00:00,0.0,1010.97,0.0,100.0,14.3225,0.26725,237.94336080000002 -2014-08-29 05:00:00,0.0,1011.395,1.32125,100.0,14.51083333,0.093166667,237.94165645 -2014-08-29 06:00:00,0.0,1011.638333,21.76675,100.0,14.95666667,0.1125,237.94062046666662 -2014-08-29 07:00:00,0.0,1012.038333,58.0125,100.0,15.36833333,0.198,237.9399521 -2014-08-29 08:00:00,0.0,1012.383333,136.5791667,96.38333333,16.3425,0.5125,237.93960119999997 -2014-08-29 09:00:00,0.0,1012.6883330000001,240.0166667,89.28333333,18.1225,0.344916667,237.93819759999994 -2014-08-29 10:00:00,0.0,1012.836667,381.4416667,82.36166667,19.9025,0.504083333,237.93784669999994 -2014-08-29 11:00:00,0.0,1012.795,443.34166669999996,77.9725,20.56916667,0.97575,237.9361757833333 -2014-08-29 12:00:00,0.0,1012.766667,556.3,70.98833333,21.22333333,0.919,237.93478889999994 -2014-08-29 13:00:00,0.0,1012.445,595.2583333,65.40416667,22.34916667,0.7453333329999999,237.93268349999997 -2014-08-29 14:00:00,0.0,1011.85,521.6583333000001,60.0675,23.68583333,0.710666667,237.9312966166667 -2014-08-29 15:00:00,0.0,1011.361667,451.58333330000005,58.0925,23.80166667,0.950583333,237.92857299999994 -2014-08-29 16:00:00,0.0,1011.375,120.9975,63.505,22.8575,0.664416667,237.92686865 -2014-08-29 17:00:00,0.0,1011.483333,76.025,81.70916667,19.98666667,1.666333333,237.9237607 -2014-08-29 18:00:00,0.0,1011.905,24.6775,86.25833333,19.45416667,1.08775,237.92340980000003 -2014-08-29 19:00:00,0.0,1012.168333,1.516,92.275,18.22333333,0.919333333,237.9214047 -2014-08-29 20:00:00,0.0,1012.636667,0.0,94.89166667,17.35166667,0.18333333300000001,237.91965020000006 -2014-08-29 21:00:00,0.0,1012.943333,0.0,98.15833333,16.04833333,0.000666667,237.91929930000006 -2014-08-29 22:00:00,0.0,1013.171667,0.0,100.0,14.81833333,0.046333333,237.91824665000004 -2014-08-29 23:00:00,0.0,1013.213333,0.0,100.0,14.08166667,0.020333333000000002,237.91619140000003 -2014-08-30 00:00:00,0.0,1013.331667,0.0,100.0,13.43666667,0.002833333,237.91518880000004 -2014-08-30 01:00:00,0.0,1013.413333,0.0,100.0,13.405,0.041166667000000004,237.91448703333336 -2014-08-30 02:00:00,0.0,1013.5633330000001,0.0,100.0,13.30333333,0.031,237.9130835 -2014-08-30 03:00:00,0.0,1013.515,0.0,100.0,12.84416667,0.00325,237.91241513333333 -2014-08-30 04:00:00,0.0,1013.4366669999999,0.0,100.0,11.19666667,0.0005,237.91141258333332 -2014-08-30 05:00:00,0.0,1013.611667,2.6968333330000003,100.0,11.60416667,0.053416667,237.91072749999998 -2014-08-30 06:00:00,0.0,1013.916667,41.21666667,100.0,11.97166667,0.004583333,237.9100257 -2014-08-30 07:00:00,0.0,1014.083333,68.21333333,100.0,13.97083333,0.235833333,237.90897300000003 -2014-08-30 08:00:00,0.0,1014.32,119.355,95.925,15.32916667,0.176916667,237.9093239 -2014-08-30 09:00:00,0.0,1014.283333,268.53333330000004,83.265,17.93083333,0.446,237.90932390000003 -2014-08-30 10:00:00,0.0,1014.211667,510.11666669999994,70.89333333,20.235,0.5985,237.9083046333333 -2014-08-30 11:00:00,0.0,1013.891667,404.55,68.675,20.62583333,0.80025,237.90660028333335 -2014-08-30 12:00:00,0.0,1013.711667,388.1416667,69.03416667,20.30916667,0.8355,237.90451159999998 -2014-08-30 13:00:00,0.0,1013.371667,191.4083333,69.53833333,20.59,0.589,237.9027571 -2014-08-30 14:00:00,0.0,1013.111667,158.3416667,72.63916667,20.145,0.29875,237.90142036666668 -2014-08-30 15:00:00,0.0,1012.865,220.45,69.5825,21.61083333,0.4045,237.900752 -2014-08-30 16:00:00,0.0,1012.858333,67.3125,75.1325,20.29666667,0.211666667,237.89864660000003 -2014-08-30 17:00:00,4.831310616000001,1012.633333,30.34666667,92.55833333,17.745,0.08866666699999999,237.8973098666667 -2014-08-30 18:00:00,2.425215504,1012.555,19.13925,96.03333333,16.71833333,0.06175,237.89664150000002 -2014-08-30 19:00:00,2.4050227680000003,1012.511667,0.6545833329999999,97.98333333,16.1375,0.031916667,237.89629060000004 -2014-08-30 20:00:00,2.409616224,1012.27,0.0,96.5,15.6425,0.04175,237.8945361 -2014-08-30 21:00:00,0.0,1011.8116669999999,0.0,95.29166667,15.485,0.037583333,237.89488700000004 -2014-08-30 22:00:00,2.4058302000000005,1011.725,0.0,91.43333333,15.31083333,0.0635,237.89558880000004 -2014-08-30 23:00:00,0.0,1011.86,0.0,92.08333333,15.59166667,0.488,237.89488700000004 -2014-08-31 00:00:00,2.4050227680000003,1011.623333,0.0,96.56666667,15.3475,0.9835,237.892531 -2014-08-31 01:00:00,0.0,1011.03,0.0,98.48333333,14.55833333,0.0365,237.89319936666666 -2014-08-31 02:00:00,0.0,1010.86,0.0,98.375,14.52333333,0.0525,237.89353355 -2014-08-31 03:00:00,0.0,1010.37,0.0,99.23333333,14.29833333,0.259,237.89353355000003 -2014-08-31 04:00:00,0.0,1010.221667,0.0,99.4,14.10583333,0.08175,237.89319936666666 -2014-08-31 05:00:00,0.0,1010.375,0.5591666670000001,99.8,13.81166667,0.204916667,237.8918292 -2014-08-31 06:00:00,2.4782050559999997,1010.446667,8.112083333,99.85833333,13.85416667,0.3135,237.89042560000004 -2014-08-31 07:00:00,0.0,1010.37,47.53,99.2,14.2425,0.15158333300000001,237.88942304999998 -2014-08-31 08:00:00,0.0,1010.253333,105.6325,95.35833333,15.415,0.6658333329999999,237.88842049999997 -2014-08-31 09:00:00,0.0,1010.261667,257.975,83.74166667,17.265,0.504083333,237.88771870000002 -2014-08-31 10:00:00,0.0,1010.03,241.29166669999998,83.11916667,17.7175,0.48200000000000004,237.88631510000002 -2014-08-31 11:00:00,0.0,1009.741667,346.55,78.77916667,17.21833333,1.94025,237.88596420000002 -2014-08-31 12:00:00,0.0,1009.5616669999999,320.6083333,74.6,18.7025,0.862833333,237.8845606 -2014-08-31 13:00:00,0.0,1009.483333,247.56666669999998,69.2925,18.28333333,2.8515,237.88320715 -2014-08-31 14:00:00,2.665583928,1009.41,149.5,76.32166667,16.51083333,2.203416667,237.88220460000002 -2014-08-31 15:00:00,0.0,1009.765,194.7166667,79.39666667,15.59833333,1.33075,237.8811519 -2014-08-31 16:00:00,0.0,1009.896667,181.5491667,77.08,17.35666667,2.50875,237.88009920000005 -2014-08-31 17:00:00,0.0,1010.013333,62.59666667,83.88916667,15.84916667,1.5109166669999998,237.87842828333336 -2014-08-31 18:00:00,0.0,1010.366667,28.69733333,89.25,15.24666667,1.19075,237.87943083333334 -2014-08-31 19:00:00,0.0,1010.91,1.1161666670000001,92.74166667,14.33416667,0.241416667,237.8780941 -2014-08-31 20:00:00,0.0,1011.55,0.0,94.725,13.54916667,0.37075,237.87633968333333 -2014-08-31 21:00:00,0.0,1011.91,0.0,97.59166667,13.21583333,0.201583333,237.8743178 -2014-08-31 22:00:00,0.0,1012.343333,0.0,99.84166667,12.30333333,0.167833333,237.8739836 -2014-08-31 23:00:00,0.0,1012.556667,0.0,99.35,11.53333333,0.1015,237.87363271666666 -2014-01-09 00:00:00,0.0,1012.981667,0.0,100.0,10.85083333,0.128333333,238.05601800000002 -2014-01-09 01:00:00,0.0,1013.428333,0.0,99.66666667,11.09833333,0.09733333300000001,238.05601800000002 -2014-01-09 02:00:00,0.0,1013.471667,0.0,99.68333333,11.14333333,0.182083333,238.05536000000004 -2014-01-09 03:00:00,0.0,1013.741667,0.0,100.0,10.68,0.43075,238.05536000000004 -2014-01-09 04:00:00,0.0,1013.926667,0.0,100.0,10.59416667,0.38141666700000004,238.055031 -2014-01-09 05:00:00,0.0,1014.601667,1.736,100.0,10.52833333,0.287333333,238.05536000000004 -2014-01-09 06:00:00,0.0,1015.0616669999999,37.50166667,98.80833333,11.245,0.1695,238.05536000000004 -2014-01-09 07:00:00,0.0,1015.246667,84.57916667,94.61666667,13.2425,0.541,238.05568900000003 -2014-01-09 08:00:00,0.0,1015.626667,154.1008333,89.15833333,14.09,0.9996666670000001,238.05437300000003 -2014-01-09 09:00:00,0.0,1016.065,197.725,85.575,15.18833333,1.26325,238.05536000000004 -2014-01-09 10:00:00,0.0,1016.293333,227.2583333,84.10833333,15.36666667,1.28125,238.05601800000002 -2014-01-09 11:00:00,0.0,1016.253333,256.65,81.3775,16.71916667,0.730916667,238.057005 -2014-01-09 12:00:00,0.0,1016.271667,369.0583333,77.0725,18.16333333,0.8623333329999999,238.05799199999998 -2014-01-09 13:00:00,0.0,1016.065,250.7666667,77.50833333,17.05333333,0.5845,238.057334 -2014-01-09 14:00:00,0.0,1016.065,218.7833333,78.78,17.15583333,0.845166667,238.057334 -2014-01-09 15:00:00,0.0,1016.228333,285.3833333,76.5075,17.73833333,0.556333333,238.05766299999996 -2014-01-09 16:00:00,0.0,1015.965,132.4,77.32666667,17.36416667,0.7516666670000001,238.06021666666666 -2014-01-09 17:00:00,0.0,1015.896667,50.27083333,79.60166667,16.70666667,0.6034166670000001,238.06566866666662 -2014-01-09 18:00:00,0.0,1015.886667,16.47058333,84.73333333,16.23333333,0.320583333,238.068567 -2014-01-09 19:00:00,0.0,1016.276667,0.913666667,94.34166667,15.13333333,0.0455,238.07210766666665 -2014-01-09 20:00:00,0.0,1016.426667,0.0,97.85,14.355,0.11375,238.07466133333332 -2014-01-09 21:00:00,0.0,1016.523333,0.0,99.70833333,13.47833333,0.1395,238.07693300000003 -2014-01-09 22:00:00,0.0,1016.483333,0.0,100.0,11.40333333,0.0,238.078907 -2014-01-09 23:00:00,0.0,1016.4,0.0,100.0,10.95,0.016083333000000002,238.08017600000002 -2014-02-09 00:00:00,0.0,1016.463333,0.0,100.0,11.12583333,0.15816666699999998,238.0466523 -2014-02-09 01:00:00,0.0,1016.355,0.0,100.0,11.40583333,0.149166667,238.04614469999999 -2014-02-09 02:00:00,0.0,1016.361667,0.0,100.0,10.84583333,0.095333333,238.04639849999998 -2014-02-09 03:00:00,0.0,1016.206667,0.0,100.0,11.57666667,0.061166667,238.04665229999998 -2014-02-09 04:00:00,0.0,1016.36,0.0,100.0,11.87166667,0.334333333,238.04690609999997 -2014-02-09 05:00:00,0.0,1016.488333,0.84425,100.0,11.76166667,0.318916667,238.0466523 -2014-02-09 06:00:00,0.0,1016.781667,25.1235,100.0,11.93,0.257166667,238.0469061 -2014-02-09 07:00:00,0.0,1017.016667,74.62333333,100.0,12.90083333,0.7426666670000001,238.04665229999998 -2014-02-09 08:00:00,0.0,1017.126667,141.525,97.425,14.3175,0.730083333,238.04566129999998 -2014-02-09 09:00:00,0.0,1017.32,253.0783333,86.44166667,17.2075,0.596666667,238.04590299999998 -2014-02-09 10:00:00,0.0,1017.088333,341.0833333,76.69583333,17.82833333,0.909166667,238.0456613 -2014-02-09 11:00:00,0.0,1016.998333,516.125,67.21,18.86333333,1.7509166669999998,238.04566129999998 -2014-02-09 12:00:00,0.0,1017.151667,143.06666669999998,73.3725,18.03416667,2.046333333,238.04591509999992 -2014-02-09 13:00:00,0.0,1017.28,140.3583333,79.88583333,17.35583333,0.9754166670000001,238.04541960000003 -2014-02-09 14:00:00,0.0,1017.203333,254.70833330000002,76.91833333,18.16333333,1.249916667,238.04469449999996 -2014-02-09 15:00:00,0.0,1017.095,279.225,75.45166667,18.84916667,1.46,238.04444069999997 -2014-02-09 16:00:00,0.0,1017.02,163.4916667,76.72166667,18.86916667,2.0219166669999997,238.04367929999998 -2014-02-09 17:00:00,0.0,1017.096667,63.84583333,81.8325,18.4375,1.573166667,238.04367929999998 -2014-02-09 18:00:00,0.0,1017.475,22.97716667,85.89166667,18.0225,1.57025,238.04317169999993 -2014-02-09 19:00:00,0.0,1018.14,1.093916667,95.325,16.58416667,1.222416667,238.04318379999995 -2014-02-09 20:00:00,0.0,1018.428333,0.0,97.98333333,16.14,0.839666667,238.04292999999996 -2014-02-09 21:00:00,0.0,1018.576667,0.0,97.26666667,15.935,1.233166667,238.0422049 -2014-02-09 22:00:00,0.0,1018.57,0.0,99.13333333,15.69083333,1.873833333,238.0417215 -2014-02-09 23:00:00,2.94695844,1018.605,0.0,99.56666667,15.35833333,2.078583333,238.0412139333333 -2014-03-09 00:00:00,0.0,1018.556667,0.0,99.625,14.33916667,1.7775,238.00348359999998 -2014-03-09 01:00:00,0.0,1018.325,0.0,99.75833333,13.765,1.777916667,238.00348359999998 -2014-03-09 02:00:00,0.0,1018.451667,0.0,99.84166667,13.20916667,1.9211666669999998,238.00300019999995 -2014-03-09 03:00:00,0.0,1018.211667,0.0,100.0,12.21833333,1.102166667,238.00300019999995 -2014-03-09 04:00:00,0.0,1018.303333,0.0,100.0,11.77166667,1.25675,238.00300019999995 -2014-03-09 05:00:00,0.0,1018.53,0.719916667,100.0,11.01416667,0.632916667,238.0027464166666 -2014-03-09 06:00:00,0.0,1018.633333,20.10233333,100.0,11.20416667,0.671416667,238.0027464166666 -2014-03-09 07:00:00,0.0,1018.605,58.135,99.75,12.3175,1.973416667,238.00173128333333 -2014-03-09 08:00:00,0.0,1018.663333,120.90833329999998,96.325,13.5,2.74675,238.00173128333333 -2014-03-09 09:00:00,0.0,1018.836667,174.1416667,90.05,14.4175,3.85525,238.0027464166666 -2014-03-09 10:00:00,0.0,1018.5583330000001,110.34166670000002,90.01666667,14.63166667,3.464333333,238.0027464166666 -2014-03-09 11:00:00,0.0,1018.3083330000001,104.325,90.29166667,14.7675,3.241083333,238.00348359999998 -2014-03-09 12:00:00,0.0,1017.92,208.68333330000002,87.025,15.7775,3.68025,238.00300019999995 -2014-03-09 13:00:00,0.0,1017.57,189.6083333,84.86666667,16.83583333,3.711083333,238.00348359999998 -2014-03-09 14:00:00,0.0,1017.378333,177.08333330000002,80.52,17.35666667,3.843333333,238.00300019999995 -2014-03-09 15:00:00,0.0,1017.065,160.85,79.45083333,17.34,4.1224166669999995,238.00300019999995 -2014-03-09 16:00:00,0.0,1016.828333,93.48,79.02583333,17.30916667,4.23975,238.00348359999998 -2014-03-09 17:00:00,0.0,1016.548333,34.795,81.2575,16.96583333,3.75975,238.00322981666667 -2014-03-09 18:00:00,0.0,1016.8,17.07316667,85.96666667,16.7425,1.4393333330000002,238.00300019999995 -2014-03-09 19:00:00,0.0,1017.006667,0.888833333,87.80833333,16.57583333,2.062083333,238.0024926333333 -2014-03-09 20:00:00,0.0,1017.11,0.0,85.33333333,16.2775,3.35225,238.0014775 -2014-03-09 21:00:00,0.0,1017.09,0.0,87.175,15.91416667,2.686416667,238.00173128333336 -2014-03-09 22:00:00,0.0,1016.893333,0.0,90.675,15.56166667,1.242666667,238.0014775 -2014-03-09 23:00:00,0.0,1016.556667,0.0,95.76666667,14.9475,0.21808333300000002,238.00198506666666 -2014-04-09 00:00:00,0.0,1016.056667,0.0,98.61666667,14.66916667,0.34883333299999997,237.9056412 -2014-04-09 01:00:00,0.0,1015.761667,0.0,99.86666667,14.46666667,0.253083333,237.9056412 -2014-04-09 02:00:00,0.0,1015.511667,0.0,100.0,14.55416667,0.0545,237.9056412 -2014-04-09 03:00:00,0.0,1015.426667,0.0,100.0,14.59416667,0.09116666699999999,237.9056412 -2014-04-09 04:00:00,0.0,1015.383333,0.0,99.96666667,15.23833333,1.170666667,237.90530701666668 -2014-04-09 05:00:00,0.0,1015.496667,0.610916667,97.25833333,14.97833333,1.082083333,237.9056412 -2014-04-09 06:00:00,0.0,1015.393333,19.36275,98.325,14.03166667,1.283333333,237.90497283333335 -2014-04-09 07:00:00,0.0,1015.36,63.2425,97.83333333,14.1175,1.6355,237.90497283333332 -2014-04-09 08:00:00,0.0,1015.41,110.05833329999999,94.86666667,15.24666667,1.2308333329999999,237.90397028333334 -2014-04-09 09:00:00,0.0,1015.553333,181.9,89.65833333,16.74583333,1.7029166669999998,237.9036361 -2014-04-09 10:00:00,0.0,1015.35,190.65,85.225,17.8725,1.9435,237.9032852 -2014-04-09 11:00:00,0.0,1015.001667,155.04166669999998,83.59166667,18.1275,2.254083333,237.9022325 -2014-04-09 12:00:00,0.0,1014.68,132.475,84.45,18.26666667,2.601833333,237.90188160000002 -2014-04-09 13:00:00,0.0,1014.52,173.79166669999998,84.41666667,18.68,2.44625,237.9018816 -2014-04-09 14:00:00,0.0,1014.008333,273.3583333,82.56666667,19.3425,2.81275,237.9015307 -2014-04-09 15:00:00,0.0,1013.556667,270.55,80.55166667,20.10916667,2.7745,237.9015307 -2014-04-09 16:00:00,0.0,1013.081667,138.0916667,81.78333333,20.38,2.308916667,237.9015307 -2014-04-09 17:00:00,0.0,1012.826667,53.08583333,86.225,20.4725,2.09025,237.9015307 -2014-04-09 18:00:00,0.0,1012.81,14.31441667,95.38333333,18.99416667,0.852833333,237.89952560000003 -2014-04-09 19:00:00,0.0,1012.821667,1.1985,99.41666667,16.46833333,0.16116666699999999,237.89985978333337 -2014-04-09 20:00:00,0.0,1012.675,0.0,100.0,15.37166667,0.0685,237.89952560000003 -2014-04-09 21:00:00,0.0,1012.505,0.0,100.0,15.13916667,0.12091666699999999,237.89952560000003 -2014-04-09 22:00:00,0.0,1012.45,0.0,100.0,16.26583333,0.660166667,237.89952560000003 -2014-04-09 23:00:00,0.0,1012.365,0.0,100.0,16.80166667,0.596916667,237.89882379999997 -2014-05-09 00:00:00,0.0,1012.166667,0.0,100.0,16.685,0.913833333,237.82839395 -2014-05-09 01:00:00,0.0,1011.856667,0.0,100.0,15.66083333,0.08008333299999999,237.8294466 -2014-05-09 02:00:00,0.0,1011.528333,0.0,100.0,14.7425,0.072416667,237.8294466 -2014-05-09 03:00:00,0.0,1011.226667,0.0,100.0,14.53916667,0.010833333,237.8304993 -2014-05-09 04:00:00,0.0,1011.033333,0.0,100.0,14.66666667,0.045666667,237.8304993 -2014-05-09 05:00:00,0.0,1011.0,1.398333333,100.0,14.47166667,0.000583333,237.8294466 -2014-05-09 06:00:00,0.0,1011.105,22.24775,100.0,14.50333333,0.015833333,237.8294466 -2014-05-09 07:00:00,0.0,1011.298333,89.51583333,100.0,15.61166667,0.7413333329999999,237.8304993 -2014-05-09 08:00:00,0.0,1011.363333,177.44166669999998,95.09166667,17.8775,0.850583333,237.83155200000002 -2014-05-09 09:00:00,0.0,1011.295,236.06666669999998,88.95,20.20583333,0.651833333,237.83155200000002 -2014-05-09 10:00:00,0.0,1011.208333,281.09166669999996,83.4375,21.8675,0.694916667,237.83014839999998 -2014-05-09 11:00:00,0.0,1011.105,181.55,84.98333333,22.33583333,0.7928333329999999,237.82874483333333 -2014-05-09 12:00:00,0.0,1010.918333,197.5333333,84.95,21.03416667,0.5379166670000001,237.82734130000003 -2014-05-09 13:00:00,0.0,1010.513333,240.825,80.48916667,22.51083333,0.464916667,237.82600449999998 -2014-05-09 14:00:00,0.0,1010.073333,331.21666669999996,76.8275,23.38083333,0.314583333,237.82463433333336 -2014-05-09 15:00:00,0.0,1009.706667,273.4,75.38333333,24.50666667,0.414083333,237.82155979999996 -2014-05-09 16:00:00,0.0,1009.4416669999999,203.1166667,75.68916667,24.67333333,0.21641666699999998,237.81982206666666 -2014-05-09 17:00:00,0.0,1009.235,71.5225,88.04166667,23.0975,0.181416667,237.81912030000004 -2014-05-09 18:00:00,0.0,1009.4366669999999,22.85416667,94.55,20.915,0.036916667,237.81811774999997 -2014-05-09 19:00:00,0.0,1009.591667,0.986166667,98.76666667,18.11083333,0.10075,237.8171152 -2014-05-09 20:00:00,0.0,1009.543333,0.0,100.0,16.37416667,0.192,237.8171152 -2014-05-09 21:00:00,0.0,1009.611667,0.0,100.0,15.19833333,0.10066666699999999,237.8171152 -2014-05-09 22:00:00,0.0,1009.696667,0.0,100.0,14.31166667,0.017416667,237.8171152 -2014-05-09 23:00:00,0.0,1009.57,0.0,100.0,13.6575,0.013333333000000001,237.8171152 -2014-06-09 00:00:00,0.0,1009.398333,0.0,100.0,13.02333333,0.003416667,237.6618520333333 -2014-06-09 01:00:00,0.0,1009.218333,0.0,100.0,12.51416667,0.029833332999999997,237.66462579999998 -2014-06-09 02:00:00,0.0,1009.1916669999999,0.0,100.0,13.08083333,0.046083333,237.66698180000003 -2014-06-09 03:00:00,0.0,1009.115,0.0,100.0,13.82166667,0.017833333,237.6687363 -2014-06-09 04:00:00,0.0,1009.21,0.0,100.0,13.98833333,0.0016666670000000001,237.6707414 -2014-06-09 05:00:00,0.0,1009.198333,0.418333333,100.0,13.77083333,0.108166667,237.67214500000003 -2014-06-09 06:00:00,0.0,1009.423333,15.40991667,100.0,13.76166667,0.048083333,237.67384934999998 -2014-06-09 07:00:00,0.0,1009.548333,71.14166667,100.0,14.2425,0.529083333,237.6748519 -2014-06-09 08:00:00,0.0,1009.626667,130.4333333,100.0,15.11666667,0.510416667,237.67349845 -2014-06-09 09:00:00,0.0,1009.651667,300.875,99.25,16.38166667,0.859916667,237.66494326666665 -2014-06-09 10:00:00,0.0,1009.486667,435.0166666999999,88.45,18.6475,0.782166667,237.6566888333333 -2014-06-09 11:00:00,0.0,1009.276667,427.7333333000001,81.51333333,22.92833333,0.603666667,237.65084055 -2014-06-09 12:00:00,0.0,1008.868333,303.9033333,74.89583333,25.295,0.526,237.64741513333334 -2014-06-09 13:00:00,0.0,1008.503333,254.2583333,81.25333333,23.78,0.781666667,237.6450257 -2014-06-09 14:00:00,0.0,1007.988333,376.2916667,68.40333333,25.68083333,0.966,237.6426362666667 -2014-06-09 15:00:00,0.0,1007.791667,343.09166669999996,67.94916667,24.085,0.7230833329999999,237.64021339999996 -2014-06-09 16:00:00,0.0,1007.443333,208.59,57.66,25.95166667,1.11725,237.63777388333332 -2014-06-09 17:00:00,0.0,1007.478333,45.17666667,79.14583333,24.56833333,0.579416667,237.635752 -2014-06-09 18:00:00,0.0,1007.991667,11.92266667,90.23333333,21.40666667,0.141083333,237.6339975833333 -2014-06-09 19:00:00,0.0,1008.753333,0.33616666700000003,89.98333333,18.71416667,0.145,237.63434846666664 -2014-06-09 20:00:00,28.52884044,1008.66,0.0,98.01666667,18.72333333,0.5770000000000001,237.6367546 -2014-06-09 21:00:00,0.0,1008.796667,0.0,100.0,17.6575,0.1745,237.63916073333328 -2014-06-09 22:00:00,0.0,1008.9333330000001,0.0,100.0,17.12666667,0.2625,237.6587775 -2014-06-09 23:00:00,0.0,1009.0616669999999,0.0,100.0,16.6925,0.161083333,237.8026782833333 -2014-07-09 00:00:00,0.0,1008.998333,0.0,100.0,16.51,0.166333333,237.64021341666668 -2014-07-09 01:00:00,2.414904624,1008.906667,0.0,100.0,15.75416667,0.0395,237.64708095 -2014-07-09 02:00:00,0.0,1009.103333,0.0,100.0,15.65666667,0.09883333300000001,237.6528958 -2014-07-09 03:00:00,0.0,1009.116667,0.0,100.0,16.18583333,0.261916667,237.65772481666662 -2014-07-09 04:00:00,0.0,1009.151667,0.0,100.0,15.91416667,0.26258333300000003,237.66323891666664 -2014-07-09 05:00:00,0.0,1009.295,1.175333333,100.0,15.59166667,0.41475,237.67523621666666 -2014-07-09 06:00:00,0.0,1009.708333,11.88133333,100.0,15.72,0.45341666700000005,237.68487746666668 -2014-07-09 07:00:00,0.0,1010.173333,26.5275,100.0,15.965,0.511083333,237.69343265 -2014-07-09 08:00:00,0.0,1010.508333,88.03916667,100.0,16.595,0.575,237.70168706666672 -2014-07-09 09:00:00,0.0,1011.001667,160.775,97.625,18.56833333,0.831583333,237.73259933333335 -2014-07-09 10:00:00,0.0,1011.0583330000001,215.33333330000002,91.88333333,20.22583333,1.042916667,237.76556685 -2014-07-09 11:00:00,0.0,1010.868333,337.03333330000004,84.30833333,21.49916667,1.159333333,237.79236861666666 -2014-07-09 12:00:00,0.0,1010.701667,282.03333330000004,82.69666667,20.94166667,1.5840833330000001,237.8119185666667 -2014-07-09 13:00:00,0.0,1010.611667,339.375,79.5525,21.57833333,1.553666667,237.8222448833333 -2014-07-09 14:00:00,0.0,1010.351667,383.725,72.99833333,22.56666667,1.158833333,237.8273746666667 -2014-07-09 15:00:00,0.0,1010.0666669999999,235.625,71.88166667,23.13,0.774,237.83120109999996 -2014-07-09 16:00:00,0.0,1010.08,191.08333330000002,71.04916667,22.70166667,1.258166667,237.8335571 -2014-07-09 17:00:00,0.0,1010.28,64.49833333,74.20166667,21.59166667,1.311833333,237.8335571 -2014-07-09 18:00:00,0.0,1010.648333,18.76566667,82.29083333,19.94083333,0.421333333,237.83390800000004 -2014-07-09 19:00:00,0.0,1011.3116669999999,0.5770000000000001,95.6,17.59083333,0.266,237.8335571 -2014-07-09 20:00:00,0.0,1011.71,0.0,99.45833333,16.01,0.090083333,237.83288873333336 -2014-07-09 21:00:00,0.0,1011.74,0.0,100.0,15.07416667,0.044000000000000004,237.83155200000002 -2014-07-09 22:00:00,0.0,1011.788333,0.0,100.0,14.49083333,0.029666667,237.8308502 -2014-07-09 23:00:00,0.0,1011.95,0.0,100.0,14.76416667,0.022833332999999997,237.8294466 -2014-08-09 00:00:00,0.0,1011.85,0.0,100.0,14.475,0.0,237.4027571 -2014-08-09 01:00:00,0.0,1011.963333,0.0,100.0,12.79083333,0.017,237.4038098 -2014-08-09 02:00:00,0.0,1011.898333,0.0,100.0,11.91666667,0.004333333,237.4045116 -2014-08-09 03:00:00,0.0,1011.726667,0.0,100.0,11.4375,0.0,237.40279053333333 -2014-08-09 04:00:00,0.0,1011.836667,0.0,100.0,10.99083333,0.0,237.40175455 -2014-08-09 05:00:00,0.0,1012.28,0.5531666670000001,100.0,11.31416667,0.0,237.40108618333338 -2014-08-09 06:00:00,0.0,1012.555,19.56808333,100.0,11.61,0.003166667,237.400752 -2014-08-09 07:00:00,0.0,1012.958333,68.73,100.0,13.175,0.05425,237.40142036666668 -2014-08-09 08:00:00,0.0,1013.218333,154.94166669999998,97.96666667,15.45416667,0.18883333300000002,237.39969929999998 -2014-08-09 09:00:00,0.0,1013.556667,315.2583333,86.075,17.78833333,1.045083333,237.3993484 -2014-08-09 10:00:00,0.0,1013.56,278.5,83.01666667,18.63583333,1.6008333330000002,237.39797823333333 -2014-08-09 11:00:00,0.0,1013.52,398.5583333,74.16833333,20.62416667,0.9875,237.3945361 -2014-08-09 12:00:00,0.0,1013.245,530.65,66.0225,21.99666667,0.9125833329999999,237.39181248333338 -2014-08-09 13:00:00,0.0,1012.886667,487.05,63.7275,22.77583333,1.27725,237.38908886666664 -2014-08-09 14:00:00,0.0,1012.575,275.3916667,64.57916667,23.00916667,0.513416667,237.3880696 -2014-08-09 15:00:00,0.0,1012.4,221.08333330000002,65.345,22.69916667,0.804416667,237.38561330000002 -2014-08-09 16:00:00,0.0,1012.363333,145.3,64.645,22.61,0.596,237.3842097 -2014-08-09 17:00:00,0.0,1012.475,63.00833333,67.255,22.26916667,1.6511666669999998,237.38320715 -2014-08-09 18:00:00,0.0,1012.783333,21.99708333,86.0775,20.68,0.487833333,237.3825387833334 -2014-08-09 19:00:00,0.0,1013.461667,0.36058333299999995,91.13333333,18.77583333,0.9640000000000001,237.38150280000005 -2014-08-09 20:00:00,0.0,1013.973333,0.0,95.59166667,17.91333333,1.21275,237.38009920000005 -2014-08-09 21:00:00,0.0,1014.305,0.0,98.825,14.94833333,0.004666667,237.3797650166667 -2014-08-09 22:00:00,0.0,1014.493333,0.0,99.99166667,13.4825,0.0055,237.38150280000002 -2014-08-09 23:00:00,0.0,1014.581667,0.0,100.0,12.69583333,0.12633333300000002,237.38220460000002 -2014-09-09 00:00:00,0.0,1014.651667,0.0,100.0,11.89416667,0.011083333,237.78114660000003 -2014-09-09 01:00:00,0.0,1014.5666669999999,0.0,100.0,11.52083333,0.004083333,237.78184840000003 -2014-09-09 02:00:00,0.0,1014.403333,0.0,100.0,10.52916667,0.019583333,237.78255019999997 -2014-09-09 03:00:00,0.0,1014.478333,0.0,100.0,9.625,0.01825,237.78184840000003 -2014-09-09 04:00:00,0.0,1014.355,0.0,100.0,8.9875,0.003416667,237.78255019999997 -2014-09-09 05:00:00,0.0,1014.513333,0.955,100.0,8.232000000000001,0.0,237.78255019999997 -2014-09-09 06:00:00,0.0,1015.035,27.861,100.0,8.721666667000001,0.008416667,237.78255020000003 -2014-09-09 07:00:00,0.0,1015.361667,70.53083333,100.0,10.6925,0.04275,237.78149750000003 -2014-09-09 08:00:00,0.0,1015.571667,142.5,95.28333333,13.455,0.593666667,237.78114660000003 -2014-09-09 09:00:00,0.0,1015.8116669999999,262.025,85.86666667,14.78583333,1.2175833329999999,237.78149750000003 -2014-09-09 10:00:00,0.0,1015.8,326.7666667,80.08,16.35416667,1.35575,237.78114660000003 -2014-09-09 11:00:00,0.0,1015.645,368.6833333,73.64833333,17.47083333,1.609083333,237.78014405 -2014-09-09 12:00:00,0.0,1015.385,526.925,66.39416667,18.75583333,1.206083333,237.7787906 -2014-09-09 13:00:00,0.0,1014.956667,475.35,62.35583333,19.6225,1.209416667,237.7777379 -2014-09-09 14:00:00,0.0,1014.525,574.1083332999999,58.52583333,20.35083333,0.915666667,237.7770361 -2014-09-09 15:00:00,0.0,1014.193333,357.4166667,58.20833333,20.365,1.28475, -2014-09-09 16:00:00,0.0,1013.901667,209.5916667,62.25083333,19.99583333,1.27175, -2014-09-09 17:00:00,0.0,1013.775,56.69333333,74.08583333,19.25666667,1.238916667, -2014-09-09 18:00:00,0.0,1014.111667,16.29666667,76.86833333,17.71333333,2.549, -2014-09-09 19:00:00,0.0,1014.613333,0.276,87.91666667,16.0175,1.4703333330000001,237.77619393999998 -2014-09-09 20:00:00,0.0,1015.0633330000001,0.0,95.25,15.38083333,1.19075,237.77359396666668 -2014-09-09 21:00:00,0.0,1015.133333,0.0,97.50833333,13.37166667,0.11483333300000001,237.77222379999998 -2014-09-09 22:00:00,0.0,1015.026667,0.0,99.1,11.45166667,0.013999999999999999,237.77117109999998 -2014-09-09 23:00:00,0.0,1015.035,0.0,99.99166667,10.1275,0.060416667,237.77048601666664 -2014-10-09 00:00:00,0.0,1014.97,0.0,100.0,10.18666667,0.00775,237.98168583333333 -2014-10-09 01:00:00,0.0,1014.931667,0.0,100.0,10.71666667,0.002333333,237.98168583333333 -2014-10-09 02:00:00,0.0,1014.701667,0.0,100.0,11.32583333,0.00033333300000000006,237.9806525 -2014-10-09 03:00:00,0.0,1014.533333,0.0,100.0,10.79,0.0075,237.9772358333333 -2014-10-09 04:00:00,0.0,1014.655,0.0,100.0,10.90083333,0.008916667,237.97448583333332 -2014-10-09 05:00:00,0.0,1014.725,0.1395,100.0,11.75583333,0.035083333,237.9717525 -2014-10-09 06:00:00,0.0,1014.793333,9.92825,100.0,12.06833333,0.008416667,237.96695250000002 -2014-10-09 07:00:00,0.0,1014.806667,98.32833333,95.95833333,13.27416667,0.38358333299999997,237.96078583333335 -2014-10-09 08:00:00,0.0,1014.753333,129.425,87.9,14.67416667,1.68675,237.95666916666667 -2014-10-09 09:00:00,0.0,1014.721667,149.3916667,86.10833333,15.03,2.58,237.95531916666667 -2014-10-09 10:00:00,0.0,1014.663333,215.7166667,80.97583333,15.7275,2.699666667,237.9536025 -2014-10-09 11:00:00,0.0,1014.481667,229.8583333,76.56583333,16.19833333,3.08175,237.95086916666665 -2014-10-09 12:00:00,0.0,1014.358333,210.4833333,75.0625,15.91416667,2.8273333330000003,237.94605249999995 -2014-10-09 13:00:00,0.0,1014.363333,192.175,71.64083333,16.23166667,3.201916667,237.94160250000002 -2014-10-09 14:00:00,0.0,1014.196667,213.825,68.3875,16.19416667,3.26275,237.9371525 -2014-10-09 15:00:00,0.0,1013.86,208.56666669999998,65.6075,16.35416667,2.854166667,237.93270249999998 -2014-10-09 16:00:00,0.0,1013.516667,113.89416670000001,66.89416667,16.29166667,2.1085833330000003,237.92481916666665 -2014-10-09 17:00:00,0.0,1013.233333,40.90666667,72.3125,15.85666667,1.773833333,237.9186525 -2014-10-09 18:00:00,0.0,1013.225,8.984666667,77.375,15.38166667,1.6579166669999998,237.9083858333333 -2014-10-09 19:00:00,0.0,1013.343333,0.145583333,88.275,14.68666667,0.7324166670000001,237.8892025 -2014-10-09 20:00:00,0.0,1013.468333,0.0,94.39166667,12.84083333,0.0785,237.87891916666663 -2014-10-09 21:00:00,0.0,1013.303333,0.0,98.6,10.38,0.05775,237.87276916666667 -2014-10-09 22:00:00,0.0,1013.216667,0.0,99.88333333,9.69,0.062416667,237.8676525 -2014-10-09 23:00:00,0.0,1013.155,0.0,100.0,9.735833332999999,0.07825,237.8648525 -2014-11-09 00:00:00,0.0,1013.196667,0.0,100.0,10.45,0.056416667000000004,237.9532525 -2014-11-09 01:00:00,0.0,1012.648333,0.0,100.0,11.515,0.18741666699999998,237.95465249999998 -2014-11-09 02:00:00,0.0,1012.333333,0.0,100.0,11.79916667,0.44608333299999997,237.95465249999998 -2014-11-09 03:00:00,0.0,1011.885,0.0,100.0,11.96416667,0.18541666699999998,237.95465249999998 -2014-11-09 04:00:00,0.0,1011.446667,0.0,100.0,11.58416667,0.21533333300000002,237.95325249999996 -2014-11-09 05:00:00,0.0,1011.55,0.13475,100.0,11.89833333,0.38333333299999994,237.9525525 -2014-11-09 06:00:00,0.0,1011.795,6.497666667000001,100.0,11.9675,0.407416667,237.9525525 -2014-11-09 07:00:00,0.0,1011.78,68.04583333,98.13333333,12.92416667,0.3515,237.95290249999996 -2014-11-09 08:00:00,0.0,1012.01,120.93416670000002,93.06666667,14.915,1.05175,237.95325249999996 -2014-11-09 09:00:00,0.0,1012.108333,194.925,85.30833333,15.7925,2.272833333,237.95395249999999 -2014-11-09 10:00:00,0.0,1012.095,274.5416667,81.1725,16.045,2.982583333,237.9536025 -2014-11-09 11:00:00,0.0,1012.111667,270.6375,77.65,16.56083333,3.57275,237.95465249999998 -2014-11-09 12:00:00,7.701787007999999,1012.08,245.605,84.49333333,15.7925,2.716916667,237.95465249999998 -2014-11-09 13:00:00,0.0,1012.36,277.3,85.33666667,16.70416667,3.1645,237.95465249999998 -2014-11-09 14:00:00,0.0,1012.661667,423.55,81.71916667,15.765,3.304916667,237.95465249999998 -2014-11-09 15:00:00,0.0,1012.661667,230.525,75.32416667,16.65083333,3.10225,237.95290249999996 -2014-11-09 16:00:00,0.0,1013.073333,158.0841667,76.57833333,16.56916667,3.152166667,237.9536025 -2014-11-09 17:00:00,0.0,1013.521667,30.1725,94.63333333,14.5225,2.309333333,237.9543025 -2014-11-09 18:00:00,3.3345734160000005,1013.8166669999999,13.35841667,99.58333333,14.12583333,2.047166667,237.95465249999998 -2014-11-09 19:00:00,2.728651272,1014.468333,0.30375,100.0,12.92,0.5449166670000001,237.95498583333332 -2014-11-09 20:00:00,0.0,1014.846667,0.0,100.0,11.05666667,0.109916667,237.95598583333333 -2014-11-09 21:00:00,0.0,1015.233333,0.0,100.0,9.888333333,0.090083333,237.9566525 -2014-11-09 22:00:00,0.0,1015.358333,0.0,100.0,9.56,0.0,237.9566525 -2014-11-09 23:00:00,0.0,1015.346667,0.0,100.0,8.65,0.0,237.9566525 -2014-12-09 00:00:00,0.0,1015.085,0.0,100.0,8.805833332999999,0.0, -2014-12-09 01:00:00,0.0,1015.005,0.0,100.0,8.328333333,0.006916667, -2014-12-09 02:00:00,0.0,1015.133333,0.0,100.0,8.012916667,0.00625, -2014-12-09 03:00:00,0.0,1015.1,0.0,100.0,8.478333333,0.06925, -2014-12-09 04:00:00,0.0,1014.975,0.0,100.0,9.669166667,0.122, -2014-12-09 05:00:00,0.0,1014.771667,0.039916667,100.0,10.58916667,0.238916667, -2014-12-09 06:00:00,0.0,1014.868333,4.137,100.0,11.395,0.9550833329999999, -2014-12-09 07:00:00,0.0,1014.546667,20.89666667,100.0,12.67333333,1.85175, -2014-12-09 08:00:00,0.0,1014.3083330000001,59.20833333,98.28333333,13.49166667,2.21, -2014-12-09 09:00:00,0.0,1014.086667,113.20833329999999,90.41666667,14.91833333,3.062583333, -2014-12-09 10:00:00,0.0,1013.828333,214.4666667,79.3725,16.27416667,4.109, -2014-12-09 11:00:00,0.0,1013.583333,411.96666669999996,70.84166667,17.285,3.697666667, -2014-12-09 12:00:00,0.0,1013.505,180.2333333,71.39666667,17.5525,4.10275, -2014-12-09 13:00:00,0.0,1013.628333,37.265,80.6625,16.66166667,3.8898333330000003, -2014-12-09 14:00:00,4.247103384,1013.641667,17.32083333,90.175,15.88166667,2.78225, -2014-12-09 15:00:00,0.0,1013.726667,9.198166667,85.575,16.35166667,3.0516666669999997, -2014-12-09 16:00:00,0.0,1013.993333,6.4981666670000005,84.11666667,16.8475,2.727083333, -2014-12-09 17:00:00,0.0,1014.181667,4.500583333,83.575,17.03916667,2.618083333, -2014-12-09 18:00:00,0.0,1014.458333,1.8141666669999998,83.43333333,17.27083333,2.621666667, -2014-12-09 19:00:00,0.0,1015.123333,0.0305,82.28333333,17.61416667,2.1575833330000003, -2014-12-09 20:00:00,0.0,1015.203333,0.0,82.175,17.54583333,2.059416667, -2014-12-09 21:00:00,0.0,1015.611667,0.0,81.30833333,17.69333333,1.81225, -2014-12-09 22:00:00,0.0,1015.675,0.0,82.94166667,17.57583333,1.8268333330000002, -2014-12-09 23:00:00,0.0,1015.671667,0.0,83.925,17.43083333,1.8281666669999999, -2014-09-13 00:00:00,0.0,1015.9333330000001,0.0,86.41666667,17.015,1.463, -2014-09-13 01:00:00,0.0,1016.01,0.0,89.875,16.535,0.48858333299999995, -2014-09-13 02:00:00,0.0,1016.195,0.0,90.86666667,16.24666667,1.4871666669999999, -2014-09-13 03:00:00,0.0,1016.201667,0.0,93.125,16.305,1.535166667, -2014-09-13 04:00:00,0.0,1016.225,0.0,92.16666667,16.07083333,2.2955, -2014-09-13 05:00:00,0.0,1016.628333,0.05825,92.56666667,15.76083333,1.76775, -2014-09-13 06:00:00,0.0,1016.966667,4.871416667,93.9,15.44583333,1.609833333, -2014-09-13 07:00:00,0.0,1017.11,49.4275,93.36666667,15.64833333,1.748083333, -2014-09-13 08:00:00,0.0,1017.64,81.45333333,91.275,16.20166667,2.099, -2014-09-13 09:00:00,0.0,1017.975,112.51666670000002,89.73333333,16.5475,2.238833333, -2014-09-13 10:00:00,0.0,1018.041667,89.19083333,89.10833333,17.06583333,2.554916667, -2014-09-13 11:00:00,0.0,1017.963333,79.14833333,89.56666667,16.97,2.462583333, -2014-09-13 12:00:00,0.0,1017.926667,124.06666670000001,89.43333333,17.00916667,2.719, -2014-09-13 13:00:00,0.0,1017.85,134.5,87.91666667,17.3425,3.0453333330000003, -2014-09-13 14:00:00,0.0,1017.78,87.3675,89.475,17.09583333,2.485583333, -2014-09-13 15:00:00,0.0,1017.896667,55.96333333,90.60833333,17.23416667,2.3455, -2014-09-13 16:00:00,0.0,1018.123333,23.685,91.825,16.8175,2.9573333330000002, -2014-09-13 17:00:00,0.0,1018.393333,7.819166667,94.08333333,16.08166667,2.7286666669999997, -2014-09-13 18:00:00,0.0,1018.4333330000001,3.39175,93.73333333,15.935,1.8979166669999998, -2014-09-13 19:00:00,0.0,1018.45,0.01175,95.85833333,15.78,0.32758333300000003, -2014-09-13 20:00:00,0.0,1018.4416669999999,0.0,96.78333333,15.77,0.5379166670000001, -2014-09-13 21:00:00,0.0,1018.431667,0.0,96.3,16.06416667,1.045166667, -2014-09-13 22:00:00,0.0,1018.11,0.0,97.90833333,15.94,0.800166667, -2014-09-13 23:00:00,0.0,1017.928333,0.0,98.48333333,15.93583333,0.993166667, -2014-09-14 00:00:00,0.0,1017.636667,0.0,97.7,15.8675,0.745, -2014-09-14 01:00:00,0.0,1017.378333,0.0,97.30833333,15.88416667,1.030916667, -2014-09-14 02:00:00,0.0,1016.88,0.0,96.18333333,15.68,0.982583333, -2014-09-14 03:00:00,0.0,1016.523333,0.0,98.025,15.31,0.211333333, -2014-09-14 04:00:00,0.0,1016.181667,0.0,98.05,15.43583333,0.62575, -2014-09-14 05:00:00,0.0,1016.166667,0.07425,98.21666667,15.44666667,0.78375, -2014-09-14 06:00:00,0.0,1016.388333,3.34675,98.325,15.5025,1.078, -2014-09-14 07:00:00,0.0,1016.4366669999999,18.81,98.05,15.65833333,1.413666667, -2014-09-14 08:00:00,0.0,1016.698333,74.13083333,95.4,16.06416667,2.0750833330000003, -2014-09-14 09:00:00,0.0,1016.54,110.1725,91.2,16.72166667,2.7599166669999997, -2014-09-14 10:00:00,0.0,1016.236667,114.36583329999999,90.41666667,17.20916667,2.7105, -2014-09-14 11:00:00,0.0,1015.966667,178.06666669999998,85.90833333,18.18,2.88425, -2014-09-14 12:00:00,0.0,1015.74,147.31666669999998,83.85833333,18.53833333,2.397833333, -2014-09-14 13:00:00,0.0,1015.236667,332.4166667,79.08583333,19.38416667,2.237, -2014-09-14 14:00:00,0.0,1014.586667,456.525,69.7375,21.12916667,1.9285, -2014-09-14 15:00:00,0.0,1014.241667,304.1,66.11833333,21.47666667,2.06775, -2014-09-14 16:00:00,0.0,1013.8083330000001,163.3125,65.78583333,21.61416667,1.2590000000000001, -2014-09-14 17:00:00,0.0,1013.72,51.94333333,74.0325,20.085,0.917416667, -2014-09-14 18:00:00,0.0,1013.745,10.965,90.26666667,17.64,0.077, -2014-09-14 19:00:00,0.0,1013.993333,0.07325,98.15833333,13.95166667,0.032166667, -2014-09-14 20:00:00,0.0,1013.92,0.0,100.0,12.37833333,0.07525, -2014-09-14 21:00:00,0.0,1013.888333,0.0,100.0,11.5075,0.026416667, -2014-09-14 22:00:00,0.0,1013.611667,0.0,100.0,10.89416667,0.021666667, -2014-09-14 23:00:00,0.0,1013.573333,0.0,100.0,10.53333333,0.023333332999999998, -2014-09-15 00:00:00,0.0,1013.741667,0.0,100.0,10.88,0.009416667, -2014-09-15 01:00:00,0.0,1013.598333,0.0,100.0,12.33583333,0.010583333, -2014-09-15 02:00:00,0.0,1013.445,0.0,100.0,12.52666667,0.0, -2014-09-15 03:00:00,0.0,1013.131667,0.0,100.0,12.54083333,0.0, -2014-09-15 04:00:00,0.0,1012.961667,0.0,100.0,13.13666667,0.016333333000000002, -2014-09-15 05:00:00,0.0,1012.925,0.063416667,100.0,13.4875,0.0, -2014-09-15 06:00:00,0.0,1013.04,6.211666667,100.0,13.86416667,0.06, -2014-09-15 07:00:00,0.0,1013.178333,15.56333333,100.0,14.39,0.007666666999999999, -2014-09-15 08:00:00,0.0,1013.401667,28.00416667,100.0,14.9225,0.332583333, -2014-09-15 09:00:00,0.0,1013.456667,91.65,98.85,15.72916667,0.7104166670000001, -2014-09-15 10:00:00,0.0,1013.533333,178.1083333,94.23333333,16.92166667,1.420833333, -2014-09-15 11:00:00,0.0,1013.286667,230.75,89.975,18.35416667,1.4875833330000001, -2014-09-15 12:00:00,0.0,1012.921667,245.6333333,86.63333333,19.18083333,1.395, -2014-09-15 13:00:00,0.0,1012.548333,242.2583333,82.255,20.11333333,1.6408333330000002, -2014-09-15 14:00:00,0.0,1012.1,51.91666667,86.875,19.66916667,1.449416667, -2014-09-15 15:00:00,0.0,1012.053333,71.47666667,88.73333333,19.73083333,1.94175, -2014-09-15 16:00:00,0.0,1012.038333,70.65166667,87.86666667,20.0575,1.698833333, -2014-09-15 17:00:00,0.0,1011.825,30.14333333,93.33333333,19.7175,1.202166667, -2014-09-15 18:00:00,0.0,1011.946667,4.944416667,98.75833333,18.01833333,0.18358333300000002, -2014-09-15 19:00:00,0.0,1012.166667,0.016416667,100.0,17.20833333,0.11758333300000001, -2014-09-15 20:00:00,0.0,1012.106667,0.0,100.0,16.1075,0.08416666699999999, -2014-09-15 21:00:00,0.0,1012.121667,0.0,100.0,14.62583333,0.016333333000000002, -2014-09-15 22:00:00,0.0,1012.23,0.0,100.0,14.46166667,0.09025, -2014-09-15 23:00:00,0.0,1011.915,0.0,100.0,13.40333333,0.0, -2014-09-16 00:00:00,0.0,1011.95,0.0,100.0,12.25,0.0, -2014-09-16 01:00:00,0.0,1011.9416669999999,0.0,100.0,11.63166667,0.0, -2014-09-16 02:00:00,0.0,1011.891667,0.0,100.0,11.37916667,0.0, -2014-09-16 03:00:00,0.0,1011.633333,0.0,100.0,10.85083333,0.0, -2014-09-16 04:00:00,0.0,1011.705,0.0,100.0,10.315,0.0, -2014-09-16 05:00:00,0.0,1011.978333,0.10325,100.0,10.58666667,0.0, -2014-09-16 06:00:00,0.0,1012.008333,14.73458333,100.0,11.69333333,0.0, -2014-09-16 07:00:00,0.0,1012.115,58.1425,100.0,13.63666667,0.10358333300000001, -2014-09-16 08:00:00,0.0,1012.383333,96.3475,100.0,15.80666667,0.47716666700000004, -2014-09-16 09:00:00,0.0,1012.523333,255.80833330000002,97.61666667,19.06833333,0.520166667, -2014-09-16 10:00:00,0.0,1012.3166669999999,328.84166669999996,83.31416667,20.61416667,1.6193333330000002, -2014-09-16 11:00:00,0.0,1011.95,257.8833333,77.88166667,21.47583333,1.9969999999999999, -2014-09-16 12:00:00,0.0,1011.601667,496.175,71.8125,22.65916667,1.794416667, -2014-09-16 13:00:00,0.0,1011.261667,323.90833330000004,69.43083333,23.28833333,2.038833333, -2014-09-16 14:00:00,0.0,1010.915,450.4333333000001,62.98083333,23.96916667,2.3385, -2014-09-16 15:00:00,0.0,1010.681667,375.9833333,60.32833333,23.24166667,1.9431666669999998, -2014-09-16 16:00:00,0.0,1010.461667,165.5191667,61.39,23.14416667,1.772583333, -2014-09-16 17:00:00,0.0,1010.53,29.08583333,70.69916667,22.15083333,1.77975, -2014-09-16 18:00:00,0.0,1010.5616669999999,8.467833333,90.025,18.98833333,0.275083333, -2014-09-16 19:00:00,0.0,1010.838333,0.024916667000000003,97.74166667,14.90833333,0.08416666699999999, -2014-09-16 20:00:00,0.0,1010.888333,0.0,99.95,13.26166667,0.06358333299999999, -2014-09-16 21:00:00,0.0,1010.648333,0.0,100.0,12.34,0.093666667, -2014-09-16 22:00:00,0.0,1010.71,0.0,100.0,11.835,0.02175, -2014-09-16 23:00:00,0.0,1010.623333,0.0,100.0,11.4225,0.007333333, -2014-09-17 00:00:00,0.0,1010.4,0.0,100.0,11.64,0.008583333, -2014-09-17 01:00:00,0.0,1010.073333,0.0,100.0,10.72,0.017, -2014-09-17 02:00:00,0.0,1009.991667,0.0,100.0,10.30666667,0.10308333300000001, -2014-09-17 03:00:00,0.0,1010.098333,0.0,100.0,9.906666667,0.141833333, -2014-09-17 04:00:00,0.0,1009.96,0.0,100.0,9.793333333,0.052000000000000005, -2014-09-17 05:00:00,0.0,1010.1,0.09958333300000001,100.0,9.435833333,0.0025833329999999997, -2014-09-17 06:00:00,0.0,1010.196667,9.394,100.0,10.3575,0.0, -2014-09-17 07:00:00,0.0,1010.055,58.72916667,100.0,12.16,0.10975, -2014-09-17 08:00:00,0.0,1009.955,143.92583330000002,100.0,14.66166667,0.670583333, -2014-09-17 09:00:00,0.0,1009.961667,317.40833330000004,92.46666667,17.63,0.750166667, -2014-09-17 10:00:00,0.0,1009.841667,405.525,82.85416667,19.9175,1.176666667, -2014-09-17 11:00:00,0.0,1009.376667,469.3916666999999,76.92166667,21.7375,1.596916667, -2014-09-17 12:00:00,0.0,1009.036667,494.03333330000004,69.65833333,23.1125,1.5188333330000001, -2014-09-17 13:00:00,0.0,1008.728333,481.49166669999994,64.75083333,23.83083333,1.682916667, -2014-09-17 14:00:00,0.0,1008.345,436.9,59.96416667,24.46833333,2.0034166669999998, -2014-09-17 15:00:00,0.0,1008.041667,354.84166669999996,56.18916667,24.785,1.393583333, -2014-09-17 16:00:00,0.0,1007.633333,162.0216667,59.18583333,24.5825,1.342083333, -2014-09-17 17:00:00,0.0,1007.825,30.4275,72.59166667,22.8925,0.770916667, -2014-09-17 18:00:00,0.0,1008.098333,5.550666667000001,90.33333333,18.91166667,0.03225, -2014-09-17 19:00:00,0.0,1008.108333,0.0,97.78333333,15.69166667,0.097666667, -2014-09-17 20:00:00,0.0,1008.3083330000001,0.0,100.0,14.04,0.0415, -2014-09-17 21:00:00,0.0,1008.223333,0.0,100.0,12.82333333,0.039666667, -2014-09-17 22:00:00,0.0,1008.143333,0.0,100.0,12.01166667,0.023916667000000003, -2014-09-17 23:00:00,0.0,1008.131667,0.0,100.0,11.3675,0.005166667, -2014-09-18 00:00:00,0.0,1008.003333,0.0,100.0,11.04,0.002166667, -2014-09-18 01:00:00,0.0,1007.726667,0.0,100.0,10.49416667,0.00033333300000000006, -2014-09-18 02:00:00,0.0,1007.623333,0.0,100.0,10.05416667,0.00175, -2014-09-18 03:00:00,0.0,1007.608333,0.0,100.0,9.810833333,0.003833333, -2014-09-18 04:00:00,0.0,1007.901667,0.0,100.0,10.67916667,0.0, -2014-09-18 05:00:00,0.0,1008.08,0.035666667,100.0,11.48166667,0.029916667, -2014-09-18 06:00:00,0.0,1008.101667,5.83025,100.0,12.235,0.028333333, -2014-09-18 07:00:00,0.0,1007.976667,31.75166667,100.0,13.12,0.143166667, -2014-09-18 08:00:00,0.0,1008.42,73.60416667,100.0,14.09333333,0.212, -2014-09-18 09:00:00,0.0,1008.475,100.9566667,99.875,15.3025,0.385, -2014-09-18 10:00:00,0.0,1008.515,269.7916667,92.83333333,17.55833333,0.880833333, -2014-09-18 11:00:00,0.0,1008.491667,206.43333330000002,87.70833333,19.32166667,0.819333333, -2014-09-18 12:00:00,0.0,1008.323333,263.2416667,84.61666667,20.24416667,0.776333333, -2014-09-18 13:00:00,0.0,1008.028333,218.5083333,83.61666667,21.255,0.868083333, -2014-09-18 14:00:00,0.0,1007.87,169.56666669999998,82.46666667,21.45333333,0.889833333, -2014-09-18 15:00:00,0.0,1007.771667,284.9833333,78.56416667,22.0875,1.206333333, -2014-09-18 16:00:00,0.0,1007.713333,132.165,79.53416667,22.25416667,0.864583333, -2014-09-18 17:00:00,0.0,1007.848333,41.41166667,84.25166667,21.38583333,0.779416667, -2014-09-18 18:00:00,0.0,1007.868333,3.5148333330000003,96.40833333,19.24666667,0.06408333299999999, -2014-09-18 19:00:00,43.45013287,1008.025,0.0,99.85833333,17.47333333,0.0885, -2014-09-18 20:00:00,0.0,1007.94,0.0,100.0,16.99416667,0.026583332999999997, -2014-09-18 21:00:00,0.0,1007.925,0.0,100.0,16.0075,0.016583333000000002, -2014-09-18 22:00:00,0.0,1008.355,0.0,100.0,15.49333333,0.1195, -2014-09-18 23:00:00,17.24409672,1008.463333,0.0,100.0,16.32166667,0.21908333300000002, -2014-09-19 00:00:00,2.4245071680000003,1008.305,0.0,100.0,16.50666667,0.044916667, -2014-09-19 01:00:00,0.0,1007.881667,0.0,100.0,16.1025,0.027916667000000003, -2014-09-19 02:00:00,0.0,1007.573333,0.0,100.0,15.26416667,0.192916667, -2014-09-19 03:00:00,0.0,1007.261667,0.0,100.0,14.495,0.06525, -2014-09-19 04:00:00,0.0,1007.351667,0.0,100.0,13.73833333,0.059083332999999995, -2014-09-19 05:00:00,0.0,1007.671667,0.0315,100.0,14.375,0.224333333, -2014-09-19 06:00:00,2.4050227680000003,1008.11,13.36341667,100.0,14.49833333,0.297083333, -2014-09-19 07:00:00,0.0,1008.286667,50.63916667,100.0,15.01916667,0.137416667, -2014-09-19 08:00:00,0.0,1008.658333,94.21666667,100.0,15.91166667,0.338583333, -2014-09-19 09:00:00,0.0,1009.0583330000001,119.32833329999998,100.0,16.72083333,0.37975, -2014-09-19 10:00:00,0.0,1008.883333,209.8366667,97.375,18.09333333,0.61675, -2014-09-19 11:00:00,0.0,1008.968333,228.075,86.33333333,20.79,0.694333333, -2014-09-19 12:00:00,0.0,1008.965,301.025,79.77833333,22.12333333,0.6699166670000001, -2014-09-19 13:00:00,0.0,1008.871667,273.5,81.65916667,22.43333333,0.5670000000000001, -2014-09-19 14:00:00,0.0,1008.908333,254.08333330000002,81.95166667,22.38666667,0.527166667, -2014-09-19 15:00:00,0.0,1008.445,327.7916667,77.01833333,24.04333333,0.333333333, -2014-09-19 16:00:00,0.0,1008.466667,146.6,76.6025,23.23,0.30575, -2014-09-19 17:00:00,0.0,1008.511667,57.9925,79.96833333,22.50916667,0.146916667, -2014-09-19 18:00:00,0.0,1008.73,7.521166667,90.825,20.04,0.024916667000000003, -2014-09-19 19:00:00,0.0,1009.256667,0.0,99.0,17.7575,0.059416667, -2014-09-19 20:00:00,0.0,1009.411667,0.0,100.0,16.29666667,0.0265, -2014-09-19 21:00:00,0.0,1009.421667,0.0,100.0,15.07,0.022666667, -2014-09-19 22:00:00,0.0,1009.771667,0.0,100.0,14.39333333,0.08808333300000001, -2014-09-19 23:00:00,0.0,1009.79,0.0,100.0,13.56083333,0.08766666699999999, -2014-09-20 00:00:00,0.0,1009.788333,0.0,100.0,13.17416667,0.1585, -2014-09-20 01:00:00,0.0,1009.77,0.0,100.0,13.02416667,0.090583333, -2014-09-20 02:00:00,0.0,1009.821667,0.0,100.0,13.155,0.083416667, -2014-09-20 03:00:00,0.0,1009.828333,0.0,100.0,13.89583333,0.10058333300000001, -2014-09-20 04:00:00,0.0,1009.9333330000001,0.0,100.0,14.41666667,0.133916667, -2014-09-20 05:00:00,0.0,1010.035,0.0155,100.0,14.44916667,0.10116666699999999, -2014-09-20 06:00:00,0.0,1010.286667,13.26008333,100.0,14.38583333,0.166666667, -2014-09-20 07:00:00,0.0,1010.33,31.3125,100.0,14.84083333,0.0225, -2014-09-20 08:00:00,0.0,1010.621667,98.16333333,100.0,15.61666667,0.25725, -2014-09-20 09:00:00,0.0,1010.603333,245.625,99.64166667,16.38666667,0.34733333299999997, -2014-09-20 10:00:00,0.0,1010.613333,277.3833333,92.13333333,18.07583333,0.6901666670000001, -2014-09-20 11:00:00,0.0,1010.525,353.8916667,86.18333333,20.82583333,0.77525, -2014-09-20 12:00:00,0.0,1010.423333,352.3083333,77.16916667,22.64916667,1.34175, -2014-09-20 13:00:00,13.5800503,1009.833333,317.27416669999997,80.87416667,22.02333333,1.064166667, -2014-09-20 14:00:00,42.39711794,1009.8083330000001,165.95833330000002,85.8325,20.525,1.43175, -2014-09-20 15:00:00,0.0,1009.9,113.675,96.7,19.93083333,0.26508333300000003, -2014-09-20 16:00:00,0.0,1010.003333,71.2475,98.84166667,19.98833333,0.741833333, -2014-09-20 17:00:00,0.0,1010.051667,34.23666667,99.925,19.33583333,0.8540000000000001, -2014-09-20 18:00:00,0.0,1010.256667,2.8415,99.70833333,17.91,0.239916667, -2014-09-20 19:00:00,46.32125203,1010.243333,0.0,100.0,17.00666667,0.6955, -2014-09-20 20:00:00,2.5104146640000002,1010.83,0.0,100.0,15.7375,0.588333333, -2014-09-20 21:00:00,0.0,1010.67,0.0,100.0,15.225,0.34483333299999996, -2014-09-20 22:00:00,0.0,1010.873333,0.0,100.0,15.10833333,0.42208333299999995, -2014-09-20 23:00:00,0.0,1010.735,0.0,100.0,14.91833333,0.10116666699999999, -2014-09-21 00:00:00,0.0,1010.37,0.0,100.0,14.73083333,0.11666666699999999, -2014-09-21 01:00:00,2.532173232,1010.408333,0.0,100.0,14.395,0.2505, -2014-09-21 02:00:00,0.0,1010.041667,0.0,100.0,14.475,0.133583333, -2014-09-21 03:00:00,0.0,1009.716667,0.0,100.0,15.00166667,0.335916667, -2014-09-21 04:00:00,14.53081003,1009.795,0.0,100.0,14.92833333,0.131583333, -2014-09-21 05:00:00,14.45069474,1009.818333,0.0,100.0,15.0775,0.019416667, -2014-09-21 06:00:00,17.06944078,1009.928333,5.8365,100.0,15.34,0.200416667, -2014-09-21 07:00:00,17.92488307,1010.0633330000001,10.7975,100.0,15.52666667,0.8480833329999999, -2014-09-21 08:00:00,26.73080074,1010.261667,42.31166667,100.0,15.79416667,0.151, -2014-09-21 09:00:00,4.982941992,1010.33,109.2858333,99.96666667,16.28333333,0.311833333, -2014-09-21 10:00:00,9.925911624,1010.428333,82.51583333,100.0,16.45583333,0.345583333, -2014-09-21 11:00:00,2.4245071680000003,1010.36,112.9375,99.675,16.84166667,0.24483333300000001, -2014-09-21 12:00:00,98.66220782,1010.545,90.89,98.81666667,16.89666667,0.97775, -2014-09-21 13:00:00,24.14677524,1010.521667,86.97833333,97.675,16.14666667,1.954, -2014-09-21 14:00:00,8.398211400000001,1010.608333,129.65833329999998,97.95833333,15.87166667,1.334, -2014-09-21 15:00:00,0.0,1010.893333,186.1516667,93.86666667,16.85916667,1.88375, -2014-09-21 16:00:00,0.0,1011.315,57.92541667,92.85,16.6675,2.6063333330000003, -2014-09-21 17:00:00,0.0,1011.656667,20.526,90.05833333,15.48166667,1.6631666669999998, -2014-09-21 18:00:00,0.0,1012.13,13.61366667,95.425,14.57,1.035666667, -2014-09-21 19:00:00,0.0,1012.913333,0.0,95.35,13.9525,1.173, -2014-09-21 20:00:00,0.0,1013.49,0.0,94.08333333,13.68166667,1.1, -2014-09-21 21:00:00,0.0,1013.72,0.0,96.55,12.56,0.6859999999999999, -2014-09-21 22:00:00,0.0,1013.93,0.0,98.5,11.52166667,0.31475, -2014-09-21 23:00:00,0.0,1014.216667,0.0,98.975,11.23166667,0.875583333, -2014-09-22 00:00:00,0.0,1014.225,0.0,97.8,10.88,0.926333333, -2014-09-22 01:00:00,0.0,1014.195,0.0,99.2,9.964166667,0.26716666699999997, -2014-09-22 02:00:00,0.0,1014.171667,0.0,98.89166667,9.7575,0.314083333, -2014-09-22 03:00:00,0.0,1014.113333,0.0,96.83333333,10.44416667,0.5126666670000001, -2014-09-22 04:00:00,0.0,1013.82,0.0,96.83333333,10.43333333,0.38091666700000004, -2014-09-22 05:00:00,0.0,1013.87,0.0014166670000000001,98.81666667,9.2625,0.159833333, -2014-09-22 06:00:00,0.0,1014.046667,6.0715833329999995,98.88333333,9.146666667,0.21716666699999998, -2014-09-22 07:00:00,0.0,1013.873333,25.17333333,96.36666667,10.28333333,0.5720833329999999, -2014-09-22 08:00:00,0.0,1013.766667,67.47416667,93.88333333,11.36666667,0.7314166670000001, -2014-09-22 09:00:00,0.0,1013.5666669999999,58.6425,91.03333333,12.01583333,0.6635, -2014-09-22 10:00:00,0.0,1013.013333,109.57083329999999,88.54166667,12.47083333,0.569916667, -2014-09-22 11:00:00,2.743998408,1012.391667,134.2008333,83.56666667,13.31916667,1.048916667, -2014-09-22 12:00:00,107.24775840000001,1012.626667,150.7358333,81.92166667,13.36333333,2.6385, -2014-09-22 13:00:00,101.0704583,1013.146667,152.325,93.59166667,10.30333333,3.292166667, -2014-09-22 14:00:00,0.0,1013.608333,345.75,85.5875,11.295,3.8789999999999996, -2014-09-22 15:00:00,0.0,1014.098333,337.09166669999996,75.9475,12.565,2.999166667, -2014-09-22 16:00:00,0.0,1014.525,155.2475,72.81083333,12.73333333,4.002083333, -2014-09-22 17:00:00,0.0,1014.8133330000001,26.95916667,75.9975,11.965,2.000333333, -2014-09-22 18:00:00,0.0,1014.9366669999999,5.057166667,85.4,10.345,0.747916667, -2014-09-22 19:00:00,0.0,1015.531667,0.0,89.975,9.258333333,0.6865, -2014-09-22 20:00:00,0.0,1015.87,0.0,94.41666667,9.191666667,0.8613333329999999, -2014-09-22 21:00:00,0.0,1016.115,0.0,97.9,8.417166667,0.286583333, -2014-09-22 22:00:00,0.0,1016.285,0.0,100.0,7.773416667,0.230666667, -2014-09-22 23:00:00,0.0,1016.695,0.0,100.0,7.447916667,0.343083333, -2014-09-23 00:00:00,0.0,1016.615,0.0,100.0,7.2335833329999994,0.15633333300000002, -2014-09-23 01:00:00,0.0,1016.48,0.0,100.0,6.8608333329999995,0.26825, -2014-09-23 02:00:00,0.0,1016.165,0.0,100.0,6.65425,0.33216666699999997, -2014-09-23 03:00:00,0.0,1016.251667,0.0,100.0,6.621083333,0.644083333, -2014-09-23 04:00:00,0.0,1016.5666669999999,0.0,100.0,6.5628333329999995,0.983916667, -2014-09-23 05:00:00,0.0,1017.168333,0.013583333000000001,100.0,6.437333333,0.21791666699999998, -2014-09-23 06:00:00,0.0,1017.466667,8.939333332999999,100.0,6.294,0.159583333, -2014-09-23 07:00:00,0.0,1017.91,53.21166667,100.0,7.266666667000001,0.592916667, -2014-09-23 08:00:00,0.0,1018.303333,145.05,100.0,8.854583332999999,0.343916667, -2014-09-23 09:00:00,0.0,1018.475,134.4783333,100.0,9.596666667000001,0.28925, -2014-09-23 10:00:00,0.0,1018.1,376.2583333,91.15,11.60083333,0.6668333329999999, -2014-09-23 11:00:00,0.0,1017.623333,297.9025,80.6425,14.15833333,0.569916667, -2014-09-23 12:00:00,0.0,1017.298333,488.46666669999996,66.02166667,14.71916667,0.85275, -2014-09-23 13:00:00,0.0,1016.6883330000001,487.8083333000001,60.06833333,14.00666667,0.2195, -2014-09-23 14:00:00,0.0,1015.993333,445.5,58.67083333,15.11666667,0.254166667, -2014-09-23 15:00:00,0.0,1015.363333,303.025,57.205,15.51083333,1.1575, -2014-09-23 16:00:00,0.0,1014.843333,163.2258333,59.6275,15.6725,0.8583333329999999, -2014-09-23 17:00:00,0.0,1014.685,30.355,75.21,14.175,1.058833333, -2014-09-23 18:00:00,0.0,1014.975,2.8273333330000003,94.24166667,11.10416667,0.333333333, -2014-09-23 19:00:00,0.0,1014.856667,0.0,99.76666667,8.54,0.1665, -2014-09-23 20:00:00,0.0,1014.5583330000001,0.0,100.0,7.06375,0.0, -2014-09-23 21:00:00,0.0,1014.12,0.0,100.0,6.07675,0.011416667, -2014-09-23 22:00:00,0.0,1013.69,0.0,100.0,5.6079166670000005,0.025166667, -2014-09-23 23:00:00,0.0,1013.368333,0.0,100.0,4.777583333,0.0, -2014-09-24 00:00:00,0.0,1013.565,0.0,100.0,4.629166667,0.0, -2014-09-24 01:00:00,0.0,1013.078333,0.0,100.0,5.250166667,0.0, -2014-09-24 02:00:00,0.0,1012.4333330000001,0.0,100.0,5.08425,0.0, -2014-09-24 03:00:00,0.0,1011.606667,0.0,100.0,4.663583333,0.0, -2014-09-24 04:00:00,0.0,1010.836667,0.0,100.0,5.195666667,0.0, -2014-09-24 05:00:00,0.0,1010.665,0.0,100.0,4.947083333,0.0, -2014-09-24 06:00:00,0.0,1010.4366669999999,5.689416667000001,100.0,5.45375,0.325, -2014-09-24 07:00:00,0.0,1010.245,39.99666667,100.0,5.833333333,0.27899999999999997, -2014-09-24 08:00:00,0.0,1009.971667,112.10583329999999,100.0,6.619083333,0.16275, -2014-09-24 09:00:00,0.0,1009.711667,196.0,99.96666667,8.013,0.35083333299999997, -2014-09-24 10:00:00,0.0,1009.448333,230.6,94.39166667,10.03333333,0.63575, -2014-09-24 11:00:00,0.0,1009.15,214.1,86.525,11.77416667,1.13275, -2014-09-24 12:00:00,0.0,1008.703333,329.6333333,78.8125,13.46416667,0.54025, -2014-09-24 13:00:00,0.0,1008.166667,248.475,75.7025,14.315,0.5561666670000001, -2014-09-24 14:00:00,0.0,1007.865,228.0333333,72.21916667,14.83416667,0.857916667, -2014-09-24 15:00:00,0.0,1007.405,162.9916667,72.62833333,14.57416667,0.575333333, -2014-09-24 16:00:00,0.0,1007.266667,115.84166670000002,75.795,14.51333333,0.42816666700000006, -2014-09-24 17:00:00,0.0,1007.235,43.17333333,83.25,13.64833333,0.58525, -2014-09-24 18:00:00,0.0,1007.235,5.251,91.04166667,12.72833333,0.654833333, -2014-09-24 19:00:00,0.0,1007.496667,0.0,89.125,11.405,0.068916667, -2014-09-24 20:00:00,0.0,1007.708333,0.0,88.35,10.67333333,0.0019166670000000002, -2014-09-24 21:00:00,0.0,1007.996667,0.0,87.36666667,10.38166667,0.327, -2014-09-24 22:00:00,9.79955796,1008.143333,0.0,94.29166667,11.1225,0.194166667, -2014-09-24 23:00:00,0.0,1008.256667,0.0,94.6,10.5675,0.171416667, -2014-09-25 00:00:00,0.0,1008.86,0.0,98.875,9.103333333,0.039666667, -2014-09-25 01:00:00,2.4050227680000003,1009.638333,0.0,99.35833333,8.730833333,0.027166667000000002, -2014-09-25 02:00:00,0.0,1010.215,0.0,97.51666667,10.39583333,0.238083333, -2014-09-25 03:00:00,0.0,1010.668333,0.0,98.14166667,10.33666667,0.082833333, -2014-09-25 04:00:00,0.0,1010.97,0.0,98.56666667,10.24916667,0.15208333300000001, -2014-09-25 05:00:00,0.0,1011.55,0.0,99.88333333,9.8325,0.12175, -2014-09-25 06:00:00,0.0,1012.06,3.628333333,99.41666667,10.55916667,0.1445, -2014-09-25 07:00:00,0.0,1013.11,23.35083333,99.00833333,11.26,0.11816666699999999, -2014-09-25 08:00:00,0.0,1013.83,95.94333333,98.13333333,12.04,0.383166667, -2014-09-25 09:00:00,0.0,1014.49,190.8,91.40833333,13.4375,0.940583333, -2014-09-25 10:00:00,2.974386672,1015.0,280.65833330000004,84.625,14.34083333,1.6531666669999998, -2014-09-25 11:00:00,0.0,1015.375,214.9666667,79.4975,15.2275,2.082416667, -2014-09-25 12:00:00,0.0,1015.655,359.6083333,76.77166667,15.98916667,1.536583333, -2014-09-25 13:00:00,0.0,1015.491667,351.9416667,74.05333333,16.39666667,1.04925, -2014-09-25 14:00:00,0.0,1015.663333,268.0666667,72.135,16.36833333,1.46625, -2014-09-25 15:00:00,0.0,1015.591667,106.93416670000002,73.78416667,15.8675,1.074, -2014-09-25 16:00:00,0.0,1016.126667,89.78916667,71.87916667,15.655,0.853666667, -2014-09-25 17:00:00,0.0,1016.295,29.12333333,75.02333333,14.90083333,0.36325, -2014-09-25 18:00:00,0.0,1016.785,2.461083333,84.3,13.6675,0.038416667, -2014-09-25 19:00:00,0.0,1017.405,0.0,95.19166667,11.76083333,0.039583333, -2014-09-25 20:00:00,0.0,1017.603333,0.0,96.775,11.64833333,0.06775, -2014-09-25 21:00:00,0.0,1017.713333,0.0,88.28333333,11.8025,0.11566666699999999, -2014-09-25 22:00:00,0.0,1018.0633330000001,0.0,86.16666667,12.11583333,0.054166667, -2014-09-25 23:00:00,0.0,1018.23,0.0,86.2,12.10083333,0.003, -2014-09-26 00:00:00,0.0,1018.506667,0.0,86.33333333,12.285,0.034166667000000005, -2014-09-26 01:00:00,0.0,1018.368333,0.0,86.61666667,12.27666667,0.014833333, -2014-09-26 02:00:00,0.0,1018.481667,0.0,86.625,12.485,0.18358333300000002, -2014-09-26 03:00:00,0.0,1018.333333,0.0,88.38333333,12.31666667,0.027666667000000002, -2014-09-26 04:00:00,0.0,1018.23,0.0,90.56666667,11.97166667,0.005083333, -2014-09-26 05:00:00,0.0,1018.203333,0.0,91.2,11.70416667,0.003833333, -2014-09-26 06:00:00,0.0,1018.543333,3.7400833330000003,90.18333333,11.745,0.12425, -2014-09-26 07:00:00,0.0,1019.318333,24.745,88.80833333,12.41083333,0.177083333, -2014-09-26 08:00:00,0.0,1019.8,56.89916667,88.95,12.84,0.2435, -2014-09-26 09:00:00,0.0,1020.26,103.35,87.525,13.55166667,0.399416667, -2014-09-26 10:00:00,0.0,1020.25,123.6,87.30833333,13.98,0.43841666700000004, -2014-09-26 11:00:00,0.0,1020.3,160.95,86.71666667,14.64166667,0.42375, -2014-09-26 12:00:00,0.0,1020.251667,287.65,82.69166667,16.41666667,0.5086666670000001, -2014-09-26 13:00:00,0.0,1019.885,256.96666669999996,80.67583333,17.53666667,0.6688333329999999, -2014-09-26 14:00:00,0.0,1019.948333,139.425,83.05,17.40166667,0.645833333, -2014-09-26 15:00:00,0.0,1019.75,89.28166667,86.36666667,16.74916667,0.39075, -2014-09-26 16:00:00,0.0,1019.955,76.30666667,86.24166667,16.55916667,0.270583333, -2014-09-26 17:00:00,0.0,1020.085,28.18375,87.6,16.2525,0.200583333, -2014-09-26 18:00:00,0.0,1020.461667,1.26025,89.95,15.6275,0.222333333, -2014-09-26 19:00:00,0.0,1021.31,0.0,95.35833333,15.02583333,0.1075, -2014-09-26 20:00:00,0.0,1021.546667,0.0,99.20833333,14.56666667,0.017833333, -2014-09-26 21:00:00,0.0,1021.838333,0.0,98.80833333,14.46,0.211833333, -2014-09-26 22:00:00,0.0,1022.111667,0.0,98.28333333,14.06,0.21908333300000002, -2014-09-26 23:00:00,0.0,1022.136667,0.0,99.88333333,13.21833333,0.613833333, -2014-09-27 00:00:00,0.0,1022.17,0.0,100.0,13.91916667,0.350583333, -2014-09-27 01:00:00,0.0,1022.251667,0.0,100.0,13.82666667,0.057583333, -2014-09-27 02:00:00,0.0,1022.396667,0.0,99.98333333,13.94083333,0.2665, -2014-09-27 03:00:00,0.0,1022.618333,0.0,99.9,13.94583333,0.228333333, -2014-09-27 04:00:00,0.0,1022.656667,0.0,100.0,13.83083333,0.36475, -2014-09-27 05:00:00,0.0,1022.681667,0.0,100.0,13.455,0.0845, -2014-09-27 06:00:00,0.0,1023.216667,4.38825,100.0,13.05416667,0.033166667000000004, -2014-09-27 07:00:00,0.0,1023.743333,40.36833333,100.0,13.38083333,0.015416667, -2014-09-27 08:00:00,0.0,1024.258333,68.86833333,99.98333333,14.4125,0.28600000000000003, -2014-09-27 09:00:00,0.0,1024.438333,170.8975,94.45,16.28416667,0.3995, -2014-09-27 10:00:00,0.0,1024.591667,243.9666667,84.625,17.57416667,0.84075, -2014-09-27 11:00:00,0.0,1024.466667,171.675,84.93333333,18.28166667,1.004083333, -2014-09-27 12:00:00,0.0,1024.331667,196.2166667,83.12916667,18.85416667,0.840666667, -2014-09-27 13:00:00,0.0,1024.083333,411.2916667,74.5625,20.03083333,1.272, -2014-09-27 14:00:00,0.0,1023.806667,460.50833330000006,70.42083333,21.02333333,1.347, -2014-09-27 15:00:00,0.0,1023.535,404.3833333,67.65,19.64916667,1.065166667, -2014-09-27 16:00:00,0.0,1023.19,192.4575,69.94916667,19.3875,0.521333333, -2014-09-27 17:00:00,0.0,1023.013333,21.5175,85.38166667,18.0125,0.164416667, -2014-09-27 18:00:00,0.0,1023.195,1.993416667,96.275,13.95583333,0.0105, -2014-09-27 19:00:00,0.0,1023.193333,0.0,99.78333333,11.71333333,0.08008333299999999, -2014-09-27 20:00:00,0.0,1023.19,0.0,100.0,10.24166667,0.04175, -2014-09-27 21:00:00,0.0,1023.28,0.0,100.0,9.264166667000001,0.0, -2014-09-27 22:00:00,0.0,1023.215,0.0,100.0,8.4725,0.0005, -2014-09-27 23:00:00,0.0,1023.003333,0.0,100.0,8.079333333,0.0, -2014-09-28 00:00:00,0.0,1023.055,0.0,100.0,7.66725,0.0, -2014-09-28 01:00:00,0.0,1022.82,0.0,100.0,7.162916667,0.0, -2014-09-28 02:00:00,0.0,1022.443333,0.0,100.0,7.423166667,0.0, -2014-09-28 03:00:00,0.0,1022.198333,0.0,100.0,8.955,0.0, -2014-09-28 04:00:00,0.0,1021.9416669999999,0.0,100.0,9.274166667000001,0.12691666699999998, -2014-09-28 05:00:00,0.0,1021.6866669999999,0.0,100.0,8.7675,0.1755, -2014-09-28 06:00:00,0.0,1021.79,4.859833333,100.0,8.440833332999999,0.17375, -2014-09-28 07:00:00,0.0,1021.995,36.84583333,100.0,8.398333333,0.713, -2014-09-28 08:00:00,0.0,1021.891667,100.9308333,100.0,8.97,0.431666667, -2014-09-28 09:00:00,0.0,1021.601667,189.175,100.0,9.966666667,0.46183333299999996, -2014-09-28 10:00:00,0.0,1021.361667,344.775,95.13333333,12.15916667,0.829833333, -2014-09-28 11:00:00,0.0,1020.995,347.7083333,84.55,16.6475,1.3788333330000002, -2014-09-28 12:00:00,0.0,1020.546667,369.3583333,78.84583333,18.9575,1.424833333, -2014-09-28 13:00:00,0.0,1020.101667,313.84166669999996,77.505,20.05166667,1.808416667, -2014-09-28 14:00:00,0.0,1019.778333,263.0583333,76.46333333,20.1375,1.971416667, -2014-09-28 15:00:00,0.0,1019.413333,223.2666667,74.85166667,20.53416667,2.376083333, -2014-09-28 16:00:00,0.0,1019.145,150.3508333,75.3175,20.25,2.16175, -2014-09-28 17:00:00,0.0,1019.041667,30.22,88.85,19.1075,1.379833333, -2014-09-28 18:00:00,0.0,1019.1833330000001,2.074,97.94166667,15.29916667,0.12375, -2014-09-28 19:00:00,0.0,1019.373333,0.0,100.0,13.2875,0.17975, -2014-09-28 20:00:00,0.0,1019.513333,0.0,100.0,12.00916667,0.0205, -2014-09-28 21:00:00,0.0,1019.753333,0.0,100.0,11.65083333,0.121833333, -2014-09-28 22:00:00,0.0,1019.9,0.0,100.0,10.58666667,0.0555, -2014-09-28 23:00:00,0.0,1019.8116669999999,0.0,100.0,9.595833333,0.0, -2014-09-29 00:00:00,0.0,1019.465,0.0,100.0,9.2425,0.0065, -2014-09-29 01:00:00,0.0,1019.381667,0.0,100.0,9.628333332999999,0.014666667, -2014-09-29 02:00:00,0.0,1019.403333,0.0,100.0,10.9775,0.049583333, -2014-09-29 03:00:00,0.0,1019.358333,0.0,100.0,11.655,0.003416667, -2014-09-29 04:00:00,0.0,1019.116667,0.0,100.0,11.66833333,0.037166667, -2014-09-29 05:00:00,0.0,1019.0583330000001,0.0,100.0,11.61416667,0.09883333300000001, -2014-09-29 06:00:00,0.0,1019.336667,2.98975,100.0,11.6625,0.034583333, -2014-09-29 07:00:00,0.0,1019.868333,49.92083333,100.0,12.05333333,0.043, -2014-09-29 08:00:00,0.0,1020.105,89.09083333,100.0,12.81083333,0.2155, -2014-09-29 09:00:00,0.0,1020.208333,170.0333333,100.0,13.54083333,0.1305, -2014-09-29 10:00:00,0.0,1020.181667,258.9916667,99.91666667,14.93,0.36841666700000003, -2014-09-29 11:00:00,0.0,1019.85,385.0,90.35833333,16.93916667,0.511916667, -2014-09-29 12:00:00,0.0,1019.64,340.2416667,71.175,21.16333333,0.559333333, -2014-09-29 13:00:00,0.0,1019.4383330000001,305.875,67.0125,23.34916667,0.5033333329999999, -2014-09-29 14:00:00,0.0,1019.273333,206.1083333,64.09916667,22.675,0.618083333, -2014-09-29 15:00:00,0.0,1019.108333,156.93333330000002,63.82083333,21.9925,0.7785, -2014-09-29 16:00:00,0.0,1019.068333,73.85166667,78.85916667,21.16583333,0.21325, -2014-09-29 17:00:00,0.0,1019.343333,21.65058333,89.19166667,19.58416667,0.0075, -2014-09-29 18:00:00,0.0,1019.395,0.583,95.58333333,17.9175,0.032583333, -2014-09-29 19:00:00,0.0,1019.68,0.0,97.76666667,16.915,0.12558333300000002, -2014-09-29 20:00:00,0.0,1020.146667,0.0,96.14166667,16.585,0.22375, -2014-09-29 21:00:00,2.49879444,1019.993333,0.0,96.075,16.61,0.48100000000000004, -2014-09-29 22:00:00,0.0,1019.758333,0.0,99.66666667,16.175,0.11375, -2014-09-29 23:00:00,2.433143544,1019.768333,0.0,97.04166667,16.1675,0.302833333, -2014-09-30 00:00:00,0.0,1019.535,0.0,99.675,15.8325,0.1565, -2014-09-30 01:00:00,0.0,1019.575,0.0,100.0,15.61166667,0.059666667, -2014-09-30 02:00:00,0.0,1019.525,0.0,99.91666667,15.24416667,0.013916666999999999, -2014-09-30 03:00:00,0.0,1019.51,0.0,97.64166667,14.9675,0.145083333, -2014-09-30 04:00:00,0.0,1019.548333,0.0,99.95833333,14.585,0.033, -2014-09-30 05:00:00,0.0,1019.573333,0.0,98.70833333,14.53583333,0.135833333, -2014-09-30 06:00:00,0.0,1020.185,2.8089999999999997,99.89166667,14.57416667,0.07625, -2014-09-30 07:00:00,0.0,1020.708333,27.37833333,100.0,15.07333333,0.04125, -2014-09-30 08:00:00,0.0,1021.118333,51.055,99.08333333,15.98833333,0.01925, -2014-09-30 09:00:00,0.0,1021.306667,111.19583329999999,92.95,17.165,0.18458333300000002, -2014-09-30 10:00:00,0.0,1021.526667,231.2583333,85.0,18.45583333,0.38575, -2014-09-30 11:00:00,0.0,1021.55,227.375,83.84166667,19.005,0.369, -2014-09-30 12:00:00,0.0,1021.453333,251.55833330000002,82.2475,19.37416667,0.7576666670000001, -2014-09-30 13:00:00,0.0,1021.223333,240.375,80.15666667,20.41166667,0.46216666700000003, -2014-09-30 14:00:00,0.0,1021.13,226.175,77.9275,20.75916667,0.33325, -2014-09-30 15:00:00,0.0,1020.958333,115.9075,79.79916667,20.25666667,0.39741666700000006, -2014-09-30 16:00:00,0.0,1020.956667,59.09166667,84.05833333,19.445,0.15758333300000002, -2014-09-30 17:00:00,0.0,1021.131667,29.90208333,88.41666667,18.435,0.028083333, -2014-09-30 18:00:00,0.0,1021.336667,0.949333333,97.29166667,16.24166667,0.043166667, -2014-09-30 19:00:00,0.0,1021.5633330000001,0.0,99.93333333,15.8475,0.104583333, -2014-09-30 20:00:00,0.0,1021.613333,0.0,100.0,15.46083333,0.020166667, -2014-09-30 21:00:00,0.0,1021.616667,0.0,100.0,14.81666667,0.10225, -2014-09-30 22:00:00,0.0,1021.758333,0.0,100.0,14.4525,0.070833333, -2014-09-30 23:00:00,0.0,1021.788333,0.0,100.0,13.7525,0.009416667, -2014-01-10 00:00:00,0.0,1021.74,0.0,100.0,13.0175,0.00033333300000000006,238.082761 -2014-01-10 01:00:00,0.0,1021.885,0.0,100.0,12.3875,0.0,238.08371666666667 -2014-01-10 02:00:00,0.0,1021.986667,0.0,100.0,12.53666667,0.042583333,238.08434333333335 -2014-01-10 03:00:00,0.0,1021.953333,0.0,100.0,12.88666667,0.01775,238.08529900000005 -2014-01-10 04:00:00,0.0,1021.871667,0.0,100.0,11.81166667,0.030416667,238.08562800000004 -2014-01-10 05:00:00,0.0,1022.016667,0.0,100.0,10.97,0.01275,238.08661500000002 -2014-01-10 06:00:00,0.0,1022.1,4.603416667,100.0,11.32416667,0.10283333300000001,238.08661499999997 -2014-01-10 07:00:00,0.0,1022.55,35.03333333,100.0,11.88333333,0.15133333300000001,238.08529900000005 -2014-01-10 08:00:00,0.0,1022.818333,81.53583333,100.0,13.0025,0.226916667,238.08562800000004 -2014-01-10 09:00:00,0.0,1023.116667,122.20833329999999,100.0,13.75083333,0.43908333299999996,238.0846566666667 -2014-01-10 10:00:00,0.0,1023.145,260.2,99.98333333,15.39666667,0.528666667,238.08371666666667 -2014-01-10 11:00:00,0.0,1023.05,386.8,87.36666667,18.61583333,0.8039166670000001,238.08434333333335 -2014-01-10 12:00:00,0.0,1022.673333,374.575,73.865,21.87083333,0.650416667,238.08403 -2014-01-10 13:00:00,0.0,1022.238333,437.71666669999996,67.46916667,22.445,0.9105833329999999,238.08340333333334 -2014-01-10 14:00:00,0.0,1021.846667,179.4,64.77666667,20.71,2.082583333,238.082432 -2014-01-10 15:00:00,0.0,1021.918333,108.9875,74.85416667,20.36333333,0.544083333,238.082103 -2014-01-10 16:00:00,0.0,1021.976667,137.0291667,67.565,21.125,0.15108333300000001,238.08111600000004 -2014-01-10 17:00:00,0.0,1022.225,17.90408333,87.85833333,18.815,0.195416667,238.07954933333335 -2014-01-10 18:00:00,0.0,1022.73,0.9225,96.29166667,15.31083333,0.278666667,238.079236 -2014-01-10 19:00:00,0.0,1023.08,0.0,99.00833333,13.51583333,0.2245,238.078578 -2014-01-10 20:00:00,0.0,1023.6,0.0,100.0,12.14666667,0.0035,238.076604 -2014-01-10 21:00:00,0.0,1023.721667,0.0,100.0,11.12833333,0.04275,238.075288 -2014-01-10 22:00:00,0.0,1023.95,0.0,100.0,10.23083333,0.066333333,238.07594600000002 -2014-01-10 23:00:00,0.0,1024.138333,0.0,100.0,9.981666667,0.013166667,238.07497466666666 -2014-02-10 00:00:00,0.0,1024.285,0.0,100.0,10.02166667,0.0035833329999999997,238.04121393333332 -2014-02-10 01:00:00,0.0,1024.4,0.0,100.0,10.92166667,0.0,238.04070636666665 -2014-02-10 02:00:00,0.0,1024.491667,0.0,100.0,11.53833333,0.0035,238.0404525833333 -2014-02-10 03:00:00,0.0,1024.3816669999999,0.0,100.0,10.935,0.0,238.04070636666665 -2014-02-10 04:00:00,0.0,1024.268333,0.0,100.0,9.255,0.028333333,238.04070636666665 -2014-02-10 05:00:00,0.0,1024.336667,0.0,100.0,9.226666667,0.02125,238.04019879999996 -2014-02-10 06:00:00,0.0,1024.855,5.2451666669999994,100.0,9.908333333,0.0175,238.0404525833333 -2014-02-10 07:00:00,0.0,1025.175,24.13583333,100.0,9.83,0.0,238.04045258333335 -2014-02-10 08:00:00,0.0,1025.358333,87.3225,100.0,10.76833333,0.045333332999999996,238.0404525833333 -2014-02-10 09:00:00,0.0,1025.3683330000001,237.8,96.98333333,13.29916667,0.41266666700000004,238.04045258333335 -2014-02-10 10:00:00,0.0,1025.301667,326.0583333,87.45666667,16.41916667,0.519916667,238.04019879999996 -2014-02-10 11:00:00,0.0,1025.051667,379.35,75.9675,18.625,0.9099166670000001,238.04121393333332 -2014-02-10 12:00:00,0.0,1024.581667,398.5666667,69.6225,20.58083333,0.870083333,238.04019879999996 -2014-02-10 13:00:00,0.0,1024.391667,377.2916667,59.23333333,21.3775,0.6729999999999999,238.04096014999996 -2014-02-10 14:00:00,0.0,1023.976667,359.875,56.04,21.94916667,0.797,238.04096015000002 -2014-02-10 15:00:00,0.0,1023.491667,259.6333333,57.48833333,21.87083333,0.638333333,238.04070636666665 -2014-02-10 16:00:00,0.0,1023.358333,129.16083329999998,67.5425,20.8875,0.20175,238.04121393333332 -2014-02-10 17:00:00,0.0,1023.326667,23.72625,87.4225,18.54666667,0.18025,238.0412139333333 -2014-02-10 18:00:00,0.0,1023.375,0.9765,95.825,14.80666667,0.11633333300000001,238.04045258333335 -2014-02-10 19:00:00,0.0,1023.6866669999999,0.0,99.25,12.86083333,0.230083333,238.04019879999996 -2014-02-10 20:00:00,0.0,1023.5666669999999,0.0,100.0,11.70833333,0.107833333,238.04045258333335 -2014-02-10 21:00:00,0.0,1023.508333,0.0,100.0,10.6875,0.023333332999999998,238.03971536666663 -2014-02-10 22:00:00,0.0,1023.415,0.0,100.0,9.890833333,0.0,238.03995708333332 -2014-02-10 23:00:00,0.0,1023.286667,0.0,100.0,9.2125,0.00325,238.03947365 -2014-03-10 00:00:00,0.0,1023.03,0.0,100.0,8.720833333,0.004083333,238.0014775 -2014-03-10 01:00:00,0.0,1022.763333,0.0,100.0,8.321666667,0.0,238.00173128333336 -2014-03-10 02:00:00,0.0,1022.46,0.0,100.0,7.848333332999999,0.0,238.00173128333333 -2014-03-10 03:00:00,0.0,1022.273333,0.0,100.0,7.428833332999999,0.0,238.0014775 -2014-03-10 04:00:00,0.0,1022.27,0.0,100.0,7.121666667,0.0,238.00147748333333 -2014-03-10 05:00:00,0.0,1022.19,0.0,100.0,6.77375,0.0,238.0014775 -2014-03-10 06:00:00,0.0,1022.4366669999999,3.3689166669999997,100.0,6.483833333,0.0,238.0014775 -2014-03-10 07:00:00,0.0,1022.781667,32.69,100.0,7.654583333,0.000166667,238.00173128333333 -2014-03-10 08:00:00,0.0,1022.9416669999999,82.9325,100.0,11.26916667,0.134,238.00122369999997 -2014-03-10 09:00:00,0.0,1022.786667,240.6166667,99.21666667,13.39666667,0.779,238.00173128333333 -2014-03-10 10:00:00,0.0,1022.391667,322.775,90.2,16.69333333,0.703666667,238.0024926333333 -2014-03-10 11:00:00,0.0,1021.945,379.8,83.32666667,18.525,0.7885,238.00300019999995 -2014-03-10 12:00:00,0.0,1021.478333,402.5666667,75.88083333,20.45083333,0.82525,238.00300019999995 -2014-03-10 13:00:00,0.0,1021.053333,370.53333330000004,68.54,21.3075,1.202083333,238.00300019999995 -2014-03-10 14:00:00,0.0,1020.508333,350.525,61.7775,21.76083333,1.317083333,238.00300019999995 -2014-03-10 15:00:00,0.0,1019.78,259.45,57.32666667,21.90416667,1.148916667,238.00300019999995 -2014-03-10 16:00:00,0.0,1019.455,124.75166670000002,62.695,20.66083333,1.3369166670000001,238.00300019999995 -2014-03-10 17:00:00,0.0,1019.208333,18.366,84.8475,18.4475,0.55925,238.0024926333333 -2014-03-10 18:00:00,0.0,1019.21,0.768083333,94.7,13.59416667,0.01425,238.0009699 -2014-03-10 19:00:00,0.0,1019.136667,0.0,99.55833333,11.78333333,0.1275,238.0014775 -2014-03-10 20:00:00,0.0,1019.073333,0.0,100.0,10.09666667,0.022916667,238.00096989999997 -2014-03-10 21:00:00,0.0,1018.75,0.0,100.0,9.070833333,0.039583333,238.00046229999998 -2014-03-10 22:00:00,0.0,1018.361667,0.0,100.0,8.361666667,0.005083333,238.00046229999998 -2014-03-10 23:00:00,0.0,1018.046667,0.0,100.0,7.96125,0.0,238.00071609999998 -2014-04-10 00:00:00,0.0,1017.685,0.0,100.0,7.3906666670000005,0.00075,237.89812199999997 -2014-04-10 01:00:00,0.0,1017.298333,0.0,100.0,6.96025,0.0,237.89742019999997 -2014-04-10 02:00:00,0.0,1016.971667,0.0,100.0,6.446833333,0.0,237.89742019999997 -2014-04-10 03:00:00,0.0,1016.565,0.0,100.0,7.055333332999999,0.0,237.89742019999997 -2014-04-10 04:00:00,0.0,1016.155,0.0,100.0,7.1246666670000005,0.00825,237.89742019999997 -2014-04-10 05:00:00,0.0,1015.71,0.0,100.0,6.309833332999999,0.0,237.89742019999997 -2014-04-10 06:00:00,0.0,1015.588333,2.538333333,100.0,5.940166667000001,0.0,237.89742019999997 -2014-04-10 07:00:00,0.0,1015.805,29.44166667,100.0,6.545166667,0.028999999999999998,237.89742019999997 -2014-04-10 08:00:00,0.0,1015.54,97.5625,100.0,7.95275,0.11025,237.89708601666666 -2014-04-10 09:00:00,0.0,1015.376667,215.725,100.0,11.18833333,0.342,237.89742019999997 -2014-04-10 10:00:00,0.0,1015.028333,333.3166667,90.43333333,15.24583333,1.265083333,237.89742019999997 -2014-04-10 11:00:00,0.0,1014.623333,366.3,80.62583333,17.1625,1.530083333,237.89675183333335 -2014-04-10 12:00:00,0.0,1013.868333,406.15833330000004,74.11166667,18.44166667,1.70525,237.89574928333334 -2014-04-10 13:00:00,0.0,1013.123333,398.1166667,64.92166667,19.70583333,1.402,237.89675183333335 -2014-04-10 14:00:00,0.0,1012.358333,346.975,58.925,20.32583333,2.26275,237.8954151 -2014-04-10 15:00:00,0.0,1011.698333,265.475,55.6225,20.47833333,1.94525,237.8954151 -2014-04-10 16:00:00,0.0,1011.7,127.43333329999999,59.27916667,19.38583333,1.9838333330000002,237.89504748333331 -2014-04-10 17:00:00,0.0,1011.743333,13.81058333,79.85166667,17.44916667,1.234083333,237.8940115 -2014-04-10 18:00:00,0.0,1011.831667,0.35408333299999994,93.45833333,12.07416667,0.002416667,237.8933097 -2014-04-10 19:00:00,0.0,1011.55,0.0,98.66666667,10.69583333,0.017583333,237.8933097 -2014-04-10 20:00:00,0.0,1011.6833330000001,0.0,100.0,9.5325,0.02525,237.8933097 -2014-04-10 21:00:00,0.0,1011.913333,0.0,100.0,8.501666667,0.007583333,237.8933097 -2014-04-10 22:00:00,0.0,1011.841667,0.0,100.0,7.760666667000001,0.0035833329999999997,237.8933097 -2014-04-10 23:00:00,0.0,1011.841667,0.0,100.0,7.128916667,0.0,237.8933097 -2014-05-10 00:00:00,0.0,1011.925,0.0,100.0,6.696666667000001,0.0,237.8171152 -2014-05-10 01:00:00,0.0,1012.046667,0.0,100.0,6.604083332999999,0.0,237.8150098 -2014-05-10 02:00:00,0.0,1012.113333,0.0,100.0,6.7096666670000005,0.0,237.81571160000001 -2014-05-10 03:00:00,0.0,1011.945,0.0,100.0,6.481,0.00875,237.8171152 -2014-05-10 04:00:00,0.0,1011.783333,0.0,100.0,5.818916667000001,0.0,237.8171152 -2014-05-10 05:00:00,0.0,1012.041667,0.0,100.0,5.464166667000001,0.0,237.8171152 -2014-05-10 06:00:00,0.0,1012.3133330000001,6.35825,100.0,5.729166667,0.0,237.8171152 -2014-05-10 07:00:00,0.0,1012.708333,43.93,100.0,6.89225,0.00033333300000000006,237.81811774999997 -2014-05-10 08:00:00,0.0,1013.24,98.68833333,100.0,9.2075,0.06425,237.81912030000004 -2014-05-10 09:00:00,0.0,1013.348333,159.1,98.675,12.11333333,0.44508333299999997,237.81912030000004 -2014-05-10 10:00:00,0.0,1013.388333,198.06666669999998,88.2,13.64166667,1.4140000000000001,237.81912030000004 -2014-05-10 11:00:00,0.0,1013.128333,189.6166667,87.5,13.945,1.333083333,237.81912030000004 -2014-05-10 12:00:00,0.0,1012.78,201.775,83.70833333,14.37833333,0.48916666700000005,237.81639668333335 -2014-05-10 13:00:00,0.0,1012.485,259.875,80.58416667,15.05833333,0.563333333,237.8150098 -2014-05-10 14:00:00,0.0,1012.241667,229.1416667,78.6025,15.865,0.586583333,237.8150098 -2014-05-10 15:00:00,0.0,1011.966667,170.91666669999998,79.31083333,15.97083333,1.0635,237.8171152 -2014-05-10 16:00:00,0.0,1011.925,76.89166667,82.75,14.845,1.7623333330000002,237.81845193333334 -2014-05-10 17:00:00,0.0,1011.911667,18.47908333,89.4,13.215,1.309583333,237.81982206666666 -2014-05-10 18:00:00,0.0,1011.83,0.211333333,96.95833333,11.6475,0.080916667,237.82189400000001 -2014-05-10 19:00:00,0.0,1011.79,0.0,99.81666667,9.529166667,0.000666667,237.82633870000004 -2014-05-10 20:00:00,0.0,1011.716667,0.0,100.0,8.316916667000001,0.0,237.8304993 -2014-05-10 21:00:00,0.0,1011.668333,0.0,100.0,7.426,0.008916667,237.83290545 -2014-05-10 22:00:00,0.0,1011.733333,0.0,100.0,7.495083332999999,0.004416667,237.8428308 -2014-05-10 23:00:00,0.0,1011.261667,0.0,100.0,8.7925,0.054833333,237.84353259999997 -2014-06-10 00:00:00,0.0,1010.835,0.0,100.0,9.0475,0.0,237.84112645000002 -2014-06-10 01:00:00,0.0,1010.471667,0.0,100.0,8.670833333,0.015333333000000001,237.84904670000003 -2014-06-10 02:00:00,0.0,1010.111667,0.0,100.0,9.18,0.058916667,237.847994 -2014-06-10 03:00:00,0.0,1009.875,0.0,100.0,8.36125,0.01925,237.84555441666666 -2014-06-10 04:00:00,0.0,1009.853333,0.0,100.0,8.76,0.0065,237.84146063333333 -2014-06-10 05:00:00,0.0,1009.87,0.0,100.0,9.198333332999999,0.024083333,237.83666505000005 -2014-06-10 06:00:00,0.0,1009.863333,0.547416667,100.0,9.330833333,0.035416667,237.83255455000003 -2014-06-10 07:00:00,0.0,1009.641667,17.52633333,100.0,9.456666667,0.19241666699999999,237.82874483333333 -2014-06-10 08:00:00,0.0,1009.916667,35.58083333,99.43333333,10.1025,0.21175,237.82496853333336 -2014-06-10 09:00:00,0.0,1009.695,56.59916667,96.16666667,11.03416667,0.276916667,237.82119223333333 -2014-06-10 10:00:00,0.0,1009.148333,119.31666670000001,92.19166667,12.49166667,1.482666667,237.81674758333335 -2014-06-10 11:00:00,0.0,1008.486667,340.40833330000004,87.775,13.0775,2.230833333,237.81332216666667 -2014-06-10 12:00:00,0.0,1007.675,411.05,83.61666667,15.21666667,2.6848333330000003,237.80882733333337 -2014-06-10 13:00:00,0.0,1007.348333,292.5583333,82.0175,15.86166667,2.484666667,237.80368085 -2014-06-10 14:00:00,0.0,1007.088333,234.425,81.925,16.23416667,2.41275,237.79683001666663 -2014-06-10 15:00:00,0.0,1006.543333,65.13666667,85.63333333,15.72166667,1.284833333,237.78927738333334 -2014-06-10 16:00:00,0.0,1006.136667,59.20916667,87.13333333,15.71916667,0.336583333,237.78307823333333 -2014-06-10 17:00:00,0.0,1006.108333,17.61658333,92.6,15.20833333,0.5645,237.77794846666666 -2014-06-10 18:00:00,0.0,1005.82,0.21916666699999998,99.15,11.58583333,0.038416667,237.77280199999998 -2014-06-10 19:00:00,0.0,1005.551667,0.0,96.4,11.9625,1.243916667,237.7686414 -2014-06-10 20:00:00,0.0,1005.31,0.0,92.68333333,12.20583333,1.61725,237.7638458166667 -2014-06-10 21:00:00,0.0,1004.903333,0.0,96.375,12.06916667,2.032,237.76042040000002 -2014-06-10 22:00:00,0.0,1004.408333,0.0,96.11666667,11.895,2.7288333330000003,237.75768006666667 -2014-06-10 23:00:00,0.0,1003.845,0.0,97.81666667,11.61666667,3.3130833330000002,237.75458883333332 -2014-07-10 00:00:00,0.0,1003.11,0.0,99.40833333,11.26666667,3.6974166669999997,237.82734130000003 -2014-07-10 01:00:00,0.0,1002.636667,0.0,100.0,11.185,3.464666667,237.82600449999998 -2014-07-10 02:00:00,0.0,1002.083333,0.0,99.84166667,11.59083333,3.40675,237.8243001333333 -2014-07-10 03:00:00,31.73124202,1001.5583330000001,0.0,99.96666667,11.4675,2.435833333,237.8225624 -2014-07-10 04:00:00,66.11561938,1000.926667,0.0,99.98333333,11.3625,2.94775,237.81982206666666 -2014-07-10 05:00:00,21.76226659,1000.641667,0.0,99.56666667,11.19083333,3.216,237.81641340000002 -2014-07-10 06:00:00,3.177811848,1000.295,0.906666667,99.45,11.43916667,2.917583333,237.81467561666668 -2014-07-10 07:00:00,6.655179096,999.5066667000001,12.27316667,99.78333333,11.92,3.0965833330000003,237.8123029 -2014-07-10 08:00:00,9.924777648,999.045,52.81916667,99.00833333,12.71916667,2.7145,237.80914479999998 -2014-07-10 09:00:00,4.399776984,998.8783332999999,141.94166669999998,95.23333333,14.2175,3.5198333330000002,237.8074571666667 -2014-07-10 10:00:00,0.0,999.1033332999999,128.84083329999999,91.875,15.29583333,4.022916667,237.8050343 -2014-07-10 11:00:00,0.0,999.4666667000001,78.47,93.15833333,15.43666667,2.3385,237.80231068333333 -2014-07-10 12:00:00,0.0,1000.26,99.7075,93.025,15.77333333,1.44375,237.79921945 -2014-07-10 13:00:00,0.0,1000.851667,131.8491667,86.26666667,16.48916667,1.34675,237.79579403333332 -2014-07-10 14:00:00,0.0,1001.011667,152.93333330000002,80.4425,16.78916667,1.85275,237.79203443333333 -2014-07-10 15:00:00,0.0,1000.936181,81.88416667,82.10833333,16.08166667,2.66275,237.78929410000003 -2014-07-10 16:00:00,0.0,1000.7575,35.90583333,84.85,15.3725,2.851916667,237.78613599999997 -2014-07-10 17:00:00,4.979618063999999,1001.537333,5.779166667,92.075,13.8125,0.909,237.78307825 -2014-07-10 18:00:00,120.05437109999998,1002.185167,0.031416667,99.55833333,11.72,0.34175,237.77861686666665 -2014-07-10 19:00:00,22.10705316,1003.046167,0.0,99.98333333,11.44916667,0.241583333,237.78926070000003 -2014-07-10 20:00:00,18.89275231,1003.3021669999999,0.0,98.5,11.52666667,1.06825,237.8651544833333 -2014-07-10 21:00:00,0.0,1003.963667,0.0,98.11666667,11.45333333,0.6990833329999999,237.8881799333333 -2014-07-10 22:00:00,0.0,1004.751833,0.0,96.78333333,10.49083333,0.18641666699999998,237.89367731666667 -2014-07-10 23:00:00,0.0,1005.6303330000001,0.0,97.15,10.71583333,0.2055,237.8954151 -2014-08-10 00:00:00,0.0,1006.3860000000001,0.0,99.94166667,9.578333333,0.300833333,237.38354133333334 -2014-08-10 01:00:00,2.4050227680000003,1006.709667,0.0,100.0,8.635833332999999,0.022166667,237.38387551666668 -2014-08-10 02:00:00,0.0,1006.768,0.0,100.0,10.0125,0.88925,237.38218788333336 -2014-08-10 03:00:00,0.0,1006.848667,0.0,100.0,11.02666667,1.102083333,237.38355805000003 -2014-08-10 04:00:00,0.0,1006.640333,0.0,100.0,11.16,0.5479999999999999,237.38387551666668 -2014-08-10 05:00:00,0.0,1006.141167,0.0,100.0,10.42833333,0.167416667,237.3825387833334 -2014-08-10 06:00:00,0.0,1005.755667,0.877583333,100.0,9.729166667000001,0.07716666700000001,237.38220460000002 -2014-08-10 07:00:00,0.0,1005.694333,20.16141667,100.0,9.5575,0.29583333300000003,237.3828729666667 -2014-08-10 08:00:00,0.0,1005.359167,66.82166667,100.0,11.83166667,2.227083333,237.3825387833334 -2014-08-10 09:00:00,0.0,1005.1105,94.04166667,99.075,12.76916667,1.86175,237.38285625000003 -2014-08-10 10:00:00,0.0,1004.7876669999999,103.4833333,98.06666667,13.41583333,1.90475,237.37876246666667 -2014-08-10 11:00:00,9.372494712,1004.369333,49.60333333,98.21666667,13.44166667,2.4265,237.3780941 -2014-08-10 12:00:00,36.31307009,1004.067,33.1975,99.95833333,13.3775,1.50875,237.3759888 -2014-08-10 13:00:00,33.90569664,1002.8955,41.2075,100.0,13.62333333,1.4629166669999998,237.3739836 -2014-08-10 14:00:00,6.9877008,1002.005667,81.90083333,96.60833333,14.505,2.7800833330000003,237.3753204 -2014-08-10 15:00:00,3.92841456,1001.4780000000001,41.27416667,96.825,15.18666667,3.531166667,237.37669056666667 -2014-08-10 16:00:00,0.0,1001.013167,26.95416667,95.9,15.80083333,3.65125,237.38046681666665 -2014-08-10 17:00:00,0.0,1001.05,10.42075,93.20833333,15.81,2.951916667,237.38389223333334 -2014-08-10 18:00:00,0.0,1001.399167,0.12541666699999998,91.26666667,15.555,2.678,237.39318263333337 -2014-08-10 19:00:00,0.0,1001.833333,0.0,92.2,15.24166667,1.3631666669999998,237.49008006666665 -2014-08-10 20:00:00,0.0,1001.5605,0.0,98.03333333,14.39666667,1.421583333,237.52684061666665 -2014-08-10 21:00:00,0.0,1000.9960000000001,0.0,100.0,14.72833333,1.88875,237.532338 -2014-08-10 22:00:00,3.021651336,1000.6771669999999,0.0,97.075,15.63583333,1.8945,237.5326889 -2014-08-10 23:00:00,5.927967624,999.8121667000001,0.0,96.95,15.8625,1.6553333330000002,237.53093439999998 -2014-09-10 00:00:00,3.977388288,999.59,0.0,87.30833333,17.56333333,3.51375, -2014-09-10 01:00:00,6.920541168,1000.265,0.0,86.95,17.63333333,2.3105833330000003, -2014-09-10 02:00:00,5.315437608,1001.4355,0.0,94.64166667,17.5125,0.976333333, -2014-09-10 03:00:00,19.14624209,1001.1145,0.0,97.30833333,16.6575,1.219666667, -2014-09-10 04:00:00,10.62185383,1001.234667,0.0,99.96666667,15.78833333,0.820333333, -2014-09-10 05:00:00,9.878466,1001.6075,0.0,100.0,15.46083333,0.302833333, -2014-09-10 06:00:00,14.75407982,1001.904833,0.414083333,100.0,15.345,0.36775, -2014-09-10 07:00:00,10.24286057,1002.131167,10.54441667,97.53333333,15.3475,0.6094166670000001, -2014-09-10 08:00:00,0.0,1002.640833,41.86833333,95.69166667,16.04333333,1.3628333330000002, -2014-09-10 09:00:00,0.0,1003.1289999999999,59.2725,94.01666667,16.6375,0.65375, -2014-09-10 10:00:00,5.103385536,1003.551333,84.18083333,95.90833333,17.19833333,0.706916667, -2014-09-10 11:00:00,7.3898652479999996,1003.632,67.215,98.325,17.1025,0.46616666700000003, -2014-09-10 12:00:00,12.49676592,1003.5666669999999,97.27,98.21666667,17.31666667,2.331416667, -2014-09-10 13:00:00,8.597392656,1003.2605,199.375,94.54166667,18.315,1.6871666669999998, -2014-09-10 14:00:00,5.539923192000001,1003.287333,50.47416667,95.19166667,18.16333333,1.338083333, -2014-09-10 15:00:00,7.7052165839999995,1004.338667,24.08083333,99.55,16.3025,0.925083333, -2014-09-10 16:00:00,4.868097312,1004.3430000000001,19.07833333,100.0,15.32666667,0.223, -2014-09-10 17:00:00,4.831851096,1004.779,3.253833333,100.0,15.07833333,0.607833333, -2014-09-10 18:00:00,5.10174492,1005.440833,0.004666667,99.60833333,14.85083333,0.703, -2014-09-10 19:00:00,2.53810452,1006.112333,0.0,99.41666667,14.57666667,0.755166667, -2014-09-10 20:00:00,2.4050227680000003,1006.594333,0.0,99.71666667,14.34333333,0.36700000000000005, -2014-09-10 21:00:00,2.411100648,1007.0575,0.0,100.0,13.45166667,0.153166667, -2014-09-10 22:00:00,0.0,1007.6039999999999,0.0,99.86666667,12.05916667,0.092666667, -2014-09-10 23:00:00,2.425215504,1007.775,0.0,98.89166667,11.77,0.042666667, -2014-10-10 00:00:00,2.41677756,1007.911833,0.0,99.46666667,11.79833333,0.318333333,237.86281916666667 -2014-10-10 01:00:00,0.0,1008.245667,0.0,99.225,10.92083333,0.40875,237.86145249999996 -2014-10-10 02:00:00,2.4050227680000003,1008.4575,0.0,98.14166667,10.015,0.050916667,237.85871916666667 -2014-10-10 03:00:00,0.0,1008.3855,0.0,99.41666667,10.0025,0.029083333,237.85805249999999 -2014-10-10 04:00:00,2.4050227680000003,1008.811,0.0,100.0,9.659166667000001,0.045333332999999996,237.85805249999999 -2014-10-10 05:00:00,0.0,1009.5219999999999,0.0,100.0,10.76916667,0.644416667,237.85805249999999 -2014-10-10 06:00:00,2.572182192,1009.884667,1.070166667,100.0,11.20666667,0.3785,237.85805249999999 -2014-10-10 07:00:00,0.0,1010.2539999999999,42.21083333,100.0,11.6825,0.671166667,237.85805249999999 -2014-10-10 08:00:00,2.47215048,1010.779,97.26416667,100.0,12.855,0.32866666699999997,237.85938583333328 -2014-10-10 09:00:00,0.0,1011.5039999999999,143.4033333,97.24166667,14.23833333,0.61125,237.85971916666665 -2014-10-10 10:00:00,2.510158632,1011.8535,134.7041667,91.93333333,15.57916667,0.594666667,237.86005249999997 -2014-10-10 11:00:00,0.0,1012.0145,180.3916667,87.8,16.73833333,0.21175,237.86145249999996 -2014-10-10 12:00:00,2.58553512,1011.916667,276.6416667,81.31083333,17.59916667,0.651833333,237.86215249999995 -2014-10-10 13:00:00,0.0,1011.818833,286.9416667,74.02583333,19.35666667,0.534333333,237.86315249999998 -2014-10-10 14:00:00,0.0,1011.758333,203.31666669999998,73.98333333,18.79333333,0.616166667,237.86520249999998 -2014-10-10 15:00:00,2.40786384,1011.480667,92.79583333,82.73666667,17.6075,0.37275,237.8662525 -2014-10-10 16:00:00,0.0,1011.195167,40.97166667,93.71666667,16.77833333,0.043166667,237.8683525 -2014-10-10 17:00:00,0.0,1011.265333,6.788666667,96.875,15.52833333,0.00575,237.86968583333336 -2014-10-10 18:00:00,2.40798312,1010.85,0.053583333,99.99166667,14.6125,0.7625833329999999,237.8693525 -2014-10-10 19:00:00,0.0,1010.789,0.0,100.0,14.13833333,0.15225,237.8703525 -2014-10-10 20:00:00,0.0,1010.762333,0.0,100.0,13.4675,0.081083333,237.8710525 -2014-10-10 21:00:00,0.0,1010.9355,0.0,100.0,13.27083333,0.09675,237.8727858333333 -2014-10-10 22:00:00,2.4050227680000003,1010.6460000000001,0.0,100.0,13.06833333,0.000666667,237.8744525 -2014-10-10 23:00:00,0.0,1010.1855,0.0,100.0,12.94583333,0.006999999999999999,237.87515249999998 -2014-11-10 00:00:00,0.0,1009.916667,0.0,100.0,12.93416667,0.025333333,237.95631916666665 -2014-11-10 01:00:00,0.0,1009.882,0.0,100.0,13.18166667,0.042083333,237.95498583333332 -2014-11-10 02:00:00,0.0,1009.775,0.0,100.0,13.34916667,0.19141666699999998,237.95598583333333 -2014-11-10 03:00:00,2.515048464,1009.959667,0.0,100.0,13.37416667,0.16066666699999999,237.9566525 -2014-11-10 04:00:00,0.0,1009.544667,0.0,100.0,13.43,0.000583333,237.9566525 -2014-11-10 05:00:00,0.0,1009.125,0.0,100.0,13.35083333,0.025416667,237.9566525 -2014-11-10 06:00:00,0.0,1009.116667,0.42775,100.0,13.27833333,0.0,237.95666916666664 -2014-11-10 07:00:00,0.0,1009.088167,15.95258333,100.0,13.255,0.0,237.9566525 -2014-11-10 08:00:00,2.4050227680000003,1009.540833,37.94833333,100.0,13.2875,0.0,237.9566525 -2014-11-10 09:00:00,0.0,1009.5521669999999,115.35083329999999,100.0,13.62916667,0.558333333,237.9566525 -2014-11-10 10:00:00,0.0,1009.257,128.3083333,100.0,13.845,0.794583333,237.95805249999998 -2014-11-10 11:00:00,0.0,1009.152167,199.43333330000002,96.775,14.62833333,0.8171666670000001,237.95770249999998 -2014-11-10 12:00:00,0.0,1008.945167,144.7725,97.68333333,15.2975,1.099833333,237.9566525 -2014-11-10 13:00:00,2.461961184,1008.929833,118.53333329999998,97.10833333,15.75,0.7040000000000001,237.9566525 -2014-11-10 14:00:00,0.0,1008.958333,151.0333333,93.65,16.6725,0.42158333299999995,237.9566525 -2014-11-10 15:00:00,0.0,1008.9035,106.94583329999999,94.04166667,17.22333333,0.5965,237.95770249999998 -2014-11-10 16:00:00,0.0,1008.6139999999999,45.8925,97.6,16.94416667,0.505833333,237.95770249999998 -2014-11-10 17:00:00,2.416460808,1008.7180000000001,8.345166667,99.85833333,15.585,0.133333333,237.9580525 -2014-11-10 18:00:00,0.0,1008.897833,0.0695,100.0,13.85666667,0.13225,237.95875249999997 -2014-11-10 19:00:00,0.0,1009.134667,0.0,100.0,12.86583333,0.13075,237.95875249999997 -2014-11-10 20:00:00,0.0,1009.5873330000001,0.0,100.0,11.78833333,0.11575,237.95840249999995 -2014-11-10 21:00:00,2.4050227680000003,1010.045667,0.0,100.0,10.91166667,0.075833333,237.95908583333332 -2014-11-10 22:00:00,0.0,1010.333333,0.0,100.0,10.36416667,0.055,237.96041916666664 -2014-11-10 23:00:00,0.0,1010.559667,0.0,100.0,10.0925,0.10116666699999999,237.95975249999995 -2014-12-10 00:00:00,0.0,1010.604833,0.0,100.0,10.8575,0.10425, -2014-12-10 01:00:00,0.0,1010.897833,0.0,100.0,10.5675,0.07908333299999999, -2014-12-10 02:00:00,0.0,1010.977167,0.0,100.0,9.3725,0.01575, -2014-12-10 03:00:00,2.4050227680000003,1010.952667,0.0,100.0,8.117916667000001,0.02925, -2014-12-10 04:00:00,0.0,1011.079833,0.0,100.0,7.372583333,0.06275, -2014-12-10 05:00:00,0.0,1011.093833,0.0,100.0,6.71,0.026666667, -2014-12-10 06:00:00,0.0,1011.0728330000001,1.36125,100.0,6.379583332999999,0.018083333, -2014-12-10 07:00:00,0.0,1011.490833,22.46833333,100.0,7.91925,0.11808333300000001, -2014-12-10 08:00:00,0.0,1011.448667,46.64583333,100.0,8.776666667,0.520833333, -2014-12-10 09:00:00,0.0,1011.5285,155.25,100.0,9.390833333,0.321416667, -2014-12-10 10:00:00,0.0,1011.109167,251.79166669999998,100.0,10.30583333,0.612083333, -2014-12-10 11:00:00,2.54629992,1010.775,221.7583333,98.70833333,11.91083333,0.95, -2014-12-10 12:00:00,0.0,1010.162167,123.35,99.1,12.1875,1.402166667, -2014-12-10 13:00:00,0.0,1009.348167,191.81666669999998,93.925,13.98416667,1.298333333, -2014-12-10 14:00:00,0.0,1008.255167,226.3666667,89.74166667,15.5225,1.208166667, -2014-12-10 15:00:00,0.0,1007.447333,112.79083329999999,89.70833333,16.17,0.96825, -2014-12-10 16:00:00,0.0,1006.8675,39.37583333,95.60833333,15.5825,0.37958333299999997, -2014-12-10 17:00:00,0.0,1006.847833,4.475583333,99.70833333,14.71333333,0.200333333, -2014-12-10 18:00:00,0.0,1006.8758330000001,0.0,100.0,14.23166667,0.37, -2014-12-10 19:00:00,2.518685496,1005.807833,0.0,100.0,13.70583333,0.3145, -2014-12-10 20:00:00,0.0,1005.559167,0.0,100.0,13.5225,0.12841666699999998, -2014-12-10 21:00:00,0.0,1005.004333,0.0,100.0,13.34916667,0.2475, -2014-12-10 22:00:00,0.0,1004.641667,0.0,100.0,13.31166667,0.26916666699999997, -2014-12-10 23:00:00,0.0,1004.5521669999999,0.0,100.0,13.12333333,0.188, -2014-10-13 00:00:00,0.0,1004.3215,0.0,100.0,13.19666667,0.38141666700000004,237.9011525 -2014-10-13 01:00:00,0.0,1003.773167,0.0,100.0,13.22,0.562416667,237.89981916666662 -2014-10-13 02:00:00,2.406314376,1003.3530000000001,0.0,100.0,12.36333333,0.131,237.89915249999999 -2014-10-13 03:00:00,0.0,1002.9333330000001,0.0,100.0,12.34916667,0.255916667,237.89810249999996 -2014-10-13 04:00:00,0.0,1002.693833,0.0,100.0,12.20916667,0.199666667,237.8970525 -2014-10-13 05:00:00,0.0,1002.395667,0.0,100.0,12.24333333,0.092333333,237.89538583333334 -2014-10-13 06:00:00,0.0,1003.050833,0.17275,100.0,12.84666667,0.38791666700000005,237.8950525 -2014-10-13 07:00:00,0.0,1002.811,8.667833332999999,100.0,13.09,0.273166667,237.89330249999998 -2014-10-13 08:00:00,0.0,1002.747833,36.48083333,100.0,13.8375,2.53125,237.8926191666666 -2014-10-13 09:00:00,0.0,1003.1645,102.42833329999999,100.0,14.58,1.23725,237.8909525 -2014-10-13 10:00:00,2.851804248,1003.666667,50.54166667,96.625,15.5625,1.515333333,237.8895525 -2014-10-13 11:00:00,0.0,1003.656167,210.8833333,93.23333333,17.1275,1.2175,237.88885249999998 -2014-10-13 12:00:00,0.0,1003.752167,166.08333330000002,88.95833333,17.1225,1.866166667,237.88718583333335 -2014-10-13 13:00:00,0.0,1003.523667,166.2666667,86.45833333,17.38833333,1.8980000000000001,237.8868525 -2014-10-13 14:00:00,0.0,1003.233333,180.95833330000002,86.50833333,17.445,2.313166667,237.88580250000004 -2014-10-13 15:00:00,0.0,1003.3430000000001,146.6333333,84.51666667,17.67833333,1.934833333,237.88475250000002 -2014-10-13 16:00:00,0.0,1002.91,58.46,89.66666667,17.3025,1.501,237.88475250000002 -2014-10-13 17:00:00,2.765281776,1002.701333,16.10675,99.80833333,16.0425,1.74825,237.88475250000002 -2014-10-13 18:00:00,0.0,1002.818,0.095333333,100.0,14.12,0.695416667,237.88475250000002 -2014-10-13 19:00:00,0.0,1003.122833,0.0,100.0,12.43666667,0.209666667,237.88475250000002 -2014-10-13 20:00:00,0.0,1003.288167,0.0,100.0,11.64916667,0.124416667,237.88475250000002 -2014-10-13 21:00:00,0.0,1003.5728330000001,0.0,100.0,10.55916667,0.139666667,237.88475250000002 -2014-10-13 22:00:00,0.0,1003.6285,0.0,100.0,9.503333332999999,0.018916666999999998,237.88475250000002 -2014-10-13 23:00:00,0.0,1003.8895,0.0,100.0,9.016666667,0.04025,237.88405249999997 -2014-10-14 00:00:00,0.0,1003.932,0.0,100.0,9.444166667000001,0.032833333,237.88300249999998 -2014-10-14 01:00:00,0.0,1004.115833,0.0,100.0,9.583333332999999,0.08075,237.88265249999998 -2014-10-14 02:00:00,2.429757912,1004.397833,0.0,100.0,9.679166667,0.121333333,237.88265249999998 -2014-10-14 03:00:00,0.0,1004.466667,0.0,100.0,9.739166667000001,0.03675,237.88265249999998 -2014-10-14 04:00:00,0.0,1004.361833,0.0,100.0,10.1625,0.032833333,237.88300249999998 -2014-10-14 05:00:00,0.0,1004.366667,0.0,100.0,9.776666667,0.143416667,237.88475250000002 -2014-10-14 06:00:00,0.0,1004.463167,0.5375833329999999,100.0,9.685,0.07933333299999999,237.88475250000002 -2014-10-14 07:00:00,0.0,1004.6895,22.09275,100.0,9.745,0.056083333,237.88475250000002 -2014-10-14 08:00:00,0.0,1004.974167,89.06083333,100.0,10.63166667,0.080916667,237.88475250000002 -2014-10-14 09:00:00,0.0,1005.1916669999999,111.37666670000002,100.0,11.74583333,0.129333333,237.88580249999995 -2014-10-14 10:00:00,0.0,1005.3166669999999,119.8525,100.0,12.98,0.954416667,237.8861525 -2014-10-14 11:00:00,0.0,1005.223667,174.3416667,100.0,14.63833333,0.7446666670000001,237.8868525 -2014-10-14 12:00:00,0.0,1004.7710000000001,255.5083333,93.03333333,15.92166667,0.936916667,237.8865025 -2014-10-14 13:00:00,0.0,1004.318833,246.56666669999998,84.02,18.48333333,0.75125,237.8868525 -2014-10-14 14:00:00,2.64568776,1004.1425,242.2883333,80.15083333,19.29666667,1.122416667,237.88718583333332 -2014-10-14 15:00:00,0.0,1003.6785,206.4083333,77.00666667,18.69416667,1.3526666669999998,237.88851916666667 -2014-10-14 16:00:00,0.0,1003.529833,83.41916667,78.87416667,17.5325,0.63975,237.88920249999998 -2014-10-14 17:00:00,0.0,1003.5855,6.131083332999999,92.25,14.66083333,0.073583333,237.8909525 -2014-10-14 18:00:00,0.0,1003.291667,0.018333333,99.16666667,12.6225,0.16066666699999999,237.8909525 -2014-10-14 19:00:00,0.0,1003.425,0.0,100.0,10.97666667,0.037833333,237.89295249999995 -2014-10-14 20:00:00,0.0,1003.5930000000001,0.0,100.0,10.37166667,0.0,237.89295249999995 -2014-10-14 21:00:00,0.0,1003.8395,0.0,100.0,10.69333333,0.066583333,237.8936525 -2014-10-14 22:00:00,0.0,1003.975,0.0,100.0,9.57,0.046333333,237.8950525 -2014-10-14 23:00:00,0.0,1003.9333330000001,0.0,100.0,9.240833333,0.0016666670000000001,237.8950525 -2014-10-15 00:00:00,2.406314376,1003.791667,0.0,100.0,9.2475,0.04875,237.8950525 -2014-10-15 01:00:00,0.0,1004.015333,0.0,100.0,9.130833333,0.008333333,237.8970525 -2014-10-15 02:00:00,0.0,1003.6688330000001,0.0,100.0,8.523333333,0.05875,237.89671916666666 -2014-10-15 03:00:00,0.0,1003.543,0.0,100.0,8.075416667,0.024333333,237.8970525 -2014-10-15 04:00:00,0.0,1003.607,0.0,100.0,8.034333333,0.017833333,237.89810249999996 -2014-10-15 05:00:00,0.0,1003.295167,0.0,100.0,7.170083332999999,0.0,237.8988025 -2014-10-15 06:00:00,0.0,1003.347833,0.5216666670000001,100.0,6.567916667,0.002,237.89915249999999 -2014-10-15 07:00:00,0.0,1003.529833,13.58091667,100.0,6.5853333329999995,0.0,237.9001525 -2014-10-15 08:00:00,0.0,1003.759667,23.89166667,100.0,8.566666667,0.1195,237.89946916666665 -2014-10-15 09:00:00,0.0,1004.0583330000001,211.375,93.34166667,12.24333333,0.4835,237.89915249999999 -2014-10-15 10:00:00,0.0,1003.891667,291.65833330000004,79.00916667,16.14416667,0.42991666700000003,237.89915249999999 -2014-10-15 11:00:00,2.493844344,1003.915333,338.25,73.56333333,16.8825,0.7426666670000001,237.8994858333333 -2014-10-15 12:00:00,0.0,1003.5438330000001,367.7416667,70.0525,17.29,0.6446666670000001,237.9004858333333 -2014-10-15 13:00:00,0.0,1003.220167,189.8583333,68.09,17.10166667,0.823583333,237.9011525 -2014-10-15 14:00:00,0.0,1003.027167,193.9391667,71.26916667,17.23333333,0.155,237.90220249999996 -2014-10-15 15:00:00,0.0,1002.805667,74.05083333,76.8125,15.74666667,0.055083333,237.90325249999998 -2014-10-15 16:00:00,0.0,1002.786833,26.93666667,90.5,14.6575,0.0,237.90425249999998 -2014-10-15 17:00:00,0.0,1002.597833,4.20675,98.34166667,12.7425,0.040999999999999995,237.9052525 -2014-10-15 18:00:00,0.0,1002.881167,0.0,100.0,11.3575,0.068,237.9059525 -2014-10-15 19:00:00,0.0,1002.920167,0.0,100.0,11.18416667,0.010583333,237.90735249999997 -2014-10-15 20:00:00,0.0,1002.832,0.0,100.0,11.10583333,0.0035833329999999997,237.90735249999997 -2014-10-15 21:00:00,2.413249608,1002.833333,0.0,100.0,11.19166667,0.006333333000000001,237.9077025 -2014-10-15 22:00:00,0.0,1002.557,0.0,100.0,11.0475,0.07,237.90945250000001 -2014-10-15 23:00:00,0.0,1002.5855,0.0,100.0,11.0425,0.003416667,237.90945250000001 -2014-10-16 00:00:00,0.0,1002.325,0.0,100.0,11.08166667,0.0,237.90945250000001 -2014-10-16 01:00:00,0.0,1002.096,0.0,100.0,11.13583333,0.050166667000000005,237.9077025 -2014-10-16 02:00:00,0.0,1001.741667,0.0,100.0,11.32833333,0.260666667,237.90735249999997 -2014-10-16 03:00:00,0.0,1001.711833,0.0,100.0,11.405,0.075166667,237.90805250000003 -2014-10-16 04:00:00,2.4050227680000003,1001.654833,0.0,100.0,10.97666667,0.05875,237.9084025 -2014-10-16 05:00:00,0.0,1001.5425,0.0,100.0,10.45333333,0.00225,237.9087525 -2014-10-16 06:00:00,0.0,1001.291667,0.270833333,100.0,10.43166667,0.02325,237.90945250000001 -2014-10-16 07:00:00,0.0,1001.436,9.19025,100.0,11.13,0.197583333,237.90875250000002 -2014-10-16 08:00:00,0.0,1001.607,44.68583333,99.80833333,12.46,0.319583333,237.90945250000001 -2014-10-16 09:00:00,0.0,1001.640833,205.7833333,93.96666667,15.57583333,1.060833333,237.90910250000002 -2014-10-16 10:00:00,0.0,1001.757,158.5825,90.25833333,17.19083333,0.916333333,237.9084025 -2014-10-16 11:00:00,0.0,1001.684667,117.775,90.53333333,16.5475,0.7513333329999999,237.90945250000001 -2014-10-16 12:00:00,2.52737064,1001.9105,143.5241667,96.60833333,16.39083333,0.5780833329999999,237.90805249999997 -2014-10-16 13:00:00,0.0,1001.491667,95.1775,97.31666667,16.00333333,0.7313333329999999,237.90288583333336 -2014-10-16 14:00:00,0.0,1001.902667,195.8666667,94.31666667,16.4175,0.76275,237.90081916666668 -2014-10-16 15:00:00,0.0,1002.349167,110.89333329999998,92.75833333,16.74,0.404416667,237.89981916666662 -2014-10-16 16:00:00,0.0,1002.7395,49.53083333,92.15,15.89166667,0.37675,237.89915249999999 -2014-10-16 17:00:00,0.0,1002.9623330000001,6.317083332999999,91.525,14.6225,0.481833333,237.8970525 -2014-10-16 18:00:00,0.0,1003.913667,0.0,95.425,13.8025,0.545,237.89571916666668 -2014-10-16 19:00:00,0.0,1004.301333,0.0,98.65,11.97916667,0.201416667,237.8947025 -2014-10-16 20:00:00,2.439976992,1004.602667,0.0,100.0,10.74416667,0.15908333300000002,237.89330249999998 -2014-10-16 21:00:00,0.0,1004.725,0.0,100.0,9.685833333,0.000166667,237.89295249999995 -2014-10-16 22:00:00,0.0,1004.5521669999999,0.0,100.0,9.478333333,0.0,237.8909525 -2014-10-16 23:00:00,0.0,1004.5355,0.0,100.0,10.2075,0.003416667,237.8895525 -2014-10-17 00:00:00,0.0,1004.423667,0.0,100.0,10.7175,0.135166667,237.88885249999998 -2014-10-17 01:00:00,0.0,1003.7605,0.0,100.0,11.44166667,0.081666667,237.8871691666667 -2014-10-17 02:00:00,0.0,1003.7535,0.0,100.0,11.30166667,0.020666667,237.88580250000004 -2014-10-17 03:00:00,0.0,1003.769333,0.0,100.0,11.13833333,0.0058333330000000004,237.88475250000002 -2014-10-17 04:00:00,2.4050227680000003,1004.174167,0.0,100.0,11.28333333,0.000666667,237.8844025 -2014-10-17 05:00:00,0.0,1004.920667,0.0,99.91666667,11.78666667,0.11425,237.8837025 -2014-10-17 06:00:00,0.0,1005.4255,0.24608333300000002,99.5,12.15583333,0.304916667,237.88300249999998 -2014-10-17 07:00:00,0.0,1006.4760000000001,13.275,99.21666667,12.1425,0.39083333299999995,237.8844025 -2014-10-17 08:00:00,0.0,1007.660167,57.49833333,97.625,13.08833333,0.0735,237.88405249999997 -2014-10-17 09:00:00,0.0,1008.892667,62.00583333,96.31666667,13.89916667,0.24675,237.8844025 -2014-10-17 10:00:00,0.0,1010.1615,98.7375,96.375,14.45583333,0.48575,237.88475250000002 -2014-10-17 11:00:00,0.0,1010.870667,174.2833333,94.28333333,15.4375,0.592833333,237.88475250000002 -2014-10-17 12:00:00,0.0,1011.201333,244.4083333,94.325,16.33166667,0.603916667,237.88475250000002 -2014-10-17 13:00:00,0.0,1011.594333,244.05833330000002,86.475,17.92083333,0.905833333,237.88405249999997 -2014-10-17 14:00:00,2.484616152,1011.5666669999999,204.9666667,84.25833333,18.21666667,0.443333333,237.88475250000002 -2014-10-17 15:00:00,0.0,1012.0039999999999,144.455,83.21666667,17.725,0.7154166670000001,237.88475250000002 -2014-10-17 16:00:00,0.0,1012.440833,57.12416667,83.24166667,16.625,0.717166667,237.8854525 -2014-10-17 17:00:00,0.0,1013.040833,4.632166667,92.8,14.64083333,0.339416667,237.8865025 -2014-10-17 18:00:00,0.0,1013.470667,0.0,99.26666667,12.005,0.070916667,237.8868525 -2014-10-17 19:00:00,0.0,1014.240833,0.0,100.0,10.85333333,0.054916667,237.8878525 -2014-10-17 20:00:00,0.0,1014.429833,0.0,100.0,9.689166667,0.06925,237.88851916666667 -2014-10-17 21:00:00,0.0,1014.787333,0.0,100.0,9.2,0.0575,237.88885249999998 -2014-10-17 22:00:00,0.0,1015.0035,0.0,100.0,8.2955,0.044333332999999996,237.88885249999998 -2014-10-17 23:00:00,2.4050227680000003,1015.2123330000001,0.0,100.0,7.56775,0.031083332999999998,237.88885249999998 -2014-10-18 00:00:00,0.0,1015.643,0.0,100.0,7.886083332999999,0.0010833330000000001,237.88920249999998 -2014-10-18 01:00:00,0.0,1015.897833,0.0,100.0,8.798333332999999,0.012833333,237.88885249999998 -2014-10-18 02:00:00,0.0,1016.082,0.0,100.0,9.655833333,0.01825,237.88955249999995 -2014-10-18 03:00:00,0.0,1016.0811669999999,0.0,100.0,10.32333333,0.0,237.88920249999998 -2014-10-18 04:00:00,0.0,1016.574167,0.0,100.0,11.03666667,0.215,237.8902525 -2014-10-18 05:00:00,0.0,1016.827167,0.0,100.0,11.34083333,0.779166667,237.8909525 -2014-10-18 06:00:00,0.0,1016.533333,1.01425,100.0,10.79833333,0.276333333,237.8909525 -2014-10-18 07:00:00,2.64568776,1016.779,21.42108333,100.0,11.08,0.8835833329999999,237.8909525 -2014-10-18 08:00:00,0.0,1017.272833,63.39666667,100.0,11.21916667,1.251083333,237.8909525 -2014-10-18 09:00:00,0.0,1017.5930000000001,117.66666670000001,100.0,11.55666667,1.290583333,237.8909525 -2014-10-18 10:00:00,0.0,1017.65,238.0166667,99.41666667,13.08833333,1.571166667,237.8909525 -2014-10-18 11:00:00,0.0,1017.557,326.3583333,90.89166667,15.595,2.477666667,237.8912858333333 -2014-10-18 12:00:00,0.0,1017.386833,320.8083333,84.01666667,17.47083333,2.1935,237.8912858333333 -2014-10-18 13:00:00,0.0,1017.2819999999999,284.625,81.8675,18.26166667,1.902166667,237.89295249999995 -2014-10-18 14:00:00,0.0,1016.922333,274.7333333,79.73166667,18.99833333,2.00825,237.89295249999995 -2014-10-18 15:00:00,0.0,1016.7285,192.725,78.10666667,18.67833333,2.09075,237.89295249999995 -2014-10-18 16:00:00,0.0,1016.5035,87.9125,80.5975,17.5425,2.752916667,237.8912858333333 -2014-10-18 17:00:00,2.983641,1016.348667,4.467333333,90.58333333,16.16833333,1.87025,237.8947025 -2014-10-18 18:00:00,0.0,1016.758833,0.0,99.275,13.945,0.692666667,237.89295249999995 -2014-10-18 19:00:00,0.0,1016.789,0.0,100.0,11.98416667,0.031833333,237.89330249999998 -2014-10-18 20:00:00,0.0,1016.7061669999999,0.0,100.0,10.75916667,0.04525,237.8950525 -2014-10-18 21:00:00,0.0,1016.988167,0.0,100.0,9.8525,0.0,237.8950525 -2014-10-18 22:00:00,0.0,1016.882,0.0,100.0,9.513333333,0.008833333,237.8950525 -2014-10-18 23:00:00,2.4050227680000003,1016.682,0.0,100.0,9.001666667,0.02325,237.8950525 -2014-10-19 00:00:00,0.0,1016.545167,0.0,100.0,9.7225,0.0,237.8950525 -2014-10-19 01:00:00,0.0,1016.4069999999999,0.0,100.0,10.25083333,0.001166667,237.8950525 -2014-10-19 02:00:00,0.0,1016.2785,0.0,100.0,10.25,0.041166667000000004,237.8960525 -2014-10-19 03:00:00,0.0,1015.959167,0.0,100.0,10.355,0.110666667,237.89671916666666 -2014-10-19 04:00:00,0.0,1015.727167,0.0,100.0,9.969166667,0.0,237.8970525 -2014-10-19 05:00:00,0.0,1015.459667,0.0,100.0,10.3875,0.0,237.8970525 -2014-10-19 06:00:00,2.44773648,1015.365333,0.286833333,100.0,10.85,0.11375,237.8970525 -2014-10-19 07:00:00,0.0,1015.273667,10.27375,100.0,11.1175,0.24891666699999998,237.8970525 -2014-10-19 08:00:00,0.0,1015.1785,43.89,100.0,11.54583333,0.035083333,237.8970525 -2014-10-19 09:00:00,0.0,1015.041667,94.1325,100.0,13.625,1.202166667,237.8970525 -2014-10-19 10:00:00,0.0,1014.7508330000001,135.91666669999998,100.0,14.44416667,1.02125,237.8970525 -2014-10-19 11:00:00,0.0,1014.666667,169.05,100.0,14.60083333,1.24175,237.8970525 -2014-10-19 12:00:00,0.0,1014.4271669999999,285.5166667,99.18333333,15.78833333,0.647333333,237.8974025 -2014-10-19 13:00:00,2.766715224,1013.546833,311.3833333,89.2375,19.1275,0.8079999999999999,237.8970525 -2014-10-19 14:00:00,0.0,1012.9855,258.3083333,75.79833333,22.11166667,0.52075,237.8977525 -2014-10-19 15:00:00,0.0,1012.469667,177.3666667,77.98833333,21.9575,0.9065833329999999,237.89915249999999 -2014-10-19 16:00:00,0.0,1012.126333,71.68833333,82.0825,20.44916667,1.061583333,237.89915249999999 -2014-10-19 17:00:00,0.0,1012.436,3.91725,87.775,18.98416667,0.9585,237.89981916666667 -2014-10-19 18:00:00,0.0,1012.379333,0.0,90.41666667,17.73666667,0.749166667,237.9011525 -2014-10-19 19:00:00,2.922862704,1011.995167,0.0,90.875,18.62583333,1.48175,237.9011525 -2014-10-19 20:00:00,0.0,1011.904833,0.0,90.275,17.52666667,0.512333333,237.9011525 -2014-10-19 21:00:00,0.0,1012.2895,0.0,89.91666667,16.45,0.123083333,237.90290249999998 -2014-10-19 22:00:00,0.0,1012.651333,0.0,90.15,16.29,0.125,237.90325249999998 -2014-10-19 23:00:00,0.0,1013.195667,0.0,96.25833333,16.88833333,0.922583333,237.9005025 -2014-10-20 00:00:00,2.4904171440000002,1013.226333,0.0,97.35,15.8,0.5065,237.89741916666662 -2014-10-20 01:00:00,0.0,1013.538167,0.0,92.7,15.06333333,0.6094166670000001,237.90048583333336 -2014-10-20 02:00:00,0.0,1013.3639999999999,0.0,86.20833333,14.4025,0.2375,237.9011525 -2014-10-20 03:00:00,0.0,1013.002167,0.0,89.61666667,13.01166667,0.068833333,237.9004858333333 -2014-10-20 04:00:00,0.0,1012.804833,0.0,92.10833333,12.57583333,0.063166667,237.89915249999999 -2014-10-20 05:00:00,0.0,1012.972833,0.0,91.08333333,13.24083333,0.022083332999999997,237.90015249999996 -2014-10-20 06:00:00,2.515048464,1013.027167,0.26675,92.00833333,13.38,0.263916667,237.9011525 -2014-10-20 07:00:00,0.0,1013.279,14.25516667,95.5,12.28,0.043,237.9011525 -2014-10-20 08:00:00,0.0,1013.747833,57.66583333,95.51666667,13.34916667,0.233166667,237.9011525 -2014-10-20 09:00:00,0.0,1013.8285,132.4166667,87.7,15.31333333,0.704833333,237.90321249999997 -2014-10-20 10:00:00,0.0,1013.9715,197.725,79.46166667,16.38583333,1.044083333,237.9063025 -2014-10-20 11:00:00,0.0,1013.873667,201.81666669999998,75.89416667,16.7525,1.12675,237.9052525 -2014-10-20 12:00:00,0.0,1013.522333,297.8666667,69.59083333,16.96166667,1.2495,237.9052525 -2014-10-20 13:00:00,2.655579192,1013.2605,207.2833333,69.615,16.87,1.043166667,237.90458583333336 -2014-10-20 14:00:00,0.0,1012.761833,164.6166667,68.64916667,16.865,0.89825,237.90491916666664 -2014-10-20 15:00:00,0.0,1012.3389999999999,89.16916667,71.175,16.405,0.48516666700000005,237.9052525 -2014-10-20 16:00:00,0.0,1011.86,31.0925,79.715,15.01833333,0.129583333,237.9052525 -2014-10-20 17:00:00,0.0,1011.3215,3.38075,92.75,12.98583333,0.0465,237.90630249999995 -2014-10-20 18:00:00,0.0,1011.411833,0.0,99.26666667,10.87916667,0.1245,237.90735249999997 -2014-10-20 19:00:00,2.432953056,1011.147333,0.0,100.0,9.233333333,0.056166667,237.90735249999997 -2014-10-20 20:00:00,0.0,1010.929833,0.0,100.0,8.6725,0.03025,237.90735249999997 -2014-10-20 21:00:00,0.0,1011.0319999999999,0.0,98.39166667,8.041583333,0.067,237.9077025 -2014-10-20 22:00:00,0.0,1010.596,0.0,99.89166667,8.239833333,0.092916667,237.9087525 -2014-10-20 23:00:00,0.0,1010.165333,0.0,100.0,7.937333333,0.145916667,237.90945250000001 -2014-10-21 00:00:00,2.4050227680000003,1010.093833,0.0,98.48333333,7.301666667,0.0005,237.90945250000001 -2014-10-21 01:00:00,0.0,1009.958333,0.0,96.175,8.71875,0.314416667,237.90945250000001 -2014-10-21 02:00:00,0.0,1009.400833,0.0,97.31666667,7.90275,0.003666667,237.90945250000001 -2014-10-21 03:00:00,0.0,1008.8745,0.0,97.275,7.093,0.01325,237.90945250000001 -2014-10-21 04:00:00,0.0,1008.282833,0.0,97.55833333,6.32775,0.000166667,237.90945250000001 -2014-10-21 05:00:00,0.0,1007.652167,0.0,97.40833333,6.895083333,0.073583333,237.90945250000001 -2014-10-21 06:00:00,0.0,1007.2389999999999,0.139916667,96.05,8.098083333,0.069333333,237.90910250000002 -2014-10-21 07:00:00,0.0,1006.991167,10.6025,94.45833333,9.82,0.152,237.9077025 -2014-10-21 08:00:00,2.4075121680000002,1006.479333,57.03083333,91.73333333,11.24916667,0.6960833329999999,237.90805250000003 -2014-10-21 09:00:00,0.0,1005.8889999999999,102.8133333,87.05,12.34916667,1.463916667,237.90735249999997 -2014-10-21 10:00:00,0.0,1004.9455,91.41583333,85.55833333,12.945,1.74325,237.90735249999997 -2014-10-21 11:00:00,0.0,1003.339833,124.36583329999999,85.48333333,13.4675,2.169083333,237.90735249999997 -2014-10-21 12:00:00,0.0,1002.440667,151.3316667,82.79416667,13.45666667,2.0345,237.90735249999997 -2014-10-21 13:00:00,0.0,1000.933167,67.8425,82.52166667,13.65333333,1.838416667,237.90735249999997 -2014-10-21 14:00:00,0.0,999.3915,58.58833333,89.94166667,12.89333333,1.7364166669999999,237.90665249999998 -2014-10-21 15:00:00,3.085561008,997.6858332999999,87.68,90.325,13.26583333,1.2895,237.9052525 -2014-10-21 16:00:00,0.0,995.8845,20.20008333,93.375,13.09416667,2.0916666669999997,237.9052525 -2014-10-21 17:00:00,0.0,996.727,0.349916667,91.225,11.39166667,2.2285,237.90425249999998 -2014-10-21 18:00:00,0.0,997.9246667000001,0.0,89.23333333,10.17,1.7030833330000001,237.90491916666664 -2014-10-21 19:00:00,0.0,999.426,0.0,89.125,9.19,1.6074166669999999,237.90735249999997 -2014-10-21 20:00:00,0.0,1000.6469999999999,0.0,89.40833333,8.555,1.6498333330000001,237.90735249999997 -2014-10-21 21:00:00,2.909157888,1001.799667,0.0,90.8,7.787333332999999,1.470166667,237.90910250000002 -2014-10-21 22:00:00,0.0,1002.992667,0.0,86.29166667,7.9160833329999996,1.542416667,237.90945250000001 -2014-10-21 23:00:00,0.0,1004.1676669999999,0.0,87.725,7.6253333329999995,1.4270833330000001,237.90978583333333 -2014-10-22 00:00:00,0.0,1005.7255,0.0,93.575,6.518,2.118416667,237.91045250000002 -2014-10-22 01:00:00,0.0,1006.1755,0.0,96.35,5.888583333,0.7214166670000001,237.90945250000001 -2014-10-22 02:00:00,2.9710353119999997,1006.708333,0.0,93.83333333,6.5868333329999995,1.166583333,237.90945250000001 -2014-10-22 03:00:00,0.0,1006.445167,0.0,94.2,6.582000000000001,1.296083333,237.90945250000001 -2014-10-22 04:00:00,0.0,1006.431167,0.0,94.03333333,6.656166667000001,1.4138333330000001,237.90945250000001 -2014-10-22 05:00:00,0.0,1007.1039999999999,0.0,92.73333333,6.895833333,1.4630833330000002,237.90945250000001 -2014-10-22 06:00:00,0.0,1007.645667,0.123083333,93.75833333,6.839916667000001,1.3030000000000002,237.90945250000001 -2014-10-22 07:00:00,2.694261528,1008.5545,9.524916667000001,94.175,6.857,1.223333333,237.90945250000001 -2014-10-22 08:00:00,0.0,1009.529,35.46,92.34166667,7.131833332999999,1.16175,237.90945250000001 -2014-10-22 09:00:00,0.0,1010.195667,40.57416667,92.65833333,7.456666667,1.1045,237.90945250000001 -2014-10-22 10:00:00,0.0,1010.333333,96.26833333,95.71666667,7.306833332999999,1.188416667,237.90910250000002 -2014-10-22 11:00:00,0.0,1010.361833,146.2158333,95.11666667,8.00625,1.3958333330000001,237.90805250000003 -2014-10-22 12:00:00,2.7749927760000004,1010.347833,81.9775,93.05,8.120583332999999,2.01575,237.9063025 -2014-10-22 13:00:00,0.0,1010.137667,110.04416670000002,89.525,8.925833333,2.208166667,237.9052525 -2014-10-22 14:00:00,0.0,1010.177667,147.30833330000002,83.05833333,9.785833333,3.65675,237.9052525 -2014-10-22 15:00:00,0.0,1010.327167,87.01666667,83.69166667,10.0575,4.162166667,237.90425249999998 -2014-10-22 16:00:00,4.29793332,1010.728167,48.2675,81.68333333,9.904166667,4.6545,237.90325249999998 -2014-10-22 17:00:00,0.0,1011.876833,2.847083333,82.85833333,9.555,3.218333333,237.90391916666667 -2014-10-22 18:00:00,0.0,1012.89,0.0,83.64166667,9.125,3.445333333,237.90491916666667 -2014-10-22 19:00:00,0.0,1013.6935,0.0,84.75,9.1225,3.2285,237.9052525 -2014-10-22 20:00:00,3.364539024,1014.470667,0.0,87.4,9.038333332999999,2.194416667,237.9052525 -2014-10-22 21:00:00,0.0,1014.8575,0.0,88.25833333,8.791666667000001,2.342083333,237.9052525 -2014-10-22 22:00:00,0.0,1015.5935,0.0,86.34166667,8.833333332999999,1.7391666669999999,237.9052525 -2014-10-22 23:00:00,0.0,1016.168,0.0,86.23333333,8.856666667,1.025083333,237.9052525 -2014-10-23 00:00:00,2.615783808,1016.3311669999999,0.0,88.50833333,8.654166667,0.805083333,237.9052525 -2014-10-23 01:00:00,0.0,1016.672833,0.0,91.05833333,8.491666667,0.551416667,237.9056025 -2014-10-23 02:00:00,0.0,1016.984667,0.0,93.9,8.23,0.7503333329999999,237.90665249999998 -2014-10-23 03:00:00,0.0,1017.0666669999999,0.0,93.55833333,8.285833333,0.687333333,237.9052525 -2014-10-23 04:00:00,2.48702172,1017.362333,0.0,93.73333333,8.288333332999999,0.58775,237.90735249999997 -2014-10-23 05:00:00,0.0,1017.6465,0.0,94.90833333,7.9695,0.57,237.90735249999997 -2014-10-23 06:00:00,0.0,1017.9575,0.109916667,95.1,7.918666667,0.631,237.90735249999997 -2014-10-23 07:00:00,0.0,1018.4575,17.15083333,95.56666667,8.044583333,0.443833333,237.90735249999997 -2014-10-23 08:00:00,2.500792056,1019.002667,67.11166667,94.40833333,9.4575,0.44825,237.90735249999997 -2014-10-23 09:00:00,0.0,1019.381167,82.74166667,92.19166667,9.923333332999999,0.609166667,237.90735249999997 -2014-10-23 10:00:00,0.0,1019.699167,68.51416667,92.19166667,9.763333333,0.719833333,237.90875250000002 -2014-10-23 11:00:00,2.5391901359999998,1019.8535,86.00083333,92.53333333,9.746666667000001,0.604,237.90945250000001 -2014-10-23 12:00:00,0.0,1019.890333,126.70833329999999,90.86666667,10.58416667,0.57025,237.90945250000001 -2014-10-23 13:00:00,0.0,1019.5355,204.1333333,88.675,12.47,0.707416667,237.90945250000001 -2014-10-23 14:00:00,0.0,1019.225,229.9916667,84.28333333,12.53166667,0.5315833329999999,237.90910250000002 -2014-10-23 15:00:00,0.0,1018.946,118.05,83.04166667,12.12083333,0.440666667,237.90735249999997 -2014-10-23 16:00:00,0.0,1018.648667,45.22333333,88.34166667,11.46416667,0.13575,237.90735249999997 -2014-10-23 17:00:00,0.0,1018.651333,4.990583333,98.4,9.279166667,0.021916667,237.9084025 -2014-10-23 18:00:00,0.0,1018.8465,0.0,99.25833333,9.0325,0.013000000000000001,237.90945250000001 -2014-10-23 19:00:00,0.0,1018.8785,0.0,99.7,9.108333333,0.059666667,237.90945250000001 -2014-10-23 20:00:00,0.0,1018.8311669999999,0.0,99.79166667,9.215,0.056416667000000004,237.90945250000001 -2014-10-23 21:00:00,0.0,1019.027167,0.0,99.68333333,9.216666667,0.134916667,237.90945250000001 -2014-10-23 22:00:00,0.0,1018.954833,0.0,99.75833333,9.0775,0.034666667000000005,237.9114525 -2014-10-23 23:00:00,0.0,1018.741667,0.0,100.0,7.077166667,0.047916667,237.9114525 -2014-10-24 00:00:00,0.0,1018.761833,0.0,100.0,6.365416667000001,0.34966666700000004,237.9114525 -2014-10-24 01:00:00,0.0,1018.773667,0.0,100.0,6.136916667,0.332833333,237.9114525 -2014-10-24 02:00:00,0.0,1018.625,0.0,100.0,6.267333333,0.48825,237.9114525 -2014-10-24 03:00:00,0.0,1018.071,0.0,100.0,6.3521666670000005,0.29541666699999997,237.9114525 -2014-10-24 04:00:00,0.0,1017.823667,0.0,100.0,6.248666667,0.3625,237.9125025 -2014-10-24 05:00:00,0.0,1017.8895,0.0,100.0,6.188416667,0.7979999999999999,237.91250249999996 -2014-10-24 06:00:00,0.0,1017.920167,0.140833333,100.0,6.312333333,0.868416667,237.91355249999995 -2014-10-24 07:00:00,0.0,1018.0645,17.46366667,100.0,6.206916667000001,0.44608333299999997,237.91355249999995 -2014-10-24 08:00:00,0.0,1018.422833,48.76916667,100.0,6.069083332999999,0.15841666699999998,237.91355249999995 -2014-10-24 09:00:00,0.0,1018.4785,77.835,100.0,6.4930833329999995,0.432333333,237.91355249999995 -2014-10-24 10:00:00,0.0,1018.218833,131.00833329999998,100.0,6.877000000000001,0.813416667,237.91355249999995 -2014-10-24 11:00:00,0.0,1018.009167,174.875,100.0,7.805916667000001,1.189666667,237.91355249999995 -2014-10-24 12:00:00,0.0,1017.482833,285.3,97.94166667,9.75,1.2319166670000001,237.91355249999995 -2014-10-24 13:00:00,0.0,1016.541167,290.8833333,84.07333333,12.45833333,1.93475,237.91355249999995 -2014-10-24 14:00:00,0.0,1015.8675,172.19166669999998,75.69416667,12.9275,2.316166667,237.91355249999995 -2014-10-24 15:00:00,0.0,1015.454333,94.06416667,74.795,12.325,1.8631666669999998,237.91355249999995 -2014-10-24 16:00:00,0.0,1015.083333,38.08916667,81.51083333,11.6375,1.4305833330000002,237.91421916666664 -2014-10-24 17:00:00,0.0,1014.952167,2.116,95.23333333,9.25,0.0045,237.91555250000002 -2014-10-24 18:00:00,0.0,1014.902667,0.0,99.36666667,8.036333333,0.080833333,237.9142191666666 -2014-10-24 19:00:00,0.0,1014.930667,0.0,100.0,7.767333333,0.030166667,237.9148858333333 -2014-10-24 20:00:00,0.0,1014.854833,0.0,100.0,7.6333333329999995,0.0085,237.91521916666662 -2014-10-24 21:00:00,0.0,1014.786833,0.0,100.0,7.458416667000001,0.0,237.91555250000002 -2014-10-24 22:00:00,0.0,1014.565333,0.0,100.0,7.7455,0.0255,237.91555250000002 -2014-10-24 23:00:00,0.0,1014.5035,0.0,100.0,8.219583333,0.34466666700000004,237.91555250000002 -2014-10-25 00:00:00,0.0,1014.184167,0.0,100.0,8.35,0.42425,237.91555250000002 -2014-10-25 01:00:00,0.0,1014.136833,0.0,100.0,8.436666667,0.167833333,237.91555250000002 -2014-10-25 02:00:00,0.0,1013.773667,0.0,100.0,8.069166667000001,0.025916667,237.9159025 -2014-10-25 03:00:00,0.0,1013.7965,0.0,100.0,7.95075,0.000833333,237.91555250000002 -2014-10-25 04:00:00,0.0,1013.6605,0.0,100.0,8.251666667,0.10566666699999999,237.91555250000002 -2014-10-25 05:00:00,0.0,1013.611833,0.0,100.0,8.345,0.03025,237.9173025 -2014-10-25 06:00:00,26.38890494,1013.883833,0.01125,100.0,8.3425,0.0,237.9173025 -2014-10-25 07:00:00,2.406213984,1014.3825,6.9996666670000005,100.0,8.475,0.046666667,237.9159025 -2014-10-25 08:00:00,0.0,1014.949167,46.285,100.0,8.910833333,0.0855,237.9162525 -2014-10-25 09:00:00,0.0,1015.106167,80.37333333,100.0,9.9375,0.7615833329999999,237.9176525 -2014-10-25 10:00:00,0.0,1015.476333,69.6625,99.225,10.83833333,0.513416667,237.9176525 -2014-10-25 11:00:00,0.0,1015.656167,119.04166670000001,95.1,11.40333333,0.549166667,237.9176525 -2014-10-25 12:00:00,0.0,1015.655667,93.12166667,94.74166667,11.73333333,0.997916667,237.9176525 -2014-10-25 13:00:00,0.0,1015.5930000000001,69.58916667,94.91666667,12.37083333,0.871166667,237.9176525 -2014-10-25 14:00:00,0.0,1015.9145,55.24916667,95.44166667,12.51666667,0.422333333,237.91798583333332 -2014-10-25 15:00:00,0.0,1016.176333,37.40916667,95.75,12.30166667,1.037916667,237.91965249999998 -2014-10-25 16:00:00,0.0,1016.344333,11.5055,96.99166667,11.99916667,1.0225,237.91965249999998 -2014-10-25 17:00:00,2.4904171440000002,1016.5930000000001,0.857833333,99.3,11.72166667,0.398583333,237.91965249999998 -2014-10-25 18:00:00,0.0,1016.872833,0.0,100.0,11.4725,0.6911666670000001,237.91965249999998 -2014-10-25 19:00:00,0.0,1017.315833,0.0,100.0,11.35083333,0.18433333300000002,237.92000249999998 -2014-10-25 20:00:00,0.0,1017.7895,0.0,100.0,11.31,0.203166667,237.92000249999998 -2014-10-25 21:00:00,0.0,1018.224167,0.0,100.0,11.3225,0.37091666700000003,237.91965249999998 -2014-10-25 22:00:00,0.0,1018.406167,0.0,100.0,11.33666667,1.062833333,237.91965249999998 -2014-10-25 23:00:00,0.0,1018.763167,0.0,100.0,11.34583333,0.31,237.91965249999998 -2014-10-26 00:00:00,0.0,1019.1505,0.0,100.0,11.39,0.141833333,237.92035249999995 -2014-10-26 01:00:00,0.0,1019.554833,0.0,100.0,11.42,0.092833333,237.9214025 -2014-10-26 02:00:00,0.0,1019.701333,0.0,100.0,11.47666667,0.056916667000000004,237.9217525 -2014-10-26 03:00:00,0.0,1019.5438330000001,0.0,100.0,11.4775,0.13,237.9217525 -2014-10-26 04:00:00,0.0,1019.954,0.0,100.0,10.6025,0.064416667,237.9217525 -2014-10-26 05:00:00,0.0,1020.266667,0.0,100.0,10.72416667,0.11583333300000001,237.9217525 -2014-10-26 06:00:00,0.0,1020.202667,0.0615,100.0,9.474166667,0.08075,237.92375249999995 -2014-10-26 07:00:00,0.0,1020.9365,10.53025,100.0,9.553333333,0.15591666699999998,237.92375249999995 -2014-10-26 08:00:00,0.0,1021.716667,42.5825,100.0,10.41416667,0.21725,237.92375249999995 -2014-10-26 09:00:00,0.0,1021.881167,100.4441667,100.0,10.95166667,0.282583333,237.92375249999995 -2014-10-26 10:00:00,0.0,1021.9416669999999,193.6333333,98.61666667,11.98166667,0.962833333,237.92375249999995 -2014-10-26 11:00:00,0.0,1022.018,159.95,94.275,13.15666667,0.78375,237.92375249999995 -2014-10-26 12:00:00,0.0,1021.704333,173.2583333,83.85166667,14.37833333,0.324833333,237.92375249999995 -2014-10-26 13:00:00,0.0,1021.357,190.06666669999998,80.37833333,15.06,0.2105,237.92480249999997 -2014-10-26 14:00:00,0.0,1020.9960000000001,178.16666669999998,74.2225,15.32416667,0.636833333,237.9255025 -2014-10-26 15:00:00,0.0,1020.8166669999999,120.3975,80.30083333,15.085,0.77725,237.9258525 -2014-10-26 16:00:00,0.0,1020.658333,30.07,91.63333333,14.32083333,0.009333333000000001,237.9258525 -2014-10-26 17:00:00,0.0,1021.045667,1.3966666669999999,98.40833333,13.1325,0.142416667,237.92655249999999 -2014-10-26 18:00:00,0.0,1021.220167,0.0,100.0,12.39916667,0.048333333,237.92725249999998 -2014-10-26 19:00:00,0.0,1021.120167,0.0,100.0,11.97833333,0.13975,237.9258525 -2014-10-26 20:00:00,0.0,1021.4325,0.0,100.0,10.93333333,0.07425,237.9258525 -2014-10-26 21:00:00,0.0,1021.4855,0.0,100.0,8.78,0.03075,237.92620250000002 -2014-10-26 22:00:00,0.0,1021.327167,0.0,100.0,7.8731666670000005,0.00975,237.92795249999998 -2014-10-26 23:00:00,0.0,1021.026333,0.0,100.0,7.23975,0.034083333,237.92795249999998 -2014-10-27 00:00:00,0.0,1021.3311669999999,0.0,100.0,6.970916667000001,0.011666667,237.92795249999998 -2014-10-27 01:00:00,0.0,1021.373667,0.0,100.0,7.087999999999999,0.08841666699999999,237.92828583333332 -2014-10-27 02:00:00,0.0,1021.1771669999999,0.0,100.0,8.121583333,0.09375,237.92828583333332 -2014-10-27 03:00:00,0.0,1020.991667,0.0,100.0,8.580833333,0.15975,237.9289525 -2014-10-27 04:00:00,0.0,1021.118,0.0,100.0,8.231666667,0.45,237.9292858333333 -2014-10-27 05:00:00,0.0,1021.007,0.0,100.0,8.203333333,0.239416667,237.92961916666664 -2014-10-27 06:00:00,0.0,1021.245667,0.0235,100.0,8.188333333,0.586,237.92995249999998 -2014-10-27 07:00:00,0.0,1021.7061669999999,4.303416667,100.0,8.196666667,0.74,237.92995249999998 -2014-10-27 08:00:00,0.0,1022.024167,29.71916667,100.0,8.284166667000001,1.471416667,237.9303025 -2014-10-27 09:00:00,0.0,1022.401333,46.51666667,100.0,8.08575,1.638333333,237.93205250000003 -2014-10-27 10:00:00,0.0,1022.5583330000001,72.35416667,100.0,8.11925,1.8840000000000001,237.93205250000003 -2014-10-27 11:00:00,0.0,1022.55,84.37416667,100.0,8.545,1.7685,237.93205250000003 -2014-10-27 12:00:00,0.0,1022.1460000000001,81.81583333,99.99166667,8.8925,1.8005,237.93238583333334 -2014-10-27 13:00:00,0.0,1021.7639999999999,115.3,96.46666667,9.684166667000001,2.24125,237.93271916666666 -2014-10-27 14:00:00,0.0,1021.393833,123.03333329999998,92.65833333,10.47666667,2.0238333330000002,237.9323691666667 -2014-10-27 15:00:00,0.0,1021.022333,63.04666667,92.24166667,10.4825,1.8249166669999999,237.93205250000003 -2014-10-27 16:00:00,0.0,1020.700833,20.921,93.275,10.03,1.9019166669999998,237.93205250000003 -2014-10-27 17:00:00,0.0,1020.715833,1.089833333,93.33333333,9.628333332999999,1.690833333,237.93205250000003 -2014-10-27 18:00:00,0.0,1020.807,0.0,94.18333333,9.145,1.565833333,237.93205250000003 -2014-10-27 19:00:00,0.0,1020.486833,0.0,95.475,8.740833333,2.165166667,237.93271916666666 -2014-10-27 20:00:00,0.0,1020.604833,0.0,96.3,8.3,1.7129166669999998,237.9330525 -2014-10-27 21:00:00,0.0,1020.507,0.0,95.875,8.1475,1.295083333,237.93405249999998 -2014-10-27 22:00:00,0.0,1020.2785,0.0,96.41666667,7.77225,0.945666667,237.93405249999998 -2014-10-27 23:00:00,0.0,1019.911333,0.0,99.20833333,7.223,0.081083333,237.93405249999998 -2014-10-28 00:00:00,0.0,1019.5355,0.0,98.54166667,7.67175,0.8121666670000001,237.93405249999998 -2014-10-28 01:00:00,0.0,1019.0925,0.0,94.39166667,7.76675,1.182,237.93405249999998 -2014-10-28 02:00:00,0.0,1018.672333,0.0,93.19166667,7.463916667,1.5853333330000001,237.93405249999998 -2014-10-28 03:00:00,0.0,1018.370167,0.0,93.50833333,7.188166667000001,1.730833333,237.93405249999998 -2014-10-28 04:00:00,0.0,1018.193833,0.0,94.34166667,7.084916667000001,1.63375,237.9344025 -2014-10-28 05:00:00,0.0,1017.990333,0.0,95.45833333,6.966833332999999,1.57625,237.93510249999997 -2014-10-28 06:00:00,0.0,1017.720167,0.016416667,96.19166667,6.71725,1.256666667,237.9358025 -2014-10-28 07:00:00,0.0,1017.866667,3.284166667,96.54166667,6.6855,1.4105,237.93615249999996 -2014-10-28 08:00:00,0.0,1017.825,15.25316667,96.15,6.873416667000001,1.582333333,237.93475249999997 -2014-10-28 09:00:00,0.0,1017.851333,35.22166667,94.05,6.833333333,1.6725833330000002,237.93475249999997 -2014-10-28 10:00:00,0.0,1017.768833,58.90833333,92.16666667,6.864916667,1.79775,237.93545249999997 -2014-10-28 11:00:00,0.0,1017.359167,82.23166667,90.66666667,7.105583332999999,2.246083333,237.93580249999994 -2014-10-28 12:00:00,0.0,1016.719667,93.875,89.23333333,7.32375,2.445333333,237.93615249999996 -2014-10-28 13:00:00,0.0,1016.054333,78.855,89.95,7.3245,2.519333333,237.93615249999996 -2014-10-28 14:00:00,0.0,1015.453,49.695,90.85,7.323083333,2.258416667,237.93615249999996 -2014-10-28 15:00:00,0.0,1014.895167,27.65833333,91.65833333,7.12775,2.322166667,237.93615249999996 -2014-10-28 16:00:00,0.0,1014.5105,9.121583333,92.475,6.918333333,1.7803333330000002,237.93648583333334 -2014-10-28 17:00:00,0.0,1014.241167,0.32725,93.33333333,6.835666667000001,2.172333333,237.9371525 -2014-10-28 18:00:00,0.0,1013.981167,0.0,92.98333333,6.978083333,2.0775,237.93781916666663 -2014-10-28 19:00:00,0.0,1014.093833,0.0,92.35,7.096333333,1.583083333,237.93815249999997 -2014-10-28 20:00:00,0.0,1013.883333,0.0,91.55833333,7.072583333,1.1178333329999999,237.93815249999997 -2014-10-28 21:00:00,0.0,1013.6535,0.0,91.93333333,6.9219166670000005,0.638083333,237.9385025 -2014-10-28 22:00:00,0.0,1013.402167,0.0,92.325,6.81625,0.639416667,237.9385025 -2014-10-28 23:00:00,0.0,1013.348667,0.0,92.19166667,6.69225,0.5811666670000001,237.9402525 -2014-10-29 00:00:00,0.0,1012.9960000000001,0.0,92.24166667,6.53675,0.638333333,237.9385025 -2014-10-29 01:00:00,0.0,1012.5605,0.0,92.46666667,6.297416667,0.47125,237.93815249999997 -2014-10-29 02:00:00,0.0,1012.193833,0.0,93.81666667,6.145666667,0.624166667,237.93815249999997 -2014-10-29 03:00:00,0.0,1011.916667,0.0,95.35833333,6.070333333,0.410583333,237.93815249999997 -2014-10-29 04:00:00,0.0,1011.963167,0.0,97.14166667,6.18125,0.37508333299999996,237.93815249999997 -2014-10-29 05:00:00,0.0,1011.991667,0.0,98.11666667,6.315333333,0.42675,237.93815249999997 -2014-10-29 06:00:00,0.0,1011.995167,0.014583333,98.75,6.54375,0.31675,237.9385025 -2014-10-29 07:00:00,0.0,1012.2289999999999,4.606,99.25,6.723,0.304083333,237.93990250000002 -2014-10-29 08:00:00,0.0,1012.8575,40.75833333,98.63333333,7.261,0.30275,237.93990250000002 -2014-10-29 09:00:00,0.0,1013.320667,89.15333333,90.95833333,8.474083333,0.841166667,237.9402525 -2014-10-29 10:00:00,0.0,1013.716667,148.2583333,84.45833333,9.150833333,1.5469166669999999,237.9402525 -2014-10-29 11:00:00,0.0,1013.8166669999999,261.2666667,80.92666667,9.970833333,1.277916667,237.9402525 -2014-10-29 12:00:00,0.0,1013.615333,326.35,74.725,10.76666667,1.665416667,237.94125250000002 -2014-10-29 13:00:00,0.0,1013.425,269.95,76.63666667,11.36916667,1.440666667,237.9422525 -2014-10-29 14:00:00,0.0,1013.2535,158.55833330000002,80.01083333,11.26,1.802583333,237.9422525 -2014-10-29 15:00:00,0.0,1013.273667,76.69333333,82.23333333,10.67333333,1.332166667,237.94295249999996 -2014-10-29 16:00:00,0.0,1013.5075,23.53308333,85.8,10.22833333,1.266333333,237.9422525 -2014-10-29 17:00:00,2.559101688,1013.806167,0.626416667,93.58333333,9.354166667000001,0.7414166670000001,237.9422525 -2014-10-29 18:00:00,0.0,1014.2061669999999,0.0,99.05833333,8.869166667,0.231166667,237.9426025 -2014-10-29 19:00:00,12.49961287,1014.481167,0.0,100.0,8.671666667,0.231083333,237.94435249999995 -2014-10-29 20:00:00,0.0,1014.912333,0.0,100.0,8.3225,0.040416667,237.94435249999995 -2014-10-29 21:00:00,0.0,1015.608833,0.0,100.0,8.521666667,0.03,237.94435249999995 -2014-10-29 22:00:00,0.0,1015.988167,0.0,100.0,8.6125,0.061083333,237.94468583333332 -2014-10-29 23:00:00,0.0,1016.151333,0.0,100.0,8.62,0.335166667,237.94635250000002 -2014-10-30 00:00:00,0.0,1016.402667,0.0,100.0,8.538333332999999,0.19125,237.94635250000002 -2014-10-30 01:00:00,0.0,1016.709667,0.0,100.0,8.5975,0.15225,237.94635250000002 -2014-10-30 02:00:00,0.0,1016.815333,0.0,100.0,8.8075,0.15608333300000002,237.94635250000002 -2014-10-30 03:00:00,0.0,1017.1505,0.0,100.0,8.6925,0.5329999999999999,237.9470525 -2014-10-30 04:00:00,0.0,1017.375,0.0,100.0,8.7475,0.11333333300000001,237.94775249999998 -2014-10-30 05:00:00,0.0,1017.5145,0.0,100.0,8.770833332999999,0.286083333,237.9484525 -2014-10-30 06:00:00,0.0,1017.822,0.0,100.0,8.703333333,0.29975,237.9484525 -2014-10-30 07:00:00,0.0,1018.5728330000001,3.37375,100.0,8.711666667000001,0.45991666700000006,237.9481025 -2014-10-30 08:00:00,0.0,1018.9623330000001,18.96916667,100.0,8.963333333,0.332,237.9484525 -2014-10-30 09:00:00,0.0,1019.6039999999999,34.36916667,100.0,9.401666667,0.773416667,237.9484525 -2014-10-30 10:00:00,0.0,1019.916667,51.06,100.0,9.7575,0.945583333,237.9484525 -2014-10-30 11:00:00,0.0,1019.9035,95.9275,100.0,10.46666667,1.34,237.9495025 -2014-10-30 12:00:00,0.0,1020.0728330000001,100.93,98.25,11.26666667,1.3559999999999999,237.95020249999996 -2014-10-30 13:00:00,0.0,1019.9855,101.9833333,97.875,11.90083333,1.090333333,237.9505525 -2014-10-30 14:00:00,0.0,1019.665333,63.45583333,97.49166667,12.36583333,1.0915,237.9505525 -2014-10-30 15:00:00,0.0,1019.726333,29.76583333,98.36666667,12.10083333,1.039416667,237.9505525 -2014-10-30 16:00:00,0.0,1019.912333,12.0445,99.18333333,12.0425,1.513916667,237.95121916666665 -2014-10-30 17:00:00,0.0,1020.3430000000001,0.500583333,99.76666667,11.8475,1.8435833330000002,237.95221916666665 -2014-10-30 18:00:00,0.0,1020.438167,0.0,100.0,11.75416667,1.472,237.9525525 -2014-10-30 19:00:00,0.0,1020.743,0.0,100.0,11.74166667,0.622166667,237.9525525 -2014-10-30 20:00:00,0.0,1020.951333,0.0,100.0,11.68916667,0.1805,237.95325249999996 -2014-10-30 21:00:00,0.0,1021.0319999999999,0.0,100.0,11.66,0.815333333,237.95325249999996 -2014-10-30 22:00:00,0.0,1020.9965,0.0,100.0,11.45333333,0.5914166670000001,237.95221916666665 -2014-10-30 23:00:00,0.0,1020.983333,0.0,100.0,11.35166667,0.004916667,237.9525525 -2014-10-31 00:00:00,0.0,1020.9535,0.0,100.0,11.385,0.1825,237.9525525 -2014-10-31 01:00:00,0.0,1020.958333,0.0,100.0,11.5025,0.2095,237.9525525 -2014-10-31 02:00:00,0.0,1020.7389999999999,0.0,100.0,11.07833333,0.196583333,237.9525525 -2014-10-31 03:00:00,0.0,1020.4035,0.0,100.0,10.71666667,0.1495,237.9536025 -2014-10-31 04:00:00,0.0,1020.4069999999999,0.0,100.0,11.09333333,0.10425,237.9536025 -2014-10-31 05:00:00,0.0,1020.166667,0.0,100.0,10.94166667,0.762,237.95465249999998 -2014-10-31 06:00:00,0.0,1020.283333,0.0,100.0,10.79916667,0.288083333,237.95465249999998 -2014-10-31 07:00:00,0.0,1020.5136669999999,3.68075,100.0,10.765,0.64975,237.95465249999998 -2014-10-31 08:00:00,0.0,1020.951333,24.1525,100.0,10.80083333,0.53775,237.95465249999998 -2014-10-31 09:00:00,0.0,1021.163167,41.54916667,100.0,11.0075,0.619583333,237.95498583333332 -2014-10-31 10:00:00,0.0,1021.481167,77.67083333,100.0,11.2675,0.839166667,237.95631916666665 -2014-10-31 11:00:00,0.0,1021.570167,93.66333333,100.0,11.98083333,1.26375,237.9556525 -2014-10-31 12:00:00,0.0,1021.254333,115.43333329999999,100.0,12.95416667,1.313083333,237.95465249999998 -2014-10-31 13:00:00,0.0,1020.880667,148.7333333,98.725,13.98083333,1.6254166669999999,237.95465249999998 -2014-10-31 14:00:00,0.0,1020.395167,136.5333333,95.18333333,14.30916667,1.622916667,237.95465249999998 -2014-10-31 15:00:00,0.0,1020.193833,71.14083333,95.44166667,14.1125,1.3826666669999998,237.95531916666664 -2014-10-31 16:00:00,0.0,1020.040333,22.69483333,98.25,13.25833333,0.5245,237.95631916666665 -2014-10-31 17:00:00,0.0,1019.85,0.78925,100.0,11.90666667,1.24175,237.9566525 -2014-10-31 18:00:00,0.0,1019.883333,0.0,100.0,10.785,0.390166667,237.9566525 -2014-10-31 19:00:00,0.0,1019.743833,0.0,100.0,9.2875,0.061666667,237.9566525 -2014-10-31 20:00:00,0.0,1019.659667,0.0,100.0,8.74,0.049333333,237.95770249999998 -2014-10-31 21:00:00,0.0,1019.690333,0.0,100.0,7.85125,0.0,237.95875249999997 -2014-10-31 22:00:00,0.0,1019.633333,0.0,100.0,7.066666667000001,0.00675,237.95875249999997 -2014-10-31 23:00:00,0.0,1019.570167,0.0,100.0,6.50175,0.028416667000000003,237.95875249999997 -2014-01-11 00:00:00,0.0,1019.222333,0.0,100.0,6.425,0.0175,238.07466133333332 -2014-01-11 01:00:00,0.0,1019.2715,0.0,100.0,6.909583333,0.018916666999999998,238.073408 -2014-01-11 02:00:00,0.0,1018.955667,0.0,100.0,8.088333333,0.046,238.072421 -2014-01-11 03:00:00,0.0,1018.4925,0.0,100.0,8.44,0.050166667000000005,238.07143399999998 -2014-01-11 04:00:00,0.0,1018.068833,0.0,100.0,8.146666667,0.009416667,238.07112066666664 -2014-01-11 05:00:00,0.0,1017.9285,0.0,100.0,7.864,0.25775,238.07018066666663 -2014-01-11 06:00:00,0.0,1018.034667,0.0,100.0,7.686583333,0.0,238.069225 -2014-01-11 07:00:00,0.0,1018.2215,3.4195833330000003,100.0,7.607833332999999,0.0045,238.068567 -2014-01-11 08:00:00,0.0,1018.465833,31.78083333,100.0,7.776416667,0.066416667,238.06758 -2014-01-11 09:00:00,2.5030512000000003,1018.825,72.43583333,100.0,8.24475,0.179666667,238.06601333333333 -2014-01-11 10:00:00,0.0,1018.813167,94.20666667,100.0,9.021666667,0.21891666699999998,238.065371 -2014-01-11 11:00:00,0.0,1018.584167,111.30833329999999,100.0,9.798333332999999,0.5275,238.06372599999995 -2014-01-11 12:00:00,0.0,1017.9960000000001,122.05,100.0,10.25583333,1.01075,238.06372599999995 -2014-01-11 13:00:00,0.0,1017.479333,108.96666670000002,100.0,10.6425,1.089166667,238.06438400000002 -2014-01-11 14:00:00,0.0,1017.141667,81.3325,100.0,11.07333333,0.664666667,238.06405499999997 -2014-01-11 15:00:00,0.0,1016.9355,42.23666667,100.0,11.46333333,0.489416667,238.06341266666664 -2014-01-11 16:00:00,0.0,1016.443833,15.95475,100.0,11.545,0.7185,238.062786 -2014-01-11 17:00:00,0.0,1016.366667,0.70525,100.0,11.02333333,0.780166667,238.06183033333335 -2014-01-11 18:00:00,0.0,1016.3021669999999,0.0,100.0,10.33833333,0.26616666699999997,238.06085900000002 -2014-01-11 19:00:00,0.0,1016.381167,0.0,100.0,9.956666667,0.23275,238.058932 -2014-01-11 20:00:00,0.0,1016.193833,0.0,100.0,9.5675,0.6176666670000001,238.05830533333332 -2014-01-11 21:00:00,0.0,1015.9105,0.0,100.0,9.303333333,0.720166667,238.057005 -2014-01-11 22:00:00,0.0,1015.898667,0.0,100.0,9.129166667,0.244166667,238.05601800000002 -2014-01-11 23:00:00,0.0,1015.5605,0.0,100.0,9.173333332999999,0.502,238.05536000000004 -2014-02-11 00:00:00,0.0,1015.248667,0.0,100.0,9.086666667000001,0.8261666670000001,238.03874850000003 -2014-02-11 01:00:00,0.0,1015.005667,0.0,100.0,9.12,0.535666667,238.03874850000003 -2014-02-11 02:00:00,0.0,1014.404333,0.0,100.0,9.299166667,1.255,238.03824093333333 -2014-02-11 03:00:00,0.0,1013.9785,0.0,100.0,8.9925,0.985833333,238.03798714999996 -2014-02-11 04:00:00,0.0,1013.8960000000001,0.0,100.0,8.845,0.139416667,238.03773336666666 -2014-02-11 05:00:00,0.0,1013.5930000000001,0.0,100.0,8.525,0.321416667,238.03773336666666 -2014-02-11 06:00:00,0.0,1013.5675,0.0,100.0,7.983416667,0.114166667,238.0372258 -2014-02-11 07:00:00,0.0,1013.381167,3.30575,100.0,8.119166667,0.050166667000000005,238.0372378666667 -2014-02-11 08:00:00,0.0,1013.486833,28.82583333,100.0,8.421666667,0.10158333300000001,238.03773336666666 -2014-02-11 09:00:00,0.0,1013.5465,65.185,100.0,9.305833332999999,0.746583333,238.03674236666666 -2014-02-11 10:00:00,0.0,1013.502167,86.4775,100.0,9.905,0.622916667,238.03698408333332 -2014-02-11 11:00:00,0.0,1013.222333,105.65,100.0,10.39416667,0.47183333299999997,238.0372258 -2014-02-11 12:00:00,0.0,1012.484167,107.0,100.0,10.82333333,1.483333333,238.03599308333332 -2014-02-11 13:00:00,0.0,1011.6635,111.5508333,100.0,11.285,1.520666667,238.03773336666669 -2014-02-11 14:00:00,0.0,1010.919667,81.00666667,100.0,12.15083333,1.16125,238.0372258 -2014-02-11 15:00:00,0.0,1010.3105,61.44916667,100.0,12.87,1.4185,238.0372258 -2014-02-11 16:00:00,0.0,1009.686333,20.77,100.0,12.31583333,1.5270833330000002,238.03698408333332 -2014-02-11 17:00:00,0.0,1009.2535,0.551666667,100.0,11.27916667,1.130416667,238.03650065 -2014-02-11 18:00:00,0.0,1008.975833,0.0,100.0,10.25083333,0.57125,238.03625893333333 -2014-02-11 19:00:00,0.0,1008.459167,0.0,100.0,8.778333332999999,0.133416667,238.0357755 -2014-02-11 20:00:00,0.0,1007.754333,0.0,100.0,9.369166667,0.38725,238.03601721666666 -2014-02-11 21:00:00,0.0,1007.414,0.0,100.0,9.8375,0.473416667,238.0357755 -2014-02-11 22:00:00,0.0,1006.832833,0.0,100.0,11.19083333,1.5005,238.0357755 -2014-02-11 23:00:00,0.0,1006.014833,0.0,99.21666667,12.08833333,1.7990833330000002,238.03501414999997 -2014-03-11 00:00:00,0.0,1005.559167,0.0,91.05833333,11.87583333,1.5625,238.00046229999998 -2014-03-11 01:00:00,0.0,1004.818833,0.0,89.475,11.74833333,1.409,237.9999668 -2014-03-11 02:00:00,0.0,1004.597333,0.0,89.55,14.90916667,2.20325,237.9999547 -2014-03-11 03:00:00,2.673406944,1003.919667,0.0,93.325,14.12166667,1.95225,237.99971299999996 -2014-03-11 04:00:00,0.0,1003.4855,0.0,94.55,13.39583333,1.687583333,237.99947129999998 -2014-03-11 05:00:00,0.0,1002.998667,0.0,92.725,13.83916667,1.3694166669999999,237.9992296 -2014-03-11 06:00:00,0.0,1003.0583330000001,0.0,91.375,13.10833333,1.215083333,237.9999547 -2014-03-11 07:00:00,0.0,1003.133333,3.364416667,91.40833333,14.01166667,1.6969999999999998,237.9999547 -2014-03-11 08:00:00,0.0,1003.2645,17.015,90.4,13.87833333,1.878416667,237.9985045 -2014-03-11 09:00:00,0.0,1003.062667,30.74333333,93.13333333,13.1625,2.3818333330000003,237.99947129999998 -2014-03-11 10:00:00,2.73420648,1002.650833,70.73416667,93.48333333,13.51,2.0725,237.99947129999998 -2014-03-11 11:00:00,5.571382656,1002.157833,39.97833333,95.16666667,13.41583333,1.50825,237.9992296 -2014-03-11 12:00:00,2.8614532319999997,1000.8455,51.26916667,94.15833333,13.4225,1.9751666669999999,237.9985045 -2014-03-11 13:00:00,0.0,1000.0565,55.29166667,92.4,13.71,2.492416667,237.9985045 -2014-03-11 14:00:00,0.0,999.2258332999999,73.30333333,90.31666667,13.9675,2.745833333,237.9985045 -2014-03-11 15:00:00,10.16133586,998.5968332999998,8.9765,92.76666667,13.67916667,2.752,237.9987462 -2014-03-11 16:00:00,0.0,997.7355,8.761916667000001,95.7,12.925,2.966416667,237.9992296 -2014-03-11 17:00:00,0.0,996.692,0.11691666699999999,93.68333333,12.83,3.657166667,237.99947129999998 -2014-03-11 18:00:00,0.0,996.6706667000001,0.0,89.38333333,12.66666667,3.235,237.9985045 -2014-03-11 19:00:00,0.0,996.4446667000001,0.0,87.25833333,12.93583333,3.144583333,237.9985045 -2014-03-11 20:00:00,3.319752,995.4981667000002,0.0,88.14166667,12.45583333,2.999083333,237.99825069999997 -2014-03-11 21:00:00,11.47398761,995.2486667000002,0.0,93.0,11.98833333,3.37975,237.99748929999998 -2014-03-11 22:00:00,22.6813325,994.2608332999998,0.0,97.70833333,11.51666667,1.49875,237.99799689999998 -2014-03-11 23:00:00,18.71849772,993.2161667000001,0.0,99.64166667,11.1175,0.798583333,237.9985045 -2014-04-11 00:00:00,2.495075952,992.4078332999999,0.0,94.9,11.43833333,1.865583333,237.8933097 -2014-04-11 01:00:00,0.0,992.6601667000001,0.0,94.36666667,11.72083333,2.3955833330000003,237.8933097 -2014-04-11 02:00:00,5.512374096,992.4148332999998,0.0,92.34166667,12.32416667,1.53775,237.8933097 -2014-04-11 03:00:00,0.0,991.9355,0.0,93.975,11.62333333,1.561666667,237.8933097 -2014-04-11 04:00:00,3.0014638560000004,992.075,0.0,97.15833333,11.635,1.400333333,237.8933097 -2014-04-11 05:00:00,0.0,991.528,0.0,93.26666667,11.79666667,2.335333333,237.8933097 -2014-04-11 06:00:00,0.0,991.1645,0.0,87.35,12.29583333,1.9680000000000002,237.89264133333333 -2014-04-11 07:00:00,0.0,991.1298332999999,0.92875,86.25,13.20916667,2.209916667,237.8913046 -2014-04-11 08:00:00,0.0,991.7553332999998,6.03575,84.64166667,13.4675,2.173333333,237.89126448000002 -2014-04-11 09:00:00,0.0,991.9688332999999,29.405,83.91666667,13.4175,2.18225,237.89366059999998 -2014-04-11 10:00:00,0.0,992.043,54.06583333,81.85833333,13.73416667,1.801916667,237.8933097 -2014-04-11 11:00:00,0.0,992.0008332999998,79.6875,84.71666667,13.69333333,1.265583333,237.8933097 -2014-04-11 12:00:00,0.0,991.5688332999998,81.895,87.45,13.4225,1.24675,237.8933097 -2014-04-11 13:00:00,0.0,991.325,93.5425,84.19166667,13.6275,1.28425,237.89197296666669 -2014-04-11 14:00:00,0.0,991.1688332999998,71.965,81.45666667,13.91916667,1.089333333,237.89197296666669 -2014-04-11 15:00:00,0.0,991.1215,32.94083333,84.8,13.69666667,1.190083333,237.89095369999998 -2014-04-11 16:00:00,0.0,990.9306667000001,12.00775,91.825,12.73,0.59125,237.8913046 -2014-04-11 17:00:00,0.0,990.6333332999999,0.161,99.33333333,11.62,0.274583333,237.89095370000004 -2014-04-11 18:00:00,2.4050227680000003,990.6131667000001,0.0,100.0,11.16416667,0.035666667,237.89095370000004 -2014-04-11 19:00:00,0.0,990.8583332999999,0.0,98.70833333,11.19166667,0.17525,237.89025189999998 -2014-04-11 20:00:00,0.0,990.6416667000001,0.0,98.79166667,11.20666667,0.060333332999999996,237.88955010000004 -2014-04-11 21:00:00,2.45004384,990.9846667000002,0.0,99.99166667,10.85666667,0.22725,237.88955010000004 -2014-04-11 22:00:00,12.25693656,991.0895,0.0,100.0,10.425,0.336416667,237.88919919999998 -2014-04-11 23:00:00,2.41677756,991.2096667000002,0.0,100.0,10.04416667,0.38058333299999997,237.88919919999998 -2014-05-11 00:00:00,5.023686264,991.2535,0.0,100.0,9.650833333,0.670416667,237.8445518666667 -2014-05-11 01:00:00,7.410599928,992.04,0.0,100.0,9.405833333,0.43208333299999996,237.8458886 -2014-05-11 02:00:00,17.06186098,992.4666667000001,0.0,100.0,9.175833333,0.244166667,237.8472922 -2014-05-11 03:00:00,12.42547615,992.5443332999998,0.0,100.0,8.9225,0.465916667,237.84834490000003 -2014-05-11 04:00:00,5.091761303999999,993.1921667000001,0.0,100.0,8.7025,0.6629166670000001,237.8493976 -2014-05-11 05:00:00,0.0,993.5193332999999,0.0,100.0,8.523333333,0.65025,237.8500994 -2014-05-11 06:00:00,0.0,994.0991667000002,0.0,100.0,8.459166667,0.526333333,237.85043358333334 -2014-05-11 07:00:00,0.0,994.8531667000001,1.039166667,100.0,8.409166667000001,0.32566666699999997,237.8521045 -2014-05-11 08:00:00,0.0,995.9768332999998,16.88991667,99.99166667,8.524166667000001,0.290666667,237.85213793333335 -2014-05-11 09:00:00,2.4085938959999997,996.5491667000001,50.4375,100.0,8.909166667000001,0.11883333300000001,237.85076776666668 -2014-05-11 10:00:00,0.0,997.179,108.64166670000002,97.70833333,9.724166667,0.388166667,237.8500994 -2014-05-11 11:00:00,0.0,997.6061667000001,173.6166667,93.91666667,10.6475,0.9209166670000001,237.84974850000003 -2014-05-11 12:00:00,0.0,997.9166667000002,127.76583329999998,89.63333333,10.92333333,0.817333333,237.8500994 -2014-05-11 13:00:00,0.0,998.0123332999999,121.73666670000001,86.51666667,11.075,0.8065,237.84974850000003 -2014-05-11 14:00:00,0.0,998.7776667000002,93.90166667,88.29166667,10.77833333,0.750833333,237.84974850000003 -2014-05-11 15:00:00,0.0,998.7548332999999,73.2875,86.64166667,10.87416667,0.543416667,237.847994 -2014-05-11 16:00:00,0.0,999.2623332999999,9.386416667,91.48333333,9.911666667,0.395583333,237.847994 -2014-05-11 17:00:00,0.0,999.797,0.31175,95.99166667,9.070833333,0.061583333,237.8486958 -2014-05-11 18:00:00,0.0,1000.381167,0.0,97.36666667,8.4475,0.0335,237.8483449 -2014-05-11 19:00:00,0.0,1000.577167,0.0,99.08333333,8.401666667,0.00375,237.847994 -2014-05-11 20:00:00,0.0,1001.087833,0.0,99.725,8.331666667,0.015333333000000001,237.8465904 -2014-05-11 21:00:00,0.0,1001.917167,0.0,97.025,8.440833332999999,0.132416667,237.8458886 -2014-05-11 22:00:00,0.0,1002.370167,0.0,96.86666667,8.591666667,0.273083333,237.8458886 -2014-05-11 23:00:00,0.0,1002.436,0.0,97.39166667,8.554166667,0.529333333,237.8458886 -2014-06-11 00:00:00,0.0,1002.9325,0.0,97.55833333,8.436666667,0.530083333,237.75290119999997 -2014-06-11 01:00:00,0.0,1003.306167,0.0,97.61666667,8.13075,0.2105,237.7507958 -2014-06-11 02:00:00,0.0,1003.570667,0.0,98.2,7.611833333,0.014666667,237.74870711666668 -2014-06-11 03:00:00,0.0,1004.0110000000001,0.0,96.16666667,7.349416667000001,0.032916667000000004,237.7463344 -2014-06-11 04:00:00,0.0,1004.429833,0.0,95.01666667,7.071416667,0.0205,237.74459661666666 -2014-06-11 05:00:00,0.0,1004.762333,0.0,99.11666667,5.93175,0.027833333,237.7415221 -2014-06-11 06:00:00,0.0,1005.1978330000001,0.0,98.25,4.729,0.11516666699999999,237.93204195 -2014-06-11 07:00:00,0.0,1005.822,4.325,100.0,3.399333333,0.025,238.63301520000002 -2014-06-11 08:00:00,0.0,1006.697,21.5975,100.0,4.095333333,0.008083333,238.53488126666664 -2014-06-11 09:00:00,0.0,1007.059667,72.6,100.0,7.337916667000001,0.647416667,238.50020941666665 -2014-06-11 10:00:00,0.0,1007.394333,200.2333333,85.74166667,10.12916667,0.945,238.46797711666662 -2014-06-11 11:00:00,0.0,1007.516667,204.8325,77.15416667,10.78083333,0.624916667,238.39624394999998 -2014-06-11 12:00:00,0.0,1007.402167,151.0058333,77.31666667,9.875,0.48308333299999995,238.34509666666668 -2014-06-11 13:00:00,0.0,1007.383333,120.98583329999998,79.995,9.186666667,1.6545833330000002,238.3100739 -2014-06-11 14:00:00,0.0,1007.268,158.83333330000002,80.79916667,9.709166667,0.75825,238.28160119999998 -2014-06-11 15:00:00,0.0,1007.538167,72.6975,84.43333333,9.078333333,1.809083333,238.26066441666669 -2014-06-11 16:00:00,0.0,1007.5285,9.841583332999999,84.79166667,8.09875,1.086666667,238.2428188166667 -2014-06-11 17:00:00,0.0,1007.6978330000001,0.130083333,86.56666667,8.149166667000001,0.71925,238.22771361666665 -2014-06-11 18:00:00,0.0,1007.979833,0.0,88.6,7.975583332999999,0.752083333,238.21431273333337 -2014-06-11 19:00:00,0.0,1008.134667,0.0,91.48333333,7.2755,0.6868333329999999,238.20127943333333 -2014-06-11 20:00:00,0.0,1008.004833,0.0,95.05,4.684833333,0.3445,238.18995048333332 -2014-06-11 21:00:00,0.0,1007.972333,0.0,98.325,2.760583333,0.0019166670000000002,238.18035931666668 -2014-06-11 22:00:00,0.0,1007.5605,0.0,100.0,1.7416666669999998,0.047333333,238.17108568333333 -2014-06-11 23:00:00,0.0,1007.391667,0.0,100.0,0.898166667,0.002416667,238.16181201666666 -2014-07-11 00:00:00,0.0,1007.200833,0.0,100.0,0.35375,0.027083332999999998,237.8950642 -2014-07-11 01:00:00,0.0,1006.840333,0.0,100.0,-0.123333333,0.00325,237.89127116666668 -2014-07-11 02:00:00,0.0,1006.647333,0.0,100.0,-0.45491666700000005,0.0014166670000000001,237.8884974 -2014-07-11 03:00:00,0.0,1006.184167,0.0,100.0,0.520333333,0.051583332999999995,237.88575706666668 -2014-07-11 04:00:00,0.0,1005.6210000000001,0.0,100.0,0.657416667,0.074666667,237.8826491166667 -2014-07-11 05:00:00,0.0,1004.8315,0.0,100.0,0.888166667,0.081166667,237.87992549999998 -2014-07-11 06:00:00,0.0,1004.373667,0.0,100.0,1.3671666669999998,0.4955,237.87720188333333 -2014-07-11 07:00:00,0.0,1004.158333,3.78575,100.0,3.7054166669999997,1.995166667,237.87476239999998 -2014-07-11 08:00:00,0.0,1004.125,17.00916667,100.0,3.66675,1.6855,237.87170454999998 -2014-07-11 09:00:00,0.0,1004.190333,63.24416667,100.0,4.219416667,1.6815,237.88712725000002 -2014-07-11 10:00:00,0.0,1003.980667,69.23166667,99.35,4.7365833330000005,1.9845,237.87479574999998 -2014-07-11 11:00:00,0.0,1003.2925,63.14333333,99.1,4.628416667,1.8665833330000001,237.86650796666666 -2014-07-11 12:00:00,0.0,1002.800833,54.19833333,99.33333333,4.84325,2.278,237.86069311666665 -2014-07-11 13:00:00,0.0,1002.716667,33.095,97.29166667,5.33225,1.850416667,237.85417646666667 -2014-07-11 14:00:00,0.0,1002.254333,38.18166667,96.65,5.981833332999999,1.8933333330000002,237.85008268333334 -2014-07-11 15:00:00,0.0,1002.340833,53.31833333,94.3,6.5729999999999995,2.40875,237.8472922 -2014-07-11 16:00:00,5.7728748,1002.4188330000001,5.140666667,98.15833333,6.375166667,1.91025,237.84283080000003 -2014-07-11 17:00:00,2.7695875439999997,1002.7698330000001,0.287333333,100.0,6.282083332999999,1.5110833330000002,237.84010718333332 -2014-07-11 18:00:00,0.0,1003.356167,0.0,99.64166667,6.42125,0.9505,237.83699923333333 -2014-07-11 19:00:00,0.0,1004.235167,0.0,96.66666667,6.6665,0.7031666670000001,237.8335738166667 -2014-07-11 20:00:00,0.0,1004.799167,0.0,96.58333333,7.24925,1.3625,237.83014839999998 -2014-07-11 21:00:00,0.0,1005.222,0.0,97.41666667,6.676166667,1.044166667,237.82702378333337 -2014-07-11 22:00:00,0.0,1005.5425,0.0,99.75833333,6.376333333,1.316666667,237.82463433333336 -2014-07-11 23:00:00,0.0,1005.3965,0.0,100.0,4.793833333,0.6495833329999999,237.82358168333337 -2014-08-11 00:00:00,0.0,1005.552667,0.0,99.075,3.839916667,0.144583333,237.52958095 -2014-08-11 01:00:00,0.0,1005.872833,0.0,99.3,3.19225,0.203166667,237.52752569999998 -2014-08-11 02:00:00,0.0,1006.079833,0.0,99.73333333,5.86025,1.4838333330000002,237.53197038333334 -2014-08-11 03:00:00,0.0,1006.0355,0.0,99.6,4.835833333,0.34575,237.53267218333335 -2014-08-11 04:00:00,0.0,1006.410167,0.0,94.325,5.262166667,0.6709166670000001,237.52891258333332 -2014-08-11 05:00:00,0.0,1006.766667,0.0,92.94166667,6.737666667,1.227833333,237.52682390000004 -2014-08-11 06:00:00,0.0,1007.017167,0.0,92.3,7.364416667,1.05775,237.52547045000003 -2014-08-11 07:00:00,0.0,1007.6360000000001,3.7375833330000003,92.3,7.48925,0.884083333,237.5244679 -2014-08-11 08:00:00,0.0,1008.076333,16.4425,94.05833333,8.18675,1.482083333,237.52306430000002 -2014-08-11 09:00:00,0.0,1008.470667,64.635,87.19166667,10.32166667,1.228333333,237.52102576666667 -2014-08-11 10:00:00,0.0,1009.115833,199.4083333,81.67666667,11.43166667,1.7729166669999998,237.52032396666667 -2014-08-11 11:00:00,0.0,1009.165333,224.0083333,77.67166667,11.79333333,1.70825,237.518252 -2014-08-11 12:00:00,0.0,1008.8355,112.50916670000001,79.23,12.46166667,2.1345,237.51614659999998 -2014-08-11 13:00:00,0.0,1008.825,220.85,77.32833333,11.32583333,2.48175,237.51547823333337 -2014-08-11 14:00:00,0.0,1008.579333,159.6108333,76.245,11.41166667,2.423666667,237.51273790000002 -2014-08-11 15:00:00,0.0,1008.15,86.805,78.56666667,11.0875,2.30625,237.51203610000002 -2014-08-11 16:00:00,0.0,1007.973667,8.055083332999999,88.23333333,9.483333333,1.167166667,237.54959204000002 -2014-08-11 17:00:00,0.0,1007.697333,0.1935,98.54166667,6.504583332999999,0.197916667,237.5512362333333 -2014-08-11 18:00:00,0.0,1007.4188330000001,0.0,100.0,4.736333333,0.15233333300000002,237.53439325 -2014-08-11 19:00:00,0.0,1007.2465,0.0,100.0,3.579416667,0.02275,237.5247853666667 -2014-08-11 20:00:00,0.0,1007.1688330000001,0.0,100.0,2.76475,0.042,237.5175502 -2014-08-11 21:00:00,0.0,1006.852167,0.0,100.0,2.4443333330000003,0.02025,237.51240371666668 -2014-08-11 22:00:00,0.0,1006.468833,0.0,100.0,1.95375,0.040833333,237.50864411666666 -2014-08-11 23:00:00,0.0,1006.1605,0.0,100.0,2.0404166669999997,0.006,237.50486784999998 -2014-09-11 00:00:00,0.0,1005.973667,0.0,100.0,2.01825,0.01325, -2014-09-11 01:00:00,0.0,1005.571,0.0,100.0,1.747166667,0.024583333, -2014-09-11 02:00:00,0.0,1005.252167,0.0,100.0,1.9073333330000002,0.2175, -2014-09-11 03:00:00,0.0,1004.937667,0.0,100.0,2.251083333,0.148583333, -2014-09-11 04:00:00,0.0,1004.8255,0.0,100.0,1.51325,0.0745, -2014-09-11 05:00:00,0.0,1004.830667,0.0,100.0,1.5761666669999999,0.168833333, -2014-09-11 06:00:00,0.0,1004.5965,0.0,100.0,0.893083333,0.07825, -2014-09-11 07:00:00,0.0,1005.047833,2.592083333,100.0,1.66225,0.09875, -2014-09-11 08:00:00,0.0,1005.234667,29.05333333,100.0,3.037583333,0.18333333300000001, -2014-09-11 09:00:00,0.0,1005.233333,47.93833333,100.0,4.209,0.241666667, -2014-09-11 10:00:00,0.0,1005.379833,73.98416667,100.0,5.443583332999999,0.43325, -2014-09-11 11:00:00,0.0,1005.491667,115.59166670000002,98.80833333,7.12425,1.5583333330000002, -2014-09-11 12:00:00,0.0,1005.420167,157.2,93.50833333,8.174583333,1.918333333, -2014-09-11 13:00:00,0.0,1005.2425,122.46166670000001,93.48333333,8.223333333,1.77, -2014-09-11 14:00:00,0.0,1004.511833,100.4441667,93.675,8.666666667000001,1.609, -2014-09-11 15:00:00,0.0,1004.632,46.3575,94.41666667,8.635833332999999,1.144333333, -2014-09-11 16:00:00,0.0,1004.668,15.03366667,97.60833333,7.99375,0.229583333, -2014-09-11 17:00:00,0.0,1004.8965,0.1775,100.0,6.190083333,0.314583333, -2014-09-11 18:00:00,0.0,1005.034667,0.0,100.0,3.937583333,0.09908333300000001, -2014-09-11 19:00:00,0.0,1005.156167,0.0,100.0,2.863333333,0.032833333, -2014-09-11 20:00:00,2.4050227680000003,1005.5575,0.0,100.0,2.893583333,0.037166667, -2014-09-11 21:00:00,0.0,1005.690333,0.0,100.0,3.768166667,0.0305, -2014-09-11 22:00:00,0.0,1005.931167,0.0,100.0,4.204083333,0.0775, -2014-09-11 23:00:00,0.0,1005.8355,0.0,100.0,4.785833333,0.15325, -2014-10-11 00:00:00,0.0,1005.834667,0.0,100.0,5.317,0.123916667,237.87655249999997 -2014-10-11 01:00:00,0.0,1006.054,0.0,100.0,5.268416666999999,0.038916667,237.8772191666667 -2014-10-11 02:00:00,0.0,1006.082,0.0,100.0,5.40725,0.02825,237.87855249999998 -2014-10-11 03:00:00,0.0,1006.275,0.0,100.0,5.48625,0.021583333,237.87821916666667 -2014-10-11 04:00:00,0.0,1006.384667,0.0,100.0,5.550666667000001,0.028083333,237.87855249999998 -2014-10-11 05:00:00,2.4050227680000003,1006.6,0.0,100.0,5.76175,0.072166667,237.87890249999998 -2014-10-11 06:00:00,2.4050227680000003,1006.406167,0.0,100.0,5.956833333,0.339083333,237.87995249999997 -2014-10-11 07:00:00,2.581734168,1007.0219999999999,0.819416667,100.0,6.326833333,1.101583333,237.8806525 -2014-10-11 08:00:00,0.0,1007.482,13.005,100.0,6.515,0.760416667,237.8806525 -2014-10-11 09:00:00,0.0,1007.720667,38.08666667,100.0,6.981083333,0.7496666670000001,237.8806525 -2014-10-11 10:00:00,0.0,1007.7535,72.7125,100.0,7.832333332999999,0.500416667,237.88231916666663 -2014-10-11 11:00:00,0.0,1007.743833,120.44166670000001,99.875,9.309166667000001,0.696,237.88231916666663 -2014-10-11 12:00:00,0.0,1007.290333,87.56833333,98.56666667,9.8175,1.325,237.88231916666663 -2014-10-11 13:00:00,0.0,1007.027167,57.9525,98.24166667,9.544166667,1.9075,237.88300249999998 -2014-10-11 14:00:00,0.0,1007.226333,83.03416667,93.275,9.5775,2.192166667,237.88300249999998 -2014-10-11 15:00:00,0.0,1007.107,66.62,91.46666667,9.790833333,2.15475,237.8844025 -2014-10-11 16:00:00,0.0,1007.101333,13.35625,98.05833333,8.975,1.972666667,237.88475250000002 -2014-10-11 17:00:00,0.0,1007.2061669999999,0.12633333300000002,100.0,8.534166667000001,0.70925,237.8854525 -2014-10-11 18:00:00,0.0,1007.343833,0.0,99.975,7.89475,0.054583333,237.8851025 -2014-10-11 19:00:00,0.0,1007.132,0.0,100.0,8.185416667,0.9298333329999999,237.8861525 -2014-10-11 20:00:00,0.0,1007.215833,0.0,100.0,7.760166667000001,0.369,237.8868525 -2014-10-11 21:00:00,0.0,1007.390333,0.0,100.0,7.220833333,0.0495,237.88851916666667 -2014-10-11 22:00:00,0.0,1007.5145,0.0,100.0,7.07625,0.363833333,237.88885249999998 -2014-10-11 23:00:00,0.0,1007.321,0.0,100.0,4.473833333,0.036416667,237.88990249999998 -2014-11-11 00:00:00,0.0,1007.3228330000001,0.0,100.0,4.2295,0.07525,237.95975249999995 -2014-11-11 01:00:00,0.0,1007.1771669999999,0.0,100.0,6.28475,0.294583333,237.95941916666666 -2014-11-11 02:00:00,0.0,1007.1395,0.0,100.0,7.405416667000001,0.33299999999999996,237.95941916666666 -2014-11-11 03:00:00,0.0,1007.0175,0.0,100.0,7.588916667,0.184416667,237.95875249999997 -2014-11-11 04:00:00,0.0,1006.547333,0.0,100.0,7.5165,0.41975,237.96008583333332 -2014-11-11 05:00:00,0.0,1006.2819999999999,0.0,100.0,6.909916667,0.53875,237.95941916666666 -2014-11-11 06:00:00,0.0,1005.880667,0.0,100.0,5.335,0.068833333,237.95908583333332 -2014-11-11 07:00:00,0.0,1005.555667,0.763,100.0,4.69375,0.273666667,237.9597525 -2014-11-11 08:00:00,0.0,1005.4785,9.960416667,100.0,4.705833333,0.38625,237.95875249999997 -2014-11-11 09:00:00,0.0,1005.4,21.6825,100.0,5.28475,0.316833333,237.95941916666663 -2014-11-11 10:00:00,0.0,1005.3465,65.765,100.0,6.407916667,0.6888333329999999,237.95875249999997 -2014-11-11 11:00:00,0.0,1004.923167,63.41583333,99.79166667,7.317083332999999,1.2993333329999999,237.95875249999997 -2014-11-11 12:00:00,0.0,1004.279333,55.2275,98.3,7.78775,1.475916667,237.9580525 -2014-11-11 13:00:00,0.0,1003.411333,69.38666667,96.975,8.4275,1.13225,237.95770249999998 -2014-11-11 14:00:00,0.0,1002.6315,73.09416667,96.6,8.463333333,1.84275,237.95735249999998 -2014-11-11 15:00:00,0.0,1001.846,32.0225,98.175,8.34775,0.819083333,237.95735249999998 -2014-11-11 16:00:00,0.0,1001.3758330000001,7.885083333,100.0,7.1718333329999995,0.95425,237.95700250000002 -2014-11-11 17:00:00,0.0,1000.8175,0.0545,100.0,6.79625,0.059000000000000004,237.95700250000002 -2014-11-11 18:00:00,0.0,1000.6785,0.0,100.0,6.3405,0.172583333,237.95700249999996 -2014-11-11 19:00:00,0.0,1000.373667,0.0,100.0,6.4615,0.054666667,237.95598583333333 -2014-11-11 20:00:00,0.0,1000.366667,0.0,100.0,6.03975,0.123583333,237.9556525 -2014-11-11 21:00:00,0.0,999.8591667000002,0.0,100.0,5.511166667,0.22058333300000002,237.95531916666667 -2014-11-11 22:00:00,0.0,999.8083332999998,0.0,100.0,5.354083333,0.06283333299999999,237.95598583333333 -2014-11-11 23:00:00,0.0,999.6701667000001,0.0,100.0,5.888416667,0.0010833330000000001,237.95631916666665 -2014-12-11 00:00:00,0.0,999.5833332999998,0.0,100.0,6.51025,0.029083333, -2014-12-11 01:00:00,0.0,999.3758332999998,0.0,100.0,7.033833333,0.291083333, -2014-12-11 02:00:00,0.0,999.243,0.0,100.0,7.3020000000000005,0.265416667, -2014-12-11 03:00:00,0.0,999.175,0.0,100.0,7.3295833329999995,0.9208333329999999, -2014-12-11 04:00:00,0.0,999.0605,0.0,100.0,7.459333332999999,0.3805, -2014-12-11 05:00:00,0.0,998.9486667000001,0.0,100.0,7.48725,0.12425, -2014-12-11 06:00:00,0.0,998.9061667000001,0.0,100.0,7.433166667,0.41333333299999997, -2014-12-11 07:00:00,0.0,998.9973332999999,0.747583333,100.0,7.51825,0.278083333, -2014-12-11 08:00:00,0.0,999.2623332999999,11.73425,100.0,7.54625,0.42325, -2014-12-11 09:00:00,0.0,999.5965,46.8125,100.0,8.118416667,0.40525, -2014-12-11 10:00:00,0.0,999.9658332999999,62.20416667,98.725,8.78,0.6153333329999999, -2014-12-11 11:00:00,0.0,1000.1833330000001,72.5825,97.36666667,9.358333333,0.93975, -2014-12-11 12:00:00,0.0,1000.2395,59.7,96.75833333,9.6975,0.48258333299999995, -2014-12-11 13:00:00,0.0,1000.520167,53.94083333,96.19166667,10.03833333,0.40533333299999996, -2014-12-11 14:00:00,0.0,1000.306167,51.19333333,95.95833333,10.14,0.598666667, -2014-12-11 15:00:00,0.0,1000.5145,22.23783333,96.6,10.18583333,0.09300000000000001, -2014-12-11 16:00:00,0.0,1000.8895,3.03825,99.35833333,9.460833333,0.37225, -2014-12-11 17:00:00,0.0,1001.256167,0.040833333,100.0,8.859166667,0.0125, -2014-12-11 18:00:00,0.0,1001.813667,0.0,100.0,8.658333333,0.083833333, -2014-12-11 19:00:00,2.4050227680000003,1002.281167,0.0,100.0,8.631666667000001,0.07825, -2014-12-11 20:00:00,2.4050227680000003,1002.645667,0.0,100.0,8.6275,0.025583333, -2014-12-11 21:00:00,4.815573912,1003.251333,0.0,100.0,8.240833333,0.008166666999999999, -2014-12-11 22:00:00,0.0,1003.6039999999999,0.0,100.0,8.525,0.12733333300000002, -2014-12-11 23:00:00,2.4050227680000003,1004.335167,0.0,100.0,8.469166667,0.39383333299999995, -2014-11-13 00:00:00,0.0,1004.9561669999999,0.0,100.0,8.551666667000001,0.2015,237.96075249999998 -2014-11-13 01:00:00,0.0,1005.3895,0.0,100.0,8.453333333,0.033666667000000004,237.96110249999995 -2014-11-13 02:00:00,0.0,1005.815833,0.0,100.0,8.459166667,0.055666667,237.96180249999998 -2014-11-13 03:00:00,0.0,1006.0930000000001,0.0,100.0,8.8025,0.031416667,237.96285250000003 -2014-11-13 04:00:00,0.0,1006.319333,0.0,100.0,8.461666667000001,0.0535,237.96285250000003 -2014-11-13 05:00:00,0.0,1006.5811669999999,0.0,100.0,8.773333333,0.320333333,237.96285250000003 -2014-11-13 06:00:00,2.44836312,1006.918,0.0,100.0,8.970833333,0.140166667,237.96283583333332 -2014-11-13 07:00:00,0.0,1007.0728330000001,0.6865,100.0,8.301666667000001,0.035416667,237.96318583333334 -2014-11-13 08:00:00,0.0,1007.4395,19.6775,100.0,8.4825,0.050333333,237.96285250000003 -2014-11-13 09:00:00,0.0,1007.8228330000001,59.4275,100.0,9.105833333,0.856583333,237.96285250000003 -2014-11-13 10:00:00,0.0,1008.290833,73.5475,100.0,9.061666667,0.994833333,237.9638525 -2014-11-13 11:00:00,0.0,1008.787333,118.75,100.0,9.275833333,0.40016666700000003,237.96485249999998 -2014-11-13 12:00:00,0.0,1008.718833,115.625,100.0,10.01666667,0.532833333,237.96451916666663 -2014-11-13 13:00:00,0.0,1008.8430000000001,76.85,99.43333333,10.74583333,1.0195,237.96451916666663 -2014-11-13 14:00:00,0.0,1008.648667,86.7875,97.60833333,11.43833333,1.0,237.9638525 -2014-11-13 15:00:00,0.0,1008.6916669999999,22.86416667,97.44166667,11.5425,0.71575,237.9638525 -2014-11-13 16:00:00,0.0,1008.5666669999999,4.6885,98.525,11.20166667,0.20625,237.96485249999998 -2014-11-13 17:00:00,0.0,1008.5583330000001,0.0019166670000000002,100.0,10.7875,0.42875,237.96485249999998 -2014-11-13 18:00:00,0.0,1008.901333,0.0,100.0,10.52916667,0.026166667,237.96485249999998 -2014-11-13 19:00:00,0.0,1009.091667,0.0,100.0,10.33083333,0.313416667,237.96520249999995 -2014-11-13 20:00:00,0.0,1009.094333,0.0,99.55833333,10.29166667,1.009583333,237.96590249999997 -2014-11-13 21:00:00,0.0,1009.393,0.0,99.875,10.20083333,0.59025,237.9652025 -2014-11-13 22:00:00,0.0,1009.2819999999999,0.0,99.75,10.08,0.5541666670000001,237.96485249999998 -2014-11-13 23:00:00,0.0,1008.966167,0.0,100.0,9.779166667,0.19125,237.96485249999998 -2014-11-14 00:00:00,0.0,1008.4245,0.0,97.73333333,9.638333333,0.578833333,237.96485249999998 -2014-11-14 01:00:00,0.0,1007.9035,0.0,97.49166667,9.465833332999999,0.231916667,237.96485249999998 -2014-11-14 02:00:00,0.0,1007.702167,0.0,98.38333333,9.329166667,0.111666667,237.96485249999998 -2014-11-14 03:00:00,0.0,1007.6215,0.0,99.3,9.314166667,0.28800000000000003,237.96625249999997 -2014-11-14 04:00:00,0.0,1007.155667,0.0,98.79166667,9.130833333,0.180333333,237.96453583333331 -2014-11-14 05:00:00,0.0,1006.975833,0.0,97.46666667,9.745833333,1.135333333,237.96556916666668 -2014-11-14 06:00:00,0.0,1006.5355,0.0,94.275,10.12583333,1.196916667,237.96451916666663 -2014-11-14 07:00:00,0.0,1006.352167,0.51175,95.09166667,10.18666667,0.871083333,237.96418583333332 -2014-11-14 08:00:00,0.0,1006.077167,6.751416667000001,92.65833333,10.3825,1.370333333,237.96485249999998 -2014-11-14 09:00:00,0.0,1005.875,24.83916667,90.0,10.6075,1.314083333,237.96485249999998 -2014-11-14 10:00:00,0.0,1005.723667,29.37916667,88.9,10.8425,1.196916667,237.96485249999998 -2014-11-14 11:00:00,0.0,1005.454333,30.70916667,89.24166667,10.86416667,1.19,237.96418583333332 -2014-11-14 12:00:00,0.0,1004.461333,44.92416667,90.15,10.99666667,1.6891666669999998,237.96351916666666 -2014-11-14 13:00:00,0.0,1003.886333,64.95166667,89.76666667,11.0725,1.7058333330000002,237.96351916666666 -2014-11-14 14:00:00,0.0,1003.518833,103.7025,87.71666667,11.3625,2.08875,237.96285250000003 -2014-11-14 15:00:00,0.0,1003.406167,35.935,89.11666667,11.02083333,1.7875833330000002,237.96285250000003 -2014-11-14 16:00:00,0.0,1003.1210000000001,8.268083333,90.15833333,10.39416667,2.1295833330000002,237.96285250000003 -2014-11-14 17:00:00,0.0,1002.6355,0.044666667,91.50833333,9.249166667,2.250083333,237.96418583333332 -2014-11-14 18:00:00,0.0,1002.547833,0.0,93.46666667,8.489916667000001,1.676916667,237.9638525 -2014-11-14 19:00:00,0.0,1002.5855,0.0,98.90833333,7.0135,0.39725,237.96418583333332 -2014-11-14 20:00:00,0.0,1002.4465,0.0,100.0,6.394916667,0.40299999999999997,237.96285250000003 -2014-11-14 21:00:00,0.0,1002.643833,0.0,100.0,7.044,1.322416667,237.96285250000003 -2014-11-14 22:00:00,0.0,1002.366667,0.0,98.725,7.539333332999999,1.72525,237.96318583333334 -2014-11-14 23:00:00,0.0,1002.102167,0.0,95.68333333,8.0805,1.5430833330000002,237.96285250000003 -2014-11-15 00:00:00,0.0,1001.778,0.0,99.54166667,7.4955,0.70175,237.96285250000003 -2014-11-15 01:00:00,0.0,1000.8960000000001,0.0,100.0,7.238666667,0.56225,237.96285250000003 -2014-11-15 02:00:00,0.0,1000.1196669999999,0.0,100.0,6.9285,0.727583333,237.96285250000003 -2014-11-15 03:00:00,0.0,999.5889999999999,0.0,100.0,6.450583332999999,0.255166667,237.96285250000003 -2014-11-15 04:00:00,0.0,999.2605,0.0,100.0,6.58225,0.38483333299999994,237.9621525 -2014-11-15 05:00:00,0.0,998.7446667000002,0.0,100.0,6.742083332999999,0.955833333,237.96110249999995 -2014-11-15 06:00:00,0.0,998.1395,0.0,100.0,6.9745,0.639,237.9611025 -2014-11-15 07:00:00,0.0,998.9991667000002,0.435166667,100.0,7.160833332999999,0.281166667,237.9621525 -2014-11-15 08:00:00,0.0,999.2798332999998,7.19375,100.0,7.540583333,0.111,237.96285250000003 -2014-11-15 09:00:00,0.0,999.5075,26.79916667,100.0,7.72875,0.161083333,237.9625025 -2014-11-15 10:00:00,0.0,999.3938332999999,70.97833333,95.95,8.376666667,0.41916666700000005,237.96285250000003 -2014-11-15 11:00:00,0.0,999.275,80.55,91.5,9.383333333,0.322,237.96180249999998 -2014-11-15 12:00:00,0.0,998.928,128.2333333,88.13333333,10.90916667,1.66175,237.96075249999998 -2014-11-15 13:00:00,0.0,998.078,155.2333333,85.27583333,12.17166667,1.9325,237.96075249999998 -2014-11-15 14:00:00,0.0,998.0605,33.25666667,91.71666667,10.65916667,2.234,237.96145249999998 -2014-11-15 15:00:00,0.0,998.097,13.79,91.10833333,10.64583333,1.2455,237.96250250000003 -2014-11-15 16:00:00,0.0,998.0258332999998,2.3961666669999997,93.80833333,10.57583333,0.7001666670000001,237.9621525 -2014-11-15 17:00:00,0.0,997.9368332999999,0.0,95.68333333,9.965,0.5608333329999999,237.96285250000003 -2014-11-15 18:00:00,0.0,997.9228332999999,0.0,97.79166667,9.746666667000001,0.239,237.96285250000003 -2014-11-15 19:00:00,0.0,997.932,0.0,99.78333333,9.430833332999999,0.077333333,237.9625025 -2014-11-15 20:00:00,0.0,997.3696667000002,0.0,100.0,9.293333333,0.436666667,237.96180249999998 -2014-11-15 21:00:00,29.28786943,997.2360000000001,0.0,100.0,8.99,0.235,237.96110249999995 -2014-11-15 22:00:00,34.07057105,996.9911667000001,0.0,100.0,8.82,0.125,237.95633583333336 -2014-11-15 23:00:00,24.40473439,996.7333332999999,0.0,100.0,8.904166667,0.21075,237.9512025 -2014-11-16 00:00:00,31.28536519,996.2231667000001,0.0,100.0,8.854166667000001,0.8375,237.94535249999998 -2014-11-16 01:00:00,29.18008985,995.6855,0.0,100.0,8.784166667000001,1.036333333,237.93510249999997 -2014-11-16 02:00:00,38.13672847,995.4833332999999,0.0,100.0,8.786666667,0.6055,237.91866916666666 -2014-11-16 03:00:00,34.35470532,995.0613332999999,0.0,100.0,8.786666667,0.318583333,237.88816916666667 -2014-11-16 04:00:00,24.866509100000002,994.7228332999998,0.0,100.0,8.779166667,0.431,237.84706916666664 -2014-11-16 05:00:00,29.80840968,994.7710000000001,0.0,100.0,8.756666667000001,0.41533333299999997,237.8008358333333 -2014-11-16 06:00:00,15.29242342,994.5513332999999,0.0,100.0,8.785833333,0.48316666700000005,237.75596916666666 -2014-11-16 07:00:00,27.09278069,994.5465,0.179416667,100.0,8.431666667,1.214166667,237.70835249999996 -2014-11-16 08:00:00,28.48697191,994.9,5.607583332999999,100.0,8.340833332999999,1.53875,237.6560025 -2014-11-16 09:00:00,8.991402936,995.2185,55.36166667,100.0,8.599166667,1.7516666669999998,237.62140250000002 -2014-11-16 10:00:00,0.0,995.9075,80.0825,99.95,8.851666667,1.866916667,237.60326916666668 -2014-11-16 11:00:00,5.650378008,996.1368332999999,76.52583333,99.625,8.715,1.4435,237.59671916666665 -2014-11-16 12:00:00,2.7408412319999997,996.2166667000001,93.435,99.01666667,8.806666667,1.389666667,237.59671916666665 -2014-11-16 13:00:00,2.82742572,996.2061667000002,87.12083333,98.625,8.9075,1.34875,237.5998358333333 -2014-11-16 14:00:00,0.0,996.2666667000001,42.44416667,98.15,8.620833333,1.057166667,237.60396916666664 -2014-11-16 15:00:00,0.0,996.5276667000002,25.52466667,98.65,8.7275,0.6645,237.6084025 -2014-11-16 16:00:00,0.0,996.4416667000002,7.827999999999999,100.0,8.5725,0.5325833329999999,237.6131691666666 -2014-11-16 17:00:00,2.768509584,996.625,0.044583332999999996,100.0,7.8040833329999995,1.27875,237.6190025 -2014-11-16 18:00:00,0.0,997.1421667000001,0.0,100.0,7.448333333,1.0455,237.62378583333336 -2014-11-16 19:00:00,0.0,997.4561667000002,0.0,100.0,7.977416667000001,1.2973333329999999,237.6275858333333 -2014-11-16 20:00:00,0.0,997.7193332999999,0.0,100.0,8.665,1.9075,237.63168583333334 -2014-11-16 21:00:00,0.0,997.9785,0.0,100.0,8.405,1.91375,237.6357858333333 -2014-11-16 22:00:00,0.0,998.2145,0.0,100.0,8.321666667,1.309083333,237.63953583333333 -2014-11-16 23:00:00,0.0,998.3381667000001,0.0,99.95833333,8.279166667,1.495166667,237.64260249999998 -2014-11-17 00:00:00,0.0,998.4583332999998,0.0,100.0,7.902166667,1.736083333,237.64671916666668 -2014-11-17 01:00:00,3.223812912,998.8255,0.0,99.95833333,8.178333333,2.0005,237.6488025 -2014-11-17 02:00:00,0.0,999.0416667000002,0.0,100.0,8.201666667000001,1.533833333,237.65221916666664 -2014-11-17 03:00:00,0.0,999.2811667000001,0.0,100.0,8.062583333,1.41925,237.65496916666666 -2014-11-17 04:00:00,0.0,999.5276667000002,0.0,100.0,7.7111666670000005,1.077583333,237.65840249999997 -2014-11-17 05:00:00,0.0,999.8166667000002,0.0,100.0,7.42875,0.573583333,237.66041916666666 -2014-11-17 06:00:00,2.471920008,1000.115833,0.0,100.0,7.428333332999999,0.622833333,237.66386916666667 -2014-11-17 07:00:00,2.586415272,1000.599167,0.197666667,100.0,7.265833333,0.41225,237.6672858333333 -2014-11-17 08:00:00,5.070986352,1000.9478330000001,19.62825,100.0,7.370916667,0.62075,237.6703525 -2014-11-17 09:00:00,2.6776724880000002,1001.5219999999999,56.38666667,100.0,8.443,1.221333333,237.6728025 -2014-11-17 10:00:00,0.0,1001.8965,148.4833333,99.56666667,9.364166667000001,1.055583333,237.67639250000002 -2014-11-17 11:00:00,0.0,1001.995167,125.075,97.69166667,9.724166667,0.981583333,237.6813525 -2014-11-17 12:00:00,0.0,1001.684167,133.24166670000002,96.56666667,9.8575,0.9238333329999999,237.68168583333332 -2014-11-17 13:00:00,0.0,1001.300833,96.13583333,93.78333333,10.16333333,1.000416667,237.6826858333333 -2014-11-17 14:00:00,0.0,1000.908333,102.5841667,94.21666667,10.35583333,0.60675,237.68440249999995 -2014-11-17 15:00:00,0.0,1001.1575,50.38666667,95.725,10.505,1.6736666669999998,237.68611916666669 -2014-11-17 16:00:00,0.0,1001.501333,5.067,99.71666667,9.829166667,1.23675,237.68781916666663 -2014-11-17 17:00:00,0.0,1001.513167,0.008916667,100.0,8.91,0.36908333299999996,237.6898858333333 -2014-11-17 18:00:00,0.0,1001.701333,0.0,100.0,8.575,0.382166667,237.6922691666667 -2014-11-17 19:00:00,0.0,1001.9561669999999,0.0,98.075,8.69,1.45225,237.6954025 -2014-11-17 20:00:00,0.0,1002.3215,0.0,99.06666667,8.455,0.293,237.69675249999997 -2014-11-17 21:00:00,0.0,1002.451333,0.0,100.0,7.9450833329999995,0.08033333299999999,237.69915249999997 -2014-11-17 22:00:00,0.0,1002.5,0.0,100.0,7.996083333,0.233916667,237.7018525 -2014-11-17 23:00:00,0.0,1002.622833,0.0,100.0,8.2825,0.42008333299999995,237.7039358333333 -2014-11-18 00:00:00,0.0,1002.598667,0.0,99.33333333,8.145,1.061166667,237.7049525 -2014-11-18 01:00:00,0.0,1002.414,0.0,97.44166667,8.143333333,1.123416667,237.70768583333333 -2014-11-18 02:00:00,0.0,1002.3610000000001,0.0,97.2,8.021166667000001,1.053,237.70938583333336 -2014-11-18 03:00:00,0.0,1002.511833,0.0,98.975,7.91225,0.960583333,237.71075249999998 -2014-11-18 04:00:00,0.0,1002.1771669999999,0.0,100.0,7.875666667000001,1.179083333,237.71281916666666 -2014-11-18 05:00:00,0.0,1002.363167,0.0,99.925,7.8935,1.268833333,237.71450249999998 -2014-11-18 06:00:00,0.0,1002.493,0.0,99.975,7.8660000000000005,1.170083333,237.7166025 -2014-11-18 07:00:00,0.0,1002.506167,0.178916667,100.0,8.120666667,1.591,237.71868583333332 -2014-11-18 08:00:00,0.0,1002.809667,6.841583332999999,99.975,8.200833333,1.670166667,237.71968583333333 -2014-11-18 09:00:00,0.0,1003.1978330000001,19.31333333,99.875,8.460833333,1.7888333330000001,237.72140249999998 -2014-11-18 10:00:00,0.0,1003.358333,20.21166667,100.0,8.586666667000001,1.6764166669999998,237.72311916666663 -2014-11-18 11:00:00,0.0,1003.207,33.64916667,99.65833333,8.699166667,2.392583333,237.7244525 -2014-11-18 12:00:00,2.8498829519999997,1003.045167,23.66166667,100.0,8.608333333,2.35025,237.72480249999998 -2014-11-18 13:00:00,0.0,1003.179833,25.09666667,99.51666667,8.8075,2.31775,237.72755249999997 -2014-11-18 14:00:00,0.0,1003.281167,17.07333333,98.48333333,8.869166667,2.082583333,237.72855249999998 -2014-11-18 15:00:00,15.33226786,1003.358333,8.864333333,98.875,8.6125,2.076916667,237.72995249999997 -2014-11-18 16:00:00,19.75147817,1003.674167,1.168666667,100.0,8.245833333,1.4990833330000002,237.7292525 -2014-11-18 17:00:00,18.67781568,1004.056167,0.0,100.0,8.042666667,1.107083333,237.7299525 -2014-11-18 18:00:00,31.31596006,1004.545667,0.0,100.0,7.930916667000001,1.5855,237.72788583333332 -2014-11-18 19:00:00,25.23080328,1005.115833,0.0,100.0,7.702833332999999,1.42325,237.72208583333335 -2014-11-18 20:00:00,22.860135600000003,1005.5575,0.0,100.0,7.523916667000001,1.5475833330000002,237.71041916666664 -2014-11-18 21:00:00,5.426725032,1006.079,0.0,100.0,7.401166667000001,1.2595,237.69433583333333 -2014-11-18 22:00:00,2.75423424,1006.4895,0.0,100.0,7.304416667000001,1.234,237.67651916666662 -2014-11-18 23:00:00,8.257623264,1006.856167,0.0,100.0,7.31125,1.37975,237.66146916666665 -2014-11-19 00:00:00,5.397994944,1007.1395,0.0,100.0,7.238166667000001,1.278666667,237.65221916666667 -2014-11-19 01:00:00,2.768150472,1007.4825,0.0,100.0,7.223666667000001,1.284583333,237.6477525 -2014-11-19 02:00:00,0.0,1008.0075,0.0,100.0,7.200083332999999,1.659416667,237.64398583333332 -2014-11-19 03:00:00,0.0,1008.6255,0.0,100.0,7.122416667,1.06125,237.64191916666667 -2014-11-19 04:00:00,0.0,1009.240833,0.0,100.0,7.090916667,1.15225,237.64125250000004 -2014-11-19 05:00:00,0.0,1009.8886669999999,0.0,100.0,6.994083333,0.974833333,237.6422525 -2014-11-19 06:00:00,0.0,1010.7435,0.0,100.0,7.038583332999999,1.118916667,237.64400249999997 -2014-11-19 07:00:00,0.0,1011.7698330000001,0.16899999999999998,100.0,7.129833333,0.909666667,237.64568583333332 -2014-11-19 08:00:00,0.0,1012.576833,7.225333332999999,100.0,7.065833333,0.79975,237.64810249999996 -2014-11-19 09:00:00,0.0,1013.5136669999999,26.6675,100.0,7.229333333,0.7659999999999999,237.65086916666667 -2014-11-19 10:00:00,0.0,1014.460167,45.44416667,97.35,7.5775,0.854166667,237.6532525 -2014-11-19 11:00:00,0.0,1014.934667,32.81166667,97.8,7.715583333,0.509416667,237.65633583333332 -2014-11-19 12:00:00,0.0,1015.2395,50.65,96.6,7.928666667000001,0.344416667,237.65873583333328 -2014-11-19 13:00:00,0.0,1015.622833,64.83583333,95.70833333,8.245,0.2425,237.66075249999997 -2014-11-19 14:00:00,0.0,1016.260167,52.00583333,95.675,8.500833333,0.147333333,237.66418583333336 -2014-11-19 15:00:00,0.0,1016.686,26.645,97.61666667,8.394166667,0.304333333,237.66693583333333 -2014-11-19 16:00:00,0.0,1017.3255,1.8283333330000002,99.30833333,8.113416667000001,0.194083333,237.6693025 -2014-11-19 17:00:00,2.4050227680000003,1017.797833,0.0,100.0,7.8499166670000005,0.07025,237.6717525 -2014-11-19 18:00:00,2.4050227680000003,1018.031167,0.0,100.0,7.441416667,0.313833333,237.67381916666662 -2014-11-19 19:00:00,0.0,1018.565833,0.0,100.0,7.142833333,0.10183333300000001,237.67655249999996 -2014-11-19 20:00:00,0.0,1019.092167,0.0,100.0,7.013,0.08791666699999999,237.67891916666667 -2014-11-19 21:00:00,0.0,1019.506167,0.0,100.0,6.88525,0.1155,237.6803025 -2014-11-19 22:00:00,0.0,1020.279,0.0,100.0,6.80075,0.025666667,237.6826858333333 -2014-11-19 23:00:00,0.0,1020.379833,0.0,100.0,6.85925,0.0,237.68473583333332 -2014-11-20 00:00:00,0.0,1020.420167,0.0,100.0,6.778666667,0.019333333,237.68678583333335 -2014-11-20 01:00:00,0.0,1020.383333,0.0,100.0,6.435416667,0.11175,237.6885025 -2014-11-20 02:00:00,0.0,1020.6825,0.0,100.0,5.357916667,0.0,237.69021916666665 -2014-11-20 03:00:00,0.0,1020.8965,0.0,100.0,5.1955,0.043,237.69260250000002 -2014-11-20 04:00:00,0.0,1020.916667,0.0,100.0,5.691416667,0.001583333,237.69470249999998 -2014-11-20 05:00:00,0.0,1020.924167,0.0,100.0,5.8615,0.08675,237.6967525 -2014-11-20 06:00:00,0.0,1021.413167,0.0,100.0,6.02425,0.16675,237.69915249999997 -2014-11-20 07:00:00,0.0,1021.541667,0.30425,100.0,6.23175,0.039,237.70118583333337 -2014-11-20 08:00:00,0.0,1021.959667,8.195416667,100.0,6.459166667000001,0.078166667,237.7032525 -2014-11-20 09:00:00,0.0,1022.0325,26.1725,100.0,6.57925,0.7214166670000001,237.70561916666665 -2014-11-20 10:00:00,0.0,1022.188167,44.96916667,97.275,6.889666667,0.9865,237.70700249999996 -2014-11-20 11:00:00,0.0,1022.1785,69.90833333,92.225,7.5625,1.021833333,237.7083858333333 -2014-11-20 12:00:00,0.0,1021.9675,93.1175,88.775,7.9378333329999995,0.968666667,237.70938583333336 -2014-11-20 13:00:00,0.0,1021.600833,84.81,87.25833333,8.247166667,0.7935,237.71040250000001 -2014-11-20 14:00:00,0.0,1021.445167,52.31,88.65833333,8.078583333,0.916166667,237.71248583333332 -2014-11-20 15:00:00,0.0,1021.182,26.70416667,91.7,7.57425,1.2944166670000001,237.7134858333333 -2014-11-20 16:00:00,0.0,1020.9285,4.708583333,94.31666667,7.0795,1.4644166669999998,237.7148525 -2014-11-20 17:00:00,0.0,1020.954833,0.0,96.48333333,6.5665,1.051916667,237.71625249999997 -2014-11-20 18:00:00,0.0,1021.181167,0.0,97.45833333,6.402,0.321083333,237.7180025 -2014-11-20 19:00:00,0.0,1021.266667,0.0,98.23333333,6.309083332999999,0.195333333,237.71968583333333 -2014-11-20 20:00:00,0.0,1021.333333,0.0,98.91666667,6.261416667000001,0.33399999999999996,237.7203525 -2014-11-20 21:00:00,0.0,1021.351333,0.0,100.0,6.261916667,0.41508333299999994,237.7224525 -2014-11-20 22:00:00,0.0,1021.415333,0.0,100.0,6.2808333329999995,0.34416666700000004,237.72345249999998 -2014-11-20 23:00:00,0.0,1020.946,0.0,99.98333333,4.71475,0.39175,237.7251525 -2014-11-21 00:00:00,0.0,1020.583333,0.0,100.0,2.5943333330000002,0.042166667000000005,237.7262025 -2014-11-21 01:00:00,0.0,1020.462667,0.0,100.0,3.587916667,0.076,237.72688583333334 -2014-11-21 02:00:00,0.0,1020.198667,0.0,100.0,4.158166667,0.321,237.72855249999998 -2014-11-21 03:00:00,0.0,1019.977167,0.0,100.0,3.54975,0.045166667,237.72890249999998 -2014-11-21 04:00:00,0.0,1019.5355,0.0,100.0,2.25875,0.010166666999999999,237.7306525 -2014-11-21 05:00:00,0.0,1019.148667,0.0,100.0,2.72275,0.0,237.7326525 -2014-11-21 06:00:00,0.0,1018.9188330000001,0.0,100.0,3.3658333330000003,0.005166667,237.73266916666668 -2014-11-21 07:00:00,0.0,1018.793,0.70175,100.0,3.617916667,0.0,237.73370250000002 -2014-11-21 08:00:00,0.0,1018.840333,17.820999999999998,100.0,2.956833333,0.000666667,237.73475249999998 -2014-11-21 09:00:00,0.0,1018.884667,46.53583333,100.0,4.592166667,0.02975,237.73541916666667 -2014-11-21 10:00:00,0.0,1018.8855,140.9666667,100.0,7.30125,0.5395,237.73641916666665 -2014-11-21 11:00:00,0.0,1018.5521669999999,146.4,91.70833333,8.203416667,1.3773333330000002,237.73780249999996 -2014-11-21 12:00:00,0.0,1018.100833,172.725,82.43333333,8.531666667,1.7336666669999998,237.73815249999996 -2014-11-21 13:00:00,0.0,1017.6675,140.7333333,78.7175,8.385,1.781833333,237.73885249999998 -2014-11-21 14:00:00,0.0,1017.1688330000001,144.8916667,75.99916667,8.570833333,1.32675,237.7399025 -2014-11-21 15:00:00,0.0,1016.768833,72.02083333,79.41666667,8.301083333,1.309833333,237.74095250000002 -2014-11-21 16:00:00,0.0,1016.477167,6.0645,96.41666667,6.38675,0.35575,237.74228583333334 -2014-11-21 17:00:00,0.0,1016.5583330000001,0.01175,100.0,3.06,0.093166667,237.74365249999997 -2014-11-21 18:00:00,0.0,1016.473667,0.0,100.0,1.277333333,0.10383333300000001,237.74538583333333 -2014-11-21 19:00:00,0.0,1016.3895,0.0,100.0,0.5505,0.004666667,237.74671916666662 -2014-11-21 20:00:00,0.0,1016.375,0.0,100.0,0.07475,0.025,237.74705249999997 -2014-11-21 21:00:00,0.0,1016.533333,0.0,100.0,-0.21991666699999998,0.00025,237.7484525 -2014-11-21 22:00:00,0.0,1016.541667,0.0,100.0,-0.30975,0.0,237.7491525 -2014-11-21 23:00:00,0.0,1016.447333,0.0,100.0,-0.38725,0.0,237.74948583333332 -2014-11-22 00:00:00,0.0,1016.027167,0.0,100.0,-0.481333333,0.0,237.75048583333333 -2014-11-22 01:00:00,0.0,1015.748667,0.0,100.0,-0.5598333329999999,0.002416667,237.75048583333333 -2014-11-22 02:00:00,0.0,1015.777167,0.0,100.0,-0.61475,0.004666667,237.7515025 -2014-11-22 03:00:00,0.0,1015.5715,0.0,100.0,-0.75225,0.0,237.7515025 -2014-11-22 04:00:00,0.0,1015.616667,0.0,100.0,-0.9990000000000001,0.0,237.75358583333332 -2014-11-22 05:00:00,0.0,1015.751333,0.0,100.0,-1.06675,0.0,237.75425249999998 -2014-11-22 06:00:00,0.0,1015.784667,0.0,100.0,-1.18525,0.0,237.7549191666667 -2014-11-22 07:00:00,0.0,1015.825,0.551416667,100.0,-1.180166667,0.0016666670000000001,237.7559525 -2014-11-22 08:00:00,0.0,1016.3505,10.50958333,100.0,-0.767333333,0.12925,237.75733583333331 -2014-11-22 09:00:00,0.0,1016.5285,60.95333333,100.0,0.48125,0.011083333,237.75768583333334 -2014-11-22 10:00:00,2.3987510640000003,1016.8185,101.7075,100.0,1.79425,0.10166666699999999,237.75801916666663 -2014-11-22 11:00:00,0.0,1017.005667,69.94333333,100.0,3.4875,1.101083333,237.75935249999998 -2014-11-22 12:00:00,0.0,1016.553,88.85166667,99.20833333,5.258416667,1.626333333,237.7607525 -2014-11-22 13:00:00,0.0,1016.065333,168.69166669999998,92.81666667,6.981583333,1.3859166669999998,237.7614525 -2014-11-22 14:00:00,0.0,1015.995167,96.04,91.925,7.092416667,1.462166667,237.76180250000002 -2014-11-22 15:00:00,0.0,1016.013167,47.3825,94.5,6.415916667,1.037666667,237.76250249999998 -2014-11-22 16:00:00,0.0,1016.083333,8.866416667000001,98.29166667,5.715333332999999,0.7220833329999999,237.76388583333335 -2014-11-22 17:00:00,0.0,1016.176333,0.006583333,100.0,4.658416667,0.554416667,237.7645525 -2014-11-22 18:00:00,0.0,1016.115333,0.0,100.0,3.479083333,0.15833333300000002,237.76523583333332 -2014-11-22 19:00:00,0.0,1016.068,0.0,100.0,2.132916667,0.018333333,237.76590249999995 -2014-11-22 20:00:00,0.0,1016.470667,0.0,100.0,3.216416667,0.095666667,237.76765249999997 -2014-11-22 21:00:00,0.0,1017.065833,0.0,100.0,4.784833333,0.77425,237.7676358333333 -2014-11-22 22:00:00,0.0,1017.057,0.0,100.0,5.0095,0.939666667,237.76831916666663 -2014-11-22 23:00:00,0.0,1017.091667,0.0,100.0,4.81275,1.45425,237.76831916666666 -2014-11-23 00:00:00,0.0,1017.143,0.0,100.0,4.593833333,1.3998333330000001,237.76965249999998 -2014-11-23 01:00:00,0.0,1017.065333,0.0,100.0,4.553333333,1.0716666670000001,237.77035249999997 -2014-11-23 02:00:00,0.0,1017.158333,0.0,100.0,4.305833333,0.604166667,237.77140250000002 -2014-11-23 03:00:00,0.0,1017.008333,0.0,100.0,3.7206666669999997,0.262916667,237.77175250000002 -2014-11-23 04:00:00,0.0,1016.961833,0.0,100.0,3.8605,0.232583333,237.77241916666665 -2014-11-23 05:00:00,0.0,1016.982,0.0,100.0,4.023666667,0.43075,237.7730858333333 -2014-11-23 06:00:00,0.0,1016.8035,0.0,100.0,4.0625,1.058333333,237.77411916666665 -2014-11-23 07:00:00,0.0,1016.770667,0.311833333,100.0,3.753666667,1.12925,237.77445249999997 -2014-11-23 08:00:00,0.0,1017.266667,10.21141667,100.0,3.675416667,0.9581666670000001,237.77480249999996 -2014-11-23 09:00:00,0.0,1017.6289999999999,44.68583333,100.0,4.247833333,0.8856666670000001,237.77618583333333 -2014-11-23 10:00:00,0.0,1017.6355,104.3075,100.0,5.498833332999999,1.293166667,237.77585249999996 -2014-11-23 11:00:00,0.0,1017.402167,155.3416667,95.04166667,7.630666667000001,1.734,237.7761858333333 -2014-11-23 12:00:00,0.0,1016.718333,189.0333333,88.36666667,8.765833333,1.714083333,237.7761858333333 -2014-11-23 13:00:00,0.0,1016.032833,168.6583333,85.975,9.254166667,1.8180833330000001,237.77618583333333 -2014-11-23 14:00:00,0.0,1015.3175,120.225,86.05,9.424166667,1.3614166669999999,237.7771858333333 -2014-11-23 15:00:00,0.0,1014.854333,61.17333333,87.40833333,8.926666667000001,1.1295,237.7771858333333 -2014-11-23 16:00:00,0.0,1014.2389999999999,8.933416667000001,94.28333333,7.81825,1.2830000000000001,237.7782025 -2014-11-23 17:00:00,0.0,1013.993833,0.0075,99.45,6.848416667,0.751833333,237.77925249999998 -2014-11-23 18:00:00,0.0,1013.675,0.0,100.0,8.146666667,2.1385,237.7799525 -2014-11-23 19:00:00,0.0,1013.593833,0.0,100.0,7.78225,2.4881666669999998,237.78030249999998 -2014-11-23 20:00:00,0.0,1013.6916669999999,0.0,100.0,7.90275,2.2680000000000002,237.78030249999998 -2014-11-23 21:00:00,0.0,1013.633333,0.0,100.0,8.041083333,2.248583333,237.78170249999997 -2014-11-23 22:00:00,0.0,1013.686,0.0,100.0,7.952916667,2.502166667,237.7820525 -2014-11-23 23:00:00,0.0,1013.911833,0.0,100.0,7.73575,2.4468333330000003,237.78271916666665 -2014-11-24 00:00:00,0.0,1013.958333,0.0,100.0,7.3870000000000005,2.517833333,237.78305249999997 -2014-11-24 01:00:00,0.0,1013.8166669999999,0.0,98.725,7.1725,2.291416667,237.7833858333333 -2014-11-24 02:00:00,0.0,1013.752167,0.0,99.26666667,6.948833333,2.110416667,237.78440249999997 -2014-11-24 03:00:00,0.0,1013.543,0.0,100.0,6.592583332999999,0.47883333299999997,237.7851025 -2014-11-24 04:00:00,0.0,1013.738167,0.0,100.0,6.125583333,0.310666667,237.7851025 -2014-11-24 05:00:00,0.0,1014.4115,0.0,100.0,6.0708333329999995,0.33766666700000003,237.78580250000002 -2014-11-24 06:00:00,0.0,1015.492667,0.0,100.0,6.507083333,0.113416667,237.78648583333333 -2014-11-24 07:00:00,0.0,1016.5219999999999,0.031916667,100.0,6.566916667,0.231333333,237.78781916666665 -2014-11-24 08:00:00,0.0,1017.430333,4.008833333,100.0,6.473916667,0.338416667,237.7881525 -2014-11-24 09:00:00,2.483419608,1018.170667,26.25333333,100.0,6.610583332999999,0.21825,237.7888525 -2014-11-24 10:00:00,0.0,1018.922,48.77916667,100.0,7.0214166670000004,0.176083333,237.79025249999998 -2014-11-24 11:00:00,0.0,1019.4561669999999,83.22916667,98.14166667,7.741416667,0.534083333,237.79058583333332 -2014-11-24 12:00:00,0.0,1019.784667,109.635,95.51666667,8.579166667,0.6781666670000001,237.79091916666664 -2014-11-24 13:00:00,0.0,1019.8,118.19166670000001,89.98333333,9.79,1.7484166669999999,237.7922525 -2014-11-24 14:00:00,0.0,1019.9895,40.105,91.5,9.0475,1.078833333,237.7922525 -2014-11-24 15:00:00,0.0,1020.147833,59.1175,90.56666667,8.1805,0.45583333299999995,237.7933025 -2014-11-24 16:00:00,0.0,1020.5825,5.60375,98.89166667,5.247916667,0.22975,237.7946691666667 -2014-11-24 17:00:00,0.0,1021.027667,0.016416667,100.0,2.790666667,0.32125,237.7953525 -2014-11-24 18:00:00,0.0,1021.258333,0.0,100.0,1.4691666669999999,0.09475,237.79568583333332 -2014-11-24 19:00:00,0.0,1021.484667,0.0,100.0,0.628833333,0.05575,237.79636916666666 -2014-11-24 20:00:00,0.0,1021.794333,0.0,100.0,-0.08641666699999999,0.0385,237.79775249999997 -2014-11-24 21:00:00,0.0,1022.174167,0.0,100.0,-0.434833333,0.08583333300000001,237.79775249999997 -2014-11-24 22:00:00,0.0,1022.45,0.0,100.0,-0.913166667,0.106333333,237.79810249999994 -2014-11-24 23:00:00,0.0,1022.266667,0.0,100.0,-1.22975,0.013833333,237.79945249999994 -2014-11-25 00:00:00,0.0,1022.127167,0.0,100.0,-1.625583333,0.001166667,237.79978583333332 -2014-11-25 01:00:00,0.0,1022.0438330000001,0.0,100.0,-0.9926666670000001,0.033416667000000004,237.80011916666663 -2014-11-25 02:00:00,0.0,1021.8465,0.0,100.0,-0.8685,0.013583333000000001,237.80115249999997 -2014-11-25 03:00:00,0.0,1021.564,0.0,100.0,-1.2511666670000001,0.090833333,237.8008025 -2014-11-25 04:00:00,0.0,1021.575,0.0,100.0,-1.321583333,0.053,237.80255250000002 -2014-11-25 05:00:00,0.0,1021.725,0.0,100.0,-1.389583333,0.16925,237.80220250000002 -2014-11-25 06:00:00,0.0,1021.491667,0.0,100.0,-1.118833333,0.3025,237.80220250000002 -2014-11-25 07:00:00,0.0,1021.463167,0.1855,100.0,-0.94875,0.30575,237.80255250000002 -2014-11-25 08:00:00,0.0,1021.4535,6.846833332999999,100.0,-0.6645,0.643916667,237.80325249999999 -2014-11-25 09:00:00,0.0,1021.408333,35.76,100.0,-0.404916667,1.2429999999999999,237.8032525 -2014-11-25 10:00:00,0.0,1021.373667,67.66333333,100.0,0.230166667,1.208,237.8036025 -2014-11-25 11:00:00,2.6895373439999997,1021.0210000000001,104.70833329999999,100.0,0.884,1.321083333,237.8039525 -2014-11-25 12:00:00,0.0,1020.4126669999999,161.7666667,100.0,1.846416667,0.75175,237.80430249999998 -2014-11-25 13:00:00,0.0,1019.796,178.79166669999998,99.95,3.2375,1.5663333330000002,237.80430249999998 -2014-11-25 14:00:00,0.0,1019.314,135.79166669999998,96.99166667,4.568583333,1.6365833330000001,237.8046525 -2014-11-25 15:00:00,0.0,1018.779333,56.06666667,97.175,4.859583333,1.097166667,237.80498583333335 -2014-11-25 16:00:00,0.0,1018.1675,4.7585,99.90833333,3.102166667,0.130916667,237.80565249999998 -2014-11-25 17:00:00,0.0,1017.936833,0.0,100.0,1.161666667,0.326333333,237.80665249999996 -2014-11-25 18:00:00,0.0,1017.8021669999999,0.0,100.0,0.239833333,0.13625,237.8077025 -2014-11-25 19:00:00,0.0,1017.666667,0.0,100.0,-0.741583333,0.007416666999999999,237.8080525 -2014-11-25 20:00:00,0.0,1017.590333,0.0,100.0,-1.01525,0.0048333329999999996,237.8087525 -2014-11-25 21:00:00,0.0,1017.370167,0.0,100.0,-1.477416667,0.015333333000000001,237.8087525 -2014-11-25 22:00:00,0.0,1017.3,0.0,100.0,-1.8534166669999999,0.007166667,237.80873583333334 -2014-11-25 23:00:00,0.0,1017.193833,0.0,100.0,-2.056666667,0.023916667000000003,237.80908583333334 -2014-11-26 00:00:00,0.0,1016.759167,0.0,100.0,-1.9709999999999999,0.0025833329999999997,237.80941916666666 -2014-11-26 01:00:00,0.0,1016.209167,0.0,100.0,-1.341833333,0.028916667000000004,237.80941916666666 -2014-11-26 02:00:00,0.0,1015.6626669999999,0.0,100.0,-0.44783333299999994,0.400416667,237.80975249999997 -2014-11-26 03:00:00,0.0,1015.075833,0.0,100.0,-0.044333332999999996,0.477916667,237.81008583333332 -2014-11-26 04:00:00,0.0,1014.689,0.0,100.0,0.07400000000000001,0.7080833329999999,237.8107525 -2014-11-26 05:00:00,0.0,1014.416667,0.0,100.0,0.18225,0.268,237.8107525 -2014-11-26 06:00:00,0.0,1014.155667,0.0,100.0,0.0655,0.1495,237.8107525 -2014-11-26 07:00:00,0.0,1013.8785,0.33075,100.0,0.201916667,0.49558333299999996,237.8107525 -2014-11-26 08:00:00,0.0,1013.730667,10.07516667,100.0,0.226916667,0.485333333,237.81110249999998 -2014-11-26 09:00:00,0.0,1013.726333,35.4025,100.0,0.582416667,0.37091666700000003,237.81110249999998 -2014-11-26 10:00:00,2.583300504,1013.6855,48.74833333,100.0,1.394250369,0.7105,237.81180249999997 -2014-11-26 11:00:00,0.0,1013.318833,81.49416667,99.925,2.286,1.219,237.8118025 -2014-11-26 12:00:00,0.0,1012.6815,55.36416667,96.125,3.897916667,1.241583333,237.81180249999997 -2014-11-26 13:00:00,0.0,1012.059167,61.44583333,92.63333333,4.407083333,1.049833333,237.81250249999997 -2014-11-26 14:00:00,0.0,1011.5438330000001,52.395,88.74166667,4.98425,1.339,237.8114525 -2014-11-26 15:00:00,0.0,1011.243833,27.66666667,88.29166667,5.0295,1.32925,237.81110249999998 -2014-11-26 16:00:00,0.0,1010.990333,9.414583333,88.71666667,4.623,1.5788333330000002,237.8128525 -2014-11-26 17:00:00,0.0,1010.836833,0.0,89.55,4.3525,1.341666667,237.8128525 -2014-11-26 18:00:00,0.0,1010.815333,0.0,90.70833333,4.0715,0.6908333329999999,237.81318583333334 -2014-11-26 19:00:00,0.0,1010.758333,0.0,92.98333333,3.843333333,0.36216666700000005,237.81351916666665 -2014-11-26 20:00:00,0.0,1010.477167,0.0,95.16666667,3.620166667,0.11508333300000001,237.81318583333334 -2014-11-26 21:00:00,0.0,1010.189,0.0,96.5,3.488333333,0.111916667,237.81318583333334 -2014-11-26 22:00:00,0.0,1009.948667,0.0,96.70833333,3.4555,0.199333333,237.81351916666665 -2014-11-26 23:00:00,0.0,1009.607,0.0,95.23333333,3.887,0.626416667,237.81418583333334 -2014-11-27 00:00:00,0.0,1009.347333,0.0,93.76666667,3.936416667,0.9540000000000001,237.81451916666666 -2014-11-27 01:00:00,0.0,1008.7446669999999,0.0,94.69166667,3.63575,1.0433333329999999,237.81520250000003 -2014-11-27 02:00:00,0.0,1008.202167,0.0,95.08333333,3.44625,0.699416667,237.8148525 -2014-11-27 03:00:00,0.0,1007.773167,0.0,96.1,2.907083333,0.21891666699999998,237.81451916666666 -2014-11-27 04:00:00,0.0,1007.388167,0.0,94.59166667,3.114666667,0.43291666700000003,237.8148525 -2014-11-27 05:00:00,0.0,1007.084167,0.0,93.76666667,3.068666667,0.327416667,237.8155525 -2014-11-27 06:00:00,0.0,1006.711833,0.0,94.56666667,2.99575,0.602833333,237.8159025 -2014-11-27 07:00:00,0.0,1006.707,0.319416667,93.74166667,3.104333333,0.8470833329999999,237.81520249999997 -2014-11-27 08:00:00,0.0,1006.5728330000001,14.62191667,93.94166667,3.303,1.037416667,237.8159025 -2014-11-27 09:00:00,0.0,1006.689,42.1825,92.70833333,3.679583333,1.2685,237.8162525 -2014-11-27 10:00:00,0.0,1006.398667,66.04416667,91.06666667,4.1508333330000005,1.4178333330000001,237.81695249999999 -2014-11-27 11:00:00,0.0,1005.946,137.875,88.71666667,4.916,1.6513333330000002,237.81695249999999 -2014-11-27 12:00:00,0.0,1005.477167,152.8833333,87.28333333,5.617166667,1.9184166669999998,237.81695249999999 -2014-11-27 13:00:00,0.0,1005.087667,90.5725,87.725,5.7745,1.80975,237.81660249999996 -2014-11-27 14:00:00,0.0,1004.590333,68.33,87.74166667,5.958583332999999,1.609,237.81728583333333 -2014-11-27 15:00:00,0.0,1004.491667,30.5275,88.28333333,5.642583332999999,1.295166667,237.81761916666665 -2014-11-27 16:00:00,0.0,1004.701333,2.1270833330000003,90.03333333,5.177333333,0.684,237.81795250000002 -2014-11-27 17:00:00,2.444019024,1004.888167,0.0,96.98333333,4.75725,0.810333333,237.81861916666665 -2014-11-27 18:00:00,5.1770027039999995,1004.826333,0.0,99.60833333,4.397583333,0.754416667,237.8189525 -2014-11-27 19:00:00,7.378009464,1005.0583330000001,0.0,100.0,4.234916667,0.46875,237.81828583333333 -2014-11-27 20:00:00,2.4471118080000003,1005.1965,0.0,100.0,4.0679166669999995,0.259333333,237.8189525 -2014-11-27 21:00:00,0.0,1005.1035,0.0,100.0,3.603583333,0.265833333,237.8196525 -2014-11-27 22:00:00,2.4904171440000002,1005.040333,0.0,100.0,2.556916667,0.20275,237.8196525 -2014-11-27 23:00:00,0.0,1004.9895,0.0,100.0,1.8223333330000002,0.035416667,237.82035249999998 -2014-11-28 00:00:00,0.0,1005.301333,0.0,100.0,1.059083333,0.091666667,237.8200025 -2014-11-28 01:00:00,0.0,1005.1916669999999,0.0,100.0,0.983666667,0.230416667,237.8210358333333 -2014-11-28 02:00:00,0.0,1005.354833,0.0,100.0,0.11666666699999999,0.028833333,237.82105249999998 -2014-11-28 03:00:00,0.0,1005.484667,0.0,100.0,0.030083332999999997,0.132166667,237.82205249999996 -2014-11-28 04:00:00,0.0,1005.824167,0.0,100.0,1.43575,0.077,237.82171916666664 -2014-11-28 05:00:00,0.0,1005.882,0.0,100.0,3.327666667,1.001833333,237.8223858333333 -2014-11-28 06:00:00,0.0,1006.1978330000001,0.0,100.0,3.787666667,1.1301666670000001,237.8230525 -2014-11-28 07:00:00,0.0,1006.4789999999999,0.1085,100.0,3.8195,1.1410833329999999,237.82306916666664 -2014-11-28 08:00:00,0.0,1006.784667,6.635833333,100.0,3.614833333,1.599083333,237.82341916666667 -2014-11-28 09:00:00,0.0,1007.1978330000001,19.12416667,100.0,3.742166667,1.3385833329999999,237.82480250000003 -2014-11-28 10:00:00,0.0,1007.815833,29.98,99.99166667,3.643416667,2.121833333,237.82480250000003 -2014-11-28 11:00:00,0.0,1007.459167,47.02,99.95,3.907,2.898,237.82515250000003 -2014-11-28 12:00:00,0.0,1007.3535,45.7675,98.93333333,4.399083333,1.642333333,237.8255025 -2014-11-28 13:00:00,0.0,1006.8925,33.88083333,98.49166667,4.251416667,3.1389166669999997,237.82515250000003 -2014-11-28 14:00:00,0.0,1006.834667,24.57,98.44166667,4.325583333,2.86675,237.82655249999996 -2014-11-28 15:00:00,0.0,1006.981167,14.25158333,97.98333333,4.352416667,3.2345,237.82655249999996 -2014-11-28 16:00:00,0.0,1007.394333,1.960166667,98.09166667,4.17525,2.991583333,237.8272525 -2014-11-28 17:00:00,0.0,1007.856167,0.0,98.3,4.00875,3.1180000000000003,237.8275858333333 -2014-11-28 18:00:00,0.0,1008.006167,0.0,98.625,3.8231666669999997,3.222333333,237.8275858333333 -2014-11-28 19:00:00,0.0,1008.311,0.0,98.03333333,3.682083333,3.339833333,237.82791916666667 -2014-11-28 20:00:00,0.0,1008.6645,0.0,97.98333333,3.543916667,3.0810000000000004,237.82891916666665 -2014-11-28 21:00:00,0.0,1009.044333,0.0,98.325,3.403916667,2.975666667,237.82925249999997 -2014-11-28 22:00:00,0.0,1009.359667,0.0,98.51666667,3.313333333,2.930416667,237.82925249999997 -2014-11-28 23:00:00,0.0,1009.616667,0.0,98.55,3.201916667,2.899916667,237.82995249999996 -2014-11-29 00:00:00,0.0,1009.622833,0.0,98.75,2.99525,3.47625,237.83065249999996 -2014-11-29 01:00:00,0.0,1009.8285,0.0,99.14166667,2.811416667,3.004833333,237.83030250000002 -2014-11-29 02:00:00,0.0,1009.9145,0.0,98.8,2.746416667,3.114666667,237.83100249999998 -2014-11-29 03:00:00,0.0,1010.023667,0.0,98.64166667,2.67275,3.008833333,237.83201916666667 -2014-11-29 04:00:00,0.0,1009.9,0.0,98.65833333,2.718666667,2.610833333,237.83268583333333 -2014-11-29 05:00:00,0.0,1009.993,0.0,98.33333333,2.6645,2.764916667,237.83301916666667 -2014-11-29 06:00:00,0.0,1010.177667,0.0,98.6,2.5771666669999997,3.045833333,237.83268583333336 -2014-11-29 07:00:00,0.0,1010.6075,0.039,98.73333333,2.595583333,2.6574166669999997,237.83301916666667 -2014-11-29 08:00:00,0.0,1011.029833,3.134416667,98.54166667,2.6541666669999997,2.40725,237.8337025 -2014-11-29 09:00:00,0.0,1011.369333,11.95166667,98.4,2.776416667,2.540833333,237.8344025 -2014-11-29 10:00:00,0.0,1011.629833,22.36916667,97.54166667,3.0484166669999997,2.1781666669999997,237.8354525 -2014-11-29 11:00:00,0.0,1011.277167,30.47166667,96.10833333,3.3425,1.42175,237.8344025 -2014-11-29 12:00:00,0.0,1010.950833,33.2575,95.51666667,3.5011666669999997,1.5250833330000002,237.8347525 -2014-11-29 13:00:00,0.0,1010.502167,30.82666667,95.23333333,3.573416667,1.767916667,237.8354525 -2014-11-29 14:00:00,0.0,1010.576333,20.075,94.84166667,3.599166667,1.663666667,237.8354525 -2014-11-29 15:00:00,0.0,1010.598667,9.657666667,95.2,3.681333333,1.263583333,237.83611916666666 -2014-11-29 16:00:00,0.0,1010.518,1.6873333330000002,95.025,3.592333333,1.35825,237.83578583333335 -2014-11-29 17:00:00,0.0,1010.6569999999999,0.0,95.74166667,3.465,1.035,237.83611916666666 -2014-11-29 18:00:00,0.0,1010.606167,0.0,96.05,3.4283333330000003,1.138833333,237.83711916666664 -2014-11-29 19:00:00,0.0,1010.9478330000001,0.0,95.975,3.3256666669999997,1.077,237.83745249999996 -2014-11-29 20:00:00,0.0,1011.091667,0.0,95.65833333,3.22625,1.331083333,237.83920250000003 -2014-11-29 21:00:00,0.0,1010.845167,0.0,95.98333333,3.201333333,1.44675,237.83815249999998 -2014-11-29 22:00:00,0.0,1010.6855,0.0,96.33333333,3.129666667,1.1475,237.83920250000003 -2014-11-29 23:00:00,0.0,1010.575,0.0,96.6,3.147416667,1.2844166670000001,237.8388525 -2014-11-30 00:00:00,0.0,1010.402167,0.0,96.66666667,3.19875,1.186416667,237.83920250000003 -2014-11-30 01:00:00,0.0,1009.984167,0.0,96.925,3.198416667,1.390166667,237.8395525 -2014-11-30 02:00:00,0.0,1009.640333,0.0,97.35833333,3.163333333,1.305583333,237.83885250000003 -2014-11-30 03:00:00,0.0,1009.511833,0.0,97.79166667,3.0306666669999998,1.162833333,237.84021916666666 -2014-11-30 04:00:00,0.0,1009.2855,0.0,98.23333333,2.848583333,1.347833333,237.8395525 -2014-11-30 05:00:00,0.0,1008.990333,0.0,98.78333333,2.715666667,1.544,237.83988583333334 -2014-11-30 06:00:00,0.0,1008.8355,0.0,99.15,2.65,1.427583333,237.83988583333337 -2014-11-30 07:00:00,0.0,1008.940833,0.054916667,99.3,2.599916667,1.4104166669999998,237.84021916666666 -2014-11-30 08:00:00,0.0,1009.2715,2.81125,99.48333333,2.624583333,1.1763333329999999,237.84088583333335 -2014-11-30 09:00:00,0.0,1009.3166669999999,11.11541667,99.36666667,2.628916667,1.4106666669999999,237.8415525 -2014-11-30 10:00:00,0.0,1009.193833,18.50416667,99.5,2.6476666669999998,1.8313333330000001,237.8415525 -2014-11-30 11:00:00,0.0,1008.830667,23.34166667,99.56666667,2.7334166669999997,1.5745,237.84190249999997 -2014-11-30 12:00:00,0.0,1008.3613330000001,24.70583333,99.36666667,2.74725,1.7370833330000002,237.84190250000003 -2014-11-30 13:00:00,0.0,1007.559167,22.87333333,99.24166667,2.750833333,1.84325,237.8415525 -2014-11-30 14:00:00,0.0,1006.950833,14.61166667,99.50833333,2.8370833330000003,1.2995,237.8422525 -2014-11-30 15:00:00,0.0,1006.686833,6.3515,99.80833333,2.7755,1.722833333,237.84225249999997 -2014-11-30 16:00:00,0.0,1006.6855,0.818583333,99.99166667,2.719166667,1.296583333,237.84190249999997 -2014-11-30 17:00:00,0.0,1006.488167,0.0,100.0,2.62275,1.7795833330000002,237.84330249999996 -2014-11-30 18:00:00,0.0,1006.651333,0.0,100.0,2.55475,1.4124166669999998,237.84330249999996 -2014-11-30 19:00:00,0.0,1006.573667,0.0,100.0,2.526,1.384333333,237.8436525 -2014-11-30 20:00:00,0.0,1006.247333,0.0,100.0,2.463916667,1.51825,237.84330249999996 -2014-11-30 21:00:00,0.0,1005.909167,0.0,100.0,2.535083333,1.6660833330000002,237.8436525 -2014-11-30 22:00:00,0.0,1005.65,0.0,100.0,2.6095,1.531833333,237.8436525 -2014-11-30 23:00:00,0.0,1005.540333,0.0,100.0,2.6124166669999997,2.025666667,237.8440025 -2014-01-12 00:00:00,0.0,1005.368,0.0,100.0,2.527416667,2.138083333,238.05374633333335 -2014-01-12 01:00:00,0.0,1005.275833,0.0,100.0,2.57625,2.193833333,238.053104 -2014-01-12 02:00:00,0.0,1005.070167,0.0,100.0,2.7005,2.030333333,238.05247733333331 -2014-01-12 03:00:00,0.0,1004.9355,0.0,100.0,3.08075,2.103166667,238.05183499999998 -2014-01-12 04:00:00,0.0,1004.623667,0.0,100.0,3.124083333,3.3875833330000003,238.05117699999997 -2014-01-12 05:00:00,4.174873968,1004.393,0.0,99.48333333,2.91675,4.2265,238.05018999999996 -2014-01-12 06:00:00,0.0,1004.648667,0.0,97.29166667,2.78825,4.119833333,238.05018999999996 -2014-01-12 07:00:00,0.0,1004.576333,0.010333333,97.45,2.397416667,4.41425,238.04925000000003 -2014-01-12 08:00:00,0.0,1005.155333,2.012166667,97.7,2.078833333,4.390083333,238.04831000000004 -2014-01-12 09:00:00,0.0,1005.3535,11.06408333,97.75833333,1.87625,4.527,238.04765200000006 -2014-01-12 10:00:00,0.0,1005.734667,22.86083333,98.2,1.7033333330000002,4.65975,238.04765200000006 -2014-01-12 11:00:00,0.0,1005.725,27.16333333,97.73333333,1.8295,4.850166667,238.046665 -2014-01-12 12:00:00,0.0,1005.161333,23.01666667,97.69166667,1.90725,5.000666667,238.04798100000002 -2014-01-12 13:00:00,0.0,1004.858333,28.7325,94.16666667,1.7329166669999998,5.553,238.04699399999996 -2014-01-12 14:00:00,0.0,1004.7035,24.29916667,92.80833333,1.6525833330000002,5.178583333,238.047323 -2014-01-12 15:00:00,0.0,1004.781167,8.6275,93.21666667,1.16775,4.418083333,238.046665 -2014-01-12 16:00:00,0.0,1005.079833,1.0865,93.46666667,0.809333333,4.7838333330000005,238.047323 -2014-01-12 17:00:00,0.0,1005.3755,0.0,93.96666667,0.851666667,4.712416667,238.04633599999997 -2014-01-12 18:00:00,0.0,1005.8105,0.0,94.45833333,0.54475,4.46,238.04570933333335 -2014-01-12 19:00:00,0.0,1005.920667,0.0,94.7,0.4985,3.772,238.04539599999998 -2014-01-12 20:00:00,0.0,1006.0465,0.0,95.81666667,0.46425,4.119083333,238.04508266666667 -2014-01-12 21:00:00,0.0,1006.086833,0.0,95.55,0.230833333,3.99075,238.045396 -2014-01-12 22:00:00,0.0,1006.041667,0.0,98.59166667,-0.12008333300000001,3.400583333,238.04602266666666 -2014-01-12 23:00:00,0.0,1005.940333,0.0,97.025,-0.08866666699999999,2.84775,238.04539599999998 -2014-02-12 00:00:00,0.0,1006.126333,0.0,95.96666667,-0.02575,2.69725,238.03450658333335 -2014-02-12 01:00:00,0.0,1006.116667,0.0,95.39166667,-0.10116666699999999,2.592916667,238.03501414999997 -2014-02-12 02:00:00,0.0,1006.288167,0.0,94.79166667,-0.30475,2.257833333,238.03476036666666 -2014-02-12 03:00:00,0.0,1006.320167,0.0,94.74166667,-0.3985,1.951583333,238.03450658333335 -2014-02-12 04:00:00,0.0,1006.208333,0.0,95.125,-0.5345833329999999,1.65325,238.03426488333335 -2014-02-12 05:00:00,0.0,1006.281167,0.0,94.95,-0.660333333,2.471666667,238.03401109999996 -2014-02-12 06:00:00,0.0,1006.325,0.0,95.00833333,-0.654333333,2.255666667,238.03401109999996 -2014-02-12 07:00:00,0.0,1006.45,0.04175,94.50833333,-0.64875,1.705,238.0330443 -2014-02-12 08:00:00,0.0,1006.863667,1.9395,94.38333333,-0.674083333,2.036916667,238.033286 -2014-02-12 09:00:00,0.0,1007.1916669999999,15.91241667,94.125,-0.6296666670000001,2.0815,238.033286 -2014-02-12 10:00:00,0.0,1007.470667,22.4575,93.85833333,-0.494333333,2.035083333,238.03376939999998 -2014-02-12 11:00:00,0.0,1007.6605,35.23833333,93.025,-0.36308333299999995,2.1935,238.0330443 -2014-02-12 12:00:00,0.0,1007.4271669999999,43.1075,92.24166667,-0.1585,2.489833333,238.03304430000003 -2014-02-12 13:00:00,0.0,1007.281167,42.6475,91.85,0.061583333,2.064666667,238.0335277 -2014-02-12 14:00:00,0.0,1007.4895,26.69333333,91.825,0.1385,2.271,238.03450658333335 -2014-02-12 15:00:00,0.0,1007.919333,8.824916667,92.15,0.15741666699999998,2.3538333330000003,238.03450658333335 -2014-02-12 16:00:00,0.0,1008.177667,0.980166667,92.05833333,0.18591666699999998,2.293583333,238.03425280000002 -2014-02-12 17:00:00,0.0,1008.654833,0.0,97.01666667,-0.014583333,2.11625,238.03450658333335 -2014-02-12 18:00:00,0.0,1008.799167,0.0,93.03333333,0.35958333299999995,2.620666667,238.03450658333335 -2014-02-12 19:00:00,0.0,1009.5039999999999,0.0,91.7,0.290083333,2.4745,238.03425280000002 -2014-02-12 20:00:00,0.0,1010.199167,0.0,91.71666667,0.124916667,2.574416667,238.03450658333335 -2014-02-12 21:00:00,0.0,1010.4645,0.0,92.05,0.210833333,1.988083333,238.03425280000002 -2014-02-12 22:00:00,0.0,1010.747833,0.0,96.16666667,0.040666667000000004,2.326833333,238.03501414999997 -2014-02-12 23:00:00,0.0,1010.954833,0.0,99.98333333,-0.24766666699999998,1.508,238.03526793333333 -2014-03-12 00:00:00,0.0,1011.084667,0.0,98.11666667,-0.15941666699999998,2.25175,237.9985045 -2014-03-12 01:00:00,0.0,1011.166667,0.0,98.85833333,-0.24983333300000002,2.478416667,237.9985045 -2014-03-12 02:00:00,0.0,1011.359667,0.0,99.40833333,-0.26,2.107333333,237.9982507 -2014-03-12 03:00:00,0.0,1011.6145,0.0,97.025,-0.092416667,1.98675,237.9982507 -2014-03-12 04:00:00,0.0,1011.756167,0.0,97.58333333,-0.178083333,2.55725,237.9977431 -2014-03-12 05:00:00,0.0,1011.913167,0.0,99.65,-0.374,1.955,237.99698170000002 -2014-03-12 06:00:00,0.0,1012.043,0.0,100.0,-0.531416667,1.9785,237.99698170000002 -2014-03-12 07:00:00,0.0,1012.402667,0.045083332999999996,99.63333333,-0.42616666700000005,2.2479166669999997,237.99698170000002 -2014-03-12 08:00:00,0.0,1013.163667,3.2289999999999996,97.89166667,-0.251,3.197833333,237.99698170000002 -2014-03-12 09:00:00,0.0,1013.774167,28.7525,96.34166667,-0.203166667,3.341416667,237.99825069999997 -2014-03-12 10:00:00,0.0,1014.256167,48.29333333,95.10833333,-0.091333333,2.8850833330000003,237.9985045 -2014-03-12 11:00:00,0.0,1014.416667,76.50916667,92.01666667,0.060833332999999996,3.3645,237.9985045 -2014-03-12 12:00:00,0.0,1014.193833,100.0583333,90.11666667,0.32708333300000003,3.248416667,237.9985045 -2014-03-12 13:00:00,0.0,1014.176333,74.35833333,90.8,0.60375,2.901916667,237.9985045 -2014-03-12 14:00:00,0.0,1013.948667,35.04583333,92.56666667,0.6805,2.479,237.9985045 -2014-03-12 15:00:00,0.0,1013.882,17.64666667,93.325,0.44933333299999995,2.6235,237.9985045 -2014-03-12 16:00:00,0.0,1014.052667,2.4321666669999997,93.51666667,0.29483333300000003,2.536,237.9985045 -2014-03-12 17:00:00,0.0,1014.1978330000001,0.0,93.55833333,0.11866666699999999,1.92125,237.99774309999998 -2014-03-12 18:00:00,0.0,1014.368833,0.0,93.88333333,0.18641666699999998,2.3816666669999997,237.99698170000002 -2014-03-12 19:00:00,0.0,1014.241667,0.0,95.30833333,0.041416667000000004,1.821666667,237.9955315 -2014-03-12 20:00:00,0.0,1014.3145,0.0,96.2,-0.037666667,1.2685,237.9955315 -2014-03-12 21:00:00,0.0,1014.382,0.0,96.0,-0.012833333,1.243583333,237.9955315 -2014-03-12 22:00:00,0.0,1014.198667,0.0,96.5,-0.05875,1.300916667,237.9950239 -2014-03-12 23:00:00,0.0,1013.968833,0.0,96.79166667,-0.126,1.4918333330000002,237.9945163 -2014-04-12 00:00:00,0.0,1013.718833,0.0,97.16666667,-0.129083333,1.522416667,237.88919919999998 -2014-04-12 01:00:00,0.0,1013.2855,0.0,97.60833333,0.002666667,2.4819166669999997,237.88919919999998 -2014-04-12 02:00:00,0.0,1012.977167,0.0,98.9,-0.058166667000000005,1.999416667,237.88919919999998 -2014-04-12 03:00:00,0.0,1012.693833,0.0,99.95,-0.009166667,1.72775,237.88919919999998 -2014-04-12 04:00:00,0.0,1012.187667,0.0,100.0,0.072833333,1.64625,237.88814650000003 -2014-04-12 05:00:00,0.0,1011.684167,0.0,100.0,0.010166666999999999,1.333916667,237.88919919999998 -2014-04-12 06:00:00,0.0,1011.533333,0.0,100.0,0.11625,1.104083333,237.8884974 -2014-04-12 07:00:00,0.0,1011.486833,0.0,100.0,0.08616666699999999,1.302083333,237.88884829999998 -2014-04-12 08:00:00,0.0,1011.4965,1.9266666669999999,100.0,0.071833333,1.35625,237.88779559999998 -2014-04-12 09:00:00,0.0,1011.416667,12.00958333,100.0,0.077583333,1.461416667,237.88884829999998 -2014-04-12 10:00:00,0.0,1011.3605,23.11333333,100.0,0.1775,1.44275,237.88744469999997 -2014-04-12 11:00:00,0.0,1011.082,27.81083333,100.0,0.33475,1.4989166669999998,237.8884974 -2014-04-12 12:00:00,0.0,1010.995167,27.625,100.0,0.5810833329999999,1.4925,237.8884974 -2014-04-12 13:00:00,0.0,1010.6688330000001,17.5425,100.0,0.705916667,1.69525,237.88884829999998 -2014-04-12 14:00:00,0.0,1010.4069999999999,13.08583333,100.0,0.7915,1.410166667,237.8884974 -2014-04-12 15:00:00,0.0,1010.233333,8.627833333,100.0,0.83025,1.3540833330000002,237.8870938 -2014-04-12 16:00:00,0.0,1010.358333,1.48325,100.0,0.916166667,1.274833333,237.8870938 -2014-04-12 17:00:00,0.0,1010.481167,0.0,100.0,1.042583333,0.710333333,237.8870938 -2014-04-12 18:00:00,0.0,1010.611833,0.0,100.0,1.063166667,1.153916667,237.88472108333335 -2014-04-12 19:00:00,0.0,1010.658333,0.0,100.0,1.128416667,0.676333333,237.8829833 -2014-04-12 20:00:00,0.0,1010.7215,0.0,100.0,1.218833333,0.273083333,237.8829833 -2014-04-12 21:00:00,0.0,1010.9895,0.0,100.0,1.298666667,0.4055,237.8829833 -2014-04-12 22:00:00,0.0,1011.159667,0.0,100.0,1.3675,0.073,237.8829833 -2014-04-12 23:00:00,0.0,1011.3895,0.0,100.0,1.4140833330000002,0.083,237.8829833 -2014-05-12 00:00:00,0.0,1011.475,0.0,100.0,1.4644166669999998,0.033583333,237.8458886 -2014-05-12 01:00:00,0.0,1011.556167,0.0,100.0,1.479416667,0.069,237.8458886 -2014-05-12 02:00:00,0.0,1011.868,0.0,100.0,1.501166667,0.008166666999999999,237.8458886 -2014-05-12 03:00:00,0.0,1011.888167,0.0,100.0,1.5523333330000002,0.013416667,237.8458886 -2014-05-12 04:00:00,0.0,1011.9785,0.0,100.0,1.5799166669999998,0.002,237.8458886 -2014-05-12 05:00:00,0.0,1012.240833,0.0,100.0,1.6128333330000002,0.009416667,237.8458886 -2014-05-12 06:00:00,0.0,1012.6645,0.0,100.0,1.6885833330000002,0.0,237.84488604999999 -2014-05-12 07:00:00,0.0,1012.972833,0.012666667,100.0,1.7783333330000002,0.0095,237.84388349999998 -2014-05-12 08:00:00,0.0,1013.362333,4.37975,100.0,1.8978333330000001,0.04,237.84388349999998 -2014-05-12 09:00:00,0.0,1013.7465,19.95916667,100.0,2.1343333330000003,0.22141666699999998,237.8435326 -2014-05-12 10:00:00,0.0,1013.8965,29.03666667,100.0,2.349166667,0.24525,237.8428308 -2014-05-12 11:00:00,0.0,1013.995167,35.015,100.0,2.575416667,0.335083333,237.84177810000003 -2014-05-12 12:00:00,0.0,1013.875,33.11416667,100.0,2.7824166669999997,0.6955,237.84177810000003 -2014-05-12 13:00:00,0.0,1013.5855,30.89666667,100.0,2.917916667,0.595166667,237.8411097333333 -2014-05-12 14:00:00,0.0,1013.4,20.96916667,100.0,2.971,0.460083333,237.839773 -2014-05-12 15:00:00,0.0,1013.445167,16.10583333,100.0,3.139583333,0.32725,237.839773 -2014-05-12 16:00:00,0.0,1013.6395,1.6869999999999998,100.0,3.195666667,0.202416667,237.839773 -2014-05-12 17:00:00,0.0,1013.688167,0.0,100.0,3.094583333,0.160083333,237.83699923333333 -2014-05-12 18:00:00,0.0,1013.8035,0.0,100.0,3.0025,0.354416667,237.8349774166667 -2014-05-12 19:00:00,0.0,1013.927667,0.0,100.0,2.941333333,0.311083333,237.83975628333334 -2014-05-12 20:00:00,0.0,1014.318,0.0,100.0,2.847416667,0.00525,237.84455186666665 -2014-05-12 21:00:00,0.0,1014.366667,0.0,100.0,2.743083333,0.00925,237.85315719999997 -2014-05-12 22:00:00,0.0,1014.526333,0.0,100.0,2.6488333330000002,0.0,237.85486155 -2014-05-12 23:00:00,0.0,1014.6978330000001,0.0,100.0,2.55725,0.022166667,237.8493808833333 -2014-06-12 00:00:00,0.0,1014.8715,0.0,100.0,2.5495,0.0,238.1539252 -2014-06-12 01:00:00,0.0,1015.026333,0.0,100.0,2.46575,0.0020833329999999997,238.14633913333333 -2014-06-12 02:00:00,0.0,1015.133333,0.0,100.0,2.454583333,0.0365,238.13982248333335 -2014-06-12 03:00:00,0.0,1015.2,0.0,100.0,2.367083333,0.18641666699999998,238.13504361666665 -2014-06-12 04:00:00,0.0,1015.265833,0.0,100.0,2.284416667,0.1445,238.12784188333333 -2014-06-12 05:00:00,0.0,1015.631167,0.0,100.0,2.09275,0.0845,238.12231111666665 -2014-06-12 06:00:00,0.0,1015.9965,0.0,100.0,2.4561666669999997,0.063416667,238.1171646833333 -2014-06-12 07:00:00,0.0,1016.281167,0.017833333,100.0,2.527916667,0.012166666999999999,238.11203491666666 -2014-06-12 08:00:00,0.0,1016.6755,3.225833333,100.0,2.6885,0.07175,238.10690515 -2014-06-12 09:00:00,0.0,1017.277667,12.67883333,100.0,3.106583333,0.15433333300000002,238.10205941666666 -2014-06-12 10:00:00,0.0,1017.6825,28.9125,99.975,3.535,0.18925,238.09622785 -2014-06-12 11:00:00,0.0,1018.043,32.5425,99.48333333,3.94425,0.50825,238.09039628333335 -2014-06-12 12:00:00,0.0,1018.213167,34.38583333,98.55833333,4.297833333,0.981166667,238.08561741666668 -2014-06-12 13:00:00,0.0,1018.240333,39.2475,98.31666667,4.564916667,1.4585833330000002,238.0787164666667 -2014-06-12 14:00:00,0.0,1018.293,46.11916667,97.54166667,4.884083333,1.239083333,238.07392088333336 -2014-06-12 15:00:00,0.0,1018.4478330000001,37.16625,96.83333333,5.152666667,1.4238333330000001,238.06842353333332 -2014-06-12 16:00:00,0.0,1018.576333,2.44475,99.34166667,4.652083333,0.3325,238.06329376666667 -2014-06-12 17:00:00,0.0,1018.679833,0.0,100.0,3.4635833330000003,0.204416667,238.0581306 -2014-06-12 18:00:00,0.0,1018.926333,0.0,100.0,1.761333333,0.15783333300000002,238.05296740000003 -2014-06-12 19:00:00,0.0,1019.097833,0.0,100.0,0.330416667,0.016833333,238.04817181666667 -2014-06-12 20:00:00,0.0,1019.241667,0.0,100.0,-0.582833333,0.12841666699999998,238.04474639999998 -2014-06-12 21:00:00,0.0,1019.443,0.0,100.0,-0.4175,0.03375,238.04028499999995 -2014-06-12 22:00:00,0.0,1019.315333,0.0,100.0,0.42375,0.037333332999999996,238.03512179999998 -2014-06-12 23:00:00,0.0,1019.35,0.0,100.0,0.584666667,0.0265,238.0316796666667 -2014-07-12 00:00:00,0.0,1019.483333,0.0,100.0,0.7180833329999999,0.045833333,237.82874483333333 -2014-07-12 01:00:00,0.0,1019.004333,0.0,100.0,1.16475,0.03975,237.83222036666666 -2014-07-12 02:00:00,0.0,1018.432,0.0,100.0,0.08858333300000001,0.15608333300000002,237.83255455000003 -2014-07-12 03:00:00,0.0,1018.525,0.0,100.0,-0.01175,0.214916667,237.83255455000003 -2014-07-12 04:00:00,0.0,1018.3105,0.0,100.0,0.782666667,0.1955,237.83255455000003 -2014-07-12 05:00:00,0.0,1017.7460000000001,0.0,100.0,0.246166667,0.110916667,237.8318861833333 -2014-07-12 06:00:00,0.0,1017.507,0.0,100.0,-0.12625,0.177333333,237.8308502 -2014-07-12 07:00:00,0.0,1017.6825,0.010833333,100.0,0.37658333299999996,0.338916667,237.8294466 -2014-07-12 08:00:00,0.0,1018.054833,2.75725,100.0,0.655666667,0.222,237.82839395 -2014-07-12 09:00:00,0.0,1017.8605,28.1975,100.0,1.449583333,0.300166667,237.82700710000003 -2014-07-12 10:00:00,0.0,1017.768833,60.34916667,100.0,2.32475,0.23175,237.8253361 -2014-07-12 11:00:00,0.0,1017.129333,112.25,95.88333333,3.951083333,0.59725,237.8235983666667 -2014-07-12 12:00:00,0.0,1016.550833,137.24,85.975,5.52175,1.3964166669999998,237.82155979999996 -2014-07-12 13:00:00,0.0,1015.9065,123.6516667,79.305,5.6655,1.740583333,237.81913699999998 -2014-07-12 14:00:00,0.0,1015.137667,122.4,76.91666667,6.341,1.75725,237.81604578333335 -2014-07-12 15:00:00,0.0,1014.453,46.80333333,79.865,5.553999999999999,1.567166667,237.81298798333333 -2014-07-12 16:00:00,0.0,1014.002167,4.2655,87.40833333,4.247916667,1.1125,237.8095124166667 -2014-07-12 17:00:00,0.0,1013.600833,0.0,89.04166667,3.0845,1.245916667,237.80677208333336 -2014-07-12 18:00:00,0.0,1013.2285,0.0,87.33333333,3.51375,1.19825,237.8033466666667 -2014-07-12 19:00:00,0.0,1012.95,0.0,90.375,4.193916667,1.247333333,237.8016256 -2014-07-12 20:00:00,5.252776824,1012.684167,0.0,95.48333333,3.8845,1.171,237.79923616666667 -2014-07-12 21:00:00,14.39679437,1012.679833,0.0,98.175,3.444666667,1.616416667,237.79579403333332 -2014-07-12 22:00:00,8.433808943999999,1012.4855,0.0,99.45833333,3.08675,1.23275,237.7941064 -2014-07-12 23:00:00,2.662344264,1012.569333,0.0,99.15,3.45425,1.171916667,237.79134935 -2014-08-12 00:00:00,0.0,1012.813167,0.0,98.29166667,3.628916667,1.5955,237.50214419999998 -2014-08-12 01:00:00,0.0,1013.056167,0.0,98.89166667,3.786333333,2.366083333,237.50040646666665 -2014-08-12 02:00:00,0.0,1013.284667,0.0,98.90833333,3.82325,1.920833333,237.498652 -2014-08-12 03:00:00,0.0,1013.390333,0.0,99.1,3.403666667,1.420833333,237.49726511666665 -2014-08-12 04:00:00,0.0,1013.3741669999999,0.0,98.075,3.175833333,1.3230000000000002,237.49592838333328 -2014-08-12 05:00:00,0.0,1013.6833330000001,0.0,97.23333333,2.152166667,0.301833333,237.4948924 -2014-08-12 06:00:00,0.0,1013.9145,0.0,98.45,0.8198333329999999,0.112666667,237.49213535 -2014-08-12 07:00:00,0.0,1014.115833,0.030083332999999997,99.79166667,0.11825,0.295083333,237.48937830000003 -2014-08-12 08:00:00,0.0,1014.483333,5.066,100.0,-0.064666667,0.41083333299999997,237.48804156666665 -2014-08-12 09:00:00,0.0,1014.5965,21.83416667,99.24166667,0.643916667,0.44008333299999997,237.4863205 -2014-08-12 10:00:00,2.4050227680000003,1014.759667,91.75333333,93.91666667,4.462583333,0.27375,237.48491690000003 -2014-08-12 11:00:00,0.0,1014.6355,88.665,90.40833333,4.023666667,1.16625,237.4831624 -2014-08-12 12:00:00,0.0,1014.2175,103.0033333,89.08333333,3.993416667,0.49408333299999996,237.48182566666665 -2014-08-12 13:00:00,0.0,1013.518,159.1333333,81.24416667,5.362583333,1.243833333,237.4794028 -2014-08-12 14:00:00,0.0,1012.990833,78.70833333,81.21416667,5.47225,1.256333333,237.47634500000004 -2014-08-12 15:00:00,0.0,1012.8708330000001,46.7625,83.31916667,3.676166667,0.7194166670000001,237.47258539999999 -2014-08-12 16:00:00,0.0,1012.800833,3.733,95.24166667,1.488083333,0.512083333,237.46982835000003 -2014-08-12 17:00:00,0.0,1012.6825,0.0,99.75,-0.546166667,0.11641666699999999,237.468124 -2014-08-12 18:00:00,0.0,1012.538333,0.0,100.0,-1.4019166669999998,0.123833333,237.46496598333331 -2014-08-12 19:00:00,0.0,1012.475833,0.0,100.0,-1.627583333,0.147833333,237.4629441 -2014-08-12 20:00:00,0.0,1012.716667,0.0,100.0,-2.026,0.139,237.46085548333335 -2014-08-12 21:00:00,0.0,1013.1075,0.0,100.0,-1.814416667,0.07075,237.45950199999996 -2014-08-12 22:00:00,0.0,1013.565,0.0,100.0,-2.109833333,0.0315,237.45814851666668 -2014-08-12 23:00:00,0.0,1013.8758330000001,0.0,100.0,-2.3745,0.0010833330000000001,237.4557257 -2014-09-12 00:00:00,0.0,1014.390833,0.0,100.0,-2.334666667,0.064166667, -2014-09-12 01:00:00,0.0,1015.051667,0.0,100.0,-2.74525,0.0405, -2014-09-12 02:00:00,0.0,1015.760833,0.0,100.0,-2.791833333,0.041583333, -2014-09-12 03:00:00,0.0,1016.4375,0.0,100.0,-1.8001666669999998,0.107916667, -2014-09-12 04:00:00,0.0,1017.025833,0.0,100.0,-1.755916667,0.060333332999999996, -2014-09-12 05:00:00,0.0,1017.738333,0.0,100.0,-1.7644166669999999,0.10016666699999999, -2014-09-12 06:00:00,0.0,1018.714167,0.0,100.0,-1.314416667,0.46275, -2014-09-12 07:00:00,0.0,1019.586667,0.000916667,100.0,0.156,1.105333333, -2014-09-12 08:00:00,0.0,1020.809167,3.1975,100.0,0.4305,0.586166667, -2014-09-12 09:00:00,0.0,1021.726667,28.9475,100.0,0.72225,0.31125, -2014-09-12 10:00:00,0.0,1022.676667,44.11916667,99.61666667,1.07775,0.261, -2014-09-12 11:00:00,0.0,1023.0125,86.87,96.375,1.60675,0.622916667, -2014-09-12 12:00:00,0.0,1023.0275,146.2416667,88.5,2.363333333,0.5791666670000001, -2014-09-12 13:00:00,0.0,1023.264167,126.57166670000001,83.44166667,4.0595,0.62225, -2014-09-12 14:00:00,0.0,1023.526667,114.4,82.95833333,3.76325,1.036583333, -2014-09-12 15:00:00,0.0,1023.775,43.61666667,92.29166667,1.8526666669999998,1.855, -2014-09-12 16:00:00,0.0,1023.975833,3.062083333,98.23333333,0.586583333,1.55025, -2014-09-12 17:00:00,0.0,1023.925,0.0,98.59166667,1.119,1.6825833330000002, -2014-09-12 18:00:00,0.0,1023.963333,0.0,98.03333333,1.4106666669999999,0.37408333299999996, -2014-09-12 19:00:00,0.0,1024.164167,0.0,95.88333333,1.417666667,0.3905, -2014-09-12 20:00:00,0.0,1023.799167,0.0,93.74166667,1.585666667,1.3004166670000001, -2014-09-12 21:00:00,0.0,1023.409167,0.0,92.45,1.7849166669999998,1.9219166669999999, -2014-09-12 22:00:00,0.0,1022.986667,0.0,96.78333333,1.040333333,2.133666667, -2014-09-12 23:00:00,0.0,1022.820833,0.0,93.68333333,0.47200000000000003,0.643333333, -2014-10-12 00:00:00,0.0,1022.3975,0.0,92.79166667,1.635083333,1.0785,237.8909525 -2014-10-12 01:00:00,0.0,1021.54,0.0,93.04166667,1.59925,1.704,237.8912858333333 -2014-10-12 02:00:00,0.0,1020.720833,0.0,92.40833333,1.7950833330000002,1.35975,237.89295249999995 -2014-10-12 03:00:00,0.0,1019.818333,0.0,91.76666667,1.1530833329999999,1.0725833329999999,237.89330249999998 -2014-10-12 04:00:00,0.0,1018.560833,0.0,91.4,1.234,1.4105,237.8943525 -2014-10-12 05:00:00,0.0,1017.931667,0.0,91.275,2.619916667,2.49,237.8950525 -2014-10-12 06:00:00,0.0,1016.9075,0.0,92.24166667,2.2568333330000003,2.1390833330000003,237.8963858333333 -2014-10-12 07:00:00,0.0,1015.5583330000001,0.0,87.79166667,1.4045833330000002,1.31975,237.8970525 -2014-10-12 08:00:00,0.0,1015.059167,1.328166667,84.1025,1.9479166669999999,1.3216666670000001,237.89810249999996 -2014-10-12 09:00:00,18.78832747,1014.24,11.29325,95.325,1.9436666669999998,1.3666666669999998,237.89915249999999 -2014-10-12 10:00:00,2.533439352,1013.681667,26.00416667,96.66666667,1.9503333330000001,1.247333333,237.89915249999999 -2014-10-12 11:00:00,0.0,1013.165833,29.27916667,96.53333333,3.099916667,1.751416667,237.89948583333333 -2014-10-12 12:00:00,3.5131534560000004,1012.64,22.82258333,98.44166667,2.778,2.557583333,237.9011525 -2014-10-12 13:00:00,0.0,1012.229167,24.67916667,97.325,3.34825,1.879666667,237.9011525 -2014-10-12 14:00:00,0.0,1012.039167,15.29125,96.94166667,3.839833333,1.5460833330000001,237.9011525 -2014-10-12 15:00:00,0.0,1012.0775,14.42083333,96.68333333,4.39,1.53275,237.90220249999996 -2014-10-12 16:00:00,0.0,1012.1675,2.13225,96.55833333,4.7146666669999995,1.6088333330000002,237.90255249999998 -2014-10-12 17:00:00,0.0,1012.175,0.0,96.08333333,4.7725,1.9138333330000001,237.90185250000002 -2014-10-12 18:00:00,0.0,1012.264167,0.0,95.15833333,4.521166667,1.8141666669999998,237.90325249999998 -2014-10-12 19:00:00,0.0,1012.2325,0.0,95.40833333,4.44125,0.8685,237.90325249999998 -2014-10-12 20:00:00,0.0,1011.918333,0.0,96.1,2.64225,0.621833333,237.90290249999998 -2014-10-12 21:00:00,0.0,1011.796667,0.0,96.33333333,1.82375,0.434833333,237.9011525 -2014-10-12 22:00:00,0.0,1011.4333330000001,0.0,97.0,0.712166667,0.082833333,237.9011525 -2014-10-12 23:00:00,0.0,1011.419167,0.0,94.1,2.925833333,0.74475,237.9011525 -2014-11-12 00:00:00,0.0,1011.268333,0.0,93.875,3.782,0.9966666670000001,237.95598583333333 -2014-11-12 01:00:00,0.0,1010.5725,0.0,94.69166667,4.532583333,0.8946666670000001,237.9566525 -2014-11-12 02:00:00,22.27143602,1009.9625,0.0,96.60833333,4.348,1.385083333,237.95631916666665 -2014-11-12 03:00:00,0.0,1009.356667,0.0,98.69166667,2.8443333330000002,0.764916667,237.95631916666665 -2014-11-12 04:00:00,0.0,1008.631667,0.0,97.025,4.0705,1.5808333330000002,237.95598583333333 -2014-11-12 05:00:00,0.0,1007.873333,0.0,94.35833333,4.577916667,2.049416667,237.9556525 -2014-11-12 06:00:00,0.0,1007.604167,0.0,92.50833333,4.626416667,2.0265,237.9556525 -2014-11-12 07:00:00,3.39810816,1007.023333,0.008,92.14166667,5.111666667,2.31825,237.9566525 -2014-11-12 08:00:00,0.0,1006.538333,3.53025,92.71666667,5.350083333,2.22875,237.9566525 -2014-11-12 09:00:00,3.45977364,1006.1825,14.93566667,92.16666667,5.813333332999999,2.85325,237.95700249999996 -2014-11-12 10:00:00,56.63839723,1006.2275,12.015,96.1,5.4045,2.381166667,237.95700250000002 -2014-11-12 11:00:00,13.96467007,1005.641667,28.81416667,96.2,5.3765,1.6046666669999998,237.9566525 -2014-11-12 12:00:00,22.31454871,1004.9416669999999,25.89066667,95.05833333,5.798416667000001,2.645,237.95700250000002 -2014-11-12 13:00:00,94.90251468,1004.446667,45.31558333,96.01666667,5.4916666670000005,2.426583333,237.95700250000002 -2014-11-12 14:00:00,4.113392832,1003.921667,27.11166667,91.5,6.190916667000001,3.41475,237.9580525 -2014-11-12 15:00:00,3.9297269760000004,1003.9025,13.9425,95.11666667,5.22575,3.517583333,237.95840249999995 -2014-11-12 16:00:00,0.0,1003.906667,2.544833333,93.64166667,5.352,2.8064166669999997,237.95873583333332 -2014-11-12 17:00:00,69.56696645,1004.960833,0.0,94.175,4.977583333,2.820666667,237.95875249999997 -2014-11-12 18:00:00,9.904045488,1005.735833,0.0,97.44166667,3.38925,2.055416667,237.95875249999997 -2014-11-12 19:00:00,0.0,1005.866667,0.0,97.85833333,3.173833333,2.010166667,237.95875249999997 -2014-11-12 20:00:00,0.0,1006.143333,0.0,95.575,4.006833333,2.34025,237.96041916666664 -2014-11-12 21:00:00,0.0,1006.425833,0.0,94.15,4.636083333,2.550916667,237.96075249999998 -2014-11-12 22:00:00,0.0,1006.725,0.0,91.925,5.131083333,2.668333333,237.96041916666664 -2014-11-12 23:00:00,0.0,1006.4825,0.0,91.1,5.566833333,2.6318333330000003,237.96145249999998 -2014-12-12 00:00:00,0.0,1006.115,0.0,91.125,6.104333333,2.744916667, -2014-12-12 01:00:00,19.05542844,1005.4925,0.0,95.275,6.008166667,2.325416667, -2014-12-12 02:00:00,19.20105031,1004.5425,0.0,94.79166667,6.2860000000000005,2.518916667, -2014-12-12 03:00:00,6.69292476,1003.9958330000001,0.0,91.6,6.909833333,2.903666667, -2014-12-12 04:00:00,0.0,1003.480833,0.0,88.45,7.5505,2.9515833330000003, -2014-12-12 05:00:00,0.0,1002.645,0.0,86.01666667,7.6995,2.4965833330000002, -2014-12-12 06:00:00,0.0,1001.891667,0.0,88.04166667,7.623666667,2.880833333, -2014-12-12 07:00:00,0.0,1000.765,0.0,88.20833333,7.646,3.2911666669999997, -2014-12-12 08:00:00,0.0,1000.27,3.92525,90.05833333,7.4495,3.59225, -2014-12-12 09:00:00,0.0,999.6516667000001,20.30916667,89.53333333,7.449833333,3.298833333, -2014-12-12 10:00:00,0.0,999.0316667000001,28.5925,87.925,7.892,3.358833333, -2014-12-12 11:00:00,0.0,998.0691667000001,29.5725,86.86666667,8.168333333,3.2160833330000003, -2014-12-12 12:00:00,0.0,997.22,36.15083333,84.90833333,8.461666667000001,3.267666667, -2014-12-12 13:00:00,0.0,996.4075,56.29416667,82.54166667,9.004166667,3.4955, -2014-12-12 14:00:00,0.0,996.215,21.3575,82.575,9.325833333,3.390916667, -2014-12-12 15:00:00,0.0,995.6625,7.102666667,85.14166667,9.1925,3.2654166669999998, -2014-12-12 16:00:00,0.0,995.2791667000001,0.905833333,86.44166667,9.21,3.25175, -2014-12-12 17:00:00,0.0,994.9991667000002,0.0,87.625,9.128333332999999,3.556083333, -2014-12-12 18:00:00,0.0,994.8175,0.0,86.43333333,9.320833333,3.884416667, -2014-12-12 19:00:00,8.97521352,994.9783332999999,0.0,87.7,9.395833332999999,4.5745833330000005, -2014-12-12 20:00:00,9.306802608,995.4025,0.0,89.36666667,9.080833333,4.29375, -2014-12-12 21:00:00,104.3958376,996.8733332999999,0.0,97.575,8.626666667,3.17425, -2014-12-12 22:00:00,42.2906665,997.8383332999998,0.0,99.55,7.96325,1.695583333, -2014-12-12 23:00:00,11.3070299,998.9808332999999,0.0,99.64166667,7.282666667000001,1.338083333, -2014-12-13 00:00:00,20.83991021,999.8683332999999,0.0,97.825,6.55425,1.750583333, -2014-12-13 01:00:00,9.126217608,1000.446667,0.0,98.03333333,6.206833333,1.6504166669999998, -2014-12-13 02:00:00,8.44448628,1001.168333,0.0,97.65833333,5.93375,1.6805833330000002, -2014-12-13 03:00:00,14.053490300000002,1001.685,0.0,98.19166667,5.6704166670000005,1.38925, -2014-12-13 04:00:00,16.90256635,1002.16,0.0,97.2,5.4035,1.51225, -2014-12-13 05:00:00,8.350660752000001,1002.525,0.0,97.81666667,4.979583333,1.42675, -2014-12-13 06:00:00,12.3326821,1002.781667,0.0,99.975,4.6035,0.36908333299999996, -2014-12-13 07:00:00,16.83696838,1003.41,0.0,100.0,4.496333333,0.002, -2014-12-13 08:00:00,14.47558058,1003.843333,1.47225,100.0,4.348833333,0.05075, -2014-12-13 09:00:00,22.06703791,1004.496667,11.3405,100.0,4.09475,0.3215, -2014-12-13 10:00:00,12.27246943,1004.998333,25.92166667,100.0,4.067583333,0.18608333300000002, -2014-12-13 11:00:00,10.28112137,1005.606667,27.46583333,99.99166667,4.1275,0.6466666670000001, -2014-12-13 12:00:00,12.4998643,1005.8083330000001,35.5375,100.0,4.0513333330000005,0.571666667, -2014-12-13 13:00:00,16.15776667,1005.833333,31.33333333,99.85,3.9361666669999997,1.029083333, -2014-12-13 14:00:00,5.479496136,1006.075833,12.57866667,99.95,3.57325,1.3225833329999999, -2014-12-13 15:00:00,2.97732516,1006.568333,5.979916667,100.0,3.354166667,1.255833333, -2014-12-13 16:00:00,0.0,1006.7508330000001,0.504,100.0,3.0644166669999997,1.8586666669999998, -2014-12-13 17:00:00,14.33002109,1007.5525,0.0,100.0,2.65275,1.7091666669999999, -2014-12-13 18:00:00,18.14849726,1007.953333,0.0,100.0,1.6375,1.140583333, -2014-12-13 19:00:00,12.71531095,1008.2541669999999,0.0,100.0,1.6130000000000002,0.911083333, -2014-12-13 20:00:00,7.464501024,1008.343333,0.0,100.0,1.5289166669999998,0.425, -2014-12-13 21:00:00,7.49177652,1008.42,0.0,100.0,1.62925,0.52175, -2014-12-13 22:00:00,4.880288544,1008.7175,0.0,100.0,1.7425,0.36058333299999995, -2014-12-13 23:00:00,5.032406976,1008.8083330000001,0.0,100.0,1.8325,0.5575, -2014-12-14 00:00:00,2.441815416,1008.8083330000001,0.0,100.0,1.950166667,0.4, -2014-12-14 01:00:00,5.108046096,1008.828333,0.0,100.0,2.018166667,0.63475, -2014-12-14 02:00:00,10.30493081,1009.151667,0.0,100.0,2.0386666669999998,0.835666667, -2014-12-14 03:00:00,7.579463327999999,1009.3791669999999,0.0,100.0,2.0186666669999997,0.558416667, -2014-12-14 04:00:00,7.5621203999999995,1009.170833,0.0,100.0,1.867666667,0.896833333, -2014-12-14 05:00:00,14.66677126,1009.495,0.0,100.0,1.4113333330000002,0.3125, -2014-12-14 06:00:00,9.639632712000001,1009.8175,0.0,100.0,1.2855,0.24733333300000002, -2014-12-14 07:00:00,0.0,1010.515833,0.0,100.0,1.6019166669999998,0.419833333, -2014-12-14 08:00:00,0.0,1011.1575,1.6655,100.0,1.755916667,0.211416667, -2014-12-14 09:00:00,0.0,1011.735,21.41491667,100.0,2.0285,0.227666667, -2014-12-14 10:00:00,0.0,1012.2225,53.21666667,100.0,2.76325,0.37841666700000004, -2014-12-14 11:00:00,0.0,1012.166667,77.37333333,99.98333333,3.4765,0.44691666700000005, -2014-12-14 12:00:00,0.0,1012.1833330000001,63.09583333,99.11666667,3.72425,0.6445833329999999, -2014-12-14 13:00:00,0.0,1011.935833,51.7675,98.2,3.803583333,0.65075, -2014-12-14 14:00:00,0.0,1011.983333,38.82333333,96.31666667,4.022833333,0.484, -2014-12-14 15:00:00,0.0,1012.021667,14.57816667,92.06666667,3.9220833330000002,0.535166667, -2014-12-14 16:00:00,0.0,1011.961667,1.5361666669999998,97.58333333,3.58625,0.56, -2014-12-14 17:00:00,0.0,1011.955833,0.0,99.15833333,3.210833333,0.40675, -2014-12-14 18:00:00,0.0,1012.233333,0.0,100.0,1.7183333330000001,0.131666667, -2014-12-14 19:00:00,0.0,1012.158333,0.0,100.0,1.39675,0.18683333300000002, -2014-12-14 20:00:00,0.0,1012.119167,0.0,100.0,1.2175,0.132916667, -2014-12-14 21:00:00,0.0,1011.888333,0.0,100.0,1.3515833330000002,0.258833333, -2014-12-14 22:00:00,0.0,1011.883333,0.0,100.0,1.230333333,0.610583333, -2014-12-14 23:00:00,0.0,1011.6825,0.0,100.0,1.3711666669999998,0.081666667, -2014-12-15 00:00:00,0.0,1011.460833,0.0,100.0,1.5090000000000001,0.311833333, -2014-12-15 01:00:00,0.0,1011.050833,0.0,100.0,1.657666667,0.107916667, -2014-12-15 02:00:00,0.0,1010.506667,0.0,100.0,1.093833333,0.22091666699999998, -2014-12-15 03:00:00,0.0,1010.225,0.0,100.0,0.925166667,0.12575, -2014-12-15 04:00:00,0.0,1009.798333,0.0,100.0,0.81175,0.5136666670000001, -2014-12-15 05:00:00,0.0,1009.4075,0.0,100.0,-0.134583333,0.236583333, -2014-12-15 06:00:00,0.0,1009.2475,0.0,100.0,-1.00975,0.193916667, -2014-12-15 07:00:00,0.0,1009.241667,0.0,100.0,-1.448916667,0.13325, -2014-12-15 08:00:00,0.0,1009.345,7.10675,100.0,-1.3225,0.09125, -2014-12-15 09:00:00,0.0,1009.680833,25.64083333,98.88333333,0.173833333,0.08875, -2014-12-15 10:00:00,0.0,1009.970833,83.9025,84.7,1.197833333,0.4905, -2014-12-15 11:00:00,2.7560087039999996,1009.651667,79.31666667,85.35,4.105166667,0.6144166670000001, -2014-12-15 12:00:00,0.0,1009.783333,48.61416667,91.7,5.18925,1.2744166670000001, -2014-12-15 13:00:00,0.0,1009.710833,55.89416667,93.075,5.092583333,1.6419166669999998, -2014-12-15 14:00:00,0.0,1009.583333,35.4125,95.96666667,4.837583333,1.275416667, -2014-12-15 15:00:00,0.0,1009.929167,22.92916667,96.90833333,4.680166667,0.783083333, -2014-12-15 16:00:00,0.0,1010.32,2.407833333,97.98333333,4.382083333,0.89775, -2014-12-15 17:00:00,0.0,1010.364167,0.0,98.475,4.0111666669999995,0.307333333, -2014-12-15 18:00:00,0.0,1010.395,0.0,99.44166667,3.707666667,0.133166667, -2014-12-15 19:00:00,0.0,1010.3375,0.0,100.0,3.59975,0.234333333, -2014-12-15 20:00:00,0.0,1010.4425,0.0,100.0,3.7215,0.21666666699999998, -2014-12-15 21:00:00,0.0,1010.268333,0.0,100.0,3.846833333,0.07425, -2014-12-15 22:00:00,0.0,1010.008333,0.0,100.0,3.881583333,0.1315, -2014-12-15 23:00:00,0.0,1009.626667,0.0,100.0,3.89325,0.066333333, -2014-12-16 00:00:00,0.0,1009.1258330000001,0.0,100.0,3.786833333,0.422416667, -2014-12-16 01:00:00,0.0,1008.600833,0.0,100.0,3.762916667,0.24025, -2014-12-16 02:00:00,2.4050227680000003,1008.1325,0.0,100.0,3.7515,0.08825, -2014-12-16 03:00:00,2.4050227680000003,1007.844167,0.0,100.0,3.719583333,0.03275, -2014-12-16 04:00:00,0.0,1007.6,0.0,100.0,3.874583333,0.128583333, -2014-12-16 05:00:00,0.0,1007.4075,0.0,100.0,3.975333333,0.230333333, -2014-12-16 06:00:00,0.0,1007.458333,0.0,100.0,4.12125,0.031666667, -2014-12-16 07:00:00,0.0,1007.325,0.0,100.0,4.237583333,0.383166667, -2014-12-16 08:00:00,0.0,1007.508333,1.5469166669999999,100.0,5.072833333,1.24425, -2014-12-16 09:00:00,0.0,1007.580833,15.84666667,100.0,5.10325,0.47708333299999994, -2014-12-16 10:00:00,0.0,1007.736667,82.91833333,98.38333333,6.36275,0.3095, -2014-12-16 11:00:00,0.0,1007.590833,96.55333333,95.475,7.2815833329999995,1.741916667, -2014-12-16 12:00:00,0.0,1007.365833,50.15083333,96.7,6.8795,1.7970833330000002, -2014-12-16 13:00:00,0.0,1006.951667,33.8925,98.16666667,6.671,1.383666667, -2014-12-16 14:00:00,0.0,1006.710833,40.31833333,98.70833333,6.31075,1.540583333, -2014-12-16 15:00:00,0.0,1006.809167,20.6,98.21666667,6.0985,1.278, -2014-12-16 16:00:00,0.0,1007.229167,7.06175,95.55833333,5.57875,0.939666667, -2014-12-16 17:00:00,0.0,1007.776667,0.0,94.7,4.3105,0.9490000000000001, -2014-12-16 18:00:00,0.0,1008.1925,0.0,96.475,4.41225,1.030583333, -2014-12-16 19:00:00,0.0,1008.4675,0.0,93.79166667,4.523666667,0.94, -2014-12-16 20:00:00,0.0,1008.675,0.0,93.19166667,4.0504166669999995,1.227333333, -2014-12-16 21:00:00,3.2151015839999997,1008.988333,0.0,92.75833333,4.558666667,1.7164166669999998, -2014-12-16 22:00:00,13.75057118,1009.583333,0.0,99.225,3.80025,1.107333333, -2014-12-16 23:00:00,0.0,1009.466667,0.0,100.0,3.464583333,0.5265833329999999, -2014-12-17 00:00:00,0.0,1009.413333,0.0,99.725,3.0955,0.7475, -2014-12-17 01:00:00,0.0,1009.310833,0.0,98.9,3.047333333,1.5454166669999998, -2014-12-17 02:00:00,0.0,1009.088333,0.0,99.54166667,2.266083333,0.654416667, -2014-12-17 03:00:00,0.0,1008.681667,0.0,99.65833333,1.467416667,0.08325, -2014-12-17 04:00:00,0.0,1008.22,0.0,99.9,0.552583333,0.037166667, -2014-12-17 05:00:00,0.0,1007.541667,0.0,98.74166667,0.937,0.21958333300000002, -2014-12-17 06:00:00,0.0,1007.0975,0.0,97.33333333,1.4980000000000002,0.142666667, -2014-12-17 07:00:00,2.9989052160000003,1006.0325,0.0,94.15,1.9795833330000001,0.75275, -2014-12-17 08:00:00,0.0,1005.1675,1.654166667,93.36666667,3.178666667,1.3365833329999999, -2014-12-17 09:00:00,0.0,1004.133333,17.76625,92.03333333,3.5725833330000003,2.44, -2014-12-17 10:00:00,3.344857632,1003.169167,29.36416667,93.69166667,3.7393333330000003,2.803833333, -2014-12-17 11:00:00,3.362978472,1001.955,43.2875,95.93333333,3.4135,2.7374166669999997, -2014-12-17 12:00:00,5.493131328,1000.830833,35.57666667,97.525,3.757166667,1.714666667, -2014-12-17 13:00:00,5.208824304,1000.349167,29.5575,97.44166667,4.1536666669999995,1.202166667, -2014-12-17 14:00:00,2.6571852000000002,999.8008332999999,31.94,98.34166667,4.487,1.373666667, -2014-12-17 15:00:00,0.0,1000.221667,7.211333333,99.94166667,4.454166667,0.9520833329999999, -2014-12-17 16:00:00,0.0,1000.660833,0.855083333,100.0,4.591333333,0.639083333, -2014-12-17 17:00:00,0.0,1001.395833,0.0,100.0,5.058333333,0.7165, -2014-12-17 18:00:00,0.0,1001.770833,0.0,100.0,5.88175,0.6020833329999999, -2014-12-17 19:00:00,2.588767944,1002.5975,0.0,100.0,6.519916667,0.8959999999999999, -2014-12-17 20:00:00,0.0,1003.649167,0.0,100.0,6.97875,1.163916667, -2014-12-17 21:00:00,0.0,1004.5225,0.0,100.0,7.4145833329999995,1.556416667, -2014-12-17 22:00:00,0.0,1005.22,0.0,100.0,7.8274166670000005,1.7369999999999999, -2014-12-17 23:00:00,0.0,1005.869167,0.0,100.0,7.890083333,1.071, -2014-12-18 00:00:00,0.0,1006.259167,0.0,99.89166667,8.210833333,0.591583333, -2014-12-18 01:00:00,0.0,1006.974167,0.0,99.78333333,8.714166667,0.91, -2014-12-18 02:00:00,0.0,1007.275833,0.0,99.9,9.039166667,1.651666667, -2014-12-18 03:00:00,0.0,1007.2458330000001,0.0,99.125,9.224166667,1.23775, -2014-12-18 04:00:00,0.0,1007.22,0.0,97.38333333,9.288333332999999,0.974916667, -2014-12-18 05:00:00,0.0,1007.216667,0.0,99.04166667,9.391666667,1.38825, -2014-12-18 06:00:00,0.0,1007.1225,0.0,99.025,8.534166667000001,1.06125, -2014-12-18 07:00:00,0.0,1007.115833,0.0,99.1,8.415833333,1.5608333330000002, -2014-12-18 08:00:00,0.0,1007.111667,4.9109166669999995,97.8,8.66,1.22625, -2014-12-18 09:00:00,0.0,1007.431667,33.83,96.8,9.706666667,1.0905, -2014-12-18 10:00:00,0.0,1007.675,56.92916667,96.94166667,10.53333333,1.56875, -2014-12-18 11:00:00,0.0,1007.708333,88.75333333,97.70833333,11.0925,1.77475, -2014-12-18 12:00:00,0.0,1007.315,100.3466667,96.50833333,11.90583333,1.7584166669999999, -2014-12-18 13:00:00,0.0,1006.93,105.7575,98.61666667,12.19833333,2.0453333330000003, -2014-12-18 14:00:00,0.0,1007.079167,70.7275,96.55833333,12.34583333,2.112333333, -2014-12-18 15:00:00,0.0,1007.386667,34.115,97.50833333,12.33083333,2.262916667, -2014-12-18 16:00:00,0.0,1007.621667,5.15225,99.94166667,11.83,2.391083333, -2014-12-18 17:00:00,0.0,1007.809167,0.0,99.81666667,11.8425,2.191583333, -2014-12-18 18:00:00,0.0,1007.929167,0.0,96.64166667,12.335,3.060833333, -2014-12-18 19:00:00,0.0,1008.473333,0.0,93.91666667,12.92833333,3.040666667, -2014-12-18 20:00:00,0.0,1008.971667,0.0,91.30833333,13.31416667,3.371333333, -2014-12-18 21:00:00,0.0,1009.358333,0.0,85.70833333,13.055,3.8560000000000003, -2014-12-18 22:00:00,0.0,1009.2025,0.0,85.6,12.46583333,3.705, -2014-12-18 23:00:00,0.0,1009.506667,0.0,88.65833333,12.05416667,3.615916667, -2014-12-19 00:00:00,0.0,1009.87,0.0,89.83333333,11.89,3.4925833330000002, -2014-12-19 01:00:00,0.0,1009.9958330000001,0.0,87.46666667,12.16,3.4005, -2014-12-19 02:00:00,0.0,1010.221667,0.0,88.16666667,11.98416667,3.4708333330000003, -2014-12-19 03:00:00,0.0,1009.8825,0.0,90.0,11.45416667,3.4635, -2014-12-19 04:00:00,0.0,1009.554167,0.0,94.09166667,10.79583333,3.389916667, -2014-12-19 05:00:00,0.0,1009.403333,0.0,91.79166667,10.78833333,2.773, -2014-12-19 06:00:00,0.0,1009.049167,0.0,89.99166667,10.905,3.01425, -2014-12-19 07:00:00,0.0,1008.99,0.0,87.69166667,11.15833333,3.31125, -2014-12-19 08:00:00,0.0,1008.714167,1.43125,87.45,11.18166667,3.734833333, -2014-12-19 09:00:00,6.911552616,1008.615833,6.416833333,90.63333333,10.86583333,3.178666667, -2014-12-19 10:00:00,3.45054792,1008.260833,24.61583333,90.40833333,10.92833333,3.262, -2014-12-19 11:00:00,35.10626304,1008.235,27.84083333,95.18333333,10.5175,3.07, -2014-12-19 12:00:00,33.50988319,1007.515,36.13,96.475,10.39583333,2.73125, -2014-12-19 13:00:00,21.17375122,1006.886667,38.72333333,96.575,10.57333333,3.20325, -2014-12-19 14:00:00,18.39235063,1006.5575,25.55666667,96.975,10.60166667,3.4056666669999998, -2014-12-19 15:00:00,3.546808056,1006.4875,13.44333333,97.85,10.55,2.98, -2014-12-19 16:00:00,76.26963137,1007.455833,1.781333333,97.1,9.9325,2.503666667, -2014-12-19 17:00:00,7.915079472,1008.554167,0.0,97.35833333,9.1475,2.3416666669999997, -2014-12-19 18:00:00,0.0,1009.871667,0.0,90.93333333,8.300666667,2.480416667, -2014-12-19 19:00:00,0.0,1010.9175,0.0,88.28333333,7.484666667000001,2.729083333, -2014-12-19 20:00:00,0.0,1012.053333,0.0,87.20833333,6.468166667,2.012833333, -2014-12-19 21:00:00,0.0,1013.278333,0.0,89.25833333,5.763333332999999,1.23475, -2014-12-19 22:00:00,0.0,1013.9825,0.0,89.71666667,5.669,1.48475, -2014-12-19 23:00:00,0.0,1014.893333,0.0,90.46666667,5.72375,1.3316666670000001, -2014-12-20 00:00:00,0.0,1015.426667,0.0,92.09166667,5.125083333,1.692166667, -2014-12-20 01:00:00,0.0,1015.784167,0.0,90.60833333,5.00675,1.884916667, -2014-12-20 02:00:00,0.0,1016.285,0.0,88.35833333,5.149916667,1.3780833330000002, -2014-12-20 03:00:00,0.0,1016.658333,0.0,87.85833333,5.312833333,1.9479166669999999, -2014-12-20 04:00:00,0.0,1016.5616669999999,0.0,90.13333333,4.949083333,2.24425, -2014-12-20 05:00:00,0.0,1016.671667,0.0,92.26666667,3.949083333,1.522083333, -2014-12-20 06:00:00,0.0,1016.9366669999999,0.0,92.48333333,3.157333333,0.811583333, -2014-12-20 07:00:00,0.0,1016.6575,0.0,92.61666667,3.09775,1.699416667, -2014-12-20 08:00:00,0.0,1016.516667,6.58775,92.60833333,3.12375,1.6871666669999998, -2014-12-20 09:00:00,0.0,1016.508333,28.76833333,90.75833333,3.758416667,1.9069999999999998, -2014-12-20 10:00:00,0.0,1016.031667,75.67666667,87.975,5.118166667,3.058166667, -2014-12-20 11:00:00,0.0,1015.659167,60.19166667,87.50833333,5.722166667000001,3.434416667, -2014-12-20 12:00:00,0.0,1015.1241669999999,73.89416667,89.95833333,5.7505,3.742833333, -2014-12-20 13:00:00,0.0,1014.355833,48.17416667,88.48333333,5.8354166670000005,3.22375, -2014-12-20 14:00:00,0.0,1013.8825,43.38166667,83.43333333,6.25225,2.867166667, -2014-12-20 15:00:00,0.0,1013.714167,9.04475,87.45,5.964166667000001,3.228583333, -2014-12-20 16:00:00,3.93761448,1013.845,1.3964166669999998,90.84166667,5.611000000000001,3.3624166669999997, -2014-12-20 17:00:00,2.8739074319999998,1014.21,0.0,90.99166667,5.67,2.24225, -2014-12-20 18:00:00,0.0,1015.1025,0.0,90.68333333,5.910166667,3.145916667, -2014-12-20 19:00:00,64.90604203,1016.338333,0.0,91.225,5.400333333,3.1381666669999997, -2014-12-20 20:00:00,0.0,1017.7275,0.0,93.35833333,4.38,1.658333333, -2014-12-20 21:00:00,0.0,1018.74,0.0,90.95833333,4.876416667,1.9444166669999998, -2014-12-20 22:00:00,0.0,1020.019167,0.0,90.29166667,5.47475,1.814583333, -2014-12-20 23:00:00,0.0,1020.848333,0.0,91.65,5.342833333,2.133, -2014-12-21 00:00:00,0.0,1021.344167,0.0,94.58333333,4.597416667,1.34925, -2014-12-21 01:00:00,0.0,1022.018333,0.0,93.90833333,3.617833333,0.817083333, -2014-12-21 02:00:00,0.0,1022.693333,0.0,96.24166667,4.394416667,1.1225, -2014-12-21 03:00:00,0.0,1023.48,0.0,97.53333333,3.84725,1.242916667, -2014-12-21 04:00:00,0.0,1023.978333,0.0,97.275,3.982166667,1.6905833330000002, -2014-12-21 05:00:00,0.0,1024.143333,0.0,97.36666667,4.533583333,1.8286666669999998, -2014-12-21 06:00:00,0.0,1024.65,0.0,98.0,4.351583333,2.187916667, -2014-12-21 07:00:00,0.0,1024.616667,0.0,99.00833333,4.166166667,1.775916667, -2014-12-21 08:00:00,0.0,1024.656667,5.620416667000001,97.38333333,4.057583333,1.5953333330000001, -2014-12-21 09:00:00,0.0,1025.056667,34.97916667,95.025,4.519083333,2.150416667, -2014-12-21 10:00:00,0.0,1025.330833,66.9775,93.775,4.9951666669999994,1.5830000000000002, -2014-12-21 11:00:00,0.0,1025.32,84.94583333,91.9,5.583416667000001,1.915083333, -2014-12-21 12:00:00,0.0,1024.66,93.33916667,89.01666667,6.098666667000001,2.46, -2014-12-21 13:00:00,0.0,1023.9125,104.0991667,88.025,6.351166667,2.68875, -2014-12-21 14:00:00,0.0,1023.3175,58.4225,86.975,6.76325,2.661, -2014-12-21 15:00:00,0.0,1022.801667,15.91833333,88.04166667,6.54575,2.2175833330000003, -2014-12-21 16:00:00,0.0,1021.88,7.135166667000001,88.40833333,6.334833333,2.293416667, -2014-12-21 17:00:00,0.0,1021.515833,0.013583333000000001,88.63333333,6.509916667000001,2.339916667, -2014-12-21 18:00:00,0.0,1021.215,0.0,88.125,6.752416667,2.546833333, -2014-12-21 19:00:00,0.0,1021.226667,0.0,89.075,6.79025,3.007666667, -2014-12-21 20:00:00,0.0,1020.848333,0.0,88.63333333,6.9691666670000005,3.0179166669999997, -2014-12-21 21:00:00,0.0,1020.1625,0.0,90.65833333,6.8979166670000005,3.121083333, -2014-12-21 22:00:00,0.0,1019.775,0.0,89.33333333,7.0345,3.31975, -2014-12-21 23:00:00,0.0,1019.883333,0.0,90.16666667,7.0780833329999995,3.001583333, -2014-12-22 00:00:00,0.0,1019.8125,0.0,95.59166667,6.563666667000001,3.016, -2014-12-22 01:00:00,0.0,1019.253333,0.0,93.2,6.61625,3.2335833330000003, -2014-12-22 02:00:00,0.0,1018.420833,0.0,90.55,6.900416667000001,4.087583333, -2014-12-22 03:00:00,0.0,1018.364167,0.0,90.125,7.09275,3.701083333, -2014-12-22 04:00:00,0.0,1017.775,0.0,90.66666667,7.1415,3.33975, -2014-12-22 05:00:00,0.0,1017.358333,0.0,91.56666667,7.223666667000001,3.5639999999999996, -2014-12-22 06:00:00,0.0,1017.169167,0.0,93.85,7.021,3.5475, -2014-12-22 07:00:00,4.107103848,1017.125,0.0,92.925,7.198416667,3.69975, -2014-12-22 08:00:00,4.361683584,1017.1916669999999,0.559666667,96.225,6.898166667000001,3.86025, -2014-12-22 09:00:00,0.0,1017.289167,4.346833333,94.41666667,7.183166667,4.4415833330000005, -2014-12-22 10:00:00,0.0,1017.42,11.40675,93.025,7.450333333,3.9466666669999997, -2014-12-22 11:00:00,0.0,1017.198333,23.695,92.6,7.613833333,3.458, -2014-12-22 12:00:00,0.0,1016.449167,35.115,92.23333333,7.721833332999999,2.56675, -2014-12-22 13:00:00,0.0,1016.0175,29.185,90.125,8.011666667,2.7433333330000003, -2014-12-22 14:00:00,0.0,1015.330833,25.51,90.9,8.173333332999999,3.047416667, -2014-12-22 15:00:00,0.0,1015.235,9.68,91.14166667,8.3325,2.834166667, -2014-12-22 16:00:00,0.0,1015.791667,0.69625,90.83333333,8.506666667000001,3.0210000000000004, -2014-12-22 17:00:00,0.0,1015.7775,0.0,91.99166667,8.531666667,2.686833333, -2014-12-22 18:00:00,0.0,1015.525,0.0,91.16666667,8.7975,2.772416667, -2014-12-22 19:00:00,0.0,1015.48,0.0,90.11666667,9.253333332999999,3.395083333, -2014-12-22 20:00:00,0.0,1015.466667,0.0,89.58333333,9.495,3.45175, -2014-12-22 21:00:00,0.0,1015.515833,0.0,89.51666667,9.538333332999999,3.507666667, -2014-12-22 22:00:00,0.0,1015.3083330000001,0.0,89.60833333,9.455833333,3.4765, -2014-12-22 23:00:00,0.0,1015.368333,0.0,89.65833333,9.5275,3.2648333330000003, -2014-12-23 00:00:00,0.0,1015.590833,0.0,89.98333333,9.591666667,2.962916667, -2014-12-23 01:00:00,0.0,1015.536667,0.0,89.45833333,9.801666667000001,3.680333333, -2014-12-23 02:00:00,0.0,1015.3275,0.0,88.825,10.00083333,3.7045, -2014-12-23 03:00:00,0.0,1015.655833,0.0,88.23333333,10.10666667,3.364416667, -2014-12-23 04:00:00,0.0,1015.5275,0.0,88.33333333,9.985,3.5555, -2014-12-23 05:00:00,0.0,1015.4275,0.0,87.98333333,10.02916667,3.427083333, -2014-12-23 06:00:00,0.0,1015.614167,0.0,87.35833333,9.970833333,3.061833333, -2014-12-23 07:00:00,0.0,1015.79,0.0,87.20833333,9.926666667000001,2.6669166669999997, -2014-12-23 08:00:00,0.0,1015.9475,2.455166667,86.59166667,9.906666667,2.8643333330000003, -2014-12-23 09:00:00,0.0,1016.0075,20.48583333,86.25,10.00666667,2.977, -2014-12-23 10:00:00,0.0,1016.0925,21.92583333,86.60833333,10.04333333,3.22725, -2014-12-23 11:00:00,0.0,1016.12,39.66583333,86.38333333,10.13083333,3.317166667, -2014-12-23 12:00:00,0.0,1015.8625,50.56,86.61666667,10.295,2.8955833330000003, -2014-12-23 13:00:00,0.0,1015.454167,69.58416667,86.575,10.38333333,3.01725, -2014-12-23 14:00:00,0.0,1015.075,40.0825,86.93333333,10.42416667,2.945083333, -2014-12-23 15:00:00,0.0,1015.1775,11.60308333,88.05833333,10.0775,2.616083333, -2014-12-23 16:00:00,0.0,1015.091667,1.802583333,88.775,9.82,2.627166667, -2014-12-23 17:00:00,0.0,1015.113333,0.0,88.13333333,9.695833333,2.6608333330000002, -2014-12-23 18:00:00,0.0,1014.969167,0.0,88.49166667,9.4725,2.63525, -2014-12-23 19:00:00,0.0,1014.8975,0.0,89.76666667,9.221666667000001,2.461166667, -2014-12-23 20:00:00,0.0,1014.8025,0.0,91.7,8.864166667000001,2.6716666669999998, -2014-12-23 21:00:00,0.0,1014.741667,0.0,91.90833333,8.594166667,2.451333333, -2014-12-23 22:00:00,0.0,1014.791667,0.0,90.35833333,8.391666667,2.012166667, -2014-12-23 23:00:00,0.0,1014.6075,0.0,86.34166667,8.350833332999999,2.1575833330000003, -2014-12-24 00:00:00,0.0,1014.4575,0.0,84.73333333,8.154666667,2.3895, -2014-12-24 01:00:00,0.0,1014.071667,0.0,83.925,7.8186666670000005,2.639, -2014-12-24 02:00:00,0.0,1013.71,0.0,84.675,7.608166667000001,2.6455833330000003, -2014-12-24 03:00:00,0.0,1013.31,0.0,85.175,7.364833332999999,2.7406666669999997, -2014-12-24 04:00:00,0.0,1013.2275,0.0,86.75,6.846416667000001,3.1010000000000004, -2014-12-24 05:00:00,0.0,1012.955,0.0,87.63333333,6.3979166670000005,2.7519166669999997, -2014-12-24 06:00:00,0.0,1012.92,0.0,87.13333333,6.372083333,2.412, -2014-12-24 07:00:00,0.0,1013.008333,0.0,86.00833333,6.734666667000001,2.9394166669999997, -2014-12-24 08:00:00,0.0,1013.214167,0.914166667,85.13333333,7.0083333329999995,2.86475, -2014-12-24 09:00:00,0.0,1013.025,7.474,83.65,7.381416667000001,2.6278333330000003, -2014-12-24 10:00:00,0.0,1013.358333,15.87775,83.45,7.718583333,2.590083333, -2014-12-24 11:00:00,0.0,1012.84,39.01666667,85.36666667,7.942333333,2.714083333, -2014-12-24 12:00:00,0.0,1012.304167,67.495,87.33333333,8.549166667,3.388, -2014-12-24 13:00:00,3.950810016,1011.748333,29.23166667,91.88333333,8.229166667000001,3.462916667, -2014-12-24 14:00:00,3.780309168,1011.31,29.3925,93.99166667,8.147833333,3.213333333, -2014-12-24 15:00:00,0.0,1011.219167,13.28741667,90.725,8.69,3.313583333, -2014-12-24 16:00:00,0.0,1011.354167,0.9875,94.89166667,8.3175,3.17425, -2014-12-24 17:00:00,3.4624943999999998,1011.458333,0.0,96.43333333,8.109166667,3.3723333330000003, -2014-12-24 18:00:00,3.5400378960000003,1011.450833,0.0,97.275,8.02375,2.778083333, -2014-12-24 19:00:00,0.0,1011.5375,0.0,94.50833333,8.4175,2.93975, -2014-12-24 20:00:00,0.0,1011.531667,0.0,92.85833333,8.795833333,3.171416667, -2014-12-24 21:00:00,3.27592728,1012.496667,0.0,94.59166667,8.8325,2.765916667, -2014-12-24 22:00:00,3.204028464,1013.565833,0.0,93.08333333,7.359916667,2.323583333, -2014-12-24 23:00:00,4.071715728,1014.306667,0.0,89.525,6.382083333,2.133083333, -2014-12-25 00:00:00,0.0,1014.845833,0.0,87.55,5.9605,1.85225, -2014-12-25 01:00:00,0.0,1015.4625,0.0,83.14916667,5.47875,1.891083333, -2014-12-25 02:00:00,0.0,1015.823333,0.0,86.85833333,4.786916667,1.25875, -2014-12-25 03:00:00,0.0,1016.078333,0.0,86.05833333,4.45925,1.456666667, -2014-12-25 04:00:00,0.0,1016.055,0.0,83.175,4.581166667,2.051, -2014-12-25 05:00:00,0.0,1016.145,0.0,84.16666667,4.453666667,2.27, -2014-12-25 06:00:00,0.0,1016.215,0.0,85.525,4.233166667,1.874166667, -2014-12-25 07:00:00,0.0,1016.765,0.0,86.41666667,4.180083333,1.9678333330000002, -2014-12-25 08:00:00,0.0,1017.156667,1.9293333330000002,87.80833333,4.068916667,2.2325, -2014-12-25 09:00:00,0.0,1017.5675,21.08391667,88.425,3.9874166669999997,2.391666667, -2014-12-25 10:00:00,0.0,1018.11,82.51916667,89.45833333,4.155166667,2.723166667, -2014-12-25 11:00:00,0.0,1018.445,103.39,88.19166667,4.78575,3.234916667, -2014-12-25 12:00:00,0.0,1018.2541669999999,99.1225,90.74166667,5.03425,3.034916667, -2014-12-25 13:00:00,4.1727330480000004,1017.946667,115.435,87.61666667,5.56975,3.484916667, -2014-12-25 14:00:00,0.0,1017.844167,60.40833333,85.75833333,5.907666667000001,2.822916667, -2014-12-25 15:00:00,0.0,1018.045833,16.838,89.8,5.4131666670000005,2.042916667, -2014-12-25 16:00:00,0.0,1018.385,3.074166667,91.98333333,4.865083333,1.791166667, -2014-12-25 17:00:00,0.0,1018.911667,0.00425,94.79166667,4.0035,1.77275, -2014-12-25 18:00:00,0.0,1019.6275,0.0,95.83333333,3.7113333330000002,1.8539166669999998, -2014-12-25 19:00:00,0.0,1020.11,0.0,96.56666667,3.191916667,1.308083333, -2014-12-25 20:00:00,0.0,1020.7375,0.0,95.65,3.100666667,0.953416667, -2014-12-25 21:00:00,0.0,1021.075833,0.0,96.73333333,2.4634166669999997,0.811416667, -2014-12-25 22:00:00,0.0,1021.428333,0.0,98.675,1.556583333,0.655, -2014-12-25 23:00:00,0.0,1021.801667,0.0,96.76666667,1.284,0.7493333329999999, -2014-12-26 00:00:00,0.0,1022.0666669999999,0.0,97.40833333,1.9131666669999998,0.634916667, -2014-12-26 01:00:00,0.0,1022.229167,0.0,98.29166667,0.699583333,0.313416667, -2014-12-26 02:00:00,0.0,1022.539167,0.0,98.33333333,0.82175,0.319916667, -2014-12-26 03:00:00,0.0,1022.8175,0.0,98.81666667,1.442083333,0.540333333, -2014-12-26 04:00:00,0.0,1022.910833,0.0,99.33333333,1.3595833330000002,0.338583333, -2014-12-26 05:00:00,0.0,1022.805,0.0,99.25833333,0.656083333,0.39441666700000005, -2014-12-26 06:00:00,0.0,1022.600833,0.0,96.94166667,0.827583333,0.811666667, -2014-12-26 07:00:00,0.0,1023.0666669999999,0.0,97.85,1.18875,1.255916667, -2014-12-26 08:00:00,0.0,1023.3791669999999,3.809166667,99.78333333,1.1125,0.6579999999999999, -2014-12-26 09:00:00,0.0,1023.5,27.21916667,99.95,1.3156666670000001,0.572333333, -2014-12-26 10:00:00,0.0,1023.709167,38.485,98.78333333,2.1728333330000003,0.6023333329999999, -2014-12-26 11:00:00,2.65622124,1023.760833,84.885,96.98333333,3.429166667,1.224666667, -2014-12-26 12:00:00,0.0,1023.2925,161.0916667,90.55833333,4.549166667,1.328083333, -2014-12-26 13:00:00,0.0,1022.890833,89.19833333,80.22,4.4945833330000005,1.4670833330000002, -2014-12-26 14:00:00,0.0,1022.415833,92.68,78.07333333,4.713166667,1.32775, -2014-12-26 15:00:00,0.0,1022.201667,27.88666667,82.23083333,3.775666667,1.1785, -2014-12-26 16:00:00,0.0,1021.863333,4.2585,95.3,1.6859166669999999,0.515083333, -2014-12-26 17:00:00,0.0,1021.44,0.0,99.61666667,0.41658333299999994,0.5239166670000001, -2014-12-26 18:00:00,0.0,1020.8125,0.0,100.0,-0.106833333,0.52525, -2014-12-26 19:00:00,0.0,1020.278333,0.0,100.0,-1.05325,0.176083333, -2014-12-26 20:00:00,0.0,1019.723333,0.0,100.0,-1.3734166669999999,0.070916667, -2014-12-26 21:00:00,0.0,1018.890833,0.0,100.0,-1.1045,0.11983333300000001, -2014-12-26 22:00:00,0.0,1017.451667,0.0,100.0,-0.598,0.3765, -2014-12-26 23:00:00,0.0,1016.113333,0.0,100.0,-1.187666667,0.19675, -2014-12-27 00:00:00,0.0,1014.5625,0.0,100.0,-1.212166667,0.206333333, -2014-12-27 01:00:00,0.0,1012.898333,0.0,100.0,-0.6326666670000001,1.091583333, -2014-12-27 02:00:00,0.0,1011.239167,0.0,100.0,0.505166667,2.71475, -2014-12-27 03:00:00,0.0,1009.38,0.0,100.0,0.38175,2.5810000000000004, -2014-12-27 04:00:00,0.0,1007.185833,0.0,100.0,0.505166667,2.3976666669999998, -2014-12-27 05:00:00,0.0,1004.636667,0.0,99.075,0.564,2.3445, -2014-12-27 06:00:00,0.0,1002.151667,0.0,99.80833333,0.295666667,2.15025, -2014-12-27 07:00:00,0.0,999.7833332999999,0.0,100.0,0.15666666699999998,2.945916667, -2014-12-27 08:00:00,0.0,997.9425,0.502416667,100.0,-0.02575,3.554, -2014-12-27 09:00:00,0.0,996.6216667000001,7.081916667000001,100.0,-0.181333333,3.322083333, -2014-12-27 10:00:00,0.0,995.4083332999999,26.7675,100.0,-0.06408333299999999,2.875666667, -2014-12-27 11:00:00,0.0,994.1883332999998,45.95083333,100.0,0.033416667000000004,3.0556666669999997, -2014-12-27 12:00:00,0.0,993.2808332999999,47.855,100.0,0.065166667,3.17475, -2014-12-27 13:00:00,0.0,992.4675,23.0275,100.0,0.054166667,2.4096666669999998, -2014-12-27 14:00:00,0.0,992.175,16.70416667,100.0,-0.210166667,2.496333333, -2014-12-27 15:00:00,0.0,992.1,6.325416667000001,100.0,-0.557083333,1.6506666669999999, -2014-12-27 16:00:00,0.0,992.39,1.690916667,100.0,-1.1855,2.41125, -2014-12-27 17:00:00,0.0,992.7483332999999,0.0,100.0,-1.40825,1.70475, -2014-12-27 18:00:00,0.0,993.31,0.0,100.0,-1.810416667,3.6720833330000002, -2014-12-27 19:00:00,0.0,994.0666667000002,0.0,100.0,-1.873666667,4.3795, -2014-12-27 20:00:00,0.0,994.9016667000001,0.0,99.35833333,-1.745916667,4.791166667, -2014-12-27 21:00:00,0.0,995.8808332999998,0.0,95.7,-2.132333333,5.272083333, -2014-12-27 22:00:00,0.0,996.9958332999998,0.0,94.80833333,-2.366,6.2823333329999995, -2014-12-27 23:00:00,0.0,998.2416667000001,0.0,93.16666667,-2.377333333,5.962916667000001, -2014-12-28 00:00:00,0.0,999.275,0.0,91.03333333,-2.563416667,5.511583333, -2014-12-28 01:00:00,0.0,1000.140833,0.0,89.4,-2.705,5.805, -2014-12-28 02:00:00,0.0,1001.455,0.0,88.26666667,-2.72975,6.202833332999999, -2014-12-28 03:00:00,0.0,1002.959167,0.0,85.7,-3.1175833330000002,6.27, -2014-12-28 04:00:00,0.0,1004.29,0.0,86.24166667,-3.643166667,4.443833333, -2014-12-28 05:00:00,0.0,1005.88,0.0,86.44166667,-3.959916667,4.26475, -2014-12-28 06:00:00,0.0,1007.665833,0.0,85.05833333,-4.64625,4.138999999999999, -2014-12-28 07:00:00,0.0,1009.564167,0.0,83.8,-5.2945,4.150333333, -2014-12-28 08:00:00,0.0,1011.675,2.4235,83.7,-5.80625,4.380333333, -2014-12-28 09:00:00,0.0,1013.649167,15.41916667,84.65,-6.204666667000001,3.919083333, -2014-12-28 10:00:00,0.0,1015.349167,70.96,80.89333333,-5.684083332999999,2.945083333, -2014-12-28 11:00:00,0.0,1016.7475,111.65,71.79333333,-4.947833333,3.5745, -2014-12-28 12:00:00,0.0,1017.5775,174.8,69.64,-4.053833333,3.073666667, -2014-12-28 13:00:00,0.0,1018.614167,168.93333330000002,67.3725,-3.0745,1.7318333330000002, -2014-12-28 14:00:00,0.0,1019.425,130.5166667,66.46833333,-2.485,1.4891666669999999, -2014-12-28 15:00:00,0.0,1020.575,64.3475,73.00166667,-3.653916667,1.282166667, -2014-12-28 16:00:00,0.0,1021.7475,6.06025,91.56666667,-5.950166667,0.68875, -2014-12-28 17:00:00,0.0,1022.705833,0.03425,93.68333333,-6.5148333329999994,0.754583333, -2014-12-28 18:00:00,0.0,1024.213333,0.0,94.8,-7.06425,0.3375, -2014-12-28 19:00:00,0.0,1025.3375,0.0,96.15833333,-5.290166667,0.15233333300000002, -2014-12-28 20:00:00,0.0,1026.183333,0.0,94.00833333,-3.4216666669999998,0.6004166670000001, -2014-12-28 21:00:00,0.0,1026.589167,0.0,90.33333333,-3.5291666669999997,1.4559166669999999, -2014-12-28 22:00:00,0.0,1026.669167,0.0,92.25833333,-4.156916667,0.9720833329999999, -2014-12-28 23:00:00,0.0,1026.990833,0.0,97.26666667,-5.539333332999999,0.820333333, -2014-12-29 00:00:00,0.0,1027.179167,0.0,91.56666667,-4.225,0.8555, -2014-12-29 01:00:00,0.0,1026.5875,0.0,90.875,-4.019416667,1.13575, -2014-12-29 02:00:00,0.0,1025.8675,0.0,91.49166667,-4.514083333,1.325583333, -2014-12-29 03:00:00,0.0,1025.2425,0.0,92.58333333,-4.0905,1.60275, -2014-12-29 04:00:00,0.0,1024.541667,0.0,91.78333333,-4.004583333,1.933416667, -2014-12-29 05:00:00,0.0,1023.414167,0.0,94.59166667,-3.942916667,1.766666667, -2014-12-29 06:00:00,0.0,1022.7075,0.0,96.78333333,-3.8335,1.612333333, -2014-12-29 07:00:00,0.0,1022.596667,0.0,97.23333333,-3.349916667,0.9055, -2014-12-29 08:00:00,0.0,1023.048333,4.876333333,97.43333333,-2.657666667,1.24025, -2014-12-29 09:00:00,0.0,1023.073333,47.22916667,96.29166667,-1.5395833330000002,1.1255, -2014-12-29 10:00:00,0.0,1023.384167,76.00083333,96.66666667,-0.515416667,1.115166667, -2014-12-29 11:00:00,0.0,1023.474167,95.535,94.06666667,0.7726666670000001,1.43825, -2014-12-29 12:00:00,3.4712232000000003,1023.666667,134.45833330000002,90.64166667,2.2719166669999997,2.361333333, -2014-12-29 13:00:00,3.0583735919999997,1023.729167,73.29083333,89.39166667,2.4055,2.77175, -2014-12-29 14:00:00,15.73191581,1024.113333,21.90583333,88.55,2.183083333,2.591583333, -2014-12-29 15:00:00,2.913289272,1025.230833,11.14041667,90.00833333,1.463,3.116916667, -2014-12-29 16:00:00,2.712861048,1026.244167,2.15325,88.18333333,1.3466666669999998,2.002333333, -2014-12-29 17:00:00,0.0,1027.271667,0.00425,91.23333333,0.892083333,1.2830000000000001, -2014-12-29 18:00:00,2.4331108319999997,1028.103333,0.0,92.34166667,0.30091666699999997,1.07725, -2014-12-29 19:00:00,0.0,1028.955,0.0,87.29166667,0.37891666700000004,2.441416667, -2014-12-29 20:00:00,0.0,1029.755,0.0,88.14166667,-0.048666667000000004,1.72625, -2014-12-29 21:00:00,0.0,1030.300833,0.0,91.83333333,-0.40633333299999996,0.8644166670000001, -2014-12-29 22:00:00,0.0,1030.258333,0.0,94.65,-0.913333333,0.5960833329999999, -2014-12-29 23:00:00,0.0,1030.266667,0.0,91.31666667,-0.843166667,0.5960833329999999, -2014-12-30 00:00:00,0.0,1030.5075,0.0,90.69166667,-1.188,0.7999166670000001, -2014-12-30 01:00:00,0.0,1030.175,0.0,88.63333333,-1.298916667,0.444666667, -2014-12-30 02:00:00,0.0,1030.138333,0.0,90.20833333,-0.905416667,0.744833333, -2014-12-30 03:00:00,0.0,1029.59,0.0,91.46666667,-0.777166667,1.535916667, -2014-12-30 04:00:00,0.0,1029.250833,0.0,91.89166667,-0.5844166670000001,1.281666667, -2014-12-30 05:00:00,0.0,1028.565833,0.0,93.59166667,-0.43558333299999996,0.837333333, -2014-12-30 06:00:00,0.0,1028.205,0.0,96.5,-0.0475,0.8885, -2014-12-30 07:00:00,0.0,1028.230833,0.0,97.63333333,0.534416667,0.98225, -2014-12-30 08:00:00,0.0,1028.465,3.129833333,97.60833333,0.8195,0.8555, -2014-12-30 09:00:00,0.0,1028.6775,36.655,97.16666667,1.258166667,0.901833333, -2014-12-30 10:00:00,0.0,1028.666667,60.56666667,94.14166667,2.1381666669999997,1.006, -2014-12-30 11:00:00,11.61244735,1028.533333,104.6658333,89.475,3.637916667,1.410916667, -2014-12-30 12:00:00,40.18937522,1028.435833,109.1275,88.275,4.0005,1.6275, -2014-12-30 13:00:00,31.72884257,1028.255,136.7425,86.53333333,4.364,1.6735, -2014-12-30 14:00:00,25.21176518,1028.094167,59.30833333,87.825,3.810916667,1.329, -2014-12-30 15:00:00,13.60438922,1028.116667,19.97166667,92.7,3.193,1.2175833329999999, -2014-12-30 16:00:00,5.3809667999999995,1028.209167,2.472833333,94.94166667,2.659,1.042, -2014-12-30 17:00:00,0.0,1028.480833,0.0,94.96666667,2.395666667,1.05625, -2014-12-30 18:00:00,2.561921808,1028.503333,0.0,94.3,2.2120833330000003,1.2288333329999999, -2014-12-30 19:00:00,2.6324686319999997,1028.858333,0.0,92.16666667,2.2280833330000003,0.8079999999999999, -2014-12-30 20:00:00,0.0,1028.939167,0.0,92.64166667,2.097,0.658833333, -2014-12-30 21:00:00,2.5610939040000003,1028.919167,0.0,94.38333333,1.888166667,0.817333333, -2014-12-30 22:00:00,2.61151536,1028.8,0.0,95.56666667,1.8654166669999999,0.78275, -2014-12-30 23:00:00,2.762420328,1028.664167,0.0,96.43333333,1.9835,1.444, -2014-12-31 00:00:00,2.604810624,1028.5125,0.0,96.16666667,2.00375,1.5601666669999998, -2014-12-31 01:00:00,0.0,1028.244167,0.0,96.575,1.9738333330000002,1.610916667, -2014-12-31 02:00:00,2.624111424,1028.325,0.0,96.71666667,1.9670833330000002,1.027583333, -2014-12-31 03:00:00,0.0,1028.383333,0.0,96.54166667,1.9616666669999998,0.8019166670000001, -2014-12-31 04:00:00,2.50805016,1028.090833,0.0,96.91666667,1.9579166669999999,0.891333333, -2014-12-31 05:00:00,0.0,1027.668333,0.0,96.875,1.8711666669999998,1.005416667, -2014-12-31 06:00:00,0.0,1027.723333,0.0,98.46666667,1.8065,0.528083333, -2014-12-31 07:00:00,2.458285392,1028.2925,0.0,98.50833333,1.832583333,0.605666667, -2014-12-31 08:00:00,0.0,1028.685,2.8233333330000003,98.84166667,1.9730833330000002,1.23225, -2014-12-31 09:00:00,0.0,1029.129167,24.78,98.60833333,2.2040833330000003,0.5568333329999999, -2014-12-31 10:00:00,0.0,1029.403333,56.295,97.94166667,2.54225,0.7795833329999999, -2014-12-31 11:00:00,0.0,1029.374167,73.33416667,97.28333333,2.862083333,0.858583333, -2014-12-31 12:00:00,0.0,1028.945833,118.05,96.025,3.379416667,0.9966666670000001, -2014-12-31 13:00:00,0.0,1028.830833,82.86666667,98.14166667,3.369583333,1.202083333, -2014-12-31 14:00:00,0.0,1028.835833,52.9925,100.0,3.169166667,0.9435, -2014-12-31 15:00:00,0.0,1028.9925,30.5925,100.0,3.090083333,0.859666667, -2014-12-31 16:00:00,0.0,1029.195,4.1235,100.0,2.9735,0.630916667, -2014-12-31 17:00:00,0.0,1029.395,0.033333333,100.0,2.848833333,0.416916667, -2014-12-31 18:00:00,2.46041064,1029.673333,0.0,100.0,2.849416667,0.49291666700000003, -2014-12-31 19:00:00,0.0,1030.059167,0.0,100.0,2.8218333330000003,0.3025, -2014-12-31 20:00:00,0.0,1030.0691669999999,0.0,100.0,2.84975,0.408916667, -2014-12-31 21:00:00,0.0,1030.185,0.0,100.0,2.777083333,0.39383333299999995, -2014-12-31 22:00:00,0.0,1030.564167,0.0,100.0,2.620083333,0.775166667, -2014-12-31 23:00:00,0.0,1030.875,0.0,100.0,2.58075,0.6629166670000001, -2015-01-01 00:00:00,0.0,1030.7525,0.0,100.0,2.256583333,0.236916667, -2015-01-01 01:00:00,0.0,1030.9175,0.0,100.0,2.15925,0.023916667000000003, -2015-01-01 02:00:00,0.0,1031.030833,0.0,100.0,2.276833333,0.098416667, -2015-01-01 03:00:00,0.0,1031.0575,0.0,100.0,2.306166667,0.2135, -2015-01-01 04:00:00,0.0,1030.640833,0.0,100.0,2.2080833330000003,0.11816666699999999, -2015-01-01 05:00:00,0.0,1030.254167,0.0,100.0,1.7783333330000002,0.825666667, -2015-01-01 06:00:00,0.0,1030.341667,0.0,100.0,1.7630833330000002,0.735, -2015-01-01 07:00:00,0.0,1031.72,0.0,100.0,1.9026666669999999,0.291333333, -2015-01-01 08:00:00,0.0,1032.099167,1.418916667,100.0,2.0556666669999997,0.68675, -2015-01-01 09:00:00,0.0,1031.813333,17.86583333,100.0,1.986083333,0.791416667, -2015-01-01 10:00:00,0.0,1031.248333,55.32416667,100.0,2.2553333330000003,1.197416667, -2015-01-01 11:00:00,0.0,1031.1425,83.5925,100.0,2.439916667,0.96175, -2015-01-01 12:00:00,0.0,1030.961667,60.83,100.0,2.7755,0.54125, -2015-01-01 13:00:00,0.0,1030.590833,48.0675,100.0,3.1238333330000003,0.3425, -2015-01-01 14:00:00,0.0,1029.8683330000001,78.62333333,99.76666667,3.408666667,0.8845833329999999, -2015-01-01 15:00:00,0.0,1029.6975,44.0125,98.78333333,3.21,1.103, -2015-01-01 16:00:00,0.0,1029.6125,7.394583333,99.90833333,3.0895,0.35758333299999995, -2015-01-01 17:00:00,0.0,1029.2025,0.052083332999999996,100.0,2.074083333,0.19, -2015-01-01 18:00:00,0.0,1028.92,0.0,100.0,1.2670000000000001,0.664333333, -2015-01-01 19:00:00,0.0,1028.360833,0.0,100.0,0.4315,0.426416667, -2015-01-01 20:00:00,0.0,1028.134167,0.0,100.0,-0.043583332999999995,0.31075, -2015-01-01 21:00:00,0.0,1027.431667,0.0,100.0,0.426,0.563083333, -2015-01-01 22:00:00,0.0,1027.056667,0.0,100.0,0.044083332999999995,0.8118333329999999, -2015-01-01 23:00:00,0.0,1026.629167,0.0,100.0,0.067916667,1.0849166670000001, -2015-02-01 00:00:00,0.0,1025.758333,0.0,99.59166667,-0.132833333,1.69875, -2015-02-01 01:00:00,0.0,1024.55,0.0,92.575,-0.519083333,1.5525, -2015-02-01 02:00:00,0.0,1023.91,0.0,99.50833333,-1.0525,0.5013333329999999, -2015-02-01 03:00:00,0.0,1023.328333,0.0,96.05,-1.0989166670000001,0.640333333, -2015-02-01 04:00:00,0.0,1022.425,0.0,86.075,-0.345416667,1.0593333329999999, -2015-02-01 05:00:00,0.0,1021.676667,0.0,82.23333333,0.97875,1.109916667, -2015-02-01 06:00:00,0.0,1021.2491669999999,0.0,85.36666667,1.384416667,1.093916667, -2015-02-01 07:00:00,39.41083373,1020.8875,0.0,93.975,1.4815,1.155333333, -2015-02-01 08:00:00,7.93153056,1020.850833,1.3630000000000002,96.2,2.041833333,1.140083333, -2015-02-01 09:00:00,5.388300168,1021.15,16.41583333,97.94166667,2.324583333,0.852583333, -2015-02-01 10:00:00,0.0,1021.400833,17.01216667,98.875,2.549083333,0.924083333, -2015-02-01 11:00:00,0.0,1021.260833,33.6675,98.46666667,3.5375,1.48275, -2015-02-01 12:00:00,0.0,1021.065,49.95333333,97.34166667,4.2139166669999994,1.8934166669999999, -2015-02-01 13:00:00,0.0,1021.700833,26.1725,98.85,4.44225,2.2665833330000003, -2015-02-01 14:00:00,0.0,1022.086667,27.28666667,99.44166667,4.3345,1.868333333, -2015-02-01 15:00:00,0.0,1022.5525,34.12,98.35,4.689166667,2.429083333, -2015-02-01 16:00:00,0.0,1023.240833,3.122083333,98.14166667,4.505916667,2.423666667, -2015-02-01 17:00:00,0.0,1023.9575,0.016416667,97.73333333,4.232916667,2.412083333, -2015-02-01 18:00:00,0.0,1024.771667,0.0,98.7,3.8961666669999997,1.6830833330000001, -2015-02-01 19:00:00,0.0,1025.8525,0.0,98.73333333,3.6063333330000003,1.5465, -2015-02-01 20:00:00,0.0,1026.598333,0.0,95.375,3.5439999999999996,1.3715, -2015-02-01 21:00:00,0.0,1026.923333,0.0,92.21666667,3.6934166669999997,1.72975, -2015-02-01 22:00:00,0.0,1027.218333,0.0,89.75,4.054666667,1.9685, -2015-02-01 23:00:00,0.0,1027.516667,0.0,87.65,4.005916667,2.5476666669999997, -2015-03-01 00:00:00,0.0,1027.190833,0.0,89.925,2.82975,1.309416667,238.01931933333333 -2015-03-01 01:00:00,0.0,1027.445,0.0,91.29166667,1.600333333,0.371166667,238.018986 -2015-03-01 02:00:00,0.0,1027.409167,0.0,91.775,1.33,0.192,238.020986 -2015-03-01 03:00:00,0.0,1027.423333,0.0,92.0,1.367583333,0.489,238.020986 -2015-03-01 04:00:00,0.0,1026.399167,0.0,91.69166667,2.0540000000000003,1.0224166670000001,238.020986 -2015-03-01 05:00:00,0.0,1025.598333,0.0,91.20833333,2.376416667,1.431583333,238.02168599999996 -2015-03-01 06:00:00,0.0,1025.053333,0.0,93.23333333,2.053083333,0.9670000000000001,238.021336 -2015-03-01 07:00:00,0.0,1023.766667,0.0,96.44166667,1.30125,0.513916667,238.020986 -2015-03-01 08:00:00,0.0,1023.4958330000001,1.253666667,96.275,1.165666667,0.322416667,238.01826933333334 -2015-03-01 09:00:00,0.0,1022.824167,13.87366667,95.65833333,1.5275,0.300083333,238.019986 -2015-03-01 10:00:00,0.0,1021.918333,36.70916667,96.15,2.008166667,0.411916667,238.01998600000002 -2015-03-01 11:00:00,0.0,1020.626667,56.32916667,95.025,3.346166667,1.122666667,238.0196526666667 -2015-03-01 12:00:00,2.7545888880000002,1019.023333,29.30583333,95.375,3.364666667,0.7715,238.018286 -2015-03-01 13:00:00,16.29758923,1017.088333,29.29583333,98.55833333,2.85875,1.157166667,238.018986 -2015-03-01 14:00:00,18.28733818,1015.154167,23.79166667,100.0,1.9385833330000002,1.031583333,238.018986 -2015-03-01 15:00:00,5.135113152,1013.794167,16.31416667,100.0,1.637583333,0.940583333,238.018986 -2015-03-01 16:00:00,2.39477244,1012.71,2.389916667,100.0,1.629083333,0.765916667,238.01828600000002 -2015-03-01 17:00:00,2.542189176,1011.598333,0.007083333000000001,100.0,1.39225,0.65225,238.018286 -2015-03-01 18:00:00,2.413401456,1011.0041669999999,0.0,100.0,0.767916667,0.10108333300000001,238.018986 -2015-03-01 19:00:00,0.0,1011.251667,0.0,100.0,0.386166667,0.2375,238.018986 -2015-03-01 20:00:00,0.0,1012.100833,0.0,100.0,0.35925,0.0,238.018986 -2015-03-01 21:00:00,0.0,1013.285833,0.0,100.0,0.614,0.028999999999999998,238.018986 -2015-03-01 22:00:00,0.0,1014.8166669999999,0.0,100.0,0.8683333329999999,0.780416667,238.01863600000001 -2015-03-01 23:00:00,0.0,1016.66,0.0,99.79166667,1.5475833330000002,1.313583333,238.01896933333333 -2015-04-01 00:00:00,0.0,1017.774167,0.0,98.8,1.804,0.849583333,238.0561299 -2015-04-01 01:00:00,10.19419848,1018.729167,0.0,99.725,1.678666667,1.095583333,238.05572228333327 -2015-04-01 02:00:00,12.78721579,1020.304167,0.0,99.83333333,1.78175,1.148,238.0553934333333 -2015-04-01 03:00:00,8.038666056,1021.463333,0.0,98.73333333,2.1583333330000003,1.1885,238.0551680333334 -2015-04-01 04:00:00,5.2245402,1022.109167,0.0,97.81666667,1.955,1.183333333,238.05486383333331 -2015-04-01 05:00:00,5.29885248,1022.3875,0.0,98.14166667,2.14025,1.36975,238.0545867666667 -2015-04-01 06:00:00,2.626314456,1022.52,0.0,96.95,1.74625,1.3245833329999999,238.05423205000002 -2015-04-01 07:00:00,0.0,1023.104167,0.0,96.68333333,1.279416667,1.052083333,238.05392541666666 -2015-04-01 08:00:00,0.0,1024.009167,3.8471666669999998,96.375,1.278583333,0.976,238.0536483 -2015-04-01 09:00:00,2.758141824,1024.935833,33.82,96.325,1.97875,1.104666667,238.05342166666665 -2015-04-01 10:00:00,8.425283568,1025.970833,49.79416667,97.05,2.430416667,1.4350833330000001,238.0531938 -2015-04-01 11:00:00,9.207573744,1026.329167,70.28666667,96.46666667,2.870916667,1.9225833330000002,238.05304108333334 -2015-04-01 12:00:00,2.745404544,1026.7675,82.20916667,95.5,3.696,1.4529166669999998,238.0528404 -2015-04-01 13:00:00,0.0,1027.045833,59.7875,93.34166667,4.1384166669999995,1.537166667,238.0527628 -2015-04-01 14:00:00,0.0,1027.456667,46.23666667,89.01666667,4.210333333,1.6353333330000002,238.0526642666667 -2015-04-01 15:00:00,0.0,1028.03,51.57416667,86.45,4.419166667,1.6248333330000002,238.0524339333334 -2015-04-01 16:00:00,0.0,1028.525833,5.256083333,88.91666667,3.948,1.575083333,238.0522307 -2015-04-01 17:00:00,0.0,1028.863333,0.033333333,91.44166667,3.558833333,1.299166667,238.05213095 -2015-04-01 18:00:00,0.0,1029.005,0.0,93.025,3.17425,0.8999166670000001,238.05200169999998 -2015-04-01 19:00:00,0.0,1029.475833,0.0,94.43333333,2.644583333,0.98875,238.05197706666664 -2015-04-01 20:00:00,0.0,1029.804167,0.0,95.10833333,2.553083333,0.721583333,238.05182803333332 -2015-04-01 21:00:00,0.0,1030.463333,0.0,96.89166667,2.915,0.76025,238.0517504333333 -2015-04-01 22:00:00,0.0,1030.8075,0.0,96.75,2.941833333,0.678083333,238.0516494333333 -2015-04-01 23:00:00,0.0,1030.713333,0.0,97.56666667,2.90025,1.3754166669999999,238.0516494333333 -2015-05-01 00:00:00,0.0,1030.695,0.0,96.75,2.738333333,1.049833333, -2015-05-01 01:00:00,0.0,1030.533333,0.0,97.125,2.759583333,0.981, -2015-05-01 02:00:00,0.0,1030.38,0.0,96.525,2.6335,1.1634166670000001, -2015-05-01 03:00:00,0.0,1030.1375,0.0,97.53333333,1.9504166669999998,1.00775, -2015-05-01 04:00:00,0.0,1029.860833,0.0,96.99166667,0.77225,0.21025, -2015-05-01 05:00:00,0.0,1029.771667,0.0,97.74166667,0.981083333,1.0270000000000001, -2015-05-01 06:00:00,0.0,1029.379167,0.0,98.08333333,0.339916667,0.4995, -2015-05-01 07:00:00,0.0,1028.943333,0.0,97.05,-1.460833333,0.19399999999999998, -2015-05-01 08:00:00,0.0,1028.9308330000001,3.577416667,98.11666667,-1.968833333,0.257583333, -2015-05-01 09:00:00,0.0,1028.69,18.24,97.93333333,-0.081666667,0.110333333, -2015-05-01 10:00:00,0.0,1028.244167,66.73833333,95.05833333,1.661583333,1.065083333, -2015-05-01 11:00:00,0.0,1028.066667,105.8075,90.775,2.689166667,1.206583333, -2015-05-01 12:00:00,0.0,1027.6525,151.55833330000002,88.975,3.48975,1.442666667, -2015-05-01 13:00:00,0.0,1026.7566669999999,159.875,86.06666667,4.25575,1.320916667, -2015-05-01 14:00:00,0.0,1026.446667,128.6416667,82.7,4.734083333,1.210916667, -2015-05-01 15:00:00,0.0,1026.048333,81.20083333,84.66666667,4.083583333,1.05375, -2015-05-01 16:00:00,0.0,1025.336667,9.257833332999999,89.2,1.88625,0.38641666700000005, -2015-05-01 17:00:00,0.0,1024.933333,0.137166667,97.30833333,-0.50625,0.083083333, -2015-05-01 18:00:00,0.0,1024.808333,0.0,99.775,-1.381666667,0.058583333, -2015-05-01 19:00:00,0.0,1024.874167,0.0,100.0,-2.104833333,0.13275, -2015-05-01 20:00:00,0.0,1024.563333,0.0,100.0,-2.6415,0.082416667, -2015-05-01 21:00:00,0.0,1024.324167,0.0,100.0,-3.110833333,0.041583333, -2015-05-01 22:00:00,0.0,1024.029167,0.0,100.0,-3.348833333,0.179666667, -2015-05-01 23:00:00,0.0,1023.758333,0.0,100.0,-3.818,0.062083333, -2015-06-01 00:00:00,0.0,1023.373333,0.0,100.0,-4.1305,0.071166667,237.7998251833333 -2015-06-01 01:00:00,0.0,1022.715,0.0,100.0,-4.59625,0.025583333,237.80258325 -2015-06-01 02:00:00,0.0,1022.35,0.0,100.0,-4.86125,0.06075,237.80223850000002 -2015-06-01 03:00:00,0.0,1022.0375,0.0,100.0,-4.960416667,0.007416666999999999,237.80413463333332 -2015-06-01 04:00:00,0.0,1021.643333,0.0,100.0,-4.63325,0.0,237.80516886666666 -2015-06-01 05:00:00,0.0,1021.215,0.0,100.0,-4.331416667,0.00225,237.80775454999994 -2015-06-01 06:00:00,0.0,1020.826667,0.0,100.0,-3.47175,0.04325,237.80947831666663 -2015-06-01 07:00:00,0.0,1020.535833,0.0,100.0,-2.80225,0.05825,237.8079269333333 -2015-06-01 08:00:00,0.0,1020.414167,5.356916667,100.0,-2.36125,0.6970833329999999,237.8074098 -2015-06-01 09:00:00,0.0,1020.469167,33.90166667,100.0,-2.329583333,0.707916667,237.80689269999996 -2015-06-01 10:00:00,0.0,1020.3075,51.3825,100.0,-2.147166667,0.631916667,237.80999543333334 -2015-06-01 11:00:00,0.0,1019.968333,59.0975,100.0,-2.0965,0.9219166670000001,237.81102968333335 -2015-06-01 12:00:00,0.0,1019.3425,67.87166667,100.0,-1.83,0.29225,237.81913138333334 -2015-06-01 13:00:00,0.0,1018.715,64.15833333,100.0,-1.3713333330000002,0.44541666700000004,237.8179247666667 -2015-06-01 14:00:00,0.0,1018.146667,53.86083333,100.0,-1.26675,0.908083333,237.81585625000002 -2015-06-01 15:00:00,0.0,1017.991667,25.20583333,100.0,-1.384166667,0.966916667,237.81309819999998 -2015-06-01 16:00:00,0.0,1017.898333,5.105916667,100.0,-1.58375,0.8028333329999999,237.8084440333333 -2015-06-01 17:00:00,0.0,1017.664167,0.02725,100.0,-1.6513333330000002,0.588833333,237.8087887833333 -2015-06-01 18:00:00,0.0,1017.9325,0.0,100.0,-1.6624166669999998,0.36616666700000006,237.80947831666666 -2015-06-01 19:00:00,0.0,1018.1916669999999,0.0,100.0,-1.694666667,0.410083333,237.80982306666667 -2015-06-01 20:00:00,0.0,1018.6425,0.0,100.0,-1.888916667,0.203083333,237.81206398333333 -2015-06-01 21:00:00,0.0,1018.7225,0.0,100.0,-2.119916667,0.666083333,237.81396011666666 -2015-06-01 22:00:00,0.0,1019.036667,0.0,100.0,-1.97475,0.627916667,237.81568388333335 -2015-06-01 23:00:00,0.0,1019.3708330000001,0.0,100.0,-1.7184166669999998,0.944416667,237.81706291666669 -2015-07-01 00:00:00,0.0,1019.748333,0.0,100.0,-1.43125,0.93975,237.65158126666665 -2015-07-01 01:00:00,0.0,1019.925,0.0,100.0,-1.1045,0.7015,237.65537358333333 -2015-07-01 02:00:00,0.0,1020.185,0.0,100.0,-0.5944166670000001,0.528,237.65830396666664 -2015-07-01 03:00:00,0.0,1020.475,0.0,100.0,-0.470416667,0.259583333,237.66037246666667 -2015-07-01 04:00:00,0.0,1021.015833,0.0,100.0,-0.24825,0.22125,237.66433715000002 -2015-07-01 05:00:00,0.0,1021.581667,0.0,100.0,0.63675,0.366333333,237.66399238333335 -2015-07-01 06:00:00,0.0,1021.8925,0.0,100.0,1.1315,1.084083333,237.66433713333333 -2015-07-01 07:00:00,0.0,1022.020833,0.0,100.0,1.0545,0.763833333,237.66416478333335 -2015-07-01 08:00:00,0.0,1023.076667,3.728,100.0,0.790666667,0.204,237.6638200166667 -2015-07-01 09:00:00,0.0,1024.2425,12.40083333,100.0,1.3934166669999999,0.877,237.65726971666666 -2015-07-01 10:00:00,0.0,1024.4475,45.27083333,100.0,1.9935833330000001,1.192083333,237.64589286666668 -2015-07-01 11:00:00,15.02920063,1024.566667,74.26416667,99.99166667,2.555916667,1.527,237.6348607333333 -2015-07-01 12:00:00,0.0,1024.349167,151.85,97.025,3.7985,0.8733333329999999,237.62917233333334 -2015-07-01 13:00:00,0.0,1024.108333,128.68833329999998,97.09166667,4.2678333330000005,1.215,237.62348386666665 -2015-07-01 14:00:00,0.0,1024.211667,47.0525,96.79166667,3.609833333,0.920416667,237.61796783333332 -2015-07-01 15:00:00,0.0,1024.25,29.13416667,97.88333333,2.66125,0.5840833329999999,237.61331365 -2015-07-01 16:00:00,0.0,1024.39,5.61425,97.61666667,1.591083333,0.36258333299999995,237.60969375000002 -2015-07-01 17:00:00,0.0,1024.625,0.041333333,96.01666667,2.178833333,1.3495,237.60693573333333 -2015-07-01 18:00:00,0.0,1024.5775,0.0,96.075,2.0285,0.802,237.60590146666667 -2015-07-01 19:00:00,0.0,1024.445833,0.0,93.76666667,2.155166667,0.86125,237.60590146666667 -2015-07-01 20:00:00,0.0,1024.185833,0.0,93.50833333,2.026833333,0.807416667,237.60848711666665 -2015-07-01 21:00:00,0.0,1023.980833,0.0,94.48333333,1.71925,0.854083333,237.61365841666668 -2015-07-01 22:00:00,0.0,1023.9991669999999,0.0,95.38333333,1.60175,1.302333333,237.61762305000002 -2015-07-01 23:00:00,0.0,1023.8708330000001,0.0,94.69166667,1.49075,1.11725,237.62193248333332 -2015-08-01 00:00:00,0.0,1023.3741669999999,0.0,93.65,1.522666667,1.0140833329999999,237.50293601666667 -2015-08-01 01:00:00,0.0,1022.775833,0.0,94.49166667,1.156666667,0.906083333,237.50572388333333 -2015-08-01 02:00:00,0.0,1022.385,0.0,96.95833333,1.162916667,0.760416667,237.50906935 -2015-08-01 03:00:00,0.0,1021.726667,0.0,98.14166667,1.2651666670000001,0.7315,237.51311176666664 -2015-08-01 04:00:00,0.0,1021.388333,0.0,95.71666667,1.959916667,0.9059166670000001,237.51478448333333 -2015-08-01 05:00:00,3.0610283039999997,1020.976667,0.0,96.08333333,3.10075,1.6225,237.51799053333332 -2015-08-01 06:00:00,0.0,1020.6883330000001,0.0,97.31666667,2.925416667,1.4196666669999998,237.52105721666666 -2015-08-01 07:00:00,8.086352783999999,1020.420833,0.0,98.15833333,2.5426666669999998,1.058666667,237.52286931666663 -2015-08-01 08:00:00,2.494829304,1020.241667,0.707833333,97.66666667,2.911666667,0.7675833329999999,237.52440263333332 -2015-08-01 09:00:00,10.48868472,1020.065833,13.15975,97.43333333,3.790833333,1.063083333,237.52049961666663 -2015-08-01 10:00:00,2.719686528,1019.509167,51.88333333,96.325,5.0591666669999995,1.56675,237.50948753333333 -2015-08-01 11:00:00,0.0,1018.833333,80.86583333,94.575,6.266833332999999,1.3155,237.49945115000003 -2015-08-01 12:00:00,0.0,1017.92,38.7725,93.95833333,6.923083332999999,1.3625833330000001,237.48606936666667 -2015-08-01 13:00:00,12.29275764,1016.9225,23.135,97.65,6.814583333,1.7996666669999999,237.47756635 -2015-08-01 14:00:00,9.207920496,1015.878333,11.37866667,97.575,7.065416667,1.8625,237.47254816666668 -2015-08-01 15:00:00,6.477576072000001,1014.988333,4.78725,96.31666667,7.91775,2.2945,237.47115424999996 -2015-08-01 16:00:00,19.75253698,1014.5675,1.610916667,96.65,8.15,2.30525,237.46948151666666 -2015-08-01 17:00:00,19.22066573,1014.4375,0.0,97.55833333,8.125333333,2.382083333,237.46780880000003 -2015-08-01 18:00:00,40.50383086,1013.8741669999999,0.0,97.15833333,8.42,2.782166667,237.46460273333332 -2015-08-01 19:00:00,48.89274408,1014.519167,0.0,97.28333333,8.485,3.231666667,237.46418455000003 -2015-08-01 20:00:00,0.0,1018.069167,0.0,92.96666667,7.34725,2.967166667,237.46808758333336 -2015-08-01 21:00:00,0.0,1020.88,0.0,94.40833333,6.3848333329999996,2.680416667,237.47199058333334 -2015-08-01 22:00:00,0.0,1022.445833,0.0,94.575,5.9539166670000006,1.562416667,237.47603303333335 -2015-08-01 23:00:00,0.0,1023.340833,0.0,93.75833333,5.992583333,2.091916667,237.4814693666667 -2015-09-01 00:00:00,0.0,1023.825,0.0,96.49166667,5.69775,2.036083333,237.51079239999999 -2015-09-01 01:00:00,0.0,1023.405833,0.0,96.15833333,5.567833332999999,1.9895833330000001,237.5135843833333 -2015-09-01 02:00:00,0.0,1023.068333,0.0,95.39166667,5.264416667,1.8895,237.51637631666665 -2015-09-01 03:00:00,0.0,1023.305,0.0,93.95833333,5.251,1.7184166669999998,237.51978870000002 -2015-09-01 04:00:00,0.0,1023.2175,0.0,92.86666667,5.873666667,1.137833333,237.52056425 -2015-09-01 05:00:00,0.0,1022.1175,0.0,92.50833333,5.822583333,1.13,237.52397661666666 -2015-09-01 06:00:00,0.0,1020.2025,0.0,89.21666667,6.4565,1.956166667,237.52645831666666 -2015-09-01 07:00:00,0.0,1018.576667,0.0,85.69166667,6.9505,2.905916667,237.52956046666668 -2015-09-01 08:00:00,0.0,1017.599167,2.23425,85.71666667,7.415833332999999,3.992666667,237.53173200000003 -2015-09-01 09:00:00,4.405913136000001,1016.228333,23.39391667,84.2,7.975333332999999,4.00475,237.53405863333333 -2015-09-01 10:00:00,0.0,1015.0525,40.26583333,83.45833333,8.598333333,4.6285,237.5371608 -2015-09-01 11:00:00,0.0,1014.84,18.95833333,86.23333333,8.586666667000001,4.622166667,237.54103848333338 -2015-09-01 12:00:00,0.0,1014.134167,25.00916667,88.44166667,8.609166667,3.838083333,237.54336510000005 -2015-09-01 13:00:00,0.0,1013.090833,30.88666667,88.74166667,9.089166667,4.287416667,237.54786326666667 -2015-09-01 14:00:00,0.0,1012.4325,47.01083333,87.43333333,9.799166667,4.609916667,237.5563942166667 -2015-09-01 15:00:00,0.0,1012.288333,44.42166667,87.63333333,10.185,3.2035,237.5604270166667 -2015-09-01 16:00:00,0.0,1013.0075,10.34183333,87.29166667,10.41166667,2.8193333330000003,237.56399453333336 -2015-09-01 17:00:00,0.0,1013.970833,0.047916667,80.6475,10.46583333,2.9268333330000003,237.56694158333335 -2015-09-01 18:00:00,0.0,1013.885833,0.0,71.81583333,10.3125,3.557583333,237.57004371666667 -2015-09-01 19:00:00,3.4794374880000003,1013.131667,0.0,79.83583333,9.424166667,2.309166667,237.57004371666665 -2015-09-01 20:00:00,14.81046662,1011.341667,0.0,93.35,7.789083333,1.8893333330000002,237.57237031666668 -2015-09-01 21:00:00,13.76723318,1010.37,0.0,98.68333333,8.09125,1.4818333330000002,237.57392141666665 -2015-09-01 22:00:00,17.18321076,1009.336667,0.0,99.98333333,8.856666667,1.5385,237.57562760000005 -2015-09-01 23:00:00,22.91013614,1008.849167,0.0,100.0,9.880833333,2.620833333,237.57764401666665 -2015-10-01 00:00:00,10.990914,1008.65,0.0,100.0,11.00416667,3.2445,237.58601986666667 -2015-10-01 01:00:00,4.155659568,1008.519167,0.0,99.98333333,11.77166667,3.538916667,237.58710561666666 -2015-10-01 02:00:00,0.0,1008.625,0.0,99.94166667,12.0375,2.949,237.58834650000003 -2015-10-01 03:00:00,3.3433117439999998,1008.800833,0.0,98.2,12.39833333,2.479,237.59098331666667 -2015-10-01 04:00:00,0.0,1009.198333,0.0,94.21666667,13.21916667,2.653083333,237.59237931666667 -2015-10-01 05:00:00,0.0,1009.074167,0.0,91.63333333,13.53333333,2.5605833330000003,237.59330995000002 -2015-10-01 06:00:00,0.0,1008.628333,0.0,90.25833333,13.72,3.21875,237.59175886666665 -2015-10-01 07:00:00,0.0,1007.951667,0.0,89.2,14.37083333,3.918,237.59222420000003 -2015-10-01 08:00:00,0.0,1007.775,1.86975,85.33333333,14.03583333,3.97275,237.59237929999998 -2015-10-01 09:00:00,0.0,1007.216667,18.73366667,83.75,13.89083333,4.3245,237.59346505 -2015-10-01 10:00:00,0.0,1007.190833,84.655,80.52583333,14.42916667,4.509333333,237.59222418333334 -2015-10-01 11:00:00,0.0,1007.334167,117.30666670000001,78.1525,14.53083333,4.7675,237.59051799999997 -2015-10-01 12:00:00,0.0,1006.234167,122.49166670000001,77.20583333,14.40833333,5.110333333,237.58834648333334 -2015-10-01 13:00:00,0.0,1005.425833,65.49,77.24583333,14.03083333,4.888333333,237.58400344999998 -2015-10-01 14:00:00,0.0,1004.239167,44.71833333,77.87166667,13.64,4.4553333330000005,237.5791951 -2015-10-01 15:00:00,0.0,1004.5666669999999,21.235,83.55833333,12.96583333,4.617333333,237.57748890000002 -2015-10-01 16:00:00,0.0,1004.575,5.775,88.25,12.3825,4.506083333,237.5771786833333 -2015-10-01 17:00:00,12.87401774,1004.609167,0.07741666700000001,92.68333333,11.77833333,4.323583333,237.57578268333336 -2015-10-01 18:00:00,81.82918092,1006.800833,0.0,91.025,10.11083333,4.222333333,237.57655825000003 -2015-10-01 19:00:00,0.0,1008.605833,0.0,85.525,8.431666667,2.7824166669999997,237.57702358333333 -2015-10-01 20:00:00,0.0,1009.389167,0.0,82.4,7.87225,2.9083333330000003,237.57779911666668 -2015-10-01 21:00:00,0.0,1009.645833,0.0,83.60833333,7.351,2.790916667,237.57888488333333 -2015-10-01 22:00:00,0.0,1009.983333,0.0,80.66,6.582333332999999,2.742333333,237.57841956666667 -2015-10-01 23:00:00,0.0,1010.178333,0.0,76.82083333,5.507083333,2.4148333330000002,237.577644 -2015-11-01 00:00:00,0.0,1010.2925,0.0,76.7775,4.63675,1.7676666669999999,237.7245804833333 -2015-11-01 01:00:00,0.0,1010.2,0.0,77.2075,3.9805833330000002,1.3646666669999998,237.72411565000002 -2015-11-01 02:00:00,0.0,1010.116667,0.0,78.48,3.6101666669999997,1.36825,237.7250453 -2015-11-01 03:00:00,0.0,1009.940833,0.0,80.765,2.696,1.160083333,237.72427058333332 -2015-11-01 04:00:00,0.0,1009.721667,0.0,82.35,2.430166667,1.305916667,237.72256625 -2015-11-01 05:00:00,0.0,1009.4875,0.0,83.30833333,2.69725,1.5615833330000002,237.72303108333332 -2015-11-01 06:00:00,0.0,1009.340833,0.0,83.01666667,2.878833333,2.066083333,237.72489038333333 -2015-11-01 07:00:00,0.0,1009.791667,0.0,82.88333333,3.114666667,2.336833333,237.72365085 -2015-11-01 08:00:00,0.0,1010.0825,3.369333333,81.18333333,3.275583333,2.5093333330000003,237.72132671666668 -2015-11-01 09:00:00,0.0,1011.049167,30.975,82.1475,3.477416667,2.931083333,237.7205519833333 -2015-11-01 10:00:00,0.0,1011.606667,120.1475,80.45416667,4.145916667,3.00525,237.71915751666666 -2015-11-01 11:00:00,2.866109928,1012.376667,48.81916667,84.1125,4.015416667,2.67975,237.71946738333335 -2015-11-01 12:00:00,0.0,1013.0825,54.16416667,85.47833333,3.7715,2.3135,237.71869268333333 -2015-11-01 13:00:00,0.0,1013.568333,63.475,79.96083333,4.449333333,2.9123333330000003,237.7194674166667 -2015-11-01 14:00:00,3.3438269039999997,1014.113333,26.75833333,80.08916667,4.046333333,2.5918333330000003,237.72039706666666 -2015-11-01 15:00:00,0.0,1014.751667,14.36,76.0325,4.570083333,3.195583333,237.72086189999996 -2015-11-01 16:00:00,0.0,1015.241667,9.7315,74.04333333,4.710416667,3.312166667,237.72318603333335 -2015-11-01 17:00:00,0.0,1015.7475,0.0855,76.5725,4.470083333,3.3443333330000002,237.72612989999996 -2015-11-01 18:00:00,0.0,1016.298333,0.0,77.82833333,4.456,3.163833333,237.72473541666668 -2015-11-01 19:00:00,0.0,1016.619167,0.0,77.55666667,4.34225,3.436666667,237.7247354166667 -2015-11-01 20:00:00,0.0,1016.743333,0.0,82.42916667,4.041583333,3.614666667,237.72582 -2015-11-01 21:00:00,3.9901008960000004,1017.526667,0.0,88.63333333,3.783083333,3.4545,237.7248903666667 -2015-11-01 22:00:00,3.54850368,1017.6525,0.0,94.00833333,3.33025,3.316916667,237.72659475 -2015-11-01 23:00:00,0.0,1017.5583330000001,0.0,95.05833333,3.30475,3.074583333,237.72628484999998 -2015-12-01 00:00:00,0.0,1017.5325,0.0,91.43333333,4.048,2.707,238.18940446666667 -2015-12-01 01:00:00,0.0,1017.2225,0.0,88.40833333,4.74825,2.8610833330000003,238.18646058333334 -2015-12-01 02:00:00,6.437013864,1017.174167,0.0,93.39166667,4.6748333330000005,2.5253333330000003,238.18181234999997 -2015-12-01 03:00:00,3.823510632,1016.6475,0.0,95.04166667,4.508916667,2.86075,238.17747396666664 -2015-12-01 04:00:00,0.0,1016.264167,0.0,92.675,5.01125,2.7089999999999996,238.17313560000002 -2015-12-01 05:00:00,3.5507663999999997,1015.968333,0.0,91.38333333,5.45525,2.7385,238.16817753333336 -2015-12-01 06:00:00,0.0,1015.295,0.0,92.40833333,5.510833333,2.9500833330000003,238.16492376666667 -2015-12-01 07:00:00,0.0,1015.2975,0.0,89.34166667,5.70725,2.9645,238.16244468333332 -2015-12-01 08:00:00,0.0,1015.1916669999999,1.084166667,87.43333333,5.944166667,3.2341666669999998,238.16817751666667 -2015-12-01 09:00:00,0.0,1015.270833,9.6875,85.69166667,6.0725,3.338333333,238.1768542166667 -2015-12-01 10:00:00,0.0,1015.270833,38.25,83.94166667,6.2975833329999995,3.7030000000000003,238.18212223333333 -2015-12-01 11:00:00,0.0,1014.906667,88.33416667,82.95,6.687416667000001,3.592166667,238.18243210000003 -2015-12-01 12:00:00,0.0,1014.553333,88.48833333,88.575,6.590666667000001,4.26775,238.18227715 -2015-12-01 13:00:00,0.0,1013.844167,36.33916667,90.80833333,6.0148333329999994,3.0028333330000003,238.18274198333336 -2015-12-01 14:00:00,0.0,1013.323333,19.055,86.075,6.41775,2.592166667,238.18553093333333 -2015-12-01 15:00:00,0.0,1013.159167,11.76975,84.31666667,6.827583333,3.009,238.19064401666665 -2015-12-01 16:00:00,0.0,1013.525,3.327,88.54166667,6.622333332999999,3.0575,238.19792621666667 -2015-12-01 17:00:00,0.0,1012.956667,0.1005,89.625,6.4851666670000006,2.808666667,238.20179976666668 -2015-12-01 18:00:00,0.0,1012.568333,0.0,87.925,6.768916667,2.76475,238.20179975 -2015-12-01 19:00:00,0.0,1012.508333,0.0,84.98333333,7.24,2.35,238.20133493333333 -2015-12-01 20:00:00,0.0,1012.190833,0.0,83.65,7.48025,2.3216666669999997,238.19699658333332 -2015-12-01 21:00:00,0.0,1012.0775,0.0,84.45833333,7.574333332999999,2.287583333,238.19312306666666 -2015-12-01 22:00:00,0.0,1011.991667,0.0,83.775,7.601833332999999,2.547333333,238.1880100333333 -2015-12-01 23:00:00,0.0,1011.581667,0.0,82.98333333,7.393583333,2.698083333,238.18243210000003 -2015-01-13 00:00:00,0.0,1010.984167,0.0,82.35833333,7.427166667000001,2.433583333, -2015-01-13 01:00:00,0.0,1010.373333,0.0,82.9,7.37,2.3025833330000003, -2015-01-13 02:00:00,0.0,1010.158333,0.0,82.84166667,8.10575,2.65425, -2015-01-13 03:00:00,0.0,1009.3775,0.0,83.31666667,7.771083332999999,2.3609166669999997, -2015-01-13 04:00:00,0.0,1009.0,0.0,81.26166667,7.904666667000001,2.00975, -2015-01-13 05:00:00,0.0,1008.848333,0.0,78.5925,8.25625,1.666166667, -2015-01-13 06:00:00,0.0,1007.965,0.0,75.6125,6.000083332999999,1.4570833330000001, -2015-01-13 07:00:00,0.0,1007.4125,0.0,73.01333333,6.20025,1.642916667, -2015-01-13 08:00:00,0.0,1007.42,5.24525,75.82166667,8.409166667000001,1.88825, -2015-01-13 09:00:00,0.0,1007.104167,23.75833333,77.0075,8.017333333,2.415, -2015-01-13 10:00:00,0.0,1006.695833,81.48,75.8825,9.423333332999999,2.266333333, -2015-01-13 11:00:00,0.0,1006.155833,114.85833329999998,71.8975,10.03666667,3.0148333330000003, -2015-01-13 12:00:00,0.0,1004.935833,174.7,66.29416667,10.6825,3.767, -2015-01-13 13:00:00,0.0,1003.6125,179.4,62.30833333,11.465,3.4005, -2015-01-13 14:00:00,0.0,1002.534167,109.79916670000001,59.8075,12.29916667,3.1275, -2015-01-13 15:00:00,0.0,1002.3758330000001,29.93,59.2675,12.33916667,2.98425, -2015-01-13 16:00:00,0.0,1003.065833,2.946416667,66.27833333,12.15083333,3.117916667, -2015-01-13 17:00:00,0.0,1003.233333,0.052583332999999996,77.05166667,11.34083333,3.566083333, -2015-01-13 18:00:00,3.704431944,1003.333333,0.0,85.36666667,10.53666667,3.195166667, -2015-01-13 19:00:00,25.88230358,1003.234167,0.0,86.58333333,9.886666667,2.99625, -2015-01-13 20:00:00,36.816325799999994,1003.639167,0.0,92.04166667,9.006666667000001,2.188916667, -2015-01-13 21:00:00,0.0,1003.990833,0.0,93.64166667,8.7225,2.2985833330000003, -2015-01-13 22:00:00,0.0,1004.339167,0.0,89.65,8.536666667,1.409, -2015-01-13 23:00:00,0.0,1004.444167,0.0,87.58333333,8.2725,1.185583333, -2015-01-14 00:00:00,0.0,1004.095833,0.0,86.475,8.115833333,1.297666667, -2015-01-14 01:00:00,3.226725576,1003.763333,0.0,89.50833333,7.943416667,1.725333333, -2015-01-14 02:00:00,0.0,1003.4825,0.0,90.725,7.495333333,1.353833333, -2015-01-14 03:00:00,9.184208256,1003.04,0.0,90.01666667,7.474583332999999,1.9955, -2015-01-14 04:00:00,0.0,1002.679167,0.0,82.76166667,8.026166667,2.834166667, -2015-01-14 05:00:00,48.62849657,1003.43,0.0,82.56916667,7.459083333,3.6789166669999998, -2015-01-14 06:00:00,0.0,1005.2175,0.0,91.54166667,4.71075,2.0659166669999998, -2015-01-14 07:00:00,0.0,1005.8741669999999,0.0,90.93333333,4.009583333,1.9519166669999999, -2015-01-14 08:00:00,0.0,1005.98,3.34775,86.41666667,4.31975,2.4428333330000003, -2015-01-14 09:00:00,0.0,1006.03,25.83833333,85.46666667,4.33675,2.317583333, -2015-01-14 10:00:00,0.0,1007.0375,64.54666667,83.125,5.1210833330000005,3.158833333, -2015-01-14 11:00:00,0.0,1006.925,82.5675,82.69166667,5.631333333,2.3795833330000002, -2015-01-14 12:00:00,0.0,1005.455,171.55833330000002,78.93166667,6.82725,2.525833333, -2015-01-14 13:00:00,19.55560603,1005.130833,30.5375,83.84416667,6.339166667000001,3.008083333, -2015-01-14 14:00:00,32.85468938,1004.94,46.50583333,95.075,4.178083333,2.8080000000000003, -2015-01-14 15:00:00,0.0,1004.555,20.43833333,92.78333333,4.579333333,2.850666667, -2015-01-14 16:00:00,41.29726546,1006.1075,8.71625,96.325,3.304583333,2.90825, -2015-01-14 17:00:00,0.0,1007.731667,0.160083333,95.20833333,3.142083333,1.7849166669999998, -2015-01-14 18:00:00,2.773548888,1009.045,0.0,93.4,3.11125,1.4196666669999998, -2015-01-14 19:00:00,0.0,1010.205833,0.0,91.19166667,2.5604166669999997,0.8098333329999999, -2015-01-14 20:00:00,0.0,1011.0325,0.0,92.05,2.032833333,1.434666667, -2015-01-14 21:00:00,0.0,1011.509167,0.0,91.76666667,2.167416667,1.6970833330000001, -2015-01-14 22:00:00,0.0,1011.858333,0.0,91.04166667,2.613083333,2.192166667, -2015-01-14 23:00:00,0.0,1011.3,0.0,90.41666667,2.83925,1.7256666669999998, -2015-01-15 00:00:00,0.0,1010.335833,0.0,88.8,1.120416667,0.15366666699999998, -2015-01-15 01:00:00,0.0,1009.0975,0.0,89.425,1.006083333,1.16925, -2015-01-15 02:00:00,0.0,1007.943333,0.0,94.78333333,1.329083333,0.7805833329999999, -2015-01-15 03:00:00,0.0,1006.61,0.0,98.23333333,2.352083333,2.222, -2015-01-15 04:00:00,0.0,1005.335833,0.0,92.15,3.372,3.734333333, -2015-01-15 05:00:00,0.0,1004.294167,0.0,91.53333333,4.28425,4.583666667, -2015-01-15 06:00:00,0.0,1003.19,0.0,88.4,4.671666667,3.770166667, -2015-01-15 07:00:00,0.0,1002.4775,0.0,84.89166667,5.981833332999999,2.8344166669999997, -2015-01-15 08:00:00,0.0,1002.128333,1.6879166669999999,83.94166667,6.529666667000001,3.1541666669999997, -2015-01-15 09:00:00,3.3484692000000003,1001.82,14.22583333,85.4,7.5405,3.0155, -2015-01-15 10:00:00,3.160382448,1001.195833,50.00833333,83.70833333,8.045416667000001,2.5436666669999997, -2015-01-15 11:00:00,0.0,1000.6325,145.025,80.99166667,9.040833333,3.0060833330000003, -2015-01-15 12:00:00,0.0,999.9891667000002,99.28916667,80.245,8.976666667,3.0915, -2015-01-15 13:00:00,0.0,999.145,82.7125,77.54583333,9.599166667,3.6960833330000002, -2015-01-15 14:00:00,0.0,998.3983332999999,95.57666667,75.91166667,10.04666667,3.09075, -2015-01-15 15:00:00,0.0,998.0791667000001,44.76083333,74.18666667,9.526666667,2.9005, -2015-01-15 16:00:00,0.0,997.6333332999999,9.718583333,71.16583333,9.184166667000001,3.74025, -2015-01-15 17:00:00,0.0,997.5408332999999,0.0855,71.135,9.6275,2.813166667, -2015-01-15 18:00:00,0.0,997.3991667000001,0.0,71.285,10.53166667,2.72975, -2015-01-15 19:00:00,0.0,997.3425,0.0,71.60916667,10.62833333,3.0173333330000003, -2015-01-15 20:00:00,0.0,997.5616667000002,0.0,72.6725,10.42583333,2.869583333, -2015-01-15 21:00:00,0.0,997.8758332999998,0.0,73.7625,10.545,2.299833333, -2015-01-15 22:00:00,0.0,998.0225,0.0,77.31333333,10.00083333,1.8946666669999999, -2015-01-15 23:00:00,0.0,998.3791667000002,0.0,79.54916667,9.82,2.731583333, -2015-01-16 00:00:00,3.51538188,998.96,0.0,86.19166667,9.055,3.0506666669999998, -2015-01-16 01:00:00,0.0,999.3541667000002,0.0,88.38333333,8.5225,2.7605, -2015-01-16 02:00:00,5.898697512000001,1000.260833,0.0,91.375,8.237166667,2.068166667, -2015-01-16 03:00:00,6.2702512079999995,1000.770833,0.0,92.81666667,7.480666667,2.4925, -2015-01-16 04:00:00,0.0,1001.016667,0.0,91.81666667,7.231333332999999,2.123, -2015-01-16 05:00:00,0.0,1001.2625,0.0,92.625,6.79825,1.7989166669999999, -2015-01-16 06:00:00,0.0,1001.7425,0.0,93.51666667,5.704916667000001,1.428083333, -2015-01-16 07:00:00,0.0,1002.0725,0.0,93.35833333,5.501333333,1.969416667, -2015-01-16 08:00:00,0.0,1002.3375,2.084166667,95.975,5.425916667,1.063916667, -2015-01-16 09:00:00,0.0,1002.388333,16.38833333,95.8,5.346583333,1.303083333, -2015-01-16 10:00:00,0.0,1002.420833,28.94583333,94.1,5.447583333,0.673166667, -2015-01-16 11:00:00,0.0,1002.705,37.07666667,92.11666667,5.796416667000001,0.311083333, -2015-01-16 12:00:00,0.0,1002.658333,56.5325,90.91666667,6.120833332999999,0.862666667, -2015-01-16 13:00:00,2.48485596,1002.300833,37.75583333,95.2,6.198166667000001,0.561333333, -2015-01-16 14:00:00,0.0,1001.789167,37.03416667,95.825,5.685083333,1.756083333, -2015-01-16 15:00:00,0.0,1001.685,24.02416667,95.81666667,5.540833332999999,0.84325, -2015-01-16 16:00:00,0.0,1001.435,7.239916667,98.73333333,5.249916667,0.773333333, -2015-01-16 17:00:00,0.0,1001.479167,0.132833333,99.375,4.931833333,0.40183333299999996, -2015-01-16 18:00:00,2.472611976,1001.583333,0.0,99.98333333,4.743416667,0.0835, -2015-01-16 19:00:00,0.0,1001.7508330000001,0.0,100.0,4.590166667,0.03175, -2015-01-16 20:00:00,0.0,1001.7325,0.0,100.0,4.561083333,0.081, -2015-01-16 21:00:00,2.5124682000000003,1002.026667,0.0,100.0,4.49125,0.386166667, -2015-01-16 22:00:00,4.8765776160000005,1002.409167,0.0,100.0,4.37425,0.231583333, -2015-01-16 23:00:00,0.0,1002.9991669999999,0.0,100.0,4.1635,0.423416667, -2015-01-17 00:00:00,2.4155214480000002,1003.405833,0.0,99.96666667,4.001916667,0.222583333, -2015-01-17 01:00:00,0.0,1003.88,0.0,99.90833333,3.8816666669999997,0.39925, -2015-01-17 02:00:00,0.0,1004.395833,0.0,98.71666667,3.762166667,0.86725, -2015-01-17 03:00:00,0.0,1005.115833,0.0,98.23333333,3.800166667,1.2690000000000001, -2015-01-17 04:00:00,0.0,1005.069167,0.0,98.34166667,3.987666667,0.41808333299999995, -2015-01-17 05:00:00,0.0,1005.969167,0.0,97.66666667,4.146916667,1.172916667, -2015-01-17 06:00:00,0.0,1006.7975,0.0,97.91666667,4.18025,1.1855, -2015-01-17 07:00:00,0.0,1007.579167,0.0,95.36666667,3.891916667,0.852916667, -2015-01-17 08:00:00,0.0,1008.094167,5.960083332999999,98.01666667,2.4130000000000003,0.15283333300000002, -2015-01-17 09:00:00,0.0,1008.895,36.37166667,100.0,1.8419166669999998,0.21508333300000002, -2015-01-17 10:00:00,0.0,1009.358333,90.12083333,96.04166667,3.404416667,0.640166667, -2015-01-17 11:00:00,0.0,1010.098333,111.23333329999998,91.45,4.3785,0.8716666670000001, -2015-01-17 12:00:00,0.0,1010.3175,151.3416667,84.90833333,5.250916667,0.9780833329999999, -2015-01-17 13:00:00,0.0,1010.3825,140.7166667,79.48666667,5.855083333,1.05325, -2015-01-17 14:00:00,0.0,1010.355833,67.785,77.67416667,5.011,1.579, -2015-01-17 15:00:00,0.0,1010.6375,55.76333333,78.2225,4.798083333,1.071833333, -2015-01-17 16:00:00,0.0,1010.905833,14.70558333,83.025,4.159666667,0.6559166670000001, -2015-01-17 17:00:00,0.0,1011.273333,0.300166667,87.03333333,3.457833333,0.773666667, -2015-01-17 18:00:00,0.0,1011.371667,0.0,95.98333333,1.199083333,0.10333333300000001, -2015-01-17 19:00:00,0.0,1011.520833,0.0,99.73333333,-0.5265833329999999,0.08800000000000001, -2015-01-17 20:00:00,0.0,1011.764167,0.0,100.0,-1.33075,0.011666667, -2015-01-17 21:00:00,0.0,1012.0008330000001,0.0,99.01666667,-2.0695,0.0, -2015-01-17 22:00:00,0.0,1012.354167,0.0,92.73333333,-2.5386666669999998,0.03925, -2015-01-17 23:00:00,0.0,1012.591667,0.0,95.23333333,-2.85525,0.032333333, -2015-01-18 00:00:00,0.0,1012.466667,0.0,91.61666667,-1.234083333,0.643416667, -2015-01-18 01:00:00,0.0,1012.4075,0.0,91.325,-0.532416667,0.7290000000000001, -2015-01-18 02:00:00,0.0,1012.221667,0.0,98.98333333,-2.412416667,0.01, -2015-01-18 03:00:00,0.0,1012.116667,0.0,91.68333333,-1.724,0.608666667, -2015-01-18 04:00:00,0.0,1011.9775,0.0,87.075,0.235,0.696333333, -2015-01-18 05:00:00,0.0,1011.674167,0.0,85.95833333,-0.284166667,0.9773333329999999, -2015-01-18 06:00:00,0.0,1011.420833,0.0,90.80833333,-1.6434166669999999,0.7735, -2015-01-18 07:00:00,0.0,1011.18,0.00425,99.18333333,-2.161833333,0.838916667, -2015-01-18 08:00:00,0.0,1011.17,6.871416667,100.0,-1.871833333,1.077166667, -2015-01-18 09:00:00,0.0,1011.386667,28.94333333,100.0,-1.5476666669999999,1.225416667, -2015-01-18 10:00:00,0.0,1011.525833,87.81833333,99.96666667,-0.41958333299999995,0.203166667, -2015-01-18 11:00:00,2.8147716,1011.4575,175.91666669999998,85.425,1.60325,1.91125, -2015-01-18 12:00:00,0.0,1011.143333,220.3666667,80.88583333,2.749916667,1.9880000000000002, -2015-01-18 13:00:00,0.0,1010.5175,186.8,76.39416667,3.4495,1.5885, -2015-01-18 14:00:00,0.0,1009.970833,136.6083333,74.97333333,3.2405,1.769166667, -2015-01-18 15:00:00,0.0,1009.6241669999999,100.8,77.77583333,2.839416667,2.665833333, -2015-01-18 16:00:00,0.0,1009.3575,28.55383333,86.64166667,1.432166667,1.119583333, -2015-01-18 17:00:00,0.0,1009.166667,0.85825,97.2,-0.852916667,0.044666667, -2015-01-18 18:00:00,0.0,1009.166667,0.0,99.9,-1.7405,0.079166667, -2015-01-18 19:00:00,0.0,1009.2425,0.0,100.0,-2.304916667,0.107666667, -2015-01-18 20:00:00,0.0,1009.414167,0.0,100.0,-2.885416667,0.09908333300000001, -2015-01-18 21:00:00,0.0,1009.351667,0.0,100.0,-3.3898333330000003,0.055833333, -2015-01-18 22:00:00,0.0,1009.3175,0.0,100.0,-3.351333333,0.045083332999999996, -2015-01-18 23:00:00,0.0,1009.383333,0.0,100.0,-2.3690833330000003,0.023666667000000002, -2015-01-19 00:00:00,0.0,1009.115,0.0,100.0,-2.72675,0.04975, -2015-01-19 01:00:00,0.0,1008.6625,0.0,100.0,-3.214083333,0.015833333, -2015-01-19 02:00:00,0.0,1008.366667,0.0,100.0,-3.137916667,0.060416667, -2015-01-19 03:00:00,0.0,1008.0875,0.0,100.0,-2.985083333,0.021166667000000004, -2015-01-19 04:00:00,0.0,1007.676667,0.0,100.0,-2.159583333,0.09041666699999999, -2015-01-19 05:00:00,0.0,1007.399167,0.0,100.0,-1.692083333,0.0545, -2015-01-19 06:00:00,0.0,1007.166667,0.0,100.0,-1.259666667,0.028916667000000004, -2015-01-19 07:00:00,0.0,1007.016667,0.0,100.0,-1.01,0.005666666999999999, -2015-01-19 08:00:00,0.0,1007.334167,3.67125,100.0,-0.8364999129999999,0.000916667, -2015-01-19 09:00:00,0.0,1007.329167,23.84083333,100.0,-0.6,0.0, -2015-01-19 10:00:00,0.0,1007.1925,94.575,100.0,-0.052166667,0.0325, -2015-01-19 11:00:00,0.0,1006.9958330000001,146.2666667,98.75833333,1.208916667,0.392666667, -2015-01-19 12:00:00,0.0,1006.365,158.92583330000002,92.48333333,3.3874166669999997,0.784416667, -2015-01-19 13:00:00,0.0,1005.906667,140.9325,86.05833333,3.182083333,1.293166667, -2015-01-19 14:00:00,0.0,1005.455,83.8475,88.83333333,2.0739166669999998,1.539333333, -2015-01-19 15:00:00,0.0,1005.35,53.01166667,94.175,1.261083333,0.7533333329999999, -2015-01-19 16:00:00,0.0,1005.385833,11.46225,94.28333333,0.090083333,0.985166667, -2015-01-19 17:00:00,0.0,1005.534167,0.323666667,96.55833333,-0.338916667,0.41775, -2015-01-19 18:00:00,0.0,1005.395833,0.0,98.58333333,-0.331583333,0.374, -2015-01-19 19:00:00,0.0,1005.303333,0.0,98.425,-0.3485,0.36958333299999996, -2015-01-19 20:00:00,0.0,1005.2725,0.0,97.575,-0.26516666699999997,0.236583333, -2015-01-19 21:00:00,0.0,1005.483333,0.0,94.15,-0.16275,0.213916667, -2015-01-19 22:00:00,0.0,1005.3525,0.0,92.54166667,-0.034083333,0.306083333, -2015-01-19 23:00:00,0.0,1005.266667,0.0,92.6,-0.03425,0.02575, -2015-01-20 00:00:00,0.0,1005.283333,0.0,93.94166667,-0.292666667,0.054416667, -2015-01-20 01:00:00,0.0,1005.291667,0.0,94.09166667,-0.5226666670000001,0.0, -2015-01-20 02:00:00,0.0,1005.190833,0.0,95.2,-0.48916666700000005,0.211416667, -2015-01-20 03:00:00,0.0,1005.041667,0.0,95.95,-0.237583333,0.204666667, -2015-01-20 04:00:00,0.0,1004.8575,0.0,97.86666667,-0.29283333300000003,0.378166667, -2015-01-20 05:00:00,0.0,1004.789167,0.0,99.275,-0.424,0.277916667, -2015-01-20 06:00:00,0.0,1004.836667,0.0,99.84166667,-0.47925,0.295666667, -2015-01-20 07:00:00,0.0,1005.223333,0.0,99.91666667,-0.5105833329999999,0.296083333, -2015-01-20 08:00:00,0.0,1005.6208330000001,3.3025833330000003,99.825,-0.470916667,0.34983333299999997, -2015-01-20 09:00:00,0.0,1006.1375,12.90416667,99.25833333,-0.35,0.4515, -2015-01-20 10:00:00,0.0,1006.49,41.12916667,98.3,0.000166667,0.503583333, -2015-01-20 11:00:00,0.0,1006.635833,58.335,96.825,0.3645,0.9375, -2015-01-20 12:00:00,0.0,1006.608333,46.475,96.1,0.678583333,0.909333333, -2015-01-20 13:00:00,0.0,1006.4325,51.56916667,96.24166667,0.705583333,0.805916667, -2015-01-20 14:00:00,0.0,1006.585,68.10583333,94.85833333,1.06425,1.04475, -2015-01-20 15:00:00,0.0,1007.008333,33.98166667,92.06666667,1.128416667,1.064666667, -2015-01-20 16:00:00,0.0,1007.010833,12.13758333,92.34166667,0.91675,0.7899166670000001, -2015-01-20 17:00:00,0.0,1007.048333,0.46925,94.85833333,0.590166667,0.550333333, -2015-01-20 18:00:00,0.0,1007.1525,0.0,96.28333333,0.12275,0.3595, -2015-01-20 19:00:00,0.0,1007.2675,0.0,99.74166667,-1.01075,0.23825, -2015-01-20 20:00:00,0.0,1007.550833,0.0,100.0,-2.097083333,0.25525, -2015-01-20 21:00:00,0.0,1007.708333,0.0,100.0,-3.0171666669999997,0.08458333300000001, -2015-01-20 22:00:00,0.0,1007.875,0.0,100.0,-3.7765,0.09425, -2015-01-20 23:00:00,0.0,1007.930833,0.0,100.0,-4.3550833330000005,0.061833333, -2015-01-21 00:00:00,0.0,1007.9416669999999,0.0,100.0,-5.019,0.0, -2015-01-21 01:00:00,0.0,1007.841667,0.0,100.0,-5.147333333,0.0019166670000000002, -2015-01-21 02:00:00,0.0,1007.85,0.0,100.0,-5.26375,0.0, -2015-01-21 03:00:00,0.0,1007.685,0.0,100.0,-4.48375,0.042333333, -2015-01-21 04:00:00,0.0,1007.471667,0.0,100.0,-3.525,0.090083333, -2015-01-21 05:00:00,0.0,1007.325,0.0,100.0,-3.515166667,0.430666667, -2015-01-21 06:00:00,0.0,1007.219167,0.0,100.0,-4.0418333330000005,0.864583333, -2015-01-21 07:00:00,0.0,1007.2,0.01925,100.0,-4.312833333,0.38891666700000005, -2015-01-21 08:00:00,0.0,1007.3425,4.700416667,100.0,-4.1955,0.10025, -2015-01-21 09:00:00,0.0,1007.6425,43.39666667,100.0,-3.977,0.10166666699999999, -2015-01-21 10:00:00,0.0,1007.889167,76.89583333,100.0,-3.818916667,0.075833333, -2015-01-21 11:00:00,0.0,1007.790833,61.90833333,100.0,-2.820916667,0.10666666699999999, -2015-01-21 12:00:00,0.0,1007.385833,80.67916667,100.0,-1.865833333,0.109166667, -2015-01-21 13:00:00,0.0,1007.2125,50.7975,100.0,-0.831333333,0.011666667, -2015-01-21 14:00:00,0.0,1006.855,50.03416667,99.08333333,-0.41183333299999997,0.31475, -2015-01-21 15:00:00,0.0,1006.6075,25.1575,97.05,-0.14425,0.91825, -2015-01-21 16:00:00,0.0,1006.52,9.681833333,97.30833333,0.18325,0.22008333300000002, -2015-01-21 17:00:00,0.0,1006.463333,0.318416667,98.23333333,0.18283333300000001,0.147416667, -2015-01-21 18:00:00,0.0,1006.720833,0.0,98.45833333,0.274666667,0.192833333, -2015-01-21 19:00:00,0.0,1006.986667,0.0,94.58333333,0.615083333,1.4863333330000001, -2015-01-21 20:00:00,0.0,1007.164167,0.0,93.08333333,0.6589166670000001,1.99025, -2015-01-21 21:00:00,0.0,1007.211667,0.0,93.90833333,0.416833333,2.466583333, -2015-01-21 22:00:00,0.0,1007.673333,0.0,94.09166667,0.128583333,2.579916667, -2015-01-21 23:00:00,0.0,1007.765833,0.0,93.54166667,-0.049916667000000005,2.374333333, -2015-01-22 00:00:00,0.0,1007.583333,0.0,93.69166667,-0.32608333300000003,1.917666667, -2015-01-22 01:00:00,0.0,1007.485833,0.0,96.96666667,-1.320333333,0.606, -2015-01-22 02:00:00,0.0,1007.38,0.0,98.39166667,-1.9285,0.279833333, -2015-01-22 03:00:00,0.0,1007.5175,0.0,95.74166667,-1.706166667,0.252166667, -2015-01-22 04:00:00,0.0,1007.541667,0.0,94.63333333,-1.2215833329999999,1.168916667, -2015-01-22 05:00:00,0.0,1007.8625,0.0,94.375,-1.03625,2.1676666669999998, -2015-01-22 06:00:00,0.0,1008.1225,0.0,94.56666667,-1.087833333,2.601916667, -2015-01-22 07:00:00,0.0,1008.449167,0.0,94.0,-1.018666667,2.5476666669999997, -2015-01-22 08:00:00,0.0,1009.100833,1.0925833329999999,93.45833333,-0.857166667,1.254916667, -2015-01-22 09:00:00,0.0,1009.694167,5.545916667,93.875,-0.6465833329999999,1.7258333330000002, -2015-01-22 10:00:00,0.0,1010.103333,20.23,93.43333333,-0.354833333,2.5655, -2015-01-22 11:00:00,0.0,1010.258333,42.82333333,92.41666667,-0.033083333,2.483083333, -2015-01-22 12:00:00,0.0,1010.241667,50.09583333,91.24166667,0.404583333,1.91525, -2015-01-22 13:00:00,0.0,1010.246667,44.86166667,91.5,0.761416667,2.16775, -2015-01-22 14:00:00,0.0,1010.350833,33.04083333,92.00833333,0.9874166670000001,3.271083333, -2015-01-22 15:00:00,0.0,1010.729167,22.62833333,92.08333333,1.194916667,3.4855, -2015-01-22 16:00:00,0.0,1011.288333,9.01075,92.28333333,1.216333333,3.01625, -2015-01-22 17:00:00,0.0,1011.834167,0.29875,92.03333333,1.100333333,2.9075833330000003, -2015-01-22 18:00:00,0.0,1012.418333,0.0,92.70833333,1.072416667,3.3536666669999997, -2015-01-22 19:00:00,0.0,1012.976667,0.0,92.78333333,1.027833333,3.039916667, -2015-01-22 20:00:00,0.0,1013.5041669999999,0.0,94.39166667,1.000166667,1.6131666669999998, -2015-01-22 21:00:00,0.0,1013.7925,0.0,95.5,0.938333333,1.607666667, -2015-01-22 22:00:00,0.0,1014.134167,0.0,96.43333333,0.885166667,2.003833333, -2015-01-22 23:00:00,0.0,1014.5425,0.0,97.375,0.7959999999999999,2.2799166669999997, -2015-01-23 00:00:00,0.0,1014.7508330000001,0.0,97.78333333,0.766916667,2.3565, -2015-01-23 01:00:00,0.0,1014.995,0.0,97.29166667,0.72175,1.98575, -2015-01-23 02:00:00,0.0,1015.2175,0.0,96.14166667,0.700916667,2.187666667, -2015-01-23 03:00:00,0.0,1015.533333,0.0,96.25,0.676416667,1.5035, -2015-01-23 04:00:00,0.0,1015.6291669999999,0.0,96.75833333,0.6639166670000001,1.729916667, -2015-01-23 05:00:00,0.0,1016.301667,0.0,96.81666667,0.70575,1.9664166669999998, -2015-01-23 06:00:00,0.0,1016.7375,0.0,96.45833333,0.719916667,1.526666667, -2015-01-23 07:00:00,0.0,1017.215,0.0,95.26666667,0.70575,1.811, -2015-01-23 08:00:00,0.0,1017.724167,3.459666667,93.69166667,0.6355,1.168833333, -2015-01-23 09:00:00,0.0,1018.315,22.39166667,91.675,0.7260833329999999,1.183333333, -2015-01-23 10:00:00,0.0,1018.83,75.56083333,89.725,0.834583333,2.014916667, -2015-01-23 11:00:00,0.0,1019.163333,84.39916667,88.95833333,1.04,2.03475, -2015-01-23 12:00:00,0.0,1019.083333,95.10833333,87.9,1.2348333329999999,2.031583333, -2015-01-23 13:00:00,0.0,1019.069167,100.6141667,87.0,1.2411666670000001,2.040916667, -2015-01-23 14:00:00,0.0,1018.9725,82.97166667,85.825,1.699416667,1.383083333, -2015-01-23 15:00:00,0.0,1019.198333,99.58,82.90833333,2.239,1.25475, -2015-01-23 16:00:00,0.0,1019.455833,29.31516667,87.61666667,1.33725,1.6804166669999998, -2015-01-23 17:00:00,0.0,1019.7675,1.330666667,95.85833333,0.1595,1.332666667, -2015-01-23 18:00:00,0.0,1020.1625,0.0,99.39166667,-1.1201666670000001,0.83325, -2015-01-23 19:00:00,0.0,1020.6258330000001,0.0,99.99166667,-1.8735,0.6565, -2015-01-23 20:00:00,0.0,1020.5975,0.0,99.05,-2.044916667,0.2805, -2015-01-23 21:00:00,0.0,1020.660833,0.0,96.45,-1.698916667,0.837583333, -2015-01-23 22:00:00,0.0,1020.638333,0.0,97.36666667,-1.874,0.40333333299999996, -2015-01-23 23:00:00,0.0,1020.376667,0.0,98.28333333,-1.827833333,0.070583333, -2015-01-24 00:00:00,0.0,1019.856667,0.0,99.25,-1.848,0.452166667, -2015-01-24 01:00:00,0.0,1019.226667,0.0,100.0,-2.125916667,0.706916667, -2015-01-24 02:00:00,0.0,1018.698333,0.0,100.0,-2.4754166669999997,0.7968333329999999, -2015-01-24 03:00:00,0.0,1017.99,0.0,100.0,-2.53025,0.82325, -2015-01-24 04:00:00,0.0,1017.4366669999999,0.0,100.0,-2.4365,0.8109999999999999, -2015-01-24 05:00:00,0.0,1016.6866669999999,0.0,99.9,-2.459333333,1.6831666669999998, -2015-01-24 06:00:00,0.0,1016.076667,0.0,99.10833333,-2.4761666669999998,1.8366666669999998, -2015-01-24 07:00:00,0.0,1015.771667,0.006583333,98.05,-2.60625,2.328166667, -2015-01-24 08:00:00,0.0,1015.496667,6.098833332999999,97.475,-2.2805,2.09775, -2015-01-24 09:00:00,0.0,1015.1175,33.27,95.31666667,-1.6580000000000001,1.3653333330000001, -2015-01-24 10:00:00,0.0,1014.889167,44.94333333,93.51666667,-1.029833333,1.033333333, -2015-01-24 11:00:00,0.0,1014.79,56.47083333,91.125,-0.507916667,1.094333333, -2015-01-24 12:00:00,0.0,1014.1208330000001,55.25,90.33333333,0.313083333,1.408916667, -2015-01-24 13:00:00,0.0,1013.8166669999999,43.68166667,93.98333333,0.40575,1.089583333, -2015-01-24 14:00:00,0.0,1013.75,34.2325,99.95833333,0.275916667,0.5655, -2015-01-24 15:00:00,0.0,1013.948333,17.85833333,100.0,0.32658333300000003,0.181166667, -2015-01-24 16:00:00,2.3865511440000002,1014.365,7.633666667000001,100.0,0.368333333,0.0, -2015-01-24 17:00:00,0.0,1014.968333,0.559416667,100.0,0.078,0.016583333000000002, -2015-01-24 18:00:00,0.0,1015.841667,0.0,100.0,0.08408333300000001,0.21991666699999998, -2015-01-24 19:00:00,0.0,1016.8275,0.0,100.0,0.34233333299999996,0.064666667, -2015-01-24 20:00:00,0.0,1017.61,0.0,100.0,0.843,0.7414166670000001, -2015-01-24 21:00:00,0.0,1018.296667,0.0,100.0,0.829583333,0.9015, -2015-01-24 22:00:00,0.0,1018.545833,0.0,100.0,-0.317666667,0.47875, -2015-01-24 23:00:00,0.0,1019.318333,0.0,100.0,0.021,0.938333333, -2015-01-25 00:00:00,0.0,1019.706667,0.0,100.0,-0.6809999999999999,0.8190000000000001, -2015-01-25 01:00:00,0.0,1020.1425,0.0,100.0,-0.452083333,0.711583333, -2015-01-25 02:00:00,0.0,1020.554167,0.0,100.0,-2.690083333,0.45933333299999995, -2015-01-25 03:00:00,0.0,1021.138333,0.0,100.0,-0.568416667,0.868916667, -2015-01-25 04:00:00,0.0,1021.5675,0.0,100.0,-1.238583333,0.6940000000000001, -2015-01-25 05:00:00,0.0,1022.006667,0.0,100.0,-0.607916667,0.9604166670000001, -2015-01-25 06:00:00,0.0,1022.393333,0.0,100.0,-1.187416667,0.86725, -2015-01-25 07:00:00,0.0,1023.056667,0.016916667,100.0,-0.37391666700000004,0.801666667, -2015-01-25 08:00:00,0.0,1023.524167,4.924166667,100.0,-0.646416667,0.441666667, -2015-01-25 09:00:00,0.0,1024.095,45.16333333,100.0,0.98425,0.53625, -2015-01-25 10:00:00,0.0,1024.515,89.7175,99.18333333,1.6605833330000002,1.013916667, -2015-01-25 11:00:00,7.955123544,1024.4575,228.25,97.1,2.5198333330000002,0.91325, -2015-01-25 12:00:00,0.0,1023.94,211.6166667,96.78333333,3.099583333,1.3805833330000001, -2015-01-25 13:00:00,5.54023284,1023.671667,140.4083333,97.48333333,3.1070833330000003,1.376166667, -2015-01-25 14:00:00,0.0,1023.229167,104.725,97.46666667,3.021833333,1.4065833330000002, -2015-01-25 15:00:00,0.0,1023.161667,65.49,98.45833333,2.830083333,1.259583333, -2015-01-25 16:00:00,0.0,1023.330833,25.39666667,99.98333333,2.3505833330000003,1.064, -2015-01-25 17:00:00,0.0,1023.378333,1.57825,100.0,1.91825,1.2026666670000001, -2015-01-25 18:00:00,0.0,1023.5666669999999,0.0,100.0,2.008083333,0.961833333, -2015-01-25 19:00:00,0.0,1023.611667,0.0,100.0,1.9830833330000002,1.160583333, -2015-01-25 20:00:00,0.0,1023.395833,0.0,100.0,1.766,1.229166667, -2015-01-25 21:00:00,0.0,1023.099167,0.0,100.0,1.61825,0.98025, -2015-01-25 22:00:00,0.0,1022.8133330000001,0.0,100.0,1.569666667,0.386666667, -2015-01-25 23:00:00,0.0,1022.728333,0.0,100.0,1.711416667,0.80625, -2015-01-26 00:00:00,2.540812656,1022.47,0.0,100.0,1.665583333,0.89325, -2015-01-26 01:00:00,2.479392648,1021.9625,0.0,100.0,1.409,0.693916667, -2015-01-26 02:00:00,2.457480768,1021.51,0.0,100.0,1.236666667,0.320583333, -2015-01-26 03:00:00,0.0,1020.9825,0.0,100.0,1.166,0.02275, -2015-01-26 04:00:00,4.780709088,1020.570833,0.0,100.0,1.150083333,0.0405, -2015-01-26 05:00:00,2.457480768,1019.925833,0.0,99.95833333,1.002083333,0.294083333, -2015-01-26 06:00:00,0.0,1019.596667,0.0,99.425,1.080916667,0.42758333299999995, -2015-01-26 07:00:00,0.0,1019.293333,0.01925,99.375,1.05875,0.518916667, -2015-01-26 08:00:00,0.0,1018.901667,4.000666667,98.33333333,1.050916667,0.691666667, -2015-01-26 09:00:00,0.0,1018.529167,24.925,97.61666667,1.44225,1.038583333, -2015-01-26 10:00:00,0.0,1017.943333,43.58583333,99.03333333,1.896833333,1.253583333, -2015-01-26 11:00:00,5.50294116,1017.484167,40.0125,98.5,2.21475,1.4590833330000001, -2015-01-26 12:00:00,10.61981064,1016.401667,71.54333333,98.99166667,2.039166667,1.122583333, -2015-01-26 13:00:00,18.14154094,1015.52,45.9475,99.675,1.903583333,1.036583333, -2015-01-26 14:00:00,14.78764037,1014.383333,39.71166667,100.0,0.9835,0.389166667, -2015-01-26 15:00:00,12.29075666,1013.643333,22.24583333,99.56666667,0.944583333,0.455666667, -2015-01-26 16:00:00,5.174436096,1012.875,9.510083332999999,99.60833333,1.3165,1.143, -2015-01-26 17:00:00,2.534123424,1012.421667,0.32125,99.7,1.7815,0.800583333, -2015-01-26 18:00:00,0.0,1012.213333,0.0,100.0,1.612416667,0.324916667, -2015-01-26 19:00:00,2.442450912,1012.275833,0.0,100.0,1.7583333330000002,0.2865, -2015-01-26 20:00:00,2.600351856,1012.366667,0.0,100.0,2.494916667,1.230916667, -2015-01-26 21:00:00,0.0,1012.383333,0.0,100.0,2.730833333,1.16475, -2015-01-26 22:00:00,0.0,1012.679167,0.0,100.0,2.85475,0.73175, -2015-01-26 23:00:00,0.0,1012.9675,0.0,99.09166667,2.838666667,0.89725, -2015-01-27 00:00:00,0.0,1013.15,0.0,97.55833333,2.805333333,1.039416667, -2015-01-27 01:00:00,0.0,1013.275833,0.0,95.24166667,2.1375,0.645333333, -2015-01-27 02:00:00,0.0,1013.8116669999999,0.0,96.66666667,1.702,0.945583333, -2015-01-27 03:00:00,2.842607904,1014.084167,0.0,97.65,2.03675,1.4584166669999998, -2015-01-27 04:00:00,0.0,1014.413333,0.0,96.55,1.99325,1.8468333330000002, -2015-01-27 05:00:00,0.0,1015.050833,0.0,98.325,1.83575,1.76725, -2015-01-27 06:00:00,0.0,1015.116667,0.0,98.10833333,1.565666667,1.36325, -2015-01-27 07:00:00,0.0,1015.158333,0.072833333,98.14166667,1.330333333,1.230583333, -2015-01-27 08:00:00,0.0,1015.5275,13.41191667,98.51666667,1.649666667,1.337416667, -2015-01-27 09:00:00,8.110594464,1015.9775,17.29666667,99.39166667,2.0148333330000003,1.3195, -2015-01-27 10:00:00,0.0,1016.2575,70.00583333,99.325,2.6846666669999997,1.46475, -2015-01-27 11:00:00,2.7869741039999996,1016.435833,74.32166667,98.28333333,3.2439166669999997,1.5263333330000002, -2015-01-27 12:00:00,0.0,1016.1625,114.45916670000001,93.475,3.74725,2.0413333330000003, -2015-01-27 13:00:00,0.0,1015.926667,76.69083333,90.025,4.317666667,2.1556666669999998, -2015-01-27 14:00:00,0.0,1015.730833,48.48,93.4,4.164416667,1.3065, -2015-01-27 15:00:00,0.0,1015.616667,20.70083333,94.175,3.807666667,1.178833333, -2015-01-27 16:00:00,0.0,1015.8175,8.46525,93.75833333,3.900666667,0.896416667, -2015-01-27 17:00:00,0.0,1016.145833,0.63875,95.80833333,3.5060833330000003,0.668333333, -2015-01-27 18:00:00,0.0,1016.455833,0.0,98.4,2.99625,0.854916667, -2015-01-27 19:00:00,0.0,1016.603333,0.0,97.58333333,2.8245,1.1663333329999999, -2015-01-27 20:00:00,0.0,1016.613333,0.0,99.05,2.769166667,1.054916667, -2015-01-27 21:00:00,0.0,1016.48,0.0,98.65833333,2.5710833330000002,0.49825, -2015-01-27 22:00:00,0.0,1016.4025,0.0,99.225,2.223666667,0.30175, -2015-01-27 23:00:00,0.0,1016.5008330000001,0.0,99.86666667,2.761083333,1.079916667, -2015-01-28 00:00:00,0.0,1016.399167,0.0,99.84166667,3.013833333,1.777166667, -2015-01-28 01:00:00,0.0,1015.9225,0.0,99.90833333,2.73775,1.66125, -2015-01-28 02:00:00,0.0,1015.38,0.0,100.0,2.55175,1.5476666669999999, -2015-01-28 03:00:00,0.0,1014.9175,0.0,99.95,2.742833333,0.92875, -2015-01-28 04:00:00,0.0,1013.995,0.0,99.03333333,2.665833333,0.635, -2015-01-28 05:00:00,0.0,1013.283333,0.0,98.075,2.716583333,1.181583333, -2015-01-28 06:00:00,0.0,1012.41,0.0,99.08333333,1.740833333,0.870583333, -2015-01-28 07:00:00,0.0,1011.814167,0.065833333,96.7,1.686166667,0.541333333, -2015-01-28 08:00:00,0.0,1011.416667,7.541166667000001,94.98333333,2.5131666669999997,1.1465, -2015-01-28 09:00:00,0.0,1010.470833,39.21166667,93.525,3.08875,1.311833333, -2015-01-28 10:00:00,0.0,1009.4425,53.01166667,91.825,3.60225,1.80825, -2015-01-28 11:00:00,0.0,1008.384167,39.00166667,91.75,4.003416667,1.97575, -2015-01-28 12:00:00,0.0,1006.225,67.49416667,92.41666667,4.145333333,2.121083333, -2015-01-28 13:00:00,0.0,1004.4275,44.49416667,92.075,4.178,2.410583333, -2015-01-28 14:00:00,0.0,1002.283333,50.46,93.18333333,4.182916667,2.882166667, -2015-01-28 15:00:00,0.0,1000.206667,34.82916667,92.29166667,4.184583333,2.23975, -2015-01-28 16:00:00,0.0,998.1816667000002,14.56183333,90.18333333,4.437416667,3.13025, -2015-01-28 17:00:00,0.0,996.4983332999999,0.161083333,91.4,4.477666667,3.315666667, -2015-01-28 18:00:00,13.77960389,994.5083332999999,0.0,95.125,4.1130833330000005,2.7200833330000003, -2015-01-28 19:00:00,23.25873413,992.8375,0.0,96.83333333,3.820583333,3.4666666669999997, -2015-01-28 20:00:00,43.16433194,992.0558332999999,0.0,96.075,4.164666667,3.395333333, -2015-01-28 21:00:00,21.99727034,993.5641667000001,0.0,92.39166667,2.9674166669999997,2.65775, -2015-01-28 22:00:00,0.0,993.4366667000002,0.0,94.55,1.925583333,1.674333333, -2015-01-28 23:00:00,0.0,993.3541667000002,0.0,94.56666667,1.660166667,1.741166667, -2015-01-29 00:00:00,0.0,993.145,0.0,93.55,1.644166667,1.896, -2015-01-29 01:00:00,0.0,992.9825,0.0,90.425,1.7455,2.774916667, -2015-01-29 02:00:00,0.0,993.1166667000001,0.0,88.23333333,1.9331666669999998,2.5340833330000003, -2015-01-29 03:00:00,0.0,992.8183332999998,0.0,88.125,1.680333333,2.027416667, -2015-01-29 04:00:00,0.0,992.2766667000001,0.0,88.83333333,1.185,2.638583333, -2015-01-29 05:00:00,0.0,991.6033332999999,0.0,88.85,0.96925,3.1055, -2015-01-29 06:00:00,0.0,990.7783332999999,0.0,88.45833333,0.96075,2.74, -2015-01-29 07:00:00,0.0,990.4316667000002,0.069916667,88.30833333,1.225666667,2.614416667, -2015-01-29 08:00:00,0.0,989.69,6.731083333,89.43333333,1.521833333,2.5665, -2015-01-29 09:00:00,0.0,988.8808332999998,27.49416667,90.275,1.7850833330000002,2.5425, -2015-01-29 10:00:00,0.0,987.8583332999999,53.30083333,90.38333333,2.03525,2.673083333, -2015-01-29 11:00:00,0.0,986.7433332999999,153.9183333,89.76666667,2.804916667,2.599416667, -2015-01-29 12:00:00,0.0,985.1541667000001,201.2,88.23333333,4.028333333,2.77075, -2015-01-29 13:00:00,0.0,983.6733332999999,77.06833333,89.49166667,3.565833333,2.580083333, -2015-01-29 14:00:00,0.0,981.9316667000002,136.68333330000002,87.625,3.8145,2.36825, -2015-01-29 15:00:00,3.3531219119999998,980.37,47.13,87.40833333,4.044333333,2.079, -2015-01-29 16:00:00,0.0,978.5925,15.12508333,88.575,3.674833333,1.75225, -2015-01-29 17:00:00,5.621615832000001,976.9675,0.660416667,95.00833333,2.99825,1.329, -2015-01-29 18:00:00,27.20772377,975.315,0.0,99.01666667,2.123166667,2.237666667, -2015-01-29 19:00:00,5.968462416,973.9858332999999,0.0,96.46666667,2.27225,1.6984166669999998, -2015-01-29 20:00:00,14.20963447,972.5041667000002,0.0,97.90833333,2.379083333,1.465583333, -2015-01-29 21:00:00,9.268372008,970.8175,0.0,99.5,2.096916667,2.090833333, -2015-01-29 22:00:00,0.0,969.5025,0.0,97.94166667,2.16325,2.5693333330000003, -2015-01-29 23:00:00,2.915590776,968.6508332999998,0.0,98.275,2.158083333,0.913833333, -2015-01-30 00:00:00,21.03692059,967.9333332999998,0.0,99.90833333,1.640166667,1.124916667, -2015-01-30 01:00:00,4.83011496,967.0708332999999,0.0,100.0,0.880583333,0.240916667, -2015-01-30 02:00:00,0.0,966.705,0.0,100.0,0.745083333,0.083666667, -2015-01-30 03:00:00,2.404743864,966.8208332999999,0.0,100.0,0.7909999999999999,0.05875, -2015-01-30 04:00:00,8.071193016,967.8175,0.0,100.0,0.8733333329999999,1.3620833330000002, -2015-01-30 05:00:00,2.687227032,969.0558332999999,0.0,97.85833333,0.794333333,2.055916667, -2015-01-30 06:00:00,0.0,969.9741667000002,0.0,93.975,0.626166667,2.3609166669999997, -2015-01-30 07:00:00,0.0,970.6575,0.067666667,94.04166667,0.282166667,2.5226666669999998, -2015-01-30 08:00:00,0.0,971.5058332999998,12.8855,94.70833333,0.205916667,2.91, -2015-01-30 09:00:00,0.0,972.2591667000002,56.8425,94.51666667,0.5840833329999999,2.8730833330000003, -2015-01-30 10:00:00,0.0,972.7433332999999,98.39583333,96.44166667,0.75125,3.30425, -2015-01-30 11:00:00,2.83925412,972.95,129.0666667,93.95833333,1.3215,2.64675, -2015-01-30 12:00:00,0.0,972.8016667000002,172.88166669999998,91.43333333,2.01775,2.012166667, -2015-01-30 13:00:00,0.0,972.485,246.85,86.69166667,3.276333333,2.515, -2015-01-30 14:00:00,0.0,972.225,224.9833333,84.79166667,3.5958333330000003,2.296916667, -2015-01-30 15:00:00,0.0,972.1058332999999,147.3666667,82.1,3.545,1.8208333330000002, -2015-01-30 16:00:00,0.0,972.415,30.74416667,87.475,2.45675,1.5521666669999998, -2015-01-30 17:00:00,0.0,972.4883332999999,1.88125,91.275,1.062416667,0.511166667, -2015-01-30 18:00:00,0.0,972.6258332999998,0.0,92.79166667,0.589333333,0.6276666670000001, -2015-01-30 19:00:00,0.0,973.0175,0.0,97.03333333,0.270916667,0.356833333, -2015-01-30 20:00:00,0.0,973.3175,0.0,95.90833333,0.686583333,0.9640000000000001, -2015-01-30 21:00:00,0.0,973.5225,0.0,95.025,0.908833333,1.442, -2015-01-30 22:00:00,0.0,973.6391667000001,0.0,92.975,0.585583333,0.68775, -2015-01-30 23:00:00,0.0,973.7866667000002,0.0,86.20833333,0.535083333,0.582916667, -2015-01-31 00:00:00,0.0,973.8725,0.0,87.175,0.5458333329999999,0.734583333, -2015-01-31 01:00:00,0.0,973.9666667000001,0.0,89.06666667,0.770083333,1.4375, -2015-01-31 02:00:00,0.0,974.0166667000001,0.0,90.78333333,0.841666667,1.757416667, -2015-01-31 03:00:00,0.0,973.9783332999999,0.0,91.35833333,0.79125,2.101083333, -2015-01-31 04:00:00,0.0,974.1925,0.0,94.875,0.56275,2.13175, -2015-01-31 05:00:00,0.0,974.4558332999999,0.0,94.69166667,0.630083333,2.548833333, -2015-01-31 06:00:00,0.0,974.7258332999999,0.0,94.88333333,0.79675,2.541583333, -2015-01-31 07:00:00,0.0,975.1575,0.132,94.575,0.878166667,1.296583333, -2015-01-31 08:00:00,0.0,975.9441667000001,12.15183333,95.06666667,0.8155,1.07025, -2015-01-31 09:00:00,0.0,976.6841667000001,64.12083333,93.39166667,1.28925,2.110416667, -2015-01-31 10:00:00,0.0,977.13,129.5041667,90.33333333,1.9336666669999998,2.552666667, -2015-01-31 11:00:00,0.0,977.6258332999998,198.4,87.06666667,2.788333333,2.3151666669999997, -2015-01-31 12:00:00,0.0,977.9258332999999,196.4,83.91666667,3.905416667,2.185666667, -2015-01-31 13:00:00,0.0,977.9775,155.55833330000002,81.65833333,4.196666667,1.7496666669999998, -2015-01-31 14:00:00,0.0,978.0391667000001,123.05,80.17416667,3.722333333,1.5329166669999998, -2015-01-31 15:00:00,0.0,978.3433332999999,139.1608333,77.38583333,4.28,1.317916667, -2015-01-31 16:00:00,0.0,978.72,38.7975,82.82416667,3.08425,0.906333333, -2015-01-31 17:00:00,0.0,979.1683332999999,5.189333333,90.31666667,1.332166667,0.465, -2015-01-31 18:00:00,0.0,979.8125,0.0,93.575,-0.044000000000000004,0.527416667, -2015-01-31 19:00:00,0.0,980.19,0.0,95.8,-1.16725,0.1615, -2015-01-31 20:00:00,0.0,980.6375,0.0,98.95,-1.3494166669999998,0.21925, -2015-01-31 21:00:00,0.0,980.87,0.0,100.0,-2.273083333,0.08900000000000001, -2015-01-31 22:00:00,0.0,981.0725,0.0,100.0,-2.92625,0.081916667, -2015-01-31 23:00:00,0.0,981.2925,0.0,100.0,-3.09475,0.027416667000000002, -2015-01-02 00:00:00,0.0,981.6,0.0,100.0,-2.384,0.1685, -2015-01-02 01:00:00,0.0,981.6,0.0,100.0,-1.8035,0.163666667, -2015-01-02 02:00:00,0.0,981.7033332999998,0.0,100.0,-1.650333333,0.142166667, -2015-01-02 03:00:00,0.0,981.5416667000002,0.0,100.0,-1.24425,0.00825, -2015-01-02 04:00:00,0.0,981.8091667000001,0.0,100.0,-1.29775,0.196583333, -2015-01-02 05:00:00,0.0,982.2791667000001,0.0,100.0,-1.3905833330000001,0.24733333300000002, -2015-01-02 06:00:00,0.0,982.785,0.0,100.0,-1.268333333,0.0775, -2015-01-02 07:00:00,0.0,983.1341667000002,0.094833333,100.0,-1.4498333330000002,0.19675, -2015-01-02 08:00:00,0.0,983.5875,7.00025,100.0,-1.8360833330000002,0.07883333299999999, -2015-01-02 09:00:00,0.0,984.3691667000002,38.06333333,100.0,-1.223833333,0.092833333, -2015-01-02 10:00:00,2.582234304,984.9683332999999,104.325,97.90833333,0.837583333,0.7443333329999999, -2015-01-02 11:00:00,4.989218952,985.5866667000001,187.75,90.775,0.925166667,0.9079166670000001, -2015-01-02 12:00:00,0.0,985.7225,228.175,84.8,2.56425,1.044833333, -2015-01-02 13:00:00,0.0,985.8675,113.53666670000001,84.05833333,2.7181666669999998,0.7120000000000001, -2015-01-02 14:00:00,0.0,986.1425,43.78,90.66666667,2.1131666669999998,1.18875, -2015-01-02 15:00:00,0.0,986.4591667000001,35.50166667,92.51666667,1.8675,0.6133333329999999, -2015-01-02 16:00:00,0.0,986.8675,25.69666667,91.14166667,2.1534166669999997,0.471416667, -2015-01-02 17:00:00,0.0,987.3466667000001,2.25575,93.10833333,1.855833333,0.32858333300000003, -2015-01-02 18:00:00,0.0,987.8341667000001,0.0,95.71666667,1.413,0.17600000000000002, -2015-01-02 19:00:00,0.0,988.33,0.0,96.75833333,0.87475,0.20875, -2015-01-02 20:00:00,0.0,988.9175,0.0,97.875,0.81425,0.122083333, -2015-01-02 21:00:00,0.0,989.245,0.0,99.50833333,0.9279166670000001,0.7090833329999999, -2015-01-02 22:00:00,0.0,989.7266667000001,0.0,100.0,0.8723333329999999,0.174916667, -2015-01-02 23:00:00,0.0,990.0291667000001,0.0,100.0,1.072333333,0.620583333, -2015-02-02 00:00:00,0.0,990.5058332999998,0.0,100.0,0.534416667,0.363833333, -2015-02-02 01:00:00,0.0,990.9075,0.0,100.0,-0.45525,0.288166667, -2015-02-02 02:00:00,0.0,991.535,0.0,98.825,0.564,0.859833333, -2015-02-02 03:00:00,0.0,991.9091667000001,0.0,99.075,0.5093333329999999,0.95225, -2015-02-02 04:00:00,0.0,992.1933332999998,0.0,98.49166667,0.14400000000000002,0.871583333, -2015-02-02 05:00:00,0.0,992.8933332999999,0.0,96.71666667,0.230416667,0.758416667, -2015-02-02 06:00:00,0.0,993.4616667000001,0.0,96.94166667,0.41,0.172, -2015-02-02 07:00:00,0.0,993.7816667000001,0.062916667,99.39166667,0.5429166670000001,0.830666667, -2015-02-02 08:00:00,0.0,994.0116667000001,9.98475,99.14166667,0.7264166670000001,0.5529166670000001, -2015-02-02 09:00:00,0.0,994.3875,69.92583333,96.56666667,1.183833333,1.199916667, -2015-02-02 10:00:00,2.592219744,994.6175,104.1075,95.8,1.55125,1.524666667, -2015-02-02 11:00:00,5.339525472,994.9083332999999,132.6916667,92.925,1.95075,1.8273333330000001, -2015-02-02 12:00:00,0.0,994.9141667000001,163.6333333,88.90833333,2.9441666669999997,2.1115, -2015-02-02 13:00:00,0.0,994.9941667000002,171.56666669999998,89.14166667,2.4465,2.098666667, -2015-02-02 14:00:00,0.0,994.8216667000002,166.1333333,87.85,3.0346666669999998,2.103416667, -2015-02-02 15:00:00,0.0,994.7646396,73.90166667,88.35,2.653166667,2.232916667, -2015-02-02 16:00:00,0.0,994.8583332999999,28.49083333,92.975,1.74275,2.1675, -2015-02-02 17:00:00,0.0,995.0583332999998,1.7670833330000002,94.95833333,1.226333333,1.9095, -2015-02-02 18:00:00,0.0,995.4041667000001,0.0,96.29166667,1.115583333,1.8388333330000002, -2015-02-02 19:00:00,0.0,995.7291667000002,0.0,96.45,1.045833333,1.852916667, -2015-02-02 20:00:00,0.0,995.9708332999999,0.0,96.06666667,0.976916667,1.894833333, -2015-02-02 21:00:00,0.0,996.1375,0.0,95.50833333,0.840666667,1.4445, -2015-02-02 22:00:00,0.0,996.15,0.0,96.525,0.756416667,1.6699166669999999, -2015-02-02 23:00:00,0.0,996.1583332999999,0.0,98.0,0.4535,0.8859999999999999, -2015-03-02 00:00:00,0.0,996.55,0.0,97.59166667,0.546666667,0.692666667,238.01828600000002 -2015-03-02 01:00:00,0.0,996.5333332999999,0.0,95.14166667,0.7085,1.6540000000000001,238.01793600000005 -2015-03-02 02:00:00,0.0,996.6708332999999,0.0,93.48333333,0.683416667,1.5594166669999998,238.018986 -2015-03-02 03:00:00,0.0,996.6208332999998,0.0,93.53333333,0.604166667,1.137166667,238.01931933333333 -2015-03-02 04:00:00,0.0,996.4,0.0,93.625,0.467,0.82325,238.018286 -2015-03-02 05:00:00,0.0,996.5625,0.0,93.73333333,0.331833333,0.858,238.017236 -2015-03-02 06:00:00,0.0,996.5875,0.0,94.13333333,0.276833333,1.36725,238.018986 -2015-03-02 07:00:00,0.0,996.7416667000001,0.18833333300000002,94.275,0.19066666699999998,1.030333333,238.01758600000002 -2015-03-02 08:00:00,0.0,997.225,9.400416667,93.98333333,0.18675,1.726666667,238.015886 -2015-03-02 09:00:00,0.0,997.7458332999998,35.09833333,93.30833333,0.45033333299999995,1.75625,238.013836 -2015-03-02 10:00:00,0.0,998.1375,81.09333333,91.93333333,0.7706666670000001,1.7345,238.01278599999998 -2015-03-02 11:00:00,2.681085504,998.55,113.0,90.45,1.2640833329999999,1.59725,238.010436 -2015-03-02 12:00:00,2.7363933119999997,998.425,156.3,88.03333333,1.8081666669999998,1.781833333,238.00868599999998 -2015-03-02 13:00:00,0.0,998.5125,120.10833329999998,86.025,2.46425,1.084166667,238.00668599999997 -2015-03-02 14:00:00,0.0,998.7916667000002,44.805,91.78333333,2.030333333,1.30075,238.00665266666667 -2015-03-02 15:00:00,0.0,998.675,121.28416670000001,95.7,1.9965,1.0464166670000001,238.00528599999998 -2015-03-02 16:00:00,0.0,998.8208332999999,55.33083333,88.26666667,2.105833333,0.734916667,238.00598599999998 -2015-03-02 17:00:00,0.0,999.1625,3.105916667,89.75833333,0.9925,0.55175,238.00698599999998 -2015-03-02 18:00:00,0.0,999.8083332999998,0.0,90.50833333,0.688083333,0.625583333,238.00220266666665 -2015-03-02 19:00:00,0.0,1000.3,0.0,92.28333333,0.49225,0.6409999999999999,237.99806933333332 -2015-03-02 20:00:00,0.0,1000.7625,0.0,98.875,-0.6940000000000001,0.238416667,237.991236 -2015-03-02 21:00:00,0.0,1001.104167,0.0,100.0,-1.751416667,0.222333333,237.98678600000002 -2015-03-02 22:00:00,0.0,1001.333333,0.0,100.0,-1.920333333,0.192333333,237.9854193333333 -2015-03-02 23:00:00,0.0,1001.55,0.0,100.0,-2.4895,0.11941666699999999,237.9844193333333 -2015-04-02 00:00:00,0.0,1001.8,0.0,100.0,-3.009,0.38483333299999994,238.05155089999997 -2015-04-02 01:00:00,0.0,1002.083333,0.0,100.0,-2.491333333,0.4145,238.0514215666667 -2015-04-02 02:00:00,0.0,1002.6875,0.0,99.68333333,-2.003166667,0.18508333300000002,238.0512725333334 -2015-04-02 03:00:00,0.0,1003.2541669999999,0.0,98.23333333,-1.533916667,0.187,238.05114443333335 -2015-04-02 04:00:00,0.0,1003.616667,0.0,97.66666667,-1.490833333,0.997583333,238.0510927 -2015-04-02 05:00:00,0.0,1004.241667,0.0,91.29166667,-1.236416667,2.285,238.05106684999998 -2015-04-02 06:00:00,0.0,1004.3708330000001,0.0,88.60833333,-1.95475,1.676833333,238.0511185833333 -2015-04-02 07:00:00,0.0,1005.05,0.131083333,83.65833333,-1.24875,2.768583333,238.05154843333335 -2015-04-02 08:00:00,0.0,1005.7,5.287333333,83.925,-1.321916667,3.4441666669999997,238.0520546166667 -2015-04-02 09:00:00,0.0,1006.554167,32.05,81.57166667,-1.2824166670000001,2.3065,238.05245980000004 -2015-04-02 10:00:00,0.0,1007.354167,68.23166667,78.64333333,-0.868166667,2.055166667,238.05271353333333 -2015-04-02 11:00:00,0.0,1007.9333330000001,115.88,76.11583333,-0.611666667,2.813166667,238.052918 -2015-04-02 12:00:00,0.0,1007.975,183.6333333,74.48166667,-0.188,3.1975833330000003,238.05289213333333 -2015-04-02 13:00:00,0.0,1008.1125,233.66666669999998,72.16333333,0.468916667,2.396416667,238.05286626666668 -2015-04-02 14:00:00,0.0,1008.325,204.0291667,69.2625,0.868583333,1.851083333,238.0527628 -2015-04-02 15:00:00,0.0,1008.6916669999999,171.075,67.65583333,1.20025,1.423583333,238.05248566666668 -2015-04-02 16:00:00,0.0,1009.108333,68.5575,67.99166667,1.000666667,0.695416667,238.05228120000004 -2015-04-02 17:00:00,0.0,1009.383333,4.824166667,87.12416667,-0.700833333,0.065166667,238.05210509999998 -2015-04-02 18:00:00,0.0,1009.920833,0.0,92.10833333,-1.278666667,0.033,238.05187729999997 -2015-04-02 19:00:00,0.0,1010.5041669999999,0.0,90.91666667,-1.328083333,0.728916667,238.0516494333333 -2015-04-02 20:00:00,0.0,1011.325,0.0,84.73333333,-1.094083333,1.8421666669999999,238.05142279999998 -2015-04-02 21:00:00,0.0,1011.858333,0.0,91.91666667,-2.35875,0.4805,238.0512479 -2015-04-02 22:00:00,0.0,1012.341667,0.0,97.325,-3.8424166669999997,0.098416667,238.05101514999998 -2015-04-02 23:00:00,0.0,1012.679167,0.0,98.71666667,-4.8644166669999995,0.01275,238.05091418333336 -2015-05-02 00:00:00,0.0,1012.65,0.0,99.24166667,-5.4603333329999995,0.021833332999999996, -2015-05-02 01:00:00,0.0,1012.5666669999999,0.0,99.61666667,-6.0709166670000005,0.035, -2015-05-02 02:00:00,0.0,1012.675,0.0,99.84166667,-6.34875,0.04075, -2015-05-02 03:00:00,0.0,1012.608333,0.0,99.525,-6.134583332999999,0.13525, -2015-05-02 04:00:00,0.0,1012.679167,0.0,99.83333333,-5.07925,0.293416667, -2015-05-02 05:00:00,0.0,1012.8166669999999,0.0,98.45,-4.163333333,0.1255, -2015-05-02 06:00:00,0.0,1013.016667,0.0,96.86666667,-3.6011666669999998,0.022166667, -2015-05-02 07:00:00,0.0,1013.4416669999999,0.10241666699999999,93.59166667,-3.28425,0.239333333, -2015-05-02 08:00:00,0.0,1013.920833,24.63533333,90.83333333,-2.5,0.8335, -2015-05-02 09:00:00,0.0,1014.3083330000001,66.79416667,86.025,-1.5566666669999998,3.1550833330000003, -2015-05-02 10:00:00,0.0,1014.75,108.98333329999998,85.94166667,-1.330333333,3.11725, -2015-05-02 11:00:00,0.0,1014.979167,154.4083333,84.85,-0.840916667,3.573083333, -2015-05-02 12:00:00,0.0,1014.825,226.70833330000002,79.08166667,0.00975,4.9110000000000005, -2015-05-02 13:00:00,0.0,1015.1208330000001,162.05,77.32416667,0.335583333,5.085083333, -2015-05-02 14:00:00,0.0,1015.008333,76.345,76.67833333,-0.14,5.25525, -2015-05-02 15:00:00,0.0,1015.1375,38.19333333,80.9525,-0.330916667,4.433, -2015-05-02 16:00:00,2.73565644,1015.141667,16.18133333,82.775,-0.55425,4.569666667, -2015-05-02 17:00:00,0.0,1015.5125,2.449416667,80.26,-0.5628333329999999,4.599416667, -2015-05-02 18:00:00,0.0,1016.225,0.0,76.73333333,-0.6004166670000001,5.267583333, -2015-05-02 19:00:00,0.0,1016.604167,0.0,76.3175,-0.706583333,6.183583333, -2015-05-02 20:00:00,0.0,1016.9,0.0,76.54583333,-0.948333333,6.2285, -2015-05-02 21:00:00,0.0,1016.958333,0.0,77.85583333,-1.0284166670000001,5.995083332999999, -2015-05-02 22:00:00,0.0,1016.945833,0.0,78.71333333,-1.066333333,5.313333333, -2015-05-02 23:00:00,0.0,1017.2125,0.0,79.42166667,-1.110583333,5.227333333, -2015-06-02 00:00:00,0.0,1017.529167,0.0,78.96083333,-1.073916667,5.473833332999999,237.82033803333331 -2015-06-02 01:00:00,0.0,1017.575,0.0,78.2125,-1.257583333,6.048083332999999,237.82292368333336 -2015-06-02 02:00:00,0.0,1017.554167,0.0,78.2675,-1.453416667,6.323083333,237.8213723 -2015-06-02 03:00:00,0.0,1017.4333330000001,0.0,80.07583333,-1.6231666669999998,5.392916667000001,237.82361318333335 -2015-06-02 04:00:00,0.0,1017.804167,0.0,80.58583333,-1.67125,5.770916667000001,237.82637121666664 -2015-06-02 05:00:00,0.0,1018.091667,0.0,80.33166667,-1.604416667,4.800833333,237.82550933333334 -2015-06-02 06:00:00,0.0,1018.241667,0.0,80.6775,-1.5084166669999999,5.7961666670000005,237.82430268333337 -2015-06-02 07:00:00,0.0,1018.1125,0.18933333300000002,81.04166667,-1.4576666669999998,5.052083333,237.82447505000005 -2015-06-02 08:00:00,0.0,1018.3708330000001,10.36883333,79.25166667,-1.385583333,5.761083332999999,237.8241303166667 -2015-06-02 09:00:00,0.0,1018.758333,50.55333333,77.40166667,-1.217416667,6.49025,237.82137230000004 -2015-06-02 10:00:00,0.0,1019.1916669999999,142.2575,76.73083333,-0.684,7.083583332999999,237.81654574999996 -2015-06-02 11:00:00,0.0,1019.791667,227.43333330000002,74.3225,0.02325,6.6471666670000005,237.81154683333332 -2015-06-02 12:00:00,0.0,1019.8166669999999,264.7,70.58083333,0.733916667,6.687666667,237.80740978333333 -2015-06-02 13:00:00,0.0,1019.991667,260.6083333,68.31666667,0.88525,6.95775,237.80310036666665 -2015-06-02 14:00:00,0.0,1019.8625,229.8,65.31333333,1.36975,6.303833332999999,237.79930808333336 -2015-06-02 15:00:00,0.0,1020.220833,170.075,62.01,1.4536666669999998,5.340166667,237.79586055000001 -2015-06-02 16:00:00,0.0,1020.233333,75.9125,62.76,0.873083333,4.651916667,237.79430914999998 -2015-06-02 17:00:00,0.0,1020.570833,6.036833333,67.20583333,-0.354416667,3.465,237.79293015 -2015-06-02 18:00:00,0.0,1021.108333,0.005166667,73.99166667,-1.5995833330000002,2.888,237.79189586666666 -2015-06-02 19:00:00,0.0,1021.591667,0.0,78.07833333,-2.1590000000000003,4.385833333,237.7896549666667 -2015-06-02 20:00:00,0.0,1022.029167,0.0,81.50166667,-2.8849166669999997,2.211083333,237.78896550000002 -2015-06-02 21:00:00,0.0,1022.525,0.0,83.45,-3.491666667,1.67525,237.79275776666665 -2015-06-02 22:00:00,0.0,1022.9,0.0,83.85,-3.52575,2.836833333,237.79551578333334 -2015-06-02 23:00:00,0.0,1023.1375,0.0,87.425,-3.8816666669999997,2.1141666669999997,237.7968948166667 -2015-07-02 00:00:00,0.0,1023.195833,0.0,89.025,-4.196916667,1.292166667,237.62503526666669 -2015-07-02 01:00:00,0.0,1023.5583330000001,0.0,88.83333333,-4.316833333,1.4144166669999998,237.62934470000002 -2015-07-02 02:00:00,0.0,1024.079167,0.0,89.025,-4.400083333,2.3585833330000003,237.63417125 -2015-07-02 03:00:00,0.0,1024.475,0.0,88.75,-4.508916667,2.266166667,237.6377911666667 -2015-07-02 04:00:00,0.0,1024.166667,0.0,90.475,-4.8935,0.9966666670000001,237.6388254 -2015-07-02 05:00:00,0.0,1024.208333,0.0,92.35,-5.111833333,0.786083333,237.64192819999997 -2015-07-02 06:00:00,0.0,1024.083333,0.0,96.5,-6.531083333,0.174583333,237.64210059999996 -2015-07-02 07:00:00,0.0,1024.345833,0.618583333,98.075,-6.430916667000001,0.143916667,237.64365196666668 -2015-07-02 08:00:00,0.0,1024.3375,11.53383333,98.45833333,-6.38975,0.016333333000000002,237.63951491666663 -2015-07-02 09:00:00,0.0,1024.683333,31.97166667,95.41666667,-4.0258333330000005,0.7325,237.6295170666667 -2015-07-02 10:00:00,0.0,1025.204167,173.15,82.95416667,-2.194666667,1.7003333330000001,237.61572693333335 -2015-07-02 11:00:00,0.0,1025.575,233.8416667,76.585,-0.6699166670000001,2.660416667,237.60400531666664 -2015-07-02 12:00:00,0.0,1025.379167,274.1083333,67.32083333,1.3565833330000001,1.528,237.59819720000002 -2015-07-02 13:00:00,0.0,1024.35,274.4833333,58.35166667,3.161833333,0.71225,237.59605098333336 -2015-07-02 14:00:00,0.0,1023.6125,232.5333333,50.73666667,4.475333333,0.656833333,237.5935419 -2015-07-02 15:00:00,0.0,1022.625,156.2416667,45.025,5.285,0.523,237.59117221666668 -2015-07-02 16:00:00,0.0,1022.645833,75.33583333,50.65666667,4.072,0.983083333,237.5890813 -2015-07-02 17:00:00,0.0,1022.304167,5.511583333,78.385,0.43775,0.2095,237.59089340000003 -2015-07-02 18:00:00,0.0,1022.633333,0.01125,80.33166667,1.160416667,1.4805833330000002,237.58936010000002 -2015-07-02 19:00:00,0.0,1022.404167,0.0,85.71666667,1.6034166669999999,0.7190000000000001,237.5886631333333 -2015-07-02 20:00:00,0.0,1021.758333,0.0,87.46666667,2.099583333,1.067,237.59186918333333 -2015-07-02 21:00:00,0.0,1021.554167,0.0,90.50833333,2.582833333,1.1610833329999999,237.59549341666664 -2015-07-02 22:00:00,0.0,1021.070833,0.0,92.4,2.82925,1.183416667,237.59939641666665 -2015-07-02 23:00:00,0.0,1020.204167,0.0,95.71666667,2.351666667,1.410333333,237.60357823333334 -2015-08-02 00:00:00,0.0,1019.579167,0.0,97.69166667,1.993916667,1.310083333,237.4862087666667 -2015-08-02 01:00:00,0.0,1019.3791669999999,0.0,96.39166667,2.8569166669999997,1.46725,237.49025118333336 -2015-08-02 02:00:00,0.0,1018.804167,0.0,94.8,2.958333333,1.69025,237.4940148166667 -2015-08-02 03:00:00,0.0,1018.2875,0.0,90.83333333,3.4841666669999998,2.687,237.49875418333332 -2015-08-02 04:00:00,0.0,1017.8708330000001,0.0,91.58333333,2.881916667,2.9605,237.50196025 -2015-08-02 05:00:00,0.0,1017.895833,0.0,86.56666667,2.880083333,2.0125833330000003,237.50335418333336 -2015-08-02 06:00:00,0.0,1018.579167,0.0,77.79,3.339833333,3.64625,237.50628145 -2015-08-02 07:00:00,0.0,1019.083333,0.26716666699999997,74.57583333,2.95075,2.8569999999999998,237.50906931666665 -2015-08-02 08:00:00,0.0,1019.658333,11.11208333,70.92583333,2.889166667,3.414666667,237.50837233333334 -2015-08-02 09:00:00,0.0,1020.258333,26.32333333,76.53583333,2.4265,3.390666667,237.50223905000004 -2015-08-02 10:00:00,0.0,1021.4125,128.12583329999998,79.96666667,2.25375,4.44425,237.49080875 -2015-08-02 11:00:00,0.0,1021.970833,227.5,66.43916667,2.93475,6.317833332999999,237.47770573333332 -2015-08-02 12:00:00,0.0,1022.2458330000001,229.175,58.5075,3.3295,5.7595,237.46613606666668 -2015-08-02 13:00:00,0.0,1022.466667,250.66666669999998,54.3325,3.691583333,4.923166667,237.45930580000004 -2015-08-02 14:00:00,0.0,1022.65,193.8,50.49833333,3.664583333,4.52925,237.45582095000006 -2015-08-02 15:00:00,0.0,1022.9958330000001,179.06666669999998,47.92083333,3.78525,3.5295,237.45247551666662 -2015-08-02 16:00:00,0.0,1023.4416669999999,88.4375,50.2725,3.187416667,3.95125,237.4520573166667 -2015-08-02 17:00:00,0.0,1023.9625,5.33575,53.85416667,1.853083333,2.776833333,237.45303308333328 -2015-08-02 18:00:00,0.0,1024.679167,0.007083333000000001,66.77333333,0.41116666700000004,1.148416667,237.45219669999997 -2015-08-02 19:00:00,0.0,1025.05,0.0,84.02833333,-1.476666667,0.061916667,237.45456639999998 -2015-08-02 20:00:00,0.0,1025.3,0.0,85.70166667,-1.944333333,0.2435,237.4591664166667 -2015-08-02 21:00:00,0.0,1025.8,0.0,75.40333333,-0.550583333,0.575,237.46362699999997 -2015-08-02 22:00:00,0.0,1025.620833,0.0,75.6025,0.719583333,1.1495,237.46934215 -2015-08-02 23:00:00,0.0,1025.283333,0.0,78.91666667,0.79525,1.7029166669999998,237.47422093333333 -2015-09-02 00:00:00,0.0,1025.0875,0.0,82.81666667,0.83875,1.4958333330000002,237.57888486666664 -2015-09-02 01:00:00,0.0,1024.6375,0.0,86.89166667,1.110416667,1.755333333,237.57903998333333 -2015-09-02 02:00:00,0.0,1024.241667,0.0,91.25833333,1.4313333330000002,1.5409166669999999,237.5798155 -2015-09-02 03:00:00,0.0,1023.3791669999999,0.0,92.66666667,1.735,1.7038333330000002,237.58369325 -2015-09-02 04:00:00,0.0,1022.7625,0.0,96.0,1.855666667,1.148833333,237.5846238833333 -2015-09-02 05:00:00,0.0,1022.35,0.0,96.69166667,2.0291666669999997,1.499916667,237.58555454999998 -2015-09-02 06:00:00,0.0,1022.333333,0.0,97.975,2.287416667,1.275916667,237.58524431666663 -2015-09-02 07:00:00,0.0,1022.291667,0.16825,98.61666667,2.5819166669999998,1.1510833329999999,237.58726073333332 -2015-09-02 08:00:00,0.0,1022.520833,4.3070833330000005,96.825,3.097,1.050583333,237.58601986666665 -2015-09-02 09:00:00,0.0,1022.408333,20.10416667,95.41666667,3.452583333,1.239166667,237.58695051666663 -2015-09-02 10:00:00,0.0,1022.0375,54.025,93.975,3.708,1.4399166669999999,237.5863300833333 -2015-09-02 11:00:00,0.0,1021.9375,64.10666667,91.875,4.386083333,1.47375,237.58570965 -2015-09-02 12:00:00,0.0,1022.020833,43.5025,91.76666667,4.802333333,1.9875833330000001,237.58493408333334 -2015-09-02 13:00:00,0.0,1021.766667,41.17083333,90.23333333,4.899416667,2.7905,237.58245236666667 -2015-09-02 14:00:00,0.0,1021.866667,34.52666667,89.38333333,4.9239999999999995,2.1823333330000003,237.5793502 -2015-09-02 15:00:00,0.0,1021.970833,25.15083333,95.88333333,4.614583333,1.4596666669999998,237.57826445 -2015-09-02 16:00:00,0.0,1022.025,14.86541667,99.84166667,4.07575,1.4258333330000001,237.57547250000002 -2015-09-02 17:00:00,0.0,1022.0875,2.3480000000000003,99.31666667,3.914666667,1.13,237.5753173833333 -2015-09-02 18:00:00,0.0,1022.4625,0.0014166670000000001,99.64166667,3.922166667,1.349833333,237.57361118333336 -2015-09-02 19:00:00,0.0,1022.9416669999999,0.0,99.425,3.894583333,1.07,237.5731458666667 -2015-09-02 20:00:00,0.0,1023.420833,0.0,99.31666667,3.8603333330000003,0.902,237.57485208333335 -2015-09-02 21:00:00,0.0,1023.720833,0.0,99.66666667,3.833333333,1.30425,237.57531738333333 -2015-09-02 22:00:00,0.0,1023.670833,0.0,99.99166667,3.5085833330000002,1.6716666669999998,237.57733378333333 -2015-09-02 23:00:00,0.0,1023.766667,0.0,100.0,3.302833333,1.288333333,237.57903998333333 -2015-10-02 00:00:00,0.0,1023.9375,0.0,100.0,3.45,1.486,237.57997063333335 -2015-10-02 01:00:00,0.0,1023.8375,0.0,100.0,3.5185,1.19625,237.58074618333333 -2015-10-02 02:00:00,0.0,1023.883333,0.0,100.0,3.562416667,0.961,237.58431365 -2015-10-02 03:00:00,0.0,1023.891667,0.0,100.0,3.475083333,0.6669166670000001,237.58586474999996 -2015-10-02 04:00:00,0.0,1024.125,0.0,100.0,3.483166667,0.757916667,237.5866403 -2015-10-02 05:00:00,0.0,1024.3375,0.0,100.0,3.467083333,0.782666667,237.58819136666668 -2015-10-02 06:00:00,0.0,1024.275,0.0,100.0,3.404,0.610166667,237.59020778333334 -2015-10-02 07:00:00,0.0,1024.441667,0.5166666670000001,100.0,3.320916667,0.452583333,237.59082821666672 -2015-10-02 08:00:00,0.0,1024.895833,12.01716667,100.0,3.442416667,0.450666667,237.58974243333338 -2015-10-02 09:00:00,0.0,1025.275,35.9225,99.65,4.14825,0.644166667,237.58850158333334 -2015-10-02 10:00:00,0.0,1025.633333,73.85833333,97.14166667,4.964916667,0.817583333,237.58803625 -2015-10-02 11:00:00,0.0,1025.920833,93.025,93.84166667,5.59225,1.694833333,237.5888118 -2015-10-02 12:00:00,0.0,1025.579167,92.45666667,88.78333333,5.8020000000000005,2.2221666669999998,237.58508919999997 -2015-10-02 13:00:00,0.0,1025.266667,87.06083333,86.025,5.9879999999999995,1.6839166669999999,237.58074616666667 -2015-10-02 14:00:00,0.0,1025.1625,105.275,85.0,6.23375,1.2844166670000001,237.57764401666668 -2015-10-02 15:00:00,0.0,1025.025,57.535,83.95,6.094333333,1.7069999999999999,237.57423161666668 -2015-10-02 16:00:00,0.0,1024.725,25.2925,83.65,5.743333333,1.7059166669999999,237.57330098333333 -2015-10-02 17:00:00,0.0,1024.758333,3.325583333,85.85833333,5.288166667,1.10875,237.57407651666668 -2015-10-02 18:00:00,0.0,1025.004167,0.0,92.90833333,4.779166667,0.608833333,237.57423160000005 -2015-10-02 19:00:00,0.0,1025.416667,0.0,95.13333333,4.127,0.170166667,237.57407650000002 -2015-10-02 20:00:00,0.0,1025.245833,0.0,97.225,3.391833333,0.11983333300000001,237.57547250000002 -2015-10-02 21:00:00,0.0,1025.2125,0.0,98.61666667,3.431833333,0.18600000000000003,237.57562761666668 -2015-10-02 22:00:00,0.0,1025.145833,0.0,97.2,4.138666667,1.187083333,237.57717866666664 -2015-10-02 23:00:00,0.0,1024.8375,0.0,91.45833333,4.116916667,1.24025,237.58028083333332 -2015-11-02 00:00:00,0.0,1024.5375,0.0,90.89166667,4.07125,1.2819999999999998,237.72705955 -2015-11-02 01:00:00,0.0,1024.1875,0.0,89.975,3.953833333,0.90225,237.72767931666667 -2015-11-02 02:00:00,0.0,1023.9125,0.0,90.125,3.9625,1.0231666670000001,237.72829906666664 -2015-11-02 03:00:00,0.0,1023.55,0.0,90.73333333,3.74525,1.12925,237.72489038333336 -2015-11-02 04:00:00,0.0,1023.170833,0.0,91.18333333,3.3883333330000003,1.064583333,237.7275243666667 -2015-11-02 05:00:00,0.0,1022.866667,0.0,91.83333333,3.089666667,1.160083333,237.7289188166667 -2015-11-02 06:00:00,0.0,1022.708333,0.0,92.48333333,2.876583333,1.01725,237.7264398 -2015-11-02 07:00:00,0.0,1022.770833,0.326916667,93.34166667,2.5205,1.244333333,237.72597495 -2015-11-02 08:00:00,0.0,1022.983333,8.6055,94.08333333,2.151416667,1.193166667,237.72520026666666 -2015-11-02 09:00:00,0.0,1023.041667,30.1475,93.85833333,1.9125,1.559333333,237.72612990000002 -2015-11-02 10:00:00,0.0,1022.9625,50.9425,93.15833333,2.0950833330000003,1.25475,237.7247354333334 -2015-11-02 11:00:00,0.0,1022.85,67.99583333,92.61666667,2.4243333330000003,1.6566666669999999,237.72411565000002 -2015-11-02 12:00:00,0.0,1022.625,71.0325,92.36666667,2.407083333,1.526083333,237.72473541666668 -2015-11-02 13:00:00,0.0,1022.141667,81.81,91.39166667,2.404583333,1.428166667,237.72256625 -2015-11-02 14:00:00,0.0,1021.295833,85.86833333,90.83333333,2.5604166669999997,1.458083333,237.72210141666667 -2015-11-02 15:00:00,0.0,1020.608333,70.20166667,90.675,2.610666667,1.41125,237.72442555 -2015-11-02 16:00:00,0.0,1020.208333,30.32416667,91.575,2.42475,1.4811666669999999,237.72659473333331 -2015-11-02 17:00:00,0.0,1020.0583330000001,4.273833333,92.79166667,2.08775,1.5906666669999998,237.72752436666667 -2015-11-02 18:00:00,0.0,1020.041667,0.020666667,93.61666667,1.84825,1.56025,237.7278342333333 -2015-11-02 19:00:00,0.0,1019.929167,0.0,93.875,1.81,1.309916667,237.72860893333336 -2015-11-02 20:00:00,0.0,1019.891667,0.0,94.53333333,1.5138333330000002,1.714083333,237.72876388333336 -2015-11-02 21:00:00,0.0,1019.758333,0.0,95.91666667,1.2385,1.69275,237.72551015 -2015-11-02 22:00:00,0.0,1019.445833,0.0,97.05833333,0.97475,1.57475,237.72566508333333 -2015-11-02 23:00:00,0.0,1019.2625,0.0,98.11666667,0.8311666670000001,1.704,237.7259749666667 -2015-12-02 00:00:00,0.0,1019.0375,0.0,99.14166667,0.770166667,1.94275,238.17731901666664 -2015-12-02 01:00:00,0.0,1018.9,0.0,99.85,0.7020000000000001,1.8799166669999998,238.17437514999997 -2015-12-02 02:00:00,0.0,1018.729167,0.0,100.0,0.62675,2.323833333,238.16957198333333 -2015-12-02 03:00:00,0.0,1018.429167,0.0,100.0,0.59625,1.732666667,238.1653885833333 -2015-12-02 04:00:00,0.0,1018.270833,0.0,100.0,0.3725,1.938166667,238.16105021666667 -2015-12-02 05:00:00,0.0,1017.970833,0.0,100.0,0.18991666699999998,1.6804166669999998,238.1582612666667 -2015-12-02 06:00:00,0.0,1017.7625,0.0,100.0,0.1605,1.446916667,238.15485253333335 -2015-12-02 07:00:00,0.0,1018.0583330000001,0.358333333,100.0,0.109083333,1.56675,238.15144383333333 -2015-12-02 08:00:00,0.0,1018.354167,6.9075,100.0,0.091916667,2.104666667,238.14695053333332 -2015-12-02 09:00:00,0.0,1018.520833,22.16333333,100.0,0.278916667,1.9565,238.14400666666666 -2015-12-02 10:00:00,0.0,1018.75,41.94,99.675,0.534333333,2.021833333,238.14044301666664 -2015-12-02 11:00:00,0.0,1018.908333,57.87416667,98.425,0.774666667,1.8559166669999998,238.13780899999998 -2015-12-02 12:00:00,0.0,1018.4875,77.40666667,97.29166667,1.095166667,1.5754166669999998,238.13440028333335 -2015-12-02 13:00:00,0.0,1018.041667,73.38,96.51666667,1.368,1.391,238.13130143333333 -2015-12-02 14:00:00,0.0,1017.695833,68.07083333,95.875,1.536583333,1.177,238.12789275 -2015-12-02 15:00:00,0.0,1017.270833,58.81416667,95.14166667,1.6404166669999998,1.1401666670000001,238.12634333333338 -2015-12-02 16:00:00,0.0,1017.208333,27.3275,95.45,1.37375,1.4743333330000001,238.12448406666667 -2015-12-02 17:00:00,0.0,1017.366667,3.75125,96.25,1.115583333,1.6845,238.12185006666664 -2015-12-02 18:00:00,0.0,1017.5,0.016416667,97.33333333,0.958833333,1.648916667,238.12092041666668 -2015-12-02 19:00:00,0.0,1017.6125,0.0,97.3,0.869916667,1.78675,238.11689191666665 -2015-12-02 20:00:00,0.0,1017.7,0.0,97.53333333,0.838333333,2.09125,238.11580733333332 -2015-12-02 21:00:00,0.0,1017.491667,0.0,97.78333333,0.786833333,2.197166667,238.1123986166667 -2015-12-02 22:00:00,0.0,1017.295833,0.0,98.36666667,0.593666667,2.235666667,238.10960968333333 -2015-12-02 23:00:00,0.0,1017.2375,0.0,98.91666667,0.26925,1.956,238.10790533333332 -2015-02-13 00:00:00,0.0,1016.979167,0.0,99.35,0.0505,1.6686666669999999,238.024486 -2015-02-13 01:00:00,0.0,1016.45,0.0,99.98333333,-0.208666667,2.108833333,238.02551933333334 -2015-02-13 02:00:00,0.0,1016.270833,0.0,100.0,-0.179166667,1.8675,238.02585266666668 -2015-02-13 03:00:00,0.0,1015.9416669999999,0.0,100.0,-0.22275,1.587833333,238.02585266666668 -2015-02-13 04:00:00,0.0,1015.445833,0.0,100.0,-0.428333333,2.03075,238.02585266666665 -2015-02-13 05:00:00,0.0,1015.229167,0.0,100.0,-0.65725,1.93975,238.02753600000003 -2015-02-13 06:00:00,0.0,1014.9875,0.0,100.0,-0.7503333329999999,2.007083333,238.028236 -2015-02-13 07:00:00,0.0,1014.8375,0.5745,100.0,-0.743583333,2.0459166669999997,238.028236 -2015-02-13 08:00:00,0.0,1014.7541669999999,10.45891667,100.0,-0.725,1.99725,238.028586 -2015-02-13 09:00:00,0.0,1014.9416669999999,32.2375,100.0,-0.655416667,1.963583333,238.0289193333333 -2015-02-13 10:00:00,0.0,1014.591667,58.22166667,100.0,-0.471083333,2.174583333,238.02961933333333 -2015-02-13 11:00:00,0.0,1014.4625,83.89833333,99.61666667,-0.279666667,2.549666667,238.02928599999998 -2015-02-13 12:00:00,0.0,1013.858333,108.38333329999999,98.3,0.193,2.70775,238.03028599999996 -2015-02-13 13:00:00,0.0,1013.141667,119.675,96.13333333,0.893083333,2.46775,238.03028599999996 -2015-02-13 14:00:00,0.0,1012.345833,136.7583333,93.75833333,2.180916667,2.4129166669999997,238.03028599999996 -2015-02-13 15:00:00,0.0,1011.729167,138.7416667,87.025,3.3360000000000003,2.6335833330000002,238.02995266666665 -2015-02-13 16:00:00,0.0,1011.133333,76.67416667,85.375,3.325166667,1.967333333,238.02961933333333 -2015-02-13 17:00:00,0.0,1010.5583330000001,13.89658333,88.0,2.70225,1.575166667,238.02961933333333 -2015-02-13 18:00:00,0.0,1010.4375,0.045083332999999996,92.4,1.8519999999999999,1.6081666669999999,238.02995266666665 -2015-02-13 19:00:00,0.0,1010.145833,0.0,93.65,1.0225,2.3305833330000003,238.02995266666665 -2015-02-13 20:00:00,0.0,1009.858333,0.0,95.86666667,0.295,1.682083333,238.02928599999998 -2015-02-13 21:00:00,0.0,1009.625,0.0,97.475,-0.311666667,1.237166667,238.02961933333333 -2015-02-13 22:00:00,0.0,1009.108333,0.0,96.73333333,-0.30675,1.9155,238.02995266666665 -2015-02-13 23:00:00,0.0,1008.725,0.0,96.03333333,-0.314833333,2.219666667,238.02928599999998 -2015-02-14 00:00:00,0.0,1008.5666669999999,0.0,96.40833333,-0.2815,1.6935,238.03028599999996 -2015-02-14 01:00:00,0.0,1007.954167,0.0,98.70833333,-0.796666667,0.855833333,238.03061933333333 -2015-02-14 02:00:00,0.0,1007.5041669999999,0.0,98.35,-0.942583333,1.5554166669999998,238.03061933333333 -2015-02-14 03:00:00,0.0,1006.854167,0.0,98.70833333,-1.175166667,0.885416667,238.02928599999998 -2015-02-14 04:00:00,0.0,1006.825,0.0,99.98333333,-1.83,0.593833333,238.03095266666665 -2015-02-14 05:00:00,0.0,1006.75,0.0,100.0,-1.873666667,0.633416667,238.03028599999996 -2015-02-14 06:00:00,0.0,1006.645833,0.0,100.0,-1.556416667,0.929416667,238.03163599999996 -2015-02-14 07:00:00,0.0,1006.658333,1.290166667,100.0,-1.520583333,0.9085,238.03163600000002 -2015-02-14 08:00:00,0.0,1006.6875,33.0375,99.6,-1.286666667,0.95375,238.032686 -2015-02-14 09:00:00,0.0,1006.954167,102.4358333,96.15833333,0.13016666699999999,1.160583333,238.03268599999998 -2015-02-14 10:00:00,0.0,1006.991667,170.2666667,91.85833333,1.916,1.375,238.03338599999998 -2015-02-14 11:00:00,0.0,1006.8791669999999,244.7833333,88.18333333,3.063916667,1.678666667,238.03336933333333 -2015-02-14 12:00:00,0.0,1006.529167,285.59166669999996,84.925,3.697666667,2.5693333330000003,238.03371933333332 -2015-02-14 13:00:00,0.0,1006.3083330000001,164.6083333,84.38333333,4.432583333,2.1568333330000002,238.03371933333332 -2015-02-14 14:00:00,0.0,1005.883333,115.66666670000001,84.69166667,4.2859166669999995,1.6520833330000002,238.03405266666667 -2015-02-14 15:00:00,0.0,1005.6291669999999,202.95833330000002,79.97166667,5.577583333,1.365,238.03405266666667 -2015-02-14 16:00:00,0.0,1004.966667,36.11833333,83.7125,5.052666667,0.89425,238.03338599999998 -2015-02-14 17:00:00,0.0,1005.05,6.9938333329999995,87.01666667,3.902083333,0.662083333,238.03338599999998 -2015-02-14 18:00:00,0.0,1005.341667,0.036583332999999996,91.10833333,2.941166667,1.055083333,238.034386 -2015-02-14 19:00:00,0.0,1005.545833,0.0,97.75833333,-0.02425,0.2655,238.035386 -2015-02-14 20:00:00,0.0,1005.616667,0.0,100.0,-0.369166667,0.8205,238.03608599999998 -2015-02-14 21:00:00,0.0,1005.8125,0.0,99.99166667,0.057916667000000005,1.249083333,238.03643599999998 -2015-02-14 22:00:00,0.0,1005.8375,0.0,99.975,-1.2415,0.368666667,238.03678599999998 -2015-02-14 23:00:00,0.0,1006.0875,0.0,100.0,-2.3680000000000003,0.08641666699999999,238.03781933333332 -2015-02-15 00:00:00,0.0,1006.229167,0.0,100.0,-3.019666667,0.061,238.03780266666664 -2015-02-15 01:00:00,0.0,1006.333333,0.0,100.0,-3.5373333330000003,0.051666667,238.03748599999997 -2015-02-15 02:00:00,0.0,1006.220833,0.0,100.0,-4.1205,0.050166667000000005,238.03881933333332 -2015-02-15 03:00:00,0.0,1006.2,0.0,100.0,-4.578666667,0.04975,238.03915266666664 -2015-02-15 04:00:00,0.0,1006.220833,0.0,100.0,-4.7575,0.11691666699999999,238.03948599999998 -2015-02-15 05:00:00,0.0,1006.233333,0.0,100.0,-4.9335833330000005,0.10316666699999999,238.03983599999995 -2015-02-15 06:00:00,0.0,1006.458333,0.0,100.0,-3.751666667,0.0935,238.040536 -2015-02-15 07:00:00,0.0,1006.9125,1.40725,100.0,-3.3298333330000003,0.08708333300000001,238.040886 -2015-02-15 08:00:00,0.0,1007.475,23.78816667,100.0,-3.145083333,0.04825,238.04123600000003 -2015-02-15 09:00:00,0.0,1007.8625,61.93416667,100.0,-1.638333333,0.053916667,238.04158600000002 -2015-02-15 10:00:00,0.0,1008.375,192.94166669999998,98.80833333,0.421833333,0.799083333,238.04228600000002 -2015-02-15 11:00:00,0.0,1008.604167,267.2666667,92.80833333,2.223416667,1.2835,238.042286 -2015-02-15 12:00:00,0.0,1008.5375,293.0166667,84.48333333,4.9125,0.822583333,238.04158600000002 -2015-02-15 13:00:00,0.0,1008.354167,294.1416667,78.13916667,5.152583333,1.542666667,238.04333599999998 -2015-02-15 14:00:00,0.0,1008.158333,255.44166669999998,74.71166667,6.23425,1.502666667,238.04263600000002 -2015-02-15 15:00:00,0.0,1008.383333,186.85,70.87333333,6.991916667000001,2.321166667,238.042986 -2015-02-15 16:00:00,0.0,1008.358333,100.7216667,72.25,6.6398333329999994,1.9795833330000001,238.042986 -2015-02-15 17:00:00,0.0,1008.866667,17.35408333,84.02166667,4.8019166669999995,0.9109999999999999,238.04468599999998 -2015-02-15 18:00:00,0.0,1009.7,0.131,95.06666667,2.363666667,1.54875,238.04568599999996 -2015-02-15 19:00:00,0.0,1010.491667,0.0,96.24166667,0.444666667,0.24583333300000001,238.04568599999996 -2015-02-15 20:00:00,0.0,1011.2,0.0,92.225,0.173416667,1.102833333,238.04638599999998 -2015-02-15 21:00:00,0.0,1011.75,0.0,96.48333333,-0.831416667,0.288333333,238.046736 -2015-02-15 22:00:00,0.0,1012.0583330000001,0.0,97.79166667,-1.351666667,0.15225,238.04743599999998 -2015-02-15 23:00:00,0.0,1012.1291669999999,0.0,99.83333333,-2.390666667,0.120333333,238.04743599999998 -2015-02-16 00:00:00,0.0,1012.25,0.0,100.0,-3.2235,0.052583332999999996,238.04776933333332 -2015-02-16 01:00:00,0.0,1012.3375,0.0,100.0,-3.845416667,0.028583333,238.04845266666666 -2015-02-16 02:00:00,0.0,1012.670833,0.0,100.0,-3.6525,0.0125,238.04811933333335 -2015-02-16 03:00:00,0.0,1012.9333330000001,0.0,100.0,-4.156416667,0.030666667,238.04811933333335 -2015-02-16 04:00:00,0.0,1013.2375,0.0,100.0,-4.384083333,0.00275,238.04911933333335 -2015-02-16 05:00:00,0.0,1013.733333,0.0,100.0,-2.858666667,0.13016666699999999,238.049786 -2015-02-16 06:00:00,0.0,1013.7458330000001,0.0,100.0,-2.0945,0.11808333300000001,238.04945266666667 -2015-02-16 07:00:00,0.0,1013.8791669999999,1.438916667,100.0,-1.885,0.012833333,238.05013600000004 -2015-02-16 08:00:00,0.0,1014.341667,33.04,100.0,-1.946916667,0.10875,238.050836 -2015-02-16 09:00:00,0.0,1014.583333,89.29833333,99.425,-0.799,0.15133333300000001,238.05153599999997 -2015-02-16 10:00:00,0.0,1014.758333,155.1166667,96.05,1.106583333,0.2,238.050486 -2015-02-16 11:00:00,0.0,1015.0375,176.16666669999998,91.34166667,2.2430000000000003,0.521416667,238.051186 -2015-02-16 12:00:00,0.0,1014.9,143.6083333,88.75833333,2.4933333330000003,0.8390833329999999,238.051886 -2015-02-16 13:00:00,0.0,1014.741667,113.41666670000001,88.08333333,2.9805,1.097916667,238.051886 -2015-02-16 14:00:00,0.0,1014.429167,80.62583333,88.05,2.99075,1.3295,238.05153599999997 -2015-02-16 15:00:00,0.0,1014.354167,43.11,89.11666667,2.68825,1.4611666669999999,238.051186 -2015-02-16 16:00:00,0.0,1014.583333,17.29083333,90.725,2.4306666669999997,1.50725,238.051886 -2015-02-16 17:00:00,0.0,1014.8375,3.717666667,91.575,2.215,1.40325,238.051886 -2015-02-16 18:00:00,0.0,1015.204167,0.02725,91.74166667,2.0459166669999997,1.053,238.051886 -2015-02-16 19:00:00,0.0,1015.5625,0.0,91.69166667,2.059333333,0.695083333,238.05288599999997 -2015-02-16 20:00:00,0.0,1016.0,0.0,92.51666667,2.0211666669999997,0.7979166670000001,238.05355266666663 -2015-02-16 21:00:00,0.0,1016.3708330000001,0.0,92.65833333,1.959,0.736,238.05388599999995 -2015-02-16 22:00:00,0.0,1016.795833,0.0,92.78333333,1.757333333,0.49875,238.05321933333332 -2015-02-16 23:00:00,0.0,1017.0583330000001,0.0,92.775,1.6499166669999998,0.5013333329999999,238.05423599999997 -2015-02-17 00:00:00,0.0,1017.616667,0.0,93.35833333,1.4113333330000002,0.539083333,238.05458599999997 -2015-02-17 01:00:00,0.0,1018.079167,0.0,93.8,1.329416667,0.41675,238.054936 -2015-02-17 02:00:00,0.0,1018.616667,0.0,93.36666667,1.094416667,0.136,238.054586 -2015-02-17 03:00:00,0.0,1018.766667,0.0,93.81666667,1.08875,0.177,238.054936 -2015-02-17 04:00:00,0.0,1019.4416669999999,0.0,94.15833333,1.204,0.43158333299999996,238.055986 -2015-02-17 05:00:00,0.0,1020.0375,0.0,94.83333333,1.12975,0.70975,238.05665266666665 -2015-02-17 06:00:00,0.0,1021.029167,0.0,95.71666667,0.98425,0.7685833329999999,238.05665266666668 -2015-02-17 07:00:00,0.0,1022.1833330000001,0.494666667,96.78333333,0.654166667,0.922,238.05835266666665 -2015-02-17 08:00:00,0.0,1023.320833,7.079666667000001,97.50833333,0.29733333300000003,1.064083333,238.05833600000003 -2015-02-17 09:00:00,0.0,1024.529167,28.63583333,94.65,0.43241666700000003,0.97325,238.059386 -2015-02-17 10:00:00,0.0,1025.7125,46.59583333,93.175,1.02825,1.534083333,238.059386 -2015-02-17 11:00:00,0.0,1026.666667,75.195,91.4,1.4625833330000002,1.507333333,238.059036 -2015-02-17 12:00:00,0.0,1027.266667,116.4,87.71666667,2.24525,1.204833333,238.059036 -2015-02-17 13:00:00,0.0,1027.633333,154.29166669999998,85.6,3.020083333,0.92875,238.06008599999998 -2015-02-17 14:00:00,0.0,1027.866667,176.025,84.25,4.508916667,0.5025,238.059386 -2015-02-17 15:00:00,0.0,1028.504167,89.5875,84.0,4.706166667,1.092166667,238.06008599999998 -2015-02-17 16:00:00,0.0,1028.9875,41.8375,84.975,4.725083333,0.642916667,238.06041933333333 -2015-02-17 17:00:00,0.0,1029.7125,5.859583333,89.1,4.426833333,0.535666667,238.06141933333333 -2015-02-17 18:00:00,0.0,1030.654167,0.06433333299999999,91.4,3.816833333,0.3345,238.0621193333333 -2015-02-17 19:00:00,0.0,1031.625,0.0,91.1,3.808583333,0.299583333,238.06348599999998 -2015-02-17 20:00:00,0.0,1032.579167,0.0,92.93333333,3.576166667,0.613,238.06243599999996 -2015-02-17 21:00:00,0.0,1033.304167,0.0,94.68333333,3.321916667,0.317833333,238.06243599999996 -2015-02-17 22:00:00,0.0,1033.675,0.0,96.18333333,2.9971666669999997,0.26899999999999996,238.06348599999998 -2015-02-17 23:00:00,0.0,1033.891667,0.0,97.28333333,2.9755833330000003,0.24608333300000002,238.063486 -2015-02-18 00:00:00,0.0,1034.408333,0.0,97.34166667,3.030916667,0.215,238.06418599999998 -2015-02-18 01:00:00,0.0,1034.541667,0.0,97.475,3.0716666669999997,0.166416667,238.06418599999998 -2015-02-18 02:00:00,0.0,1034.5,0.0,98.90833333,3.042416667,0.113666667,238.06418599999998 -2015-02-18 03:00:00,0.0,1034.441667,0.0,99.64166667,2.9285,0.027999999999999997,238.06418599999998 -2015-02-18 04:00:00,0.0,1034.616667,0.0,99.60833333,2.898583333,0.025666667,238.06453599999998 -2015-02-18 05:00:00,0.0,1034.666667,0.0,99.89166667,2.6605,0.007666666999999999,238.065236 -2015-02-18 06:00:00,0.0,1034.708333,0.0,100.0,2.54725,0.179666667,238.065936 -2015-02-18 07:00:00,0.0,1034.8625,2.182666667,100.0,2.486333333,0.09116666699999999,238.065936 -2015-02-18 08:00:00,0.0,1035.3125,20.3925,99.93333333,2.75025,0.10266666699999999,238.066286 -2015-02-18 09:00:00,0.0,1035.895833,41.73333333,98.00833333,3.3153333330000003,0.29733333300000003,238.066286 -2015-02-18 10:00:00,0.0,1035.9375,87.13416667,94.99166667,4.053333333,0.353916667,238.066286 -2015-02-18 11:00:00,0.0,1035.6375,149.7416667,88.63333333,4.7665,0.71175,238.06695266666665 -2015-02-18 12:00:00,0.0,1035.141667,201.4,86.41666667,6.03275,1.04725,238.0666193333333 -2015-02-18 13:00:00,0.0,1034.341667,230.35,82.1125,6.20775,1.4898333330000002,238.066286 -2015-02-18 14:00:00,0.0,1033.741667,110.23333329999998,81.06,5.91025,1.6034166669999999,238.066286 -2015-02-18 15:00:00,0.0,1033.279167,74.10583333,77.49083333,5.5445,1.279666667,238.066286 -2015-02-18 16:00:00,0.0,1032.908333,39.755,78.46333333,4.89075,1.565666667,238.066286 -2015-02-18 17:00:00,0.0,1032.408333,11.85308333,80.6775,4.365333333,1.093333333,238.0666193333333 -2015-02-18 18:00:00,0.0,1032.258333,0.39075,82.3,3.930333333,1.3460833330000002,238.06695266666665 -2015-02-18 19:00:00,0.0,1032.229167,0.0,85.56666667,3.124833333,1.092833333,238.0666193333333 -2015-02-18 20:00:00,0.0,1032.05,0.0,93.78333333,1.9140000000000001,1.4715,238.0666193333333 -2015-02-18 21:00:00,0.0,1031.5,0.0,98.18333333,-0.081666667,1.623083333,238.06795266666666 -2015-02-18 22:00:00,0.0,1031.233333,0.0,99.75,-1.381833333,0.68975,238.06828599999997 -2015-02-18 23:00:00,0.0,1030.841667,0.0,100.0,-1.38175,0.82,238.06828599999997 -2015-02-19 00:00:00,0.0,1030.425,0.0,100.0,-0.95925,1.119666667,238.06828599999997 -2015-02-19 01:00:00,0.0,1030.008333,0.0,100.0,-0.307666667,1.05975,238.06828599999997 -2015-02-19 02:00:00,0.0,1029.85,0.0,100.0,-0.7270833329999999,0.140833333,238.06828599999997 -2015-02-19 03:00:00,0.0,1029.35,0.0,100.0,-0.099,0.233833333,238.06828599999997 -2015-02-19 04:00:00,0.0,1028.841667,0.0,97.35833333,0.3225,0.25425,238.06828599999997 -2015-02-19 05:00:00,0.0,1028.404167,0.0,95.25833333,0.293666667,0.37725,238.06761933333334 -2015-02-19 06:00:00,0.0,1027.891667,0.0,95.00833333,0.195583333,0.59225,238.066286 -2015-02-19 07:00:00,0.0,1027.379167,1.014,95.33333333,-0.0615,1.384416667,238.066286 -2015-02-19 08:00:00,0.0,1027.508333,12.10016667,95.50833333,-0.19675,1.69075,238.066286 -2015-02-19 09:00:00,0.0,1027.604167,41.18833333,93.85833333,0.040416667,1.038333333,238.0666193333333 -2015-02-19 10:00:00,0.0,1027.091667,77.02166667,91.55833333,0.46883333299999996,1.76475,238.0666193333333 -2015-02-19 11:00:00,0.0,1026.645833,107.54166670000001,90.475,0.8490000000000001,1.97375,238.066286 -2015-02-19 12:00:00,0.0,1025.979167,129.8333333,88.20833333,1.368416667,2.2328333330000003,238.066286 -2015-02-19 13:00:00,0.0,1024.875,144.3583333,85.94166667,1.7029166669999998,2.4780833330000003,238.066286 -2015-02-19 14:00:00,0.0,1023.958333,102.7175,86.73333333,1.838416667,2.421333333,238.066286 -2015-02-19 15:00:00,0.0,1023.291667,54.60166667,88.45833333,1.7361666669999998,1.77475,238.06558600000002 -2015-02-19 16:00:00,0.0,1022.266667,38.93833333,88.15833333,1.6121666669999999,2.3565,238.06418599999998 -2015-02-19 17:00:00,0.0,1021.5583330000001,8.210833333,88.225,1.02425,2.135166667,238.06418599999998 -2015-02-19 18:00:00,0.0,1021.275,0.141,89.76666667,0.9288333329999999,1.293166667,238.06418599999998 -2015-02-19 19:00:00,0.0,1021.145833,0.0,89.63333333,0.806666667,1.065416667,238.06418599999998 -2015-02-19 20:00:00,0.0,1020.925,0.0,90.675,0.7244166670000001,1.279083333,238.065236 -2015-02-19 21:00:00,0.0,1020.391667,0.0,90.44166667,0.560916667,1.1295,238.065936 -2015-02-19 22:00:00,0.0,1019.733333,0.0,90.125,0.33,1.005416667,238.065236 -2015-02-19 23:00:00,0.0,1018.904167,0.0,92.14166667,-0.22241666699999998,1.0989166670000001,238.065936 -2015-02-20 00:00:00,0.0,1018.375,0.0,96.29166667,-0.8198333329999999,0.515333333,238.066286 -2015-02-20 01:00:00,0.0,1017.3083330000001,0.0,94.38333333,-0.065,1.297166667,238.065236 -2015-02-20 02:00:00,0.0,1016.208333,0.0,94.30833333,0.768,2.482166667,238.065236 -2015-02-20 03:00:00,0.0,1015.479167,0.0,92.775,1.17625,3.0825,238.06418599999998 -2015-02-20 04:00:00,0.0,1014.466667,0.0,88.69166667,1.4804166669999999,3.182666667,238.06418599999998 -2015-02-20 05:00:00,0.0,1013.6208330000001,0.0,86.91666667,1.8975,2.021416667,238.062786 -2015-02-20 06:00:00,0.0,1012.625,0.0,87.46666667,1.673416667,1.54425,238.06243599999996 -2015-02-20 07:00:00,0.0,1012.154167,17.93333333,89.575,1.235333333,2.031166667,238.062086 -2015-02-20 08:00:00,0.0,1011.966667,47.47666667,85.85833333,2.344,2.21225,238.062086 -2015-02-20 09:00:00,0.0,1011.4375,61.75416667,85.13333333,3.30925,1.597833333,238.06243599999996 -2015-02-20 10:00:00,0.0,1010.720833,194.625,83.275,6.66825,2.61875,238.062086 -2015-02-20 11:00:00,0.0,1009.895833,186.80833330000002,81.23666667,7.213333333,3.031,238.062086 -2015-02-20 12:00:00,0.0,1008.891667,307.96666669999996,77.1875,8.793333333,2.670416667,238.06108599999996 -2015-02-20 13:00:00,0.0,1007.883333,250.06666669999998,75.33166667,8.721666667000001,3.281666667,238.06008599999998 -2015-02-20 14:00:00,0.0,1006.6,86.3,74.87833333,9.395,2.997666667,238.06041933333333 -2015-02-20 15:00:00,0.0,1005.7541669999999,41.7625,73.82,9.416666667000001,2.0499166669999997,238.06008599999998 -2015-02-20 16:00:00,0.0,1004.6,31.43083333,71.9175,9.535833333,1.8599166669999998,238.06041933333333 -2015-02-20 17:00:00,0.0,1003.4416669999999,13.55783333,69.4425,9.101833333,1.4240000000000002,238.06008599999998 -2015-02-20 18:00:00,0.0,1002.525,0.08775,68.06,8.097999999999999,1.09675,238.06008599999998 -2015-02-20 19:00:00,0.0,1001.725,0.0,63.13,8.6075,2.318,238.06041933333333 -2015-02-20 20:00:00,0.0,1000.645833,0.0,62.35,8.4275,2.5878333330000003,238.06008599999998 -2015-02-20 21:00:00,0.0,999.8083332999998,0.0,61.00583333,8.576666667000001,2.3785,238.06008599999998 -2015-02-20 22:00:00,0.0,998.9708332999999,0.0,62.5025,8.49,1.575666667,238.05973599999996 -2015-02-20 23:00:00,0.0,997.6875,0.0,64.62916667,9.380833333,1.7919999999999998,238.059386 -2015-02-21 00:00:00,0.0,996.5333332999999,0.0,65.5625,9.068,1.668916667,238.05765266666666 -2015-02-21 01:00:00,0.0,995.4916667000001,0.0,64.2875,7.722916667000001,1.856416667,238.058686 -2015-02-21 02:00:00,0.0,994.4666667000001,0.0,68.1425,8.19425,2.278166667,238.057986 -2015-02-21 03:00:00,0.0,993.6333332999999,0.0,76.26083333,8.139416667,3.395333333,238.05731933333334 -2015-02-21 04:00:00,0.0,992.825,0.0,80.73916667,7.509333333,2.748583333,238.05731933333334 -2015-02-21 05:00:00,0.0,992.0875,0.0,82.49166667,7.221666667,2.7665833330000003,238.05698600000002 -2015-02-21 06:00:00,0.0,991.5208332999998,0.0,84.28333333,6.894666667,2.877416667,238.057986 -2015-02-21 07:00:00,0.0,991.1541667000001,2.67825,89.21666667,6.283833333,2.654666667,238.05731933333334 -2015-02-21 08:00:00,0.0,991.4125,15.12083333,90.38333333,6.195666667,2.3064166669999997,238.057986 -2015-02-21 09:00:00,12.46708896,992.4958332999998,61.4625,93.56666667,5.025916667,2.0325833330000003,238.057986 -2015-02-21 10:00:00,0.0,993.1083332999999,82.6175,91.39166667,4.463666667,1.3626666669999998,238.05833600000003 -2015-02-21 11:00:00,0.0,993.6958332999999,109.17416670000001,89.6,4.4968333330000005,1.6185833330000001,238.05833599999997 -2015-02-21 12:00:00,0.0,994.1416667000001,200.6,84.54166667,5.05725,1.9825,238.059036 -2015-02-21 13:00:00,0.0,994.2458332999998,154.1083333,79.6875,5.636333333,2.115333333,238.059386 -2015-02-21 14:00:00,0.0,994.5458332999999,108.7325,79.24833333,5.868416667000001,1.326416667,238.059386 -2015-02-21 15:00:00,0.0,994.7541667000002,66.22416667,83.51666667,5.1363333330000005,1.49675,238.06040266666665 -2015-02-21 16:00:00,0.0,995.075,57.1475,84.75,4.810833333,1.258416667,238.06108599999996 -2015-02-21 17:00:00,2.651098008,995.4791667000002,13.52758333,89.64166667,4.17625,0.9115,238.0614193333333 -2015-02-21 18:00:00,2.3865511440000002,996.1041667000002,0.355,96.29166667,2.3729166669999997,0.138333333,238.06243600000002 -2015-02-21 19:00:00,0.0,996.3791667000002,0.0,100.0,1.498583333,0.345,238.062086 -2015-02-21 20:00:00,0.0,996.6666667000002,0.0,99.79166667,0.682583333,0.040416667,238.063836 -2015-02-21 21:00:00,0.0,997.2416667000001,0.0,93.0,0.991833333,0.487416667,238.063486 -2015-02-21 22:00:00,0.0,997.9416667000002,0.0,93.925,0.4765,0.230416667,238.063836 -2015-02-21 23:00:00,0.0,998.15,0.0,99.14166667,-0.42825,0.083083333,238.06418599999998 -2015-02-22 00:00:00,0.0,998.7375,0.0,100.0,-1.0985,0.142666667,238.066286 -2015-02-22 01:00:00,0.0,999.175,0.0,100.0,-1.325916667,0.146083333,238.066286 -2015-02-22 02:00:00,0.0,999.5,0.0,100.0,-1.4250833330000001,0.10058333300000001,238.0666193333333 -2015-02-22 03:00:00,0.0,1000.333333,0.0,100.0,-1.38775,0.051916667,238.06728599999997 -2015-02-22 04:00:00,0.0,1001.175,0.0,100.0,-1.01475,0.03875,238.06828599999997 -2015-02-22 05:00:00,0.0,1002.016667,0.0,100.0,-0.32858333300000003,0.047333333,238.06795266666666 -2015-02-22 06:00:00,0.0,1002.5583330000001,0.0,100.0,0.37875,0.34825,238.06968599999996 -2015-02-22 07:00:00,0.0,1003.2,1.7031666669999999,99.99166667,0.8121666670000001,0.518,238.07038599999996 -2015-02-22 08:00:00,0.0,1004.2875,33.5825,99.60833333,1.156666667,0.79775,238.07038599999996 -2015-02-22 09:00:00,0.0,1005.108333,86.25416667,96.38333333,1.979,1.111916667,238.07038599999996 -2015-02-22 10:00:00,0.0,1005.7,146.6525,83.98333333,3.233083333,0.873,238.07105266666667 -2015-02-22 11:00:00,0.0,1005.9875,309.4583333,76.78666667,4.582333333,1.285583333,238.071386 -2015-02-22 12:00:00,0.0,1006.1125,308.2333333,69.86833333,5.926583333,1.578,238.07171933333333 -2015-02-22 13:00:00,0.0,1005.920833,122.65583329999998,74.1625,5.3505,1.5368333330000001,238.07205266666668 -2015-02-22 14:00:00,0.0,1005.375,195.55833330000002,69.46666667,5.88075,1.689416667,238.07238600000002 -2015-02-22 15:00:00,0.0,1005.0666669999999,192.0658333,64.33333333,6.9066666670000005,1.263416667,238.071386 -2015-02-22 16:00:00,0.0,1004.9125,125.82166670000001,64.66,6.024666667000001,1.240583333,238.07171933333336 -2015-02-22 17:00:00,0.0,1004.795833,29.57783333,69.27333333,4.303083333,0.41100000000000003,238.07238600000002 -2015-02-22 18:00:00,0.0,1004.6875,0.33925,85.0025,2.7408333330000003,1.265916667,238.07343600000002 -2015-02-22 19:00:00,0.0,1004.470833,0.0,82.26666667,1.587083333,1.8859166669999998,238.07448599999998 -2015-02-22 20:00:00,0.0,1004.420833,0.0,83.99166667,0.962833333,2.364416667,238.07448599999998 -2015-02-22 21:00:00,0.0,1003.570833,0.0,89.11666667,0.337083333,2.107583333,238.07448599999998 -2015-02-22 22:00:00,0.0,1002.804167,0.0,91.275,-0.6313333329999999,1.04625,238.07413599999998 -2015-02-22 23:00:00,0.0,1001.795833,0.0,96.51666667,-1.430666667,0.764166667,238.07448599999998 -2015-02-23 00:00:00,0.0,1000.920833,0.0,99.54166667,-2.17275,0.225916667,238.07448599999998 -2015-02-23 01:00:00,0.0,999.7625,0.0,99.76666667,-1.5833333330000001,0.42466666700000005,238.07448599999998 -2015-02-23 02:00:00,0.0,998.6666667000002,0.0,79.50083333,0.671416667,0.700333333,238.072736 -2015-02-23 03:00:00,0.0,997.7458332999998,0.0,78.66083333,1.6580000000000001,2.183833333,238.072736 -2015-02-23 04:00:00,0.0,996.5291667000001,0.0,74.72,2.3311666669999997,3.51325,238.07238600000002 -2015-02-23 05:00:00,0.0,995.8291667000001,0.0,76.3375,2.600166667,1.4179166669999999,238.07205266666665 -2015-02-23 06:00:00,0.0,995.1875,0.0,96.375,1.3753333330000002,1.012166667,238.07105266666667 -2015-02-23 07:00:00,0.0,994.5041667000002,1.273,100.0,0.598333333,0.829916667,238.07038599999996 -2015-02-23 08:00:00,0.0,993.9208332999999,5.846083332999999,100.0,0.652083333,0.783083333,238.0707193333333 -2015-02-23 09:00:00,2.500532352,993.8041667000001,13.91066667,100.0,0.746833333,0.765083333,238.07038599999996 -2015-02-23 10:00:00,0.0,993.5833332999998,26.275,100.0,0.900416667,0.586,238.07038599999996 -2015-02-23 11:00:00,25.38431117,993.175,38.83916667,100.0,1.10575,0.92925,238.06518599999995 -2015-02-23 12:00:00,25.40819808,992.7333332999999,47.78166667,100.0,1.243833333,0.950416667,238.06453599999998 -2015-02-23 13:00:00,23.43120115,992.2541667000002,60.43166667,100.0,1.190833333,1.3113333329999999,238.06660266666665 -2015-02-23 14:00:00,25.78778916,992.05,88.02916667,100.0,1.627833333,1.213416667,238.07035266666665 -2015-02-23 15:00:00,14.86734458,992.3291667000001,77.91916667,97.76666667,1.920166667,0.581,238.065936 -2015-02-23 16:00:00,15.564518300000001,992.1875,63.1,98.025,1.8385,1.081583333,238.06558600000002 -2015-02-23 17:00:00,9.75466308,992.6208332999998,12.56341667,97.9,1.7065,0.26616666699999997,238.06178599999998 -2015-02-23 18:00:00,4.853802024,993.1208332999998,0.11791666699999999,99.90833333,1.463583333,0.191,238.05526933333329 -2015-02-23 19:00:00,2.462639592,993.4416667000002,0.0,100.0,1.210333333,0.203916667,238.05151933333332 -2015-02-23 20:00:00,2.4384845040000003,993.7458332999998,0.0,100.0,1.080333333,0.24991666699999998,238.04810266666664 -2015-02-23 21:00:00,4.853398272,994.1875,0.0,100.0,1.110416667,0.169833333,238.050486 -2015-02-23 22:00:00,0.0,994.3708332999998,0.0,100.0,0.838916667,0.169666667,238.04776933333332 -2015-02-23 23:00:00,2.3865511440000002,994.65,0.0,100.0,0.67375,0.10158333300000001,238.05015266666666 -2015-02-24 00:00:00,0.0,995.1875,0.0,97.78333333,0.35266666700000004,0.053833333,238.050836 -2015-02-24 01:00:00,0.0,995.5541667000001,0.0,95.38333333,0.8886666670000001,0.11441666699999999,238.0501526666667 -2015-02-24 02:00:00,0.0,996.0125,0.0,96.15833333,1.8481666669999999,0.639916667,238.0460526666666 -2015-02-24 03:00:00,0.0,996.4083332999999,0.0,91.59166667,0.8936666670000001,0.708916667,238.047086 -2015-02-24 04:00:00,0.0,997.1083332999999,0.0,91.15,1.242416667,0.8255,238.049786 -2015-02-24 05:00:00,5.505133896,997.6166667000001,0.0,92.56666667,2.718833333,1.4298333330000002,238.04570266666667 -2015-02-24 06:00:00,0.0,997.8541667000002,0.0,92.66666667,1.900166667,1.199,238.041936 -2015-02-24 07:00:00,0.0,998.325,4.1216666669999995,92.025,1.55125,1.6075833330000002,238.03848599999995 -2015-02-24 08:00:00,2.49804792,999.475,34.67333333,89.35833333,1.99375,1.8953333330000002,238.047086 -2015-02-24 09:00:00,11.81616142,999.5916667000001,116.66,85.15,3.6519999999999997,1.8555833330000002,238.05735266666667 -2015-02-24 10:00:00,17.818497100000002,1000.329167,255.4,81.98333333,4.709416667,1.84775,238.06558600000002 -2015-02-24 11:00:00,0.0,1001.025,270.225,78.36333333,5.340666667,2.1589166669999997,238.05766933333334 -2015-02-24 12:00:00,0.0,1001.695833,146.5916667,77.39916667,5.7961666670000005,2.21275,238.05561933333334 -2015-02-24 13:00:00,0.0,1002.2875,87.47916667,82.0025,5.085083333,2.80925,238.04980266666666 -2015-02-24 14:00:00,0.0,1002.904167,77.17916667,85.38333333,5.14475,2.441083333,238.04640266666664 -2015-02-24 15:00:00,0.0,1003.5,60.75916667,81.99166667,6.09375,1.3926666669999999,238.04810266666664 -2015-02-24 16:00:00,2.9601943680000002,1004.141667,34.035,83.85,5.765166667000001,1.3895,238.04158600000002 -2015-02-24 17:00:00,0.0,1005.116667,13.33141667,86.74166667,5.43925,1.42875,238.03781933333332 -2015-02-24 18:00:00,0.0,1006.0375,0.547166667,90.34166667,4.51,1.7684166669999999,238.03130266666665 -2015-02-24 19:00:00,0.0,1007.1625,0.0,89.96666667,4.408166667,1.44925,238.03096933333333 -2015-02-24 20:00:00,0.0,1007.85,0.0,92.45,3.63725,1.5894166669999998,238.02136933333335 -2015-02-24 21:00:00,0.0,1008.3166669999999,0.0,96.56666667,1.980833333,0.691666667,238.01725266666668 -2015-02-24 22:00:00,0.0,1008.758333,0.0,100.0,0.763083333,0.145,238.00973599999998 -2015-02-24 23:00:00,0.0,1008.8875,0.0,100.0,-0.746,0.057999999999999996,238.00698599999998 -2015-02-25 00:00:00,0.0,1009.329167,0.0,96.79166667,-1.4060833330000002,0.276,238.018286 -2015-02-25 01:00:00,0.0,1009.8791669999999,0.0,99.10833333,-1.5490833330000002,0.15766666699999998,238.0145193333333 -2015-02-25 02:00:00,0.0,1010.383333,0.0,99.2,-1.468833333,0.22108333300000002,238.00938599999995 -2015-02-25 03:00:00,0.0,1010.633333,0.0,99.56666667,-1.936083333,0.048166667,238.01451933333337 -2015-02-25 04:00:00,0.0,1011.2541669999999,0.0,96.31666667,-1.307,0.029666667,238.023086 -2015-02-25 05:00:00,0.0,1011.758333,0.0,96.375,-0.6213333329999999,0.024666667000000003,238.025186 -2015-02-25 06:00:00,0.0,1011.9375,0.0,98.975,-1.0535,0.31025,238.02310266666666 -2015-02-25 07:00:00,0.0,1012.108333,5.028333333,100.0,-1.7495,0.234333333,238.0145193333333 -2015-02-25 08:00:00,0.0,1012.725,32.4775,100.0,-0.782,0.320833333,238.01760266666668 -2015-02-25 09:00:00,0.0,1013.145833,109.66666670000001,100.0,0.26716666699999997,0.45141666700000005,238.03850266666666 -2015-02-25 10:00:00,0.0,1013.541667,200.1333333,100.0,1.05425,1.049666667,238.053236 -2015-02-25 11:00:00,0.0,1013.733333,308.775,99.13333333,1.8135,0.923666667,238.05698599999997 -2015-02-25 12:00:00,0.0,1013.608333,190.8275,97.85,3.242,1.5301666669999998,238.04878599999998 -2015-02-25 13:00:00,0.0,1013.3625,222.2833333,90.4,5.97375,1.05025,238.04501933333333 -2015-02-25 14:00:00,0.0,1012.983333,170.30583330000002,85.31333333,7.69125,0.849833333,238.04603599999996 -2015-02-25 15:00:00,0.0,1013.008333,203.05833330000002,62.35916667,8.116416667000001,1.50675,238.04603599999996 -2015-02-25 16:00:00,0.0,1012.920833,92.68166667,66.3425,7.988333333,0.934416667,238.04708599999995 -2015-02-25 17:00:00,0.0,1013.295833,19.38916667,79.1625,6.675916667,1.202833333,238.04811933333335 -2015-02-25 18:00:00,0.0,1013.658333,0.90275,86.975,3.875833333,0.36791666700000003,238.04945266666667 -2015-02-25 19:00:00,0.0,1014.25,0.0,96.36666667,2.631916667,0.156,238.05013599999998 -2015-02-25 20:00:00,0.0,1014.6916669999999,0.0,90.55,2.61925,0.28475,238.050836 -2015-02-25 21:00:00,0.0,1015.0875,0.0,94.20833333,4.212166667,0.986916667,238.051886 -2015-02-25 22:00:00,2.850651144,1015.395833,0.0,93.5,3.807416667,0.737583333,238.05221933333334 -2015-02-25 23:00:00,2.409616224,1015.270833,0.0,95.59166667,3.74175,0.739583333,238.05255266666666 -2015-02-26 00:00:00,4.9337604960000006,1015.391667,0.0,97.39166667,3.268166667,0.29975,238.05388599999995 -2015-02-26 01:00:00,0.0,1015.508333,0.0,100.0,3.0173333330000003,0.305166667,238.05423599999997 -2015-02-26 02:00:00,0.0,1015.3708330000001,0.0,100.0,2.7818333330000002,0.14925,238.054936 -2015-02-26 03:00:00,2.4050227680000003,1015.2541669999999,0.0,100.0,2.79825,0.017666667,238.055286 -2015-02-26 04:00:00,0.0,1015.170833,0.0,100.0,2.743666667,0.011916666999999999,238.055986 -2015-02-26 05:00:00,0.0,1015.2458330000001,0.0,100.0,2.80875,0.18,238.055986 -2015-02-26 06:00:00,0.0,1015.3,0.0,100.0,2.62975,0.272083333,238.055986 -2015-02-26 07:00:00,0.0,1015.266667,3.062916667,100.0,2.4579166669999997,0.143833333,238.057986 -2015-02-26 08:00:00,0.0,1015.470833,26.54,100.0,2.752416667,0.203083333,238.057986 -2015-02-26 09:00:00,0.0,1015.3166669999999,85.5425,99.03333333,4.02475,0.916333333,238.057986 -2015-02-26 10:00:00,0.0,1014.75,165.45833330000002,90.38333333,5.4044166670000005,1.8295833330000002,238.05765266666666 -2015-02-26 11:00:00,0.0,1014.5625,270.4,84.76666667,6.920083332999999,2.711416667,238.05631933333333 -2015-02-26 12:00:00,0.0,1014.229167,184.0333333,82.94916667,7.054666667,3.12775,238.05698600000002 -2015-02-26 13:00:00,0.0,1013.4375,118.9575,79.45166667,7.556,3.380083333,238.05631933333333 -2015-02-26 14:00:00,0.0,1012.8166669999999,145.2675,78.73916667,7.630583333,3.477666667,238.05665266666665 -2015-02-26 15:00:00,0.0,1012.0375,41.9375,81.8375,7.0076666670000005,1.9284166669999998,238.05731933333334 -2015-02-26 16:00:00,0.0,1011.425,36.13833333,79.6075,7.020583332999999,0.9338333329999999,238.05631933333333 -2015-02-26 17:00:00,0.0,1010.654167,16.8065,77.56916667,6.74225,1.342166667,238.05698600000002 -2015-02-26 18:00:00,0.0,1010.320833,0.5631666670000001,91.6,5.28125,0.134833333,238.05833599999997 -2015-02-26 19:00:00,0.0,1009.554167,0.0,95.525,4.605333333,0.444333333,238.05833599999997 -2015-02-26 20:00:00,0.0,1008.679167,0.0,96.675,3.99725,1.142916667,238.05833599999997 -2015-02-26 21:00:00,0.0,1007.916667,0.0,96.79166667,4.115666667,1.127916667,238.05833599999997 -2015-02-26 22:00:00,0.0,1007.283333,0.0,94.01666667,4.406083333,1.74,238.05833600000003 -2015-02-26 23:00:00,0.0,1006.583333,0.0,73.43916667,4.5405,1.7908333330000001,238.057986 -2015-02-27 00:00:00,0.0,1006.054167,0.0,69.69333333,4.658333333,1.865833333,238.057986 -2015-02-27 01:00:00,0.0,1005.345833,0.0,79.04666667,4.6595,1.531,238.057986 -2015-02-27 02:00:00,0.0,1004.85,0.0,90.08333333,4.0505833330000005,0.063166667,238.05833600000003 -2015-02-27 03:00:00,0.0,1004.216667,0.0,96.29166667,3.535416667,0.24833333300000002,238.057986 -2015-02-27 04:00:00,12.67492711,1003.75,0.0,99.43333333,3.3625,0.701666667,238.057986 -2015-02-27 05:00:00,17.81598682,1003.65,0.0,99.65833333,3.249833333,0.704583333,238.057986 -2015-02-27 06:00:00,19.909272100000003,1003.720833,0.0,100.0,2.814666667,0.39225,238.055986 -2015-02-27 07:00:00,28.68143362,1004.2,3.070083333,100.0,2.767416667,0.877833333,238.05563599999996 -2015-02-27 08:00:00,28.782303600000002,1004.8875,20.34666667,100.0,2.8723302360000003,0.960333333,238.04980266666664 -2015-02-27 09:00:00,13.01025595,1005.591667,47.66083333,100.0,3.160666667,0.883166667,238.042286 -2015-02-27 10:00:00,13.11650796,1006.325,69.41833333,99.93333333,3.067333333,0.829333333,238.03370266666664 -2015-02-27 11:00:00,7.752711696,1007.054167,82.41416667,100.0,3.074833333,0.892,238.023086 -2015-02-27 12:00:00,0.0,1007.575,139.025,97.58333333,3.8650833330000003,1.0125,238.0145193333333 -2015-02-27 13:00:00,5.983523448,1008.095833,99.22333333,95.36666667,4.773833333,2.075166667,238.00596933333335 -2015-02-27 14:00:00,18.21093295,1008.670833,93.82,94.64166667,4.89825,3.1414166669999997,238.000136 -2015-02-27 15:00:00,3.6864094080000003,1009.354167,59.55,94.2,4.98475,3.0439999999999996,237.99636933333332 -2015-02-27 16:00:00,3.4103022239999996,1010.5,34.21333333,94.09166667,4.617,3.406416667,237.99156933333333 -2015-02-27 17:00:00,5.916308256000001,1011.3,11.31325,95.275,4.23475,2.03875,237.98713599999996 -2015-02-27 18:00:00,0.0,1012.1916669999999,0.6445,94.64166667,4.101,1.312083333,237.98475266666662 -2015-02-27 19:00:00,0.0,1012.954167,0.0,95.45833333,3.9043333330000003,0.914333333,237.983386 -2015-02-27 20:00:00,0.0,1013.545833,0.0,96.13333333,3.610083333,0.544083333,237.980986 -2015-02-27 21:00:00,0.0,1014.195833,0.0,97.01666667,3.36425,0.709333333,237.98233599999995 -2015-02-27 22:00:00,0.0,1014.841667,0.0,94.45833333,3.596083333,0.917,237.98408599999996 -2015-02-27 23:00:00,0.0,1015.095833,0.0,95.08333333,3.2295,0.553583333,237.98441933333334 -2015-02-28 00:00:00,0.0,1015.525,0.0,97.04166667,1.901416667,0.38491666700000005,237.986436 -2015-02-28 01:00:00,0.0,1015.7,0.0,99.89166667,0.864166667,0.254916667,237.988186 -2015-02-28 02:00:00,0.0,1015.483333,0.0,100.0,0.10516666699999999,0.485333333,237.98985266666668 -2015-02-28 03:00:00,0.0,1015.633333,0.0,100.0,0.363416667,0.937416667,237.99088599999996 -2015-02-28 04:00:00,0.0,1015.825,0.0,99.875,0.03325,0.819583333,237.99261933333332 -2015-02-28 05:00:00,0.0,1015.791667,0.0,99.875,-0.441666667,0.522083333,237.994636 -2015-02-28 06:00:00,0.0,1015.8,0.009833333,100.0,-1.402166667,0.163916667,237.99705266666663 -2015-02-28 07:00:00,0.0,1016.0125,7.1175,100.0,-1.8860833330000002,0.16875,237.99873599999998 -2015-02-28 08:00:00,0.0,1016.2375,39.83583333,100.0,-0.6053333329999999,0.06875,238.00083600000002 -2015-02-28 09:00:00,0.0,1016.829167,62.36416667,100.0,0.18100000000000002,0.9238333329999999,238.003586 -2015-02-28 10:00:00,2.422434216,1016.6291669999999,139.6416667,100.0,0.7656666670000001,0.785666667,238.004586 -2015-02-28 11:00:00,0.0,1016.1625,265.09166669999996,96.4,2.094833333,0.9375,238.00633599999995 -2015-02-28 12:00:00,0.0,1015.470833,333.40833330000004,86.775,4.909666667,1.087416667,238.00668599999997 -2015-02-28 13:00:00,0.0,1014.595833,422.11666669999994,70.72666667,6.92925,1.022333333,238.00701933333332 -2015-02-28 14:00:00,0.0,1013.8,284.78333330000004,62.5725,7.584333332999999,1.7564166669999999,238.00868599999998 -2015-02-28 15:00:00,0.0,1013.295833,203.05833330000002,59.64416667,7.442583332999999,1.837083333,238.010086 -2015-02-28 16:00:00,0.0,1012.6125,161.97,56.36833333,7.37075,1.57775,238.01078600000002 -2015-02-28 17:00:00,0.0,1011.695833,35.56166667,63.605,5.70725,1.310833333,238.011786 -2015-02-28 18:00:00,0.0,1011.4333330000001,1.1915,78.52333333,2.3170833330000002,0.8665,238.01453599999994 -2015-02-28 19:00:00,0.0,1010.883333,0.0,94.35,0.5735,0.822666667,238.01655266666663 -2015-02-28 20:00:00,0.0,1010.470833,0.0,94.41666667,0.003833333,0.755166667,238.01758600000002 -2015-02-28 21:00:00,0.0,1009.8083330000001,0.0,94.73333333,0.048,0.688416667,238.018286 -2015-02-28 22:00:00,0.0,1008.833333,0.0,98.91666667,-1.2575,0.12558333300000002,238.018986 -2015-02-28 23:00:00,0.0,1007.75,0.0,98.74166667,-1.452083333,0.124083333,238.018986 -2015-01-03 00:00:00,0.0,1006.804167,0.0,75.83583333,-0.603916667,0.35333333299999997, -2015-01-03 01:00:00,0.0,1005.779167,0.0,70.5175,1.52575,1.035333333, -2015-01-03 02:00:00,0.0,1004.708333,0.0,71.2025,2.8605,2.506, -2015-01-03 03:00:00,0.0,1003.5041669999999,0.0,69.52333333,2.4485,1.8065, -2015-01-03 04:00:00,7.93785504,1002.325,0.0,84.60916667,2.52225,1.1786666670000001, -2015-01-03 05:00:00,27.23801923,1001.65,0.0,93.225,2.193,1.304166667, -2015-01-03 06:00:00,11.04765463,1001.0625,0.0,99.4,2.266833333,1.305833333, -2015-01-03 07:00:00,27.798499100000004,1000.7458330000001,1.117416667,99.44166667,2.443,2.08575, -2015-01-03 08:00:00,2.736297216,1000.708333,19.22175,96.375,2.593916667,1.7165, -2015-01-03 09:00:00,0.0,1000.3,54.71166667,96.3,3.95025,1.68475, -2015-01-03 10:00:00,0.0,1000.4875,42.74583333,97.33333333,5.306833333,1.7990000000000002, -2015-01-03 11:00:00,0.0,1000.6,88.66,96.51666667,5.971333333,1.0393333329999999, -2015-01-03 12:00:00,0.0,1000.258333,288.7333333,91.5,8.719,1.8446666669999998, -2015-01-03 13:00:00,0.0,999.7666667000001,219.18333330000002,86.925,10.075,2.7095833330000003, -2015-01-03 14:00:00,0.0,999.6041667000002,255.675,78.55083333,10.965,2.909333333, -2015-01-03 15:00:00,0.0,999.6375,168.43333330000002,65.02416667,11.18333333,2.7141666669999998, -2015-01-03 16:00:00,0.0,999.4208332999999,119.54916670000001,66.41416667,10.8,2.6438333330000003, -2015-01-03 17:00:00,13.47847435,999.4333332999998,18.31858333,77.48083333,9.965333333,2.67375, -2015-01-03 18:00:00,5.68396236,1000.0125,0.5795,94.65833333,6.87825,1.171083333, -2015-01-03 19:00:00,0.0,1000.133333,0.0,98.14166667,5.00025,0.7110833329999999, -2015-01-03 20:00:00,2.493844344,999.2458332999998,0.0,98.6,3.5180000000000002,0.242333333, -2015-01-03 21:00:00,0.0,998.875,0.0,84.44666667,2.4533333330000002,0.311166667, -2015-01-03 22:00:00,0.0,998.0416667000002,0.0,79.43916667,6.465666667000001,1.449583333, -2015-01-03 23:00:00,0.0,997.2083332999998,0.0,84.00833333,7.127916667,1.83025, -2015-02-03 00:00:00,0.0,995.7291667000002,0.0,85.2,7.874333332999999,1.646916667, -2015-02-03 01:00:00,0.0,994.9375,0.0,86.41666667,8.13875,2.204583333, -2015-02-03 02:00:00,15.15340891,994.0791667000001,0.0,91.35,7.656916667000001,2.030166667, -2015-02-03 03:00:00,50.51754098,994.9458332999999,0.0,89.80833333,6.826083333,3.3258333330000003, -2015-02-03 04:00:00,0.0,995.7541667000002,0.0,88.33333333,5.459166667000001,1.9609166669999998, -2015-02-03 05:00:00,0.0,996.1416667000001,0.0,88.10833333,5.402166667,1.4335, -2015-02-03 06:00:00,0.0,996.7208332999999,0.047,88.275,4.943833333,1.288166667, -2015-02-03 07:00:00,3.382306488,997.4791667000002,5.412083332999999,89.46666667,4.255166667,1.4655, -2015-02-03 08:00:00,3.093667656,998.3083332999998,26.58741667,90.60833333,4.189166667,1.96425, -2015-02-03 09:00:00,0.0,999.0125,95.67583333,92.80833333,4.854,2.133083333, -2015-02-03 10:00:00,0.0,1000.416667,214.2833333,89.9,5.419416667,2.783416667, -2015-02-03 11:00:00,0.0,1001.3125,339.71666669999996,79.06416667,6.548166667,3.09125, -2015-02-03 12:00:00,0.0,1001.6625,344.6916667,68.68083333,7.524916667,2.8889166669999997, -2015-02-03 13:00:00,0.0,1001.866667,192.25,63.5225,7.9298333329999995,2.5278333330000002, -2015-02-03 14:00:00,0.0,1001.9333330000001,283.3916667,58.89916667,8.3375,2.365916667, -2015-02-03 15:00:00,0.0,1001.895833,253.125,54.42333333,9.208333332999999,2.584083333, -2015-02-03 16:00:00,0.0,1001.883333,55.813,62.48916667,8.206333333,3.06225, -2015-02-03 17:00:00,50.44417658,1003.266667,15.93141667,94.5,3.73625,2.33, -2015-02-03 18:00:00,25.95168547,1004.491667,0.583833333,95.50833333,3.1528333330000002,2.777166667, -2015-02-03 19:00:00,0.0,1006.258333,0.0,91.8,2.6814166669999997,2.0829166669999997, -2015-02-03 20:00:00,0.0,1007.016667,0.0,91.675,2.531416667,1.94475, -2015-02-03 21:00:00,0.0,1008.283333,0.0,91.9,2.28125,2.7744166669999997, -2015-02-03 22:00:00,0.0,1009.479167,0.0,92.43333333,2.04825,3.312666667, -2015-02-03 23:00:00,0.0,1010.783333,0.0,94.425,1.72575,2.971833333, -2015-03-03 00:00:00,0.0,1011.645833,0.0,91.4,1.8965833330000001,2.820666667,237.98408599999996 -2015-03-03 01:00:00,0.0,1012.579167,0.0,88.5,1.87,2.2039166669999997,237.98575266666663 -2015-03-03 02:00:00,0.0,1013.083333,0.0,87.625,1.6500833330000002,1.9530833330000001,237.987136 -2015-03-03 03:00:00,0.0,1013.304167,0.0,88.80833333,1.4231666669999998,1.8,237.98985266666668 -2015-03-03 04:00:00,0.0,1013.729167,0.0,89.44166667,1.369666667,2.329583333,237.99158599999996 -2015-03-03 05:00:00,0.0,1013.708333,0.0,90.075,0.9835,1.68025,237.99261933333332 -2015-03-03 06:00:00,0.0,1014.05,0.09625,89.7,1.112,1.993416667,237.99428600000002 -2015-03-03 07:00:00,0.0,1014.458333,8.613916667,88.80833333,1.434916667,1.7250833330000002,237.994986 -2015-03-03 08:00:00,0.0,1014.725,24.97333333,86.60833333,2.459333333,2.826916667,237.996386 -2015-03-03 09:00:00,0.0,1015.154167,154.39583330000002,83.99166667,3.64625,2.4954166669999998,237.99805266666667 -2015-03-03 10:00:00,0.0,1015.2125,289.3166667,79.03583333,5.224666667,2.083916667,237.99838599999998 -2015-03-03 11:00:00,0.0,1014.9416669999999,350.1666667,69.55916667,7.05225,2.1975833330000003,237.99908599999995 -2015-03-03 12:00:00,0.0,1014.4333330000001,313.025,67.32166667,8.112083333,3.1183333330000003,238.000486 -2015-03-03 13:00:00,0.0,1013.479167,265.4166667,65.505,8.734166667,2.7079166669999997,238.000486 -2015-03-03 14:00:00,0.0,1012.3875,318.65833330000004,63.91,9.429166667,2.5245833330000003,238.001886 -2015-03-03 15:00:00,0.0,1011.541667,176.2583333,60.82666667,9.738333333,3.3193333330000003,238.00258599999998 -2015-03-03 16:00:00,0.0,1010.866667,56.97333333,59.1375,9.279166667,2.751833333,238.00391933333333 -2015-03-03 17:00:00,0.0,1010.720833,16.89316667,59.65916667,8.940833332999999,2.927,238.00528599999998 -2015-03-03 18:00:00,0.0,1010.525,0.750416667,64.5875,8.193166667,2.603416667,238.00668599999997 -2015-03-03 19:00:00,47.19036571,1011.4875,0.0,80.54,6.6798333329999995,3.1223333330000003,238.00701933333332 -2015-03-03 20:00:00,6.37535208,1011.858333,0.0,92.75,3.99425,2.465416667,238.00528599999998 -2015-03-03 21:00:00,0.0,1012.204167,0.0,95.75833333,3.916583333,1.329333333,238.00598599999998 -2015-03-03 22:00:00,2.869613184,1012.983333,0.0,95.33333333,3.853916667,1.5905,238.00668599999997 -2015-03-03 23:00:00,0.0,1013.625,0.0,93.85833333,3.6318333330000003,1.565,238.00701933333332 -2015-04-03 00:00:00,0.0,1014.1916669999999,0.0,93.19166667,3.3178333330000003,1.709,238.05076270000004 -2015-04-03 01:00:00,0.0,1014.595833,0.0,93.74166667,2.8255,1.84675,238.05066046666664 -2015-04-03 02:00:00,0.0,1015.2125,0.0,95.58333333,2.425166667,1.7349166669999998,238.05048680000002 -2015-04-03 03:00:00,0.0,1015.7541669999999,0.0,94.51666667,2.49475,1.89375,238.05038333333334 -2015-04-03 04:00:00,0.0,1016.333333,0.0,95.73333333,1.4645833330000002,0.945916667,238.05020843333332 -2015-04-03 05:00:00,0.0,1016.8083330000001,0.0,94.675,1.108833333,0.542666667,238.05005455 -2015-04-03 06:00:00,0.0,1017.208333,0.123083333,95.40833333,1.345833333,1.24475,238.05000406666667 -2015-04-03 07:00:00,0.0,1017.5,10.55875,95.21666667,0.580333333,0.43791666700000004,238.04990553333334 -2015-04-03 08:00:00,0.0,1018.070833,35.05916667,93.79166667,2.140166667,1.0865833329999999,238.04985503333333 -2015-04-03 09:00:00,0.0,1018.741667,148.6725,89.09166667,3.3016666669999997,1.661666667,238.04972569999998 -2015-04-03 10:00:00,0.0,1019.429167,219.94166669999998,85.0,4.560416667,2.31475,238.04962716666668 -2015-04-03 11:00:00,0.0,1019.741667,245.04166669999998,80.46333333,4.966916667,2.09775,238.0495779 -2015-04-03 12:00:00,0.0,1019.875,348.65833330000004,75.52333333,6.255333332999999,2.415833333,238.04955203333336 -2015-04-03 13:00:00,0.0,1020.016667,303.75,72.19583333,7.004833333,2.392833333,238.0494227 -2015-04-03 14:00:00,0.0,1019.9125,164.7791667,71.35916667,6.785583333,1.8975,238.04937096666666 -2015-04-03 15:00:00,0.0,1020.0,119.15833329999998,68.5725,6.920583333,1.62875,238.0492675 -2015-04-03 16:00:00,3.60573372,1020.3166669999999,106.3775,72.02583333,6.507916667000001,2.4105,238.04924286666665 -2015-04-03 17:00:00,2.902754208,1021.170833,19.36475,85.80416667,4.662083333,2.272833333,238.04916896666666 -2015-04-03 18:00:00,12.0324359,1022.116667,0.52875,97.80833333,2.631583333,1.863583333,238.04904214999996 -2015-04-03 19:00:00,2.6018506319999997,1022.283333,0.0,96.425,2.040333333,1.2820833329999999,238.0489153333333 -2015-04-03 20:00:00,0.0,1022.570833,0.0,95.70833333,2.2440833330000003,1.358,238.0489399666667 -2015-04-03 21:00:00,0.0,1023.054167,0.0,93.675,3.03425,1.558,238.04881556666666 -2015-04-03 22:00:00,0.0,1023.625,0.0,94.18333333,2.9865,1.391,238.0487392 -2015-04-03 23:00:00,0.0,1024.25,0.0,92.48333333,2.9725,1.164416667,238.04873920000003 -2015-05-03 00:00:00,0.0,1025.05,0.0,91.625,3.3504166669999997,1.270416667, -2015-05-03 01:00:00,0.0,1025.75,0.0,89.41666667,3.317583333,1.299166667, -2015-05-03 02:00:00,0.0,1026.6875,0.0,86.34166667,3.016333333,1.01475, -2015-05-03 03:00:00,0.0,1027.604167,0.0,89.825,2.797333333,0.943416667, -2015-05-03 04:00:00,0.0,1028.141667,0.0,90.525,2.476333333,1.204083333, -2015-05-03 05:00:00,0.0,1028.825,0.0,88.80833333,2.8855,1.3860833330000002, -2015-05-03 06:00:00,0.0,1029.495833,0.16725,87.40833333,2.76375,0.971583333, -2015-05-03 07:00:00,0.0,1029.729167,12.34875,90.375,2.1109166669999997,0.736583333, -2015-05-03 08:00:00,0.0,1030.445833,72.54083333,88.41666667,3.2039166669999997,1.6915, -2015-05-03 09:00:00,0.0,1031.004167,158.2166667,84.00833333,4.176833333,2.19175, -2015-05-03 10:00:00,0.0,1031.479167,154.1333333,81.84333333,4.651083333,1.5355833330000002, -2015-05-03 11:00:00,0.0,1031.370833,265.775,73.10333333,5.683,2.196416667, -2015-05-03 12:00:00,0.0,1031.508333,311.625,66.33,6.625583333,3.262916667, -2015-05-03 13:00:00,0.0,1031.216667,200.7,66.09,6.768,2.887166667, -2015-05-03 14:00:00,0.0,1030.991667,270.7916667,64.95583333,7.0425,2.78625, -2015-05-03 15:00:00,0.0,1030.854167,163.69166669999998,62.55333333,7.1319166670000005,2.7141666669999998, -2015-05-03 16:00:00,0.0,1030.841667,93.73583333,64.7375,7.13375,2.8738333330000003, -2015-05-03 17:00:00,0.0,1031.129167,38.77416667,68.27916667,6.684,2.301, -2015-05-03 18:00:00,0.0,1031.458333,1.4499166669999999,83.47083333,4.802666667,0.6788333329999999, -2015-05-03 19:00:00,0.0,1031.666667,0.0,91.25,3.0015,0.12625, -2015-05-03 20:00:00,0.0,1031.783333,0.0,95.5,1.6046666669999998,0.060833332999999996, -2015-05-03 21:00:00,0.0,1031.883333,0.0,97.375,0.717333333,0.07875, -2015-05-03 22:00:00,0.0,1032.045833,0.0,99.25833333,0.00325,0.040583333, -2015-05-03 23:00:00,0.0,1031.975,0.0,99.99166667,-0.258833333,0.074083333, -2015-06-03 00:00:00,0.0,1031.9375,0.0,100.0,0.07175,0.08716666699999999,237.79810145000002 -2015-06-03 01:00:00,0.0,1031.925,0.0,100.0,0.03975,0.0545,237.79637768333336 -2015-06-03 02:00:00,0.0,1031.508333,0.0,100.0,-0.850916667,0.033416667000000004,237.80103186666668 -2015-06-03 03:00:00,0.0,1031.166667,0.0,100.0,-1.333916667,0.18916666699999998,237.80344513333333 -2015-06-03 04:00:00,0.0,1031.35,0.0,100.0,-1.772416667,0.15566666699999998,237.80310036666665 -2015-06-03 05:00:00,0.0,1031.741667,0.0,100.0,-2.219166667,0.027999999999999997,237.8036175 -2015-06-03 06:00:00,0.0,1031.695833,0.24808333300000002,100.0,-2.55625,0.041416667000000004,237.80172133333335 -2015-06-03 07:00:00,0.0,1031.854167,15.822000000000001,100.0,-2.42875,0.011166667,237.79879098333336 -2015-06-03 08:00:00,0.0,1032.008333,40.27333333,99.95833333,-0.191833333,0.21125,237.79344728333334 -2015-06-03 09:00:00,0.0,1032.3625,145.87083330000002,91.3,3.0805833330000003,0.696416667,237.79137876666664 -2015-06-03 10:00:00,0.0,1032.270833,239.7416667,84.23166667,5.184083333,0.575666667,237.78879311666665 -2015-06-03 11:00:00,0.0,1032.220833,182.30833330000002,77.65916667,6.765166667000001,1.3733333330000002,237.78775886666662 -2015-06-03 12:00:00,0.0,1032.095833,131.38333329999998,74.005,6.834166667000001,1.4515,237.7841389333333 -2015-06-03 13:00:00,0.0,1031.741667,135.875,66.50583333,7.2345,1.027166667,237.7806914 -2015-06-03 14:00:00,0.0,1031.05,140.80833330000002,64.47333333,7.5385,1.218166667,237.77879525 -2015-06-03 15:00:00,0.0,1030.695833,159.925,61.94333333,8.187583333,0.73825,237.77776101666666 -2015-06-03 16:00:00,0.0,1030.041667,101.355,61.27333333,8.23325,1.149666667,237.7760372666667 -2015-06-03 17:00:00,0.0,1029.770833,23.2975,74.09333333,6.80425,0.915,237.77500298333334 -2015-06-03 18:00:00,0.0,1029.9625,2.45525,87.12083333,5.459416667,0.47616666700000004,237.77483061666666 -2015-06-03 19:00:00,0.0,1030.25,0.0,93.325,4.258083333,0.269416667,237.77431346666663 -2015-06-03 20:00:00,0.0,1029.920833,0.0,96.30833333,3.04675,0.33916666700000003,237.77672673333333 -2015-06-03 21:00:00,0.0,1029.65,0.0,97.175,1.4455,0.208833333,237.7789676333333 -2015-06-03 22:00:00,0.0,1029.4375,0.0,99.61666667,0.035833332999999995,0.11508333300000001,237.78103615 -2015-06-03 23:00:00,0.0,1029.125,0.0,100.0,-0.493666667,0.173083333,237.78344941666663 -2015-07-03 00:00:00,0.0,1029.420833,0.0,100.0,-0.670333333,0.368833333,237.6066449 -2015-07-03 01:00:00,0.0,1029.316667,0.0,100.0,-1.204,0.11641666699999999,237.60971156666665 -2015-07-03 02:00:00,0.0,1029.1125,0.0,100.0,-2.0789166669999997,0.022166667,237.61236005 -2015-07-03 03:00:00,0.0,1028.545833,0.0,100.0,-2.43925,0.028083333,237.61472975 -2015-07-03 04:00:00,0.0,1028.375,0.0,100.0,-2.71775,0.0025,237.6193297166667 -2015-07-03 05:00:00,0.0,1028.141667,0.0,100.0,-2.983,0.001583333,237.62072365000003 -2015-07-03 06:00:00,0.0,1027.7625,0.32758333300000003,100.0,-3.117833333,0.0015,237.62183881666667 -2015-07-03 07:00:00,0.0,1027.683333,20.0245,100.0,-2.726416667,0.07875,237.62295395 -2015-07-03 08:00:00,0.0,1028.108333,69.01833333,100.0,-0.638333333,0.001166667,237.62197820000003 -2015-07-03 09:00:00,0.0,1028.395833,143.54166669999998,99.725,1.076916667,0.273666667,237.6140327666666 -2015-07-03 10:00:00,0.0,1028.275,215.19166669999998,93.80833333,3.36775,0.273916667,237.60120855 -2015-07-03 11:00:00,0.0,1028.35,222.55833330000002,87.33833333,4.92975,0.35716666700000005,237.5893600833334 -2015-07-03 12:00:00,0.0,1028.05,279.8166667,77.97916667,7.155583332999999,1.3605,237.5826691666667 -2015-07-03 13:00:00,0.0,1027.408333,333.5,69.96,9.320833333,1.9045,237.58057826666666 -2015-07-03 14:00:00,0.0,1026.933333,263.175,65.32833333,9.680833332999999,2.265916667,237.5761176666667 -2015-07-03 15:00:00,3.223812912,1026.3,163.35,59.90333333,9.798333332999999,2.252583333,237.57514191666667 -2015-07-03 16:00:00,0.0,1025.941667,100.8666667,57.08166667,9.305,2.404833333,237.57235403333334 -2015-07-03 17:00:00,0.0,1025.6375,39.68333333,62.5325,8.459,2.4003333330000003,237.57291161666663 -2015-07-03 18:00:00,0.0,1025.7375,4.118416667,82.58583333,7.14,2.135416667,237.57346918333334 -2015-07-03 19:00:00,0.0,1025.641667,0.0,90.15,3.536166667,0.37158333299999996,237.57402678333335 -2015-07-03 20:00:00,0.0,1025.095833,0.0,94.71666667,1.44325,0.23,237.57709343333337 -2015-07-03 21:00:00,0.0,1024.916667,0.0,96.25833333,0.50075,0.142833333,237.58197220000002 -2015-07-03 22:00:00,0.0,1024.820833,0.0,98.34166667,-0.162583333,0.07741666700000001,237.58420248333334 -2015-07-03 23:00:00,0.0,1024.5375,0.0,99.55,-0.45141666700000005,0.012666667,237.58824493333336 -2015-08-03 00:00:00,0.0,1024.195833,0.0,99.88333333,-0.948333333,0.0,237.47854211666666 -2015-08-03 01:00:00,0.0,1023.841667,0.0,100.0,-1.337166667,0.0,237.48286330000005 -2015-08-03 02:00:00,0.0,1023.5041669999999,0.0,100.0,-1.54975,0.0,237.48648755000002 -2015-08-03 03:00:00,0.0,1023.1916669999999,0.0,100.0,-1.819083333,0.0,237.49025118333336 -2015-08-03 04:00:00,0.0,1022.741667,0.0,100.0,-2.226416667,0.000166667,237.49303903333336 -2015-08-03 05:00:00,0.0,1022.275,0.0,100.0,-2.491166667,0.0,237.49526935000003 -2015-08-03 06:00:00,0.0,1022.0125,0.273916667,100.0,-2.7515,0.0,237.49680268333336 -2015-08-03 07:00:00,0.0,1022.0041669999999,16.49541667,100.0,-2.7120833330000003,0.0,237.49819663333335 -2015-08-03 08:00:00,0.0,1022.25,49.90333333,100.0,-0.18025,8.329999999999999e-05,237.49819661666666 -2015-08-03 09:00:00,0.0,1022.304167,189.8583333,96.43333333,2.7366666669999997,0.161666667,237.49387539999998 -2015-08-03 10:00:00,0.0,1022.341667,308.375,84.3575,6.768333332999999,0.44025,237.48049363333334 -2015-08-03 11:00:00,0.0,1022.266667,335.5166667,72.30333333,10.02583333,1.55175,237.46432395 -2015-08-03 12:00:00,0.0,1021.7625,331.2666667,63.80416667,11.53916667,1.5801666669999999,237.4514997166667 -2015-08-03 13:00:00,0.0,1021.279167,292.05,61.55833333,11.56583333,2.2200833330000003,237.44564521666666 -2015-08-03 14:00:00,0.0,1020.770833,243.6,59.26666667,12.33333333,1.7258333330000002,237.44285731666665 -2015-08-03 15:00:00,0.0,1020.091667,172.30833330000002,57.75416667,12.7425,1.6145,237.44006945 -2015-08-03 16:00:00,0.0,1019.3,104.93166670000001,59.10666667,12.27083333,1.5521666669999998,237.436724 -2015-08-03 17:00:00,0.0,1018.979167,40.28166667,70.60583333,11.24416667,0.44299999999999995,237.43895429999998 -2015-08-03 18:00:00,0.0,1018.779167,3.98325,86.675,8.66275,0.547083333,237.43797855 -2015-08-03 19:00:00,0.0,1019.145833,0.0,92.05833333,6.877000000000001,0.29775,237.43895429999998 -2015-08-03 20:00:00,0.0,1019.1208330000001,0.0,94.68333333,4.3225,0.232333333,237.44202096666666 -2015-08-03 21:00:00,0.0,1018.9958330000001,0.0,96.425,3.113916667,0.18941666699999998,237.44564520000003 -2015-08-03 22:00:00,0.0,1019.175,0.0,96.30833333,2.13625,0.43958333299999997,237.45024518333335 -2015-08-03 23:00:00,0.0,1019.325,0.0,96.36666667,1.334083333,0.245166667,237.45512398333335 -2015-09-03 00:00:00,0.0,1019.479167,0.0,98.8,0.564916667,0.197833333,237.58074618333333 -2015-09-03 01:00:00,0.0,1019.616667,0.0,99.63333333,0.1525,0.10125,237.58276258333333 -2015-09-03 02:00:00,0.0,1019.954167,0.0,99.89166667,-0.38691666700000005,0.214416667,237.58415854999998 -2015-09-03 03:00:00,0.0,1020.016667,0.0,99.725,-0.813083333,0.2815,237.58446876666665 -2015-09-03 04:00:00,0.0,1020.325,0.0,100.0,-1.131,0.091083333,237.58772603333333 -2015-09-03 05:00:00,0.0,1021.170833,0.0,99.275,-1.635083333,0.07616666700000001,237.58974243333338 -2015-09-03 06:00:00,0.0,1021.65,0.255583333,99.98333333,-1.923416667,0.12066666699999999,237.58943224999996 -2015-09-03 07:00:00,0.0,1021.9958330000001,17.71591667,100.0,-1.106166667,0.080916667,237.58757094999999 -2015-09-03 08:00:00,0.0,1022.758333,45.84416667,100.0,0.822666667,0.183416667,237.58819136666662 -2015-09-03 09:00:00,0.0,1022.720833,139.9666667,97.13333333,3.506333333,0.607666667,237.58788114999996 -2015-09-03 10:00:00,0.0,1022.8125,267.6416667,88.14166667,7.870666667,0.713583333,237.58586473333332 -2015-09-03 11:00:00,0.0,1022.575,237.95,80.67333333,10.5975,1.121416667,237.58601984999999 -2015-09-03 12:00:00,0.0,1022.266667,361.7666667,74.04416667,12.34416667,2.4515,237.58183193333332 -2015-09-03 13:00:00,0.0,1021.770833,418.95,68.22083333,13.75416667,1.15875,237.57640313333334 -2015-09-03 14:00:00,0.0,1021.104167,380.0416667,65.06416667,14.11916667,1.4664166669999998,237.5746969666667 -2015-09-03 15:00:00,0.0,1020.766667,282.2916667,63.60416667,14.59583333,1.2805,237.57143968333332 -2015-09-03 16:00:00,0.0,1020.7458330000001,192.05,59.95666667,14.63333333,1.13525,237.56678646666663 -2015-09-03 17:00:00,0.0,1020.704167,41.8975,70.85416667,13.485,0.755416667,237.56601093333336 -2015-09-03 18:00:00,0.0,1020.641667,2.90325,89.61666667,8.379583333,0.285416667,237.56352921666667 -2015-09-03 19:00:00,0.0,1020.716667,0.0,96.44166667,5.662000000000001,0.24716666699999998,237.56306386666665 -2015-09-03 20:00:00,0.0,1020.516667,0.0,99.28333333,4.03125,0.195416667,237.56259855000005 -2015-09-03 21:00:00,0.0,1020.716667,0.0,99.975,3.047416667,0.173666667,237.56321898333337 -2015-09-03 22:00:00,0.0,1020.5666669999999,0.0,100.0,2.036916667,0.073083333,237.56352919999998 -2015-09-03 23:00:00,0.0,1020.2375,0.0,100.0,1.1415,0.241166667,237.56383943333336 -2015-10-03 00:00:00,0.0,1020.258333,0.0,100.0,0.6206666670000001,0.069833333,237.58229724999998 -2015-10-03 01:00:00,0.0,1020.545833,0.0,100.0,-0.10291666699999999,0.0025,237.5830728 -2015-10-03 02:00:00,0.0,1020.325,0.0,100.0,-0.35808333299999995,0.11433333300000001,237.58322791666663 -2015-10-03 03:00:00,0.0,1020.154167,0.0,100.0,-0.9635,0.009583333000000001,237.58772603333333 -2015-10-03 04:00:00,0.0,1020.291667,0.0,100.0,-1.026916667,0.048166667,237.58927713333333 -2015-10-03 05:00:00,0.0,1020.470833,0.0,100.0,-0.9009166670000001,0.198333333,237.59113843333333 -2015-10-03 06:00:00,0.0,1020.5666669999999,1.126916667,100.0,-0.913166667,0.053333333,237.5925344 -2015-10-03 07:00:00,0.0,1021.091667,24.30141667,100.0,-0.233166667,0.06308333299999999,237.5900526833333 -2015-10-03 08:00:00,2.466036864,1021.783333,51.30166667,100.0,1.330833333,0.141166667,237.58989756666668 -2015-10-03 09:00:00,0.0,1022.291667,63.79166667,100.0,2.804166667,0.440666667,237.58943223333333 -2015-10-03 10:00:00,2.4492017280000002,1022.15,111.975,99.76666667,4.67925,0.405416667,237.58958736666662 -2015-10-03 11:00:00,2.432953056,1022.2541669999999,138.94166669999998,97.85833333,7.4345,0.5924166670000001,237.58710559999997 -2015-10-03 12:00:00,0.0,1022.470833,111.35166670000001,97.3,8.8775,1.110583333,237.58291770000002 -2015-10-03 13:00:00,0.0,1022.25,111.43583329999998,97.98333333,9.2575,1.10925,237.58167681666666 -2015-10-03 14:00:00,0.0,1022.258333,79.1525,98.525,9.221666667000001,0.89025,237.57609293333334 -2015-10-03 15:00:00,0.0,1022.241667,58.67833333,98.85833333,9.070833333,0.421333333,237.5728356333333 -2015-10-03 16:00:00,0.0,1022.2458330000001,49.76166667,97.94166667,9.225,0.9188333329999999,237.57097435 -2015-10-03 17:00:00,0.0,1022.295833,32.63166667,97.91666667,9.4075,0.82525,237.57097434999994 -2015-10-03 18:00:00,0.0,1022.516667,1.666833333,99.45833333,9.180833332999999,0.6851666670000001,237.57066413333334 -2015-10-03 19:00:00,0.0,1022.908333,0.0,99.35,8.411,0.91525,237.57035391666668 -2015-10-03 20:00:00,0.0,1023.2125,0.0,99.675,6.72575,0.668333333,237.5714396666667 -2015-10-03 21:00:00,0.0,1023.575,0.0,100.0,4.155916667,0.132583333,237.57283563333337 -2015-10-03 22:00:00,0.0,1023.766667,0.0,100.0,2.278333333,0.054000000000000006,237.57423161666668 -2015-10-03 23:00:00,0.0,1023.708333,0.0,100.0,1.8081666669999998,0.236666667,237.57516230000002 -2015-11-03 00:00:00,0.0,1023.741667,0.0,100.0,1.040666667,0.284333333,237.72520025000003 -2015-11-03 01:00:00,0.0,1023.958333,0.0,100.0,0.15433333300000002,0.12175,237.72612990000002 -2015-11-03 02:00:00,0.0,1023.8625,0.0,100.0,-0.561333333,0.164583333,237.72705953333335 -2015-11-03 03:00:00,0.0,1023.929167,0.0,100.0,-1.1494166670000001,0.07766666700000001,237.72752436666664 -2015-11-03 04:00:00,0.0,1024.1875,0.0,100.0,-1.7198333330000002,0.10241666699999999,237.72783425000003 -2015-11-03 05:00:00,0.0,1024.345833,0.0,100.0,-2.4,0.097666667,237.72736939999996 -2015-11-03 06:00:00,0.0,1024.729167,0.71475,100.0,-2.85725,0.038166667,237.72736941666668 -2015-11-03 07:00:00,0.0,1025.483333,16.7325,100.0,-2.8239166669999998,0.03075,237.7289188166667 -2015-11-03 08:00:00,0.0,1026.020833,41.7425,100.0,0.37391666700000004,0.068166667,237.72705956666667 -2015-11-03 09:00:00,2.549335488,1026.379167,237.31666669999998,94.675,3.1118333330000003,0.56825,237.7276793 -2015-11-03 10:00:00,0.0,1026.2375,283.7416667,84.16666667,4.375,2.124333333,237.72783423333337 -2015-11-03 11:00:00,0.0,1026.083333,371.3666667,76.80666667,5.351416667,2.348416667,237.7276793 -2015-11-03 12:00:00,0.0,1025.575,438.1,68.22916667,6.996583332999999,1.2035,237.72752436666667 -2015-11-03 13:00:00,0.0,1024.9,431.53333330000004,63.03416667,7.759333333,1.1975833329999999,237.72721448333334 -2015-11-03 14:00:00,0.0,1024.4875,393.5666667,54.68083333,8.76,1.165916667,237.72736945 -2015-11-03 15:00:00,0.0,1024.408333,320.075,50.98416667,10.00916667,0.9674166670000001,237.72907375 -2015-11-03 16:00:00,0.0,1024.216667,214.94166669999998,48.8575,10.41,0.77275,237.72907375000003 -2015-11-03 17:00:00,0.0,1024.054167,45.96416667,55.53,9.6475,0.502416667,237.72984845000005 -2015-11-03 18:00:00,0.0,1024.2375,4.666083333,83.77083333,5.262416667,0.262333333,237.72891879999997 -2015-11-03 19:00:00,0.0,1024.541667,0.0,90.56666667,2.200333333,0.139416667,237.73077810000004 -2015-11-03 20:00:00,0.0,1024.929167,0.0,94.0,0.875083333,0.11891666699999999,237.72845400000003 -2015-11-03 21:00:00,0.0,1025.454167,0.0,96.275,-0.255166667,0.006,237.72659471666665 -2015-11-03 22:00:00,0.0,1025.829167,0.0,97.85833333,-0.212666667,0.086,237.72721448333334 -2015-11-03 23:00:00,0.0,1025.908333,0.0,99.03333333,-0.8803333329999999,0.075083333,237.72752438333336 -2015-12-03 00:00:00,0.0,1026.020833,0.0,99.79166667,-1.369583333,0.094333333,238.10449658333332 -2015-12-03 01:00:00,0.0,1026.05,0.0,100.0,-1.6664166669999998,0.0455,238.10310213333335 -2015-12-03 02:00:00,0.0,1025.8125,0.0,100.0,-2.55625,0.050166667000000005,238.10077801666668 -2015-12-03 03:00:00,0.0,1025.7375,0.0,100.0,-2.6189166669999997,0.045916667,238.09783416666664 -2015-12-03 04:00:00,0.0,1025.825,0.0,100.0,-2.947666667,0.01925,238.09628473333336 -2015-12-03 05:00:00,0.0,1025.9875,0.0,100.0,-3.5869999999999997,0.00075,238.09365075000002 -2015-12-03 06:00:00,0.0,1026.079167,0.8809999999999999,100.0,-3.9068333330000002,0.000166667,238.09256615 -2015-12-03 07:00:00,0.0,1026.279167,16.77933333,100.0,-3.4089166669999997,0.0,238.09101671666667 -2015-12-03 08:00:00,0.0,1026.820833,42.42333333,100.0,-0.388166667,0.111,238.08915741666667 -2015-12-03 09:00:00,0.0,1027.045833,235.225,93.9,3.4555,0.46425,238.08652341666667 -2015-12-03 10:00:00,0.0,1026.808333,331.45,83.16833333,4.9825,1.4038333330000001,238.08342456666665 -2015-12-03 11:00:00,0.0,1026.429167,404.21666669999996,75.84,7.87575,0.84675,238.08079058333337 -2015-12-03 12:00:00,3.10362804,1025.829167,435.6416666999999,68.31833333,8.9905,2.384416667,238.07924116666666 -2015-12-03 13:00:00,0.0,1025.145833,357.6,62.5125,10.17666667,2.730916667,238.08093006 -2015-12-03 14:00:00,0.0,1024.483333,412.0166667,58.11416667,10.96833333,2.1676666669999998,238.08900871666665 -2015-12-03 15:00:00,0.0,1023.841667,312.1833333,55.43083333,11.39666667,2.25475,238.09079825 -2015-12-03 16:00:00,0.0,1023.375,218.83333330000002,52.30666667,11.19666667,2.2704166669999997,238.08936661666667 -2015-12-03 17:00:00,0.0,1022.9875,51.84083333,57.39833333,10.25083333,2.255666667,238.09205095000002 -2015-12-03 18:00:00,0.0,1022.8166669999999,6.2656666670000005,77.8025,7.7635,1.3720833330000002,238.0906193 -2015-12-03 19:00:00,0.0,1022.9875,0.0,78.10416667,6.121166667000001,0.46075,238.08918766666667 -2015-12-03 20:00:00,0.0,1023.141667,0.0,71.27916667,4.988333333,1.40925,238.08721918333336 -2015-12-03 21:00:00,0.0,1023.1833330000001,0.0,84.88666667,1.9079166669999998,0.40625,238.08632441666668 -2015-12-03 22:00:00,0.0,1023.3125,0.0,85.26666667,2.4096666669999998,1.598333333,238.08328219999999 -2015-12-03 23:00:00,0.0,1022.958333,0.0,91.46666667,0.80025,0.732583333,238.08417698333332 -2015-03-13 00:00:00,0.0,1022.666667,0.0,97.38333333,-0.691,0.02625,238.06795266666666 -2015-03-13 01:00:00,0.0,1022.4125,0.0,99.75833333,-1.8599166669999998,0.07933333299999999,238.06828599999997 -2015-03-13 02:00:00,0.0,1022.033333,0.0,100.0,-2.191583333,0.013333333000000001,238.06828599999997 -2015-03-13 03:00:00,0.0,1021.654167,0.0,100.0,-2.294666667,0.0019166670000000002,238.06761933333334 -2015-03-13 04:00:00,0.0,1021.008333,0.0,100.0,-2.3801666669999997,0.006,238.06828599999997 -2015-03-13 05:00:00,0.0,1020.391667,0.0,100.0,-3.120333333,0.057416667000000005,238.06828599999997 -2015-03-13 06:00:00,0.0,1020.225,1.0929166670000001,100.0,-3.5284166669999997,0.022333332999999997,238.068636 -2015-03-13 07:00:00,0.0,1020.35,16.72416667,100.0,-2.5756666669999997,0.020583333,238.06828599999997 -2015-03-13 08:00:00,0.0,1020.320833,55.74583333,100.0,-0.34775,0.006583333,238.06795266666666 -2015-03-13 09:00:00,0.0,1020.075,180.7333333,91.275,2.778916667,1.66525,238.06728599999997 -2015-03-13 10:00:00,0.0,1020.0875,259.275,74.83416667,5.243166667,4.1080000000000005,238.06795266666666 -2015-03-13 11:00:00,0.0,1020.1375,182.05,73.96583333,5.08525,3.765666667,238.06761933333328 -2015-03-13 12:00:00,0.0,1019.675,204.175,72.84,5.5460833329999994,3.3785,238.067286 -2015-03-13 13:00:00,0.0,1019.05,171.8916667,70.3275,5.80225,2.882833333,238.06695266666665 -2015-03-13 14:00:00,0.0,1018.583333,177.3,67.11583333,6.347333333,2.775083333,238.0666193333333 -2015-03-13 15:00:00,0.0,1018.2125,117.17333329999998,67.30333333,6.263833332999999,3.490583333,238.06695266666665 -2015-03-13 16:00:00,0.0,1018.133333,40.8825,70.18333333,5.651833333,4.054666667,238.06761933333334 -2015-03-13 17:00:00,0.0,1018.375,19.49083333,74.97166667,5.0425,3.73975,238.06795266666666 -2015-03-13 18:00:00,0.0,1018.841667,2.0404166669999997,78.7025,4.476333333,4.0679166669999995,238.068636 -2015-03-13 19:00:00,0.0,1019.0583330000001,0.0,79.54166667,4.010083333,3.776833333,238.06863599999997 -2015-03-13 20:00:00,0.0,1019.416667,0.0,80.91666667,3.554916667,3.420416667,238.06863599999997 -2015-03-13 21:00:00,0.0,1019.5041669999999,0.0,81.375,3.229833333,2.753916667,238.06968599999996 -2015-03-13 22:00:00,0.0,1019.75,0.0,80.55833333,3.022583333,2.582666667,238.06898599999997 -2015-03-13 23:00:00,0.0,1019.775,0.0,79.49666667,3.079916667,2.707083333,238.06968599999996 -2015-03-14 00:00:00,0.0,1019.833333,0.0,80.16583333,2.988666667,2.325583333,238.069336 -2015-03-14 01:00:00,0.0,1019.658333,0.0,82.54166667,2.755416667,1.066333333,238.06863599999997 -2015-03-14 02:00:00,0.0,1019.725,0.0,92.16666667,0.48200000000000004,0.22108333300000002,238.070036 -2015-03-14 03:00:00,0.0,1019.554167,0.0,97.90833333,-0.739916667,0.579833333,238.07038599999996 -2015-03-14 04:00:00,0.0,1019.716667,0.0,99.85833333,0.486333333,1.178083333,238.071386 -2015-03-14 05:00:00,0.0,1019.966667,0.0,98.46666667,1.3561666669999999,1.2625,238.07171933333333 -2015-03-14 06:00:00,0.0,1020.204167,0.733666667,93.44166667,1.3486666669999998,1.277833333,238.07205266666668 -2015-03-14 07:00:00,0.0,1020.545833,17.557000000000002,91.24166667,1.235166667,1.199666667,238.07205266666668 -2015-03-14 08:00:00,0.0,1020.8375,36.405,87.95833333,1.777916667,1.6388333330000002,238.07238600000002 -2015-03-14 09:00:00,0.0,1020.9416669999999,41.19666667,87.86666667,2.246166667,1.7039166669999999,238.07238600000002 -2015-03-14 10:00:00,0.0,1020.958333,60.90083333,91.475,2.40375,1.19375,238.07238600000002 -2015-03-14 11:00:00,0.0,1021.0625,74.91833333,94.4,3.2635,1.3505,238.07205266666665 -2015-03-14 12:00:00,3.244294968,1020.666667,112.98583329999998,94.81666667,3.872833333,2.302833333,238.07205266666668 -2015-03-14 13:00:00,0.0,1020.325,101.3166667,92.6,4.1385,2.443333333,238.07238600000002 -2015-03-14 14:00:00,0.0,1020.1291669999999,71.39416667,91.66666667,4.400666667,1.9515,238.072736 -2015-03-14 15:00:00,0.0,1020.2125,81.03416667,91.95833333,4.77225,2.110583333,238.07343600000002 -2015-03-14 16:00:00,0.0,1020.345833,36.92166667,94.06666667,4.523583333,3.569666667,238.07238600000002 -2015-03-14 17:00:00,3.8128010160000003,1020.658333,22.72341667,98.0,3.59825,3.4811666669999997,238.07343600000002 -2015-03-14 18:00:00,0.0,1021.15,1.67075,98.8,3.297166667,2.49825,238.07413599999998 -2015-03-14 19:00:00,2.930578824,1021.475,0.0,99.66666667,3.1655833330000003,1.9080833330000002,238.07343600000002 -2015-03-14 20:00:00,0.0,1021.616667,0.0,100.0,3.1510833330000003,2.226416667,238.07448599999998 -2015-03-14 21:00:00,0.0,1021.491667,0.0,99.08333333,3.251583333,2.330083333,238.07343600000002 -2015-03-14 22:00:00,0.0,1021.5666669999999,0.0,96.7,3.14275,2.2079166669999997,238.07413599999998 -2015-03-14 23:00:00,0.0,1021.633333,0.0,97.11666667,3.156583333,2.20775,238.07448599999998 -2015-03-15 00:00:00,0.0,1021.383333,0.0,97.96666667,3.1470833330000003,1.89925,238.07448599999998 -2015-03-15 01:00:00,0.0,1021.2,0.0,98.29166667,2.9555833330000003,1.096666667,238.07448599999998 -2015-03-15 02:00:00,2.7703067760000004,1021.0,0.0,99.86666667,2.904083333,1.456833333,238.07413599999998 -2015-03-15 03:00:00,2.882930736,1020.6625,0.0,100.0,2.899083333,1.42325,238.073786 -2015-03-15 04:00:00,2.81541048,1020.533333,0.0,100.0,2.9003333330000003,1.4211666669999998,238.07413599999998 -2015-03-15 05:00:00,6.08475816,1020.4416669999999,0.0,100.0,2.960333333,1.93675,238.07171933333333 -2015-03-15 06:00:00,19.51270258,1020.5583330000001,0.270083333,100.0,2.9289166669999998,2.505,238.07238600000002 -2015-03-15 07:00:00,6.71191152,1020.875,5.828583332999999,100.0,2.88025,2.558416667,238.07171933333333 -2015-03-15 08:00:00,3.341766984,1021.145833,22.065,100.0,3.30125,2.684583333,238.071386 -2015-03-15 09:00:00,0.0,1021.179167,41.33833333,99.5,3.813166667,2.8925,238.071386 -2015-03-15 10:00:00,0.0,1020.970833,65.41333333,97.6,4.603166667,3.322666667,238.0761693333333 -2015-03-15 11:00:00,0.0,1020.6,97.12833333,93.15833333,5.195,3.041666667,238.08061933333332 -2015-03-15 12:00:00,0.0,1020.3,78.95,90.175,5.638666667000001,2.8255,238.0833693333333 -2015-03-15 13:00:00,0.0,1019.954167,157.4533333,85.58333333,6.298166667,2.356416667,238.09123599999998 -2015-03-15 14:00:00,0.0,1019.6125,60.09,83.85833333,6.1965833329999995,3.020166667,238.08543599999996 -2015-03-15 15:00:00,0.0,1019.454167,20.81,85.425,5.890083333,3.343583333,238.08095266666666 -2015-03-15 16:00:00,0.0,1019.291667,20.29583333,85.65833333,5.7525,3.0010000000000003,238.080586 -2015-03-15 17:00:00,0.0,1019.1916669999999,9.038416667,86.05833333,5.505166667,2.351333333,238.07925266666666 -2015-03-15 18:00:00,0.0,1019.241667,2.362083333,89.375,5.189666667,2.076333333,238.07411933333333 -2015-03-15 19:00:00,0.0,1019.333333,0.0,92.28333333,4.9875,1.748083333,238.0707193333333 -2015-03-15 20:00:00,0.0,1019.466667,0.0,95.18333333,4.268916667,0.781416667,238.06695266666668 -2015-03-15 21:00:00,0.0,1019.633333,0.0,99.125,4.358666667,1.353083333,238.06040266666665 -2015-03-15 22:00:00,0.0,1019.6125,0.0,99.98333333,2.0855,0.11483333300000001,238.05288599999997 -2015-03-15 23:00:00,0.0,1019.341667,0.0,100.0,0.7354166670000001,0.34083333299999996,238.05046933333335 -2015-03-16 00:00:00,0.0,1019.179167,0.0,100.0,0.349583333,0.321083333,238.04946933333335 -2015-03-16 01:00:00,0.0,1019.4,0.0,99.525,0.42425,0.124666667,238.05220266666663 -2015-03-16 02:00:00,0.0,1019.175,0.0,98.475,0.728916667,0.364833333,238.05561933333334 -2015-03-16 03:00:00,0.0,1019.108333,0.0,99.09166667,0.9955,0.573916667,238.05493599999997 -2015-03-16 04:00:00,0.0,1018.9125,0.0,99.975,0.035666667,0.061166667,238.05425266666666 -2015-03-16 05:00:00,0.0,1018.833333,0.0,100.0,0.255833333,0.097416667,238.05288599999997 -2015-03-16 06:00:00,0.0,1018.833333,2.112833333,100.0,0.260666667,0.11233333300000001,238.051186 -2015-03-16 07:00:00,0.0,1019.116667,30.78333333,100.0,0.6559999999999999,0.26308333300000003,238.056286 -2015-03-16 08:00:00,0.0,1019.091667,67.23583333,99.175,1.5361666669999998,0.6845,238.06178599999998 -2015-03-16 09:00:00,3.066350424,1018.825,202.8416667,94.425,3.4121666669999997,2.3858333330000003,238.07960266666666 -2015-03-16 10:00:00,0.0,1018.445833,279.2,86.93333333,5.622416667,2.426416667,238.10528599999998 -2015-03-16 11:00:00,0.0,1018.4625,243.7333333,80.66166667,7.886416667000001,1.502666667,238.05585746000003 -2015-03-16 12:00:00,0.0,1018.2625,417.1,68.11666667,10.46666667,2.100083333,238.04441260000002 -2015-03-16 13:00:00,0.0,1017.729167,427.9333333000001,58.07666667,11.97916667,2.505583333,238.04436090000002 -2015-03-16 14:00:00,0.0,1017.491667,386.3916667,53.83083333,12.92083333,1.870333333,238.04433505 -2015-03-16 15:00:00,0.0,1017.445833,232.5083333,52.89916667,13.5325,2.133416667,238.04438675000003 -2015-03-16 16:00:00,0.0,1017.6125,123.3,54.86083333,12.62666667,1.5621666669999998,238.04430920000001 -2015-03-16 17:00:00,0.0,1017.783333,47.25916667,63.225,12.1375,0.891833333,238.04420823333336 -2015-03-16 18:00:00,0.0,1018.2375,9.882416667000001,85.6625,8.323083333,0.282916667,238.0441097 -2015-03-16 19:00:00,0.0,1018.645833,0.0014166670000000001,94.55,5.2915,0.33575,238.0440838333333 -2015-03-16 20:00:00,0.0,1018.95,0.0,97.54166667,2.854333333,0.16775,238.04403209999998 -2015-03-16 21:00:00,0.0,1019.4333330000001,0.0,99.44166667,1.8775,0.15483333300000002,238.04398036666666 -2015-03-16 22:00:00,0.0,1019.345833,0.0,100.0,1.58675,0.178583333,238.04398036666666 -2015-03-16 23:00:00,0.0,1019.5041669999999,0.0,100.0,1.4411666669999998,0.227083333,238.04398036666666 -2015-03-17 00:00:00,0.0,1019.366667,0.0,100.0,0.801666667,0.14425,238.04392986666664 -2015-03-17 01:00:00,0.0,1019.516667,0.0,100.0,0.171333333,0.18233333300000001,238.04388059999997 -2015-03-17 02:00:00,0.0,1019.4333330000001,0.0,100.0,0.007666666999999999,0.291666667,238.04388059999997 -2015-03-17 03:00:00,0.0,1019.6291669999999,0.0,100.0,-0.7081666670000001,0.107,238.04390523333328 -2015-03-17 04:00:00,0.0,1019.6916669999999,0.0,100.0,-1.015083333,0.10158333300000001,238.04383133333332 -2015-03-17 05:00:00,0.0,1019.758333,0.0,100.0,-1.040833333,0.0235,238.04378083333333 -2015-03-17 06:00:00,0.0,1019.991667,1.9385833330000002,100.0,-0.7805,0.012166666999999999,238.04380669999998 -2015-03-17 07:00:00,0.0,1020.1291669999999,34.71583333,100.0,-0.17800000000000002,0.006,238.04378083333333 -2015-03-17 08:00:00,0.0,1020.3,79.21916667,100.0,3.440666667,0.168166667,238.04375496666663 -2015-03-17 09:00:00,0.0,1020.641667,201.81666669999998,92.96666667,6.165666667000001,1.170583333,238.04380669999998 -2015-03-17 10:00:00,0.0,1020.4625,291.05,80.78916667,8.511000000000001,1.1625,238.04378083333333 -2015-03-17 11:00:00,0.0,1020.116667,349.925,70.12416667,11.11916667,1.162916667,238.04380546666667 -2015-03-17 12:00:00,0.0,1019.7375,379.8666667,64.38,13.12583333,1.2535,238.04334976666667 -2015-03-17 13:00:00,0.0,1019.429167,374.075,59.99166667,14.71,1.5866666669999998,238.0433731833333 -2015-03-17 14:00:00,0.0,1019.1,358.8583333,54.54083333,15.84333333,1.4185833330000002,238.04370446666667 -2015-03-17 15:00:00,0.0,1018.666667,309.4333333,48.39916667,17.29416667,1.16,238.04383133333332 -2015-03-17 16:00:00,0.0,1018.5,199.7,47.8025,17.18166667,0.84975,238.04383133333332 -2015-03-17 17:00:00,0.0,1018.383333,51.89333333,57.78083333,16.0275,0.43575,238.04388059999997 -2015-03-17 18:00:00,0.0,1018.716667,7.347083333,82.51833333,11.64583333,0.408416667,238.04378083333333 -2015-03-17 19:00:00,0.0,1019.025,0.013583333000000001,91.10833333,8.232999999999999,0.37041666700000003,238.04365150000004 -2015-03-17 20:00:00,0.0,1019.233333,0.0,95.09166667,6.053833332999999,0.35175,238.04360223333333 -2015-03-17 21:00:00,0.0,1019.366667,0.0,97.91666667,4.584416667,0.2255,238.04355296666668 -2015-03-17 22:00:00,0.0,1019.541667,0.0,99.58333333,3.513833333,0.161333333,238.04355296666668 -2015-03-17 23:00:00,0.0,1019.475,0.0,99.99166667,2.738416667,0.21600000000000003,238.04347783333333 -2015-03-18 00:00:00,0.0,1019.3625,0.0,100.0,2.1055833330000002,0.1395,238.04350246666664 -2015-03-18 01:00:00,0.0,1019.425,0.0,100.0,1.518,0.12175,238.04347659999996 -2015-03-18 02:00:00,0.0,1019.341667,0.0,100.0,1.0715,0.08875,238.0435037 -2015-03-18 03:00:00,0.0,1019.366667,0.0,100.0,0.6495,0.09525,238.04347783333333 -2015-03-18 04:00:00,0.0,1019.4375,0.0,100.0,0.40433333299999996,0.049583333,238.04337436666665 -2015-03-18 05:00:00,0.0,1019.525,0.0,100.0,0.255583333,0.029166667,238.0434002333333 -2015-03-18 06:00:00,0.0,1019.716667,1.87275,100.0,-0.321,0.02475,238.04334849999995 -2015-03-18 07:00:00,0.0,1020.0625,23.92416667,100.0,0.10099999999999999,0.0,238.04334849999995 -2015-03-18 08:00:00,0.0,1020.404167,74.82083333,100.0,3.14975,0.09916666699999999,238.04276601666666 -2015-03-18 09:00:00,0.0,1020.6833330000001,215.275,93.78333333,6.413666667,0.44641666700000004,238.04198273333336 -2015-03-18 10:00:00,0.0,1020.6291669999999,324.2333333,78.38416667,10.17583333,0.443833333,238.0419815 -2015-03-18 11:00:00,0.0,1020.329167,400.3083333,69.54166667,12.6375,0.462,238.04200736666667 -2015-03-18 12:00:00,0.0,1020.1291669999999,435.7,60.15666667,15.5125,0.600583333,238.0427155166667 -2015-03-18 13:00:00,0.0,1019.608333,433.0583333000001,53.025,16.4375,1.309833333,238.0434002333333 -2015-03-18 14:00:00,0.0,1019.2125,359.28333330000004,50.205,17.23,1.168,238.0434261 -2015-03-18 15:00:00,0.0,1018.85,268.6416667,48.74833333,18.02583333,0.6525,238.0434261 -2015-03-18 16:00:00,0.0,1018.7,170.9916667,50.6525,17.91333333,0.8865833329999999,238.04347783333333 -2015-03-18 17:00:00,0.0,1018.6875,63.735,58.44916667,16.52333333,1.232666667,238.04337436666665 -2015-03-18 18:00:00,0.0,1018.9375,6.2795,72.28166667,14.49333333,1.155916667,238.04329679999998 -2015-03-18 19:00:00,0.0,1019.345833,0.00425,83.525,12.0525,0.8111666670000001,238.04327094999996 -2015-03-18 20:00:00,0.0,1019.720833,0.0,87.025,10.02583333,0.4325,238.04319461666668 -2015-03-18 21:00:00,0.0,1019.6916669999999,0.0,89.44166667,9.391666667,0.333916667,238.04319339999998 -2015-03-18 22:00:00,0.0,1019.670833,0.0,92.025,8.467333333,0.528,238.04319339999998 -2015-03-18 23:00:00,0.0,1019.7541669999999,0.0,95.525,5.894583333,0.29275,238.04321925 -2015-03-19 00:00:00,0.0,1019.6875,0.0,98.675,4.092833333,0.0,238.0431195 -2015-03-19 01:00:00,0.0,1019.804167,0.0,99.96666667,3.375333333,0.0,238.04311949999996 -2015-03-19 02:00:00,0.0,1019.533333,0.0,100.0,4.497,0.268416667,238.04314413333336 -2015-03-19 03:00:00,0.0,1019.716667,0.0,98.08333333,6.475083333,0.398583333,238.0431195 -2015-03-19 04:00:00,0.0,1019.858333,0.0,99.80833333,5.5795,0.4245,238.04306899999997 -2015-03-19 05:00:00,0.0,1020.0666669999999,0.0,99.975,4.759833333,0.36491666700000003,238.0430936333333 -2015-03-19 06:00:00,0.0,1020.233333,4.476416667,100.0,1.7756666669999999,0.06625,238.04332266666665 -2015-03-19 07:00:00,0.0,1020.854167,49.44416667,100.0,2.4355,0.091666667,238.04279188333336 -2015-03-19 08:00:00,0.0,1021.4416669999999,121.335,100.0,5.973083333,0.21733333300000002,238.0416539 -2015-03-19 09:00:00,0.0,1021.770833,238.2416667,89.24166667,8.214833333,1.88175,238.04155041666664 -2015-03-19 10:00:00,0.0,1021.916667,321.85,85.81666667,8.835833333,2.659916667,238.04175365 -2015-03-19 11:00:00,0.0,1021.9375,369.03333330000004,80.12916667,9.823333332999999,2.834666667,238.0426908833333 -2015-03-19 12:00:00,0.0,1021.783333,399.6166667,74.64916667,11.2175,2.615333333,238.04299386666665 -2015-03-19 13:00:00,0.0,1021.2,433.9833333000001,66.435,12.5975,2.304333333,238.04299386666665 -2015-03-19 14:00:00,0.0,1020.554167,394.4333333,61.02833333,13.75083333,2.5653333330000003,238.0430197333333 -2015-03-19 15:00:00,0.0,1020.25,313.05,55.06166667,14.37416667,2.61675,238.04301973333327 -2015-03-19 16:00:00,0.0,1019.975,205.6166667,54.815,14.40333333,2.497416667,238.04304559999994 -2015-03-19 17:00:00,0.0,1019.975,55.83666667,63.2075,13.69833333,1.786083333,238.042968 -2015-03-19 18:00:00,0.0,1020.25,12.63933333,79.95166667,10.97666667,0.523083333,238.04294213333333 -2015-03-19 19:00:00,0.0,1020.7,0.037083332999999996,90.225,7.284333332999999,0.44475,238.04284113333333 -2015-03-19 20:00:00,0.0,1020.9875,0.0,94.99166667,4.8935833330000005,0.278333333,238.0428165 -2015-03-19 21:00:00,0.0,1021.216667,0.0,97.69166667,3.731083333,0.42658333299999995,238.04279186666668 -2015-03-19 22:00:00,0.0,1021.125,0.0,98.88333333,2.5718333330000003,0.159833333,238.04279186666668 -2015-03-19 23:00:00,0.0,1021.0875,0.0,99.14166667,1.8525,0.182416667,238.04274260000003 -2015-03-20 00:00:00,0.0,1021.0125,0.0,100.0,1.5158333330000002,0.191333333,238.04274260000003 -2015-03-20 01:00:00,0.0,1021.079167,0.0,100.0,1.006916667,0.094583333,238.04263913333332 -2015-03-20 02:00:00,0.0,1020.8708330000001,0.0,100.0,0.071333333,0.02275,238.04266499999997 -2015-03-20 03:00:00,0.0,1020.5041669999999,0.0,100.0,-0.7100833329999999,0.002166667,238.04263913333332 -2015-03-20 04:00:00,0.0,1020.270833,0.0,100.0,-1.292333333,0.019083333,238.04261326666665 -2015-03-20 05:00:00,0.0,1020.3125,0.0,100.0,-2.056083333,0.0,238.04261326666665 -2015-03-20 06:00:00,0.0,1020.4333330000001,2.6716666669999998,100.0,-0.98325,0.059166667,238.04258739999997 -2015-03-20 07:00:00,0.0,1020.5583330000001,31.50916667,100.0,-0.013000000000000001,0.540333333,238.0425627666666 -2015-03-20 08:00:00,0.0,1020.95,83.9775,100.0,1.260833333,0.784416667,238.04208371666667 -2015-03-20 09:00:00,0.0,1020.9375,138.30833330000002,100.0,3.168916667,0.867833333,238.04142483333337 -2015-03-20 10:00:00,0.0,1020.516667,112.09666670000001,100.0,4.381333333,1.22075,238.04208371666667 -2015-03-20 11:00:00,0.0,1020.2458330000001,259.05,99.65833333,5.34775,1.273583333,238.04203323333334 -2015-03-20 12:00:00,0.0,1019.875,446.725,90.34166667,8.582416667,1.399416667,238.04258863333334 -2015-03-20 13:00:00,0.0,1018.85,448.36666669999994,67.605,11.55166667,0.726333333,238.04269086666667 -2015-03-20 14:00:00,0.0,1017.904167,412.0166667,52.8325,12.7775,0.780166667,238.04274260000003 -2015-03-20 15:00:00,0.0,1017.0875,339.9333333,48.45833333,13.8875,0.57175,238.04274260000003 -2015-03-20 16:00:00,0.0,1016.108333,221.525,45.0625,14.05166667,0.615166667,238.04276723333336 -2015-03-20 17:00:00,0.0,1015.65,53.29416667,52.63083333,12.97833333,0.38125,238.0428165 -2015-03-20 18:00:00,0.0,1015.1833330000001,10.74633333,77.17916667,8.867416667,0.273583333,238.04269086666667 -2015-03-20 19:00:00,0.0,1015.145833,0.047,89.25833333,5.157833333,0.042583333,238.04258739999997 -2015-03-20 20:00:00,0.0,1015.208333,0.0,94.59166667,4.1980833330000005,0.10466666699999999,238.04258739999997 -2015-03-20 21:00:00,0.0,1014.9,0.0,95.63333333,3.017666667,0.069333333,238.04258739999997 -2015-03-20 22:00:00,0.0,1014.454167,0.0,97.96666667,1.920166667,0.148166667,238.04256276666663 -2015-03-20 23:00:00,0.0,1013.904167,0.0,99.15833333,2.66125,0.27875,238.04261326666665 -2015-03-21 00:00:00,0.0,1013.3791669999999,0.0,99.9,3.194083333,0.246666667,238.04261326666665 -2015-03-21 01:00:00,0.0,1012.9416669999999,0.0,100.0,3.5565,0.3,238.04261326666665 -2015-03-21 02:00:00,0.0,1012.366667,0.0,100.0,2.828083333,0.719666667,238.04258863333334 -2015-03-21 03:00:00,0.0,1012.2458330000001,0.0,100.0,2.745,1.809333333,238.04211083333334 -2015-03-21 04:00:00,0.0,1012.154167,0.0,100.0,2.913166667,1.513916667,238.0420849666667 -2015-03-21 05:00:00,0.0,1011.508333,0.0,99.86666667,3.325416667,0.95925,238.0423879 -2015-03-21 06:00:00,0.0,1011.3375,1.33725,99.19166667,3.659416667,1.01625,238.04261326666665 -2015-03-21 07:00:00,0.0,1011.554167,44.42416667,95.45,3.706666667,1.616166667,238.04261326666665 -2015-03-21 08:00:00,0.0,1011.704167,47.0325,94.775,3.4529166669999998,1.699416667,238.04261326666665 -2015-03-21 09:00:00,0.0,1011.704167,92.42333333,94.04166667,3.91675,1.195916667,238.04256276666663 -2015-03-21 10:00:00,0.0,1011.625,124.325,92.53333333,4.51275,1.038583333,238.04256276666663 -2015-03-21 11:00:00,0.0,1011.579167,81.00583333,91.325,5.1075,0.978,238.04263913333332 -2015-03-21 12:00:00,0.0,1011.454167,135.04166669999998,88.23333333,5.6079166670000005,1.61575,238.0426391333333 -2015-03-21 13:00:00,0.0,1011.4958330000001,78.91416667,84.51666667,6.53625,2.91625,238.04258739999997 -2015-03-21 14:00:00,0.0,1011.416667,201.2666667,76.13833333,7.121833333,2.3536666669999997,238.04269086666667 -2015-03-21 15:00:00,0.0,1011.175,110.1,79.23333333,7.103083333,1.01475,238.04268963333334 -2015-03-21 16:00:00,0.0,1010.9958330000001,45.1,88.86,6.742000000000001,0.958833333,238.04264038333335 -2015-03-21 17:00:00,0.0,1010.970833,51.00833333,90.84166667,6.377583333,0.49691666700000003,238.0424630166667 -2015-03-21 18:00:00,0.0,1011.429167,3.0260000000000002,90.88333333,6.127000000000001,1.000416667,238.04258739999997 -2015-03-21 19:00:00,0.0,1012.025,0.05125,94.21666667,5.429416667000001,0.74575,238.0425381333333 -2015-03-21 20:00:00,9.96863184,1012.5666669999999,0.0,95.96666667,4.491833333,0.376,238.04253813333332 -2015-03-21 21:00:00,0.0,1013.133333,0.0,99.45,2.300416667,0.210583333,238.0424125333333 -2015-03-21 22:00:00,2.45764164,1013.904167,0.0,100.0,0.801083333,0.271833333,238.0423879 -2015-03-21 23:00:00,0.0,1014.175,0.0,100.0,0.107833333,0.14525,238.04233741666667 -2015-03-22 00:00:00,0.0,1014.929167,0.0,100.0,0.629916667,0.105583333,238.0422106 -2015-03-22 01:00:00,0.0,1015.4,0.0,100.0,1.081416667,0.099,238.04231035 -2015-03-22 02:00:00,0.0,1015.7541669999999,0.0,100.0,1.5163333330000002,0.006666666999999999,238.04216010000005 -2015-03-22 03:00:00,0.0,1015.958333,0.0,100.0,2.195833333,0.134333333,238.0417302333333 -2015-03-22 04:00:00,0.0,1016.545833,0.0,98.10833333,3.512666667,3.0194166669999998,238.04165263333334 -2015-03-22 05:00:00,0.0,1016.9333330000001,0.0,95.38333333,3.50575,3.4626666669999997,238.04170436666666 -2015-03-22 06:00:00,0.0,1017.6916669999999,0.8783333329999999,92.0,3.330666667,4.20875,238.04206033333335 -2015-03-22 07:00:00,0.0,1018.3166669999999,20.21233333,88.54166667,3.037666667,4.79325,238.0420849666667 -2015-03-22 08:00:00,0.0,1019.125,62.88583333,87.89166667,3.014333333,4.083416667,238.04203323333334 -2015-03-22 09:00:00,0.0,1019.825,78.715,88.125,3.2063333330000003,4.5048333330000006,238.0419815 -2015-03-22 10:00:00,0.0,1020.154167,148.3966667,86.23333333,3.1760833330000002,4.03325,238.04195686666665 -2015-03-22 11:00:00,0.0,1020.208333,150.3583333,86.43333333,3.108916667,4.438833333,238.0419815 -2015-03-22 12:00:00,0.0,1019.633333,261.925,83.825,3.449,4.53225,238.0420086 -2015-03-22 13:00:00,0.0,1019.3166669999999,176.58333330000002,82.88333333,3.45875,5.195583333,238.04195686666662 -2015-03-22 14:00:00,0.0,1018.9416669999999,179.8,81.27,3.710666667,4.6895,238.04195686666665 -2015-03-22 15:00:00,0.0,1018.5125,155.25,78.485,4.099083333,4.5515,238.04195686666665 -2015-03-22 16:00:00,0.0,1018.166667,145.68333330000002,77.8,4.137166667,4.229083333,238.04188296666666 -2015-03-22 17:00:00,0.0,1017.575,47.8075,78.69833333,4.084833333,3.519083333,238.04188296666666 -2015-03-22 18:00:00,0.0,1017.6916669999999,13.01441667,83.1925,3.048083333,2.846083333,238.0418337 -2015-03-22 19:00:00,0.0,1017.641667,0.129583333,91.075,1.89825,2.23325,238.04178196666666 -2015-03-22 20:00:00,0.0,1017.825,0.0,97.14166667,0.86925,1.4091666669999998,238.0418078333333 -2015-03-22 21:00:00,0.0,1017.9958330000001,0.0,98.25,-0.8866666670000001,0.278666667,238.04178196666666 -2015-03-22 22:00:00,0.0,1017.716667,0.0,99.95833333,-1.4424166669999998,0.21558333300000002,238.04167850000002 -2015-03-22 23:00:00,0.0,1017.229167,0.0,100.0,-2.4449166669999998,0.11691666699999999,238.0417302333333 -2015-03-23 00:00:00,0.0,1016.533333,0.0,100.0,-3.080833333,0.021333333,238.04167850000002 -2015-03-23 01:00:00,0.0,1016.1,0.0,100.0,-3.5404166669999997,0.018000000000000002,238.04175610000001 -2015-03-23 02:00:00,0.0,1015.679167,0.0,100.0,-3.781416667,0.028333333,238.04178196666666 -2015-03-23 03:00:00,0.0,1015.133333,0.0,100.0,-3.933416667,0.02675,238.04175610000001 -2015-03-23 04:00:00,0.0,1014.8875,0.0,100.0,-4.383833333,0.007416666999999999,238.0417302333333 -2015-03-23 05:00:00,0.0,1014.6375,0.0,100.0,-4.553166667,0.02125,238.0417302333333 -2015-03-23 06:00:00,0.0,1014.3708330000001,7.877166667000001,100.0,-4.6160000000000005,0.0005,238.04170436666666 -2015-03-23 07:00:00,0.0,1014.416667,56.41833333,100.0,-3.2595,0.0,238.04165263333334 -2015-03-23 08:00:00,0.0,1014.366667,91.31583333,99.89166667,-1.302333333,0.063416667,238.04152580000002 -2015-03-23 09:00:00,2.44102152,1014.1125,219.1416667,96.58333333,1.003666667,0.41133333299999997,238.04079299999998 -2015-03-23 10:00:00,0.0,1013.991667,239.33333330000002,91.05833333,2.41225,0.49016666700000006,238.04099620000002 -2015-03-23 11:00:00,0.0,1013.270833,366.0416667,83.23666667,4.676083333,0.684583333,238.04198273333336 -2015-03-23 12:00:00,0.0,1012.3791669999999,470.8583333000001,71.26083333,8.089666667000001,1.21525,238.0420591 -2015-03-23 13:00:00,0.0,1011.529167,464.9833333000001,66.84333333,9.396666667,2.450166667,238.04205910000005 -2015-03-23 14:00:00,0.0,1010.729167,405.2,65.815,9.7125,2.6085,238.04203323333334 -2015-03-23 15:00:00,0.0,1009.920833,245.3666667,68.57416667,9.103333333,2.6438333330000003,238.0420332333333 -2015-03-23 16:00:00,0.0,1009.179167,214.25,69.41083333,8.884166667,2.4043333330000003,238.04200736666667 -2015-03-23 17:00:00,0.0,1008.645833,67.9575,70.51916667,8.5275,1.946333333,238.04205909999996 -2015-03-23 18:00:00,0.0,1008.1833330000001,10.6975,78.12666667,6.2504166670000005,1.8574166669999999,238.0420332333333 -2015-03-23 19:00:00,0.0,1008.0666669999999,0.094916667,89.70833333,4.413583333,0.699416667,238.0419815 -2015-03-23 20:00:00,0.0,1008.033333,0.0,94.96666667,2.830083333,0.10800000000000001,238.04195686666665 -2015-03-23 21:00:00,0.0,1007.866667,0.0,97.56666667,1.5236666669999999,0.204416667,238.04195686666665 -2015-03-23 22:00:00,0.0,1007.325,0.0,99.525,0.15308333300000002,0.11175,238.0419322333333 -2015-03-23 23:00:00,0.0,1006.8166669999999,0.0,100.0,-0.9675,0.03975,238.04195686666665 -2015-03-24 00:00:00,0.0,1006.225,0.0,100.0,-1.8016666669999999,0.0125,238.04195686666662 -2015-03-24 01:00:00,0.0,1005.820833,0.0,100.0,-2.047166667,0.0035833329999999997,238.04190759999997 -2015-03-24 02:00:00,0.0,1005.429167,0.0,100.0,-2.319,0.0,238.0419815 -2015-03-24 03:00:00,0.0,1005.279167,0.0,100.0,-1.856333333,0.005583333,238.04190759999997 -2015-03-24 04:00:00,0.0,1004.9958330000001,0.0,100.0,-1.51375,0.060583332999999996,238.04190759999997 -2015-03-24 05:00:00,0.0,1004.716667,0.0,100.0,-2.343,0.06625,238.0418337 -2015-03-24 06:00:00,0.0,1004.704167,2.3370833330000003,100.0,-1.2365,0.092333333,238.0418337 -2015-03-24 07:00:00,0.0,1004.9,26.53166667,100.0,0.072583333,0.050166667000000005,238.04190759999997 -2015-03-24 08:00:00,0.0,1004.9,73.2775,99.93333333,1.54025,0.319083333,238.04185833333335 -2015-03-24 09:00:00,0.0,1004.7875,121.38333329999999,96.7,3.137333333,0.273333333,238.04195686666665 -2015-03-24 10:00:00,0.0,1004.395833,242.30833330000002,90.96666667,5.326583333,0.584666667,238.04195686666662 -2015-03-24 11:00:00,0.0,1003.908333,186.7166667,81.9825,7.798666667000001,1.4518333330000002,238.0419322333333 -2015-03-24 12:00:00,0.0,1003.770833,299.90833330000004,72.78583333,9.245,1.6955,238.04193223333334 -2015-03-24 13:00:00,0.0,1003.6125,181.725,71.31666667,9.738333333,1.535916667,238.0419322333333 -2015-03-24 14:00:00,0.0,1003.395833,137.4666667,70.7325,10.44916667,0.775083333,238.04188296666666 -2015-03-24 15:00:00,0.0,1003.1833330000001,109.03666670000001,71.45916667,10.50333333,1.0100833329999999,238.04185833333335 -2015-03-24 16:00:00,0.0,1002.858333,133.75833329999998,71.08583333,10.6175,1.4570833330000001,238.04190759999997 -2015-03-24 17:00:00,0.0,1002.5625,73.395,72.67833333,10.5525,1.397416667,238.04185833333335 -2015-03-24 18:00:00,0.0,1002.383333,15.6465,85.24916667,8.056583332999999,0.24375,238.0418337 -2015-03-24 19:00:00,0.0,1002.358333,0.08591666699999999,95.1,4.33875,0.3125,238.0418337 -2015-03-24 20:00:00,0.0,1002.233333,0.0,97.7,2.840166667,0.271583333,238.04170436666666 -2015-03-24 21:00:00,0.0,1002.2541669999999,0.0,99.275,2.907083333,0.12558333300000002,238.04170436666666 -2015-03-24 22:00:00,0.0,1002.116667,0.0,99.05833333,3.852416667,0.315,238.0417302333333 -2015-03-24 23:00:00,0.0,1001.579167,0.0,99.95833333,2.021083333,0.17800000000000002,238.04170436666672 -2015-03-25 00:00:00,0.0,1001.170833,0.0,100.0,0.6719166670000001,0.11591666699999999,238.04167850000002 -2015-03-25 01:00:00,0.0,1000.8375,0.0,100.0,0.095833333,0.15966666699999998,238.04170436666672 -2015-03-25 02:00:00,0.0,1000.625,0.0,100.0,-0.445666667,0.08516666699999999,238.04167850000002 -2015-03-25 03:00:00,0.0,1000.175,0.0,100.0,-0.547583333,0.15591666699999998,238.04173023333337 -2015-03-25 04:00:00,0.0,1000.104167,0.0,100.0,-0.14375,0.2115,238.04167850000002 -2015-03-25 05:00:00,0.0,1000.045833,0.0,100.0,0.782666667,0.12166666699999999,238.04167850000002 -2015-03-25 06:00:00,0.0,1000.0,5.56525,100.0,1.495166667,0.130333333,238.04167850000002 -2015-03-25 07:00:00,0.0,999.7833332999999,43.45166667,100.0,2.507583333,0.005916667,238.04170436666672 -2015-03-25 08:00:00,0.0,999.9541667000001,118.08583329999999,95.16666667,5.107916667,0.756083333,238.04173023333337 -2015-03-25 09:00:00,0.0,999.95,276.925,80.10416667,8.249416667,1.171,238.0418337 -2015-03-25 10:00:00,0.0,999.8916667000001,353.0,70.75583333,11.51166667,0.8815,238.0418337 -2015-03-25 11:00:00,0.0,999.625,424.975,61.78833333,14.03583333,0.959833333,238.04178196666666 -2015-03-25 12:00:00,0.0,999.4291667000001,478.775,54.92166667,15.7775,1.118416667,238.0418337 -2015-03-25 13:00:00,0.0,999.0708332999999,442.7333333000001,51.63416667,16.42333333,1.19625,238.04180659999997 -2015-03-25 14:00:00,0.0,998.5666667000002,383.1916667,51.79666667,16.88666667,0.9475,238.0418337 -2015-03-25 15:00:00,0.0,998.4,285.2583333,50.64333333,16.95583333,1.31575,238.0418078333333 -2015-03-25 16:00:00,0.0,998.4458332999999,135.8833333,61.28916667,16.15666667,2.380416667,238.04170436666666 -2015-03-25 17:00:00,0.0,999.3833332999999,64.17833333,76.30583333,12.1925,3.325416667,238.04167850000002 -2015-03-25 18:00:00,0.0,1000.083333,10.3665,83.68333333,9.283333333,3.0765833330000003,238.04160089999996 -2015-03-25 19:00:00,0.0,1000.5875,0.11325,87.41666667,7.76025,2.2800833330000003,238.04152329999997 -2015-03-25 20:00:00,0.0,1000.791667,0.0,88.93333333,6.9685,1.438916667,238.04142483333337 -2015-03-25 21:00:00,0.0,1000.7875,0.0,88.31666667,6.754083333,1.661416667,238.04144945000004 -2015-03-25 22:00:00,0.0,1001.025,0.0,87.64166667,6.698833333,1.5205,238.04142483333337 -2015-03-25 23:00:00,0.0,1001.241667,0.0,87.31666667,6.723833332999999,1.906833333,238.0413756 -2015-03-26 00:00:00,0.0,1001.291667,0.0,86.95833333,6.643666667000001,1.651583333,238.0413756 -2015-03-26 01:00:00,0.0,1001.35,0.0,87.59166667,6.5309166670000005,2.02825,238.0413756 -2015-03-26 02:00:00,0.0,1001.55,0.0,88.96666667,6.298166667,1.404333333,238.0413756 -2015-03-26 03:00:00,0.0,1001.8,0.0,88.55833333,6.145666667,1.688916667,238.0413756 -2015-03-26 04:00:00,0.0,1002.166667,0.0,88.38333333,5.968583333,1.4111666669999998,238.04129799999998 -2015-03-26 05:00:00,0.0,1002.591667,0.0,87.85,5.956833333,1.332333333,238.0412721333333 -2015-03-26 06:00:00,0.0,1003.095833,1.470166667,87.25833333,5.868583332999999,1.514583333,238.0412462666666 -2015-03-26 07:00:00,0.0,1003.445833,24.53333333,85.78333333,5.848416667,1.188583333,238.04122039999996 -2015-03-26 08:00:00,0.0,1003.8083330000001,38.56333333,85.36666667,6.127666667000001,1.561833333,238.04117113333334 -2015-03-26 09:00:00,0.0,1004.275,56.60333333,86.16666667,6.319166667,0.994166667,238.0412216333333 -2015-03-26 10:00:00,0.0,1004.295833,69.0125,90.525,6.222333333,1.46625,238.04122039999996 -2015-03-26 11:00:00,0.0,1004.1833330000001,130.3825,87.775,6.2896666670000005,1.3895,238.04122039999996 -2015-03-26 12:00:00,0.0,1004.054167,150.6583333,82.16666667,6.939,1.6865833330000002,238.0412462666666 -2015-03-26 13:00:00,0.0,1003.6375,266.7583333,75.59583333,7.983416667,1.5116666669999999,238.04122039999996 -2015-03-26 14:00:00,0.0,1003.229167,334.5583333,66.1,9.2325,1.534083333,238.04132386666666 -2015-03-26 15:00:00,0.0,1002.541667,210.68333330000002,61.09333333,10.36583333,1.5209166669999998,238.04134973333336 -2015-03-26 16:00:00,0.0,1002.204167,141.6166667,59.175,10.42666667,1.436833333,238.041298 -2015-03-26 17:00:00,0.0,1001.9958330000001,30.68583333,59.1275,10.0925,1.49225,238.04132386666666 -2015-03-26 18:00:00,0.0,1002.875,5.1825,58.23,8.98925,2.5516666669999997,238.04122039999996 -2015-03-26 19:00:00,0.0,1004.341667,0.11841666699999999,92.79166667,4.78225,2.38275,238.0410972333333 -2015-03-26 20:00:00,0.0,1004.375,0.0,96.64166667,4.134916667,0.87425,238.04117113333328 -2015-03-26 21:00:00,0.0,1004.083333,0.0,90.96666667,4.5904166669999995,1.4159166669999999,238.0410972333333 -2015-03-26 22:00:00,0.0,1004.133333,0.0,91.91666667,5.1245,1.187916667,238.04117113333334 -2015-03-26 23:00:00,0.0,1004.375,0.0,92.5,5.109333333,1.5101666669999998,238.04112186666666 -2015-03-27 00:00:00,3.1009058639999996,1004.758333,0.0,93.71666667,5.194416667,2.036333333,238.04117113333334 -2015-03-27 01:00:00,0.0,1005.291667,0.0,95.16666667,5.296,2.055333333,238.04109723333332 -2015-03-27 02:00:00,5.4243601439999996,1005.670833,0.0,97.36666667,5.172583333,1.295833333,238.0410972333333 -2015-03-27 03:00:00,0.0,1005.875,0.0,97.33333333,4.334583333,0.754833333,238.04109723333332 -2015-03-27 04:00:00,2.413249608,1006.391667,0.0,96.85833333,4.107333333,0.741083333,238.04107259999998 -2015-03-27 05:00:00,0.0,1007.0041669999999,0.002333333,95.075,4.7460833330000005,1.6174166669999999,238.04107259999998 -2015-03-27 06:00:00,0.0,1007.85,9.041166667,93.225,4.976166667,1.739916667,238.04096913333333 -2015-03-27 07:00:00,0.0,1009.020833,54.69083333,91.85,5.422999999999999,2.34575,238.04091740000004 -2015-03-27 08:00:00,0.0,1009.5875,159.35416669999998,86.89166667,6.061083332999999,3.3,238.04099499999998 -2015-03-27 09:00:00,0.0,1010.554167,99.05666667,90.325,5.704083333,2.232916667,238.04089276666664 -2015-03-27 10:00:00,0.0,1011.283333,205.1583333,84.96666667,6.566083333,2.5045,238.04091740000004 -2015-03-27 11:00:00,0.0,1011.7541669999999,458.4,75.97083333,7.9355,2.889,238.04089276666664 -2015-03-27 12:00:00,0.0,1012.3166669999999,217.275,76.47833333,8.675833333,2.545416667,238.04086813333333 -2015-03-27 13:00:00,6.576949992,1012.795833,166.2191667,79.81333333,7.755666667000001,2.266,238.0407696 -2015-03-27 14:00:00,0.0,1013.25,143.60166669999998,73.55416667,7.85475,2.0659166669999998,238.04076836666664 -2015-03-27 15:00:00,0.0,1013.741667,127.175,66.39916667,8.328916667,2.045833333,238.0407696 -2015-03-27 16:00:00,0.0,1014.366667,82.1225,64.93916667,8.789166667,2.125416667,238.04071786666668 -2015-03-27 17:00:00,0.0,1014.891667,66.78666667,64.86833333,8.8975,2.053083333,238.04071786666665 -2015-03-27 18:00:00,0.0,1015.1833330000001,12.68225,67.34333333,8.435833333,1.5901666669999999,238.0406661333333 -2015-03-27 19:00:00,0.0,1016.175,0.161083333,69.75,7.89075,1.1875,238.0405405 -2015-03-27 20:00:00,0.0,1016.904167,0.0,72.78416667,7.377083333,0.7908333329999999,238.04046659999997 -2015-03-27 21:00:00,0.0,1017.395833,0.0,77.41083333,6.485916667000001,0.379666667,238.0404912333333 -2015-03-27 22:00:00,0.0,1017.658333,0.0,86.06666667,4.958666667,0.10308333300000001,238.04046659999997 -2015-03-27 23:00:00,0.0,1017.925,0.0,89.25833333,4.399333333,0.064666667,238.04038905000002 -2015-03-28 00:00:00,0.0,1018.1,0.0,91.49166667,4.268166667,0.041333333,238.04038905000002 -2015-03-28 01:00:00,0.0,1018.475,0.0,92.95833333,4.404916667,0.134333333,238.0403115 -2015-03-28 02:00:00,0.0,1018.1875,0.0,94.775,3.9945,0.1105,238.04033735 -2015-03-28 03:00:00,0.0,1018.0041669999999,0.0,96.09166667,2.910666667,0.08816666699999999,238.0403115 -2015-03-28 04:00:00,0.0,1017.916667,0.0,94.90833333,3.223666667,0.37625,238.04023389999998 -2015-03-28 05:00:00,0.0,1017.6625,0.01975,95.78333333,3.307416667,0.24808333300000002,238.04018216666668 -2015-03-28 06:00:00,0.0,1017.458333,8.827166667,98.26666667,1.28075,0.235333333,238.0401563 -2015-03-28 07:00:00,0.0,1017.266667,32.35833333,99.93333333,2.59825,0.073166667,238.04013166666667 -2015-03-28 08:00:00,0.0,1016.966667,119.69416670000001,75.77083333,6.727416667000001,0.42458333299999995,238.0401329 -2015-03-28 09:00:00,0.0,1016.716667,231.925,61.19,8.880833333,1.9703333330000001,238.04020803333333 -2015-03-28 10:00:00,0.0,1016.204167,365.9916667,56.73,9.866666667,2.124583333,238.04018216666668 -2015-03-28 11:00:00,0.0,1015.270833,421.8,53.6525,11.00166667,2.204416667,238.04020803333333 -2015-03-28 12:00:00,0.0,1014.345833,502.90833330000004,51.95333333,12.0325,2.345916667,238.04023389999998 -2015-03-28 13:00:00,0.0,1013.1375,373.0666667,52.4125,12.86166667,2.278,238.04020803333333 -2015-03-28 14:00:00,0.0,1012.108333,221.1583333,52.44083333,12.58416667,2.47575,238.04020803333336 -2015-03-28 15:00:00,0.0,1011.4416669999999,113.61666670000001,57.5,12.05333333,2.531333333,238.04020803333336 -2015-03-28 16:00:00,0.0,1011.008333,84.18416667,70.8175,10.57666667,2.088833333,238.0401563 -2015-03-28 17:00:00,0.0,1010.3375,44.16833333,73.41,10.58,1.933,238.04018216666668 -2015-03-28 18:00:00,0.0,1009.9416669999999,8.05625,85.36666667,9.535,1.99725,238.04013166666664 -2015-03-28 19:00:00,0.0,1009.6833330000001,0.05775,89.525,8.93,1.43125,238.04010703333333 -2015-03-28 20:00:00,0.0,1009.5625,0.0,93.39166667,8.558333333,1.4758333330000002,238.04013166666667 -2015-03-28 21:00:00,0.0,1008.8375,0.0,91.2,8.948333332999999,1.42775,238.04010703333336 -2015-03-28 22:00:00,0.0,1007.641667,0.0,90.83333333,9.298333332999999,1.31425,238.04010703333336 -2015-03-28 23:00:00,0.0,1006.9375,0.0,95.45833333,9.711666667000001,1.8235833330000002,238.0401563 -2015-03-29 00:00:00,2.9626892160000002,1006.133333,0.0,96.70833333,9.755833333,2.6429166669999997,238.0401563 -2015-03-29 01:00:00,9.840085536,1004.945833,0.0,96.4,10.08083333,2.68025,238.04023390000006 -2015-03-29 02:00:00,0.0,1004.195833,0.0,93.25,10.9825,2.918916667,238.0402597666667 -2015-03-29 03:00:00,0.0,1003.6833330000001,0.0,92.06666667,11.03666667,2.171833333,238.04020803333333 -2015-03-29 04:00:00,0.0,1002.95,0.0,92.075,11.12583333,2.40425,238.04023390000006 -2015-03-29 05:00:00,0.0,1002.595833,0.017833333,88.66666667,11.10166667,2.5996666669999997,238.04020803333336 -2015-03-29 06:00:00,0.0,1002.675,5.183,85.16666667,11.14916667,2.556166667,238.0402597666667 -2015-03-29 07:00:00,0.0,1002.445833,41.29083333,82.86666667,11.16916667,2.335833333,238.04023390000006 -2015-03-29 08:00:00,0.0,1001.741667,107.1175,80.45333333,11.42833333,3.213833333,238.0403115 -2015-03-29 09:00:00,0.0,1001.283333,144.85,83.60916667,10.87416667,3.52225,238.0403115 -2015-03-29 10:00:00,3.5355353760000003,1000.6875,168.3416667,89.70833333,10.28916667,3.341333333,238.0403115 -2015-03-29 11:00:00,10.24862758,999.7791667000001,153.94166669999998,92.56666667,10.18083333,2.87275,238.04033735 -2015-03-29 12:00:00,30.68915978,998.7083332999998,103.8316667,95.16666667,9.976666667,2.843833333,238.04038905000002 -2015-03-29 13:00:00,44.77682014,997.5458332999999,101.6383333,95.34166667,10.12666667,2.96925,238.04049001666667 -2015-03-29 14:00:00,49.45521038,995.85,80.50333333,94.41666667,10.23916667,3.008166667,238.04079299999998 -2015-03-29 15:00:00,32.15156429,993.9791667000002,95.08,94.20833333,10.46166667,3.055916667,238.04119576666662 -2015-03-29 16:00:00,27.58180603,992.5125,31.5575,94.64166667,10.48,2.9641666669999998,238.04160216666665 -2015-03-29 17:00:00,66.31753034,991.05,14.815,94.85833333,10.67833333,3.404833333,238.04266503333335 -2015-03-29 18:00:00,3.9316967519999997,990.1291667000002,5.779166667,90.625,11.45833333,3.886666667,238.0434249 -2015-03-29 19:00:00,0.0,989.4541667000001,0.061916667,87.9,11.79916667,3.992416667,238.0439557333333 -2015-03-29 20:00:00,13.6912229,988.7708332999998,0.0,91.8,11.35416667,4.394,238.04458875 -2015-03-29 21:00:00,16.13190103,989.8916667000001,0.0,92.53333333,9.549666667,3.921583333,238.0465137333333 -2015-03-29 22:00:00,10.16424826,990.9083332999999,0.0,90.70833333,7.6624166670000005,3.008083333,238.05007915000002 -2015-03-29 23:00:00,6.942498383999999,991.4833332999999,0.0,84.40916667,8.529166667,2.9561666669999997,238.05139693333334 -2015-03-30 00:00:00,6.639707424,992.5625,0.0,79.66416667,8.320833333,2.54175,238.05147330000003 -2015-03-30 01:00:00,2.88253716,992.5541667000001,0.0,81.86,7.849583332999999,1.8765,238.05119493333336 -2015-03-30 02:00:00,3.354157248,992.1458332999998,0.0,91.325,7.456333333,2.717666667,238.05081320000002 -2015-03-30 03:00:00,7.358908607999999,992.2333332999999,0.0,93.86666667,6.9684166670000005,3.21175,238.0505360666667 -2015-03-30 04:00:00,0.0,992.3583332999999,0.0,86.00833333,7.088583333,2.878083333,238.05018136666664 -2015-03-30 05:00:00,6.693146088,993.4708332999999,0.053083332999999996,80.60083333,6.840833333,2.5595,238.04990553333334 -2015-03-30 06:00:00,0.0,994.1625,15.652000000000001,79.29916667,6.572916667,2.863333333,238.04972693333332 -2015-03-30 07:00:00,3.5740862160000004,995.2291667000002,59.41083333,76.32666667,7.1260833329999995,2.5825,238.04937096666666 -2015-03-30 08:00:00,3.54060132,996.0875,127.25833329999999,74.31583333,7.808333332999999,2.939166667,238.04916896666666 -2015-03-30 09:00:00,0.0,996.8375,143.0016667,81.23916667,6.5760000000000005,3.67975,238.0489153333333 -2015-03-30 10:00:00,4.370026151999999,997.8375,383.5833333,70.49666667,7.242083332999999,4.024416667,238.04866406666665 -2015-03-30 11:00:00,5.647874448,998.9583332999998,406.9,57.60833333,9.311666667,4.43325,238.04843620000005 -2015-03-30 12:00:00,0.0,999.7083332999998,366.4916667,58.10416667,8.329333333,4.582916667,238.04820958333335 -2015-03-30 13:00:00,18.12513156,1000.983333,279.14416669999997,73.71166667,7.320666667,5.548916667,238.0479313 -2015-03-30 14:00:00,7.547026128,1001.8625,335.2083333,83.5525,6.56725,4.029083333,238.04770096666664 -2015-03-30 15:00:00,0.0,1002.65,413.7083333,65.54583333,8.656,3.7625,238.04749896666667 -2015-03-30 16:00:00,0.0,1003.8625,218.0083333,53.80833333,8.845833333,4.621166667,238.04722190000004 -2015-03-30 17:00:00,0.0,1004.766667,54.97166667,54.52583333,8.230833333,3.500416667,238.0470692 -2015-03-30 18:00:00,0.0,1005.6625,20.51991667,58.13666667,7.529583333,2.430333333,238.0468438 -2015-03-30 19:00:00,0.0,1006.133333,0.3185,62.4975,6.212000000000001,1.159,238.04666396666664 -2015-03-30 20:00:00,0.0,1006.1625,0.0,66.22416667,5.391,1.3033333329999999,238.04641146666668 -2015-03-30 21:00:00,0.0,1005.704167,0.0,79.77083333,3.25125,0.3525,238.04628220000004 -2015-03-30 22:00:00,0.0,1004.508333,0.0,70.3175,5.493583332999999,1.4166666669999999,238.04608023333333 -2015-03-30 23:00:00,0.0,1003.2125,0.0,69.71583333,5.771583333,1.131,238.0460051 -2015-03-31 00:00:00,25.20432223,1001.804167,0.0,87.81083333,5.226333333,2.441333333,238.04582896666662 -2015-03-31 01:00:00,15.33652183,998.2875,0.0,96.65833333,4.10475,2.127583333,238.0458536 -2015-03-31 02:00:00,10.8873209,995.2083332999998,0.0,93.69166667,4.935,1.372916667,238.04587823333335 -2015-03-31 03:00:00,11.93762818,992.0625,0.0,93.65833333,7.895,3.32,238.0459028666667 -2015-03-31 04:00:00,19.31568715,989.8708332999998,0.0,89.58333333,10.185,4.73125,238.04572673333337 -2015-03-31 05:00:00,5.184626016,987.8916667000001,0.0,84.61666667,11.54416667,4.649333333,238.04527351666664 -2015-03-31 06:00:00,56.35194521,988.3958332999998,4.162583333,92.86666667,11.255,4.242916667,238.04557523333332 -2015-03-31 07:00:00,3.86101584,988.6333332999999,59.8775,85.09333333,11.83916667,3.83925,238.04567746666666 -2015-03-31 08:00:00,0.0,989.8541667000002,92.31333333,83.38333333,11.71166667,4.577833333,238.04635978333332 -2015-03-31 09:00:00,61.79624491,991.2625,87.855,91.36666667,10.12166667,4.633916667,238.04765046666668 -2015-03-31 10:00:00,133.36898490000002,992.55,145.1825,94.06666667,8.20975,3.6190833330000003,238.05830489999997 -2015-03-31 11:00:00,4.489090176,993.6291667000002,256.85,78.81833333,10.38666667,4.238,238.06230259999998 -2015-03-31 12:00:00,27.02962433,994.6083332999999,271.5416667,84.82083333,9.848333333,3.97825,238.06308711666665 -2015-03-31 13:00:00,0.0,995.7541667000002,302.9916667,70.92833333,10.66666667,4.206,238.06258218333332 -2015-03-31 14:00:00,22.19966933,997.4791667000002,257.375,67.355,9.7975,5.452833332999999,238.06184814999997 -2015-03-31 15:00:00,0.0,998.2083332999998,283.5666667,68.20083333,10.345,4.14125,238.06078408333335 -2015-03-31 16:00:00,0.0,999.5708332999999,211.305,55.87583333,10.615,4.879416667,238.05995028333328 -2015-03-31 17:00:00,0.0,1000.929167,71.3575,54.88916667,9.573333332999999,4.338666667,238.05931850000002 -2015-03-31 18:00:00,0.0,1002.095833,22.65041667,59.21,9.076666667000001,3.544333333,238.05875934999997 -2015-03-31 19:00:00,0.0,1002.954167,0.36825,77.435,6.567666667,3.3898333330000003,238.05820389999997 -2015-03-31 20:00:00,39.32014068,1003.854167,0.0,89.66666667,5.1435833330000005,3.524833333,238.0577494833333 -2015-03-31 21:00:00,3.712281936,1003.833333,0.0,89.16666667,4.747916667,2.4668333330000003,238.05739353333334 -2015-03-31 22:00:00,0.0,1003.7875,0.0,88.6,4.6906666669999995,2.5059166669999997,238.05698831666666 -2015-03-31 23:00:00,0.0,1004.5875,0.0,80.535,5.312,2.332833333,238.0565339 -2015-01-04 00:00:00,0.0,1005.2625,0.0,77.4075,5.138083333,2.598583333, -2015-01-04 01:00:00,0.0,1005.420833,0.0,86.55833333,4.221416667,2.47125, -2015-01-04 02:00:00,13.22578368,1005.975,0.0,91.84166667,2.349166667,3.973833333, -2015-01-04 03:00:00,22.75538042,1006.133333,0.0,95.05833333,1.6950833330000001,2.243083333, -2015-01-04 04:00:00,12.25521852,1006.720833,0.0,86.575,2.687083333,2.0670833330000002, -2015-01-04 05:00:00,6.881737032,1007.179167,0.08591666699999999,90.53333333,2.632083333,2.9481666669999997, -2015-01-04 06:00:00,3.307060752,1007.8083330000001,13.6995,88.075,2.733333333,2.994333333, -2015-01-04 07:00:00,6.696314256,1009.116667,40.83333333,81.185,3.5510833330000002,2.724416667, -2015-01-04 08:00:00,0.0,1010.170833,76.06333333,81.1925,3.995,3.007666667, -2015-01-04 09:00:00,3.346404672,1011.225,164.9,86.025,3.9725,2.6869166669999998, -2015-01-04 10:00:00,0.0,1012.258333,252.05833330000002,90.95,5.21075,3.186583333, -2015-01-04 11:00:00,0.0,1012.5375,408.3333333,85.63333333,5.728166667000001,3.306083333, -2015-01-04 12:00:00,0.0,1012.6875,350.65,84.49833333,6.2455,3.25625, -2015-01-04 13:00:00,13.21222058,1012.670833,252.16916669999998,92.15,4.7685,2.80625, -2015-01-04 14:00:00,0.0,1012.320833,385.7666667,81.84,6.2445,3.127416667, -2015-01-04 15:00:00,16.03813039,1012.3791669999999,295.41,74.6825,7.080416667000001,3.702416667, -2015-01-04 16:00:00,0.0,1012.5625,187.2491667,81.3675,5.196833333,3.0318333330000002, -2015-01-04 17:00:00,28.23929606,1012.7875,36.4025,91.4,3.5158333330000002,3.071583333, -2015-01-04 18:00:00,3.05793156,1013.329167,13.25925,89.03333333,3.875166667,2.6189999999999998, -2015-01-04 19:00:00,0.0,1013.4125,0.437833333,87.50833333,3.412666667,1.330416667, -2015-01-04 20:00:00,0.0,1013.4416669999999,0.0,85.25416667,3.270166667,1.29825, -2015-01-04 21:00:00,0.0,1013.35,0.0,80.67,3.805166667,2.0924166669999997, -2015-01-04 22:00:00,0.0,1012.645833,0.0,87.675,3.68,1.772583333, -2015-01-04 23:00:00,0.0,1011.7,0.0,83.275,4.579083333,2.806916667, -2015-02-04 00:00:00,0.0,1010.7875,0.0,85.06666667,4.7780000000000005,3.39125, -2015-02-04 01:00:00,0.0,1009.8,0.0,85.125,4.82675,3.282666667, -2015-02-04 02:00:00,0.0,1008.7458330000001,0.0,88.90833333,4.7140833330000005,3.140583333, -2015-02-04 03:00:00,3.3299622,1007.475,0.0,93.59166667,4.199083333,2.8561666669999997, -2015-02-04 04:00:00,3.4783404960000004,1006.229167,0.0,95.875,3.866,2.7991666669999997, -2015-02-04 05:00:00,21.93518599,1005.0041669999999,0.043666667,96.4,3.876833333,3.03225, -2015-02-04 06:00:00,36.87503566,1004.1,5.240666667,97.35,3.578833333,3.342916667, -2015-02-04 07:00:00,10.83129074,1003.3875,50.35083333,97.56666667,3.7753333330000003,3.0550833330000002, -2015-02-04 08:00:00,11.09443865,1003.325,81.985,97.1,4.0945,3.2839166669999997, -2015-02-04 09:00:00,6.650227056,1004.375,119.76666670000002,96.24166667,4.4135,2.5331666669999997, -2015-02-04 10:00:00,3.7195497360000003,1005.666667,293.90833330000004,87.93333333,5.5701666670000005,4.2605833330000005, -2015-02-04 11:00:00,6.629856672000001,1006.929167,311.16833330000003,83.31666667,5.360166667,4.546583333, -2015-02-04 12:00:00,7.01177832,1008.0125,429.38333330000006,75.0925,5.709,4.828166667, -2015-02-04 13:00:00,0.0,1009.0625,452.95,64.80583333,6.725583332999999,5.89075, -2015-02-04 14:00:00,4.47808932,1009.891667,375.9166667,67.69,6.783833333,4.801416667, -2015-02-04 15:00:00,0.0,1010.625,196.1166667,60.71666667,6.82875,5.56775, -2015-02-04 16:00:00,0.0,1011.575,129.2866667,59.71,6.94525,5.3075, -2015-02-04 17:00:00,0.0,1012.616667,40.9425,63.70083333,6.100166667000001,4.704583333, -2015-02-04 18:00:00,0.0,1013.445833,22.76725,57.8225,6.4211666670000005,3.007916667, -2015-02-04 19:00:00,0.0,1014.295833,0.591916667,60.08666667,5.53325,2.0780000000000003, -2015-02-04 20:00:00,0.0,1015.225,0.0,65.0325,4.281833333,0.87075, -2015-02-04 21:00:00,0.0,1015.858333,0.0,71.24416667,3.01375,0.482833333, -2015-02-04 22:00:00,0.0,1016.295833,0.0,76.71666667,2.206666667,0.458583333, -2015-02-04 23:00:00,0.0,1016.554167,0.0,88.13333333,0.250916667,0.136166667, -2015-03-04 00:00:00,0.0,1016.6833330000001,0.0,93.14166667,0.208666667,0.320833333,238.0080193333333 -2015-03-04 01:00:00,0.0,1017.2,0.0,86.19166667,-0.061083333,0.24475,238.00835266666664 -2015-03-04 02:00:00,0.0,1017.1916669999999,0.0,88.625,2.013666667,1.104833333,238.00868599999998 -2015-03-04 03:00:00,0.0,1017.425,0.0,88.4,2.678,1.4380000000000002,238.00868599999998 -2015-03-04 04:00:00,0.0,1017.458333,0.0,88.91666667,2.6800833330000002,1.4509999999999998,238.00868599999998 -2015-03-04 05:00:00,0.0,1017.333333,0.36825,91.21666667,2.25925,1.4079166669999998,238.00868599999998 -2015-03-04 06:00:00,0.0,1017.35,14.80375,94.13333333,1.470666667,1.2046666670000001,238.010086 -2015-03-04 07:00:00,0.0,1017.7,69.74583333,92.50833333,2.3584166669999997,1.632916667,238.01043600000003 -2015-03-04 08:00:00,0.0,1017.4416669999999,139.9833333,82.89583333,3.789583333,1.6698333330000001,238.01078600000002 -2015-03-04 09:00:00,0.0,1017.158333,244.1683333,77.12,4.790083333,1.606916667,238.01078600000002 -2015-03-04 10:00:00,0.0,1016.720833,399.5416667,72.47583333,5.353916667,1.4451666669999998,238.011786 -2015-03-04 11:00:00,0.0,1016.195833,477.4333333000001,67.535,7.082333332999999,1.44725,238.01245266666663 -2015-03-04 12:00:00,0.0,1015.3791669999999,422.1916666999999,62.16166667,8.01475,2.1815833330000003,238.01278599999998 -2015-03-04 13:00:00,0.0,1014.483333,467.21666669999996,54.1925,9.0075,1.836416667,238.01383599999997 -2015-03-04 14:00:00,0.0,1013.670833,409.4916667,45.98166667,9.990833333,2.026333333,238.01488599999996 -2015-03-04 15:00:00,0.0,1012.770833,342.53333330000004,45.51916667,11.22166667,1.18725,238.01555266666665 -2015-03-04 16:00:00,0.0,1012.0625,277.3583333,42.8075,11.6475,0.649083333,238.01688599999997 -2015-03-04 17:00:00,0.0,1011.541667,59.99166667,43.29666667,10.74,0.8215,238.017936 -2015-03-04 18:00:00,0.0,1011.241667,24.53608333,60.155,8.418416667,1.283416667,238.01758600000002 -2015-03-04 19:00:00,0.0,1011.220833,0.62975,75.55833333,7.2089166670000004,0.7343333329999999,238.01863600000001 -2015-03-04 20:00:00,0.0,1011.345833,0.0,84.5,6.364583333,0.201833333,238.01863600000001 -2015-03-04 21:00:00,0.0,1011.345833,0.0,88.275,5.913333333,0.1115,238.01863600000001 -2015-03-04 22:00:00,0.0,1011.225,0.0,88.33333333,6.22975,0.7775833329999999,238.01863600000001 -2015-03-04 23:00:00,0.0,1011.1833330000001,0.0,79.31583333,6.3274166670000005,2.008,238.018986 -2015-04-04 00:00:00,0.0,1010.791667,0.0,77.27,5.6495,0.5781666670000001,238.04868870000004 -2015-04-04 01:00:00,0.0,1010.4333330000001,0.0,83.39166667,5.375833332999999,0.8121666670000001,238.0485877 -2015-04-04 02:00:00,0.0,1009.9333330000001,0.0,86.99166667,5.19275,0.6759999999999999,238.0485877 -2015-04-04 03:00:00,0.0,1009.8625,0.0,78.66583333,5.13175,1.176,238.04863820000003 -2015-04-04 04:00:00,0.0,1009.733333,0.0,77.76833333,4.906083333,1.187833333,238.04871333333335 -2015-04-04 05:00:00,0.0,1009.5375,0.08883333300000001,78.54416667,4.796083333,2.089333333,238.04871333333335 -2015-04-04 06:00:00,0.0,1009.733333,8.33775,79.59416667,4.572666667,1.6546666669999999,238.04866160000003 -2015-04-04 07:00:00,0.0,1009.85,22.31666667,90.6,4.240583333,1.134416667,238.04866160000003 -2015-04-04 08:00:00,3.0040266719999997,1010.141667,58.63833333,90.06666667,4.351333333,1.9831666669999999,238.04861233333335 -2015-04-04 09:00:00,0.0,1010.279167,101.8875,86.55,4.588833333,1.4775,238.0485138 -2015-04-04 10:00:00,0.0,1010.454167,165.5,80.61333333,5.490666667,0.967583333,238.0485138 -2015-04-04 11:00:00,0.0,1010.654167,307.1833333,74.4775,6.346916667,2.113666667,238.0484620666667 -2015-04-04 12:00:00,0.0,1010.608333,376.4916667,65.90083333,7.41375,2.4169166669999997,238.04833396666666 -2015-04-04 13:00:00,0.0,1010.4416669999999,256.15,62.94333333,7.803333332999999,3.335333333,238.04826006666667 -2015-04-04 14:00:00,0.0,1010.320833,295.25,65.96333333,7.526666667000001,4.596416667,238.04823543333336 -2015-04-04 15:00:00,0.0,1010.654167,386.90833330000004,54.48583333,7.959416667,4.395583333,238.04815910000002 -2015-04-04 16:00:00,0.0,1010.883333,246.525,50.92666667,7.6175,4.093,238.0480557 -2015-04-04 17:00:00,0.0,1011.270833,88.80583333,52.74833333,7.258166667,4.0975,238.04803106666668 -2015-04-04 18:00:00,0.0,1011.75,39.23416667,54.17916667,6.451166667000001,3.342333333,238.04790789999996 -2015-04-04 19:00:00,0.0,1012.429167,1.4424166669999998,66.73083333,4.531666667,1.56925,238.0477785666667 -2015-04-04 20:00:00,0.0,1013.295833,0.0,83.39166667,1.83125,0.245416667,238.04764923333335 -2015-04-04 21:00:00,0.0,1013.729167,0.0,87.8,0.40416666700000003,0.003916667,238.04759750000002 -2015-04-04 22:00:00,0.0,1014.320833,0.0,89.775,0.194916667,0.145416667,238.04757286666668 -2015-04-04 23:00:00,0.0,1014.733333,0.0,89.64166667,1.656166667,0.39533333299999995,238.04747433333333 -2015-05-04 00:00:00,0.0,1014.945833,0.0,93.21666667,0.961583333,0.42991666700000003, -2015-05-04 01:00:00,0.0,1015.15,0.0,96.3,0.321583333,0.054416667, -2015-05-04 02:00:00,0.0,1015.241667,0.0,98.09166667,-0.940333333,0.049666667000000005, -2015-05-04 03:00:00,0.0,1015.479167,0.0,99.36666667,-1.604916667,0.0, -2015-05-04 04:00:00,0.0,1015.854167,0.0,99.90833333,-2.08275,0.006416666999999999, -2015-05-04 05:00:00,0.0,1016.541667,0.470916667,100.0,-2.502166667,0.01875, -2015-05-04 06:00:00,0.0,1017.0875,21.22,100.0,-2.278166667,0.0, -2015-05-04 07:00:00,0.0,1017.979167,65.7225,99.5,1.222166667,0.033083333, -2015-05-04 08:00:00,0.0,1018.6875,120.8825,83.80166667,3.777333333,0.982583333, -2015-05-04 09:00:00,0.0,1019.1833330000001,368.71666669999996,72.5025,5.504166667000001,1.60625, -2015-05-04 10:00:00,0.0,1019.35,436.58333330000005,56.25916667,6.84375,3.110666667, -2015-05-04 11:00:00,0.0,1019.329167,577.2333332999999,49.42333333,7.237083332999999,3.9105, -2015-05-04 12:00:00,0.0,1019.095833,436.36666669999994,51.54333333,7.832000000000001,2.799416667, -2015-05-04 13:00:00,0.0,1018.9416669999999,473.8583333000001,44.59916667,8.764166667000001,3.69025, -2015-05-04 14:00:00,0.0,1018.8166669999999,397.3,40.1875,9.318333333,3.349333333, -2015-05-04 15:00:00,0.0,1018.758333,242.125,40.19166667,9.463333333,3.5695, -2015-05-04 16:00:00,0.0,1018.833333,248.58333330000002,42.96583333,9.241666667,3.415833333, -2015-05-04 17:00:00,0.0,1019.008333,92.04416667,45.49583333,8.9075,2.653916667, -2015-05-04 18:00:00,0.0,1019.404167,20.62908333,57.59916667,7.845333332999999,1.272333333, -2015-05-04 19:00:00,0.0,1019.758333,0.901833333,78.40666667,5.528083333,0.6655, -2015-05-04 20:00:00,0.0,1020.0666669999999,0.0,87.7,2.27675,0.105, -2015-05-04 21:00:00,0.0,1020.3166669999999,0.0,90.01666667,0.52375,0.095083333, -2015-05-04 22:00:00,0.0,1020.445833,0.0,89.85,-0.704416667,0.008, -2015-05-04 23:00:00,0.0,1020.5,0.0,90.625,-1.355083333,0.04425, -2015-06-04 00:00:00,0.0,1020.625,0.0,89.99166667,-1.939416667,0.00475,237.78603508333333 -2015-06-04 01:00:00,0.0,1020.658333,0.0,91.44166667,-2.318916667,0.0,237.78948261666667 -2015-06-04 02:00:00,0.0,1020.5625,0.0,91.24166667,-1.393666667,0.010416667,237.78965498333332 -2015-06-04 03:00:00,0.0,1020.425,0.0,92.075,-0.519083333,0.036333332999999995,237.78965498333332 -2015-06-04 04:00:00,0.0,1020.283333,0.0,86.95,-0.198583333,0.008666667,237.79068926666665 -2015-06-04 05:00:00,0.0,1020.5375,0.311416667,87.70833333,0.15766666699999998,0.051916667,237.79155116666672 -2015-06-04 06:00:00,0.0,1021.0666669999999,15.74733333,82.67083333,0.5591666670000001,0.110083333,237.7925853833333 -2015-06-04 07:00:00,0.0,1021.320833,45.21583333,78.07833333,2.2565,0.272166667,237.792413 -2015-06-04 08:00:00,0.0,1021.9416669999999,103.0725,73.42,3.4160000000000004,0.711833333,237.78775884999996 -2015-06-04 09:00:00,0.0,1022.35,137.3833333,71.8725,5.054666667,0.754,237.78103616666667 -2015-06-04 10:00:00,0.0,1022.9333330000001,167.825,69.0825,5.311,1.534416667,237.77414109999995 -2015-06-04 11:00:00,0.0,1023.383333,311.2916667,63.04,6.619166667000001,1.4591666669999999,237.76810790000002 -2015-06-04 12:00:00,0.0,1023.75,255.525,66.70083333,7.048416667000001,2.597,237.76672888333337 -2015-06-04 13:00:00,0.0,1023.95,277.1833333,68.05416667,7.76775,2.618083333,237.76293660000002 -2015-06-04 14:00:00,0.0,1024.216667,402.1333333,61.14333333,8.680833332999999,3.778083333,237.76259185 -2015-06-04 15:00:00,0.0,1024.379167,320.5083333,55.50916667,8.906666667,3.32875,237.75811005 -2015-06-04 16:00:00,0.0,1024.633333,214.5783333,54.86083333,9.426666667000001,3.01425,237.75707580000002 -2015-06-04 17:00:00,0.0,1025.091667,65.1225,56.31083333,9.285833333,2.573583333,237.75948906666667 -2015-06-04 18:00:00,0.0,1025.733333,35.50166667,60.3525,8.439,1.500583333,237.7591443 -2015-06-04 19:00:00,0.0,1026.370833,1.52,82.02916667,4.61025,0.33825,237.75793766666666 -2015-06-04 20:00:00,0.0,1027.2,0.0,91.175,1.6471666669999998,0.225166667,237.76000618333333 -2015-06-04 21:00:00,0.0,1027.816667,0.0,93.64166667,0.303583333,0.135,237.76310898333335 -2015-06-04 22:00:00,0.0,1028.4125,0.0,95.375,-0.7245,0.035333333,237.76448800000003 -2015-06-04 23:00:00,0.0,1029.120833,0.0,96.25833333,-1.4850833330000002,0.01275,237.76896980000004 -2015-07-04 00:00:00,0.0,1029.791667,0.0,97.36666667,-1.868166667,0.031916667,237.59228735 -2015-07-04 01:00:00,0.0,1030.041667,0.0,97.80833333,-2.524166667,0.0,237.59814189999997 -2015-07-04 02:00:00,0.0,1030.1625,0.0,98.39166667,-2.979916667,0.0,237.60218428333334 -2015-07-04 03:00:00,0.0,1030.216667,0.0,98.88333333,-3.32625,0.0,237.60594791666662 -2015-07-04 04:00:00,0.0,1030.433333,0.0,99.475,-3.62675,0.0375,237.6085964166667 -2015-07-04 05:00:00,0.0,1030.775,0.6925,99.71666667,-3.951833333,0.042083333,237.6116630666667 -2015-07-04 06:00:00,0.0,1031.283333,15.87208333,99.89166667,-3.41425,0.024083333,237.6119418666667 -2015-07-04 07:00:00,0.0,1031.895833,80.83083333,97.33333333,-0.37858333299999997,0.134,237.6134751666667 -2015-07-04 08:00:00,0.0,1032.033333,154.1,82.60833333,3.047333333,0.604166667,237.61180245000003 -2015-07-04 09:00:00,0.0,1032.175,330.1833333,72.3175,6.1711666670000005,0.75,237.60162673333332 -2015-07-04 10:00:00,0.0,1032.129167,469.1916666999999,55.15416667,9.346916667,1.309083333,237.58852373333335 -2015-07-04 11:00:00,0.0,1031.854167,558.175,48.90166667,10.84416667,1.163,237.57458436666664 -2015-07-04 12:00:00,0.0,1031.316667,533.4833333,44.55,11.8925,1.381,237.56859043333336 -2015-07-04 13:00:00,0.0,1030.7125,462.5583333000001,46.22333333,12.5575,1.74125,237.56482679999996 -2015-07-04 14:00:00,0.0,1029.958333,341.3083333,46.09083333,12.81416667,1.7045833330000002,237.56245709999996 -2015-07-04 15:00:00,0.0,1029.254167,221.4,45.67416667,12.82416667,1.5845,237.55952985 -2015-07-04 16:00:00,0.0,1028.7375,155.675,43.16,12.74583333,1.3995,237.55855408333332 -2015-07-04 17:00:00,0.0,1028.483333,92.02833333,44.24,12.48,1.038666667,237.55716013333333 -2015-07-04 18:00:00,0.0,1028.2375,35.92833333,46.4125,10.85666667,0.846166667,237.5581359 -2015-07-04 19:00:00,0.0,1028.3625,1.3885833330000001,74.49833333,6.288666667,0.18233333300000001,237.55980863333332 -2015-07-04 20:00:00,0.0,1028.491667,0.0,85.92166667,3.406666667,0.010333333,237.56022681666664 -2015-07-04 21:00:00,0.0,1028.608333,0.0,89.925,2.2975,0.0,237.56245709999996 -2015-07-04 22:00:00,0.0,1028.570833,0.0,90.54166667,2.10775,0.051416667,237.56691768333334 -2015-07-04 23:00:00,0.0,1028.225,0.0,91.525,1.7283333330000001,0.036666667,237.56928739999998 -2015-08-04 00:00:00,0.0,1028.233333,0.0,93.49166667,1.61425,0.08783333300000001,237.45958455000002 -2015-08-04 01:00:00,0.0,1028.158333,0.0,96.71666667,1.142666667,0.068333333,237.46306941666668 -2015-08-04 02:00:00,0.0,1027.95,0.0,97.28333333,0.65975,0.016333333000000002,237.4680876 -2015-08-04 03:00:00,0.0,1027.608333,0.0,98.0,0.021416667,0.007666666999999999,237.47143303333334 -2015-08-04 04:00:00,0.0,1027.4625,0.0,98.73333333,-0.322833333,0.05,237.47505728333337 -2015-08-04 05:00:00,0.0,1027.479167,0.5628333329999999,98.375,-0.643416667,0.08491666699999999,237.47812394999997 -2015-08-04 06:00:00,0.0,1027.908333,23.62975,97.71666667,-0.541666667,0.013833333,237.47993605000002 -2015-08-04 07:00:00,0.0,1028.2,86.52833333,91.5,1.7658333330000002,0.040166667,237.48216634999997 -2015-08-04 08:00:00,0.0,1028.483333,141.3833333,81.89333333,6.2423333329999995,0.8625,237.4841178666667 -2015-08-04 09:00:00,0.0,1028.641667,288.6166667,78.05083333,7.83725,1.46125,237.47951786666667 -2015-08-04 10:00:00,0.0,1028.804167,421.1833333000001,76.09333333,8.802583333,2.157083333,237.46864518333334 -2015-08-04 11:00:00,0.0,1028.7125,503.25,73.71833333,10.35416667,1.486,237.45637851666672 -2015-08-04 12:00:00,0.0,1028.575,536.4,71.80333333,11.4225,1.8886666669999999,237.44550581666667 -2015-08-04 13:00:00,0.0,1028.333333,546.75,68.31666667,12.77333333,1.096833333,237.44243916666667 -2015-08-04 14:00:00,0.0,1027.925,501.54166669999995,64.17333333,13.92166667,1.274583333,237.44508765 -2015-08-04 15:00:00,0.0,1027.458333,417.825,59.08,15.01166667,0.9228333329999999,237.44745733333332 -2015-08-04 16:00:00,0.0,1026.8625,250.3916667,56.65583333,15.49083333,0.905333333,237.45512396666666 -2015-08-04 17:00:00,0.0,1026.241667,68.625,57.74416667,15.3325,0.66275,237.46125729999997 -2015-08-04 18:00:00,0.0,1026.158333,35.425,61.90333333,13.8625,0.6579166670000001,237.46585728333332 -2015-08-04 19:00:00,0.0,1026.391667,1.680083333,86.3525,9.41175,0.13225,237.4705966833333 -2015-08-04 20:00:00,0.0,1026.591667,0.0,93.225,6.52275,0.147,237.47547545 -2015-08-04 21:00:00,0.0,1026.4875,0.0,96.725,5.204833333,0.212416667,237.4789603 -2015-08-04 22:00:00,0.0,1026.454167,0.0,99.025,4.1985,0.12733333300000002,237.48272391666663 -2015-08-04 23:00:00,0.0,1026.3375,0.0,100.0,4.264583333,0.34033333299999996,237.48704515 -2015-09-04 00:00:00,0.0,1026.1625,0.0,100.0,3.720333333,0.166583333,237.5636843 -2015-09-04 01:00:00,0.0,1025.766667,0.0,100.0,3.185666667,0.1605,237.56663135 -2015-09-04 02:00:00,0.0,1025.508333,0.0,100.0,2.3385833330000003,0.12616666699999998,237.56694156666666 -2015-09-04 03:00:00,0.0,1025.308333,0.0,100.0,1.788083333,0.08325,237.56864776666666 -2015-09-04 04:00:00,0.0,1024.916667,0.0,100.0,1.130916667,0.08575,237.57050901666665 -2015-09-04 05:00:00,0.0,1024.804167,1.003333333,100.0,0.55475,0.035083333,237.5701988 -2015-09-04 06:00:00,0.0,1024.933333,23.06483333,100.0,0.793416667,0.039,237.5722152333333 -2015-09-04 07:00:00,0.0,1025.091667,84.15333333,100.0,4.04375,0.131666667,237.57237031666668 -2015-09-04 08:00:00,0.0,1024.758333,136.1166667,95.49166667,7.79175,0.7305,237.57314586666666 -2015-09-04 09:00:00,0.0,1024.520833,300.55,84.12166667,10.44166667,0.8545,237.57252543333334 -2015-09-04 10:00:00,0.0,1024.025,446.46666669999996,77.9875,12.6725,1.3395,237.57159478333332 -2015-09-04 11:00:00,0.0,1023.391667,529.5166667,65.89916667,15.04083333,1.70225,237.5700437 -2015-09-04 12:00:00,0.0,1022.783333,554.275,61.19583333,16.63583333,2.012916667,237.56414961666667 -2015-09-04 13:00:00,0.0,1022.258333,546.6583333,57.9825,17.67583333,1.628333333,237.56042703333333 -2015-09-04 14:00:00,0.0,1021.8166669999999,502.875,56.16083333,18.22833333,1.4445833330000002,237.55701465 -2015-09-04 15:00:00,0.0,1021.233333,421.04166669999995,53.4925,19.02083333,0.904666667,237.55143075 -2015-09-04 16:00:00,0.0,1020.525,260.375,53.82416667,18.92416667,0.849833333,237.55112055000004 -2015-09-04 17:00:00,0.0,1019.904167,85.65833333,55.91833333,17.77833333,1.316083333,237.54832858333336 -2015-09-04 18:00:00,0.0,1019.541667,40.005,59.95416667,15.2375,2.143166667,237.54786325 -2015-09-04 19:00:00,0.0,1019.5625,2.1005833330000003,81.04583333,11.6775,1.26025,237.54584683333334 -2015-09-04 20:00:00,0.0,1019.75,0.0,89.63333333,9.289166667,0.17600000000000002,237.54522640000002 -2015-09-04 21:00:00,0.0,1019.6,0.0,89.60833333,7.93675,0.036833332999999996,237.54615705000003 -2015-09-04 22:00:00,0.0,1019.475,0.0,95.25,6.81975,0.02,237.54538153333328 -2015-09-04 23:00:00,0.0,1019.475,0.0,98.70833333,5.63975,0.094916667,237.54631216666667 -2015-10-04 00:00:00,0.0,1019.333333,0.0,99.65,4.8783333330000005,0.0725,237.5767133666667 -2015-10-04 01:00:00,0.0,1019.0583330000001,0.0,99.96666667,4.243916667,0.078416667,237.57748889999996 -2015-10-04 02:00:00,0.0,1018.8,0.0,100.0,3.3545,0.07075,237.57779913333331 -2015-10-04 03:00:00,0.0,1018.508333,0.0,100.0,2.792333333,0.05925,237.57966041666666 -2015-10-04 04:00:00,0.0,1018.3708330000001,0.0,100.0,2.216333333,0.010333333,237.58136661666666 -2015-10-04 05:00:00,0.0,1018.4416669999999,1.4298333330000002,100.0,1.7463333330000002,0.0,237.58183193333332 -2015-10-04 06:00:00,0.0,1018.554167,22.74333333,100.0,1.91975,0.0,237.58059106666664 -2015-10-04 07:00:00,0.0,1018.633333,88.7725,100.0,5.433916667,0.066916667,237.58090126666664 -2015-10-04 08:00:00,0.0,1018.616667,115.19666670000001,93.05833333,8.95225,0.5329999999999999,237.58090126666664 -2015-10-04 09:00:00,0.0,1018.520833,330.6866667,80.8775,12.30083333,0.51375,237.58059106666667 -2015-10-04 10:00:00,0.0,1018.275,466.74166669999994,71.14416667,15.14916667,0.870083333,237.58105638333333 -2015-10-04 11:00:00,0.0,1017.6916669999999,524.4166667,62.4675,18.58166667,0.700333333,237.58245234999995 -2015-10-04 12:00:00,0.0,1017.125,543.0833332999999,53.69083333,19.73916667,1.5138333330000002,237.58012571666666 -2015-10-04 13:00:00,0.0,1016.454167,548.2666667000001,49.09833333,20.69666667,1.51075,237.58012573333335 -2015-10-04 14:00:00,0.0,1015.675,505.8166666999999,41.2925,21.09166667,1.667416667,237.57857464999998 -2015-10-04 15:00:00,0.0,1015.029167,432.6083333000001,32.84916667,22.33833333,1.062666667,237.57702360000005 -2015-10-04 16:00:00,0.0,1014.291667,282.825,32.89,22.50583333,1.196583333,237.5757827166667 -2015-10-04 17:00:00,0.0,1013.8625,76.62833333,33.23833333,20.92,1.626166667,237.57671335 -2015-10-04 18:00:00,0.0,1013.533333,35.6875,51.6375,17.65416667,1.5330000000000001,237.57686845 -2015-10-04 19:00:00,0.0,1013.695833,2.155,69.54,13.57583333,1.032916667,237.57857463333332 -2015-10-04 20:00:00,0.0,1013.6916669999999,0.0,84.335,11.01916667,0.38058333299999997,237.5801257333333 -2015-10-04 21:00:00,0.0,1013.575,0.0,67.8975,9.51,0.402916667,237.58214214999998 -2015-10-04 22:00:00,0.0,1013.483333,0.0,56.895,10.23916667,0.978166667,237.58384835 -2015-10-04 23:00:00,0.0,1013.5375,0.0,38.165,14.18333333,1.61975,237.58570963333332 -2015-11-04 00:00:00,0.0,1013.525,0.0,47.04833333,13.8225,1.177583333,237.72845400000003 -2015-11-04 01:00:00,0.0,1013.429167,0.0,68.0175,7.650666667,0.038083333,237.72953858333335 -2015-11-04 02:00:00,0.0,1013.1125,0.0,84.65,5.804416667000001,0.016666667,237.7272144833333 -2015-11-04 03:00:00,0.0,1013.204167,0.0,89.48333333,4.692583333,0.09783333300000001,237.7272144833333 -2015-11-04 04:00:00,0.0,1013.1375,0.0,92.21666667,3.9514166669999997,0.042,237.72674965 -2015-11-04 05:00:00,0.0,1013.283333,0.959583333,87.31666667,3.742416667,0.031416667,237.7278342333333 -2015-11-04 06:00:00,0.0,1013.716667,26.92583333,87.525,4.404833333,0.0,237.72674964999996 -2015-11-04 07:00:00,0.0,1014.1916669999999,52.71916667,82.26083333,6.8288333329999995,0.01625,237.7276793 -2015-11-04 08:00:00,0.0,1014.641667,119.89583329999999,66.11333333,11.1825,0.9205,237.72659473333337 -2015-11-04 09:00:00,0.0,1015.158333,272.55,60.9225,15.97416667,2.672333333,237.72736939999996 -2015-11-04 10:00:00,0.0,1015.333333,229.525,62.8375,15.96166667,2.076083333,237.72520024999997 -2015-11-04 11:00:00,0.0,1015.345833,204.93333330000002,60.38666667,16.92,2.033666667,237.72612990000002 -2015-11-04 12:00:00,0.0,1015.279167,147.65083330000002,64.8225,15.8075,2.656916667,237.72783421666668 -2015-11-04 13:00:00,0.0,1015.6625,169.4,67.50833333,15.64916667,2.6375,237.72705955 -2015-11-04 14:00:00,0.0,1016.104167,202.375,75.78,14.44583333,2.336083333,237.72736945 -2015-11-04 15:00:00,0.0,1016.3083330000001,171.8225,71.03666667,15.51666667,2.3025,237.72721449999997 -2015-11-04 16:00:00,3.4429790639999998,1016.525,183.55333330000002,73.66,15.6675,2.69925,237.72876388333336 -2015-11-04 17:00:00,0.0,1016.858333,63.29,71.75166667,15.04083333,2.775583333,237.72814414999996 -2015-11-04 18:00:00,0.0,1017.216667,11.52583333,74.33666667,14.24916667,2.455833333,237.72984845 -2015-11-04 19:00:00,0.0,1017.954167,1.9359166669999999,75.355,13.4675,1.940666667,237.72938363333333 -2015-11-04 20:00:00,0.0,1019.2,0.0,78.23166667,12.94333333,1.8728333330000002,237.7292287 -2015-11-04 21:00:00,0.0,1020.333333,0.0,89.0025,11.445,1.9265833330000002,237.73000338333335 -2015-11-04 22:00:00,0.0,1021.4,0.0,92.16666667,10.35166667,1.133416667,237.7315528 -2015-11-04 23:00:00,0.0,1022.466667,0.0,83.03416667,10.08083333,1.072833333,237.72953856666663 -2015-12-04 00:00:00,0.0,1023.583333,0.0,72.48083333,9.070833333,2.1091666669999998,238.08167163333334 -2015-12-04 01:00:00,0.0,1023.979167,0.0,71.24333333,8.161,1.099666667,238.08238744999997 -2015-12-04 02:00:00,0.0,1024.125,0.0,85.47416667,6.377583333,0.34775,238.07862943333336 -2015-12-04 03:00:00,0.0,1024.4,0.0,94.18333333,3.620916667,0.111666667,238.07612408333333 -2015-12-04 04:00:00,0.0,1024.791667,0.0,97.26666667,1.68125,0.107583333,238.07522931666665 -2015-12-04 05:00:00,0.0,1025.15,1.2279166670000001,97.58333333,2.19225,0.03975,238.0718292 -2015-12-04 06:00:00,0.0,1025.316667,33.3,98.33333333,2.275833333,0.09066666699999999,238.06753431666667 -2015-12-04 07:00:00,0.0,1025.808333,102.4408333,89.26666667,4.698333333,0.061416667,238.06628164999998 -2015-12-04 08:00:00,0.0,1026.058333,149.30833330000002,74.68333333,7.384416667000001,0.256833333,238.06485001666667 -2015-12-04 09:00:00,0.0,1026.033333,328.8916667,63.84,9.623333333,0.908333333,238.06162884999995 -2015-12-04 10:00:00,0.0,1025.804167,436.75,58.02916667,12.045,1.119166667,238.05966038333335 -2015-12-04 11:00:00,0.0,1025.5875,522.25,57.6475,13.8975,1.119166667,238.05966038333335 -2015-12-04 12:00:00,0.0,1024.875,550.1833333,50.33916667,14.92,1.729333333,238.05590235 -2015-12-04 13:00:00,0.0,1024.016667,540.2,46.34583333,16.16416667,1.65225,238.05500759999998 -2015-12-04 14:00:00,0.0,1023.491667,492.8,43.11916667,16.8175,1.921416667,238.05447073333335 -2015-12-04 15:00:00,0.0,1022.95,421.71666669999996,38.21166667,17.26166667,2.149916667,238.0528601333333 -2015-12-04 16:00:00,0.0,1022.5625,298.7083333,39.51583333,17.54583333,1.929,238.05482865 -2015-12-04 17:00:00,0.0,1021.775,90.6675,43.36166667,16.9525,1.5955833330000002,238.05429178333335 -2015-12-04 18:00:00,0.0,1021.304167,41.2825,47.42666667,15.4575,1.097583333,238.05321805000003 -2015-12-04 19:00:00,0.0,1021.133333,3.391916667,59.57833333,11.67666667,0.149833333,238.05357596666667 -2015-12-04 20:00:00,0.0,1021.3125,0.0,64.12833333,11.01916667,0.650333333,238.05178641666666 -2015-12-04 21:00:00,0.0,1021.079167,0.0,63.99666667,11.88333333,1.127083333,238.05178641666666 -2015-12-04 22:00:00,0.0,1021.116667,0.0,63.83083333,11.36583333,0.6445833329999999,238.05124956666666 -2015-12-04 23:00:00,0.0,1021.141667,0.0,65.50166667,10.47833333,1.094083333,238.0487442333333 -2015-04-13 00:00:00,0.0,1020.9958330000001,0.0,69.3325,11.62666667,2.069666667,238.04256276666663 -2015-04-13 01:00:00,0.0,1020.654167,0.0,74.66916667,10.91666667,1.7701666669999998,238.04258739999997 -2015-04-13 02:00:00,0.0,1020.5625,0.0,76.385,11.29666667,1.743416667,238.04261326666665 -2015-04-13 03:00:00,0.0,1020.8875,0.0,76.9275,11.38166667,1.3256666670000001,238.04258739999997 -2015-04-13 04:00:00,0.0,1021.658333,0.0,73.18166667,11.41083333,1.6904166669999998,238.04258739999997 -2015-04-13 05:00:00,0.0,1022.3166669999999,0.90775,73.4125,10.9025,1.8894166669999999,238.0425135 -2015-04-13 06:00:00,0.0,1022.975,16.86441667,75.1675,10.71916667,1.278666667,238.04248886666664 -2015-04-13 07:00:00,0.0,1023.833333,40.4375,78.01583333,10.61,1.796,238.04248886666664 -2015-04-13 08:00:00,0.0,1024.775,121.875,75.15166667,10.65,2.645,238.04243959999994 -2015-04-13 09:00:00,0.0,1025.404167,156.56666669999998,75.40083333,10.585,3.3016666669999997,238.0423879 -2015-04-13 10:00:00,0.0,1026.1125,406.34166669999996,62.5525,11.13333333,2.5845833330000003,238.04231035 -2015-04-13 11:00:00,0.0,1026.275,526.225,54.83333333,12.28583333,2.829416667,238.04228450000002 -2015-04-13 12:00:00,0.0,1026.058333,555.5583333,51.21416667,13.36333333,2.21125,238.04228450000002 -2015-04-13 13:00:00,0.0,1026.058333,490.53333330000004,48.70333333,13.92166667,2.0373333330000003,238.04228450000002 -2015-04-13 14:00:00,0.0,1025.558333,467.49166669999994,46.24333333,14.275,2.137916667,238.04223523333337 -2015-04-13 15:00:00,0.0,1025.158333,336.1666667,44.50333333,14.12,1.8893333330000002,238.0422106 -2015-04-13 16:00:00,0.0,1024.845833,314.4916667,44.47916667,14.465,1.82875,238.0422106 -2015-04-13 17:00:00,0.0,1024.65,102.525,44.7425,13.65916667,1.348416667,238.0421367 -2015-04-13 18:00:00,0.0,1024.608333,44.12583333,47.09583333,12.495,1.319083333,238.0421367 -2015-04-13 19:00:00,0.0,1025.1375,2.8595,48.18,10.70166667,2.0945,238.04203323333334 -2015-04-13 20:00:00,0.0,1025.516667,0.0,74.39083333,9.020833332999999,0.94625,238.04205909999996 -2015-04-13 21:00:00,0.0,1025.8,0.0,81.29083333,5.81625,0.302416667,238.04216133333338 -2015-04-13 22:00:00,0.0,1025.695833,0.0,84.98333333,4.403583333,0.15425,238.04216133333338 -2015-04-13 23:00:00,0.0,1025.8,0.0,87.68333333,2.9415,0.162,238.0421367 -2015-04-14 00:00:00,0.0,1026.05,0.0,89.75,2.556333333,0.06308333299999999,238.0421367 -2015-04-14 01:00:00,0.0,1025.845833,0.0,91.9,1.70975,0.063,238.0421367 -2015-04-14 02:00:00,0.0,1025.458333,0.0,92.675,1.107333333,0.020083333000000002,238.0421367 -2015-04-14 03:00:00,0.0,1025.075,0.0,94.00833333,0.744416667,0.0305,238.0421367 -2015-04-14 04:00:00,0.0,1024.883333,0.0,95.46666667,1.2508333329999999,0.0,238.04216010000005 -2015-04-14 05:00:00,0.0,1024.745833,1.8571666669999998,97.86666667,0.845,0.0,238.0421367 -2015-04-14 06:00:00,0.0,1024.725,27.78916667,98.80833333,0.864666667,0.0,238.0421367 -2015-04-14 07:00:00,0.0,1024.720833,108.32083329999999,87.885,4.885666667,0.1255,238.0422106 -2015-04-14 08:00:00,0.0,1024.570833,147.65,73.16,7.147666667,0.504166667,238.0422106 -2015-04-14 09:00:00,0.0,1024.3625,293.5083333,71.105,10.8425,1.074833333,238.0421367 -2015-04-14 10:00:00,0.0,1024.270833,483.33333330000005,68.4575,14.25833333,1.275916667,238.0421859666667 -2015-04-14 11:00:00,0.0,1023.454167,516.5083333,64.46083333,15.8475,1.852416667,238.0421859666667 -2015-04-14 12:00:00,0.0,1022.725,592.9166667000001,59.58083333,17.64083333,2.0438333330000003,238.04228450000002 -2015-04-14 13:00:00,0.0,1022.033333,560.5916667,56.26416667,19.13833333,2.0345,238.04228450000002 -2015-04-14 14:00:00,0.0,1021.1125,515.1333333,50.6875,20.32083333,2.31675,238.04225986666668 -2015-04-14 15:00:00,0.0,1019.925,400.925,48.95666667,21.40416667,2.232916667,238.04228450000002 -2015-04-14 16:00:00,0.0,1019.154167,305.1416667,48.065,21.9675,1.973,238.04228450000002 -2015-04-14 17:00:00,0.0,1018.4416669999999,72.68666667,37.70416667,22.17583333,1.7890833330000002,238.04225986666668 -2015-04-14 18:00:00,0.0,1018.029167,44.10916667,38.05583333,20.90666667,1.396166667,238.0421367 -2015-04-14 19:00:00,0.0,1017.791667,4.194166667,57.29833333,16.0775,0.18816666699999998,238.0421367 -2015-04-14 20:00:00,0.0,1018.15,0.0,78.86416667,11.37583333,0.345916667,238.04200736666667 -2015-04-14 21:00:00,0.0,1018.3125,0.0,83.28916667,9.546666667,0.33975,238.0419815 -2015-04-14 22:00:00,0.0,1018.025,0.0,88.15833333,8.54,0.030166667,238.04200736666667 -2015-04-14 23:00:00,0.0,1017.8,0.0,92.95833333,7.651,0.09658333300000001,238.0419815 -2015-04-15 00:00:00,0.0,1017.583333,0.0,91.11666667,6.34475,0.006583333,238.0419815 -2015-04-15 01:00:00,0.0,1017.270833,0.0,91.53333333,5.728166667000001,0.016166667,238.0419815 -2015-04-15 02:00:00,0.0,1017.158333,0.0,93.325,5.07975,0.039083333,238.0419815 -2015-04-15 03:00:00,0.0,1016.625,0.0,96.475,4.415333333,0.065416667,238.0419815 -2015-04-15 04:00:00,0.0,1016.091667,0.0,99.43333333,3.87175,0.133416667,238.0420591 -2015-04-15 05:00:00,0.0,1016.016667,2.648583333,100.0,3.062916667,0.055,238.0419322333333 -2015-04-15 06:00:00,0.0,1016.125,24.18916667,100.0,3.972,0.012333333,238.0418337 -2015-04-15 07:00:00,0.0,1016.1833330000001,133.3958333,92.49083333,8.538,0.5003333329999999,238.0418337 -2015-04-15 08:00:00,0.0,1016.083333,122.96916670000002,70.71916667,13.11166667,0.741166667,238.04195686666665 -2015-04-15 09:00:00,0.0,1016.158333,299.4541667,59.575,17.47,0.964666667,238.0419322333333 -2015-04-15 10:00:00,0.0,1015.8166669999999,507.24166669999994,53.14083333,19.8475,1.5455,238.04193223333334 -2015-04-15 11:00:00,0.0,1015.204167,571.225,46.57416667,21.33916667,1.57975,238.0419815 -2015-04-15 12:00:00,0.0,1014.458333,597.9333333,44.23833333,22.3275,1.871833333,238.0419815 -2015-04-15 13:00:00,0.0,1013.445833,588.575,40.79333333,23.3475,1.8020833330000001,238.04193223333334 -2015-04-15 14:00:00,0.0,1012.4,546.225,35.09166667,24.38583333,1.7079166669999999,238.04185833333335 -2015-04-15 15:00:00,0.0,1011.3166669999999,474.15,28.62666667,25.12416667,1.828,238.0418337 -2015-04-15 16:00:00,0.0,1010.3,347.6416667,27.61083333,25.52583333,1.5930000000000002,238.0418337 -2015-04-15 17:00:00,0.0,1009.404167,69.17333333,28.75833333,24.7825,1.6141666669999999,238.0418337 -2015-04-15 18:00:00,0.0,1008.983333,44.33,32.72083333,22.4725,0.9833333329999999,238.04170436666666 -2015-04-15 19:00:00,0.0,1008.958333,5.259333333,50.84,16.38916667,0.107083333,238.04154916666667 -2015-04-15 20:00:00,0.0,1009.175,0.0,68.19833333,13.3325,0.205583333,238.04154916666667 -2015-04-15 21:00:00,0.0,1009.35,0.0,77.72666667,12.08583333,0.17025,238.04152329999997 -2015-04-15 22:00:00,0.0,1009.366667,0.0,80.48416667,10.73416667,0.22675,238.04144945 -2015-04-15 23:00:00,0.0,1009.116667,0.0,87.08333333,9.905833333,0.091416667,238.04142483333337 -2015-04-16 00:00:00,0.0,1009.1,0.0,90.2,8.10125,0.15633333300000002,238.0413756 -2015-04-16 01:00:00,0.0,1008.9416669999999,0.0,91.44166667,6.93275,0.0445,238.0413756 -2015-04-16 02:00:00,0.0,1008.704167,0.0,93.70833333,6.23825,0.110833333,238.0412721333333 -2015-04-16 03:00:00,0.0,1008.7875,0.0,95.44166667,5.729166667,0.026083332999999997,238.0412721333333 -2015-04-16 04:00:00,0.0,1008.804167,0.0,95.06666667,5.188666667,0.17075,238.0413756 -2015-04-16 05:00:00,0.0,1009.2458330000001,3.224583333,98.35,4.874166667,0.201666667,238.0414002166667 -2015-04-16 06:00:00,0.0,1009.65,38.83833333,98.15,5.766666667000001,0.06875,238.04129799999998 -2015-04-16 07:00:00,0.0,1010.3791669999999,125.43416670000002,88.2825,10.12425,0.08275,238.04134973333336 -2015-04-16 08:00:00,0.0,1010.4958330000001,140.56666669999998,67.30333333,14.10416667,0.38933333299999995,238.04140021666663 -2015-04-16 09:00:00,0.0,1010.525,280.21666669999996,60.51416667,15.76916667,0.8091666670000001,238.04152329999997 -2015-04-16 10:00:00,0.0,1010.541667,471.225,54.0825,17.80166667,0.829916667,238.04144945 -2015-04-16 11:00:00,0.0,1010.45,536.325,51.41416667,20.20083333,1.185583333,238.04152329999997 -2015-04-16 12:00:00,0.0,1009.9416669999999,543.1083332999999,47.09833333,21.41416667,1.445583333,238.04149868333334 -2015-04-16 13:00:00,0.0,1009.366667,544.225,46.42916667,22.29916667,1.65225,238.04147406666667 -2015-04-16 14:00:00,0.0,1008.7125,424.4333333000001,45.2275,22.375,1.5800833330000001,238.04142483333337 -2015-04-16 15:00:00,0.0,1008.145833,372.0666667,43.34166667,22.63083333,1.456083333,238.0413756 -2015-04-16 16:00:00,0.0,1007.525,268.9,41.64666667,22.56,1.881833333,238.0413497333333 -2015-04-16 17:00:00,0.0,1007.0583330000001,106.34666670000001,47.29666667,20.305,3.014166667,238.04129799999998 -2015-04-16 18:00:00,0.0,1007.3166669999999,31.90833333,66.52416667,17.61916667,3.3850833330000003,238.04122039999996 -2015-04-16 19:00:00,0.0,1007.804167,2.521583333,69.63583333,15.37416667,3.15325,238.04122039999996 -2015-04-16 20:00:00,0.0,1008.491667,0.0,69.9125,13.725,3.268916667,238.04112186666666 -2015-04-16 21:00:00,0.0,1009.020833,0.0,67.34666667,12.1125,3.14875,238.04119576666662 -2015-04-16 22:00:00,0.0,1009.4625,0.0,65.16583333,11.14,2.961416667,238.04122039999996 -2015-04-16 23:00:00,0.0,1009.5875,0.0,67.80333333,9.5975,2.303,238.04122039999996 -2015-04-17 00:00:00,36.63749266,1009.783333,0.0,90.84,7.873583332999999,0.8311666670000001,238.04122039999996 -2015-04-17 01:00:00,5.10717852,1009.095833,0.0,98.80833333,7.636416667000001,0.403583333,238.04132386666666 -2015-04-17 02:00:00,0.0,1008.954167,0.0,100.0,7.330083332999999,0.48666666700000005,238.0413756 -2015-04-17 03:00:00,0.0,1008.6875,0.0,100.0,6.172833333,0.28800000000000003,238.0414248333333 -2015-04-17 04:00:00,0.0,1008.75,0.0,100.0,5.44425,0.28,238.04149868333332 -2015-04-17 05:00:00,0.0,1009.216667,1.75775,100.0,6.164,1.0765,238.0415504166667 -2015-04-17 06:00:00,0.0,1009.7625,24.36358333,91.41666667,6.553666667000001,1.4453333330000002,238.04152455 -2015-04-17 07:00:00,0.0,1010.354167,74.7725,81.94916667,6.786083333,2.1375,238.04129799999998 -2015-04-17 08:00:00,0.0,1010.575,97.855,79.31333333,7.381666667,2.8810000000000002,238.04107136666667 -2015-04-17 09:00:00,0.0,1010.841667,230.65,71.31166667,9.085833333,3.2254166669999997,238.0409432666667 -2015-04-17 10:00:00,0.0,1011.1916669999999,301.4,65.53166667,10.28333333,3.09275,238.04096913333333 -2015-04-17 11:00:00,0.0,1011.3,595.3666667,56.125,11.64333333,2.73275,238.04127213333334 -2015-04-17 12:00:00,0.0,1011.1375,618.8833333,49.87083333,12.62083333,3.9859166669999997,238.04122039999996 -2015-04-17 13:00:00,0.0,1011.133333,627.8166667,48.8375,12.9925,4.792916667,238.04122039999996 -2015-04-17 14:00:00,0.0,1011.258333,500.59166669999996,50.085,12.8425,4.61625,238.04122039999996 -2015-04-17 15:00:00,0.0,1011.4958330000001,351.7083333,55.20666667,12.12666667,4.943333333,238.04117113333328 -2015-04-17 16:00:00,0.0,1011.829167,281.84166669999996,53.53333333,11.7,5.120666667,238.04117113333328 -2015-04-17 17:00:00,0.0,1012.2,81.64333333,54.69833333,11.18666667,4.5599166669999995,238.04114649999997 -2015-04-17 18:00:00,0.0,1013.029167,42.39,56.78916667,10.39583333,3.78225,238.04104549999997 -2015-04-17 19:00:00,0.0,1013.875,3.330833333,70.65083333,8.848833333,1.563833333,238.04081886666665 -2015-04-17 20:00:00,0.0,1014.654167,0.0,86.825,5.6471666670000005,0.181333333,238.0405405 -2015-04-17 21:00:00,0.0,1015.458333,0.0,91.14166667,4.147083333,0.28325,238.04038905000002 -2015-04-17 22:00:00,0.0,1015.979167,0.0,93.70833333,3.4355833330000003,0.351416667,238.04028563333335 -2015-04-17 23:00:00,0.0,1016.716667,0.0,94.35833333,2.202833333,0.26858333300000004,238.0403115 -2015-04-18 00:00:00,0.0,1017.470833,0.0,96.35,1.503416667,0.17925,238.0403115 -2015-04-18 01:00:00,0.0,1017.791667,0.0,97.625,0.775083333,0.10641666699999999,238.04020803333336 -2015-04-18 02:00:00,0.0,1018.008333,0.0,98.26666667,0.2565,0.049666667000000005,238.0401575333333 -2015-04-18 03:00:00,0.0,1018.320833,0.0,99.08333333,-0.225916667,0.051833332999999995,238.04013166666667 -2015-04-18 04:00:00,0.0,1018.491667,0.0,99.96666667,-0.51975,0.1385,238.04015753333337 -2015-04-18 05:00:00,0.0,1018.904167,3.992833333,100.0,0.236916667,0.02875,238.0401563 -2015-04-18 06:00:00,0.0,1019.7458330000001,28.645,100.0,1.7728333330000001,0.011333333000000001,238.0402597666667 -2015-04-18 07:00:00,0.0,1020.420833,153.36583330000002,91.5,4.89225,1.245,238.0402339 -2015-04-18 08:00:00,0.0,1020.708333,130.0116667,77.17166667,6.996083333,2.981833333,238.0403115 -2015-04-18 09:00:00,0.0,1021.2875,175.88666669999998,72.12416667,8.480166667,3.640166667,238.0402597666667 -2015-04-18 10:00:00,0.0,1021.525,458.90833330000004,60.315,9.111666667,3.923333333,238.04020803333336 -2015-04-18 11:00:00,0.0,1021.65,424.0166666999999,55.28416667,10.0525,3.937583333,238.04028563333335 -2015-04-18 12:00:00,0.0,1021.4875,527.5083333,50.47,10.22833333,3.6289999999999996,238.04028563333335 -2015-04-18 13:00:00,0.0,1021.275,510.0,46.92833333,11.18166667,3.410333333,238.04107013333336 -2015-04-18 14:00:00,0.0,1020.8083330000001,552.0083333,46.44,11.90166667,2.902333333,238.04157503333332 -2015-04-18 15:00:00,0.0,1020.2375,491.33333330000005,44.35833333,12.53583333,2.403916667,238.0412721333333 -2015-04-18 16:00:00,0.0,1019.904167,350.675,42.35333333,12.73333333,2.6010000000000004,238.04104673333327 -2015-04-18 17:00:00,0.0,1019.4125,58.825,43.16166667,12.44166667,2.7206666669999997,238.04081886666665 -2015-04-18 18:00:00,0.0,1019.2458330000001,46.97,47.75166667,11.38833333,1.4835833330000001,238.04064026666666 -2015-04-18 19:00:00,0.0,1019.095833,8.875,70.04583333,7.442166667,0.033083333,238.0404149 -2015-04-18 20:00:00,0.0,1019.4,0.0,84.42416667,3.721916667,0.094166667,238.03995553333334 -2015-04-18 21:00:00,0.0,1019.5,0.0,89.95833333,2.217083333,0.045833333,238.03985330000003 -2015-04-18 22:00:00,0.0,1019.6625,0.0,91.85,0.8395,0.0,238.03993090000003 -2015-04-18 23:00:00,0.0,1019.6125,0.0,93.125,0.122916667,0.02825,238.04005776666668 -2015-04-19 00:00:00,0.0,1019.233333,0.0,95.15833333,-0.197833333,0.0,238.04000850000003 -2015-04-19 01:00:00,0.0,1018.6375,0.0,96.325,-0.8315,0.000916667,238.04003313333337 -2015-04-19 02:00:00,0.0,1017.970833,0.0,98.21666667,-1.3898333330000001,0.0,238.03998263333335 -2015-04-19 03:00:00,0.0,1017.6916669999999,0.0,99.475,-1.7355833330000001,0.0,238.03993090000003 -2015-04-19 04:00:00,0.0,1017.2875,0.0,99.99166667,-2.207583333,0.0,238.03980403333335 -2015-04-19 05:00:00,0.0,1017.15,5.101583333,100.0,-2.4925833330000002,0.0,238.0398299 -2015-04-19 06:00:00,0.0,1017.2541669999999,31.88333333,100.0,-1.0513333329999999,0.00033333300000000006,238.0397301333334 -2015-04-19 07:00:00,0.0,1017.5125,165.5008333,91.97166667,2.67975,0.03975,238.03973013333336 -2015-04-19 08:00:00,0.0,1017.595833,159.04166669999998,74.77916667,5.893083333,0.454583333,238.03985330000003 -2015-04-19 09:00:00,0.0,1017.5666669999999,306.05,64.13416667,8.694666667,0.690083333,238.03980403333335 -2015-04-19 10:00:00,0.0,1017.383333,474.475,49.5325,10.98166667,1.129916667,238.03973013333336 -2015-04-19 11:00:00,0.0,1017.220833,567.475,48.97083333,12.975,1.63125,238.03970550000005 -2015-04-19 12:00:00,0.0,1016.8375,626.7416667,45.38916667,13.83,1.5165,238.03970550000005 -2015-04-19 13:00:00,0.0,1016.545833,616.15,43.06416667,15.395,1.5018333330000002,238.03970550000005 -2015-04-19 14:00:00,0.0,1016.1625,569.9083333,39.76666667,16.0875,1.5450833330000002,238.03990503333333 -2015-04-19 15:00:00,0.0,1015.891667,491.79166669999995,40.37083333,16.76583333,1.082166667,238.03975476666673 -2015-04-19 16:00:00,0.0,1015.670833,356.25,38.60666667,17.06916667,1.3785833330000001,238.03973013333336 -2015-04-19 17:00:00,0.0,1015.666667,57.12666667,40.16083333,16.3725,1.903666667,238.03970550000005 -2015-04-19 18:00:00,0.0,1015.966667,47.55333333,41.13,14.9825,2.153083333,238.03965130000003 -2015-04-19 19:00:00,0.0,1016.6125,11.08791667,62.99083333,11.2475,0.8071666670000001,238.03960203333335 -2015-04-19 20:00:00,0.0,1016.9416669999999,0.0,77.5575,6.975333332999999,0.181333333,238.03947645000002 -2015-04-19 21:00:00,0.0,1017.695833,0.0,86.525,4.883416667,0.109833333,238.039325 -2015-04-19 22:00:00,0.0,1018.483333,0.0,91.0,3.5331666669999997,0.09758333300000001,238.03932499999996 -2015-04-19 23:00:00,0.0,1018.858333,0.0,93.63333333,2.678583333,0.0775,238.03932499999996 -2015-04-20 00:00:00,0.0,1019.158333,0.0,95.40833333,1.805083333,0.015166667,238.03940135000002 -2015-04-20 01:00:00,0.0,1019.391667,0.0,97.00833333,1.182916667,0.005416666999999999,238.03970550000005 -2015-04-20 02:00:00,0.0,1019.6916669999999,0.0,97.11666667,0.736583333,0.020416667,238.03965376666667 -2015-04-20 03:00:00,0.0,1019.854167,0.0,98.31666667,0.47600000000000003,0.035416667,238.03960203333335 -2015-04-20 04:00:00,0.0,1020.05,0.0,99.49166667,0.394166667,0.08075,238.03945183333335 -2015-04-20 05:00:00,0.0,1020.2,8.091416667,99.46666667,0.675666667,0.0,238.03937673333334 -2015-04-20 06:00:00,0.0,1020.929167,39.215,98.975,2.015333333,0.00625,238.0392745 -2015-04-20 07:00:00,0.0,1021.491667,180.5175,81.33333333,6.88175,0.051666667,238.03930036666668 -2015-04-20 08:00:00,0.0,1021.8,129.01,64.03083333,10.10333333,0.66675,238.0392474 -2015-04-20 09:00:00,0.0,1022.141667,327.9991667,57.84666667,11.81,2.08225,238.03917349999998 -2015-04-20 10:00:00,0.0,1022.454167,533.1583333000001,51.5575,13.82916667,2.5066666669999997,238.03922276666663 -2015-04-20 11:00:00,0.0,1022.3083330000001,599.05,47.2875,15.17083333,1.994083333,238.03922276666665 -2015-04-20 12:00:00,0.0,1022.075,626.7333332999999,44.8125,16.52916667,1.9058333330000001,238.03921931999997 -2015-04-20 13:00:00,0.0,1021.6875,622.3833333,39.47583333,17.56833333,3.256416667,238.03950231666667 -2015-04-20 14:00:00,0.0,1021.3708330000001,578.1166667,36.695,18.39583333,2.8835,238.03919813333334 -2015-04-20 15:00:00,0.0,1020.983333,495.325,35.8075,18.98583333,3.2560833330000003,238.03909960000001 -2015-04-20 16:00:00,0.0,1020.8625,350.125,38.33,19.025,3.3689166669999997,238.03902200000002 -2015-04-20 17:00:00,0.0,1020.625,59.07583333,40.38416667,18.6175,2.823666667,238.03891976666668 -2015-04-20 18:00:00,0.0,1020.904167,50.66166667,44.78833333,17.50833333,2.148916667,238.0387448666667 -2015-04-20 19:00:00,0.0,1021.554167,11.47,61.82583333,14.89,1.5263333330000002,238.038538 -2015-04-20 20:00:00,0.0,1022.275,0.0,82.89,10.165,0.502833333,238.03848629999996 -2015-04-20 21:00:00,0.0,1022.5375,0.0,85.30833333,7.814666667000001,0.201916667,238.03848629999996 -2015-04-20 22:00:00,0.0,1022.829167,0.0,89.31666667,6.082583333,0.069333333,238.03846166666665 -2015-04-20 23:00:00,0.0,1022.966667,0.0,92.11666667,4.7685833330000005,0.032166667,238.03833849999998 -2015-04-21 00:00:00,0.0,1023.204167,0.0,94.25,3.698,0.020583333,238.03836313333332 -2015-04-21 01:00:00,0.0,1023.3791669999999,0.0,95.79166667,2.919666667,0.025583333,238.03841239999997 -2015-04-21 02:00:00,0.0,1023.695833,0.0,96.9,2.38525,0.07,238.03828676666663 -2015-04-21 03:00:00,0.0,1023.783333,0.0,98.20833333,1.83125,0.024833333,238.03831263333333 -2015-04-21 04:00:00,0.0,1023.858333,0.0,99.1,1.287833333,0.028666667000000003,238.03833849999998 -2015-04-21 05:00:00,0.0,1023.9958330000001,7.68175,99.96666667,0.884,0.01175,238.03828676666663 -2015-04-21 06:00:00,0.0,1024.454167,37.605,99.44166667,2.514916667,0.040583333,238.03826089999998 -2015-04-21 07:00:00,0.0,1024.916667,177.1058333,85.85833333,6.822166667,0.10116666699999999,238.03833849999998 -2015-04-21 08:00:00,0.0,1025.395833,129.24916670000002,65.42166667,11.3975,0.4925,238.03846166666662 -2015-04-21 09:00:00,0.0,1025.45,327.835,57.70416667,14.05,0.9045833329999999,238.03838776666666 -2015-04-21 10:00:00,0.0,1025.479167,539.975,40.90166667,16.22666667,0.892916667,238.03833849999998 -2015-04-21 11:00:00,0.0,1025.470833,604.9833332999999,34.68416667,18.2075,1.069583333,238.03833849999998 -2015-04-21 12:00:00,0.0,1024.795833,640.4916667,29.66,20.49916667,0.8625,238.03833849999998 -2015-04-21 13:00:00,0.0,1024.141667,631.1666667000001,26.94833333,21.8125,1.104333333,238.03833849999998 -2015-04-21 14:00:00,0.0,1023.425,582.5083333,27.56083333,22.9875,1.3898333330000001,238.03833849999998 -2015-04-21 15:00:00,0.0,1022.875,498.40833330000004,28.345,23.895,1.692666667,238.03833849999998 -2015-04-21 16:00:00,0.0,1022.516667,361.37,22.74916667,24.00083333,2.546916667,238.03831263333333 -2015-04-21 17:00:00,0.0,1022.25,55.56583333,27.65916667,22.50083333,3.3290833330000003,238.03818453333338 -2015-04-21 18:00:00,0.0,1022.4375,48.93,31.66083333,20.11083333,2.854666667,238.0380355 -2015-04-21 19:00:00,0.0,1022.791667,11.75525,47.89666667,15.54,0.523833333,238.03795790000004 -2015-04-21 20:00:00,0.0,1023.295833,0.008916667,71.20083333,11.03833333,0.29941666699999997,238.03788030000007 -2015-04-21 21:00:00,0.0,1023.654167,0.0,75.4725,8.0925,0.13225,238.03788030000007 -2015-04-21 22:00:00,0.0,1024.058333,0.0,84.15833333,7.113666667,0.145666667,238.03788030000007 -2015-04-21 23:00:00,0.0,1023.9875,0.0,87.89166667,6.9635,0.396083333,238.03788030000007 -2015-04-22 00:00:00,0.0,1023.9958330000001,0.0,89.21666667,5.4916666670000005,0.064666667,238.03788030000007 -2015-04-22 01:00:00,0.0,1023.575,0.0,93.05,4.571583333,0.09525,238.0377817666667 -2015-04-22 02:00:00,0.0,1023.233333,0.0,94.43333333,3.1974166669999997,0.072333333,238.03773250000003 -2015-04-22 03:00:00,0.0,1023.166667,0.0,96.6,2.2168333330000003,0.14225,238.03773250000003 -2015-04-22 04:00:00,0.0,1022.825,0.0,97.75833333,1.555166667,0.009416667,238.0377817666667 -2015-04-22 05:00:00,0.0,1022.829167,6.57675,98.25833333,0.686083333,0.012333333,238.03775713333334 -2015-04-22 06:00:00,0.0,1022.679167,36.86583333,97.43333333,2.655583333,0.165416667,238.03785566666673 -2015-04-22 07:00:00,0.0,1022.916667,197.46333330000002,83.86083333,6.242999999999999,2.25275,238.03788030000007 -2015-04-22 08:00:00,0.0,1022.7125,130.8658333,73.645,7.766166667,1.4385833330000002,238.03793203333336 -2015-04-22 09:00:00,0.0,1022.3791669999999,346.4541667,64.49,9.89,0.7546666670000001,238.03800963333336 -2015-04-22 10:00:00,0.0,1021.7875,548.8166667,55.76416667,11.88583333,1.498666667,238.03790616666674 -2015-04-22 11:00:00,0.0,1021.0041669999999,609.3416667,50.81416667,13.35416667,2.534916667,238.03788030000007 -2015-04-22 12:00:00,0.0,1020.3083330000001,539.8916667000001,51.08416667,14.2775,3.05275,238.03788030000007 -2015-04-22 13:00:00,0.0,1020.116667,622.5916667,58.6675,12.79583333,5.60725,238.03788030000007 -2015-04-22 14:00:00,0.0,1020.075,519.5833333,59.60333333,12.7225,4.892166667,238.0378310333334 -2015-04-22 15:00:00,0.0,1019.945833,431.65833330000004,58.235,12.43083333,4.873166667,238.03775713333334 -2015-04-22 16:00:00,0.0,1019.7875,367.9,54.935,12.24333333,3.443083333,238.03773250000003 -2015-04-22 17:00:00,0.0,1019.283333,72.29833333,57.54916667,12.25583333,2.584666667,238.03773250000003 -2015-04-22 18:00:00,0.0,1019.020833,53.99833333,59.95833333,11.68916667,2.1045833330000003,238.03770663333333 -2015-04-22 19:00:00,0.0,1019.0583330000001,9.02625,76.18833333,9.264083333,0.3005,238.03757730000004 -2015-04-22 20:00:00,0.0,1018.95,0.022083332999999997,87.38333333,5.577666667000001,0.11491666699999999,238.03750345000003 -2015-04-22 21:00:00,0.0,1018.9958330000001,0.0,92.38333333,4.2373333330000005,0.023416667000000002,238.03747883333335 -2015-04-22 22:00:00,0.0,1018.7625,0.0,92.83333333,4.40175,0.012666667,238.03757730000004 -2015-04-22 23:00:00,0.0,1018.479167,0.0,95.43333333,3.27725,0.010166666999999999,238.03757730000004 -2015-04-23 00:00:00,0.0,1018.354167,0.0,97.86666667,2.1968333330000003,0.00033333300000000006,238.03757730000004 -2015-04-23 01:00:00,0.0,1017.895833,0.0,98.75833333,2.614666667,0.013833333,238.03757730000004 -2015-04-23 02:00:00,0.0,1017.375,0.0,99.0,2.537083333,0.0,238.03757730000004 -2015-04-23 03:00:00,0.0,1016.7375,0.0,99.94166667,0.8125,0.0,238.03757855000003 -2015-04-23 04:00:00,0.0,1016.25,0.009416667,100.0,0.03475,0.0,238.03755268333336 -2015-04-23 05:00:00,0.0,1015.795833,7.394166667,100.0,-0.33883333299999996,0.013999999999999999,238.03757730000004 -2015-04-23 06:00:00,0.0,1015.791667,47.16333333,100.0,1.289666667,0.022083332999999997,238.03757730000004 -2015-04-23 07:00:00,0.0,1015.966667,192.985,89.27833333,4.9814166669999995,0.062583333,238.03757730000004 -2015-04-23 08:00:00,0.0,1015.7875,140.46,78.19833333,8.38425,0.62975,238.03773250000003 -2015-04-23 09:00:00,0.0,1015.725,347.95,73.87166667,10.38583333,0.907333333,238.03775713333334 -2015-04-23 10:00:00,0.0,1015.366667,539.6833333,62.99166667,12.99,1.315,238.03775713333334 -2015-04-23 11:00:00,0.0,1014.8708330000001,595.1083332999999,57.72833333,14.22083333,1.3024166670000001,238.03775713333334 -2015-04-23 12:00:00,0.0,1014.141667,561.2333332999999,57.3675,15.60416667,0.928583333,238.03765366666673 -2015-04-23 13:00:00,0.0,1013.541667,609.3583332999999,51.4825,15.84666667,1.185583333,238.03757730000004 -2015-04-23 14:00:00,0.0,1012.8,579.15,45.84,17.04666667,1.102666667,238.03757730000004 -2015-04-23 15:00:00,0.0,1012.179167,499.15833330000004,43.78666667,17.7525,1.065583333,238.03757730000004 -2015-04-23 16:00:00,0.0,1011.8875,355.1333333,41.78083333,18.525,1.035083333,238.03757730000004 -2015-04-23 17:00:00,0.0,1011.3,65.83083333,43.32166667,17.7625,0.8765,238.03757730000004 -2015-04-23 18:00:00,0.0,1011.1291669999999,53.94083333,45.91666667,15.745,1.2425,238.03755268333336 -2015-04-23 19:00:00,0.0,1011.3791669999999,10.05983333,71.98333333,11.87583333,0.40416666700000003,238.0374296 -2015-04-23 20:00:00,0.0,1011.4333330000001,0.023,85.09666667,8.788333332999999,0.178583333,238.0374296 -2015-04-23 21:00:00,0.0,1011.404167,0.0,90.21666667,6.39525,0.1235,238.03735199999997 -2015-04-23 22:00:00,0.0,1011.4416669999999,0.0,94.375,5.398166667000001,0.068416667,238.03727440000003 -2015-04-23 23:00:00,0.0,1011.516667,0.0,96.0,4.803583333,0.07825,238.03727440000003 -2015-04-24 00:00:00,0.0,1011.429167,0.0,96.76666667,3.731666667,0.05875,238.03727440000003 -2015-04-24 01:00:00,0.0,1011.041667,0.0,96.08333333,2.6709166669999997,0.003166667,238.03730026666668 -2015-04-24 02:00:00,0.0,1010.958333,0.0,98.85,1.9778333330000002,0.01925,238.03730026666668 -2015-04-24 03:00:00,0.0,1010.9333330000001,0.0,99.85,1.287833333,0.00275,238.03732613333332 -2015-04-24 04:00:00,0.0,1010.9,0.024916667000000003,100.0,0.687583333,0.0,238.03732613333332 -2015-04-24 05:00:00,0.0,1010.741667,8.568166667,100.0,0.40966666700000004,0.0,238.03740373333335 -2015-04-24 06:00:00,0.0,1010.970833,54.7475,100.0,2.2984166669999997,0.004166667,238.0374296 -2015-04-24 07:00:00,0.0,1011.216667,213.05833330000002,86.3975,6.571833333,0.33399999999999996,238.03727440000003 -2015-04-24 08:00:00,0.0,1011.016667,131.725,75.6425,10.39,0.875916667,238.0374296 -2015-04-24 09:00:00,0.0,1010.7375,349.2675,62.35,14.27416667,1.18875,238.0374296 -2015-04-24 10:00:00,0.0,1010.591667,539.3583332999999,52.16666667,16.01,2.011916667,238.0374296 -2015-04-24 11:00:00,0.0,1010.020833,605.2666667000001,44.07666667,18.0481524,2.24725,238.0374296 -2015-04-24 12:00:00,0.0,1009.541667,638.225,37.58083333,18.86666667,2.65725,238.03732613333332 -2015-04-24 13:00:00,0.0,1008.9333330000001,626.1833333,38.52666667,19.70583333,2.095916667,238.03724853333335 -2015-04-24 14:00:00,0.0,1008.5041669999999,568.7666667000001,38.38,21.2175,1.158833333,238.03704530000002 -2015-04-24 15:00:00,0.0,1007.716667,483.475,36.64,21.26831193,0.943583333,238.0369184333333 -2015-04-24 16:00:00,0.0,1007.204167,350.7083333,35.9225,22.01416667,0.93425,238.03671645 -2015-04-24 17:00:00,0.0,1006.6833330000001,79.1025,35.34166667,21.87166667,0.504583333,238.03631253333333 -2015-04-24 18:00:00,0.0,1006.545833,47.64333333,43.99916667,19.80916667,0.6499166670000001,238.03618566666668 -2015-04-24 19:00:00,0.0,1006.5,8.9805,54.71916667,16.00083333,1.0493333329999999,238.03590606666663 -2015-04-24 20:00:00,0.0,1006.458333,0.007083333000000001,58.105,14.09916667,1.62375,238.0356290166667 -2015-04-24 21:00:00,0.0,1006.520833,0.0,61.74583333,15.53083333,1.076083333,238.0354763 -2015-04-24 22:00:00,0.0,1006.4125,0.0,69.93583333,10.20833333,0.33325,238.03550216666667 -2015-04-24 23:00:00,0.0,1006.491667,0.0,85.59833333,7.75675,0.213,238.03539993333334 -2015-04-25 00:00:00,0.0,1006.325,0.0,92.375,5.939416667000001,0.02025,238.0353506666667 -2015-04-25 01:00:00,0.0,1005.904167,0.0,95.575,4.746416667,0.0,238.03509693333334 -2015-04-25 02:00:00,0.0,1005.6875,0.0,97.51666667,4.108166667,0.00175,238.03456736666666 -2015-04-25 03:00:00,0.0,1005.358333,0.0,98.69166667,4.158166667,0.0,238.03439249999997 -2015-04-25 04:00:00,0.0,1005.1,0.005166667,98.86666667,5.221416667,0.0,238.03436416666668 -2015-04-25 05:00:00,0.0,1005.083333,5.085083333,98.68333333,5.732083332999999,0.0,238.0343149 -2015-04-25 06:00:00,0.0,1005.016667,47.26916667,96.91666667,6.992583333,0.000166667,238.03393183333333 -2015-04-25 07:00:00,0.0,1005.079167,84.09083333,88.31666667,8.9825,0.00125,238.03377909999998 -2015-04-25 08:00:00,0.0,1005.4958330000001,117.29166670000001,82.37083333,10.53166667,0.36108333299999995,238.0335784166667 -2015-04-25 09:00:00,0.0,1005.583333,160.94166669999998,72.02166667,12.04416667,0.36641666700000003,238.03337643333336 -2015-04-25 10:00:00,0.0,1005.741667,212.91666669999998,76.7575,13.42166667,0.753916667,238.03565360000002 -2015-04-25 11:00:00,2.648229504,1005.583333,255.7333333,87.1,14.38916667,0.825416667,238.03464250000002 -2015-04-25 12:00:00,0.0,1005.2125,343.9416667,78.45916667,16.09833333,0.637,238.03408456666668 -2015-04-25 13:00:00,0.0,1004.6833330000001,65.50833333,78.73333333,15.4075,0.62775,238.03388135 -2015-04-25 14:00:00,0.0,1004.6291669999999,115.28916670000001,87.075,14.70333333,0.212666667,238.03322493333334 -2015-04-25 15:00:00,0.0,1004.070833,242.43333330000002,78.37833333,15.8825,1.6414166669999999,238.0330254 -2015-04-25 16:00:00,0.0,1004.0583330000001,121.195,83.87083333,15.92166667,1.40475,238.0326916833333 -2015-04-25 17:00:00,0.0,1004.095833,42.2975,86.10833333,15.33083333,0.729916667,238.03297123333334 -2015-04-25 18:00:00,19.77500906,1004.158333,37.935,94.075,13.69416667,0.29233333300000003,238.03236406666664 -2015-04-25 19:00:00,0.0,1004.45,5.3065,98.23333333,12.88833333,0.313583333,238.03198471666664 -2015-04-25 20:00:00,0.0,1004.779167,0.013583333000000001,99.99166667,11.96333333,0.145,238.0315549333333 -2015-04-25 21:00:00,2.44198608,1004.854167,0.0,100.0,10.10166667,0.237833333,238.03137386666666 -2015-04-25 22:00:00,0.0,1004.8125,0.0,100.0,8.118416667,0.02675,238.0311226 -2015-04-25 23:00:00,0.0,1004.795833,0.0,100.0,6.832666667000001,0.055833333,238.03084549999997 -2015-04-26 00:00:00,0.0,1005.054167,0.0,100.0,6.1395,0.004083333,238.03059306666668 -2015-04-26 01:00:00,0.0,1004.829167,0.0,100.0,5.6015,0.0019166670000000002,238.0306928 -2015-04-26 02:00:00,0.0,1004.5666669999999,0.0,100.0,5.879416667,0.0,238.03069283333332 -2015-04-26 03:00:00,0.0,1004.258333,0.0,100.0,6.706416667,0.032666667,238.0302642 -2015-04-26 04:00:00,0.0,1003.954167,0.017833333,100.0,7.717166667000001,0.042166667000000005,238.02998215000002 -2015-04-26 05:00:00,0.0,1004.020833,6.406000000000001,100.0,7.955416667000001,0.035083333,238.03026421666664 -2015-04-26 06:00:00,0.0,1004.008333,37.02416667,99.78333333,8.915833333,0.013999999999999999,238.02960406666662 -2015-04-26 07:00:00,0.0,1004.070833,111.685,92.63333333,11.2025,0.191083333,238.0289981 -2015-04-26 08:00:00,0.0,1004.083333,126.375,88.38333333,13.46333333,0.569333333,238.0287432 -2015-04-26 09:00:00,0.0,1004.025,329.96666669999996,83.55,15.21166667,0.8211666670000001,238.02858926666667 -2015-04-26 10:00:00,0.0,1003.991667,359.8333333,80.84666667,16.46,1.01125,238.02836263333333 -2015-04-26 11:00:00,0.0,1003.55,364.975,75.49833333,17.4775,0.842333333,238.02788356666665 -2015-04-26 12:00:00,0.0,1002.954167,321.0,80.68166667,16.52833333,2.443833333,238.0279587 -2015-04-26 13:00:00,0.0,1002.591667,297.1166667,79.105,16.8175,2.594166667,238.02742786666667 -2015-04-26 14:00:00,0.0,1002.029167,375.8166667,73.09583333,18.2625,1.9570833330000001,238.02783181666666 -2015-04-26 15:00:00,0.0,1001.45,426.425,65.11166667,19.88916667,1.181333333,238.02747836666666 -2015-04-26 16:00:00,0.0,1000.583333,277.3666667,58.14666667,20.28583333,1.108833333,238.02689585 -2015-04-26 17:00:00,0.0,999.9291667000001,126.40833329999998,57.94333333,19.94833333,0.778166667,238.02636500000003 -2015-04-26 18:00:00,0.0,999.7458332999998,52.56916667,68.64166667,17.52166667,1.64925,238.02646723333336 -2015-04-26 19:00:00,0.0,999.6125,7.434666667,79.72083333,14.65416667,1.1158333329999999,238.02674436666666 -2015-04-26 20:00:00,0.0,999.5666667000002,0.025333333,92.95,12.43083333,0.130583333,238.02585514999998 -2015-04-26 21:00:00,0.0,999.2166667000001,0.0,95.86666667,12.70833333,0.144666667,238.02567903333332 -2015-04-26 22:00:00,2.484376512,998.925,0.0,96.81666667,13.16833333,0.325833333,238.02530089999996 -2015-04-26 23:00:00,46.98794635,999.1458332999998,0.0,99.71666667,13.2475,0.44191666700000004,238.02572953333333 -2015-04-27 00:00:00,4.847744688,998.275,0.0,100.0,12.70166667,0.3415,238.0254277833333 -2015-04-27 01:00:00,66.6145991,997.7291667000002,0.0,100.0,12.30916667,0.8105,238.02448930000003 -2015-04-27 02:00:00,25.79942064,997.0083332999999,0.0,100.0,12.00083333,0.613583333,238.02477136666667 -2015-04-27 03:00:00,0.0,996.8208332999999,0.0,100.0,11.78666667,0.068583333,238.0248711 -2015-04-27 04:00:00,0.0,996.5333332999999,0.0,100.0,11.68666667,0.2605,238.02451516666665 -2015-04-27 05:00:00,0.0,996.5791667000001,1.338333333,100.0,11.65666667,0.1315,238.0238329 -2015-04-27 06:00:00,7.733187984,996.9458332999999,10.02641667,100.0,11.84833333,0.594916667,238.0234042666667 -2015-04-27 07:00:00,20.51846239,997.4791667000002,45.20833333,100.0,11.85416667,1.7085,238.02324910000002 -2015-04-27 08:00:00,5.426072952,998.0375,59.78166667,99.70833333,11.88416667,1.141916667,238.02302006666665 -2015-04-27 09:00:00,2.6305973999999996,998.5625,65.04583333,99.35,12.40583333,2.14375,238.02266656666663 -2015-04-27 10:00:00,0.0,998.9625,92.99833333,98.625,12.44666667,3.021833333,238.02243993333332 -2015-04-27 11:00:00,7.485700512,999.3625,95.42333333,95.575,12.32083333,3.0639999999999996,238.0224399333334 -2015-04-27 12:00:00,43.51011948,999.4875,95.78166667,97.1,11.715,2.6196666669999997,238.02195964999999 -2015-04-27 13:00:00,40.969178899999996,999.8125,93.3475,98.81666667,11.20833333,2.832083333,238.0217047 -2015-04-27 14:00:00,43.46365327,1000.033333,70.86083333,99.325,10.805,3.248416667, -2015-04-27 15:00:00,55.70725212,1000.5,57.09583333,99.39166667,9.703333333,3.742916667, -2015-04-27 16:00:00,22.83053254,1000.708333,67.8125,99.75833333,8.835,3.605, -2015-04-27 17:00:00,3.494851488,1001.079167,44.78916667,97.60833333,8.348333333,3.915, -2015-04-27 18:00:00,7.1635064879999995,1001.1833330000001,18.52833333,98.20833333,7.981083333,3.1516666669999998, -2015-04-27 19:00:00,3.79400676,1001.658333,4.177,98.3,7.643583333,3.1615, -2015-04-27 20:00:00,0.0,1002.3,0.0,96.74166667,7.206833333,3.1010000000000004, -2015-04-27 21:00:00,0.0,1002.766667,0.0,94.79166667,7.07125,2.964416667, -2015-04-27 22:00:00,0.0,1002.979167,0.0,92.35,7.147,2.9, -2015-04-27 23:00:00,0.0,1003.391667,0.0,92.06666667,7.14,2.388416667, -2015-04-28 00:00:00,0.0,1003.829167,0.0,92.33333333,7.099583332999999,2.4185, -2015-04-28 01:00:00,0.0,1003.954167,0.0,88.26666667,7.07625,2.743583333, -2015-04-28 02:00:00,0.0,1004.4875,0.0,87.625,6.841,2.475166667, -2015-04-28 03:00:00,0.0,1004.7458330000001,0.0,89.30833333,6.4535,2.42225, -2015-04-28 04:00:00,0.0,1005.25,0.02725,91.99166667,6.3085,1.8419166669999998, -2015-04-28 05:00:00,0.0,1005.908333,7.476666667000001,93.83333333,5.714416667,1.652166667, -2015-04-28 06:00:00,0.0,1007.033333,80.93083333,94.03333333,5.614833332999999,1.732833333, -2015-04-28 07:00:00,0.0,1008.175,210.58333330000002,86.90833333,6.761916667,1.9518333330000002, -2015-04-28 08:00:00,0.0,1008.970833,147.88166669999998,77.74583333,8.226,2.272416667, -2015-04-28 09:00:00,0.0,1009.458333,324.525,69.2875,9.375833333,3.584916667, -2015-04-28 10:00:00,0.0,1010.170833,470.65833330000004,62.90166667,10.18833333,3.3815, -2015-04-28 11:00:00,0.0,1010.85,583.5,56.45166667,11.0525,2.1855, -2015-04-28 12:00:00,0.0,1011.104167,524.6833333000001,48.09916667,11.91083333,2.365583333, -2015-04-28 13:00:00,0.0,1011.570833,618.275,48.3425,12.35416667,2.83575, -2015-04-28 14:00:00,0.0,1011.804167,290.875,52.12,12.55583333,1.555916667, -2015-04-28 15:00:00,0.0,1011.9875,287.25,52.4075,13.16,2.35775, -2015-04-28 16:00:00,0.0,1012.470833,270.9625,51.54083333,12.69166667,2.719833333, -2015-04-28 17:00:00,0.0,1013.375,102.8425,53.58333333,11.75416667,2.274666667, -2015-04-28 18:00:00,0.0,1013.833333,63.95583333,51.75833333,11.595,1.882916667, -2015-04-28 19:00:00,0.0,1014.6375,14.55891667,55.03166667,9.805,1.00625, -2015-04-28 20:00:00,0.0,1015.4416669999999,0.09908333300000001,87.85083333,5.93275,0.064416667, -2015-04-28 21:00:00,0.0,1015.929167,0.0,94.68333333,3.573666667,0.147416667, -2015-04-28 22:00:00,0.0,1016.1916669999999,0.0,97.125,2.392833333,0.11716666699999999, -2015-04-28 23:00:00,0.0,1016.541667,0.0,98.65833333,1.637583333,0.078, -2015-04-29 00:00:00,0.0,1016.6833330000001,0.0,99.925,0.413083333,0.000833333, -2015-04-29 01:00:00,0.0,1016.4625,0.0,100.0,-0.069333333,0.0, -2015-04-29 02:00:00,0.0,1016.429167,0.0,100.0,-0.529083333,0.0, -2015-04-29 03:00:00,0.0,1016.366667,0.0,100.0,-0.951333333,0.0, -2015-04-29 04:00:00,0.0,1016.35,0.149833333,100.0,-1.2429999999999999,0.0, -2015-04-29 05:00:00,0.0,1016.345833,12.52683333,100.0,-1.40775,0.008083333, -2015-04-29 06:00:00,0.0,1016.3791669999999,82.00833333,99.81666667,0.4755,0.00225, -2015-04-29 07:00:00,0.0,1016.358333,212.45,91.96666667,2.3695,0.331833333, -2015-04-29 08:00:00,0.0,1016.3625,161.8,86.24166667,5.159166667,0.503583333, -2015-04-29 09:00:00,0.0,1016.158333,342.0583333,77.81666667,8.317416667,0.548416667, -2015-04-29 10:00:00,0.0,1015.5875,463.00833330000006,63.455,11.95,2.304083333, -2015-04-29 11:00:00,0.0,1014.8791669999999,479.4,50.46916667,13.05916667,2.129, -2015-04-29 12:00:00,0.0,1013.983333,619.4416667,47.68333333,13.80166667,2.540916667, -2015-04-29 13:00:00,0.0,1013.1875,514.8333333,46.36833333,14.29916667,2.331666667, -2015-04-29 14:00:00,0.0,1012.375,418.3916667,45.33833333,14.315,2.2825833330000003, -2015-04-29 15:00:00,0.0,1011.758333,451.9,44.47166667,15.15666667,1.807166667, -2015-04-29 16:00:00,0.0,1011.145833,221.2583333,44.29583333,14.77666667,1.183166667, -2015-04-29 17:00:00,0.0,1010.954167,117.8,47.67416667,14.46583333,0.46683333299999996, -2015-04-29 18:00:00,0.0,1010.591667,58.62833333,58.0475,13.47166667,0.197833333, -2015-04-29 19:00:00,0.0,1010.458333,5.852583332999999,83.135,10.58333333,0.054000000000000006, -2015-04-29 20:00:00,0.0,1010.466667,0.062083333,88.38333333,8.028416667,0.131083333, -2015-04-29 21:00:00,0.0,1010.4416669999999,0.0,88.36666667,6.8205,0.083583333, -2015-04-29 22:00:00,0.0,1010.483333,0.0,92.55833333,6.2975833329999995,0.01275, -2015-04-29 23:00:00,0.0,1010.291667,0.0,96.7,5.927416667,0.011916666999999999, -2015-04-30 00:00:00,0.0,1010.3708330000001,0.0,92.675,5.702583333,0.0, -2015-04-30 01:00:00,0.0,1010.2458330000001,0.0,91.71666667,5.0735,0.009083333, -2015-04-30 02:00:00,0.0,1010.145833,0.0,91.8,4.582833333,0.0, -2015-04-30 03:00:00,0.0,1009.8,0.0,98.4,3.677666667,0.012, -2015-04-30 04:00:00,0.0,1009.783333,0.09625,84.05833333,2.609666667,0.0, -2015-04-30 05:00:00,0.0,1010.075,11.39333333,80.45916667,1.983416667,0.00033333300000000006, -2015-04-30 06:00:00,0.0,1010.416667,51.46833333,80.41,4.677083333,0.049916667000000005, -2015-04-30 07:00:00,0.0,1010.55,241.45,76.16916667,9.494166667,0.512833333, -2015-04-30 08:00:00,0.0,1010.329167,193.4916667,71.985,11.415,0.6599166670000001, -2015-04-30 09:00:00,0.0,1010.329167,355.7583333,68.70083333,12.305,0.818333333, -2015-04-30 10:00:00,0.0,1009.9,391.0666667,65.38916667,13.4525,1.165333333, -2015-04-30 11:00:00,0.0,1009.5041669999999,303.45,69.5125,13.20416667,1.159166667, -2015-04-30 12:00:00,10.70816717,1008.966667,462.3166666999999,82.9975,12.4375,1.220333333, -2015-04-30 13:00:00,0.0,1008.033333,363.075,71.16333333,14.59083333,1.414333333, -2015-04-30 14:00:00,19.32890287,1007.6208330000001,168.3558333,80.32166667,12.9725,1.3385833329999999, -2015-04-30 15:00:00,24.91778179,1007.795833,127.84166670000002,92.60833333,9.864670826000001,0.9341666670000001, -2015-04-30 16:00:00,5.143530456000001,1007.4125,111.59083329999999,91.85833333,10.51833333,0.695, -2015-04-30 17:00:00,10.12546034,1007.3166669999999,67.12416667,91.725,10.29833333,0.67125, -2015-04-30 18:00:00,15.37322321,1007.195833,45.36,94.55833333,9.476666667,0.665333333, -2015-04-30 19:00:00,0.0,1007.141667,7.2425,93.85,8.911666667,0.532166667, -2015-04-30 20:00:00,0.0,1007.079167,0.11458333300000001,93.925,8.500833333,0.3535, -2015-04-30 21:00:00,7.348265616,1006.679167,0.0,96.8,8.177833332999999,0.28300000000000003, -2015-04-30 22:00:00,7.445890296,1006.529167,0.0,98.98333333,7.3281666670000005,0.5165833329999999, -2015-04-30 23:00:00,7.488915887999999,1006.3708330000001,0.0,99.675,7.046333333,0.18766666699999998, -2015-01-05 00:00:00,2.4348701040000003,1006.175,0.0,100.0,5.7190833329999995,0.1375, -2015-01-05 01:00:00,0.0,1005.8625,0.0,100.0,4.918666667,0.18833333300000002, -2015-01-05 02:00:00,0.0,1005.420833,0.0,100.0,4.887833333000001,0.251416667, -2015-01-05 03:00:00,0.0,1005.3791669999999,0.0,100.0,4.394083333,0.278333333, -2015-01-05 04:00:00,0.0,1005.133333,0.147,100.0,5.301,0.092, -2015-01-05 05:00:00,2.409616224,1004.854167,14.63658333,100.0,5.4589166670000004,0.178416667, -2015-01-05 06:00:00,0.0,1005.020833,68.20666667,98.44166667,5.6260833329999995,0.391083333, -2015-01-05 07:00:00,0.0,1004.85,138.1416667,94.15,6.36075,0.5934166670000001, -2015-01-05 08:00:00,0.0,1004.716667,152.1,93.525,6.387916667000001,0.93525, -2015-01-05 09:00:00,0.0,1004.645833,201.8583333,93.58333333,7.122833332999999,1.056, -2015-01-05 10:00:00,0.0,1004.570833,244.0333333,90.8,7.684,0.963, -2015-01-05 11:00:00,0.0,1004.275,327.2333333,88.79166667,8.71475,1.024916667, -2015-01-05 12:00:00,0.0,1004.166667,433.04166669999995,75.42,10.71916667,0.7406666670000001, -2015-01-05 13:00:00,0.0,1003.520833,425.00833330000006,61.9,12.18416667,0.946666667, -2015-01-05 14:00:00,0.0,1003.2625,239.45,59.525,12.17083333,1.002666667, -2015-01-05 15:00:00,0.0,1002.75,180.9083333,52.38,12.00833333,0.5575, -2015-01-05 16:00:00,0.0,1002.3166669999999,133.96666670000002,52.92333333,11.965,0.46883333299999996, -2015-01-05 17:00:00,0.0,1002.05,95.46,57.97916667,11.81416667,0.269083333, -2015-01-05 18:00:00,0.0,1001.8708330000001,77.6575,60.4225,11.85,0.261, -2015-01-05 19:00:00,0.0,1001.925,18.734,80.43916667,10.10333333,0.10383333300000001, -2015-01-05 20:00:00,0.0,1002.2541669999999,0.21,96.31666667,6.8095,0.22175, -2015-01-05 21:00:00,0.0,1002.625,0.0,98.2,5.084333333,0.022583332999999997, -2015-01-05 22:00:00,0.0,1003.483333,0.0,99.55833333,4.212416667,0.11433333300000001, -2015-01-05 23:00:00,0.0,1003.991667,0.0,100.0,3.21125,0.019583333, -2015-02-05 00:00:00,0.0,1004.454167,0.0,100.0,2.58275,0.02875, -2015-02-05 01:00:00,0.0,1004.841667,0.0,100.0,2.8336666669999997,0.00275, -2015-02-05 02:00:00,0.0,1004.85,0.0,100.0,2.13975,0.0, -2015-02-05 03:00:00,0.0,1005.125,0.0,100.0,0.909833333,0.0, -2015-02-05 04:00:00,0.0,1005.666667,0.265833333,100.0,0.42916666700000006,0.0, -2015-02-05 05:00:00,0.0,1006.258333,14.60266667,100.0,0.34816666700000004,0.00041666699999999996, -2015-02-05 06:00:00,0.0,1007.283333,97.39833333,99.725,2.5931666669999998,0.274416667, -2015-02-05 07:00:00,0.0,1007.75,237.925,85.9725,5.8455,0.5565, -2015-02-05 08:00:00,0.0,1008.1625,130.61416670000003,72.41166667,8.830166667,0.765916667, -2015-02-05 09:00:00,0.0,1008.108333,351.5033333,68.55166667,11.08416667,0.9291666670000001, -2015-02-05 10:00:00,0.0,1007.866667,503.9833333000001,59.5575,13.57,1.062583333, -2015-02-05 11:00:00,0.0,1007.845833,318.15,57.91583333,14.57916667,0.97025, -2015-02-05 12:00:00,0.0,1007.758333,372.55,52.1375,15.07,0.796583333, -2015-02-05 13:00:00,0.0,1007.533333,356.8666667,53.9025,15.455,0.9560833329999999, -2015-02-05 14:00:00,0.0,1007.329167,387.475,47.8375,16.01083333,0.784416667, -2015-02-05 15:00:00,0.0,1006.895833,357.1416667,49.8975,15.8775,1.101333333, -2015-02-05 16:00:00,0.0,1006.6208330000001,122.45833329999999,53.56333333,15.355,1.1643333329999999, -2015-02-05 17:00:00,0.0,1006.266667,103.0166667,52.40166667,14.97333333,0.939583333, -2015-02-05 18:00:00,0.0,1006.133333,60.25083333,59.4,14.52416667,0.24975, -2015-02-05 19:00:00,0.0,1006.05,11.75591667,77.085,12.865,0.1695, -2015-02-05 20:00:00,0.0,1006.108333,0.131916667,92.63333333,9.459166667,0.15, -2015-02-05 21:00:00,0.0,1006.079167,0.0,96.54166667,7.250833332999999,0.08966666699999999, -2015-02-05 22:00:00,0.0,1005.75,0.0,97.24166667,6.6075,0.011666667, -2015-02-05 23:00:00,0.0,1005.4416669999999,0.0,99.375,6.233916667000001,0.0, -2015-03-05 00:00:00,0.0,1004.741667,0.0,99.55833333,6.7816666670000005,0.007833333,238.018986 -2015-03-05 01:00:00,0.0,1003.8875,0.0,98.95,7.305916667000001,0.0,238.018986 -2015-03-05 02:00:00,0.0,1003.241667,0.0,99.00833333,7.306833332999999,0.03425,238.019986 -2015-03-05 03:00:00,0.0,1003.045833,0.0,99.075,7.8389999999999995,0.016666667,238.021336 -2015-03-05 04:00:00,0.0,1002.616667,0.070916667,99.625,8.04625,0.03575,238.020986 -2015-03-05 05:00:00,0.0,1002.466667,4.625333333,99.81666667,8.2425,0.000833333,238.02168599999996 -2015-03-05 06:00:00,0.0,1002.166667,25.85083333,96.71666667,8.735,0.06433333299999999,238.02168599999996 -2015-03-05 07:00:00,0.0,1002.483333,55.05333333,94.75,9.8875,0.11608333300000001,238.02273599999998 -2015-03-05 08:00:00,0.0,1002.2541669999999,100.8891667,95.14166667,10.80083333,0.3045,238.02238599999995 -2015-03-05 09:00:00,0.0,1001.8791669999999,148.7166667,94.84166667,11.955,1.329083333,238.02308599999995 -2015-03-05 10:00:00,0.0,1001.608333,168.2333333,94.575,12.53166667,2.021,238.02308599999995 -2015-03-05 11:00:00,0.0,1001.345833,203.8916667,91.35833333,13.74583333,2.193333333,238.02376933333332 -2015-03-05 12:00:00,0.0,1001.4416669999999,315.65,89.79166667,15.03833333,2.088,238.02478599999998 -2015-03-05 13:00:00,0.0,1001.0666669999999,113.865,87.50833333,15.58916667,1.891666667,238.0248193333333 -2015-03-05 14:00:00,0.0,1000.55,85.5375,92.04166667,14.72666667,2.120166667,238.026536 -2015-03-05 15:00:00,27.1002294,1000.333333,79.70333333,95.775,14.9425,1.544416667,238.02583600000003 -2015-03-05 16:00:00,48.0137227,1000.041667,50.72166667,98.15,15.02833333,0.62625,238.02618600000002 -2015-03-05 17:00:00,18.28582253,1000.116667,84.8025,98.05,15.21333333,0.9570000000000001,238.02651933333334 -2015-03-05 18:00:00,7.397619144,1000.1375,29.94083333,98.86666667,15.35333333,0.267416667,238.027886 -2015-03-05 19:00:00,7.268695847999999,1000.216667,11.8565,99.95833333,14.86,0.378833333,238.02928599999998 -2015-03-05 20:00:00,0.0,1000.404167,0.132916667,99.44166667,14.15166667,0.26508333300000003,238.0285693333333 -2015-03-05 21:00:00,2.9261065680000002,1000.7875,0.0,97.73333333,14.18916667,0.8321666670000001,238.02928599999998 -2015-03-05 22:00:00,0.0,1001.1833330000001,0.0,97.45,14.0575,0.4805,238.02928599999998 -2015-03-05 23:00:00,0.0,1001.725,0.0,99.6,12.58416667,0.123583333,238.03095266666662 -2015-04-05 00:00:00,0.0,1002.0875,0.0,99.05,11.84333333,0.232916667,238.0474497 -2015-04-05 01:00:00,0.0,1002.8708330000001,0.0,98.81666667,11.085,0.089083333,238.04737209999996 -2015-04-05 02:00:00,2.41598904,1003.1625,0.0,99.25833333,12.17666667,0.110833333,238.0472945 -2015-04-05 03:00:00,0.0,1003.45,0.0,99.34166667,12.115,0.1045,238.0472945 -2015-04-05 04:00:00,0.0,1003.675,0.243666667,99.8,10.5625,0.0365,238.0472698833333 -2015-04-05 05:00:00,0.0,1004.083333,26.20991667,97.71666667,10.21,0.12683333300000002,238.04714680000004 -2015-04-05 06:00:00,0.0,1004.533333,81.67916667,93.93333333,13.8625,0.6829999999999999,238.04712093333333 -2015-04-05 07:00:00,0.0,1005.083333,226.1416667,89.33333333,15.56916667,1.188833333,238.04701746666663 -2015-04-05 08:00:00,0.0,1005.645833,139.5525,83.175,16.9575,1.20125,238.04704333333333 -2015-04-05 09:00:00,0.0,1005.8875,355.2916667,76.7625,17.62333333,0.894166667,238.04701746666663 -2015-04-05 10:00:00,0.0,1005.954167,533.65,67.9125,18.86083333,0.963916667,238.0469423333333 -2015-04-05 11:00:00,0.0,1006.341667,632.2833333,61.72333333,19.74166667,1.2631666670000001,238.0469423333333 -2015-04-05 12:00:00,0.0,1005.929167,657.6,61.5475,20.655,1.147666667,238.04686843333334 -2015-04-05 13:00:00,0.0,1005.525,529.55,60.8475,21.7325,0.958666667,238.04681793333336 -2015-04-05 14:00:00,0.0,1005.2458330000001,581.7833333,56.98916667,21.82916667,1.24425,238.0467403333333 -2015-04-05 15:00:00,0.0,1004.8083330000001,319.9583333,56.69833333,21.98416667,0.9565,238.04668859999995 -2015-04-05 16:00:00,0.0,1004.666667,225.9666667,58.50833333,21.595,0.934416667,238.04668859999995 -2015-04-05 17:00:00,0.0,1004.275,112.38,62.23,20.04916667,1.173583333,238.04666396666664 -2015-04-05 18:00:00,0.0,1003.383333,61.44083333,72.51416667,18.74833333,1.11225,238.04654080000003 -2015-04-05 19:00:00,0.0,1002.7,17.96091667,86.68666667,16.94083333,0.6975,238.04651493333336 -2015-04-05 20:00:00,0.0,1002.0,0.132083333,92.98333333,14.67666667,0.050666667,238.04641146666668 -2015-04-05 21:00:00,0.0,1001.525,0.0,93.65833333,14.46083333,0.004916667,238.04638560000004 -2015-04-05 22:00:00,9.823219128,1000.758333,0.0,99.46666667,14.53416667,0.16041666699999999,238.04633390000004 -2015-04-05 23:00:00,2.4299435519999997,999.5833332999998,0.0,99.56666667,14.51833333,0.09125,238.04625635000002 -2015-05-05 00:00:00,2.8778232239999997,998.7708332999998,0.0,93.35,14.9975,1.125916667, -2015-05-05 01:00:00,2.78260296,997.6208332999998,0.0,92.54166667,15.18083333,1.210166667, -2015-05-05 02:00:00,0.0,997.0916667000001,0.0,91.75,15.44666667,1.7609166669999998, -2015-05-05 03:00:00,0.0,996.6666667000002,0.0,97.16666667,16.64416667,2.2566666669999997, -2015-05-05 04:00:00,0.0,996.2375,0.270916667,98.125,16.06833333,2.0531666669999997, -2015-05-05 05:00:00,0.0,996.5791667000001,13.73366667,99.86666667,14.96916667,0.470916667, -2015-05-05 06:00:00,0.0,996.4416667000002,17.70666667,100.0,15.87416667,0.91175, -2015-05-05 07:00:00,2.484376512,997.0208332999998,31.41083333,100.0,16.12166667,0.493166667, -2015-05-05 08:00:00,0.0,997.5333332999999,77.99583333,100.0,16.6175,0.49308333299999996, -2015-05-05 09:00:00,0.0,997.8958332999998,120.25083329999998,86.52,17.84416667,1.056833333, -2015-05-05 10:00:00,0.0,998.5375,177.05,73.89833333,18.96916667,1.7801666669999998, -2015-05-05 11:00:00,0.0,998.6583332999999,480.13333330000006,67.98666667,21.84083333,2.172333333, -2015-05-05 12:00:00,8.986552152,998.4583332999998,595.7833333,60.69083333,24.02166667,2.97325, -2015-05-05 13:00:00,0.0,998.9833332999999,504.8916666999999,56.12333333,24.04916667,3.4410000000000003, -2015-05-05 14:00:00,0.0,999.3875,399.95,52.38666667,23.98083333,2.6374166669999997, -2015-05-05 15:00:00,0.0,1000.195833,523.9916667,48.275,24.16833333,2.985, -2015-05-05 16:00:00,0.0,1000.9958330000001,270.3333333,50.6325,23.0125,2.222583333, -2015-05-05 17:00:00,0.0,1002.154167,119.15833329999998,58.58,21.0625,2.284166667, -2015-05-05 18:00:00,0.0,1003.479167,63.11083333,72.08166667,17.87666667,2.245333333, -2015-05-05 19:00:00,0.0,1004.154167,12.24891667,75.51833333,17.30333333,0.861, -2015-05-05 20:00:00,0.0,1005.4375,0.224916667,84.54833333,15.49416667,0.93525, -2015-05-05 21:00:00,0.0,1006.225,0.0,95.9,12.30583333,0.018416667, -2015-05-05 22:00:00,0.0,1006.716667,0.0,99.64166667,10.34083333,0.292916667, -2015-05-05 23:00:00,0.0,1007.075,0.0,90.8,8.928333333,0.015666667, -2015-06-05 00:00:00,0.0,1007.216667,0.0,85.525,7.475,0.0385,237.7705212 -2015-06-05 01:00:00,0.0,1007.45,0.0,82.84833333,7.197166667,0.0265,237.77362396666663 -2015-06-05 02:00:00,0.0,1007.375,0.0,87.775,6.839833333,0.02525,237.7756925 -2015-06-05 03:00:00,0.0,1007.425,0.0,90.83333333,6.11175,0.043833332999999995,237.7770715 -2015-06-05 04:00:00,0.0,1007.516667,0.464083333,89.96666667,6.019416667000001,0.00875,237.7793123833333 -2015-06-05 05:00:00,0.0,1007.9333330000001,27.93458333,85.49166667,6.543333333,0.029833332999999997,237.77931239999998 -2015-06-05 06:00:00,0.0,1008.5583330000001,120.24583329999999,78.53166667,11.61333333,0.794416667,237.78000189999997 -2015-06-05 07:00:00,0.0,1009.1916669999999,248.14,69.8225,13.9125,1.041666667,237.77948478333334 -2015-06-05 08:00:00,0.0,1009.545833,185.45,62.15916667,14.95333333,1.305083333,237.77534774999995 -2015-06-05 09:00:00,0.0,1009.595833,298.5875,60.3425,15.79916667,1.423,237.76862505 -2015-06-05 10:00:00,0.0,1009.4625,583.4833332999999,56.62583333,16.14,2.3135,237.75862719999998 -2015-06-05 11:00:00,0.0,1009.229167,701.6333333,51.10333333,17.17083333,1.8143333330000002,237.75138738333337 -2015-06-05 12:00:00,0.0,1009.0,565.5416667000001,47.55833333,17.72583333,1.717416667,237.74759508333332 -2015-06-05 13:00:00,0.0,1008.8,387.1416667,49.70583333,17.54166667,1.9829166669999998,237.7448370666667 -2015-06-05 14:00:00,0.0,1008.679167,424.99166669999994,52.03583333,17.59083333,1.942166667,237.74225140000001 -2015-06-05 15:00:00,0.0,1008.545833,459.8583333000001,49.8525,17.42666667,2.1543333330000003,237.73897626666667 -2015-06-05 16:00:00,0.0,1008.3375,313.4833333,49.15083333,17.34333333,2.324666667,237.73983815000005 -2015-06-05 17:00:00,3.131547528,1008.833333,85.69583333,57.48833333,16.15833333,2.0131666669999997,237.7401829 -2015-06-05 18:00:00,0.0,1009.5666669999999,59.3425,65.29083333,14.38166667,1.165666667,237.73983815 -2015-06-05 19:00:00,0.0,1010.179167,22.95925,67.22083333,13.39666667,0.603583333,237.74087240000003 -2015-06-05 20:00:00,0.0,1010.583333,0.41416666700000004,87.88583333,9.408166667,0.022666667,237.7422514166667 -2015-06-05 21:00:00,0.0,1010.729167,0.0,74.55666667,8.721583333,0.10316666699999999,237.74552658333332 -2015-06-05 22:00:00,0.0,1011.3625,0.0,73.68,9.968333333,0.40283333299999996,237.7482846 -2015-06-05 23:00:00,0.0,1011.570833,0.0,78.60166667,10.15333333,0.49708333299999996,237.7493188666667 -2015-07-05 00:00:00,0.0,1011.766667,0.0,79.48,10.1475,0.6629999999999999,237.57360860000003 -2015-07-05 01:00:00,0.0,1011.616667,0.0,84.33333333,9.508333333,0.45491666700000005,237.57960251666665 -2015-07-05 02:00:00,0.0,1011.7,0.0,82.85,9.1575,0.29575,237.5807177 -2015-07-05 03:00:00,0.0,1011.8166669999999,0.0,86.825,8.26625,0.342,237.58378433333334 -2015-07-05 04:00:00,0.0,1012.095833,0.65525,89.55833333,8.763333333,0.695666667,237.58587525000004 -2015-07-05 05:00:00,0.0,1012.679167,28.0595,88.675,7.27,0.048416667000000004,237.5869904 -2015-07-05 06:00:00,0.0,1013.283333,115.00083329999998,84.78333333,9.850583333,0.47125,237.58754796666665 -2015-07-05 07:00:00,0.0,1014.091667,187.6008333,80.71166667,11.1775,0.945583333,237.58880251666665 -2015-07-05 08:00:00,0.0,1014.458333,151.0166667,75.29833333,12.065,0.9325,237.582251 -2015-07-05 09:00:00,0.0,1014.604167,281.55,71.1375,13.43666667,1.395,237.57263284999996 -2015-07-05 10:00:00,0.0,1014.783333,453.875,66.9175,14.3975,1.303166667,237.55980863333332 -2015-07-05 11:00:00,0.0,1014.829167,554.2333332999999,57.61166667,15.22833333,1.6171666669999998,237.55144499999997 -2015-07-05 12:00:00,0.0,1014.604167,455.65,53.43666667,16.06333333,1.190416667,237.54837835 -2015-07-05 13:00:00,0.0,1014.65,692.2166667,48.2025,17.55833333,1.144583333,237.54531169999998 -2015-07-05 14:00:00,0.0,1014.420833,549.1083332999999,47.7275,18.08083333,1.13,237.5450329 -2015-07-05 15:00:00,0.0,1014.208333,454.21666669999996,45.05,17.43333333,1.029833333,237.54489351666666 -2015-07-05 16:00:00,0.0,1014.091667,387.09166669999996,43.71083333,17.74333333,1.257416667,237.54391776666668 -2015-07-05 17:00:00,0.0,1013.920833,72.01416667,47.09916667,17.77666667,0.755,237.54336018333333 -2015-07-05 18:00:00,0.0,1013.7541669999999,49.40083333,49.8275,17.03833333,0.32558333300000003,237.54336016666664 -2015-07-05 19:00:00,0.0,1014.025,16.01441667,73.44166667,12.93083333,0.05775,237.54517231666668 -2015-07-05 20:00:00,0.0,1014.2625,0.34375,86.36666667,8.74525,0.0014166670000000001,237.54572986666668 -2015-07-05 21:00:00,0.0,1014.145833,0.0,91.05,7.025583332999999,0.017416667,237.5507480166667 -2015-07-05 22:00:00,0.0,1014.179167,0.0,96.01666667,6.365,0.000833333,237.55562681666666 -2015-07-05 23:00:00,0.0,1014.170833,0.0,97.74166667,5.978833333,0.0055,237.5599480333333 -2015-08-05 00:00:00,0.0,1014.0375,0.0,98.925,5.638166667,0.0055,237.49136631666667 -2015-08-05 01:00:00,0.0,1013.65,0.0,99.44166667,5.519083332999999,0.0,237.49582695000004 -2015-08-05 02:00:00,0.0,1013.295833,0.0,99.96666667,5.673416667000001,0.00225,237.49875416666669 -2015-08-05 03:00:00,0.0,1013.166667,0.0,99.88333333,6.010333332999999,0.030333332999999997,237.50237845 -2015-08-05 04:00:00,0.0,1012.858333,0.360333333,100.0,6.472666667,0.0035833329999999997,237.5029360166667 -2015-08-05 05:00:00,0.0,1012.791667,14.30816667,100.0,6.717416667,0.0,237.5048875 -2015-08-05 06:00:00,0.0,1012.6625,75.87083333,98.05,7.828583332999999,0.003833333,237.50837236666666 -2015-08-05 07:00:00,0.0,1012.529167,160.0083333,84.9,9.006666667000001,0.814666667,237.51004508333332 -2015-08-05 08:00:00,0.0,1012.1916669999999,164.18333330000002,74.49333333,11.15083333,1.045666667,237.51185721666664 -2015-08-05 09:00:00,0.0,1011.575,355.5,66.04,14.415,0.732,237.51352991666667 -2015-08-05 10:00:00,0.0,1011.108333,442.25833330000006,58.9625,16.03666667,1.047916667,237.51269355 -2015-08-05 11:00:00,0.0,1010.716667,525.3083333000001,54.01666667,17.70833333,1.2409999999999999,237.50739661666668 -2015-08-05 12:00:00,0.0,1010.2875,554.7583333,52.16666667,18.64333333,1.4453333330000002,237.49763905 -2015-08-05 13:00:00,0.0,1010.2458330000001,629.0833332999999,50.35,19.66166667,1.295166667,237.4876027 -2015-08-05 14:00:00,0.0,1009.8875,592.3083333,48.7675,20.00416667,1.683583333,237.47561485000003 -2015-08-05 15:00:00,0.0,1009.304167,534.5083333,44.52166667,21.12583333,1.168666667,237.46334818333332 -2015-08-05 16:00:00,0.0,1009.2625,286.5416667,48.28833333,20.73666667,0.861916667,237.45554216666667 -2015-08-05 17:00:00,0.0,1009.0,78.27,60.10583333,19.52,0.6729999999999999,237.44801491666666 -2015-08-05 18:00:00,0.0,1008.95,33.44833333,72.93083333,18.64416667,0.44025,237.44508765 -2015-08-05 19:00:00,0.0,1009.329167,7.195666667,82.42583333,16.63916667,0.07,237.44689975000003 -2015-08-05 20:00:00,0.0,1010.0,0.130083333,85.41666667,15.1725,0.025,237.45177853333337 -2015-08-05 21:00:00,0.0,1010.7625,0.0,83.81666667,14.65666667,0.12658333300000002,237.45651791666663 -2015-08-05 22:00:00,0.0,1010.729167,0.0,80.87666667,13.6225,0.052666667,237.46097853333333 -2015-08-05 23:00:00,0.0,1010.95,0.0,77.3,12.35,0.0245,237.46669366666666 -2015-09-05 00:00:00,0.0,1011.104167,0.0,89.85833333,9.810833333,0.017166667,237.54739793333331 -2015-09-05 01:00:00,0.0,1011.154167,0.0,98.26666667,8.023083332999999,0.00375,237.55003478333336 -2015-09-05 02:00:00,0.0,1011.179167,0.0,99.99166667,7.3405,0.03875,237.55158585 -2015-09-05 03:00:00,0.0,1011.3875,0.0,100.0,6.7264166670000005,0.018416667,237.55189604999998 -2015-09-05 04:00:00,0.0,1011.5666669999999,0.7905833329999999,100.0,6.952083332999999,0.002166667,237.55468801666666 -2015-09-05 05:00:00,0.0,1011.833333,18.52475,100.0,7.37275,0.0055,237.55654933333332 -2015-09-05 06:00:00,0.0,1012.354167,53.5575,99.95833333,9.5025,0.09983333300000001,237.5559289 -2015-09-05 07:00:00,0.0,1012.833333,93.30583333,84.3,11.62833333,0.1055,237.55654933333332 -2015-09-05 08:00:00,0.0,1013.1833330000001,195.2166667,81.56166667,15.60083333,0.7180833329999999,237.55794531666666 -2015-09-05 09:00:00,0.0,1013.395833,324.4416667,77.5775,16.81,0.922083333,237.55484313333332 -2015-09-05 10:00:00,0.0,1013.470833,380.1333333,73.36333333,18.22916667,1.138916667,237.55267161666666 -2015-09-05 11:00:00,0.0,1013.583333,396.71666669999996,69.03416667,18.7325,1.418166667,237.55081031666668 -2015-09-05 12:00:00,0.0,1013.6625,329.3916667,65.335,19.06083333,1.25075,237.54677750000005 -2015-09-05 13:00:00,0.0,1013.704167,489.5666666999999,62.24333333,20.31333333,1.459333333,237.54367534999997 -2015-09-05 14:00:00,0.0,1013.6625,510.90833330000004,57.71583333,20.91083333,1.5980833330000002,237.53979763333334 -2015-09-05 15:00:00,0.0,1013.4625,425.3,55.74666667,20.82,1.4709999999999999,237.53685058333335 -2015-09-05 16:00:00,0.0,1013.3083330000001,260.65,55.36916667,20.34666667,1.6499166669999998,237.5342137166667 -2015-09-05 17:00:00,48.38112202,1013.833333,62.22666667,75.29916667,16.61166667,2.246416667,237.53452395 -2015-09-05 18:00:00,47.82685368,1014.445833,63.6825,93.59166667,13.52833333,2.242083333,237.53529949999998 -2015-09-05 19:00:00,7.387168104,1015.741667,13.72816667,96.075,12.48,0.555083333,237.53638526666668 -2015-09-05 20:00:00,0.0,1016.154167,0.542333333,99.05,10.875,0.159583333,237.5371608 -2015-09-05 21:00:00,0.0,1016.758333,0.0,99.95833333,9.384166667,0.3775,237.53731589999998 -2015-09-05 22:00:00,0.0,1017.425,0.0,97.54166667,8.58875,0.107083333,237.54103848333338 -2015-09-05 23:00:00,2.4050227680000003,1017.508333,0.0,98.69166667,7.537916667,0.04325,237.54414066666664 -2015-10-05 00:00:00,0.0,1018.0125,0.0,98.65,6.840666667000001,0.00033333300000000006,237.58633006666665 -2015-10-05 01:00:00,0.0,1018.391667,0.0,97.91666667,6.56725,0.013833333,237.58834649999997 -2015-10-05 02:00:00,0.0,1018.7375,0.0,96.48333333,6.39125,0.054916667,237.58772605000001 -2015-10-05 03:00:00,0.0,1019.3708330000001,0.0,97.03333333,6.439083332999999,0.134583333,237.58741581666663 -2015-10-05 04:00:00,0.0,1020.0125,0.9398333329999999,97.13333333,7.22325,0.399416667,237.5875709333333 -2015-10-05 05:00:00,0.0,1020.5583330000001,26.61475,97.61666667,7.78825,0.6755,237.58850159999997 -2015-10-05 06:00:00,0.0,1021.133333,127.74166670000001,93.50833333,9.211666667000001,0.256333333,237.59098331666667 -2015-10-05 07:00:00,0.0,1021.6,209.6416667,90.15833333,11.58083333,0.608583333,237.59098333333336 -2015-10-05 08:00:00,0.0,1022.104167,182.4,83.56833333,13.36166667,0.9875,237.5926895 -2015-10-05 09:00:00,2.651736768,1022.295833,347.5083333,80.7325,14.16666667,1.069416667,237.59346503333333 -2015-10-05 10:00:00,0.0,1022.720833,410.625,72.53583333,14.85833333,1.6810833330000001,237.59299973333336 -2015-10-05 11:00:00,0.0,1023.0375,531.6916666999999,66.13166667,15.72833333,1.7810833330000002,237.59191398333334 -2015-10-05 12:00:00,0.0,1022.929167,494.53333330000004,60.07666667,16.76333333,1.6766666669999999,237.59222418333334 -2015-10-05 13:00:00,0.0,1022.791667,681.4,55.39083333,17.91166667,1.5775833330000002,237.58912203333333 -2015-10-05 14:00:00,0.0,1022.7,638.075,53.34666667,18.955,1.08275,237.58788116666665 -2015-10-05 15:00:00,0.0,1022.5041669999999,506.4333333000001,52.36166667,19.24166667,0.989916667,237.58788116666668 -2015-10-05 16:00:00,0.0,1022.225,413.125,48.20916667,19.47916667,1.113416667,237.58633009999997 -2015-10-05 17:00:00,0.0,1021.775,93.64083333,50.47333333,19.79833333,0.531666667,237.5871056333333 -2015-10-05 18:00:00,0.0,1021.5375,51.27416667,63.5225,18.22916667,0.26225,237.58726073333332 -2015-10-05 19:00:00,0.0,1021.6125,25.88916667,82.9875,15.2625,0.007916666999999999,237.58819138333334 -2015-10-05 20:00:00,0.0,1021.820833,0.43891666700000004,91.59166667,11.155,0.2125,237.59005266666668 -2015-10-05 21:00:00,0.0,1022.104167,0.0,95.225,9.438333333,0.043333332999999995,237.5886566833334 -2015-10-05 22:00:00,0.0,1022.0125,0.0,98.45,8.23325,0.023583332999999998,237.59098331666667 -2015-10-05 23:00:00,0.0,1021.779167,0.0,99.83333333,7.388,0.03575,237.591914 -2015-11-05 00:00:00,0.0,1021.483333,0.0,100.0,6.482166667,0.031916667,237.7289188166667 -2015-11-05 01:00:00,0.0,1021.070833,0.0,100.0,5.8834166670000005,0.0,237.7264397833333 -2015-11-05 02:00:00,0.0,1020.841667,0.0,100.0,5.312083333,0.006083333000000001,237.72845398333334 -2015-11-05 03:00:00,0.0,1020.804167,0.0,100.0,5.038,0.0225,237.72736939999996 -2015-11-05 04:00:00,0.0,1020.85,0.827666667,100.0,4.9565,0.0,237.72938365000002 -2015-11-05 05:00:00,0.0,1020.825,26.60816667,100.0,5.259833333,0.0,237.73186271666665 -2015-11-05 06:00:00,0.0,1020.8625,130.7575,99.46666667,7.473,0.03925,237.73170773333334 -2015-11-05 07:00:00,0.0,1020.8708330000001,211.83333330000002,90.34166667,10.36916667,0.44725,237.73155280000003 -2015-11-05 08:00:00,0.0,1020.645833,204.16666669999998,84.25833333,12.29583333,0.736,237.72690458333332 -2015-11-05 09:00:00,0.0,1020.5375,318.0,75.4725,15.14916667,1.133333333,237.72597495 -2015-11-05 10:00:00,0.0,1020.145833,497.525,65.58083333,17.86666667,1.699416667,237.72566506666666 -2015-11-05 11:00:00,0.0,1019.708333,518.9333333000001,60.34916667,19.59083333,2.260166667,237.72504531666667 -2015-11-05 12:00:00,0.0,1019.1625,523.1,59.74166667,20.76916667,2.1189166669999997,237.72829906666666 -2015-11-05 13:00:00,0.0,1018.55,521.7,54.36583333,22.0675,2.66475,237.72659471666665 -2015-11-05 14:00:00,0.0,1018.204167,516.7,50.43916667,23.20166667,2.2254166669999997,237.72721448333337 -2015-11-05 15:00:00,0.0,1017.633333,512.4916667,47.54833333,24.0675,1.7608333330000001,237.72953856666663 -2015-11-05 16:00:00,0.0,1016.7625,436.1833333000001,46.59666667,24.50666667,1.98475,237.73062313333335 -2015-11-05 17:00:00,0.0,1016.3708330000001,99.25416667,42.73916667,24.55833333,1.817333333,237.73139786666664 -2015-11-05 18:00:00,0.0,1016.3625,49.725,64.83916667,22.44416667,0.031,237.73186268333336 -2015-11-05 19:00:00,0.0,1016.65,14.49408333,81.4425,18.17166667,0.042416667000000005,237.73170776666666 -2015-11-05 20:00:00,0.0,1016.4375,0.38733333299999995,87.525,15.60833333,0.254833333,237.73248245 -2015-11-05 21:00:00,0.0,1016.079167,0.0,93.34166667,13.7975,0.1065,237.73062316666665 -2015-11-05 22:00:00,0.0,1016.141667,0.0,97.18333333,12.305,0.00925,237.73093304999998 -2015-11-05 23:00:00,0.0,1015.883333,0.0,99.18333333,10.88166667,0.0755,237.72969351666669 -2015-12-05 00:00:00,0.0,1015.704167,0.0,100.0,10.03583333,0.029333333,238.0489231833333 -2015-12-05 01:00:00,0.0,1015.366667,0.0,100.0,9.184166667000001,0.006999999999999999,238.04928109999994 -2015-12-05 02:00:00,0.0,1014.883333,0.0,100.0,9.260833332999999,0.014916667,238.04820736666667 -2015-12-05 03:00:00,0.0,1014.404167,0.0,100.0,9.261666667,0.003666667,238.04641784999998 -2015-12-05 04:00:00,0.0,1014.0375,0.625166667,100.0,9.483333333,0.0,238.04713363333335 -2015-12-05 05:00:00,0.0,1013.758333,22.66808333,100.0,9.8025,0.032,238.04802843333331 -2015-12-05 06:00:00,0.0,1013.483333,83.3125,99.81666667,11.48166667,0.15783333300000002,238.04713363333335 -2015-12-05 07:00:00,0.0,1013.266667,173.6416667,92.49166667,15.13916667,0.5305833329999999,238.04659678333334 -2015-12-05 08:00:00,0.0,1012.916667,201.8916667,82.4725,17.54583333,0.8290000000000001,238.04480725 -2015-12-05 09:00:00,0.0,1012.429167,341.0833333,73.52916667,20.73333333,0.49208333299999996,238.0417650333333 -2015-12-05 10:00:00,0.0,1011.533333,477.00833330000006,53.68083333,22.93666667,2.3264166669999997,238.0421229333333 -2015-12-05 11:00:00,0.0,1011.5,516.825,54.245,25.56833333,1.582416667,238.04087028333333 -2015-12-05 12:00:00,0.0,1011.070833,581.9833332999999,56.39833333,26.29083333,1.4358333330000002,238.03997551666666 -2015-12-05 13:00:00,0.0,1010.429167,631.5916667,51.89416667,27.51666667,1.4580000000000002,238.03908075 -2015-12-05 14:00:00,0.0,1009.783333,370.8333333,51.04833333,27.9925,1.18625,238.0387228333334 -2015-12-05 15:00:00,23.79395064,1009.991667,107.295,75.14833333,22.09916667,1.8154166669999998,238.03997549999997 -2015-12-05 16:00:00,0.0,1011.083333,220.275,82.53583333,20.19,1.851666667,238.03961758333335 -2015-12-05 17:00:00,0.0,1011.658333,79.72083333,77.23666667,19.54833333,1.284,238.04069130000002 -2015-12-05 18:00:00,0.0,1012.258333,47.80916667,73.80166667,18.46,0.723583333,238.0403334 -2015-12-05 19:00:00,0.0,1013.220833,28.6665,63.71916667,18.1075,2.343416667,238.03908073333332 -2015-12-05 20:00:00,0.0,1014.1833330000001,1.038583333,70.23833333,15.92583333,1.4216666669999998,238.03782806666666 -2015-12-05 21:00:00,0.0,1015.229167,0.0,74.70833333,14.4175,1.16625,238.03747016666668 -2015-12-05 22:00:00,0.0,1016.1208330000001,0.0,86.45416667,12.82916667,1.287416667,238.03872283333337 -2015-12-05 23:00:00,0.0,1016.820833,0.0,93.99166667,9.29,0.14800000000000002,238.03818598333336 -2015-05-13 00:00:00,0.0,1017.4875,0.0,91.00833333,9.0825,0.296666667,238.00081638333327 -2015-05-13 01:00:00,0.0,1017.791667,0.0,97.13333333,8.038916667,0.169333333,238.00116116666666 -2015-05-13 02:00:00,0.0,1017.695833,0.0,99.86666667,6.57625,0.1055,238.00185069999995 -2015-05-13 03:00:00,0.0,1017.6833330000001,0.0,100.0,5.5729999999999995,0.0015,238.00012690000003 -2015-05-13 04:00:00,0.0,1017.416667,1.6008333330000002,100.0,4.808833333,0.0725,238.0015059 -2015-05-13 05:00:00,0.0,1017.616667,59.85516667,99.725,5.138916667,0.0010833330000000001,238.0008164 -2015-05-13 06:00:00,0.0,1017.866667,167.8916667,88.66,9.033833332999999,0.204416667,237.99771363333335 -2015-05-13 07:00:00,0.0,1017.8875,255.2425,77.22916667,11.46666667,0.818583333,237.99633461666667 -2015-05-13 08:00:00,0.0,1017.45,139.5283333,62.6325,14.23916667,0.8736666670000001,237.99374896666666 -2015-05-13 09:00:00,0.0,1016.970833,418.5341667,53.6925,15.39192836,0.854833333,237.9949556 -2015-05-13 10:00:00,0.0,1016.0875,611.6916667,53.91583333,16.09,1.456833333,237.99254231666666 -2015-05-13 11:00:00,0.0,1015.1833330000001,678.6166667,49.1175,18.10333333,0.918416667,237.99150805 -2015-05-13 12:00:00,0.0,1014.220833,702.4583332999999,46.78166667,18.78666667,1.314,237.99202520000003 -2015-05-13 13:00:00,0.0,1013.0875,690.375,40.49333333,19.22833333,1.7045,237.99030143333334 -2015-05-13 14:00:00,0.0,1011.6875,640.2916667000001,38.82083333,20.0225,1.4590833330000001,237.98926715000002 -2015-05-13 15:00:00,0.0,1010.975,494.3583333000001,38.8775,20.99583333,1.214416667,237.98754339999996 -2015-05-13 16:00:00,0.0,1009.458333,186.16666669999998,47.70083333,19.8375,0.96875,237.99047381666665 -2015-05-13 17:00:00,0.0,1008.929167,96.5025,54.41,18.54416667,0.9209999999999999,237.99116333333333 -2015-05-13 18:00:00,0.0,1008.145833,55.63416667,71.12166667,17.7775,0.5206666670000001,237.99081856666666 -2015-05-13 19:00:00,0.0,1007.3375,22.23083333,79.88416667,15.70333333,0.34375,237.99374898333335 -2015-05-13 20:00:00,0.0,1007.2,0.99725,89.78333333,13.22833333,0.15733333300000002,237.99219758333334 -2015-05-13 21:00:00,0.0,1007.6208330000001,0.0,92.06666667,13.44333333,1.098083333,237.9920252166667 -2015-05-13 22:00:00,0.0,1007.725,0.0,94.475,12.07333333,0.18233333300000001,237.99357659999998 -2015-05-13 23:00:00,0.0,1007.95,0.0,93.95,11.3725,0.063166667,237.99392134999997 -2015-05-14 00:00:00,0.0,1008.204167,0.0,93.975,11.65166667,0.842333333,237.9935766 -2015-05-14 01:00:00,0.0,1008.0666669999999,0.0,86.34166667,11.2525,1.5155833330000001,237.99685173333333 -2015-05-14 02:00:00,0.0,1008.1,0.0,95.25,8.809166667000001,0.33616666700000003,237.99547271666665 -2015-05-14 03:00:00,0.0,1008.416667,0.0,98.93333333,8.977916667,0.9530833329999999,237.99633461666664 -2015-05-14 04:00:00,0.0,1008.708333,1.6736666669999998,99.55,6.2495833329999995,0.089333333,237.99702415 -2015-05-14 05:00:00,0.0,1009.0625,51.15666667,99.35,6.1631666670000005,0.012083333,237.99667938333332 -2015-05-14 06:00:00,0.0,1009.604167,151.6083333,90.33333333,9.243166667,1.4485833330000002,237.99512800000002 -2015-05-14 07:00:00,0.0,1009.9875,246.9175,82.26416667,10.27,2.088916667,237.99254233333332 -2015-05-14 08:00:00,0.0,1010.0,172.30833330000002,75.90083333,11.4375,1.7983333330000002,237.99254233333332 -2015-05-14 09:00:00,0.0,1009.779167,330.5083333,72.815,12.68333333,1.231416667,237.99150806666668 -2015-05-14 10:00:00,0.0,1009.354167,547.5166667000001,66.26,14.03416667,1.4610833330000002,237.99012904999998 -2015-05-14 11:00:00,0.0,1009.116667,685.9833332999999,59.46083333,14.91166667,1.7781666669999998,237.98840528333335 -2015-05-14 12:00:00,0.0,1008.545833,659.3,52.18333333,16.14583333,1.6983333330000001,237.98633675 -2015-05-14 13:00:00,0.0,1007.8125,561.2833333,49.20416667,16.95833333,1.6259166669999998,237.98426823333338 -2015-05-14 14:00:00,0.0,1007.270833,504.29166669999995,49.745,17.54333333,1.4576666669999998,237.98202735000004 -2015-05-14 15:00:00,0.0,1006.583333,336.075,47.63333333,18.37916667,0.9065833329999999,237.98219973333332 -2015-05-14 16:00:00,0.0,1006.0125,333.45,46.54583333,18.63916667,0.993,237.9801312 -2015-05-14 17:00:00,0.0,1005.641667,153.08333330000002,50.075,17.62833333,1.351,237.98254448333333 -2015-05-14 18:00:00,0.0,1005.429167,53.06,58.71916667,16.2925,0.864166667,237.9853025 -2015-05-14 19:00:00,0.0,1005.554167,11.92691667,73.3975,14.8175,0.645833333,237.98564725000003 -2015-05-14 20:00:00,0.0,1005.65,0.639916667,86.175,13.69,0.142666667,237.98771580000002 -2015-05-14 21:00:00,0.0,1005.845833,0.0,89.20833333,12.99666667,0.018416667,237.98754343333334 -2015-05-14 22:00:00,0.0,1005.9333330000001,0.0,92.98333333,12.5025,0.07275,237.98633676666668 -2015-05-14 23:00:00,0.0,1005.858333,0.0,94.05833333,12.11666667,0.0405,237.98616438333337 -2015-05-15 00:00:00,0.0,1005.8125,0.0,94.775,11.9675,0.033416667000000004,237.98754341666668 -2015-05-15 01:00:00,0.0,1005.6833330000001,0.0,91.15,11.84166667,0.34916666700000004,237.9870263 -2015-05-15 02:00:00,0.0,1005.7458330000001,0.0,87.8,11.5725,0.53125,237.98616438333337 -2015-05-15 03:00:00,0.0,1005.904167,0.0,84.0575,11.555,1.339666667,237.9861644 -2015-05-15 04:00:00,0.0,1006.466667,0.616083333,78.6575,11.2675,1.25075,237.98616439999998 -2015-05-15 05:00:00,0.0,1007.195833,13.17583333,80.54166667,10.95416667,0.818666667,237.98478540000005 -2015-05-15 06:00:00,0.0,1007.6208330000001,59.14,81.30166667,10.9225,1.774583333,237.98495776666664 -2015-05-15 07:00:00,0.0,1008.3166669999999,156.8666667,78.875,11.195,2.3690833330000003,237.98409586666665 -2015-05-15 08:00:00,0.0,1009.025,184.375,75.6775,11.93666667,2.1385,237.98133786666668 -2015-05-15 09:00:00,0.0,1009.604167,433.08333330000005,66.73083333,14.725,2.1935,237.9796140666667 -2015-05-15 10:00:00,0.0,1010.145833,612.3416667,56.80333333,16.68,2.517416667,237.97737318333336 -2015-05-15 11:00:00,0.0,1010.325,631.2833333,50.5125,17.67583333,3.3555,237.97564939999998 -2015-05-15 12:00:00,0.0,1010.645833,607.9,52.64416667,18.1825,2.882083333,237.9765113 -2015-05-15 13:00:00,0.0,1010.766667,690.9833332999999,50.0225,19.33,2.392833333,237.97289139999998 -2015-05-15 14:00:00,0.0,1010.679167,648.0666667,47.51333333,19.90666667,3.067416667,237.9696162166667 -2015-05-15 15:00:00,0.0,1010.75,550.525,46.26833333,20.26,3.220416667,237.9692715 -2015-05-15 16:00:00,0.0,1010.925,377.78333330000004,46.605,20.53416667,2.819666667,237.97030575 -2015-05-15 17:00:00,0.0,1011.45,84.49833333,47.36833333,19.88583333,2.88175,237.96944386666664 -2015-05-15 18:00:00,0.0,1011.85,42.525,50.31666667,18.28333333,2.75325,237.96961623333334 -2015-05-15 19:00:00,0.0,1012.616667,20.97025,60.43166667,16.985,1.975916667,237.97065051666664 -2015-05-15 20:00:00,0.0,1013.695833,0.92325,69.90666667,14.675,1.7634166669999998,237.9720295 -2015-05-15 21:00:00,0.0,1014.7458330000001,0.0,86.45,12.18,0.716,237.9711676166667 -2015-05-15 22:00:00,0.0,1015.4333330000001,0.0,90.45,8.703333333,0.124,237.97289138333335 -2015-05-15 23:00:00,0.0,1015.75,0.0,93.025,7.196166667000001,0.04725,237.97409801666666 -2015-05-16 00:00:00,0.0,1016.179167,0.0,95.09166667,6.230583332999999,0.135166667,237.97375328333337 -2015-05-16 01:00:00,0.0,1016.35,0.0,97.75,5.605916667000001,0.02075,237.97323615000002 -2015-05-16 02:00:00,0.0,1016.425,0.0,99.84166667,5.0985833330000006,0.022833332999999997,237.97392565000004 -2015-05-16 03:00:00,0.0,1016.554167,0.0,100.0,4.4575833330000005,0.01475,237.97427038333333 -2015-05-16 04:00:00,0.0,1016.741667,3.31625,100.0,4.796,0.10025,237.97547701666667 -2015-05-16 05:00:00,0.0,1016.829167,36.65666667,100.0,5.711666667,0.18175,237.97323613333333 -2015-05-16 06:00:00,0.0,1017.225,114.81083329999998,93.54166667,7.942,0.337916667,237.97082286666668 -2015-05-16 07:00:00,0.0,1017.6625,210.525,83.525,10.20916667,0.645333333,237.9684096 -2015-05-16 08:00:00,0.0,1018.133333,152.125,77.00833333,12.30666667,0.847833333,237.96754771666667 -2015-05-16 09:00:00,0.0,1018.079167,433.425,68.855,14.48916667,0.871416667,237.96651345 -2015-05-16 10:00:00,0.0,1018.145833,559.4833332999999,63.045,15.405,0.9089166670000001,237.96220403333334 -2015-05-16 11:00:00,0.0,1017.966667,371.46666669999996,63.015,15.77083333,1.109583333,237.9639278 -2015-05-16 12:00:00,0.0,1017.6291669999999,222.56666669999998,64.3675,14.96666667,0.9745,237.9641002 -2015-05-16 13:00:00,0.0,1017.708333,191.20833330000002,61.52916667,14.15916667,0.92775,237.96392781666668 -2015-05-16 14:00:00,0.0,1017.7125,106.2175,66.27333333,14.1225,0.871916667,237.96289354999996 -2015-05-16 15:00:00,0.0,1017.866667,88.95333333,69.57083333,14.2175,0.35233333299999997,237.96151455000003 -2015-05-16 16:00:00,0.0,1018.041667,122.7175,69.3475,15.10583333,0.580666667,237.95961838333335 -2015-05-16 17:00:00,0.0,1018.416667,97.6975,74.41583333,14.7875,0.8091666670000001,237.95892888333333 -2015-05-16 18:00:00,0.0,1018.595833,57.57833333,81.80583333,14.2125,1.100416667,237.9591012666667 -2015-05-16 19:00:00,0.0,1018.7541669999999,9.42275,86.95,13.44,0.827916667,237.95979075000002 -2015-05-16 20:00:00,0.0,1019.266667,0.3545,91.65,13.015,0.39191666700000005,237.95875651666668 -2015-05-16 21:00:00,10.93080619,1019.7125,0.0,96.25833333,12.4475,0.52125,237.95823940000002 -2015-05-16 22:00:00,0.0,1020.166667,0.0,97.66666667,11.4875,0.7726666670000001,237.95979078333332 -2015-05-16 23:00:00,0.0,1020.4625,0.0,97.21666667,10.78,0.246166667,237.96082503333332 -2015-05-17 00:00:00,0.0,1020.733333,0.0,99.49166667,9.480833333,0.0465,237.96116976666667 -2015-05-17 01:00:00,0.0,1020.7,0.0,100.0,8.01275,0.10825,237.96254878333332 -2015-05-17 02:00:00,0.0,1020.883333,0.0,100.0,7.612666667,0.051333332999999995,237.96237641666664 -2015-05-17 03:00:00,2.4050227680000003,1021.0666669999999,0.0,100.0,6.53675,0.004916667,237.96272116666668 -2015-05-17 04:00:00,0.0,1021.25,2.009583333,100.0,5.225916667,0.0065,237.96306591666666 -2015-05-17 05:00:00,0.0,1021.529167,47.11416667,100.0,5.353833333,0.00625,237.96358306666664 -2015-05-17 06:00:00,0.0,1021.8083330000001,160.6333333,99.54166667,8.25275,0.287833333,237.9618592833333 -2015-05-17 07:00:00,0.0,1021.958333,231.69166669999998,83.71416667,10.82083333,0.274083333,237.96013551666667 -2015-05-17 08:00:00,0.0,1022.020833,168.5,72.8475,12.53583333,0.285333333,237.95927361666668 -2015-05-17 09:00:00,0.0,1021.6833330000001,433.125,58.98,14.02416667,0.7729166670000001,237.95634323333334 -2015-05-17 10:00:00,0.0,1021.266667,632.65,52.93416667,15.035,1.168416667,237.95548135 -2015-05-17 11:00:00,0.0,1020.958333,616.7833333,51.73166667,15.61916667,1.177666667,237.95289568333337 -2015-05-17 12:00:00,0.0,1020.3708330000001,687.225,51.4025,16.28083333,1.427583333,237.9511719333333 -2015-05-17 13:00:00,0.0,1019.666667,485.0,49.18333333,16.45333333,1.5124166669999999,237.95186145 -2015-05-17 14:00:00,0.0,1019.0625,506.075,50.5875,17.18166667,1.5893333330000001,237.9491034 -2015-05-17 15:00:00,0.0,1018.475,436.975,51.2475,18.055,1.046916667,237.947552 -2015-05-17 16:00:00,0.0,1017.858333,391.59166669999996,49.29583333,17.87833333,1.318666667,237.94669013333336 -2015-05-17 17:00:00,0.0,1017.383333,121.55,53.10166667,18.08583333,0.614166667,237.9473796166667 -2015-05-17 18:00:00,0.0,1016.7458330000001,76.5125,60.605,17.28916667,0.18808333300000002,237.94686249999998 -2015-05-17 19:00:00,0.0,1016.325,25.92,83.66833333,14.73083333,0.08541666699999999,237.94737965 -2015-05-17 20:00:00,0.0,1016.233333,1.963333333,89.99166667,11.89583333,0.017416667,237.94755201666666 -2015-05-17 21:00:00,0.0,1016.020833,0.0,92.39166667,9.569166667000001,0.0025833329999999997,237.94979293333333 -2015-05-17 22:00:00,0.0,1015.6125,0.0,94.21666667,8.823333332999999,0.0,237.94962055 -2015-05-17 23:00:00,0.0,1015.141667,0.0,97.48333333,8.568333333,0.09925,237.9508271666667 -2015-05-18 00:00:00,0.0,1014.641667,0.0,98.625,7.480833333,0.043083333,237.95082718333333 -2015-05-18 01:00:00,0.0,1013.945833,0.0,99.95,6.4669166670000005,0.0,237.9511719333333 -2015-05-18 02:00:00,0.0,1013.145833,0.0,100.0,5.576083333,0.047833333,237.95237856666668 -2015-05-18 03:00:00,0.0,1012.45,0.0,100.0,4.672333333,0.005333333000000001,237.95324045000004 -2015-05-18 04:00:00,0.0,1011.8708330000001,1.62625,100.0,4.27225,0.009833333,237.95324043333335 -2015-05-18 05:00:00,0.0,1011.633333,56.51533333,100.0,4.685083333,0.005583333,237.95255096666665 -2015-05-18 06:00:00,0.0,1011.225,165.6166667,91.46666667,8.495333333,0.123916667,237.95237856666668 -2015-05-18 07:00:00,0.0,1010.6916669999999,242.9683333,82.70916667,10.52,0.73775,237.94979293333333 -2015-05-18 08:00:00,0.0,1009.8083330000001,147.1733333,72.19916667,13.59166667,0.7383333329999999,237.94806915000004 -2015-05-18 09:00:00,0.0,1009.05,410.15833330000004,63.6825,16.095,0.94,237.94600065 -2015-05-18 10:00:00,0.0,1008.395833,538.2,59.29583333,17.74333333,1.122583333,237.94324261666668 -2015-05-18 11:00:00,0.0,1007.279167,497.1083333000001,57.31166667,18.46416667,1.268916667,237.94238073333335 -2015-05-18 12:00:00,0.0,1006.208333,627.675,53.8775,19.7825,1.4305,237.94100170000002 -2015-05-18 13:00:00,0.0,1005.25,640.9,50.535,20.56,1.60175,237.9385884333333 -2015-05-18 14:00:00,0.0,1004.041667,610.95,46.57416667,21.5675,1.344416667,237.9361751666667 -2015-05-18 15:00:00,0.0,1002.854167,534.2416667,43.5,21.945,1.850333333,237.93514089999996 -2015-05-18 16:00:00,0.0,1001.929167,360.1,41.50583333,21.99583333,2.016166667,237.93393426666663 -2015-05-18 17:00:00,0.0,1001.1625,85.56833333,42.34666667,22.24583333,1.312166667,237.93548566666664 -2015-05-18 18:00:00,0.0,1000.783333,44.405,44.88416667,21.46833333,0.622583333,237.93496853333332 -2015-05-18 19:00:00,0.0,1000.583333,10.36058333,52.0325,17.06333333,0.027416667000000002,237.93514091666665 -2015-05-18 20:00:00,0.0,1000.545833,1.189833333,70.6525,13.5275,0.004,237.9373818 -2015-05-18 21:00:00,0.0,1000.658333,0.0,70.405,11.42583333,0.023833332999999998,237.9382436833333 -2015-05-18 22:00:00,0.0,1000.6833330000001,0.0,70.865,12.56333333,0.108083333,237.93651993333333 -2015-05-18 23:00:00,0.0,1000.3375,0.0,72.0925,14.28083333,0.615916667,237.93841605 -2015-05-19 00:00:00,0.0,999.9583332999998,0.0,68.80083333,12.76833333,0.456583333,237.9385884333333 -2015-05-19 01:00:00,0.0,1000.533333,0.0,77.30333333,13.01416667,1.073166667,237.93514089999996 -2015-05-19 02:00:00,0.0,1001.008333,0.0,81.41333333,11.7175,1.5521666669999998,237.9368646833333 -2015-05-19 03:00:00,0.0,1001.325,0.0,82.58083333,11.06666667,0.372333333,237.93789891666665 -2015-05-19 04:00:00,0.0,1001.5666669999999,1.083,96.15,9.6775,0.3195,237.9385884333333 -2015-05-19 05:00:00,2.405181144,1001.7875,9.692916667,98.53333333,9.155833333,0.09575,237.94013983333332 -2015-05-19 06:00:00,0.0,1002.6875,127.68916670000002,92.975,9.809166667000001,0.38683333299999995,237.93807130000002 -2015-05-19 07:00:00,0.0,1003.575,214.1,80.9425,10.82166667,1.00875,237.93531326666667 -2015-05-19 08:00:00,0.0,1004.0125,167.65,71.3825,11.59333333,1.206916667,237.93427901666666 -2015-05-19 09:00:00,0.0,1004.4333330000001,356.5,68.16666667,12.6525,1.02475,237.93376186666663 -2015-05-19 10:00:00,0.0,1004.4333330000001,458.175,59.94833333,13.77583333,1.187,237.9344513666667 -2015-05-19 11:00:00,0.0,1004.475,702.225,55.49416667,14.90666667,1.2411666670000001,237.93141756 -2015-05-19 12:00:00,0.0,1004.4333330000001,661.7916667000001,51.71416667,16.11916667,1.37375,237.92721156666664 -2015-05-19 13:00:00,0.0,1004.3,640.0416667000001,48.4325,16.26333333,1.379083333,237.92876295 -2015-05-19 14:00:00,0.0,1004.454167,560.05,48.095,16.8025,1.127583333,237.92617729999998 -2015-05-19 15:00:00,0.0,1004.475,483.4416666999999,46.47916667,16.7075,0.980916667,237.9237640166667 -2015-05-19 16:00:00,0.0,1004.283333,345.1,46.35333333,17.22166667,1.069416667,237.9249706833333 -2015-05-19 17:00:00,0.0,1004.275,96.09666667,46.9625,16.4275,0.9425,237.92428116666665 -2015-05-19 18:00:00,0.0,1004.404167,63.025,50.045,15.29,0.5255,237.9239364166667 -2015-05-19 19:00:00,0.0,1004.791667,24.49991667,55.9375,13.9075,0.367166667,237.92186786666662 -2015-05-19 20:00:00,0.0,1005.3166669999999,1.7735833330000002,72.70083333,11.0975,0.124083333,237.92272975 -2015-05-19 21:00:00,0.0,1005.820833,0.0,73.32583333,10.7025,0.199916667,237.9229021333333 -2015-05-19 22:00:00,0.0,1006.179167,0.0,72.95666667,10.26916667,0.141666667,237.92341924999997 -2015-05-19 23:00:00,0.0,1006.0875,0.0,86.95,8.449166667,0.11608333300000001,237.92548781666665 -2015-05-20 00:00:00,0.0,1006.1375,0.0,92.18333333,6.824166667,0.005166667,237.92583255 -2015-05-20 01:00:00,0.0,1006.141667,0.0,90.31333333,7.236916667000001,0.04,237.9261773333333 -2015-05-20 02:00:00,0.0,1006.3083330000001,0.0,85.73333333,6.349583332999999,0.07400000000000001,237.922385 -2015-05-20 03:00:00,0.0,1006.345833,0.0,87.45833333,5.626,0.029833332999999997,237.92669444999999 -2015-05-20 04:00:00,0.0,1006.8375,0.492666667,84.45833333,7.2743333329999995,0.299166667,237.92445353333335 -2015-05-20 05:00:00,0.0,1007.0583330000001,9.575333333,92.65833333,7.736833333,0.01125,237.92669445 -2015-05-20 06:00:00,0.0,1007.575,87.38,90.175,8.377333333,0.09225,237.92634969999997 -2015-05-20 07:00:00,0.0,1008.179167,108.75,88.475,9.865833333,0.167333333,237.92376404999996 -2015-05-20 08:00:00,0.0,1008.529167,184.65,80.72,11.03666667,0.61025,237.9239364 -2015-05-20 09:00:00,0.0,1008.775,153.4833333,76.30333333,11.45083333,0.69725,237.92169555 -2015-05-20 10:00:00,0.0,1009.154167,239.56666669999998,72.69583333,11.3825,0.514,237.92031648333332 -2015-05-20 11:00:00,0.0,1009.429167,338.8333333,64.3475,13.22916667,0.59125,237.91824800000003 -2015-05-20 12:00:00,0.0,1009.729167,384.775,61.155,13.09833333,0.746416667,237.91721375 -2015-05-20 13:00:00,0.0,1009.866667,689.5916667,53.655,14.84083333,0.702833333,237.9156623166667 -2015-05-20 14:00:00,0.0,1010.0375,193.54166669999998,58.05416667,13.59083333,1.316333333,237.91617944999996 -2015-05-20 15:00:00,2.461739112,1010.579167,174.11833330000002,76.71,12.505,0.699583333,237.9165242 -2015-05-20 16:00:00,0.0,1010.845833,319.3333333,65.4525,14.245,0.453666667,237.91411093333332 -2015-05-20 17:00:00,0.0,1010.883333,133.9416667,63.78,14.80416667,0.9956666670000001,237.91497283333334 -2015-05-20 18:00:00,3.30857952,1011.404167,87.32416667,55.3225,14.25833333,2.6654166669999997,237.91445569999996 -2015-05-20 19:00:00,0.0,1012.275,21.91666667,66.59,12.55916667,1.1109166670000001,237.9146281 -2015-05-20 20:00:00,0.0,1013.220833,2.581583333,85.83333333,8.821916667,0.018333333,237.91376621666663 -2015-05-20 21:00:00,0.0,1013.8125,0.0,95.46666667,6.179416667000001,0.019833333,237.91583473333333 -2015-05-20 22:00:00,0.0,1014.458333,0.0,98.51666667,5.152583333,0.081166667,237.91738611666668 -2015-05-20 23:00:00,0.0,1014.979167,0.0,99.79166667,4.3869166669999995,0.04175,237.9179032333333 -2015-05-21 00:00:00,0.0,1015.3625,0.0,99.94166667,3.60625,0.0,237.91807561666664 -2015-05-21 01:00:00,0.0,1015.758333,0.0,100.0,3.568083333,0.044333332999999996,237.91704136666667 -2015-05-21 02:00:00,0.0,1016.2875,0.0,100.0,4.11525,0.149833333,237.91600709999997 -2015-05-21 03:00:00,0.0,1016.508333,0.0,100.0,4.445583333,0.522083333,237.91635186666667 -2015-05-21 04:00:00,0.0,1017.1625,2.988833333,100.0,3.74725,0.09875,237.91652423333335 -2015-05-21 05:00:00,0.0,1017.866667,74.74666667,99.55,4.923166667,0.195,237.91635184999996 -2015-05-21 06:00:00,0.0,1018.6208330000001,185.2,92.26666667,7.4459166670000005,0.421833333,237.91342145 -2015-05-21 07:00:00,0.0,1019.329167,259.0616667,83.2275,9.345,1.415583333,237.91118056666673 -2015-05-21 08:00:00,0.0,1019.516667,147.8833333,69.39833333,10.75166667,2.206583333,237.90911201666668 -2015-05-21 09:00:00,0.0,1019.708333,223.7333333,64.92,11.8,2.2840000000000003,237.91014630000004 -2015-05-21 10:00:00,0.0,1020.179167,408.65833330000004,58.26,12.22,2.4300833330000002,237.90876728333333 -2015-05-21 11:00:00,0.0,1020.4375,415.925,57.68166667,12.8025,2.127583333,237.90618163333338 -2015-05-21 12:00:00,0.0,1020.466667,642.2833333,53.29833333,14.1675,2.69225,237.90480260000004 -2015-05-21 13:00:00,0.0,1020.3625,570.7833333,50.65166667,14.85583333,2.296916667,237.90238933333333 -2015-05-21 14:00:00,0.0,1020.408333,471.375,47.5025,15.43416667,2.659583333,237.8998037 -2015-05-21 15:00:00,0.0,1020.291667,350.2333333,46.1775,15.73416667,2.725666667,237.89704566666668 -2015-05-21 16:00:00,0.0,1020.3125,283.5416667,45.07416667,15.1125,1.6226666669999998,237.89583903333332 -2015-05-21 17:00:00,0.0,1020.295833,98.66416667,50.81583333,15.775,1.131916667,237.8982523 -2015-05-21 18:00:00,0.0,1020.533333,58.12,53.19916667,16.33333333,1.071916667,237.89825228333336 -2015-05-21 19:00:00,0.0,1020.9416669999999,24.77525,74.445,14.15083333,0.625916667,237.89670091666667 -2015-05-21 20:00:00,0.0,1021.404167,1.39375,84.75,11.5725,0.023166667000000002,237.89876941666668 -2015-05-21 21:00:00,0.0,1021.966667,0.0,88.04166667,8.591333333,0.040416667,237.89945893333334 -2015-05-21 22:00:00,0.0,1022.220833,0.0,92.325,6.0083333329999995,0.011333333000000001,237.90135508333333 -2015-05-21 23:00:00,0.0,1022.345833,0.0,95.63333333,4.500416667,0.013999999999999999,237.9006655833333 -2015-05-22 00:00:00,0.0,1022.333333,0.0,97.31666667,3.546166667,0.0,237.90049318333334 -2015-05-22 01:00:00,0.0,1022.3625,0.0,98.69166667,3.4595,0.015833333,237.90152743333337 -2015-05-22 02:00:00,0.0,1022.470833,0.0,98.775,5.0578333330000005,0.0,237.89997605000005 -2015-05-22 03:00:00,0.0,1022.358333,0.0,98.16666667,5.574666667000001,0.0,237.89997605000005 -2015-05-22 04:00:00,0.0,1022.0125,3.23375,99.59166667,4.048833333,0.0105,237.90256173333339 -2015-05-22 05:00:00,0.0,1022.158333,55.04583333,99.43333333,4.12775,0.00425,237.90187221666667 -2015-05-22 06:00:00,0.0,1022.383333,157.56666669999998,86.585,7.7024166670000005,0.17275,237.8996313166667 -2015-05-22 07:00:00,0.0,1022.595833,239.83333330000002,74.41666667,9.6825,0.45125,237.89756278333334 -2015-05-22 08:00:00,0.0,1022.5625,169.9083333,62.185,13.02166667,0.660083333,237.89532188333337 -2015-05-22 09:00:00,0.0,1022.3791669999999,422.3583333000001,56.45416667,15.0275,1.05775,237.8929086166667 -2015-05-22 10:00:00,0.0,1021.908333,430.95,58.2925,16.41416667,1.050583333,237.88980581666667 -2015-05-22 11:00:00,0.0,1021.395833,739.7083332999999,51.635,17.185,1.306666667,237.88946106666666 -2015-05-22 12:00:00,0.0,1020.7875,741.3916667000001,47.22416667,18.61083333,1.067,237.88635828333338 -2015-05-22 13:00:00,0.0,1019.9958330000001,421.825,47.63166667,18.98416667,1.113916667,237.88618591666668 -2015-05-22 14:00:00,0.0,1019.533333,509.25833330000006,43.79583333,20.00416667,0.897166667,237.88394505 -2015-05-22 15:00:00,0.0,1018.891667,400.78333330000004,43.89416667,19.3125,1.2675,237.88342788333333 -2015-05-22 16:00:00,0.0,1018.295833,158.58333330000002,51.38583333,18.97166667,0.957666667,237.88308313333334 -2015-05-22 17:00:00,0.0,1017.770833,125.43333329999999,51.92916667,19.9775,0.6625,237.88135936666663 -2015-05-22 18:00:00,0.0,1017.3791669999999,84.07166667,51.03333333,19.24583333,0.887416667,237.88032510000002 -2015-05-22 19:00:00,0.0,1017.425,23.21916667,74.47166667,16.9575,0.078,237.8808422333333 -2015-05-22 20:00:00,0.0,1017.695833,1.6226666669999998,81.17583333,14.35833333,0.011166667,237.88101461666665 -2015-05-22 21:00:00,0.0,1017.779167,0.0,83.55833333,13.3575,0.001166667,237.88049749999996 -2015-05-22 22:00:00,0.0,1017.516667,0.0,85.8,12.71166667,0.026000000000000002,237.8815317333333 -2015-05-22 23:00:00,0.0,1017.508333,0.0,88.58333333,12.0825,0.043083333,237.88204886666665 -2015-05-23 00:00:00,0.0,1017.233333,0.0,92.46666667,11.22916667,0.0115,237.88170411666667 -2015-05-23 01:00:00,0.0,1016.8708330000001,0.0,93.64166667,10.965,0.0025833329999999997,237.88222124999996 -2015-05-23 02:00:00,0.0,1016.508333,0.0,94.38333333,11.15666667,0.009666667,237.88342788333333 -2015-05-23 03:00:00,0.0,1016.229167,0.0,95.05,11.15583333,0.00625,237.88549643333332 -2015-05-23 04:00:00,0.0,1015.858333,1.8719999999999999,95.56666667,10.9725,0.001166667,237.88653068333335 -2015-05-23 05:00:00,0.0,1015.8,20.4475,94.98333333,11.0725,0.032666667,237.88687543333336 -2015-05-23 06:00:00,0.0,1016.25,42.61666667,93.025,12.06,0.09175,237.88532403333332 -2015-05-23 07:00:00,0.0,1016.545833,96.66333333,86.78583333,13.66583333,0.046916667,237.88601353333334 -2015-05-23 08:00:00,0.0,1016.6,189.75,75.54333333,15.535,0.539333333,237.88291076666667 -2015-05-23 09:00:00,0.0,1016.516667,285.1833333,66.005,16.60833333,1.344333333,237.88049748333336 -2015-05-23 10:00:00,0.0,1016.5583330000001,302.5833333,61.83416667,17.57416667,1.587083333,237.87480908333336 -2015-05-23 11:00:00,0.0,1016.1125,246.70833330000002,61.5025,17.47083333,2.09975,237.87429195 -2015-05-23 12:00:00,0.0,1015.725,478.4416666999999,56.60666667,18.3375,1.522416667,237.87343005000002 -2015-05-23 13:00:00,0.0,1015.054167,378.5416667,57.38333333,19.30333333,1.53125,237.87067201666665 -2015-05-23 14:00:00,0.0,1014.708333,193.70833330000002,60.81833333,18.545,2.2206666669999997,237.87256818333336 -2015-05-23 15:00:00,0.0,1014.479167,211.0916667,59.30166667,18.69,1.852583333,237.87136153333333 -2015-05-23 16:00:00,0.0,1014.279167,157.7666667,63.19,18.48916667,2.177083333,237.86946538333333 -2015-05-23 17:00:00,0.0,1014.0875,112.025,65.02083333,18.28583333,1.5643333330000002,237.867914 -2015-05-23 18:00:00,0.0,1013.845833,58.4225,67.60333333,18.1175,1.106333333,237.8680863666667 -2015-05-23 19:00:00,0.0,1014.179167,10.40916667,74.19416667,17.28333333,2.098416667,237.867914 -2015-05-23 20:00:00,0.0,1014.5125,1.0805,75.56833333,16.35833333,2.126833333,237.86894825000005 -2015-05-23 21:00:00,0.0,1015.1,0.0,80.41166667,15.6175,2.195666667,237.86877586666665 -2015-05-23 22:00:00,0.0,1015.166667,0.0,84.38333333,14.5825,2.2791666669999997,237.86894825000002 -2015-05-23 23:00:00,0.0,1015.333333,0.0,87.99166667,13.89666667,1.4331666669999998,237.87049963333337 -2015-05-24 00:00:00,0.0,1015.425,0.0,90.33333333,13.28583333,0.976583333,237.87015488333336 -2015-05-24 01:00:00,0.0,1015.225,0.0,91.325,12.73833333,1.039833333,237.87118915000005 -2015-05-24 02:00:00,0.0,1015.091667,0.0,93.125,12.31916667,0.75225,237.87222340000002 -2015-05-24 03:00:00,0.0,1014.8083330000001,0.0,96.98333333,11.53416667,0.574916667,237.87411956666665 -2015-05-24 04:00:00,0.0,1014.6875,2.829333333,99.3,11.07916667,0.195416667,237.87239579999996 -2015-05-24 05:00:00,0.0,1014.7458330000001,35.1275,99.80833333,10.9225,0.2085,237.87239578333333 -2015-05-24 06:00:00,0.0,1015.1375,99.67333333,92.23333333,11.80166667,1.23675,237.87049963333334 -2015-05-24 07:00:00,0.0,1015.2875,159.33333330000002,88.125,12.48916667,1.928666667,237.87118913333336 -2015-05-24 08:00:00,0.0,1015.645833,175.9916667,85.84166667,13.16333333,1.288666667,237.86860351666667 -2015-05-24 09:00:00,0.0,1015.5625,322.53333330000004,81.39166667,14.5525,0.949583333,237.8667073666667 -2015-05-24 10:00:00,0.0,1015.3125,361.65833330000004,78.24,15.84,0.904666667,237.86429408333333 -2015-05-24 11:00:00,0.0,1015.025,475.4,74.60166667,17.19,1.026916667,237.8625703 -2015-05-24 12:00:00,0.0,1014.758333,407.21666669999996,71.86916667,18.48583333,0.9159999999999999,237.85963991666668 -2015-05-24 13:00:00,0.0,1014.208333,498.6916666999999,67.10583333,20.1975,0.849166667,237.8592951666667 -2015-05-24 14:00:00,0.0,1013.758333,529.2583333,61.75166667,20.6275,0.633166667,237.85774378333335 -2015-05-24 15:00:00,0.0,1013.204167,215.8,60.8225,20.20083333,0.7745833329999999,237.8572266333333 -2015-05-24 16:00:00,0.0,1012.791667,78.80333333,66.95583333,19.32916667,0.774833333,237.85774379999998 -2015-05-24 17:00:00,0.0,1012.35,34.0375,78.50166667,18.50916667,0.357416667,237.85912281666666 -2015-05-24 18:00:00,0.0,1012.225,19.63916667,87.45833333,16.9525,0.022000000000000002,237.85860566666668 -2015-05-24 19:00:00,0.0,1012.0666669999999,5.832083333,91.19166667,15.86583333,0.0105,237.86032941666667 -2015-05-24 20:00:00,0.0,1012.229167,1.051916667,95.0,15.4925,0.1935,237.8599846666667 -2015-05-24 21:00:00,0.0,1012.225,0.0,97.13333333,14.50583333,0.050083333,237.86153606666664 -2015-05-24 22:00:00,0.0,1012.275,0.0,91.10833333,14.38083333,0.146666667,237.8629150666666 -2015-05-24 23:00:00,0.0,1012.2375,0.0,92.53333333,14.51583333,0.563666667,237.86084655000002 -2015-05-25 00:00:00,12.42783226,1011.675,0.0,99.45833333,13.92916667,0.402583333,237.86170844999995 -2015-05-25 01:00:00,0.0,1011.445833,0.0,100.0,13.36166667,0.150416667,237.86343219999995 -2015-05-25 02:00:00,0.0,1011.1,0.0,100.0,13.06,0.3535,237.8636045666666 -2015-05-25 03:00:00,0.0,1010.858333,0.0,100.0,12.4,0.050583333,237.8648112 -2015-05-25 04:00:00,0.0,1010.6833330000001,2.29225,100.0,10.72666667,0.06275,237.86756924999997 -2015-05-25 05:00:00,0.0,1010.85,17.13808333,100.0,11.5425,0.162083333,237.8680863666667 -2015-05-25 06:00:00,0.0,1010.766667,71.11833333,100.0,12.48333333,0.414,237.8672244833333 -2015-05-25 07:00:00,0.0,1010.866667,170.2666667,98.18333333,13.54583333,0.658666667,237.86653496666665 -2015-05-25 08:00:00,0.0,1010.845833,190.70833330000002,92.75,15.28,0.572416667,237.86722446666667 -2015-05-25 09:00:00,0.0,1010.775,265.7916667,82.93833333,15.241212699999998,1.186166667,237.86463884999998 -2015-05-25 10:00:00,0.0,1010.416667,234.5916667,76.405,15.72583333,2.0605833330000003,237.8636046 -2015-05-25 11:00:00,0.0,1010.175,386.1416667,74.4875,15.78416667,1.8668333330000002,237.8618808 -2015-05-25 12:00:00,3.267971256,1010.0583330000001,508.75,64.67833333,17.21166667,1.896166667,237.8567095 -2015-05-25 13:00:00,0.0,1009.708333,207.875,80.99583333,15.04416667,1.04625,237.8568819 -2015-05-25 14:00:00,2.621306232,1009.4875,339.03333330000004,83.86416667,14.82083333,1.468833333,237.85515813333333 -2015-05-25 15:00:00,0.0,1009.408333,242.0166667,82.47333333,15.15666667,2.402666667,237.85343435000001 -2015-05-25 16:00:00,0.0,1009.091667,192.16666669999998,80.50166667,14.9025,2.661166667,237.8539515 -2015-05-25 17:00:00,0.0,1008.854167,156.3583333,72.37083333,16.1325,1.9200833330000002,237.8522277333333 -2015-05-25 18:00:00,0.0,1008.820833,72.04166667,71.41416667,15.75083333,2.409416667,237.8501592 -2015-05-25 19:00:00,0.0,1009.0625,26.56416667,73.45583333,14.31833333,1.9265833330000002,237.85153820000005 -2015-05-25 20:00:00,0.0,1009.483333,2.31975,73.12083333,13.75166667,1.194916667,237.85205533333337 -2015-05-25 21:00:00,0.0,1010.1875,0.0,75.905,13.0175,1.6105833330000001,237.85446860000002 -2015-05-25 22:00:00,0.0,1010.358333,0.0,80.78916667,12.02166667,0.7565,237.85464098333333 -2015-05-25 23:00:00,0.0,1010.25,0.0,89.96666667,11.23833333,0.47,237.85636476666664 -2015-05-26 00:00:00,0.0,1010.216667,0.0,97.05,10.14166667,0.650083333,237.8572266333333 -2015-05-26 01:00:00,0.0,1010.425,0.0,96.24166667,11.3,1.39225,237.85791616666666 -2015-05-26 02:00:00,0.0,1010.595833,0.0,95.84166667,10.8925,0.991583333,237.85757136666666 -2015-05-26 03:00:00,0.0,1010.95,0.0,90.66666667,10.62583333,0.392,237.85826091666664 -2015-05-26 04:00:00,0.0,1011.4333330000001,1.259666667,85.7,10.5825,0.809333333,237.85860566666668 -2015-05-26 05:00:00,0.0,1011.825,23.65,87.06666667,10.41416667,0.5611666670000001,237.8599846666667 -2015-05-26 06:00:00,0.0,1012.4875,71.8,84.35,10.755,0.602166667,237.85739901666668 -2015-05-26 07:00:00,0.0,1013.229167,152.925,78.97166667,11.08333333,1.126583333,237.85567525 -2015-05-26 08:00:00,0.0,1013.704167,198.975,72.31416667,11.47,1.793166667,237.85446863333334 -2015-05-26 09:00:00,0.0,1013.920833,237.41666669999998,72.22166667,11.50183236,2.221833333,237.85240011666664 -2015-05-26 10:00:00,0.0,1014.2458330000001,287.675,62.32416667,12.35583333,2.782666667,237.84946971666662 -2015-05-26 11:00:00,0.0,1014.5625,397.775,53.9925,12.72333333,2.792916667,237.84929733333334 -2015-05-26 12:00:00,0.0,1014.820833,487.0,49.91333333,13.25333333,3.004416667,237.84602216666664 -2015-05-26 13:00:00,0.0,1014.783333,531.5916666999999,48.05583333,14.16666667,2.87925,237.84447076666666 -2015-05-26 14:00:00,0.0,1015.125,223.5916667,57.40416667,13.23833333,3.737166667,237.84602213333332 -2015-05-26 15:00:00,0.0,1015.541667,176.8,60.77083333,12.9175,3.516833333,237.84378126666664 -2015-05-26 16:00:00,0.0,1015.8083330000001,142.30833330000002,64.51333333,12.4575,2.77075,237.84257465000005 -2015-05-26 17:00:00,0.0,1015.85,118.01666670000002,68.87916667,12.23166667,1.32825,237.8432641333333 -2015-05-26 18:00:00,0.0,1016.341667,52.50833333,68.7425,12.16416667,1.420833333,237.83981658333332 -2015-05-26 19:00:00,0.0,1016.6208330000001,23.71333333,68.09583333,11.8875,1.174833333,237.84016135000002 -2015-05-26 20:00:00,0.0,1017.016667,2.54,73.04333333,11.18916667,1.1925,237.84102321666668 -2015-05-26 21:00:00,0.0,1017.4333330000001,0.0,91.10833333,9.453333333,0.148333333,237.84240226666665 -2015-05-26 22:00:00,0.0,1017.5666669999999,0.0,96.89166667,6.5035,0.166916667,237.84481549999998 -2015-05-26 23:00:00,0.0,1017.783333,0.0,99.24166667,5.068583333,0.06383333299999999,237.84636688333333 -2015-05-27 00:00:00,0.0,1018.1375,0.0,100.0,4.60325,0.14525,237.84809068333334 -2015-05-27 01:00:00,0.0,1018.4416669999999,0.0,100.0,4.095583333,0.011166667,237.84705641666665 -2015-05-27 02:00:00,0.0,1018.695833,0.0,100.0,3.826166667,0.015083333,237.84757355 -2015-05-27 03:00:00,0.0,1018.7541669999999,0.0,100.0,3.428666667,0.09775,237.84860783333332 -2015-05-27 04:00:00,0.0,1019.025,2.391916667,100.0,5.319583333,0.36925,237.8486078 -2015-05-27 05:00:00,0.0,1019.2,21.40916667,100.0,6.615833332999999,0.370666667,237.8486078 -2015-05-27 06:00:00,0.0,1019.608333,67.5175,95.85833333,7.606666667000001,0.33983333299999996,237.84964206666666 -2015-05-27 07:00:00,0.0,1019.908333,126.29166670000001,89.35,8.817416667,0.43775,237.84791833333335 -2015-05-27 08:00:00,0.0,1020.2625,210.9666667,80.28083333,10.1925,0.39,237.84757358333334 -2015-05-27 09:00:00,0.0,1020.3166669999999,334.0083333,68.04416667,11.68083333,0.917,237.84326415 -2015-05-27 10:00:00,0.0,1020.175,338.825,62.26916667,11.94916667,1.2345,237.83895475 -2015-05-27 11:00:00,0.0,1019.95,225.58333330000002,59.78833333,12.47083333,0.759083333,237.83912709999996 -2015-05-27 12:00:00,0.0,1019.679167,336.0,59.12,13.14083333,0.6948333329999999,237.83843760000002 -2015-05-27 13:00:00,0.0,1019.3791669999999,333.95,58.82416667,13.65,0.85075,237.83705858333335 -2015-05-27 14:00:00,0.0,1018.929167,471.625,55.29333333,14.39916667,0.930666667,237.83464531666664 -2015-05-27 15:00:00,0.0,1018.475,316.35,53.12416667,14.08166667,1.0865833329999999,237.83516244999998 -2015-05-27 16:00:00,0.0,1018.275,222.7166667,55.51083333,14.38666667,0.47066666700000004,237.83292155 -2015-05-27 17:00:00,0.0,1017.8708330000001,120.54166670000001,57.48166667,14.57166667,0.20025,237.83274918333333 -2015-05-27 18:00:00,0.0,1017.529167,83.0475,61.26666667,13.93916667,0.253833333,237.83137015 -2015-05-27 19:00:00,0.0,1017.05,45.67833333,66.29583333,13.4525,0.45825,237.83188726666666 -2015-05-27 20:00:00,0.0,1016.8708330000001,2.76675,86.75583333,9.627833333,0.192583333,237.8339558 -2015-05-27 21:00:00,0.0,1016.5125,0.0,91.925,6.7896666670000005,0.209333333,237.83740331666664 -2015-05-27 22:00:00,0.0,1015.983333,0.0,96.45,5.6295,0.052000000000000005,237.83860994999998 -2015-05-27 23:00:00,0.0,1015.529167,0.0,96.76666667,5.19825,0.02125,237.84050609999997 -2015-05-28 00:00:00,0.0,1015.025,0.0,98.01666667,4.752083333,0.00325,237.84240225 -2015-05-28 01:00:00,0.0,1014.6916669999999,0.0,93.13333333,5.15,0.02575,237.84154034999997 -2015-05-28 02:00:00,0.0,1014.2125,0.0,89.43333333,5.80325,0.043166667,237.8432641333333 -2015-05-28 03:00:00,0.0,1013.645833,0.0,92.45,6.339583332999999,0.00025,237.8439536333333 -2015-05-28 04:00:00,0.0,1013.1291669999999,3.638083333,96.63333333,5.95425,0.078166667,237.84533266666668 -2015-05-28 05:00:00,0.0,1012.966667,32.22833333,95.65,6.340833333,0.06383333299999999,237.84584980000002 -2015-05-28 06:00:00,0.0,1012.875,74.71416667,90.125,8.011833333,0.338916667,237.84464315 -2015-05-28 07:00:00,0.0,1012.7458330000001,143.8608333,88.38333333,9.9175,0.307916667,237.8429193833333 -2015-05-28 08:00:00,0.0,1012.366667,189.19166669999998,70.8125,12.58416667,0.5325833329999999,237.84171273333334 -2015-05-28 09:00:00,0.0,1011.9333330000001,298.03333330000004,63.82833333,15.935,0.872,237.83826521666663 -2015-05-28 10:00:00,0.0,1011.270833,500.6833333000001,60.915,17.47583333,1.199083333,237.83378341666665 -2015-05-28 11:00:00,0.0,1010.5875,592.1833333,59.33333333,18.38583333,2.194,237.83016351666666 -2015-05-28 12:00:00,0.0,1010.0625,591.6166667,58.87333333,19.9575,2.407083333,237.8270607333333 -2015-05-28 13:00:00,0.0,1009.579167,162.0358333,57.87166667,19.415,1.523916667,237.82516460000002 -2015-05-28 14:00:00,0.0,1009.233333,75.165,58.1425,18.45333333,0.599583333,237.82619886666666 -2015-05-28 15:00:00,0.0,1009.045833,155.0283333,58.95916667,18.435,0.2785,237.82585410000002 -2015-05-28 16:00:00,0.0,1008.954167,131.3216667,58.51833333,19.03083333,0.707916667,237.82275131666668 -2015-05-28 17:00:00,0.0,1008.625,124.3125,66.18666667,18.33,0.766333333,237.82378558333335 -2015-05-28 18:00:00,0.0,1008.55,52.79833333,68.83916667,18.43833333,0.270416667,237.82292370000005 -2015-05-28 19:00:00,0.0,1008.820833,19.825,69.2675,16.8625,0.61075,237.82447508333337 -2015-05-28 20:00:00,0.0,1009.15,2.747,65.25666667,15.5575,0.400583333,237.82550933333331 -2015-05-28 21:00:00,0.0,1009.491667,0.0,73.33916667,11.96166667,0.029583333,237.82671598333332 -2015-05-28 22:00:00,0.0,1009.970833,0.0,87.575,11.88333333,0.245,237.82688835 -2015-05-28 23:00:00,0.0,1009.9875,0.0,95.04166667,10.19583333,0.023,237.8293016 -2015-05-29 00:00:00,0.0,1009.9875,0.0,96.58333333,9.415,0.015916667,237.8301635 -2015-05-29 01:00:00,0.0,1009.679167,0.0,98.18333333,9.41,0.12791666699999998,237.8339558 -2015-05-29 02:00:00,0.0,1009.2875,0.0,99.9,8.463333333,0.075416667,237.83378343333334 -2015-05-29 03:00:00,0.0,1008.9,0.0,100.0,7.973666667000001,0.169333333,237.83309391666668 -2015-05-29 04:00:00,0.0,1008.445833,6.3975,100.0,6.95,0.04275,237.83688619999998 -2015-05-29 05:00:00,0.0,1008.595833,87.50166667,99.05,7.534833333,0.06125,237.83464531666667 -2015-05-29 06:00:00,0.0,1008.75,168.0166667,82.66083333,11.31583333,0.243916667,237.83292155 -2015-05-29 07:00:00,0.0,1008.6916669999999,202.2583333,76.405,13.51416667,0.4085,237.83274918333336 -2015-05-29 08:00:00,0.0,1008.458333,207.85,70.54666667,14.54583333,0.81825,237.83085303333334 -2015-05-29 09:00:00,0.0,1008.195833,378.5666667,66.20583333,15.85583333,0.735833333,237.82688835 -2015-05-29 10:00:00,0.0,1008.091667,158.275,67.3425,15.13833333,0.70925,237.82378556666671 -2015-05-29 11:00:00,0.0,1007.766667,352.6833333,67.72,15.6425,0.56625,237.82171703333333 -2015-05-29 12:00:00,0.0,1006.9375,253.1583333,67.1625,16.76166667,0.612166667,237.82068278333335 -2015-05-29 13:00:00,0.0,1005.804167,130.50833329999998,70.43,15.85583333,0.249,237.8213723 -2015-05-29 14:00:00,5.018446728,1005.4125,138.7091667,78.605,15.72,0.32858333300000003,237.8130982166667 -2015-05-29 15:00:00,12.13631518,1005.041667,149.91416669999998,92.13333333,14.24166667,0.147416667,237.81085731666667 -2015-05-29 16:00:00,0.0,1004.520833,144.675,89.4,14.23416667,0.4935,237.81171923333332 -2015-05-29 17:00:00,0.0,1004.483333,150.91666669999998,89.1,15.18333333,0.496333333,237.81206398333336 -2015-05-29 18:00:00,0.0,1004.166667,96.91833333,84.68333333,15.18583333,0.523083333,237.81223635000003 -2015-05-29 19:00:00,0.0,1004.483333,49.18083333,80.75416667,14.49333333,0.472416667,237.81430488333334 -2015-05-29 20:00:00,0.0,1004.770833,3.6195,88.075,12.66666667,0.523,237.81516675000003 -2015-05-29 21:00:00,0.0,1004.8708330000001,0.0,85.825,12.2075,0.734583333,237.816201 -2015-05-29 22:00:00,0.0,1005.025,0.0,78.6975,11.87583333,0.847916667,237.81516675000003 -2015-05-29 23:00:00,0.0,1004.608333,0.0,81.43916667,12.44666667,1.05975,237.81740765000004 -2015-05-30 00:00:00,0.0,1004.3083330000001,0.0,78.77083333,12.34083333,0.820083333,237.81671813333332 -2015-05-30 01:00:00,35.52657874,1006.029167,0.0,90.81916667,9.574166667,2.14025,237.81758000000002 -2015-05-30 02:00:00,2.414751624,1005.820833,0.0,96.8,8.1325,0.111583333,237.82085515000003 -2015-05-30 03:00:00,2.45344656,1005.7375,0.0,97.61666667,8.0365,0.201583333,237.82309605000003 -2015-05-30 04:00:00,0.0,1006.05,4.1645,98.8,6.8995,0.024166667000000003,237.8229236666667 -2015-05-30 05:00:00,0.0,1006.929167,82.35,98.19166667,6.857166667,0.056666667000000004,237.82326843333337 -2015-05-30 06:00:00,0.0,1007.529167,206.4666667,93.54166667,9.795833333,0.260916667,237.82292368333336 -2015-05-30 07:00:00,0.0,1008.325,227.61333330000002,87.55833333,11.07833333,0.7719166670000001,237.82275130000005 -2015-05-30 08:00:00,2.7436471439999996,1008.766667,144.91666669999998,81.68,12.2525,1.158083333,237.82171705000005 -2015-05-30 09:00:00,0.0,1009.1291669999999,268.0166667,74.72666667,13.05416667,1.181583333,237.82137230000004 -2015-05-30 10:00:00,0.0,1009.3791669999999,378.075,67.67,14.065,0.912,237.8168905 -2015-05-30 11:00:00,0.0,1009.5375,326.8583333,64.30416667,14.20666667,0.9445,237.81551148333332 -2015-05-30 12:00:00,0.0,1009.991667,532.025,58.91916667,15.25666667,1.071166667,237.80999543333334 -2015-05-30 13:00:00,0.0,1010.341667,533.2666667,50.74416667,16.27833333,1.295583333,237.80689266666664 -2015-05-30 14:00:00,0.0,1010.633333,478.53333330000004,49.44833333,16.13833333,1.365,237.80344513333338 -2015-05-30 15:00:00,0.0,1010.825,178.36833330000002,50.14666667,15.87916667,1.22325,237.80310036666665 -2015-05-30 16:00:00,0.0,1011.491667,107.74916670000002,53.78083333,14.7125,1.708083333,237.80223848333333 -2015-05-30 17:00:00,0.0,1012.125,134.35,62.57666667,13.96333333,2.9329166669999998,237.80258325 -2015-05-30 18:00:00,0.0,1012.45,83.40666667,63.85,13.2275,2.42625,237.80344509999998 -2015-05-30 19:00:00,0.0,1012.770833,32.36416667,69.01416667,12.08833333,0.726833333,237.80344511666667 -2015-05-30 20:00:00,0.0,1012.9,3.965,88.41666667,9.65325,0.00875,237.80585838333332 -2015-05-30 21:00:00,0.0,1012.8708330000001,0.0,95.39166667,7.0709166670000005,0.012416667,237.80844404999996 -2015-05-30 22:00:00,0.0,1013.041667,0.0,97.975,5.643416667,0.048083333,237.80999541666665 -2015-05-30 23:00:00,0.0,1013.091667,0.0,99.9,4.194,0.00525,237.81120206666665 -2015-05-31 00:00:00,0.0,1012.866667,0.0,100.0,3.405166667,0.0,237.81327058333332 -2015-05-31 01:00:00,0.0,1012.625,0.0,100.0,2.97025,0.00425,237.81327060000004 -2015-05-31 02:00:00,0.0,1012.3083330000001,0.0,100.0,2.594416667,0.0,237.81551148333332 -2015-05-31 03:00:00,0.0,1011.9625,0.00375,100.0,2.558666667,0.0,237.81637336666668 -2015-05-31 04:00:00,0.0,1011.891667,3.9245,100.0,2.628666667,0.0,237.8170629 -2015-05-31 05:00:00,0.0,1011.766667,58.00916667,100.0,3.3175,0.0,237.8175800166667 -2015-05-31 06:00:00,0.0,1011.716667,184.2416667,93.63333333,6.646166667,0.211916667,237.81620101666667 -2015-05-31 07:00:00,0.0,1011.6625,179.95833330000002,87.91666667,9.421666667,0.202833333,237.81533913333337 -2015-05-31 08:00:00,0.0,1011.320833,220.975,84.05833333,11.21,0.43458333299999996,237.81585625000002 -2015-05-31 09:00:00,0.0,1011.008333,321.6833333,76.45666667,14.6275,0.57825,237.81378775 -2015-05-31 10:00:00,0.0,1010.554167,376.34166669999996,63.78583333,17.61,0.669,237.8096506833333 -2015-05-31 11:00:00,0.0,1010.0875,371.875,62.18333333,18.22916667,1.1401666670000001,237.80637554999998 -2015-05-31 12:00:00,0.0,1009.858333,471.625,60.89833333,18.98,1.514666667,237.80051473333333 -2015-05-31 13:00:00,0.0,1009.520833,321.0083333,61.41083333,19.2475,2.066083333,237.79775668333335 -2015-05-31 14:00:00,0.0,1008.908333,324.3,59.24833333,19.91,2.358166667,237.79689481666665 -2015-05-31 15:00:00,0.0,1008.366667,414.2416667,56.48666667,21.055,2.499166667,237.79465391666668 -2015-05-31 16:00:00,0.0,1007.854167,254.05,56.96583333,21.19166667,2.09075,237.79534345000002 -2015-05-31 17:00:00,0.0,1007.508333,85.88083333,55.55666667,20.7275,1.458666667,237.79637768333336 -2015-05-31 18:00:00,0.0,1007.3125,49.98666667,58.03333333,20.09166667,0.926166667,237.7963777 -2015-05-31 19:00:00,0.0,1007.65,27.43166667,68.58416667,19.0175,0.88275,237.7955158166667 -2015-05-31 20:00:00,0.0,1007.791667,5.069583333,79.84166667,17.2925,0.5469166670000001,237.79723958333332 -2015-05-31 21:00:00,0.0,1007.85,0.0,82.24083333,15.99083333,0.759916667,237.79758435 -2015-05-31 22:00:00,0.0,1007.595833,0.0,81.26666667,15.44916667,0.76025,237.79982520000002 -2015-05-31 23:00:00,0.0,1007.716667,0.0,80.48833333,16.37083333,0.632166667,237.7991357 -2015-01-06 00:00:00,0.0,1007.733333,0.0,83.54583333,16.44833333,0.886916667, -2015-01-06 01:00:00,2.668184112,1007.358333,0.0,93.09166667,15.35333333,1.044833333, -2015-01-06 02:00:00,8.088800688,1007.5041669999999,0.0,97.4,14.66916667,1.248916667, -2015-01-06 03:00:00,22.31970468,1007.904167,0.0,97.2,14.80166667,1.453416667, -2015-01-06 04:00:00,7.53379068,1008.9958330000001,1.594583333,98.35833333,12.87916667,0.309583333, -2015-01-06 05:00:00,0.0,1009.5583330000001,27.50733333,98.25833333,12.24666667,0.314833333, -2015-01-06 06:00:00,2.430876192,1010.3125,62.31916667,98.44166667,12.63666667,0.178916667, -2015-01-06 07:00:00,0.0,1010.945833,135.5916667,96.56666667,13.16583333,0.44708333299999997, -2015-01-06 08:00:00,0.0,1011.55,159.3416667,90.36666667,13.66916667,1.0070000000000001, -2015-01-06 09:00:00,0.0,1011.9333330000001,95.50083333,89.64166667,12.48416667,2.393333333, -2015-01-06 10:00:00,0.0,1012.266667,86.65583333,91.35833333,11.74916667,1.9875833330000001, -2015-01-06 11:00:00,0.0,1012.55,113.61666670000001,87.60833333,12.09583333,1.55825, -2015-01-06 12:00:00,2.744701248,1013.025,116.56666670000001,88.43333333,12.21916667,0.963916667, -2015-01-06 13:00:00,0.0,1013.091667,340.0583333,82.54916667,12.87833333,1.02975, -2015-01-06 14:00:00,0.0,1013.1375,356.7333333,76.85833333,14.44166667,0.972166667, -2015-01-06 15:00:00,0.0,1013.15,407.3333333,71.71083333,15.5625,0.880166667, -2015-01-06 16:00:00,0.0,1012.645833,301.46666669999996,69.05833333,15.46916667,1.4031666669999998, -2015-01-06 17:00:00,0.0,1012.170833,152.05,81.775,15.13416667,1.949, -2015-01-06 18:00:00,0.0,1011.7541669999999,89.15083333,85.13333333,14.37666667,2.0876666669999997, -2015-01-06 19:00:00,0.0,1011.541667,72.12833333,88.28333333,14.0175,2.253, -2015-01-06 20:00:00,0.0,1011.1916669999999,4.692416667,94.85,12.51833333,2.03925, -2015-01-06 21:00:00,0.0,1011.2458330000001,0.0,99.73333333,10.37416667,1.147833333, -2015-01-06 22:00:00,0.0,1011.158333,0.0,100.0,8.441166667000001,0.10275, -2015-01-06 23:00:00,0.0,1011.125,0.0,96.33333333,8.2445,0.33916666700000003, -2015-02-06 00:00:00,0.0,1011.070833,0.0,96.24166667,10.18833333,0.722333333, -2015-02-06 01:00:00,0.0,1010.920833,0.0,90.70833333,8.681666667,0.71525, -2015-02-06 02:00:00,0.0,1011.041667,0.0,90.91666667,7.586583332999999,0.15675, -2015-02-06 03:00:00,0.0,1010.458333,0.005166667,96.73333333,6.7455,0.067166667, -2015-02-06 04:00:00,0.0,1010.133333,5.88225,100.0,6.108166667000001,0.058083333, -2015-02-06 05:00:00,0.0,1010.1916669999999,37.15166667,93.025,7.10375,0.072083333, -2015-02-06 06:00:00,0.0,1010.1291669999999,67.59083333,87.075,10.22741667,0.5708333329999999, -2015-02-06 07:00:00,0.0,1010.4416669999999,98.69416667,86.56666667,13.92916667,1.90375, -2015-02-06 08:00:00,0.0,1010.533333,194.6,81.315,14.68083333,1.683, -2015-02-06 09:00:00,0.0,1010.675,255.525,73.62583333,15.85833333,1.895666667, -2015-02-06 10:00:00,0.0,1010.720833,250.2583333,73.03,16.16666667,2.373416667, -2015-02-06 11:00:00,0.0,1010.858333,203.8583333,71.16083333,16.90916667,1.93725, -2015-02-06 12:00:00,0.0,1010.85,224.65,62.815,18.14083333,1.739333333, -2015-02-06 13:00:00,0.0,1010.645833,629.1333333,54.7075,20.7975,2.22625, -2015-02-06 14:00:00,0.0,1010.304167,611.6,48.91916667,22.92,2.4755, -2015-02-06 15:00:00,0.0,1010.0583330000001,553.3416667,47.915,23.67916667,2.251833333, -2015-02-06 16:00:00,0.0,1010.166667,436.66666669999995,49.8125,24.8275,1.9536666669999998, -2015-02-06 17:00:00,0.0,1010.070833,100.2375,49.18583333,24.64666667,2.128833333, -2015-02-06 18:00:00,0.0,1009.891667,85.085,47.42083333,24.20083333,2.113083333, -2015-02-06 19:00:00,0.0,1010.208333,24.18825,50.67833333,22.95583333,1.4885, -2015-02-06 20:00:00,0.0,1010.733333,3.35175,57.62,20.94166667,1.137166667, -2015-02-06 21:00:00,0.0,1011.341667,0.025333333,64.80166667,18.92083333,0.74825, -2015-02-06 22:00:00,0.0,1011.658333,0.0,74.72333333,14.085,0.09225, -2015-02-06 23:00:00,0.0,1011.675,0.0,78.0725,14.08583333,0.39816666700000003, -2015-03-06 00:00:00,0.0,1011.866667,0.0,68.48,16.62083333,0.746583333,238.03095266666665 -2015-03-06 01:00:00,0.0,1012.125,0.0,71.34583333,17.2525,0.6878333329999999,238.03028599999996 -2015-03-06 02:00:00,0.0,1012.1,0.0,82.83083333,14.24333333,0.260083333,238.03198599999996 -2015-03-06 03:00:00,0.0,1012.1916669999999,0.03475,82.38333333,11.01666667,0.068833333,238.03268599999998 -2015-03-06 04:00:00,0.0,1012.625,7.134583332999999,88.55833333,9.583333332999999,0.028833333,238.033036 -2015-03-06 05:00:00,0.0,1013.195833,87.915,81.8075,11.26166667,0.070666667,238.03405266666664 -2015-03-06 06:00:00,0.0,1014.05,180.325,77.65583333,17.95583333,0.559666667,238.03471933333333 -2015-03-06 07:00:00,0.0,1014.833333,197.8116667,75.84666667,18.90916667,0.988166667,238.03540266666664 -2015-03-06 08:00:00,0.0,1015.375,174.1125,73.565,20.13583333,0.886833333,238.03643599999998 -2015-03-06 09:00:00,0.0,1015.95,199.625,75.79416667,19.64666667,0.6545833329999999,238.05355266666663 -2015-03-06 10:00:00,0.0,1016.825,334.1833333,76.50583333,18.49833333,2.866583333,238.0552693333333 -2015-03-06 11:00:00,0.0,1017.529167,200.375,77.50833333,17.26666667,2.948416667,238.03850266666666 -2015-03-06 12:00:00,0.0,1018.1,490.0166666999999,74.38333333,19.36166667,1.3845,238.03370266666664 -2015-03-06 13:00:00,0.0,1018.3708330000001,489.34166669999996,68.5875,19.89916667,1.414333333,238.034036 -2015-03-06 14:00:00,0.0,1018.3625,449.125,63.6275,20.965,1.786583333,238.035736 -2015-03-06 15:00:00,0.0,1018.45,372.2083333,59.9275,21.695,1.67375,238.035736 -2015-03-06 16:00:00,0.0,1018.666667,326.5083333,58.37333333,20.96416667,3.27275,238.03473599999998 -2015-03-06 17:00:00,0.0,1018.854167,108.49666670000002,57.965,20.0125,3.0910833330000003,238.03471933333333 -2015-03-06 18:00:00,0.0,1019.304167,64.74833333,55.78833333,19.82,2.7355,238.034386 -2015-03-06 19:00:00,0.0,1019.904167,33.215,58.73833333,18.06666667,2.3914166669999997,238.035386 -2015-03-06 20:00:00,0.0,1020.6833330000001,4.33675,76.16166667,15.47916667,0.5379999999999999,238.03505266666664 -2015-03-06 21:00:00,0.0,1021.229167,0.02725,88.10833333,14.02,0.029083333,238.035386 -2015-03-06 22:00:00,0.0,1021.545833,0.0,92.41666667,12.45583333,0.05125,238.035386 -2015-03-06 23:00:00,0.0,1022.108333,0.0,95.60833333,11.7275,0.225833333,238.03678599999998 -2015-04-06 00:00:00,0.0,1022.429167,0.0,98.14166667,9.425833333,0.090583333,238.0462305 -2015-04-06 01:00:00,0.0,1022.5125,0.0,99.93333333,8.371666667000001,0.0,238.0462305 -2015-04-06 02:00:00,0.0,1022.833333,0.0,99.95,9.335833333,0.0,238.0462305 -2015-04-06 03:00:00,0.0,1022.95,0.021583333,99.91666667,10.12083333,0.0,238.04613196666665 -2015-04-06 04:00:00,0.0,1023.1916669999999,4.78025,99.725,10.45916667,0.02025,238.0462058666667 -2015-04-06 05:00:00,0.0,1023.454167,54.16666667,98.63333333,10.70833333,0.0030833329999999997,238.04613196666665 -2015-04-06 06:00:00,0.0,1023.704167,182.0083333,83.19,12.655,0.859666667,238.04608269999997 -2015-04-06 07:00:00,0.0,1023.766667,209.2233333,74.59583333,14.25416667,1.527916667,238.04608269999997 -2015-04-06 08:00:00,0.0,1023.875,81.62333333,69.14666667,16.1525,1.432666667,238.04603096666665 -2015-04-06 09:00:00,0.0,1023.779167,439.49166669999994,64.03833333,18.16166667,1.602916667,238.04603096666665 -2015-04-06 10:00:00,0.0,1023.5375,626.1583333,56.38583333,19.38333333,1.9864166669999999,238.0460051 -2015-04-06 11:00:00,0.0,1023.1833330000001,683.3583332999999,52.53583333,20.4925,2.183416667,238.0460051 -2015-04-06 12:00:00,0.0,1022.633333,718.7583333,48.97666667,22.12916667,1.503166667,238.04598046666663 -2015-04-06 13:00:00,0.0,1022.2375,709.5833332999999,47.17666667,22.67833333,1.2025,238.04587823333335 -2015-04-06 14:00:00,0.0,1021.720833,663.95,44.01,23.48583333,1.378333333,238.04587823333335 -2015-04-06 15:00:00,0.0,1021.1291669999999,574.6416667000001,42.78833333,24.40666667,1.097666667,238.0458536 -2015-04-06 16:00:00,0.0,1020.420833,467.15,44.58666667,24.52166667,1.526,238.0458536 -2015-04-06 17:00:00,0.0,1019.491667,66.54333333,45.52,25.04916667,0.885833333,238.04577969999994 -2015-04-06 18:00:00,0.0,1019.0125,43.2,48.325,24.8975,0.94325,238.0457538333333 -2015-04-06 19:00:00,0.0,1018.9333330000001,35.27166667,61.08333333,22.55666667,1.3746666669999998,238.0456245 -2015-04-06 20:00:00,2.6776724880000002,1018.85,5.583416667000001,83.39416667,18.3575,0.409916667,238.0456245 -2015-04-06 21:00:00,0.0,1018.991667,0.029583333,91.64166667,13.965,0.024833333,238.04552596666667 -2015-04-06 22:00:00,0.0,1019.145833,0.0,96.225,12.19,0.01825,238.04550133333336 -2015-04-06 23:00:00,0.0,1018.9125,0.0,98.60833333,10.85083333,0.0,238.04547670000002 -2015-05-06 00:00:00,0.0,1018.829167,0.0,99.99166667,9.8,0.0, -2015-05-06 01:00:00,0.0,1018.645833,0.0,100.0,8.905,0.0025, -2015-05-06 02:00:00,0.0,1018.3375,0.0,100.0,8.323333332999999,0.000833333, -2015-05-06 03:00:00,0.0,1017.983333,0.049333333,100.0,7.792333332999999,0.002416667, -2015-05-06 04:00:00,0.0,1017.858333,9.4855,100.0,7.468916667,0.00033333300000000006, -2015-05-06 05:00:00,0.0,1018.0,101.9683333,99.21666667,9.945,0.001, -2015-05-06 06:00:00,0.0,1018.016667,200.4083333,84.9775,14.19833333,0.45333333299999995, -2015-05-06 07:00:00,0.0,1017.9125,201.15083330000002,74.81916667,16.1125,1.227833333, -2015-05-06 08:00:00,0.0,1017.670833,73.53166667,68.42333333,19.15916667,0.897333333, -2015-05-06 09:00:00,0.0,1017.4625,429.775,61.80833333,22.11666667,1.5830000000000002, -2015-05-06 10:00:00,0.0,1017.179167,624.0333333,57.46833333,24.3725,1.76475,238.03391274999998 -2015-05-06 11:00:00,0.0,1016.833333,679.85,56.35,26.55916667,1.683583333,238.04184203333338 -2015-05-06 12:00:00,0.0,1016.145833,704.825,51.38083333,28.61583333,1.5145,238.04356579999998 -2015-05-06 13:00:00,0.0,1015.483333,682.0583333,49.58416667,29.9875,2.260416667,238.04597909999998 -2015-05-06 14:00:00,0.0,1014.958333,614.5166667000001,48.52666667,31.07166667,3.3279166669999998,238.04701336666668 -2015-05-06 15:00:00,0.0,1014.354167,575.1916667,43.62083333,31.65166667,2.5465,238.04425533333333 -2015-05-06 16:00:00,0.0,1013.483333,483.65,40.05083333,32.03666667,2.56425,238.0446000833333 -2015-05-06 17:00:00,0.0,1012.416667,84.19,45.83083333,31.78666667,2.3170833330000002,238.04425533333335 -2015-05-06 18:00:00,0.0,1012.1875,49.38666667,49.71666667,31.02916667,1.3345,238.04425533333333 -2015-05-06 19:00:00,0.0,1012.104167,32.56833333,68.015,28.62916667,0.397,238.0432210666667 -2015-05-06 20:00:00,0.0,1012.2875,4.010083333,78.865,23.03416667,0.082833333,238.0420144166667 -2015-05-06 21:00:00,0.0,1012.7625,0.0,87.675,19.85083333,0.03725,238.04408296666665 -2015-05-06 22:00:00,0.0,1012.604167,0.0,88.25,20.65166667,0.690583333,238.0420144166667 -2015-05-06 23:00:00,0.0,1012.925,0.0,69.20166667,21.40166667,1.408916667,238.04235918333333 -2015-06-06 00:00:00,0.0,1013.425,0.0,76.91166667,19.26916667,0.42275,237.75104265000002 -2015-06-06 01:00:00,0.0,1014.541667,0.0,69.9725,22.63916667,1.448083333,237.75104260000003 -2015-06-06 02:00:00,0.0,1014.283333,0.0,85.62,20.72916667,0.517083333,237.7550073 -2015-06-06 03:00:00,0.0,1015.045833,0.0,88.03,17.7825,0.372666667,237.7563863 -2015-06-06 04:00:00,17.84554466,1016.208333,0.203333333,92.605,19.22833333,0.6010833329999999,237.75586916666666 -2015-06-06 05:00:00,26.75503224,1015.225,3.6880833330000002,99.90833333,17.845,1.08375,237.76052335 -2015-06-06 06:00:00,2.64568776,1015.541667,56.36016667,100.0,17.74666667,0.67925,237.76138525 -2015-06-06 07:00:00,0.0,1016.0875,147.735,98.01666667,19.29333333,0.410416667,237.75966146666664 -2015-06-06 08:00:00,0.0,1016.891667,98.99166667,91.45,20.82666667,0.4695,237.7601786 -2015-06-06 09:00:00,0.0,1017.220833,373.2083333,84.5,23.08166667,0.959916667,237.75966144999998 -2015-06-06 10:00:00,0.0,1017.658333,429.6833333000001,82.02166667,24.52916667,0.820083333,237.753973 -2015-06-06 11:00:00,0.0,1018.4416669999999,365.7,81.0675,24.57833333,1.044083333,237.74518179999998 -2015-06-06 12:00:00,0.0,1018.833333,523.125,78.18666667,24.48,1.26475,237.73932100000002 -2015-06-06 13:00:00,0.0,1019.020833,426.16666669999995,77.0175,23.38,2.718333333,237.73725249999998 -2015-06-06 14:00:00,0.0,1019.2541669999999,477.7333333000001,75.9325,22.75416667,2.673666667,237.73346018333334 -2015-06-06 15:00:00,0.0,1019.3166669999999,501.28333330000004,73.94,23.53,1.53775,237.73018505000002 -2015-06-06 16:00:00,0.0,1019.216667,424.05,71.21333333,24.36083333,1.098833333,237.72777176666668 -2015-06-06 17:00:00,0.0,1018.883333,84.65166667,67.54833333,23.94166667,2.161333333,237.72932316666663 -2015-06-06 18:00:00,0.0,1019.15,83.2825,64.43583333,22.50666667,1.8405,237.72949553333333 -2015-06-06 19:00:00,0.0,1019.425,50.6525,67.41333333,22.03,1.102083333,237.72915079999999 -2015-06-06 20:00:00,0.0,1020.033333,9.242583332999999,77.59916667,20.07083333,0.286083333,237.73121931666665 -2015-06-06 21:00:00,0.0,1020.891667,0.062416667,83.94166667,17.5375,0.062083333,237.73552873333333 -2015-06-06 22:00:00,0.0,1021.3875,0.0,87.49166667,16.51833333,0.08741666699999999,237.73811438333337 -2015-06-06 23:00:00,0.0,1021.525,0.0,96.30833333,15.41916667,0.133,237.74207903333334 -2015-07-06 00:00:00,0.0,1021.95,0.0,99.3,13.5375,0.041583333,237.56566315 -2015-07-06 01:00:00,0.0,1022.304167,0.0,100.0,13.50583333,0.55375,237.5708207 -2015-07-06 02:00:00,0.0,1022.520833,0.0,100.0,11.74166667,0.031666667,237.57611768333334 -2015-07-06 03:00:00,0.0,1022.9625,0.023,100.0,10.90583333,0.026833332999999997,237.5807176666667 -2015-07-06 04:00:00,0.0,1023.1875,4.20675,100.0,10.4875,0.09475,237.58448130000002 -2015-07-06 05:00:00,0.0,1023.475,42.39166667,100.0,11.2275,0.277833333,237.58671159999997 -2015-07-06 06:00:00,0.0,1023.7625,93.18083333,94.55833333,13.2825,0.609583333,237.58977823333336 -2015-07-06 07:00:00,0.0,1023.95,152.275,74.31916667,14.19083333,1.594583333,237.59005703333332 -2015-07-06 08:00:00,0.0,1024.05,106.24166670000001,58.61416667,16.095,2.39225,237.59284491666668 -2015-07-06 09:00:00,0.0,1024.091667,451.16666669999995,52.51583333,17.915,2.835833333,237.58991765000005 -2015-07-06 10:00:00,0.0,1023.8708330000001,622.6083332999999,50.91583333,19.26083333,2.792583333,237.57890556666663 -2015-07-06 11:00:00,0.0,1023.641667,693.5333333,49.3625,20.5425,2.7261666669999998,237.56636014999995 -2015-07-06 12:00:00,0.0,1023.3166669999999,721.1666667000001,47.8275,21.55333333,2.221333333,237.55395409999997 -2015-07-06 13:00:00,0.0,1022.775,703.7083332999999,46.82,22.53166667,2.2640000000000002,237.5446147166667 -2015-07-06 14:00:00,0.0,1022.533333,663.7333332999999,43.13083333,23.35916667,2.278333333,237.54015411666668 -2015-07-06 15:00:00,0.0,1022.029167,552.175,41.39916667,23.865,2.1215,237.53722685000002 -2015-07-06 16:00:00,0.0,1021.7458330000001,439.3,41.30583333,24.07666667,1.882333333,237.53513591666663 -2015-07-06 17:00:00,0.0,1021.275,97.67,41.08,23.99916667,2.321333333,237.53527531666668 -2015-07-06 18:00:00,0.0,1021.166667,74.015,41.8325,22.75416667,2.6985,237.53583289999997 -2015-07-06 19:00:00,0.0,1021.420833,55.81666667,44.74166667,21.28833333,3.0765,237.53764505 -2015-07-06 20:00:00,0.0,1021.775,9.06775,55.175,18.79833333,1.261583333,237.54085106666665 -2015-07-06 21:00:00,0.0,1022.283333,0.08775,72.595,16.435,1.009083333,237.54531169999998 -2015-07-06 22:00:00,0.0,1022.454167,0.0,83.48333333,15.075,0.9774166670000001,237.55060863333333 -2015-07-06 23:00:00,0.0,1022.5625,0.0,88.6,13.76,0.44191666700000004,237.55479043333332 -2015-08-06 00:00:00,0.0,1022.6125,0.0,92.38333333,11.835,0.40375,237.47115426666667 -2015-08-06 01:00:00,0.0,1022.429167,0.0,91.13333333,13.01666667,1.190583333,237.47505726666668 -2015-08-06 02:00:00,0.0,1022.445833,0.0,80.2825,13.28,2.432833333,237.4796572666667 -2015-08-06 03:00:00,0.0,1022.529167,0.077083333,81.22333333,12.35333333,2.291833333,237.48411783333336 -2015-08-06 04:00:00,0.0,1022.708333,9.008333333,85.38333333,11.47416667,1.809666667,237.4884390666667 -2015-08-06 05:00:00,0.0,1022.795833,44.04,84.89166667,11.05833333,2.301416667,237.4917845166667 -2015-08-06 06:00:00,0.0,1022.8125,112.28666670000001,82.15333333,11.35583333,2.87575,237.49359663333337 -2015-08-06 07:00:00,0.0,1022.820833,180.45,77.92083333,12.0925,3.2985,237.49582695000004 -2015-08-06 08:00:00,0.0,1023.0125,197.6083333,72.205,13.52666667,3.597,237.49722086666668 -2015-08-06 09:00:00,0.0,1022.7625,344.625,65.575,15.12416667,3.62575,237.49596633333337 -2015-08-06 10:00:00,0.0,1022.491667,321.59166669999996,64.3875,15.70333333,4.363166667,237.49178451666668 -2015-08-06 11:00:00,0.0,1022.2375,280.7666667,66.3875,16.03333333,3.8841666669999997,237.48174815000002 -2015-08-06 12:00:00,0.0,1021.979167,305.21666669999996,68.16916667,15.82916667,4.013583333,237.46599666666668 -2015-08-06 13:00:00,0.0,1021.833333,379.5083333,66.88583333,16.095,3.849416667,237.4495482333333 -2015-08-06 14:00:00,0.0,1021.658333,499.16666669999995,64.655,16.66166667,4.37725,237.44090581666669 -2015-08-06 15:00:00,0.0,1021.2541669999999,596.1583333,61.3275,17.90083333,4.845166667,237.4343543 -2015-08-06 16:00:00,0.0,1020.6916669999999,443.75,59.28583333,18.23416667,4.403583333,237.43212403333334 -2015-08-06 17:00:00,0.0,1020.3125,205.5,60.935,17.8575,4.32125,237.43463311666665 -2015-08-06 18:00:00,0.0,1020.179167,86.76833333,61.22,17.0775,4.0205,237.43296036666663 -2015-08-06 19:00:00,0.0,1020.366667,35.86,62.55833333,16.36166667,4.378,237.4335179333333 -2015-08-06 20:00:00,0.0,1020.570833,3.427666667,65.58916667,15.60083333,3.17925,237.43756039999997 -2015-08-06 21:00:00,0.0,1021.1875,0.053083332999999996,67.6675,14.73833333,2.334083333,237.44034825000003 -2015-08-06 22:00:00,0.0,1021.466667,0.0,69.8325,13.15,1.314416667,237.44285733333334 -2015-08-06 23:00:00,0.0,1021.591667,0.0,75.62666667,11.88083333,1.344416667,237.44731793333335 -2015-09-06 00:00:00,0.0,1021.716667,0.0,70.98166667,12.27666667,1.8119999999999998,237.54615706666664 -2015-09-06 01:00:00,0.0,1021.65,0.0,74.26583333,11.54166667,2.29325,237.54708773333334 -2015-09-06 02:00:00,0.0,1021.4416669999999,0.0,77.62083333,10.71,1.809333333,237.54677751666668 -2015-09-06 03:00:00,0.0,1021.1875,0.043166667,82.14,9.931666667,1.296583333,237.5505001 -2015-09-06 04:00:00,0.0,1021.304167,6.5999166670000005,87.875,8.934166667000001,0.916166667,237.55189606666667 -2015-09-06 05:00:00,0.0,1021.35,52.59916667,88.275,9.2675,1.3860833330000002,237.5525165 -2015-09-06 06:00:00,0.0,1021.783333,142.7175,83.41583333,10.34083333,2.390916667,237.55313693333332 -2015-09-06 07:00:00,0.0,1022.0625,160.5916667,78.91,11.50833333,3.269666667,237.55515334999998 -2015-09-06 08:00:00,0.0,1022.329167,200.1333333,74.66916667,12.41666667,3.7479166669999997,237.55608400000003 -2015-09-06 09:00:00,0.0,1022.2625,466.13333330000006,68.63333333,14.135,3.805416667,237.55623911666666 -2015-09-06 10:00:00,0.0,1022.229167,611.1083332999999,64.78666667,14.975,4.115166667,237.5542227 -2015-09-06 11:00:00,0.0,1022.2125,390.6,62.25166667,15.58416667,4.191,237.55081031666668 -2015-09-06 12:00:00,0.0,1021.929167,530.7916667,59.49083333,15.95833333,4.022083333,237.54662240000002 -2015-09-06 13:00:00,0.0,1021.641667,399.03333330000004,57.4725,16.63833333,4.45375,237.5444508666667 -2015-09-06 14:00:00,0.0,1021.4958330000001,461.1916666999999,57.44416667,16.64916667,4.1215,237.53886698333335 -2015-09-06 15:00:00,0.0,1021.595833,489.0583333000001,56.9075,16.68333333,4.28275,237.53607503333333 -2015-09-06 16:00:00,0.0,1021.420833,427.8,55.805,16.895,4.10875,237.53405861666667 -2015-09-06 17:00:00,0.0,1021.208333,185.1,57.53583333,16.53666667,4.1675,237.5340586166667 -2015-09-06 18:00:00,0.0,1021.2875,103.7666667,59.30416667,15.94583333,3.232916667,237.5337484 -2015-09-06 19:00:00,0.0,1021.491667,42.2225,61.20333333,15.31416667,3.15175,237.53297286666668 -2015-09-06 20:00:00,0.0,1021.583333,6.7885,67.04416667,14.3925,3.004666667,237.53328306666666 -2015-09-06 21:00:00,0.0,1021.895833,0.084,85.6025,12.33666667,0.90675,237.53716078333332 -2015-09-06 22:00:00,0.0,1021.9375,0.0,94.59166667,9.560833333,0.159583333,237.5365403333333 -2015-09-06 23:00:00,0.0,1021.8083330000001,0.0,97.475,8.581666667,0.057083333,237.53778123333333 -2015-10-06 00:00:00,0.0,1021.5375,0.0,99.16666667,8.625,0.06483333299999999,237.59393038333334 -2015-10-06 01:00:00,0.0,1021.4875,0.0,98.90833333,9.325,0.018916666999999998,237.59672235000002 -2015-10-06 02:00:00,0.0,1021.320833,0.0,99.21666667,9.923333332999999,0.23675,237.59904898333332 -2015-10-06 03:00:00,0.0,1021.258333,0.032416667,99.0,12.36833333,1.049166667,237.60106535 -2015-10-06 04:00:00,0.0,1021.091667,12.27066667,88.84333333,12.63666667,1.503416667,237.60028981666665 -2015-10-06 05:00:00,0.0,1020.9958330000001,95.965,75.4225,12.6725,1.93375,237.60199601666667 -2015-10-06 06:00:00,0.0,1021.020833,169.6583333,75.60666667,13.21833333,1.431,237.60215113333334 -2015-10-06 07:00:00,0.0,1021.041667,211.89,72.72333333,14.4075,3.073833333,237.60463285 -2015-10-06 08:00:00,0.0,1021.0583330000001,163.7,72.26166667,15.5825,3.22225,237.60571861666665 -2015-10-06 09:00:00,0.0,1021.170833,288.1833333,72.275,16.465,2.712416667,237.60695948333333 -2015-10-06 10:00:00,0.0,1021.1833330000001,277.625,71.35916667,16.82166667,3.1350833330000003,237.60680436666667 -2015-10-06 11:00:00,0.0,1021.304167,421.5583333000001,68.91083333,17.53,2.88175,237.60587369999993 -2015-10-06 12:00:00,0.0,1020.8791669999999,656.9666667,66.06833333,18.68916667,2.749333333,237.60680435000003 -2015-10-06 13:00:00,0.0,1020.391667,670.7333332999999,62.165,19.9125,2.310666667,237.6049430666666 -2015-10-06 14:00:00,0.0,1019.825,458.46666669999996,59.91833333,20.85,1.6086666669999998,237.60866568333327 -2015-10-06 15:00:00,0.0,1019.320833,252.56666669999998,57.615,20.74083333,2.4561666669999997,237.60959635000003 -2015-10-06 16:00:00,0.0,1018.729167,253.04166669999998,54.34916667,21.60666667,2.152666667,237.61052698333333 -2015-10-06 17:00:00,0.0,1018.170833,135.9358333,53.95,21.38666667,2.662666667,237.61192293333332 -2015-10-06 18:00:00,0.0,1018.1625,87.75583333,53.76416667,21.0,2.707166667,237.61269848333333 -2015-10-06 19:00:00,0.0,1018.1125,33.73916667,56.915,20.03583333,3.12125,237.61347401666663 -2015-10-06 20:00:00,0.0,1018.295833,4.8745,61.8425,19.1775,2.417416667,237.61347401666663 -2015-10-06 21:00:00,0.0,1018.579167,0.053083332999999996,64.8225,18.36666667,2.363333333,237.61502513333335 -2015-10-06 22:00:00,0.0,1018.858333,0.0,72.5625,17.57166667,1.416916667,237.61580064999998 -2015-10-06 23:00:00,0.0,1018.654167,0.0,72.65333333,17.00916667,0.8624166670000001,237.6158006666667 -2015-11-06 00:00:00,0.0,1018.375,0.0,77.1125,16.53833333,1.024583333,237.73062316666665 -2015-11-06 01:00:00,0.0,1018.2,0.0,78.4525,16.3375,0.96425,237.72953856666672 -2015-11-06 02:00:00,0.0,1017.9958330000001,0.0,76.19083333,16.15666667,1.3419999999999999,237.72876388333336 -2015-11-06 03:00:00,0.0,1017.7458330000001,0.017333333,70.995,15.86666667,1.19675,237.7292286833333 -2015-11-06 04:00:00,0.0,1017.3125,3.8824166669999998,72.2125,15.35916667,1.08575,237.73031328333334 -2015-11-06 05:00:00,0.0,1017.070833,26.4375,77.68333333,15.27583333,1.421416667,237.73062315 -2015-11-06 06:00:00,0.0,1017.0375,55.1975,74.38333333,15.70583333,1.427583333,237.73031326666668 -2015-11-06 07:00:00,0.0,1017.1208330000001,84.56166667,73.1575,15.93416667,1.5495,237.73000338333335 -2015-11-06 08:00:00,0.0,1017.258333,230.2583333,68.92666667,16.9825,2.12575,237.7279891833333 -2015-11-06 09:00:00,0.0,1017.125,406.5833333,64.295,18.0625,2.438916667,237.72736945 -2015-11-06 10:00:00,0.0,1016.7458330000001,622.575,59.95333333,19.12833333,2.36725,237.72659471666665 -2015-11-06 11:00:00,0.0,1016.258333,572.6333333,55.92083333,21.43833333,2.3675,237.7269046 -2015-11-06 12:00:00,0.0,1015.6833330000001,498.775,55.13916667,22.27916667,1.5368333330000001,237.72473541666668 -2015-11-06 13:00:00,0.0,1015.158333,452.5,54.2025,22.49833333,1.565666667,237.7250453 -2015-11-06 14:00:00,0.0,1014.595833,352.53333330000004,56.29333333,22.6025,1.72475,237.72705953333335 -2015-11-06 15:00:00,0.0,1014.029167,447.725,53.3325,23.0175,1.611833333,237.72814411666664 -2015-11-06 16:00:00,0.0,1013.2125,395.175,52.35833333,23.16083333,1.745916667,237.72659471666665 -2015-11-06 17:00:00,0.0,1012.4,136.76166669999998,52.70083333,23.3275,1.804,237.72674965000002 -2015-11-06 18:00:00,0.0,1012.0125,92.58083333,54.73416667,22.99666667,1.7696666669999999,237.72721446666665 -2015-11-06 19:00:00,0.0,1011.833333,26.31833333,66.2175,20.40083333,0.170166667,237.72659471666665 -2015-11-06 20:00:00,0.0,1011.5583330000001,9.988833332999999,85.775,18.465,0.123916667,237.72597495000002 -2015-11-06 21:00:00,0.0,1011.916667,0.0765,92.425,14.95166667,0.041333333,237.72535518333333 -2015-11-06 22:00:00,0.0,1011.841667,0.0,97.80833333,12.10916667,0.027583332999999998,237.72473541666668 -2015-11-06 23:00:00,0.0,1011.554167,0.0,99.84166667,10.7475,0.0395,237.72628483333332 -2015-12-06 00:00:00,0.0,1011.1625,0.0,100.0,10.72416667,0.14375,238.03890178333336 -2015-12-06 01:00:00,0.0,1010.6125,0.0,100.0,11.15416667,0.09325,238.03747016666668 -2015-12-06 02:00:00,0.0,1010.091667,0.0,100.0,9.995,0.000583333,238.03782809999998 -2015-12-06 03:00:00,0.0,1009.4958330000001,0.05025,100.0,9.115,0.007333333,238.03711225000004 -2015-12-06 04:00:00,0.0,1009.404167,7.521666667000001,100.0,8.603333333,0.02425,238.0349648 -2015-12-06 05:00:00,0.0,1009.679167,60.46833333,100.0,10.43833333,0.022166667,238.03317528333335 -2015-12-06 06:00:00,0.0,1009.733333,162.79166669999998,91.025,14.4175,0.165833333,238.03281736666668 -2015-12-06 07:00:00,0.0,1009.904167,185.95833330000002,79.0175,15.385,1.043083333,238.0308488833333 -2015-12-06 08:00:00,0.0,1009.6,98.675,73.62583333,17.705,1.167,238.0295962 -2015-12-06 09:00:00,0.0,1009.216667,429.86666669999994,69.535,20.48166667,0.941416667,238.02870144999997 -2015-12-06 10:00:00,0.0,1008.825,610.0083333,65.92583333,22.53083333,1.153916667,238.02834354999996 -2015-12-06 11:00:00,0.0,1008.358333,668.9166667000001,63.135,24.65333333,1.255083333,238.02548028333334 -2015-12-06 12:00:00,0.0,1007.791667,693.875,61.375,26.30666667,1.184416667,238.02512236666666 -2015-12-06 13:00:00,0.0,1007.275,649.7416667,56.83666667,27.48416667,1.37975,238.02333285 -2015-12-06 14:00:00,0.0,1006.8791669999999,396.625,56.00083333,27.6175,1.209166667,238.02261705 -2015-12-06 15:00:00,0.0,1005.958333,339.55,57.54583333,28.77,1.3265,238.02440656666667 -2015-12-06 16:00:00,0.0,1005.6291669999999,294.05,55.09833333,28.80666667,1.3835,238.02601715 -2015-12-06 17:00:00,0.0,1005.3875,78.455,70.22083333,27.37416667,0.9824166670000001,238.022796 -2015-12-06 18:00:00,0.0,1005.279167,16.22916667,76.72,24.22166667,0.121,238.0236907666667 -2015-12-06 19:00:00,0.0,1005.8125,29.23083333,71.915,23.28416667,0.5116666670000001,238.0215433333333 -2015-12-06 20:00:00,0.0,1006.2875,6.494583333,77.9925,22.05916667,0.6143333329999999,238.02046956666666 -2015-12-06 21:00:00,0.0,1006.2875,0.020666667,81.7825,20.9625,0.306916667,238.0208275 -2015-12-06 22:00:00,0.0,1005.5875,0.0,92.675,18.89833333,0.06975,238.018859 -2015-12-06 23:00:00,0.0,1005.7,0.0,98.24166667,16.77083333,0.11991666699999999,238.01903794999998 -2015-06-13 00:00:00,0.0,1005.4125,0.0,99.94166667,16.38166667,0.065583333,237.67657591666662 -2015-06-13 01:00:00,0.0,1005.395833,0.0,99.225,16.57333333,0.065916667,237.68071295000001 -2015-06-13 02:00:00,0.0,1005.458333,0.0,98.14166667,17.17166667,0.240916667,237.68226431666665 -2015-06-13 03:00:00,0.0,1005.075,0.0,99.225,17.1825,0.1695,237.68691849999996 -2015-06-13 04:00:00,0.0,1004.5875,4.935,98.43333333,17.04166667,0.509166667,237.68915941666668 -2015-06-13 05:00:00,0.0,1004.725,33.7325,99.96666667,16.11666667,0.1945,237.69191743333337 -2015-06-13 06:00:00,0.0,1004.8708330000001,57.57083333,99.20833333,17.0425,0.04475,237.69277933333333 -2015-06-13 07:00:00,0.0,1005.5,85.83333333,95.24166667,18.81833333,0.1195,237.69226216666667 -2015-06-13 08:00:00,0.0,1005.9125,112.83333329999999,88.93333333,20.28833333,0.297,237.69174505 -2015-06-13 09:00:00,0.0,1006.1833330000001,206.81666669999998,85.89166667,21.06333333,0.513333333,237.69122791666666 -2015-06-13 10:00:00,0.0,1006.229167,280.3583333,85.275,21.3425,0.9105833329999999,237.68502234999997 -2015-06-13 11:00:00,0.0,1006.5875,238.4833333,85.125,20.57666667,0.33058333300000003,237.67898920000002 -2015-06-13 12:00:00,0.0,1007.075,322.3083333,83.675,22.27333333,0.535083333,237.66795706666667 -2015-06-13 13:00:00,0.0,1007.279167,392.6083333,79.8725,22.68416667,0.802166667,237.6612343666667 -2015-06-13 14:00:00,0.0,1007.3166669999999,214.7633333,77.92333333,21.42416667,0.806333333,237.65502879999997 -2015-06-13 15:00:00,0.0,1006.954167,536.45,70.22083333,22.86916667,0.888916667,237.65158128333337 -2015-06-13 16:00:00,0.0,1006.4,422.90833330000004,66.0325,23.8575,0.749166667,237.64692714999998 -2015-06-13 17:00:00,0.0,1005.8166669999999,111.93333329999999,67.45916667,23.92833333,0.49391666700000003,237.64589285 -2015-06-13 18:00:00,0.0,1005.904167,74.07583333,65.16166667,24.155,0.415916667,237.64537573333334 -2015-06-13 19:00:00,0.0,1005.958333,40.91083333,61.45666667,22.96833333,0.09225,237.6455481 -2015-06-13 20:00:00,0.0,1006.104167,6.794833333,77.3825,19.07166667,0.0,237.64882325 -2015-06-13 21:00:00,0.0,1006.608333,0.08966666699999999,92.03333333,15.08166667,0.00275,237.65433930000003 -2015-06-13 22:00:00,0.0,1007.095833,0.0,96.60833333,13.4975,0.017,237.6574420833333 -2015-06-13 23:00:00,0.0,1007.216667,0.0,99.15833333,13.2325,0.062,237.66157915 -2015-06-14 00:00:00,0.0,1007.033333,0.0,99.99166667,12.89083333,0.046416667,237.66640568333335 -2015-06-14 01:00:00,0.0,1007.025,0.0,100.0,11.9825,0.070416667,237.66968085 -2015-06-14 02:00:00,0.0,1007.1875,0.0,100.0,10.82,0.064166667,237.67450738333335 -2015-06-14 03:00:00,0.0,1007.0666669999999,0.106583333,100.0,10.88333333,0.153,237.6772654 -2015-06-14 04:00:00,0.0,1007.070833,11.57641667,100.0,10.00333333,0.10525,237.67985106666666 -2015-06-14 05:00:00,0.0,1007.2375,85.12166667,98.975,11.8675,0.113916667,237.68209193333337 -2015-06-14 06:00:00,0.0,1007.4375,160.79166669999998,88.8025,15.01833333,0.269916667,237.68295383333336 -2015-06-14 07:00:00,0.0,1007.5625,183.275,77.10916667,16.37083333,0.603583333,237.68484996666666 -2015-06-14 08:00:00,0.0,1007.675,90.325,68.21333333,18.46583333,0.60575,237.68260906666669 -2015-06-14 09:00:00,0.0,1007.5875,444.4416666999999,57.49833333,20.20333333,0.672,237.6720941 -2015-06-14 10:00:00,0.0,1007.4,643.8416667,53.405,21.63166667,0.7050833329999999,237.65899348333335 -2015-06-14 11:00:00,0.0,1007.045833,699.6583333,48.21666667,22.58583333,0.906416667,237.64554809999996 -2015-06-14 12:00:00,0.0,1006.5,728.35,43.02916667,23.38583333,1.322416667,237.63968730000002 -2015-06-14 13:00:00,0.0,1006.041667,717.175,39.00833333,24.64916667,1.103416667,237.63623976666668 -2015-06-14 14:00:00,0.0,1005.679167,678.6166667,37.9025,25.37166667,1.16375,237.63296461666667 -2015-06-14 15:00:00,0.0,1005.258333,600.9333333,36.57333333,25.85166667,0.957416667,237.62934468333333 -2015-06-14 16:00:00,0.0,1004.8125,483.79166669999995,36.47416667,26.45583333,0.8208333329999999,237.62744855000003 -2015-06-14 17:00:00,0.0,1004.458333,74.73083333,36.01583333,26.04666667,1.270333333,237.62848281666663 -2015-06-14 18:00:00,0.0,1004.095833,46.13583333,41.43833333,25.64833333,0.74425,237.6276209166667 -2015-06-14 19:00:00,0.0,1004.420833,26.79083333,50.9525,23.66833333,0.97775,237.62589718333334 -2015-06-14 20:00:00,0.0,1005.2375,11.90383333,62.78416667,21.46,1.39175,237.62796568333331 -2015-06-14 21:00:00,0.0,1006.2125,0.15866666699999998,79.475,19.2075,1.611666667,237.63227511666665 -2015-06-14 22:00:00,0.0,1006.829167,0.0,77.47166667,18.2,2.03075,237.6353778833333 -2015-06-14 23:00:00,0.0,1007.2875,0.0,82.0975,17.26666667,1.9190833330000001,237.6414110666667 -2015-06-15 00:00:00,0.0,1007.616667,0.0,87.11666667,16.26333333,1.57875,237.64640998333334 -2015-06-15 01:00:00,0.0,1008.170833,0.0,94.28333333,15.01,0.980833333,237.65106415 -2015-06-15 02:00:00,0.0,1008.770833,0.0,99.15,13.86083333,0.576333333,237.65589068333335 -2015-06-15 03:00:00,0.0,1009.0041669999999,0.098166667,100.0,13.13833333,0.838833333,237.65830396666664 -2015-06-15 04:00:00,0.0,1009.220833,9.373333333,100.0,12.98916667,0.6296666670000001,237.6633029 -2015-06-15 05:00:00,0.0,1009.75,52.70083333,99.94166667,12.86,0.7375,237.66416478333335 -2015-06-15 06:00:00,0.0,1010.579167,143.83333330000002,91.24166667,14.0525,2.090833333,237.66519903333332 -2015-06-15 07:00:00,0.0,1011.15,168.9666667,86.46666667,14.76833333,2.786666667,237.66606093333337 -2015-06-15 08:00:00,0.0,1011.6916669999999,203.8583333,84.0,15.40583333,2.80925,237.66606090000005 -2015-06-15 09:00:00,0.0,1012.404167,184.70833330000002,82.24166667,15.62083333,3.346666667,237.65847636666663 -2015-06-15 10:00:00,0.0,1013.075,269.34166669999996,79.74,15.6275,3.80725,237.6476166333333 -2015-06-15 11:00:00,0.0,1013.741667,422.4,75.2675,15.99916667,4.124333333,237.63934253333332 -2015-06-15 12:00:00,0.0,1014.1375,489.5,72.04333333,16.7025,3.094083333,237.63037895 -2015-06-15 13:00:00,0.0,1014.258333,632.8416667,68.35666667,17.64,3.118833333,237.62141534999998 -2015-06-15 14:00:00,0.0,1014.125,628.0916667,63.15416667,18.56833333,3.723416667,237.61796781666666 -2015-06-15 15:00:00,0.0,1013.954167,478.71666669999996,61.40583333,18.98083333,3.336166667,237.61434791666667 -2015-06-15 16:00:00,0.0,1013.6375,317.0416667,61.69833333,19.04416667,3.072333333,237.61676118333332 -2015-06-15 17:00:00,0.0,1013.679167,161.18333330000002,59.24083333,19.35666667,2.737083333,237.61417551666668 -2015-06-15 18:00:00,0.0,1013.675,57.78333333,58.07583333,19.40666667,3.04825,237.61383078333336 -2015-06-15 19:00:00,0.0,1013.966667,32.66166667,60.75916667,18.31166667,2.410083333,237.6152098 -2015-06-15 20:00:00,0.0,1014.5625,5.696416667,79.15083333,15.5075,0.625166667,237.61951921666665 -2015-06-15 21:00:00,0.0,1015.425,0.066666667,90.61666667,12.05083333,0.1295,237.6231391 -2015-06-15 22:00:00,0.0,1015.954167,0.0,91.625,12.05666667,0.04,237.62744853333336 -2015-06-15 23:00:00,0.0,1016.179167,0.0,90.94166667,12.77583333,0.06575,237.63175794999998 -2015-06-16 00:00:00,0.0,1016.475,0.0,88.4,13.04666667,0.491333333,237.63520549999998 -2015-06-16 01:00:00,0.0,1016.5041669999999,0.0,94.74166667,11.5825,0.29991666699999997,237.64227295 -2015-06-16 02:00:00,0.0,1016.720833,0.0,95.80833333,9.2375,0.265916667,237.64606521666667 -2015-06-16 03:00:00,0.0,1017.133333,0.040416667,96.46666667,8.299416667000001,0.18175,237.65071938333335 -2015-06-16 04:00:00,0.0,1017.391667,6.839583332999999,96.3,7.5381666670000005,0.06383333299999999,237.6536498 -2015-06-16 05:00:00,0.0,1017.6875,91.64083333,90.875,9.0305,0.09225,237.65399455 -2015-06-16 06:00:00,0.0,1017.929167,206.6416667,76.62083333,11.08083333,1.6175,237.65554593333331 -2015-06-16 07:00:00,0.0,1017.945833,199.24,72.18166667,12.06083333,2.695583333,237.65640781666661 -2015-06-16 08:00:00,0.0,1017.8708330000001,75.02416667,67.24583333,13.38,2.675166667,237.65330505 -2015-06-16 09:00:00,0.0,1017.783333,447.81416669999993,62.7275,15.2825,2.147583333,237.64279006666666 -2015-06-16 10:00:00,0.0,1017.795833,648.1166667,53.3325,17.11416667,2.4483333330000003,237.62744855000003 -2015-06-16 11:00:00,0.0,1017.358333,467.0583333000001,51.87583333,17.94833333,2.4409166669999998,237.61779548333334 -2015-06-16 12:00:00,0.0,1017.325,433.5,51.65833333,18.3075,2.5639999999999996,237.61296891666666 -2015-06-16 13:00:00,0.0,1017.170833,369.5833333,50.25083333,18.36416667,2.4194166669999997,237.61176228333338 -2015-06-16 14:00:00,0.0,1017.195833,216.875,52.0275,17.76166667,3.3075,237.61072803333334 -2015-06-16 15:00:00,0.0,1017.283333,286.675,57.15083333,16.87416667,3.965166667,237.60779761666672 -2015-06-16 16:00:00,0.0,1017.291667,373.0583333,54.71916667,16.74833333,4.181666667,237.60555671666668 -2015-06-16 17:00:00,0.0,1017.279167,164.8675,52.33416667,16.725,4.073166667,237.60452245 -2015-06-16 18:00:00,0.0,1017.6625,44.46333333,53.19416667,16.09666667,3.867666667,237.60297106666667 -2015-06-16 19:00:00,0.0,1018.0625,34.37666667,56.66166667,15.18416667,3.2485,237.60297104999998 -2015-06-16 20:00:00,0.0,1018.5375,9.59075,66.415,13.81916667,1.7263333330000001,237.6046948333333 -2015-06-16 21:00:00,0.0,1019.325,0.07,76.4925,12.3625,1.704,237.60745286666668 -2015-06-16 22:00:00,0.0,1019.625,0.0,90.18333333,10.03583333,0.75575,237.6136584333333 -2015-06-16 23:00:00,0.0,1020.05,0.0,94.80833333,7.282083332999999,0.020833333,237.61779546666665 -2015-06-17 00:00:00,0.0,1020.125,0.0,97.79166667,6.067583332999999,0.000166667,237.6245181666667 -2015-06-17 01:00:00,0.0,1020.304167,0.0,99.05,5.077833333,0.007166667,237.62934469999996 -2015-06-17 02:00:00,0.0,1020.283333,0.0,99.91666667,4.188166667,0.0195,237.63365409999997 -2015-06-17 03:00:00,0.0,1020.375,0.12116666699999999,100.0,3.5173333330000003,0.0075,237.63744640000002 -2015-06-17 04:00:00,0.0,1020.608333,13.95066667,100.0,3.28025,0.00725,237.64192821666668 -2015-06-17 05:00:00,0.0,1021.079167,99.27666667,98.68333333,6.01925,0.0025,237.64365196666668 -2015-06-17 06:00:00,0.0,1021.395833,190.8,88.53083333,9.885833332999999,0.169666667,237.64227295 -2015-06-17 07:00:00,0.0,1021.341667,201.815,73.93583333,11.32916667,0.815,237.64313479999998 -2015-06-17 08:00:00,0.0,1021.0125,77.51916667,64.04583333,13.59833333,0.7415,237.6426177 -2015-06-17 09:00:00,0.0,1020.920833,450.5116666999999,53.87583333,15.04333333,1.204166667,237.63330935 -2015-06-17 10:00:00,0.0,1020.454167,638.9583332999999,46.50333333,16.28583333,1.3315,237.61986398333332 -2015-06-17 11:00:00,0.0,1019.758333,712.325,46.265,17.50166667,1.37625,237.60762523333332 -2015-06-17 12:00:00,0.0,1019.3708330000001,738.075,44.21916667,18.45,1.6339166669999998,237.5990064 -2015-06-17 13:00:00,0.0,1018.8625,657.9833332999999,40.46583333,19.87,1.302583333,237.59607598333332 -2015-06-17 14:00:00,0.0,1018.141667,537.65,43.93416667,20.64416667,1.217666667,237.59469696666665 -2015-06-17 15:00:00,0.0,1017.283333,410.6833333,47.76916667,20.94,0.86625,237.59331795000003 -2015-06-17 16:00:00,0.0,1016.7541669999999,350.85,45.14416667,20.77333333,0.7805833329999999,237.5917665666667 -2015-06-17 17:00:00,0.0,1016.075,163.5166667,47.10083333,21.42833333,0.589583333,237.59073230000004 -2015-06-17 18:00:00,0.0,1015.5125,49.91166667,50.85583333,20.61416667,0.348,237.59124943333336 -2015-06-17 19:00:00,0.0,1015.05,39.25083333,62.60916667,18.69333333,0.018166667,237.59331796666663 -2015-06-17 20:00:00,0.0,1014.891667,6.407,76.26833333,16.53083333,0.0,237.59642076666668 -2015-06-17 21:00:00,0.0,1014.775,0.057833333,82.6475,14.31416667,0.0,237.60210916666665 -2015-06-17 22:00:00,0.0,1014.408333,0.0,87.11666667,13.43416667,0.0,237.6064186166667 -2015-06-17 23:00:00,0.0,1013.770833,0.0,73.17916667,13.3825,0.0,237.61158988333332 -2015-06-18 00:00:00,0.0,1013.345833,0.0,64.525,13.88333333,0.002833333,237.61400316666666 -2015-06-18 01:00:00,0.0,1012.575,0.0,64.47833333,14.285,0.02525,237.61831256666667 -2015-06-18 02:00:00,0.0,1011.9,0.0,78.57416667,14.71916667,0.02675,237.62003635 -2015-06-18 03:00:00,12.06248071,1011.25,0.0,96.54166667,14.61666667,0.05275,237.62503528333332 -2015-06-18 04:00:00,9.707593152000001,1010.904167,2.89025,99.56666667,14.17166667,0.16825,237.62848281666666 -2015-06-18 05:00:00,24.21655558,1010.75,14.94166667,98.96666667,14.44166667,0.35283333299999997,237.63158561666668 -2015-06-18 06:00:00,19.41910534,1010.6375,47.40583333,100.0,14.8275,0.21841666699999998,237.63606738333337 -2015-06-18 07:00:00,29.552909999999997,1010.7375,69.3425,100.0,15.16416667,0.37341666700000004,237.6405491666667 -2015-06-18 08:00:00,2.433716616,1010.679167,146.49333330000002,99.85,15.98833333,0.251916667,237.64606523333336 -2015-06-18 09:00:00,0.0,1010.65,223.7,97.84166667,17.39583333,0.335166667,237.64847853333333 -2015-06-18 10:00:00,6.0855892560000004,1010.8375,158.4775,97.68333333,17.43583333,1.043416667,237.6507194333333 -2015-06-18 11:00:00,0.0,1010.791667,511.925,87.66666667,18.4425,1.51725,237.6531326666667 -2015-06-18 12:00:00,0.0,1010.85,439.2333333000001,74.94916667,19.93833333,2.160666667,237.64899565 -2015-06-18 13:00:00,0.0,1010.670833,573.8333332999999,64.3825,19.8925,2.6775,237.64451383333335 -2015-06-18 14:00:00,0.0,1010.633333,538.6416667000001,59.53083333,20.40083333,2.421416667,237.6369292333333 -2015-06-18 15:00:00,0.0,1010.445833,560.0,51.23333333,20.86666667,2.135166667,237.6269314333333 -2015-06-18 16:00:00,0.0,1010.05,338.59166669999996,51.81583333,20.285,2.600666667,237.6191744833333 -2015-06-18 17:00:00,0.0,1010.079167,174.8833333,54.21083333,19.7075,3.108666667,237.61555456666667 -2015-06-18 18:00:00,0.0,1010.208333,82.09583333,56.51916667,18.35916667,3.0749166669999997,237.61107278333336 -2015-06-18 19:00:00,0.0,1010.4875,50.6725,60.485,17.32,2.437166667,237.61262415 -2015-06-18 20:00:00,0.0,1011.154167,10.69125,62.51916667,16.09583333,2.854916667,237.61417555000003 -2015-06-18 21:00:00,0.0,1011.633333,0.2005,69.79833333,14.41916667,1.260666667,237.61882973333334 -2015-06-18 22:00:00,0.0,1012.0583330000001,0.0,78.00666667,12.8225,0.671666667,237.6214153666667 -2015-06-18 23:00:00,0.0,1012.141667,0.0,86.16666667,11.3275,0.441166667,237.62658668333336 -2015-06-19 00:00:00,0.0,1012.220833,0.0,85.11666667,11.16083333,0.54875,237.6307237166667 -2015-06-19 01:00:00,0.0,1012.0875,0.0,83.975,11.45166667,0.537166667,237.63365409999997 -2015-06-19 02:00:00,0.0,1012.1208330000001,0.0,84.95,11.19083333,0.5105833329999999,237.6377911333333 -2015-06-19 03:00:00,0.0,1011.908333,0.016916667,88.825,11.00666667,0.94975,237.64296243333334 -2015-06-19 04:00:00,0.0,1012.083333,1.9015,89.59166667,10.25416667,0.15883333300000002,237.6465823833333 -2015-06-19 05:00:00,0.0,1012.508333,22.55233333,89.95833333,10.23166667,0.170166667,237.64744425 -2015-06-19 06:00:00,0.0,1013.020833,50.77083333,88.43333333,10.79666667,0.1345,237.65071939999999 -2015-06-19 07:00:00,0.0,1013.425,110.865,84.71666667,11.55333333,0.1465,237.65054701666668 -2015-06-19 08:00:00,0.0,1013.445833,139.4916667,79.95583333,12.5425,0.5519166670000001,237.65106415 -2015-06-19 09:00:00,0.0,1013.3875,230.8833333,78.48333333,13.0025,1.0070000000000001,237.64899565 -2015-06-19 10:00:00,0.0,1013.420833,168.50916669999998,78.07,13.0925,0.625,237.64537570000005 -2015-06-19 11:00:00,0.0,1013.4875,151.80833330000002,80.39916667,13.565,0.39083333299999995,237.64175579999997 -2015-06-19 12:00:00,0.0,1013.45,209.525,78.69666667,14.155,0.5930833329999999,237.63848065000002 -2015-06-19 13:00:00,0.0,1013.0125,360.8666667,75.645,14.31333333,1.125333333,237.63348173333335 -2015-06-19 14:00:00,2.411944176,1012.895833,104.5558333,90.875,13.03833333,1.12225,237.63003421666667 -2015-06-19 15:00:00,0.0,1012.825,51.49666667,94.325,13.1825,1.337416667,237.63348171666667 -2015-06-19 16:00:00,0.0,1012.904167,61.68,88.25,12.69166667,1.4435,237.63589499999998 -2015-06-19 17:00:00,0.0,1012.9416669999999,88.05583333,87.76666667,13.4675,0.68075,237.6386530166667 -2015-06-19 18:00:00,0.0,1013.358333,33.21291667,84.79166667,13.08,1.2259166670000001,237.63934251666663 -2015-06-19 19:00:00,0.0,1013.445833,21.31083333,87.275,11.70083333,1.286166667,237.64451383333335 -2015-06-19 20:00:00,0.0,1013.5041669999999,4.958833333,86.85,11.48583333,0.34175,237.6465823666667 -2015-06-19 21:00:00,0.0,1013.908333,0.05075,87.925,11.325,0.171083333,237.64968513333335 -2015-06-19 22:00:00,0.0,1013.958333,0.0,90.75,10.9425,0.141083333,237.6514089 -2015-06-19 23:00:00,0.0,1013.970833,0.0,93.84166667,10.53916667,0.177,237.65468405 -2015-06-20 00:00:00,0.0,1013.820833,0.0,94.525,10.54,0.132833333,237.65761446666667 -2015-06-20 01:00:00,0.0,1013.5375,0.0,97.74166667,10.33166667,0.045583333,237.6605448833334 -2015-06-20 02:00:00,0.0,1013.4375,0.0,98.28333333,10.00333333,0.3085,237.6614067666667 -2015-06-20 03:00:00,0.0,1013.3875,0.0,97.11666667,10.23166667,0.502166667,237.6627857666667 -2015-06-20 04:00:00,0.0,1013.416667,1.493416667,97.41666667,10.06333333,0.581833333,237.66554378333333 -2015-06-20 05:00:00,0.0,1013.65,10.54325,97.20833333,10.205,0.423333333,237.66640568333335 -2015-06-20 06:00:00,0.0,1013.9416669999999,48.03333333,96.925,10.47166667,0.27925,237.66795705000004 -2015-06-20 07:00:00,0.0,1014.516667,65.87,91.14166667,10.845,0.7646666670000001,237.66675041666667 -2015-06-20 08:00:00,0.0,1014.9,124.8,85.66666667,11.45583333,1.7269166669999998,237.66709520000003 -2015-06-20 09:00:00,0.0,1015.233333,141.54166669999998,83.39166667,11.99583333,2.017416667,237.66606093333334 -2015-06-20 10:00:00,0.0,1015.5375,340.8833333,76.20833333,13.35,1.798583333,237.66330291666668 -2015-06-20 11:00:00,0.0,1015.5875,271.8333333,72.895,13.39166667,1.71625,237.6591658333333 -2015-06-20 12:00:00,3.9114093839999997,1015.666667,332.03333330000004,69.17,14.2625,2.2061666669999997,237.65537356666667 -2015-06-20 13:00:00,0.0,1015.658333,365.5416667,67.10333333,14.65666667,3.09725,237.64796136666666 -2015-06-20 14:00:00,0.0,1015.35,505.20833330000005,64.10083333,15.51,2.0535,237.63985966666667 -2015-06-20 15:00:00,0.0,1015.425,115.75833329999999,67.61,15.21,1.57425,237.63210273333334 -2015-06-20 16:00:00,0.0,1015.258333,270.55,65.64166667,14.99333333,2.3279166669999998,237.6295170666667 -2015-06-20 17:00:00,0.0,1015.275,139.1258333,65.96666667,15.72,1.65325,237.6231391166667 -2015-06-20 18:00:00,0.0,1015.133333,71.05166667,68.70083333,15.1325,2.335583333,237.6202087 -2015-06-20 19:00:00,0.0,1015.4625,13.74483333,70.275,14.17583333,1.250333333,237.6181402 -2015-06-20 20:00:00,0.0,1015.5041669999999,2.8745,81.32083333,13.5025,0.5785,237.62176011666668 -2015-06-20 21:00:00,0.0,1015.666667,0.077916667,90.6,11.73916667,0.003666667,237.62469053333336 -2015-06-20 22:00:00,0.0,1015.716667,0.0,98.21666667,9.929166667,0.000833333,237.63037898333334 -2015-06-20 23:00:00,0.0,1015.7125,0.0,99.7,9.835833333,0.00025,237.63330936666668 -2015-06-21 00:00:00,0.0,1015.466667,0.0,90.10833333,10.29916667,0.0,237.63503311666668 -2015-06-21 01:00:00,0.0,1015.0125,0.0,87.26666667,10.38,0.0,237.63917018333328 -2015-06-21 02:00:00,0.0,1014.679167,0.0,88.475,10.39,0.01025,237.64210054999998 -2015-06-21 03:00:00,0.0,1014.133333,0.0,95.95833333,10.44333333,0.0,237.64554808333332 -2015-06-21 04:00:00,0.0,1013.925,2.10575,99.4,10.33583333,0.0,237.64882326666665 -2015-06-21 05:00:00,2.4050227680000003,1013.825,10.235,100.0,10.5125,0.017583333,237.65020225 -2015-06-21 06:00:00,0.0,1013.658333,19.03,100.0,10.75583333,0.042416667000000005,237.65123655 -2015-06-21 07:00:00,0.0,1013.766667,36.79166667,100.0,11.21333333,0.123916667,237.65313265 -2015-06-21 08:00:00,4.918975248,1013.708333,48.97333333,99.45833333,11.585,0.31625,237.65537355 -2015-06-21 09:00:00,0.0,1013.5,83.11416667,99.00833333,11.61,1.338833333,237.65692496666665 -2015-06-21 10:00:00,0.0,1012.958333,115.575,95.78333333,12.61416667,1.277083333,237.65916585 -2015-06-21 11:00:00,0.0,1012.445833,148.4,92.69166667,13.23,1.403,237.65847636666663 -2015-06-21 12:00:00,0.0,1012.108333,206.9433333,90.73333333,14.32833333,0.96175,237.65951063333333 -2015-06-21 13:00:00,0.0,1011.695833,317.21666669999996,85.925,16.53833333,1.097916667,237.65778684999998 -2015-06-21 14:00:00,0.0,1011.258333,143.37916669999998,86.80833333,17.07916667,1.577083333,237.65537356666664 -2015-06-21 15:00:00,2.430876192,1010.766667,161.8908333,83.24333333,17.92166667,1.01725,237.65261556666667 -2015-06-21 16:00:00,2.427190224,1010.070833,282.15833330000004,90.99166667,17.62666667,0.34025,237.6538222 -2015-06-21 17:00:00,5.328356976,1009.6291669999999,108.65416670000002,86.125,18.53333333,0.936916667,237.65158129999998 -2015-06-21 18:00:00,5.110602096,1009.55,25.15866667,93.26666667,15.79916667,0.600166667,237.6586487 -2015-06-21 19:00:00,2.4145991280000003,1009.1625,28.59166667,98.91666667,14.46416667,0.182166667,237.68347096666665 -2015-06-21 20:00:00,4.868953992,1009.0,9.671333333,99.99166667,13.915,0.076833333,237.6972610833333 -2015-06-21 21:00:00,2.415832704,1009.366667,0.21875,100.0,13.04916667,0.34066666700000003,237.70294953333334 -2015-06-21 22:00:00,2.454090576,1009.458333,0.0,100.0,12.15583333,0.212333333,237.7045009166667 -2015-06-21 23:00:00,2.481039144,1009.4625,0.0,99.59166667,11.97166667,0.359333333,237.70484568333333 -2015-06-22 00:00:00,0.0,1009.329167,0.0,99.875,11.17916667,0.1055,237.7055351833333 -2015-06-22 01:00:00,2.4050227680000003,1009.1208330000001,0.0,100.0,10.07916667,0.044083332999999995,237.7069142 -2015-06-22 02:00:00,0.0,1008.75,0.0,100.0,9.420833333,0.223083333,237.70760369999996 -2015-06-22 03:00:00,2.4155214480000002,1008.533333,0.01125,100.0,9.660833333,0.36591666700000003,237.7070865833333 -2015-06-22 04:00:00,0.0,1008.304167,4.464333333,100.0,9.663333332999999,0.051,237.70656945 -2015-06-22 05:00:00,0.0,1008.108333,23.085,99.49166667,10.4375,0.0165,237.7048457 -2015-06-22 06:00:00,2.48895804,1007.6208330000001,67.27333333,95.175,11.36666667,0.39233333299999995,237.7058799166667 -2015-06-22 07:00:00,0.0,1007.408333,88.905,92.79166667,12.36083333,0.14675,237.7051904333333 -2015-06-22 08:00:00,0.0,1007.3,93.315,93.8,13.10083333,0.11808333300000001,237.70415618333334 -2015-06-22 09:00:00,2.493107304,1007.0125,160.16666669999998,95.35833333,13.63583333,0.4065,237.70312193333334 -2015-06-22 10:00:00,0.0,1006.704167,119.65083329999999,95.35,13.61833333,0.394583333,237.70346665 -2015-06-22 11:00:00,0.0,1006.2458330000001,260.25,93.90833333,13.9,0.5731666670000001,237.70553518333335 -2015-06-22 12:00:00,0.0,1005.883333,265.7083333,92.90833333,14.47916667,0.68575,237.70450094999998 -2015-06-22 13:00:00,2.600950992,1005.5041669999999,229.95,91.6,14.54083333,0.726166667,237.70432855 -2015-06-22 14:00:00,0.0,1005.125,237.83333330000002,92.94166667,14.4875,0.589333333,237.70536280000002 -2015-06-22 15:00:00,0.0,1004.8375,82.68416667,98.55,13.1725,0.622166667,237.71122361666667 -2015-06-22 16:00:00,2.425929096,1004.133333,166.04,97.76666667,13.00666667,0.318583333,237.74793983333328 -2015-06-22 17:00:00,0.0,1003.4125,56.5175,96.65,12.87166667,0.21766666699999998,237.76638415000002 -2015-06-22 18:00:00,0.0,1002.5125,41.04166667,98.075,12.35416667,0.22175,237.77103831666668 -2015-06-22 19:00:00,0.0,1001.666667,10.923,99.7,12.0175,0.574666667,237.77207256666665 -2015-06-22 20:00:00,0.0,1001.1208330000001,1.128833333,100.0,11.18916667,0.587583333,237.77517534999996 -2015-06-22 21:00:00,0.0,1000.725,0.0,100.0,10.61333333,0.13925,237.78120855 -2015-06-22 22:00:00,0.0,1000.633333,0.0,100.0,10.47916667,0.09475,237.78189805 -2015-06-22 23:00:00,0.0,1000.775,0.0,100.0,10.49166667,0.0965,237.7863798333333 -2015-06-23 00:00:00,2.4155214480000002,1001.275,0.0,100.0,9.975833332999999,0.29183333300000003,237.79499865 -2015-06-23 01:00:00,0.0,1002.354167,0.0,98.93333333,9.253333332999999,0.49008333299999995,237.7943091666667 -2015-06-23 02:00:00,0.0,1003.420833,0.0,99.40833333,9.016666667,0.144833333,237.79586056666668 -2015-06-23 03:00:00,0.0,1003.858333,0.0385,99.95833333,8.873333333,0.21758333300000002,237.79758433333333 -2015-06-23 04:00:00,0.0,1004.520833,6.026666667000001,100.0,8.643333333,0.145,237.79792908333334 -2015-06-23 05:00:00,0.0,1005.1291669999999,46.61166667,99.84166667,8.970833333,0.170833333,237.79586058333334 -2015-06-23 06:00:00,2.45799348,1005.741667,176.6083333,96.6,10.34583333,0.283916667,237.79310253333333 -2015-06-23 07:00:00,0.0,1006.283333,95.6875,96.19166667,10.6375,0.271083333,237.79258541666664 -2015-06-23 08:00:00,0.0,1006.625,232.075,88.68333333,12.23833333,0.409083333,237.79103399999997 -2015-06-23 09:00:00,194.5056428,1006.9333330000001,108.64666670000001,93.19166667,11.87583333,0.426333333,237.79017209999995 -2015-06-23 10:00:00,34.1997619,1007.270833,242.0866667,97.05833333,11.2425,0.46216666700000003,237.79172351666668 -2015-06-23 11:00:00,2.548505976,1007.579167,378.075,92.91666667,12.74166667,0.712166667,237.79499866666666 -2015-06-23 12:00:00,0.0,1007.654167,577.075,81.4225,14.80833333,1.29175,237.79499868333335 -2015-06-23 13:00:00,0.0,1008.016667,501.125,74.2125,14.46583333,2.2615,237.7932749 -2015-06-23 14:00:00,0.0,1008.775,187.6175,80.2225,14.255,1.595083333,237.79275776666668 -2015-06-23 15:00:00,5.166023903999999,1009.45,245.18333330000002,94.175,13.10666667,0.79075,237.79310251666666 -2015-06-23 16:00:00,0.0,1009.8,243.65,87.54166667,14.55166667,1.123,237.79120638333333 -2015-06-23 17:00:00,0.0,1010.1916669999999,102.7691667,86.3,14.4425,1.350583333,237.7912064 -2015-06-23 18:00:00,0.0,1010.5875,42.16916667,93.96666667,12.95666667,0.7516666670000001,237.79241299999998 -2015-06-23 19:00:00,4.9369800239999995,1011.0875,10.26041667,96.375,12.55083333,0.275083333,237.79258539999998 -2015-06-23 20:00:00,2.410687512,1011.85,4.4555,99.8,11.8575,0.3525,237.79241303333333 -2015-06-23 21:00:00,2.7468125039999998,1012.741667,0.12066666699999999,98.06666667,11.58,0.45725,237.79327488333334 -2015-06-23 22:00:00,0.0,1013.3,0.0,96.26666667,11.66916667,0.212083333,237.7931025 -2015-06-23 23:00:00,0.0,1013.658333,0.0,95.84166667,11.54166667,0.015333333000000001,237.7936196333333 -2015-06-24 00:00:00,0.0,1014.154167,0.0,94.65833333,11.37083333,0.22399999999999998,237.79155113333331 -2015-06-24 01:00:00,0.0,1014.270833,0.0,95.69166667,11.33416667,0.365,237.79361963333335 -2015-06-24 02:00:00,0.0,1014.3875,0.0,97.16666667,10.59416667,0.40133333299999996,237.7943091666667 -2015-06-24 03:00:00,0.0,1014.791667,0.046916667,97.79166667,10.9575,0.2675,237.7927578 -2015-06-24 04:00:00,0.0,1015.3708330000001,4.0555,96.95,10.61833333,0.058833333,237.79293015 -2015-06-24 05:00:00,0.0,1016.1208330000001,14.575,97.70833333,11.03666667,0.032583333,237.79068926666665 -2015-06-24 06:00:00,0.0,1016.541667,49.66083333,96.425,11.46833333,0.090583333,237.79034449999997 -2015-06-24 07:00:00,0.0,1017.091667,78.63916667,94.21666667,12.01666667,0.196833333,237.78948259999996 -2015-06-24 08:00:00,0.0,1017.729167,104.7,92.275,12.57833333,0.17600000000000002,237.78931023333328 -2015-06-24 09:00:00,0.0,1018.354167,119.63333329999999,88.60833333,12.81583333,0.386083333,237.78689694999994 -2015-06-24 10:00:00,0.0,1018.604167,156.8833333,85.49166667,13.06666667,0.3195,237.78741409999998 -2015-06-24 11:00:00,0.0,1018.766667,248.375,81.15833333,14.13583333,0.35133333299999997,237.78879311666665 -2015-06-24 12:00:00,0.0,1018.775,238.91666669999998,80.63583333,14.7425,0.449666667,237.78706935 -2015-06-24 13:00:00,0.0,1018.6833330000001,258.05,78.66,15.41666667,0.51025,237.78620744999998 -2015-06-24 14:00:00,0.0,1018.616667,360.575,74.8725,15.97583333,0.6345833329999999,237.78310466666665 -2015-06-24 15:00:00,0.0,1018.5625,423.925,70.80583333,16.93166667,0.88875,237.7801742833333 -2015-06-24 16:00:00,0.0,1018.233333,461.24166669999994,69.17916667,17.06166667,1.53175,237.77845048333333 -2015-06-24 17:00:00,0.0,1017.9625,85.8325,70.4725,17.72666667,1.446333333,237.77655436666666 -2015-06-24 18:00:00,0.0,1017.9125,42.48083333,71.34916667,17.94916667,1.2845,237.77603723333334 -2015-06-24 19:00:00,0.0,1018.1291669999999,29.82,80.33166667,17.79,0.44891666700000005,237.77293444999998 -2015-06-24 20:00:00,0.0,1018.320833,5.317416667,95.90833333,14.02833333,0.165833333,237.77310681666665 -2015-06-24 21:00:00,0.0,1018.658333,0.066166667,99.99166667,11.8175,0.0245,237.77241733333332 -2015-06-24 22:00:00,0.0,1018.804167,0.0,100.0,11.61666667,0.032333333,237.77293446666667 -2015-06-24 23:00:00,0.0,1018.658333,0.0,100.0,10.84166667,0.013166667,237.77293444999998 -2015-06-25 00:00:00,0.0,1018.616667,0.0,100.0,9.615833333,0.023916667000000003,237.77414110000004 -2015-06-25 01:00:00,0.0,1018.654167,0.0,100.0,9.32,0.0025,237.77396869999998 -2015-06-25 02:00:00,0.0,1018.6291669999999,0.0,100.0,8.453333333,0.019083333,237.7744858333333 -2015-06-25 03:00:00,0.0,1018.516667,0.041333333,100.0,7.436333332999999,0.0,237.77500298333334 -2015-06-25 04:00:00,0.0,1018.520833,7.1275,100.0,7.0035,0.00075,237.77362395 -2015-06-25 05:00:00,0.0,1018.633333,51.615,100.0,7.982333333,0.013416667,237.77465823333333 -2015-06-25 06:00:00,0.0,1018.820833,95.19666667,100.0,10.1,0.12916666699999999,237.77224496666665 -2015-06-25 07:00:00,0.0,1018.908333,152.575,99.83333333,11.30333333,0.614166667,237.77069358333333 -2015-06-25 08:00:00,0.0,1018.945833,213.45,92.44166667,13.38916667,0.62975,237.77069356666667 -2015-06-25 09:00:00,0.0,1019.1375,343.475,82.7,15.84833333,0.486333333,237.76534988333333 -2015-06-25 10:00:00,0.0,1019.1208330000001,576.325,73.455,18.6025,1.0765833329999999,237.76241948333333 -2015-06-25 11:00:00,0.0,1018.929167,526.35,63.69083333,21.065,0.858666667,237.75948904999998 -2015-06-25 12:00:00,0.0,1018.65,677.6166667,55.10333333,21.96,0.86675,237.75569678333332 -2015-06-25 13:00:00,0.0,1018.408333,698.6583333,49.77666667,23.25916667,1.112083333,237.75018071666668 -2015-06-25 14:00:00,0.0,1017.979167,495.85,49.68416667,23.9625,0.82925,237.74690555000004 -2015-06-25 15:00:00,0.0,1017.8625,429.28333330000004,48.24083333,24.605,0.64425,237.74242378333335 -2015-06-25 16:00:00,0.0,1017.7625,435.28333330000004,43.77333333,24.66333333,0.55925,237.7386315166667 -2015-06-25 17:00:00,0.0,1017.6625,100.2266667,46.885,24.89166667,0.529166667,237.73483923333333 -2015-06-25 18:00:00,0.0,1017.341667,81.04916667,56.7325,23.70333333,0.123916667,237.73501161666664 -2015-06-25 19:00:00,0.0,1017.4375,54.29916667,75.35333333,23.94333333,0.0,237.7315640833333 -2015-06-25 20:00:00,0.0,1017.479167,9.449666667,87.68333333,18.54916667,0.042833333,237.73363258333333 -2015-06-25 21:00:00,0.0,1017.866667,0.1615,91.36666667,14.49916667,0.000833333,237.73397733333334 -2015-06-25 22:00:00,0.0,1017.825,0.0,96.49166667,12.82333333,0.0,237.73432209999999 -2015-06-25 23:00:00,0.0,1017.791667,0.0,99.45833333,11.98666667,0.044166667,237.73604585 -2015-06-26 00:00:00,0.0,1017.6208330000001,0.0,100.0,11.55833333,0.031916667,237.73759723333333 -2015-06-26 01:00:00,0.0,1017.279167,0.0,100.0,11.03,0.020083333000000002,237.74018290000004 -2015-06-26 02:00:00,0.0,1017.0875,0.0,100.0,10.68166667,0.017,237.7412171666667 -2015-06-26 03:00:00,0.0,1017.141667,0.0075,100.0,11.30083333,0.00475,237.74138953333338 -2015-06-26 04:00:00,0.0,1017.016667,4.256166667,100.0,11.77083333,0.022333332999999997,237.7413895166667 -2015-06-26 05:00:00,0.0,1016.954167,31.34333333,99.70833333,12.5375,0.055166667,237.74001051666667 -2015-06-26 06:00:00,0.0,1017.2541669999999,86.0775,96.24166667,13.955,0.0275,237.73914865000003 -2015-06-26 07:00:00,0.0,1017.3791669999999,187.8416667,79.86666667,16.97833333,0.37275,237.73845913333335 -2015-06-26 08:00:00,0.0,1017.395833,226.425,72.96,19.78166667,0.793416667,237.73656296666664 -2015-06-26 09:00:00,0.0,1017.1291669999999,353.6,68.6825,22.1075,0.5065,237.73363258333328 -2015-06-26 10:00:00,0.0,1016.679167,650.675,59.3125,24.36583333,0.625166667,237.72811651666666 -2015-06-26 11:00:00,0.0,1016.25,632.425,57.98416667,25.1625,0.7586666670000001,237.7231176 -2015-06-26 12:00:00,0.0,1015.670833,604.2833333,54.8725,25.80416667,1.29375,237.71846344999997 -2015-06-26 13:00:00,0.0,1015.166667,413.1916667,52.9725,26.785,0.6235,237.71725681666666 -2015-06-26 14:00:00,0.0,1014.9416669999999,332.225,55.10916667,26.2425,0.46816666700000004,237.71484351666666 -2015-06-26 15:00:00,0.0,1014.8166669999999,213.7666667,59.24416667,25.74166667,0.439333333,237.71380924999997 -2015-06-26 16:00:00,0.0,1014.595833,148.33333330000002,62.34666667,24.97416667,0.09225,237.71053408333333 -2015-06-26 17:00:00,0.0,1014.3166669999999,105.94833329999999,68.04583333,24.05666667,0.01025,237.71087883333334 -2015-06-26 18:00:00,0.0,1014.095833,60.9275,81.36916667,22.79333333,0.0185,237.71156836666663 -2015-06-26 19:00:00,0.0,1014.079167,37.10166667,87.325,21.58,0.022583332999999997,237.71243023333332 -2015-06-26 20:00:00,0.0,1013.9375,10.93858333,91.28333333,20.32166667,0.0,237.712775 -2015-06-26 21:00:00,0.0,1014.020833,0.043666667,92.30833333,18.51166667,0.0,237.71536066666667 -2015-06-26 22:00:00,0.0,1013.75,0.0,93.4,17.81916667,0.008,237.71863581666665 -2015-06-26 23:00:00,0.0,1013.55,0.0,95.89166667,17.35666667,0.027083332999999998,237.7184634333333 -2015-06-27 00:00:00,0.0,1012.966667,0.0,97.7,17.175,0.251833333,237.72053195 -2015-06-27 01:00:00,0.0,1012.341667,0.0,98.65833333,16.83916667,0.08458333300000001,237.72415185 -2015-06-27 02:00:00,0.0,1012.6375,0.0,99.34166667,16.66583333,0.204916667,237.72622034999998 -2015-06-27 03:00:00,2.4050227680000003,1012.491667,0.0,100.0,16.4275,0.263333333,237.7260479833333 -2015-06-27 04:00:00,12.07334784,1012.25,1.050833333,100.0,16.21333333,0.083416667,237.72949551666667 -2015-06-27 05:00:00,15.11166806,1012.1625,6.764333333,100.0,16.0925,0.580583333,237.72897839999996 -2015-06-27 06:00:00,24.80262802,1012.0125,15.42475,100.0,16.14916667,0.43541666700000003,237.72932316666663 -2015-06-27 07:00:00,47.69777952,1011.920833,21.145,100.0,16.1625,0.604666667,237.73208118333332 -2015-06-27 08:00:00,32.10104018,1011.9958330000001,138.0108333,99.91666667,16.62,0.7134166670000001,237.73277066666665 -2015-06-27 09:00:00,0.0,1011.8625,253.7416667,94.1,18.69333333,0.91225,237.73328779999997 -2015-06-27 10:00:00,0.0,1011.979167,253.7666667,88.6,19.77666667,0.514083333,237.73328781666666 -2015-06-27 11:00:00,0.0,1012.283333,301.7583333,85.01666667,20.45,0.44041666700000004,237.73225356666663 -2015-06-27 12:00:00,0.0,1012.0875,268.75,83.365,20.7475,1.076166667,237.73173640000002 -2015-06-27 13:00:00,0.0,1012.033333,254.68333330000002,73.81083333,21.34583333,0.858083333,237.73225356666663 -2015-06-27 14:00:00,4.120396128,1012.520833,463.7666666999999,64.88416667,22.19916667,3.095916667,237.72708224999997 -2015-06-27 15:00:00,0.0,1012.3,518.175,58.94,23.32583333,1.968833333,237.72380711666665 -2015-06-27 16:00:00,0.0,1012.791667,348.175,57.9525,23.22916667,2.847833333,237.7194977 -2015-06-27 17:00:00,0.0,1013.170833,110.4016667,65.8875,21.80833333,2.347333333,237.71656729999998 -2015-06-27 18:00:00,0.0,1013.583333,74.3375,65.88083333,21.20416667,1.9898333330000002,237.7148435 -2015-06-27 19:00:00,0.0,1014.1375,42.71583333,63.46416667,21.12,2.202083333,237.71294736666664 -2015-06-27 20:00:00,0.0,1014.7875,10.95875,72.58166667,19.17,1.186,237.7138092666667 -2015-06-27 21:00:00,0.0,1015.783333,0.183166667,90.68333333,15.40166667,0.17875,237.7160501333333 -2015-06-27 22:00:00,0.0,1016.533333,0.0,92.84166667,13.395,0.08825,237.71932531666667 -2015-06-27 23:00:00,0.0,1016.858333,0.0,96.48333333,12.7375,0.260916667,237.72104908333333 -2015-06-28 00:00:00,0.0,1017.3,0.0,99.23333333,11.74833333,0.13275,237.7229452 -2015-06-28 01:00:00,0.0,1017.458333,0.0,100.0,10.68333333,0.052916667,237.72397948333332 -2015-06-28 02:00:00,0.0,1017.345833,0.0,100.0,9.741666667,0.062166667,237.72518609999997 -2015-06-28 03:00:00,0.0,1017.2125,0.048333333,100.0,8.735833332999999,0.020666667,237.726048 -2015-06-28 04:00:00,0.0,1017.579167,8.740416667,100.0,8.288333332999999,0.003,237.72690988333332 -2015-06-28 05:00:00,0.0,1018.041667,98.2525,99.93333333,10.27,0.08991666699999999,237.72656511666665 -2015-06-28 06:00:00,0.0,1018.541667,203.6166667,90.50416667,13.06,0.45833333299999995,237.72622036666667 -2015-06-28 07:00:00,0.0,1018.845833,203.91916669999998,77.46,16.05333333,0.622,237.72449659999998 -2015-06-28 08:00:00,0.0,1018.7125,66.65583333,68.51833333,18.1525,0.5595,237.72346235 -2015-06-28 09:00:00,0.0,1018.579167,419.64083330000005,58.7875,19.44083333,0.935583333,237.7213938333333 -2015-06-28 10:00:00,0.0,1018.366667,625.9916667,54.1625,20.45083333,1.031333333,237.71794628333336 -2015-06-28 11:00:00,0.0,1018.125,721.7333332999999,53.24166667,21.62166667,0.6729166670000001,237.71191311666666 -2015-06-28 12:00:00,0.0,1017.7625,652.775,50.90416667,22.20416667,0.96675,237.70846559999998 -2015-06-28 13:00:00,0.0,1017.333333,680.775,48.16833333,23.43916667,0.744416667,237.7038114333333 -2015-06-28 14:00:00,0.0,1017.15,601.9166667000001,48.415,23.75,0.987833333,237.69829538333332 -2015-06-28 15:00:00,0.0,1016.733333,462.46666669999996,49.71083333,23.58666667,0.922083333,237.69726111666662 -2015-06-28 16:00:00,0.0,1016.666667,291.71666669999996,49.18166667,23.46,0.955583333,237.69312408333334 -2015-06-28 17:00:00,0.0,1016.6,125.0525,57.47833333,22.5025,0.494166667,237.69174505 -2015-06-28 18:00:00,0.0,1016.5625,79.95583333,73.51666667,20.92166667,0.061583333,237.6920898 -2015-06-28 19:00:00,0.0,1016.654167,49.4675,82.89166667,20.84166667,0.011416667,237.69398593333332 -2015-06-28 20:00:00,0.0,1016.5,4.954583333,90.46666667,18.12666667,0.004166667,237.69519258333332 -2015-06-28 21:00:00,0.0,1016.725,0.058666667,90.00833333,16.8,0.052416667,237.69622685 -2015-06-28 22:00:00,0.0,1016.783333,0.0,93.28333333,16.51,0.10033333300000001,237.69950200000002 -2015-06-28 23:00:00,0.0,1016.35,0.0,95.95833333,15.90666667,0.08975,237.7007086333333 -2015-06-29 00:00:00,0.0,1016.216667,0.0,96.425,15.5225,0.030083332999999997,237.7058799 -2015-06-29 01:00:00,0.0,1016.1875,0.0,97.6,15.2825,0.107333333,237.7079484333333 -2015-06-29 02:00:00,0.0,1015.883333,0.0,97.775,14.9225,0.04225,237.71053408333333 -2015-06-29 03:00:00,0.0,1015.6,0.0,99.11666667,14.26333333,0.00625,237.71208550000003 -2015-06-29 04:00:00,0.0,1015.679167,6.87525,99.8,14.24,0.002,237.71346451666668 -2015-06-29 05:00:00,0.0,1015.929167,54.20083333,97.96666667,14.85666667,0.0,237.71243023333332 -2015-06-29 06:00:00,0.0,1016.091667,135.7833333,89.95333333,16.93583333,0.049416667000000004,237.71122359999995 -2015-06-29 07:00:00,0.0,1016.3875,202.2666667,76.4525,18.9925,0.494333333,237.71053406666667 -2015-06-29 08:00:00,0.0,1016.545833,211.8,67.04833333,20.605,0.6738333329999999,237.7088103166667 -2015-06-29 09:00:00,0.0,1016.708333,351.0416667,61.88666667,23.12083333,0.755,237.70467326666665 -2015-06-29 10:00:00,0.0,1016.7541669999999,399.2333333,62.69833333,23.765,0.740166667,237.69777823333334 -2015-06-29 11:00:00,0.0,1016.7458330000001,480.1416666999999,60.845,25.04666667,0.53925,237.69174505 -2015-06-29 12:00:00,0.0,1016.583333,657.5833332999999,56.12416667,26.19916667,0.80475,237.68622898333334 -2015-06-29 13:00:00,0.0,1016.195833,579.0,53.83333333,27.12666667,0.902166667,237.68174720000002 -2015-06-29 14:00:00,0.0,1016.008333,626.9416667,54.11583333,27.27916667,1.081,237.67743778333337 -2015-06-29 15:00:00,0.0,1016.1208330000001,368.5833333,52.1775,26.69916667,1.36325,237.67330073333338 -2015-06-29 16:00:00,0.0,1015.975,451.6833333000001,44.1775,26.49,2.09375,237.67226648333335 -2015-06-29 17:00:00,0.0,1016.045833,99.035,44.625,26.46166667,2.096916667,237.66985321666667 -2015-06-29 18:00:00,0.0,1016.2625,52.92666667,46.3475,26.01083333,1.2615,237.66812946666673 -2015-06-29 19:00:00,0.0,1016.604167,32.77666667,56.31166667,24.40583333,0.5831666670000001,237.66554380000002 -2015-06-29 20:00:00,0.0,1017.0875,7.659666667000001,77.52333333,19.49583333,0.037166667,237.6655437833334 -2015-06-29 21:00:00,0.0,1017.525,0.275583333,89.96666667,16.305,0.070666667,237.66933608333332 -2015-06-29 22:00:00,0.0,1018.0125,0.0,93.525,15.05583333,0.10400000000000001,237.67105983333337 -2015-06-29 23:00:00,0.0,1018.045833,0.0,95.2,14.385,0.027583332999999998,237.67381788333333 -2015-06-30 00:00:00,0.0,1017.9125,0.0,96.83333333,14.51166667,0.024583333,237.67709305000002 -2015-06-30 01:00:00,0.0,1017.8083330000001,0.0,99.33333333,13.52,0.008833333,237.67864445 -2015-06-30 02:00:00,0.0,1017.545833,0.0,99.88333333,12.5375,0.0,237.68105768333336 -2015-06-30 03:00:00,0.0,1017.529167,0.01975,100.0,11.1125,0.0,237.68226433333334 -2015-06-30 04:00:00,0.0,1017.658333,5.475,100.0,10.71833333,0.026583332999999997,237.68571185 -2015-06-30 05:00:00,0.0,1017.983333,91.18583333,98.76666667,12.42916667,0.0,237.68347098333334 -2015-06-30 06:00:00,0.0,1018.1208330000001,195.79166669999998,89.26833333,16.36166667,0.226833333,237.68312621666666 -2015-06-30 07:00:00,0.0,1018.4875,204.4691667,76.88083333,18.15083333,0.834666667,237.6832985833333 -2015-06-30 08:00:00,0.0,1018.6208330000001,67.30416667,70.23166667,20.28416667,0.74575,237.68226433333336 -2015-06-30 09:00:00,0.0,1018.533333,404.1225,59.74166667,23.17642763,0.723,237.67761016666668 -2015-06-30 10:00:00,0.0,1018.25,627.0333333,53.53416667,23.99166667,1.58825,237.66830183333335 -2015-06-30 11:00:00,0.0,1018.0875,688.9916667,48.1775,24.87,1.7063333330000001,237.66088963333334 -2015-06-30 12:00:00,0.0,1017.658333,715.925,46.625,25.97166667,1.4729166669999998,237.65537356666667 -2015-06-30 13:00:00,0.0,1017.4125,701.3583332999999,42.39833333,26.67,1.55,237.64951274999999 -2015-06-30 14:00:00,0.0,1016.891667,658.9666667,39.94166667,28.03833333,1.2491666670000001,237.64606523333336 -2015-06-30 15:00:00,0.0,1016.470833,592.1916667,37.71416667,28.42583333,1.096666667,237.6424453 -2015-06-30 16:00:00,0.0,1015.983333,493.6833333000001,37.84166667,29.0325,1.069583333,237.63985966666667 -2015-06-30 17:00:00,0.0,1015.466667,76.45666667,37.3625,28.7675,1.32925,237.63779115000003 -2015-06-30 18:00:00,0.0,1015.170833,33.46416667,41.27083333,28.12833333,1.355833333,237.6369292833334 -2015-06-30 19:00:00,0.0,1015.4,24.63833333,54.09166667,27.695,0.2145,237.63468836666664 -2015-06-30 20:00:00,0.0,1015.604167,9.95475,80.88416667,21.88583333,0.00425,237.63658451666666 -2015-06-30 21:00:00,0.0,1015.954167,0.16525,92.64166667,17.42583333,0.021583333,237.64003205000003 -2015-06-30 22:00:00,0.0,1016.008333,0.0,95.30833333,15.72416667,0.006166667,237.64451381666672 -2015-06-30 23:00:00,0.0,1016.15,0.0,97.30833333,14.66,0.037833333,237.64675473333332 -2015-01-07 00:00:00,0.0,1016.2,0.0,98.125,13.91916667,0.009916666999999999, -2015-01-07 01:00:00,0.0,1016.1375,0.0,99.79166667,13.13416667,0.007166667, -2015-01-07 02:00:00,0.0,1016.1916669999999,0.0,100.0,12.61083333,0.004416667, -2015-01-07 03:00:00,0.0,1016.216667,0.04975,100.0,12.3025,0.01175, -2015-01-07 04:00:00,0.0,1016.404167,7.6895,99.96666667,12.07,0.016, -2015-01-07 05:00:00,0.0,1016.645833,91.48416667,93.90833333,14.30583333,0.03575, -2015-01-07 06:00:00,0.0,1016.770833,194.5333333,80.605,18.4925,0.18791666699999998, -2015-01-07 07:00:00,0.0,1016.804167,205.5791667,73.41083333,19.95916667,1.062583333, -2015-01-07 08:00:00,0.0,1016.65,60.2125,66.87416667,22.5325,1.020333333, -2015-01-07 09:00:00,0.0,1016.583333,399.2783333,59.3125,25.21666667,1.4350833330000001, -2015-01-07 10:00:00,0.0,1016.4875,623.125,54.3325,26.935,1.4135, -2015-01-07 11:00:00,0.0,1016.2625,683.1166667,49.20166667,28.87583333,1.6619166669999998, -2015-01-07 12:00:00,0.0,1015.975,713.325,45.515,29.9475,2.0380833330000003, -2015-01-07 13:00:00,0.0,1015.5625,694.4416667,43.15416667,30.52166667,1.8201666669999998, -2015-01-07 14:00:00,0.0,1014.958333,661.6083332999999,42.24083333,31.26416667,1.876333333, -2015-01-07 15:00:00,0.0,1014.725,561.7833333,41.55916667,31.6075,2.11925, -2015-01-07 16:00:00,0.0,1014.404167,488.99166669999994,41.27416667,31.73583333,1.7608333330000001, -2015-01-07 17:00:00,0.0,1014.016667,111.05166670000001,42.98666667,31.88583333,1.5801666669999999, -2015-01-07 18:00:00,0.0,1013.733333,38.95333333,44.39166667,31.68,1.099166667, -2015-01-07 19:00:00,0.0,1013.9625,28.06,57.98583333,30.0825,0.313916667, -2015-01-07 20:00:00,0.0,1014.2541669999999,10.04675,79.93666667,24.65416667,0.0645, -2015-01-07 21:00:00,0.0,1014.708333,0.12116666699999999,88.775,20.2325,0.01825, -2015-01-07 22:00:00,0.0,1015.1291669999999,0.0,95.14166667,18.5825,0.048166667, -2015-01-07 23:00:00,0.0,1015.383333,0.0,97.25,17.71083333,0.0355, -2015-02-07 00:00:00,0.0,1015.579167,0.0,97.45,16.88583333,0.009916666999999999, -2015-02-07 01:00:00,0.0,1015.670833,0.0,97.70833333,16.27416667,0.016916667, -2015-02-07 02:00:00,0.0,1015.85,0.0,98.725,15.65583333,0.11783333300000001, -2015-02-07 03:00:00,0.0,1015.795833,0.035666667,98.99166667,15.06833333,0.003833333, -2015-02-07 04:00:00,0.0,1015.991667,6.106166667,98.95,14.78166667,0.00375, -2015-02-07 05:00:00,0.0,1016.4125,79.8575,93.38333333,16.60833333,0.0, -2015-02-07 06:00:00,0.0,1016.775,184.41666669999998,80.04083333,21.2875,0.034333333, -2015-02-07 07:00:00,0.0,1016.720833,204.1883333,73.8725,23.12416667,0.697583333, -2015-02-07 08:00:00,0.0,1016.675,66.2525,61.92333333,25.70666667,1.6001666669999999, -2015-02-07 09:00:00,0.0,1016.804167,392.9691667,54.95083333,28.26083333,1.793333333, -2015-02-07 10:00:00,0.0,1016.820833,613.1666667000001,50.27166667,30.04333333,2.2745833330000003, -2015-02-07 11:00:00,0.0,1016.645833,672.6333333,47.935,31.73333333,2.5573333330000003, -2015-02-07 12:00:00,0.0,1016.55,700.425,43.99666667,32.805,2.4660833330000003, -2015-02-07 13:00:00,0.0,1016.179167,694.8666667,40.1875,33.65583333,2.4041666669999997, -2015-02-07 14:00:00,0.0,1016.0,653.6416667000001,39.72333333,34.1,2.253916667, -2015-02-07 15:00:00,0.0,1015.904167,574.6416667000001,39.80166667,34.32416667,2.235583333, -2015-02-07 16:00:00,0.0,1015.64575,473.53333330000004,39.46416667,34.42666667,2.233916667, -2015-02-07 17:00:00,0.0,1015.175,107.9225,40.38416667,34.31916667,1.70225, -2015-02-07 18:00:00,0.0,1015.192167,47.96916667,43.2975,33.84666667,1.231666667, -2015-02-07 19:00:00,0.0,1015.418167,26.4575,63.61666667,31.25333333,0.716, -2015-02-07 20:00:00,0.0,1015.937333,4.7626666669999995,81.745,24.93333333,0.048083333, -2015-02-07 21:00:00,0.0,1016.3505,0.0465,88.99166667,21.675,0.021416667, -2015-02-07 22:00:00,0.0,1016.35,0.0,93.975,20.0575,0.0, -2015-02-07 23:00:00,0.0,1016.517167,0.0,96.625,19.2725,0.0, -2015-03-07 00:00:00,0.0,1016.634833,0.0,98.18333333,18.74,0.0,238.03746933333332 -2015-03-07 01:00:00,0.0,1016.908833,0.0,98.625,18.47666667,0.0,238.03748599999997 -2015-03-07 02:00:00,0.0,1017.278,0.0,98.35833333,18.87333333,0.0,238.03883599999998 -2015-03-07 03:00:00,0.0,1017.574,0.030083332999999997,98.51666667,18.84583333,0.02775,238.03983599999995 -2015-03-07 04:00:00,0.0,1017.7123330000001,4.285833333,99.325,18.44416667,0.049416667000000004,238.03950266666664 -2015-03-07 05:00:00,0.0,1018.4775,17.47416667,97.88333333,19.3875,0.140583333,238.039836 -2015-03-07 06:00:00,0.0,1019.028,89.17416667,94.625,21.03416667,0.356333333,238.040536 -2015-03-07 07:00:00,0.0,1019.594167,193.0333333,84.27333333,23.835,0.743916667,238.04331933333333 -2015-03-07 08:00:00,0.0,1019.725,111.60833329999998,74.12,25.52666667,1.4578333330000002,238.04435266666664 -2015-03-07 09:00:00,0.0,1019.959333,382.225,67.25666667,26.87166667,1.7704166669999999,238.05013599999998 -2015-03-07 10:00:00,0.0,1020.133833,582.4,61.02416667,28.23333333,1.53775,238.04741933333335 -2015-03-07 11:00:00,0.0,1019.990167,644.5166667000001,57.39916667,30.16833333,1.472083333,238.04123600000003 -2015-03-07 12:00:00,0.0,1019.564667,675.75,53.1825,32.02916667,1.137666667,238.04158600000002 -2015-03-07 13:00:00,0.0,1019.0725,669.3916667000001,49.13583333,33.37916667,1.063833333,238.04158600000002 -2015-03-07 14:00:00,0.0,1018.932333,620.8166667,45.83166667,34.30416667,0.939916667,238.04158600000002 -2015-03-07 15:00:00,0.0,1018.531333,542.35,44.68166667,34.29333333,1.157833333,238.04158600000002 -2015-03-07 16:00:00,0.0,1017.929833,434.225,43.78,35.09833333,0.616083333,238.042286 -2015-03-07 17:00:00,0.0,1017.331833,112.4258333,47.33083333,34.48833333,0.984833333,238.042286 -2015-03-07 18:00:00,0.0,1017.141167,66.94083333,53.78916667,34.425,0.48908333299999995,238.042986 -2015-03-07 19:00:00,0.0,1017.216667,53.115,69.83083333,32.78583333,0.078083333,238.04333599999998 -2015-03-07 20:00:00,0.0,1017.377,7.067166667,85.29583333,27.07,0.110666667,238.04333599999998 -2015-03-07 21:00:00,0.0,1017.456833,0.06575,87.79166667,23.7575,0.234583333,238.04368599999998 -2015-03-07 22:00:00,0.0,1017.491667,0.0,89.55,21.99833333,0.065166667,238.04435266666664 -2015-03-07 23:00:00,0.0,1017.4416669999999,0.0,93.875,20.86083333,0.07825,238.04435266666664 -2015-04-07 00:00:00,0.0,1017.2485,0.0,96.775,20.03583333,0.027333332999999998,238.04547670000002 -2015-04-07 01:00:00,0.0,1016.881333,0.0,99.10833333,19.57083333,0.016583333000000002,238.04547670000002 -2015-04-07 02:00:00,0.0,1016.5245,0.0,100.0,18.95,0.012916667,238.04547670000002 -2015-04-07 03:00:00,0.0,1016.3489999999999,0.006083333000000001,100.0,18.46333333,0.040833333,238.04539909999994 -2015-04-07 04:00:00,0.0,1016.2485,5.69575,100.0,18.1625,0.0,238.04545083333332 -2015-04-07 05:00:00,0.0,1016.2775,58.855,99.925,19.2725,8.329999999999999e-05,238.04545083333335 -2015-04-07 06:00:00,0.0,1016.4495,156.225,91.91666667,23.17083333,0.106333333,238.04537323333332 -2015-04-07 07:00:00,0.0,1016.265167,202.66666669999998,82.06083333,25.725,0.500083333,238.04534736666665 -2015-04-07 08:00:00,0.0,1016.057333,108.43333329999999,64.99666667,28.32833333,1.515333333,238.04545083333335 -2015-04-07 09:00:00,0.0,1015.740167,380.65,57.3225,30.68833333,2.3515,238.04542496666667 -2015-04-07 10:00:00,0.0,1015.456833,548.3916667000001,52.15166667,32.3,2.558166667,238.04539909999997 -2015-04-07 11:00:00,0.0,1015.3739999999999,629.2,47.50416667,33.83333333,2.619583333,238.04539910000003 -2015-04-07 12:00:00,0.0,1015.2,655.6166667,45.6625,35.6725,2.04375,238.04537323333332 -2015-04-07 13:00:00,0.0,1015.032833,648.025,44.97083333,35.7325,0.760083333,238.04537323333332 -2015-04-07 14:00:00,0.0,1014.881833,623.575,39.61916667,35.6825,1.037666667,238.04532149999997 -2015-04-07 15:00:00,0.0,1014.674,554.075,41.3125,36.4625,0.614083333,238.04532149999997 -2015-04-07 16:00:00,0.0,1014.4735,463.99166669999994,39.7575,36.53583333,0.634416667,238.04532149999997 -2015-04-07 17:00:00,0.0,1014.2843330000001,87.18666667,37.71583333,35.87,0.9025,238.04532149999997 -2015-04-07 18:00:00,0.0,1014.5015,59.0275,52.89916667,33.48083333,0.8595,238.0452968833333 -2015-04-07 19:00:00,0.0,1014.6239999999999,27.3475,59.085,29.69583333,0.054583333,238.04517379999996 -2015-04-07 20:00:00,0.0,1014.492667,9.620583332999999,58.6475,28.6575,0.383166667,238.04517379999996 -2015-04-07 21:00:00,0.0,1014.657333,0.046916667,78.93666667,26.32333333,0.04675,238.04517379999996 -2015-04-07 22:00:00,0.0,1014.540667,0.0,85.975,23.1725,0.09475,238.04517379999996 -2015-04-07 23:00:00,0.0,1014.653,0.0,88.38333333,21.91166667,0.131666667,238.04517379999996 -2015-05-07 00:00:00,0.0,1014.932833,0.0,90.99166667,22.11833333,0.159583333,238.04080778333332 -2015-05-07 01:00:00,0.0,1014.817667,0.0,91.6,21.11916667,0.0215,238.04235916666667 -2015-05-07 02:00:00,0.0,1014.8563330000001,0.0,94.33333333,21.015,0.0,238.0421868 -2015-05-07 03:00:00,0.0,1014.481833,0.0,95.20833333,20.75083333,0.0,238.0409801666667 -2015-05-07 04:00:00,0.0,1014.257833,4.743083333,96.50833333,19.81,0.003416667,238.04218678333336 -2015-05-07 05:00:00,0.0,1014.183833,56.8675,94.86666667,20.50166667,0.03225,238.04132493333336 -2015-05-07 06:00:00,0.0,1014.165167,74.885,91.03333333,23.2925,0.028666667000000003,238.0402906666667 -2015-05-07 07:00:00,0.0,1013.931833,204.1166667,77.9075,25.7125,0.36616666700000006,238.0392564166667 -2015-05-07 08:00:00,0.0,1013.530333,114.11666670000001,71.67583333,28.1575,0.6585833329999999,238.03701548333333 -2015-05-07 09:00:00,0.0,1012.797,380.5833333,62.8425,30.09166667,0.7979999999999999,238.03684311666666 -2015-05-07 10:00:00,0.0,1012.179333,587.0583333,52.5325,32.8625,1.5985,238.03546409999998 -2015-05-07 11:00:00,0.0,1011.447,642.8666667,43.96833333,34.965,1.991416667,238.03511938333335 -2015-05-07 12:00:00,0.0,1010.921,554.4666667,39.64666667,36.035,2.3809166669999997,238.03460221666663 -2015-05-07 13:00:00,0.0,1010.072,665.8333332999999,34.255,36.56166667,2.48375,238.03167183333335 -2015-05-07 14:00:00,0.0,1008.926333,526.9,33.5775,37.355,2.851833333,238.03115468333337 -2015-05-07 15:00:00,39.76280311,1008.075,183.0766667,47.5375,35.03916667,2.443666667,238.03167183333335 -2015-05-07 16:00:00,0.0,1007.609667,394.05,76.76666667,30.42583333,1.282666667,238.03132708333337 -2015-05-07 17:00:00,0.0,1006.991667,106.785,62.40333333,33.55916667,0.5621666670000001,238.03098233333336 -2015-05-07 18:00:00,0.0,1007.666833,71.68916667,58.42416667,32.45666667,2.035916667,238.03339561666667 -2015-05-07 19:00:00,0.0,1008.5005,33.4975,69.44083333,27.48916667,3.187916667,238.03287848333335 -2015-05-07 20:00:00,0.0,1009.5360000000001,4.384083333,80.77,25.20416667,2.1141666669999997,238.03253373333334 -2015-05-07 21:00:00,0.0,1010.868167,0.0,84.70833333,23.64833333,1.4605833330000002,238.03408513333338 -2015-05-07 22:00:00,0.0,1011.396167,0.0,96.66666667,21.72666667,1.389083333,238.03425748333333 -2015-05-07 23:00:00,12.18783355,1012.842333,0.0,96.88333333,19.90916667,1.6185833330000001,238.03322321666664 -2015-06-07 00:00:00,13.57470454,1014.590833,0.0,96.80833333,18.34916667,0.581,237.74552658333332 -2015-06-07 01:00:00,2.54273352,1015.870667,0.0,99.04166667,17.52333333,0.6034166670000001,237.74793985 -2015-06-07 02:00:00,0.0,1015.975,0.0,99.925,17.00833333,0.21833333300000002,237.75018076666666 -2015-06-07 03:00:00,0.0,1016.3936669999999,0.0,100.0,16.0425,0.19033333300000002,237.75224923333337 -2015-06-07 04:00:00,0.0,1016.809333,4.479583333,100.0,15.44833333,0.255083333,237.75535205000003 -2015-06-07 05:00:00,0.0,1017.035833,63.9775,99.53333333,15.95583333,0.378666667,237.75707580000002 -2015-06-07 06:00:00,0.0,1017.5785,168.2416667,95.39166667,17.985,0.138916667,237.75742056666664 -2015-06-07 07:00:00,0.0,1018.344167,193.5225,88.66666667,18.96333333,0.38783333299999995,237.75759293333337 -2015-06-07 08:00:00,0.0,1018.718167,79.12583333,81.72916667,19.73166667,0.48875,237.75535203333334 -2015-06-07 09:00:00,0.0,1018.7760000000001,389.0083333,69.80833333,20.66416667,0.7465,237.7474227 -2015-06-07 10:00:00,0.0,1018.613667,617.625,61.855,21.6925,0.8420833329999999,237.73811435000002 -2015-06-07 11:00:00,0.0,1018.2235,679.2166667,56.08416667,22.50083333,1.27375,237.72794414999996 -2015-06-07 12:00:00,0.0,1017.931833,712.2083332999999,49.06916667,23.54416667,1.242166667,237.72397951666665 -2015-06-07 13:00:00,0.0,1017.5975,705.65,48.80416667,24.10333333,1.42,237.72139383333334 -2015-06-07 14:00:00,0.0,1017.2485,665.0,44.32666667,24.84416667,1.434166667,237.7179463 -2015-06-07 15:00:00,0.0,1016.705333,593.1666667000001,42.11916667,25.57,1.006666667,237.71673968333334 -2015-06-07 16:00:00,0.0,1016.054833,495.125,41.47666667,26.03333333,0.877416667,237.71484353333335 -2015-06-07 17:00:00,0.0,1015.330333,72.64833333,43.53583333,26.35166667,0.9165,237.71380928333335 -2015-06-07 18:00:00,0.0,1014.905333,34.28333333,45.47083333,26.18416667,0.883,237.7143264166667 -2015-06-07 19:00:00,0.0,1014.506833,27.1425,54.08333333,25.34166667,0.6459999999999999,237.71294738333333 -2015-06-07 20:00:00,0.0,1014.493667,7.536166667000001,80.80083333,20.4825,0.03375,237.71311975 -2015-06-07 21:00:00,0.0,1014.684333,0.0775,87.71666667,16.18666667,0.0085,237.71587778333333 -2015-06-07 22:00:00,0.0,1014.4475,0.0,91.15,14.57,0.038916667,237.72035959999997 -2015-06-07 23:00:00,0.0,1014.1995,0.0,95.6,13.51166667,0.035333333,237.72535849999997 -2015-07-07 00:00:00,0.0,1013.6965,0.0,97.71666667,12.72916667,0.04025,237.56189949999995 -2015-07-07 01:00:00,0.0,1013.280333,0.0,98.88333333,11.83166667,0.008,237.56538438333334 -2015-07-07 02:00:00,0.0,1012.865167,0.0,99.98333333,11.26333333,0.068666667,237.5697055833333 -2015-07-07 03:00:00,0.0,1012.3725,0.00375,100.0,10.65583333,0.007666666999999999,237.57402678333332 -2015-07-07 04:00:00,0.0,1012.015167,4.89125,100.0,10.43333333,0.0,237.576954 -2015-07-07 05:00:00,0.0,1011.891167,87.2425,96.41666667,12.48583333,0.0,237.5798813333333 -2015-07-07 06:00:00,0.0,1011.5725,189.975,81.35083333,16.45666667,0.37291666700000003,237.58127526666667 -2015-07-07 07:00:00,0.0,1010.964167,226.3916667,74.46083333,17.96416667,0.496,237.58197223333335 -2015-07-07 08:00:00,0.0,1010.3715,67.77333333,66.1425,21.5325,0.65575,237.58043888333336 -2015-07-07 09:00:00,0.0,1009.587167,300.6175,57.27416667,25.32583333,0.91875,237.57514191666667 -2015-07-07 10:00:00,0.0,1008.527833,518.2416667,47.0825,28.04,1.44825,237.56301468333334 -2015-07-07 11:00:00,0.0,1007.789167,667.125,38.41333333,30.68916667,2.346,237.54614803333334 -2015-07-07 12:00:00,0.0,1006.976833,573.85,38.56166667,31.84583333,2.024916667,237.5340208 -2015-07-07 13:00:00,0.0,1005.7705,478.625,43.30083333,32.49833333,0.80075,237.52844506666665 -2015-07-07 14:00:00,0.0,1004.7636669999999,479.3083333000001,42.81083333,32.70416667,0.795416667,237.52551778333336 -2015-07-07 15:00:00,0.0,1004.026333,181.94166669999998,45.60083333,32.07,0.931083333,237.52509959999998 -2015-07-07 16:00:00,0.0,1002.9985,199.0,45.615,31.46916667,1.296583333,237.52426325 -2015-07-07 17:00:00,0.0,1003.747167,112.87833329999998,58.82333333,28.0625,2.356666667,237.52147536666666 -2015-07-07 18:00:00,7.9876542960000005,1004.067167,26.58483333,64.58083333,25.38666667,1.3946666669999999,237.52342686666665 -2015-07-07 19:00:00,7.52532804,1004.087167,14.23416667,76.8575,22.04333333,0.640833333,237.5241238333333 -2015-07-07 20:00:00,10.24008895,1003.241667,8.465083332999999,86.325,19.90833333,0.336,237.53025718333333 -2015-07-07 21:00:00,0.0,1003.7603330000001,0.053083332999999996,96.85,17.79083333,0.35808333299999995,237.53499655 -2015-07-07 22:00:00,0.0,1003.784833,0.0,93.41666667,17.89583333,0.561,237.54112986666667 -2015-07-07 23:00:00,0.0,1003.891167,0.0,96.50833333,17.33,0.12375,237.54572986666665 -2015-08-07 00:00:00,0.0,1003.842167,0.0,98.525,16.38166667,0.024166667000000003,237.44982701666672 -2015-08-07 01:00:00,0.0,1004.9271669999999,0.0,90.74166667,16.81166667,0.5645,237.4566573 -2015-08-07 02:00:00,2.421899448,1005.965167,0.0,87.75833333,15.70833333,0.54075,237.46083911666668 -2015-08-07 03:00:00,0.0,1005.9515,0.0,87.375,14.1775,0.304333333,237.46529968333334 -2015-08-07 04:00:00,0.0,1006.092167,5.1521666669999995,93.68333333,13.05333333,0.12566666699999998,237.47073606666666 -2015-08-07 05:00:00,0.0,1006.4275,26.6225,88.7,14.01083333,0.18625,237.47310576666666 -2015-08-07 06:00:00,0.0,1006.9025,53.91333333,84.675,14.43,0.37191666700000003,237.47547543333334 -2015-08-07 07:00:00,0.0,1007.293667,165.2583333,80.18333333,15.46,0.4115,237.4768693833333 -2015-08-07 08:00:00,0.0,1007.617667,160.675,74.60666667,16.52666667,0.8190000000000001,237.47659058333332 -2015-08-07 09:00:00,0.0,1007.8255,377.4,66.91583333,17.47666667,0.8793333329999999,237.4710148666667 -2015-08-07 10:00:00,0.0,1007.958333,379.55,62.66416667,18.02416667,0.739083333,237.45819063333337 -2015-08-07 11:00:00,0.0,1008.285833,344.28333330000004,62.21083333,18.97583333,1.006166667,237.44285734999997 -2015-08-07 12:00:00,0.0,1008.383333,506.46666669999996,64.51583333,19.1175,1.04225,237.43198463333331 -2015-08-07 13:00:00,0.0,1008.45,267.5416667,61.26583333,19.84,0.9804166670000001,237.42668768333337 -2015-08-07 14:00:00,0.0,1008.418167,506.3583333000001,56.28833333,21.13583333,1.25525,237.42389978333333 -2015-08-07 15:00:00,0.0,1008.7,383.1916667,59.68333333,20.48166667,1.301833333,237.42264523333333 -2015-08-07 16:00:00,0.0,1008.657833,262.1,64.23166667,19.8675,0.8975833329999999,237.41943921666666 -2015-08-07 17:00:00,0.0,1008.3480000000001,110.13083329999999,63.69333333,19.56833333,1.0091666670000001,237.42055436666666 -2015-08-07 18:00:00,0.0,1008.494167,57.925,70.2725,18.805,0.593833333,237.42153011666664 -2015-08-07 19:00:00,2.424860664,1008.791167,21.4625,85.3525,16.33833333,0.36416666700000005,237.42320283333333 -2015-08-07 20:00:00,0.0,1008.8936669999999,5.379833333,93.26666667,15.32666667,0.321333333,237.4265483 -2015-08-07 21:00:00,0.0,1009.4025,0.067166667,93.2,14.685,0.3355,237.42961493333334 -2015-08-07 22:00:00,2.46041064,1009.7525,0.0,95.59166667,14.715,0.45983333299999996,237.43365738333333 -2015-08-07 23:00:00,2.411802048,1010.016667,0.0,98.26666667,14.17666667,0.124583333,237.43714218333335 -2015-09-07 00:00:00,0.0,1009.917167,0.0,96.2,14.18416667,0.11491666699999999,237.53964250000004 -2015-09-07 01:00:00,0.0,1010.05,0.0,95.03333333,14.52916667,0.22241666699999998,237.54057315 -2015-09-07 02:00:00,0.0,1009.8225,0.0,93.28333333,14.56666667,0.423,237.54088338333335 -2015-09-07 03:00:00,0.0,1009.6775,0.0,91.175,14.61083333,0.303166667,237.54289978333335 -2015-09-07 04:00:00,0.0,1010.1025,1.71125,96.425,14.13083333,0.342583333,237.54538151666665 -2015-09-07 05:00:00,0.0,1011.1305,38.62075,88.44416667,14.04833333,2.1743333330000003,237.54801838333336 -2015-09-07 06:00:00,0.0,1012.273667,149.80833330000002,77.62916667,14.1825,2.35325,237.54925925 -2015-09-07 07:00:00,0.0,1013.2765,241.2166667,71.01083333,14.4225,3.1116666669999997,237.54894903333332 -2015-09-07 08:00:00,0.0,1013.686333,162.7166667,71.94166667,14.89333333,3.533583333,237.5497245666667 -2015-09-07 09:00:00,0.0,1014.403,342.675,65.6925,15.51083333,1.9855,237.54972456666667 -2015-09-07 10:00:00,0.0,1014.794167,234.25,66.27666667,16.2275,1.6519166669999998,237.54770814999998 -2015-09-07 11:00:00,0.0,1015.192667,390.7916667,61.8275,16.64166667,2.3850833330000003,237.54538153333337 -2015-09-07 12:00:00,0.0,1015.6035,520.7416667,56.26333333,17.625,2.165083333,237.54336511666665 -2015-09-07 13:00:00,0.0,1016.0260000000001,377.2966667,62.35,16.23333333,3.3698333330000003,237.53979761666665 -2015-09-07 14:00:00,0.0,1016.443167,160.3908333,67.88416667,16.04333333,1.3004166670000001,237.53654035 -2015-09-07 15:00:00,0.0,1016.525,173.7583333,67.04833333,17.51916667,0.730833333,237.5354546 -2015-09-07 16:00:00,0.0,1016.684833,228.20833330000002,69.46916667,17.6725,0.525083333,237.53188708333334 -2015-09-07 17:00:00,0.0,1016.867667,125.26916670000001,65.79,17.31083333,0.94925,237.53173198333334 -2015-09-07 18:00:00,0.0,1017.169667,61.17666667,61.61666667,17.9075,1.419416667,237.53421373333333 -2015-09-07 19:00:00,0.0,1017.55,34.4725,57.8625,17.36166667,1.42725,237.53529949999998 -2015-09-07 20:00:00,0.0,1017.962833,6.694916667,70.6575,14.49583333,0.4265,237.53591993333336 -2015-09-07 21:00:00,0.0,1018.7265,0.072333333,87.79166667,11.35583333,0.21608333300000002,237.53871188333335 -2015-09-07 22:00:00,0.0,1019.221167,0.0,93.55833333,9.484166667,0.054166667,237.5399527333333 -2015-09-07 23:00:00,0.0,1019.616167,0.0,96.58333333,8.112166667,0.034333333,237.54274466666666 -2015-10-07 00:00:00,0.0,1019.633333,0.0,98.875,7.275583332999999,0.081583333,237.61735171666666 -2015-10-07 01:00:00,0.0,1019.8515,0.0,99.95,6.424083333,0.0125,237.6178170166667 -2015-10-07 02:00:00,0.0,1019.7745,0.0,100.0,5.431833332999999,0.004583333,237.61781703333335 -2015-10-07 03:00:00,0.0,1019.7739999999999,0.0,100.0,4.395916667,0.033083333,237.6175068 -2015-10-07 04:00:00,0.0,1019.810833,3.749833333,100.0,3.82575,0.002,237.6190578666667 -2015-10-07 05:00:00,0.0,1020.3275,113.83166670000001,99.03333333,6.3746666670000005,0.00875,237.6195232 -2015-10-07 06:00:00,0.0,1020.441167,193.675,86.7,11.1125,0.487333333,237.6185925666667 -2015-10-07 07:00:00,0.0,1020.641667,247.2491667,76.815,12.8225,0.643333333,237.61812724999996 -2015-10-07 08:00:00,0.0,1020.6010000000001,64.15916667,61.63166667,14.13666667,1.207416667,237.6189027833333 -2015-10-07 09:00:00,0.0,1020.5485,382.4675,51.8825,15.88583333,0.761083333,237.61967831666666 -2015-10-07 10:00:00,0.0,1020.214167,614.35,45.475,17.84166667,0.981666667,237.6189027833333 -2015-10-07 11:00:00,0.0,1019.806333,679.7,42.44083333,18.63083333,1.29175,237.61843745 -2015-10-07 12:00:00,0.0,1019.363167,712.975,39.38166667,20.69416667,1.032166667,237.61487001666663 -2015-10-07 13:00:00,0.0,1018.656333,708.2416667,36.01833333,21.09666667,1.226666667,237.61502513333332 -2015-10-07 14:00:00,0.0,1018.080833,665.2916667000001,35.8225,22.59333333,0.80675,237.61347403333332 -2015-10-07 15:00:00,0.0,1017.513167,590.9833332999999,36.43166667,22.79333333,1.291916667,237.61192295 -2015-10-07 16:00:00,0.0,1016.788167,490.475,37.2625,24.05,0.8215,237.61192295 -2015-10-07 17:00:00,0.0,1016.122,75.11916667,37.585,23.97083333,0.98975,237.60975143333334 -2015-10-07 18:00:00,0.0,1015.7735,31.77083333,39.605,24.00416667,0.742,237.60959633333331 -2015-10-07 19:00:00,0.0,1015.699,31.2225,48.6225,23.31083333,0.052833332999999996,237.60959634999998 -2015-10-07 20:00:00,0.0,1015.3755,6.991416667,73.30916667,18.13166667,0.00825,237.60975145 -2015-10-07 21:00:00,0.0,1015.701,0.051666667,84.665,13.2875,0.012166666999999999,237.60928611666668 -2015-10-07 22:00:00,0.0,1015.625,0.0,89.85833333,11.31666667,0.01,237.60990656666664 -2015-10-07 23:00:00,0.0,1015.455833,0.0,91.66666667,10.31583333,0.040583333,237.61161274999998 -2015-11-07 00:00:00,0.0,1015.031333,0.0,93.83333333,9.685833333,0.054833333,237.72612990000002 -2015-11-07 01:00:00,0.0,1014.490167,0.0,97.35833333,8.928333333,0.01875,237.72520024999997 -2015-11-07 02:00:00,0.0,1014.206833,0.0,98.80833333,8.394166667,0.03175,237.72504531666664 -2015-11-07 03:00:00,0.0,1013.930333,0.0,99.91666667,8.099666667000001,0.11283333300000001,237.72705955 -2015-11-07 04:00:00,0.0,1013.6146669999999,5.2678333330000005,100.0,7.994083333,0.026333332999999997,237.7265947 -2015-11-07 05:00:00,0.0,1013.168167,51.60333333,98.775,9.924166667,0.028333333,237.7258200166667 -2015-11-07 06:00:00,0.0,1013.256833,77.6725,92.36666667,12.1125,0.13625,237.72597493333333 -2015-11-07 07:00:00,0.0,1013.006833,188.43333330000002,78.66083333,14.49333333,0.6446666670000001,237.72566506666666 -2015-11-07 08:00:00,0.0,1012.790167,138.9666667,62.58083333,18.05083333,0.86675,237.72489038333336 -2015-11-07 09:00:00,0.0,1012.364167,265.7666667,51.01666667,20.68583333,1.79375,237.7248903666667 -2015-11-07 10:00:00,0.0,1012.225,454.49166669999994,49.36416667,21.98833333,1.746666667,237.72427060000004 -2015-11-07 11:00:00,0.0,1011.9730000000001,644.0416667000001,44.48583333,24.25666667,1.5216666669999999,237.72458048333337 -2015-11-07 12:00:00,0.0,1011.3985,706.05,39.23833333,26.22333333,1.6533333330000002,237.72551011666664 -2015-11-07 13:00:00,0.0,1011.25,697.925,37.29333333,27.87666667,1.5845,237.7258200166667 -2015-11-07 14:00:00,0.0,1011.416667,594.025,36.41,28.88583333,1.110416667,237.72551013333336 -2015-11-07 15:00:00,0.0,1011.442167,547.4833332999999,35.4375,28.89666667,1.57325,237.72705953333335 -2015-11-07 16:00:00,0.0,1011.1235,415.6083333,35.96416667,29.18833333,1.3728333330000002,237.72721446666665 -2015-11-07 17:00:00,0.0,1011.2,100.2,34.78416667,28.685,1.9865,237.72876386666667 -2015-11-07 18:00:00,0.0,1011.359833,66.72666667,32.79,28.1425,2.386666667,237.73000338333335 -2015-11-07 19:00:00,0.0,1011.7525,37.0875,38.57,26.84833333,1.7416666669999998,237.7279892 -2015-11-07 20:00:00,0.0,1012.1436669999999,6.89175,64.6825,22.65166667,0.39375,237.72783425 -2015-11-07 21:00:00,0.0,1012.434333,0.0225,73.91833333,17.43333333,0.068583333,237.72767931666667 -2015-11-07 22:00:00,0.0,1012.7843330000001,0.0,80.5225,15.59416667,0.11875,237.7272144833333 -2015-11-07 23:00:00,0.0,1013.077,0.0,85.45,15.59666667,0.017416667,237.72953858333335 -2015-12-07 00:00:00,0.0,1013.1745,0.0,86.95833333,15.99166667,0.007083333000000001,238.01832215 -2015-12-07 01:00:00,0.0,1013.227,0.0,89.78333333,16.23166667,0.0805,238.0201116833333 -2015-12-07 02:00:00,0.0,1013.3745,0.0,81.9875,16.18166667,0.35625,238.01671158333332 -2015-12-07 03:00:00,0.0,1013.4005,0.0,86.2625,14.68666667,0.08541666699999999,238.01617471666668 -2015-12-07 04:00:00,0.0,1013.4,2.133166667,89.53333333,14.97916667,0.620916667,238.01635366666665 -2015-12-07 05:00:00,0.0,1013.709833,48.83333333,90.625,15.68166667,0.7344166670000001,238.01724843333332 -2015-12-07 06:00:00,0.0,1013.8005,148.7166667,76.69,17.8225,0.441,238.01724843333338 -2015-12-07 07:00:00,0.0,1014.177,220.825,71.70833333,19.395,0.38991666700000005,238.0159957666667 -2015-12-07 08:00:00,0.0,1014.241667,155.80833330000002,67.72583333,21.04916667,0.424916667,238.01617471666668 -2015-12-07 09:00:00,0.0,1014.0485,353.8,64.425,22.0475,0.605666667,238.01545891666663 -2015-12-07 10:00:00,0.0,1013.991167,555.975,56.4525,23.535,0.6645,238.01080609999997 -2015-12-07 11:00:00,0.0,1013.6985,566.95,47.75333333,24.42,1.034583333,238.00847969999998 -2015-12-07 12:00:00,0.0,1013.290667,376.85,46.37583333,24.20333333,0.861083333,238.0090165833333 -2015-12-07 13:00:00,0.0,1013.426,335.2333333,51.63166667,23.11,1.344333333,238.00830076666668 -2015-12-07 14:00:00,0.0,1013.4739999999999,185.175,51.32416667,22.155,1.6479166669999998,238.00991135 -2015-12-07 15:00:00,0.0,1013.670667,114.59166670000002,64.50333333,20.91416667,3.082666667,238.01044823333334 -2015-12-07 16:00:00,0.0,1014.434833,85.25666667,80.23916667,18.6825,3.0630833330000002,238.01098506666668 -2015-12-07 17:00:00,5.624572512,1014.55,53.77083333,90.30833333,17.5325,1.93625,238.01187983333332 -2015-12-07 18:00:00,7.335712344,1014.4573330000001,34.97416667,96.21666667,16.545,0.313916667,238.01044819999996 -2015-12-07 19:00:00,2.4050227680000003,1014.333333,30.25666667,96.91666667,16.35833333,0.10383333300000001,238.01098508333334 -2015-12-07 20:00:00,2.44690404,1014.25,6.4895,95.15,15.8425,0.17600000000000002,238.0093745 -2015-12-07 21:00:00,0.0,1014.544667,0.029083333,95.775,14.83666667,0.024333333,238.00794284999998 -2015-12-07 22:00:00,0.0,1014.807833,0.0,96.76666667,14.46416667,0.007916666999999999,238.0090165833333 -2015-12-07 23:00:00,0.0,1014.532333,0.0,98.75833333,13.91,0.024083333,238.00794284999998 -2015-07-13 00:00:00,0.0,1014.264167,0.0,99.275,13.6575,0.003666667,237.51603899999998 -2015-07-13 01:00:00,0.0,1014.140167,0.0,95.91666667,14.1925,0.027333332999999998,237.51924506666668 -2015-07-13 02:00:00,0.0,1013.6985,0.0,95.95,14.45916667,0.032833333,237.52384506666667 -2015-07-13 03:00:00,0.0,1013.816167,0.0,94.70833333,14.72083333,0.0075,237.5252389833333 -2015-07-13 04:00:00,0.0,1013.536333,2.233083333,95.6,14.95666667,0.023916667000000003,237.52969961666668 -2015-07-13 05:00:00,0.0,1013.8,23.69666667,95.04166667,15.18333333,0.0765,237.53165111666667 -2015-07-13 06:00:00,0.0,1013.833333,43.11166667,91.75833333,15.85916667,0.11716666699999999,237.53276624999998 -2015-07-13 07:00:00,0.0,1013.9176669999999,76.37583333,89.25833333,16.35416667,0.11941666699999999,237.53429955 -2015-07-13 08:00:00,0.0,1014.116667,103.50916670000001,85.24166667,17.03916667,0.287833333,237.53499651666667 -2015-07-13 09:00:00,2.5704604559999997,1014.075,175.6583333,84.675,17.7025,0.41633333299999997,237.5351359166667 -2015-07-13 10:00:00,0.0,1014.2505,188.175,87.38333333,18.25166667,0.503833333,237.53095416666665 -2015-07-13 11:00:00,0.0,1014.180833,170.4083333,90.09166667,18.18416667,0.55875,237.52621476666664 -2015-07-13 12:00:00,0.0,1013.538667,182.2666667,91.79166667,18.17166667,0.49058333299999995,237.5253784 -2015-07-13 13:00:00,2.51999136,1013.166167,209.0916667,92.23333333,18.19166667,0.570083333,237.5228693 -2015-07-13 14:00:00,0.0,1013.065667,166.3725,88.03333333,19.33583333,0.6545833329999999,237.52077841666667 -2015-07-13 15:00:00,0.0,1012.832833,114.57,89.93333333,18.92,0.413083333,237.51896626666664 -2015-07-13 16:00:00,0.0,1012.783333,108.245,95.63333333,18.58583333,0.460916667,237.5189662833333 -2015-07-13 17:00:00,0.0,1012.489167,110.6758333,94.19166667,18.92333333,0.30191666699999997,237.51980265 -2015-07-13 18:00:00,0.0,1012.5260000000001,44.25666667,96.25833333,18.4125,0.252916667,237.52049961666663 -2015-07-13 19:00:00,9.672898056000001,1012.3646669999999,21.53916667,100.0,17.33416667,0.090833333,237.52482079999996 -2015-07-13 20:00:00,4.841907912,1012.1260000000001,5.054916667,99.975,16.97833333,0.12516666699999998,237.52816624999994 -2015-07-13 21:00:00,0.0,1012.3015,0.014083333,99.01666667,16.92916667,0.227666667,237.53165109999998 -2015-07-13 22:00:00,2.422242576,1012.5823330000001,0.0,98.76666667,17.23166667,0.196833333,237.53429956666665 -2015-07-13 23:00:00,0.0,1012.341667,0.0,99.9,16.96916667,0.1805,237.53903893333333 -2015-07-14 00:00:00,0.0,1012.181833,0.0,99.99166667,16.57333333,0.1455,237.54099046666667 -2015-07-14 01:00:00,0.0,1011.8646669999999,0.0,99.73333333,16.47916667,0.16425,237.54489348333334 -2015-07-14 02:00:00,0.0,1011.6916669999999,0.0,98.49166667,16.7675,0.214916667,237.54768136666667 -2015-07-14 03:00:00,4.825689408,1011.581833,0.0,98.04166667,16.92,0.10041666699999999,237.54949346666663 -2015-07-14 04:00:00,0.0,1011.357833,1.67625,97.48333333,16.78583333,0.096666667,237.55256014999998 -2015-07-14 05:00:00,0.0,1011.467667,33.2575,95.13333333,17.005,0.205166667,237.5540934833333 -2015-07-14 06:00:00,0.0,1011.390167,93.53916667,92.475,18.135,0.336416667,237.5557662 -2015-07-14 07:00:00,0.0,1011.4946669999999,44.33583333,93.00833333,18.0025,0.41583333299999997,237.55688138333332 -2015-07-14 08:00:00,0.0,1011.766667,88.675,92.60833333,19.03666667,0.427833333,237.55729953333332 -2015-07-14 09:00:00,0.0,1011.993167,150.975,88.35,19.58634308,0.88,237.5552086333333 -2015-07-14 10:00:00,0.0,1012.242667,306.8833333,84.81666667,20.6575,1.241666667,237.55381466666665 -2015-07-14 11:00:00,0.0,1012.4010000000001,304.65833330000004,81.5625,21.33083333,1.199666667,237.54949348333332 -2015-07-14 12:00:00,0.0,1012.5005,280.0925,81.40166667,21.09333333,1.217166667,237.5441965166667 -2015-07-14 13:00:00,3.233539056,1012.801,238.025,78.12916667,21.82333333,1.557916667,237.53527533333332 -2015-07-14 14:00:00,0.0,1012.6833330000001,150.0075,76.69083333,21.75666667,1.34775,237.5290026333333 -2015-07-14 15:00:00,0.0,1013.0015,203.0475,81.50166667,21.64166667,2.072833333,237.5228693 -2015-07-14 16:00:00,0.0,1013.259833,109.06333329999998,77.74333333,21.905,1.4351666669999998,237.52008143333333 -2015-07-14 17:00:00,0.0,1013.290667,97.0625,77.08,21.73916667,1.079416667,237.5181299333333 -2015-07-14 18:00:00,0.0,1013.2,62.65666667,77.76083333,21.41416667,1.44125,237.51562083333332 -2015-07-14 19:00:00,0.0,1013.444167,28.9425,78.46166667,20.55833333,0.5538333329999999,237.51339055000003 -2015-07-14 20:00:00,0.0,1013.860833,3.310166667,79.4325,19.9525,0.6266666670000001,237.51283296666668 -2015-07-14 21:00:00,0.0,1014.496167,0.0075,81.675,19.35583333,0.39433333299999995,237.5139481 -2015-07-14 22:00:00,0.0,1014.9989999999999,0.0,83.29166667,18.93666667,0.44799999999999995,237.51422688333332 -2015-07-14 23:00:00,0.0,1015.0260000000001,0.0,86.23333333,18.46083333,0.252916667,237.51924506666668 -2015-07-15 00:00:00,0.0,1015.0989999999999,0.0,88.825,17.70916667,0.035333333,237.52189355 -2015-07-15 01:00:00,0.0,1015.093167,0.0,89.98333333,17.27,0.0355,237.52746931666664 -2015-07-15 02:00:00,0.0,1015.317667,0.0,92.48333333,17.01,0.025666667,237.52914201666667 -2015-07-15 03:00:00,0.0,1015.4176669999999,0.0,92.36666667,16.9125,0.11558333300000001,237.53360261666668 -2015-07-15 04:00:00,0.0,1015.633333,1.215166667,93.61666667,16.99666667,0.054083333,237.53513593333332 -2015-07-15 05:00:00,0.0,1015.709833,22.17966667,93.36666667,17.10416667,0.028416667000000003,237.5376450166667 -2015-07-15 06:00:00,0.0,1016.102,66.51333333,91.375,18.33416667,0.171166667,237.53820261666667 -2015-07-15 07:00:00,0.0,1016.434333,120.31333329999998,87.8,18.3925,0.43200000000000005,237.53694806666667 -2015-07-15 08:00:00,0.0,1016.414167,166.4833333,80.2775,20.13166667,0.58975,237.53597231666672 -2015-07-15 09:00:00,0.0,1016.133333,381.825,70.25166667,20.88583333,0.51375,237.5302571666667 -2015-07-15 10:00:00,0.0,1015.8995,492.63333330000006,64.925,22.97583333,0.8390000000000001,237.51938444999996 -2015-07-15 11:00:00,0.0,1015.613667,574.1666667000001,61.62583333,23.66,0.984916667,237.49150571666667 -2015-07-15 12:00:00,0.0,1014.962667,588.15,55.405,25.26416667,1.032,237.49903298333336 -2015-07-15 13:00:00,0.0,1014.390667,574.4833332999999,54.70166667,26.37,0.905,237.4910875666667 -2015-07-15 14:00:00,0.0,1014.139667,363.325,55.2325,26.0025,0.79275,237.4848148 -2015-07-15 15:00:00,0.0,1013.9005,497.8916666999999,52.69416667,26.7375,0.68975,237.48063301666664 -2015-07-15 16:00:00,0.0,1013.538167,248.3583333,55.08333333,26.73,0.915333333,237.47798451666668 -2015-07-15 17:00:00,0.0,1013.081333,131.9491667,57.56583333,26.43833333,0.791083333,237.47937846666665 -2015-07-15 18:00:00,0.0,1012.85,37.57916667,62.455,25.12,0.05875,237.47909968333332 -2015-07-15 19:00:00,0.0,1013.0010000000001,19.61583333,65.83916667,24.06,0.089083333,237.48021483333332 -2015-07-15 20:00:00,0.0,1013.2769999999999,4.02125,77.15583333,23.12916667,0.0355,237.48272391666669 -2015-07-15 21:00:00,0.0,1013.769167,0.00375,81.41583333,21.40833333,0.068333333,237.4860693666667 -2015-07-15 22:00:00,0.0,1014.067667,0.0,85.625,21.285,0.40633333299999996,237.48955420000001 -2015-07-15 23:00:00,0.0,1014.15,0.0,94.54166667,19.31416667,0.167833333,237.49317843333333 -2015-07-16 00:00:00,0.0,1014.242167,0.0,97.61666667,18.08416667,0.007833333,237.49889358333334 -2015-07-16 01:00:00,0.0,1014.316167,0.0,99.95,16.83916667,0.002416667,237.50460875 -2015-07-16 02:00:00,0.0,1014.308833,0.0,100.0,16.2975,0.0,237.50948753333333 -2015-07-16 03:00:00,0.0,1014.267667,0.0,100.0,16.01916667,0.068833333,237.51394811666668 -2015-07-16 04:00:00,0.0,1014.3739999999999,2.122583333,100.0,15.7325,0.0735,237.51771171666664 -2015-07-16 05:00:00,0.0,1014.560833,50.7975,100.0,16.1325,0.054416667,237.52105718333334 -2015-07-16 06:00:00,0.0,1014.883333,154.0916667,96.70833333,18.885,0.30225,237.5231481 -2015-07-16 07:00:00,0.0,1014.842167,223.415,87.11666667,20.71416667,0.62,237.52509960000006 -2015-07-16 08:00:00,0.0,1015.017667,213.6166667,80.85833333,22.27083333,0.71175,237.5253784 -2015-07-16 09:00:00,0.0,1014.964667,390.09166669999996,73.51666667,23.875,0.664666667,237.52133594999998 -2015-07-16 10:00:00,0.0,1014.75,578.4666667,65.47083333,25.42333333,1.043583333,237.50920873333334 -2015-07-16 11:00:00,0.0,1014.555833,534.45,59.28333333,26.9575,0.874916667,237.4923421 -2015-07-16 12:00:00,0.0,1013.9985,610.0583333,56.36166667,28.13083333,0.9209166670000001,237.48077241666667 -2015-07-16 13:00:00,0.0,1013.590167,608.4666667,50.9275,29.02666667,1.4964166669999999,237.47394210000002 -2015-07-16 14:00:00,0.0,1013.179333,625.675,47.18583333,29.53333333,1.35475,237.47045730000002 -2015-07-16 15:00:00,0.0,1012.6735,429.075,47.4725,30.75583333,1.1118333329999999,237.46989969999996 -2015-07-16 16:00:00,0.0,1012.080333,345.1666667,47.72166667,30.7725,0.7505,237.4698997 -2015-07-16 17:00:00,0.0,1011.546,99.505,49.6075,31.16416667,0.7150833329999999,237.46906335000006 -2015-07-16 18:00:00,0.0,1010.955833,45.58333333,51.225,30.73833333,1.0100833329999999,237.4679482 -2015-07-16 19:00:00,0.0,1010.75,26.83333333,61.4025,29.5825,0.47125,237.46906336666666 -2015-07-16 20:00:00,0.0,1010.919667,4.3415,80.52083333,24.02666667,0.033,237.47226938333333 -2015-07-16 21:00:00,0.0,1011.392667,0.0,87.875,20.0175,0.017416667,237.47575423333333 -2015-07-16 22:00:00,0.0,1011.45,0.0,94.68333333,18.23916667,0.025166667,237.4823057333333 -2015-07-16 23:00:00,0.0,1011.333333,0.0,97.43333333,17.51,0.010333333,237.48634816666666 -2015-07-17 00:00:00,0.0,1011.240667,0.0,98.28333333,16.9375,0.0025833329999999997,237.49094815 -2015-07-17 01:00:00,0.0,1010.946,0.0,98.61666667,16.4375,0.002833333,237.49568753333332 -2015-07-17 02:00:00,0.0,1010.718167,0.0,99.875,15.90666667,0.0,237.49972995 -2015-07-17 03:00:00,0.0,1011.094167,0.0,99.675,16.6625,0.07641666700000001,237.50251785 -2015-07-17 04:00:00,0.0,1010.8489999999999,0.523083333,96.775,17.75416667,0.516916667,237.50460875000002 -2015-07-17 05:00:00,0.0,1011.165167,6.699166667,92.70833333,18.48333333,0.588,237.50795418333334 -2015-07-17 06:00:00,0.0,1010.363667,20.45666667,90.15833333,19.2425,0.9079166670000001,237.51129964999998 -2015-07-17 07:00:00,0.0,1010.105833,73.57916667,91.68333333,20.06083333,0.421916667,237.51352989999998 -2015-07-17 08:00:00,0.0,1009.8760000000001,100.94666670000001,84.88333333,22.24583333,1.041166667,237.51297235 -2015-07-17 09:00:00,0.0,1010.3373330000001,333.4741667,72.49833333,24.52583333,1.26775,237.51436628333332 -2015-07-17 10:00:00,0.0,1010.583333,472.4833333000001,48.56333333,28.95166667,1.7198333330000002,237.5053057 -2015-07-17 11:00:00,0.0,1010.556833,630.5333333,41.36083333,32.01583333,0.744083333,237.4884390666667 -2015-07-17 12:00:00,0.0,1010.299,503.4416666999999,40.8025,32.34333333,1.125916667,237.47366335 -2015-07-17 13:00:00,0.0,1010.106833,651.7,35.53583333,33.42,1.2175833329999999,237.46488155 -2015-07-17 14:00:00,0.0,1009.8245,616.8833333,28.48916667,34.675,1.079333333,237.46083911666668 -2015-07-17 15:00:00,0.0,1009.4235,540.2583333,28.32666667,35.29,0.855916667,237.4591664 -2015-07-17 16:00:00,0.0,1008.972,438.09166669999996,30.30666667,35.1825,0.800583333,237.45609975000002 -2015-07-17 17:00:00,0.0,1008.404833,109.2775,31.54666667,35.00666667,0.581583333,237.45637851666672 -2015-07-17 18:00:00,0.0,1008.216667,52.49583333,34.43166667,33.505,0.588583333,237.45637853333332 -2015-07-17 19:00:00,0.0,1008.328,28.51833333,37.63333333,31.16333333,0.11691666699999999,237.45609975000002 -2015-07-17 20:00:00,0.0,1008.835833,5.597833333,49.25083333,27.11,0.001583333,237.45707548333337 -2015-07-17 21:00:00,0.0,1009.275,0.0,55.73166667,22.73166667,0.038083333,237.45916640000004 -2015-07-17 22:00:00,0.0,1009.3005,0.0,72.33166667,21.05166667,0.05075,237.46223305 -2015-07-17 23:00:00,0.0,1009.546667,0.0,70.68083333,20.38166667,0.036333332999999995,237.46390576666667 -2015-07-18 00:00:00,0.0,1009.940667,0.0,58.60833333,22.28416667,0.42508333299999995,237.46418455000003 -2015-07-18 01:00:00,0.0,1010.016667,0.0,68.6,22.22916667,0.1255,237.46850576666665 -2015-07-18 02:00:00,0.0,1010.084833,0.0,81.97166667,19.96,0.135333333,237.47338456666668 -2015-07-18 03:00:00,0.0,1010.889833,0.0,82.16916667,17.29083333,0.091583333,237.47547545 -2015-07-18 04:00:00,0.0,1011.465167,1.88525,84.93583333,16.48416667,0.061,237.47951786666667 -2015-07-18 05:00:00,0.0,1011.771167,48.96416667,80.70666667,17.71583333,0.21933333300000002,237.48216633333337 -2015-07-18 06:00:00,0.0,1012.443167,147.0166667,79.81833333,21.6375,0.686416667,237.48397845000002 -2015-07-18 07:00:00,0.0,1012.7,145.21083330000002,79.325,22.47666667,0.58675,237.48579058333334 -2015-07-18 08:00:00,0.0,1012.491667,110.76916670000001,80.36666667,22.58833333,0.19925,237.48690573333337 -2015-07-18 09:00:00,0.0,1013.020667,357.9916667,75.63583333,23.8475,0.623833333,237.48119058333336 -2015-07-18 10:00:00,0.0,1013.576,450.825,67.71333333,25.66666667,0.8018333329999999,237.47115423333332 -2015-07-18 11:00:00,0.0,1013.254833,447.8166666999999,62.8525,26.60583333,0.8663333329999999,237.46042091666666 -2015-07-18 12:00:00,0.0,1012.613667,486.0666666999999,54.11833333,28.2175,0.786416667,237.454427 -2015-07-18 13:00:00,0.0,1012.289667,515.1083333,47.39416667,28.9275,0.836833333,237.45289365 -2015-07-18 14:00:00,0.0,1011.755833,445.6833333000001,46.525,29.2475,1.52125,237.45177850000002 -2015-07-18 15:00:00,0.0,1011.416667,495.875,45.4325,29.31416667,1.83825,237.4484330666667 -2015-07-18 16:00:00,0.0,1010.930333,349.8916667,47.50916667,28.47083333,2.4905,237.44885125000005 -2015-07-18 17:00:00,0.0,1010.664167,92.99416667,49.18416667,27.38916667,2.32525,237.45010578333336 -2015-07-18 18:00:00,0.0,1010.5103330000001,63.88083333,49.60583333,26.5875,1.57475,237.4495482 -2015-07-18 19:00:00,0.0,1010.733333,44.19916667,52.73666667,26.16666667,0.968166667,237.4501058 -2015-07-18 20:00:00,0.0,1010.937333,5.70325,69.75083333,23.70833333,0.487916667,237.45010580000005 -2015-07-18 21:00:00,0.0,1011.457833,0.0,79.79833333,19.81666667,0.0515,237.45540275 -2015-07-18 22:00:00,0.0,1011.324,0.0,84.05833333,20.33583333,0.5275,237.4597239666667 -2015-07-18 23:00:00,0.0,1011.174,0.0,81.795,20.805,1.083,237.46362698333334 -2015-07-19 00:00:00,0.0,1010.653833,0.0,68.5975,20.21416667,1.6606666669999999,237.4650209 -2015-07-19 01:00:00,0.0,1009.677333,0.0,75.87666667,18.27166667,0.42,237.46739061666668 -2015-07-19 02:00:00,0.0,1008.595,0.0,83.54166667,16.74166667,0.1895,237.47115423333332 -2015-07-19 03:00:00,0.0,1007.637167,0.0,79.19,17.52666667,0.22625,237.47422091666667 -2015-07-19 04:00:00,0.0,1006.891667,0.092916667,76.59333333,18.34,0.52425,237.47840271666666 -2015-07-19 05:00:00,377.6499673,1006.884167,1.103083333,97.5,15.99333333,0.962833333,237.51966323333332 -2015-07-19 06:00:00,12.56171129,1005.448167,15.922,100.0,15.82416667,0.520916667,237.74589915 -2015-07-19 07:00:00,39.08431961,1006.3925,51.87375,100.0,16.2875,0.61175,237.79496573333336 -2015-07-19 08:00:00,5.197756104,1005.521167,106.55333329999999,100.0,17.2325,0.7190000000000001,237.7999839 -2015-07-19 09:00:00,2.433143544,1006.015167,276.575,93.85833333,19.41166667,0.243583333,237.79775361666668 -2015-07-19 10:00:00,2.614561944,1005.9760000000001,466.50833330000006,84.81666667,23.115,0.460083333,237.79273543333332 -2015-07-19 11:00:00,0.0,1006.025,351.4416667,79.51083333,24.53166667,0.61375,237.78799605000003 -2015-07-19 12:00:00,0.0,1005.9235,311.6166667,78.56083333,24.33666667,0.72725,237.78548696666667 -2015-07-19 13:00:00,0.0,1005.6465,447.125,72.695,25.305,0.850833333,237.7780991 -2015-07-19 14:00:00,0.0,1005.48,168.5,72.88583333,25.20583333,0.770083333,237.7746142666667 -2015-07-19 15:00:00,0.0,1006.116667,414.175,80.90416667,22.10416667,2.97375,237.7688991166667 -2015-07-19 16:00:00,0.0,1006.193667,110.87166670000002,85.575,21.90583333,1.4805,237.76541428333334 -2015-07-19 17:00:00,2.989559256,1006.794167,37.2325,93.275,20.49,0.8713333329999999,237.75983855 -2015-07-19 18:00:00,0.0,1007.461333,87.00416667,88.61666667,20.425,0.9268333329999999,237.75607490000002 -2015-07-19 19:00:00,2.668184112,1007.834833,35.15416667,83.58333333,20.54,0.871166667,237.74952340000004 -2015-07-19 20:00:00,0.0,1007.967667,6.151666667000001,85.7,19.74833333,0.36708333299999996,237.74826886666668 -2015-07-19 21:00:00,0.0,1008.519667,0.0,90.91666667,18.00916667,0.014333333,237.74408703333336 -2015-07-19 22:00:00,0.0,1008.8265,0.0,95.325,16.3725,0.009416667,237.7422749 -2015-07-19 23:00:00,0.0,1009.303,0.0,96.44166667,15.165,0.014416667,237.73851131666663 -2015-07-20 00:00:00,0.0,1009.566167,0.0,99.68333333,14.6475,0.214916667,237.73488708333332 -2015-07-20 01:00:00,0.0,1009.518167,0.0,100.0,14.355,0.0295,237.73446888333334 -2015-07-20 02:00:00,0.0,1009.733833,0.0,100.0,13.9525,0.0,237.73251734999997 -2015-07-20 03:00:00,0.0,1009.740167,0.0,100.0,13.53083333,0.016666667,237.7291719166667 -2015-07-20 04:00:00,0.0,1009.810333,1.92075,100.0,13.735,0.033333333,237.72749918333338 -2015-07-20 05:00:00,0.0,1010.034833,23.69583333,100.0,14.29833333,0.013000000000000001,237.7255476833333 -2015-07-20 06:00:00,0.0,1010.3083330000001,31.46666667,100.0,15.7925,0.0275,237.72248101666665 -2015-07-20 07:00:00,0.0,1010.584833,49.77166667,100.0,16.52916667,0.172416667,237.72025075 -2015-07-20 08:00:00,0.0,1010.8015,129.7675,99.50833333,17.625,0.18233333300000001,237.71983255 -2015-07-20 09:00:00,2.40948564,1010.841667,148.3916667,96.36666667,19.06166667,0.147833333,237.71885681666666 -2015-07-20 10:00:00,0.0,1011.033833,150.2333333,93.85833333,19.43583333,0.18708333300000002,237.71704466666665 -2015-07-20 11:00:00,0.0,1010.840167,301.25,86.9,21.6775,0.622166667,237.7145356 -2015-07-20 12:00:00,0.0,1010.5136669999999,274.34166669999996,84.84,22.25833333,1.142583333,237.7125841 -2015-07-20 13:00:00,0.0,1010.2926669999999,212.34916669999998,83.04416667,22.96833333,0.72925,237.71244468333336 -2015-07-20 14:00:00,0.0,1010.114167,135.3125,82.17916667,23.565,0.519333333,237.70923860000002 -2015-07-20 15:00:00,12.2349155,1009.925,130.3083333,94.90833333,22.29166667,0.438833333,237.70882043333336 -2015-07-20 16:00:00,0.0,1009.859833,166.05,95.36666667,22.71166667,0.257333333,237.70589318333336 -2015-07-20 17:00:00,0.0,1009.797,126.38333329999999,91.25,23.56833333,0.169916667,237.70199015000003 -2015-07-20 18:00:00,0.0,1009.382333,67.31416667,91.975,23.58416667,0.207583333,237.70254773333338 -2015-07-20 19:00:00,0.0,1009.2495,31.605,97.66666667,23.41583333,0.001,237.7033840666667 -2015-07-20 20:00:00,0.0,1009.403,3.526916667,99.63333333,22.10583333,0.044583332999999996,237.70408105 -2015-07-20 21:00:00,2.430315744,1009.791667,0.0,99.00833333,21.24666667,0.10158333300000001,237.70268711666668 -2015-07-20 22:00:00,0.0,1009.994167,0.0,99.61666667,20.59916667,0.050916667,237.70226893333333 -2015-07-20 23:00:00,0.0,1010.325,0.0,99.475,19.44333333,0.012333333,237.70199015000003 -2015-07-21 00:00:00,0.0,1010.258333,0.0,99.18333333,18.62333333,0.031333333,237.7028265166667 -2015-07-21 01:00:00,0.0,1010.216667,0.0,100.0,17.93083333,0.0,237.70296590000007 -2015-07-21 02:00:00,0.0,1010.0235,0.0,100.0,16.9975,0.0,237.70296593333333 -2015-07-21 03:00:00,0.0,1010.067167,0.0,100.0,16.49416667,0.01375,237.7017113833333 -2015-07-21 04:00:00,0.0,1010.141667,1.726083333,100.0,15.84,0.0135,237.70129318333332 -2015-07-21 05:00:00,0.0,1010.319167,46.09,97.70833333,16.80416667,0.011833333,237.700875 -2015-07-21 06:00:00,0.0,1010.684833,56.47666667,94.48333333,18.8525,0.0185,237.69948110000004 -2015-07-21 07:00:00,0.0,1011.018167,222.9341667,86.475,21.06,0.239,237.69794775 -2015-07-21 08:00:00,0.0,1011.216167,182.9391667,81.1975,24.0375,0.47316666700000004,237.69488108333334 -2015-07-21 09:00:00,0.0,1011.067167,198.46,75.12416667,25.40083333,0.714833333,237.69502048333334 -2015-07-21 10:00:00,0.0,1011.209833,265.8666667,74.80916667,25.62333333,0.751416667,237.69362654999998 -2015-07-21 11:00:00,0.0,1011.457833,443.625,69.315,26.36666667,0.892416667,237.69125684999995 -2015-07-21 12:00:00,0.0,1011.4416669999999,579.6666667000001,64.6225,27.28083333,0.767916667,237.68721444999997 -2015-07-21 13:00:00,0.0,1011.2239999999999,595.9416667,59.33166667,28.99666667,0.80275,237.68317201666665 -2015-07-21 14:00:00,0.0,1010.872,579.85,55.1525,29.0925,1.180083333,237.67871143333332 -2015-07-21 15:00:00,0.0,1010.238667,389.675,54.58333333,29.92583333,0.775083333,237.67606295 -2015-07-21 16:00:00,0.0,1009.765167,215.225,55.22,30.20416667,0.48258333299999995,237.67313566666667 -2015-07-21 17:00:00,0.0,1009.297,95.2425,55.94666667,30.3475,0.5355833329999999,237.67118418333334 -2015-07-21 18:00:00,0.0,1009.0495,46.30166667,55.16333333,30.27083333,0.41808333299999995,237.66811748333336 -2015-07-21 19:00:00,0.0,1009.092667,26.54583333,62.55333333,29.27416667,0.1975,237.66519021666667 -2015-07-21 20:00:00,0.0,1009.486833,3.75575,84.92083333,24.49,0.22108333300000002,237.66379631666666 -2015-07-21 21:00:00,0.0,1010.2525,0.0,92.85,21.655,0.0285,237.66212358333334 -2015-07-21 22:00:00,0.0,1010.551,0.0,97.90833333,20.18666667,0.0025833329999999997,237.66128720000003 -2015-07-21 23:00:00,0.0,1010.709833,0.0,99.86666667,19.21333333,0.0,237.66128720000003 -2015-07-22 00:00:00,0.0,1010.875,0.0,100.0,18.525,0.02375,237.66100840000001 -2015-07-22 01:00:00,0.0,1010.665667,0.0,100.0,17.97166667,0.025333333,237.66337810000002 -2015-07-22 02:00:00,0.0,1010.423,0.0,100.0,17.38583333,0.08808333300000001,237.66393568333334 -2015-07-22 03:00:00,0.0,1010.3166669999999,0.0,100.0,16.855,0.020916667,237.66449328333337 -2015-07-22 04:00:00,0.0,1010.140667,1.5853333330000001,100.0,16.24,0.020916667,237.66449326666668 -2015-07-22 05:00:00,0.0,1010.334833,50.96083333,100.0,16.8475,0.004333333,237.66421449999999 -2015-07-22 06:00:00,0.0,1010.468167,145.3833333,96.56666667,19.5875,0.34983333299999997,237.66463265000002 -2015-07-22 07:00:00,0.0,1010.6235,181.7666667,90.15833333,21.88083333,0.6505,237.66477206666664 -2015-07-22 08:00:00,0.0,1010.442167,169.6,77.52166667,24.43583333,0.386666667,237.6632387 -2015-07-22 09:00:00,0.0,1010.5255,315.9416667,67.32583333,26.93416667,0.41583333299999997,237.6610084166667 -2015-07-22 10:00:00,0.0,1010.490167,427.3,66.4225,27.43833333,1.2099166670000001,237.65738416666667 -2015-07-22 11:00:00,0.0,1010.155833,447.15,67.53333333,27.17666667,1.654916667,237.65417813333332 -2015-07-22 12:00:00,0.0,1009.925,652.6833333,58.85333333,28.97666667,0.989583333,237.65041450000004 -2015-07-22 13:00:00,0.0,1009.663667,516.8666667,58.39083333,29.68666667,1.04025,237.64595391666668 -2015-07-22 14:00:00,0.0,1009.2225,474.54166669999995,58.54666667,29.57833333,2.021583333,237.6417721 -2015-07-22 15:00:00,0.0,1008.7245,183.45,61.0225,28.35833333,2.452,237.63982058333332 -2015-07-22 16:00:00,0.0,1008.668167,252.2416667,64.46916667,27.03,2.48025,237.63703271666665 -2015-07-22 17:00:00,0.0,1008.6735,140.2833333,65.45166667,26.71583333,2.62375,237.6329903 -2015-07-22 18:00:00,0.0,1008.617167,94.51333333,66.00583333,26.015,2.688416667,237.62922668333337 -2015-07-22 19:00:00,0.0,1008.903,47.9025,64.96833333,25.6,2.736,237.62657818333335 -2015-07-22 20:00:00,0.0,1009.779,4.29325,64.64666667,23.9575,2.816666667,237.6247660666667 -2015-07-22 21:00:00,0.0,1010.259833,0.0,69.61666667,22.79666667,1.948083333,237.62295396666664 -2015-07-22 22:00:00,0.0,1010.585833,0.0,74.4875,21.3775,0.523083333,237.62281458333328 -2015-07-22 23:00:00,0.0,1011.244167,0.0,71.65,21.27833333,1.733416667,237.62295396666664 -2015-07-23 00:00:00,0.0,1011.409833,0.0,77.67,20.51666667,0.876416667,237.62295395 -2015-07-23 01:00:00,0.0,1011.5823330000001,0.0,84.75,19.46666667,0.18333333300000001,237.62392971666668 -2015-07-23 02:00:00,0.0,1011.6265,0.0,93.725,17.15833333,0.049666667000000005,237.62546303333338 -2015-07-23 03:00:00,0.0,1011.7260000000001,0.0,97.925,15.47166667,0.0,237.62755393333336 -2015-07-23 04:00:00,0.0,1011.993167,1.112083333,99.20833333,15.00333333,0.150333333,237.62769335 -2015-07-23 05:00:00,0.0,1012.183833,13.7935,99.78333333,14.83333333,0.094416667,237.62852970000003 -2015-07-23 06:00:00,0.0,1012.695167,150.125,86.13583333,17.07083333,0.325416667,237.6283903 -2015-07-23 07:00:00,0.0,1013.2005,233.4075,72.59916667,18.51666667,1.8686666669999998,237.62741453333334 -2015-07-23 08:00:00,0.0,1013.494167,195.6775,66.65916667,19.59333333,0.99475,237.62504485000002 -2015-07-23 09:00:00,0.0,1013.658333,337.0708333,61.875,20.64916667,1.108166667,237.62030546666668 -2015-07-23 10:00:00,0.0,1013.5735,580.1333333,57.15166667,21.78916667,1.619666667,237.61486911666665 -2015-07-23 11:00:00,0.0,1013.324,565.2333332999999,56.16916667,22.67416667,1.4969999999999999,237.61082670000005 -2015-07-23 12:00:00,0.0,1013.081833,609.95,52.53083333,23.55166667,1.18825,237.60776003333334 -2015-07-23 13:00:00,0.0,1012.815167,543.05,51.08166667,23.505,1.422,237.6037176333333 -2015-07-23 14:00:00,0.0,1012.430833,305.03333330000004,49.3875,23.45583333,1.436833333,237.60065095000002 -2015-07-23 15:00:00,0.0,1011.9985,281.6166667,50.13166667,24.0325,0.93225,237.59786311666667 -2015-07-23 16:00:00,0.0,1011.732833,180.875,49.86083333,23.50916667,0.742416667,237.59521463333337 -2015-07-23 17:00:00,0.0,1011.3975,145.7183333,48.76083333,23.74416667,1.285666667,237.59172978333334 -2015-07-23 18:00:00,0.0,1011.091167,69.61333333,53.08166667,23.5125,0.735916667,237.59005703333332 -2015-07-23 19:00:00,0.0,1011.259833,26.375,59.0375,22.465,0.98175,237.58838431666666 -2015-07-23 20:00:00,0.0,1011.468667,2.138416667,80.42,19.13083333,0.229666667,237.58838434999998 -2015-07-23 21:00:00,0.0,1011.859833,0.0,87.68333333,15.98,0.064166667,237.58936006666667 -2015-07-23 22:00:00,0.0,1011.982833,0.0,93.20833333,14.5375,0.00275,237.59117218333333 -2015-07-23 23:00:00,0.0,1012.1,0.0,96.65,13.67166667,0.000166667,237.5922873333333 -2015-07-24 00:00:00,0.0,1011.690167,0.0,98.89166667,12.85833333,0.0105,237.59451766666666 -2015-07-24 01:00:00,0.0,1011.413667,0.0,99.675,12.2525,0.0,237.59688734999997 -2015-07-24 02:00:00,0.0,1011.048,0.0,100.0,11.71583333,0.008166666999999999,237.5982812666667 -2015-07-24 03:00:00,0.0,1010.556833,0.0,100.0,11.12583333,0.01025,237.59869946666666 -2015-07-24 04:00:00,0.0,1010.4,1.624166667,100.0,11.33333333,0.001166667,237.59883886666663 -2015-07-24 05:00:00,0.0,1010.382833,21.07416667,100.0,11.87666667,0.0155,237.59814188333334 -2015-07-24 06:00:00,0.0,1010.174,150.3208333,90.55,14.8625,0.447166667,237.5995358166667 -2015-07-24 07:00:00,0.0,1010.082833,232.3908333,77.61916667,17.14833333,1.93725,237.6016267166667 -2015-07-24 08:00:00,0.0,1009.7975,191.2691667,70.04833333,19.33916667,1.540416667,237.59981459999997 -2015-07-24 09:00:00,0.0,1009.137667,330.9375,61.19,22.1675,1.1325,237.59800246666666 -2015-07-24 10:00:00,0.0,1008.564667,525.925,53.66916667,24.7325,1.211333333,237.5911722 -2015-07-24 11:00:00,0.0,1007.7710000000001,541.7166667,49.8925,26.435,1.506083333,237.5839237166667 -2015-07-24 12:00:00,0.0,1006.903333,412.2416667,49.5225,27.60416667,1.533333333,237.57932373333333 -2015-07-24 13:00:00,0.0,1006.0965,293.2916667,48.1775,27.94833333,1.5701666669999998,237.5754207 -2015-07-24 14:00:00,0.0,1005.411667,333.65,46.04083333,28.7175,1.2545,237.57096011666667 -2015-07-24 15:00:00,0.0,1004.347,265.0416667,45.28666667,28.7525,1.321,237.56747526666666 -2015-07-24 16:00:00,0.0,1003.576333,197.43333330000002,46.07,29.36583333,1.692833333,237.56371165 -2015-07-24 17:00:00,0.0,1002.354333,114.875,55.11333333,29.01833333,0.9105,237.5642692333333 -2015-07-24 18:00:00,0.0,1001.740167,86.21916667,54.18583333,28.75833333,0.978916667,237.56120256666665 -2015-07-24 19:00:00,0.0,1001.3886669999999,38.0725,71.73666667,25.45333333,0.05675,237.56120256666665 -2015-07-24 20:00:00,0.0,1000.864167,5.479166667,83.665,22.00083333,0.0615,237.5620389333333 -2015-07-24 21:00:00,0.0,1000.439667,0.0,88.29166667,19.6675,0.039583333,237.56510558333332 -2015-07-24 22:00:00,0.0,999.5946667000002,0.0,90.76666667,18.755,0.043666667,237.5684510333333 -2015-07-24 23:00:00,27.88189793,1001.658833,0.0,90.04,19.70416667,0.849833333,237.56831164999997 -2015-07-25 00:00:00,50.90866178,1000.138167,0.0,99.675,18.00166667,0.357833333,237.57346921666667 -2015-07-25 01:00:00,2.41295556,1000.306333,0.0,100.0,17.85,0.94475,237.57681463333336 -2015-07-25 02:00:00,0.0,999.7760000000001,0.0,99.84166667,17.72916667,1.195333333,237.58322673333336 -2015-07-25 03:00:00,0.0,999.8308332999999,0.0,100.0,17.33916667,0.201333333,237.58517825 -2015-07-25 04:00:00,0.0,999.3401667000002,0.611916667,100.0,16.15416667,0.1545,237.58852371666663 -2015-07-25 05:00:00,0.0,999.4613332999999,12.45708333,97.95833333,16.8,0.7305,237.59061459999998 -2015-07-25 06:00:00,0.0,999.5386667000001,63.28333333,93.375,18.62,1.500666667,237.59005703333332 -2015-07-25 07:00:00,0.0,999.3,197.3375,86.26416667,19.94166667,1.6951666669999998,237.59214793333334 -2015-07-25 08:00:00,6.472545384,999.1745,149.965,76.575,20.67833333,2.32075,237.59409946666668 -2015-07-25 09:00:00,0.0,999.3535,294.27916669999996,71.39416667,20.75083333,1.9929166669999998,237.59214795 -2015-07-25 10:00:00,3.620258208,1000.170667,500.86666669999994,70.85333333,20.98833333,2.492,237.5879661166667 -2015-07-25 11:00:00,13.85898718,1000.9863330000001,382.25,77.68916667,19.5925,1.39525,237.58336615 -2015-07-25 12:00:00,0.0,1001.809,482.90833330000004,70.36416667,20.61416667,1.838,237.57653586666666 -2015-07-25 13:00:00,2.679318336,1002.919667,420.63333330000006,83.29916667,18.17083333,1.380416667,237.57263285 -2015-07-25 14:00:00,0.0,1003.987333,296.5666667,76.07666667,18.53583333,1.685,237.5694268 -2015-07-25 15:00:00,0.0,1004.9075,157.00916669999998,66.34,18.4475,1.482666667,237.5664995333333 -2015-07-25 16:00:00,2.858357832,1006.279,95.46833333,80.0225,15.80416667,1.184583333,237.56371166666665 -2015-07-25 17:00:00,2.7990788639999997,1007.1555,108.2725,77.54416667,16.3875,1.263333333,237.5632934833333 -2015-07-25 18:00:00,0.0,1008.198667,30.16983333,75.64166667,15.74416667,1.531333333,237.56385105 -2015-07-25 19:00:00,25.38949745,1009.5805,19.74558333,92.55833333,12.91,0.910083333,237.56371166666665 -2015-07-25 20:00:00,2.750340408,1010.368667,5.581916667000001,91.1,12.63583333,0.6203333329999999,237.5667783 -2015-07-25 21:00:00,0.0,1010.919667,0.0,85.6,12.73083333,0.53475,237.56900861666665 -2015-07-25 22:00:00,0.0,1011.451,0.0,84.025,12.60833333,0.5085833329999999,237.5710995333333 -2015-07-25 23:00:00,0.0,1011.929,0.0,85.675,11.97,0.49425,237.57402678333332 -2015-07-26 00:00:00,0.0,1012.3,0.0,87.55833333,11.19583333,0.139416667,237.57611768333334 -2015-07-26 01:00:00,0.0,1012.081833,0.0,89.15833333,10.6125,0.050916667,237.57862676666664 -2015-07-26 02:00:00,0.0,1012.2015,0.0,92.63333333,9.95,0.012,237.5804389 -2015-07-26 03:00:00,0.0,1012.366667,0.0,95.625,9.453333333,0.00975,237.58406313333333 -2015-07-26 04:00:00,0.0,1012.360333,1.65675,97.79166667,8.183583333,0.018416667,237.58587525 -2015-07-26 05:00:00,0.0,1012.9025,31.85416667,96.525,8.133833333,0.057333333,237.58685101666666 -2015-07-26 06:00:00,0.0,1013.175,111.01916670000001,91.56666667,10.03333333,0.044166667,237.58880251666665 -2015-07-26 07:00:00,0.0,1013.125,206.5966667,83.27333333,13.03916667,0.407916667,237.59005705 -2015-07-26 08:00:00,0.0,1013.122,182.3233333,76.5725,14.495,0.7565,237.5893601 -2015-07-26 09:00:00,0.0,1012.347,330.6991667,62.48333333,16.23833333,1.150833333,237.58712979999999 -2015-07-26 10:00:00,0.0,1011.805333,613.2666667000001,53.265,18.06666667,0.848,237.58294796666667 -2015-07-26 11:00:00,0.0,1010.627833,592.7416667,47.36083333,19.13833333,0.77025,237.57653585 -2015-07-26 12:00:00,0.0,1009.827833,669.4166667000001,44.58166667,19.5825,1.7890000000000001,237.56928736666669 -2015-07-26 13:00:00,0.0,1008.7685,557.8916667000001,47.3625,21.31333333,1.500833333,237.56189951666667 -2015-07-26 14:00:00,0.0,1007.428333,588.0833332999999,44.95166667,21.2675,1.591833333,237.55646316666665 -2015-07-26 15:00:00,0.0,1006.277833,402.8083333,43.165,21.67,1.34875,237.55242078333333 -2015-07-26 16:00:00,0.0,1005.329333,233.3416667,43.88166667,21.66666667,1.797833333,237.54837835 -2015-07-26 17:00:00,0.0,1004.790667,104.6,43.55,20.89583333,1.8898333330000001,237.5447541 -2015-07-26 18:00:00,0.0,1004.6745,25.62,47.12666667,19.32916667,0.50475,237.54336016666664 -2015-07-26 19:00:00,2.437795368,1004.3985,6.29925,77.38583333,16.32083333,0.3835,237.54391773333336 -2015-07-26 20:00:00,4.83934608,1003.929333,0.769166667,97.48333333,13.7025,0.08975,237.54572986666665 -2015-07-26 21:00:00,7.27790928,1003.580833,0.0,99.40833333,13.14666667,0.09275,237.54754196666667 -2015-07-26 22:00:00,7.43619552,1002.955333,0.0,98.96666667,12.99833333,0.25525,237.55228138333334 -2015-07-26 23:00:00,2.583485784,1002.036167,0.0,93.65833333,13.20083333,1.384416667,237.5557662 -2015-07-27 00:00:00,0.0,1001.054333,0.0,94.38333333,13.46,2.60425,237.55897224999998 -2015-07-27 01:00:00,3.424705344,1000.3563330000001,0.0,94.94166667,13.62333333,2.01125,237.56315406666667 -2015-07-27 02:00:00,0.0,999.7533332999999,0.0,92.04166667,13.77166667,1.2780833329999999,237.56636015 -2015-07-27 03:00:00,0.0,999.1318332999999,0.0,91.88333333,14.06,0.9620833329999999,237.56872983333326 -2015-07-27 04:00:00,0.0,998.8235,0.35966666700000005,93.81666667,14.2575,0.718333333,237.5722146666666 -2015-07-27 05:00:00,43.26228761,998.3823332999999,4.54975,99.15833333,13.9175,0.48908333299999995,237.57625705 -2015-07-27 06:00:00,7.25595996,998.5151667000001,33.5025,98.125,14.3775,0.43858333299999996,237.57806916666667 -2015-07-27 07:00:00,0.0,998.2593332999999,90.95916667,96.45,15.4275,0.712166667,237.58183280000003 -2015-07-27 08:00:00,38.8206503,998.122,50.85916667,97.14166667,16.03916667,1.266166667,237.58434190000003 -2015-07-27 09:00:00,11.83504884,998.4069999999999,168.225,96.775,15.88083333,2.04325,237.58754796666665 -2015-07-27 10:00:00,0.0,999.2265,443.525,88.325,17.8525,0.725583333,237.58936004999998 -2015-07-27 11:00:00,0.0,999.7363332999998,479.91666669999995,79.81416667,18.75833333,0.945416667,237.58740856666665 -2015-07-27 12:00:00,0.0,999.9676667000001,266.425,76.86083333,19.46416667,0.881833333,237.5855964333333 -2015-07-27 13:00:00,0.0,999.949,342.4916667,72.67166667,19.88833333,0.9943333329999999,237.58280856666667 -2015-07-27 14:00:00,0.0,1000.285833,301.2,79.60666667,18.9175,0.988,237.57946313333332 -2015-07-27 15:00:00,0.0,1000.442167,233.5633333,78.00166667,20.08833333,0.905333333,237.57500253333333 -2015-07-27 16:00:00,2.571320736,1000.559333,300.53333330000004,83.11,19.02666667,0.899666667,237.57500255 -2015-07-27 17:00:00,0.0,1000.7755,118.7575,73.83083333,19.53333333,1.27175,237.57179648333332 -2015-07-27 18:00:00,0.0,1000.8245,69.36416667,75.53666667,19.785,0.862916667,237.57332981666661 -2015-07-27 19:00:00,0.0,1000.958833,17.51158333,77.72166667,18.5375,0.49825,237.57416619999995 -2015-07-27 20:00:00,0.0,1001.0265,1.114166667,77.02333333,18.27333333,0.887416667,237.5756994666667 -2015-07-27 21:00:00,2.425929096,1001.225,0.0,81.86083333,17.49666667,0.26875,237.57792978333336 -2015-07-27 22:00:00,2.440176792,1001.207833,0.0,95.83333333,15.35083333,0.08125,237.57890553333334 -2015-07-27 23:00:00,2.582901408,1001.4795,0.0,91.13333333,14.0675,0.309,237.58169343333336 -2015-07-28 00:00:00,2.428650216,1001.931833,0.0,93.36666667,14.6675,0.18733333300000002,237.58364495 -2015-07-28 01:00:00,0.0,1001.9015,0.0,94.64166667,13.84166667,0.108583333,237.58615403333337 -2015-07-28 02:00:00,0.0,1002.017667,0.0,92.675,13.80333333,0.18233333300000001,237.58922070000003 -2015-07-28 03:00:00,0.0,1001.890667,0.0,88.99166667,13.94666667,0.622166667,237.59172978333334 -2015-07-28 04:00:00,0.0,1002.0260000000001,0.847666667,79.805,13.46083333,0.52425,237.59437828333333 -2015-07-28 05:00:00,0.0,1002.209833,39.44425,77.2675,13.3475,0.30725,237.59507523333332 -2015-07-28 06:00:00,0.0,1002.593167,145.475,74.73166667,14.67,0.753916667,237.59535403333334 -2015-07-28 07:00:00,0.0,1002.909833,187.0141667,70.54416667,15.57,0.729583333,237.59535403333336 -2015-07-28 08:00:00,0.0,1003.360833,174.525,66.72583333,16.405,0.909833333,237.5934025 -2015-07-28 09:00:00,2.862615864,1003.5583330000001,271.8583333,63.12166667,17.44833333,1.090666667,237.59172978333334 -2015-07-28 10:00:00,0.0,1003.5505,403.8583333,58.06,18.35333333,0.906166667,237.5821116 -2015-07-28 11:00:00,0.0,1003.6916669999999,320.75,56.09166667,19.2025,1.2405,237.57723283333337 -2015-07-28 12:00:00,0.0,1003.858333,409.625,52.76166667,19.47916667,1.020916667,237.57249343333334 -2015-07-28 13:00:00,0.0,1003.8265,460.38333330000006,49.4725,19.86416667,1.282583333,237.5673358833333 -2015-07-28 14:00:00,0.0,1003.7745,381.5416667,50.215,19.5925,0.929416667,237.55925104999997 -2015-07-28 15:00:00,0.0,1003.7156669999999,225.68333330000002,48.86666667,19.86583333,0.766333333,237.5557662 -2015-07-28 16:00:00,0.0,1003.608333,188.18333330000002,48.9625,19.48083333,0.892166667,237.55186318333332 -2015-07-28 17:00:00,0.0,1003.8760000000001,98.80916667,51.61916667,18.895,0.521333333,237.54740260000003 -2015-07-28 18:00:00,0.0,1004.033833,54.4375,52.99666667,18.19583333,0.37175,237.5450329 -2015-07-28 19:00:00,0.0,1004.294167,20.93783333,55.85416667,17.42083333,0.194083333,237.54461471666664 -2015-07-28 20:00:00,0.0,1004.5260000000001,1.7129166669999998,60.63916667,16.17333333,0.040416667,237.54461471666664 -2015-07-28 21:00:00,0.0,1004.903,0.0,58.94166667,15.5125,0.12025,237.54489350000003 -2015-07-28 22:00:00,0.0,1005.359833,0.0,64.08916667,15.40916667,0.10158333300000001,237.54628745 -2015-07-28 23:00:00,0.0,1005.6,0.0,69.86166667,14.48166667,0.095083333,237.54768136666667 -2015-07-29 00:00:00,0.0,1005.481833,0.0,79.58833333,12.51333333,0.009166667,237.54949348333332 -2015-07-29 01:00:00,0.0,1005.283833,0.0,87.45,9.820833333,0.012333333,237.55297831666664 -2015-07-29 02:00:00,0.0,1005.391167,0.0,79.79833333,9.646666667,0.08275,237.5540934833333 -2015-07-29 03:00:00,0.0,1005.4,0.0,78.0525,12.71333333,0.26175,237.5553480166666 -2015-07-29 04:00:00,0.0,1005.418167,0.3165,80.94,12.78,0.0885,237.5581358833333 -2015-07-29 05:00:00,0.0,1005.455833,24.35008333,81.18416667,12.76666667,0.087,237.5602267833333 -2015-07-29 06:00:00,0.0,1005.309333,66.7375,81.08583333,13.57333333,0.20199999999999999,237.56134194999996 -2015-07-29 07:00:00,0.0,1005.275,168.4375,77.51666667,14.3875,0.583,237.56203891666664 -2015-07-29 08:00:00,0.0,1004.965167,162.9916667,71.40583333,15.8025,0.66825,237.56176011666662 -2015-07-29 09:00:00,0.0,1004.764167,294.21666669999996,63.87,16.96416667,0.682583333,237.55771768333332 -2015-07-29 10:00:00,0.0,1004.347,406.8583333,57.915,17.405,1.220583333,237.5521419833333 -2015-07-29 11:00:00,0.0,1003.9416669999999,496.00833330000006,52.50583333,18.09583333,1.258916667,237.5454510666667 -2015-07-29 12:00:00,0.0,1003.8989999999999,518.1166667,49.34166667,19.52416667,1.149,237.53764503333335 -2015-07-29 13:00:00,0.0,1004.010833,542.575,45.16916667,20.08583333,1.606333333,237.53151171666664 -2015-07-29 14:00:00,0.0,1004.369167,505.59166669999996,46.79666667,19.6625,1.883833333,237.5287238333333 -2015-07-29 15:00:00,0.0,1004.810333,476.15,44.1425,20.00166667,2.1745,237.52482083333334 -2015-07-29 16:00:00,0.0,1005.295167,331.35,42.19833333,20.1325,1.5396666669999999,237.51952384999996 -2015-07-29 17:00:00,0.0,1006.185333,79.62083333,55.55416667,17.97583333,3.325916667,237.51701475000002 -2015-07-29 18:00:00,0.0,1006.4383330000001,41.25,58.735,17.56166667,1.218916667,237.5163178 -2015-07-29 19:00:00,0.0,1007.1005,33.3225,66.90166667,16.4475,0.626083333,237.51534205 -2015-07-29 20:00:00,0.0,1007.644667,2.1623333330000003,75.4175,13.98833333,0.051666667,237.51589961666664 -2015-07-29 21:00:00,0.0,1008.2785,0.0,86.84166667,11.015,0.0305,237.51687534999996 -2015-07-29 22:00:00,0.0,1008.827,0.0,88.53333333,9.426666667000001,0.0275,237.51980265 -2015-07-29 23:00:00,0.0,1009.142667,0.0,97.125,8.840833332999999,0.00875,237.52398445000003 -2015-07-30 00:00:00,0.0,1009.3265,0.0,99.575,8.05275,0.00125,237.52858445 -2015-07-30 01:00:00,0.0,1009.3985,0.0,100.0,7.6655,0.00075,237.53206926666667 -2015-07-30 02:00:00,0.0,1009.292167,0.0,100.0,7.563083333,0.043666667,237.53736623333336 -2015-07-30 03:00:00,0.0,1009.543167,0.0,99.775,7.266083332999999,0.0865,237.53931773333332 -2015-07-30 04:00:00,0.0,1009.769167,0.815916667,96.525,7.347916667000001,0.29600000000000004,237.54224501666667 -2015-07-30 05:00:00,0.0,1010.0265,42.68633333,94.20833333,8.440833332999999,0.3005,237.54489350000003 -2015-07-30 06:00:00,0.0,1010.391667,147.2833333,84.52166667,11.25666667,0.33375,237.5469844 -2015-07-30 07:00:00,0.0,1010.694167,222.2033333,77.88083333,13.685,0.34066666700000003,237.54879653333333 -2015-07-30 08:00:00,0.0,1010.9255,195.4716667,74.47083333,14.9475,1.2588333329999999,237.54963288333332 -2015-07-30 09:00:00,0.0,1010.916667,282.33666669999997,68.1825,16.6525,1.07875,237.54670561666669 -2015-07-30 10:00:00,0.0,1011.0666669999999,454.36666669999994,63.12916667,17.14083333,1.4498333330000002,237.53764503333335 -2015-07-30 11:00:00,0.0,1011.1676669999999,622.0083333,58.1275,18.27833333,1.216083333,237.52816625 -2015-07-30 12:00:00,0.0,1011.115667,350.8083333,56.72666667,18.90416667,1.54425,237.5200814166666 -2015-07-30 13:00:00,0.0,1011.219167,450.38083330000006,54.7175,18.5775,1.66575,237.51088144999997 -2015-07-30 14:00:00,4.991309304,1011.55,201.2,66.7425,16.225,0.9075,237.50934811666664 -2015-07-30 15:00:00,0.0,1011.525,370.825,54.895,17.6475,1.38375,237.50502691666668 -2015-07-30 16:00:00,0.0,1011.678,262.58916669999996,54.78833333,18.36166667,1.6279166669999998,237.50293601666667 -2015-07-30 17:00:00,2.466443184,1011.966167,42.36416667,80.24833333,15.32333333,1.13175,237.50265721666668 -2015-07-30 18:00:00,0.0,1012.143167,32.81833333,89.71666667,14.01833333,0.25625,237.50405116666664 -2015-07-30 19:00:00,0.0,1012.586333,14.63508333,90.125,14.84166667,1.122666667,237.50642085 -2015-07-30 20:00:00,0.0,1012.9775,0.661166667,93.65,13.78833333,0.2075,237.51060264999998 -2015-07-30 21:00:00,0.0,1013.442667,0.0,96.6,12.85916667,0.152416667,237.51366931666666 -2015-07-30 22:00:00,0.0,1013.811333,0.0,96.43333333,12.06583333,0.06383333299999999,237.5168753833333 -2015-07-30 23:00:00,0.0,1014.460333,0.0,99.11666667,10.76,0.10316666699999999,237.51896626666664 -2015-07-31 00:00:00,0.0,1014.809833,0.0,99.94166667,10.57,0.454583333,237.52245113333333 -2015-07-31 01:00:00,0.0,1015.143167,0.0,100.0,10.78416667,0.269916667,237.52565718333332 -2015-07-31 02:00:00,0.0,1015.192667,0.0,100.0,10.63833333,0.208833333,237.52942081666666 -2015-07-31 03:00:00,0.0,1015.265667,0.0,100.0,10.45583333,0.22316666699999999,237.53304505000003 -2015-07-31 04:00:00,0.0,1015.116667,0.59175,100.0,10.01583333,0.02075,237.53666926666668 -2015-07-31 05:00:00,0.0,1015.443667,32.23975,100.0,9.494166667,0.006666666999999999,237.54001473333335 -2015-07-31 06:00:00,0.0,1016.0795,126.50166670000002,97.41666667,11.57416667,0.15533333300000002,237.54057228333332 -2015-07-31 07:00:00,0.0,1016.4255,181.91,85.15,12.87916667,0.515833333,237.54126926666666 -2015-07-31 08:00:00,0.0,1016.406333,172.575,77.03666667,14.24666667,1.474166667,237.54224501666667 -2015-07-31 09:00:00,0.0,1016.258833,348.0716667,65.73416667,15.36416667,1.57125,237.54043288333332 -2015-07-31 10:00:00,0.0,1016.216667,621.075,59.67416667,16.5475,1.6019166669999998,237.53471776666666 -2015-07-31 11:00:00,0.0,1016.063167,664.2833333,52.94833333,18.085,1.113583333,237.52342688333331 -2015-07-31 12:00:00,0.0,1015.539167,696.6666667000001,45.84333333,19.01916667,1.11525,237.51269356666668 -2015-07-31 13:00:00,0.0,1014.6705,628.2,44.8525,19.34583333,2.03225,237.50349358333335 -2015-07-31 14:00:00,0.0,1014.074,616.9083333,45.25083333,20.415,1.57175,237.4962451166667 -2015-07-31 15:00:00,0.0,1013.706333,520.025,42.8425,20.4575,2.257583333,237.49206328333335 -2015-07-31 16:00:00,0.0,1013.289667,403.84166669999996,42.53583333,20.60416667,2.022583333,237.49066935 -2015-07-31 17:00:00,0.0,1012.863667,86.62666667,43.62416667,20.6525,2.28675,237.48746331666666 -2015-07-31 18:00:00,0.0,1012.256833,33.72,45.6625,20.31,2.411666667,237.48565118333332 -2015-07-31 19:00:00,0.0,1012.075,17.89708333,53.29416667,19.00416667,2.35925,237.48467543333334 -2015-07-31 20:00:00,0.0,1012.2073330000001,1.393666667,75.9525,16.26666667,1.012833333,237.48690573333332 -2015-07-31 21:00:00,0.0,1012.2260000000001,0.0,87.09166667,11.65416667,0.024916667000000003,237.49094813333338 -2015-07-31 22:00:00,0.0,1012.167167,0.0,92.9,9.855833333,0.000583333,237.4951299666667 -2015-07-31 23:00:00,0.0,1012.2485,0.0,94.71666667,9.943333333,0.074333333,237.49931176666666 -2015-01-08 00:00:00,0.0,1011.932833,0.0,95.48333333,11.41666667,0.270083333, -2015-01-08 01:00:00,0.0,1011.730333,0.0,94.69166667,12.86,1.2015, -2015-01-08 02:00:00,0.0,1011.507833,0.0,91.08333333,12.89666667,1.4618333330000002, -2015-01-08 03:00:00,0.0,1011.0985,0.0,88.99916667,12.79,1.682333333, -2015-01-08 04:00:00,0.0,1010.9995,0.1775,84.85333333,12.635,1.7223333330000001, -2015-01-08 05:00:00,0.0,1010.9416669999999,12.11625,82.43833333,12.47666667,1.3480833330000002, -2015-01-08 06:00:00,0.0,1010.725,34.14916667,76.08166667,12.71416667,1.7263333330000001, -2015-01-08 07:00:00,0.0,1011.169167,85.39083333,77.64416667,13.15666667,1.706166667, -2015-01-08 08:00:00,0.0,1011.4765,158.18333330000002,69.70666667,14.31166667,2.2455, -2015-01-08 09:00:00,0.0,1011.525,346.34166669999996,64.11416667,16.3025,2.171333333, -2015-01-08 10:00:00,0.0,1011.531833,571.3333332999999,56.44833333,18.9075,1.6105, -2015-01-08 11:00:00,0.0,1011.1475,631.5583333,51.5075,21.1425,1.365, -2015-01-08 12:00:00,0.0,1010.907833,661.3083333,49.07083333,22.63416667,1.5893333330000001, -2015-01-08 13:00:00,0.0,1010.3225,656.325,43.80416667,24.60916667,1.13425, -2015-01-08 14:00:00,0.0,1010.199,619.2083332999999,38.02583333,25.98083333,1.39875, -2015-01-08 15:00:00,0.0,1009.964667,361.4333333,36.21666667,26.665,1.1865, -2015-01-08 16:00:00,0.0,1009.640667,255.69166669999998,36.3125,26.56333333,1.023333333, -2015-01-08 17:00:00,0.0,1009.6515,115.98333329999998,38.53,26.16333333,0.6255, -2015-01-08 18:00:00,0.0,1009.943167,47.47916667,39.605,26.42166667,0.40975, -2015-01-08 19:00:00,0.0,1010.285833,13.42916667,61.13916667,21.2825,0.08516666699999999, -2015-01-08 20:00:00,0.0,1011.087833,0.95275,72.43333333,16.825,0.07725, -2015-01-08 21:00:00,0.0,1011.794667,0.0,78.62333333,15.30083333,0.013083333, -2015-01-08 22:00:00,0.0,1012.3775,0.0,86.61666667,13.62666667,0.03125, -2015-01-08 23:00:00,0.0,1012.8265,0.0,91.25,12.77083333,0.009000000000000001, -2015-02-08 00:00:00,0.0,1013.218167,0.0,94.03333333,12.3575,0.054833333, -2015-02-08 01:00:00,0.0,1013.4775,0.0,96.19166667,12.52666667,0.070916667, -2015-02-08 02:00:00,0.0,1013.7,0.0,96.775,12.135,0.062583333, -2015-02-08 03:00:00,0.0,1014.044667,0.0,98.1,11.2875,0.048916667000000004, -2015-02-08 04:00:00,0.0,1014.512333,0.342416667,99.075,10.73083333,0.011833333, -2015-02-08 05:00:00,0.0,1015.168167,24.99283333,97.50833333,10.645,0.00175, -2015-02-08 06:00:00,0.0,1015.568167,123.96083329999999,89.98333333,13.42833333,0.09425, -2015-02-08 07:00:00,0.0,1015.909833,202.55,74.7275,16.72583333,0.6376666670000001, -2015-02-08 08:00:00,0.0,1016.235333,190.2666667,65.90833333,18.68833333,2.04475, -2015-02-08 09:00:00,0.0,1016.5255,317.1,59.60916667,20.81833333,2.506, -2015-02-08 10:00:00,0.0,1016.4745,564.8833333,55.67333333,22.72083333,2.0819166669999998, -2015-02-08 11:00:00,0.0,1016.365167,614.0083333,49.83,24.18416667,2.391916667, -2015-02-08 12:00:00,0.0,1015.955833,649.325,45.40916667,25.83,1.999916667, -2015-02-08 13:00:00,0.0,1015.5485,648.9083333,41.94416667,27.005,1.365, -2015-02-08 14:00:00,0.0,1014.9975,598.2666667000001,38.67916667,27.46083333,1.9178333330000001, -2015-02-08 15:00:00,0.0,1014.6985,550.1416667000001,37.97916667,28.14,2.224333333, -2015-02-08 16:00:00,0.0,1014.079333,421.88333330000006,37.47416667,28.42416667,1.667583333, -2015-02-08 17:00:00,0.0,1013.6916669999999,81.9975,39.15666667,28.6225,0.957583333, -2015-02-08 18:00:00,0.0,1013.616167,62.0175,45.71083333,27.3525,0.901833333, -2015-02-08 19:00:00,0.0,1013.567167,27.81166667,62.58333333,24.18416667,0.09991666699999999, -2015-02-08 20:00:00,0.0,1013.743167,1.5968333330000002,75.86,19.0225,0.036583332999999996, -2015-02-08 21:00:00,0.0,1014.015667,0.0,85.71666667,15.94333333,0.009666667, -2015-02-08 22:00:00,0.0,1013.958333,0.0,91.075,14.39416667,0.002666667, -2015-02-08 23:00:00,0.0,1013.9255,0.0,93.7,13.53666667,0.018833333, -2015-03-08 00:00:00,0.0,1013.815667,0.0,96.05,12.60333333,0.000833333,238.04435266666664 -2015-03-08 01:00:00,0.0,1013.7489999999999,0.0,97.625,11.85,0.0,238.04435266666664 -2015-03-08 02:00:00,0.0,1013.416167,0.0,99.225,11.30416667,0.009083333,238.0440193333333 -2015-03-08 03:00:00,0.0,1013.375,0.0,99.73333333,10.8725,0.049416667000000004,238.0440193333333 -2015-03-08 04:00:00,0.0,1013.199,0.5325833329999999,100.0,10.6925,0.15475,238.04468599999996 -2015-03-08 05:00:00,0.0,1013.469167,31.46941667,99.775,10.9925,0.028916667000000004,238.04468599999996 -2015-03-08 06:00:00,0.0,1013.7495,116.79916670000001,89.81666667,14.3325,0.02225,238.04568599999996 -2015-03-08 07:00:00,0.0,1013.827,207.405,77.99166667,17.60083333,0.41175,238.04603599999996 -2015-03-08 08:00:00,0.0,1014.015167,183.385,66.1675,21.455,0.7354166670000001,238.04603599999996 -2015-03-08 09:00:00,0.0,1013.725,306.6691667,52.66,25.63583333,1.8086666669999998,238.05083599999998 -2015-03-08 10:00:00,0.0,1013.5495,564.625,42.26583333,28.09083333,2.64075,238.04638599999996 -2015-03-08 11:00:00,0.0,1013.3886669999999,628.475,39.8075,29.41916667,3.56175,238.04568599999996 -2015-03-08 12:00:00,0.0,1012.8975,652.975,39.16083333,30.42666667,3.2239999999999998,238.04535266666664 -2015-03-08 13:00:00,0.0,1012.3739999999999,647.5833332999999,36.70833333,31.405,2.3705,238.04501933333333 -2015-03-08 14:00:00,0.0,1011.9813330000001,602.925,33.67666667,31.85583333,2.52,238.04468599999996 -2015-03-08 15:00:00,0.0,1011.464167,527.625,31.37833333,32.5825,1.744083333,238.04501933333333 -2015-03-08 16:00:00,0.0,1011.1386669999999,432.5166666999999,29.58833333,32.47,1.5274166669999998,238.04501933333333 -2015-03-08 17:00:00,0.0,1010.405833,89.345,30.34083333,32.3925,1.49475,238.04568599999996 -2015-03-08 18:00:00,0.0,1010.2073330000001,29.97,32.40333333,31.45833333,0.885166667,238.04708599999995 -2015-03-08 19:00:00,0.0,1010.166167,12.45616667,53.7875,26.68916667,0.12591666699999998,238.047786 -2015-03-08 20:00:00,0.0,1010.410333,0.730666667,69.2075,20.1675,0.055,238.047786 -2015-03-08 21:00:00,0.0,1010.425,0.0,78.35916667,17.35583333,0.0545,238.04845266666666 -2015-03-08 22:00:00,0.0,1010.4333330000001,0.0,85.725,15.74583333,0.07858333299999999,238.04845266666666 -2015-03-08 23:00:00,0.0,1010.391667,0.0,88.625,14.41833333,0.002833333,238.04878599999998 -2015-04-08 00:00:00,0.0,1010.189667,0.0,91.18333333,13.685,0.01975,238.04517379999996 -2015-04-08 01:00:00,0.0,1009.889167,0.0,94.41666667,13.02333333,0.003333333,238.04517379999996 -2015-04-08 02:00:00,0.0,1009.415167,0.0,97.44166667,12.42083333,0.02225,238.04529688333332 -2015-04-08 03:00:00,0.0,1009.114167,0.0,99.375,11.9375,0.007333333,238.0451984166666 -2015-04-08 04:00:00,0.0,1008.765167,0.8976666670000001,100.0,11.52083333,0.0,238.0450703333333 -2015-04-08 05:00:00,0.0,1008.467667,27.22291667,99.88333333,12.07833333,0.036333332999999995,238.04496933333334 -2015-04-08 06:00:00,0.0,1008.574,129.9808333,89.85833333,16.1875,0.020916667,238.0448954333333 -2015-04-08 07:00:00,0.0,1008.3485,232.3608333,76.97916667,20.035,0.334083333,238.04487079999998 -2015-04-08 08:00:00,0.0,1008.055333,187.20833330000002,68.34083333,24.31416667,1.440916667,238.04487079999998 -2015-04-08 09:00:00,12.44489621,1007.594167,302.725,51.0775,26.93916667,2.15125,238.0447932 -2015-04-08 10:00:00,0.0,1008.536833,328.53333330000004,52.80666667,28.2025,1.8385,238.0447156 -2015-04-08 11:00:00,0.0,1009.1775,350.6666667,54.23166667,27.15,1.023833333,238.044638 -2015-04-08 12:00:00,0.0,1009.704,231.3833333,62.12083333,25.25416667,1.4876666669999998,238.044537 -2015-04-08 13:00:00,36.66302911,1010.6045,53.96,86.88333333,21.83666667,0.5428333329999999,238.04446186666667 -2015-04-08 14:00:00,29.77120994,1011.278,107.20166670000002,97.78333333,19.4375,0.567916667,238.04443723333335 -2015-04-08 15:00:00,0.0,1011.532833,148.55583330000002,95.05,20.635,0.9946666670000001,238.04438675000003 -2015-04-08 16:00:00,0.0,1011.1489999999999,91.48083333,93.48333333,21.42333333,1.5446666669999998,238.0442575 -2015-04-08 17:00:00,47.74032235,1011.546167,63.34333333,94.43333333,20.00583333,1.3555,238.0442575 -2015-04-08 18:00:00,0.0,1012.595667,47.22083333,94.28333333,17.79166667,0.5185833329999999,238.04418360000003 -2015-04-08 19:00:00,0.0,1013.194667,14.93666667,93.35833333,17.05416667,0.587666667,238.04405796666666 -2015-04-08 20:00:00,0.0,1013.7275,1.13725,92.51666667,15.98416667,0.420333333,238.0440062333333 -2015-04-08 21:00:00,0.0,1014.211333,0.0,94.66666667,14.42666667,0.25,238.04398036666666 -2015-04-08 22:00:00,0.0,1014.844167,0.0,99.8,13.00916667,0.028916667000000004,238.04395449999996 -2015-04-08 23:00:00,0.0,1015.318167,0.0,100.0,11.58416667,0.027666667000000002,238.04395449999996 -2015-05-08 00:00:00,0.0,1015.391667,0.0,100.0,10.61916667,0.067166667,238.03356798333334 -2015-05-08 01:00:00,0.0,1015.4,0.0,100.0,10.04333333,0.00725,238.03322319999998 -2015-05-08 02:00:00,0.0,1015.593167,0.0,100.0,10.09083333,0.000166667,238.03253369999996 -2015-05-08 03:00:00,0.0,1015.759333,0.0,100.0,11.24,0.065,238.03270609999996 -2015-05-08 04:00:00,0.0,1015.984833,0.21425,100.0,11.2875,0.110833333,238.03253371666665 -2015-05-08 05:00:00,0.0,1016.125,12.11,100.0,11.13583333,0.178916667,238.03201658333333 -2015-05-08 06:00:00,0.0,1016.3765,48.345,100.0,11.2825,0.461416667,238.03149945000004 -2015-05-08 07:00:00,0.0,1016.483833,99.37,100.0,12.0175,0.6928333329999999,238.03012043333334 -2015-05-08 08:00:00,0.0,1016.725,178.4666667,100.0,13.14416667,0.407916667,238.02874141666666 -2015-05-08 09:00:00,0.0,1016.406333,347.925,98.675,14.92416667,0.61525,238.02805191666667 -2015-05-08 10:00:00,0.0,1015.9975,562.575,79.96916667,18.85,0.8161666670000001,238.02615575000002 -2015-05-08 11:00:00,0.0,1015.658333,625.825,57.88833333,22.29583333,1.55675,238.02581101666667 -2015-05-08 12:00:00,0.0,1015.338167,659.4083333,50.53416667,23.53166667,1.40025,238.02512151666664 -2015-05-08 13:00:00,0.0,1014.495,652.4916667,46.785,24.58833333,1.27275,238.02443201666665 -2015-05-08 14:00:00,0.0,1013.704833,608.2916667000001,45.03166667,25.06083333,1.588916667,238.02253586666666 -2015-05-08 15:00:00,0.0,1013.031333,535.6,42.02333333,26.17833333,1.495166667,238.02201873333334 -2015-05-08 16:00:00,0.0,1012.2955,356.8583333,44.8675,26.43083333,1.491416667,238.02167398333333 -2015-05-08 17:00:00,0.0,1011.689167,88.59583333,46.17666667,26.70666667,1.5016666669999998,238.0249491666667 -2015-05-08 18:00:00,0.0,1011.4245,57.54916667,57.395,25.525,0.674583333,238.0232253833333 -2015-05-08 19:00:00,0.0,1011.240667,22.05058333,75.70333333,21.88416667,0.019083333,238.02425966666667 -2015-05-08 20:00:00,0.0,1011.141667,0.796333333,88.49166667,18.11583333,0.0785,238.02512153333336 -2015-05-08 21:00:00,0.0,1011.420667,0.0,93.2,16.24666667,0.013416667,238.02425965 -2015-05-08 22:00:00,0.0,1011.730833,0.0,95.55833333,15.47083333,0.06725,238.02546626666665 -2015-05-08 23:00:00,0.0,1011.466667,0.0,98.51666667,14.09,0.005333333000000001,238.02650053333332 -2015-06-08 00:00:00,0.0,1011.484333,0.0,99.975,13.24083333,0.0,237.73018503333333 -2015-06-08 01:00:00,0.0,1011.6489999999999,0.0,100.0,12.7075,0.017,237.73363256666667 -2015-06-08 02:00:00,0.0,1011.340167,0.0,100.0,11.925,0.0,237.73587344999999 -2015-06-08 03:00:00,0.0,1011.2260000000001,0.0,100.0,11.20166667,0.005916667,237.73518396666668 -2015-06-08 04:00:00,0.0,1011.418167,0.43258333299999996,100.0,10.76833333,0.016333333000000002,237.73914863333334 -2015-06-08 05:00:00,0.0,1011.608833,25.19391667,100.0,11.16,0.006416666999999999,237.74207901666668 -2015-06-08 06:00:00,0.0,1012.0525,73.215,99.325,13.81333333,0.0,237.7424237666667 -2015-06-08 07:00:00,0.0,1012.166667,155.8416667,90.89166667,16.145,0.225,237.74104478333334 -2015-06-08 08:00:00,0.0,1012.384833,188.33333330000002,76.2975,18.91,0.7373333329999999,237.73466683333334 -2015-06-08 09:00:00,0.0,1012.4235,171.7833333,72.8175,21.90333333,0.361416667,237.72656511666665 -2015-06-08 10:00:00,0.0,1012.2995,404.46666669999996,64.66416667,24.80166667,0.41233333299999997,237.72173859999998 -2015-06-08 11:00:00,0.0,1011.963667,580.2166667,48.95666667,29.37916667,1.077583333,237.71794631666668 -2015-06-08 12:00:00,0.0,1011.4475,606.325,38.03833333,32.2125,2.359333333,237.71484353333332 -2015-06-08 13:00:00,0.0,1010.9985,551.2416667,35.59333333,33.4175,2.316166667,237.71139598333332 -2015-06-08 14:00:00,0.0,1010.741667,406.2083333,37.56666667,33.08833333,2.3079166669999998,237.70777606666664 -2015-06-08 15:00:00,0.0,1010.841667,514.1833333000001,33.8525,34.1325,1.380416667,237.70432853333332 -2015-06-08 16:00:00,0.0,1010.7735,398.0,33.97166667,34.39583333,0.6055,237.70432853333332 -2015-06-08 17:00:00,0.0,1010.173,86.63083333,33.84166667,34.0825,0.572916667,237.70398378333334 -2015-06-08 18:00:00,0.0,1010.016167,62.27166667,43.67333333,32.5725,0.367833333,237.70519041666668 -2015-06-08 19:00:00,0.0,1010.319667,29.39166667,64.26333333,28.98166667,0.181916667,237.70553518333335 -2015-06-08 20:00:00,0.0,1010.819167,1.142666667,74.05083333,24.82083333,0.12675,237.70656944999996 -2015-06-08 21:00:00,0.0,1011.1765,0.0,76.88416667,21.91666667,0.08583333300000001,237.70863796666666 -2015-06-08 22:00:00,0.0,1011.3255,0.0,85.48333333,19.83916667,0.09875,237.71225786666665 -2015-06-08 23:00:00,0.0,1011.407833,0.0,89.20833333,18.63083333,0.039416667,237.71587778333333 -2015-07-08 00:00:00,0.0,1011.432333,0.0,93.15,17.56416667,0.15433333300000002,237.55116621666664 -2015-07-08 01:00:00,0.0,1011.106833,0.0,95.43333333,16.90583333,0.03925,237.55367529999998 -2015-07-08 02:00:00,0.0,1010.782333,0.0,98.225,16.10166667,0.015083333,237.55869346666665 -2015-07-08 03:00:00,0.0,1010.5465,0.0,99.69166667,15.65333333,0.0,237.56245708333333 -2015-07-08 04:00:00,0.0,1010.177,0.18741666699999998,100.0,15.535,0.0,237.56580253333337 -2015-07-08 05:00:00,0.0,1010.634833,12.96325,100.0,15.57416667,0.0,237.56775405000005 -2015-07-08 06:00:00,0.0,1010.844167,114.71583329999999,92.16666667,18.3825,0.0,237.56928739999998 -2015-07-08 07:00:00,0.0,1011.518167,177.725,74.88333333,22.4875,0.0,237.56984496666664 -2015-07-08 08:00:00,0.0,1012.022167,176.19166669999998,69.49,24.17416667,1.105083333,237.56914803333328 -2015-07-08 09:00:00,0.0,1012.5343330000001,304.1083333,65.23166667,26.7,3.8529166669999997,237.56399043333332 -2015-07-08 10:00:00,0.0,1012.7510000000001,526.3416666999999,61.95583333,27.29416667,4.6235,237.55451168333332 -2015-07-08 11:00:00,0.0,1012.546,587.6666667000001,58.02833333,28.04583333,4.102666667,237.54266320000002 -2015-07-08 12:00:00,0.0,1011.922,624.1,51.8675,29.89416667,3.2719166669999997,237.53416018333328 -2015-07-08 13:00:00,0.0,1011.4475,623.6333333,47.37083333,31.89333333,2.247,237.52621474999998 -2015-07-08 14:00:00,0.0,1011.165667,594.4,43.88333333,33.06,2.675416667,237.52022079999998 -2015-07-08 15:00:00,0.0,1010.732833,404.75,44.22166667,34.19166667,2.8395,237.51938444999996 -2015-07-08 16:00:00,0.0,1010.480833,384.525,40.5625,34.85583333,2.7969999999999997,237.51924505 -2015-07-08 17:00:00,0.0,1009.904333,67.89333333,43.0325,34.97583333,2.8985,237.51826928333332 -2015-07-08 18:00:00,0.0,1009.6010000000001,37.73583333,48.21,34.18916667,2.806833333,237.51812989999996 -2015-07-08 19:00:00,0.0,1009.834833,15.44666667,62.55333333,32.17,1.530583333,237.5217541333333 -2015-07-08 20:00:00,0.0,1010.160333,0.47975,78.2225,26.33333333,0.350083333,237.52858443333335 -2015-07-08 21:00:00,0.0,1010.391667,0.0,83.5,22.96583333,0.15683333300000002,237.53262685 -2015-07-08 22:00:00,0.0,1010.4176669999999,0.0,90.30833333,21.37,0.106,237.5380632 -2015-07-08 23:00:00,0.0,1010.733833,0.0,91.15833333,19.96583333,0.09733333300000001,237.54377835 -2015-08-08 00:00:00,0.0,1010.859333,0.0,90.98333333,20.46166667,0.139166667,237.44271794999997 -2015-08-08 01:00:00,0.0,1010.985833,0.0,89.74166667,22.9425,0.7909999999999999,237.44313615 -2015-08-08 02:00:00,0.0,1012.602167,0.0,84.48333333,23.0175,0.669166667,237.4475967166667 -2015-08-08 03:00:00,0.0,1013.054833,0.0,81.5775,23.04083333,1.9485833330000002,237.44982701666666 -2015-08-08 04:00:00,0.0,1012.924,0.08925,79.54,23.0025,1.7745,237.45233610000002 -2015-08-08 05:00:00,0.0,1013.196167,11.42508333,78.625,22.83583333,1.203833333,237.45470580000003 -2015-08-08 06:00:00,20.12887855,1013.6289999999999,11.73916667,94.18333333,21.22,1.255333333,237.4569361166667 -2015-08-08 07:00:00,0.0,1014.409833,148.71333330000002,91.55,20.8875,0.686583333,237.45986336666667 -2015-08-08 08:00:00,0.0,1014.9035,177.4358333,76.56666667,23.50583333,2.405583333,237.46083911666668 -2015-08-08 09:00:00,0.0,1015.444167,298.03333330000004,69.00166667,24.80416667,2.433416667,237.45749366666664 -2015-08-08 10:00:00,0.0,1015.809833,534.5166667,62.7575,26.18416667,2.684916667,237.44899066666665 -2015-08-08 11:00:00,0.0,1016.125,574.95,60.27166667,27.80333333,2.974583333,237.43505128333334 -2015-08-08 12:00:00,0.0,1015.680833,629.3916667000001,53.33666667,28.69,2.414916667,237.42571191666664 -2015-08-08 13:00:00,0.0,1015.4573330000001,548.7166667,53.29083333,29.4475,1.666333333,237.419718 -2015-08-08 14:00:00,0.0,1015.232833,243.9833333,56.26,28.9975,1.9338333330000002,237.4184634333333 -2015-08-08 15:00:00,0.0,1015.687333,343.575,60.4375,28.665,3.3375,237.41776646666665 -2015-08-08 16:00:00,0.0,1016.057333,398.4833333,62.83416667,27.67166667,3.869333333,237.41581493333334 -2015-08-08 17:00:00,0.0,1016.3025,90.43666667,69.03333333,25.5825,4.306333333,237.41456041666672 -2015-08-08 18:00:00,0.0,1016.592167,33.88833333,74.375,23.9525,3.794333333,237.4148392166667 -2015-08-08 19:00:00,0.0,1016.9275,8.690416667000001,79.34833333,22.61166667,2.981833333,237.4170695 -2015-08-08 20:00:00,0.0,1017.2363330000001,0.956,80.99166667,21.4475,3.238833333,237.41957861666666 -2015-08-08 21:00:00,0.0,1017.817667,0.0,83.29166667,20.63666667,2.025,237.42278466666667 -2015-08-08 22:00:00,0.0,1017.7313330000001,0.0,84.93333333,20.1225,1.9610833330000002,237.42696644999998 -2015-08-08 23:00:00,0.0,1017.525,0.0,85.73333333,19.82083333,1.878166667,237.43114826666667 -2015-09-08 00:00:00,0.0,1017.3485,0.0,87.1,19.5125,1.738583333,237.54383045 -2015-09-08 01:00:00,0.0,1017.0980000000001,0.0,87.49166667,19.27166667,2.23375,237.54724281666668 -2015-09-08 02:00:00,0.0,1016.556333,0.0,88.44166667,18.87583333,2.171833333,237.54863881666668 -2015-09-08 03:00:00,0.0,1016.307833,0.0,90.36666667,18.55333333,2.701916667,237.55112051666666 -2015-09-08 04:00:00,0.0,1015.890667,0.066166667,92.375,18.12666667,1.840583333,237.55391246666662 -2015-09-08 05:00:00,0.0,1015.916667,5.516083332999999,95.175,17.83,1.5185,237.5559289 -2015-09-08 06:00:00,0.0,1015.941167,35.5,92.04166667,18.17,1.7024166669999998,237.55856573333335 -2015-09-08 07:00:00,0.0,1015.959833,93.09166667,89.55,18.8725,2.968583333,237.55825553333332 -2015-09-08 08:00:00,0.0,1015.981833,199.5166667,84.15833333,20.355,2.56375,237.55856574999999 -2015-09-08 09:00:00,0.0,1015.7485,225.675,80.12083333,21.68666667,2.644166667,237.55903106666665 -2015-09-08 10:00:00,0.0,1015.3989999999999,212.9833333,80.10083333,22.14916667,2.774083333,237.55453291666666 -2015-09-08 11:00:00,0.0,1015.2235,304.1,77.385,22.9,3.0678333330000003,237.55360224999995 -2015-09-08 12:00:00,0.0,1014.889667,558.2583333,70.06416667,24.65166667,3.37375,237.55158586666667 -2015-09-08 13:00:00,0.0,1014.3563330000001,542.2416667,66.79583333,26.29833333,3.477583333,237.54786325 -2015-09-08 14:00:00,0.0,1014.089667,464.8083333000001,62.69333333,27.50583333,3.2885,237.54522641666668 -2015-09-08 15:00:00,0.0,1013.538667,240.30833330000002,62.09166667,27.77833333,3.205166667,237.5427447 -2015-09-08 16:00:00,0.0,1013.115667,160.0333333,61.655,27.91083333,3.175916667,237.5411936 -2015-09-08 17:00:00,0.0,1012.680833,145.81666669999998,59.48166667,27.94166667,3.033666667,237.53855674999997 -2015-09-08 18:00:00,0.0,1012.533333,61.0225,62.8125,27.78,2.402166667,237.53762609999998 -2015-09-08 19:00:00,0.0,1012.766667,15.54808333,67.37,26.4325,2.3496666669999997,237.53809141666667 -2015-09-08 20:00:00,0.0,1012.9863330000001,0.35825,80.24166667,25.01833333,1.3734166669999999,237.53886698333335 -2015-09-08 21:00:00,0.0,1013.3,0.0,86.375,21.76416667,0.143916667,237.53933229999998 -2015-09-08 22:00:00,0.0,1013.0485,0.0,91.89166667,21.75,0.8341666670000001,237.54134869999996 -2015-09-08 23:00:00,0.0,1012.8745,0.0,94.15833333,20.62416667,0.281333333,237.54305491666665 -2015-10-08 00:00:00,0.0,1013.009833,0.0,94.2,18.65916667,0.092666667,237.61238828333333 -2015-10-08 01:00:00,0.0,1012.890167,0.0,97.45,18.22916667,0.12075,237.61316380000002 -2015-10-08 02:00:00,0.0,1012.314667,0.0,97.98333333,17.62333333,0.052000000000000005,237.61316380000002 -2015-10-08 03:00:00,0.0,1012.747167,0.0,97.35,17.99666667,0.284666667,237.61409446666664 -2015-10-08 04:00:00,0.0,1012.852833,0.093916667,94.24166667,19.42916667,0.7475,237.6128535833333 -2015-10-08 05:00:00,0.0,1012.332833,10.09725,95.925,19.5225,0.753583333,237.61362913333332 -2015-10-08 06:00:00,0.0,1012.2073330000001,51.05,94.525,20.11,0.11425,237.61378424999998 -2015-10-08 07:00:00,0.0,1011.990167,193.95,81.43666667,21.68666667,1.7815,237.6144046833333 -2015-10-08 08:00:00,0.0,1011.9010000000001,218.55833330000002,68.76,23.2625,3.1309166669999997,237.61518021666663 -2015-10-08 09:00:00,0.0,1011.882833,191.95,67.67166667,23.92166667,2.796583333,237.6144047 -2015-10-08 10:00:00,0.0,1011.5965,407.05,67.72833333,25.275,2.8376666669999997,237.61316383333335 -2015-10-08 11:00:00,0.0,1010.9896669999999,552.6,62.67083333,27.01166667,3.217666667,237.61223316666667 -2015-10-08 12:00:00,0.0,1010.639167,582.4166667000001,59.28833333,28.62583333,2.812916667,237.60990653333332 -2015-10-08 13:00:00,0.0,1010.115167,541.0166667000001,56.6425,30.0775,3.333166667,237.61006164999995 -2015-10-08 14:00:00,0.0,1009.629333,295.75,55.95166667,30.72583333,3.0909166669999997,237.60711459999996 -2015-10-08 15:00:00,0.0,1009.073,222.08333330000002,55.33083333,31.00583333,2.8325,237.6068043833333 -2015-10-08 16:00:00,0.0,1008.7495,266.5083333,55.88083333,30.79333333,2.427666667,237.60633903333328 -2015-10-08 17:00:00,7.189900896,1009.014833,209.4266667,64.93333333,29.685,1.8691666669999998,237.60602881666668 -2015-10-08 18:00:00,435.7810177,1009.9765,49.65083333,94.72833333,21.5475,2.11075,237.60525328333335 -2015-10-08 19:00:00,0.0,1010.3755,15.62425,91.8,21.08916667,0.54325,237.6055635 -2015-10-08 20:00:00,0.0,1010.938833,0.072333333,92.36666667,19.28916667,0.859833333,237.60602885 -2015-10-08 21:00:00,0.0,1011.432333,0.0,88.74166667,19.95583333,1.2724166670000001,237.6075799333333 -2015-10-08 22:00:00,0.0,1011.432833,0.0,98.01666667,19.34416667,0.124666667,237.6083554833333 -2015-10-08 23:00:00,0.0,1011.519167,0.0,100.0,18.51166667,0.11958333300000001,237.60866568333333 -2015-11-08 00:00:00,0.0,1011.608833,0.0,99.81666667,18.22583333,0.14975,237.72984845000005 -2015-11-08 01:00:00,0.0,1011.490167,0.0,97.75,17.8025,0.517083333,237.72876386666667 -2015-11-08 02:00:00,0.0,1011.7015,0.0,98.93333333,17.4675,0.48825,237.7279891833333 -2015-11-08 03:00:00,0.0,1011.9010000000001,0.0,99.85,16.9775,0.48308333299999995,237.72767931666667 -2015-11-08 04:00:00,0.0,1012.0755,0.060083332999999996,100.0,16.70833333,0.47700000000000004,237.7276793 -2015-11-08 05:00:00,2.425037928,1012.2525,8.935083333,100.0,16.94583333,0.142,237.72829906666666 -2015-11-08 06:00:00,0.0,1012.684333,71.49916667,99.5,17.99916667,0.254,237.7279892 -2015-11-08 07:00:00,2.464416888,1013.305,142.05833330000002,90.90833333,19.55416667,0.5398333329999999,237.7281441333333 -2015-11-08 08:00:00,0.0,1013.767667,164.9833333,87.8,20.38,0.797333333,237.72814411666664 -2015-11-08 09:00:00,0.0,1013.992667,210.6,85.48333333,21.53416667,1.646,237.7248903666667 -2015-11-08 10:00:00,0.0,1014.2005,236.625,82.7575,22.10916667,1.68075,237.7239607166667 -2015-11-08 11:00:00,0.0,1013.9985,351.9416667,76.76833333,23.665,1.9418333330000002,237.7239607 -2015-11-08 12:00:00,0.0,1013.781833,339.28333330000004,73.59833333,24.945,1.9615,237.7255101333333 -2015-11-08 13:00:00,0.0,1013.6495,368.03333330000004,69.06333333,26.08416667,2.224916667,237.72674966666668 -2015-11-08 14:00:00,0.0,1013.406833,516.325,64.5875,27.03916667,2.7374166669999997,237.72814413333333 -2015-11-08 15:00:00,0.0,1013.258333,364.03333330000004,61.19166667,27.46333333,3.1470833330000003,237.72938363333333 -2015-11-08 16:00:00,0.0,1013.165167,325.25,59.38666667,27.51666667,3.0645833330000003,237.73310223333337 -2015-11-08 17:00:00,0.0,1012.741167,86.17583333,60.35916667,27.12666667,3.55575,237.7334121 -2015-11-08 18:00:00,0.0,1012.934833,46.80833333,63.3675,26.30083333,3.129416667,237.73387695 -2015-11-08 19:00:00,0.0,1013.461833,10.13508333,69.7425,24.63583333,2.18075,237.736356 -2015-11-08 20:00:00,0.0,1014.271167,0.1925,77.87333333,22.94,1.7291666669999999,237.73604610000004 -2015-11-08 21:00:00,0.0,1015.128,0.0,78.035,22.665,1.837666667,237.73604611666667 -2015-11-08 22:00:00,0.0,1015.533833,0.0,80.0775,22.11083333,1.92725,237.73806035000004 -2015-11-08 23:00:00,0.0,1015.4995,0.0,82.53333333,21.06833333,1.076833333,237.7396097666667 -2015-12-08 00:00:00,0.0,1015.432333,0.0,89.98333333,20.0225,0.539333333,238.0081218 -2015-12-08 01:00:00,0.0,1015.166167,0.0,96.41666667,18.495,0.109916667,238.00937448333332 -2015-12-08 02:00:00,0.0,1015.175,0.0,99.46666667,17.87583333,0.232333333,238.0090165833333 -2015-12-08 03:00:00,0.0,1015.067167,0.0,100.0,17.33416667,0.067833333,238.00794284999998 -2015-12-08 04:00:00,0.0,1015.166667,0.09625,100.0,16.65666667,0.062583333,238.00812181666666 -2015-12-08 05:00:00,0.0,1015.2926669999999,12.349,100.0,16.47416667,0.10475,238.00919555 -2015-12-08 06:00:00,0.0,1015.737833,65.42166667,99.83333333,18.49583333,0.9855,238.00722704999998 -2015-12-08 07:00:00,0.0,1016.384833,216.1,89.55833333,20.32666667,2.024666667,238.00651123333333 -2015-12-08 08:00:00,0.0,1016.717667,185.2166667,84.1875,21.55583333,2.046833333,238.00597439999999 -2015-12-08 09:00:00,0.0,1016.758333,352.53333330000004,77.02166667,23.7275,1.8865833330000001,238.00490065 -2015-12-08 10:00:00,0.0,1016.7313330000001,467.6416666999999,72.45166667,24.77916667,2.049583333,238.00275320000003 -2015-12-08 11:00:00,0.0,1016.4573330000001,371.8583333,70.32,25.85583333,1.985416667,238.0034690166667 -2015-12-08 12:00:00,0.0,1016.375,421.625,66.46583333,27.00083333,2.399166667,238.00221636666666 -2015-12-08 13:00:00,0.0,1016.0485,280.8,66.17083333,27.09416667,2.3729166669999997,238.00060580000002 -2015-12-08 14:00:00,0.0,1015.6735,355.5166667,63.47333333,27.76,2.636,237.99988998333333 -2015-12-08 15:00:00,0.0,1015.516167,414.4833333,59.4775,28.52083333,2.488833333,238.00185845 -2015-12-08 16:00:00,0.0,1015.467167,362.75,57.97583333,28.94833333,2.6156666669999997,238.00257424999998 -2015-12-08 17:00:00,0.0,1015.089167,103.07,59.3375,28.6425,2.090583333,238.0023953 -2015-12-08 18:00:00,0.0,1015.016167,71.52416667,62.98583333,28.10416667,2.1974166669999997,238.0023953 -2015-12-08 19:00:00,0.0,1015.0505,24.36016667,70.26083333,26.93,2.468583333,238.00239530000002 -2015-12-08 20:00:00,0.0,1015.487833,0.644083333,85.86666667,24.785,1.146,238.00221635 -2015-12-08 21:00:00,0.0,1015.8995,0.0,91.54166667,23.28416667,0.9099166670000001,238.00006889999997 -2015-12-08 22:00:00,0.0,1015.983333,0.0,86.26666667,22.71166667,1.7361666669999998,237.99863728333332 -2015-12-08 23:00:00,0.0,1015.807333,0.0,92.95833333,20.67916667,0.33875,237.99702671666668 -2015-08-13 00:00:00,0.0,1015.566167,0.0,96.53333333,19.34416667,0.160833333,237.57862676666664 -2015-08-13 01:00:00,0.0,1015.3215,0.0,99.76666667,18.97333333,0.34366666700000004,237.57946311666663 -2015-08-13 02:00:00,0.0,1014.7995,0.0,100.0,17.27166667,0.048666667000000004,237.58169343333336 -2015-08-13 03:00:00,0.0,1014.6235,0.0,100.0,16.53083333,0.007916666999999999,237.5816934333333 -2015-08-13 04:00:00,0.0,1014.230833,0.040833333,100.0,16.01416667,0.026000000000000002,237.58294796666667 -2015-08-13 05:00:00,0.0,1014.009333,8.910833333,100.0,15.84083333,0.053583333,237.5846207 -2015-08-13 06:00:00,0.0,1014.115667,62.41666667,99.375,17.65416667,0.7225,237.58420250000003 -2015-08-13 07:00:00,0.0,1013.9475,178.48833330000002,86.925,19.49,2.548,237.58420250000003 -2015-08-13 08:00:00,0.0,1013.5745,173.6583333,82.0375,21.025,3.04575,237.58448128333336 -2015-08-13 09:00:00,0.0,1013.390167,279.3333333,76.985,22.915,2.6845,237.58141464999997 -2015-08-13 10:00:00,0.0,1012.722,492.96666669999996,71.05916667,24.99333333,2.579416667,237.57806921666665 -2015-08-13 11:00:00,0.0,1012.003333,560.4416667,65.8275,27.0525,2.7785833330000003,237.57277223333332 -2015-08-13 12:00:00,0.0,1011.1955,585.5416667000001,60.66,29.22666667,2.4755,237.56761468333332 -2015-08-13 13:00:00,0.0,1010.212667,590.9666667,53.785,30.855,2.745166667,237.5631540833333 -2015-08-13 14:00:00,0.0,1009.554833,463.9416666999999,51.90833333,31.73916667,2.7825833330000003,237.5582753 -2015-08-13 15:00:00,0.0,1008.980833,423.725,49.14416667,32.7,2.355666667,237.55283895 -2015-08-13 16:00:00,0.0,1008.1195,314.84166669999996,47.7525,32.94333333,2.028166667,237.54865715000003 -2015-08-13 17:00:00,0.0,1007.028833,99.69083333,50.87666667,32.43666667,3.2286666669999997,237.54572986666668 -2015-08-13 18:00:00,0.0,1006.5255,52.95166667,54.77166667,31.34333333,3.9189999999999996,237.5426632 -2015-08-13 19:00:00,0.0,1006.615667,12.40408333,55.9725,29.43333333,2.1349166669999997,237.5400147 -2015-08-13 20:00:00,0.0,1006.382833,0.10466666699999999,74.28083333,24.69166667,0.18683333300000002,237.53750563333335 -2015-08-13 21:00:00,0.0,1006.464167,0.0,83.78333333,22.4075,0.16699999999999998,237.53666926666665 -2015-08-13 22:00:00,0.0,1005.941167,0.0,87.70833333,25.13333333,0.805333333,237.53597230000003 -2015-08-13 23:00:00,0.0,1005.680833,0.0,78.03,25.43583333,1.233166667,237.53597228333334 -2015-08-14 00:00:00,0.0,1005.812333,0.0,78.13166667,23.5175,0.49208333299999996,237.5361116833333 -2015-08-14 01:00:00,0.0,1006.2515,0.0,73.9425,23.29916667,0.300833333,237.53750563333332 -2015-08-14 02:00:00,0.0,1006.290167,0.0,75.1825,22.74416667,0.564666667,237.5394571666667 -2015-08-14 03:00:00,0.0,1006.283333,0.0,81.8275,21.43166667,0.46825,237.54085108333334 -2015-08-14 04:00:00,0.0,1005.955833,0.0005,88.79166667,20.50583333,0.2205,237.53987535000002 -2015-08-14 05:00:00,0.0,1005.693167,7.28275,93.73333333,19.62916667,0.093666667,237.5423843833333 -2015-08-14 06:00:00,0.0,1006.0775,26.47583333,89.54166667,20.11,0.21666666699999998,237.54154803333333 -2015-08-14 07:00:00,0.0,1006.5505,138.1108333,83.67,21.15333333,0.2375,237.54043291666665 -2015-08-14 08:00:00,0.0,1006.5343330000001,192.85,72.495,24.16583333,0.3965,237.54001473333335 -2015-08-14 09:00:00,0.0,1006.614167,170.8583333,68.0375,25.585,1.64375,237.53388141666667 -2015-08-14 10:00:00,0.0,1006.181833,350.1,63.445,26.46666667,1.37725,237.53137233333328 -2015-08-14 11:00:00,0.0,1005.857833,235.025,66.25833333,26.20333333,0.516,237.52677235000002 -2015-08-14 12:00:00,0.0,1005.8083330000001,238.675,65.98916667,26.3525,0.71025,237.52217233333332 -2015-08-14 13:00:00,0.0,1005.5823330000001,177.5083333,64.75333333,26.25833333,0.5245,237.51938445 -2015-08-14 14:00:00,0.0,1005.254333,127.225,66.4175,26.255,1.8739166669999998,237.51589961666664 -2015-08-14 15:00:00,0.0,1004.656333,257.6833333,66.54416667,26.085,1.879,237.51534205 -2015-08-14 16:00:00,0.0,1004.488167,266.03333330000004,58.64833333,27.77333333,1.111666667,237.50934811666664 -2015-08-14 17:00:00,0.0,1003.817667,75.5,65.70166667,27.13333333,0.730916667,237.5083723333333 -2015-08-14 18:00:00,0.0,1003.85,46.4,66.63083333,26.42416667,0.839666667,237.5054451 -2015-08-14 19:00:00,0.0,1004.018167,11.19491667,77.44,24.51333333,0.45583333299999995,237.50558446666665 -2015-08-14 20:00:00,2.4050227680000003,1004.333333,0.016,80.7725,22.89333333,0.26916666699999997,237.50642085 -2015-08-14 21:00:00,4.8100455360000005,1004.030333,0.0,96.85,20.51666667,0.15975,237.50906931666665 -2015-08-14 22:00:00,0.0,1003.7769999999999,0.0,96.475,20.2575,1.1165,237.51255416666663 -2015-08-14 23:00:00,0.0,1004.210333,0.0,97.58333333,20.18166667,0.38241666700000004,237.51408751666668 -2015-08-15 00:00:00,0.0,1004.031333,0.0,99.35,19.63083333,0.07616666700000001,237.51673598333332 -2015-08-15 01:00:00,0.0,1003.906833,0.0,100.0,19.00416667,0.202083333,237.51812991666665 -2015-08-15 02:00:00,0.0,1003.733333,0.0,100.0,18.16916667,0.10325,237.52189355000004 -2015-08-15 03:00:00,0.0,1003.717667,0.0,100.0,17.04833333,0.034916667,237.52496018333332 -2015-08-15 04:00:00,0.0,1003.783833,0.0,100.0,16.39583333,0.1395,237.52746929999998 -2015-08-15 05:00:00,2.427553392,1004.362333,6.682416667000001,100.0,15.72,0.11975,237.5302571666667 -2015-08-15 06:00:00,0.0,1004.7745,74.065,100.0,16.57166667,0.055999999999999994,237.53151171666664 -2015-08-15 07:00:00,0.0,1004.843667,152.20833330000002,92.21666667,19.29833333,0.255333333,237.53206928333336 -2015-08-15 08:00:00,0.0,1005.259833,100.7116667,80.81583333,21.15916667,0.194833333,237.53360263333332 -2015-08-15 09:00:00,0.0,1005.434333,194.9666667,75.82666667,22.16916667,0.44191666700000004,237.53262686666667 -2015-08-15 10:00:00,0.0,1005.415167,248.275,69.08583333,22.76666667,1.016583333,237.53179050000003 -2015-08-15 11:00:00,0.0,1005.283333,391.0833333,61.5475,23.72833333,1.132083333,237.52705111666663 -2015-08-15 12:00:00,0.0,1005.25,306.3166667,60.645,24.75833333,2.0915,237.51994201666662 -2015-08-15 13:00:00,0.0,1005.2760000000001,219.675,62.32833333,23.5975,1.44475,237.51339053333334 -2015-08-15 14:00:00,0.0,1005.6005,241.2,62.51666667,23.885,0.606166667,237.50586326666667 -2015-08-15 15:00:00,0.0,1005.583333,222.7416667,58.7875,24.53416667,0.943416667,237.50042691666667 -2015-08-15 16:00:00,0.0,1005.657833,185.075,56.045,24.2325,0.962916667,237.49499056666664 -2015-08-15 17:00:00,0.0,1005.483833,103.12,55.88083333,24.1625,0.627,237.49359660000002 -2015-08-15 18:00:00,0.0,1005.734333,33.23083333,59.88833333,23.04333333,0.66575,237.49025118333338 -2015-08-15 19:00:00,0.0,1006.312833,6.86225,67.12833333,20.78916667,0.03325,237.48843906666664 -2015-08-15 20:00:00,0.0,1007.0265,0.090583333,75.665,19.01333333,0.014916667,237.48634816666672 -2015-08-15 21:00:00,0.0,1007.017667,0.0,84.21666667,17.14583333,0.0565,237.48829966666668 -2015-08-15 22:00:00,0.0,1007.418167,0.0,84.325,15.98583333,0.03075,237.48829966666668 -2015-08-15 23:00:00,0.0,1007.5239999999999,0.0,92.325,14.79333333,0.012916667,237.49094813333338 -2015-08-16 00:00:00,0.0,1007.5260000000001,0.0,90.56666667,14.92416667,0.032,237.49359661666665 -2015-08-16 01:00:00,0.0,1007.802,0.0,91.26666667,16.74083333,0.24891666699999998,237.49512995 -2015-08-16 02:00:00,0.0,1007.915167,0.0,94.90833333,16.68416667,0.225333333,237.49736026666667 -2015-08-16 03:00:00,0.0,1007.582833,0.0,95.91666667,16.3725,0.3065,237.50223901666666 -2015-08-16 04:00:00,0.0,1007.542167,0.0,96.58333333,16.4475,0.10183333300000001,237.50502691666668 -2015-08-16 05:00:00,2.4064164,1007.5010000000001,1.537333333,97.625,16.36583333,0.08508333300000001,237.50739661666668 -2015-08-16 06:00:00,14.84556487,1007.583333,13.85683333,99.55,16.0325,0.2385,237.51004509999999 -2015-08-16 07:00:00,19.61421941,1007.858333,38.91083333,100.0,15.9525,0.307916667,237.51255414999994 -2015-08-16 08:00:00,22.01340989,1007.843167,53.36666667,99.975,16.27666667,0.228333333,237.51548143333332 -2015-08-16 09:00:00,46.82953654,1008.083333,47.91833333,99.975,16.4125,0.349916667,237.5191056333333 -2015-08-16 10:00:00,43.20782587,1008.2,92.80833333,100.0,16.5625,0.66575,237.52356628333334 -2015-08-16 11:00:00,15.95467202,1008.208833,120.70833329999999,99.55,17.41416667,0.93475,237.52802684999997 -2015-08-16 12:00:00,22.7680549,1008.241667,102.67833329999999,98.29166667,17.63083333,0.66025,237.53206928333336 -2015-08-16 13:00:00,41.26618145,1007.966167,81.2225,99.05833333,17.35666667,0.8926666670000001,237.5384814 -2015-08-16 14:00:00,29.74156889,1008.0765,83.58666667,99.225,17.15083333,1.082666667,237.54336020000002 -2015-08-16 15:00:00,50.4648097,1007.938667,64.665,99.99166667,16.87916667,1.068666667,237.54935411666668 -2015-08-16 16:00:00,15.75282696,1007.9005,70.97916667,99.96666667,16.85333333,0.782333333,237.5554874333333 -2015-08-16 17:00:00,10.33213882,1007.891667,48.59916667,100.0,16.54083333,0.7596666670000001,237.5605055833333 -2015-08-16 18:00:00,0.0,1007.8235,19.92833333,100.0,16.23333333,1.159166667,237.56329346666666 -2015-08-16 19:00:00,0.0,1008.009833,7.691833333,99.66666667,15.98583333,0.7110833329999999,237.56663890000002 -2015-08-16 20:00:00,0.0,1008.092667,0.018333333,99.86666667,15.61166667,0.472083333,237.56998438333326 -2015-08-16 21:00:00,0.0,1008.358333,0.0,99.94166667,15.28666667,0.395083333,237.57068134999997 -2015-08-16 22:00:00,0.0,1008.092167,0.0,99.98333333,14.87916667,0.42066666700000005,237.57346918333334 -2015-08-16 23:00:00,0.0,1008.132833,0.0,100.0,14.62666667,0.299583333,237.5730510333333 -2015-08-17 00:00:00,0.0,1007.830833,0.0,100.0,14.47166667,0.3885,237.57514193333336 -2015-08-17 01:00:00,0.0,1007.406333,0.0,100.0,14.41,0.415916667,237.57737219999999 -2015-08-17 02:00:00,0.0,1007.242167,0.0,100.0,14.54666667,0.455166667,237.57723279999996 -2015-08-17 03:00:00,0.0,1007.267667,0.0,100.0,14.56333333,0.64875,237.57890551666665 -2015-08-17 04:00:00,0.0,1007.3985,0.0,100.0,14.3925,0.49708333299999996,237.58002069999998 -2015-08-17 05:00:00,0.0,1007.133833,1.569916667,100.0,14.0175,0.506083333,237.58183281666666 -2015-08-17 06:00:00,4.877029608,1007.333333,7.738916667000001,100.0,13.78583333,0.195083333,237.58294796666667 -2015-08-17 07:00:00,17.02458926,1007.451,23.39416667,100.0,13.66916667,0.192916667,237.58434188333334 -2015-08-17 08:00:00,17.26501241,1007.558833,48.07083333,100.0,13.73,0.284416667,237.58629343333334 -2015-08-17 09:00:00,9.799893767999999,1007.9275,84.53583333,100.0,14.205,0.40516666700000004,237.58740856666665 -2015-08-17 10:00:00,2.489930136,1008.242167,87.1075,99.775,14.28916667,0.60975,237.58880249999996 -2015-08-17 11:00:00,0.0,1008.3005,91.46833333,98.6,14.55583333,0.6975,237.58908128333334 -2015-08-17 12:00:00,2.4684846,1008.433833,68.0275,98.61666667,14.545,0.5678333329999999,237.58991765 -2015-08-17 13:00:00,14.63071315,1008.517667,82.1475,99.91666667,14.56333333,0.212583333,237.59326311666666 -2015-08-17 14:00:00,75.65954143,1008.440667,67.21333333,100.0,14.49583333,0.288833333,237.59563279999998 -2015-08-17 15:00:00,77.85088111,1008.3760000000001,61.20416667,100.0,14.51333333,0.241833333,237.59911763333332 -2015-08-17 16:00:00,41.77711651,1008.5,63.2225,100.0,14.57333333,0.292666667,237.6037176333333 -2015-08-17 17:00:00,24.34219315,1008.389167,36.81833333,100.0,14.59916667,0.148333333,237.60789945000002 -2015-08-17 18:00:00,12.14488298,1008.2,34.71916667,100.0,14.46583333,0.159333333,237.61236005 -2015-08-17 19:00:00,4.818797856000001,1008.293667,4.403916667,100.0,14.1375,0.07983333299999999,237.61542669999994 -2015-08-17 20:00:00,4.8177817439999995,1008.582833,0.023,100.0,13.8925,0.048,237.61793580000003 -2015-08-17 21:00:00,0.0,1008.6265,0.0,100.0,13.7475,0.034166667000000005,237.61877213333335 -2015-08-17 22:00:00,0.0,1008.742667,0.0,100.0,13.6775,0.020083333000000002,237.61974790000002 -2015-08-17 23:00:00,2.4050227680000003,1008.689167,0.0,100.0,13.5975,0.018333333,237.62100244999996 -2015-08-18 00:00:00,0.0,1008.5583330000001,0.0,100.0,13.56333333,0.034083333,237.62281456666665 -2015-08-18 01:00:00,0.0,1008.583333,0.0,99.63333333,13.3975,0.178833333,237.62365093333332 -2015-08-18 02:00:00,0.0,1008.668167,0.0,99.29166667,13.23,0.021416667,237.6242085 -2015-08-18 03:00:00,0.0,1008.775,0.0,99.39166667,13.20666667,0.06433333299999999,237.62546303333338 -2015-08-18 04:00:00,0.0,1008.716667,0.0,99.5,13.21583333,0.091333333,237.62602060000003 -2015-08-18 05:00:00,0.0,1008.8275,1.35375,99.125,13.16833333,0.050583333,237.62769333333335 -2015-08-18 06:00:00,0.0,1009.168167,14.37916667,98.125,13.11666667,0.37541666700000004,237.6283903166667 -2015-08-18 07:00:00,0.0,1009.694167,35.3975,96.75833333,13.41166667,0.50175,237.62755395000002 -2015-08-18 08:00:00,0.0,1010.052,51.98083333,97.225,13.70666667,0.303083333,237.62797211666668 -2015-08-18 09:00:00,0.0,1010.6015,63.16333333,99.75833333,13.69,0.238583333,237.62755395 -2015-08-18 10:00:00,0.0,1010.909833,277.7,93.04166667,14.82666667,0.257166667,237.6283903166667 -2015-08-18 11:00:00,0.0,1011.1005,512.1333333,82.1875,16.9175,0.972666667,237.62727516666666 -2015-08-18 12:00:00,0.0,1011.335333,513.475,76.44833333,17.92416667,0.953333333,237.62462668333333 -2015-08-18 13:00:00,0.0,1011.425,312.59166669999996,75.24583333,18.03916667,0.734583333,237.62406911666667 -2015-08-18 14:00:00,0.0,1011.684833,223.18333330000002,71.71333333,18.66083333,0.466583333,237.62086306666671 -2015-08-18 15:00:00,0.0,1011.817667,148.425,73.21333333,18.4825,0.39591666700000006,237.62030546666668 -2015-08-18 16:00:00,0.0,1012.203,103.8258333,74.77166667,17.81583333,1.4245,237.61863273333336 -2015-08-18 17:00:00,0.0,1012.4989999999999,14.02583333,82.06166667,16.79166667,1.883833333,237.61779636666668 -2015-08-18 18:00:00,0.0,1012.451,17.1725,88.28333333,15.76333333,0.17775,237.6189115 -2015-08-18 19:00:00,0.0,1012.753,7.479083332999999,93.30833333,15.15166667,0.039416667,237.61765698333338 -2015-08-18 20:00:00,0.0,1013.2843330000001,0.066666667,95.94166667,14.64083333,0.08891666699999999,237.61709941666666 -2015-08-18 21:00:00,0.0,1013.560333,0.0,97.60833333,14.34166667,0.044666667,237.61765698333338 -2015-08-18 22:00:00,0.0,1013.701,0.0,99.53333333,14.12083333,0.134916667,237.61863273333336 -2015-08-18 23:00:00,0.0,1014.109833,0.0,98.94166667,14.0075,0.149083333,237.61946910000003 -2015-08-19 00:00:00,0.0,1014.5343330000001,0.0,99.625,13.58,0.1045,237.62002668333335 -2015-08-19 01:00:00,0.0,1014.458333,0.0,100.0,13.1675,0.12975,237.62142063333332 -2015-08-19 02:00:00,0.0,1014.55,0.0,100.0,11.59833333,0.06308333299999999,237.62156001666662 -2015-08-19 03:00:00,0.0,1014.608333,0.0,100.0,10.42583333,0.09983333300000001,237.62253578333332 -2015-08-19 04:00:00,0.0,1014.710333,0.0,100.0,10.2675,0.08608333300000001,237.6229539666667 -2015-08-19 05:00:00,0.0,1015.095667,6.8435,100.0,9.618333332999999,0.007166667,237.62323273333334 -2015-08-19 06:00:00,0.0,1015.791667,39.33166667,100.0,10.62916667,0.36691666700000003,237.62072365000003 -2015-08-19 07:00:00,0.0,1016.059833,106.04333329999999,100.0,12.2325,0.338416667,237.6212812166667 -2015-08-19 08:00:00,0.0,1016.209833,145.4666667,98.35833333,14.41166667,0.8653333329999999,237.62086305000003 -2015-08-19 09:00:00,0.0,1016.467667,288.3333333,83.48,16.51333333,1.324166667,237.61905093333337 -2015-08-19 10:00:00,0.0,1016.375,361.35,74.12333333,18.27833333,1.00575,237.61974789999996 -2015-08-19 11:00:00,2.4958168080000003,1016.432833,575.4083333,64.33666667,19.83166667,0.743166667,237.61709943333332 -2015-08-19 12:00:00,0.0,1016.566167,494.13333330000006,61.65916667,20.19083333,1.4909166669999998,237.61500850000002 -2015-08-19 13:00:00,0.0,1016.568667,562.8666667,60.08583333,19.98,1.47925,237.61138428333334 -2015-08-19 14:00:00,0.0,1016.515167,455.9,59.4275,20.54416667,1.777166667,237.60678428333335 -2015-08-19 15:00:00,0.0,1016.3323330000001,219.93333330000002,64.91666667,20.45833333,1.198166667,237.6042752333333 -2015-08-19 16:00:00,0.0,1016.3765,145.6166667,66.32416667,20.62083333,0.518166667,237.6026025 -2015-08-19 17:00:00,0.0,1016.618167,93.54583333,64.39,20.35666667,0.501833333,237.59911765 -2015-08-19 18:00:00,0.0,1016.961333,63.76083333,74.19333333,19.69666667,0.7335,237.59716615 -2015-08-19 19:00:00,0.0,1017.325,15.56,84.40833333,18.225,0.09908333300000001,237.59702673333334 -2015-08-19 20:00:00,0.0,1017.670667,0.025833332999999997,92.86666667,15.95416667,0.0875,237.59716611666667 -2015-08-19 21:00:00,0.0,1017.940167,0.0,95.825,15.23333333,0.001583333,237.59716611666667 -2015-08-19 22:00:00,0.0,1018.135833,0.0,97.925,14.92666667,0.032416667,237.59842064999998 -2015-08-19 23:00:00,0.0,1018.282833,0.0,98.66666667,14.33416667,0.04225,237.59939643333334 -2015-08-20 00:00:00,0.0,1018.217667,0.0,99.90833333,14.11416667,0.00525,237.60134791666667 -2015-08-20 01:00:00,0.0,1018.416667,0.0,99.88333333,14.02416667,0.014083333,237.60288123333328 -2015-08-20 02:00:00,0.0,1018.5,0.0,100.0,13.8825,0.000666667,237.60302066666665 -2015-08-20 03:00:00,0.0,1018.441167,0.0,100.0,13.6975,0.009916666999999999,237.60552973333336 -2015-08-20 04:00:00,0.0,1018.283833,0.0,100.0,13.54083333,0.0,237.60803881666666 -2015-08-20 05:00:00,0.0,1018.7275,4.508666667,100.0,13.12583333,0.006666666999999999,237.60748125 -2015-08-20 06:00:00,0.0,1019.0765,29.2725,100.0,13.46833333,0.013166667,237.60803880000003 -2015-08-20 07:00:00,0.0,1019.6275,47.8875,100.0,14.50333333,0.069083333,237.6078994166667 -2015-08-20 08:00:00,0.0,1019.9005,81.79666667,96.025,15.42,0.735666667,237.60803883333332 -2015-08-20 09:00:00,0.0,1020.009333,139.925,91.38333333,16.51583333,0.15383333300000002,237.60873579999998 -2015-08-20 10:00:00,0.0,1020.2005,241.0083333,84.55833333,18.1,0.469,237.60845699999996 -2015-08-20 11:00:00,0.0,1020.266667,391.8333333,74.8825,19.92666667,0.518,237.60776005 -2015-08-20 12:00:00,0.0,1020.1,569.5,67.6575,21.22333333,0.783666667,237.60511156666664 -2015-08-20 13:00:00,0.0,1019.872,356.65,64.88916667,22.52333333,0.903833333,237.60274188333332 -2015-08-20 14:00:00,0.0,1019.666667,306.0,61.92166667,22.23166667,0.546333333,237.59856005000003 -2015-08-20 15:00:00,0.0,1019.516167,429.4833333000001,53.0,22.81833333,0.5205833329999999,237.59284489999996 -2015-08-20 16:00:00,0.0,1019.281833,288.475,45.305,23.54333333,0.304583333,237.59131156666663 -2015-08-20 17:00:00,0.0,1019.2255,83.8025,58.90083333,22.54916667,1.342416667,237.5886631 -2015-08-20 18:00:00,0.0,1019.484333,38.2475,70.77,20.92083333,1.37925,237.586851 -2015-08-20 19:00:00,0.0,1019.709833,12.3905,82.62166667,19.44666667,0.6585,237.58629341666665 -2015-08-20 20:00:00,0.0,1020.178,0.01875,94.93333333,15.67166667,0.049083333,237.5874086 -2015-08-20 21:00:00,0.0,1020.509833,0.0,99.35,13.95166667,0.000833333,237.58685101666666 -2015-08-20 22:00:00,0.0,1020.835833,0.0,100.0,12.965,0.008916667,237.58726918333332 -2015-08-20 23:00:00,0.0,1020.982333,0.0,100.0,12.20333333,0.000833333,237.58922070000003 -2015-08-21 00:00:00,0.0,1021.066167,0.0,100.0,11.62833333,0.01975,237.59131161666664 -2015-08-21 01:00:00,0.0,1020.9333330000001,0.0,100.0,11.1575,0.0,237.59242673333335 -2015-08-21 02:00:00,0.0,1020.756833,0.0,100.0,10.65666667,0.0,237.5940995 -2015-08-21 03:00:00,0.0,1020.692167,0.0,100.0,10.2225,0.0,237.59632974999997 -2015-08-21 04:00:00,0.0,1020.8,0.0,100.0,9.860833332999999,0.0,237.5967479166667 -2015-08-21 05:00:00,0.0,1020.934833,3.6814166669999997,100.0,9.465,0.0,237.5984206833333 -2015-08-21 06:00:00,0.0,1021.4525,31.93083333,100.0,11.05833333,0.018833333,237.59814189999997 -2015-08-21 07:00:00,0.0,1021.5755,92.36416667,100.0,12.595,0.169333333,237.59814188333334 -2015-08-21 08:00:00,0.0,1021.7760000000001,146.7016667,97.9,14.02166667,0.26108333300000003,237.5978631 -2015-08-21 09:00:00,0.0,1021.85,273.3666667,77.0475,17.925,0.651083333,237.5971661333333 -2015-08-21 10:00:00,0.0,1021.739167,505.1083333000001,64.97416667,21.28083333,0.914333333,237.59577221666666 -2015-08-21 11:00:00,0.0,1021.131333,573.225,55.675,22.3025,2.0034166669999998,237.59326309999997 -2015-08-21 12:00:00,0.0,1020.831833,599.05,52.91833333,23.26416667,1.8605833330000001,237.58796615000003 -2015-08-21 13:00:00,0.0,1020.3475,597.325,49.03833333,23.87583333,1.3680833330000002,237.58378431666668 -2015-08-21 14:00:00,0.0,1019.8975,550.2166667,46.17833333,24.50666667,1.4591666669999999,237.57876613333335 -2015-08-21 15:00:00,0.0,1019.423,467.8166666999999,42.02666667,25.14583333,1.402833333,237.5755601 -2015-08-21 16:00:00,0.0,1018.955833,340.28333330000004,42.1575,25.03583333,1.207833333,237.57277223333332 -2015-08-21 17:00:00,0.0,1018.5485,44.8675,45.6925,24.50583333,1.133,237.5716570666667 -2015-08-21 18:00:00,0.0,1018.4505,28.23583333,54.985,23.03333333,0.5601666670000001,237.5688692333333 -2015-08-21 19:00:00,0.0,1018.6515,7.67475,79.15916667,18.2025,0.0605,237.56886921666668 -2015-08-21 20:00:00,0.0,1018.883333,0.016916667,85.49166667,15.0925,0.030666667,237.56859045 -2015-08-21 21:00:00,0.0,1018.858333,0.0,93.4,13.37666667,0.033083333,237.56970559999993 -2015-08-21 22:00:00,0.0,1018.756833,0.0,96.80833333,12.34916667,0.0,237.57082071666665 -2015-08-21 23:00:00,0.0,1018.6245,0.0,99.19166667,11.68583333,0.0,237.57319041666665 -2015-08-22 00:00:00,0.0,1018.2396669999999,0.0,99.95,10.945,0.0,237.57528133333335 -2015-08-22 01:00:00,0.0,1017.941167,0.0,100.0,10.32666667,0.00041666699999999996,237.57792978333336 -2015-08-22 02:00:00,0.0,1017.8245,0.0,100.0,9.855833333,0.046416667,237.5789055333333 -2015-08-22 03:00:00,0.0,1017.640667,0.0,100.0,9.390833333,0.003916667,237.582251 -2015-08-22 04:00:00,0.0,1017.455833,0.0,100.0,8.886666667,0.0,237.58308736666666 -2015-08-22 05:00:00,0.0,1017.309333,4.637583333,100.0,8.509166667,0.0,237.58448130000002 -2015-08-22 06:00:00,0.0,1017.383833,30.09,100.0,9.540833333,0.0,237.58517826666665 -2015-08-22 07:00:00,0.0,1017.484833,158.5216667,97.76666667,12.94583333,0.022583332999999997,237.58434188333334 -2015-08-22 08:00:00,0.0,1017.582833,162.53916669999998,78.40916667,16.30416667,1.207333333,237.58336613333336 -2015-08-22 09:00:00,0.0,1017.380833,270.9833333,67.80583333,18.97916667,1.1540000000000001,237.58322671666667 -2015-08-22 10:00:00,0.0,1016.939667,495.425,58.295,21.7425,0.933916667,237.58225100000004 -2015-08-22 11:00:00,0.0,1016.212667,565.9166667000001,49.70333333,24.00666667,1.204083333,237.57834796666666 -2015-08-22 12:00:00,0.0,1015.696,572.0583333,41.57166667,25.14583333,1.69775,237.57277221666666 -2015-08-22 13:00:00,0.0,1015.0995,495.75833330000006,39.59666667,25.36833333,1.2545,237.56622073333332 -2015-08-22 14:00:00,0.0,1014.629833,499.6916666999999,36.88083333,25.815,2.4699166669999997,237.55897224999998 -2015-08-22 15:00:00,0.0,1014.0980000000001,472.4,36.1925,26.3325,1.5686666669999998,237.55618436666666 -2015-08-22 16:00:00,0.0,1013.47,343.3916667,35.64583333,25.9425,1.8125,237.55228136666665 -2015-08-22 17:00:00,0.0,1012.663667,46.82583333,39.2425,25.0725,1.1966666670000001,237.55088743333332 -2015-08-22 18:00:00,0.0,1012.1833330000001,28.10583333,52.25333333,23.4125,0.92125,237.54879651666667 -2015-08-22 19:00:00,0.0,1012.2156669999999,5.972916667000001,76.3475,18.995,0.108666667,237.54754195 -2015-08-22 20:00:00,0.0,1012.166667,0.007083333000000001,84.89166667,15.015,0.095916667,237.54684503333337 -2015-08-22 21:00:00,0.0,1011.9485,0.0,91.78333333,13.34916667,0.003833333,237.54879651666667 -2015-08-22 22:00:00,0.0,1011.6146669999999,0.0,96.39166667,13.00916667,0.26966666699999997,237.55005104999998 -2015-08-22 23:00:00,0.0,1011.063167,0.0,98.7,12.92666667,0.241833333,237.55283895 -2015-08-23 00:00:00,0.0,1010.4465,0.0,99.91666667,11.5575,0.020583333,237.55799649999997 -2015-08-23 01:00:00,0.0,1009.990167,0.0,100.0,10.45916667,0.000166667,237.56106318333332 -2015-08-23 02:00:00,0.0,1009.6239999999999,0.0,100.0,9.870833333,0.009166667,237.56357228333331 -2015-08-23 03:00:00,0.0,1009.165167,0.0,100.0,9.466666667,0.08866666699999999,237.5649662 -2015-08-23 04:00:00,0.0,1008.863667,0.0,100.0,9.091666667,0.230083333,237.56705708333337 -2015-08-23 05:00:00,0.0,1008.759833,4.249666667,100.0,9.7375,0.623083333,237.5685904333333 -2015-08-23 06:00:00,0.0,1008.680833,29.23,100.0,11.3425,0.471083333,237.56928738333332 -2015-08-23 07:00:00,0.0,1008.3989999999999,147.2,90.88916667,14.05916667,0.75575,237.56984499999996 -2015-08-23 08:00:00,0.0,1007.8715,160.2966667,73.08166667,17.2225,0.8079999999999999,237.5697055666666 -2015-08-23 09:00:00,0.0,1007.230333,274.1,61.78333333,20.17666667,1.175833333,237.56970558333333 -2015-08-23 10:00:00,0.0,1006.336667,502.58333330000005,50.63166667,22.99083333,2.1345,237.56663890000002 -2015-08-23 11:00:00,0.0,1005.698,565.2416667,43.6025,24.06583333,3.2095833330000003,237.56092376666663 -2015-08-23 12:00:00,0.0,1005.054833,572.45,41.27833333,24.7625,2.779,237.55423286666667 -2015-08-23 13:00:00,0.0,1004.488667,558.525,39.08666667,24.9375,2.18375,237.54572986666668 -2015-08-23 14:00:00,0.0,1003.603833,495.09166669999996,37.29833333,25.715,2.577416667,237.5404329 -2015-08-23 15:00:00,0.0,1002.9215,313.40833330000004,38.20333333,25.41666667,2.391916667,237.53652986666668 -2015-08-23 16:00:00,0.0,1002.2719999999999,129.5,40.90416667,24.96166667,1.61975,237.53569349999998 -2015-08-23 17:00:00,0.0,1001.655333,57.13833333,42.37333333,24.4825,1.44825,237.53416014999996 -2015-08-23 18:00:00,0.0,1001.206833,20.51275,62.68666667,23.46916667,0.555666667,237.5334632 -2015-08-23 19:00:00,0.0,1001.362833,1.341,66.97416667,21.69916667,0.3085,237.53290565 -2015-08-23 20:00:00,0.0,1002.0583330000001,0.0,71.20333333,20.48166667,0.61,237.53234806666669 -2015-08-23 21:00:00,2.4438146880000002,1002.008333,0.0,93.48333333,18.79916667,0.46375,237.53304503333334 -2015-08-23 22:00:00,0.0,1001.747,0.0,99.98333333,17.40833333,0.6375833329999999,237.53541470000002 -2015-08-23 23:00:00,0.0,1001.593167,0.0,99.96666667,17.3125,1.472833333,237.53876016666666 -2015-08-24 00:00:00,0.0,1001.592667,0.0,98.925,17.44416667,0.80425,237.54210559999999 -2015-08-24 01:00:00,0.0,1001.446,0.0,96.55833333,17.29333333,0.976833333,237.54489348333334 -2015-08-24 02:00:00,0.0,1001.141667,0.0,96.50833333,16.9925,1.020333333,237.54754196666667 -2015-08-24 03:00:00,0.0,1001.258833,0.0,99.41666667,15.735,0.10083333300000001,237.54963286666666 -2015-08-24 04:00:00,0.0,1001.283333,0.0,100.0,15.22666667,0.390666667,237.55214196666665 -2015-08-24 05:00:00,0.0,1001.160333,3.20325,100.0,14.53916667,0.200916667,237.55520861666665 -2015-08-24 06:00:00,0.0,1001.541667,34.48,100.0,14.56416667,0.047916667,237.55534799999998 -2015-08-24 07:00:00,0.0,1001.592167,133.5075,99.65833333,17.04416667,1.985333333,237.55479046666665 -2015-08-24 08:00:00,17.11407802,1001.641667,146.3833333,92.65833333,18.25416667,2.454583333,237.55660254999998 -2015-08-24 09:00:00,0.0,1001.716667,226.2333333,85.05,19.80083333,2.006916667,237.55590558333333 -2015-08-24 10:00:00,0.0,1001.5245,194.675,82.41583333,20.24833333,3.00325,237.55242074999998 -2015-08-24 11:00:00,0.0,1001.104833,312.9416667,79.535,21.13416667,3.59525,237.55492983333332 -2015-08-24 12:00:00,0.0,1000.773,146.39583330000002,79.39666667,21.43416667,3.257583333,237.5533965333333 -2015-08-24 13:00:00,0.0,1000.743667,191.1333333,80.5575,21.7275,3.324166667,237.55088743333332 -2015-08-24 14:00:00,0.0,1000.773,128.6641667,83.47166667,21.325,2.689333333,237.55019044999997 -2015-08-24 15:00:00,0.0,1000.425,90.61583333,83.9,20.97,3.802166667,237.54977228333334 -2015-08-24 16:00:00,9.472242768,1001.447667,30.56333333,83.59166667,20.14833333,2.161,237.54991168333333 -2015-08-24 17:00:00,11.34743986,1001.411167,19.62083333,92.8,18.21083333,1.336416667,237.55005106666667 -2015-08-24 18:00:00,0.0,1000.9025,30.31083333,92.875,17.48416667,2.022833333,237.55200258333332 -2015-08-24 19:00:00,0.0,1001.336333,10.22641667,90.425,17.75666667,3.546333333,237.55367531666664 -2015-08-24 20:00:00,0.0,1002.113833,0.0,88.59166667,17.13333333,2.9115833330000003,237.55381471666666 -2015-08-24 21:00:00,0.0,1002.8166669999999,0.0,87.30833333,16.8525,3.229166667,237.55534801666667 -2015-08-24 22:00:00,0.0,1002.985833,0.0,83.55,16.17333333,3.431333333,237.55660256666667 -2015-08-24 23:00:00,95.55663163,1003.561333,0.0,93.83333333,15.45833333,1.452666667,237.55980861666663 -2015-08-25 00:00:00,0.0,1003.933833,0.0,91.96666667,14.815,1.3628333330000002,237.5673358833333 -2015-08-25 01:00:00,0.0,1004.102,0.0,81.05166667,14.81916667,1.737333333,237.57291161666663 -2015-08-25 02:00:00,0.0,1004.6005,0.0,76.95916667,14.83583333,1.3325,237.57332978333338 -2015-08-25 03:00:00,0.0,1004.787833,0.0,73.455,15.22833333,1.873666667,237.57374798333333 -2015-08-25 04:00:00,0.0,1005.511833,0.0,79.13416667,14.695,1.257583333,237.5748631166667 -2015-08-25 05:00:00,0.0,1006.3795,0.721333333,84.03333333,14.56,1.362916667,237.57528130000003 -2015-08-25 06:00:00,0.0,1007.4810000000001,12.03558333,87.11666667,14.545,1.4580000000000002,237.57514190000003 -2015-08-25 07:00:00,0.0,1008.713833,51.28533333,87.175,14.51,1.028,237.57486315000003 -2015-08-25 08:00:00,0.0,1010.0315,182.6033333,82.85,16.14833333,0.978583333,237.57291160000003 -2015-08-25 09:00:00,0.0,1010.871167,319.15833330000004,79.79666667,17.82666667,1.164083333,237.57012378333332 -2015-08-25 10:00:00,0.0,1011.543167,244.275,81.48916667,17.75583333,1.5168333330000001,237.56998435 -2015-08-25 11:00:00,0.0,1012.219667,235.3666667,82.6625,17.05583333,1.255,237.5683116333333 -2015-08-25 12:00:00,0.0,1012.702,577.875,75.155,17.49583333,1.4829166669999998,237.56329344999997 -2015-08-25 13:00:00,0.0,1012.865667,322.0,71.685,18.22833333,0.778833333,237.5596692 -2015-08-25 14:00:00,0.0,1012.933833,421.08333330000005,65.45333333,19.19416667,0.96725,237.55632378333334 -2015-08-25 15:00:00,0.0,1012.867667,344.15833330000004,59.83583333,19.99666667,0.5245833329999999,237.55116621666664 -2015-08-25 16:00:00,0.0,1012.464167,266.15,57.11,19.98333333,1.154833333,237.54963286666666 -2015-08-25 17:00:00,0.0,1012.198,49.775,54.3675,19.85166667,1.8330000000000002,237.54670563333335 -2015-08-25 18:00:00,0.0,1012.184833,22.98666667,56.06416667,18.81916667,1.323916667,237.5450329 -2015-08-25 19:00:00,0.0,1012.358833,3.514333333,63.87166667,16.67083333,0.8320833329999999,237.54210559999999 -2015-08-25 20:00:00,0.0,1012.710833,0.0,80.98833333,15.99416667,0.86525,237.54377835000003 -2015-08-25 21:00:00,0.0,1012.865167,0.0,86.8975,15.76083333,0.998,237.54531168333335 -2015-08-25 22:00:00,0.0,1012.842667,0.0,76.86416667,15.62,1.1278333329999999,237.54656621666666 -2015-08-25 23:00:00,0.0,1013.0515,0.0,63.73666667,16.3625,0.5870000000000001,237.546845 -2015-08-26 00:00:00,0.0,1012.9989999999999,0.0,63.77666667,17.82083333,1.057083333,237.54670561666669 -2015-08-26 01:00:00,0.0,1012.681333,0.0,67.83583333,15.88583333,0.414916667,237.5492146833333 -2015-08-26 02:00:00,0.0,1012.4755,0.0,69.48416667,14.38666667,0.18925,237.55186319999999 -2015-08-26 03:00:00,0.0,1012.532333,0.0,66.87416667,15.225,1.001583333,237.55116621666664 -2015-08-26 04:00:00,0.0,1012.367667,0.0,72.45166667,13.71666667,0.6303333329999999,237.55283891666667 -2015-08-26 05:00:00,0.0,1012.340167,3.320333333,84.2775,12.19583333,0.272666667,237.55437224999994 -2015-08-26 06:00:00,0.0,1012.2505,24.78583333,91.675,14.44833333,0.915,237.55576618333336 -2015-08-26 07:00:00,0.0,1012.711833,129.3291667,80.31583333,16.99833333,2.4529166669999998,237.5552086 -2015-08-26 08:00:00,0.0,1013.336333,159.3425,68.1725,19.15666667,2.8245,237.55395406666665 -2015-08-26 09:00:00,0.0,1013.4985,273.9166667,65.93916667,20.55666667,1.564583333,237.55228139999997 -2015-08-26 10:00:00,0.0,1013.105333,475.84166669999996,62.63,22.13166667,2.64925,237.54865711666665 -2015-08-26 11:00:00,0.0,1012.6386669999999,530.2083333,60.1175,23.425,2.5235,237.54419653333335 -2015-08-26 12:00:00,0.0,1011.914167,557.1583333,55.5725,24.8775,3.422916667,237.53625108333333 -2015-08-26 13:00:00,0.0,1011.355833,566.925,51.67416667,25.53166667,3.427083333,237.53025714999998 -2015-08-26 14:00:00,0.0,1010.964667,527.35,49.47166667,26.11916667,2.653083333,237.52523899999997 -2015-08-26 15:00:00,0.0,1010.5725,439.78333330000004,48.07416667,26.5325,3.205166667,237.51896624999998 -2015-08-26 16:00:00,0.0,1009.879333,316.0416667,47.53583333,26.66916667,3.2873333330000003,237.5174329333333 -2015-08-26 17:00:00,0.0,1009.128833,60.265,49.59166667,25.68083333,2.64325,237.51799053333332 -2015-08-26 18:00:00,0.0,1008.5239999999999,49.26083333,51.20833333,24.78416667,1.36075,237.5161783833333 -2015-08-26 19:00:00,0.0,1008.390667,6.5745,75.5875,20.2225,0.0845,237.51534203333333 -2015-08-26 20:00:00,0.0,1008.265167,0.0,88.15,16.90916667,0.08025,237.51715414999998 -2015-08-26 21:00:00,0.0,1007.882833,0.0,86.9575,15.765,0.037583333,237.52022081666667 -2015-08-26 22:00:00,0.0,1007.5235,0.0,63.025,15.12416667,0.01275,237.52077838333332 -2015-08-26 23:00:00,0.0,1007.231833,0.0,83.42,14.51833333,0.0335,237.52356625000002 -2015-08-27 00:00:00,0.0,1006.838167,0.0,92.6,14.0675,0.016833333,237.52635415 -2015-08-27 01:00:00,0.0,1006.666667,0.0,95.00833333,13.67416667,0.121083333,237.52942080000003 -2015-08-27 02:00:00,0.0,1006.482833,0.0,97.90833333,13.32083333,0.276333333,237.53304505000003 -2015-08-27 03:00:00,0.0,1006.3989999999999,0.0,96.91416667,13.55166667,0.13075,237.53499655 -2015-08-27 04:00:00,0.0,1006.621667,0.0,62.62,14.425,0.172083333,237.5362511 -2015-08-27 05:00:00,0.0,1007.1005,1.7921666669999998,63.0875,18.56,0.23625,237.53583290000003 -2015-08-27 06:00:00,0.0,1007.342667,30.56,65.16666667,20.58583333,0.39541666700000005,237.53527535 -2015-08-27 07:00:00,0.0,1007.710333,65.41333333,66.76583333,21.10833333,0.44358333299999997,237.53485716666668 -2015-08-27 08:00:00,0.0,1008.1535,69.665,67.61,21.03416667,0.434833333,237.53262686666667 -2015-08-27 09:00:00,0.0,1008.852,65.63083333,70.15166667,20.91583333,0.34066666700000003,237.52997836666668 -2015-08-27 10:00:00,0.0,1008.780333,56.7175,72.3975,20.40666667,0.21600000000000003,237.52788748333333 -2015-08-27 11:00:00,0.0,1008.416667,156.9175,73.4375,20.84583333,0.236333333,237.5250996 -2015-08-27 12:00:00,0.0,1007.802833,282.59166669999996,70.4275,22.27916667,0.514416667,237.52231171666665 -2015-08-27 13:00:00,0.0,1007.029333,355.8333333,66.10416667,24.035,0.7445,237.5185480833333 -2015-08-27 14:00:00,0.0,1006.314667,145.025,69.1175,23.03666667,1.4405,237.51659658333332 -2015-08-27 15:00:00,0.0,1005.8235,209.1416667,71.16,22.84416667,1.6511666669999998,237.51450566666665 -2015-08-27 16:00:00,0.0,1005.439667,103.8375,73.03,22.96833333,0.8865,237.51325111666665 -2015-08-27 17:00:00,0.0,1005.318667,39.8275,77.68333333,22.08,0.621833333,237.51325111666665 -2015-08-27 18:00:00,2.620075632,1006.312833,8.1015,86.69666667,20.70083333,1.214666667,237.51283293333333 -2015-08-27 19:00:00,14.47957421,1006.791667,0.776666667,97.98333333,18.71583333,0.09699999999999999,237.5142269 -2015-08-27 20:00:00,16.83936336,1006.590167,0.0,100.0,18.28583333,0.009166667,237.51617839999997 -2015-08-27 21:00:00,29.00830078,1006.4765,0.0,99.86666667,18.09416667,0.225833333,237.52091778333332 -2015-08-27 22:00:00,14.62399814,1006.719167,0.0,99.79166667,17.89333333,0.268,237.5253783666667 -2015-08-27 23:00:00,55.41314448,1007.544667,0.0,99.95833333,16.30166667,1.265333333,237.53095413333335 -2015-08-28 00:00:00,72.38977939,1008.144667,0.0,100.0,15.505,0.167333333,237.53903895 -2015-08-28 01:00:00,24.4349436,1008.594667,0.0,100.0,14.88583333,0.373,237.55019046666666 -2015-08-28 02:00:00,25.24969603,1009.3025,0.0,100.0,14.32416667,0.545166667,237.55688138333332 -2015-08-28 03:00:00,4.881981912,1009.684833,0.0,100.0,14.0275,0.258083333,237.56203891666664 -2015-08-28 04:00:00,0.0,1010.204,0.0,100.0,13.8825,0.096083333,237.56594195 -2015-08-28 05:00:00,0.0,1010.768167,0.658416667,100.0,14.025,0.35725,237.56928739999998 -2015-08-28 06:00:00,0.0,1011.270667,12.52975,100.0,14.025,0.40625,237.57179648333332 -2015-08-28 07:00:00,2.629352304,1011.8853330000001,38.1075,99.94166667,14.23416667,0.57275,237.57360858333334 -2015-08-28 08:00:00,0.0,1012.512333,98.75583333,97.55,14.74416667,0.35975,237.57472374999998 -2015-08-28 09:00:00,0.0,1012.967667,185.775,90.775,15.63166667,0.481833333,237.57528131666672 -2015-08-28 10:00:00,2.4815138880000003,1013.420167,275.4583333,82.06666667,17.22416667,0.60325,237.57723281666668 -2015-08-28 11:00:00,0.0,1013.985333,247.6333333,82.895,18.52333333,0.466916667,237.57667525 -2015-08-28 12:00:00,0.0,1014.453,330.95,82.16166667,19.18083333,0.519083333,237.57723280000002 -2015-08-28 13:00:00,0.0,1014.741667,374.40833330000004,78.94333333,19.83666667,0.833666667,237.57500253333333 -2015-08-28 14:00:00,0.0,1014.9176669999999,357.4916667,78.3425,20.2575,1.039833333,237.57388736666667 -2015-08-28 15:00:00,0.0,1014.9505,286.025,77.10166667,20.38166667,1.159166667,237.57249343333334 -2015-08-28 16:00:00,0.0,1015.267167,140.6333333,80.31583333,20.37583333,0.436,237.57263283333336 -2015-08-28 17:00:00,0.0,1015.326,91.63833333,78.89166667,19.85083333,0.5920000000000001,237.57388736666667 -2015-08-28 18:00:00,0.0,1015.6025,23.855,83.93083333,19.23333333,0.255166667,237.57360858333334 -2015-08-28 19:00:00,0.0,1016.161333,3.309916667,95.075,17.00166667,0.0445,237.5737479833333 -2015-08-28 20:00:00,0.0,1016.770667,0.0,99.70833333,14.83833333,0.097416667,237.5748631166667 -2015-08-28 21:00:00,0.0,1017.443667,0.0,100.0,13.58583333,0.054000000000000006,237.57653584999994 -2015-08-28 22:00:00,0.0,1017.7765,0.0,100.0,12.64166667,0.009833333,237.57932373333335 -2015-08-28 23:00:00,0.0,1018.0343330000001,0.0,100.0,11.75583333,0.023833332999999998,237.58029950000002 -2015-08-29 00:00:00,0.0,1018.234833,0.0,100.0,10.93,0.000166667,237.5821116 -2015-08-29 01:00:00,0.0,1018.5495,0.0,100.0,10.80833333,0.12658333300000002,237.58336613333336 -2015-08-29 02:00:00,0.0,1018.5505,0.0,100.0,11.64916667,0.092333333,237.58531765 -2015-08-29 03:00:00,0.0,1018.634333,0.0,100.0,11.80833333,0.121833333,237.58545704999997 -2015-08-29 04:00:00,0.0,1018.985333,0.0,100.0,11.85416667,0.03125,237.58587523333335 -2015-08-29 05:00:00,0.0,1019.0755,1.495,100.0,11.84166667,0.454583333,237.586851 -2015-08-29 06:00:00,0.0,1019.3005,20.45583333,100.0,11.755,0.282583333,237.5874086 -2015-08-29 07:00:00,0.0,1019.4333330000001,74.02916667,100.0,12.31333333,0.33866666700000003,237.58838434999998 -2015-08-29 08:00:00,0.0,1019.442667,118.85,99.875,13.2675,0.626416667,237.59005705 -2015-08-29 09:00:00,0.0,1019.516667,275.9216667,92.00833333,16.27166667,0.791583333,237.58922071666666 -2015-08-29 10:00:00,0.0,1019.248,479.6,80.94666667,19.635,1.091916667,237.58922068333334 -2015-08-29 11:00:00,0.0,1018.915167,535.9833333,76.34333333,22.5475,1.36625,237.58754798333334 -2015-08-29 12:00:00,0.0,1018.472,560.775,75.94083333,24.295,0.94575,237.58448128333336 -2015-08-29 13:00:00,0.0,1018.006333,566.6083332999999,71.35083333,25.4925,1.068833333,237.58099645000001 -2015-08-29 14:00:00,0.0,1017.4126669999999,507.125,65.83,26.6225,1.076333333,237.5758389 -2015-08-29 15:00:00,0.0,1016.8735,421.04166669999995,64.75,27.5075,0.938333333,237.57193586666668 -2015-08-29 16:00:00,0.0,1016.279333,285.10583330000003,64.06333333,27.8,0.9470000000000001,237.56900859999996 -2015-08-29 17:00:00,0.0,1015.6386669999999,33.3975,72.84583333,27.30833333,0.765833333,237.5680328333333 -2015-08-29 18:00:00,0.0,1015.509833,16.88566667,83.145,25.87666667,0.6805,237.56608135 -2015-08-29 19:00:00,0.0,1015.584833,1.8999166669999998,95.875,21.92916667,0.0315,237.56733588333336 -2015-08-29 20:00:00,0.0,1015.917167,0.0,99.575,19.31416667,0.023166667000000002,237.56789345 -2015-08-29 21:00:00,0.0,1015.840167,0.0,100.0,18.26833333,0.068416667,237.56942676666662 -2015-08-29 22:00:00,0.0,1015.8166669999999,0.0,100.0,17.3675,0.007166667,237.57082071666665 -2015-08-29 23:00:00,0.0,1015.5823330000001,0.0,100.0,16.90583333,0.006166667,237.57249343333334 -2015-08-30 00:00:00,0.0,1015.3235,0.0,100.0,16.36666667,0.01475,237.57430555 -2015-08-30 01:00:00,0.0,1015.2245,0.0,100.0,16.36666667,0.025083333,237.57611765000001 -2015-08-30 02:00:00,0.0,1015.0735,0.0,100.0,16.91833333,0.036833332999999996,237.57792978333336 -2015-08-30 03:00:00,0.0,1014.655333,0.0,100.0,16.70916667,0.096,237.5798813 -2015-08-30 04:00:00,0.0,1014.15,0.0,100.0,16.00666667,0.063666667,237.58378431666668 -2015-08-30 05:00:00,0.0,1014.1916669999999,1.734666667,100.0,15.59916667,0.0,237.58364491666669 -2015-08-30 06:00:00,0.0,1014.234833,18.49725,100.0,15.89333333,0.0,237.5857358333333 -2015-08-30 07:00:00,0.0,1014.634833,101.9983333,100.0,18.44583333,0.179,237.5842025166667 -2015-08-30 08:00:00,0.0,1014.909833,140.8016667,95.95833333,20.85083333,0.7000833329999999,237.5840631166667 -2015-08-30 09:00:00,0.0,1014.9235,249.2183333,84.81,24.35833333,0.58275,237.58476008333335 -2015-08-30 10:00:00,0.0,1014.673,470.025,75.56583333,26.6075,0.9834166670000001,237.5839237 -2015-08-30 11:00:00,0.0,1014.264667,531.6583333000001,70.77416667,28.38833333,1.38175,237.5802995 -2015-08-30 12:00:00,0.0,1013.7396669999999,555.3833333,64.9675,29.83916667,1.660166667,237.5763964833333 -2015-08-30 13:00:00,0.0,1013.105333,546.5083333,55.95416667,31.4675,2.121333333,237.57165709999995 -2015-08-30 14:00:00,0.0,1012.7735,493.425,43.88583333,32.98416667,1.837666667,237.5649662 -2015-08-30 15:00:00,0.0,1012.248,305.8,48.14666667,32.23916667,0.276333333,237.56120256666665 -2015-08-30 16:00:00,0.0,1011.988667,185.9,53.12583333,31.55083333,0.625833333,237.55632379999997 -2015-08-30 17:00:00,0.0,1011.716667,90.67666667,65.175,30.72333333,0.41858333299999995,237.55353589999996 -2015-08-30 18:00:00,0.0,1011.7260000000001,28.73916667,78.11083333,28.23416667,0.41825,237.55214196666665 -2015-08-30 19:00:00,0.0,1012.0269999999999,1.713416667,88.925,23.7825,0.08800000000000001,237.55005106666667 -2015-08-30 20:00:00,0.0,1012.393167,0.0,94.28333333,22.30833333,0.1695,237.55046921666667 -2015-08-30 21:00:00,0.0,1012.363667,0.0,97.075,20.23333333,0.080833333,237.5525601333333 -2015-08-30 22:00:00,0.0,1011.655333,0.0,99.43333333,18.97416667,0.03675,237.55604498333332 -2015-08-30 23:00:00,0.0,1011.584833,0.0,100.0,17.8975,0.025583333,237.5572995166667 -2015-08-31 00:00:00,0.0,1011.557333,0.0,100.0,17.3775,0.023833332999999998,237.5592510333333 -2015-08-31 01:00:00,0.0,1011.2225,0.0,100.0,16.7275,0.01775,237.56259649999996 -2015-08-31 02:00:00,0.0,1010.9495,0.0,100.0,16.42833333,0.028916667000000004,237.56357224999996 -2015-08-31 03:00:00,0.0,1010.908333,0.0,100.0,16.79083333,0.0,237.56552376666664 -2015-08-31 04:00:00,0.0,1010.630833,0.0,100.0,16.61916667,0.02075,237.56649953333329 -2015-08-31 05:00:00,0.0,1010.281333,1.512083333,100.0,16.24666667,0.064666667,237.5698449833333 -2015-08-31 06:00:00,0.0,1010.033833,22.06975,100.0,16.39833333,0.028083333,237.5708207333333 -2015-08-31 07:00:00,0.0,1010.0235,97.19166667,100.0,19.02666667,0.241916667,237.56984498333335 -2015-08-31 08:00:00,2.7425940719999997,1009.725,148.89333330000002,93.55,21.39833333,0.8019166670000001,237.57179648333332 -2015-08-31 09:00:00,0.0,1009.666167,255.79166669999998,84.85666667,24.54666667,0.7050833329999999,237.5722146666666 -2015-08-31 10:00:00,0.0,1009.346,457.5666666999999,74.005,27.63583333,0.85725,237.5712389 -2015-08-31 11:00:00,0.0,1008.664167,534.9916667,50.34166667,30.1175,0.88,237.55978326 -2015-08-31 12:00:00,0.0,1008.105333,557.8166667,41.3375,31.14416667,1.3845833330000001,237.5498796833334 -2015-08-31 13:00:00,0.0,1007.6386669999999,547.8833333,34.16,32.09,1.78975,237.54367534999997 -2015-08-31 14:00:00,0.0,1007.0225,495.9,34.15333333,32.21083333,1.96775,237.53607501666667 -2015-08-31 15:00:00,0.0,1006.2538529999999,409.05,34.33916667,32.45833333,1.5295833330000002,237.52707873333335 -2015-08-31 16:00:00,0.0,1005.597667,237.5358333,35.78416667,32.25833333,1.922916667,237.52149486666667 -2015-08-31 17:00:00,0.0,1005.2625830000001,35.7875,34.2975,31.0475,1.0240833329999999,237.5157558833333 -2015-08-31 18:00:00,0.0,1004.992833,19.24025,38.20416667,28.405,0.43541666700000003,237.5124986 -2015-08-31 19:00:00,0.0,1005.193417,1.5821666669999999,61.6525,23.33583333,0.016,237.51001688333335 -2015-08-31 20:00:00,0.0,1005.12325,0.0,81.91583333,20.63916667,0.169833333,237.51001686666666 -2015-08-31 21:00:00,0.0,1005.538583,0.0,56.84416667,20.07416667,0.21791666699999998,237.50784536666666 -2015-08-31 22:00:00,0.0,1005.791667,0.0,67.375,20.65,0.096416667,237.50613915 -2015-08-31 23:00:00,0.0,1005.966667,0.0,81.015,19.80416667,0.145833333,237.50846579999998 -2015-01-09 00:00:00,0.0,1006.270167,0.0,90.19166667,19.89583333,0.110583333, -2015-01-09 01:00:00,0.0,1006.2715,0.0,95.45833333,18.80666667,0.1125, -2015-01-09 02:00:00,0.0,1005.891083,0.0,98.325,18.0675,0.059416667, -2015-01-09 03:00:00,0.0,1005.977333,0.0,100.0,16.89083333,0.05225, -2015-01-09 04:00:00,0.0,1005.922667,0.0,100.0,17.73583333,0.10825, -2015-01-09 05:00:00,0.0,1005.708333,0.5781666670000001,100.0,18.18833333,0.11616666699999999, -2015-01-09 06:00:00,32.36792801,1005.6560000000001,28.85433333,99.96666667,18.66916667,0.34033333299999996, -2015-01-09 07:00:00,2.448991752,1005.1215,105.86416670000001,99.20833333,19.6175,0.161666667, -2015-01-09 08:00:00,0.0,1004.73275,158.54166669999998,95.00833333,20.76833333,0.310666667, -2015-01-09 09:00:00,0.0,1004.775583,163.4,91.08333333,21.42583333,0.650083333, -2015-01-09 10:00:00,29.03892847,1004.572667,96.79666667,91.625,21.80583333,0.738833333, -2015-01-09 11:00:00,113.9400007,1004.770167,76.07333333,96.60833333,18.71333333,1.63575, -2015-01-09 12:00:00,57.29286343,1005.323083,54.00333333,95.95833333,17.86833333,1.0525, -2015-01-09 13:00:00,161.348248,1006.479667,70.99916667,99.925,16.65416667,1.20275, -2015-01-09 14:00:00,27.27392335,1007.355833,124.9725,98.18333333,16.90083333,1.288333333, -2015-01-09 15:00:00,2.827803072,1008.22075,94.1325,96.04166667,16.8575,1.480166667, -2015-01-09 16:00:00,0.0,1008.912417,77.71833333,95.13333333,16.8575,1.031583333, -2015-01-09 17:00:00,0.0,1009.654667,26.50583333,96.00833333,16.965,0.517083333, -2015-01-09 18:00:00,16.9402919,1010.3285,47.71333333,96.49166667,15.82,1.4696666669999998, -2015-01-09 19:00:00,0.0,1011.205833,2.2294166669999997,96.35833333,15.2475,1.188, -2015-01-09 20:00:00,0.0,1011.8939999999999,0.0,97.94166667,13.53416667,0.02475, -2015-01-09 21:00:00,0.0,1012.369583,0.0,100.0,12.5725,0.082416667, -2015-01-09 22:00:00,0.0,1012.752917,0.0,100.0,12.1875,0.091833333, -2015-01-09 23:00:00,0.0,1012.991667,0.0,100.0,11.9025,0.01275, -2015-02-09 00:00:00,0.0,1013.2,0.0,100.0,11.78166667,0.19725, -2015-02-09 01:00:00,0.0,1013.461833,0.0,100.0,11.62833333,0.038166667, -2015-02-09 02:00:00,0.0,1013.5905,0.0,100.0,11.905,0.166583333, -2015-02-09 03:00:00,0.0,1013.499417,0.0,100.0,10.97916667,0.010083333, -2015-02-09 04:00:00,2.4050227680000003,1013.54225,0.0,100.0,10.30583333,0.027999999999999997, -2015-02-09 05:00:00,0.0,1013.516667,0.9,100.0,11.33166667,0.21483333300000002, -2015-02-09 06:00:00,0.0,1013.785083,18.36275,100.0,10.875,0.43908333299999996, -2015-02-09 07:00:00,0.0,1013.867833,70.075,100.0,11.36916667,0.2475, -2015-02-09 08:00:00,0.0,1013.966083,124.75,100.0,12.17333333,0.24175, -2015-02-09 09:00:00,0.0,1013.925583,247.0916667,91.09166667,14.25083333,0.6466666670000001, -2015-02-09 10:00:00,0.0,1013.78875,460.775,78.28666667,16.32833333,1.073, -2015-02-09 11:00:00,0.0,1013.497667,438.5166666999999,74.38166667,16.96583333,0.863916667, -2015-02-09 12:00:00,0.0,1012.830417,514.1,70.27583333,17.90583333,0.9794166670000001, -2015-02-09 13:00:00,0.0,1012.36375,398.09166669999996,64.90666667,18.94666667,0.791166667, -2015-02-09 14:00:00,0.0,1011.931583,303.8,64.19333333,18.78083333,1.142916667, -2015-02-09 15:00:00,0.0,1011.539917,309.5833333,67.38833333,19.34,1.6776666669999998, -2015-02-09 16:00:00,0.0,1011.222083,159.945,66.69583333,19.12333333,1.581833333, -2015-02-09 17:00:00,0.0,1010.95,72.73,70.30166667,18.55083333,1.242083333, -2015-02-09 18:00:00,0.0,1010.991667,25.53416667,84.07833333,16.95833333,0.363, -2015-02-09 19:00:00,0.0,1011.302917,1.044,91.48333333,14.87583333,0.093166667, -2015-02-09 20:00:00,0.0,1011.458333,0.0,95.74166667,13.8575,0.061833333, -2015-02-09 21:00:00,0.0,1011.2905,0.0,97.71666667,12.92166667,0.04175, -2015-02-09 22:00:00,0.0,1010.904833,0.0,99.71666667,12.93,0.135416667, -2015-02-09 23:00:00,0.0,1010.8,0.0,99.99166667,11.91916667,0.129833333, -2015-03-09 00:00:00,0.0,1010.591083,0.0,100.0,11.25333333,0.1755,238.04945266666667 -2015-03-09 01:00:00,0.0,1010.397083,0.0,100.0,10.4475,0.022166667,238.04911933333332 -2015-03-09 02:00:00,0.0,1010.27675,0.0,100.0,10.45916667,0.1665,238.05013599999998 -2015-03-09 03:00:00,0.0,1010.38275,0.0,100.0,10.58416667,0.15425,238.04945266666664 -2015-03-09 04:00:00,0.0,1010.072083,0.0,100.0,9.831666667,0.068916667,238.049786 -2015-03-09 05:00:00,0.0,1009.810083,0.721,100.0,9.3925,0.09325,238.05083599999998 -2015-03-09 06:00:00,0.0,1010.195167,20.00058333,100.0,9.063333333,0.23925,238.051886 -2015-03-09 07:00:00,0.0,1010.48275,127.4975,100.0,11.1925,0.53325,238.051886 -2015-03-09 08:00:00,0.0,1010.516667,160.2333333,92.125,14.16583333,0.393583333,238.05423599999997 -2015-03-09 09:00:00,0.0,1010.718417,238.6083333,81.0925,16.06833333,0.729916667,238.073086 -2015-03-09 10:00:00,0.0,1010.595333,392.3,74.56083333,17.57,0.789416667,238.05220266666666 -2015-03-09 11:00:00,0.0,1010.06375,328.525,70.47333333,17.90416667,0.8101666670000001,238.05048599999998 -2015-03-09 12:00:00,0.0,1009.825,453.59166669999996,64.34583333,19.0525,0.5479166670000001,238.05221933333334 -2015-03-09 13:00:00,0.0,1009.70775,416.8666667,60.56083333,19.59416667,0.679,238.051886 -2015-03-09 14:00:00,0.0,1009.213167,363.3583333,58.54083333,19.43083333,0.804916667,238.05221933333334 -2015-03-09 15:00:00,0.0,1008.883917,297.125,55.92166667,19.19916667,0.872916667,238.05221933333334 -2015-03-09 16:00:00,0.0,1008.89825,236.3775,50.55416667,19.76333333,0.952333333,238.05255266666666 -2015-03-09 17:00:00,0.0,1008.801167,51.6875,53.02583333,18.78666667,1.124,238.05321933333332 -2015-03-09 18:00:00,0.0,1009.016667,18.28633333,59.13,17.32666667,0.779333333,238.05388599999995 -2015-03-09 19:00:00,0.0,1009.320167,1.086166667,78.22833333,13.54166667,0.09475,238.05388599999995 -2015-03-09 20:00:00,0.0,1009.8285,0.0,92.00833333,10.98583333,0.043833332999999995,238.05388599999995 -2015-03-09 21:00:00,0.0,1010.141667,0.0,90.65,10.94,0.08533333300000001,238.055286 -2015-03-09 22:00:00,0.0,1010.38625,0.0,92.30833333,10.0725,0.001833333,238.05493599999997 -2015-03-09 23:00:00,0.0,1010.735667,0.0,91.71666667,9.6375,0.064666667,238.05563600000002 -2015-04-09 00:00:00,0.0,1010.847667,0.0,89.85,10.23083333,0.009666667,238.04395449999996 -2015-04-09 01:00:00,0.0,1010.675583,0.0,96.45833333,10.5975,0.006083333000000001,238.04395449999996 -2015-04-09 02:00:00,0.0,1010.716083,0.0,98.35833333,10.86166667,0.033416667000000004,238.04395449999996 -2015-04-09 03:00:00,0.0,1010.658333,0.0,99.53333333,10.62416667,0.037000000000000005,238.04395449999996 -2015-04-09 04:00:00,0.0,1010.32325,0.0,100.0,10.56333333,0.0,238.04390523333328 -2015-04-09 05:00:00,0.0,1010.419,0.6965,95.58333333,10.47916667,0.048916667000000004,238.04392986666664 -2015-04-09 06:00:00,0.0,1010.6095,12.80133333,95.50833333,9.699166667,0.005,238.04392986666664 -2015-04-09 07:00:00,0.0,1010.99225,76.6925,92.29166667,11.72916667,0.280666667,238.04395449999996 -2015-04-09 08:00:00,0.0,1011.177333,94.56083333,91.2,13.04416667,0.26025,238.0440062333333 -2015-04-09 09:00:00,0.0,1011.435083,251.85416669999998,76.08916667,14.69583333,0.513,238.04405796666666 -2015-04-09 10:00:00,0.0,1011.607167,207.185,68.8475,15.80666667,0.752166667,238.0441097 -2015-04-09 11:00:00,0.0,1011.366083,463.09166669999996,63.435,16.47166667,0.6469166670000001,238.04403209999998 -2015-04-09 12:00:00,0.0,1011.416667,374.03333330000004,62.16416667,16.51583333,1.195416667,238.04408383333336 -2015-04-09 13:00:00,0.0,1011.382167,210.67583330000002,67.79583333,16.06333333,0.68375,238.04405796666666 -2015-04-09 14:00:00,0.0,1011.074417,243.5866667,66.98166667,15.45333333,0.937,238.0441097 -2015-04-09 15:00:00,0.0,1010.712583,263.3916667,64.465,16.2925,0.842583333,238.0441097 -2015-04-09 16:00:00,0.0,1010.079833,147.075,60.915,16.46833333,0.651083333,238.04403209999998 -2015-04-09 17:00:00,0.0,1009.966667,63.78916667,61.38333333,15.5625,0.42208333299999995,238.0440062333333 -2015-04-09 18:00:00,0.0,1009.858333,15.73758333,61.69333333,14.14083333,0.137583333,238.0439311 -2015-04-09 19:00:00,0.0,1009.9695830000001,0.9205,73.44833333,11.4075,0.0035833329999999997,238.04383133333332 -2015-04-09 20:00:00,0.0,1010.232167,0.0,89.99166667,9.163333332999999,0.08733333300000001,238.04375496666663 -2015-04-09 21:00:00,0.0,1010.05,0.0,94.43333333,8.179666667000001,0.010416667,238.04367736666669 -2015-04-09 22:00:00,0.0,1010.402917,0.0,84.30833333,7.300583333,0.070833333,238.04365150000004 -2015-04-09 23:00:00,0.0,1010.5155,0.0,86.9,8.381583333,0.159583333,238.04365150000004 -2015-05-09 00:00:00,0.0,1010.391083,0.0,88.89166667,8.3245,0.063416667,238.02477676666663 -2015-05-09 01:00:00,0.0,1010.258333,0.0,88.96666667,7.70325,0.11841666699999999,238.02701765000003 -2015-05-09 02:00:00,0.0,1009.989917,0.0,88.85,8.980416667,0.18591666699999998,238.02667291666668 -2015-05-09 03:00:00,0.0,1009.7560000000001,0.0,88.29166667,10.36083333,0.251333333,238.02684531666668 -2015-05-09 04:00:00,0.0,1009.5583330000001,0.0,89.84166667,10.175,0.288666667,238.0271900666667 -2015-05-09 05:00:00,0.0,1009.752917,0.618166667,90.00833333,10.185,0.290166667,238.02770718333338 -2015-05-09 06:00:00,0.0,1010.477917,7.8143333329999995,90.575,10.9525,0.286666667,238.02615578333337 -2015-05-09 07:00:00,0.0,1010.90175,37.90333333,92.01666667,11.53416667,0.2535,238.02425965 -2015-05-09 08:00:00,0.0,1011.00175,107.9625,88.03333333,12.97416667,0.645,238.02391486666667 -2015-05-09 09:00:00,0.0,1011.40175,173.88416669999998,82.94166667,15.22833333,0.572333333,238.02081208333334 -2015-05-09 10:00:00,0.0,1011.591667,368.575,81.54666667,15.71916667,0.654833333,238.02081210000003 -2015-05-09 11:00:00,0.0,1011.601167,279.71666669999996,86.05833333,14.975,0.557583333,238.01960544999997 -2015-05-09 12:00:00,0.0,1011.733333,256.675,82.35833333,16.195,0.881583333,238.01874358333336 -2015-05-09 13:00:00,0.0,1011.5905,301.71666669999996,76.0675,16.12833333,1.173833333,238.01908831666665 -2015-05-09 14:00:00,0.0,1011.48275,377.2416667,69.165,17.10333333,1.252166667,238.01546841666664 -2015-05-09 15:00:00,0.0,1011.25,191.71,66.28416667,16.88416667,1.6251666669999998,238.0151236833333 -2015-05-09 16:00:00,9.244115184,1011.60175,32.15166667,83.96666667,14.09083333,2.376083333,238.01633031666665 -2015-05-09 17:00:00,2.605460328,1011.76725,20.23083333,91.2,13.07583333,0.7180833329999999,238.01770931666667 -2015-05-09 18:00:00,0.0,1011.73275,12.86933333,90.43333333,13.07,0.578666667,238.01857121666663 -2015-05-09 19:00:00,0.0,1011.885667,0.563583333,90.475,12.685,0.626,238.02029496666668 -2015-05-09 20:00:00,38.33624234,1012.452917,0.0,91.83333333,12.15916667,1.1665,238.02046736666668 -2015-05-09 21:00:00,0.0,1012.87675,0.0,90.59166667,11.345,0.618,238.02029498333332 -2015-05-09 22:00:00,0.0,1013.23625,0.0,90.2,10.90833333,1.295666667,238.02081209999997 -2015-05-09 23:00:00,0.0,1013.585083,0.0,91.625,10.24583333,0.790416667,238.02081209999997 -2015-06-09 00:00:00,0.0,1013.793417,0.0,91.65833333,9.378333332999999,0.181166667,237.71605015000003 -2015-06-09 01:00:00,0.0,1013.966667,0.0,93.44166667,9.248333333,0.11808333300000001,237.71863581666665 -2015-06-09 02:00:00,0.0,1014.276167,0.0,93.675,9.065,0.097166667,237.72397949999996 -2015-06-09 03:00:00,0.0,1014.193417,0.0,95.71666667,8.0605,0.034333333,237.72863365 -2015-06-09 04:00:00,0.0,1014.5189999999999,0.0,93.98333333,7.777416667000001,0.08666666699999999,237.73001266666668 -2015-06-09 05:00:00,0.0,1015.03625,0.692333333,94.55833333,7.725916667000001,0.060416667,237.7339773333333 -2015-06-09 06:00:00,0.0,1015.6785,28.77483333,93.48333333,8.411583333,0.18633333300000002,237.73208118333332 -2015-06-09 07:00:00,0.0,1016.194583,62.895,90.69166667,10.56666667,0.90525,237.73070214999998 -2015-06-09 08:00:00,0.0,1016.770167,143.725,82.78583333,11.285,1.367833333,237.72690988333332 -2015-06-09 09:00:00,0.0,1017.368417,224.075,77.24083333,12.01416667,2.0580000000000003,237.71760156666667 -2015-06-09 10:00:00,0.0,1017.7285,244.7166667,72.34833333,13.4625,1.8964166669999998,237.7079484666667 -2015-06-09 11:00:00,0.0,1017.983333,233.8,70.73833333,13.92583333,2.613916667,237.70294953333334 -2015-06-09 12:00:00,0.0,1018.2595,276.525,68.91083333,14.4625,2.923166667,237.70036388333332 -2015-06-09 13:00:00,0.0,1018.402917,241.85,69.61083333,15.1075,1.8591666669999998,237.6977782166667 -2015-06-09 14:00:00,0.0,1018.77675,352.3916667,70.71416667,15.64583333,1.7230833330000002,237.6963992 -2015-06-09 15:00:00,0.0,1018.814917,151.6675,71.33916667,14.4375,1.6398333330000001,237.69329645000002 -2015-06-09 16:00:00,22.57974106,1019.002333,48.38333333,77.07,13.07166667,1.333833333,237.69295168333335 -2015-06-09 17:00:00,0.0,1019.108333,43.29333333,78.2875,12.52,0.785833333,237.69277929999998 -2015-06-09 18:00:00,0.0,1019.135083,12.19408333,79.95333333,12.61,0.7104166670000001,237.69174505 -2015-06-09 19:00:00,0.0,1019.660667,0.691416667,83.325,11.83166667,0.349,237.69140030000003 -2015-06-09 20:00:00,0.0,1020.118417,0.0,86.98333333,11.0525,0.250166667,237.69398593333332 -2015-06-09 21:00:00,0.0,1020.031583,0.0,90.9,9.971666667000001,0.326,237.6972610833333 -2015-06-09 22:00:00,0.0,1020.19575,0.0,87.475,10.90583333,0.431333333,237.70329429999995 -2015-06-09 23:00:00,0.0,1020.324417,0.0,86.625,11.39666667,0.551083333,237.70605231666664 -2015-07-09 00:00:00,0.0,1020.19825,0.0,87.90833333,11.29333333,0.47316666700000004,237.54921471666668 -2015-07-09 01:00:00,0.0,1020.041667,0.0,88.33333333,11.2775,0.41066666700000004,237.55451168333332 -2015-07-09 02:00:00,0.0,1019.705417,0.0,89.01666667,11.32333333,0.232333333,237.5582752833333 -2015-07-09 03:00:00,0.0,1019.313167,0.0,93.225,11.19,0.316166667,237.5631540833333 -2015-07-09 04:00:00,0.0,1018.966667,0.0,95.20833333,11.0875,0.33025,237.56524496666665 -2015-07-09 05:00:00,0.0,1018.730417,0.301083333,95.4,11.135,0.22108333300000002,237.56775405 -2015-07-09 06:00:00,4.899031992,1018.72675,10.96375,94.69166667,11.27,0.176333333,237.56817226666666 -2015-07-09 07:00:00,0.0,1019.018417,53.69166667,94.94166667,11.83416667,0.313833333,237.5663601166667 -2015-07-09 08:00:00,0.0,1019.43625,69.41083333,92.575,12.6125,0.540166667,237.56357224999996 -2015-07-09 09:00:00,0.0,1019.8535,113.14916670000001,90.44166667,13.63666667,0.858,237.55897225 -2015-07-09 10:00:00,0.0,1020.226167,377.925,86.975,15.18166667,0.6678333329999999,237.5493541 -2015-07-09 11:00:00,0.0,1020.2905,323.09166669999996,85.46666667,15.5075,1.548,237.53917835000001 -2015-07-09 12:00:00,0.0,1020.3540830000001,307.2666667,86.61666667,16.00833333,1.318416667,237.52858445 -2015-07-09 13:00:00,0.0,1020.555417,285.4,87.55,15.91833333,0.957583333,237.52203295 -2015-07-09 14:00:00,0.0,1020.375,228.66666669999998,85.40833333,16.11833333,1.28575,237.51896626666664 -2015-07-09 15:00:00,2.695266096,1020.231583,170.135,87.03333333,15.19083333,1.3986666669999999,237.5203602 -2015-07-09 16:00:00,0.0,1020.27675,138.2508333,83.36666667,16.19416667,1.245916667,237.5189662833333 -2015-07-09 17:00:00,0.0,1020.2988330000001,54.52166667,93.48333333,15.60166667,0.9289166670000001,237.5161783833333 -2015-07-09 18:00:00,0.0,1020.318417,12.38816667,92.65833333,14.78916667,0.211333333,237.5163177833333 -2015-07-09 19:00:00,0.0,1020.879083,0.531666667,95.56666667,14.3175,0.526416667,237.51603899999998 -2015-07-09 20:00:00,0.0,1021.335667,0.0,95.99166667,13.6175,0.34225,237.51687533333333 -2015-07-09 21:00:00,0.0,1021.489917,0.0,97.85833333,13.58333333,0.17175,237.5203601833333 -2015-07-09 22:00:00,0.0,1021.627917,0.0,98.84166667,13.09916667,0.24100000000000002,237.52426324999996 -2015-07-09 23:00:00,0.0,1021.758333,0.0,99.89166667,11.78,0.048583333,237.52872383333337 -2015-08-09 00:00:00,0.0,1021.58875,0.0,100.0,12.24,0.14775,237.43644519999998 -2015-08-09 01:00:00,0.0,1021.35775,0.0,100.0,12.5375,0.16575,237.43965128333335 -2015-08-09 02:00:00,0.0,1021.325583,0.0,100.0,12.2625,0.04125,237.44313611666664 -2015-08-09 03:00:00,0.0,1021.072667,0.0,100.0,12.235,0.0,237.4466209666667 -2015-08-09 04:00:00,0.0,1020.983917,0.0,100.0,12.01166667,0.0014166670000000001,237.45108153333334 -2015-08-09 05:00:00,0.0,1020.764917,0.254083333,100.0,11.63583333,0.005166667,237.45386943333335 -2015-08-09 06:00:00,0.0,1020.910083,13.98525,100.0,11.805,0.010666667,237.45665731666668 -2015-08-09 07:00:00,0.0,1021.075,57.31916667,98.81666667,12.8175,0.066416667,237.4569361 -2015-08-09 08:00:00,5.545296144,1020.9416669999999,161.925,87.275,14.30083333,0.80425,237.45582095000006 -2015-08-09 09:00:00,0.0,1021.2345,171.8833333,83.00833333,14.9675,2.071916667,237.45233608333334 -2015-08-09 10:00:00,0.0,1021.164917,491.75833330000006,73.8825,15.92916667,1.8688333330000002,237.4480149 -2015-08-09 11:00:00,0.0,1020.822667,133.9416667,73.95166667,16.13666667,2.344,237.43867551666665 -2015-08-09 12:00:00,0.0,1020.726167,191.7583333,72.80416667,16.65583333,1.206833333,237.4297543166667 -2015-08-09 13:00:00,0.0,1020.563167,281.2416667,69.98416667,16.7925,1.2429999999999999,237.4208331166667 -2015-08-09 14:00:00,0.0,1020.055417,241.55833330000002,65.93333333,17.57916667,1.742583333,237.41400283333334 -2015-08-09 15:00:00,0.0,1019.589917,212.6,67.23583333,17.57333333,2.120583333,237.41260888333338 -2015-08-09 16:00:00,0.0,1019.056583,135.0083333,65.59333333,17.7,2.0259166669999997,237.41344526666668 -2015-08-09 17:00:00,0.0,1018.722083,62.3575,65.56666667,17.13333333,2.126583333,237.41316648333336 -2015-08-09 18:00:00,0.0,1018.491667,18.78883333,72.96666667,16.5,1.674333333,237.41233013333337 -2015-08-09 19:00:00,0.0,1018.68625,0.37291666700000003,83.36333333,15.61583333,0.69775,237.41400284999997 -2015-08-09 20:00:00,0.0,1018.8166669999999,0.0,89.80833333,14.17166667,0.243416667,237.41679069999998 -2015-08-09 21:00:00,0.0,1018.993417,0.0,94.9,12.73666667,0.039,237.42139068333333 -2015-08-09 22:00:00,0.0,1019.108333,0.0,97.875,13.5175,0.915,237.42389978333335 -2015-08-09 23:00:00,0.0,1019.2595,0.0,99.74166667,12.3225,0.060916667,237.42794219999996 -2015-09-09 00:00:00,0.0,1019.473833,0.0,99.6,12.36416667,0.02425,237.54352024999994 -2015-09-09 01:00:00,0.0,1019.256583,0.0,99.96666667,12.6025,0.436666667,237.54584685 -2015-09-09 02:00:00,0.0,1018.847083,0.0,99.88333333,12.94,0.432333333,237.54786328333333 -2015-09-09 03:00:00,0.0,1018.457167,0.0,99.99166667,12.705,0.202083333,237.55112053333335 -2015-09-09 04:00:00,0.0,1018.28275,0.0,100.0,12.39333333,0.359333333,237.55251651666666 -2015-09-09 05:00:00,0.0,1018.21725,0.5445,99.88333333,11.58333333,0.526333333,237.55499825 -2015-09-09 06:00:00,0.0,1018.074417,16.43175,100.0,9.8775,0.077833333,237.55856573333332 -2015-09-09 07:00:00,0.0,1018.53625,59.33916667,100.0,11.77416667,0.6748333329999999,237.55841063333332 -2015-09-09 08:00:00,0.0,1018.835083,94.76416667,96.675,13.2,2.40775,237.5581004333333 -2015-09-09 09:00:00,0.0,1019.000583,146.1258333,91.41666667,14.30416667,3.378083333,237.55965148333334 -2015-09-09 10:00:00,0.0,1019.10775,360.1,84.40333333,15.34416667,3.25575,237.55825551666666 -2015-09-09 11:00:00,0.0,1019.008917,521.9583333,73.46166667,16.29416667,3.259,237.55484313333332 -2015-09-09 12:00:00,0.0,1018.956583,302.0,70.38,16.82,3.4595,237.55112053333335 -2015-09-09 13:00:00,0.0,1018.714917,359.7,61.51666667,17.91333333,3.9594166669999997,237.54615705 -2015-09-09 14:00:00,0.0,1018.289917,384.125,59.4725,18.1,4.041916667,237.54057316666663 -2015-09-09 15:00:00,0.0,1018.333333,377.1666667,53.4925,18.325,3.7719166669999997,237.53390350000004 -2015-09-09 16:00:00,0.0,1017.96375,189.9041667,51.91333333,18.4375,3.57975,237.53080135000002 -2015-09-09 17:00:00,0.0,1017.7095,41.81333333,55.40333333,17.45916667,3.3819999999999997,237.52847473333335 -2015-09-09 18:00:00,0.0,1017.758333,10.395,66.0725,15.76,2.1315,237.52707875 -2015-09-09 19:00:00,0.0,1018.086833,0.44525,88.21333333,11.42416667,0.11558333300000001,237.5252174333333 -2015-09-09 20:00:00,0.0,1018.391083,0.0,95.88333333,8.980833333,0.10300000000000001,237.52583789999997 -2015-09-09 21:00:00,0.0,1018.416667,0.0,99.08333333,7.799666667,0.034416667000000005,237.52800938333337 -2015-09-09 22:00:00,0.0,1018.635083,0.0,100.0,6.942833332999999,0.0235,237.53064623333333 -2015-09-09 23:00:00,0.0,1018.71725,0.0,100.0,6.454833333,0.09891666699999999,237.53328306666666 -2015-10-09 00:00:00,0.0,1018.65775,0.0,100.0,6.418083332999999,0.174583333,237.61068208333333 -2015-10-09 01:00:00,0.0,1018.6155,0.0,100.0,6.087000000000001,0.1825,237.61207806666667 -2015-10-09 02:00:00,0.0,1018.416667,0.0,100.0,5.657416667000001,0.15416666699999998,237.61487001666663 -2015-10-09 03:00:00,0.0,1018.525,0.0,100.0,5.2465,0.075666667,237.61611086666667 -2015-10-09 04:00:00,0.0,1018.53275,0.0,100.0,5.035083333,0.067833333,237.62216005000002 -2015-10-09 05:00:00,0.0,1018.643417,0.464583333,100.0,5.805833333,0.301083333,237.62774395 -2015-10-09 06:00:00,0.0,1018.718417,11.22891667,100.0,6.2925,0.242416667,237.63503403333334 -2015-10-09 07:00:00,0.0,1018.891667,34.71333333,100.0,9.665833333,2.09025,237.64201391666666 -2015-10-09 08:00:00,0.0,1019.06725,136.3833333,95.275,11.50666667,3.108833333,237.64790803333335 -2015-10-09 09:00:00,0.0,1019.2011669999999,277.6666667,87.05,12.97083333,3.137916667,237.65163061666667 -2015-10-09 10:00:00,0.0,1019.01375,418.975,78.42416667,14.4825,3.460666667,237.6527163833333 -2015-10-09 11:00:00,0.0,1018.538167,470.4833333000001,70.81,16.30833333,3.50425,237.65380215000002 -2015-10-09 12:00:00,0.0,1017.913167,524.0666666999999,62.64416667,17.43833333,2.839666667,237.65550835 -2015-10-09 13:00:00,0.0,1017.213167,326.025,61.425,17.65583333,3.732166667,237.65643898333335 -2015-10-09 14:00:00,0.0,1016.822083,353.3166667,59.12916667,18.36166667,4.045083333,237.6587656 -2015-10-09 15:00:00,0.0,1016.31375,260.1916667,59.2525,18.26833333,4.22525,237.65969628333335 -2015-10-09 16:00:00,0.0,1015.79825,125.765,59.50083333,17.86083333,4.247583333,237.66031671666667 -2015-10-09 17:00:00,0.0,1015.57325,31.305,60.67583333,17.51916667,3.55675,237.66155756666663 -2015-10-09 18:00:00,0.0,1015.517833,12.43233333,68.59333333,16.2725,2.26375,237.66233308333335 -2015-10-09 19:00:00,0.0,1015.885667,0.324916667,82.65083333,14.14416667,1.206583333,237.6624881833333 -2015-10-09 20:00:00,0.0,1016.066083,0.0,94.15833333,10.81916667,0.208916667,237.66264331666665 -2015-10-09 21:00:00,0.0,1015.95,0.0,98.31666667,8.568916667,0.0875,237.66357393333337 -2015-10-09 22:00:00,0.0,1015.748833,0.0,99.79166667,7.57575,0.059833332999999995,237.66434946666666 -2015-10-09 23:00:00,0.0,1015.69825,0.0,100.0,6.924666667,0.10416666699999999,237.66590053333334 -2015-11-09 00:00:00,0.0,1015.398833,0.0,100.0,7.281166667000001,0.23399999999999999,237.7383702333333 -2015-11-09 01:00:00,0.0,1015.0310000000001,0.0,100.0,7.21875,0.292916667,237.73790541666665 -2015-11-09 02:00:00,0.0,1014.757167,0.0,100.0,6.1348333329999996,0.12300000000000001,237.73728565000002 -2015-11-09 03:00:00,0.0,1014.54825,0.0,100.0,6.58425,0.26866666699999997,237.73666588333333 -2015-11-09 04:00:00,0.0,1014.299417,0.0,100.0,5.433083333,0.133166667,237.73666590000002 -2015-11-09 05:00:00,0.0,1014.24225,0.3565,100.0,4.662333333,0.00425,237.73620105 -2015-11-09 06:00:00,0.0,1014.517833,14.66675,100.0,5.166666667,0.145333333,237.73573623333334 -2015-11-09 07:00:00,0.0,1014.700583,51.89416667,100.0,7.540833332999999,0.26458333300000003,237.73356705 -2015-11-09 08:00:00,0.0,1014.835083,112.375,96.56666667,10.38583333,1.8640833330000002,237.73527141666668 -2015-11-09 09:00:00,0.0,1014.839917,315.5083333,86.64166667,12.11916667,1.7324166669999999,237.73465163333336 -2015-11-09 10:00:00,0.0,1014.514333,426.375,78.22583333,14.13166667,1.47625,237.73356703333334 -2015-11-09 11:00:00,0.0,1013.828667,489.65,72.12083333,16.26,1.509333333,237.7323275166667 -2015-11-09 12:00:00,0.0,1013.306583,525.2833333000001,65.04,17.88833333,1.644833333,237.73387693333336 -2015-11-09 13:00:00,0.0,1012.989917,451.09166669999996,56.57166667,19.46333333,1.113166667,237.73294729999998 -2015-11-09 14:00:00,0.0,1012.6060000000001,394.5083333,52.32166667,20.0675,1.476833333,237.73403188333336 -2015-11-09 15:00:00,0.0,1012.291083,378.5166667,46.8125,20.5525,1.1490833329999999,237.73186268333336 -2015-11-09 16:00:00,0.0,1011.998833,173.86833330000002,48.42666667,20.30833333,0.583333333,237.73279233333335 -2015-11-09 17:00:00,0.0,1011.94825,37.29416667,55.37916667,19.2425,0.761166667,237.73108796666668 -2015-11-09 18:00:00,0.0,1011.851167,11.71658333,78.07583333,16.08666667,0.037166667,237.73310221666668 -2015-11-09 19:00:00,0.0,1012.2189999999999,0.193,90.16666667,11.70583333,0.061166667,237.7334121166667 -2015-11-09 20:00:00,0.0,1012.518417,0.0,96.60833333,9.9025,0.031166667000000002,237.7318627 -2015-11-09 21:00:00,0.0,1012.414917,0.0,99.45,8.694166667000001,0.006333333000000001,237.7313978666667 -2015-11-09 22:00:00,0.0,1012.266083,0.0,100.0,7.670916667,0.0,237.73201765 -2015-11-09 23:00:00,0.0,1012.283917,0.0,100.0,6.998416667000001,0.0,237.7340318666667 -2015-12-09 00:00:00,0.0,1012.088167,0.0,100.0,6.391083332999999,0.0,237.99613194999998 -2015-12-09 01:00:00,0.0,1011.824417,0.0,100.0,5.9205,0.0,237.99577405 -2015-12-09 02:00:00,0.0,1011.775583,0.0,100.0,6.128083332999999,0.003666667,237.99577405 -2015-12-09 03:00:00,0.0,1011.664917,0.0,100.0,6.726083332999999,0.0,237.99577403333333 -2015-12-09 04:00:00,0.0,1011.65,0.0,100.0,6.94025,0.010083333,237.9954161333333 -2015-12-09 05:00:00,0.0,1011.574417,0.394166667,100.0,6.891166667,0.0295,237.99470031666667 -2015-12-09 06:00:00,0.0,1011.636833,21.46791667,100.0,6.9843333329999995,0.042,237.99559508333334 -2015-12-09 07:00:00,0.0,1011.8155,68.965,100.0,8.954833333,0.11175,237.99648985 -2015-12-09 08:00:00,0.0,1011.6833330000001,103.16666670000001,99.49166667,10.925,0.810333333,237.99541611666666 -2015-12-09 09:00:00,0.0,1011.589917,285.9416667,84.48,14.5575,1.341833333,237.9921949666667 -2015-12-09 10:00:00,0.0,1011.499417,283.5,69.72416667,17.40333333,1.7608333330000001,237.99344763333337 -2015-12-09 11:00:00,0.0,1011.13875,350.96666669999996,64.04333333,18.53,2.121,237.99147915 -2015-12-09 12:00:00,0.0,1010.6619999999999,471.84166669999996,60.02833333,20.83583333,2.5758333330000003,237.9916581 -2015-12-09 13:00:00,0.0,1010.089333,481.13333330000006,60.15833333,22.34,2.789666667,237.9909422833333 -2015-12-09 14:00:00,0.0,1009.456,204.55833330000002,59.4475,22.8425,2.6983333330000003,237.99201601666667 -2015-12-09 15:00:00,0.0,1009.122667,136.2466667,61.23666667,22.42416667,1.110083333,237.99255286666667 -2015-12-09 16:00:00,0.0,1008.731583,131.22833329999997,60.1,22.85833333,0.828,237.99362661666666 -2015-12-09 17:00:00,0.0,1008.172083,28.30283333,78.4725,21.41583333,0.212583333,237.99219494999997 -2015-12-09 18:00:00,0.0,1007.914917,2.19525,88.08333333,18.61416667,0.00675,237.9927318333333 -2015-12-09 19:00:00,0.0,1008.052333,0.0,91.72583333,18.695,0.536,237.99344763333337 -2015-12-09 20:00:00,0.0,1008.755833,0.0,82.61833333,18.55083333,2.3,237.99434239999997 -2015-12-09 21:00:00,0.0,1009.108333,0.0,90.15833333,17.69916667,1.243083333,237.9952371666666 -2015-12-09 22:00:00,0.0,1009.258917,0.0,87.16666667,18.10666667,1.8259999999999998,237.9950582 -2015-12-09 23:00:00,0.0,1009.249417,0.0,87.925,17.47,0.976583333,237.99487926666666 -2015-09-13 00:00:00,0.0,1009.133917,0.0,89.225,16.6675,0.78225,237.50365745000002 -2015-09-13 01:00:00,0.0,1009.14825,0.0,89.90833333,16.415,0.777416667,237.5047432 -2015-09-13 02:00:00,0.0,1008.947667,0.0,90.31666667,16.4475,0.727583333,237.50722491666667 -2015-09-13 03:00:00,0.0,1008.4905,0.0,91.03333333,16.31166667,1.054583333,237.50877601666664 -2015-09-13 04:00:00,0.0,1008.12325,0.0,96.7,16.07416667,0.91275,237.5107924166667 -2015-09-13 05:00:00,0.0,1007.875,0.075083333,99.76666667,15.4225,0.636916667,237.51451501666665 -2015-09-13 06:00:00,0.0,1008.0,5.9764166670000005,100.0,15.25416667,0.071666667,237.51467011666668 -2015-09-13 07:00:00,0.0,1008.12675,39.63666667,96.38333333,15.8975,1.2785,237.51591100000005 -2015-09-13 08:00:00,0.0,1008.098833,119.87916670000001,87.00833333,18.00416667,1.82975,237.5160661 -2015-09-13 09:00:00,0.0,1007.77925,202.725,83.31666667,18.98916667,1.7149166669999998,237.51451501666665 -2015-09-13 10:00:00,0.0,1007.180417,130.11666670000002,86.4,18.885,1.5848333330000002,237.51622121666665 -2015-09-13 11:00:00,0.0,1006.714917,133.9333333,85.9,19.10833333,1.6796666669999998,237.51389458333333 -2015-09-13 12:00:00,3.1159309680000002,1006.388167,121.72166670000001,91.00833333,18.6325,1.9656666669999998,237.5120332833333 -2015-09-13 13:00:00,8.497720103999999,1005.92925,89.59083333,95.35,18.115,1.7914166669999998,237.51358436666666 -2015-09-13 14:00:00,13.60229503,1005.314917,84.83916667,97.4,18.04666667,1.05975,237.51544568333335 -2015-09-13 15:00:00,0.0,1004.51025,102.3916667,97.93333333,18.14,0.561,237.51792740000005 -2015-09-13 16:00:00,0.0,1003.8465,136.3916667,94.61666667,18.51166667,0.723916667,237.51978871666668 -2015-09-13 17:00:00,0.0,1002.895333,82.93416667,94.3,18.53083333,1.018,237.52102956666667 -2015-09-13 18:00:00,0.0,1002.213167,12.30466667,97.525,17.83,0.48758333299999995,237.52382148333334 -2015-09-13 19:00:00,0.0,1001.956583,0.077,100.0,15.09583333,0.061416667,237.5276991666667 -2015-09-13 20:00:00,0.0,1001.354833,0.0,100.0,13.21916667,0.0495,237.5295604833333 -2015-09-13 21:00:00,0.0,1000.79825,0.0,100.0,12.20916667,0.12675,237.53204218333335 -2015-09-13 22:00:00,0.0,1000.7905,0.0,100.0,12.58333333,0.073833333,237.53312796666668 -2015-09-13 23:00:00,0.0,1000.65175,0.0,100.0,13.99833333,0.069916667,237.53312796666668 -2015-09-14 00:00:00,14.61821494,1000.864333,0.0,100.0,14.68916667,0.193833333,237.53343818333335 -2015-09-14 01:00:00,4.903424832,1000.181583,0.0,100.0,14.84,0.16625,237.53607503333333 -2015-09-14 02:00:00,0.0,999.8625832999999,0.0,100.0,14.61166667,0.124583333,237.53793631666665 -2015-09-14 03:00:00,2.431815984,999.6761667000002,0.0,100.0,14.56,0.149583333,237.53933229999996 -2015-09-14 04:00:00,0.0,999.7,0.0,100.0,14.56833333,0.28975,237.54041804999997 -2015-09-14 05:00:00,2.4050227680000003,999.3416667000001,0.032416667,100.0,14.50416667,0.43700000000000006,237.5435202333333 -2015-09-14 06:00:00,4.866096768,999.6083332999999,3.986333333,100.0,14.35583333,0.326916667,237.54507131666665 -2015-09-14 07:00:00,2.5985574000000002,999.71725,11.31966667,100.0,14.55,0.369333333,237.54755303333332 -2015-09-14 08:00:00,0.0,999.7511667000001,28.21083333,99.475,14.72,0.41808333299999995,237.54755305000003 -2015-09-14 09:00:00,0.0,999.9821667000001,73.13666667,96.45833333,15.40166667,1.057833333,237.54817346666667 -2015-09-14 10:00:00,0.0,999.9994167000001,247.0,87.65,17.04166667,1.101583333,237.5503449833333 -2015-09-14 11:00:00,0.0,999.7321667000001,405.9333333,79.945,18.75666667,2.49225,237.55003478333333 -2015-09-14 12:00:00,0.0,999.2381667000001,446.29166669999995,72.735,20.2975,1.973916667,237.54770814999998 -2015-09-14 13:00:00,0.0,998.5970832999999,355.05,63.9725,21.40666667,1.77725,237.54414066666664 -2015-09-14 14:00:00,3.10908528,998.5195832999999,294.3383333,72.06666667,19.06916667,2.687083333,237.54103848333332 -2015-09-14 15:00:00,0.0,998.4465,199.9083333,71.07,19.605,2.123916667,237.53669545 -2015-09-14 16:00:00,0.0,998.8385832999999,68.28,74.84583333,18.57,1.7735833330000002,237.53421373333333 -2015-09-14 17:00:00,0.0,999.2184167000001,47.99333333,80.62416667,17.14166667,0.977833333,237.53436883333333 -2015-09-14 18:00:00,0.0,1000.004667,11.15558333,88.40833333,15.78833333,0.820583333,237.53312796666668 -2015-09-14 19:00:00,2.8221547680000003,1000.519583,0.08125,94.525,13.9275,1.8965833330000001,237.53281773333333 -2015-09-14 20:00:00,0.0,1001.029667,0.0,85.28333333,14.46416667,2.694083333,237.53297283333333 -2015-09-14 21:00:00,0.0,1001.888583,0.0,79.70083333,13.91416667,1.773916667,237.53328308333334 -2015-09-14 22:00:00,0.0,1002.86125,0.0,79.06,13.0725,1.393,237.53390349999998 -2015-09-14 23:00:00,0.0,1003.3439999999999,0.0,79.50666667,12.6575,1.219416667,237.5345239333333 -2015-09-15 00:00:00,0.0,1003.392833,0.0,82.61666667,12.45333333,1.6711666669999998,237.5357648 -2015-09-15 01:00:00,0.0,1003.685667,0.0,86.29166667,11.625,2.037666667,237.53623015000002 -2015-09-15 02:00:00,0.0,1003.816083,0.0,87.20833333,10.93,1.072333333,237.53638523333333 -2015-09-15 03:00:00,0.0,1003.7405,0.0,87.80833333,9.500833333,1.27675,237.53638525 -2015-09-15 04:00:00,0.0,1003.52325,0.0,88.375,9.183333333,1.89775,237.53917719999995 -2015-09-15 05:00:00,0.0,1003.376167,0.095833333,91.125,9.123333333,1.324916667,237.5413487 -2015-09-15 06:00:00,0.0,1003.303667,5.855333333,99.54166667,9.9575,1.971333333,237.5436753166667 -2015-09-15 07:00:00,0.0,1002.958333,51.9375,93.46666667,11.00333333,2.8258333330000003,237.54383044999997 -2015-09-15 08:00:00,0.0,1002.935083,106.43333329999999,82.775,11.74333333,2.704166667,237.54305490000002 -2015-09-15 09:00:00,0.0,1003.039917,137.875,81.1675,13.26,3.628083333,237.54181403333337 -2015-09-15 10:00:00,7.551903887999999,1002.814917,120.55583329999999,82.19833333,13.92666667,3.49725,237.54165895000003 -2015-09-15 11:00:00,0.0,1002.744583,117.88833329999999,82.21333333,14.07666667,2.585583333,237.54026295000003 -2015-09-15 12:00:00,0.0,1002.8071669999999,175.375,79.48833333,14.8175,2.252166667,237.53855675 -2015-09-15 13:00:00,0.0,1002.732167,271.525,77.53916667,15.36416667,2.387333333,237.53731589999998 -2015-09-15 14:00:00,3.58038216,1002.50775,387.275,68.2975,17.20666667,2.54625,237.53142176666668 -2015-09-15 15:00:00,0.0,1002.456583,350.78333330000004,63.45583333,17.91833333,2.2325,237.52754405 -2015-09-15 16:00:00,0.0,1002.223833,151.9916667,62.84166667,17.35416667,2.462416667,237.52444189999997 -2015-09-15 17:00:00,0.0,1001.839333,37.93583333,65.29,16.72333333,2.024166667,237.5211846666667 -2015-09-15 18:00:00,0.0,1001.962417,7.371333333,72.21666667,15.20166667,1.0300833329999999,237.51684164999998 -2015-09-15 19:00:00,0.0,1002.05425,0.033833333,87.94166667,12.0775,1.050333333,237.51591098333333 -2015-09-15 20:00:00,0.0,1001.616667,0.0,97.69166667,10.47416667,1.422333333,237.51761720000002 -2015-09-15 21:00:00,0.0,1001.4,0.0,99.99166667,11.60833333,1.664916667,237.5180825166667 -2015-09-15 22:00:00,0.0,1001.25425,0.0,100.0,10.735,1.8945833330000001,237.51808251666668 -2015-09-15 23:00:00,0.0,1000.839917,0.0,100.0,10.3825,1.5913333330000001,237.51932338333333 -2015-09-16 00:00:00,0.0,1000.036417,0.0,98.45,10.5825,0.26825,237.52180511666668 -2015-09-16 01:00:00,7.203857952000001,999.6255832999999,0.0,98.09166667,10.86083333,0.08716666699999999,237.5245970166666 -2015-09-16 02:00:00,41.25573142,999.5726667000001,0.0,99.99166667,10.9575,0.15408333300000002,237.52816450000003 -2015-09-16 03:00:00,32.41472436,999.0453332999999,0.0,100.0,10.9075,0.467,237.53111153333336 -2015-09-16 04:00:00,34.75239665,997.893,0.0,100.0,11.02,0.521416667,237.53560968333332 -2015-09-16 05:00:00,14.70006017,996.7674167000001,0.0,100.0,11.34583333,1.7076666669999998,237.54212425 -2015-09-16 06:00:00,41.65027361,996.1845,1.61475,99.64166667,11.79083333,1.90925,237.54615708333333 -2015-09-16 07:00:00,11.41097138,995.9821667000001,7.4065833329999995,98.9,12.05333333,1.64525,237.55205118333333 -2015-09-16 08:00:00,8.83204392,995.9804167000001,26.92666667,98.25833333,12.58,2.54525,237.5539124833333 -2015-09-16 09:00:00,7.37066448,995.6178332999999,37.95166667,98.53333333,13.18833333,3.585583333,237.5588759666667 -2015-09-16 10:00:00,12.8805126,995.4131667000001,40.5325,99.69166667,13.56416667,2.54125,237.56120256666668 -2015-09-16 11:00:00,12.70329072,995.0554167000001,59.3325,98.66666667,14.1175,2.6489999999999996,237.5638394166667 -2015-09-16 12:00:00,60.39528106,994.60775,69.54666667,98.11666667,14.6075,3.178666667,237.5674069 -2015-09-16 13:00:00,3.3453731760000003,994.3726667000001,93.20333333,96.53333333,14.98666667,3.201166667,237.57252543333337 -2015-09-16 14:00:00,0.0,994.0215,158.50916669999998,94.34166667,15.93333333,3.4405,237.5756276 -2015-09-16 15:00:00,0.0,993.2953332999999,76.1725,95.00833333,16.50333333,3.5415,237.57981551666663 -2015-09-16 16:00:00,0.0,992.9790832999998,89.04583333,94.35833333,16.98333333,2.86375,237.57981551666663 -2015-09-16 17:00:00,0.0,992.3121667000001,17.48041667,92.41666667,16.71333333,2.858166667,237.583383 -2015-09-16 18:00:00,19.66341554,992.8479167000002,1.7696666669999999,94.70833333,16.14333333,1.919,237.58369323333332 -2015-09-16 19:00:00,41.848960299999995,992.9358332999999,0.0,95.45,16.2025,3.359916667,237.58726071666663 -2015-09-16 20:00:00,3.797754912,993.06125,0.0,93.5,16.87916667,4.618583333,237.58741583333332 -2015-09-16 21:00:00,0.0,993.6581667000002,0.0,94.04166667,16.25916667,2.73275,237.58896691666666 -2015-09-16 22:00:00,0.0,994.7184167000001,0.0,93.575,15.6575,0.38783333299999995,237.58958735 -2015-09-16 23:00:00,7.821302208,995.6118332999998,0.0,93.975,15.78166667,0.93375,237.59237929999998 -2015-09-17 00:00:00,28.24641449,995.1918332999999,0.0,96.43333333,15.25166667,1.5138333330000002,237.59455081666667 -2015-09-17 01:00:00,0.0,994.61125,0.0,99.5,14.92,1.234416667,237.59780809999998 -2015-09-17 02:00:00,0.0,994.9178332999999,0.0,98.0,14.8,2.459833333,237.60122046666663 -2015-09-17 03:00:00,0.0,994.4875832999999,0.0,97.475,14.63,1.5456666669999999,237.60385731666665 -2015-09-17 04:00:00,0.0,994.48625,0.0,99.08333333,13.64916667,0.270916667,237.6049430833333 -2015-09-17 05:00:00,0.0,994.8195832999999,0.03525,100.0,12.91666667,0.09833333300000001,237.60664926666666 -2015-09-17 06:00:00,0.0,995.2618332999999,5.707833333,100.0,12.91666667,0.28675,237.60633906666666 -2015-09-17 07:00:00,0.0,995.5083332999999,19.94833333,100.0,14.26083333,1.129916667,237.60680436666667 -2015-09-17 08:00:00,2.589947304,995.9796667000002,44.0275,98.15833333,14.9025,1.372166667,237.60680440000002 -2015-09-17 09:00:00,10.37359846,996.5773332999999,68.09,94.33333333,15.49666667,0.791333333,237.6075799333333 -2015-09-17 10:00:00,10.79117275,997.2713332999999,70.52916667,96.025,15.535,1.17975,237.60851058333333 -2015-09-17 11:00:00,17.09111251,998.2618332999999,66.21,95.58333333,15.12916667,0.43808333299999996,237.60913101666665 -2015-09-17 12:00:00,2.430502272,999.07425,54.52666667,94.4,14.69833333,0.951583333,237.60928610000005 -2015-09-17 13:00:00,0.0,999.8850832999999,59.71333333,92.2,14.60416667,1.5375833330000002,237.6108371833333 -2015-09-17 14:00:00,0.0,1000.288,54.45,92.25,14.6075,2.0124166669999997,237.61130249999997 -2015-09-17 15:00:00,0.0,1000.870167,27.6725,92.63333333,14.4425,2.1078333330000003,237.61471488333336 -2015-09-17 16:00:00,0.0,1001.419583,18.5425,93.71666667,14.3125,1.63,237.61347403333332 -2015-09-17 17:00:00,8.755675056,1002.170167,28.52166667,96.43333333,14.01,2.003833333,237.61362914999998 -2015-09-17 18:00:00,28.78534668,1002.98025,7.059,96.54166667,13.6725,1.673,237.6150251 -2015-09-17 19:00:00,0.0,1003.771333,0.016416667,95.69166667,13.69333333,1.4795,237.6193681166667 -2015-09-17 20:00:00,2.632156464,1004.949833,0.0,96.59166667,13.46333333,0.589,237.61936811666666 -2015-09-17 21:00:00,0.0,1006.123083,0.0,95.51666667,12.6525,0.066416667,237.61874766666668 -2015-09-17 22:00:00,0.0,1007.2564169999999,0.0,99.75,10.81833333,0.165416667,237.61952321666664 -2015-09-17 23:00:00,2.4050227680000003,1008.129667,0.0,100.0,9.520833332999999,0.1005,237.62107428333331 -2015-09-18 00:00:00,0.0,1008.4238330000001,0.0,100.0,8.375833333,0.004,237.62107428333334 -2015-09-18 01:00:00,0.0,1008.2595,0.0,100.0,8.085583332999999,0.065166667,237.62247026666668 -2015-09-18 02:00:00,0.0,1008.8285,0.0,100.0,7.45775,0.131166667,237.62278046666668 -2015-09-18 03:00:00,0.0,1009.295167,0.0,100.0,8.303166667000001,0.10358333300000001,237.62216005000002 -2015-09-18 04:00:00,0.0,1009.575,0.0,100.0,8.620833333,0.16725,237.62247026666668 -2015-09-18 05:00:00,0.0,1009.760083,0.03525,100.0,9.305,0.10341666699999999,237.62216004999996 -2015-09-18 06:00:00,0.0,1010.3535,5.77675,100.0,9.6475,0.16175,237.62122941666667 -2015-09-18 07:00:00,0.0,1010.8285,43.83916667,100.0,10.13583333,0.03425,237.62122941666667 -2015-09-18 08:00:00,0.0,1011.437417,80.12583333,100.0,11.315,0.205,237.62153963333336 -2015-09-18 09:00:00,0.0,1011.935083,162.4033333,99.09166667,13.25166667,0.530666667,237.6213845 -2015-09-18 10:00:00,0.0,1012.418417,201.6875,88.61666667,15.08166667,0.537166667,237.62076406666665 -2015-09-18 11:00:00,2.7450528480000003,1012.5155,229.1391667,81.47416667,16.50833333,1.06725,237.61921298333334 -2015-09-18 12:00:00,0.0,1012.577333,310.6666667,82.59333333,16.8575,0.26208333300000003,237.62076408333334 -2015-09-18 13:00:00,17.59141622,1012.925583,96.3375,84.6175,17.16833333,0.660833333,237.6185925666667 -2015-09-18 14:00:00,12.11889055,1012.8,276.3,86.925,15.9925,0.35025,237.61952320000003 -2015-09-18 15:00:00,0.0,1012.614917,289.8,77.91083333,18.36333333,0.617083333,237.6179721166667 -2015-09-18 16:00:00,0.0,1012.5571669999999,158.5783333,71.87333333,18.25333333,0.9540000000000001,237.6167313 -2015-09-18 17:00:00,0.0,1012.5095,41.09916667,77.8325,16.5625,0.4985,237.6173517166667 -2015-09-18 18:00:00,0.0,1012.861833,4.20575,93.79166667,14.65333333,0.36458333299999995,237.6162659833333 -2015-09-18 19:00:00,0.0,1013.602917,0.005166667,99.48333333,12.24333333,0.0035833329999999997,237.61564553333332 -2015-09-18 20:00:00,0.0,1014.011833,0.0,99.9,11.08416667,0.250916667,237.61564553333332 -2015-09-18 21:00:00,0.0,1014.4345,0.0,97.30833333,10.1875,0.07200000000000001,237.61455979999997 -2015-09-18 22:00:00,0.0,1014.348833,0.0,99.25833333,9.490833333,0.15358333300000002,237.61781701666666 -2015-09-18 23:00:00,0.0,1014.333333,0.0,100.0,8.413333332999999,0.047416667,237.61859256666665 -2015-09-19 00:00:00,0.0,1014.383333,0.0,100.0,8.120083333,0.09991666699999999,237.61952320000003 -2015-09-19 01:00:00,0.0,1014.58625,0.0,100.0,8.488333333,0.235166667,237.6193681 -2015-09-19 02:00:00,0.0,1014.783333,0.0,100.0,9.405833333,0.055166667,237.61843745000002 -2015-09-19 03:00:00,0.0,1014.92675,0.0,100.0,9.769166667,0.225333333,237.61781703333335 -2015-09-19 04:00:00,0.0,1015.00775,0.0,100.0,9.9275,0.02225,237.61905791666666 -2015-09-19 05:00:00,0.0,1015.217833,0.039916667,100.0,10.13583333,0.072833333,237.6193681 -2015-09-19 06:00:00,0.0,1015.477333,8.09475,100.0,10.5025,0.24766666699999998,237.61983343333335 -2015-09-19 07:00:00,0.0,1015.8439999999999,37.43666667,100.0,11.20833333,0.26725,237.61983343333335 -2015-09-19 08:00:00,0.0,1016.294583,103.9683333,99.875,12.44333333,0.5579999999999999,237.6185925666667 -2015-09-19 09:00:00,0.0,1016.60175,160.9666667,89.85833333,14.4125,0.77025,237.61843745000002 -2015-09-19 10:00:00,0.0,1016.876167,181.1583333,85.53333333,14.97333333,0.62525,237.61828236666668 -2015-09-19 11:00:00,0.0,1017.01725,271.35,82.54083333,15.92,0.485916667,237.61719660000003 -2015-09-19 12:00:00,0.0,1016.991083,136.2833333,79.99666667,16.575,0.462916667,237.61735171666666 -2015-09-19 13:00:00,0.0,1016.90775,367.3333333,75.59416667,17.0525,0.833833333,237.61518021666666 -2015-09-19 14:00:00,0.0,1016.764917,276.8833333,70.93666667,17.78166667,1.151166667,237.6119229666667 -2015-09-19 15:00:00,3.175446792,1016.717833,220.8833333,76.06083333,15.82,2.1215833330000002,237.61176781666666 -2015-09-19 16:00:00,0.0,1016.841667,158.04166669999998,68.4125,16.8825,0.471916667,237.60820034999998 -2015-09-19 17:00:00,2.801662416,1017.002917,25.51083333,85.1075,15.02083333,0.781666667,237.60944121666662 -2015-09-19 18:00:00,0.0,1017.4939999999999,7.4226666670000006,91.85833333,13.77333333,0.280416667,237.6086657 -2015-09-19 19:00:00,0.0,1018.12075,0.000916667,99.70833333,12.685,0.1955,237.6083554833333 -2015-09-19 20:00:00,0.0,1018.669,0.0,100.0,12.57083333,0.09116666699999999,237.60975143333334 -2015-09-19 21:00:00,0.0,1019.019583,0.0,100.0,12.4075,0.083083333,237.60913099999996 -2015-09-19 22:00:00,0.0,1019.443417,0.0,100.0,12.45083333,0.025333333,237.6085105666667 -2015-09-19 23:00:00,0.0,1019.589917,0.0,99.28333333,12.43916667,0.382333333,237.60913099999996 -2015-09-20 00:00:00,0.0,1019.485083,0.0,99.28333333,11.70416667,0.08325,237.6105269666667 -2015-09-20 01:00:00,0.0,1019.499417,0.0,99.34166667,11.70083333,0.048583333,237.61238826666667 -2015-09-20 02:00:00,0.0,1019.439333,0.0,99.79166667,11.33666667,0.059166667,237.61393936666664 -2015-09-20 03:00:00,0.0,1019.351167,0.0,99.93333333,11.1375,0.147333333,237.61424956666667 -2015-09-20 04:00:00,0.0,1019.208333,0.0,99.90833333,11.21583333,0.42766666700000006,237.61580064999998 -2015-09-20 05:00:00,0.0,1019.291667,0.030083332999999997,100.0,11.12666667,0.042166667000000005,237.61611086666665 -2015-09-20 06:00:00,0.0,1019.78625,7.44475,100.0,10.90166667,0.22016666699999998,237.61549043333332 -2015-09-20 07:00:00,0.0,1019.935083,33.46916667,99.875,11.36416667,0.47483333299999997,237.61549043333332 -2015-09-20 08:00:00,0.0,1020.193417,88.06666667,98.525,12.22583333,0.367666667,237.61642108333334 -2015-09-20 09:00:00,0.0,1020.375,179.20833330000002,90.54166667,13.53333333,0.966916667,237.61626596666665 -2015-09-20 10:00:00,0.0,1020.341667,317.525,74.53416667,14.42916667,2.008166667,237.61642106666667 -2015-09-20 11:00:00,0.0,1020.248833,462.6833333000001,68.51916667,15.64083333,2.1775833330000003,237.61378424999998 -2015-09-20 12:00:00,0.0,1020.141083,474.3166666999999,64.68916667,16.48,2.07225,237.61021675000003 -2015-09-20 13:00:00,0.0,1019.880417,356.1833333,64.16583333,16.15083333,2.16025,237.60664926666664 -2015-09-20 14:00:00,0.0,1019.379833,245.675,64.39583333,16.13666667,2.634,237.60571861666662 -2015-09-20 15:00:00,0.0,1018.89825,147.2475,67.23666667,16.25166667,1.5888333330000002,237.6040124333333 -2015-09-20 16:00:00,0.0,1018.725583,41.89083333,73.75,14.99416667,1.6128333330000002,237.6030817833333 -2015-09-20 17:00:00,0.0,1018.67325,18.4025,77.545,14.2725,1.906333333,237.60199601666667 -2015-09-20 18:00:00,0.0,1018.4238330000001,3.6965,82.68333333,13.34,0.5615,237.60230623333334 -2015-09-20 19:00:00,0.0,1018.433917,0.0,92.48333333,10.91583333,0.063166667,237.6021511333333 -2015-09-20 20:00:00,0.0,1018.443417,0.0,90.675,10.7125,0.22575,237.60370219999996 -2015-09-20 21:00:00,0.0,1018.464917,0.0,88.28333333,11.11583333,0.10800000000000001,237.60184089999998 -2015-09-20 22:00:00,0.0,1018.255417,0.0,88.225,11.11083333,0.067166667,237.60277155000003 -2015-09-20 23:00:00,0.0,1017.6715,0.0,89.35,11.09083333,0.129833333,237.6044777333333 -2015-09-21 00:00:00,0.0,1017.122083,0.0,94.39166667,11.45666667,0.106,237.60757991666665 -2015-09-21 01:00:00,0.0,1016.731583,0.0,96.425,10.695,0.013083333,237.60820034999998 -2015-09-21 02:00:00,0.0,1016.272083,0.0,99.76666667,8.986666667,0.016416667,237.61021673333335 -2015-09-21 03:00:00,0.0,1015.814917,0.0,100.0,8.191583332999999,0.079666667,237.61068206666667 -2015-09-21 04:00:00,0.0,1015.464333,0.0,100.0,8.729166667000001,0.09125,237.61083718333336 -2015-09-21 05:00:00,0.0,1015.258917,0.029083333,100.0,8.935,0.072833333,237.61300873333334 -2015-09-21 06:00:00,0.0,1015.383333,6.1325,100.0,8.855833333,0.0665,237.61192295 -2015-09-21 07:00:00,0.0,1014.970333,26.97916667,100.0,8.836666667000001,0.004333333,237.61362913333332 -2015-09-21 08:00:00,0.0,1014.876167,122.4325,98.3,11.77833333,0.195833333,237.61254338333333 -2015-09-21 09:00:00,0.0,1014.61375,288.03333330000004,83.13583333,14.59,0.46399999999999997,237.61192295 -2015-09-21 10:00:00,0.0,1014.053667,293.59166669999996,75.1775,16.02833333,1.074,237.61083718333336 -2015-09-21 11:00:00,0.0,1013.036417,156.7666667,79.99333333,17.555,1.4709166669999998,237.61238826666667 -2015-09-21 12:00:00,0.0,1012.361417,161.5916667,75.99083333,16.83083333,1.109666667,237.6103718833333 -2015-09-21 13:00:00,0.0,1011.48875,183.80833330000002,74.38583333,16.77083333,0.27975,237.60897588333333 -2015-09-21 14:00:00,0.0,1010.9119999999999,411.2916667,64.36333333,17.47666667,0.134416667,237.60416751666662 -2015-09-21 15:00:00,0.0,1010.045333,138.9591667,63.02666667,18.25833333,0.5638333329999999,237.59920406666663 -2015-09-21 16:00:00,0.0,1009.247667,101.0525,71.76666667,17.37916667,0.897083333,237.60075516666666 -2015-09-21 17:00:00,0.0,1008.644167,43.6,84.875,15.96,0.539416667,237.6024613333333 -2015-09-21 18:00:00,0.0,1008.064917,5.254583333,93.325,13.48583333,0.12125,237.60370219999996 -2015-09-21 19:00:00,0.0,1007.6310000000001,0.0,96.04166667,10.9225,0.039833333,237.60277154999994 -2015-09-21 20:00:00,0.0,1007.129833,0.0,96.65833333,10.38,0.0705,237.60432264999997 -2015-09-21 21:00:00,0.0,1006.607167,0.0,94.725,10.225,0.021,237.6060288333333 -2015-09-21 22:00:00,0.0,1006.313167,0.0,89.80833333,11.00666667,0.238083333,237.60494306666666 -2015-09-21 23:00:00,0.0,1005.694167,0.0,89.425,11.26666667,0.120333333,237.60633906666666 -2015-09-22 00:00:00,0.0,1004.789917,0.0,94.06666667,11.20583333,0.045416667,237.6083554666667 -2015-09-22 01:00:00,0.0,1004.41025,0.0,89.29166667,11.4425,0.053416667,237.6092861 -2015-09-22 02:00:00,0.0,1003.581583,0.0,91.43333333,10.75083333,0.010166666999999999,237.61238828333333 -2015-09-22 03:00:00,0.0,1003.047667,0.0,94.79166667,10.14666667,0.01425,237.6128536 -2015-09-22 04:00:00,2.7383920560000004,1002.57925,0.0,85.2,11.47083333,0.8653333329999999,237.6126985 -2015-09-22 05:00:00,0.0,1001.95425,0.0,88.09166667,12.05,1.332333333,237.61362913333332 -2015-09-22 06:00:00,0.0,1001.505417,6.994916667000001,86.6,12.18333333,1.779166667,237.61316380000002 -2015-09-22 07:00:00,0.0,1001.0488330000001,22.07666667,85.88333333,12.21666667,2.19275,237.61300871666666 -2015-09-22 08:00:00,9.154104456,1000.756583,50.515,86.56666667,12.74333333,2.018333333,237.61254336666664 -2015-09-22 09:00:00,0.0,1000.522667,74.08416667,87.05,13.09666667,1.9398333330000002,237.6126985 -2015-09-22 10:00:00,0.0,1000.089333,95.445,89.14166667,13.95916667,2.350166667,237.61192293333332 -2015-09-22 11:00:00,10.1710806,999.5125832999998,126.60833329999998,93.24166667,14.28833333,2.1145,237.6130087 -2015-09-22 12:00:00,14.23500792,999.0304167000002,148.30833330000002,93.64166667,14.2525,3.101833333,237.61331893333332 -2015-09-22 13:00:00,0.0,998.5988332999999,137.0683333,92.49166667,14.49416667,2.1109166669999997,237.61238828333333 -2015-09-22 14:00:00,64.6713767,998.2829167000001,34.59833333,95.73333333,13.475,1.4718333330000002,237.61704151666672 -2015-09-22 15:00:00,19.36306481,997.1868332999999,221.6283333,90.73333333,13.56,2.211666667,237.61874766666668 -2015-09-22 16:00:00,0.0,997.3899167000002,144.4575,84.48333333,13.94083333,2.600083333,237.61921298333337 -2015-09-22 17:00:00,0.0,996.8304167000001,27.48583333,92.9,12.88166667,1.14875,237.62402135000002 -2015-09-22 18:00:00,0.0,996.7,4.31975,94.13333333,12.52,0.987916667,237.62386625 -2015-09-22 19:00:00,42.03352435,997.0600832999999,0.0,96.09166667,12.65916667,1.5248333330000001,237.6232458166667 -2015-09-22 20:00:00,17.39359699,997.2856667000001,0.0,98.3,11.51416667,0.38391666700000004,237.6303808 -2015-09-22 21:00:00,2.407397088,997.6290832999998,0.0,96.88333333,9.68,0.4085,237.63472381666665 -2015-09-22 22:00:00,0.0,998.0184167000001,0.0,96.98333333,8.63,0.234583333,237.63674025 -2015-09-22 23:00:00,0.0,998.5261667000001,0.0,97.33333333,8.466416667,0.351583333,237.63549935 -2015-09-23 00:00:00,0.0,998.8445832999998,0.0,98.89166667,7.455916667,0.356833333,237.63611980000005 -2015-09-23 01:00:00,2.412086928,999.0005832999999,0.0,100.0,6.844916667000001,0.137833333,237.63767086666667 -2015-09-23 02:00:00,0.0,999.40175,0.0,100.0,6.8579166670000005,0.09091666699999999,237.63565446666667 -2015-09-23 03:00:00,0.0,999.7040832999999,0.0,100.0,7.5309166670000005,0.206833333,237.63565446666667 -2015-09-23 04:00:00,0.0,1000.208917,0.0,100.0,7.71275,0.171333333,237.63472383333337 -2015-09-23 05:00:00,0.0,1000.538583,0.0,100.0,8.105,0.052416667,237.63611978333333 -2015-09-23 06:00:00,0.0,1001.394583,2.9493333330000002,100.0,8.648333333,0.22316666699999999,237.63410341666668 -2015-09-23 07:00:00,0.0,1001.919583,35.39416667,99.94166667,9.363333333,0.28875,237.63348295 -2015-09-23 08:00:00,0.0,1003.0415,43.66833333,97.53333333,10.43416667,0.22899999999999998,237.63441361666665 -2015-09-23 09:00:00,0.0,1003.95525,96.30583333,95.4,11.11916667,0.12475,237.63317273333337 -2015-09-23 10:00:00,0.0,1004.768417,164.8,95.525,11.84166667,0.235833333,237.6339482833333 -2015-09-23 11:00:00,0.0,1005.070167,300.85,89.05833333,13.61333333,0.558333333,237.63394828333335 -2015-09-23 12:00:00,0.0,1005.526167,288.6666667,89.775,14.19833333,0.748416667,237.63301763333334 -2015-09-23 13:00:00,0.0,1005.73625,203.75,85.13333333,14.8325,0.60825,237.63193188333332 -2015-09-23 14:00:00,0.0,1006.04225,130.34166670000002,90.26666667,14.64083333,0.547416667,237.63084609999999 -2015-09-23 15:00:00,2.550166176,1006.360083,128.53,94.98333333,14.06416667,0.516416667,237.63084611666667 -2015-09-23 16:00:00,0.0,1006.863,74.085,92.375,14.53583333,0.29825,237.6306910333333 -2015-09-23 17:00:00,0.0,1007.595167,22.14325,93.46666667,13.6425,0.28775,237.63084611666667 -2015-09-23 18:00:00,0.0,1008.406417,1.78325,94.91666667,12.80916667,0.167583333,237.6294501333333 -2015-09-23 19:00:00,2.42957256,1009.329667,0.0,99.00833333,12.05416667,0.095,237.62867458333335 -2015-09-23 20:00:00,2.4050627280000003,1010.144583,0.0,99.96666667,11.07083333,0.042916667,237.6289848166667 -2015-09-23 21:00:00,0.0,1010.679083,0.0,100.0,11.62916667,0.164166667,237.6282092833333 -2015-09-23 22:00:00,12.15661867,1011.21125,0.0,100.0,11.93166667,0.141583333,237.62945015 -2015-09-23 23:00:00,0.0,1011.770167,0.0,100.0,11.78333333,0.111083333,237.62867461666667 -2015-09-24 00:00:00,0.0,1012.310083,0.0,100.0,11.5625,0.2235,237.62913991666667 -2015-09-24 01:00:00,0.0,1012.6345,0.0,99.96666667,11.41166667,0.0975,237.63069099999998 -2015-09-24 02:00:00,0.0,1012.724417,0.0,99.96666667,11.35,0.096916667,237.6323971833333 -2015-09-24 03:00:00,0.0,1012.658917,0.0,99.81666667,10.9775,0.145333333,237.6336380833333 -2015-09-24 04:00:00,0.0,1013.01125,0.0,100.0,10.70083333,0.144833333,237.63348296666666 -2015-09-24 05:00:00,0.0,1013.343417,0.0005,99.15,10.995,0.39816666700000003,237.63332785000003 -2015-09-24 06:00:00,2.537562552,1013.7535,3.307833333,98.93333333,11.03583333,0.875416667,237.63348296666672 -2015-09-24 07:00:00,0.0,1014.286833,35.85083333,96.79166667,11.95,0.296083333,237.6328625333333 -2015-09-24 08:00:00,0.0,1014.829667,110.6525,92.59166667,12.8325,0.588,237.63239721666665 -2015-09-24 09:00:00,0.0,1015.2405,266.5583333,86.31666667,14.355,0.665166667,237.62976038333332 -2015-09-24 10:00:00,0.0,1015.1833330000001,350.1666667,81.3625,15.8875,0.792,237.63038078333332 -2015-09-24 11:00:00,0.0,1015.064333,295.025,77.9625,17.13583333,0.680333333,237.62913991666667 -2015-09-24 12:00:00,0.0,1014.850583,294.40833330000004,72.80583333,17.4525,0.629416667,237.62789906666669 -2015-09-24 13:00:00,0.0,1014.756583,139.5791667,74.4425,17.335,0.876916667,237.62541731666667 -2015-09-24 14:00:00,0.0,1014.497667,175.55,73.69166667,16.98083333,1.112583333,237.62231516666668 -2015-09-24 15:00:00,0.0,1014.391667,200.19166669999998,70.295,17.13083333,1.191666667,237.61874768333334 -2015-09-24 16:00:00,0.0,1014.375,116.22083329999998,71.25666667,17.12333333,1.079333333,237.61719658333334 -2015-09-24 17:00:00,0.0,1014.518417,43.61916667,74.30166667,16.40083333,1.013583333,237.61626596666665 -2015-09-24 18:00:00,0.0,1014.6439999999999,5.384416667000001,85.16666667,13.87083333,0.500833333,237.61595575 -2015-09-24 19:00:00,0.0,1015.044583,0.0,96.48333333,10.76,0.06925,237.61487001666663 -2015-09-24 20:00:00,0.0,1015.351167,0.0,91.825,9.554166667,0.11791666699999999,237.61362913333332 -2015-09-24 21:00:00,0.0,1015.616667,0.0,85.875,8.800833333,0.08858333300000001,237.61362914999998 -2015-09-24 22:00:00,0.0,1015.675,0.0,87.63333333,8.2125,0.047916667,237.61331895 -2015-09-24 23:00:00,0.0,1015.4238330000001,0.0,97.21666667,7.919,0.083666667,237.61595575 -2015-09-25 00:00:00,0.0,1015.400583,0.0,100.0,7.410416667000001,0.071,237.6198334166667 -2015-09-25 01:00:00,0.0,1015.4845,0.0,100.0,7.166583332999999,0.049,237.62045385000002 -2015-09-25 02:00:00,0.0,1015.649417,0.0,100.0,8.651666667,0.01075,237.62014363333333 -2015-09-25 03:00:00,0.0,1015.66725,0.0,100.0,9.718333333,0.043916667,237.62014364999996 -2015-09-25 04:00:00,0.0,1015.885083,0.0,100.0,10.20916667,0.0335,237.6193681 -2015-09-25 05:00:00,0.0,1016.0761669999999,0.0,100.0,10.11583333,0.014583333,237.62122938333334 -2015-09-25 06:00:00,0.0,1016.20175,6.69125,100.0,8.883333333,0.034666667000000005,237.62371115 -2015-09-25 07:00:00,0.0,1016.711833,34.28583333,100.0,9.5025,0.054416667,237.6234009166667 -2015-09-25 08:00:00,0.0,1017.267833,98.46583333,98.75,11.3175,0.152916667,237.62029875 -2015-09-25 09:00:00,0.0,1017.493417,263.6,84.17583333,14.68083333,0.767916667,237.62060896666662 -2015-09-25 10:00:00,0.0,1017.6655,237.19166669999998,77.1275,16.26333333,0.705666667,237.6189027833333 -2015-09-25 11:00:00,0.0,1017.489917,323.1,72.1125,17.4075,0.590583333,237.61750683333332 -2015-09-25 12:00:00,0.0,1017.275,283.3166667,64.7675,16.99416667,0.708666667,237.6147149 -2015-09-25 13:00:00,0.0,1017.410083,413.6083333,59.71,17.1375,2.241666667,237.61021676666664 -2015-09-25 14:00:00,0.0,1017.306583,275.1333333,55.3875,17.2025,2.1430000000000002,237.60726971666668 -2015-09-25 15:00:00,0.0,1017.166083,237.3916667,52.43833333,17.63,2.1356666669999997,237.60478794999995 -2015-09-25 16:00:00,0.0,1017.286833,119.25083329999998,56.26583333,17.0975,2.058333333,237.60323688333332 -2015-09-25 17:00:00,0.0,1017.57675,29.60583333,69.26,15.70666667,1.13825,237.6009102666667 -2015-09-25 18:00:00,0.0,1018.010083,1.95875,85.22666667,13.18583333,0.12475,237.60091025 -2015-09-25 19:00:00,0.0,1018.671917,0.0,92.35,12.10083333,0.059583332999999995,237.5999796 -2015-09-25 20:00:00,0.0,1019.05,0.0,95.30833333,11.6825,0.11683333300000001,237.59997959999998 -2015-09-25 21:00:00,0.0,1019.2689999999999,0.0,96.18333333,10.97166667,0.019083333,237.6004449333333 -2015-09-25 22:00:00,0.0,1019.5583330000001,0.0,97.775,10.795,0.12666666699999998,237.60122046666663 -2015-09-25 23:00:00,0.0,1019.4333330000001,0.0,98.63333333,10.88083333,0.09783333300000001,237.6040124333333 -2015-09-26 00:00:00,0.0,1019.607167,0.0,99.05833333,10.49166667,0.025,237.6035471 -2015-09-26 01:00:00,0.0,1019.5678330000001,0.0,99.76666667,10.2075,0.072333333,237.60571861666665 -2015-09-26 02:00:00,0.0,1019.59225,0.0,100.0,9.9575,0.045166667,237.60649415 -2015-09-26 03:00:00,0.0,1019.625,0.0,100.0,9.84,0.011000000000000001,237.60773504999997 -2015-09-26 04:00:00,0.0,1019.6,0.0,100.0,9.77,0.04275,237.60897591666665 -2015-09-26 05:00:00,0.0,1019.693417,0.0,100.0,9.774166667000001,0.047333333,237.60959634999998 -2015-09-26 06:00:00,0.0,1020.194583,3.242083333,100.0,9.7825,0.001,237.61068208333333 -2015-09-26 07:00:00,0.0,1020.569583,29.06416667,100.0,10.23583333,0.00175,237.61037186666667 -2015-09-26 08:00:00,0.0,1020.985083,78.96333333,98.30833333,11.33916667,0.27399999999999997,237.60913098333333 -2015-09-26 09:00:00,0.0,1021.29225,149.4083333,90.975,12.80916667,1.159166667,237.60835545 -2015-09-26 10:00:00,0.0,1021.4,242.525,82.95416667,13.68083333,2.260333333,237.60835543333334 -2015-09-26 11:00:00,0.0,1021.367833,266.15833330000004,80.24,14.4075,2.4195,237.60726968333333 -2015-09-26 12:00:00,0.0,1021.4405,280.59166669999996,75.03916667,15.2475,2.8031666669999997,237.60478796666666 -2015-09-26 13:00:00,0.0,1021.4095,246.1333333,69.5525,15.83166667,3.33275,237.60091025 -2015-09-26 14:00:00,0.0,1021.264917,241.0333333,66.86,16.15,2.763833333,237.59997959999998 -2015-09-26 15:00:00,0.0,1021.241083,186.5008333,69.35083333,15.95333333,3.4594166669999997,237.59780808333332 -2015-09-26 16:00:00,0.0,1021.367833,32.38583333,79.05416667,14.89833333,2.658666667,237.5981183166667 -2015-09-26 17:00:00,0.0,1021.677917,22.40083333,81.83916667,14.30083333,2.1414166669999997,237.59858363333333 -2015-09-26 18:00:00,0.0,1022.177917,1.7516666669999998,86.6,13.30166667,0.4845,237.59703255 -2015-09-26 19:00:00,0.0,1022.552333,0.0,92.65,12.8075,0.642166667,237.59780810000004 -2015-09-26 20:00:00,0.0,1022.944583,0.0,97.49166667,11.54666667,0.070166667,237.59796321666667 -2015-09-26 21:00:00,0.0,1023.335083,0.0,99.36666667,10.9175,0.018416667,237.5990489666667 -2015-09-26 22:00:00,0.0,1023.535083,0.0,100.0,10.36583333,0.10133333300000001,237.6004449333333 -2015-09-26 23:00:00,0.0,1023.708917,0.0,100.0,10.20083333,0.6153333329999999,237.60075514999997 -2015-09-27 00:00:00,0.0,1023.86725,0.0,100.0,9.944166667000001,0.854666667,237.6021511333333 -2015-09-27 01:00:00,0.0,1024.058917,0.0,100.0,8.535083333,0.253416667,237.60323686666666 -2015-09-27 02:00:00,0.0,1024.185083,0.0,100.0,6.5774166670000005,0.15466666699999998,237.60478796666666 -2015-09-27 03:00:00,0.0,1024.275,0.0,100.0,5.40875,0.0055,237.60726969999996 -2015-09-27 04:00:00,0.0,1024.585083,0.0,100.0,4.65375,0.028666667000000003,237.60820035000003 -2015-09-27 05:00:00,0.0,1024.969583,0.0,100.0,3.862333333,0.111,237.60897588333333 -2015-09-27 06:00:00,0.0,1025.4118330000001,4.769416667,100.0,3.554416667,0.0555,237.60975141666665 -2015-09-27 07:00:00,0.0,1026.044583,18.70333333,100.0,5.54075,0.002916667,237.6097514333333 -2015-09-27 08:00:00,0.0,1026.629083,106.725,99.8,9.180833332999999,1.024166667,237.60959631666665 -2015-09-27 09:00:00,0.0,1027.1595,297.46666669999996,91.425,11.27916667,2.1035,237.60757991666665 -2015-09-27 10:00:00,0.0,1027.45175,381.46666669999996,84.55,13.17416667,3.154833333,237.60680438333327 -2015-09-27 11:00:00,0.0,1027.374417,449.3,74.1875,14.69666667,3.407833333,237.6063390666667 -2015-09-27 12:00:00,0.0,1027.35,266.325,66.90416667,14.87583333,3.68775,237.6060288166666 -2015-09-27 13:00:00,0.0,1027.28875,292.7333333,63.83833333,15.46666667,3.323,237.6021511333333 -2015-09-27 14:00:00,0.0,1027.135083,284.825,60.70833333,15.53083333,3.2311666669999997,237.59966938333332 -2015-09-27 15:00:00,0.0,1027.249417,203.6725,64.27666667,15.8975,3.409583333,237.59749786666669 -2015-09-27 16:00:00,0.0,1027.310083,134.57166669999998,66.25583333,15.77583333,2.903166667,237.59563658333332 -2015-09-27 17:00:00,0.0,1027.583917,22.22583333,74.78916667,14.5625,1.8248333330000002,237.59501615000002 -2015-09-27 18:00:00,0.0,1028.030833,2.385,90.925,13.54416667,1.34175,237.59548145 -2015-09-27 19:00:00,0.0,1028.57675,0.0,95.60833333,12.13583333,0.912666667,237.5940855 -2015-09-27 20:00:00,0.0,1028.894583,0.0,98.89166667,10.9325,1.078833333,237.5961019 -2015-09-27 21:00:00,0.0,1029.4285,0.0,100.0,8.6025,0.35458333299999995,237.59687743333333 -2015-09-27 22:00:00,0.0,1029.841083,0.0,100.0,7.616166667000001,0.289083333,237.59718765 -2015-09-27 23:00:00,0.0,1029.858917,0.0,100.0,7.19025,0.304833333,237.5979631833333 -2015-09-28 00:00:00,0.0,1029.825,0.0,100.0,7.0315,0.068916667,237.5993591666667 -2015-09-28 01:00:00,0.0,1030.033917,0.0,100.0,5.281166667,0.063,237.60013471666664 -2015-09-28 02:00:00,0.0,1029.999417,0.0,100.0,4.258416667,0.10091666699999999,237.60339199999999 -2015-09-28 03:00:00,0.0,1029.935083,0.0,100.0,3.55325,0.0195,237.60416751666662 -2015-09-28 04:00:00,0.0,1030.175,0.0,100.0,2.906,0.00675,237.60370219999996 -2015-09-28 05:00:00,0.0,1030.418417,0.0,100.0,2.430166667,0.0048333329999999996,237.6044777333333 -2015-09-28 06:00:00,0.0,1030.6345,4.147666667,100.0,2.20975,0.015166667,237.60494306666666 -2015-09-28 07:00:00,0.0,1031.14575,16.64916667,100.0,4.452083333,0.045416667,237.60494308333332 -2015-09-28 08:00:00,0.0,1031.593417,106.59666670000001,99.94166667,8.152000000000001,1.362333333,237.60339201666662 -2015-09-28 09:00:00,0.0,1031.944583,297.925,91.95833333,10.28916667,1.7950833330000002,237.60246136666663 -2015-09-28 10:00:00,0.0,1032.19825,381.15,82.77333333,12.6175,2.5075,237.60215111666665 -2015-09-28 11:00:00,0.0,1031.806,415.05,72.84833333,14.56333333,3.229333333,237.60106535 -2015-09-28 12:00:00,0.0,1031.48875,484.13333330000006,59.61666667,16.11666667,2.725166667,237.59889385 -2015-09-28 13:00:00,0.0,1030.925,413.5,56.8525,16.25916667,3.073083333,237.59656721666667 -2015-09-28 14:00:00,0.0,1030.545917,361.9833333,54.4,16.48416667,3.9005,237.59237928333334 -2015-09-28 15:00:00,0.0,1030.2131669999999,297.6833333,51.97916667,16.62166667,3.5485833330000003,237.58989756666665 -2015-09-28 16:00:00,0.0,1029.841667,128.15916670000001,55.16916667,16.06916667,3.39125,237.58896691666666 -2015-09-28 17:00:00,0.0,1030.045167,15.53583333,62.41583333,15.00083333,2.125166667,237.58664029999997 -2015-09-28 18:00:00,0.0,1030.519583,1.49975,81.665,11.6575,0.327916667,237.58710561666666 -2015-09-28 19:00:00,0.0,1030.808333,0.0,94.73333333,7.526666667000001,0.053333333,237.58788114999996 -2015-09-28 20:00:00,0.0,1030.791667,0.0,98.20833333,6.277916667,0.073083333,237.5891220333333 -2015-09-28 21:00:00,0.0,1030.94225,0.0,99.95833333,5.558333332999999,0.132,237.5891220333333 -2015-09-28 22:00:00,0.0,1030.908917,0.0,100.0,7.077000000000001,0.34775,237.58989756666665 -2015-09-28 23:00:00,0.0,1030.856583,0.0,100.0,5.590583333,0.13575,237.59113843333333 -2015-09-29 00:00:00,0.0,1030.522667,0.0,100.0,4.405583333,0.033666667000000004,237.59330995000002 -2015-09-29 01:00:00,0.0,1030.4,0.0,100.0,3.749083333,0.08075,237.59424061666667 -2015-09-29 02:00:00,0.0,1030.524417,0.0,100.0,3.28625,0.043,237.5961019166667 -2015-09-29 03:00:00,0.0,1030.031583,0.0,100.0,3.152166667,0.0295,237.5976529666667 -2015-09-29 04:00:00,0.0,1029.942833,0.0,100.0,2.991666667,0.14225,237.59842851666667 -2015-09-29 05:00:00,0.0,1030.117833,0.0,100.0,3.4475,0.28475,237.59780808333332 -2015-09-29 06:00:00,0.0,1030.392833,3.732916667,100.0,2.8283333330000002,0.091833333,237.5993591833333 -2015-09-29 07:00:00,0.0,1030.643417,16.135,100.0,5.014166667,0.2735,237.59966938333332 -2015-09-29 08:00:00,0.0,1030.766667,101.0108333,100.0,9.114083333,1.86775,237.5987387166667 -2015-09-29 09:00:00,0.0,1030.831583,291.2583333,89.50833333,11.76916667,2.057583333,237.59656721666667 -2015-09-29 10:00:00,0.0,1030.608917,376.1333333,74.54166667,14.10583333,3.8290833330000003,237.59703256666668 -2015-09-29 11:00:00,0.0,1030.466083,415.8916667,66.60833333,15.11416667,3.74025,237.59625703333336 -2015-09-29 12:00:00,0.0,1030.020917,345.575,63.92666667,15.6275,3.83225,237.59501615 -2015-09-29 13:00:00,0.0,1029.655417,299.5666667,61.545,15.8375,3.8289166669999997,237.59113843333333 -2015-09-29 14:00:00,0.0,1029.231,341.5083333,61.08,15.97333333,4.084666667,237.58927715000002 -2015-09-29 15:00:00,0.0,1028.714917,195.16666669999998,61.0975,16.01333333,4.4885,237.58819136666662 -2015-09-29 16:00:00,0.0,1028.583333,114.27916670000002,61.2225,15.40333333,4.646166667,237.58586474999996 -2015-09-29 17:00:00,0.0,1028.5,19.95,65.20833333,14.66,4.261833333,237.58477898333334 -2015-09-29 18:00:00,0.0,1028.5595,2.2280833330000003,71.65916667,13.2025,3.09275,237.5847789833333 -2015-09-29 19:00:00,0.0,1028.556583,0.0,79.16333333,11.92416667,2.9083333330000003,237.58431366666665 -2015-09-29 20:00:00,0.0,1028.619,0.0,84.05,10.92166667,2.129083333,237.58508919999997 -2015-09-29 21:00:00,0.0,1028.924417,0.0,94.75833333,9.064166667,0.21425,237.58431364999998 -2015-09-29 22:00:00,0.0,1028.993417,0.0,99.15,8.30575,0.297,237.58726073333332 -2015-09-29 23:00:00,0.0,1028.94825,0.0,99.825,6.761,0.2875,237.58927713333335 -2015-09-30 00:00:00,0.0,1028.960083,0.0,100.0,5.1695,0.167666667,237.5908282 -2015-09-30 01:00:00,0.0,1029.1,0.0,100.0,3.98925,0.027416667000000002,237.59082821666664 -2015-09-30 02:00:00,0.0,1028.9655,0.0,100.0,3.258416667,0.028999999999999998,237.59191396666668 -2015-09-30 03:00:00,0.0,1028.856583,0.0,100.0,3.391166667,0.197666667,237.59330993333333 -2015-09-30 04:00:00,0.0,1028.7410830000001,0.0,100.0,4.31225,0.226416667,237.59517125000002 -2015-09-30 05:00:00,0.0,1028.585083,0.0,100.0,4.938666667,0.321,237.5959468 -2015-09-30 06:00:00,0.0,1029.1035,3.5059166669999997,100.0,4.7139166669999994,0.250166667,237.59548146666668 -2015-09-30 07:00:00,0.0,1029.3155,15.60666667,100.0,6.0955833329999995,0.569333333,237.59656723333333 -2015-09-30 08:00:00,0.0,1029.452333,91.94833333,99.59166667,9.19,2.566083333,237.597653 -2015-09-30 09:00:00,0.0,1029.675583,285.8916667,83.92583333,11.09866562,4.4023333330000005,237.59548146666666 -2015-09-30 10:00:00,0.0,1029.547667,369.2333333,71.92916667,12.80166667,4.010166667,237.5961019 -2015-09-30 11:00:00,0.0,1029.130417,369.15833330000004,64.185,14.11083333,3.8115,237.59486103333333 -2015-09-30 12:00:00,0.0,1028.630417,416.1833333,61.53416667,14.74583333,3.317333333,237.59393036666668 -2015-09-30 13:00:00,0.0,1027.962583,415.2666667,56.63416667,15.58,3.6689999999999996,237.59051798333337 -2015-09-30 14:00:00,0.0,1027.28875,346.7,54.66083333,15.76,5.001,237.5880362833333 -2015-09-30 15:00:00,0.0,1027.041667,280.3,53.1625,15.73583333,5.562416667000001,237.58384831666663 -2015-09-30 16:00:00,0.0,1026.81375,127.51416670000002,54.36916667,15.16333333,4.865583333,237.58245236666664 -2015-09-30 17:00:00,0.0,1026.792833,16.10075,58.40416667,14.19916667,3.7559166669999997,237.58043598333336 -2015-09-30 18:00:00,0.0,1026.84225,1.495916667,64.64166667,12.63916667,3.0445,237.58105638333333 -2015-09-30 19:00:00,0.0,1027.027917,0.0,71.29833333,11.03666667,2.27425,237.58059108333336 -2015-09-30 20:00:00,0.0,1027.266083,0.0,76.89166667,10.32833333,2.56425,237.5810564 -2015-09-30 21:00:00,0.0,1027.358917,0.0,89.38333333,8.145666667,0.7105,237.58291768333333 -2015-09-30 22:00:00,0.0,1027.458333,0.0,92.79166667,5.17775,0.1525,237.58338301666666 -2015-09-30 23:00:00,0.0,1027.339917,0.0,98.20833333,3.97175,0.037083332999999996,237.58477898333334 -2015-01-10 00:00:00,0.0,1026.948833,0.0,99.725,2.978916667,0.009333333000000001, -2015-01-10 01:00:00,0.0,1026.656,0.0,99.79166667,3.005583333,0.273166667, -2015-01-10 02:00:00,0.0,1026.264333,0.0,99.98333333,2.7415,0.201083333, -2015-01-10 03:00:00,0.0,1025.964917,0.0,100.0,2.529666667,0.15491666699999998, -2015-01-10 04:00:00,0.0,1025.656583,0.0,100.0,2.385916667,0.259916667, -2015-01-10 05:00:00,0.0,1025.65175,0.0,100.0,3.216333333,0.73675, -2015-01-10 06:00:00,0.0,1025.791083,3.3225833330000003,97.45,4.9095,2.19975, -2015-01-10 07:00:00,0.0,1025.79225,15.4425,96.08333333,5.761666667,3.414416667, -2015-01-10 08:00:00,0.0,1025.876167,85.08416667,90.60833333,7.388583333,3.7744166669999997, -2015-01-10 09:00:00,0.0,1025.848833,287.3333333,79.22416667,9.601666667,3.872583333, -2015-01-10 10:00:00,0.0,1025.647667,373.15,64.63916667,11.43583333,3.596916667, -2015-01-10 11:00:00,0.0,1025.306583,423.95,57.52833333,12.96,3.0995, -2015-01-10 12:00:00,0.0,1025.047667,439.9416666999999,54.5825,13.87333333,4.589916667, -2015-01-10 13:00:00,0.0,1024.67325,416.925,53.52083333,14.5975,4.549416667, -2015-01-10 14:00:00,0.0,1024.40775,363.8333333,52.6775,15.1075,4.180833333, -2015-01-10 15:00:00,0.0,1023.8965,279.7083333,50.09333333,15.44333333,4.392333333, -2015-01-10 16:00:00,0.0,1023.539917,122.17,53.15833333,15.0275,3.7473333330000003, -2015-01-10 17:00:00,0.0,1023.375583,18.66416667,57.45333333,14.14416667,3.320916667, -2015-01-10 18:00:00,0.0,1023.794,1.602583333,77.33666667,12.435,2.17175, -2015-01-10 19:00:00,0.0,1023.91725,0.0,81.985,10.29333333,0.76925, -2015-01-10 20:00:00,0.0,1024.075583,0.0,92.7,6.750666667000001,0.177083333, -2015-01-10 21:00:00,0.0,1024.05775,0.0,96.21666667,5.260333333,0.172583333, -2015-01-10 22:00:00,0.0,1023.8905,0.0,97.3,4.3396666669999995,0.08941666699999999, -2015-01-10 23:00:00,0.0,1023.773833,0.0,99.61666667,3.154416667,0.031583333, -2015-02-10 00:00:00,0.0,1023.3560000000001,0.0,100.0,2.494166667,0.008666667, -2015-02-10 01:00:00,0.0,1023.098833,0.0,100.0,2.05375,0.0145, -2015-02-10 02:00:00,0.0,1022.822667,0.0,100.0,1.63075,0.0155, -2015-02-10 03:00:00,0.0,1022.457167,0.0,100.0,1.018,0.04075, -2015-02-10 04:00:00,0.0,1022.139917,0.0,100.0,0.5670000000000001,0.011000000000000001, -2015-02-10 05:00:00,0.0,1021.939917,0.0,100.0,0.164583333,0.011333333000000001, -2015-02-10 06:00:00,0.0,1021.681583,3.010583333,100.0,0.046083333,0.0035, -2015-02-10 07:00:00,0.0,1021.56725,14.5325,100.0,1.9356666669999998,0.015083333, -2015-02-10 08:00:00,0.0,1021.566083,76.94083333,99.03333333,6.283916667000001,1.37675, -2015-02-10 09:00:00,0.0,1021.47325,277.96666669999996,83.99166667,8.756583333,1.9479166669999999, -2015-02-10 10:00:00,0.0,1020.928667,362.95,74.62083333,11.22083333,1.7341666669999998, -2015-02-10 11:00:00,0.0,1020.129833,415.7916667,67.455,13.925,2.49525, -2015-02-10 12:00:00,0.0,1019.3775,434.6416666999999,60.19583333,16.3,2.704583333, -2015-02-10 13:00:00,0.0,1018.4025,417.71666669999996,52.63916667,18.00833333,2.732416667, -2015-02-10 14:00:00,0.0,1017.3875830000001,365.03333330000004,48.88916667,18.98833333,2.623166667, -2015-02-10 15:00:00,0.0,1016.776917,280.40833330000004,50.84166667,18.66166667,3.340666667, -2015-02-10 16:00:00,0.0,1015.604833,120.82666670000002,55.11166667,17.9225,3.8789999999999996, -2015-02-10 17:00:00,0.0,1015.039917,12.76675,62.99083333,16.78583333,2.3868333330000002, -2015-02-10 18:00:00,0.0,1015.276167,0.9966666670000001,82.62833333,12.54916667,0.584833333, -2015-02-10 19:00:00,0.0,1015.2405,0.0,93.59166667,8.389333333,0.164833333, -2015-02-10 20:00:00,0.0,1014.930417,0.0,97.175,7.5004166670000005,0.1135, -2015-02-10 21:00:00,0.0,1014.514333,0.0,98.79166667,7.722083333,0.29025, -2015-02-10 22:00:00,0.0,1014.1905,0.0,99.75,6.409916667,0.10416666699999999, -2015-02-10 23:00:00,0.0,1013.8655,0.0,99.41666667,6.107083332999999,0.113416667, -2015-03-10 00:00:00,0.0,1013.6310000000001,0.0,99.99166667,5.12325,0.032583333,238.05563600000002 -2015-03-10 01:00:00,0.0,1013.1738330000001,0.0,100.0,4.900083333,0.037166667,238.055986 -2015-03-10 02:00:00,0.0,1012.837,0.0,100.0,4.83525,0.032583333,238.05631933333336 -2015-03-10 03:00:00,0.0,1012.316083,0.0,100.0,4.206333333,0.087,238.055986 -2015-03-10 04:00:00,0.0,1012.106583,0.0,100.0,3.703583333,0.061,238.05631933333333 -2015-03-10 05:00:00,0.0,1011.9155,0.0,100.0,3.318916667,0.029416667,238.05698600000002 -2015-03-10 06:00:00,0.0,1011.775,3.4819999999999998,100.0,3.519583333,0.033833333,238.05765266666666 -2015-03-10 07:00:00,0.0,1011.875,24.47166667,100.0,5.692,0.04475,238.0586693333333 -2015-03-10 08:00:00,0.0,1011.95,74.48083333,99.88333333,9.519083333,0.33766666700000003,238.071386 -2015-03-10 09:00:00,0.0,1011.9511669999999,258.5416667,84.41583333,12.37166667,0.402083333,238.08028599999997 -2015-03-10 10:00:00,0.0,1011.814917,334.35,76.365,14.76166667,0.61075,238.09125266666663 -2015-03-10 11:00:00,0.0,1011.532167,408.9416667,68.40166667,16.5325,0.977,238.09605266666668 -2015-03-10 12:00:00,0.0,1011.095333,317.34166669999996,66.56833333,17.7675,1.1803333329999999,238.05836933333333 -2015-03-10 13:00:00,0.0,1010.438167,369.15,60.87916667,17.81833333,1.7455,238.055986 -2015-03-10 14:00:00,0.0,1010.1,329.375,57.58833333,19.14,1.03475,238.05698600000002 -2015-03-10 15:00:00,0.0,1009.989917,211.0083333,58.5725,19.29583333,1.124916667,238.05698600000002 -2015-03-10 16:00:00,0.0,1009.7,108.96833329999998,64.06083333,18.78666667,0.728916667,238.05765266666666 -2015-03-10 17:00:00,0.0,1009.700583,17.772000000000002,82.7475,15.97416667,0.057833333,238.05631933333336 -2015-03-10 18:00:00,0.0,1009.574417,0.815666667,93.45,12.38833333,0.098,238.05631933333333 -2015-03-10 19:00:00,0.0,1009.900583,0.0,97.25,10.11,0.029583333,238.05631933333333 -2015-03-10 20:00:00,0.0,1009.910667,0.0,99.8,8.738333333,0.041916667000000005,238.05765266666666 -2015-03-10 21:00:00,0.0,1010.082167,0.0,100.0,7.599833332999999,0.077833333,238.05800266666665 -2015-03-10 22:00:00,0.0,1009.924417,0.0,100.0,7.03525,0.054416667,238.05833600000003 -2015-03-10 23:00:00,0.0,1010.194,0.0,100.0,6.40775,0.02325,238.05833600000003 -2015-04-10 00:00:00,0.0,1010.392833,0.0,100.0,5.975833333,0.005083333,238.04375496666668 -2015-04-10 01:00:00,0.0,1010.693417,0.0,100.0,5.749333332999999,0.019666667,238.04380669999998 -2015-04-10 02:00:00,0.0,1010.900583,0.0,100.0,5.96575,0.0,238.04372909999998 -2015-04-10 03:00:00,0.0,1010.866083,0.0,100.0,5.77125,0.032583333,238.04375496666663 -2015-04-10 04:00:00,0.0,1010.883333,0.0,100.0,4.9495,0.0,238.04372909999998 -2015-04-10 05:00:00,0.0,1011.1285,0.0,100.0,4.992666667,0.009416667,238.04378083333333 -2015-04-10 06:00:00,0.0,1011.820167,2.8264166669999997,100.0,5.5141666670000005,0.00625,238.04365150000004 -2015-04-10 07:00:00,0.0,1012.3540830000001,36.0325,100.0,6.35725,0.081083333,238.04375496666663 -2015-04-10 08:00:00,0.0,1012.82675,84.90916667,100.0,8.195,0.0815,238.04375496666668 -2015-04-10 09:00:00,0.0,1013.318417,112.95833329999999,96.575,9.855,0.301333333,238.04380669999998 -2015-04-10 10:00:00,0.0,1013.560667,162.7166667,90.075,11.96583333,0.45191666700000005,238.04380669999998 -2015-04-10 11:00:00,0.0,1013.539917,269.6916667,86.50833333,15.99916667,0.4835,238.04383133333332 -2015-04-10 12:00:00,0.0,1013.364917,268.175,81.4375,17.05833333,0.5003333329999999,238.04383133333332 -2015-04-10 13:00:00,0.0,1013.014333,175.6166667,78.58083333,16.67,1.055,238.04380669999998 -2015-04-10 14:00:00,0.0,1012.783333,140.525,79.0525,16.71666667,1.3256666670000001,238.04385596666665 -2015-04-10 15:00:00,0.0,1012.706,95.73666667,78.77916667,16.77333333,0.46175,238.0438806 -2015-04-10 16:00:00,0.0,1012.314333,72.26,80.295,16.27416667,0.718666667,238.04380669999998 -2015-04-10 17:00:00,0.0,1012.02675,14.21225,86.45,15.02083333,0.2295,238.04380669999998 -2015-04-10 18:00:00,0.0,1012.1738330000001,0.42208333299999995,97.09166667,11.2925,0.027083332999999998,238.04367736666669 -2015-04-10 19:00:00,0.0,1012.093417,0.0,99.83333333,9.6475,0.036583332999999996,238.04362686666664 -2015-04-10 20:00:00,0.0,1012.368417,0.0,100.0,8.97,0.068916667,238.04355296666665 -2015-04-10 21:00:00,0.0,1012.439917,0.0,100.0,8.0185,0.0395,238.04357760000002 -2015-04-10 22:00:00,0.0,1012.199417,0.0,100.0,6.967833333,0.011833333,238.04362686666664 -2015-04-10 23:00:00,0.0,1012.175583,0.0,100.0,6.990333333,0.028916667000000004,238.04360223333333 -2015-05-10 00:00:00,0.0,1012.1560000000001,0.0,100.0,7.69475,0.00041666699999999996,238.0201226 -2015-05-10 01:00:00,0.0,1012.023833,0.0,100.0,8.500833333,0.081416667,238.02098448333334 -2015-05-10 02:00:00,0.0,1011.9428330000001,0.0,100.0,9.299166667,0.001833333,238.02115686666664 -2015-05-10 03:00:00,0.0,1011.966667,0.0,100.0,10.70916667,0.429333333,238.0228806333333 -2015-05-10 04:00:00,0.0,1011.756583,0.0,100.0,11.3625,0.616916667,238.02270824999997 -2015-05-10 05:00:00,0.0,1011.689333,0.0,100.0,11.3425,1.266583333,238.02288059999998 -2015-05-10 06:00:00,0.0,1011.149417,1.58675,100.0,11.165,1.262166667,238.02046735 -2015-05-10 07:00:00,0.0,1011.385083,37.40916667,100.0,11.10916667,0.8290000000000001,238.02063971666666 -2015-05-10 08:00:00,0.0,1011.8083330000001,75.48833333,96.525,11.7175,0.97275,238.01770931666667 -2015-05-10 09:00:00,0.0,1011.519583,139.9916667,92.73333333,12.28416667,2.21075,238.01719218333332 -2015-05-10 10:00:00,0.0,1011.422083,297.0,88.25,13.53916667,3.041833333,238.01546841666664 -2015-05-10 11:00:00,0.0,1011.14475,322.84166669999996,80.545,15.25833333,3.236583333,238.01391704999995 -2015-05-10 12:00:00,0.0,1010.2715,262.5083333,78.9925,15.72333333,2.132166667,238.01374466666664 -2015-05-10 13:00:00,0.0,1009.62925,241.6416667,74.67583333,17.01083333,2.335083333,238.01460654999997 -2015-05-10 14:00:00,0.0,1008.811417,257.28333330000004,70.59416667,17.26333333,2.7119999999999997,238.01236566666668 -2015-05-10 15:00:00,0.0,1008.289917,141.2,71.3275,17.50666667,2.912666667,238.01271041666666 -2015-05-10 16:00:00,0.0,1007.661417,37.915,73.465,16.885,2.085333333,238.0111590166667 -2015-05-10 17:00:00,0.0,1006.82925,5.88925,75.42,16.29583333,1.97975,238.01150376666666 -2015-05-10 18:00:00,0.0,1006.525,0.223083333,83.46416667,15.35916667,1.292916667,238.01357229999996 -2015-05-10 19:00:00,0.0,1006.061417,0.0,92.54166667,13.9525,0.58375,238.01529606666665 -2015-05-10 20:00:00,0.0,1005.339917,0.0,97.975,12.05333333,0.048166667,238.01529606666665 -2015-05-10 21:00:00,4.8100455360000005,1004.954833,0.0,99.11666667,12.0125,0.052833332999999996,238.01598556666661 -2015-05-10 22:00:00,14.43013661,1004.345917,0.0,100.0,12.30083333,0.0,238.01684741666665 -2015-05-10 23:00:00,2.4050227680000003,1003.839333,0.0,99.79166667,12.4425,0.39441666700000005,238.01667506666664 -2015-06-10 00:00:00,24.21722042,1003.322083,0.0,99.64166667,12.80166667,0.094166667,237.71001699999997 -2015-06-10 01:00:00,7.236581016000001,1002.603083,0.0,100.0,12.70333333,0.41316666700000004,237.71225788333334 -2015-06-10 02:00:00,13.220674300000002,1001.812,0.0,100.0,12.87416667,2.8445,237.71449878333337 -2015-06-10 03:00:00,0.0,1001.257167,0.0,100.0,12.97333333,3.20975,237.71656729999998 -2015-06-10 04:00:00,0.0,1001.1310000000001,0.0,100.0,13.225,3.154,237.7186358166667 -2015-06-10 05:00:00,0.0,1000.968417,0.0,100.0,13.54333333,3.452833333,237.71915296666668 -2015-06-10 06:00:00,0.0,1001.125,0.6045,100.0,13.79583333,2.652666667,237.72191096666666 -2015-06-10 07:00:00,0.0,1000.983333,12.28741667,99.98333333,14.07,2.3885,237.7226004833333 -2015-06-10 08:00:00,0.0,1000.839917,48.34,99.93333333,14.91666667,3.057416667,237.71742918333334 -2015-06-10 09:00:00,0.0,1000.985083,91.68666667,96.96666667,15.91083333,3.329916667,237.70984460000003 -2015-06-10 10:00:00,0.0,1001.133917,183.5166667,92.85,17.275,3.3735,237.70226001666666 -2015-06-10 11:00:00,0.0,1001.342833,140.1583333,90.34166667,17.73666667,3.2275,237.69226219999996 -2015-06-10 12:00:00,0.0,1001.4,147.7333333,90.175,18.015,3.0074166669999998,237.68709086666664 -2015-06-10 13:00:00,0.0,1001.062,107.7275,88.8,18.70083333,2.188333333,237.68416050000005 -2015-06-10 14:00:00,28.89536431,1000.431,49.57916667,98.175,17.58583333,1.657083333,237.68209196666666 -2015-06-10 15:00:00,32.09336899,1000.198833,68.475,98.95833333,17.52833333,1.8645,237.68123008333336 -2015-06-10 16:00:00,0.0,999.7804167000002,73.72666667,98.85,17.71,1.5919999999999999,237.6798510666667 -2015-06-10 17:00:00,0.0,1000.333167,19.86891667,98.80833333,17.7325,1.284583333,237.67829970000003 -2015-06-10 18:00:00,0.0,1001.14575,0.22066666699999998,100.0,16.44666667,0.654416667,237.67761016666668 -2015-06-10 19:00:00,0.0,1001.802333,0.0,100.0,15.55083333,0.540333333,237.67864443333337 -2015-06-10 20:00:00,0.0,1002.0666669999999,0.0,100.0,15.39333333,0.394583333,237.68088533333332 -2015-06-10 21:00:00,0.0,1002.2095,0.0,99.95,14.0675,0.06283333299999999,237.68416046666667 -2015-06-10 22:00:00,0.0,1002.243417,0.0,100.0,12.90416667,0.144833333,237.68709090000002 -2015-06-10 23:00:00,0.0,1002.383333,0.0,100.0,12.64166667,0.18725,237.69140028333334 -2015-07-10 00:00:00,0.0,1002.494583,0.0,100.0,11.69166667,0.11783333300000001,237.53652986666668 -2015-07-10 01:00:00,0.0,1002.850583,0.0,100.0,11.42916667,0.11966666699999999,237.54112986666667 -2015-07-10 02:00:00,0.0,1003.2595,0.0,100.0,11.7075,0.11225,237.54531166666666 -2015-07-10 03:00:00,0.0,1003.543417,0.0,100.0,12.52666667,0.0865,237.54907531666663 -2015-07-10 04:00:00,0.0,1003.72675,0.0,100.0,12.525,0.036166667,237.5542328833333 -2015-07-10 05:00:00,0.0,1004.052917,0.0,100.0,12.3925,0.004166667,237.55562681666663 -2015-07-10 06:00:00,0.0,1004.602333,1.103916667,100.0,12.64333333,0.14325,237.55688136666663 -2015-07-10 07:00:00,0.0,1005.120167,34.50583333,99.36666667,13.53083333,0.09725,237.55869348333331 -2015-07-10 08:00:00,0.0,1005.77075,88.73916667,93.49166667,15.41083333,0.36941666700000003,237.5581359 -2015-07-10 09:00:00,0.0,1006.462417,188.225,90.25833333,17.68166667,0.42708333299999995,237.54963286666668 -2015-07-10 10:00:00,0.0,1006.944583,269.7083333,83.1,17.74416667,0.438333333,237.53708745000003 -2015-07-10 11:00:00,0.0,1007.3445830000001,234.2833333,80.43166667,19.00583333,0.47958333299999995,237.52482079999996 -2015-07-10 12:00:00,0.0,1007.943417,320.5583333,77.79666667,17.93916667,0.5445,237.51380871666666 -2015-07-10 13:00:00,0.0,1008.175583,161.81666669999998,79.9375,17.11916667,0.48408333299999995,237.50948749999998 -2015-07-10 14:00:00,0.0,1008.427917,123.7,78.22166667,17.61583333,0.3005,237.50656023333332 -2015-07-10 15:00:00,0.0,1008.910083,40.04,80.76666667,16.4325,0.136166667,237.5029360166667 -2015-07-10 16:00:00,0.0,1009.044583,54.30666667,80.99666667,16.66333333,0.209416667,237.50182083333334 -2015-07-10 17:00:00,0.0,1009.62675,11.28691667,83.58333333,15.53083333,0.053416667,237.50196021666667 -2015-07-10 18:00:00,0.0,1010.288,0.10516666699999999,86.7,14.64916667,0.108333333,237.4990329666667 -2015-07-10 19:00:00,0.0,1010.8285,0.0,89.3,14.0075,0.09991666699999999,237.4976390666667 -2015-07-10 20:00:00,0.0,1011.386833,0.0,91.73333333,13.14583333,0.12591666699999998,237.50056628333334 -2015-07-10 21:00:00,0.0,1011.8261669999999,0.0,94.79166667,12.69416667,0.080833333,237.50377236666668 -2015-07-10 22:00:00,0.0,1012.17675,0.0,92.58333333,12.87166667,0.333666667,237.50795415000002 -2015-07-10 23:00:00,0.0,1012.308917,0.0,92.00833333,12.92833333,0.20925,237.5139481 -2015-08-10 00:00:00,0.0,1012.36725,0.0,92.01666667,12.77416667,0.13875,237.43226343333333 -2015-08-10 01:00:00,0.0,1012.558917,0.0,92.40833333,12.53333333,0.382166667,237.43574826666665 -2015-08-10 02:00:00,0.0,1012.575583,0.0,93.375,12.2475,0.135083333,237.44104521666668 -2015-08-10 03:00:00,0.0,1012.6439999999999,0.0,94.28333333,11.7525,0.027583332999999998,237.44508766666664 -2015-08-10 04:00:00,0.0,1012.957167,0.0,94.81666667,11.60583333,0.023333332999999998,237.4470391333334 -2015-08-10 05:00:00,0.0,1013.02675,0.0,94.15,11.625,0.00675,237.4523361 -2015-08-10 06:00:00,0.0,1013.545167,0.308083333,94.90833333,11.69833333,0.001333333,237.45512398333335 -2015-08-10 07:00:00,0.0,1013.908917,27.02441667,97.94166667,11.95,0.045416667,237.45833003333334 -2015-08-10 08:00:00,0.0,1014.3540830000001,84.125,91.66666667,13.255,0.33633333299999996,237.4570755 -2015-08-10 09:00:00,0.0,1014.785083,158.3,88.1,14.81833333,0.33933333299999996,237.45122095000002 -2015-08-10 10:00:00,0.0,1015.244583,188.0,85.56666667,14.7025,0.408,237.44243916666665 -2015-08-10 11:00:00,0.0,1015.476167,232.29166669999998,80.9075,15.79666667,0.53175,237.4305907 -2015-08-10 12:00:00,0.0,1015.608333,188.58333330000002,80.42166667,15.2375,0.94,237.41762706666668 -2015-08-10 13:00:00,0.0,1015.508333,160.80833330000002,79.58666667,15.74833333,0.43200000000000005,237.40926345 -2015-08-10 14:00:00,0.0,1015.708333,140.8416667,77.50666667,15.85,0.41225,237.4073119666667 -2015-08-10 15:00:00,0.0,1015.61725,72.00166667,80.06416667,15.13666667,1.1095,237.40870588333334 -2015-08-10 16:00:00,0.0,1015.7,43.91,84.175,14.41333333,0.9361666670000001,237.40759075000005 -2015-08-10 17:00:00,0.0,1015.776167,11.08433333,87.21666667,14.035,0.990583333,237.40661498333336 -2015-08-10 18:00:00,0.0,1016.245167,0.141833333,90.0,13.4025,1.114583333,237.47923906666665 -2015-08-10 19:00:00,7.434670056,1016.45,0.0,94.7,12.6175,0.291916667,237.70115379999996 -2015-08-10 20:00:00,16.877844699999997,1016.625,0.0,98.825,12.14,0.068333333,237.74088098333334 -2015-08-10 21:00:00,7.215068304,1016.72675,0.0,100.0,12.03666667,0.0355,237.74450520000002 -2015-08-10 22:00:00,2.4050227680000003,1016.801167,0.0,100.0,11.90833333,0.056083333,237.7403234 -2015-08-10 23:00:00,4.8100455360000005,1016.85775,0.0,100.0,11.83666667,0.065083333,237.7358628166667 -2015-09-10 00:00:00,4.811439168,1016.67325,0.0,100.0,11.59583333,0.182083333,237.53623011666664 -2015-09-10 01:00:00,12.05179121,1016.674417,0.0,100.0,11.5075,0.034583333,237.53809141666662 -2015-09-10 02:00:00,12.03077858,1016.55,0.0,100.0,11.365,0.034083333,237.5415038166667 -2015-09-10 03:00:00,40.81353202,1016.499417,0.0,100.0,11.26416667,0.008416667,237.5436753166667 -2015-09-10 04:00:00,16.82125123,1016.35775,0.0,100.0,11.22833333,0.004666667,237.5455366333333 -2015-09-10 05:00:00,26.42641073,1016.181583,0.0,100.0,11.1525,0.013999999999999999,237.54569174999997 -2015-09-10 06:00:00,21.67930025,1016.20175,0.5265,100.0,11.0875,0.028916667000000004,237.54739795 -2015-09-10 07:00:00,7.263418416,1016.376167,10.775,100.0,11.06833333,0.091416667,237.54739793333331 -2015-09-10 08:00:00,0.0,1016.558917,45.2675,100.0,11.53416667,0.073416667,237.54786326666667 -2015-09-10 09:00:00,0.0,1016.6595,39.45583333,100.0,11.73416667,0.5975,237.54832858333336 -2015-09-10 10:00:00,8.057578368,1016.782167,94.95833333,100.0,12.02416667,1.000916667,237.54538151666665 -2015-09-10 11:00:00,0.0,1016.7,126.99166670000001,97.95833333,12.89666667,0.65025,237.54336511666668 -2015-09-10 12:00:00,0.0,1016.431583,77.7175,97.25833333,13.4,0.765166667,237.53824653333334 -2015-09-10 13:00:00,0.0,1016.189333,54.24583333,98.3,13.80416667,0.4475,237.5335933 -2015-09-10 14:00:00,0.0,1015.9155,54.8125,98.46666667,14.10333333,0.391083333,237.5233562 -2015-09-10 15:00:00,0.0,1015.716667,79.01833333,95.25,14.0275,1.27425,237.51901314999998 -2015-09-10 16:00:00,0.0,1015.541083,49.9975,96.15,14.10333333,0.489,237.51761718333333 -2015-09-10 17:00:00,0.0,1015.583917,13.6375,99.14166667,13.72833333,0.699416667,237.51482523333334 -2015-09-10 18:00:00,2.4050227680000003,1015.741667,0.0765,100.0,12.87666667,0.204333333,237.5140497 -2015-09-10 19:00:00,0.0,1015.742833,0.0,100.0,12.78666667,0.8281666670000001,237.51311904999997 -2015-09-10 20:00:00,0.0,1015.8155,0.0,100.0,12.59666667,0.48575,237.51451501666668 -2015-09-10 21:00:00,0.0,1015.741667,0.0,100.0,12.67416667,0.6569166670000001,237.51746205000003 -2015-09-10 22:00:00,0.0,1015.63275,0.0,100.0,12.49833333,0.563,237.51963358333333 -2015-09-10 23:00:00,0.0,1015.464333,0.0,100.0,12.02666667,0.176333333,237.52133978333333 -2015-10-10 00:00:00,0.0,1015.241667,0.0,100.0,12.04916667,0.56725,237.66496990000005 -2015-10-10 01:00:00,0.0,1015.3178330000001,0.0,100.0,11.86666667,0.907166667,237.6652801166667 -2015-10-10 02:00:00,0.0,1015.175,0.0,100.0,11.85166667,1.071416667,237.66621078333336 -2015-10-10 03:00:00,0.0,1015.163167,0.0,100.0,11.64916667,1.127916667,237.66683120000002 -2015-10-10 04:00:00,0.0,1015.018417,0.0,100.0,11.25916667,2.056083333,237.6672965166667 -2015-10-10 05:00:00,0.0,1014.9238330000001,0.0,99.6,10.8825,1.4869999999999999,237.66776183333334 -2015-10-10 06:00:00,0.0,1014.941083,0.38799999999999996,99.43333333,10.68083333,2.053583333,237.66667606666667 -2015-10-10 07:00:00,0.0,1014.9595,8.96,99.94166667,10.615,2.096166667,237.66822718333333 -2015-10-10 08:00:00,0.0,1015.04225,37.78166667,98.55833333,10.4775,2.852833333,237.66760673333332 -2015-10-10 09:00:00,0.0,1014.973833,119.625,95.49166667,10.60083333,3.49225,237.6669863 -2015-10-10 10:00:00,0.0,1014.69825,250.19166669999998,86.475,11.1475,3.33725,237.66776183333334 -2015-10-10 11:00:00,0.0,1014.289333,353.4333333,77.66916667,12.34916667,3.1920833330000002,237.66683118333333 -2015-10-10 12:00:00,0.0,1013.828667,352.8666667,73.70333333,12.9375,3.361916667,237.66559031666668 -2015-10-10 13:00:00,0.0,1013.425,337.34166669999996,71.12416667,13.53166667,3.285416667,237.66434946666672 -2015-10-10 14:00:00,0.0,1013.157167,289.15,69.10833333,13.31416667,3.8689166669999997,237.66388413333334 -2015-10-10 15:00:00,0.0,1013.039917,201.775,70.1425,12.8575,3.718083333,237.66341883333334 -2015-10-10 16:00:00,0.0,1012.841083,93.19333333,74.56583333,12.115,3.20975,237.66233309999998 -2015-10-10 17:00:00,0.0,1012.783917,14.89575,80.45916667,11.25416667,3.32925,237.66233309999998 -2015-10-10 18:00:00,0.0,1013.21125,0.068583333,82.44166667,10.15166667,3.3698333330000003,237.66124734999997 -2015-10-10 19:00:00,0.0,1013.283333,0.0,86.375,8.82,3.27,237.66140245 -2015-10-10 20:00:00,0.0,1013.366667,0.0,91.36666667,7.913666667,2.194833333,237.66171266666663 -2015-10-10 21:00:00,0.0,1013.373833,0.0,94.475,7.781416667,2.152666667,237.66078199999995 -2015-10-10 22:00:00,0.0,1013.37675,0.0,85.23333333,7.94875,1.7383333330000001,237.65985138333335 -2015-10-10 23:00:00,0.0,1013.079833,0.0,83.675,7.694583333,2.0065,237.66031669999998 -2015-11-10 00:00:00,0.0,1012.714917,0.0,84.91666667,7.122333332999999,1.7903333330000002,237.73310221666668 -2015-11-10 01:00:00,0.0,1012.447083,0.0,85.31666667,6.817916667,1.9069999999999998,237.7332571666667 -2015-11-10 02:00:00,0.0,1011.989917,0.0,85.225,6.41,1.7890000000000001,237.73372198333334 -2015-11-10 03:00:00,0.0,1011.73275,0.0,92.925,5.438166667000001,1.6869999999999998,237.73372199999997 -2015-11-10 04:00:00,0.0,1011.87675,0.0,89.83333333,4.682166667,1.7189166669999998,237.73356705 -2015-11-10 05:00:00,0.0,1012.033333,0.0,87.00833333,3.735833333,1.498583333,237.73325716666668 -2015-11-10 06:00:00,0.0,1012.210667,1.070166667,87.20833333,3.230416667,1.6853333330000002,237.7334121 -2015-11-10 07:00:00,0.0,1012.527333,14.96025,84.85,3.128666667,2.063916667,237.7331022333333 -2015-11-10 08:00:00,0.0,1012.94225,41.13333333,82.83333333,3.7879166669999997,2.9893333330000003,237.73170773333334 -2015-11-10 09:00:00,0.0,1013.143417,226.45833330000002,77.13916667,5.026,3.010333333,237.73186268333336 -2015-11-10 10:00:00,0.0,1013.208333,306.90833330000004,72.24166667,6.30975,3.497833333,237.73046821666665 -2015-11-10 11:00:00,0.0,1013.039917,326.2583333,69.5975,7.27275,3.28475,237.73108798333337 -2015-11-10 12:00:00,0.0,1012.663167,376.0833333,65.22166667,9.263333333,3.365416667,237.72922870000002 -2015-11-10 13:00:00,0.0,1012.172083,353.25,61.30583333,10.365,3.863,237.73093303333334 -2015-11-10 14:00:00,0.0,1011.78275,300.71666669999996,58.96,11.13583333,4.028416667,237.73170773333334 -2015-11-10 15:00:00,0.0,1011.7,218.325,58.30416667,11.14583333,4.1865,237.73449671666665 -2015-11-10 16:00:00,0.0,1011.768417,93.53333333,59.0425,9.9025,4.469666667,237.73403186666667 -2015-11-10 17:00:00,0.0,1012.1189999999999,10.475999999999999,67.2525,8.318999999999999,3.222416667,237.7334121 -2015-11-10 18:00:00,0.0,1012.585667,0.11975,80.25416667,6.5388333329999995,1.131,237.73356703333334 -2015-11-10 19:00:00,0.0,1012.933917,0.0,87.19166667,6.159083333,1.23375,237.7321725666667 -2015-11-10 20:00:00,0.0,1013.093417,0.0,93.675,5.11425,0.713333333,237.7331022333333 -2015-11-10 21:00:00,0.0,1013.318417,0.0,97.69166667,3.705083333,0.45725,237.73356706666667 -2015-11-10 22:00:00,0.0,1013.37325,0.0,99.68333333,2.04325,0.15716666699999998,237.7332571666667 -2015-11-10 23:00:00,0.0,1013.216667,0.0,99.33333333,3.0789166669999997,0.88675,237.7341868166667 -2015-12-10 00:00:00,0.0,1013.241667,0.0,97.15833333,1.9091666669999998,0.11491666699999999,237.99452136666665 -2015-12-10 01:00:00,0.0,1013.242833,0.0,96.33333333,0.223333333,0.00475,237.99022648333334 -2015-12-10 02:00:00,0.0,1013.391667,0.0,94.50833333,-0.29833333300000003,0.041666667000000004,237.98986858333333 -2015-12-10 03:00:00,0.0,1013.198833,0.0,98.36666667,-0.587916667,0.11666666699999999,237.9898685833333 -2015-12-10 04:00:00,0.0,1013.18275,0.0,99.975,-0.802083333,0.078083333,237.98986858333333 -2015-12-10 05:00:00,0.0,1013.410667,0.0,100.0,-0.944916667,0.060333332999999996,237.9886159166667 -2015-12-10 06:00:00,0.0,1013.676167,1.4880000000000002,100.0,-0.483916667,0.536333333,237.99094228333334 -2015-12-10 07:00:00,0.0,1013.902333,13.84125,100.0,0.031583333,0.46425,237.99004753333335 -2015-12-10 08:00:00,5.2822999919999996,1014.3439999999999,41.08083333,95.39166667,1.375833333,1.521333333,237.99040545000003 -2015-12-10 09:00:00,0.0,1014.4,238.04166669999998,84.65,3.113333333,1.725333333,237.98968965000003 -2015-12-10 10:00:00,0.0,1014.38875,301.8833333,77.4775,5.40625,0.8876666670000001,237.98951066666666 -2015-12-10 11:00:00,0.0,1014.133333,369.125,70.98166667,7.2595,1.2944166670000001,237.9873632 -2015-12-10 12:00:00,0.0,1013.805417,381.0833333,63.70416667,8.934166667000001,1.637583333,237.9895107 -2015-12-10 13:00:00,0.0,1013.389333,295.78333330000004,58.22083333,10.35333333,0.776666667,237.9900475666667 -2015-12-10 14:00:00,0.0,1012.87325,199.2166667,59.1525,10.31333333,1.278583333,237.98933171666667 -2015-12-10 15:00:00,0.0,1012.42925,138.4,60.19166667,10.31,1.331083333,237.99219494999997 -2015-12-10 16:00:00,0.0,1012.031583,58.15166667,72.705,9.754166667,1.68225,237.992016 -2015-12-10 17:00:00,0.0,1011.901167,9.9315,85.52333333,8.32775,0.786833333,237.99434239999997 -2015-12-10 18:00:00,0.0,1012.208917,0.0615,93.51666667,7.370583333,0.561666667,237.99326870000002 -2015-12-10 19:00:00,0.0,1012.2011669999999,0.0,94.18333333,6.271666667000001,0.494166667,237.99434239999997 -2015-12-10 20:00:00,0.0,1011.972083,0.0,93.04166667,6.0295,0.6366666670000001,237.99487928333335 -2015-12-10 21:00:00,0.0,1011.891083,0.0,96.78333333,5.2226666669999995,0.8644166670000001,237.99183705 -2015-12-10 22:00:00,0.0,1011.622667,0.0,99.49166667,3.113666667,0.23725,237.992016 -2015-12-10 23:00:00,0.0,1011.258917,0.0,100.0,1.14475,0.018166667,237.99291074999996 -2015-10-13 00:00:00,0.0,1011.306,0.0,100.0,-0.073916667,0.0025833329999999997,237.656439 -2015-10-13 01:00:00,0.0,1011.0,0.0,100.0,-0.63625,0.0,237.65767986666665 -2015-10-13 02:00:00,0.0,1010.804833,0.0,100.0,-1.111333333,0.0,237.65690431666667 -2015-10-13 03:00:00,0.0,1010.466083,0.0,100.0,-1.4396666669999998,0.008916667,237.65907583333333 -2015-10-13 04:00:00,0.0,1010.22325,0.0,100.0,-1.686333333,0.003666667,237.66000649999998 -2015-10-13 05:00:00,0.0,1010.116667,0.0,100.0,-1.588583333,0.03825,237.66062691666664 -2015-10-13 06:00:00,0.0,1010.033917,0.87325,100.0,-0.724833333,0.145166667,237.6609371333333 -2015-10-13 07:00:00,0.0,1010.3035,19.29783333,100.0,0.542583333,0.995083333,237.66047181666667 -2015-10-13 08:00:00,0.0,1010.818417,75.04916667,99.55833333,1.6665833330000002,1.65375,237.65752476666668 -2015-10-13 09:00:00,0.0,1011.279083,220.0166667,92.95,3.407083333,3.060333333,237.65550835 -2015-10-13 10:00:00,0.0,1011.505417,127.03333329999998,91.58333333,3.5676666669999997,3.2366666669999997,237.6551981166667 -2015-10-13 11:00:00,0.0,1011.0583330000001,207.0083333,88.84166667,4.871583333,3.145666667,237.65581856666665 -2015-10-13 12:00:00,0.0,1010.93275,185.3833333,86.74166667,5.545666667000001,3.636,237.65550835000002 -2015-10-13 13:00:00,0.0,1010.973833,194.475,84.80833333,5.843,4.138166667,237.65411235000002 -2015-10-13 14:00:00,0.0,1010.9333330000001,138.2833333,84.16666667,5.9925,3.753333333,237.65457768333332 -2015-10-13 15:00:00,0.0,1010.975,44.66916667,85.23333333,5.561666667000001,3.620166667,237.65566345000002 -2015-10-13 16:00:00,0.0,1011.0945830000001,17.22591667,86.60833333,5.195083333,3.164916667,237.6565941 -2015-10-13 17:00:00,0.0,1011.443417,1.79475,88.18333333,4.767583333,2.976916667,237.65643901666667 -2015-10-13 18:00:00,3.6888049439999997,1011.85175,0.0,90.39166667,4.4775,3.170666667,237.65597366666668 -2015-10-13 19:00:00,0.0,1012.2189999999999,0.0,91.25,4.1304166669999995,2.9315,237.6551981166667 -2015-10-13 20:00:00,0.0,1012.324417,0.0,94.475,3.787083333,2.327583333,237.65597366666668 -2015-10-13 21:00:00,3.231102888,1012.635667,0.0,96.46666667,3.385583333,2.5459166669999997,237.65597368333331 -2015-10-13 22:00:00,0.0,1012.45775,0.0,95.94166667,3.379666667,2.34975,237.65566343333333 -2015-10-13 23:00:00,0.0,1012.7011669999999,0.0,94.15833333,3.4035,2.252583333,237.65442258333334 -2015-10-14 00:00:00,0.0,1012.6655,0.0,93.71666667,3.363,2.01225,237.6545777 -2015-10-14 01:00:00,0.0,1012.716667,0.0,93.025,3.34675,1.9896666669999998,237.65426746666665 -2015-10-14 02:00:00,0.0,1012.3215,0.0,92.575,3.259666667,2.36825,237.65566345 -2015-10-14 03:00:00,0.0,1012.0155,0.0,94.05,3.141083333,2.129166667,237.65581856666665 -2015-10-14 04:00:00,0.0,1011.80775,0.0,94.45,2.910166667,2.5213333330000003,237.65705941666667 -2015-10-14 05:00:00,0.0,1011.716667,0.0,96.325,2.74225,2.183833333,237.65767985 -2015-10-14 06:00:00,0.0,1011.66725,0.1005,98.0,2.6889999999999996,1.7335833330000001,237.65783495000002 -2015-10-14 07:00:00,0.0,1011.741083,2.22575,98.21666667,2.771666667,1.83775,237.65876561666664 -2015-10-14 08:00:00,3.1095408239999998,1011.893417,8.30775,97.66666667,2.85075,1.868916667,237.65892071666664 -2015-10-14 09:00:00,12.66246425,1012.0,42.7325,98.38333333,2.747,2.267833333,237.65736963333333 -2015-10-14 10:00:00,3.32740488,1011.8405,51.69083333,98.33333333,2.8704166669999998,2.288833333,237.6565941 -2015-10-14 11:00:00,9.644806992000001,1011.976167,87.97,98.31666667,3.16075,2.2965,237.65535323333336 -2015-10-14 12:00:00,0.0,1011.8905,66.195,97.85,3.5825,1.97475,237.65535323333333 -2015-10-14 13:00:00,0.0,1011.7095,50.93333333,97.48333333,3.875166667,1.62475,237.65736966666668 -2015-10-14 14:00:00,0.0,1011.773833,54.5925,95.1,4.325833333,1.76275,237.65581856666668 -2015-10-14 15:00:00,0.0,1011.8166669999999,21.4275,96.43333333,4.397666667,1.932083333,237.6565941166667 -2015-10-14 16:00:00,0.0,1011.943417,8.134416667,96.18333333,4.194916667,2.0813333330000003,237.65736963333333 -2015-10-14 17:00:00,0.0,1012.133333,1.325833333,96.88333333,4.0515,1.6428333330000002,237.65876563333333 -2015-10-14 18:00:00,0.0,1012.292833,0.0,98.225,4.026,1.67975,237.65923095000002 -2015-10-14 19:00:00,0.0,1012.577917,0.0,99.19166667,3.93925,1.8379166669999998,237.65923093333333 -2015-10-14 20:00:00,0.0,1012.943417,0.0,99.3,3.5198333330000002,1.819333333,237.65876563333333 -2015-10-14 21:00:00,0.0,1013.310083,0.0,99.05833333,3.50275,1.59125,237.65767988333334 -2015-10-14 22:00:00,0.0,1013.148833,0.0,98.71666667,3.2686666669999997,1.832333333,237.65861051666664 -2015-10-14 23:00:00,0.0,1013.149417,0.0,98.80833333,3.10575,2.224583333,237.65923096666666 -2015-10-15 00:00:00,0.0,1013.02325,0.0,98.59166667,3.055,1.6665,237.6579901 -2015-10-15 01:00:00,0.0,1012.7905,0.0,98.3,2.967166667,1.8768333330000002,237.65861051666664 -2015-10-15 02:00:00,0.0,1012.26375,0.0,98.66666667,2.74275,1.18875,237.65938604999997 -2015-10-15 03:00:00,0.0,1011.908333,0.0,97.825,2.9493333330000002,1.767166667,237.65892071666667 -2015-10-15 04:00:00,0.0,1012.0310000000001,0.0,97.30833333,3.085833333,2.2665,237.65783496666666 -2015-10-15 05:00:00,2.9143823760000003,1011.6155,0.0,98.68333333,2.9363333330000003,2.0869166669999997,237.66062689999998 -2015-10-15 06:00:00,46.51261992,1011.222083,0.067583333,99.98333333,2.43875,1.78275,237.66155756666663 -2015-10-15 07:00:00,25.80016903,1010.9595,2.35025,100.0,1.238333333,1.0051666670000001,237.66326373333334 -2015-10-15 08:00:00,41.05092223,1011.28275,9.044916667,100.0,1.01425,0.202833333,237.66512500000002 -2015-10-15 09:00:00,36.42723096,1010.997667,16.88583333,100.0,1.42,0.275333333,237.6660556666667 -2015-10-15 10:00:00,44.01199219,1010.606583,38.115,100.0,2.2455,0.325833333,237.67039868333333 -2015-10-15 11:00:00,10.08621442,1010.391083,40.57,100.0,3.001083333,0.581833333,237.68094606666668 -2015-10-15 12:00:00,4.921402032,1010.108333,37.35333333,100.0,3.563333333,0.512833333,237.69211385000003 -2015-10-15 13:00:00,2.441582328,1009.937583,22.235,100.0,4.06325,0.40299999999999997,237.70126524999998 -2015-10-15 14:00:00,0.0,1009.93625,13.63583333,100.0,4.353666667,0.3805,237.7048327333333 -2015-10-15 15:00:00,0.0,1009.713167,15.41275,100.0,4.561,0.49066666700000006,237.70731448333333 -2015-10-15 16:00:00,0.0,1009.4321669999999,9.64875,100.0,4.8463333330000005,0.308166667,237.70746959999997 -2015-10-15 17:00:00,7.426049832,1009.562417,1.04325,100.0,4.772166667,0.280416667,237.7079349166667 -2015-10-15 18:00:00,45.86820948,1010.220167,0.0,100.0,4.738916667,0.1095,237.70886555 -2015-10-15 19:00:00,50.91683558,1010.54225,0.0,100.0,4.723166667,0.165166667,237.72003329999998 -2015-10-15 20:00:00,51.2744208,1010.8345,0.0,100.0,4.379916667,0.2625,237.7400422833333 -2015-10-15 21:00:00,24.57926618,1010.86725,0.0,100.0,4.284833333,0.316166667,237.76485958333333 -2015-10-15 22:00:00,4.825193784,1011.302333,0.0,100.0,4.280666667,0.350916667,237.7792846166667 -2015-10-15 23:00:00,0.0,1011.458333,0.0,100.0,4.272916667,0.608166667,237.78812583333334 -2015-10-16 00:00:00,0.0,1011.450583,0.0,100.0,4.223833333,0.4625,237.79091774999998 -2015-10-16 01:00:00,0.0,1011.551167,0.0,100.0,4.207666667,0.21975,237.7920035 -2015-10-16 02:00:00,0.0,1011.473833,0.0,100.0,4.230583333,0.36708333299999996,237.79091776666664 -2015-10-16 03:00:00,0.0,1011.5845,0.0,100.0,4.319083333,0.1305,237.79091776666667 -2015-10-16 04:00:00,0.0,1011.683917,0.0,100.0,4.422666667,0.03875,237.78843605 -2015-10-16 05:00:00,2.413102296,1011.726167,0.0,100.0,4.499,0.06975,237.7862645166667 -2015-10-16 06:00:00,0.0,1012.008917,0.215666667,100.0,4.657583333,0.04025,237.78331743333334 -2015-10-16 07:00:00,0.0,1012.26125,6.32175,100.0,4.803999999999999,0.15833333300000002,237.78161126666666 -2015-10-16 08:00:00,0.0,1013.029667,22.35916667,100.0,5.18175,0.040416667,237.77866419999998 -2015-10-16 09:00:00,0.0,1013.375,43.41666667,100.0,5.715916667,0.11283333300000001,237.77649269999998 -2015-10-16 10:00:00,0.0,1013.323833,56.01833333,99.96666667,6.1639166670000005,0.07725,237.77571715 -2015-10-16 11:00:00,0.0,1013.216083,101.1725,99.275,6.86325,0.258583333,237.77385585000002 -2015-10-16 12:00:00,0.0,1013.175583,106.81666670000001,98.10833333,7.285666667,0.23,237.77199453333333 -2015-10-16 13:00:00,0.0,1013.131583,66.93666667,97.15833333,7.131416667000001,0.338916667,237.76951283333335 -2015-10-16 14:00:00,0.0,1012.92675,44.87166667,96.60833333,7.423583333,0.027666667000000002,237.76796173333332 -2015-10-16 15:00:00,0.0,1013.125,24.85916667,95.40833333,7.4371666670000005,0.0195,237.76501466666664 -2015-10-16 16:00:00,0.0,1013.141083,7.006333333,96.71666667,7.151166667000001,0.132666667,237.7643942333333 -2015-10-16 17:00:00,0.0,1013.0155,0.758083333,98.275,6.806666667000001,0.011083333,237.76361869999997 -2015-10-16 18:00:00,0.0,1013.110083,0.0,99.75833333,6.42725,0.034083333,237.76315336666667 -2015-10-16 19:00:00,0.0,1013.3595,0.0,98.13333333,6.263583333,0.08783333300000001,237.76036141666665 -2015-10-16 20:00:00,0.0,1013.49225,0.0,98.81666667,6.16675,0.004583333,237.76005120000002 -2015-10-16 21:00:00,0.0,1013.708917,0.0,99.325,6.084333332999999,0.0,237.75896545 -2015-10-16 22:00:00,0.0,1013.574417,0.0,98.21666667,6.005333332999999,0.010833333,237.75710413333334 -2015-10-16 23:00:00,0.0,1013.48275,0.0,98.58333333,5.9225833329999995,0.034916667,237.75648373333334 -2015-10-17 00:00:00,0.0,1013.1821669999999,0.0,99.69166667,5.879583332999999,0.201583333,237.75679393333334 -2015-10-17 01:00:00,0.0,1013.242833,0.0,100.0,5.800583333,0.10166666699999999,237.75462248333338 -2015-10-17 02:00:00,0.0,1013.17325,0.0,100.0,5.667999999999999,0.096083333,237.75322648333335 -2015-10-17 03:00:00,0.0,1012.948833,0.0,100.0,5.607833332999999,0.075083333,237.75291625 -2015-10-17 04:00:00,0.0,1012.741667,0.0,100.0,5.54775,0.124333333,237.75229583333336 -2015-10-17 05:00:00,0.0,1012.614917,0.0,100.0,5.438333332999999,0.29391666699999996,237.74965899999998 -2015-10-17 06:00:00,0.0,1012.658333,0.22216666699999998,100.0,5.325583333,0.205,237.74841815 -2015-10-17 07:00:00,0.0,1012.938,6.50125,100.0,5.359833333,0.3285,237.7474875 -2015-10-17 08:00:00,0.0,1013.443417,33.41916667,100.0,5.832166667,0.260083333,237.74485065000002 -2015-10-17 09:00:00,0.0,1013.708333,65.29,99.20833333,6.3979166670000005,0.910333333,237.74314445000002 -2015-10-17 10:00:00,0.0,1013.850583,97.61666667,94.35,6.888166667,1.049083333,237.7419035833333 -2015-10-17 11:00:00,0.0,1013.833333,89.08833333,87.325,7.319666667000001,1.09275,237.7391116166667 -2015-10-17 12:00:00,0.0,1013.597667,22.26,92.61666667,7.049333333,1.055916667,237.7389565166667 -2015-10-17 13:00:00,0.0,1013.4155,81.02583333,88.625,7.184416667000001,0.076,237.7384912 -2015-10-17 14:00:00,0.0,1013.401167,96.57833333,85.65,7.772,0.586666667,237.73476859999997 -2015-10-17 15:00:00,0.0,1013.425,29.50166667,92.725,7.459333332999999,0.64075,237.73492371666666 -2015-10-17 16:00:00,0.0,1013.5678330000001,13.53583333,96.36666667,7.106083333,0.6878333329999999,237.7361645833333 -2015-10-17 17:00:00,0.0,1013.675583,3.548333333,97.89166667,6.79725,0.38891666700000005,237.7358543833333 -2015-10-17 18:00:00,0.0,1013.582167,0.0,99.85833333,6.31925,0.44641666700000004,237.73554415000004 -2015-10-17 19:00:00,0.0,1013.6345,0.0,100.0,5.931166667,0.013916666999999999,237.73569925 -2015-10-17 20:00:00,0.0,1013.885083,0.0,100.0,5.635333332999999,0.02475,237.73383793333332 -2015-10-17 21:00:00,0.0,1014.142833,0.0,100.0,5.624083333,0.069083333,237.7327521833333 -2015-10-17 22:00:00,0.0,1014.158333,0.0,100.0,5.505166667,0.00525,237.73182153333332 -2015-10-17 23:00:00,0.0,1013.931,0.0,100.0,5.353083333,0.01175,237.73151133333332 -2015-10-18 00:00:00,0.0,1013.80775,0.0,100.0,5.353083333,0.017,237.73135623333334 -2015-10-18 01:00:00,0.0,1013.750583,0.0,100.0,5.398083333,0.29375,237.73027048333336 -2015-10-18 02:00:00,0.0,1013.649417,0.0,100.0,5.386083332999999,0.11741666699999999,237.73011533333332 -2015-10-18 03:00:00,0.0,1013.623833,0.0,100.0,5.337833333,0.137166667,237.72794385 -2015-10-18 04:00:00,0.0,1013.617833,0.0,100.0,5.4110000000000005,0.06175,237.72809895000003 -2015-10-18 05:00:00,0.0,1013.624417,0.0,100.0,5.371833333,0.004583333,237.7265478666667 -2015-10-18 06:00:00,0.0,1013.40775,0.12825,100.0,5.207000000000001,0.12975,237.72639275000003 -2015-10-18 07:00:00,0.0,1013.871333,5.706333333,100.0,5.317666667,0.205583333,237.72623761666668 -2015-10-18 08:00:00,0.0,1014.4845,16.11833333,100.0,5.486666667000001,0.259,237.72515188333333 -2015-10-18 09:00:00,2.496559104,1014.743417,21.41333333,100.0,5.635083333,0.22575,237.72344570000004 -2015-10-18 10:00:00,32.83574417,1014.908333,32.87,100.0,5.791333333,0.985166667,237.7225150666667 -2015-10-18 11:00:00,0.0,1014.7405,61.24916667,99.75,6.355333333,0.057833333,237.72220483333334 -2015-10-18 12:00:00,0.0,1014.474417,142.2666667,94.61666667,7.04575,0.693416667,237.72220483333334 -2015-10-18 13:00:00,0.0,1014.257167,154.3833333,86.45,8.09,0.254666667,237.7217395 -2015-10-18 14:00:00,0.0,1014.275,100.4358333,86.78333333,8.5975,0.23175,237.7201884 -2015-10-18 15:00:00,0.0,1014.40175,60.50583333,84.6,8.623333333,0.035,237.72065373333336 -2015-10-18 16:00:00,0.0,1014.247667,27.115,93.075,7.850166667000001,0.005,237.72111908333332 -2015-10-18 17:00:00,0.0,1014.18275,3.450333333,95.58333333,7.199333332999999,0.00525,237.72080885 -2015-10-18 18:00:00,0.0,1014.26125,0.0,99.09166667,6.578583332999999,0.063166667,237.7211190666667 -2015-10-18 19:00:00,0.0,1014.491667,0.0,100.0,6.081833333,0.10375,237.72080886666666 -2015-10-18 20:00:00,0.0,1014.693417,0.0,100.0,5.719583332999999,0.134,237.72080885 -2015-10-18 21:00:00,0.0,1014.8845,0.0,100.0,4.322833333,0.122083333,237.72127418333332 -2015-10-18 22:00:00,0.0,1015.133917,0.0,100.0,3.065083333,0.109083333,237.72080885 -2015-10-18 23:00:00,0.0,1015.1916669999999,0.0,100.0,2.7705833330000003,0.024333333,237.71941286666666 -2015-10-19 00:00:00,0.0,1015.149417,0.0,100.0,3.5469999999999997,0.00825,237.71832713333333 -2015-10-19 01:00:00,0.0,1015.16725,0.0,100.0,3.83075,0.036833332999999996,237.71708625 -2015-10-19 02:00:00,0.0,1015.35775,0.0,100.0,3.972916667,0.013416667,237.71693115000002 -2015-10-19 03:00:00,0.0,1015.225583,0.0,100.0,3.803416667,0.009916666999999999,237.71662090000004 -2015-10-19 04:00:00,0.0,1015.181583,0.0,100.0,3.6375,0.0245,237.71832709999998 -2015-10-19 05:00:00,0.0,1015.2195830000001,0.0,100.0,3.124166667,0.047416667,237.7198782 -2015-10-19 06:00:00,0.0,1015.47675,0.11225,100.0,3.0364166669999997,0.037083332999999996,237.71817201666667 -2015-10-19 07:00:00,0.0,1015.986833,3.843916667,100.0,3.67025,0.122916667,237.7163107166667 -2015-10-19 08:00:00,0.0,1016.40175,52.22,100.0,4.416166667,0.271833333,237.71491473333333 -2015-10-19 09:00:00,0.0,1016.819,106.4625,99.8,5.513999999999999,0.4035,237.71413918333334 -2015-10-19 10:00:00,0.0,1017.008917,114.55833329999999,95.71666667,6.762666667,0.46566666700000003,237.71336365000002 -2015-10-19 11:00:00,0.0,1017.024417,159.15,92.3,8.325416667,0.387166667,237.71320856666668 -2015-10-19 12:00:00,7.74440064,1016.83875,99.89416667,89.425,8.975,0.560583333,237.71258810000003 -2015-10-19 13:00:00,0.0,1016.616667,85.53666667,88.39166667,9.498333333,0.34375,237.7119676666667 -2015-10-19 14:00:00,0.0,1016.3405,48.74166667,89.39166667,9.088333333,0.888083333,237.71336365 -2015-10-19 15:00:00,0.0,1016.249417,31.37333333,94.825,8.6925,0.881416667,237.71491473333333 -2015-10-19 16:00:00,0.0,1016.133333,29.36833333,98.075,8.518333333,0.631,237.71491475000002 -2015-10-19 17:00:00,0.0,1016.200583,2.423083333,99.99166667,8.18,0.0016666670000000001,237.71351876666668 -2015-10-19 18:00:00,0.0,1016.48625,0.0,100.0,7.994666667000001,0.039,237.71367388333337 -2015-10-19 19:00:00,0.0,1016.9095,0.0,100.0,7.940166667000001,0.001583333,237.71227788333331 -2015-10-19 20:00:00,2.4105511440000003,1017.008917,0.0,100.0,7.8746666670000005,0.014083333,237.71382895 -2015-10-19 21:00:00,0.0,1016.966083,0.0,100.0,7.831,0.067916667,237.71243301666667 -2015-10-19 22:00:00,0.0,1016.983917,0.0,100.0,7.755166667,0.090083333,237.71289833333336 -2015-10-19 23:00:00,0.0,1016.93275,0.0,100.0,7.559166667,0.045083332999999996,237.71196768333334 -2015-10-20 00:00:00,0.0,1016.9321669999999,0.0,100.0,7.765,0.076833333,237.71258811666667 -2015-10-20 01:00:00,0.0,1016.700583,0.0,100.0,7.784833333,0.08741666699999999,237.71134723333333 -2015-10-20 02:00:00,0.0,1016.85775,0.0,100.0,7.774833332999999,0.21875,237.71227788333337 -2015-10-20 03:00:00,0.0,1016.883333,0.0,100.0,7.7495,0.210833333,237.71212278333334 -2015-10-20 04:00:00,0.0,1016.732167,0.0,100.0,7.688833333,0.41700000000000004,237.71367386666668 -2015-10-20 05:00:00,0.0,1016.624417,0.0,99.99166667,7.606166667,0.431666667,237.71367385 -2015-10-20 06:00:00,7.41891192,1016.618417,0.18600000000000003,99.99166667,7.372999999999999,0.309166667,237.71274321666667 -2015-10-20 07:00:00,0.0,1016.901167,6.9450833329999995,99.45,7.19025,0.5056666670000001,237.71367386666665 -2015-10-20 08:00:00,2.4350633040000003,1017.286833,43.69416667,98.30833333,7.0815,0.74175,237.71351875000002 -2015-10-20 09:00:00,0.0,1017.66725,101.0725,96.425,7.198666667,0.67575,237.70979619999994 -2015-10-20 10:00:00,0.0,1017.860083,243.3416667,89.95833333,8.83775,0.903083333,237.70948598333334 -2015-10-20 11:00:00,0.0,1017.729833,303.28333330000004,82.21666667,10.92416667,0.9813333329999999,237.70917576666662 -2015-10-20 12:00:00,0.0,1017.399417,295.4333333,75.94083333,11.71666667,1.278833333,237.7082451166667 -2015-10-20 13:00:00,0.0,1016.979833,114.07,74.75833333,11.83916667,1.5098333330000002,237.70886553333335 -2015-10-20 14:00:00,0.0,1016.875583,250.5333333,68.08666667,12.19416667,0.9155833329999999,237.7077798 -2015-10-20 15:00:00,0.0,1016.908333,149.4991667,72.66416667,11.70416667,0.7305,237.7060736333333 -2015-10-20 16:00:00,0.0,1016.918417,67.6975,79.5925,11.0,1.134416667,237.70669404999998 -2015-10-20 17:00:00,0.0,1017.360083,3.089666667,87.51666667,10.03833333,0.1325,237.70591849999997 -2015-10-20 18:00:00,0.0,1017.6095,0.0,93.29166667,9.4275,0.10491666699999999,237.7059184833333 -2015-10-20 19:00:00,0.0,1017.708917,0.0,93.90833333,9.294166667,0.250166667,237.7056082833333 -2015-10-20 20:00:00,0.0,1017.801167,0.0,95.14166667,9.006666667000001,0.046583333,237.70529806666664 -2015-10-20 21:00:00,0.0,1017.958917,0.0,96.44166667,8.656666667,0.0505,237.7046776333333 -2015-10-20 22:00:00,0.0,1017.7810000000001,0.0,97.80833333,8.441666667,0.031333333,237.70467761666666 -2015-10-20 23:00:00,0.0,1017.464917,0.0,98.94166667,8.188333333,0.04325,237.7060736 -2015-10-21 00:00:00,0.0,1017.17675,0.0,99.16666667,8.027416667,0.019333333,237.70638383333332 -2015-10-21 01:00:00,0.0,1017.616667,0.0,98.31666667,7.963916667,0.09891666699999999,237.70514294999998 -2015-10-21 02:00:00,0.0,1017.403667,0.0,97.14166667,7.935166667000001,0.002916667,237.70560826666664 -2015-10-21 03:00:00,0.0,1017.043417,0.0,97.70833333,7.670583333,0.147333333,237.70653891666666 -2015-10-21 04:00:00,0.0,1017.074417,0.0,99.46666667,6.053833332999999,0.095333333,237.70669406666664 -2015-10-21 05:00:00,0.0,1017.06725,0.0,100.0,5.823666667,0.120833333,237.70653891666666 -2015-10-21 06:00:00,0.0,1016.94825,0.11183333300000001,100.0,6.268333332999999,0.04725,237.7057634 -2015-10-21 07:00:00,0.0,1016.631583,6.553666667000001,100.0,6.571666667000001,0.020416667,237.70638381666666 -2015-10-21 08:00:00,0.0,1017.088583,29.38583333,99.94166667,7.057083333,0.42891666700000003,237.7056082833333 -2015-10-21 09:00:00,0.0,1017.054833,60.93833333,97.23333333,7.78275,0.146583333,237.70545318333333 -2015-10-21 10:00:00,0.0,1017.17675,71.42666667,94.68333333,8.470833333,0.658666667,237.7045225333333 -2015-10-21 11:00:00,0.0,1016.939333,138.5,92.675,9.423333332999999,0.29333333300000003,237.70560826666664 -2015-10-21 12:00:00,0.0,1016.430417,190.69166669999998,88.06666667,11.055,0.451166667,237.70343676666664 -2015-10-21 13:00:00,0.0,1015.812,222.19166669999998,81.35333333,12.00083333,0.5066666670000001,237.7046776333333 -2015-10-21 14:00:00,0.0,1015.0465,107.41916670000002,78.335,11.89166667,0.12683333300000002,237.70653891666666 -2015-10-21 15:00:00,0.0,1014.54825,68.05916667,77.75583333,11.145,0.7785833329999999,237.70715934999998 -2015-10-21 16:00:00,0.0,1014.431583,35.78416667,82.15583333,10.73,0.929666667,237.70607359999997 -2015-10-21 17:00:00,219.67887830000004,1014.408917,2.912083333,94.475,9.595833333,0.546166667,237.70591848333333 -2015-10-21 18:00:00,0.0,1014.164917,0.0,99.05,8.325,0.0105,237.70700424999998 -2015-10-21 19:00:00,0.0,1013.8905,0.0,93.70833333,7.79525,0.0,237.70653893333335 -2015-10-21 20:00:00,0.0,1013.691083,0.0,91.05833333,6.913333333,0.021583333,237.70607361666666 -2015-10-21 21:00:00,0.0,1013.430417,0.0,93.65833333,6.000666667000001,0.06025,237.7077797833333 -2015-10-21 22:00:00,0.0,1013.166083,0.0,94.45,5.111000000000001,0.065083333,237.7082451166667 -2015-10-21 23:00:00,0.0,1013.02325,0.0,99.65833333,5.1355,0.017833333,237.70793489999997 -2015-10-22 00:00:00,0.0,1012.445917,0.0,100.0,4.659083333,0.007833333,237.70855533333335 -2015-10-22 01:00:00,0.0,1012.141083,0.0,100.0,5.14175,0.04325,237.70715936666662 -2015-10-22 02:00:00,0.0,1011.9405,0.0,95.9,5.802416667,0.009000000000000001,237.70669403333332 -2015-10-22 03:00:00,0.0,1011.479833,0.0,92.05,6.089416667,0.0045,237.70762471666663 -2015-10-22 04:00:00,0.0,1011.14225,0.0,91.525,6.825333333,0.283333333,237.70746958333334 -2015-10-22 05:00:00,0.0,1011.141083,0.0,90.24166667,7.956166667000001,0.204916667,237.70607359999997 -2015-10-22 06:00:00,0.0,1011.1405,0.227333333,92.375,8.8725,0.6446666670000001,237.70607361666666 -2015-10-22 07:00:00,0.0,1011.05,14.02958333,92.50833333,8.4725,0.6815,237.70576338333333 -2015-10-22 08:00:00,0.0,1011.175,57.3425,93.65,8.6775,0.328416667,237.70452253333335 -2015-10-22 09:00:00,0.0,1011.1439999999999,61.8625,93.75,9.763333333,0.426833333,237.70390206666661 -2015-10-22 10:00:00,0.0,1011.39225,108.4275,93.49166667,10.53416667,0.348583333,237.70281635 -2015-10-22 11:00:00,0.0,1011.573833,93.47083333,95.325,10.72166667,0.318416667,237.70312654999998 -2015-10-22 12:00:00,0.0,1011.392833,98.75,94.65833333,10.92416667,0.407083333,237.70142036666667 -2015-10-22 13:00:00,0.0,1011.22325,108.84166670000002,93.01666667,11.43333333,0.37125,237.70095504999998 -2015-10-22 14:00:00,0.0,1011.32675,77.57583333,92.475,11.89666667,0.342916667,237.7001794833333 -2015-10-22 15:00:00,0.0,1011.518417,47.9425,93.175,12.165,0.287416667,237.70002440000005 -2015-10-22 16:00:00,0.0,1011.6916669999999,27.83083333,95.575,12.01166667,0.18675,237.69940393333331 -2015-10-22 17:00:00,0.0,1012.211833,3.7471666669999997,99.65,11.365,0.12791666699999998,237.70048970000002 -2015-10-22 18:00:00,0.0,1012.787417,0.0,99.975,10.92333333,0.13675,237.69986926666664 -2015-10-22 19:00:00,0.0,1013.360667,0.0,99.9,10.82333333,0.178333333,237.70033458333333 -2015-10-22 20:00:00,0.0,1013.913,0.0,99.54166667,10.90083333,0.16525,237.69924883333337 -2015-10-22 21:00:00,0.0,1014.6035,0.0,99.9,11.0275,0.33775,237.69847331666665 -2015-10-22 22:00:00,0.0,1015.170167,0.0,100.0,10.9075,0.3465,237.69816308333336 -2015-10-22 23:00:00,0.0,1015.667833,0.0,100.0,10.80416667,0.258916667,237.6989386166667 -2015-10-23 00:00:00,0.0,1016.229667,0.0,100.0,10.765,0.4065,237.69831818333333 -2015-10-23 01:00:00,0.0,1016.996333,0.0,99.625,10.37166667,0.12216666699999999,237.69800796666667 -2015-10-23 02:00:00,0.0,1017.343417,0.0,99.73333333,9.9875,0.232833333,237.69893863333334 -2015-10-23 03:00:00,0.0,1017.65,0.0,99.76666667,9.8975,0.42716666700000006,237.69847328333333 -2015-10-23 04:00:00,0.0,1017.870167,0.0,99.13333333,9.695833333,0.130416667,237.6998692666667 -2015-10-23 05:00:00,0.0,1018.3445830000001,0.0,99.98333333,9.1525,0.09325,237.69955905000003 -2015-10-23 06:00:00,0.0,1018.919,0.12116666699999999,100.0,8.930833332999999,0.182916667,237.69754265000003 -2015-10-23 07:00:00,0.0,1019.3975,5.675916667,100.0,8.7,0.042166667000000005,237.69847328333333 -2015-10-23 08:00:00,0.0,1020.202333,41.16583333,99.68333333,9.253333332999999,0.04025,237.69692220000002 -2015-10-23 09:00:00,0.0,1020.694,156.9075,90.15,11.12666667,0.275083333,237.69444048333335 -2015-10-23 10:00:00,0.0,1020.916667,255.0333333,70.06833333,13.045,0.8188333329999999,237.6942853666667 -2015-10-23 11:00:00,0.0,1020.847083,314.7666667,67.56166667,14.8125,0.59275,237.69459560000004 -2015-10-23 12:00:00,0.0,1020.331583,332.1333333,63.65166667,15.555,0.489833333,237.69444046666663 -2015-10-23 13:00:00,0.0,1019.9405,292.75,62.79416667,15.17333333,1.002083333,237.69273429999998 -2015-10-23 14:00:00,0.0,1019.638167,258.7583333,62.43333333,15.105,1.039833333,237.69180365 -2015-10-23 15:00:00,0.0,1019.105417,136.525,64.10083333,14.135,0.8241666670000001,237.69444048333335 -2015-10-23 16:00:00,0.0,1018.85,59.34083333,76.7975,13.3025,0.380333333,237.69211386666666 -2015-10-23 17:00:00,0.0,1018.689333,4.73125,93.875,10.06666667,0.03725,237.6941302666667 -2015-10-23 18:00:00,0.0,1018.51725,0.0,98.26666667,7.885583333,0.13275,237.69490580000002 -2015-10-23 19:00:00,0.0,1018.717833,0.0,99.875,6.431416667000001,0.034833333,237.69428538333332 -2015-10-23 20:00:00,0.0,1018.61725,0.0,100.0,5.520333333,0.06433333299999999,237.69568135 -2015-10-23 21:00:00,0.0,1018.8083330000001,0.0,100.0,4.3629166669999995,0.04675,237.69350983333334 -2015-10-23 22:00:00,0.0,1018.741083,0.0,100.0,3.4900833330000003,0.01625,237.69413028333338 -2015-10-23 23:00:00,0.0,1018.481583,0.0,100.0,3.019916667,0.012916667,237.69599155 -2015-10-24 00:00:00,0.0,1018.012,0.0,100.0,2.7925,0.000166667,237.6961466666667 -2015-10-24 01:00:00,0.0,1017.473833,0.0,100.0,3.9595,0.0,237.69692220000002 -2015-10-24 02:00:00,0.0,1017.27325,0.0,100.0,3.8730833330000003,0.10208333300000001,237.69692221666665 -2015-10-24 03:00:00,0.0,1017.031583,0.0,100.0,3.734333333,0.212666667,237.69847330000002 -2015-10-24 04:00:00,0.0,1016.454833,0.0,100.0,3.585916667,0.34533333299999996,237.69831820000002 -2015-10-24 05:00:00,0.0,1015.878667,0.0,100.0,3.931,0.16091666699999999,237.6998692666667 -2015-10-24 06:00:00,0.0,1015.239917,0.20625,100.0,4.16425,0.174666667,237.70002438333333 -2015-10-24 07:00:00,0.0,1015.123833,10.70375,100.0,4.36075,0.128583333,237.70017948333336 -2015-10-24 08:00:00,0.0,1015.126167,63.9775,100.0,4.99775,0.08616666699999999,237.70204078333333 -2015-10-24 09:00:00,0.0,1014.997083,52.94083333,100.0,5.400916667000001,0.882166667,237.69924883333331 -2015-10-24 10:00:00,0.0,1014.624417,91.96583333,100.0,6.450583332999999,1.64775,237.70017948333336 -2015-10-24 11:00:00,0.0,1014.262,85.41666667,98.75,7.7750833329999995,2.26575,237.70017950000002 -2015-10-24 12:00:00,0.0,1013.66375,85.02166667,96.225,8.615,1.8465,237.70095503333334 -2015-10-24 13:00:00,0.0,1013.216667,79.9175,94.36666667,9.285,2.030166667,237.70111015 -2015-10-24 14:00:00,0.0,1012.94825,83.46166667,93.56666667,9.785,1.666166667,237.6998692666667 -2015-10-24 15:00:00,0.0,1012.80775,52.82416667,94.0,10.29333333,1.49225,237.70048969999996 -2015-10-24 16:00:00,0.0,1012.6833330000001,23.6,94.925,10.19416667,1.5355833330000002,237.70048968333333 -2015-10-24 17:00:00,0.0,1012.573833,2.084333333,97.51666667,9.246666667000001,1.707583333,237.702351 -2015-10-24 18:00:00,0.0,1012.6595,0.0,99.96666667,7.5365,0.22108333300000002,237.70328166666664 -2015-10-24 19:00:00,0.0,1012.866667,0.0,100.0,5.593583333,0.018833333,237.70421231666663 -2015-10-24 20:00:00,0.0,1013.095167,0.0,100.0,4.521583333,0.04475,237.70467764999998 -2015-10-24 21:00:00,0.0,1013.6285,0.0,100.0,4.0418333330000005,0.032166667,237.70266123333332 -2015-10-24 22:00:00,0.0,1013.916667,0.0,100.0,4.333833333,0.01775,237.70095501666665 -2015-10-24 23:00:00,0.0,1014.093417,0.0,100.0,5.17675,0.035416667,237.70002436666667 -2015-10-25 00:00:00,0.0,1014.47675,0.0,100.0,5.448333333,0.00275,237.69986928333333 -2015-10-25 01:00:00,0.0,1014.518417,0.0,100.0,5.637833333,0.052083332999999996,237.70017948333336 -2015-10-25 02:00:00,0.0,1015.0945830000001,0.0,100.0,6.223,0.080833333,237.69893863333334 -2015-10-25 03:00:00,0.0,1015.226167,0.0,100.0,6.193,0.164333333,237.69909373333334 -2015-10-25 04:00:00,0.0,1015.568417,0.0,100.0,6.152333333,0.068,237.69862840000005 -2015-10-25 05:00:00,0.0,1016.2975,0.0,100.0,6.52625,0.132,237.6978528666667 -2015-10-25 06:00:00,4.799840808,1017.0939999999999,0.0,100.0,6.782166667,0.025666667,237.696612 -2015-10-25 07:00:00,2.443406688,1017.543417,1.4696666669999998,100.0,7.0095,0.08825,237.69707731666668 -2015-10-25 08:00:00,0.0,1018.4665,21.53391667,100.0,7.421333333,0.071,237.696612 -2015-10-25 09:00:00,0.0,1019.0785,66.80333333,100.0,8.252333333,0.616,237.69459560000004 -2015-10-25 10:00:00,0.0,1019.643417,76.78666667,99.575,9.019166667,0.494833333,237.69273426666663 -2015-10-25 11:00:00,0.0,1020.143417,103.63083329999999,96.25833333,10.3175,0.181666667,237.69273429999998 -2015-10-25 12:00:00,0.0,1020.32675,124.71666670000002,92.51666667,11.58916667,0.69175,237.6928894 -2015-10-25 13:00:00,0.0,1020.524417,76.59666667,92.23333333,12.62833333,0.42791666700000003,237.69242408333332 -2015-10-25 14:00:00,0.0,1020.416667,68.14916667,91.75833333,13.27,0.25375,237.69288939999998 -2015-10-25 15:00:00,0.0,1020.543417,80.53833333,90.29166667,13.60833333,0.166916667,237.69226894999997 -2015-10-25 16:00:00,0.0,1020.6845,10.314,95.75,12.445,0.701833333,237.6928893833333 -2015-10-25 17:00:00,0.0,1020.875583,0.585333333,99.63333333,11.69166667,0.462,237.6952160166667 -2015-10-25 18:00:00,0.0,1021.160083,0.0,100.0,11.28333333,0.577666667,237.69413026666666 -2015-10-25 19:00:00,0.0,1021.435083,0.0,100.0,10.70166667,0.053666667,237.69459558333332 -2015-10-25 20:00:00,0.0,1021.616083,0.0,100.0,10.17166667,0.05275,237.69428536666666 -2015-10-25 21:00:00,0.0,1021.408333,0.0,100.0,10.19833333,0.110916667,237.69583645000003 -2015-10-25 22:00:00,0.0,1020.853667,0.0,100.0,9.7175,0.07675,237.69568135 -2015-10-25 23:00:00,0.0,1020.3465,0.0,100.0,9.633333333,0.04375,237.69754263333334 -2015-10-26 00:00:00,0.0,1019.929833,0.0,100.0,9.274166667000001,0.004333333,237.69785286666664 -2015-10-26 01:00:00,0.0,1019.5845,0.0,100.0,9.105,0.406916667,237.7006448333333 -2015-10-26 02:00:00,0.0,1019.732167,0.0,100.0,9.340833332999999,0.030083332999999997,237.69847330000002 -2015-10-26 03:00:00,0.0,1019.095333,0.0,100.0,8.610833332999999,0.03025,237.69986928333333 -2015-10-26 04:00:00,0.0,1018.531583,0.0,100.0,6.965166667,0.039166667,237.70281633333332 -2015-10-26 05:00:00,0.0,1018.122083,0.0,100.0,6.581916667000001,0.040333333,237.70297144999998 -2015-10-26 06:00:00,0.0,1017.9405,0.08125,100.0,6.294916667000001,0.023833332999999998,237.70157546666667 -2015-10-26 07:00:00,0.0,1017.894583,9.500833333,100.0,6.345,0.0075,237.70126525 -2015-10-26 08:00:00,0.0,1017.9905,35.905,100.0,6.864333332999999,0.002333333,237.70002438333333 -2015-10-26 09:00:00,0.0,1017.83275,79.72833333,100.0,9.625916667,0.11208333300000001,237.70126525 -2015-10-26 10:00:00,0.0,1017.588167,208.44166669999998,96.98333333,12.72416667,0.46533333299999996,237.69940396666667 -2015-10-26 11:00:00,0.0,1017.14825,284.225,84.56666667,14.58083333,1.253333333,237.70126523333332 -2015-10-26 12:00:00,0.0,1016.494167,279.9166667,76.32,15.15333333,1.9033333330000002,237.70048971666665 -2015-10-26 13:00:00,0.0,1015.687,289.2583333,72.19083333,14.445,1.458166667,237.70017950000002 -2015-10-26 14:00:00,0.0,1015.157167,226.7666667,69.35,14.69083333,1.08475,237.70095501666665 -2015-10-26 15:00:00,0.0,1014.882167,179.4083333,67.965,14.965,0.84875,237.70048970000002 -2015-10-26 16:00:00,0.0,1014.539917,58.62666667,78.60416667,14.50583333,0.529333333,237.70064481666668 -2015-10-26 17:00:00,0.0,1014.348833,2.83225,95.01666667,11.19916667,0.035083333,237.70343676666667 -2015-10-26 18:00:00,0.0,1014.28275,0.0,99.66666667,7.525666667,0.0075,237.70281633333332 -2015-10-26 19:00:00,0.0,1014.21725,0.0,100.0,6.264083332999999,0.078333333,237.70390209999997 -2015-10-26 20:00:00,0.0,1014.191083,0.0,100.0,5.291416667,0.0315,237.702351 -2015-10-26 21:00:00,0.0,1014.258333,0.0,100.0,4.53625,0.001833333,237.70359188333336 -2015-10-26 22:00:00,0.0,1014.268417,0.0,100.0,4.023416667,0.112416667,237.70467765 -2015-10-26 23:00:00,0.0,1014.347083,0.0,100.0,3.398166667,0.012833333,237.70343674999995 -2015-10-27 00:00:00,0.0,1013.89825,0.0,100.0,3.080833333,0.010833333,237.70328164999998 -2015-10-27 01:00:00,0.0,1013.87675,0.0,100.0,3.043166667,0.0,237.7021959 -2015-10-27 02:00:00,0.0,1013.856583,0.0,100.0,4.540166667,0.0,237.7021959 -2015-10-27 03:00:00,0.0,1013.666667,0.0,100.0,4.919916667,0.292083333,237.70297144999998 -2015-10-27 04:00:00,0.0,1013.41375,0.0,100.0,4.719333333,0.41475,237.70405719999997 -2015-10-27 05:00:00,0.0,1013.358333,0.0,100.0,4.8543333330000005,0.687916667,237.70483276666664 -2015-10-27 06:00:00,0.0,1013.319583,0.033333333,100.0,4.629583333,0.434833333,237.70452254999998 -2015-10-27 07:00:00,0.0,1013.6095,6.714833333,100.0,4.5485,0.38983333299999995,237.70374698333333 -2015-10-27 08:00:00,0.0,1014.20175,35.19,100.0,4.794,0.6406666670000001,237.70266123333332 -2015-10-27 09:00:00,0.0,1014.250583,81.41333333,100.0,5.140833333,0.685333333,237.70250611666665 -2015-10-27 10:00:00,2.643153624,1014.266083,155.625,100.0,5.971333333,0.806333333,237.70793488333334 -2015-10-27 11:00:00,0.0,1013.853667,293.4166667,100.0,8.263416667000001,0.997583333,237.71088193333335 -2015-10-27 12:00:00,0.0,1013.1215,294.71666669999996,91.675,11.41333333,1.81,237.71134725000002 -2015-10-27 13:00:00,0.0,1012.539917,277.0583333,78.2975,13.73,1.8571666669999998,237.71119211666667 -2015-10-27 14:00:00,0.0,1012.230417,225.06666669999998,74.15916667,14.01333333,1.9685833330000002,237.71088193333335 -2015-10-27 15:00:00,0.0,1011.82325,145.2833333,74.94083333,13.2825,1.449,237.71227788333331 -2015-10-27 16:00:00,0.0,1011.47325,48.30833333,85.12916667,12.46083333,0.924416667,237.71336365 -2015-10-27 17:00:00,0.0,1011.348833,1.5321666669999998,96.59166667,10.48583333,1.544583333,237.7144494 -2015-10-27 18:00:00,0.0,1011.45175,0.0,99.98333333,8.328583333,0.979583333,237.71538006666665 -2015-10-27 19:00:00,0.0,1011.566083,0.0,100.0,5.905666667,0.203083333,237.71475963333333 -2015-10-27 20:00:00,0.0,1011.458333,0.0,100.0,4.408583333,0.0815,237.71600048333335 -2015-10-27 21:00:00,0.0,1011.4333330000001,0.0,100.0,4.92275,0.113166667,237.71398408333334 -2015-10-27 22:00:00,0.0,1011.164333,0.0,100.0,7.607666667,0.629916667,237.71367386666665 -2015-10-27 23:00:00,0.0,1011.066083,0.0,99.66666667,8.053416667,0.682,237.71212278333334 -2015-10-28 00:00:00,0.0,1010.764917,0.0,99.26666667,8.185833333,0.475083333,237.7121228 -2015-10-28 01:00:00,0.0,1010.46725,0.0,98.54166667,8.154166667,0.38158333299999997,237.71336365 -2015-10-28 02:00:00,0.0,1010.051333,0.0,97.71666667,8.456666667,0.507083333,237.71506983333333 -2015-10-28 03:00:00,0.0,1009.256583,0.0,97.74166667,8.525,0.629083333,237.71522495000002 -2015-10-28 04:00:00,0.0,1008.88875,0.0,97.30833333,8.728333333,0.7566666670000001,237.71569026666666 -2015-10-28 05:00:00,0.0,1008.53275,0.0,96.71666667,8.813333333,0.89275,237.71569028333332 -2015-10-28 06:00:00,0.0,1008.675583,0.012666667,96.075,8.824166667,1.183333333,237.71538005 -2015-10-28 07:00:00,0.0,1008.6928330000001,2.717916667,95.48333333,8.698333332999999,1.0300833329999999,237.71553516666665 -2015-10-28 08:00:00,0.0,1008.648833,14.8105,94.90833333,8.631666667000001,1.4783333330000001,237.71600048333335 -2015-10-28 09:00:00,0.0,1008.480417,30.545,94.825,8.623333333,1.4844166669999999,237.71460449999998 -2015-10-28 10:00:00,0.0,1008.417833,40.14,94.23333333,8.875,1.7801666669999998,237.71475961666667 -2015-10-28 11:00:00,0.0,1008.222083,63.23583333,93.03333333,9.110833332999999,1.31475,237.71600051666667 -2015-10-28 12:00:00,0.0,1007.881583,49.72833333,92.45833333,9.191666667,1.3155,237.71600048333332 -2015-10-28 13:00:00,0.0,1007.716667,42.25333333,93.61666667,9.299166667,1.353083333,237.71708626666666 -2015-10-28 14:00:00,0.0,1007.6916669999999,29.7175,94.575,9.3725,1.46875,237.71615559999998 -2015-10-28 15:00:00,0.0,1007.354833,31.01416667,94.775,9.554166667,1.020833333,237.71553516666665 -2015-10-28 16:00:00,0.0,1007.30175,25.01333333,95.43333333,9.5475,0.55,237.71475963333333 -2015-10-28 17:00:00,0.0,1007.2345,2.904666667,98.925,8.929166667,0.24858333300000002,237.71646583333333 -2015-10-28 18:00:00,0.0,1007.60175,0.0,100.0,8.405833333,0.235833333,237.71693113333333 -2015-10-28 19:00:00,0.0,1007.72325,0.0,100.0,8.229833333,0.147083333,237.71538005000002 -2015-10-28 20:00:00,0.0,1007.902333,0.0,100.0,7.069666667000001,0.2,237.7152249333333 -2015-10-28 21:00:00,0.0,1008.051167,0.0,100.0,6.269583333,0.171416667,237.71538005 -2015-10-28 22:00:00,0.0,1008.419583,0.0,100.0,6.136,0.209666667,237.71584538333332 -2015-10-28 23:00:00,0.0,1008.777333,0.0,100.0,6.30175,0.0835,237.71506983333333 -2015-10-29 00:00:00,0.0,1008.976167,0.0,100.0,7.104166667,0.12325,237.71398408333334 -2015-10-29 01:00:00,0.0,1009.427917,0.0,100.0,7.6021666670000005,0.09116666699999999,237.71212278333334 -2015-10-29 02:00:00,0.0,1009.935667,0.0,100.0,7.811916667,0.162083333,237.7142943166667 -2015-10-29 03:00:00,0.0,1010.0666669999999,0.0,100.0,8.07125,0.013916666999999999,237.7118125833333 -2015-10-29 04:00:00,0.0,1010.18625,0.0,100.0,8.485833332999999,0.09125,237.7116574833333 -2015-10-29 05:00:00,0.0,1010.85175,0.0,100.0,8.566666667,0.013000000000000001,237.71196768333334 -2015-10-29 06:00:00,0.0,1011.245167,0.008416667,100.0,8.534166667000001,0.033916667000000005,237.71088193333333 -2015-10-29 07:00:00,0.0,1011.95525,7.089916667000001,100.0,8.688333333,0.0005,237.7107268166667 -2015-10-29 08:00:00,0.0,1012.839167,29.09916667,100.0,9.1725,0.40666666700000004,237.70964108333337 -2015-10-29 09:00:00,7.39070388,1013.419,65.63166667,100.0,10.19083333,0.286666667,237.70840023333335 -2015-10-29 10:00:00,0.0,1013.894583,118.075,98.675,11.355,0.29175,237.70840023333335 -2015-10-29 11:00:00,0.0,1014.452917,97.27333333,95.99166667,12.1875,0.572916667,237.70638383333332 -2015-10-29 12:00:00,0.0,1014.591667,127.275,92.88333333,12.71583333,0.869083333,237.71652351666668 -2015-10-29 13:00:00,0.0,1014.8178330000001,116.7,90.96666667,13.01416667,0.48208333299999995,237.72039705 -2015-10-29 14:00:00,0.0,1015.0594570000001,137.3125,86.38333333,13.83333333,0.85325,237.72024213333336 -2015-10-29 15:00:00,0.0,1015.2168949999999,106.0275,80.27333333,13.79666667,1.3173333329999999,237.72132671666668 -2015-10-29 16:00:00,0.0,1015.77425,27.71725,89.81166667,12.65333333,0.851916667,237.72179153333335 -2015-10-29 17:00:00,0.0,1016.48275,0.882583333,98.25,11.59166667,0.9894166670000001,237.72241128333334 -2015-10-29 18:00:00,0.0,1016.9915,0.0,99.075,10.475,0.8625,237.72241128333334 -2015-10-29 19:00:00,0.0,1017.532833,0.0,100.0,9.395833332999999,0.20625,237.7207069333333 -2015-10-29 20:00:00,0.0,1017.8665,0.0,100.0,9.106666667,0.0,237.72039705 -2015-10-29 21:00:00,0.0,1018.399083,0.0,100.0,8.554166667,0.08675,237.72024209999998 -2015-10-29 22:00:00,0.0,1019.05,0.0,100.0,9.013333333,0.013583333000000001,237.71931246666668 -2015-10-29 23:00:00,0.0,1019.166417,0.0,100.0,7.992916667,0.09916666699999999,237.72101681666666 -2015-10-30 00:00:00,0.0,1019.449833,0.0,100.0,6.525583332999999,0.093916667,237.72179153333332 -2015-10-30 01:00:00,0.0,1019.758,0.0,100.0,7.0335,0.049083333,237.72163659999998 -2015-10-30 02:00:00,0.0,1020.008167,0.0,100.0,7.463166667,0.021916667,237.72024209999998 -2015-10-30 03:00:00,0.0,1020.233083,0.0,100.0,7.694666667000001,0.0014166670000000001,237.71962235 -2015-10-30 04:00:00,0.0,1020.324917,0.0,100.0,8.063916667,0.004666667,237.72024209999998 -2015-10-30 05:00:00,0.0,1020.64975,0.0,100.0,8.264166667000001,0.078083333,237.7205520166667 -2015-10-30 06:00:00,0.0,1021.074833,0.026333332999999997,100.0,8.271666667,0.004583333,237.71962234999998 -2015-10-30 07:00:00,0.0,1021.365917,4.4799166669999995,100.0,8.31,0.03025,237.7197773 -2015-10-30 08:00:00,0.0,1022.057917,17.885,100.0,8.660833333,0.0,237.7196223666667 -2015-10-30 09:00:00,0.0,1022.475083,29.86083333,100.0,9.1725,0.040583333,237.71931248333337 -2015-10-30 10:00:00,0.0,1022.383083,91.255,100.0,9.871666667000001,0.51125,237.71962235 -2015-10-30 11:00:00,0.0,1022.5666669999999,99.33333333,98.21666667,11.12083333,1.007916667,237.71900260000004 -2015-10-30 12:00:00,0.0,1022.366833,198.725,84.265,12.92333333,1.5635833330000002,237.71900260000004 -2015-10-30 13:00:00,0.0,1022.22525,229.7416667,75.50916667,14.1725,1.775,237.7176081 -2015-10-30 14:00:00,0.0,1022.133333,161.2666667,74.75583333,14.13416667,1.678833333,237.71776306666672 -2015-10-30 15:00:00,0.0,1021.916917,83.5275,77.4925,13.4425,1.41675,237.72086188333333 -2015-10-30 16:00:00,0.0,1022.1080000000001,26.14891667,85.395,11.83083333,1.0656666670000001,237.72117178333335 -2015-10-30 17:00:00,0.0,1022.283167,0.80275,97.30833333,9.408333333,0.031833333,237.72117176666669 -2015-10-30 18:00:00,0.0,1022.707667,0.0,99.975,8.418583332999999,0.37591666700000004,237.72163658333332 -2015-10-30 19:00:00,0.0,1023.116833,0.0,100.0,6.829333332999999,0.052416667,237.72225635000004 -2015-10-30 20:00:00,0.0,1023.233083,0.0,100.0,5.360416667,0.029416667,237.72117176666666 -2015-10-30 21:00:00,0.0,1023.58275,0.0,100.0,4.477416667,0.022416667,237.72132671666668 -2015-10-30 22:00:00,0.0,1023.658917,0.0,100.0,3.8275,0.01725,237.72194646666665 -2015-10-30 23:00:00,0.0,1023.3250830000001,0.0,100.0,3.06925,0.008166666999999999,237.72179153333332 -2015-10-31 00:00:00,0.0,1023.1916669999999,0.0,100.0,2.6125,0.0,237.72303106666666 -2015-10-31 01:00:00,0.0,1023.1833330000001,0.0,100.0,2.407833333,0.0,237.7221014 -2015-10-31 02:00:00,0.0,1023.100417,0.0,100.0,3.257666667,0.08525,237.72334096666665 -2015-10-31 03:00:00,0.0,1022.724833,0.0,100.0,3.695666667,0.142,237.72411566666665 -2015-10-31 04:00:00,0.0,1022.81675,0.0,100.0,5.26725,0.40299999999999997,237.7228761333333 -2015-10-31 05:00:00,0.0,1022.958167,0.0,100.0,5.6015,0.9926666670000001,237.72241129999998 -2015-10-31 06:00:00,0.0,1023.066417,0.0,100.0,6.143,1.606333333,237.72194648333337 -2015-10-31 07:00:00,0.0,1023.54125,2.7640833330000003,100.0,6.66625,0.654416667,237.72148166666668 -2015-10-31 08:00:00,0.0,1024.049583,15.7225,99.5,6.465833333,1.307,237.71993223333334 -2015-10-31 09:00:00,0.0,1024.3165,29.8875,99.83333333,6.7960833329999994,0.885166667,237.72008716666667 -2015-10-31 10:00:00,0.0,1024.424917,60.29416667,96.5,7.77625,1.43125,237.71993224999997 -2015-10-31 11:00:00,0.0,1024.533333,111.10083329999999,91.275,8.64,1.68025,237.71962235 -2015-10-31 12:00:00,0.0,1024.059,208.2833333,84.8375,10.50916667,1.3571666669999998,237.71900258333335 -2015-10-31 13:00:00,0.0,1023.367333,252.4833333,78.93833333,12.23833333,1.3459999999999999,237.71946741666667 -2015-10-31 14:00:00,0.0,1023.083333,201.65,75.56666667,12.33666667,1.653,237.72086188333333 -2015-10-31 15:00:00,0.0,1022.89175,127.09166670000002,76.87333333,11.475,1.626416667,237.72179155 -2015-10-31 16:00:00,0.0,1023.091417,34.8025,86.18333333,10.19666667,0.63025,237.72194648333334 -2015-10-31 17:00:00,0.0,1023.507833,1.6646666669999999,97.88333333,6.776583333,0.062333333,237.72349588333336 -2015-10-31 18:00:00,0.0,1023.966417,0.0,99.96666667,4.97275,0.16016666699999998,237.7239607166667 -2015-10-31 19:00:00,0.0,1024.15,0.0,100.0,3.821583333,0.06875,237.72380578333335 -2015-10-31 20:00:00,0.0,1024.29125,0.0,100.0,3.218666667,0.112166667,237.72442555 -2015-10-31 21:00:00,0.0,1024.575,0.0,100.0,2.215416667,0.017,237.72411566666668 -2015-10-31 22:00:00,0.0,1024.616583,0.0,100.0,1.484,0.0,237.72520025000003 -2015-10-31 23:00:00,0.0,1024.766583,0.0,100.0,1.017333333,0.018333333,237.72473541666668 -2015-01-11 00:00:00,0.0,1025.024667,0.0,100.0,0.732083333,0.0, -2015-01-11 01:00:00,0.0,1025.158333,0.0,100.0,0.596916667,0.0, -2015-01-11 02:00:00,0.0,1025.258333,0.0,100.0,1.277666667,0.03225, -2015-01-11 03:00:00,0.0,1025.216583,0.0,100.0,2.2785833330000003,0.003, -2015-01-11 04:00:00,0.0,1025.366583,0.0,100.0,1.8894166669999999,0.0455, -2015-01-11 05:00:00,0.0,1025.53325,0.0,100.0,1.3685,0.26558333300000003, -2015-01-11 06:00:00,0.0,1025.558083,0.018333333,100.0,0.9035,0.023666667000000002, -2015-01-11 07:00:00,0.0,1026.249417,5.762166667000001,100.0,0.429333333,0.263, -2015-01-11 08:00:00,0.0,1026.7995,35.3125,100.0,0.653083333,0.0905, -2015-01-11 09:00:00,0.0,1027.433,94.32166667,100.0,1.21525,0.396, -2015-01-11 10:00:00,0.0,1027.575083,183.3916667,100.0,2.824833333,0.19175, -2015-01-11 11:00:00,0.0,1027.15025,249.325,100.0,4.34925,0.241166667, -2015-01-11 12:00:00,0.0,1026.717167,273.7333333,95.89166667,8.278166667,0.5845, -2015-01-11 13:00:00,0.0,1026.5335,254.875,83.21333333,11.64583333,1.011833333, -2015-01-11 14:00:00,0.0,1026.141833,204.33333330000002,72.5225,14.18166667,0.94125, -2015-01-11 15:00:00,0.0,1025.683833,132.46666670000002,68.47916667,13.6925,1.03025, -2015-01-11 16:00:00,0.0,1025.491667,31.51741667,86.97833333,11.53,0.23075, -2015-01-11 17:00:00,0.0,1025.416667,1.135333333,97.0,7.0855,0.226666667, -2015-01-11 18:00:00,0.0,1025.691417,0.0,99.80833333,4.749916667,0.1805, -2015-01-11 19:00:00,0.0,1025.949583,0.0,100.0,3.232416667,0.10825, -2015-01-11 20:00:00,0.0,1026.141833,0.0,100.0,2.25525,0.08575, -2015-01-11 21:00:00,0.0,1026.016917,0.0,100.0,1.494666667,0.10158333300000001, -2015-01-11 22:00:00,0.0,1025.691833,0.0,100.0,0.935333333,0.032916667000000004, -2015-01-11 23:00:00,0.0,1025.4669999999999,0.0,100.0,0.316666667,0.006166667, -2015-02-11 00:00:00,0.0,1025.07525,0.0,100.0,-0.255666667,0.005, -2015-02-11 01:00:00,0.0,1024.741917,0.0,100.0,-0.605666667,0.0, -2015-02-11 02:00:00,0.0,1024.533333,0.0,100.0,-0.23525,0.0, -2015-02-11 03:00:00,0.0,1024.74125,0.0,100.0,0.638083333,0.0, -2015-02-11 04:00:00,0.0,1024.359167,0.0,100.0,0.658416667,0.001, -2015-02-11 05:00:00,0.0,1023.983583,0.0,100.0,0.4095,0.037833333, -2015-02-11 06:00:00,0.0,1024.116417,0.0,100.0,0.255833333,0.11075, -2015-02-11 07:00:00,0.0,1024.22475,5.15875,100.0,-0.18591666699999998,0.27775, -2015-02-11 08:00:00,0.0,1024.5,36.73916667,100.0,0.380333333,0.1845, -2015-02-11 09:00:00,2.4350633040000003,1024.37525,95.64583333,100.0,1.5350833330000002,0.242833333, -2015-02-11 10:00:00,0.0,1024.383333,155.4083333,100.0,2.587333333,0.17, -2015-02-11 11:00:00,0.0,1023.90025,255.5916667,100.0,4.083833333,0.450666667, -2015-02-11 12:00:00,0.0,1023.3755,281.3666667,96.925,7.525666667,0.317916667, -2015-02-11 13:00:00,0.0,1022.883833,257.7583333,76.95083333,10.31083333,1.072833333, -2015-02-11 14:00:00,0.0,1022.467083,203.70833330000002,61.8075,12.81416667,1.272666667, -2015-02-11 15:00:00,0.0,1022.225,137.81666669999998,58.6925,12.14166667,1.227, -2015-02-11 16:00:00,0.0,1021.941833,27.99783333,82.35083333,9.952083333,0.57625, -2015-02-11 17:00:00,0.0,1021.883417,1.037666667,95.875,5.281583333,0.3115, -2015-02-11 18:00:00,0.0,1021.9,0.0,98.51666667,2.802916667,0.192083333, -2015-02-11 19:00:00,0.0,1021.683583,0.0,99.925,0.9301666670000001,0.04375, -2015-02-11 20:00:00,0.0,1021.466583,0.0,100.0,1.5044166669999999,0.293166667, -2015-02-11 21:00:00,0.0,1021.674833,0.0,100.0,3.187166667,0.809583333, -2015-02-11 22:00:00,0.0,1021.558583,0.0,100.0,3.459916667,1.077833333, -2015-02-11 23:00:00,0.0,1021.4751669999999,0.0,100.0,3.432416667,0.745, -2015-03-11 00:00:00,0.0,1021.300083,0.0,100.0,3.333916667,0.52275,238.058686 -2015-03-11 01:00:00,0.0,1020.992083,0.0,100.0,3.237833333,0.535166667,238.059036 -2015-03-11 02:00:00,0.0,1020.541917,0.0,100.0,3.027333333,0.687416667,238.06008599999998 -2015-03-11 03:00:00,0.0,1019.925667,0.0,100.0,2.902583333,0.634166667,238.06008599999998 -2015-03-11 04:00:00,0.0,1019.2835,0.0,100.0,2.422583333,0.856916667,238.06075266666664 -2015-03-11 05:00:00,0.0,1019.2000830000001,0.0,100.0,1.991416667,0.48475,238.06041933333333 -2015-03-11 06:00:00,0.0,1019.00025,0.0,100.0,1.7814166669999998,0.39625,238.06075266666664 -2015-03-11 07:00:00,0.0,1018.8585,2.78,100.0,1.53475,0.34683333299999997,238.06141933333333 -2015-03-11 08:00:00,0.0,1019.074833,22.3775,100.0,1.444916667,0.453166667,238.06141933333333 -2015-03-11 09:00:00,0.0,1018.783583,53.205,100.0,1.428166667,0.5195,238.07616933333335 -2015-03-11 10:00:00,0.0,1018.47525,73.03416667,100.0,1.91625,0.238833333,238.0748193333333 -2015-03-11 11:00:00,0.0,1017.99225,105.49833329999998,100.0,2.267,0.701666667,238.05973600000002 -2015-03-11 12:00:00,0.0,1017.433833,161.8416667,100.0,2.996916667,0.43558333299999996,238.059036 -2015-03-11 13:00:00,0.0,1016.9005,164.66666669999998,100.0,3.95225,0.395583333,238.059036 -2015-03-11 14:00:00,0.0,1016.383583,160.5341667,97.99166667,5.832166667,0.3995,238.059036 -2015-03-11 15:00:00,0.0,1015.941833,62.76166667,99.825,5.50825,0.20125,238.059386 -2015-03-11 16:00:00,0.0,1016.15,19.58233333,99.94166667,5.007833333,0.150416667,238.059386 -2015-03-11 17:00:00,0.0,1015.9416669999999,0.4735,100.0,2.956833333,0.11425,238.06008599999998 -2015-03-11 18:00:00,0.0,1016.091667,0.0,100.0,1.7355,0.060333332999999996,238.06175266666665 -2015-03-11 19:00:00,0.0,1015.875,0.0,100.0,1.9106666669999999,0.1105,238.06243600000002 -2015-03-11 20:00:00,0.0,1016.208083,0.0,100.0,3.433416667,0.845166667,238.062786 -2015-03-11 21:00:00,0.0,1016.632917,0.0,100.0,3.088,0.8615,238.06243600000002 -2015-03-11 22:00:00,0.0,1016.99125,0.0,100.0,2.92075,0.84275,238.06278599999996 -2015-03-11 23:00:00,0.0,1017.23325,0.0,100.0,3.1045,0.340416667,238.063836 -2015-04-11 00:00:00,0.0,1017.391667,0.0,100.0,3.2061666669999997,0.6426666670000001,238.04355296666665 -2015-04-11 01:00:00,0.0,1017.208333,0.0,100.0,3.2999166669999997,1.007333333,238.0435037 -2015-04-11 02:00:00,0.0,1017.208583,0.0,100.0,3.5339166669999997,1.095666667,238.04347783333333 -2015-04-11 03:00:00,0.0,1017.100083,0.0,100.0,3.7039166669999997,1.024833333,238.0435037 -2015-04-11 04:00:00,0.0,1017.091417,0.0,100.0,3.71525,1.08025,238.04345196666665 -2015-04-11 05:00:00,0.0,1017.158583,0.0,100.0,3.85025,1.265916667,238.04329679999992 -2015-04-11 06:00:00,0.0,1017.133,0.0,100.0,3.9628333330000003,1.100166667,238.04332264999994 -2015-04-11 07:00:00,0.0,1017.383167,2.5451666669999997,100.0,4.0745833330000005,1.158,238.04327094999996 -2015-04-11 08:00:00,0.0,1017.683083,21.41108333,100.0,4.184,1.575083333,238.04332264999994 -2015-04-11 09:00:00,0.0,1017.77525,52.84833333,100.0,4.3615833330000005,1.517333333,238.04324509999995 -2015-04-11 10:00:00,0.0,1017.816417,76.09666667,100.0,4.6281666669999995,1.5303333330000002,238.0432451 -2015-04-11 11:00:00,0.0,1017.542083,100.95833329999999,100.0,5.00425,1.130083333,238.04410818000002 -2015-04-11 12:00:00,0.0,1017.100333,108.275,100.0,5.553083332999999,1.154916667,238.04438675000003 -2015-04-11 13:00:00,0.0,1016.717167,86.0125,100.0,5.93825,0.8414166670000001,238.04433505 -2015-04-11 14:00:00,0.0,1016.316833,42.91166667,100.0,6.317416667000001,0.9675,238.04428335 -2015-04-11 15:00:00,0.0,1016.2,34.75583333,100.0,6.8129166670000005,1.4456666669999998,238.04420823333336 -2015-04-11 16:00:00,0.0,1015.9835,13.21683333,100.0,6.7184166670000005,1.19475,238.0441836 -2015-04-11 17:00:00,0.0,1015.9,0.21558333300000002,100.0,6.463583333,0.12633333300000002,238.04413433333335 -2015-04-11 18:00:00,0.0,1016.0915,0.0,100.0,6.03075,0.11525,238.04405796666666 -2015-04-11 19:00:00,0.0,1016.099917,0.0,100.0,5.5156666670000005,0.07375,238.04405796666666 -2015-04-11 20:00:00,0.0,1016.2,0.0,100.0,5.673583333,0.24375,238.04392986666664 -2015-04-11 21:00:00,0.0,1016.441417,0.0,100.0,5.580416667000001,0.18475,238.04383133333332 -2015-04-11 22:00:00,0.0,1016.558417,0.0,100.0,4.460333333,0.053083332999999996,238.04360346666667 -2015-04-11 23:00:00,0.0,1016.624917,0.0,100.0,3.310833333,0.048,238.04342609999995 -2015-05-11 00:00:00,0.0,1016.758167,0.0,100.0,3.0379166669999997,0.026166667,238.01667504999998 -2015-05-11 01:00:00,0.0,1017.083083,0.0,100.0,3.428,0.033333333,238.01753693333333 -2015-05-11 02:00:00,0.0,1017.158167,0.0,100.0,3.8969166669999997,0.176583333,238.01650269999996 -2015-05-11 03:00:00,0.0,1017.041833,0.0,100.0,4.381833333,0.24475,238.01633031666665 -2015-05-11 04:00:00,0.0,1017.050083,0.0,100.0,4.34975,0.18516666699999998,238.01736456666666 -2015-05-11 05:00:00,0.0,1017.091583,0.0,100.0,3.1889999999999996,0.060166667,238.0178817 -2015-05-11 06:00:00,0.0,1017.091667,0.0,100.0,2.2295,0.032833333,238.0156408 -2015-05-11 07:00:00,0.0,1017.2165,2.228,100.0,2.102,0.062083333,238.01288278333334 -2015-05-11 08:00:00,0.0,1017.84925,29.56166667,100.0,3.355333333,0.047833333,238.01184851666667 -2015-05-11 09:00:00,4.842032376000001,1018.133417,60.85083333,100.0,4.514333333,0.1155,238.01064188333336 -2015-05-11 10:00:00,0.0,1018.333083,102.1266667,100.0,5.90925,0.292916667,238.00822859999997 -2015-05-11 11:00:00,0.0,1018.208667,182.0,100.0,8.565083332999999,0.373666667,238.00771146666668 -2015-05-11 12:00:00,0.0,1017.683833,241.19166669999998,97.50833333,12.1575,0.42941666700000003,238.00702196666666 -2015-05-11 13:00:00,0.0,1017.1505,223.55,86.29166667,14.05833333,0.42508333299999995,238.0061600833333 -2015-05-11 14:00:00,0.0,1016.775167,160.98166669999998,82.425,15.59416667,1.052666667,238.00322968333333 -2015-05-11 15:00:00,0.0,1016.308583,63.21166667,88.93333333,14.8625,1.074,238.00357443333334 -2015-05-11 16:00:00,0.0,1016.325,8.576166667,98.04166667,11.52,0.26566666699999997,238.00391921666662 -2015-05-11 17:00:00,0.0,1016.199917,0.2725,100.0,9.125833333,0.120583333,238.0047810833333 -2015-05-11 18:00:00,0.0,1016.250083,0.0,100.0,8.0415,0.16675,238.00460871666658 -2015-05-11 19:00:00,0.0,1016.283417,0.0,100.0,7.455,0.04975,238.00460871666664 -2015-05-11 20:00:00,0.0,1016.033333,0.0,100.0,6.412583333,0.082083333,238.0068496166666 -2015-05-11 21:00:00,0.0,1016.18325,0.0,100.0,6.3281666670000005,0.06625,238.00788386666667 -2015-05-11 22:00:00,0.0,1016.466417,0.0,100.0,6.31775,0.01875,238.00857336666664 -2015-05-11 23:00:00,0.0,1016.7080000000001,0.0,100.0,6.39425,0.020333333000000002,238.00788386666667 -2015-06-11 00:00:00,0.0,1016.716917,0.0,100.0,6.446833333,0.0030833329999999997,237.69450304999998 -2015-06-11 01:00:00,0.0,1016.691833,0.0,100.0,6.5889999999999995,0.046833333,237.6972610833333 -2015-06-11 02:00:00,0.0,1016.866167,0.0,100.0,6.86525,0.001833333,237.7001915 -2015-06-11 03:00:00,0.0,1016.783667,0.0,100.0,7.1595,0.023666667000000002,237.7027771666667 -2015-06-11 04:00:00,0.0,1016.500417,0.0,100.0,7.272583332999999,0.0765,237.70501803333335 -2015-06-11 05:00:00,0.0,1016.349833,0.0,100.0,8.152916667000001,0.24933333300000002,237.7088103333333 -2015-06-11 06:00:00,0.0,1016.324917,0.0,100.0,8.6075,0.24325,237.70898273333333 -2015-06-11 07:00:00,0.0,1016.599917,2.543166667,100.0,8.354166667000001,0.10166666699999999,237.70622468333332 -2015-06-11 08:00:00,0.0,1017.041,28.56583333,100.0,9.008333333,0.069833333,237.70346666666663 -2015-06-11 09:00:00,0.0,1017.391667,78.89,100.0,10.71916667,0.074833333,237.69398594999998 -2015-06-11 10:00:00,0.0,1017.5165,115.35,98.88333333,12.5025,0.56625,237.68398808333336 -2015-06-11 11:00:00,0.0,1017.400167,118.24166670000001,85.50833333,14.25166667,0.881833333,237.67554161666666 -2015-06-11 12:00:00,0.0,1017.44175,107.17416670000001,83.5,16.175,0.966833333,237.67364548333333 -2015-06-11 13:00:00,0.0,1017.2251669999999,124.07166670000001,82.21666667,17.02583333,0.870833333,237.6689913166667 -2015-06-11 14:00:00,0.0,1017.174833,34.04416667,85.4,16.39666667,1.214416667,237.6689913166667 -2015-06-11 15:00:00,0.0,1017.241583,16.53808333,89.61666667,15.135,0.7825,237.66726758333334 -2015-06-11 16:00:00,0.0,1017.6415,12.6345,89.66666667,14.84833333,0.642,237.6664056666667 -2015-06-11 17:00:00,0.0,1017.757833,0.22925,94.275,13.92583333,0.754166667,237.66468188333337 -2015-06-11 18:00:00,0.0,1017.916833,0.0,93.24166667,13.71583333,0.8835,237.66347526666672 -2015-06-11 19:00:00,0.0,1018.158167,0.0,94.80833333,12.665,1.0,237.66313051666666 -2015-06-11 20:00:00,0.0,1018.27475,0.0,89.25833333,13.10666667,1.057833333,237.67002560000003 -2015-06-11 21:00:00,0.0,1018.5165,0.0,92.66666667,14.1375,0.642083333,237.67381788333333 -2015-06-11 22:00:00,2.46041064,1018.55,0.0,96.09166667,13.435,0.765833333,237.6772654 -2015-06-11 23:00:00,2.47353708,1018.441833,0.0,99.03333333,13.00333333,0.36608333299999996,237.68347096666665 -2015-07-11 00:00:00,11.99693088,1018.383417,0.0,100.0,12.8075,0.0495,237.51826929999996 -2015-07-11 01:00:00,0.0,1018.42475,0.0,99.86666667,12.90166667,0.10075,237.52398444999997 -2015-07-11 02:00:00,0.0,1018.592,0.0,98.76666667,13.46166667,0.059000000000000004,237.5280269 -2015-07-11 03:00:00,0.0,1018.40825,0.0,98.06666667,14.72916667,0.243166667,237.53151173333336 -2015-07-11 04:00:00,0.0,1018.408333,0.0,97.81666667,14.5,0.389166667,237.53639048333332 -2015-07-11 05:00:00,0.0,1018.691167,0.0,97.20833333,14.0675,0.13525,237.53750563333335 -2015-07-11 06:00:00,0.0,1019.116583,0.0,99.1,15.07083333,0.165333333,237.53876018333335 -2015-07-11 07:00:00,0.0,1019.574333,2.48825,99.90833333,15.15666667,0.09775,237.54085106666665 -2015-07-11 08:00:00,0.0,1020.482667,28.56033333,98.975,15.5725,0.195166667,237.5404329 -2015-07-11 09:00:00,2.436033192,1020.700167,49.85416667,98.20833333,16.35166667,0.294,237.53081475 -2015-07-11 10:00:00,0.0,1020.69125,95.71333333,94.925,17.03416667,0.578583333,237.51854809999998 -2015-07-11 11:00:00,0.0,1020.808583,106.55583329999999,92.825,18.31,0.757166667,237.50349360000004 -2015-07-11 12:00:00,0.0,1020.492083,111.20833329999999,90.225,18.70166667,0.7174166670000001,237.49610573333337 -2015-07-11 13:00:00,0.0,1020.300083,67.94833333,87.38333333,18.945,1.239166667,237.49066935000005 -2015-07-11 14:00:00,0.0,1020.099917,38.125,88.41666667,18.66,0.880166667,237.48955421666673 -2015-07-11 15:00:00,0.0,1019.941917,58.71916667,89.0,18.395,0.986083333,237.48690573333337 -2015-07-11 16:00:00,0.0,1019.716833,14.08416667,90.65833333,17.76583333,0.83325,237.48634818333332 -2015-07-11 17:00:00,0.0,1019.849917,0.15633333300000002,94.61666667,16.29916667,0.806333333,237.48439665 -2015-07-11 18:00:00,0.0,1019.866667,0.0,93.25,15.4975,1.200833333,237.4835603 -2015-07-11 19:00:00,0.0,1019.949917,0.0,91.99166667,16.595,1.51625,237.4831421166667 -2015-07-11 20:00:00,0.0,1019.841917,0.0,90.925,18.0975,1.8400833330000002,237.48467545000003 -2015-07-11 21:00:00,0.0,1019.958167,0.0,89.44166667,18.2875,1.3735,237.48843905000004 -2015-07-11 22:00:00,0.0,1020.191333,0.0,89.61666667,17.76916667,1.029666667,237.49248148333334 -2015-07-11 23:00:00,0.0,1020.399583,0.0,92.35833333,16.495,0.8009166670000001,237.49624508333332 -2015-08-11 00:00:00,0.0,1020.816417,0.0,94.25833333,15.20166667,0.18641666699999998,237.73028706666665 -2015-08-11 01:00:00,0.0,1021.574083,0.0,97.11666667,13.33833333,0.19066666699999998,237.72610524999996 -2015-08-11 02:00:00,0.0,1022.33275,0.0,96.70833333,12.09166667,0.12633333300000002,237.7184386166667 -2015-08-11 03:00:00,0.0,1022.733333,0.0,94.28333333,12.21916667,0.22066666699999998,237.71174773333334 -2015-08-11 04:00:00,0.0,1023.399167,0.0,92.65,11.29166667,0.251583333,237.70491743333332 -2015-08-11 05:00:00,0.0,1023.941333,0.0,93.94166667,10.69583333,0.21383333300000001,237.70045681666662 -2015-08-11 06:00:00,0.0,1024.374667,0.0,99.05833333,10.7325,0.52375,237.69237198333335 -2015-08-11 07:00:00,0.0,1024.81625,4.5134166669999995,100.0,8.979166667000001,0.08941666699999999,237.6872144166667 -2015-08-11 08:00:00,0.0,1025.12475,30.95833333,100.0,8.875833333,0.109833333,237.67926898333334 -2015-08-11 09:00:00,0.0,1025.741167,79.9675,100.0,11.57166667,0.08708333300000001,237.67452961666666 -2015-08-11 10:00:00,0.0,1025.741917,131.80666670000002,94.625,13.335,0.735666667,237.66979025 -2015-08-11 11:00:00,0.0,1025.30875,172.6416667,84.6225,14.7725,0.971666667,237.65794175 -2015-08-11 12:00:00,0.0,1024.625833,170.775,81.8,15.62833333,1.212166667,237.66268115000003 -2015-08-11 13:00:00,0.0,1023.809083,202.5083333,78.67416667,16.34416667,1.5149166669999998,237.65863871666667 -2015-08-11 14:00:00,0.0,1022.859083,133.2083333,78.30416667,16.575,1.6586666669999999,237.65362056666666 -2015-08-11 15:00:00,0.0,1022.12525,63.88666667,81.345,15.9625,1.3840833330000002,237.648463 -2015-08-11 16:00:00,0.0,1021.467583,17.202,89.35,14.52416667,1.5081666669999998,237.6442812 -2015-08-11 17:00:00,0.0,1020.73375,0.68675,98.75,11.99916667,0.659416667,237.64093573333332 -2015-08-11 18:00:00,0.0,1020.0505,0.0,100.0,10.19083333,0.169833333,237.63647515000002 -2015-08-11 19:00:00,0.0,1019.225917,0.0,100.0,9.240833333,0.12941666699999999,237.63257209999998 -2015-08-11 20:00:00,0.0,1018.733583,0.0,100.0,8.7625,0.10525,237.62866908333334 -2015-08-11 21:00:00,0.0,1017.917583,0.0,100.0,8.23375,0.0715,237.62504485 -2015-08-11 22:00:00,0.0,1016.875667,0.0,100.0,7.5745,0.06925,237.6232327333333 -2015-08-11 23:00:00,0.0,1016.250333,0.0,100.0,7.213916667,0.11575,237.62211758333333 -2015-09-11 00:00:00,0.0,1016.175167,0.0,99.59166667,7.23775,0.21641666699999998,237.52459701666666 -2015-09-11 01:00:00,0.0,1016.24975,0.0,86.4,7.120166667,0.1355,237.52785428333334 -2015-09-11 02:00:00,0.0,1016.233333,0.0,85.36666667,8.005916667000001,0.176916667,237.52971556666668 -2015-09-11 03:00:00,0.0,1016.533417,0.0,83.76666667,13.25583333,0.737166667,237.53297286666668 -2015-09-11 04:00:00,0.0,1016.37475,0.0,85.23333333,15.395,0.8763333329999999,237.53591991666667 -2015-09-11 05:00:00,0.0,1016.50825,0.0,86.63333333,15.65833333,0.93175,237.53762611666664 -2015-09-11 06:00:00,0.0,1016.766333,0.0,87.45833333,15.71166667,1.356333333,237.53886699999998 -2015-09-11 07:00:00,22.31779579,1017.482583,0.9966666670000001,90.25,15.47166667,1.365583333,237.53964251666665 -2015-09-11 08:00:00,0.0,1017.92475,9.996,90.81666667,14.86416667,0.923083333,237.5391772 -2015-09-11 09:00:00,5.289648936,1018.4995,59.71916667,90.71666667,15.71166667,1.047916667,237.53948743333333 -2015-09-11 10:00:00,0.0,1019.066333,123.4725,87.99166667,15.78666667,0.989583333,237.5390221 -2015-09-11 11:00:00,0.0,1019.366583,150.55,78.19583333,17.2525,1.462666667,237.5365403333333 -2015-09-11 12:00:00,0.0,1018.958583,145.6333333,74.20666667,17.3475,1.879833333,237.53002578333334 -2015-09-11 13:00:00,0.0,1018.916833,107.70833329999999,73.4575,16.68166667,1.7504166669999999,237.52428680000003 -2015-09-11 14:00:00,0.0,1019.066417,107.40416670000002,67.59,16.53583333,1.436166667,237.51730696666667 -2015-09-11 15:00:00,0.0,1019.383167,71.22833333,65.73,16.30166667,1.496583333,237.51048220000004 -2015-09-11 16:00:00,0.0,1019.51625,17.02741667,67.53916667,15.365,1.618166667,237.50598406666666 -2015-09-11 17:00:00,0.0,1020.23325,0.32225,72.04666667,14.675,0.92975,237.50412275 -2015-09-11 18:00:00,0.0,1019.95,0.0,72.47833333,14.3225,1.123416667,237.50381251666667 -2015-09-11 19:00:00,0.0,1020.058167,0.0,72.29,14.27,1.7590000000000001,237.5031921 -2015-09-11 20:00:00,0.0,1020.34975,0.0,74.38416667,13.745,1.3979166669999998,237.50489831666667 -2015-09-11 21:00:00,0.0,1020.15875,0.0,77.8975,13.8925,1.5761666669999999,237.50738003333333 -2015-09-11 22:00:00,0.0,1020.049583,0.0,78.26833333,14.12916667,2.010333333,237.5101719833333 -2015-09-11 23:00:00,0.0,1019.700917,0.0,75.9125,14.08333333,2.9315833330000003,237.51327415 -2015-10-11 00:00:00,0.0,1019.483083,0.0,74.46583333,13.855,2.599583333,237.66264329999998 -2015-10-11 01:00:00,0.0,1019.500083,0.0,72.47,13.85666667,2.11225,237.66326373333334 -2015-10-11 02:00:00,0.0,1019.450167,0.0,72.535,13.62833333,1.8493333330000001,237.66372903333334 -2015-10-11 03:00:00,0.0,1019.3250830000001,0.0,74.545,13.57916667,1.8559166669999998,237.66496988333333 -2015-10-11 04:00:00,0.0,1019.367,0.0,75.46916667,13.52083333,1.875083333,237.66512501666668 -2015-10-11 05:00:00,0.0,1019.174583,0.0,74.755,13.44666667,1.8454166669999998,237.66388415000006 -2015-10-11 06:00:00,0.0,1019.258333,0.0,76.40416667,13.32833333,1.5981666669999999,237.66341883333334 -2015-10-11 07:00:00,0.0,1019.441333,0.928583333,77.61416667,13.21083333,1.054583333,237.6627984 -2015-10-11 08:00:00,0.0,1019.791667,12.75591667,78.99916667,13.36833333,1.3793333330000002,237.6615575666667 -2015-10-11 09:00:00,0.0,1020.01625,52.035,80.5575,13.53083333,1.6359166669999998,237.66047179999998 -2015-10-11 10:00:00,0.0,1020.2915,81.5275,81.07,14.25833333,1.66125,237.65969628333335 -2015-10-11 11:00:00,0.0,1020.1916669999999,199.225,81.06583333,14.84,2.048083333,237.6589207333333 -2015-10-11 12:00:00,0.0,1020.12525,121.91666670000001,82.96666667,15.0075,2.003166667,237.65736966666668 -2015-10-11 13:00:00,0.0,1020.025,98.65,84.43333333,14.73166667,2.136,237.65597365 -2015-10-11 14:00:00,0.0,1019.592333,81.97666667,84.68333333,14.98,1.67925,237.65349193333336 -2015-10-11 15:00:00,0.0,1019.433,30.84916667,86.5,14.16416667,1.6033333330000001,237.6522510666667 -2015-10-11 16:00:00,0.0,1019.516833,14.13308333,87.93333333,13.73666667,0.832833333,237.65209598333334 -2015-10-11 17:00:00,0.0,1019.54975,0.16016666699999998,88.825,13.29916667,1.4045,237.65132043333335 -2015-10-11 18:00:00,0.0,1019.6,0.0,89.85,12.72,0.591833333,237.6511653 -2015-10-11 19:00:00,0.0,1020.216417,0.0,90.09166667,12.97083333,0.66,237.65147553333335 -2015-10-11 20:00:00,0.0,1020.116833,0.0,91.375,12.83583333,0.671333333,237.65101018333334 -2015-10-11 21:00:00,0.0,1020.21625,0.0,92.625,12.86166667,0.826583333,237.6511653166667 -2015-10-11 22:00:00,0.0,1020.591417,0.0,93.25833333,12.79916667,1.8775,237.6533368 -2015-10-11 23:00:00,0.0,1020.4335,0.0,93.73333333,12.64416667,1.330333333,237.65380215000002 -2015-11-11 00:00:00,0.0,1020.425083,0.0,93.275,12.76083333,1.109333333,237.73387693333336 -2015-11-11 01:00:00,0.0,1020.150167,0.0,93.575,12.65083333,0.9328333329999999,237.7343417666667 -2015-11-11 02:00:00,0.0,1020.258417,0.0,94.03333333,12.7525,0.982666667,237.73449670000002 -2015-11-11 03:00:00,0.0,1020.125,0.0,95.35,12.49416667,0.9640833329999999,237.73542635 -2015-11-11 04:00:00,0.0,1019.883583,0.0,96.01666667,12.41333333,1.35325,237.73589115000001 -2015-11-11 05:00:00,0.0,1019.6835,0.0,95.25,12.27583333,1.4120833330000002,237.73697575000003 -2015-11-11 06:00:00,0.0,1019.96625,0.0,95.28333333,12.18833333,0.9540000000000001,237.73589118333334 -2015-11-11 07:00:00,0.0,1020.13325,0.7929166670000001,95.7,12.03833333,0.8673333329999999,237.73620106666667 -2015-11-11 08:00:00,0.0,1020.657917,12.00966667,95.48333333,11.98833333,0.9813333329999999,237.73604611666667 -2015-11-11 09:00:00,0.0,1020.966167,35.52416667,95.90833333,12.09,0.912,237.73604611666667 -2015-11-11 10:00:00,0.0,1021.674333,87.36583333,89.13333333,12.3025,1.475583333,237.73263740000002 -2015-11-11 11:00:00,0.0,1021.658667,155.1083333,79.11666667,13.12083333,1.54775,237.73403188333336 -2015-11-11 12:00:00,0.0,1021.483667,165.0333333,76.495,13.6575,1.4875,237.73294729999998 -2015-11-11 13:00:00,0.0,1021.058667,195.5,71.67333333,14.39333333,1.34575,237.73248246666665 -2015-11-11 14:00:00,0.0,1020.625583,165.8833333,69.7375,14.2725,1.304333333,237.7344967 -2015-11-11 15:00:00,0.0,1020.14175,84.82666667,72.42,13.20666667,1.3145,237.73604611666667 -2015-11-11 16:00:00,0.0,1020.083333,15.05366667,79.26583333,11.42666667,0.742416667,237.73899000000003 -2015-11-11 17:00:00,0.0,1020.13325,0.2075,90.78333333,7.989166667,0.005333333000000001,237.7392999 -2015-11-11 18:00:00,0.0,1020.06675,0.0,98.49166667,5.527666667,0.093666667,237.7394548166667 -2015-11-11 19:00:00,0.0,1020.249917,0.0,100.0,4.8775,0.235583333,237.74022956666667 -2015-11-11 20:00:00,0.0,1020.233167,0.0,90.64166667,5.059083333,0.232583333,237.73868013333333 -2015-11-11 21:00:00,0.0,1020.54975,0.0,84.61666667,8.882166667,0.88375,237.73666588333333 -2015-11-11 22:00:00,0.0,1020.808167,0.0,84.0,9.9925,0.763416667,237.73713068333336 -2015-11-11 23:00:00,0.0,1020.816833,0.0,84.575,9.853333333,0.082833333,237.73604611666667 -2015-12-11 00:00:00,0.0,1020.65025,0.0,84.575,10.39333333,0.675,237.99505821666665 -2015-12-11 01:00:00,0.0,1020.43325,0.0,84.83333333,10.55333333,0.33683333299999996,237.99434239999997 -2015-12-11 02:00:00,0.0,1020.699583,0.0,85.70833333,10.41416667,0.333583333,237.99416346666666 -2015-12-11 03:00:00,0.0,1020.75025,0.0,87.425,10.75833333,0.200333333,237.99416348333332 -2015-12-11 04:00:00,0.0,1020.883333,0.0,89.24166667,11.0475,0.47533333299999997,237.9921949333333 -2015-12-11 05:00:00,0.0,1021.066167,0.0,93.46666667,11.16166667,0.736083333,237.99004753333335 -2015-12-11 06:00:00,0.0,1021.225,0.0,95.29166667,10.75416667,0.206416667,237.98915275000002 -2015-12-11 07:00:00,0.0,1021.49975,2.74475,98.525,9.545,0.192,237.9891527666667 -2015-12-11 08:00:00,0.0,1021.84975,25.285,100.0,8.896666667,0.104833333,237.98843693333333 -2015-12-11 09:00:00,0.0,1022.382667,74.18833333,95.2,10.3575,0.39741666700000006,237.98682636666663 -2015-12-11 10:00:00,0.0,1022.783167,119.85,87.88333333,12.27166667,0.721166667,237.98951068333335 -2015-12-11 11:00:00,0.0,1022.90825,131.2,82.96666667,13.95,0.8645,237.98682636666663 -2015-12-11 12:00:00,0.0,1022.542167,166.4391667,80.22333333,14.34666667,0.791666667,237.98700531666665 -2015-12-11 13:00:00,0.0,1022.266833,212.69166669999998,73.7325,15.66583333,1.284333333,237.9855737 -2015-12-11 14:00:00,0.0,1021.933667,110.13416670000001,73.62916667,15.36333333,0.723,237.98485786666672 -2015-12-11 15:00:00,0.0,1021.625167,27.92416667,77.035,14.46916667,0.5319166670000001,237.98485788333332 -2015-12-11 16:00:00,0.0,1021.300333,5.53825,86.20833333,13.28583333,1.031666667,237.98485791666664 -2015-12-11 17:00:00,0.0,1021.12525,0.0545,91.0,12.155,0.20575,237.98467895 -2015-12-11 18:00:00,0.0,1020.9416669999999,0.0,93.55,11.9775,0.918583333,237.9859316 -2015-12-11 19:00:00,0.0,1020.7585,0.0,92.71666667,10.62833333,1.3571666669999998,237.9862895 -2015-12-11 20:00:00,0.0,1020.167333,0.0,98.48333333,8.996333332999999,1.160333333,237.98790010000002 -2015-12-11 21:00:00,0.0,1020.0415,0.0,100.0,7.11375,0.122666667,237.9866474 -2015-12-11 22:00:00,0.0,1019.816833,0.0,100.0,7.816666667000001,0.131166667,237.99452134999999 -2015-12-11 23:00:00,0.0,1019.633667,0.0,100.0,8.496666667000001,0.10241666699999999,238.00293218333331 -2015-11-13 00:00:00,0.0,1019.242083,0.0,100.0,8.37325,0.316166667,237.74239873333337 -2015-11-13 01:00:00,0.0,1018.958333,0.0,100.0,6.925083333,0.11558333300000001,237.74518768333328 -2015-11-13 02:00:00,0.0,1018.775167,0.0,100.0,5.172166667,0.023666667000000002,237.74518766666665 -2015-11-13 03:00:00,0.0,1018.558667,0.0,100.0,6.221166667,0.08125,237.74363826666664 -2015-11-13 04:00:00,0.0,1018.13375,0.0,100.0,6.955083332999999,0.2625,237.74394813333333 -2015-11-13 05:00:00,0.0,1017.983083,0.0,100.0,6.1485833329999995,0.092833333,237.74487778333332 -2015-11-13 06:00:00,0.0,1018.366417,0.0,100.0,6.355833333,0.081916667,237.74255366666662 -2015-11-13 07:00:00,0.0,1018.416667,0.89725,100.0,5.803999999999999,0.038166667,237.74410308333336 -2015-11-13 08:00:00,0.0,1018.59975,12.84633333,100.0,6.883083332999999,0.065666667,237.74193391666668 -2015-11-13 09:00:00,0.0,1019.024583,18.53916667,90.95833333,7.995166667,0.133,237.74162401666663 -2015-11-13 10:00:00,0.0,1019.349833,78.8825,85.46666667,9.904166667,0.627916667,237.74007461666667 -2015-11-13 11:00:00,0.0,1019.191833,66.55666667,82.5,13.16166667,1.916833333,237.74177894999994 -2015-11-13 12:00:00,0.0,1019.15025,52.14333333,85.69166667,12.77583333,2.203416667,237.74177895 -2015-11-13 13:00:00,0.0,1018.592083,73.40166667,86.80833333,12.635,1.84425,237.74286354999995 -2015-11-13 14:00:00,0.0,1018.083833,68.81583333,86.73333333,12.5225,1.6019166669999998,237.74239871666666 -2015-11-13 15:00:00,0.0,1017.591917,38.73166667,86.84166667,12.98,1.7024166669999998,237.74332836666667 -2015-11-13 16:00:00,0.0,1017.30875,5.566583333,90.7,12.27583333,2.011583333,237.74503274999998 -2015-11-13 17:00:00,3.1901591039999997,1016.858583,0.06625,94.64166667,11.63083333,2.447916667,237.74611733333333 -2015-11-13 18:00:00,0.0,1016.8083330000001,0.0,91.90833333,11.9025,2.118833333,237.74425801666663 -2015-11-13 19:00:00,19.72516013,1017.5160000000001,0.0,89.76666667,11.48166667,1.3645,237.74317343333334 -2015-11-13 20:00:00,8.953715568,1018.390417,0.0,84.54166667,10.44583333,3.0811666669999997,237.74208883333327 -2015-11-13 21:00:00,2.9139798,1018.9333330000001,0.0,89.3,8.376666667,1.782666667,237.74239873333332 -2015-11-13 22:00:00,0.0,1019.399333,0.0,85.4,8.378333332999999,1.821083333,237.74301849999998 -2015-11-13 23:00:00,0.0,1020.058083,0.0,84.23333333,7.851,1.4496666669999998,237.74394815000002 -2015-11-14 00:00:00,0.0,1020.666083,0.0,82.73333333,7.290833332999999,1.399083333,237.74363826666664 -2015-11-14 01:00:00,0.0,1021.465833,0.0,80.035,7.558916667,2.119583333,237.74286355 -2015-11-14 02:00:00,0.0,1022.033167,0.0,79.70833333,7.172333332999999,2.159416667,237.74224378333335 -2015-11-14 03:00:00,0.0,1022.041833,0.0,78.81583333,6.474,1.7305833330000002,237.7434833166666 -2015-11-14 04:00:00,0.0,1021.758417,0.0,84.83333333,6.015333332999999,1.7109166669999998,237.74301851666664 -2015-11-14 05:00:00,0.0,1021.891583,0.0,89.14166667,6.431666667000001,1.835166667,237.74177896666666 -2015-11-14 06:00:00,0.0,1021.77525,0.0,88.56666667,6.7438333329999995,1.88625,237.74208885 -2015-11-14 07:00:00,0.0,1021.683167,1.197333333,87.38333333,6.9445,1.7111666669999999,237.74146908333333 -2015-11-14 08:00:00,0.0,1021.99975,24.86666667,84.95,7.7135,2.3551666669999998,237.74038448333332 -2015-11-14 09:00:00,0.0,1022.333167,65.31666667,82.96666667,8.389166667000001,2.510916667,237.73945485000004 -2015-11-14 10:00:00,0.0,1022.491333,163.30833330000002,78.96916667,9.52,2.492833333,237.7386801166667 -2015-11-14 11:00:00,0.0,1022.57525,153.05,76.23166667,9.806666667,2.7305833330000002,237.7383702333333 -2015-11-14 12:00:00,0.0,1022.12525,78.255,76.18083333,9.689166667,2.4365,237.74053943333334 -2015-11-14 13:00:00,0.0,1021.500667,75.35416667,76.5125,9.775833333,2.181333333,237.73976471666666 -2015-11-14 14:00:00,0.0,1021.07525,65.46833333,78.47166667,9.784166667000001,2.247833333,237.7406943666667 -2015-11-14 15:00:00,0.0,1020.717333,32.69416667,83.30833333,9.66,2.31925,237.73852518333334 -2015-11-14 16:00:00,0.0,1020.200333,4.663,90.825,8.58,1.9884166669999999,237.74177895 -2015-11-14 17:00:00,0.0,1019.641833,0.0305,93.13333333,8.310833333,2.1005,237.74286356666667 -2015-11-14 18:00:00,0.0,1019.325417,0.0,96.05833333,7.916166667000001,1.4956666669999998,237.74348333333333 -2015-11-14 19:00:00,2.631220656,1018.642417,0.0,93.44166667,8.110083333,1.45825,237.7442580333333 -2015-11-14 20:00:00,0.0,1017.800667,0.0,90.48333333,8.376666667,1.5115833330000001,237.74580744999994 -2015-11-14 21:00:00,3.0186283919999997,1016.9175,0.0,89.175,8.524166667000001,1.90625,237.74627226666667 -2015-11-14 22:00:00,0.0,1016.208667,0.0,87.59166667,8.695833333,1.8049166669999999,237.7456525 -2015-11-14 23:00:00,0.0,1015.259333,0.0,94.31666667,8.00225,1.869583333,237.74720191666668 -2015-11-15 00:00:00,2.7976050480000003,1013.959667,0.0,97.78333333,7.371416667,1.6368333330000002,237.74844143333337 -2015-11-15 01:00:00,2.998479192,1012.742583,0.0,97.79166667,7.721583333,1.5813333330000001,237.7506106333333 -2015-11-15 02:00:00,0.0,1012.12525,0.0,96.4,8.51,2.326666667,237.74813156666667 -2015-11-15 03:00:00,3.466309032,1011.225667,0.0,95.30833333,9.259166667,2.8015,237.74968096666666 -2015-11-15 04:00:00,0.0,1010.242667,0.0,93.33333333,9.904166667,3.0410000000000004,237.7507655666667 -2015-11-15 05:00:00,0.0,1009.3839999999999,0.0,95.3,10.02,2.487833333,237.75107546666666 -2015-11-15 06:00:00,0.0,1008.891917,0.0,93.78333333,10.59,2.6235,237.75169521666666 -2015-11-15 07:00:00,0.0,1008.516917,0.178083333,91.775,11.04083333,2.481,237.75231495000003 -2015-11-15 08:00:00,0.0,1008.275167,5.8805,89.075,11.6075,2.912083333,237.75107545 -2015-11-15 09:00:00,0.0,1008.33325,29.95166667,87.71666667,12.13083333,2.82225,237.75277976666666 -2015-11-15 10:00:00,0.0,1008.541417,62.43583333,85.99166667,12.67583333,2.9055,237.75092050000003 -2015-11-15 11:00:00,0.0,1008.367083,122.75,84.15,13.5125,2.773916667,237.74937108333336 -2015-11-15 12:00:00,4.0786212719999995,1007.716833,184.025,80.74333333,14.82833333,3.121833333,237.75138531666667 -2015-11-15 13:00:00,0.0,1007.625583,209.1583333,78.4125,15.68583333,3.6270833330000003,237.75076558333333 -2015-11-15 14:00:00,0.0,1007.341417,152.80833330000002,78.34833333,15.75833333,3.493833333,237.7496809666667 -2015-11-15 15:00:00,0.0,1007.316833,44.69333333,80.54166667,14.83833333,3.5485,237.75200508333333 -2015-11-15 16:00:00,0.0,1007.7995,3.8856666669999997,80.75,14.48,3.1505,237.75154026666667 -2015-11-15 17:00:00,0.0,1008.324417,0.00325,81.24166667,14.36583333,2.999083333,237.75076558333333 -2015-11-15 18:00:00,0.0,1009.257333,0.0,83.125,14.00333333,2.8345833330000003,237.74859640000003 -2015-11-15 19:00:00,0.0,1009.858167,0.0,85.96666667,13.48666667,2.22275,237.74797661666665 -2015-11-15 20:00:00,0.0,1010.124667,0.0,85.28333333,13.38166667,2.002333333,237.74751179999998 -2015-11-15 21:00:00,0.0,1010.5995,0.0,83.55833333,13.24833333,2.402666667,237.7467370833333 -2015-11-15 22:00:00,0.0,1010.958167,0.0,84.18333333,12.84666667,2.8105833330000003,237.74844145 -2015-11-15 23:00:00,0.0,1011.283167,0.0,86.275,12.09333333,1.7318333330000002,237.7462722833333 -2015-11-16 00:00:00,0.0,1011.516667,0.0,89.69166667,11.14083333,0.66,237.74689203333332 -2015-11-16 01:00:00,0.0,1011.7080000000001,0.0,91.59166667,10.27,0.524166667,237.74596238333334 -2015-11-16 02:00:00,0.0,1011.67525,0.0,91.01666667,10.79333333,0.617,237.74704696666663 -2015-11-16 03:00:00,0.0,1011.258583,0.0,90.40833333,8.628333332999999,0.211166667,237.74766675 -2015-11-16 04:00:00,0.0,1011.125417,0.0,88.35,10.75666667,1.215,237.74720193333337 -2015-11-16 05:00:00,0.0,1010.5834169999999,0.0,94.675,9.333333332999999,1.5620833330000001,237.74890624999998 -2015-11-16 06:00:00,0.0,1010.641667,0.0,91.84166667,9.143333333,1.388166667,237.74828653333336 -2015-11-16 07:00:00,0.0,1010.957667,0.5995,91.43333333,9.105,0.852833333,237.74813156666667 -2015-11-16 08:00:00,0.0,1011.200417,16.24083333,90.475,9.886666667,1.075833333,237.74611733333333 -2015-11-16 09:00:00,0.0,1011.341,37.88833333,87.43333333,10.30666667,1.3619166669999998,237.7458074333333 -2015-11-16 10:00:00,0.0,1011.766583,67.73083333,83.13333333,10.52,1.759333333,237.7450327166667 -2015-11-16 11:00:00,0.0,1012.066417,98.40166667,79.35416667,10.85166667,1.883666667,237.74503273333332 -2015-11-16 12:00:00,0.0,1011.933667,112.98333329999998,79.03416667,11.30916667,1.961416667,237.74549754999998 -2015-11-16 13:00:00,0.0,1011.416917,98.14916667,80.3275,11.69916667,2.148666667,237.74704698333335 -2015-11-16 14:00:00,0.0,1011.092,63.655,81.25833333,11.6,1.477333333,237.74518766666665 -2015-11-16 15:00:00,0.0,1011.083167,33.74091667,83.1,11.44,1.459416667,237.74580746666666 -2015-11-16 16:00:00,0.0,1010.916917,1.9498333330000002,84.825,11.20333333,1.58775,237.74611731666667 -2015-11-16 17:00:00,0.0,1010.666917,0.0,89.20833333,10.90916667,1.323166667,237.74720193333334 -2015-11-16 18:00:00,0.0,1010.60825,0.0,96.3,9.9725,1.415583333,237.74797663333337 -2015-11-16 19:00:00,0.0,1010.641667,0.0,92.23333333,10.04083333,1.011416667,237.74689203333332 -2015-11-16 20:00:00,0.0,1010.658167,0.0,90.81666667,10.79416667,1.066666667,237.74549756666667 -2015-11-16 21:00:00,0.0,1010.467083,0.0,91.05833333,11.28583333,1.76375,237.7467371 -2015-11-16 22:00:00,0.0,1010.5165,0.0,94.75833333,11.21,1.427583333,237.74549754999998 -2015-11-16 23:00:00,5.782512336,1010.35875,0.0,96.03333333,11.255,1.63225,237.74596236666665 -2015-11-17 00:00:00,5.942552807999999,1009.767333,0.0,97.475,11.03166667,1.807166667,237.74797663333334 -2015-11-17 01:00:00,2.856041064,1008.942167,0.0,97.31666667,10.945,1.85325,237.74999085000002 -2015-11-17 02:00:00,3.021651336,1008.10075,0.0,96.0,11.0775,2.090833333,237.75061063333337 -2015-11-17 03:00:00,0.0,1008.033333,0.0,95.80833333,11.42916667,1.9938333330000002,237.74952603333335 -2015-11-17 04:00:00,9.059308872,1007.575417,0.0,96.54166667,11.46916667,1.85225,237.75138531666667 -2015-11-17 05:00:00,65.07720214,1006.884083,0.0,98.18333333,11.21,1.57375,237.75618848333332 -2015-11-17 06:00:00,3.333035184,1006.050417,0.0,96.10833333,11.5125,2.2030000000000003,237.76269604999996 -2015-11-17 07:00:00,0.0,1005.70025,0.358833333,94.66666667,11.92416667,1.936916667,237.76269604999996 -2015-11-17 08:00:00,24.89030412,1005.8415,3.150583333,96.69166667,11.70083333,1.2905,237.76207626666667 -2015-11-17 09:00:00,3.02511312,1005.866583,41.56958333,97.3,12.22666667,1.915,237.7636257 -2015-11-17 10:00:00,9.556373472,1005.84175,47.99666667,97.775,12.59083333,2.265666667,237.76594980000002 -2015-11-17 11:00:00,11.80379364,1006.1080000000001,52.15166667,99.65,12.62916667,1.9855,237.76718934999997 -2015-11-17 12:00:00,0.0,1006.241667,68.42916667,99.34166667,13.24166667,1.619833333,237.76982335 -2015-11-17 13:00:00,9.190923648,1006.3334169999999,54.4325,99.86666667,13.2875,1.9803333330000001,237.77245734999997 -2015-11-17 14:00:00,2.713525536,1006.308,59.5525,96.55,13.76666667,1.218333333,237.77524628333333 -2015-11-17 15:00:00,0.0,1006.308583,37.0675,94.73333333,14.05666667,1.5421666669999998,237.77788026666667 -2015-11-17 16:00:00,0.0,1006.033417,6.777666667,90.44166667,14.1,1.9595,237.78066921666667 -2015-11-17 17:00:00,0.0,1005.9335,0.022083332999999997,90.29166667,14.02916667,2.027583333,237.78175381666668 -2015-11-17 18:00:00,5.509484976,1005.966667,0.0,94.64166667,13.755,1.396833333,237.77989450000004 -2015-11-17 19:00:00,2.904752232,1004.892833,0.0,94.2,13.47833333,1.7603333330000002,237.78206368333335 -2015-11-17 20:00:00,9.53903688,1004.242167,0.0,93.83333333,14.19166667,2.256333333,237.78330321666667 -2015-11-17 21:00:00,20.66043394,1003.642167,0.0,97.225,13.86,2.90825,237.7846977 -2015-11-17 22:00:00,3.581528664,1003.291833,0.0,95.79166667,14.41416667,3.261666667,237.78624713333332 -2015-11-17 23:00:00,10.11632801,1002.466917,0.0,94.63333333,14.50416667,2.949833333,237.78888111666666 -2015-11-18 00:00:00,42.12780077,1002.974583,0.0,87.975,15.22083333,2.894916667,237.79074043333335 -2015-11-18 01:00:00,0.0,1003.08375,0.0,75.76666667,15.38583333,4.183833333,237.79352936666666 -2015-11-18 02:00:00,0.0,1003.182583,0.0,72.89,15.35166667,4.03875,237.79337445000002 -2015-11-18 03:00:00,0.0,1004.757,0.0,70.63583333,15.14833333,3.57075,237.79182501666665 -2015-11-18 04:00:00,0.0,1005.615917,0.0,68.53833333,14.47166667,3.806666667,237.7947689166667 -2015-11-18 05:00:00,0.0,1006.80725,0.0,71.265,13.78666667,3.486333333,237.79259971666667 -2015-11-18 06:00:00,0.0,1007.841083,0.0,72.18666667,13.45416667,3.548833333,237.7925997166667 -2015-11-18 07:00:00,0.0,1008.782417,0.884,73.08666667,13.25416667,3.2898333330000002,237.79414915000004 -2015-11-18 08:00:00,0.0,1010.1655,19.532,76.15833333,12.99833333,3.258416667,237.79043054999997 -2015-11-18 09:00:00,0.0,1011.398917,44.34083333,75.42416667,12.87416667,2.718916667,237.79043053333336 -2015-11-18 10:00:00,0.0,1012.39075,72.56166667,74.145,12.96666667,2.3338333330000003,237.7890360833333 -2015-11-18 11:00:00,0.0,1013.257917,79.82083333,74.91333333,13.45,1.673416667,237.78671193333332 -2015-11-18 12:00:00,0.0,1013.350333,99.37666667,71.1875,13.7725,2.6150833330000003,237.7873317 -2015-11-18 13:00:00,0.0,1013.058583,68.69833333,71.2,13.49083333,2.8153333330000003,237.78872618333332 -2015-11-18 14:00:00,0.0,1012.866917,56.01,69.68666667,13.26,3.0185,237.78795146666667 -2015-11-18 15:00:00,0.0,1012.45025,67.8125,70.8125,13.01,2.7030000000000003,237.78888111666666 -2015-11-18 16:00:00,0.0,1012.0005,8.91225,74.77583333,12.20916667,1.986666667,237.78950089999998 -2015-11-18 17:00:00,0.0,1011.741667,0.06383333299999999,75.675,11.67583333,1.9384166669999998,237.7887262 -2015-11-18 18:00:00,0.0,1011.5335,0.0,75.27916667,11.39,1.85625,237.78934594999998 -2015-11-18 19:00:00,0.0,1011.433667,0.0,76.335,11.265,2.2095833330000003,237.78965583333334 -2015-11-18 20:00:00,0.0,1010.850667,0.0,78.68916667,11.31083333,2.4635833330000003,237.79197996666667 -2015-11-18 21:00:00,0.0,1010.4,0.0,77.77333333,11.47333333,2.515083333,237.78950089999998 -2015-11-18 22:00:00,0.0,1010.125583,0.0,77.32916667,12.10916667,2.474416667,237.789191 -2015-11-18 23:00:00,0.0,1009.583583,0.0,76.85916667,12.68166667,2.2560833330000003,237.7879515 -2015-11-19 00:00:00,0.0,1009.067,0.0,77.42916667,13.58166667,2.941916667,237.78810640000003 -2015-11-19 01:00:00,0.0,1008.291917,0.0,79.53083333,13.93666667,3.483916667,237.79167008333334 -2015-11-19 02:00:00,6.431338127999999,1008.35875,0.0,90.05,12.73666667,2.446416667,237.78981078333334 -2015-11-19 03:00:00,0.0,1008.0835,0.0,80.98833333,13.96583333,3.302166667,237.7895009 -2015-11-19 04:00:00,0.0,1008.282917,0.0,82.35833333,13.77,2.337166667,237.78779654999997 -2015-11-19 05:00:00,0.0,1008.658083,0.0,84.81666667,13.43916667,3.136916667,237.78841628333336 -2015-11-19 06:00:00,0.0,1008.75,0.0,77.845,13.49166667,3.1840833330000002,237.78903604999996 -2015-11-19 07:00:00,6.304905864,1009.399333,0.38141666700000004,86.175,12.43083333,2.87525,237.78671193333335 -2015-11-19 08:00:00,3.271945248,1010.140917,9.18025,91.56666667,11.73833333,2.6445,237.78671195 -2015-11-19 09:00:00,3.098640648,1010.383417,27.55,87.225,11.76583333,2.312583333,237.78609219999998 -2015-11-19 10:00:00,0.0,1010.757833,129.9325,76.17166667,12.98666667,3.954583333,237.78485265000003 -2015-11-19 11:00:00,0.0,1010.8166669999999,165.7166667,70.21166667,13.82583333,3.83225,237.78671195000004 -2015-11-19 12:00:00,0.0,1010.666917,107.245,77.99833333,13.66,3.75925,237.7860921666667 -2015-11-19 13:00:00,3.468491784,1010.242083,55.225,86.75,12.145,3.06,237.78686688333335 -2015-11-19 14:00:00,0.0,1010.0834169999999,60.94,86.11666667,12.51666667,2.8930000000000002,237.78702181666668 -2015-11-19 15:00:00,51.4620107,1009.750167,29.63658333,93.40833333,11.0025,2.468666667,237.78655698333333 -2015-11-19 16:00:00,150.1220563,1009.1425830000001,0.68375,99.26666667,9.780833333,1.59225,237.80360054999997 -2015-11-19 17:00:00,31.02879996,1007.875917,0.0,99.525,9.495833333,0.750916667,237.83908211666665 -2015-11-19 18:00:00,36.64051099,1006.551417,0.0,99.61666667,9.543333333,1.6088333330000002,237.85813991666666 -2015-11-19 19:00:00,29.96004593,1005.451,0.0,99.925,9.251666667,1.3834166669999999,237.8754933 -2015-11-19 20:00:00,45.22603795,1004.0425,0.0,100.0,9.171666667,0.56825,237.89176218333333 -2015-11-19 21:00:00,71.54273815,1004.36575,0.0,100.0,9.110833332999999,0.4745,237.9097353666667 -2015-11-19 22:00:00,0.0,1005.340833,0.0,99.08333333,9.0375,2.0499166669999997,237.93251173333337 -2015-11-19 23:00:00,0.0,1005.8580000000001,0.0,97.76666667,8.593333333,1.182166667,237.94769596666666 -2015-11-20 00:00:00,0.0,1006.050083,0.0,98.38333333,8.645,1.301583333,237.95420353333336 -2015-11-20 01:00:00,0.0,1006.266333,0.0,98.30833333,8.540833333,1.6455,237.95714743333335 -2015-11-20 02:00:00,0.0,1006.20075,0.0,99.775,8.3575,1.86375,237.95900671666664 -2015-11-20 03:00:00,0.0,1005.991417,0.0,99.525,8.615,1.9764166669999998,237.95652765 -2015-11-20 04:00:00,0.0,1005.783417,0.0,99.2,8.874166667,1.284,237.9551331833333 -2015-11-20 05:00:00,0.0,1005.475,0.0,97.55833333,8.885,1.055416667,237.95296400000004 -2015-11-20 06:00:00,0.0,1005.117333,0.0,94.625,8.805833332999999,1.377583333,237.95280905 -2015-11-20 07:00:00,0.0,1004.300833,0.174166667,94.79166667,8.745,2.5545,237.9532738833333 -2015-11-20 08:00:00,0.0,1004.083583,8.32875,95.6,8.710833333,2.116,237.95094976666667 -2015-11-20 09:00:00,0.0,1003.558417,30.50916667,92.925,8.8725,1.841166667,237.94692128333335 -2015-11-20 10:00:00,0.0,1003.367333,41.18,92.3,8.715,1.839,237.94521693333334 -2015-11-20 11:00:00,0.0,1002.192583,53.37666667,93.325,8.6375,1.9484166669999998,237.9442872666667 -2015-11-20 12:00:00,8.527191864,1000.959583,28.80083333,97.41666667,8.163583333,1.7096666669999998,237.94490705 -2015-11-20 13:00:00,0.0,999.39275,43.51916667,97.66666667,7.950083332999999,0.9355,237.9461465666667 -2015-11-20 14:00:00,18.55015066,998.2923332999999,15.19916667,97.68333333,7.42575,0.94825,237.94754103333335 -2015-11-20 15:00:00,43.80615115,998.0,6.82375,97.48333333,6.547333332999999,1.259583333,237.95590789999997 -2015-11-20 16:00:00,13.64092596,997.4928332999999,1.230666667,96.75833333,5.77925,1.0295,237.96520435 -2015-11-20 17:00:00,0.0,996.3753332999999,0.0,96.26666667,5.311416667,1.249416667,237.97806448333336 -2015-11-20 18:00:00,0.0,996.3083332999998,0.0,97.225,5.256333333,1.411083333,237.98643131666665 -2015-11-20 19:00:00,0.0,996.1085,0.0,97.93333333,5.292333333,0.7855833329999999,237.98968506666662 -2015-11-20 20:00:00,0.0,995.9919167000002,0.0,97.10833333,4.974916667,0.623083333,237.99402345 -2015-11-20 21:00:00,0.0,995.8585832999999,0.0,98.00833333,4.99075,1.094166667,237.99371356666668 -2015-11-20 22:00:00,0.0,995.53325,0.0,97.325,4.824,1.48325,237.9927839166667 -2015-11-20 23:00:00,0.0,995.2755,0.0,96.1,4.4094166669999995,1.41525,237.99169931666665 -2015-11-21 00:00:00,0.0,994.9500832999998,0.0,96.24166667,3.7174166669999997,1.10575,237.99076966666667 -2015-11-21 01:00:00,0.0,994.6420832999999,0.0,96.14166667,3.811583333,1.63375,237.98922025 -2015-11-21 02:00:00,0.0,994.0673332999999,0.0,95.725,3.4610000000000003,1.613583333,237.98782579999997 -2015-11-21 03:00:00,0.0,993.1089999999999,0.0,95.025,3.437,1.859833333,237.98767083333334 -2015-11-21 04:00:00,0.0,992.2921667000002,0.0,94.95833333,3.323083333,2.0259166669999997,237.9856566166667 -2015-11-21 05:00:00,2.76922812,991.9086667000001,0.0,93.65833333,3.23,1.415583333,237.98209296666667 -2015-11-21 06:00:00,0.0,991.9830000000001,0.0,93.18333333,3.61225,2.2833333330000003,237.9796139166667 -2015-11-21 07:00:00,0.0,992.067,1.0585,94.35833333,3.31425,2.4845833330000002,237.9785293333333 -2015-11-21 08:00:00,0.0,992.2495,17.4795,94.73333333,3.0965,1.9180000000000001,237.97620518333335 -2015-11-21 09:00:00,0.0,992.15025,43.45833333,93.35,3.642416667,1.4825833330000002,237.97341625 -2015-11-21 10:00:00,0.0,991.9918332999998,80.20916667,92.05833333,4.401833333,0.898166667,237.97062731666668 -2015-11-21 11:00:00,0.0,991.6419999999999,110.125,88.95,5.010166667,0.790333333,237.96845811666665 -2015-11-21 12:00:00,0.0,991.0923332999998,163.225,84.05,6.075916667,0.7314166670000001,237.96690869999998 -2015-11-21 13:00:00,0.0,990.6916667000002,96.08416667,84.9,5.619833333,1.4451666669999998,237.96566916666666 -2015-11-21 14:00:00,0.0,990.5501667000001,34.6375,83.50833333,5.5149166670000005,0.6285,237.96582413333337 -2015-11-21 15:00:00,0.0,990.8661667000001,10.14941667,91.6,5.27,0.644333333,237.9650494 -2015-11-21 16:00:00,24.54701186,991.5244167000001,1.490833333,97.09166667,3.8563333330000003,0.912166667,237.9627252666667 -2015-11-21 17:00:00,2.573332584,992.0164167000001,0.0,99.30833333,3.037833333,0.652083333,237.9607110666667 -2015-11-21 18:00:00,0.0,992.24975,0.0,99.84166667,2.5505,0.6095,237.95869685 -2015-11-21 19:00:00,0.0,992.7995,0.0,100.0,1.842416667,0.44675,237.9588517666667 -2015-11-21 20:00:00,0.0,993.1664167000001,0.0,100.0,0.93625,0.32666666699999997,237.95745731666668 -2015-11-21 21:00:00,2.472045408,993.6078332999999,0.0,100.0,0.552416667,0.853,237.95575293333332 -2015-11-21 22:00:00,0.0,994.1995832999999,0.0,99.925,0.33625,0.63425,237.95342883333333 -2015-11-21 23:00:00,0.0,994.6665,0.0,97.675,0.565,0.6625,237.95218928333335 -2015-11-22 00:00:00,0.0,995.1411667000001,0.0,97.575,1.133583333,0.542083333,237.95048495 -2015-11-22 01:00:00,0.0,995.4578332999998,0.0,98.475,1.4416666669999998,0.85775,237.94831575 -2015-11-22 02:00:00,2.527469328,995.9829167000001,0.0,99.88333333,1.5150833330000002,0.89975,237.94676633333336 -2015-11-22 03:00:00,0.0,996.2915832999998,0.0,100.0,1.162,0.678416667,237.94785091666668 -2015-11-22 04:00:00,0.0,996.66625,0.0,99.90833333,0.49066666700000006,0.7334166670000001,237.94738610000002 -2015-11-22 05:00:00,0.0,997.2161667000001,0.0,99.91666667,0.32616666699999997,0.6476666670000001,237.94552681666667 -2015-11-22 06:00:00,0.0,997.9493332999999,0.0,97.64166667,0.902833333,0.931916667,237.9411884166667 -2015-11-22 07:00:00,0.0,998.5576667000001,0.26258333300000003,93.69166667,1.39225,0.79175,237.93839949999997 -2015-11-22 08:00:00,0.0,999.5574167000001,9.523083332999999,91.45,1.7876666669999999,0.6709999999999999,237.93654023333332 -2015-11-22 09:00:00,0.0,1000.72425,30.70333333,87.975,2.220333333,1.4524166669999998,237.93530069999997 -2015-11-22 10:00:00,0.0,1000.9,142.8108333,84.51666667,3.4708333330000003,1.7961666669999998,237.9335963333333 -2015-11-22 11:00:00,0.0,1001.491417,132.38333329999998,83.45,4.345416667,1.960833333,237.93189198333334 -2015-11-22 12:00:00,0.0,1001.816,165.3,80.98333333,4.44,1.7538333330000002,237.9311172833333 -2015-11-22 13:00:00,0.0,1002.166667,145.2666667,78.02916667,4.442083333,2.604083333,237.92879315000002 -2015-11-22 14:00:00,0.0,1002.166667,92.82666667,81.53166667,4.13325,1.81575,237.92879314999996 -2015-11-22 15:00:00,0.0,1002.449917,36.09666667,84.25,3.351416667,1.7498333330000002,237.92770853333332 -2015-11-22 16:00:00,0.0,1002.998833,4.961666667,88.11666667,3.03025,1.96,237.92584926666663 -2015-11-22 17:00:00,0.0,1003.625,0.0,99.45833333,0.79025,1.305833333,237.92476468333334 -2015-11-22 18:00:00,0.0,1004.016083,0.0,97.64166667,0.650333333,0.90025,237.9242998166667 -2015-11-22 19:00:00,0.0,1004.990917,0.0,97.525,0.26208333300000003,0.5920000000000001,237.92135595000002 -2015-11-22 20:00:00,0.0,1005.907667,0.0,98.90833333,0.815916667,1.016333333,237.91872193333336 -2015-11-22 21:00:00,0.0,1005.949917,0.0,98.25,0.850916667,1.4976666669999998,237.9173274666667 -2015-11-22 22:00:00,0.0,1006.36625,0.0,97.64166667,0.982666667,1.891583333,237.915933 -2015-11-22 23:00:00,0.0,1006.824583,0.0,95.1,1.115333333,1.7634166669999998,237.91562313333336 -2015-11-23 00:00:00,0.0,1007.79925,0.0,95.18333333,1.3019999999999998,1.9124166669999998,237.91314409999998 -2015-11-23 01:00:00,0.0,1008.249333,0.0,96.95,1.239416667,1.5019999999999998,237.91066501666668 -2015-11-23 02:00:00,2.698042656,1009.257583,0.0,97.425,1.362333333,1.28475,237.90911563333336 -2015-11-23 03:00:00,2.583300504,1010.066417,0.0,97.6,1.45725,1.34,237.90710138333336 -2015-11-23 04:00:00,2.61642984,1010.64925,0.0,98.15,1.456833333,1.192583333,237.9057069 -2015-11-23 05:00:00,0.0,1011.441,0.0,97.775,1.57,0.517416667,237.9043124166667 -2015-11-23 06:00:00,0.0,1012.4740830000001,0.0,97.73333333,1.757916667,0.82375,237.90214321666667 -2015-11-23 07:00:00,2.5030332719999997,1013.316167,0.44741666700000005,98.13333333,1.974666667,0.861583333,237.9010586333333 -2015-11-23 08:00:00,0.0,1014.49025,12.31583333,97.86666667,2.128583333,0.661833333,237.89764991666667 -2015-11-23 09:00:00,0.0,1015.8574169999999,33.74083333,97.20833333,2.533083333,0.82475,237.8964104 -2015-11-23 10:00:00,0.0,1016.791,52.17083333,94.58333333,3.1783333330000003,0.64225,237.89315663333335 -2015-11-23 11:00:00,0.0,1017.457833,69.40666667,94.175,3.6164166669999998,1.048666667,237.89269180000005 -2015-11-23 12:00:00,0.0,1017.675,61.17333333,93.125,3.8365,1.30525,237.8923819 -2015-11-23 13:00:00,0.0,1017.849667,133.28333329999998,84.18333333,4.946000000000001,1.457333333,237.89067758333331 -2015-11-23 14:00:00,0.0,1018.133167,164.25,80.35166667,5.021083333,1.227083333,237.88943804999997 -2015-11-23 15:00:00,0.0,1018.533167,92.3525,82.43,4.634666667,1.25125,237.88897323333333 -2015-11-23 16:00:00,0.0,1018.774583,5.833833332999999,91.75,3.10175,0.6970833329999999,237.89021276666665 -2015-11-23 17:00:00,0.0,1019.2330000000001,0.028666667000000003,97.55833333,0.718166667,0.235166667,237.89067758333337 -2015-11-23 18:00:00,0.0,1019.699667,0.0,99.88333333,0.09983333300000001,0.108166667,237.88990288333335 -2015-11-23 19:00:00,0.0,1020.066583,0.0,100.0,-0.039583333,0.0375,237.8886633666667 -2015-11-23 20:00:00,0.0,1020.0,0.0,100.0,-0.42508333299999995,0.044416667,237.88819853333334 -2015-11-23 21:00:00,0.0,1019.825,0.0,100.0,-1.4771666669999999,0.059666667,237.8892831166667 -2015-11-23 22:00:00,0.0,1019.958167,0.0,100.0,-2.349583333,0.035833332999999995,237.8891282 -2015-11-23 23:00:00,0.0,1020.083333,0.0,100.0,-2.594,0.108583333,237.8877337166667 -2015-11-24 00:00:00,0.0,1019.966917,0.0,100.0,-2.952,0.068083333,237.88664913333332 -2015-11-24 01:00:00,0.0,1019.592,0.0,100.0,-2.65,0.10516666699999999,237.88556451666668 -2015-11-24 02:00:00,0.0,1019.4416669999999,0.0,100.0,-2.4635833330000003,0.129083333,237.88401513333335 -2015-11-24 03:00:00,0.0,1019.208667,0.0,100.0,-2.69175,0.053833333,237.88417003333336 -2015-11-24 04:00:00,0.0,1018.65875,0.0,100.0,-3.053833333,0.08858333300000001,237.88401513333335 -2015-11-24 05:00:00,0.0,1018.267083,0.0,100.0,-3.183333333,0.032166667,237.88386016666672 -2015-11-24 06:00:00,0.0,1018.0248330000001,0.0,100.0,-3.5165833330000003,0.21533333300000002,237.8847898 -2015-11-24 07:00:00,0.0,1017.833833,0.783416667,100.0,-3.910916667,0.025666667,237.8843249833333 -2015-11-24 08:00:00,0.0,1017.5750830000001,19.58983333,100.0,-3.128083333,0.062583333,237.88293051666665 -2015-11-24 09:00:00,0.0,1017.541833,60.95916667,100.0,-1.973583333,0.0,237.87905694999998 -2015-11-24 10:00:00,0.0,1017.291833,95.7375,100.0,0.02775,0.191583333,237.8776625 -2015-11-24 11:00:00,0.0,1016.52575,107.44166670000001,97.26666667,1.5794166669999998,1.88425,237.87859216666664 -2015-11-24 12:00:00,2.885078016,1015.567583,111.20833329999999,86.175,1.9226666669999999,2.1221666669999997,237.87890205 -2015-11-24 13:00:00,0.0,1014.600917,112.30833329999999,86.35833333,2.497,1.70075,237.87828228333333 -2015-11-24 14:00:00,0.0,1013.434083,57.6725,86.21666667,2.58075,1.363083333,237.87905696666664 -2015-11-24 15:00:00,0.0,1012.467583,23.49583333,87.13333333,2.411666667,1.4943333330000002,237.87998661666666 -2015-11-24 16:00:00,0.0,1011.500667,2.59975,87.65,2.187833333,1.6351666669999998,237.8799866333333 -2015-11-24 17:00:00,0.0,1010.809,0.0,88.48333333,2.0306666669999998,1.6019999999999999,237.87983168333335 -2015-11-24 18:00:00,0.0,1010.05075,0.0,92.68333333,1.531833333,1.674916667,237.88076133333334 -2015-11-24 19:00:00,0.0,1009.159083,0.0,96.93333333,0.882916667,1.8095833330000002,237.88091630000005 -2015-11-24 20:00:00,0.0,1008.142333,0.0,97.71666667,0.80375,1.6755,237.88153605000002 -2015-11-24 21:00:00,0.0,1007.325667,0.0,99.83333333,0.5155,0.840916667,237.8812261666667 -2015-11-24 22:00:00,0.0,1006.45075,0.0,100.0,0.45533333299999995,0.751166667,237.88184591666672 -2015-11-24 23:00:00,0.0,1005.733917,0.0,99.55833333,0.44783333299999994,0.391583333,237.88153605000002 -2015-11-25 00:00:00,0.0,1005.14225,0.0,99.90833333,0.41325,0.38308333299999997,237.8807613166667 -2015-11-25 01:00:00,0.0,1004.284,0.0,99.13333333,0.428,0.8370833329999999,237.88169098333336 -2015-11-25 02:00:00,0.0,1003.691917,0.0,97.95,0.44683333299999994,0.758083333,237.88169098333333 -2015-11-25 03:00:00,0.0,1003.167167,0.0,97.35833333,0.4695,0.523833333,237.88107121666667 -2015-11-25 04:00:00,0.0,1002.658667,0.0,97.43333333,0.555583333,0.689333333,237.88200088333335 -2015-11-25 05:00:00,0.0,1002.483583,0.0,98.45833333,0.568916667,0.10066666699999999,237.88091626666667 -2015-11-25 06:00:00,0.0,1002.083583,0.0,99.55,0.682583333,0.436333333,237.88107120000004 -2015-11-25 07:00:00,0.0,1001.958167,0.11616666699999999,99.89166667,0.7719166670000001,0.558916667,237.87967673333333 -2015-11-25 08:00:00,2.412936072,1002.041833,4.517666667,98.84166667,0.8028333329999999,0.229916667,237.87998661666666 -2015-11-25 09:00:00,7.411615896,1002.19975,15.21583333,98.51666667,0.9750833329999999,0.250833333,237.87843721666664 -2015-11-25 10:00:00,17.1513918,1002.24175,38.53333333,98.76666667,1.3076666670000001,0.40925,237.87735263333332 -2015-11-25 11:00:00,17.50966363,1001.9005,105.77,97.80833333,1.9718333330000002,0.487833333,237.87750755 -2015-11-25 12:00:00,8.026595184,1001.500417,72.80666667,97.325,2.42225,0.937,237.87781743333332 -2015-11-25 13:00:00,2.559383112,1000.9751669999999,79.41833333,96.63333333,3.207083333,0.852,237.87983169999998 -2015-11-25 14:00:00,0.0,1000.783583,37.5675,95.81666667,3.7984166669999997,0.726916667,237.87859215 -2015-11-25 15:00:00,0.0,1000.625,9.58475,97.60833333,3.42875,0.6375833329999999,237.87983170000004 -2015-11-25 16:00:00,7.4904684239999995,1000.516667,3.230833333,100.0,3.479333333,0.550166667,237.88076134999997 -2015-11-25 17:00:00,19.19487622,1000.824583,0.0,100.0,3.430333333,0.033666667000000004,237.88045146666664 -2015-11-25 18:00:00,0.0,1001.124917,0.0,100.0,3.73525,0.277583333,237.8823107666667 -2015-11-25 19:00:00,2.45280444,1001.641083,0.0,99.99166667,3.760583333,0.592833333,237.8823107666667 -2015-11-25 20:00:00,0.0,1002.116333,0.0,100.0,3.561083333,0.7144166670000001,237.88308546666667 -2015-11-25 21:00:00,0.0,1002.533083,0.0,100.0,3.2351666669999997,0.659083333,237.88277560000003 -2015-11-25 22:00:00,0.0,1002.833167,0.0,100.0,3.19925,0.251416667,237.8840151166667 -2015-11-25 23:00:00,0.0,1003.332833,0.0,100.0,3.104916667,0.486416667,237.88355030000002 -2015-11-26 00:00:00,0.0,1003.483083,0.0,100.0,2.7471666669999997,0.600666667,237.88525463333335 -2015-11-26 01:00:00,0.0,1004.03275,0.0,100.0,2.3805,0.492666667,237.8833953666667 -2015-11-26 02:00:00,0.0,1004.7245,0.0,99.93333333,3.200583333,0.653666667,237.88370523333336 -2015-11-26 03:00:00,0.0,1005.158,0.0,99.54166667,3.429083333,0.43708333299999996,237.88308546666667 -2015-11-26 04:00:00,0.0,1005.541333,0.0,99.1,3.4805,0.392,237.88386016666664 -2015-11-26 05:00:00,0.0,1006.074667,0.0,99.65,3.23825,0.545166667,237.88525463333335 -2015-11-26 06:00:00,0.0,1006.749083,0.0,100.0,3.433166667,0.654166667,237.88525464999998 -2015-11-26 07:00:00,0.0,1007.599333,0.163,100.0,3.131916667,0.580666667,237.8861843 -2015-11-26 08:00:00,0.0,1008.7239999999999,4.96975,99.825,3.816083333,0.76975,237.88339533333337 -2015-11-26 09:00:00,0.0,1009.849167,29.69416667,96.96666667,4.381166667,0.8885,237.88339533333337 -2015-11-26 10:00:00,0.0,1010.632833,93.28,94.675,5.301416667,1.756833333,237.88153603333333 -2015-11-26 11:00:00,0.0,1011.432667,81.98416667,93.13333333,5.5025,2.10375,237.88169098333336 -2015-11-26 12:00:00,0.0,1011.874667,112.84666670000001,89.08333333,6.047000000000001,2.044083333,237.88076133333337 -2015-11-26 13:00:00,2.652695784,1012.225,126.16916670000002,81.55833333,6.899083332999999,1.604916667,237.8802965 -2015-11-26 14:00:00,0.0,1012.549333,33.54916667,85.63333333,6.459416667,1.816416667,237.88200086666666 -2015-11-26 15:00:00,0.0,1013.041417,45.90416667,84.28333333,5.5885,1.107416667,237.88215580000005 -2015-11-26 16:00:00,0.0,1013.815833,6.125166667,93.59166667,4.91575,0.556083333,237.88231076666668 -2015-11-26 17:00:00,0.0,1014.57425,0.012666667,98.86666667,2.9090833330000003,0.18925,237.88200086666666 -2015-11-26 18:00:00,0.0,1015.341167,0.0,100.0,2.052083333,0.22108333300000002,237.88184593333338 -2015-11-26 19:00:00,0.0,1016.132667,0.0,100.0,2.72025,0.14300000000000002,237.87998661666666 -2015-11-26 20:00:00,0.0,1016.632833,0.0,100.0,3.52575,0.29533333300000003,237.8795217833333 -2015-11-26 21:00:00,0.0,1017.041917,0.0,99.41666667,3.700416667,0.59625,237.8795217833333 -2015-11-26 22:00:00,0.0,1016.741667,0.0,100.0,2.0579166669999998,0.317416667,237.88215581666668 -2015-11-26 23:00:00,0.0,1016.516833,0.0,100.0,0.180833333,0.169416667,237.8824657 -2015-11-27 00:00:00,0.0,1016.683167,0.0,100.0,-0.99675,0.11541666699999999,237.88370525000002 -2015-11-27 01:00:00,0.0,1016.6833330000001,0.0,100.0,-1.266,0.1335,237.8833953666667 -2015-11-27 02:00:00,0.0,1016.874917,0.0,100.0,-0.08608333300000001,0.272083333,237.88169100000002 -2015-11-27 03:00:00,0.0,1016.8501669999999,0.0,100.0,0.7303333329999999,0.5508333329999999,237.88014156666668 -2015-11-27 04:00:00,0.0,1016.467,0.0,100.0,0.617416667,0.426333333,237.87998665 -2015-11-27 05:00:00,0.0,1016.233583,0.0,100.0,0.39183333299999995,0.870916667,237.87983168333332 -2015-11-27 06:00:00,0.0,1015.966917,0.0,100.0,0.045,0.971333333,237.8820008666667 -2015-11-27 07:00:00,0.0,1015.84175,0.18791666699999998,100.0,-0.224083333,0.8470833329999999,237.88231075000002 -2015-11-27 08:00:00,0.0,1015.6665830000001,7.966333333,100.0,-0.09699999999999999,0.602166667,237.88200086666666 -2015-11-27 09:00:00,0.0,1015.508667,30.32083333,100.0,-0.44508333299999997,0.77225,237.88091628333336 -2015-11-27 10:00:00,0.0,1015.283333,53.0025,100.0,-0.318583333,0.39233333299999995,237.88169096666664 -2015-11-27 11:00:00,0.0,1015.00875,71.20916667,100.0,0.11575,0.307,237.88014155 -2015-11-27 12:00:00,0.0,1014.442333,71.02416667,100.0,0.47375,0.278166667,237.88014155 -2015-11-27 13:00:00,0.0,1013.425667,57.88083333,100.0,0.6875,0.5529999999999999,237.87998661666666 -2015-11-27 14:00:00,0.0,1012.7005,38.035,100.0,1.0344166670000001,0.883083333,237.88045145 -2015-11-27 15:00:00,0.0,1012.050667,23.475,100.0,1.342083333,1.181833333,237.8793668666667 -2015-11-27 16:00:00,0.0,1011.600417,3.4813333330000003,100.0,1.423583333,1.5350833330000002,237.88076133333334 -2015-11-27 17:00:00,0.0,1011.116917,0.008416667,100.0,0.885416667,1.504083333,237.88184591666666 -2015-11-27 18:00:00,0.0,1010.642167,0.0,100.0,0.60075,1.4705,237.88417003333333 -2015-11-27 19:00:00,0.0,1010.500083,0.0,100.0,0.763333333,0.931333333,237.88107121666667 -2015-11-27 20:00:00,0.0,1010.075667,0.0,100.0,0.78225,0.7865833329999999,237.88045145 -2015-11-27 21:00:00,0.0,1009.4005,0.0,100.0,0.913083333,0.37975,237.88184593333335 -2015-11-27 22:00:00,0.0,1008.55875,0.0,100.0,1.087833333,1.099666667,237.88277556666665 -2015-11-27 23:00:00,0.0,1007.875667,0.0,100.0,0.313583333,1.887666667,237.88447994999999 -2015-11-28 00:00:00,0.0,1007.30075,0.0,100.0,-0.38391666700000004,1.064166667,237.88463488333332 -2015-11-28 01:00:00,0.0,1006.325667,0.0,100.0,-0.172166667,0.52775,237.88556451666668 -2015-11-28 02:00:00,0.0,1005.783833,0.0,100.0,0.24933333300000002,0.777666667,237.8832404 -2015-11-28 03:00:00,0.0,1004.77575,0.0,100.0,0.41016666700000004,1.78525,237.88324039999998 -2015-11-28 04:00:00,0.0,1003.96725,0.0,100.0,0.367833333,2.1005,237.88370523333336 -2015-11-28 05:00:00,0.0,1003.650083,0.0,100.0,0.6000833329999999,1.42775,237.88339535 -2015-11-28 06:00:00,0.0,1003.566833,0.0,100.0,0.679916667,0.829666667,237.88293053333334 -2015-11-28 07:00:00,4.85963136,1003.857667,0.020166667,99.99166667,0.9824166670000001,0.303833333,237.88060638333332 -2015-11-28 08:00:00,2.40643956,1004.607583,2.626416667,100.0,1.80625,0.895416667,237.87998661666666 -2015-11-28 09:00:00,3.019491504,1005.682417,22.955,100.0,2.5724166669999997,1.598583333,237.87874708333334 -2015-11-28 10:00:00,0.0,1006.882417,98.86666667,97.81666667,4.300666667,1.336416667,237.8771976666667 -2015-11-28 11:00:00,0.0,1007.815917,59.63416667,96.96666667,5.1668333330000005,1.3575,237.8761130833333 -2015-11-28 12:00:00,2.5140145919999997,1008.815833,91.05,94.4,5.135333333,1.09425,237.87456368333332 -2015-11-28 13:00:00,2.904352392,1009.682583,99.9525,90.25833333,5.923666667000001,1.803833333,237.8734790666667 -2015-11-28 14:00:00,0.0,1010.291417,55.2525,85.83333333,5.473916667,1.496666667,237.87378896666667 -2015-11-28 15:00:00,0.0,1010.8660000000001,31.38666667,83.13333333,5.321000000000001,1.2125,237.87487356666665 -2015-11-28 16:00:00,0.0,1011.39975,5.256583333,85.95833333,3.8915833330000003,0.858166667,237.87518344999998 -2015-11-28 17:00:00,0.0,1011.6498330000001,0.0,87.725,1.5660833330000001,0.319083333,237.87518343333332 -2015-11-28 18:00:00,0.0,1011.75825,0.0,84.76666667,3.187833333,1.3633333330000001,237.8734790833333 -2015-11-28 19:00:00,0.0,1011.750333,0.0,84.34166667,3.5844166669999997,1.696333333,237.87394388333328 -2015-11-28 20:00:00,0.0,1011.724667,0.0,83.775,3.8325,1.7643333330000002,237.87192965 -2015-11-28 21:00:00,0.0,1011.7005,0.0,84.31666667,4.145,1.3719999999999999,237.87223955 -2015-11-28 22:00:00,0.0,1011.034,0.0,87.725,4.33125,2.202,237.87254941666666 -2015-11-28 23:00:00,0.0,1010.067417,0.0,87.35,4.465083333,2.8145833330000003,237.87316919999998 -2015-11-29 00:00:00,0.0,1009.392083,0.0,85.90833333,4.73925,2.2385,237.87239448333332 -2015-11-29 01:00:00,0.0,1008.808833,0.0,88.025,4.87775,2.731416667,237.8717747333333 -2015-11-29 02:00:00,39.69857371,1007.8755,0.0,92.4,4.564833333,2.5185,237.87223956666665 -2015-11-29 03:00:00,75.86700014,1007.5505,0.0,94.80833333,4.294416667,2.331083333,237.87425378333333 -2015-11-29 04:00:00,61.38017609,1007.216667,0.0,96.55833333,4.362416667,2.116,237.88308545000004 -2015-11-29 05:00:00,37.51287648,1006.950167,0.0,97.03333333,4.711,2.218666667,237.89873451666674 -2015-11-29 06:00:00,16.01300333,1007.183083,0.0,96.13333333,5.3805,2.455916667,237.91314408333335 -2015-11-29 07:00:00,0.0,1007.275,0.053083332999999996,95.175,5.9226666670000006,2.3816666669999997,237.9315821 -2015-11-29 08:00:00,0.0,1007.4665,6.7416666670000005,94.25,6.532,2.310083333,237.9484707 -2015-11-29 09:00:00,3.0294508560000004,1007.4835,34.4475,95.9,6.852916667000001,1.8926666669999999,237.96102093333334 -2015-11-29 10:00:00,18.07774925,1007.383333,45.70916667,97.28333333,7.139583332999999,2.0105,237.97047235 -2015-11-29 11:00:00,6.347159184,1007.441417,70.9825,96.775,7.72175,2.179333333,237.98131825 -2015-11-29 12:00:00,3.037724784,1007.533583,97.93333333,94.325,8.728333333,2.12225,237.98922024999993 -2015-11-29 13:00:00,3.07258104,1007.34175,79.425,92.53333333,9.250833333,2.369333333,237.99727719999998 -2015-11-29 14:00:00,25.79707567,1007.15,35.3425,93.175,9.3675,2.4900833330000003,238.0030100666667 -2015-11-29 15:00:00,13.42903752,1006.575583,13.475,94.86666667,9.158333333,2.6469166669999997,238.01339108333332 -2015-11-29 16:00:00,7.396994832000001,1006.47475,1.162083333,91.66666667,9.8175,3.468916667,238.01989865000004 -2015-11-29 17:00:00,0.0,1006.924667,0.0,88.41666667,10.25166667,3.8965,238.02423701666666 -2015-11-29 18:00:00,3.989430384,1007.025167,0.0,89.31666667,9.9775,4.07275,238.02888525 -2015-11-29 19:00:00,8.651779512000001,1007.174833,0.0,89.01666667,9.81,4.10025,238.03523781666664 -2015-11-29 20:00:00,12.16836818,1006.825583,0.0,91.35,9.7,3.842333333,238.03725206666664 -2015-11-29 21:00:00,29.92741994,1006.616417,0.0,92.525,9.735833332999999,4.016583333,238.0411255833333 -2015-11-29 22:00:00,4.176302088,1006.574833,0.0,88.91666667,10.23833333,4.430083333,238.0429849 -2015-11-29 23:00:00,0.0,1007.14125,0.0,89.61666667,10.265,4.46375,238.04685843333337 -2015-11-30 00:00:00,4.345816008,1007.192083,0.0,88.36666667,10.18416667,4.480333333,238.05290116666666 -2015-11-30 01:00:00,4.029940824,1007.466,0.0,90.16666667,10.12666667,4.209166667,238.05553515 -2015-11-30 02:00:00,200.34872099999998,1009.356417,0.0,95.40833333,8.84,3.206083333,238.0572395 -2015-11-30 03:00:00,63.3191748,1010.541,0.0,96.08333333,8.084666667,2.325333333,238.0820301166667 -2015-11-30 04:00:00,28.65540504,1011.2745,0.0,92.60833333,7.504833333,1.646,238.12030063333336 -2015-11-30 05:00:00,7.259155487999999,1011.7745,0.0,93.8,7.539083333,2.7006666669999997,238.13858371666666 -2015-11-30 06:00:00,6.418204704,1012.5160000000001,0.0,92.5,7.4695,2.308833333,238.14230231666662 -2015-11-30 07:00:00,0.0,1013.174333,0.05825,93.10833333,7.09275,2.1716666669999998,238.1401331333333 -2015-11-30 08:00:00,0.0,1014.257333,7.622333332999999,92.83333333,7.135416667,1.9171666669999998,238.1333157 -2015-11-30 09:00:00,0.0,1014.97475,39.61083333,88.29166667,7.697166667,1.79625,238.12603345000002 -2015-11-30 10:00:00,0.0,1015.649667,49.89833333,90.61666667,7.881,1.813666667,238.12076545 -2015-11-30 11:00:00,0.0,1015.21725,82.49416667,95.33333333,7.901666667000001,1.02625,238.11658205 -2015-11-30 12:00:00,10.84653221,1014.250917,49.3725,97.46666667,8.191666667,1.135416667,238.11224368333333 -2015-11-30 13:00:00,29.69099014,1013.059583,31.81333333,98.45,8.595833333,1.247416667,238.1102294333333 -2015-11-30 14:00:00,3.8021345039999996,1011.950417,21.49916667,96.50833333,9.665833333,3.205083333,238.10929978333334 -2015-11-30 15:00:00,31.51206168,1011.17575,13.51525,97.275,9.5,3.731583333,238.11053931666666 -2015-11-30 16:00:00,3.787771704,1010.72525,1.42975,96.96666667,9.381666667000001,3.5745,238.11286345 -2015-11-30 17:00:00,4.499337336,1010.12575,0.0,95.3,9.598333333,3.9019999999999997,238.11549745000002 -2015-11-30 18:00:00,12.29885923,1009.8501669999999,0.0,93.73333333,9.695833333,3.9325,238.11906111666667 -2015-11-30 19:00:00,60.87194352,1009.38375,0.0,93.63333333,9.804166667,3.9245,238.1213852333333 -2015-11-30 20:00:00,85.80410143,1009.308083,0.0,96.9,9.435833333,3.984916667,238.12913228333335 -2015-11-30 21:00:00,53.2119414,1009.2665,0.0,97.03333333,9.525,4.546333333,238.15206361666665 -2015-11-30 22:00:00,13.39331162,1009.58325,0.0,97.76666667,9.611666667,4.477666667,238.17623445000004 -2015-11-30 23:00:00,8.696376048,1009.924583,0.0,98.3,9.628333332999999,4.44325,238.1849111833333 -2015-01-12 00:00:00,4.282376712,1010.383083,0.0,98.775,9.625833333,4.24475, -2015-01-12 01:00:00,0.0,1010.857833,0.0,99.05833333,9.764166667000001,3.9505, -2015-01-12 02:00:00,0.0,1011.615583,0.0,99.55,9.888333333,3.45925, -2015-01-12 03:00:00,0.0,1012.607667,0.0,99.825,10.09333333,3.0825, -2015-01-12 04:00:00,0.0,1013.158083,0.0,99.98333333,10.12583333,2.6289999999999996, -2015-01-12 05:00:00,0.0,1014.140667,0.0,100.0,10.07583333,1.915, -2015-01-12 06:00:00,16.7141706,1015.190833,0.0,100.0,9.950833333,1.5523333330000002, -2015-01-12 07:00:00,24.71483402,1016.257583,0.02775,100.0,9.871666667000001,1.287666667, -2015-01-12 08:00:00,15.75239309,1017.16575,2.836166667,100.0,9.8575,0.9235, -2015-01-12 09:00:00,2.5343222880000003,1017.899333,20.52666667,100.0,9.628333332999999,0.86675, -2015-01-12 10:00:00,7.6400626560000005,1018.6495,43.8225,100.0,9.379166667,0.715, -2015-01-12 11:00:00,7.510698624,1019.0415830000001,42.0575,100.0,9.4225,0.708416667, -2015-01-12 12:00:00,10.34913439,1019.0666669999999,36.19333333,100.0,9.431666667,0.8221666670000001, -2015-01-12 13:00:00,22.0661688,1019.4830000000001,27.45333333,100.0,9.621666667000001,0.28925, -2015-01-12 14:00:00,19.44818854,1019.69975,26.9975,100.0,9.785833333,0.21916666699999998, -2015-01-12 15:00:00,19.25353308,1019.866667,12.51166667,100.0,9.864166667000001,0.034083333, -2015-01-12 16:00:00,4.8100455360000005,1020.091583,2.505083333,100.0,9.788333332999999,0.10416666699999999, -2015-01-12 17:00:00,2.4138441840000002,1020.274333,0.0,100.0,10.25416667,0.59175, -2015-01-12 18:00:00,0.0,1020.832917,0.0,100.0,11.04083333,1.69825, -2015-01-12 19:00:00,0.0,1021.1916669999999,0.0,99.81666667,11.12166667,2.3515, -2015-01-12 20:00:00,0.0,1021.433083,0.0,99.01666667,11.125,2.086666667, -2015-01-12 21:00:00,0.0,1021.549667,0.0,98.75833333,11.12166667,1.988583333, -2015-01-12 22:00:00,0.0,1021.9415,0.0,97.975,10.96083333,1.390916667, -2015-01-12 23:00:00,0.0,1022.27475,0.0,98.78333333,10.7425,1.5968333330000002, -2015-02-12 00:00:00,0.0,1022.599833,0.0,97.41666667,10.4675,1.665083333, -2015-02-12 01:00:00,2.804621832,1022.5499169999999,0.0,95.79166667,10.18583333,1.23625, -2015-02-12 02:00:00,0.0,1022.675,0.0,94.96666667,10.0575,0.970166667, -2015-02-12 03:00:00,0.0,1022.9915,0.0,91.40833333,10.0725,1.125083333, -2015-02-12 04:00:00,0.0,1022.891833,0.0,87.11666667,10.03166667,1.163666667, -2015-02-12 05:00:00,0.0,1022.675,0.0,86.39166667,9.62,0.52525, -2015-02-12 06:00:00,0.0,1022.8165,0.0,85.15,9.643333333,0.799666667, -2015-02-12 07:00:00,0.0,1023.058083,0.030083332999999997,87.95833333,9.3575,0.58175, -2015-02-12 08:00:00,0.0,1023.44975,3.852583333,84.49166667,9.106666667,0.607833333, -2015-02-12 09:00:00,0.0,1023.791417,15.69333333,90.80833333,9.180833332999999,0.367666667, -2015-02-12 10:00:00,0.0,1024.1995,24.31166667,90.5,9.106666667,0.244583333, -2015-02-12 11:00:00,0.0,1024.333417,37.72666667,86.60833333,9.659166667000001,0.408, -2015-02-12 12:00:00,0.0,1024.2835,42.64916667,82.30583333,10.045,0.959333333, -2015-02-12 13:00:00,0.0,1024.108333,38.05833333,79.82583333,10.1125,1.049916667, -2015-02-12 14:00:00,0.0,1024.008333,21.25166667,82.875,9.939166667,0.722166667, -2015-02-12 15:00:00,0.0,1023.86675,8.938916667,85.18333333,9.336666667000001,0.129833333,238.01555266666665 -2015-02-12 16:00:00,0.0,1023.991667,0.97175,86.53333333,8.8475,0.294166667,238.01863600000001 -2015-02-12 17:00:00,0.0,1024.04975,0.0,87.55833333,8.731666667,0.4605,238.01965266666664 -2015-02-12 18:00:00,0.0,1024.3085,0.0,87.51666667,8.1185,0.18841666699999998,238.02065266666668 -2015-02-12 19:00:00,0.0,1024.308083,0.0,83.91666667,8.493166667,0.5864166670000001,238.021336 -2015-02-12 20:00:00,0.0,1024.41675,0.0,84.775,7.93625,0.1355,238.02238599999998 -2015-02-12 21:00:00,0.0,1024.59975,0.0,83.43333333,7.966666667,0.49741666700000003,238.02308599999995 -2015-02-12 22:00:00,0.0,1024.45,0.0,84.875,7.682583332999999,0.4645,238.024136 -2015-02-12 23:00:00,0.0,1024.566667,0.0,88.075,7.5090833329999995,0.45291666700000005,238.02378599999997 -2015-03-12 00:00:00,0.0,1024.833083,0.0,86.55833333,7.662833332999999,0.36791666700000003,238.06383599999995 -2015-03-12 01:00:00,0.0,1024.925083,0.0,88.45833333,7.100083333,0.214,238.06418599999998 -2015-03-12 02:00:00,0.0,1024.90825,0.0,94.99166667,6.844333333,0.039916667,238.06418599999998 -2015-03-12 03:00:00,0.0,1024.983333,0.0,91.03333333,6.69625,0.064416667,238.06523599999994 -2015-03-12 04:00:00,0.0,1024.84175,0.0,87.65,7.299083333,0.45425,238.065236 -2015-03-12 05:00:00,0.0,1024.983167,0.0,88.63333333,7.4276666670000004,0.4365,238.06453599999998 -2015-03-12 06:00:00,0.0,1025.1415,0.0,87.775,6.792416667,0.091083333,238.065936 -2015-03-12 07:00:00,0.0,1025.199833,0.054000000000000006,92.025,6.504,0.20199999999999999,238.066286 -2015-03-12 08:00:00,0.0,1025.341667,10.14333333,88.09166667,6.569166667,0.640833333,238.066286 -2015-03-12 09:00:00,2.471689704,1025.50825,28.79666667,83.0225,7.31575,1.062666667,238.06626933333334 -2015-03-12 10:00:00,0.0,1026.091167,42.39416667,81.67416667,8.07225,0.198083333,238.06418599999998 -2015-03-12 11:00:00,0.0,1025.7505,77.38333333,77.235,8.61,0.8565,238.063836 -2015-03-12 12:00:00,0.0,1025.050333,109.55,74.37,8.9725,1.6700833330000002,238.063836 -2015-03-12 13:00:00,0.0,1024.9255,95.785,73.78583333,9.409166667000001,1.3946666669999999,238.063836 -2015-03-12 14:00:00,0.0,1024.483667,117.88333329999999,70.45833333,8.5725,1.394166667,238.063836 -2015-03-12 15:00:00,0.0,1023.883417,54.30166667,75.2025,8.117833333,1.3846666669999999,238.063136 -2015-03-12 16:00:00,0.0,1023.757,4.6144166669999995,89.825,5.687583332999999,1.119083333,238.06453599999998 -2015-03-12 17:00:00,0.0,1023.049,0.0,96.90833333,3.54125,0.631416667,238.06418599999998 -2015-03-12 18:00:00,0.0,1022.6415,0.0,99.48333333,2.505083333,0.236583333,238.065236 -2015-03-12 19:00:00,0.0,1022.365833,0.0,100.0,1.99225,0.18333333300000001,238.066286 -2015-03-12 20:00:00,0.0,1021.891333,0.0,100.0,1.525333333,0.24100000000000002,238.0666193333333 -2015-03-12 21:00:00,0.0,1021.307333,0.0,100.0,1.63125,0.423916667,238.066286 -2015-03-12 22:00:00,0.0,1020.906833,0.0,100.0,1.655416667,0.198083333,238.06795266666666 -2015-03-12 23:00:00,0.0,1020.315667,0.0,100.0,1.1158333329999999,0.178583333,238.06728599999997 -2015-04-12 00:00:00,0.0,1019.741167,0.0,100.0,0.858083333,0.260666667,238.0432451 -2015-04-12 01:00:00,0.0,1019.432833,0.0,100.0,0.20425,0.2365,238.0431441333333 -2015-04-12 02:00:00,0.0,1019.208667,0.0,100.0,-0.046416667,0.320833333,238.042968 -2015-04-12 03:00:00,0.0,1019.383333,0.0,100.0,1.04075,0.6778333329999999,238.04274260000003 -2015-04-12 04:00:00,0.0,1019.107833,0.0,100.0,1.96575,1.0415,238.04274260000003 -2015-04-12 05:00:00,0.0,1019.0665,0.0,100.0,2.7639166669999997,2.39475,238.04271673333332 -2015-04-12 06:00:00,0.0,1019.217167,0.0,100.0,3.086666667,1.465583333,238.04266500000003 -2015-04-12 07:00:00,0.0,1019.593167,0.0,87.56666667,3.64025,0.8696666670000001,238.04261326666665 -2015-04-12 08:00:00,0.0,1020.3925,2.772583333,92.74166667,5.698833333,1.3774166669999999,238.04269086666667 -2015-04-12 09:00:00,10.73657849,1021.310667,12.27808333,97.71666667,6.380833332999999,1.118083333,238.04261326666665 -2015-04-12 10:00:00,22.3554053,1022.2508330000001,29.49833333,98.88333333,6.87275,0.41633333299999997,238.04261326666665 -2015-04-12 11:00:00,2.4050227680000003,1022.834,42.75833333,99.825,7.534083333,0.823333333,238.04266499999997 -2015-04-12 12:00:00,0.0,1023.46,46.9675,99.03333333,8.13825,1.5608333330000002,238.04274260000003 -2015-04-12 13:00:00,0.0,1024.234,26.85916667,98.425,8.441666667,2.15425,238.04274260000003 -2015-04-12 14:00:00,0.0,1024.7845,30.66083333,97.175,8.598333333,1.4595,238.04269086666667 -2015-04-12 15:00:00,0.0,1025.568167,27.06333333,95.29166667,8.4975,1.49225,238.04269086666667 -2015-04-12 16:00:00,0.0,1026.3010000000002,3.60925,97.09166667,7.707916667,1.698166667,238.04271673333335 -2015-04-12 17:00:00,0.0,1026.875833,0.002333333,97.90833333,5.4995833329999995,0.3445,238.04258739999997 -2015-04-12 18:00:00,0.0,1027.4425,0.0,99.98333333,2.8184166669999997,0.260833333,238.04258739999997 -2015-04-12 19:00:00,0.0,1028.009333,0.0,100.0,2.091916667,0.245,238.04258739999997 -2015-04-12 20:00:00,0.0,1028.417333,0.0,100.0,1.00025,0.20199999999999999,238.04258739999997 -2015-04-12 21:00:00,0.0,1028.499833,0.0,100.0,0.26966666699999997,0.12783333300000002,238.0425135 -2015-04-12 22:00:00,0.0,1028.475333,0.0,100.0,-0.21483333300000002,0.051416667,238.04246423333333 -2015-04-12 23:00:00,0.0,1028.5165,0.0,96.89166667,-0.11975,0.22175,238.04253813333332 -2015-05-12 00:00:00,0.0,1028.324333,0.0,96.11666667,1.959416667,0.498,238.00857338333333 -2015-05-12 01:00:00,0.0,1028.1075,0.0,98.00833333,0.588166667,0.452,238.00909049999999 -2015-05-12 02:00:00,0.0,1027.959167,0.0,97.86666667,-0.180083333,0.210333333,238.00995238333334 -2015-05-12 03:00:00,0.0,1027.932,0.0,97.51666667,0.093916667,0.163,238.0089181 -2015-05-12 04:00:00,0.0,1026.748667,0.0,97.475,-0.509416667,0.351416667,238.00960761666667 -2015-05-12 05:00:00,0.0,1026.400167,0.0,99.96666667,0.18783333300000002,0.7759999999999999,238.00874575 -2015-05-12 06:00:00,0.0,1026.533667,0.0,100.0,-0.48991666700000003,0.75625,238.0070219833333 -2015-05-12 07:00:00,0.0,1026.7585,0.078,100.0,-0.376166667,0.900166667,238.0065048333333 -2015-05-12 08:00:00,0.0,1026.832333,15.28683333,100.0,0.45299999999999996,0.6346666670000001,238.0047810833333 -2015-05-12 09:00:00,2.621912088,1026.667833,54.30416667,96.05833333,1.5759166669999998,1.077,238.00460871666664 -2015-05-12 10:00:00,0.0,1026.606667,105.60833329999998,90.74166667,3.7399166669999997,1.608416667,238.00322966666667 -2015-05-12 11:00:00,0.0,1025.9489999999998,106.65,89.53333333,4.700416667,1.6799166669999999,238.0011611333333 -2015-05-12 12:00:00,0.0,1025.157,127.475,87.825,6.23525,1.246416667,238.00029926666664 -2015-05-12 13:00:00,0.0,1024.373833,106.03333329999998,86.70833333,6.920333332999999,1.087916667,237.99788600000002 -2015-05-12 14:00:00,0.0,1023.907333,74.23166667,86.83333333,7.090083333,0.873,237.99650698333335 -2015-05-12 15:00:00,0.0,1023.258,38.65,88.83333333,6.4836666670000005,0.701833333,237.9977136333333 -2015-05-12 16:00:00,0.0,1023.0745,3.1515,93.05833333,4.507083333,0.670666667,237.99667936666665 -2015-05-12 17:00:00,0.0,1022.565667,0.0,98.30833333,3.341166667,0.743916667,237.99788601666663 -2015-05-12 18:00:00,0.0,1022.434,0.0,100.0,2.508416667,0.777333333,237.99909266666668 -2015-05-12 19:00:00,0.0,1022.558167,0.0,94.95,1.49975,0.23975,237.99909265 -2015-05-12 20:00:00,0.0,1022.332167,0.0,94.94166667,2.371833333,0.8235,237.99892026666666 -2015-05-12 21:00:00,0.0,1021.858333,0.0,98.88333333,1.6245,0.39716666700000003,237.99909265 -2015-05-12 22:00:00,0.0,1021.757833,0.0,100.0,0.6639166670000001,0.29991666699999997,237.99978215 -2015-05-12 23:00:00,0.0,1021.4739999999999,0.0,100.0,-0.33325,0.229166667,238.00236779999997 -2015-06-12 00:00:00,0.0,1020.9495,0.0,100.0,-0.790166667,0.20075,237.68709088333333 -2015-06-12 01:00:00,0.0,1020.632833,0.0,100.0,-0.76375,0.472583333,237.69071076666668 -2015-06-12 02:00:00,0.0,1020.332833,0.0,100.0,-0.7516666670000001,0.27899999999999997,237.69536494999997 -2015-06-12 03:00:00,0.0,1019.974333,0.0,100.0,-0.3945,0.9585,237.6996743666667 -2015-06-12 04:00:00,0.0,1019.599833,0.0,99.13333333,0.02275,0.6385833329999999,237.70243240000002 -2015-06-12 05:00:00,0.0,1019.533333,0.0,98.88333333,-0.7789166670000001,0.33733333299999996,237.70105339999998 -2015-06-12 06:00:00,0.0,1019.7760000000001,0.0,100.0,-1.4870833330000002,0.230833333,237.70277716666666 -2015-06-12 07:00:00,0.0,1020.342167,0.209,100.0,-0.71475,0.438666667,237.7027771666666 -2015-06-12 08:00:00,2.80610424,1020.483333,5.130583333,95.2,3.014583333,1.5490000000000002,237.6991572333333 -2015-06-12 09:00:00,0.0,1020.549833,26.64416667,91.5,4.159916667,1.968083333,237.69071078333332 -2015-06-12 10:00:00,0.0,1020.7675,69.16333333,89.25,5.322333333,2.020916667,237.67795493333333 -2015-06-12 11:00:00,0.0,1021.134333,77.48416667,87.76666667,7.324416667,1.0816666670000001,237.66364763333334 -2015-06-12 12:00:00,0.0,1021.391333,43.01333333,88.75833333,8.520833332999999,1.281333333,237.65675258333331 -2015-06-12 13:00:00,0.0,1021.0989999999999,65.28416667,88.28333333,9.259166667,1.257333333,237.65227076666667 -2015-06-12 14:00:00,0.0,1020.641333,116.17833329999999,83.925,10.22416667,1.879833333,237.6512365333333 -2015-06-12 15:00:00,0.0,1020.459167,51.34166667,84.775,10.1,1.617,237.65227078333336 -2015-06-12 16:00:00,0.0,1021.108667,3.823,86.70833333,9.015,1.7010833330000001,237.64865088333332 -2015-06-12 17:00:00,0.0,1021.4505,0.0,86.25833333,9.000833333,1.49875,237.6500298833333 -2015-06-12 18:00:00,2.79539772,1021.868,0.0,86.76666667,8.359416667,1.08375,237.65382218333332 -2015-06-12 19:00:00,0.0,1022.584833,0.0,85.00833333,9.801666667000001,2.0749166669999997,237.65744209999994 -2015-06-12 20:00:00,0.0,1023.2335,0.0,85.94166667,10.215,2.197,237.6591658666667 -2015-06-12 21:00:00,0.0,1023.3425,0.0,86.94166667,9.960833333,1.249333333,237.66157915 -2015-06-12 22:00:00,0.0,1024.050833,0.0,88.18333333,9.545833333,0.956416667,237.66761230000006 -2015-06-12 23:00:00,0.0,1024.475667,0.0,89.55833333,9.686666667,1.19125,237.67243885000002 -2015-07-12 00:00:00,0.0,1024.499833,0.0,92.76666667,9.809166667000001,1.050166667,237.50028753333333 -2015-07-12 01:00:00,0.0,1024.558333,0.0,97.69166667,7.639583332999999,0.525166667,237.50237845 -2015-07-12 02:00:00,0.0,1024.9260000000002,0.0,86.55,6.245333333,0.317416667,237.50405115 -2015-07-12 03:00:00,0.0,1025.2,0.0,85.49166667,7.185083333,0.625166667,237.50628145 -2015-07-12 04:00:00,0.0,1025.308667,0.0,95.425,6.5185,0.18475,237.51074206666667 -2015-07-12 05:00:00,0.0,1025.692333,0.0,99.5,6.34675,0.386083333,237.51352995000002 -2015-07-12 06:00:00,0.0,1025.967167,0.0,100.0,6.753833332999999,0.524416667,237.51687536666665 -2015-07-12 07:00:00,0.0,1026.542833,0.04975,100.0,6.678166667,0.273583333,237.51701476666665 -2015-07-12 08:00:00,0.0,1027.059333,7.087416667,100.0,5.958083332999999,0.35708333299999995,237.51394811666668 -2015-07-12 09:00:00,0.0,1027.575833,30.94166667,100.0,6.069333332999999,0.367333333,237.50419055 -2015-07-12 10:00:00,0.0,1028.075667,103.7858333,99.70833333,8.961416667,0.492666667,237.49206330000004 -2015-07-12 11:00:00,0.0,1028.324833,69.8975,95.18333333,11.15333333,1.106083333,237.48342088333334 -2015-07-12 12:00:00,0.0,1028.032667,161.94166669999998,91.35833333,9.873333333,1.125333333,237.48202695 -2015-07-12 13:00:00,0.0,1027.666333,158.66666669999998,86.425,11.76583333,1.056083333,237.48091179999997 -2015-07-12 14:00:00,0.0,1027.3075,84.68916667,86.49166667,11.93916667,1.050833333,237.47951788333333 -2015-07-12 15:00:00,0.0,1027.1415,47.72083333,88.15833333,10.43583333,1.107333333,237.47868151666668 -2015-07-12 16:00:00,0.0,1027.117,4.26825,96.88333333,7.921583332999999,0.429833333,237.47979665 -2015-07-12 17:00:00,0.0,1027.216833,0.0,100.0,5.4305833329999995,0.32916666699999997,237.48230575 -2015-07-12 18:00:00,0.0,1027.559,0.0,100.0,4.154166667,0.282833333,237.4884390666667 -2015-07-12 19:00:00,0.0,1027.9505,0.0,100.0,3.2645,0.218,237.49276025000003 -2015-07-12 20:00:00,0.0,1028.133833,0.0,100.0,2.415,0.142583333,237.4984754 -2015-07-12 21:00:00,0.0,1028.232833,0.0,100.0,1.8119999999999998,0.12116666699999999,237.50321478333333 -2015-07-12 22:00:00,0.0,1028.276,0.0,100.0,1.629083333,0.04275,237.5073966 -2015-07-12 23:00:00,0.0,1028.391,0.0,100.0,2.038583333,0.0,237.51213599999997 -2015-08-12 00:00:00,0.0,1028.108,0.0,100.0,2.132333333,0.013666667,237.62030548333337 -2015-08-12 01:00:00,0.0,1027.8828330000001,0.0,100.0,1.761333333,0.0,237.62030546666668 -2015-08-12 02:00:00,0.0,1027.7335,0.0,100.0,1.8019999999999998,0.035583332999999995,237.61974788333336 -2015-08-12 03:00:00,0.0,1027.424,0.0,100.0,1.3119999999999998,0.047083333,237.62016606666668 -2015-08-12 04:00:00,0.0,1027.057833,0.0,100.0,1.168916667,0.018583333,237.6193297 -2015-08-12 05:00:00,0.0,1026.95,0.0,100.0,1.42675,0.09425,237.61891151666669 -2015-08-12 06:00:00,0.0,1026.916667,0.0,100.0,1.193833333,0.031333333,237.61723880000002 -2015-08-12 07:00:00,0.0,1026.967167,0.039,100.0,0.916166667,0.10775,237.6152873333333 -2015-08-12 08:00:00,0.0,1027.141167,5.527916667,100.0,0.9605,0.208416667,237.61389338333333 -2015-08-12 09:00:00,0.0,1027.217167,30.22583333,100.0,1.1845,0.27575,237.61263885000002 -2015-08-12 10:00:00,0.0,1027.1085,58.2425,100.0,1.714833333,0.48716666700000005,237.6091539833333 -2015-08-12 11:00:00,2.5985574000000002,1027.057167,86.98583333,100.0,2.584333333,0.38941666700000005,237.60762064999997 -2015-08-12 12:00:00,0.0,1026.4825,94.25,100.0,3.3841666669999997,0.284916667,237.60329944999998 -2015-08-12 13:00:00,0.0,1025.899333,93.96333333,100.0,3.8155,0.568333333,237.60120855000002 -2015-08-12 14:00:00,0.0,1025.624,62.30166667,100.0,4.469083333,0.507833333,237.5970267333333 -2015-08-12 15:00:00,0.0,1024.95,31.79916667,100.0,4.607833333,0.541333333,237.591451 -2015-08-12 16:00:00,0.0,1024.799167,2.349333333,100.0,4.4486666669999995,0.45916666700000003,237.58587525 -2015-08-12 17:00:00,0.0,1024.733333,0.0,100.0,4.156333333,0.500916667,237.58559645000003 -2015-08-12 18:00:00,0.0,1024.7335,0.0,100.0,3.7408333330000003,0.317833333,237.58350555 -2015-08-12 19:00:00,0.0,1024.875167,0.0,100.0,3.1655,0.17800000000000002,237.5802995 -2015-08-12 20:00:00,0.0,1024.683167,0.0,100.0,3.249666667,0.483833333,237.57848735000002 -2015-08-12 21:00:00,0.0,1024.8671669999999,0.0,100.0,3.5731666669999997,0.56125,237.57625703333335 -2015-08-12 22:00:00,0.0,1024.849833,0.0,100.0,3.847,0.552666667,237.57542071666668 -2015-08-12 23:00:00,0.0,1024.749667,0.0,100.0,4.13925,0.40266666700000003,237.57723283333334 -2015-09-12 00:00:00,12.00852746,1025.0925,0.0,100.0,4.350833333,0.07725,237.51498033333334 -2015-09-12 01:00:00,4.8100455360000005,1025.125,0.0,100.0,4.515583333,0.038583333,237.51808253333334 -2015-09-12 02:00:00,2.4050227680000003,1025.383833,0.0,100.0,4.611416667,0.038583333,237.51885806666667 -2015-09-12 03:00:00,0.0,1025.709167,0.0,100.0,4.617916667,0.18933333300000002,237.5210295666667 -2015-09-12 04:00:00,9.6609576,1026.2085,0.0,100.0,4.623666667,0.072416667,237.52366636666662 -2015-09-12 05:00:00,9.815743536,1026.492833,0.0,100.0,4.654,0.229583333,237.52428679999994 -2015-09-12 06:00:00,0.0,1027.125667,0.0,100.0,4.320583333,0.075333333,237.52831963333333 -2015-09-12 07:00:00,2.4262878480000003,1027.617833,0.022583332999999997,100.0,3.694666667,0.11458333300000001,237.52785426666665 -2015-09-12 08:00:00,0.0,1028.452,1.874416667,100.0,3.2769999999999997,0.276166667,237.52847471666666 -2015-09-12 09:00:00,0.0,1029.560167,21.15583333,99.86666667,5.71925,0.6166666670000001,237.52769916666662 -2015-09-12 10:00:00,0.0,1030.601333,65.07,98.91666667,6.8245,0.916666667,237.5261480833333 -2015-09-12 11:00:00,0.0,1031.117333,85.29333333,93.54166667,8.029,1.148666667,237.52258065 -2015-09-12 12:00:00,0.0,1031.533667,111.64583329999999,87.725,9.206666667,1.7794166669999998,237.51591098333333 -2015-09-12 13:00:00,0.0,1031.9505,167.3416667,80.675,9.025833333,1.999416667,237.50722491666667 -2015-09-12 14:00:00,0.0,1031.883333,57.14083333,82.21833333,8.763333333,1.261833333,237.50040015 -2015-09-12 15:00:00,0.0,1032.234333,34.04833333,82.18166667,7.451916667000001,0.68825,237.49807353333333 -2015-09-12 16:00:00,0.0,1032.892667,4.835,91.01666667,5.413666667,0.467416667,237.49419581666666 -2015-09-12 17:00:00,0.0,1033.242,0.0,99.71666667,2.691916667,0.190833333,237.49295495 -2015-09-12 18:00:00,0.0,1033.241333,0.0,100.0,0.9278333329999999,0.368,237.4938856 -2015-09-12 19:00:00,0.0,1033.559167,0.0,100.0,0.19,0.24916666699999998,237.49497138333334 -2015-09-12 20:00:00,0.0,1033.566333,0.0,100.0,-0.42775,0.136166667,237.49311004999996 -2015-09-12 21:00:00,0.0,1033.6175,0.0,100.0,-0.94625,0.059916667,237.4952816 -2015-09-12 22:00:00,0.0,1033.4660000000001,0.0,100.0,-1.374,0.04225,237.49791843333333 -2015-09-12 23:00:00,0.0,1033.3915,0.0,100.0,-1.653083333,0.071416667,237.50024503333336 -2015-10-12 00:00:00,0.0,1033.458667,0.0,100.0,-1.961916667,0.15275,237.6536470166667 -2015-10-12 01:00:00,0.0,1033.682833,0.0,100.0,-0.60675,0.137666667,237.65442258333337 -2015-10-12 02:00:00,0.0,1033.374667,0.0,100.0,1.9723333330000001,0.146083333,237.655043 -2015-10-12 03:00:00,0.0,1032.924667,0.0,100.0,2.32775,0.827666667,237.65628388333334 -2015-10-12 04:00:00,0.0,1032.482333,0.0,100.0,2.445833333,1.4345,237.65721453333333 -2015-10-12 05:00:00,0.0,1032.208167,0.0,99.71666667,2.3403333330000002,2.09775,237.65721455000002 -2015-10-12 06:00:00,0.0,1031.999833,0.0,99.4,2.080833333,1.9929166669999998,237.65690429999998 -2015-10-12 07:00:00,0.0,1031.8493330000001,0.044583332999999996,99.86666667,1.301083333,1.366166667,237.65659408333332 -2015-10-12 08:00:00,0.0,1031.6915,6.943583332999999,100.0,0.6589166670000001,0.87775,237.65488790000003 -2015-10-12 09:00:00,0.0,1031.374,36.80083333,100.0,1.313166667,0.21741666699999998,237.65256129999997 -2015-10-12 10:00:00,0.0,1031.150167,81.17666667,100.0,2.3471666669999998,0.709666667,237.65225108333334 -2015-10-12 11:00:00,0.0,1030.874,106.96,100.0,3.23525,0.16275,237.6531817166667 -2015-10-12 12:00:00,0.0,1029.982,96.83416667,97.825,4.330083333,0.8125,237.65256128333337 -2015-10-12 13:00:00,0.0,1029.231833,89.5725,96.5,4.03875,1.443583333,237.65163065000002 -2015-10-12 14:00:00,0.0,1028.398667,66.555,97.98333333,4.068166667,1.359666667,237.6525613 -2015-10-12 15:00:00,0.0,1027.807333,32.83833333,99.3,3.566916667,1.7629166669999998,237.65178576666668 -2015-10-12 16:00:00,0.0,1027.274,3.0596666669999997,100.0,2.1575833330000003,1.17225,237.65209595000002 -2015-10-12 17:00:00,0.0,1026.482833,0.0,100.0,1.7143333330000001,1.35725,237.6531817166667 -2015-10-12 18:00:00,0.0,1026.316333,0.0,100.0,1.1450833329999999,2.365166667,237.65364705000002 -2015-10-12 19:00:00,0.0,1025.7815,0.0,100.0,1.5301666669999998,2.343666667,237.6531817166667 -2015-10-12 20:00:00,0.0,1025.025,0.0,100.0,1.433416667,2.51725,237.65349193333336 -2015-10-12 21:00:00,0.0,1025.140833,0.0,100.0,1.271416667,1.23125,237.65550835000002 -2015-10-12 22:00:00,0.0,1024.657833,0.0,100.0,0.642166667,0.45033333299999995,237.65535325000005 -2015-10-12 23:00:00,0.0,1024.0905,0.0,100.0,-0.254083333,0.500166667,237.65535323333336 -2015-11-12 00:00:00,0.0,1023.532667,0.0,100.0,-0.36691666700000003,0.8440000000000001,237.73542633333332 -2015-11-12 01:00:00,0.0,1023.148833,0.0,100.0,-0.140833333,1.9538333330000002,237.73682081666666 -2015-11-12 02:00:00,0.0,1022.633333,0.0,100.0,-0.50075,1.7164166669999998,237.73558128333335 -2015-11-12 03:00:00,0.0,1022.5665,0.0,100.0,-0.903083333,0.565,237.7363560166667 -2015-11-12 04:00:00,0.0,1022.282833,0.0,100.0,-0.583416667,1.164416667,237.73573623333334 -2015-11-12 05:00:00,0.0,1022.2665,0.0,100.0,-0.440166667,1.5625,237.73558128333335 -2015-11-12 06:00:00,0.0,1022.125333,0.0,100.0,-0.297666667,1.7050833330000001,237.7355813 -2015-11-12 07:00:00,0.0,1021.8323330000001,0.049333333,100.0,-0.06725,1.340416667,237.73728565 -2015-11-12 08:00:00,0.0,1021.7251669999999,2.898166667,100.0,0.37625,0.507,237.73790541666665 -2015-11-12 09:00:00,0.0,1021.883333,19.55725,100.0,0.850583333,0.87575,237.73527140000002 -2015-11-12 10:00:00,2.5637175119999998,1021.6241669999999,48.605,100.0,1.5435,1.16775,237.7281441 -2015-11-12 11:00:00,0.0,1021.333333,47.98583333,99.78333333,3.226416667,0.80725,237.73356705 -2015-11-12 12:00:00,0.0,1020.949167,29.42083333,99.90833333,3.878833333,0.99275,237.73511646666668 -2015-11-12 13:00:00,2.74786968,1020.415667,39.44083333,99.975,4.39775,0.94575,237.73387691666667 -2015-11-12 14:00:00,13.6487533,1019.9995,26.69416667,99.43333333,4.868083333,1.13325,237.7375955166667 -2015-11-12 15:00:00,24.13557492,1019.9165,11.73208333,99.91666667,5.052166667,1.056166667,237.73868011666664 -2015-11-12 16:00:00,20.00317894,1019.958167,0.703833333,99.95833333,5.061333333,1.6165,237.7392999 -2015-11-12 17:00:00,2.7097787999999996,1019.783167,0.0,99.99166667,5.196416667,1.328,237.73976471666666 -2015-11-12 18:00:00,8.40013368,1019.474667,0.0,100.0,5.3765,1.415666667,237.73929990000002 -2015-11-12 19:00:00,2.881750368,1018.722667,0.0,100.0,5.64825,1.236333333,237.73991968333334 -2015-11-12 20:00:00,5.080505448,1017.983167,0.0,99.99166667,5.893083333,0.8211666670000001,237.74255365 -2015-11-12 21:00:00,27.23338495,1017.9075,0.0,100.0,5.929333333,0.430833333,237.74301851666664 -2015-11-12 22:00:00,10.45547587,1017.107167,0.0,99.84166667,6.555666667000001,1.15475,237.7427086 -2015-11-12 23:00:00,3.11455968,1016.8835,0.0,99.20833333,7.513333332999999,1.7430833330000002,237.7410042666667 -2015-12-12 00:00:00,0.0,1016.967167,0.0,99.94166667,7.794583332999999,2.2608333330000003,238.01098508333334 -2015-12-12 01:00:00,0.0,1016.983167,0.0,100.0,7.895166667000001,1.802583333,238.0170694666667 -2015-12-12 02:00:00,9.807755376,1017.535,0.0,99.05833333,7.64825,2.3730833330000003,238.02064853333334 -2015-12-12 03:00:00,2.69660712,1017.983167,0.0,97.9,6.540166667,0.954416667,238.02870144999997 -2015-12-12 04:00:00,2.506590072,1018.033833,0.0,98.825,5.934,0.40433333299999996,238.03693330000002 -2015-12-12 05:00:00,0.0,1018.3335,0.0,99.975,5.525416667000001,0.165083333,238.03908073333332 -2015-12-12 06:00:00,9.847539072,1018.425333,0.0,100.0,5.4655,0.233,238.04480725 -2015-12-12 07:00:00,0.0,1018.775833,0.0,100.0,5.592333332999999,0.35075,238.04749154999993 -2015-12-12 08:00:00,0.0,1018.950167,1.9165833330000002,100.0,5.588166667,0.49241666700000003,238.05357595 -2015-12-12 09:00:00,0.0,1019.2425,16.66033333,99.525,5.755166667,0.202083333,238.0553655 -2015-12-12 10:00:00,0.0,1019.859333,46.4625,98.96666667,6.439166667,0.390666667,238.05590236666663 -2015-12-12 11:00:00,0.0,1020.032667,69.11916667,97.65833333,7.043833332999999,0.9670000000000001,238.05697606666664 -2015-12-12 12:00:00,0.0,1019.640833,86.95083333,96.71666667,7.5325,0.69625,238.05733398333334 -2015-12-12 13:00:00,0.0,1018.940833,61.84166667,94.725,7.61475,0.7979999999999999,238.06019725000002 -2015-12-12 14:00:00,0.0,1018.5906669999999,52.03333333,90.325,7.698583332999999,0.923416667,238.06144989999999 -2015-12-12 15:00:00,0.0,1018.241167,18.16575,93.88333333,7.457999999999999,0.672666667,238.06288151666664 -2015-12-12 16:00:00,0.0,1017.732333,2.371166667,99.11666667,7.0025,0.914083333,238.06413419999998 -2015-12-12 17:00:00,0.0,1017.149167,0.0,99.95,6.809166667,1.03675,238.06610268333336 -2015-12-12 18:00:00,0.0,1016.574333,0.0,95.75,7.069666667000001,1.251,238.06306049999998 -2015-12-12 19:00:00,0.0,1016.174167,0.0,95.40833333,8.694166667000001,1.9825,238.06341838333333 -2015-12-12 20:00:00,0.0,1015.390333,0.0,95.55,8.9575,1.874,238.06288153333333 -2015-12-12 21:00:00,0.0,1014.8825,0.0,93.65,9.211666667000001,1.3045,238.06323944999997 -2015-12-12 22:00:00,0.0,1014.0735,0.0,92.46666667,9.528333332999999,1.984666667,238.06431318333333 -2015-12-12 23:00:00,0.0,1013.299,0.0,91.10833333,9.681666667,1.8395833330000002,238.06323944999997 -2015-12-13 00:00:00,0.0,1012.9495,0.0,89.71666667,9.664166667,2.016,238.0630604666666 -2015-12-13 01:00:00,0.0,1012.39,0.0,90.54166667,9.5075,2.48175,238.06270258333328 -2015-12-13 02:00:00,0.0,1011.883667,0.0,89.60833333,9.1775,2.20875,238.06270258333328 -2015-12-13 03:00:00,0.0,1011.857333,0.0,89.05833333,8.996666667000001,2.000833333,238.06323943333328 -2015-12-13 04:00:00,0.0,1011.45,0.0,89.65,8.465833332999999,2.250833333,238.06306048333332 -2015-12-13 05:00:00,0.0,1011.5089999999999,0.0,90.2,8.341666667,2.38275,238.06091305000004 -2015-12-13 06:00:00,0.0,1011.858667,0.0,89.66666667,8.330833333,2.707666667,238.05804978333333 -2015-12-13 07:00:00,0.0,1012.3510000000001,0.0,92.03333333,8.074583333,2.734083333,238.05751295000002 -2015-12-13 08:00:00,0.0,1013.0015,1.6838333330000002,94.68333333,7.892333333,2.3073333330000003,238.0569760666667 -2015-12-13 09:00:00,0.0,1013.7589999999999,10.03225,98.68333333,7.6705,2.084916667,238.05375491666666 -2015-12-13 10:00:00,0.0,1014.5269999999999,29.42583333,98.925,7.897083332999999,2.2858333330000002,238.05303908333335 -2015-12-13 11:00:00,0.0,1015.2925,66.78333333,98.03333333,8.485833332999999,1.9580000000000002,238.05053375 -2015-12-13 12:00:00,0.0,1015.7085,30.625,97.925,8.321666667,1.189416667,238.04749155 -2015-12-13 13:00:00,2.5756395359999997,1015.958833,44.81833333,99.99166667,8.002166667000001,0.775333333,238.0467757166667 -2015-12-13 14:00:00,0.0,1016.108667,20.22416667,100.0,7.620166667,1.311833333,238.04552308333334 -2015-12-13 15:00:00,0.0,1016.3755,5.451083333,100.0,6.891666667000001,1.8966666669999999,238.0449862 -2015-12-13 16:00:00,0.0,1016.934333,0.797083333,100.0,5.91975,2.1615,238.04641781666666 -2015-12-13 17:00:00,2.508880752,1017.317167,0.0,100.0,5.490666667,1.060833333,238.04605990000002 -2015-12-13 18:00:00,0.0,1017.658667,0.0,100.0,5.291166667,0.05775,238.04552305 -2015-12-13 19:00:00,0.0,1017.934167,0.0,100.0,5.2924166669999995,0.18808333300000002,238.04552306666668 -2015-12-13 20:00:00,0.0,1018.0585,0.0,100.0,5.403333333,0.634083333,238.0442704 -2015-12-13 21:00:00,0.0,1018.091333,0.0,100.0,5.337666667,0.11333333300000001,238.04409145000002 -2015-12-13 22:00:00,0.0,1018.175167,0.0,100.0,5.012,0.81375,238.04337561666668 -2015-12-13 23:00:00,0.0,1018.1335,0.0,100.0,4.78075,0.64525,238.04194396666665 -2015-12-14 00:00:00,0.0,1018.082833,0.0,100.0,4.684,0.907333333,238.04140711666665 -2015-12-14 01:00:00,0.0,1017.7495,0.0,100.0,4.7140833330000005,0.405916667,238.03925969999997 -2015-12-14 02:00:00,0.0,1017.641667,0.0,100.0,4.73325,0.797416667,238.04158606666667 -2015-12-14 03:00:00,0.0,1017.533,0.0,100.0,4.7405,0.597166667,238.03961761666665 -2015-12-14 04:00:00,0.0,1017.258167,0.0,100.0,4.742333333,0.883833333,238.03908075 -2015-12-14 05:00:00,0.0,1017.2330000000001,0.0,100.0,4.783333333,0.2095,238.03747016666662 -2015-12-14 06:00:00,0.0,1017.1005,0.0,100.0,4.902833333,0.15108333300000001,238.03943865 -2015-12-14 07:00:00,0.0,1017.091,0.0,100.0,4.951083333,0.4395,238.03961759999996 -2015-12-14 08:00:00,2.45712048,1017.117333,2.823,100.0,5.110166667,0.178166667,238.03693330000002 -2015-12-14 09:00:00,0.0,1017.4333330000001,20.78091667,100.0,5.452583333,0.511416667,238.0358595666667 -2015-12-14 10:00:00,2.4050227680000003,1017.6505,58.4975,100.0,6.176916667,0.523333333,238.0355016666667 -2015-12-14 11:00:00,0.0,1017.566,118.46666670000002,100.0,7.378416667000001,0.4205,238.03478585000002 -2015-12-14 12:00:00,0.0,1017.1410000000001,150.1583333,100.0,7.9935,1.7045833330000002,238.03317528333332 -2015-12-14 13:00:00,0.0,1016.682333,155.325,94.20833333,9.005833333,1.63,238.03335423333337 -2015-12-14 14:00:00,0.0,1016.308167,118.125,89.725,8.879166667,1.867666667,238.0315647 -2015-12-14 15:00:00,0.0,1015.999667,45.0925,89.84166667,7.797166667000001,1.7796666669999999,238.03335425 -2015-12-14 16:00:00,0.0,1015.9495,3.2791666669999997,99.05833333,6.8660000000000005,1.187333333,238.03550165000001 -2015-12-14 17:00:00,0.0,1015.9425,0.0,96.9,6.26425,1.811916667,238.03424900000002 -2015-12-14 18:00:00,0.0,1016.158333,0.0,91.50833333,6.8065,2.08725,238.03102785 -2015-12-14 19:00:00,0.0,1016.3585,0.0,95.99166667,5.717166667000001,1.674333333,238.03210156666668 -2015-12-14 20:00:00,0.0,1016.483667,0.0,100.0,3.675166667,0.181333333,238.03245948333333 -2015-12-14 21:00:00,0.0,1016.708833,0.0,100.0,2.124083333,0.193166667,238.03245948333335 -2015-12-14 22:00:00,0.0,1016.841667,0.0,100.0,1.4981666669999998,0.295083333,238.0324595 -2015-12-14 23:00:00,0.0,1016.908333,0.0,100.0,0.867166667,0.12708333300000002,238.03228051666667 -2015-12-15 00:00:00,0.0,1016.958833,0.0,100.0,0.22675,0.061833333,238.03228049999998 -2015-12-15 01:00:00,0.0,1017.016333,0.0,100.0,-0.149416667,0.028166667000000003,238.03174364999998 -2015-12-15 02:00:00,0.0,1016.9085,0.0,100.0,-0.017,0.017583333,238.03245946666667 -2015-12-15 03:00:00,0.0,1017.3255,0.0,100.0,0.577916667,0.045666667,238.02941724999997 -2015-12-15 04:00:00,0.0,1017.241333,0.0,100.0,0.8614166670000001,0.06333333299999999,238.0274487833333 -2015-12-15 05:00:00,0.0,1017.259167,0.0,100.0,1.207166667,0.070833333,238.02726980000003 -2015-12-15 06:00:00,0.0,1017.6669999999999,0.0,100.0,1.516666667,0.15708333300000002,238.02530135000003 -2015-12-15 07:00:00,0.0,1018.051167,0.0,100.0,1.696333333,0.250333333,238.02512236666666 -2015-12-15 08:00:00,0.0,1018.6005,3.023416667,100.0,2.239666667,0.110166667,238.0238697 -2015-12-15 09:00:00,0.0,1019.1255,38.505,100.0,2.7608333330000003,0.306416667,238.02351179999997 -2015-12-15 10:00:00,0.0,1019.459167,30.55166667,100.0,3.075333333,0.7031666670000001,238.02208018333337 -2015-12-15 11:00:00,0.0,1019.725333,55.65666667,100.0,3.46875,0.5558333329999999,238.02225913333336 -2015-12-15 12:00:00,0.0,1019.615833,61.13416667,100.0,4.122166667,1.048083333,238.0213643666667 -2015-12-15 13:00:00,0.0,1019.3585,84.25083333,100.0,5.020333333,0.5675,238.01939586666666 -2015-12-15 14:00:00,0.0,1019.383167,54.98083333,100.0,5.559166667,0.44108333299999997,238.01885900000002 -2015-12-15 15:00:00,0.0,1019.5008330000001,9.225833332999999,100.0,5.794416667,0.433833333,238.01885901666665 -2015-12-15 16:00:00,0.0,1019.850667,1.22875,100.0,4.212666667,0.105583333,238.01903796666667 -2015-12-15 17:00:00,0.0,1020.233333,0.0,100.0,2.9635,0.128333333,238.01903794999998 -2015-12-15 18:00:00,0.0,1020.5008330000001,0.0,100.0,3.51475,0.07666666700000001,238.01903796666667 -2015-12-15 19:00:00,0.0,1020.8755,0.0,100.0,4.230416667,0.18983333300000002,238.01921691666664 -2015-12-15 20:00:00,0.0,1020.9416669999999,0.0,100.0,4.586666667,0.08883333300000001,238.01903794999998 -2015-12-15 21:00:00,0.0,1020.999833,0.0,100.0,4.5755,0.252,238.01689055 -2015-12-15 22:00:00,0.0,1020.833333,0.0,100.0,4.4945833330000005,0.035166667,238.01689053333334 -2015-12-15 23:00:00,0.0,1021.208833,0.0,100.0,4.5785,0.00975,238.01635368333334 -2015-12-16 00:00:00,0.0,1021.3335,0.0,100.0,4.635416667,0.057999999999999996,238.01653263333333 -2015-12-16 01:00:00,0.0,1021.2245,0.0,100.0,4.643666667,0.021,238.01474311666664 -2015-12-16 02:00:00,0.0,1021.025333,0.0,100.0,4.623166667,0.16116666699999999,238.01527995 -2015-12-16 03:00:00,0.0,1020.991167,0.0,100.0,4.54,0.09175,238.01402726666666 -2015-12-16 04:00:00,0.0,1020.5571669999999,0.0,100.0,4.502,0.003666667,238.01366938333334 -2015-12-16 05:00:00,0.0,1020.300333,0.0,100.0,4.555666667,0.055166667,238.01438516666667 -2015-12-16 06:00:00,2.4050227680000003,1020.1995,0.0,100.0,4.6609166669999995,0.045583333,238.01331144999997 -2015-12-16 07:00:00,26.54480491,1019.9830000000001,0.0,100.0,4.827166667,0.05925,238.0131325 -2015-12-16 08:00:00,14.53734696,1019.967,0.8946666670000001,100.0,5.5225,0.675333333,238.0134904 -2015-12-16 09:00:00,14.60205763,1020.150167,7.832083333,100.0,6.74825,1.800583333,238.01456413333332 -2015-12-16 10:00:00,2.81391672,1020.2005,11.23333333,100.0,7.07275,1.6560833330000002,238.01671158333332 -2015-12-16 11:00:00,0.0,1020.316,17.955,100.0,7.769416667000001,1.8766666669999998,238.01563785 -2015-12-16 12:00:00,0.0,1019.9830000000001,27.60833333,100.0,8.475,1.027416667,238.01689055 -2015-12-16 13:00:00,0.0,1019.991667,13.6975,100.0,8.548333332999999,0.6030833329999999,238.01868004999997 -2015-12-16 14:00:00,2.442188304,1019.8083330000001,26.14666667,100.0,8.639166667000001,0.6345833329999999,238.0197537833333 -2015-12-16 15:00:00,0.0,1019.958667,21.88358333,100.0,8.8825,0.75375,238.01832215 -2015-12-16 16:00:00,0.0,1019.949667,1.657083333,100.0,8.754166667,0.35758333299999995,238.0211854 -2015-12-16 17:00:00,0.0,1019.866667,0.0,100.0,8.485833332999999,0.63175,238.02297495000002 -2015-12-16 18:00:00,0.0,1019.9416669999999,0.0,100.0,8.378333332999999,0.1705,238.02225915 -2015-12-16 19:00:00,0.0,1020.109167,0.0,100.0,8.248333333,0.332,238.0238697 -2015-12-16 20:00:00,0.0,1020.4416669999999,0.0,100.0,8.780833333,0.075333333,238.02333285 -2015-12-16 21:00:00,2.413397448,1020.517167,0.0,99.81666667,9.770833332999999,0.324416667,238.0247644666667 -2015-12-16 22:00:00,0.0,1020.633167,0.0,100.0,10.91,1.041166667,238.0261961 -2015-12-16 23:00:00,0.0,1020.709,0.0,100.0,11.29416667,1.312833333,238.0251223666667 -2015-12-17 00:00:00,0.0,1020.641167,0.0,100.0,11.6775,1.205083333,238.0272698333333 -2015-12-17 01:00:00,0.0,1020.758,0.0,100.0,11.78666667,1.652,238.02834354999996 -2015-12-17 02:00:00,0.0,1020.725833,0.0,99.91666667,11.72666667,0.9540000000000001,238.02834353333333 -2015-12-17 03:00:00,0.0,1021.0165,0.0,99.525,11.82416667,1.1320000000000001,238.0278067 -2015-12-17 04:00:00,2.603051904,1020.858167,0.0,100.0,11.52166667,1.115166667,238.0295962 -2015-12-17 05:00:00,0.0,1020.633167,0.0,99.14166667,11.7075,1.163166667,238.03013306666662 -2015-12-17 06:00:00,0.0,1020.515833,0.0,97.80833333,11.63916667,0.78475,238.03066993333331 -2015-12-17 07:00:00,0.0,1020.5675,0.0,97.55,11.57833333,1.111416667,238.03138575 -2015-12-17 08:00:00,0.0,1020.9010000000001,3.3736666669999997,97.5,11.24916667,0.608833333,238.03299631666667 -2015-12-17 09:00:00,0.0,1021.166667,27.375,96.56666667,10.59833333,0.71425,238.03120678333332 -2015-12-17 10:00:00,0.0,1021.3005,44.86416667,95.375,11.77083333,0.4625,238.03031201666667 -2015-12-17 11:00:00,0.0,1020.948833,83.33833333,94.725,13.1675,0.83175,238.0315647 -2015-12-17 12:00:00,0.0,1020.4655,83.5225,92.68333333,13.8175,1.292916667,238.03102785 -2015-12-17 13:00:00,0.0,1019.9910000000001,71.46083333,93.28333333,13.9975,1.45225,238.03245946666667 -2015-12-17 14:00:00,0.0,1019.825,31.9975,93.85833333,14.07916667,1.13075,238.0338911 -2015-12-17 15:00:00,0.0,1019.524333,26.67583333,94.95833333,13.4325,1.346333333,238.03371213333335 -2015-12-17 16:00:00,0.0,1019.316833,3.26225,99.63333333,11.355,0.864666667,238.03514375 -2015-12-17 17:00:00,0.0,1019.074167,0.0,100.0,10.63916667,0.5578333329999999,238.0355016666667 -2015-12-17 18:00:00,0.0,1018.908,0.0,100.0,8.670583333,0.122083333,238.03764911666667 -2015-12-17 19:00:00,0.0,1018.758167,0.0,100.0,7.3753333329999995,0.149166667,238.03711223333335 -2015-12-17 20:00:00,0.0,1018.732833,0.0,100.0,7.3805,0.09225,238.03693330000002 -2015-12-17 21:00:00,0.0,1018.308,0.0,100.0,7.174416667000001,0.163916667,238.03729121666666 -2015-12-17 22:00:00,0.0,1017.765667,0.0,100.0,7.3768333329999995,0.255583333,238.03729120000003 -2015-12-17 23:00:00,0.0,1017.6585,0.0,100.0,7.44675,0.237333333,238.0356806166667 -2015-12-18 00:00:00,2.44836312,1017.490667,0.0,100.0,8.087166667,0.173083333,238.0338911 -2015-12-18 01:00:00,0.0,1016.941167,0.0,100.0,8.483833333,0.764833333,238.0351437666667 -2015-12-18 02:00:00,0.0,1016.5075,0.0,100.0,9.66,1.297,238.0346069 -2015-12-18 03:00:00,0.0,1016.242,0.0,100.0,9.79,0.8905833329999999,238.03335423333337 -2015-12-18 04:00:00,2.472611976,1016.349667,0.0,100.0,8.839166667,0.42008333299999995,238.03245948333335 -2015-12-18 05:00:00,0.0,1016.425333,0.0,99.28333333,8.486666667,0.313583333,238.0315647 -2015-12-18 06:00:00,4.955007168,1016.700833,0.0,94.89166667,8.152416667,0.244666667,238.0297751833333 -2015-12-18 07:00:00,4.849838832,1017.117333,0.0,98.26666667,8.788333332999999,0.27675,238.03031199999998 -2015-12-18 08:00:00,0.0,1017.809833,1.196416667,98.70833333,9.8525,1.285583333,238.0278066833333 -2015-12-18 09:00:00,0.0,1018.551333,27.89416667,98.75,10.18916667,1.13275,238.02744876666665 -2015-12-18 10:00:00,0.0,1019.100333,50.475,98.475,11.16666667,0.955,238.02780668333332 -2015-12-18 11:00:00,0.0,1019.275,45.0725,97.05833333,11.46416667,1.78275,238.02673296666663 -2015-12-18 12:00:00,0.0,1019.249667,49.92583333,96.40833333,11.75583333,1.6480833330000002,238.02780668333332 -2015-12-18 13:00:00,0.0,1019.0666669999999,74.38416667,93.76666667,12.01833333,0.882916667,238.02762774999997 -2015-12-18 14:00:00,0.0,1019.108333,51.54083333,91.58333333,12.06583333,1.031333333,238.02637504999998 -2015-12-18 15:00:00,0.0,1019.225333,22.14666667,93.98333333,11.35333333,0.5385833329999999,238.02744876666665 -2015-12-18 16:00:00,0.0,1019.475333,4.56075,96.35,10.625,0.46083333299999996,238.02780668333332 -2015-12-18 17:00:00,0.0,1019.6505,0.0,96.95,9.766666667,0.110166667,238.02691191666668 -2015-12-18 18:00:00,0.0,1019.716833,0.0,99.11666667,9.4925,0.14575,238.02762775 -2015-12-18 19:00:00,0.0,1019.967,0.0,97.16666667,9.425833333,0.11866666699999999,238.02548028333334 -2015-12-18 20:00:00,0.0,1019.866167,0.0,97.91666667,9.465,0.320666667,238.02261704999998 -2015-12-18 21:00:00,0.0,1019.6498330000001,0.0,96.0,9.401666667,0.673333333,238.02476446666665 -2015-12-18 22:00:00,0.0,1019.683167,0.0,94.525,9.748333333,1.132083333,238.02261705 -2015-12-18 23:00:00,0.0,1019.666667,0.0,91.525,10.07416667,1.8514166669999998,238.02208018333337 -2015-12-19 00:00:00,0.0,1019.299,0.0,94.725,9.5425,1.58075,238.0231539 -2015-12-19 01:00:00,0.0,1018.925167,0.0,93.84166667,9.574166667,1.377833333,238.0238697166667 -2015-12-19 02:00:00,0.0,1018.949833,0.0,96.68333333,9.308333333,0.2335,238.02261703333338 -2015-12-19 03:00:00,0.0,1018.582,0.0,99.99166667,9.4875,0.562583333,238.02351180000002 -2015-12-19 04:00:00,0.0,1018.342,0.0,99.2,9.731666667,0.7586666670000001,238.0215433 -2015-12-19 05:00:00,0.0,1018.608833,0.0,94.71666667,9.915833333,0.25525,238.0185011 -2015-12-19 06:00:00,0.0,1018.574667,0.0,94.44166667,10.7075,0.8833333329999999,238.01921691666666 -2015-12-19 07:00:00,0.0,1018.575,0.0,96.81666667,9.935833333,1.4729166669999998,238.01760634999997 -2015-12-19 08:00:00,0.0,1018.676,2.139583333,96.10833333,9.6325,1.312416667,238.0201116833333 -2015-12-19 09:00:00,0.0,1019.083167,19.19808333,95.34166667,9.804166667,1.193833333,238.01760635000002 -2015-12-19 10:00:00,0.0,1019.1925,70.6175,91.10833333,10.9475,0.514083333,238.01832215000002 -2015-12-19 11:00:00,0.0,1019.332667,83.33916667,88.66666667,11.91,1.172416667,238.01653261666664 -2015-12-19 12:00:00,0.0,1019.032833,94.32583333,85.625,13.2275,1.3648333330000002,238.01760635000002 -2015-12-19 13:00:00,0.0,1018.891667,39.48416667,86.25833333,12.20416667,0.858083333,238.01599575 -2015-12-19 14:00:00,0.0,1018.566,25.79916667,88.25833333,11.89333333,0.648666667,238.01617473333332 -2015-12-19 15:00:00,0.0,1018.166333,14.12475,89.88333333,11.71166667,1.10625,238.01850109999998 -2015-12-19 16:00:00,0.0,1017.941333,1.5754166669999998,96.05,11.34666667,1.918333333,238.01993273333335 -2015-12-19 17:00:00,0.0,1017.9915,0.0,97.69166667,10.79583333,1.95575,238.01868006666666 -2015-12-19 18:00:00,0.0,1017.783,0.0,97.90833333,9.469166667,2.38025,238.01939586666666 -2015-12-19 19:00:00,0.0,1017.675,0.0,97.35833333,9.326666667000001,2.188916667,238.01778529999999 -2015-12-19 20:00:00,0.0,1017.633167,0.0,99.80833333,7.78925,0.315666667,238.01903794999998 -2015-12-19 21:00:00,0.0,1017.441167,0.0,100.0,5.9450833329999995,0.1435,238.02172225 -2015-12-19 22:00:00,0.0,1016.9739999999999,0.0,100.0,5.483,0.19125,238.01975376666667 -2015-12-19 23:00:00,0.0,1016.633,0.0,100.0,6.518916667,0.323666667,238.01706948333333 -2015-12-20 00:00:00,0.0,1016.190833,0.0,100.0,7.4858333329999995,0.6406666670000001,238.01706946666664 -2015-12-20 01:00:00,0.0,1015.4813330000001,0.0,100.0,6.914833333,0.36475,238.01599576666663 -2015-12-20 02:00:00,0.0,1015.042333,0.0,100.0,6.009916667000001,0.315416667,238.01832215 -2015-12-20 03:00:00,0.0,1015.175167,0.0,100.0,5.433916667,0.128333333,238.01420620000002 -2015-12-20 04:00:00,0.0,1015.492167,0.0,100.0,5.42575,0.16575,238.01420620000002 -2015-12-20 05:00:00,0.0,1015.248833,0.0,100.0,6.18875,0.6034166670000001,238.01366936666668 -2015-12-20 06:00:00,0.0,1014.782833,0.0,100.0,6.51825,0.5115,238.01456413333332 -2015-12-20 07:00:00,0.0,1014.783833,0.0,100.0,6.857583332999999,1.591,238.0134904 -2015-12-20 08:00:00,0.0,1014.933167,5.484666667000001,100.0,6.709833333,1.128416667,238.01134298333332 -2015-12-20 09:00:00,0.0,1015.217667,22.2925,100.0,6.657083332999999,1.30275,238.0108061 -2015-12-20 10:00:00,0.0,1015.709833,47.79083333,100.0,6.990583332999999,0.383666667,238.00865865 -2015-12-20 11:00:00,0.0,1015.957167,83.28333333,100.0,7.34875,0.767833333,238.0077639 -2015-12-20 12:00:00,0.0,1015.408,92.94166667,100.0,8.402083333,0.660666667,238.00830075 -2015-12-20 13:00:00,0.0,1015.441833,67.1425,100.0,8.918333333,0.474916667,238.0059744 -2015-12-20 14:00:00,0.0,1015.307667,53.005,100.0,9.31,0.8514166670000001,238.00507961666668 -2015-12-20 15:00:00,0.0,1015.042167,23.425,100.0,8.854166667000001,0.93225,238.00507961666668 -2015-12-20 16:00:00,0.0,1015.3415,1.8500833330000002,100.0,8.309416667,1.054916667,238.00525856666664 -2015-12-20 17:00:00,0.0,1015.492167,0.0,100.0,7.853,0.604833333,238.0081218 -2015-12-20 18:00:00,0.0,1015.758333,0.0,100.0,7.317333333,0.6890000000000001,238.00597438333332 -2015-12-20 19:00:00,0.0,1016.025667,0.0,100.0,7.145,0.701666667,238.00686914999997 -2015-12-20 20:00:00,0.0,1016.1,0.0,100.0,7.302916667000001,0.66525,238.00651123333333 -2015-12-20 21:00:00,0.0,1016.217,0.0,100.0,7.103,0.38225,238.00346903333335 -2015-12-20 22:00:00,0.0,1016.4255,0.0,100.0,7.218666667000001,0.2435,238.0034690166667 -2015-12-20 23:00:00,0.0,1016.591833,0.0,100.0,6.834916667000001,0.18558333300000002,238.00418483333337 -2015-12-21 00:00:00,0.0,1016.407333,0.0,100.0,6.54525,0.136083333,238.00418483333337 -2015-12-21 01:00:00,0.0,1016.092167,0.0,97.01666667,6.53725,0.288666667,238.00257425000004 -2015-12-21 02:00:00,0.0,1016.250333,0.0,89.54166667,7.6006666670000005,0.406583333,238.00114265000002 -2015-12-21 03:00:00,2.473768824,1016.575,0.0,89.75,9.469166667,0.398083333,238.00024788333334 -2015-12-21 04:00:00,2.518946376,1016.7175,0.0,93.975,9.920833333,0.5815,237.9998899666667 -2015-12-21 05:00:00,17.21971855,1017.017333,0.0,98.04166667,9.751666667,1.5155,238.0011426333333 -2015-12-21 06:00:00,34.10207035,1017.483667,0.0,98.325,9.345833333,1.4945,238.0000689166667 -2015-12-21 07:00:00,2.73699504,1017.5585,0.0,97.825,8.756666667000001,1.1345,238.0023953 -2015-12-21 08:00:00,0.0,1018.0425,0.45141666700000005,95.21666667,8.679166667,1.34725,238.0023953 -2015-12-21 09:00:00,0.0,1018.6010000000001,15.98733333,93.35833333,8.869166667,2.014416667,238.00078471666666 -2015-12-21 10:00:00,0.0,1019.025333,40.92583333,92.19166667,9.374166667,2.057,237.9993531 -2015-12-21 11:00:00,0.0,1018.857833,110.77083329999999,87.53333333,10.88416667,2.342666667,238.00006891666666 -2015-12-21 12:00:00,0.0,1018.357333,81.3325,84.10833333,10.865,2.52325,237.99935306666666 -2015-12-21 13:00:00,0.0,1017.8325,45.88583333,79.75083333,10.86,3.02075,238.0004268166667 -2015-12-21 14:00:00,0.0,1017.557833,53.37833333,78.79583333,10.61333333,2.4275,237.99917415000002 -2015-12-21 15:00:00,0.0,1017.5505,30.95583333,79.19833333,10.5125,2.97575,238.00132159999998 -2015-12-21 16:00:00,0.0,1017.717167,3.534,79.435,10.38916667,2.51,238.00006889999997 -2015-12-21 17:00:00,0.0,1017.6995,0.0,80.5825,10.11,2.6189999999999998,238.00185843333335 -2015-12-21 18:00:00,0.0,1017.784167,0.0,81.98333333,9.828333333,2.116083333,238.00132156666666 -2015-12-21 19:00:00,0.0,1018.2835,0.0,80.595,10.15583333,2.38025,237.99827936666665 -2015-12-21 20:00:00,0.0,1018.216667,0.0,79.855,10.36083333,2.5186666669999997,237.99863728333332 -2015-12-21 21:00:00,0.0,1018.133833,0.0,80.0875,10.62166667,2.940583333,237.99792146666664 -2015-12-21 22:00:00,0.0,1018.609333,0.0,90.36666667,9.9275,2.587333333,237.99720564999998 -2015-12-21 23:00:00,0.0,1019.234167,0.0,89.28333333,10.3425,2.622583333,237.99631088333334 -2015-12-22 00:00:00,0.0,1019.8755,0.0,90.45833333,10.44,2.7745833330000003,237.99666879999998 -2015-12-22 01:00:00,0.0,1020.3015,0.0,89.1,10.63916667,2.5950833330000003,237.99487926666666 -2015-12-22 02:00:00,0.0,1020.924667,0.0,91.80833333,10.50166667,2.455083333,237.99452134999999 -2015-12-22 03:00:00,0.0,1020.758833,0.0,90.10833333,10.6875,2.294166667,237.9957740333333 -2015-12-22 04:00:00,0.0,1020.899667,0.0,89.13333333,10.88583333,2.133,237.9947003333333 -2015-12-22 05:00:00,0.0,1020.633333,0.0,94.24166667,10.43916667,1.623583333,237.9948792833333 -2015-12-22 06:00:00,8.154822432000001,1020.6005,0.0,97.125,9.709166667,1.376,237.99684776666663 -2015-12-22 07:00:00,24.54122311,1020.690667,0.0,98.21666667,9.510833332999999,1.320833333,237.99953205 -2015-12-22 08:00:00,6.10000416,1020.375167,1.481416667,97.96666667,9.344166667,1.541166667,238.00418483333337 -2015-12-22 09:00:00,0.0,1020.4755,16.3825,95.6,10.045,1.255333333,238.00203739999998 -2015-12-22 10:00:00,0.0,1021.050833,25.03083333,94.43333333,10.69833333,1.590416667,238.00024788333337 -2015-12-22 11:00:00,0.0,1021.007667,31.48083333,93.65833333,11.12666667,1.6345833330000001,238.0000689166667 -2015-12-22 12:00:00,0.0,1020.448833,37.18666667,89.24166667,12.13333333,1.814583333,238.00150053333334 -2015-12-22 13:00:00,0.0,1020.208333,51.8075,87.5,12.4575,1.57675,238.00203738333335 -2015-12-22 14:00:00,0.0,1020.024333,53.8525,84.38333333,12.79833333,1.616916667,238.00096369999997 -2015-12-22 15:00:00,0.0,1019.841667,31.66,82.35833333,12.35833333,1.7216666669999998,238.0025742833333 -2015-12-22 16:00:00,0.0,1019.616333,4.481583333000001,83.025,11.4425,1.3759166669999998,238.0063322666667 -2015-12-22 17:00:00,0.0,1019.3245,0.0,81.11,11.27666667,1.424916667,238.00686915000003 -2015-12-22 18:00:00,0.0,1018.857,0.0,78.975,11.22,1.692166667,238.00669018333335 -2015-12-22 19:00:00,0.0,1018.5755,0.0,79.16666667,11.16833333,1.224166667,238.00847971666664 -2015-12-22 20:00:00,0.0,1018.6495,0.0,78.98916667,11.24166667,1.6368333330000002,238.0100902833333 -2015-12-22 21:00:00,0.0,1018.741667,0.0,78.28,11.24083333,2.0645833330000003,238.00812183333335 -2015-12-22 22:00:00,0.0,1018.215833,0.0,77.825,11.07,2.56825,238.00955345 -2015-12-22 23:00:00,0.0,1018.275667,0.0,78.06,10.70333333,2.566833333,238.0100902833333 -2015-12-23 00:00:00,0.0,1018.15,0.0,78.40416667,10.36333333,2.358166667,238.00991133333332 -2015-12-23 01:00:00,0.0,1017.974167,0.0,86.3,9.554166667,1.374333333,238.011343 -2015-12-23 02:00:00,0.0,1017.5825,0.0,81.6075,9.279166667,1.3025,238.01187983333332 -2015-12-23 03:00:00,0.0,1017.207833,0.0,78.6625,9.749166667,1.5621666669999998,238.01170088333333 -2015-12-23 04:00:00,0.0,1017.199833,0.0,75.6575,9.173333332999999,1.65075,238.01044819999996 -2015-12-23 05:00:00,0.0,1017.292333,0.0,78.135,10.04333333,2.14825,238.00973238333333 -2015-12-23 06:00:00,0.0,1017.508833,0.0,84.75833333,9.899166667000001,2.137666667,238.00937448333332 -2015-12-23 07:00:00,0.0,1018.142833,0.0,87.04166667,10.19833333,2.16825,238.00991133333332 -2015-12-23 08:00:00,0.0,1018.901833,4.867416667,87.925,10.50583333,2.48975,238.0097324 -2015-12-23 09:00:00,0.0,1019.917833,48.16,93.8,10.16916667,2.61475,238.00901656666665 -2015-12-23 10:00:00,0.0,1020.668333,55.29416667,94.675,10.47166667,2.318666667,238.00937448333335 -2015-12-23 11:00:00,0.0,1021.4505,82.07583333,91.85,11.27083333,2.4893333330000003,238.00722704999998 -2015-12-23 12:00:00,0.0,1021.550167,92.5875,90.06666667,11.98916667,2.204166667,238.00651123333333 -2015-12-23 13:00:00,0.0,1021.608667,128.2108333,86.01666667,12.2125,1.972083333,238.00686914999997 -2015-12-23 14:00:00,0.0,1021.7335,68.295,80.90166667,12.1825,1.504583333,238.00579543333333 -2015-12-23 15:00:00,0.0,1022.092333,21.8175,79.185,11.6475,1.504,238.00847971666667 -2015-12-23 16:00:00,0.0,1022.884833,4.755916667,83.45833333,10.90333333,1.22075,238.00937448333332 -2015-12-23 17:00:00,0.0,1023.509167,0.0,85.89166667,9.878333332999999,0.821,238.00847971666667 -2015-12-23 18:00:00,0.0,1024.059,0.0,91.65,6.846583333,0.17925,238.00794286666667 -2015-12-23 19:00:00,0.0,1024.083333,0.0,95.28333333,5.032916667,0.241916667,238.00919553333333 -2015-12-23 20:00:00,0.0,1024.116333,0.0,95.60833333,6.90725,0.902166667,238.00812181666666 -2015-12-23 21:00:00,0.0,1023.950333,0.0,96.03333333,5.127166667,0.252,238.00973238333333 -2015-12-23 22:00:00,0.0,1023.874333,0.0,98.675,3.371083333,0.32766666699999997,238.0081218 -2015-12-23 23:00:00,0.0,1023.566333,0.0,100.0,2.649083333,0.34033333299999996,238.00937446666663 -2015-12-24 00:00:00,0.0,1023.382833,0.0,100.0,1.4665833330000002,0.15633333300000002,238.0095534333333 -2015-12-24 01:00:00,0.0,1022.924167,0.0,100.0,1.1966666670000001,0.168416667,238.00991134999995 -2015-12-24 02:00:00,0.0,1022.491167,0.0,100.0,0.8745,0.229416667,238.0100902833333 -2015-12-24 03:00:00,0.0,1022.291167,0.0,100.0,2.778083333,0.35700000000000004,238.00919551666664 -2015-12-24 04:00:00,0.0,1021.798667,0.0,100.0,5.06625,0.929,238.00651125000002 -2015-12-24 05:00:00,0.0,1021.082667,0.0,100.0,5.690083333,0.49991666700000004,238.00669018333335 -2015-12-24 06:00:00,0.0,1020.791667,0.0,100.0,6.506333333,0.51075,238.0054375 -2015-12-24 07:00:00,0.0,1020.4321669999999,0.0,100.0,5.80075,0.291333333,238.00490063333336 -2015-12-24 08:00:00,0.0,1020.083167,1.823916667,100.0,5.9785,0.67675,238.00507960000002 -2015-12-24 09:00:00,0.0,1019.8741669999999,13.69066667,100.0,5.712000000000001,1.427416667,238.0066902 -2015-12-24 10:00:00,0.0,1019.558167,88.09333333,100.0,7.739333332999999,2.281166667,238.00507960000004 -2015-12-24 11:00:00,0.0,1019.0395,91.86,100.0,9.3475,1.690833333,238.00418485 -2015-12-24 12:00:00,0.0,1018.0995,138.6083333,93.29166667,10.63583333,2.2294166669999997,238.0023953 -2015-12-24 13:00:00,0.0,1017.799167,103.145,88.43333333,11.16333333,1.8148333330000002,238.00203740000003 -2015-12-24 14:00:00,0.0,1017.2415,82.13583333,87.225,11.83333333,1.5875,238.00257425000004 -2015-12-24 15:00:00,0.0,1017.358833,24.29116667,86.28333333,11.125,0.98725,238.00239530000002 -2015-12-24 16:00:00,0.0,1017.3325,5.579833333,86.225,10.53416667,1.7024166669999998,238.0013216 -2015-12-24 17:00:00,0.0,1017.258667,0.0,87.10833333,10.19166667,1.4436666669999998,238.00150055000003 -2015-12-24 18:00:00,0.0,1017.592167,0.0,84.2,9.858333333,1.1555,238.00257425000004 -2015-12-24 19:00:00,0.0,1017.692333,0.0,84.075,9.728333333,1.226083333,238.00024788333334 -2015-12-24 20:00:00,0.0,1017.849833,0.0,83.33333333,11.8625,2.3418333330000003,238.00132158333335 -2015-12-24 21:00:00,0.0,1018.1510000000001,0.0,83.825,11.7425,2.19225,237.99953205 -2015-12-24 22:00:00,0.0,1018.491667,0.0,83.14166667,11.52083333,1.688083333,237.99953205 -2015-12-24 23:00:00,0.0,1018.600833,0.0,80.03166667,12.1225,2.410333333,237.99810043333332 -2015-12-25 00:00:00,0.0,1018.8585,0.0,83.95666667,11.94416667,2.412583333,237.9977425 -2015-12-25 01:00:00,0.0,1019.2260000000001,0.0,88.85833333,11.26333333,2.38675,237.99845831666667 -2015-12-25 02:00:00,0.0,1020.193333,0.0,87.75833333,10.925,2.5373333330000003,237.99505821666665 -2015-12-25 03:00:00,20.75416291,1021.284833,0.0,95.26666667,9.094166667,0.905666667,237.99720564999998 -2015-12-25 04:00:00,2.6691611280000003,1021.7,0.0,95.375,8.8225,1.061416667,237.99756355 -2015-12-25 05:00:00,2.7994476,1022.034667,0.0,97.15,8.9775,1.4645833330000002,237.99738461666664 -2015-12-25 06:00:00,0.0,1022.567167,0.0,94.86666667,8.880833333,1.46725,237.99434241666665 -2015-12-25 07:00:00,0.0,1023.151667,0.0,94.29166667,8.4325,1.0593333329999999,237.99541615 -2015-12-25 08:00:00,0.0,1023.6255,1.992083333,95.45,8.298333332999999,0.654833333,237.9952371833333 -2015-12-25 09:00:00,3.00702192,1024.342167,18.96358333,94.48333333,8.6875,1.7903333330000002,237.99219496666672 -2015-12-25 10:00:00,0.0,1024.567667,25.045,94.675,8.708333332999999,1.226916667,237.99201601666667 -2015-12-25 11:00:00,0.0,1024.373833,15.055,99.15,8.524166667000001,0.3655,237.9923739 -2015-12-25 12:00:00,19.62333535,1023.891333,18.93916667,100.0,8.469166667,0.292083333,237.9921949666667 -2015-12-25 13:00:00,21.91978673,1023.5571669999999,40.24583333,100.0,8.875,0.135833333,237.9923739333333 -2015-12-25 14:00:00,14.90986106,1023.258167,23.40416667,99.74166667,9.558333333,0.5195,237.99487928333335 -2015-12-25 15:00:00,5.568929232,1023.041333,23.726,96.04166667,10.67,1.3594166669999999,237.99613194999998 -2015-12-25 16:00:00,0.0,1023.1,1.77325,91.70833333,11.0925,1.3985,237.9989952 -2015-12-25 17:00:00,0.0,1023.141833,0.0,90.18333333,11.18166667,1.083416667,238.00060580000002 -2015-12-25 18:00:00,0.0,1023.2251669999999,0.0,90.69166667,10.88,0.977666667,238.00042683333334 -2015-12-25 19:00:00,0.0,1023.341833,0.0,90.575,10.4325,1.4689166669999998,238.0013216 -2015-12-25 20:00:00,0.0,1023.45,0.0,90.075,10.61,1.3675,238.0016795 -2015-12-25 21:00:00,0.0,1023.383833,0.0,89.20833333,10.935,1.26225,238.00418483333337 -2015-12-25 22:00:00,0.0,1023.658333,0.0,87.48333333,11.8,0.6928333329999999,238.00382691666667 -2015-12-25 23:00:00,0.0,1023.7835,0.0,86.43333333,12.13833333,0.782,238.00615333333334 -2015-12-26 00:00:00,0.0,1023.424667,0.0,88.06666667,10.61166667,0.98575,238.00812181666666 -2015-12-26 01:00:00,2.48798856,1023.2080000000001,0.0,88.91666667,8.3605,0.735916667,238.01223773333334 -2015-12-26 02:00:00,0.0,1023.450333,0.0,87.26666667,7.121583332999999,0.35658333299999995,238.01223773333334 -2015-12-26 03:00:00,0.0,1023.55,0.0,86.63333333,6.870333333,0.35316666700000005,238.01223774999997 -2015-12-26 04:00:00,0.0,1023.508333,0.0,86.16666667,7.595666667000001,0.396,238.01366936666662 -2015-12-26 05:00:00,0.0,1023.466667,0.0,85.64166667,8.44575,0.7536666670000001,238.01474308333334 -2015-12-26 06:00:00,0.0,1023.283333,0.0,85.375,7.363416667,0.460583333,238.0154589166667 -2015-12-26 07:00:00,0.0,1023.357833,0.0,85.5,9.020916667,0.43158333299999996,238.01563785 -2015-12-26 08:00:00,0.0,1023.141667,5.06525,95.825,8.375916667,0.46175,238.01939586666666 -2015-12-26 09:00:00,0.0,1023.2755,19.19666667,90.775,9.639166667000001,0.742,238.01957481666668 -2015-12-26 10:00:00,0.0,1023.684167,67.83333333,78.83916667,12.6975,1.5954166669999998,238.01671158333338 -2015-12-26 11:00:00,0.0,1023.6405,94.6,75.96916667,13.4525,2.286666667,238.01706948333333 -2015-12-26 12:00:00,0.0,1023.074,137.1416667,74.47666667,14.14583333,2.1455,238.01742739999997 -2015-12-26 13:00:00,0.0,1022.491167,141.55,73.0575,14.85166667,1.9605833330000002,238.01814321666666 -2015-12-26 14:00:00,0.0,1022.166167,108.78333329999998,72.34166667,15.26583333,1.11925,238.01724843333332 -2015-12-26 15:00:00,0.0,1022.141667,50.4575,73.4425,13.91,1.364333333,238.01760633333333 -2015-12-26 16:00:00,0.0,1022.359333,3.8465833330000003,82.3025,11.735,1.298166667,238.01939586666666 -2015-12-26 17:00:00,0.0,1022.532833,0.0,89.8,10.8225,0.959916667,238.02064853333334 -2015-12-26 18:00:00,0.0,1022.533333,0.0,86.74166667,9.9075,1.26125,238.02046958333332 -2015-12-26 19:00:00,0.0,1022.575167,0.0,87.58333333,9.736666667,0.909083333,238.01975376666667 -2015-12-26 20:00:00,0.0,1022.516667,0.0,89.575,7.218166667,0.481833333,238.02100643333335 -2015-12-26 21:00:00,0.0,1022.541833,0.0,92.325,5.06875,0.319583333,238.0208275 -2015-12-26 22:00:00,0.0,1022.508,0.0,95.56666667,3.802333333,0.18708333300000002,238.02118541666667 -2015-12-26 23:00:00,0.0,1022.475,0.0,98.41666667,2.9506666669999997,0.19125,238.02243810000002 -2015-12-27 00:00:00,0.0,1022.541833,0.0,100.0,2.188583333,0.163583333,238.02154331666668 -2015-12-27 01:00:00,0.0,1022.374667,0.0,100.0,1.75375,0.129083333,238.02064853333331 -2015-12-27 02:00:00,0.0,1022.199667,0.0,100.0,1.4810833330000002,0.12575,238.0211854 -2015-12-27 03:00:00,0.0,1021.95,0.0,100.0,1.309416667,0.10166666699999999,238.01993271666666 -2015-12-27 04:00:00,0.0,1022.0,0.0,100.0,1.0596666670000001,0.135916667,238.01903795 -2015-12-27 05:00:00,0.0,1022.125,0.0,100.0,1.066666667,0.3675,238.02082751666669 -2015-12-27 06:00:00,0.0,1022.183833,0.0,100.0,0.737916667,0.11258333300000001,238.01939586666666 -2015-12-27 07:00:00,0.0,1022.508667,0.0,100.0,0.2965,0.09525,238.01832215 -2015-12-27 08:00:00,0.0,1022.717333,4.27925,100.0,0.376,0.285666667,238.01868005000003 -2015-12-27 09:00:00,0.0,1022.983333,36.46166667,100.0,2.143333333,0.43558333299999996,238.01545890000003 -2015-12-27 10:00:00,0.0,1023.359667,77.11416667,100.0,4.615416667,0.174333333,238.0154588833333 -2015-12-27 11:00:00,0.0,1023.958333,109.825,99.40833333,6.938333332999999,0.2555,238.0138483166667 -2015-12-27 12:00:00,0.0,1023.958167,120.48333329999998,82.875,8.47925,0.547416667,238.01170088333333 -2015-12-27 13:00:00,0.0,1023.658,133.8,79.46666667,10.12666667,0.980666667,238.01170086666664 -2015-12-27 14:00:00,0.0,1023.625333,110.20833329999999,77.48,10.38416667,1.158,238.01026923333333 -2015-12-27 15:00:00,0.0,1023.925667,58.66583333,76.87833333,11.31666667,0.676416667,238.00901658333336 -2015-12-27 16:00:00,0.0,1024.292167,7.0245,80.40666667,9.08375,0.34075,238.0100903166667 -2015-12-27 17:00:00,0.0,1024.683833,0.0,92.59166667,6.079833333,0.207666667,238.0120588 -2015-12-27 18:00:00,0.0,1024.742,0.0,95.04166667,4.6905,0.297083333,238.0131325 -2015-12-27 19:00:00,0.0,1025.151167,0.0,95.8,4.4110000000000005,0.284333333,238.01026925 -2015-12-27 20:00:00,0.0,1025.750167,0.0,99.90833333,3.5835,0.23800000000000002,238.0095534333333 -2015-12-27 21:00:00,0.0,1025.800167,0.0,100.0,2.3085,0.13975,238.00919551666664 -2015-12-27 22:00:00,0.0,1026.151167,0.0,100.0,1.69575,0.19699999999999998,238.00686914999997 -2015-12-27 23:00:00,0.0,1026.374667,0.0,100.0,1.265583333,0.289666667,238.00830075 -2015-12-28 00:00:00,0.0,1026.267,0.0,100.0,0.772416667,0.07575,238.00919551666664 -2015-12-28 01:00:00,0.0,1026.115833,0.0,100.0,0.2385,0.15275,238.00919556666668 -2015-12-28 02:00:00,0.0,1026.033333,0.0,100.0,0.241583333,0.05075,238.00704810000002 -2015-12-28 03:00:00,0.0,1026.0,0.0,100.0,1.000916667,0.05125,238.00669018333335 -2015-12-28 04:00:00,0.0,1026.116833,0.0,100.0,1.913416667,0.0045,238.00436380000005 -2015-12-28 05:00:00,0.0,1025.974833,0.0,100.0,2.292333333,0.078166667,238.0023953 -2015-12-28 06:00:00,0.0,1025.782667,0.0,100.0,2.7448333330000003,0.022666667,238.00203739999998 -2015-12-28 07:00:00,0.0,1025.633667,0.0,100.0,3.020083333,0.06308333299999999,238.00024786666665 -2015-12-28 08:00:00,0.0,1025.8665,1.618333333,100.0,3.243833333,0.049,238.00042683333334 -2015-12-28 09:00:00,0.0,1025.833833,14.14233333,100.0,3.497083333,1.3854166669999999,238.00150055000003 -2015-12-28 10:00:00,0.0,1026.008333,31.5575,100.0,3.3618333330000003,1.39525,237.99935309999998 -2015-12-28 11:00:00,0.0,1025.7575,64.74583333,100.0,3.810166667,1.12375,237.99971101666665 -2015-12-28 12:00:00,0.0,1025.182333,73.94583333,100.0,4.278166667,1.315083333,237.99917413333333 -2015-12-28 13:00:00,0.0,1024.4569999999999,55.05333333,100.0,4.631666667,1.135416667,237.99881626666664 -2015-12-28 14:00:00,0.0,1023.832833,49.35166667,100.0,4.989166667,0.43825,237.99810043333332 -2015-12-28 15:00:00,0.0,1023.365333,34.00416667,100.0,4.7995,0.82075,237.9981004166667 -2015-12-28 16:00:00,0.0,1022.849833,5.83,100.0,4.603833333,0.465,237.9993531166667 -2015-12-28 17:00:00,0.0,1022.6825,0.0,100.0,4.345166667,0.50725,237.9993531166667 -2015-12-28 18:00:00,0.0,1022.4416669999999,0.0,100.0,3.6295833330000002,0.62525,237.99971101666668 -2015-12-28 19:00:00,2.483419608,1022.199333,0.0,100.0,3.11575,0.3825,237.99917415000002 -2015-12-28 20:00:00,0.0,1021.908,0.0,100.0,2.749583333,0.581666667,237.99953206666666 -2015-12-28 21:00:00,0.0,1021.741333,0.0,100.0,2.588,0.45983333299999996,237.99971100000002 -2015-12-28 22:00:00,0.0,1021.683167,0.0,100.0,2.123166667,0.491,237.9986373 -2015-12-28 23:00:00,0.0,1021.366333,0.0,100.0,1.0656666670000001,0.144333333,237.99863726666663 -2015-12-29 00:00:00,0.0,1021.358667,0.0,100.0,-0.41316666700000004,0.044833332999999996,237.99881621666665 -2015-12-29 01:00:00,0.0,1020.948333,0.0,100.0,-0.314,0.255666667,237.99899518333334 -2015-12-29 02:00:00,0.0,1020.532833,0.0,100.0,-0.643333333,0.539,237.9952372 -2015-12-29 03:00:00,0.0,1020.342,0.0,100.0,-0.972916667,0.095916667,237.99613194999998 -2015-12-29 04:00:00,0.0,1020.324667,0.0,100.0,-1.290833333,0.121083333,237.99631091666663 -2015-12-29 05:00:00,0.0,1020.116167,0.0,100.0,-1.4869999999999999,0.13375,237.9977425 -2015-12-29 06:00:00,0.0,1020.092167,0.0,100.0,-1.644333333,0.182166667,237.9957740333333 -2015-12-29 07:00:00,0.0,1020.342167,0.0,100.0,-1.9924166669999999,0.0125,237.99559510000003 -2015-12-29 08:00:00,0.0,1020.6675,4.796833333,100.0,-1.002583333,0.63175,237.99291080000003 -2015-12-29 09:00:00,0.0,1021.308833,27.73916667,100.0,0.04475,0.15416666699999998,237.99076334999998 -2015-12-29 10:00:00,2.824034712,1021.7843330000001,74.25083333,100.0,2.906166667,0.715833333,237.98897380000002 -2015-12-29 11:00:00,0.0,1022.092833,82.19333333,100.0,5.72775,0.327,237.98718426666665 -2015-12-29 12:00:00,0.0,1022.332833,134.8833333,100.0,8.626333333,0.6276666670000001,237.9855737 -2015-12-29 13:00:00,0.0,1022.5675,146.04166669999998,98.45833333,10.3425,0.38458333299999997,237.98342625 -2015-12-29 14:00:00,0.0,1023.084,79.23333333,97.23333333,7.743916667000001,1.200333333,237.9827104166667 -2015-12-29 15:00:00,0.0,1023.4760000000001,48.32833333,95.95833333,5.548583333,1.205833333,237.98503685 -2015-12-29 16:00:00,0.0,1024.034333,7.989666667000001,99.95833333,4.547166667,0.47766666700000004,237.98467895 -2015-12-29 17:00:00,0.0,1024.6175,0.0,100.0,5.34425,0.5086666670000001,237.98306835000002 -2015-12-29 18:00:00,0.0,1025.109167,0.0,100.0,5.55575,0.610166667,237.98235251666668 -2015-12-29 19:00:00,0.0,1025.483833,0.0,100.0,5.845666667000001,0.4115,237.98181566666668 -2015-12-29 20:00:00,0.0,1025.6085,0.0,100.0,4.883833333,0.515166667,237.9844999833333 -2015-12-29 21:00:00,0.0,1026.058833,0.0,100.0,4.498083333,0.283666667,237.98467891666667 -2015-12-29 22:00:00,0.0,1026.142,0.0,100.0,4.674583333,0.77075,237.98324728333333 -2015-12-29 23:00:00,0.0,1026.233333,0.0,100.0,4.506833333,0.963833333,237.98414209999999 -2015-12-30 00:00:00,0.0,1026.408333,0.0,100.0,4.58675,1.085166667,237.98288938333334 -2015-12-30 01:00:00,0.0,1026.533833,0.0,100.0,4.533583333,1.299833333,237.98271046666665 -2015-12-30 02:00:00,0.0,1026.466667,0.0,99.875,4.489,0.973333333,237.98109986666668 -2015-12-30 03:00:00,0.0,1026.265333,0.0,99.68333333,4.480333333,0.8364166670000001,237.98074193333335 -2015-12-30 04:00:00,0.0,1026.250833,0.0,100.0,4.392583333,0.87325,237.97966825000003 -2015-12-30 05:00:00,0.0,1026.174167,0.0,100.0,4.516583333,0.478916667,237.97913136666668 -2015-12-30 06:00:00,0.0,1025.674333,0.0,99.64166667,4.708916667,1.4365833330000002,237.98074195 -2015-12-30 07:00:00,0.0,1025.625,0.0,97.34166667,4.478166667,1.242333333,237.97841558333334 -2015-12-30 08:00:00,0.0,1025.475167,2.5260833330000003,98.325,4.386666667,0.9268333329999999,237.9775208 -2015-12-30 09:00:00,0.0,1025.5165,15.065,96.38333333,4.405083333,0.968833333,237.97626813333332 -2015-12-30 10:00:00,0.0,1025.241167,25.54916667,94.975,4.889583333,0.696666667,237.97716286666665 -2015-12-30 11:00:00,0.0,1024.7235,34.26083333,95.30833333,5.124333333,0.94625,237.97698391666665 -2015-12-30 12:00:00,0.0,1023.681333,33.2225,95.375,5.405333333,1.7684166669999999,237.9782366166667 -2015-12-30 13:00:00,0.0,1022.615667,34.98666667,93.825,5.280583333,3.10625,237.97752076666666 -2015-12-30 14:00:00,0.0,1021.956833,22.95,93.03333333,4.984666667,2.974166667,237.9766260166667 -2015-12-30 15:00:00,0.0,1021.415833,9.907916667,92.01666667,4.750666667,2.369416667,237.97913140000003 -2015-12-30 16:00:00,0.0,1020.891167,0.9884166670000001,91.41666667,4.5578333330000005,2.290666667,237.98020510000003 -2015-12-30 17:00:00,0.0,1020.5075,0.0,89.6,4.364666667,2.331666667,237.97859451666667 -2015-12-30 18:00:00,0.0,1020.099167,0.0,88.08333333,4.255583333,2.6675,237.97931031666667 -2015-12-30 19:00:00,0.0,1019.591,0.0,87.78333333,4.279333333,2.3056666669999997,237.97734183333333 -2015-12-30 20:00:00,0.0,1018.697667,0.0,90.26666667,4.240333333,1.6811666669999998,237.97662601666664 -2015-12-30 21:00:00,0.0,1017.407333,0.0,92.34166667,4.489,2.035083333,237.97752078333335 -2015-12-30 22:00:00,0.0,1017.191167,0.0,91.125,4.724583333,2.092833333,237.9762681166667 -2015-12-30 23:00:00,0.0,1016.382167,0.0,90.46666667,4.740166667,2.041083333,237.9775208 -2015-12-31 00:00:00,0.0,1015.789833,0.0,89.34166667,4.434583333,3.126833333,237.97644706666668 -2015-12-31 01:00:00,0.0,1015.032667,0.0,90.03333333,3.375083333,3.113833333,237.97859453333334 -2015-12-31 02:00:00,0.0,1014.783,0.0,91.30833333,2.562166667,2.951083333,237.97734183333333 -2015-12-31 03:00:00,0.0,1014.591667,0.0,92.6,2.312416667,2.84325,237.9766260166667 -2015-12-31 04:00:00,0.0,1015.008833,0.0,92.38333333,2.70725,3.4841666669999998,237.9755523 -2015-12-31 05:00:00,0.0,1015.083667,0.0,91.99166667,2.6869166669999998,3.29125,237.97412068333333 -2015-12-31 06:00:00,3.718336992,1015.1585,0.0,94.2,2.504666667,2.920416667,237.97501545 -2015-12-31 07:00:00,3.183975168,1015.325833,0.0,97.74166667,2.516166667,2.5470833330000002,237.97143638333333 -2015-12-31 08:00:00,0.0,1016.001167,0.572416667,100.0,2.972583333,0.848666667,237.97233115000003 -2015-12-31 09:00:00,8.029533288,1016.7260000000001,7.03025,100.0,3.24225,1.12525,237.9716153333333 -2015-12-31 10:00:00,12.98937384,1017.317333,19.44583333,100.0,3.289083333,0.792666667,237.97018369999998 -2015-12-31 11:00:00,13.00936322,1017.742667,36.65,100.0,3.5410000000000004,0.8785,237.9701837 -2015-12-31 12:00:00,0.0,1017.9165,45.1725,100.0,3.7679166669999997,1.122,237.97054160000002 -2015-12-31 13:00:00,0.0,1018.034167,64.7775,100.0,4.233583333,1.0070000000000001,237.96964685 -2015-12-31 14:00:00,0.0,1018.567167,73.1475,100.0,4.481583333000001,1.30775,237.9680362833333 -2015-12-31 15:00:00,0.0,1018.934333,35.21333333,100.0,4.6735,1.056333333,237.96749939999998 -2015-12-31 16:00:00,0.0,1019.392167,3.8624166669999997,100.0,4.3710833330000005,0.84775,237.96928893333336 -2015-12-31 17:00:00,0.0,1019.683667,0.0,100.0,4.00475,1.106333333,237.97072054999998 -2015-12-31 18:00:00,0.0,1019.841833,0.0,100.0,3.94475,0.759916667,237.97054160000002 -2015-12-31 19:00:00,0.0,1020.008667,0.0,100.0,3.5205833330000003,0.617916667,237.97054160000002 -2015-12-31 20:00:00,0.0,1020.309,0.0,100.0,2.96525,0.2635,237.96893103333332 -2015-12-31 21:00:00,0.0,1020.358167,0.0,100.0,2.8035,0.21616666699999998,237.97000475000002 -2015-12-31 22:00:00,0.0,1020.4335,0.0,100.0,2.070916667,0.3805,237.96875208333336 -2015-12-31 23:00:00,0.0,1020.483333,0.0,100.0,1.25875,0.781083333,237.9682152 -2016-01-01 00:00:00,0.0,1020.700667,0.0,100.0,0.829583333,0.755166667,237.96875208333327 -2016-01-01 01:00:00,0.0,1020.983333,0.0,100.0,0.83725,0.47366666700000004,237.96785731666668 -2016-01-01 02:00:00,0.0,1021.042333,0.0,100.0,1.3665,0.46716666700000004,237.96839416666668 -2016-01-01 03:00:00,0.0,1021.4169999999999,0.0,100.0,1.5128333330000001,0.880583333,237.96678359999999 -2016-01-01 04:00:00,0.0,1021.633833,0.0,100.0,1.60975,0.48016666700000005,237.96642566666665 -2016-01-01 05:00:00,0.0,1021.5245,0.0,100.0,1.9251666669999998,0.201583333,237.96696255000003 -2016-01-01 06:00:00,0.0,1021.566333,0.0,100.0,2.1629166669999997,0.092416667,237.96535194999998 -2016-01-01 07:00:00,0.0,1021.333667,0.0,100.0,2.1695833330000003,0.44475,237.96481509999998 -2016-01-01 08:00:00,0.0,1021.659,2.482916667,100.0,2.504416667,0.092583333,237.96499404999997 -2016-01-01 09:00:00,0.0,1022.000333,11.25391667,100.0,3.173833333,0.176083333,237.96535196666665 -2016-01-01 10:00:00,0.0,1021.974667,23.29666667,100.0,3.5773333330000003,0.058166667000000005,237.96535194999998 -2016-01-01 11:00:00,0.0,1021.832833,41.4125,100.0,4.31725,0.194666667,237.96535196666665 -2016-01-01 12:00:00,0.0,1021.3739999999999,51.39333333,100.0,5.09175,0.33316666699999997,237.96517301666665 -2016-01-01 13:00:00,0.0,1020.807333,41.7875,100.0,5.4875,0.763333333,237.96588881666665 -2016-01-01 14:00:00,0.0,1020.324667,27.22,100.0,5.61025,1.265333333,237.96535196666665 -2016-01-01 15:00:00,0.0,1020.141167,14.08166667,100.0,5.596666667,1.153583333,237.96588881666665 -2016-01-01 16:00:00,0.0,1019.774333,3.009666667,100.0,5.519416667000001,0.974583333,237.96821523333332 -2016-01-01 17:00:00,0.0,1019.399167,0.0,100.0,5.363916667,1.3873333330000002,237.96857313333328 -2016-01-01 18:00:00,0.0,1018.6489999999999,0.0,100.0,5.10925,1.40575,237.9689310166667 -2016-01-01 19:00:00,0.0,1017.906667,0.0,100.0,4.898583333,1.957333333,237.97000473333333 -2016-01-01 20:00:00,0.0,1017.174167,0.0,98.75833333,4.69975,2.188416667,237.96839416666668 -2016-01-01 21:00:00,0.0,1016.531833,0.0,97.5,4.356916667,2.393333333,237.96821520000003 -2016-01-01 22:00:00,0.0,1015.865667,0.0,97.73333333,4.278166667,1.6645833330000002,237.9694679 -2016-01-01 23:00:00,0.0,1015.45,0.0,97.6,4.103,1.613666667,237.96928893333333 -2016-02-01 00:00:00,0.0,1014.764667,0.0,95.59166667,3.661333333,1.52825, -2016-02-01 01:00:00,0.0,1013.656667,0.0,96.54166667,3.1575833330000003,1.251583333, -2016-02-01 02:00:00,0.0,1012.948833,0.0,96.86666667,2.757916667,1.298083333, -2016-02-01 03:00:00,0.0,1012.207167,0.0,97.34166667,2.20675,1.74925, -2016-02-01 04:00:00,0.0,1011.7660000000001,0.0,97.16666667,1.967583333,1.5895833330000002, -2016-02-01 05:00:00,0.0,1011.0825,0.0,97.19166667,1.8008333330000001,1.4835, -2016-02-01 06:00:00,0.0,1010.549,0.0,95.95833333,1.6985,1.4589166669999998, -2016-02-01 07:00:00,0.0,1010.3330000000001,0.0,95.725,1.623083333,1.116666667, -2016-02-01 08:00:00,0.0,1009.983333,0.2735,96.61666667,1.57875,1.676166667, -2016-02-01 09:00:00,13.28328547,1009.974833,3.933833333,97.94166667,1.4524166669999998,1.694083333, -2016-02-01 10:00:00,38.37287782,1009.6405,13.99666667,100.0,1.15275,2.03675, -2016-02-01 11:00:00,19.13847732,1009.1665,23.2875,100.0,1.21025,2.009583333, -2016-02-01 12:00:00,13.37066438,1008.8739999999999,22.2175,100.0,1.28975,1.7176666669999998, -2016-02-01 13:00:00,13.25131061,1008.1821669999999,24.6825,100.0,1.446166667,1.5021666669999998, -2016-02-01 14:00:00,8.222482896,1007.800333,15.5625,100.0,1.5390833330000002,1.8808333330000002, -2016-02-01 15:00:00,18.17021162,1007.9751669999999,8.322000000000001,100.0,1.595833333,1.343833333, -2016-02-01 16:00:00,12.90907493,1008.183667,1.35125,100.0,1.4851666669999999,1.142583333, -2016-02-01 17:00:00,15.69742558,1008.4333330000001,0.0,100.0,1.5196666669999999,1.37775, -2016-02-01 18:00:00,30.70437535,1008.358333,0.0,100.0,1.420833333,1.045416667, -2016-02-01 19:00:00,12.57594096,1008.367167,0.0,100.0,1.45675,0.6980833329999999, -2016-02-01 20:00:00,0.0,1008.4665,0.0,100.0,1.481416667,0.534083333, -2016-02-01 21:00:00,0.0,1008.3075,0.0,100.0,1.4676666669999998,1.3540833330000002, -2016-02-01 22:00:00,2.533439352,1008.241667,0.0,100.0,1.554,1.131583333, -2016-02-01 23:00:00,2.62796916,1007.9991669999999,0.0,100.0,1.5743333330000002,1.175833333, -2016-03-01 00:00:00,2.564768472,1007.575,0.0,100.0,1.5680833330000001,1.317416667,238.22424938333333 -2016-03-01 01:00:00,5.3489725439999996,1007.474333,0.0,100.0,1.582583333,1.227,238.2246673 -2016-03-01 02:00:00,2.6551064159999997,1007.1916669999999,0.0,100.0,1.6380000000000001,1.8148333330000002,238.22424938333336 -2016-03-01 03:00:00,0.0,1006.7491669999999,0.0,100.0,1.7190833330000002,1.960833333,238.22487628333332 -2016-03-01 04:00:00,0.0,1006.474167,0.0,100.0,1.7819999999999998,1.5216666669999999,238.22404041666664 -2016-03-01 05:00:00,0.0,1006.0160000000001,0.0,100.0,1.8493333330000001,2.2305,238.22299563333334 -2016-03-01 06:00:00,0.0,1005.532667,0.0,100.0,1.92125,2.425,238.22320458333334 -2016-03-01 07:00:00,3.543984768,1005.149333,0.0,100.0,2.0445,3.0186666669999997,238.22111495000001 -2016-03-01 08:00:00,0.0,1004.808,0.6709999999999999,100.0,2.217666667,2.6005833330000003,238.22132393333334 -2016-03-01 09:00:00,0.0,1004.607667,10.857000000000001,100.0,2.434583333,2.74825,238.21651780000002 -2016-03-01 10:00:00,0.0,1003.998833,47.1925,100.0,2.709166667,3.331666667,238.21526401666668 -2016-03-01 11:00:00,0.0,1003.566167,49.805,100.0,2.821416667,3.562916667,238.21589093333333 -2016-03-01 12:00:00,0.0,1002.873167,54.95666667,100.0,2.9995,3.3185833330000003,238.21672678333334 -2016-03-01 13:00:00,0.0,1001.8985,44.47666667,100.0,3.109,2.6158333330000003,238.21484611666668 -2016-03-01 14:00:00,0.0,1000.9065,34.65833333,100.0,3.239583333,3.093333333,238.21526403333334 -2016-03-01 15:00:00,0.0,1000.182,19.275,100.0,3.09625,2.304083333,238.21651781666665 -2016-03-01 16:00:00,0.0,999.2488332999999,2.4475833330000003,100.0,2.998,1.9784166669999999,238.2167267666667 -2016-03-01 17:00:00,0.0,998.2981667000001,0.0005,100.0,2.758166667,2.7245,238.21944326666667 -2016-03-01 18:00:00,0.0,997.382,0.0,100.0,2.329333333,2.628083333,238.21735365000004 -2016-03-01 19:00:00,0.0,996.2310000000001,0.0,100.0,1.8985833330000002,2.824083333,238.21839846666668 -2016-03-01 20:00:00,0.0,994.8808332999998,0.0,100.0,1.6465833330000001,2.3845,238.21923431666667 -2016-03-01 21:00:00,0.0,993.6071667000001,0.0,100.0,1.4490833330000001,2.2935,238.21902535 -2016-03-01 22:00:00,0.0,992.798,0.0,100.0,1.3719166669999998,1.759416667,238.21986118333334 -2016-03-01 23:00:00,0.0,991.5060000000001,0.0,100.0,1.240333333,2.117,238.22027911666666 -2016-04-01 00:00:00,0.0,990.3733332999999,0.0,100.0,1.0220833329999999,2.1295833330000002,238.63256049999998 -2016-04-01 01:00:00,0.0,989.19,0.0,100.0,0.6355833329999999,1.1905,238.63318736666668 -2016-04-01 02:00:00,0.0,988.1316667000001,0.0,100.0,0.474083333,1.854333333,238.63506801666668 -2016-04-01 03:00:00,0.0,987.3151667000001,0.0,100.0,0.314666667,1.798583333,238.6390383 -2016-04-01 04:00:00,0.0,986.4403332999999,0.0,100.0,0.231083333,1.858916667,238.64070998333332 -2016-04-01 05:00:00,0.0,985.9911667000001,0.0,100.0,0.207,1.748083333,238.64279961666668 -2016-04-01 06:00:00,0.0,985.65,0.0,100.0,0.18591666699999998,1.543333333,238.6427996 -2016-04-01 07:00:00,0.0,985.6666667000002,0.0,100.0,0.215,1.313916667,238.64217273333335 -2016-04-01 08:00:00,0.0,985.7921667000002,0.579916667,100.0,0.30875,1.6095,238.64091895 -2016-04-01 09:00:00,0.0,985.9921667000001,2.99125,100.0,0.441166667,1.65425,238.6411279166667 -2016-04-01 10:00:00,0.0,986.2583332999999,12.7085,100.0,0.718666667,0.84125,238.63799350000002 -2016-04-01 11:00:00,0.0,986.2833332999999,36.79833333,100.0,0.920666667,0.5701666670000001,238.63694869999998 -2016-04-01 12:00:00,20.36236416,986.1498332999998,45.95416667,100.0,1.26825,0.957666667,238.63527698333334 -2016-04-01 13:00:00,17.10956503,986.125,65.42166667,100.0,1.753416667,0.36200000000000004,238.63402323333335 -2016-04-01 14:00:00,7.194975312,986.1246667000001,39.48833333,100.0,1.881666667,0.092333333,238.63193360000005 -2016-04-01 15:00:00,4.867533792,986.2671667000001,22.90333333,100.0,1.8788333330000002,0.38675,238.62984398333333 -2016-04-01 16:00:00,2.466198888,986.434,9.796,100.0,1.871666667,0.183666667,238.6294260666667 -2016-04-01 17:00:00,2.3865511440000002,986.7836667000001,0.039416667,100.0,1.831166667,0.0175,238.62838123333336 -2016-04-01 18:00:00,2.3865511440000002,986.959,0.0,100.0,1.8734166669999999,0.051583332999999995,238.62357515 -2016-04-01 19:00:00,2.406285312,987.3168332999999,0.0,100.0,1.712166667,0.07525,238.61312705 -2016-04-01 20:00:00,0.0,987.5838332999999,0.0,100.0,1.6034166669999999,0.09958333300000001,238.57530498333335 -2016-04-01 21:00:00,2.3865511440000002,987.7838332999999,0.0,100.0,1.55625,0.026916667000000002,238.54040841666668 -2016-04-01 22:00:00,0.0,988.2425,0.0,100.0,1.5534166669999998,0.013083333,238.52160183333334 -2016-04-01 23:00:00,2.3865511440000002,988.3165,0.0,99.525,1.68575,0.095416667,238.51115378333336 -2016-05-01 00:00:00,0.0,988.3501667000002,0.0,97.675,1.6466666669999999,0.003666667,238.14281801666667 -2016-05-01 01:00:00,0.0,988.2078332999998,0.0,97.10833333,1.6984166669999998,0.04425,238.14501453333332 -2016-05-01 02:00:00,2.466360912,988.0918332999998,0.0,100.0,1.22025,0.208666667,238.14501453333332 -2016-05-01 03:00:00,0.0,988.2668332999999,0.0,100.0,1.4835,0.05,238.14501453333332 -2016-05-01 04:00:00,0.0,988.1158332999998,0.0,100.0,1.5309166669999998,0.081333333,238.14366283333334 -2016-05-01 05:00:00,0.0,988.0423332999999,0.0,100.0,1.58625,0.0955,238.14416973333334 -2016-05-01 06:00:00,0.0,988.4085,0.0,100.0,1.799166667,0.17375,238.14281805 -2016-05-01 07:00:00,2.4306890880000003,988.7006667000002,0.0,100.0,2.426916667,0.44425,238.14146633333334 -2016-05-01 08:00:00,0.0,989.0005,2.0716666669999997,99.96666667,2.3658333330000003,1.01725,238.14045253333333 -2016-05-01 09:00:00,0.0,989.4758332999999,22.81975,99.9,3.27025,0.831583333,238.14079046666666 -2016-05-01 10:00:00,0.0,989.8505,72.19,99.01666667,4.27275,2.259833333,238.13926978333333 -2016-05-01 11:00:00,0.0,990.0086667000002,81.74083333,93.45833333,5.585833332999999,1.6434166669999999,238.13876289999996 -2016-05-01 12:00:00,0.0,989.8913332999998,49.24583333,93.2,5.803666667000001,0.9670833329999999,238.1377491333333 -2016-05-01 13:00:00,0.0,989.8663332999998,79.51083333,92.8,6.23425,0.981833333,238.13589051666668 -2016-05-01 14:00:00,0.0,989.8751667000001,50.98,92.68333333,6.471166667,1.0055,238.1360595 -2016-05-01 15:00:00,0.0,990.0173332999999,11.74166667,95.20833333,5.73725,0.941666667,238.1335250333333 -2016-05-01 16:00:00,0.0,990.2503332999999,3.0025,99.49166667,5.056333333,1.5460833330000001,238.13352501666665 -2016-05-01 17:00:00,2.636851608,990.559,0.043166667,100.0,4.5665,1.3395,238.13420086666667 -2016-05-01 18:00:00,0.0,990.8086667000001,0.0,100.0,4.71875,1.238666667,238.13386293333335 -2016-05-01 19:00:00,0.0,991.0585,0.0,100.0,5.01,1.285166667,238.13622846666667 -2016-05-01 20:00:00,0.0,991.192,0.0,100.0,5.069,0.90825,238.13639741666665 -2016-05-01 21:00:00,0.0,991.5588332999998,0.0,100.0,4.88075,0.71375,238.13690431666666 -2016-05-01 22:00:00,0.0,991.8255,0.0,100.0,4.5976666669999995,0.3915,238.13910081666666 -2016-05-01 23:00:00,0.0,992.0171667000001,0.0,100.0,4.304666667,0.094666667,238.13960771666666 -2016-06-01 00:00:00,0.0,992.1415,0.0,100.0,4.2669999999999995,0.4255,238.0933117666667 -2016-06-01 01:00:00,0.0,992.2005,0.0,100.0,4.12475,0.091083333,238.09432553333332 -2016-06-01 02:00:00,2.407170312,992.5843332999999,0.0,100.0,4.180333333,0.230166667,238.09348073333334 -2016-06-01 03:00:00,9.92518164,992.883,0.0,100.0,4.278916667,0.499,238.09196008333333 -2016-06-01 04:00:00,5.075277096000001,992.8668332999998,0.0,100.0,4.1521666669999995,0.518,238.09145316666664 -2016-06-01 05:00:00,0.0,992.8001667000001,0.0,100.0,3.907666667,0.3165,238.0895945666667 -2016-06-01 06:00:00,0.0,993.1003332999999,0.0,100.0,3.953583333,0.040916667000000004,238.08976355000001 -2016-06-01 07:00:00,2.448781992,993.2835,0.0,100.0,4.0105,0.21683333300000002,238.09162213333335 -2016-06-01 08:00:00,0.0,993.5508332999999,1.3276666670000001,100.0,3.9685,0.10016666699999999,238.0929738333333 -2016-06-01 09:00:00,0.0,993.9760000000001,17.69291667,100.0,4.096416667,0.135083333,238.09212903333332 -2016-06-01 10:00:00,2.4050227680000003,994.5921667000001,35.625,100.0,4.8025,0.00675,238.09145316666664 -2016-06-01 11:00:00,0.0,994.6916667000002,94.28083333,100.0,5.438666667000001,0.19625,238.08824285000003 -2016-06-01 12:00:00,0.0,994.7253332999999,70.2525,99.60833333,5.950833332999999,0.21,238.09027043333336 -2016-06-01 13:00:00,0.0,994.7666667000001,34.52166667,99.85,5.966416667000001,0.692083333,238.0909462666667 -2016-06-01 14:00:00,0.0,994.825,19.0125,99.99166667,5.662999999999999,0.8245,238.09128421666665 -2016-06-01 15:00:00,0.0,994.9921667000001,10.84083333,100.0,5.523916667000001,0.72825,238.0919600666667 -2016-06-01 16:00:00,0.0,995.2168332999998,4.82825,100.0,5.35675,0.59475,238.0941566 -2016-06-01 17:00:00,0.0,995.2503332999999,0.048333333,100.0,5.103916667,0.865166667,238.09838064999997 -2016-06-01 18:00:00,0.0,995.6171667000001,0.0,100.0,4.6616666669999995,0.048666667000000004,238.10412540000002 -2016-06-01 19:00:00,0.0,995.9171667000002,0.0,100.0,4.431666667,0.319666667,238.11240461666662 -2016-06-01 20:00:00,0.0,996.2416667000001,0.0,100.0,4.382666667,0.113166667,238.11645975000002 -2016-06-01 21:00:00,0.0,996.1753332999999,0.0,100.0,4.267166667,0.0,238.11798043333337 -2016-06-01 22:00:00,0.0,996.0328332999999,0.0,100.0,4.30425,0.195,238.11781145 -2016-06-01 23:00:00,0.0,995.9163332999999,0.0,100.0,4.32125,0.254333333,238.1171356 -2016-07-01 00:00:00,0.0,995.8838332999999,0.0,100.0,3.906666667,0.44841666700000005,238.0760123166667 -2016-07-01 01:00:00,0.0,995.9581667000001,0.0,100.0,3.7393333330000003,0.205833333,238.07422136666665 -2016-07-01 02:00:00,0.0,996.2505,0.0,100.0,3.502583333,0.07925,238.0738234 -2016-07-01 03:00:00,0.0,996.2583332999999,0.0,99.93333333,3.69475,0.4865,238.0750173333333 -2016-07-01 04:00:00,0.0,995.857,0.0,99.93333333,3.992166667,1.1625,238.07859921666667 -2016-07-01 05:00:00,0.0,995.3156667000002,0.0,100.0,4.311666667,1.28475,238.07740525 -2016-07-01 06:00:00,0.0,994.8328332999998,0.0,100.0,4.141083333,0.591916667,238.07521633333337 -2016-07-01 07:00:00,0.0,994.3403332999999,0.0,100.0,4.039166667,1.4195,238.07282843333334 -2016-07-01 08:00:00,0.0,993.8330000000001,2.8355,99.80833333,4.2235833330000006,2.169333333,238.0726294 -2016-07-01 09:00:00,0.0,993.4495,21.57166667,98.31666667,4.483166667,2.6885,238.07203243333336 -2016-07-01 10:00:00,0.0,992.8225,48.67,97.21666667,4.479666667,2.7935,238.07024149999998 -2016-07-01 11:00:00,0.0,991.3653332999999,94.78083333,96.84166667,4.779,2.102083333,238.06785358333335 -2016-07-01 12:00:00,0.0,990.7236667000001,81.24,94.725,5.142333333,1.133333333,238.06825155 -2016-07-01 13:00:00,0.0,989.6475,46.62833333,95.93333333,5.309666667,0.816083333,238.06884856666667 -2016-07-01 14:00:00,0.0,988.3988332999999,27.31083333,94.50833333,5.359916667,2.1375,238.06347573333335 -2016-07-01 15:00:00,26.72051426,987.9921667000001,11.33325,99.04166667,4.621583333,2.912583333,238.06387371666668 -2016-07-01 16:00:00,30.98498839,988.5258332999998,2.842083333,98.39166667,4.053833333,3.625833333,238.06248075000005 -2016-07-01 17:00:00,6.96549372,988.8,0.098166667,99.03333333,3.4579166669999997,2.872,238.06009283333336 -2016-07-01 18:00:00,7.111935192000001,988.5995,0.0,99.19166667,3.566583333,3.191166667,238.0585009 -2016-07-01 19:00:00,3.723191448,988.6505,0.0,98.51666667,4.182166667,2.6011666669999998,238.05949585000005 -2016-07-01 20:00:00,3.265987248,988.9588332999999,0.0,95.03333333,5.9865,2.505666667,238.0618837833334 -2016-07-01 21:00:00,15.49523568,989.8616667000001,0.0,93.875,6.4356666670000005,2.526583333,238.06546565 -2016-07-01 22:00:00,0.0,991.9021667000002,0.0,86.85,6.016,2.825166667,238.06646061666666 -2016-07-01 23:00:00,0.0,993.1358332999998,0.0,87.95833333,5.390333332999999,2.621083333,238.0650676666667 -2016-08-01 00:00:00,0.0,994.3766667000001,0.0,89.00833333,4.805833333,2.223166667,237.92796125000004 -2016-08-01 01:00:00,0.0,995.2093332999999,0.0,86.96666667,4.786833333,2.670833333,237.92995118333332 -2016-08-01 02:00:00,0.0,996.0848332999999,0.0,87.89166667,4.8865,2.111166667,237.93174211666667 -2016-08-01 03:00:00,0.0,996.6093332999999,0.0,89.85,4.196333333,1.6020833330000002,237.93393104999998 -2016-08-01 04:00:00,0.0,997.3175,0.0,89.71666667,3.802916667,1.307583333,237.93671698333333 -2016-08-01 05:00:00,0.0,997.7919999999999,0.0,89.86666667,3.28625,0.998,237.93711498333334 -2016-08-01 06:00:00,0.0,998.1851667000001,0.0,89.69166667,3.303416667,1.393,237.93711496666666 -2016-08-01 07:00:00,0.0,998.9760000000001,0.0,89.16666667,2.69825,0.961666667,237.93890591666664 -2016-08-01 08:00:00,0.0,999.6093332999999,3.5915,89.94166667,1.8105,0.1875,237.93810993333332 -2016-08-01 09:00:00,0.0,1000.359333,16.12833333,89.525,3.417,0.949916667,237.93731395 -2016-08-01 10:00:00,0.0,1000.775333,60.16833333,85.40833333,5.25975,1.607083333,237.93134415 -2016-08-01 11:00:00,0.0,1001.017167,84.765,83.33333333,6.127000000000001,1.23525,237.92676733333334 -2016-08-01 12:00:00,0.0,1001.016333,155.55,80.2175,6.553083332999999,1.75,237.92059849999998 -2016-08-01 13:00:00,0.0,1000.6155,167.7416667,75.21333333,7.374333332999999,1.2930000000000001,237.91622065 -2016-08-01 14:00:00,0.0,999.9075,136.875,68.20166667,8.568333333,0.49725,237.91124581666668 -2016-08-01 15:00:00,0.0,999.6255,79.48333333,68.33583333,6.909833333,0.37291666700000003,237.90686796666668 -2016-08-01 16:00:00,0.0,999.7911667000001,8.046,85.61083333,2.714916667,0.11641666699999999,237.90646998333332 -2016-08-01 17:00:00,0.0,999.9505,0.09066666699999999,97.925,0.38541666700000005,0.023583332999999998,237.90388308333334 -2016-08-01 18:00:00,0.0,999.8663332999998,0.0,100.0,-0.698583333,0.134,237.90328609999997 -2016-08-01 19:00:00,0.0,1000.050667,0.0,100.0,-1.01975,0.131833333,237.90348508333332 -2016-08-01 20:00:00,0.0,1000.116333,0.0,100.0,-1.5715,0.161333333,237.90467903333334 -2016-08-01 21:00:00,0.0,1000.116333,0.0,100.0,-2.09725,0.08483333300000001,237.90706698333335 -2016-08-01 22:00:00,0.0,999.8248332999999,0.0,100.0,-2.4441666669999997,0.12375,237.90945488333332 -2016-08-01 23:00:00,0.0,999.8668332999998,0.0,100.0,-2.66675,0.13125,237.91084783333335 -2016-09-01 00:00:00,0.0,999.7748332999998,0.0,100.0,-2.374083333,0.043833332999999995,237.89851025 -2016-09-01 01:00:00,0.0,999.7838332999999,0.0,100.0,-1.8831666669999998,0.044333332999999996,237.89910721666664 -2016-09-01 02:00:00,0.0,1000.008,0.0,100.0,-1.714083333,0.042833333,237.90069919999996 -2016-09-01 03:00:00,0.0,999.7669999999999,0.0,100.0,-2.0245833330000003,0.135583333,237.90368406666667 -2016-09-01 04:00:00,0.0,999.6911667000002,0.0,100.0,-2.4495,0.29825,237.90547503333335 -2016-09-01 05:00:00,0.0,999.5491667000001,0.0,100.0,-2.370666667,0.147833333,237.90766395 -2016-09-01 06:00:00,0.0,999.1583332999999,0.0,100.0,-2.625,0.145166667,237.90985286666668 -2016-09-01 07:00:00,0.0,999.2005,0.0,100.0,-2.464,0.09916666699999999,237.90806193333333 -2016-09-01 08:00:00,0.0,999.5003332999999,1.9105,100.0,-2.3233333330000003,0.070916667,237.9068679833333 -2016-09-01 09:00:00,0.0,999.7,21.89166667,100.0,-1.985416667,0.0515,237.90547503333335 -2016-09-01 10:00:00,0.0,999.6496667000001,43.64333333,100.0,-1.78425,0.153166667,237.9026891 -2016-09-01 11:00:00,0.0,999.3243332999999,71.64166667,100.0,-1.21025,0.20125,237.89751528333332 -2016-09-01 12:00:00,0.0,998.6988332999998,79.68,100.0,-0.480833333,0.137166667,237.89353543333334 -2016-09-01 13:00:00,2.388677184,998.3915,66.49583333,100.0,0.356833333,0.252916667,237.88875958333335 -2016-09-01 14:00:00,0.0,998.2083332999998,48.14833333,100.0,1.3708333330000002,0.6333333329999999,237.88557569999998 -2016-09-01 15:00:00,0.0,998.1495,25.08916667,100.0,1.4311666669999998,0.11733333300000001,237.87980486666666 -2016-09-01 16:00:00,0.0,998.2755,4.1754166669999995,100.0,1.54675,0.253916667,237.875626 -2016-09-01 17:00:00,0.0,998.0908332999999,0.030583332999999997,100.0,1.52925,0.014666667,237.87423303333333 -2016-09-01 18:00:00,0.0,997.6239999999999,0.0,100.0,1.6498333330000001,0.024083333,237.8726411 -2016-09-01 19:00:00,0.0,997.0246667000001,0.0,100.0,2.173083333,1.003333333,237.8680642833333 -2016-09-01 20:00:00,0.0,996.791,0.0,100.0,2.453666667,0.91775,237.86886023333332 -2016-09-01 21:00:00,0.0,996.1903332999999,0.0,100.0,2.792333333,1.777166667,237.86866124999997 -2016-09-01 22:00:00,0.0,995.3825,0.0,100.0,3.0099166669999997,1.9380000000000002,237.86965621666664 -2016-09-01 23:00:00,0.0,995.166,0.0,100.0,3.52675,1.944833333,237.86945721666666 -2016-10-01 00:00:00,0.0,994.6906667000002,0.0,100.0,4.060083333,3.161333333,237.88624836666668 -2016-10-01 01:00:00,0.0,993.8731667000002,0.0,100.0,4.18775,3.055583333,237.88935360000002 -2016-10-01 02:00:00,0.0,992.757,0.0,100.0,4.117916667,3.216416667,237.89016033333328 -2016-10-01 03:00:00,0.0,991.9818332999998,0.0,100.0,4.313583333,1.692083333,237.89195260000005 -2016-10-01 04:00:00,0.0,991.2738332999999,0.0,99.85,4.727583333,2.631333333,237.89305991666666 -2016-10-01 05:00:00,0.0,990.3488332999999,0.0,97.79166667,5.360083333,3.621416667,237.89407389999997 -2016-10-01 06:00:00,12.31408457,989.9580000000001,0.0,99.65833333,5.26475,3.48125,237.89587726666664 -2016-10-01 07:00:00,0.0,989.4496667000001,0.0,99.99166667,4.876,2.543,237.89800801666664 -2016-10-01 08:00:00,2.575062024,989.7423332999998,2.4386666669999997,95.475,5.139416667,1.246916667,237.90018943333334 -2016-10-01 09:00:00,0.0,990.3761667000001,16.43241667,92.65833333,6.7829999999999995,2.2174166669999997,237.9012730166667 -2016-10-01 10:00:00,0.0,990.9338332999998,68.77166667,89.96666667,7.52825,2.64775,237.90414413333335 -2016-10-01 11:00:00,0.0,990.9995,89.7,84.56666667,8.373333333,2.847916667,237.90573866666662 -2016-10-01 12:00:00,0.0,991.1421667000001,172.51,77.14416667,9.158333333,2.17875,237.90845316666665 -2016-10-01 13:00:00,0.0,991.209,118.7125,73.64833333,8.427666667,2.099,237.91060451666667 -2016-10-01 14:00:00,0.0,991.015,79.08166667,76.43666667,8.001,0.624416667,237.91349144999995 -2016-10-01 15:00:00,0.0,990.6748332999998,38.23333333,81.42833333,7.488833333,1.9891666669999999,237.91636414999996 -2016-10-01 16:00:00,0.0,990.0828332999998,6.78225,85.49166667,6.035916667,2.872583333,237.91969874999998 -2016-10-01 17:00:00,0.0,989.7658332999998,0.055916667,89.20833333,5.78125,2.367333333,237.92302226666666 -2016-10-01 18:00:00,27.48757188,989.5911667000001,0.0,96.96666667,5.7496666670000005,2.039083333,237.92494424999998 -2016-10-01 19:00:00,31.9838592,989.3246667000001,0.0,97.00833333,5.677833333,1.72225,237.92904448333334 -2016-10-01 20:00:00,17.16389062,989.3836667000002,0.0,96.05,5.406333332999999,1.453,237.92993190000004 -2016-10-01 21:00:00,2.715575064,989.3506667000001,0.0,96.49166667,5.208083333,1.078666667,237.93231421666667 -2016-10-01 22:00:00,0.0,989.8919999999999,0.0,96.58333333,5.1165,0.961666667,237.9329359 -2016-10-01 23:00:00,0.0,990.1510000000001,0.0,96.33333333,5.273166667,1.263,237.93496545000002 -2016-11-01 00:00:00,0.0,990.5161667000001,0.0,95.7,5.313583333,1.30075,238.00109113333335 -2016-11-01 01:00:00,0.0,990.1666667000002,0.0,97.625,5.012583333,0.61125,237.99942545000002 -2016-11-01 02:00:00,0.0,990.0578332999999,0.0,99.975,4.6514166669999994,1.002583333,237.99754613333332 -2016-11-01 03:00:00,0.0,989.5239999999999,0.0,99.725,3.57125,0.48100000000000004,237.99783246666667 -2016-11-01 04:00:00,0.0,989.0073332999999,0.0,100.0,2.42125,1.5445,237.99733416666666 -2016-11-01 05:00:00,0.0,988.0895,0.0,100.0,2.004416667,1.1109166670000001,237.99868033333328 -2016-11-01 06:00:00,0.0,986.9069999999999,0.0,100.0,1.05325,0.34625,237.9997291333333 -2016-11-01 07:00:00,0.0,986.45,0.0,100.0,2.5910833330000003,1.87275,237.99991579999997 -2016-11-01 08:00:00,0.0,986.4745,1.075916667,100.0,3.5019166669999997,1.591083333,237.99895086666672 -2016-11-01 09:00:00,0.0,986.3161667000002,14.03733333,100.0,4.2786666669999995,1.595083333,238.00008824999998 -2016-11-01 10:00:00,0.0,986.008,29.71583333,100.0,4.7935,2.052083333,237.99888754999998 -2016-11-01 11:00:00,3.1195930080000003,985.9998332999999,31.665,96.28333333,5.2515,3.28,237.9983608 -2016-11-01 12:00:00,3.2492038560000003,985.082,42.41583333,95.68333333,4.90675,3.261333333,237.99900938333334 -2016-11-01 13:00:00,0.0,984.2985,68.04166667,94.96666667,4.838416667,3.44875,237.99878318333336 -2016-11-01 14:00:00,0.0,983.5151667000001,56.38583333,95.58333333,4.773333333,3.206833333,237.9977834 -2016-11-01 15:00:00,0.0,983.008,15.85808333,97.125,4.59575,2.841333333,238.00024480000002 -2016-11-01 16:00:00,25.4532667,982.7669999999999,2.475083333,99.225,4.394083333,2.423833333,238.00151350000002 -2016-11-01 17:00:00,8.876747544,982.7663332999998,0.0,98.90833333,4.1215,1.9180833330000002,238.0020624166667 -2016-11-01 18:00:00,0.0,982.8003332999999,0.0,95.95,4.5565,1.31875,238.00285335 -2016-11-01 19:00:00,2.7118207439999997,983.0996667000002,0.0,95.03333333,5.303416667,1.265583333,238.00261923333335 -2016-11-01 20:00:00,2.5476776880000003,983.2175,0.0,95.43333333,5.300333333,1.186,238.0016938166667 -2016-11-01 21:00:00,14.430833999999999,983.45,0.0,96.64166667,5.444583333,1.6546666669999999,238.00191845000003 -2016-11-01 22:00:00,16.59430678,983.7678332999999,0.0,96.325,5.465416667,2.569833333,238.00115125000002 -2016-11-01 23:00:00,19.20247901,984.493,0.0,97.53333333,5.3795,2.3624166669999997,237.99999650000004 -2016-12-01 00:00:00,0.0,985.1426667000002,0.0,94.59166667,5.5920000000000005,2.533833333, -2016-12-01 01:00:00,3.08466264,985.6336667000002,0.0,94.025,5.321583333,1.884333333, -2016-12-01 02:00:00,0.0,985.8,0.0,94.91666667,4.98225,1.777916667, -2016-12-01 03:00:00,3.54850368,985.9088332999999,0.0,95.61666667,4.81625,1.54375, -2016-12-01 04:00:00,0.0,986.1003332999999,0.0,96.26666667,4.5615,1.226916667, -2016-12-01 05:00:00,0.0,986.5765,0.0,95.69166667,4.484,1.722833333, -2016-12-01 06:00:00,2.98702008,987.552,0.0,97.4,4.616083333,1.9778333330000002, -2016-12-01 07:00:00,5.40668904,988.7855,0.0,97.2,4.564416667,0.963, -2016-12-01 08:00:00,17.42749068,990.0931667000001,0.729916667,98.13333333,4.340333333,1.75725, -2016-12-01 09:00:00,2.72934408,990.9766667000001,11.26925,98.43333333,4.042083333,0.83975, -2016-12-01 10:00:00,0.0,991.6926667000001,50.33833333,94.99166667,4.852083333,1.5645, -2016-12-01 11:00:00,0.0,992.3256667000002,82.29083333,93.75833333,5.556916667,2.0531666669999997, -2016-12-01 12:00:00,0.0,991.1593332999998,73.18416667,92.71666667,6.036416667,2.602416667, -2016-12-01 13:00:00,0.0,998.1665,90.83916667,89.25,6.486916667000001,1.908833333, -2016-12-01 14:00:00,0.0,997.9108156,79.36333333,84.075,6.6325,1.9055,238.05014515 -2016-12-01 15:00:00,0.0,997.8200134,45.63583333,85.75833333,6.468833332999999,1.8906666669999999,238.0466713666667 -2016-12-01 16:00:00,0.0,997.8391964,10.53441667,84.09166667,6.087833333,2.195583333,238.04576970000002 -2016-12-01 17:00:00,0.0,997.8583794,0.15458333300000002,86.64166667,5.549333333,2.04775,238.047505 -2016-12-01 18:00:00,0.0,997.8775625,0.0,88.0,5.252916667,2.6205,238.04826908333334 -2016-12-01 19:00:00,0.0,997.8967455,0.0,89.275,4.578416667,2.18375,238.04691658333334 -2016-12-01 20:00:00,0.0,997.9159285000001,0.0,88.13333333,4.1575,2.2886666669999998,238.0483355166667 -2016-12-01 21:00:00,0.0,997.9351116,0.0,87.41666667,4.17175,2.440666667,238.04884171666671 -2016-12-01 22:00:00,0.0,997.9542946,0.0,86.24166667,4.5425833330000005,2.8710000000000004,238.04841618333333 -2016-12-01 23:00:00,3.00702192,997.9734776,0.0,87.61666667,4.3915,2.0611666669999997,238.04877528333336 -2016-01-13 00:00:00,0.0,997.9926607000001,0.0,87.90833333,4.677,2.64775, -2016-01-13 01:00:00,0.0,998.0118437000001,0.0,88.59166667,4.57575,3.039166667, -2016-01-13 02:00:00,0.0,998.0310267000001,0.0,86.75,4.679083333,3.252916667, -2016-01-13 03:00:00,4.071715728,998.0502097000001,0.0,87.75,4.720416667,3.4695, -2016-01-13 04:00:00,35.00517396,998.0693928,0.0,94.93333333,3.978583333,3.4841666669999998, -2016-01-13 05:00:00,24.55737816,998.0885758,0.0,96.21666667,3.94625,3.988416667, -2016-01-13 06:00:00,4.1727330480000004,998.1077587999999,0.0,97.49166667,3.8130833330000002,3.794333333, -2016-01-13 07:00:00,3.5372227919999997,998.1269419,0.0,97.89166667,4.068833333,2.759833333, -2016-01-13 08:00:00,0.0,998.1461249,1.1995,98.06666667,4.336333333,2.2494166669999998, -2016-01-13 09:00:00,0.0,998.165308,23.601,91.75,5.304333333,2.83475, -2016-01-13 10:00:00,0.0,998.184491,92.8675,87.99166667,5.552083333,3.06925, -2016-01-13 11:00:00,0.0,998.203674,93.35333333,83.65,6.088083332999999,2.0460833330000003, -2016-01-13 12:00:00,0.0,998.2228571,73.20916667,85.425,6.002166667000001,2.0870833330000003, -2016-01-13 13:00:00,0.0,998.2420401,84.29,84.21666667,6.696833333,2.206833333, -2016-01-13 14:00:00,3.1072643039999996,998.2612231,46.34083333,94.93333333,5.195166667,1.88, -2016-01-13 15:00:00,0.0,998.2804062000001,20.21583333,97.79166667,4.315,1.519333333, -2016-01-13 16:00:00,0.0,998.2995892000001,4.693416667,97.05833333,4.450333333000001,1.281666667, -2016-01-13 17:00:00,0.0,998.3187722000001,0.08741666699999999,94.00833333,4.46225,1.3349166670000001, -2016-01-13 18:00:00,0.0,998.3379552000001,0.0,90.83333333,4.600833333,1.8639166669999998, -2016-01-13 19:00:00,0.0,998.3571383,0.0,89.31666667,4.4880833330000005,1.93575, -2016-01-13 20:00:00,0.0,998.3763213,0.0,89.55,4.029083333,1.8425, -2016-01-13 21:00:00,0.0,998.3955043,0.0,89.81666667,3.536,2.11875, -2016-01-13 22:00:00,0.0,998.4146873999999,0.0,91.05,3.091,2.413833333, -2016-01-13 23:00:00,0.0,998.4338704,0.0,92.775,2.627416667,2.36825, -2016-01-14 00:00:00,0.0,998.4530534,0.0,93.0,2.08525,2.11725, -2016-01-14 01:00:00,0.0,998.4722365,0.0,93.56666667,1.5043333330000002,1.46825, -2016-01-14 02:00:00,0.0,998.4914195,0.0,97.50833333,0.6555833329999999,1.0225, -2016-01-14 03:00:00,0.0,998.5106025,0.0,95.11666667,0.685583333,0.799666667, -2016-01-14 04:00:00,0.0,998.5297856000001,0.0,98.9,-1.250666667,0.08416666699999999, -2016-01-14 05:00:00,0.0,998.5489686000001,0.0,97.58333333,-0.9824166670000001,1.051583333, -2016-01-14 06:00:00,0.0,998.5681516000001,0.0,100.0,-0.143416667,2.0365833330000003, -2016-01-14 07:00:00,0.0,998.5873347000002,0.0014166670000000001,100.0,0.07675,2.02425, -2016-01-14 08:00:00,0.0,998.6065177000002,5.794416667,100.0,-0.307666667,1.578416667, -2016-01-14 09:00:00,0.0,998.6257007000002,42.66083333,99.94166667,0.38733333299999995,1.8041666669999998, -2016-01-14 10:00:00,0.0,998.6448838,73.96333333,95.275,1.7608333330000001,3.7155, -2016-01-14 11:00:00,0.0,998.6640668,113.775,92.23333333,1.90625,2.596833333, -2016-01-14 12:00:00,0.0,998.6832498,96.6,94.4,2.4481666669999997,1.8225, -2016-01-14 13:00:00,0.0,998.7024329,108.18333329999999,92.58333333,3.0405833330000003,1.7828333330000001, -2016-01-14 14:00:00,0.0,998.7216159,55.5825,89.18333333,3.368833333,1.991166667, -2016-01-14 15:00:00,0.0,998.7407989,15.075999999999999,81.99166667,3.576833333,2.097333333, -2016-01-14 16:00:00,3.08601036,998.759982,3.104166667,89.275,3.131583333,2.5829166669999997, -2016-01-14 17:00:00,12.83441338,998.779165,0.028666667000000003,99.01666667,1.9431666669999998,0.885333333, -2016-01-14 18:00:00,2.409992832,998.798348,0.0,99.45833333,0.8975,0.10025, -2016-01-14 19:00:00,5.379253632,998.8175311000001,0.0,97.975,1.336083333,1.541916667, -2016-01-14 20:00:00,0.0,998.8367141000001,0.0,96.04166667,1.3528333330000002,1.333416667, -2016-01-14 21:00:00,5.282483544,998.8558971000001,0.0,98.09166667,1.138416667,1.3666666669999998, -2016-01-14 22:00:00,5.122903104,998.8750802000001,0.0,95.64166667,1.263583333,0.89725, -2016-01-14 23:00:00,0.0,998.8942632000001,0.0,94.675,2.184333333,1.6913333330000002, -2016-01-15 00:00:00,2.880964032,998.9134462000001,0.0,93.625,2.441833333,1.831083333, -2016-01-15 01:00:00,0.0,998.9326292999999,0.0,91.18333333,2.61975,1.985416667, -2016-01-15 02:00:00,0.0,998.9518122999999,0.0,88.75833333,2.6404166669999998,2.4474166669999997, -2016-01-15 03:00:00,0.0,998.9709953,0.0,85.60833333,2.7559166669999997,1.9675, -2016-01-15 04:00:00,0.0,998.9901784,0.0,94.125,1.9978333330000002,1.58375, -2016-01-15 05:00:00,5.419703352000001,999.0093614,0.0,99.35,1.121083333,1.833166667, -2016-01-15 06:00:00,0.0,999.0285444,0.0,98.25,1.13025,2.5678333330000003, -2016-01-15 07:00:00,0.0,999.0477274,0.0,98.21666667,1.195,2.2766666669999998, -2016-01-15 08:00:00,8.096074799999998,999.0669105000001,3.80175,99.70833333,1.116416667,1.8095, -2016-01-15 09:00:00,19.1619725,999.0860935000001,4.92125,100.0,0.8995833329999999,1.9113333330000002, -2016-01-15 10:00:00,17.16926098,999.1052765000001,28.5525,100.0,1.150666667,2.5789166669999997, -2016-01-15 11:00:00,2.668886304,999.1244596000001,23.96675,99.80833333,1.304,1.795833333, -2016-01-15 12:00:00,2.6427697919999997,999.1436426000001,38.098,100.0,1.334083333,1.557, -2016-01-15 13:00:00,0.0,999.1628256000001,51.85416667,99.45833333,1.776083333,1.2744166670000001, -2016-01-15 14:00:00,0.0,999.1820087000001,33.79083333,98.94166667,1.926333333,1.422166667, -2016-01-15 15:00:00,0.0,999.2011917000001,20.1875,99.04166667,1.81975,1.275, -2016-01-15 16:00:00,0.0,999.2203747000001,5.8915,98.7,1.964166667,1.1335, -2016-01-15 17:00:00,0.0,999.2395578,0.170583333,99.20833333,1.764,0.931333333, -2016-01-15 18:00:00,0.0,999.2587407999999,0.0,99.35833333,1.577166667,0.6605, -2016-01-15 19:00:00,0.0,999.2779237999999,0.0,98.09166667,1.7435833330000001,1.236083333, -2016-01-15 20:00:00,0.0,999.2971069,0.0,97.38333333,1.819166667,1.202333333, -2016-01-15 21:00:00,0.0,999.3162899,0.0,97.925,1.286166667,1.274916667, -2016-01-15 22:00:00,2.7150192960000004,999.3354729,0.0,94.96666667,1.6266666669999998,2.0598333330000003, -2016-01-15 23:00:00,0.0,999.3546560000001,0.0,93.30833333,1.459583333,2.023416667, -2016-01-16 00:00:00,2.6208138,999.3738390000001,0.0,92.71666667,1.25475,1.451583333, -2016-01-16 01:00:00,0.0,999.3930220000001,0.0,95.075,1.1125,0.687916667, -2016-01-16 02:00:00,0.0,999.4122051,0.0,95.90833333,1.116666667,0.774, -2016-01-16 03:00:00,0.0,999.4313881,0.0,97.56666667,0.923333333,0.37991666700000004, -2016-01-16 04:00:00,0.0,999.4505711000002,0.0,95.9,0.7915,0.402, -2016-01-16 05:00:00,0.0,999.4697542000001,0.0,97.775,0.473083333,0.681666667, -2016-01-16 06:00:00,0.0,999.4889372000001,0.0,96.89166667,0.586333333,0.558083333, -2016-01-16 07:00:00,0.0,999.5081202,0.0,95.4,0.5155833329999999,0.42458333299999995, -2016-01-16 08:00:00,0.0,999.5273032,2.3330833330000003,97.33333333,0.521,0.717333333, -2016-01-16 09:00:00,0.0,999.5464863,32.62583333,96.19166667,0.9405,1.261, -2016-01-16 10:00:00,0.0,999.5656693,59.11916667,92.95,1.499333333,0.912083333, -2016-01-16 11:00:00,0.0,999.5848524,87.43333333,92.6,1.956666667,1.534083333, -2016-01-16 12:00:00,0.0,999.6040354,89.83666667,98.65,2.261583333,2.304583333, -2016-01-16 13:00:00,0.0,999.6232184,110.45666670000001,96.325,2.443166667,2.879166667, -2016-01-16 14:00:00,2.860892088,999.6424015,47.86833333,93.38333333,2.5691666669999997,2.8881666669999997, -2016-01-16 15:00:00,2.9543291760000003,999.6615845000001,23.29,99.04166667,1.428833333,3.0035, -2016-01-16 16:00:00,0.0,999.6807675000001,2.790083333,95.15,1.8560833330000002,1.976, -2016-01-16 17:00:00,0.0,999.6999505000001,0.06525,91.08333333,2.128166667,2.253833333, -2016-01-16 18:00:00,0.0,999.7191336000001,0.0,94.825,1.4351666669999998,2.019083333, -2016-01-16 19:00:00,0.0,999.7383166000001,0.0,88.225,1.5474166669999998,3.192916667, -2016-01-16 20:00:00,0.0,999.7574996,0.0,85.03333333,1.0375,3.1349166669999997, -2016-01-16 21:00:00,0.0,999.7766826999999,0.0,89.525,0.317,1.3668333330000002, -2016-01-16 22:00:00,0.0,999.7958656999999,0.0,91.9,0.148416667,0.8118333329999999, -2016-01-16 23:00:00,0.0,999.8150486999999,0.0,93.725,0.309916667,1.4509999999999998, -2016-01-17 00:00:00,0.0,999.8342318,0.0,98.11666667,-0.26675,1.268166667, -2016-01-17 01:00:00,0.0,999.8534148,0.0,93.55,-0.16375,1.179166667, -2016-01-17 02:00:00,0.0,999.8725978,0.0,92.925,-0.073916667,1.14575, -2016-01-17 03:00:00,0.0,999.8917809000001,0.0,97.36666667,-0.5135,1.0065, -2016-01-17 04:00:00,0.0,999.9109639000001,0.0,99.325,-0.47708333299999994,1.227083333, -2016-01-17 05:00:00,0.0,999.9301469000001,0.0,98.81666667,-0.609166667,1.137333333, -2016-01-17 06:00:00,0.0,999.94933,0.0,97.04166667,-0.98725,1.867083333, -2016-01-17 07:00:00,0.0,999.968513,0.0019166670000000002,93.8,-1.4716666669999998,0.9913333329999999, -2016-01-17 08:00:00,0.0,999.9876960000001,4.5655,94.44166667,-1.6930833330000001,1.3501666669999999, -2016-01-17 09:00:00,0.0,1000.0068789999999,28.585,92.85,-1.148416667,1.177, -2016-01-17 10:00:00,0.0,1000.0260619999999,65.58166667,89.60833333,-0.7475,1.995416667, -2016-01-17 11:00:00,0.0,1000.0452449999999,92.55333333,89.08333333,-0.321833333,2.85225, -2016-01-17 12:00:00,0.0,1000.0644279999999,145.6741667,79.02916667,0.206583333,3.3704166669999998, -2016-01-17 13:00:00,0.0,1000.0836109999999,203.19666669999998,74.01166667,0.259916667,3.134, -2016-01-17 14:00:00,0.0,1000.1027939999999,58.91333333,76.44083333,-0.23600000000000002,2.757166667, -2016-01-17 15:00:00,0.0,1000.1219769999999,30.53916667,79.87083333,-0.4805,2.29625, -2016-01-17 16:00:00,0.0,1000.14116,4.773166667,79.72916667,-0.553666667,1.64625, -2016-01-17 17:00:00,0.0,1000.160343,0.2335,75.79083333,-0.743416667,2.439666667, -2016-01-17 18:00:00,0.0,1000.179526,0.0,71.40083333,-0.9570000000000001,2.241083333, -2016-01-17 19:00:00,0.0,1000.198709,0.0,70.0575,-1.139833333,1.755, -2016-01-17 20:00:00,0.0,1000.217892,0.0,76.1175,-1.2335,1.022166667, -2016-01-17 21:00:00,0.0,1000.237076,0.0,83.5275,-1.6524166669999998,0.292666667, -2016-01-17 22:00:00,0.0,1000.256259,0.0,87.69166667,-2.04025,0.08941666699999999, -2016-01-17 23:00:00,0.0,1000.275442,0.0,91.64166667,-2.258666667,0.197583333, -2016-01-18 00:00:00,0.0,1000.294625,0.0,92.19166667,-3.552833333,0.257, -2016-01-18 01:00:00,0.0,1000.313808,0.0,94.25833333,-5.520166667000001,0.2085, -2016-01-18 02:00:00,0.0,1000.332991,0.0,96.93333333,-6.564,0.196833333, -2016-01-18 03:00:00,0.0,1000.352174,0.0,98.38333333,-7.2329166670000005,0.15383333300000002, -2016-01-18 04:00:00,0.0,1000.371357,0.0,98.5,-7.53375,0.12875, -2016-01-18 05:00:00,0.0,1000.39054,0.0,98.75,-8.188083333,0.0425, -2016-01-18 06:00:00,0.0,1000.4097230000001,0.0,99.23333333,-8.494166667,0.08008333299999999, -2016-01-18 07:00:00,0.0,1000.4289060000001,0.014583333,99.04166667,-8.759166667,0.017833333, -2016-01-18 08:00:00,0.0,1000.4480890000001,4.8245833330000005,98.88333333,-8.861666667,0.030666667, -2016-01-18 09:00:00,0.0,1000.4672720000001,20.09583333,98.63333333,-6.928,0.03975, -2016-01-18 10:00:00,0.0,1000.4864550000001,92.34083333,98.825,-4.3230833330000005,0.35808333299999995, -2016-01-18 11:00:00,0.0,1000.5056380000001,119.96666670000002,91.40833333,-2.121,0.5515, -2016-01-18 12:00:00,0.0,1000.5248210000001,189.45,86.025,-2.242166667,1.318833333, -2016-01-18 13:00:00,0.0,1000.5440039999999,195.6416667,81.20833333,-1.195416667,1.250333333, -2016-01-18 14:00:00,0.0,1000.563187,178.075,79.86833333,-1.46975,1.28175, -2016-01-18 15:00:00,0.0,1000.58237,96.20083333,78.6925,-2.1743333330000003,0.876833333, -2016-01-18 16:00:00,0.0,1000.601553,13.63483333,83.6675,-3.614,0.52675, -2016-01-18 17:00:00,0.0,1000.620736,0.337916667,94.175,-4.727416667,0.40716666700000004, -2016-01-18 18:00:00,0.0,1000.639919,0.0,96.16666667,-4.752166667,1.297416667, -2016-01-18 19:00:00,0.0,1000.659102,0.0,94.525,-5.549833333,2.1805, -2016-01-18 20:00:00,0.0,1000.678285,0.0,94.39166667,-6.041333333,1.7103333330000001, -2016-01-18 21:00:00,0.0,1000.697468,0.0,94.475,-6.06575,1.1650833329999999, -2016-01-18 22:00:00,0.0,1000.716651,0.0,95.95,-6.349166667,0.547083333, -2016-01-18 23:00:00,0.0,1000.735834,0.0,98.025,-7.025416667000001,0.070416667, -2016-01-19 00:00:00,0.0,1000.755017,0.0,99.425,-8.07525,0.009333333000000001, -2016-01-19 01:00:00,0.0,1000.7742,0.0,99.025,-8.875833333,0.063, -2016-01-19 02:00:00,0.0,1000.7933830000001,0.0,98.68333333,-9.006666667000001,0.08833333300000001, -2016-01-19 03:00:00,0.0,1000.8125660000001,0.0,98.30833333,-8.34,0.29783333300000003, -2016-01-19 04:00:00,0.0,1000.83175,0.0,98.06666667,-8.614166667000001,0.047333333, -2016-01-19 05:00:00,0.0,1000.850933,0.0,97.95,-9.308333333,0.045666667, -2016-01-19 06:00:00,0.0,1000.870116,0.0,97.675,-9.414166667,0.38483333299999994, -2016-01-19 07:00:00,0.0,1000.889299,0.009416667,97.24166667,-9.924166667,0.034083333, -2016-01-19 08:00:00,0.0,1000.908482,5.0570833330000005,96.89166667,-9.999166667,0.199416667, -2016-01-19 09:00:00,0.0,1000.927665,28.9725,97.025,-9.269166667,0.276916667, -2016-01-19 10:00:00,0.0,1000.946848,60.06166667,96.88333333,-8.273416667000001,0.7665, -2016-01-19 11:00:00,0.0,1000.966031,65.22833333,96.625,-7.12925,0.723, -2016-01-19 12:00:00,0.0,1000.985214,69.24916667,96.13333333,-6.4080833329999995,1.02475, -2016-01-19 13:00:00,0.0,1001.004397,66.86166667,94.93333333,-6.136166667,1.01525, -2016-01-19 14:00:00,0.0,1001.02358,52.06666667,93.875,-5.9175,0.812416667, -2016-01-19 15:00:00,0.0,1001.042763,31.02083333,93.64166667,-5.809833332999999,0.7779166670000001, -2016-01-19 16:00:00,0.0,1001.061946,10.56483333,93.90833333,-5.80425,0.815416667, -2016-01-19 17:00:00,0.0,1001.0811289999999,0.488916667,94.5,-6.170333332999999,0.627083333, -2016-01-19 18:00:00,0.0,1001.1003119999999,0.0,94.575,-6.267583332999999,0.52225, -2016-01-19 19:00:00,0.0,1001.1194949999999,0.0,94.90833333,-6.463166667,0.582333333, -2016-01-19 20:00:00,0.0,1001.1386779999999,0.0,94.9,-6.436916667,0.575583333, -2016-01-19 21:00:00,0.0,1001.1578609999999,0.0,95.675,-6.4995833329999995,0.8645, -2016-01-19 22:00:00,0.0,1001.1770439999999,0.0,96.34166667,-6.54725,0.851833333, -2016-01-19 23:00:00,0.0,1001.1962269999999,0.0,96.66666667,-6.58,1.029166667, -2016-01-20 00:00:00,0.0,1001.2154099999999,0.0,96.68333333,-6.479166667,0.781166667, -2016-01-20 01:00:00,0.0,1001.234593,0.0,96.93333333,-6.167999999999999,0.1965, -2016-01-20 02:00:00,0.0,1001.253776,0.0,97.9,-5.97725,0.428833333, -2016-01-20 03:00:00,0.0,1001.272959,0.0,98.09166667,-5.91125,1.04975, -2016-01-20 04:00:00,0.0,1001.292142,0.0,97.38333333,-5.432583332999999,0.59475, -2016-01-20 05:00:00,0.0,1001.311325,0.0,96.19166667,-5.234083333,0.2945, -2016-01-20 06:00:00,0.0,1001.330508,0.0,94.35833333,-5.4139166670000005,0.767916667, -2016-01-20 07:00:00,0.0,1001.349691,0.00325,92.99166667,-5.241916667,0.7375, -2016-01-20 08:00:00,0.0,1001.368874,6.263,91.81666667,-5.1705,0.66425, -2016-01-20 09:00:00,0.0,1001.388057,35.43666667,92.55833333,-4.469333333,0.5820833329999999, -2016-01-20 10:00:00,0.0,1001.40724,65.94833333,88.74166667,-3.75375,1.079, -2016-01-20 11:00:00,0.0,1001.426424,105.89166670000002,85.45833333,-2.726833333,1.4099166669999998, -2016-01-20 12:00:00,0.0,1001.445606,94.13416667,85.84166667,-1.97875,0.9561666670000001, -2016-01-20 13:00:00,0.0,1001.46479,81.5425,88.16666667,-0.440666667,0.730166667, -2016-01-20 14:00:00,0.0,1001.483973,78.93916667,89.375,0.21908333300000002,0.7175, -2016-01-20 15:00:00,0.0,1001.5031560000001,39.635,90.41666667,0.290416667,0.7150833329999999, -2016-01-20 16:00:00,0.0,1001.5223390000001,9.95875,91.74166667,0.22575,0.816583333, -2016-01-20 17:00:00,0.0,1001.5415220000001,0.47925,94.93333333,0.12625,0.81625, -2016-01-20 18:00:00,0.0,1001.5607050000001,0.0,95.19166667,0.255916667,0.6306666670000001, -2016-01-20 19:00:00,0.0,1001.5798880000001,0.0,95.80833333,0.039583333,0.9594166670000001, -2016-01-20 20:00:00,0.0,1001.5990710000001,0.0,97.08333333,-0.1115,0.5830833329999999, -2016-01-20 21:00:00,0.0,1001.6182539999999,0.0,97.05,0.12375,0.649083333, -2016-01-20 22:00:00,0.0,1001.6374369999999,0.0,98.45,0.005166667,0.44408333299999997, -2016-01-20 23:00:00,0.0,1001.65662,0.0,98.70833333,-0.02325,0.551583333, -2016-01-21 00:00:00,0.0,1001.675803,0.0,98.21666667,-0.306416667,0.5781666670000001, -2016-01-21 01:00:00,0.0,1001.694986,0.0,98.625,0.390083333,1.391583333, -2016-01-21 02:00:00,0.0,1001.714169,0.0,99.08333333,0.258416667,0.725833333, -2016-01-21 03:00:00,0.0,1001.733352,0.0,99.95,0.168166667,0.72, -2016-01-21 04:00:00,0.0,1001.752535,0.0,100.0,0.001833333,0.32299999999999995, -2016-01-21 05:00:00,0.0,1001.771718,0.0,100.0,-1.2086666670000001,0.18483333300000002, -2016-01-21 06:00:00,0.0,1001.790901,0.0,100.0,-3.401583333,0.166083333, -2016-01-21 07:00:00,0.0,1001.810084,0.021166667000000004,100.0,-4.040583333,0.17025, -2016-01-21 08:00:00,0.0,1001.829267,3.1039999999999996,100.0,-2.55025,0.341916667, -2016-01-21 09:00:00,0.0,1001.84845,31.47333333,100.0,-2.5685,0.76175, -2016-01-21 10:00:00,0.0,1001.867633,66.69416667,100.0,-2.56175,1.101916667, -2016-01-21 11:00:00,0.0,1001.8868160000001,58.2,100.0,-2.804416667,1.688333333, -2016-01-21 12:00:00,0.0,1001.9059990000001,82.9225,100.0,-2.515083333,1.33075, -2016-01-21 13:00:00,0.0,1001.9251820000001,114.4225,100.0,-1.965916667,0.75075, -2016-01-21 14:00:00,0.0,1001.9443650000001,105.26083329999999,99.36666667,-1.3973333330000002,0.892916667, -2016-01-21 15:00:00,0.0,1001.9635480000001,50.86833333,99.15,-2.17975,1.6673333330000002, -2016-01-21 16:00:00,0.0,1001.9827310000001,16.96516667,99.875,-3.1395,0.947666667, -2016-01-21 17:00:00,0.0,1002.001914,0.6115,100.0,-3.641166667,1.030166667, -2016-01-21 18:00:00,0.0,1002.021098,0.0,100.0,-3.842166667,0.8683333329999999, -2016-01-21 19:00:00,0.0,1002.04028,0.0,100.0,-4.102666667,0.724333333, -2016-01-21 20:00:00,0.0,1002.059464,0.0,100.0,-4.2009166669999995,0.767333333, -2016-01-21 21:00:00,0.0,1002.078647,0.0,100.0,-4.292916667,0.838, -2016-01-21 22:00:00,0.0,1002.09783,0.0,100.0,-4.806666667,0.753416667, -2016-01-21 23:00:00,0.0,1002.117013,0.0,100.0,-5.1345,0.484, -2016-01-22 00:00:00,0.0,1002.136196,0.0,100.0,-5.58375,0.96325, -2016-01-22 01:00:00,0.0,1002.1553789999999,0.0,100.0,-6.2024166670000005,0.7475, -2016-01-22 02:00:00,0.0,1002.1745619999999,0.0,100.0,-6.857333333,0.534833333, -2016-01-22 03:00:00,0.0,1002.1937449999999,0.0,99.99166667,-6.989,0.22175, -2016-01-22 04:00:00,0.0,1002.2129279999999,0.0,100.0,-6.91075,0.56225, -2016-01-22 05:00:00,0.0,1002.2321109999999,0.0,100.0,-7.1625,0.52375, -2016-01-22 06:00:00,0.0,1002.2512939999999,0.0,100.0,-7.542166667,0.665333333, -2016-01-22 07:00:00,0.0,1002.2704769999999,0.039416667,99.6,-8.119166667,0.41133333299999997, -2016-01-22 08:00:00,0.0,1002.2896599999999,6.959166667000001,99.075,-8.460833333,0.1015, -2016-01-22 09:00:00,0.0,1002.308843,39.66666667,99.08333333,-7.901333332999999,0.29991666699999997, -2016-01-22 10:00:00,0.0,1002.328026,92.20833333,99.44166667,-6.6075,0.974833333, -2016-01-22 11:00:00,0.0,1002.347209,104.0725,99.98333333,-4.54825,1.4345833330000002, -2016-01-22 12:00:00,0.0,1002.366392,169.04166669999998,99.95833333,-3.8113333330000003,2.2555, -2016-01-22 13:00:00,0.0,1002.385575,136.65,98.84166667,-3.0630833330000002,2.339, -2016-01-22 14:00:00,0.0,1002.404758,140.975,94.58333333,-2.702833333,2.8496666669999997, -2016-01-22 15:00:00,0.0,1002.423941,93.95416667,89.91666667,-2.668166667,2.96275, -2016-01-22 16:00:00,0.0,1002.443124,15.07183333,92.83333333,-3.60725,2.926583333, -2016-01-22 17:00:00,0.0,1002.462307,0.547,95.3,-4.412166667,3.0956666669999997, -2016-01-22 18:00:00,0.0,1002.48149,0.0,97.00833333,-4.4640833330000005,3.243083333, -2016-01-22 19:00:00,0.0,1002.500673,0.0,97.15,-4.513666667,2.2688333330000003, -2016-01-22 20:00:00,0.0,1002.519856,0.0,97.16666667,-4.629583333,2.193833333, -2016-01-22 21:00:00,0.0,1002.5390390000001,0.0,97.3,-4.320333333,1.88425, -2016-01-22 22:00:00,0.0,1002.5582220000001,0.0,96.83333333,-3.5775,2.349916667, -2016-01-22 23:00:00,0.0,1002.5774050000001,0.0,98.03333333,-2.8515,2.764916667, -2016-01-23 00:00:00,0.0,1002.5965880000001,0.0,99.75,-2.28025,1.95925, -2016-01-23 01:00:00,0.0,1002.6157720000001,0.0,100.0,-1.778583333,1.4851666669999999, -2016-01-23 02:00:00,0.0,1002.6349539999999,0.0,100.0,-1.52025,0.244083333, -2016-01-23 03:00:00,0.0,1002.6541380000001,0.0,100.0,-1.3493333330000001,0.12025, -2016-01-23 04:00:00,0.0,1002.6733210000001,0.0,100.0,-1.168166667,0.010333333, -2016-01-23 05:00:00,0.0,1002.6925039999999,0.0,100.0,-0.991,0.02075, -2016-01-23 06:00:00,0.0,1002.7116869999999,0.0,100.0,-0.6346666670000001,0.316166667, -2016-01-23 07:00:00,0.0,1002.73087,0.0,100.0,-0.105833333,0.441833333, -2016-01-23 08:00:00,0.0,1002.750053,2.827666667,100.0,0.34175,0.502583333, -2016-01-23 09:00:00,0.0,1002.769236,14.41916667,100.0,1.8120833330000001,0.5855, -2016-01-23 10:00:00,0.0,1002.788419,40.71333333,100.0,2.7738333330000002,1.0590000000000002, -2016-01-23 11:00:00,41.35091717,1002.807602,55.39166667,100.0,3.3310000000000004,0.61225, -2016-01-23 12:00:00,2.571033864,1002.826785,78.32583333,100.0,3.939666667,1.001583333, -2016-01-23 13:00:00,0.0,1002.845968,69.82,100.0,4.340916667,1.14075, -2016-01-23 14:00:00,0.0,1002.865151,58.7225,100.0,4.74075,1.44275, -2016-01-23 15:00:00,0.0,1002.884334,54.2125,100.0,4.907666667,1.053, -2016-01-23 16:00:00,0.0,1002.903517,9.023666667,99.99166667,4.438833333,0.944666667, -2016-01-23 17:00:00,0.0,1002.9227,0.336416667,99.84166667,4.12075,0.753166667, -2016-01-23 18:00:00,0.0,1002.941883,0.0,99.73333333,2.991,0.45841666700000006, -2016-01-23 19:00:00,0.0,1002.961066,0.0,99.83333333,1.329583333,0.225333333, -2016-01-23 20:00:00,0.0,1002.9802490000001,0.0,99.94166667,1.6531666669999998,0.195333333, -2016-01-23 21:00:00,0.0,1002.9994320000001,0.0,100.0,1.9313333330000002,0.237416667, -2016-01-23 22:00:00,0.0,1003.0186150000001,0.0,100.0,2.35925,0.10566666699999999, -2016-01-23 23:00:00,0.0,1003.0377980000001,0.0,100.0,2.205166667,0.136583333, -2016-01-24 00:00:00,0.0,1003.0569810000001,0.0,100.0,2.26075,0.224666667, -2016-01-24 01:00:00,0.0,1003.0761640000001,0.0,99.975,2.548666667,0.929916667, -2016-01-24 02:00:00,0.0,1003.0953470000001,0.0,99.70833333,2.98325,0.665333333, -2016-01-24 03:00:00,0.0,1003.1145300000001,0.0,99.60833333,3.5660000000000003,0.865166667, -2016-01-24 04:00:00,0.0,1003.1337130000001,0.0,99.55833333,2.696583333,0.32799999999999996, -2016-01-24 05:00:00,0.0,1003.152896,0.0,100.0,1.628166667,0.298083333, -2016-01-24 06:00:00,0.0,1003.1720789999999,0.0,100.0,1.0465,1.301416667, -2016-01-24 07:00:00,0.0,1003.1912619999999,0.002833333,100.0,0.9125833329999999,0.6104166670000001, -2016-01-24 08:00:00,0.0,1003.210446,3.882833333,100.0,0.989833333,0.955916667, -2016-01-24 09:00:00,0.0,1003.2296289999999,30.8175,100.0,1.48025,0.266833333, -2016-01-24 10:00:00,0.0,1003.2488119999999,62.42083333,100.0,2.285583333,0.788416667, -2016-01-24 11:00:00,0.0,1003.2679949999999,105.08166670000001,100.0,3.0660000000000003,0.901083333, -2016-01-24 12:00:00,0.0,1003.2871779999999,117.68333329999999,98.25,3.688,1.131083333, -2016-01-24 13:00:00,0.0,1003.3063609999999,79.15333333,98.49166667,3.696916667,1.312083333, -2016-01-24 14:00:00,0.0,1003.3255439999999,71.0075,98.58333333,4.011666667,1.068333333, -2016-01-24 15:00:00,0.0,1003.3447269999999,30.66333333,99.11666667,3.983,0.998916667, -2016-01-24 16:00:00,0.0,1003.3639099999999,7.777333333,99.95833333,3.4946666669999997,0.541083333, -2016-01-24 17:00:00,0.0,1003.3830929999999,0.29925,100.0,3.2214166669999997,0.3945, -2016-01-24 18:00:00,4.82917776,1003.402276,0.0,100.0,2.890083333,0.0345, -2016-01-24 19:00:00,14.65176631,1003.421459,0.0,100.0,2.807583333,0.174583333, -2016-01-24 20:00:00,0.0,1003.440642,0.0,100.0,2.826916667,0.213083333, -2016-01-24 21:00:00,0.0,1003.459825,0.0,100.0,2.880833333,0.34116666700000003, -2016-01-24 22:00:00,0.0,1003.479008,0.0,100.0,3.137083333,0.5458333329999999, -2016-01-24 23:00:00,0.0,1003.498191,0.0,100.0,3.144166667,0.25875, -2016-01-25 00:00:00,2.487263184,1003.517374,0.0,100.0,3.1875,0.4435, -2016-01-25 01:00:00,2.503554912,1003.536557,0.0,100.0,3.47125,0.39616666700000003, -2016-01-25 02:00:00,0.0,1003.55574,0.0,100.0,3.335666667,0.29075, -2016-01-25 03:00:00,0.0,1003.574923,0.0,100.0,3.29175,0.48666666700000005, -2016-01-25 04:00:00,0.0,1003.594106,0.0,100.0,3.46675,0.640416667, -2016-01-25 05:00:00,0.0,1003.613289,0.0,100.0,3.3763333330000003,0.49891666700000004, -2016-01-25 06:00:00,0.0,1003.6324720000001,0.0,100.0,3.328083333,0.387666667, -2016-01-25 07:00:00,2.425393416,1003.6516550000001,0.0,100.0,3.4186666669999997,0.24941666699999998, -2016-01-25 08:00:00,0.0,1003.6708380000001,3.439916667,100.0,3.891833333,0.681583333, -2016-01-25 09:00:00,0.0,1003.6900210000001,24.23,100.0,4.174916667,0.490333333, -2016-01-25 10:00:00,0.0,1003.7092039999999,54.59583333,100.0,4.956916667,0.528416667, -2016-01-25 11:00:00,0.0,1003.7283869999999,81.0775,100.0,5.656416667,0.742833333, -2016-01-25 12:00:00,0.0,1003.7475699999999,61.55083333,100.0,6.198083333,0.8015, -2016-01-25 13:00:00,0.0,1003.7667529999999,132.85333329999997,99.94166667,7.425083333,0.8240000000000001, -2016-01-25 14:00:00,0.0,1003.785936,153.0,96.36666667,9.265,1.418166667, -2016-01-25 15:00:00,0.0,1003.805119,116.2,89.95,8.606666667,2.298083333, -2016-01-25 16:00:00,0.0,1003.824303,35.00583333,94.09166667,7.410583333,1.4035, -2016-01-25 17:00:00,0.0,1003.843486,1.9259166669999999,99.93333333,4.297416667,1.3726666669999998, -2016-01-25 18:00:00,0.0,1003.862669,0.0,100.0,2.942416667,0.310333333, -2016-01-25 19:00:00,0.0,1003.881852,0.0,100.0,1.366916667,0.18541666699999998, -2016-01-25 20:00:00,0.0,1003.901035,0.0,100.0,0.28675,0.204333333, -2016-01-25 21:00:00,0.0,1003.920218,0.0,100.0,-0.15975,0.293083333, -2016-01-25 22:00:00,0.0,1003.939401,0.0,100.0,0.071583333,0.24575, -2016-01-25 23:00:00,0.0,1003.958584,0.0,100.0,-0.035,0.21225, -2016-01-26 00:00:00,0.0,1003.977767,0.0,100.0,0.04375,0.11541666699999999, -2016-01-26 01:00:00,0.0,1003.99695,0.0,100.0,0.041583333,0.198833333, -2016-01-26 02:00:00,0.0,1004.016133,0.0,100.0,0.33733333299999996,0.148166667, -2016-01-26 03:00:00,0.0,1004.035316,0.0,100.0,0.32875,0.3505, -2016-01-26 04:00:00,0.0,1004.0544990000001,0.0,100.0,0.295,0.323416667, -2016-01-26 05:00:00,0.0,1004.0736820000001,0.0,100.0,0.198166667,0.38225, -2016-01-26 06:00:00,0.0,1004.0928650000001,0.0,100.0,0.307083333,0.46533333299999996, -2016-01-26 07:00:00,0.0,1004.1120480000001,0.021583333,100.0,-0.2625,0.335333333, -2016-01-26 08:00:00,0.0,1004.1312310000001,6.609666667000001,100.0,0.313916667,0.24925, -2016-01-26 09:00:00,0.0,1004.1504140000001,59.25,100.0,2.774666667,0.574, -2016-01-26 10:00:00,0.0,1004.1695970000001,84.91416667,100.0,4.578416667,0.626916667, -2016-01-26 11:00:00,0.0,1004.1887800000001,105.235,100.0,6.037333332999999,0.83225, -2016-01-26 12:00:00,0.0,1004.2079630000001,76.35166667,94.96666667,7.221583333,1.0075, -2016-01-26 13:00:00,0.0,1004.2271460000001,52.855,89.11666667,7.765833333,0.507166667, -2016-01-26 14:00:00,0.0,1004.246329,89.94833333,89.03333333,9.612,1.4915, -2016-01-26 15:00:00,0.0,1004.265512,67.55416667,88.8,11.10833333,1.6015, -2016-01-26 16:00:00,0.0,1004.2846949999999,10.84383333,88.925,10.66333333,1.7988333330000001, -2016-01-26 17:00:00,0.0,1004.3038779999999,0.96625,89.19166667,9.5875,1.161583333, -2016-01-26 18:00:00,0.0,1004.3230609999999,0.0,89.38333333,9.369166667,1.829083333, -2016-01-26 19:00:00,0.0,1004.3422439999999,0.0,86.13333333,9.05,2.042416667, -2016-01-26 20:00:00,0.0,1004.3614269999999,0.0,85.01666667,8.396833333,1.53925, -2016-01-26 21:00:00,0.0,1004.3806099999999,0.0,85.85,7.793583333,1.3481666669999999, -2016-01-26 22:00:00,0.0,1004.3997939999999,0.0,87.5,7.994333332999999,1.098083333, -2016-01-26 23:00:00,0.0,1004.4189769999999,0.0,86.58333333,8.453,1.551916667, -2016-01-27 00:00:00,0.0,1004.4381599999999,0.0,84.39166667,9.0325,2.36825, -2016-01-27 01:00:00,0.0,1004.4573429999999,0.0,84.625,9.178333333,1.8419999999999999, -2016-01-27 02:00:00,0.0,1004.4765259999999,0.0,83.79166667,9.281666667,1.5470833330000002, -2016-01-27 03:00:00,0.0,1004.495709,0.0,83.875,9.521666667,1.868916667, -2016-01-27 04:00:00,0.0,1004.514892,0.0,85.26666667,9.55,1.585083333, -2016-01-27 05:00:00,0.0,1004.534075,0.0,86.66666667,9.4825,1.53675, -2016-01-27 06:00:00,0.0,1004.553258,0.0,86.55,9.068333333,1.25925, -2016-01-27 07:00:00,0.0,1004.572441,0.021583333,85.59166667,8.225666667,1.52525, -2016-01-27 08:00:00,0.0,1004.591624,7.900916667000001,82.38333333,7.2583333329999995,1.239666667, -2016-01-27 09:00:00,0.0,1004.610807,58.24583333,79.07666667,7.997000000000001,1.4140833330000002, -2016-01-27 10:00:00,0.0,1004.62999,127.59166670000002,73.96333333,10.31333333,2.028833333, -2016-01-27 11:00:00,0.0,1004.649173,154.9833333,71.00333333,11.36166667,2.517833333, -2016-01-27 12:00:00,0.0,1004.668356,129.8,78.75833333,10.92833333,2.414416667, -2016-01-27 13:00:00,0.0,1004.687539,137.9,73.92416667,11.30833333,1.55025, -2016-01-27 14:00:00,0.0,1004.706722,78.5025,68.87083333,11.605,2.030333333, -2016-01-27 15:00:00,0.0,1004.7259050000001,58.24666667,70.44833333,11.6325,1.8065, -2016-01-27 16:00:00,0.0,1004.7450880000001,22.225,68.825,11.43166667,1.6033333330000001, -2016-01-27 17:00:00,0.0,1004.7642710000001,0.7989166670000001,62.26833333,11.8425,1.913, -2016-01-27 18:00:00,0.0,1004.7834539999999,0.0,59.71333333,11.91333333,2.3145, -2016-01-27 19:00:00,0.0,1004.8026369999999,0.0,58.99583333,11.6,2.302166667, -2016-01-27 20:00:00,0.0,1004.8218199999999,0.0,58.06333333,11.62333333,2.267416667, -2016-01-27 21:00:00,0.0,1004.8410029999999,0.0,57.76916667,12.085,1.982833333, -2016-01-27 22:00:00,0.0,1004.8601859999999,0.0,59.9975,12.05333333,2.62425, -2016-01-27 23:00:00,0.0,1004.879369,0.0,65.095,11.90166667,2.589833333, -2016-01-28 00:00:00,0.0,1004.898552,0.0,68.9725,11.79166667,2.064083333, -2016-01-28 01:00:00,0.0,1004.917735,0.0,70.975,11.65666667,2.120583333, -2016-01-28 02:00:00,0.0,1004.936918,0.0,72.53833333,11.455,2.387, -2016-01-28 03:00:00,0.0,1004.956101,0.0,83.72083333,10.58166667,2.6680833330000002, -2016-01-28 04:00:00,3.2078726160000004,1004.975284,0.0,96.08333333,9.725833332999999,2.296583333, -2016-01-28 05:00:00,6.6339065999999995,1004.994468,0.0,98.25,9.704166667,2.6395, -2016-01-28 06:00:00,25.73843126,1005.013651,0.0,96.1,9.04,2.538416667, -2016-01-28 07:00:00,8.414492952,1005.032834,0.010333333,93.625,7.808,1.45375, -2016-01-28 08:00:00,0.0,1005.052017,3.216583333,92.04166667,7.503833332999999,1.598583333, -2016-01-28 09:00:00,0.0,1005.0712,30.57916667,87.19166667,7.4930833329999995,1.6130000000000002, -2016-01-28 10:00:00,0.0,1005.090383,70.74083333,83.425,7.331416667,1.3871666669999998, -2016-01-28 11:00:00,0.0,1005.109566,182.2666667,78.63333333,8.238,2.1749166669999997, -2016-01-28 12:00:00,0.0,1005.128749,213.225,71.06416667,8.296166667,2.34825, -2016-01-28 13:00:00,0.0,1005.1479320000001,159.8,67.0475,8.525833333,2.06925, -2016-01-28 14:00:00,0.0,1005.1671150000001,145.20833330000002,66.26083333,8.5,2.033583333, -2016-01-28 15:00:00,0.0,1005.1862980000001,87.56666667,65.68416667,8.009583333,1.48875, -2016-01-28 16:00:00,0.0,1005.2054810000001,32.08416667,71.45666667,6.3659166670000005,0.417333333, -2016-01-28 17:00:00,0.0,1005.2246640000001,1.897416667,88.92416667,2.8145,0.16, -2016-01-28 18:00:00,0.0,1005.2438470000001,0.0,95.78333333,1.7710833330000002,0.33899999999999997, -2016-01-28 19:00:00,0.0,1005.2630300000001,0.0,98.74166667,0.985,0.24966666699999998, -2016-01-28 20:00:00,0.0,1005.2822130000001,0.0,99.525,0.857083333,0.308416667, -2016-01-28 21:00:00,0.0,1005.3013960000001,0.0,100.0,0.611666667,0.198166667, -2016-01-28 22:00:00,0.0,1005.320579,0.0,100.0,0.34133333299999996,0.067666667, -2016-01-28 23:00:00,0.0,1005.339762,0.0,100.0,-0.6124166670000001,0.231333333, -2016-01-29 00:00:00,0.0,1005.358945,0.0,100.0,-1.547833333,0.1045, -2016-01-29 01:00:00,0.0,1005.378128,0.0,100.0,-2.16575,0.10375, -2016-01-29 02:00:00,0.0,1005.397311,0.0,100.0,-2.185833333,0.15841666699999998, -2016-01-29 03:00:00,0.0,1005.416494,0.0,100.0,-2.769083333,0.129333333, -2016-01-29 04:00:00,0.0,1005.4356769999999,0.0,97.86666667,-2.961666667,0.15966666699999998, -2016-01-29 05:00:00,0.0,1005.4548599999999,0.0,95.83333333,-1.368333333,0.47866666700000005, -2016-01-29 06:00:00,0.0,1005.4740429999999,0.0,94.06666667,0.080416667,0.455666667, -2016-01-29 07:00:00,0.0,1005.4932259999999,0.11183333300000001,96.99166667,0.37308333299999996,0.71075, -2016-01-29 08:00:00,0.0,1005.5124089999999,11.23991667,98.93333333,0.2035,1.0355, -2016-01-29 09:00:00,2.589716136,1005.531592,24.86,86.23333333,2.548,0.546166667, -2016-01-29 10:00:00,0.0,1005.550775,111.94083329999998,83.0,5.476666667000001,1.072333333, -2016-01-29 11:00:00,0.0,1005.569958,180.66666669999998,79.6875,6.272666667,2.47125, -2016-01-29 12:00:00,0.0,1005.589142,207.3416667,78.28583333,7.49125,2.57925, -2016-01-29 13:00:00,0.0,1005.608325,211.8583333,73.29166667,8.9225,2.636083333, -2016-01-29 14:00:00,0.0,1005.627508,167.425,70.55416667,9.488333333,2.18725, -2016-01-29 15:00:00,0.0,1005.646691,86.77083333,72.125,9.4075,1.828583333, -2016-01-29 16:00:00,0.0,1005.665874,28.41833333,76.54416667,8.500833333,1.73075, -2016-01-29 17:00:00,0.0,1005.685057,2.209833333,77.74583333,8.09625,1.9145, -2016-01-29 18:00:00,0.0,1005.70424,0.0,78.91166667,7.951416667,2.051333333, -2016-01-29 19:00:00,0.0,1005.723423,0.0,80.16416667,7.892166667000001,1.9635, -2016-01-29 20:00:00,0.0,1005.742606,0.0,82.05833333,7.944833332999999,2.3930833330000003, -2016-01-29 21:00:00,0.0,1005.761789,0.0,84.01666667,7.885583333,2.36175, -2016-01-29 22:00:00,0.0,1005.780972,0.0,85.03333333,7.982416667000001,2.326916667, -2016-01-29 23:00:00,0.0,1005.800155,0.0,84.46666667,8.109333333,2.098833333, -2016-01-30 00:00:00,0.0,1005.8193380000001,0.0,83.79166667,8.223333333,2.480333333, -2016-01-30 01:00:00,0.0,1005.8385210000001,0.0,86.23333333,7.796666667,2.3745, -2016-01-30 02:00:00,0.0,1005.8577039999999,0.0,86.34166667,7.7985,1.912833333, -2016-01-30 03:00:00,0.0,1005.8768869999999,0.0,86.05833333,7.838666667000001,1.83275, -2016-01-30 04:00:00,0.0,1005.8960699999999,0.0,85.04166667,7.973833332999999,1.96075, -2016-01-30 05:00:00,0.0,1005.9152529999999,0.0,83.45,8.188333333,2.578083333, -2016-01-30 06:00:00,0.0,1005.9344359999999,0.0,85.28333333,7.9691666670000005,2.594, -2016-01-30 07:00:00,0.0,1005.953619,0.035666667,83.26666667,8.206666667,2.756916667, -2016-01-30 08:00:00,0.0,1005.972802,2.37975,82.99166667,8.35,2.65925, -2016-01-30 09:00:00,0.0,1005.991985,11.03908333,83.54166667,8.289166667,2.635416667, -2016-01-30 10:00:00,0.0,1006.011168,21.99333333,86.26666667,7.92275,2.587416667, -2016-01-30 11:00:00,0.0,1006.030351,41.36916667,88.71666667,7.375083332999999,3.24, -2016-01-30 12:00:00,0.0,1006.049534,35.3,87.86666667,7.2615,3.211583333, -2016-01-30 13:00:00,3.60168252,1006.068717,49.755,88.61666667,7.24725,3.4495, -2016-01-30 14:00:00,7.667319072000001,1006.0879,44.6175,89.40833333,7.31175,3.088, -2016-01-30 15:00:00,72.71724312,1006.107083,11.35016667,94.03333333,6.727666667,3.14875, -2016-01-30 16:00:00,55.51846286,1006.126266,5.47325,95.9,6.417000000000001,2.8555833330000002, -2016-01-30 17:00:00,18.36101813,1006.14545,0.51125,95.31666667,6.19775,3.320416667, -2016-01-30 18:00:00,9.124578672,1006.164632,0.0,96.84166667,5.93025,2.035333333, -2016-01-30 19:00:00,3.1445124,1006.183815,0.0,95.43333333,5.682916667000001,1.8486666669999998, -2016-01-30 20:00:00,0.0,1006.2029980000001,0.0,93.53333333,5.5301666670000005,2.94625, -2016-01-30 21:00:00,10.74655776,1006.222182,0.0,93.65833333,3.9588333330000003,2.76425, -2016-01-30 22:00:00,0.0,1006.2413650000001,0.0,94.58333333,2.85,2.224583333, -2016-01-30 23:00:00,0.0,1006.2605480000001,0.0,93.16666667,2.51625,1.60475, -2016-01-31 00:00:00,0.0,1006.2797310000001,0.0,93.125,1.63675,0.770083333, -2016-01-31 01:00:00,0.0,1006.2989140000001,0.0,92.78333333,0.773416667,0.36016666700000005, -2016-01-31 02:00:00,0.0,1006.3180970000001,0.0,92.03333333,1.863666667,0.940416667, -2016-01-31 03:00:00,0.0,1006.3372800000001,0.0,92.375,2.54775,1.574, -2016-01-31 04:00:00,0.0,1006.3564630000001,0.0,91.875,3.01725,1.57875, -2016-01-31 05:00:00,0.0,1006.3756460000001,0.0,92.60833333,3.1316666669999997,1.254583333, -2016-01-31 06:00:00,0.0,1006.394829,0.0,93.28333333,2.11125,0.7505, -2016-01-31 07:00:00,0.0,1006.414012,0.08125,93.75833333,0.849166667,0.18333333300000001, -2016-01-31 08:00:00,0.0,1006.433195,10.53116667,93.0,2.84075,1.1795, -2016-01-31 09:00:00,0.0,1006.452378,32.5675,90.95833333,3.843916667,1.7561666669999998, -2016-01-31 10:00:00,0.0,1006.471561,57.97416667,89.55,4.463416667,1.7355833330000001, -2016-01-31 11:00:00,0.0,1006.490744,83.1375,88.25833333,5.092666667,2.140666667, -2016-01-31 12:00:00,0.0,1006.509927,161.725,85.275,6.187,2.149166667, -2016-01-31 13:00:00,0.0,1006.52911,113.56666670000001,84.76666667,6.439666667000001,2.366166667, -2016-01-31 14:00:00,0.0,1006.548293,51.2425,86.76666667,6.396333332999999,1.585166667, -2016-01-31 15:00:00,0.0,1006.5674759999999,16.4725,90.175,5.977666667,1.0849166670000001, -2016-01-31 16:00:00,2.43818976,1006.5866589999999,12.24641667,94.5,5.566666667000001,0.85125, -2016-01-31 17:00:00,2.62531908,1006.6058419999999,1.065083333,96.51666667,5.336,0.613166667, -2016-01-31 18:00:00,0.0,1006.625025,0.0,96.18333333,5.81975,0.73975, -2016-01-31 19:00:00,0.0,1006.644208,0.0,97.68333333,6.492166667,1.1875, -2016-01-31 20:00:00,0.0,1006.663391,0.0,99.70833333,6.91625,1.413, -2016-01-31 21:00:00,0.0,1006.682574,0.0,99.975,7.677916667000001,2.013583333, -2016-01-31 22:00:00,2.9735481360000002,1006.701757,0.0,99.61666667,8.606666667,2.102, -2016-01-31 23:00:00,6.015475512,1006.72094,0.0,99.7,9.256666667000001,2.006166667, -2016-01-02 00:00:00,6.3007968,1006.740124,0.0,99.35833333,9.9725,2.1185,237.96964683333337 -2016-01-02 01:00:00,0.0,1006.759307,0.0,98.88333333,10.55,2.376083333,237.97215218333335 -2016-01-02 02:00:00,0.0,1006.778489,0.0,100.0,10.47,2.23275,237.97054161666665 -2016-01-02 03:00:00,3.25117092,1006.797673,0.0,100.0,10.8325,2.4659999999999997,237.96946788333332 -2016-01-02 04:00:00,0.0,1006.816856,0.0,99.9,11.115,2.83025,237.96946788333332 -2016-01-02 05:00:00,0.0,1006.836039,0.0,99.90833333,11.04,2.7715,237.9707205666667 -2016-01-02 06:00:00,3.252155184,1006.855222,0.0,100.0,10.82333333,2.6105,237.9716153333333 -2016-01-02 07:00:00,0.0,1006.874405,0.171916667,100.0,10.6825,2.393333333,237.96875208333336 -2016-01-02 08:00:00,0.0,1006.8935880000001,4.761583333,99.99166667,10.6075,2.4835833330000003,237.96946789999996 -2016-01-02 09:00:00,0.0,1006.9127710000001,30.59416667,99.96666667,10.76,2.752333333,237.96857313333336 -2016-01-02 10:00:00,3.807776112,1006.9319539999999,35.345,99.25,10.94833333,3.16675,237.96875208333336 -2016-01-02 11:00:00,0.0,1006.9511369999999,62.6725,93.21666667,11.66333333,2.510333333,237.97054161666668 -2016-01-02 12:00:00,0.0,1006.9703199999999,98.42166667,90.94166667,12.035,3.052166667,237.9716153333333 -2016-01-02 13:00:00,0.0,1006.9895029999999,61.1325,87.43333333,11.96416667,3.51625,237.97412068333333 -2016-01-02 14:00:00,0.0,1007.0086859999999,51.0875,85.21666667,11.72333333,3.52875,237.97662603333336 -2016-01-02 15:00:00,0.0,1007.0278689999999,33.7925,81.09916667,11.31916667,4.414833333,237.9787734666667 -2016-01-02 16:00:00,0.0,1007.047052,11.35016667,80.10666667,10.9675,3.3235,237.98217355000006 -2016-01-02 17:00:00,0.0,1007.066235,0.8215,79.33666667,10.95083333,2.9615,237.98611053333332 -2016-01-02 18:00:00,0.0,1007.085418,0.0,78.75,10.95166667,3.36775,237.99559510000003 -2016-01-02 19:00:00,0.0,1007.104601,0.0,78.7675,10.92083333,3.68725,238.01098506666665 -2016-01-02 20:00:00,0.0,1007.123784,0.0,79.19416667,11.04583333,3.551166667,238.03335423333337 -2016-01-02 21:00:00,0.0,1007.142967,0.0,78.95166667,11.21416667,3.885416667,238.05232329999998 -2016-01-02 22:00:00,0.0,1007.16215,0.0,81.46666667,11.11583333,3.505666667,238.06592376666663 -2016-01-02 23:00:00,0.0,1007.181333,0.0,88.96666667,10.4475,3.179833333,238.07540828333333 -2016-02-02 00:00:00,0.0,1007.200516,0.0,91.6,10.20416667,3.212916667, -2016-02-02 01:00:00,0.0,1007.219699,0.0,89.25,10.60333333,3.38575, -2016-02-02 02:00:00,0.0,1007.238882,0.0,87.275,10.8525,3.229333333, -2016-02-02 03:00:00,0.0,1007.258065,0.0,86.475,11.0075,3.2591666669999997, -2016-02-02 04:00:00,0.0,1007.2772480000001,0.0,86.70833333,11.04,3.106666667, -2016-02-02 05:00:00,0.0,1007.2964310000001,0.0,86.23333333,11.09416667,3.07125, -2016-02-02 06:00:00,0.0,1007.3156140000001,0.0,85.73333333,11.1475,3.01675, -2016-02-02 07:00:00,0.0,1007.3347980000001,0.043666667,87.75833333,10.97166667,3.1105, -2016-02-02 08:00:00,0.0,1007.3539810000001,2.5585,86.86666667,11.03833333,2.683916667, -2016-02-02 09:00:00,0.0,1007.3731630000001,17.37433333,85.56666667,11.25916667,2.726333333, -2016-02-02 10:00:00,0.0,1007.3923470000001,43.52166667,84.7,11.49,2.902083333, -2016-02-02 11:00:00,0.0,1007.4115300000001,124.00833329999999,84.25833333,11.86083333,3.1408333330000002, -2016-02-02 12:00:00,0.0,1007.4307130000001,122.76666670000002,83.23333333,12.11416667,3.5564166669999997, -2016-02-02 13:00:00,0.0,1007.4498960000001,81.86666667,82.075,12.17916667,3.723583333, -2016-02-02 14:00:00,0.0,1007.469079,44.67916667,82.55833333,12.08166667,3.753083333, -2016-02-02 15:00:00,0.0,1007.3300449999999,18.78833333,82.26666667,12.06083333,3.2353333330000003,238.06817856000004 -2016-02-02 16:00:00,4.042888608,1007.1,8.18975,83.65833333,11.56,3.5669999999999997,238.06825013333335 -2016-02-02 17:00:00,79.06327966,1008.338333,0.900416667,95.925,7.669,2.8104166669999997,238.06753431666667 -2016-02-02 18:00:00,42.09963353,1009.211333,0.0,97.75833333,6.691916667,1.479916667,238.07075546666667 -2016-02-02 19:00:00,37.07203063,1009.775,0.0,97.50833333,6.510666667000001,1.61,238.07522931666668 -2016-02-02 20:00:00,0.0,1009.7662220000001,0.0,95.18333333,6.676916667,2.1255,238.08399801666667 -2016-02-02 21:00:00,0.0,1010.485333,0.0,92.925,6.5294166670000005,1.813333333,238.0922298666666 -2016-02-02 22:00:00,0.0,1010.766667,0.0,91.36666667,6.22425,1.749916667,238.10064068333338 -2016-02-02 23:00:00,0.0,1011.285333,0.0,91.40833333,5.87,1.946166667,238.10797778333333 -2016-03-02 00:00:00,0.0,1011.801,0.0,91.06666667,5.569166667,1.982666667,238.21923431666664 -2016-03-02 01:00:00,0.0,1011.8441109999999,0.0,90.13333333,5.098666667,1.59175,238.21923433333328 -2016-03-02 02:00:00,0.0,1011.872556,0.0,91.10833333,4.50575,1.41,238.21798056666663 -2016-03-02 03:00:00,0.0,1011.8951109999999,0.0,91.68333333,4.3855833330000005,1.278833333,238.22027911666666 -2016-03-02 04:00:00,0.0,1011.556333,0.0,94.79166667,3.749916667,0.9864166670000001,238.21965221666665 -2016-03-02 05:00:00,0.0,1011.195556,0.0,92.525,4.011666667,0.8325,238.21965223333328 -2016-03-02 06:00:00,0.0,1010.880889,0.0,90.98333333,4.142333333,0.72675,238.21839846666663 -2016-03-02 07:00:00,0.0,1010.824,0.168166667,89.325,4.034,1.396333333,238.21839846666663 -2016-03-02 08:00:00,0.0,1010.666667,6.794333332999999,89.95833333,3.88275,1.21925,238.2188164 -2016-03-02 09:00:00,0.0,1010.884333,36.62166667,89.98333333,4.381666667,1.3581666669999999,238.2188164 -2016-03-02 10:00:00,0.0,1011.215222,111.64,87.23333333,5.346083333,1.5116666669999999,238.21798056666668 -2016-03-02 11:00:00,0.0,1011.451,166.575,82.81666667,6.475416667,2.030916667,238.22027911666666 -2016-03-02 12:00:00,27.84034454,1011.959333,81.51166667,90.82833333,3.921416667,2.520166667,238.22153289999997 -2016-03-02 13:00:00,0.0,1012.160333,163.7166667,92.40833333,4.42925,1.87425,238.22236875 -2016-03-02 14:00:00,0.0,1012.5367779999999,148.6083333,84.04166667,5.015333333,1.866416667,238.22090601666665 -2016-03-02 15:00:00,0.0,1013.200556,115.9825,81.82833333,4.87125,1.6566666669999999,238.2229956333333 -2016-03-02 16:00:00,0.0,1013.848556,36.62166667,79.78416667,4.526333333,1.562416667,238.22320458333334 -2016-03-02 17:00:00,0.0,1014.58,4.88925,83.26666667,3.833916667,1.8168333330000002,238.22299561666668 -2016-03-02 18:00:00,2.819422512,1015.366667,0.0,96.79166667,1.721416667,0.9501666670000001,238.22445835 -2016-03-02 19:00:00,0.0,1015.938778,0.0,92.76666667,1.7383333330000001,0.69625,238.22383146666667 -2016-03-02 20:00:00,0.0,1016.911333,0.0,87.9,2.8801666669999997,1.3625833330000001,238.22215976666666 -2016-03-02 21:00:00,0.0,1017.796111,0.0,88.45833333,3.30175,1.5044166669999999,238.22048808333332 -2016-03-02 22:00:00,0.0,1018.461333,0.0,91.38333333,3.019083333,1.60325,238.21986120000005 -2016-03-02 23:00:00,0.0,1018.7857779999999,0.0,91.05833333,3.23775,2.153666667,238.22090601666665 -2016-04-02 00:00:00,0.0,1019.063778,0.0,92.83333333,3.402916667,1.67,238.49757123333333 -2016-04-02 01:00:00,0.0,1019.4416669999999,0.0,94.84166667,3.289583333,1.585,238.4892127833334 -2016-04-02 02:00:00,5.321807736,1019.421556,0.0,96.76666667,2.8889166669999997,1.10325,238.48064535 -2016-04-02 03:00:00,2.974386672,1019.802,0.0,96.33333333,2.9786666669999997,1.736833333,238.47166 -2016-04-02 04:00:00,9.037123752000001,1019.674,0.0,98.625,2.45025,2.0445833330000003,238.460794 -2016-04-02 05:00:00,0.0,1019.5691109999999,0.0,98.70833333,2.375333333,1.9935,238.45327138333334 -2016-04-02 06:00:00,5.889774288,1019.2014439999999,0.0,98.28333333,2.403833333,1.817,238.44595771666664 -2016-04-02 07:00:00,0.0,1019.2735560000001,0.163083333,96.31666667,2.4321666669999997,2.10875,238.43613653333333 -2016-04-02 08:00:00,0.0,1019.375,12.30241667,93.34166667,2.680416667,2.834083333,238.4292407833333 -2016-04-02 09:00:00,0.0,1019.202889,40.2275,91.55,2.966916667,2.463833333,238.4194196166667 -2016-04-02 10:00:00,0.0,1018.412222,78.40583333,88.925,3.601833333,2.420833333,238.4127328 -2016-04-02 11:00:00,6.380941344,1018.0028890000001,49.6475,93.45,3.39425,2.26675,238.40855356666668 -2016-04-02 12:00:00,14.35105351,1016.812667,58.07166667,97.61666667,3.0838333330000003,1.648166667,238.4045833 -2016-04-02 13:00:00,23.04713359,1015.4415560000001,53.75833333,98.26666667,3.0865,1.6739166669999999,238.3976875666667 -2016-04-02 14:00:00,16.76656961,1013.8425560000001,51.295,97.8,2.8110000000000004,1.243083333,238.39434418333335 -2016-04-02 15:00:00,11.3582245,1013.015667,35.205,98.8,2.99575,1.557916667,238.39288143333332 -2016-04-02 16:00:00,5.86972428,1012.9176669999999,16.88591667,99.675,3.2865833330000003,1.702833333,238.38891118333333 -2016-04-02 17:00:00,0.0,1013.572111,1.177,100.0,3.66925,1.300083333,238.3836871166667 -2016-04-02 18:00:00,0.0,1014.7667779999999,0.0,100.0,4.07025,1.039416667,238.38264235 -2016-04-02 19:00:00,2.72623008,1016.0078890000001,0.0,99.225,4.4793333330000005,1.9509999999999998,238.37992583333335 -2016-04-02 20:00:00,0.0,1016.876556,0.0,97.85,4.2466666669999995,2.839916667,238.37804516666665 -2016-04-02 21:00:00,0.0,1017.894667,0.0,98.66666667,3.3976666669999998,1.162166667,238.37386596666667 -2016-04-02 22:00:00,0.0,1018.950556,0.0,98.20833333,3.456833333,0.6233333329999999,238.37135841666668 -2016-04-02 23:00:00,0.0,1019.974556,0.0,100.0,2.969583333,0.360833333,238.36780608333333 -2016-05-02 00:00:00,0.0,1020.7588890000001,0.0,98.40833333,2.722416667,0.63475,238.1384249833333 -2016-05-02 01:00:00,0.0,1021.355889,0.0,99.66666667,2.577,0.3975,238.13910081666666 -2016-05-02 02:00:00,0.0,1021.7828890000001,0.0,100.0,2.421166667,0.284833333,238.13876291666665 -2016-05-02 03:00:00,0.0,1022.247556,0.0,97.025,2.560666667,0.5285,238.13960769999997 -2016-05-02 04:00:00,0.0,1021.8989999999999,0.0,99.04166667,2.262166667,0.72175,238.13876289999996 -2016-05-02 05:00:00,0.0,1021.9201109999999,0.0,100.0,2.312166667,0.4745,238.13825600000004 -2016-05-02 06:00:00,0.0,1022.1808890000001,0.0,100.0,2.417583333,0.205916667,238.13504571666667 -2016-05-02 07:00:00,0.0,1022.367667,0.066166667,100.0,2.62875,0.35375,238.13386296666667 -2016-05-02 08:00:00,0.0,1022.1038890000001,3.871916667,100.0,2.817583333,0.08391666699999999,238.1318354166667 -2016-05-02 09:00:00,0.0,1021.9524439999999,23.75,99.68333333,3.592,0.313583333,238.1304837 -2016-05-02 10:00:00,0.0,1021.65,61.39583333,97.11666667,4.7394166669999995,1.091,238.12879405 -2016-05-02 11:00:00,0.0,1021.520556,53.94916667,96.75833333,5.270916667,1.044083333,238.12710443333333 -2016-05-02 12:00:00,0.0,1020.822,67.76583333,95.90833333,6.802333332999999,0.61775,238.12710445000002 -2016-05-02 13:00:00,0.0,1020.162222,85.6525,95.68333333,8.014166667000001,0.816333333,238.12507686666666 -2016-05-02 14:00:00,0.0,1019.5445560000001,44.96666667,96.59166667,7.880083332999999,0.693,238.12423205000002 -2016-05-02 15:00:00,0.0,1018.9357779999999,32.04583333,96.025,7.1776666670000004,0.41166666700000004,238.12558376666667 -2016-05-02 16:00:00,0.0,1018.888222,12.79,95.75,7.439666667000001,0.6183333329999999,238.12406308333334 -2016-05-02 17:00:00,0.0,1018.5931109999999,0.8909999999999999,95.33333333,6.958166667,0.40066666700000003,238.12507686666666 -2016-05-02 18:00:00,0.0,1018.5642220000001,0.0,95.29166667,6.948083333,0.32075,238.12761133333333 -2016-05-02 19:00:00,0.0,1018.525,0.0,93.175,8.8075,1.071416667,238.128963 -2016-05-02 20:00:00,0.0,1018.1288890000001,0.0,91.65,8.611666667,1.4339166669999999,238.13048369999998 -2016-05-02 21:00:00,0.0,1017.575444,0.0,92.55833333,7.84025,1.5434166669999998,238.13132851666668 -2016-05-02 22:00:00,0.0,1016.942111,0.0,94.18333333,6.497833332999999,1.099,238.1318354166667 -2016-05-02 23:00:00,0.0,1016.8058890000001,0.0,91.66666667,8.31,1.72175,238.13200436666668 -2016-06-02 00:00:00,0.0,1016.4004449999999,0.0,90.68333333,8.626666667,1.52475,238.1167977 -2016-06-02 01:00:00,0.0,1015.893111,0.0,89.875,8.568333333,1.1385,238.1159528666667 -2016-06-02 02:00:00,0.0,1015.3837779999999,0.0,88.04166667,7.792083333,1.4020833330000002,238.11544595 -2016-06-02 03:00:00,0.0,1014.3827779999999,0.0,94.54166667,5.844666667,1.6519166669999998,238.11443216666666 -2016-06-02 04:00:00,0.0,1013.3945560000001,0.0,99.64166667,4.4745,1.88975,238.1124046333333 -2016-06-02 05:00:00,0.0,1012.924,0.0,100.0,2.551583333,0.367833333,238.11139086666665 -2016-06-02 06:00:00,0.0,1012.283778,0.0,100.0,4.9745,1.527833333,238.10987016666664 -2016-06-02 07:00:00,0.0,1011.907333,0.49200000000000005,100.0,4.91775,2.270333333,238.10699778333333 -2016-06-02 08:00:00,0.0,1011.85,15.68658333,100.0,4.483666667,1.74425,238.10530816666665 -2016-06-02 09:00:00,0.0,1011.7739999999999,59.34583333,100.0,4.684083333,1.300583333,238.1056460833333 -2016-06-02 10:00:00,0.0,1011.3548890000001,108.60166670000001,99.875,5.657416667000001,2.0691666669999997,238.10429436666664 -2016-06-02 11:00:00,0.0,1010.8504439999999,198.775,89.975,7.809333333,2.383666667,238.1036185 -2016-06-02 12:00:00,0.0,1010.1661109999999,245.7333333,81.1925,11.05916667,1.83625,238.10023926666668 -2016-06-02 13:00:00,0.0,1009.155333,248.3666667,76.74,11.7175,2.7865833330000003,238.10023926666668 -2016-06-02 14:00:00,0.0,1008.1185550000001,200.575,72.905,12.43333333,1.759333333,238.09973236666667 -2016-06-02 15:00:00,0.0,1007.382333,144.70833330000002,70.52166667,11.71416667,2.48175,238.09973236666667 -2016-06-02 16:00:00,0.0,1006.5210000000001,66.79166667,72.98083333,10.28833333,2.744166667,238.09973236666667 -2016-06-02 17:00:00,0.0,1005.4185560000001,6.411666667,78.54916667,8.674,1.775916667,238.09888755 -2016-06-02 18:00:00,0.0,1004.823,0.0,79.65583333,5.2860833330000006,0.22475,238.09939444999998 -2016-06-02 19:00:00,0.0,1004.1882220000001,0.0,76.53833333,6.171,1.23475,238.09973236666667 -2016-06-02 20:00:00,0.0,1003.6352220000001,0.0,74.04666667,5.10675,1.57425,238.10142203333336 -2016-06-02 21:00:00,0.0,1002.844556,0.0,81.71833333,4.383166667,0.997416667,238.10175995 -2016-06-02 22:00:00,0.0,1002.290667,0.0,83.2425,5.0650833330000005,1.54275,238.10040823333335 -2016-06-02 23:00:00,0.0,1001.589667,0.0,94.25,5.137583333,0.990833333,238.09939444999998 -2016-07-02 00:00:00,0.0,1000.9730000000001,0.0,93.4,5.142916667,2.019916667,238.06367473333333 -2016-07-02 01:00:00,0.0,1000.5445560000001,0.0,87.025,5.440666667,1.938333333,238.06546565 -2016-07-02 02:00:00,0.0,999.5705556,0.0,81.37833333,6.228166667000001,2.296833333,238.06944553333335 -2016-07-02 03:00:00,0.0,999.0219999999999,0.0,71.18583333,5.748083332999999,1.7085833330000002,238.0666596166667 -2016-07-02 04:00:00,0.0,998.3313332999999,0.0,80.10916667,5.6535,1.01,238.06626163333337 -2016-07-02 05:00:00,0.0,997.5955556,0.0,80.63916667,6.918583333,2.5540000000000003,238.06526663333338 -2016-07-02 06:00:00,0.0,997.0813332999999,0.0,68.2275,6.12925,1.9235,238.0676546 -2016-07-02 07:00:00,0.0,996.9808889000001,0.132833333,64.66,6.3975,2.242666667,238.07143543333336 -2016-07-02 08:00:00,0.0,997.0166667000001,12.06025,66.07583333,6.4245,2.6476666669999998,238.06944554999995 -2016-07-02 09:00:00,0.0,996.5764444,50.48666667,67.81166667,8.731583333,3.0884166669999997,238.07183343333335 -2016-07-02 10:00:00,0.0,996.8818889,70.48083333,70.67083333,10.98916667,2.187083333,238.07243043333332 -2016-07-02 11:00:00,0.0,997.3711111,63.86916667,76.24166667,11.1425,2.92275,238.0700425 -2016-07-02 12:00:00,15.403786300000002,998.0363332999999,70.43166667,89.49166667,9.646666667,2.0164166669999997,238.07143548333332 -2016-07-02 13:00:00,8.626005096,998.2597777999999,79.0775,92.025,8.913333332999999,1.9244166669999998,238.06845056666666 -2016-07-02 14:00:00,0.0,998.3186667000001,84.2275,87.85,8.9825,1.608416667,238.0666596166667 -2016-07-02 15:00:00,0.0,999.0971111,62.8575,87.48333333,9.140833333,1.3819166669999998,238.06367471666667 -2016-07-02 16:00:00,0.0,999.6343332999999,30.19241667,81.87333333,8.996666667000001,1.4278333330000001,238.0636747 -2016-07-02 17:00:00,0.0,1000.278,4.343,74.7975,8.4275,1.8805833330000001,238.06307775000005 -2016-07-02 18:00:00,0.0,1000.9721109999999,0.0,73.96416667,7.9205,2.011333333,238.06486866666668 -2016-07-02 19:00:00,0.0,1001.6701109999999,0.0,75.51083333,7.7645,2.0436666669999997,238.06526665 -2016-07-02 20:00:00,3.411365832,1001.8760000000001,0.0,75.4325,7.322166667,2.4335,238.0636747333334 -2016-07-02 21:00:00,0.0,1001.984333,0.0,78.03666667,7.2410000000000005,1.94325,238.06387373333337 -2016-07-02 22:00:00,0.0,1001.8455560000001,0.0,81.59166667,6.787916667,1.905083333,238.06387371666668 -2016-07-02 23:00:00,0.0,1001.3788890000001,0.0,83.28333333,6.57975,3.1389166669999997,238.06427169999998 -2016-08-02 00:00:00,0.0,1000.9597779999999,0.0,82.64166667,6.783583332999999,2.782083333,237.91383276666667 -2016-08-02 01:00:00,0.0,999.9008889,0.0,81.21666667,6.793583333,2.7744166669999997,237.9150267 -2016-08-02 02:00:00,0.0,998.9563332999999,0.0,82.03333333,6.758916667,2.49375,237.91741461666666 -2016-08-02 03:00:00,0.0,998.3984445,0.0,80.45,6.9445,2.7445,237.91940455 -2016-08-02 04:00:00,0.0,997.2195556,0.0,80.60666667,7.017416667000001,2.62525,237.92238945 -2016-08-02 05:00:00,0.0,996.1018889000001,0.0,82.08333333,6.4025,3.487666667,237.92656831666667 -2016-08-02 06:00:00,0.0,994.8651110999999,0.0,84.36666667,6.07525,3.641666667,237.92716528333335 -2016-08-02 07:00:00,0.0,993.9362222000001,0.224166667,85.28333333,6.8106666670000005,4.2068333330000005,237.92915523333332 -2016-08-02 08:00:00,5.048527344,993.1587777999999,7.92025,88.475,6.2735,4.99675,237.93114516666665 -2016-08-02 09:00:00,0.0,992.2303332999999,31.15166667,87.05833333,6.841416667000001,3.967833333,237.93413005000002 -2016-08-02 10:00:00,4.75476768,991.4607777999998,40.5125,85.00833333,7.981,4.420833333,237.93552301666668 -2016-08-02 11:00:00,33.61306586,991.5666667000002,34.06083333,90.025,8.343916667,3.7686666669999997,237.93612 -2016-08-02 12:00:00,82.41495485,991.1382222000001,21.56583333,93.43333333,7.931916667,2.698416667,237.93910488333336 -2016-08-02 13:00:00,78.83603407,990.8534445,46.75583333,98.04166667,6.543083332999999,1.56075,237.9410948166667 -2016-08-02 14:00:00,55.88155171,991.0092222000001,94.75591667,89.575,6.8455,3.68525,237.93870691666666 -2016-08-02 15:00:00,0.0,990.8392222000001,55.72416667,83.16666667,7.98975,3.472916667,237.94208978333336 -2016-08-02 16:00:00,0.0,990.9377777999999,22.00416667,81.19583333,7.512416667,3.439166667,237.94149281666668 -2016-08-02 17:00:00,0.0,991.5456667000001,11.29216667,79.83916667,7.455916667,3.4933333330000003,237.94348275000004 -2016-08-02 18:00:00,0.0,992.6588889000001,0.002833333,78.15166667,7.058416667,3.60125,237.94308476666666 -2016-08-02 19:00:00,0.0,993.3853332999998,0.0,77.28,6.856083333,3.8905,237.9452736833333 -2016-08-02 20:00:00,0.0,993.9093332999998,0.0,76.1775,6.938166667000001,4.09475,237.94825860000003 -2016-08-02 21:00:00,3.760512864,994.327,0.0,74.03,7.054416667000001,3.90025,237.95064649999998 -2016-08-02 22:00:00,0.0,994.8877777999999,0.0,70.12416667,7.515083333,4.114583333,237.9516414666667 -2016-08-02 23:00:00,0.0,995.477,0.0,70.53333333,7.63825,3.858333333,237.9516414666667 -2016-09-02 00:00:00,0.0,996.0627777999999,0.0,70.4875,7.401583333,4.0835,237.86905923333333 -2016-09-02 01:00:00,0.0,996.4926667000001,0.0,74.7275,7.04425,3.720416667,237.87144718333332 -2016-09-02 02:00:00,0.0,996.6166667000001,0.0,76.07,7.073583332999999,3.2585,237.87403406666667 -2016-09-02 03:00:00,0.0,996.3573332999998,0.0,77.23916667,6.791333333,2.8609166669999997,237.87542701666666 -2016-09-02 04:00:00,0.0,996.4166667000002,0.0,80.96833333,6.605083333,3.131166667,237.87761594999998 -2016-09-02 05:00:00,0.0,996.1382222000001,0.0,80.005,6.849,2.8265833330000003,237.87920789999998 -2016-09-02 06:00:00,0.0,995.596,0.0,80.77,6.738166667000001,2.94175,237.88159579999999 -2016-09-02 07:00:00,0.0,994.7004444,0.44783333299999994,81.8,6.72375,2.46925,237.87980485000003 -2016-09-02 08:00:00,0.0,994.0813332999999,18.23283333,81.31666667,6.798166667,1.8898333330000001,237.88020286666665 -2016-09-02 09:00:00,0.0,993.0092222000001,29.66083333,82.80833333,6.405,1.9373333330000002,237.87920789999998 -2016-09-02 10:00:00,0.0,991.5939999999999,22.88083333,86.0,6.049833333,2.166833333,237.87781495000002 -2016-09-02 11:00:00,49.07112348,988.9331110999999,19.84083333,93.61666667,5.8026666670000004,2.5306666669999998,237.8730391 -2016-09-02 12:00:00,10.64980478,985.3375555,96.2575,95.3,5.947,4.804833333,237.86886023333332 -2016-09-02 13:00:00,0.0,983.0895556,97.16166667,94.4,6.392333333,5.362166666999999,237.8638854333333 -2016-09-02 14:00:00,9.700529207999999,980.5758889,56.59666667,92.70833333,8.119083332999999,4.46325,237.85871158333336 -2016-09-02 15:00:00,64.19952113,979.2316667000001,28.98416667,91.18333333,8.556666667,4.1588333330000005,237.85433375 -2016-09-02 16:00:00,58.70797644,978.0912222000001,19.18675,90.48333333,8.18,2.749666667,237.85254278333332 -2016-09-02 17:00:00,11.80206557,977.0939999999999,2.503083333,90.86666667,8.206666667,3.08175,237.85035385 -2016-09-02 18:00:00,0.0,976.5745555,0.0,87.71666667,8.496666667000001,3.363416667,237.84816494999998 -2016-09-02 19:00:00,5.599601712,977.8687777999999,0.0,82.51583333,8.26125,4.3004166669999995,237.84776696666668 -2016-09-02 20:00:00,0.0,980.5756667000002,0.0,87.16666667,5.16225,3.680333333,237.8487619 -2016-09-02 21:00:00,0.0,983.0903332999999,0.0,90.70833333,3.779666667,3.87625,237.84896091666667 -2016-09-02 22:00:00,0.0,984.6064444,0.0,89.675,4.09,3.97275,237.84816494999998 -2016-09-02 23:00:00,0.0,985.8314444,0.0,93.14166667,3.6365,3.16875,237.84935891666666 -2016-10-02 00:00:00,0.0,987.0647777999999,0.0,91.5,3.5476666669999997,1.51375,237.93657265000002 -2016-10-02 01:00:00,0.0,987.5211111,0.0,88.64166667,2.97825,1.34075,237.9368241666667 -2016-10-02 02:00:00,0.0,987.7666667000001,0.0,88.28333333,2.8369166669999997,1.479916667,237.93588768333336 -2016-10-02 03:00:00,0.0,987.9083332999999,0.0,87.44166667,2.32975,1.6065,237.93720695000002 -2016-10-02 04:00:00,0.0,988.0166667000001,0.0,86.95833333,1.916916667,1.263333333,237.93966836666664 -2016-10-02 05:00:00,0.0,988.0808889,0.0,88.2,2.04625,1.681416667,237.94089751666664 -2016-10-02 06:00:00,0.0,987.9926667000001,0.0,84.075,2.953166667,1.935,237.94230378333336 -2016-10-02 07:00:00,0.0,988.5117777999999,0.49025,82.35833333,3.3256666669999997,2.1375833330000003,237.94396634999998 -2016-10-02 08:00:00,3.271448064,988.7637777999998,15.70441667,84.64166667,3.438583333,1.614333333,237.94317696666667 -2016-10-02 09:00:00,2.953148112,989.0882222000001,61.01083333,94.85833333,2.629833333,1.7029166669999998,237.94013185000003 -2016-10-02 10:00:00,6.124299647999999,989.3760000000001,81.94916667,93.14166667,3.25,2.01725,237.94192255 -2016-10-02 11:00:00,0.0,989.5853332999999,90.10416667,86.39166667,4.1995,2.49075,237.94153183333333 -2016-10-02 12:00:00,2.95356168,990.1392222000001,92.0725,93.20833333,3.69,2.3305833330000003,237.94246515 -2016-10-02 13:00:00,3.1113642,990.2510000000001,104.905,96.91666667,3.374583333,2.236916667,237.9453916 -2016-10-02 14:00:00,3.55133244,990.4058889,102.2825,97.09166667,3.782916667,2.365583333,237.94154763333333 -2016-10-02 15:00:00,3.066350424,990.6044444,79.9625,97.03333333,3.8680000000000003,1.733916667,237.94410395 -2016-10-02 16:00:00,0.0,991.1044444,33.23333333,94.74166667,4.336833333,1.9450833330000001,237.94261543333334 -2016-10-02 17:00:00,2.9710353119999997,991.8162222000001,3.2341666669999998,94.925,4.126333333,2.0180000000000002,237.9433493833333 -2016-10-02 18:00:00,14.95357786,992.7304444,0.01225,95.34166667,3.956083333,0.528083333,237.94459751666668 -2016-10-02 19:00:00,15.486878400000002,993.4853332999999,0.0,95.96666667,3.934416667,0.9059999999999999,237.94386195 -2016-10-02 20:00:00,2.854113528,993.8877777999999,0.0,94.09166667,4.068166667,1.7318333330000002,237.94327348333331 -2016-10-02 21:00:00,0.0,994.3554444,0.0,92.525,4.2234166669999995,2.42625,237.94539318333332 -2016-10-02 22:00:00,0.0,995.2186667000001,0.0,95.54166667,3.844083333,2.151333333,237.94432225000003 -2016-10-02 23:00:00,0.0,995.9721111,0.0,97.43333333,3.4810000000000003,1.775166667,237.94560358333334 -2016-11-02 00:00:00,0.0,996.6412222000001,0.0,97.79166667,3.4554166669999997,1.6465833330000001,237.9998335166667 -2016-11-02 01:00:00,0.0,997.2461111,0.0,97.70833333,3.45175,1.38325,238.00112434999997 -2016-11-02 02:00:00,8.049604032000001,997.6961110999999,0.0,97.80833333,3.406333333,1.2285,237.99950608333333 -2016-11-02 03:00:00,2.73979092,998.2843332999998,0.0,96.675,3.259416667,1.353083333,238.00003285 -2016-11-02 04:00:00,0.0,998.8436667000001,0.0,97.475,2.82625,1.5854166669999998,238.0012192833333 -2016-11-02 05:00:00,0.0,999.1201110999999,0.0,97.08333333,2.988666667,1.726666667,238.00270938333333 -2016-11-02 06:00:00,0.0,999.3818889,0.0,96.025,2.6070833330000003,0.484916667,237.9996104666667 -2016-11-02 07:00:00,0.0,999.6951111,0.569916667,96.18333333,2.725166667,1.062666667,237.99992686666667 -2016-11-02 08:00:00,0.0,1000.087778,16.09008333,96.725,2.66075,1.28125,237.99900463333333 -2016-11-02 09:00:00,0.0,1000.5568890000001,67.48,94.675,3.41675,1.7058333330000002,237.99768849999998 -2016-11-02 10:00:00,0.0,1000.937778,159.075,90.41666667,4.435916667,1.896,237.9970668166667 -2016-11-02 11:00:00,0.0,1001.158333,232.79166669999998,85.26666667,5.28125,2.161166667,237.99912328333332 -2016-11-02 12:00:00,0.0,1001.074,128.935,84.475,5.8441666670000005,2.266,237.99776285 -2016-11-02 13:00:00,0.0,1000.7382220000001,151.5891667,81.8575,6.1945,1.5621666669999998,237.99596428333334 -2016-11-02 14:00:00,0.0,1000.5857779999999,89.45666667,82.59083333,5.962416667,2.204916667,237.99612085 -2016-11-02 15:00:00,0.0,1000.4416669999999,127.78083329999998,80.90916667,5.74575,2.193166667,237.99991423333333 -2016-11-02 16:00:00,0.0,1000.4465560000001,62.2,81.325,5.5185,1.815916667,238.00401126666665 -2016-11-02 17:00:00,0.0,1000.604444,6.578333333,88.725,4.831583333,1.164166667,238.00544920000004 -2016-11-02 18:00:00,0.0,1000.9392220000001,0.0,94.775,3.6660000000000004,1.041916667,238.0056912166667 -2016-11-02 19:00:00,2.83347684,1000.95,0.0,94.96666667,3.3249166669999997,1.229083333,238.00771603333328 -2016-11-02 20:00:00,0.0,1000.942667,0.0,96.075,3.272916667,0.64075,238.00564691666668 -2016-11-02 21:00:00,0.0,1001.158333,0.0,92.91666667,2.810916667,0.255666667,238.00429126666666 -2016-11-02 22:00:00,0.0,1001.127444,0.0,90.79166667,2.50275,0.243083333,238.00551563333332 -2016-11-02 23:00:00,0.0,1000.9632220000001,0.0,89.925,2.175416667,0.02725,238.0053558666667 -2016-12-02 00:00:00,0.0,1000.8024439999999,0.0,97.46666667,1.310083333,0.047416667,238.04947920000004 -2016-12-02 01:00:00,0.0,1000.6833330000001,0.0,95.85,1.8333333330000001,0.129833333,238.05103101666666 -2016-12-02 02:00:00,0.0,1000.632333,0.0,94.16666667,1.747416667,0.26475,238.05011355000002 -2016-12-02 03:00:00,0.0,1000.516667,0.0,93.6,1.88625,0.40700000000000003,238.05067826666664 -2016-12-02 04:00:00,0.0,1000.1288890000001,0.0,92.98333333,2.241583333,0.64275,238.04979083333333 -2016-12-02 05:00:00,0.0,999.7323332999998,0.0,99.35,-0.136583333,0.235083333,238.05145023333333 -2016-12-02 06:00:00,0.0,999.3455556,0.0,100.0,-1.166833333,0.34025,238.05145655 -2016-12-02 07:00:00,0.0,999.1024444,1.0100833329999999,100.0,-1.1390833329999999,0.47325,238.05146448333335 -2016-12-02 08:00:00,0.0,998.8583332999999,20.63341667,100.0,-0.614083333,0.327,238.04839720000004 -2016-12-02 09:00:00,0.0,998.7372222000001,34.87583333,100.0,0.6385,0.35558333299999995,238.0491580833333 -2016-12-02 10:00:00,0.0,998.2195556,114.41666670000001,99.99166667,2.008833333,0.979666667,238.04765055000004 -2016-12-02 11:00:00,0.0,997.3553332999999,154.4708333,95.675,3.293583333,1.4275,238.0482911833333 -2016-12-02 12:00:00,0.0,996.447,123.49166670000001,90.65,3.839083333,1.8259166669999998,238.05003601666667 -2016-12-02 13:00:00,0.0,995.4102222000001,161.3475,83.74166667,4.52575,2.014166667,238.05017996666666 -2016-12-02 14:00:00,0.0,994.3602222000001,205.7833333,78.445,5.485416667000001,2.143416667,238.05071783333335 -2016-12-02 15:00:00,0.0,993.3528889,158.5658333,74.32,5.550083333,1.521333333,238.05054698333333 -2016-12-02 16:00:00,0.0,992.5445556,39.605,81.05166667,4.713666667,0.6635833329999999,238.0522823 -2016-12-02 17:00:00,0.0,992.1073332999998,7.5675,91.16666667,3.35675,0.0425,238.05345605 -2016-12-02 18:00:00,0.0,991.8916667000001,0.045583333,97.28333333,2.628916667,0.140916667,238.0539100666667 -2016-12-02 19:00:00,0.0,991.8156667000002,0.0,97.65,1.686666667,0.070583333,238.05426438333333 -2016-12-02 20:00:00,0.0,991.6274444000001,0.0,99.44166667,-0.251333333,0.24225,238.05445581666666 -2016-12-02 21:00:00,0.0,991.5048889000001,0.0,100.0,-1.41175,0.21475,238.05673055 -2016-12-02 22:00:00,0.0,991.2406667000001,0.0,100.0,-1.951583333,0.179333333,238.0560709 -2016-12-02 23:00:00,0.0,990.7230000000001,0.0,100.0,-2.168416667,0.165583333,238.05601236666666 -2016-02-13 00:00:00,0.0,990.4926667000001,0.0,100.0,-2.458583333,0.195916667,238.15021074999996 -2016-02-13 01:00:00,0.0,990.5882222000001,0.0,100.0,-2.447833333,0.271666667,238.1496739 -2016-02-13 02:00:00,0.0,990.3739999999999,0.0,100.0,-2.780583333,0.252333333,238.14949493333336 -2016-02-13 03:00:00,0.0,990.1833332999998,0.0,100.0,-3.17725,0.26716666699999997,238.14913705 -2016-02-13 04:00:00,0.0,989.9396667000001,0.0,100.0,-3.664416667,0.15575,238.14752646666662 -2016-02-13 05:00:00,0.0,989.6833332999998,0.0,100.0,-4.0105833330000005,0.255083333,238.14788436666663 -2016-02-13 06:00:00,0.0,989.4465556,0.0,100.0,-4.267666667,0.264916667,238.14520008333332 -2016-02-13 07:00:00,0.0,989.6902222000001,1.082416667,100.0,-3.8279166669999998,0.238583333,238.14305263333333 -2016-02-13 08:00:00,0.0,989.573,25.19583333,100.0,-2.470166667,0.08199999999999999,238.1392946166667 -2016-02-13 09:00:00,0.0,989.0705556,61.50583333,100.0,-1.288916667,0.00033333300000000006,238.13875773333334 -2016-02-13 10:00:00,0.0,988.5122222000001,98.05,99.56666667,-0.551166667,0.48775,238.1378629666667 -2016-02-13 11:00:00,2.682043272,987.6935556,137.675,96.96666667,0.803333333,1.004583333,238.13589448333332 -2016-02-13 12:00:00,0.0,987.0989999999999,103.6925,89.95833333,1.944666667,1.332166667,238.13356808333333 -2016-02-13 13:00:00,0.0,986.1793332999998,79.40166667,89.70833333,2.113083333,1.35575,238.13428393333334 -2016-02-13 14:00:00,0.0,985.1528889,48.465,93.375,1.95825,1.243916667,238.13499975 -2016-02-13 15:00:00,5.074027008,984.2886667000001,38.39833333,99.06666667,1.92,0.7849166670000001,238.13482078333334 -2016-02-13 16:00:00,12.86069916,983.4102222000001,14.30041667,100.0,1.87025,1.046916667,238.13446286666667 -2016-02-13 17:00:00,12.57693852,982.5504445,2.0015,100.0,1.5064166669999999,0.856166667,238.13661030000003 -2016-02-13 18:00:00,4.889313984,981.9097777999999,0.014583333,100.0,1.638333333,0.305,238.13732609999997 -2016-02-13 19:00:00,2.473511376,981.4730000000001,0.0,100.0,1.869833333,0.777333333,238.13696819999996 -2016-02-13 20:00:00,2.441784096,980.6862222000001,0.0,100.0,2.15975,0.796333333,238.13714715 -2016-02-13 21:00:00,0.0,980.0288889000001,0.0,100.0,2.477166667,0.284166667,238.13804189999996 -2016-02-13 22:00:00,4.925712432,979.2719999999999,0.0,100.0,2.60325,0.356416667,238.13822086666664 -2016-02-13 23:00:00,9.707986632,978.8073332999999,0.0,100.0,2.826333333,0.18600000000000003,238.13768401666667 -2016-02-14 00:00:00,26.91744502,978.2705556,0.0,100.0,3.03625,0.369333333,238.14001043333334 -2016-02-14 01:00:00,2.4050227680000003,977.9823332999998,0.0,100.0,3.022416667,0.150333333,238.14376843333335 -2016-02-14 02:00:00,4.889913312,978.1402222000002,0.0,100.0,3.0331666669999997,0.37991666700000004,238.14842123333335 -2016-02-14 03:00:00,2.41354584,978.3784444,0.0,100.0,3.1966666669999997,0.26716666699999997,238.15217925 -2016-02-14 04:00:00,4.920091416,978.6294444,0.0,100.0,3.252416667,0.24758333300000002,238.15665310000006 -2016-02-14 05:00:00,5.007177024,979.077,0.0,100.0,3.1655833330000003,0.33825,238.15987423333334 -2016-02-14 06:00:00,4.844800176000001,979.6902222000001,0.0,100.0,3.1855833330000003,0.39225,238.16220064999996 -2016-02-14 07:00:00,2.4050227680000003,980.1294444,0.34433333299999996,100.0,3.296833333,0.1265,238.16524285 -2016-02-14 08:00:00,2.5153073040000002,980.6794444,9.6215,99.9,4.305333333,1.102833333,238.16900084999997 -2016-02-14 09:00:00,3.220904712,980.9760000000001,19.11416667,96.1,5.0905833330000005,2.289083333,238.17150621666667 -2016-02-14 10:00:00,0.0,981.8456667000002,57.20916667,94.95,5.511916667,1.993,238.17419051666664 -2016-02-14 11:00:00,0.0,982.4843332999999,77.13166667,95.75833333,5.835833332999999,1.7928333330000001,238.1765169166667 -2016-02-14 12:00:00,0.0,983.2731110999999,28.9675,95.75,5.510416667,1.8021666669999998,238.17687478333335 -2016-02-14 13:00:00,5.601481392,983.9794444,79.8825,97.775,5.124833333,1.6604166669999998,238.1854645666667 -2016-02-14 14:00:00,2.9289509519999997,984.5853332999999,83.84333333,95.01666667,5.046083333,1.38425,238.19960188333334 -2016-02-14 15:00:00,7.793641344,985.3897777999999,17.025,96.14166667,4.531333333,0.906083333,238.20962326666665 -2016-02-14 16:00:00,5.0703510960000004,986.5946667000002,16.73166667,97.58333333,4.25925,0.690416667,238.20890745 -2016-02-14 17:00:00,0.0,987.5231110999999,6.374166667000001,98.95,4.139916667,0.64075,238.20586525 -2016-02-14 18:00:00,0.0,988.5005556,0.0,99.36666667,3.917333333,0.84625,238.2030020166667 -2016-02-14 19:00:00,0.0,989.3912222000001,0.0,98.6,3.6895,1.216416667,238.19960186666665 -2016-02-14 20:00:00,0.0,990.3088889,0.0,98.98333333,3.636916667,1.510083333,238.19763336666665 -2016-02-14 21:00:00,0.0,991.1030000000001,0.0,98.91666667,3.47525,0.9328333329999999,238.19477014999998 -2016-02-14 22:00:00,0.0,991.9221110999999,0.0,99.58333333,3.319666667,0.8118333329999999,238.1922648 -2016-02-14 23:00:00,0.0,992.7637777999998,0.0,99.51666667,3.3311666669999997,1.0695,238.19119105000001 -2016-02-15 00:00:00,0.0,993.7946667000001,0.0,100.0,3.263833333,0.30141666699999997,238.18850676666668 -2016-02-15 01:00:00,2.588767944,994.7907777999999,0.0,100.0,3.096,0.42575,238.18600139999998 -2016-02-15 02:00:00,4.9848867839999995,995.9721111,0.0,100.0,2.769583333,0.522166667,238.1845698 -2016-02-15 03:00:00,0.0,996.6353332999998,0.0,100.0,2.3595833330000002,0.6970000000000001,238.18349609999999 -2016-02-15 04:00:00,2.447319816,997.4481111,0.0,100.0,2.303416667,0.8058333329999999,238.1842119 -2016-02-15 05:00:00,0.0,998.6991111,0.0,100.0,2.2631666669999997,0.63675,238.18242238333335 -2016-02-15 06:00:00,0.0,1000.062333,0.0,100.0,2.1755,0.56725,238.1808117666666 -2016-02-15 07:00:00,0.0,1001.251556,0.274833333,99.20833333,1.9878333330000002,0.745916667,238.17991701666668 -2016-02-15 08:00:00,0.0,1002.6039999999999,7.8445,99.13333333,1.97675,0.863083333,238.17938013333335 -2016-02-15 09:00:00,0.0,1003.849111,28.28583333,99.5,2.28925,0.807,238.17794855 -2016-02-15 10:00:00,3.0610283039999997,1005.143222,37.98916667,98.825,2.67225,1.575,238.17508526666666 -2016-02-15 11:00:00,0.0,1006.575111,44.20833333,95.20833333,3.043166667,2.3005,238.17257993333337 -2016-02-15 12:00:00,0.0,1007.919667,75.4725,89.74166667,3.30425,2.30325,238.16989563333334 -2016-02-15 13:00:00,0.0,1009.1824439999999,27.59916667,87.025,3.375,2.5455,238.1697166666667 -2016-02-15 14:00:00,0.0,1010.387333,26.3975,86.66666667,2.928083333,2.8363333330000002,238.16935876666665 -2016-02-15 15:00:00,0.0,1011.7182220000001,20.72166667,87.3,2.706416667,2.53025,238.1688219 -2016-02-15 16:00:00,0.0,1013.1417779999999,10.04558333,89.10833333,2.5693333330000003,2.74375,238.1666745 -2016-02-15 17:00:00,0.0,1014.850111,1.6328333330000002,93.375,1.963,2.343916667,238.16488491666667 -2016-02-15 18:00:00,0.0,1016.365778,0.008916667,97.675,1.43225,1.537,238.16345330000001 -2016-02-15 19:00:00,0.0,1017.8505560000001,0.0,96.84166667,1.0693333329999999,1.8281666669999999,238.16273750000002 -2016-02-15 20:00:00,0.0,1018.8397779999999,0.0,93.85,1.106083333,1.6585833330000002,238.16023213333335 -2016-02-15 21:00:00,0.0,1019.720667,0.0,91.16666667,1.098083333,1.4798333330000002,238.1588005 -2016-02-15 22:00:00,0.0,1021.062333,0.0,90.46666667,0.8115,2.403,238.15593726666665 -2016-02-15 23:00:00,0.0,1022.3241109999999,0.0,88.96666667,0.585833333,2.032916667,238.15611623333334 -2016-02-16 00:00:00,0.0,1023.5564449999999,0.0,85.64166667,0.24725,3.026166667,238.15432668333335 -2016-02-16 01:00:00,0.0,1024.393667,0.0,86.21666667,-0.26,2.315083333,238.15378981666666 -2016-02-16 02:00:00,0.0,1025.356444,0.0,86.11666667,-0.703583333,2.360833333,238.15361084999998 -2016-02-16 03:00:00,0.0,1026.247111,0.0,84.70833333,-1.279166667,1.94775,238.15235819999998 -2016-02-16 04:00:00,0.0,1026.792667,0.0,84.01666667,-1.334833333,2.275416667,238.15110554999998 -2016-02-16 05:00:00,0.0,1027.247111,0.0,84.125,-1.4024166669999998,2.274166667,238.15003181666668 -2016-02-16 06:00:00,0.0,1027.7617779999998,0.0,83.875,-1.5954166669999998,1.9040000000000001,238.14788435000003 -2016-02-16 07:00:00,0.0,1028.419667,1.3216666670000001,84.78333333,-1.54925,2.0825,238.14627380000002 -2016-02-16 08:00:00,2.610987192,1029.211333,26.63975,83.88333333,-1.704,2.525833333,238.1464527666666 -2016-02-16 09:00:00,0.0,1030.077,79.22833333,82.90833333,-1.4955,2.3929166669999997,238.14341051666668 -2016-02-16 10:00:00,0.0,1030.618667,123.30833329999999,82.275,-1.179333333,2.568833333,238.13983148333332 -2016-02-16 11:00:00,0.0,1031.1068890000001,159.91666669999998,82.4,-0.794166667,2.556666667,238.13804191666668 -2016-02-16 12:00:00,0.0,1031.140667,223.225,80.0525,-0.144166667,2.8915833330000003,238.1364313666667 -2016-02-16 13:00:00,0.0,1030.740667,323.71666669999996,75.56666667,1.339833333,1.9419166669999999,238.13571555 -2016-02-16 14:00:00,0.0,1030.582333,177.54166669999998,76.28416667,0.989666667,2.153083333,238.1346418166667 -2016-02-16 15:00:00,0.0,1030.1955560000001,180.15,74.5225,1.4758333330000002,2.2608333330000003,238.1349997166666 -2016-02-16 16:00:00,0.0,1029.9058890000001,107.45666670000001,73.8525,1.4618333330000002,2.21025,238.13464184999998 -2016-02-16 17:00:00,0.0,1029.665667,19.21583333,78.59833333,0.289833333,1.73875,238.13482078333334 -2016-02-16 18:00:00,0.0,1029.759333,0.18983333300000002,92.90833333,-1.764583333,0.137166667,238.13714715 -2016-02-16 19:00:00,0.0,1029.564667,0.0,97.50833333,-2.441666667,0.095666667,238.13661029999994 -2016-02-16 20:00:00,0.0,1029.726,0.0,99.41666667,-2.058333333,0.775666667,238.13499973333333 -2016-02-16 21:00:00,0.0,1029.596556,0.0,92.475,-1.343666667,2.048166667,238.133926 -2016-02-16 22:00:00,0.0,1029.075444,0.0,91.48333333,-1.6730833330000001,1.8791666669999998,238.13374706666664 -2016-02-16 23:00:00,0.0,1028.2518890000001,0.0,89.675,-1.4815833330000001,2.33575,238.13070485 -2016-02-17 00:00:00,0.0,1027.419556,0.0,89.05833333,-1.337166667,1.7441666669999998,238.13052589999998 -2016-02-17 01:00:00,0.0,1026.602889,0.0,89.19166667,-1.136833333,1.137166667,238.1298100833333 -2016-02-17 02:00:00,0.0,1025.583778,0.0,89.53333333,-0.872833333,1.952833333,238.12963115 -2016-02-17 03:00:00,0.0,1024.9004439999999,0.0,89.56666667,-0.8440000000000001,2.997583333,238.1281994833333 -2016-02-17 04:00:00,0.0,1024.0661109999999,0.0,90.13333333,-1.160083333,2.59875,238.12802054999997 -2016-02-17 05:00:00,0.0,1022.878333,0.0,91.19166667,-1.379666667,2.4409166669999998,238.12891531666665 -2016-02-17 06:00:00,0.0,1021.8597779999999,0.0,92.63333333,-1.492083333,1.2665,238.1308838 -2016-02-17 07:00:00,0.0,1021.3587779999999,1.0795,91.13333333,-1.11625,1.769833333,238.12927323333335 -2016-02-17 08:00:00,0.0,1020.32,21.42525,91.10833333,-0.9365,2.2134166669999997,238.12819950000002 -2016-02-17 09:00:00,0.0,1018.971,69.74666667,90.68333333,-0.3605,2.313916667,238.12748366666665 -2016-02-17 10:00:00,0.0,1017.8817779999999,203.125,87.30833333,0.57075,2.162083333,238.1244415 -2016-02-17 11:00:00,0.0,1016.546,266.025,83.29166667,1.852583333,1.90225,238.12640995 -2016-02-17 12:00:00,0.0,1015.0391109999999,278.3083333,79.15916667,2.92825,1.7543333330000002,238.12479940000003 -2016-02-17 13:00:00,0.0,1013.7602220000001,238.75,75.745,3.254333333,2.102416667,238.12408358333334 -2016-02-17 14:00:00,0.0,1012.735222,83.1125,78.215,2.675916667,2.38225,238.12640995 -2016-02-17 15:00:00,0.0,1011.9896669999999,64.99916667,77.92916667,2.516666667,2.124833333,238.12605205 -2016-02-17 16:00:00,0.0,1011.4872220000001,37.645,77.715,2.3218333330000003,1.81925,238.12497835 -2016-02-17 17:00:00,0.0,1010.857333,8.0625,79.8775,1.9941666669999998,1.1181666670000001,238.12676785 -2016-02-17 18:00:00,0.0,1010.875,0.08966666699999999,85.95833333,1.4916666669999998,0.2805,238.12658889999997 -2016-02-17 19:00:00,0.0,1010.565667,0.0,91.66666667,0.812416667,0.062583333,238.12676785 -2016-02-17 20:00:00,0.0,1010.2941109999999,0.0,93.425,0.661166667,0.006916667,238.1249783333333 -2016-02-17 21:00:00,0.0,1010.397556,0.0,93.11666667,0.7885,0.1905,238.12408360000003 -2016-02-17 22:00:00,0.0,1010.1239999999999,0.0,93.59166667,0.785416667,0.313583333,238.12408360000003 -2016-02-17 23:00:00,0.0,1009.9573330000001,0.0,95.35833333,0.8390000000000001,0.48,238.12265193333334 -2016-02-18 00:00:00,0.0,1010.079444,0.0,93.63333333,0.784833333,0.10033333300000001,238.1219361166667 -2016-02-18 01:00:00,0.0,1010.258333,0.0,92.84166667,0.816583333,0.17875,238.1197887 -2016-02-18 02:00:00,0.0,1010.074,0.0,93.61666667,1.339166667,0.7145,238.12139926666669 -2016-02-18 03:00:00,0.0,1010.0392220000001,0.0,92.03333333,1.243666667,1.89025,238.11907290000002 -2016-02-18 04:00:00,0.0,1010.010778,0.0,91.34166667,1.242,2.153916667,238.1178202 -2016-02-18 05:00:00,0.0,1010.0475560000001,0.0,91.13333333,1.181916667,1.8134166669999998,238.11835708333334 -2016-02-18 06:00:00,0.0,1010.2701109999999,0.0,86.425,1.15825,1.40225,238.11638856666664 -2016-02-18 07:00:00,0.0,1010.434333,0.458583333,83.17166667,1.8068333330000002,1.183166667,238.11764125000002 -2016-02-18 08:00:00,0.0,1010.868667,7.299833333,81.86083333,1.6698333330000001,1.190583333,238.1178202333334 -2016-02-18 09:00:00,0.0,1011.2784439999999,25.82,83.09833333,1.513916667,1.377583333,238.11656753333332 -2016-02-18 10:00:00,0.0,1011.375,71.245,79.38583333,2.308833333,0.91075,238.11638856666664 -2016-02-18 11:00:00,0.0,1011.4142220000001,108.71666670000002,72.09,2.98325,1.4850833330000002,238.11603065 -2016-02-18 12:00:00,0.0,1011.449,125.95833329999999,72.79583333,3.485583333,1.4476666669999998,238.11388321666666 -2016-02-18 13:00:00,0.0,1010.8788890000001,107.35916670000002,74.80916667,3.62575,1.039833333,238.11388325 -2016-02-18 14:00:00,0.0,1010.652444,79.2425,72.99916667,3.906166667,0.95675,238.1129884833333 -2016-02-18 15:00:00,0.0,1010.647556,114.20333329999998,71.405,4.171083333,1.367083333,238.11191475 -2016-02-18 16:00:00,0.0,1010.6239999999999,96.32916667,69.59416667,4.382166667,0.889,238.11227266666666 -2016-02-18 17:00:00,0.0,1010.5044439999999,22.38508333,77.50166667,2.79975,0.5405,238.11424115 -2016-02-18 18:00:00,0.0,1011.1010000000001,0.15541666699999998,94.20833333,0.095666667,0.26,238.11459906666664 -2016-02-18 19:00:00,0.0,1011.364222,0.0,95.93333333,-1.138583333,0.47200000000000003,238.11531485 -2016-02-18 20:00:00,0.0,1011.277444,0.0,96.625,-1.7024166669999998,0.23800000000000002,238.11549379999997 -2016-02-18 21:00:00,0.0,1011.454444,0.0,97.7,-1.898333333,0.30675,238.1137042833333 -2016-02-18 22:00:00,0.0,1011.658333,0.0,98.98333333,-2.1364166669999998,0.34475,238.11424115 -2016-02-18 23:00:00,0.0,1011.927,0.0,98.68333333,-2.049833333,0.179416667,238.1135253333333 -2016-02-19 00:00:00,0.0,1012.301,0.0,97.78333333,-1.9571666669999999,0.144916667,238.11119891666667 -2016-02-19 01:00:00,0.0,1012.440667,0.0,99.21666667,-2.155583333,0.0945,238.1104831 -2016-02-19 02:00:00,0.0,1012.5010000000001,0.0,98.93333333,-2.2381666669999998,0.110916667,238.10958835 -2016-02-19 03:00:00,0.0,1012.475,0.0,96.84166667,-1.9555,0.15825,238.10887255 -2016-02-19 04:00:00,0.0,1012.421556,0.0,98.25,-1.795833333,0.0435,238.10815673333332 -2016-02-19 05:00:00,0.0,1012.696111,0.0,98.475,-1.70625,0.13175,238.10726196666664 -2016-02-19 06:00:00,0.0,1013.1127779999999,0.0,98.75833333,-1.5728333330000002,0.0,238.10690406666666 -2016-02-19 07:00:00,0.0,1013.581889,1.282666667,99.56666667,-1.5375,0.041583333,238.10565138333337 -2016-02-19 08:00:00,0.0,1014.1544439999999,15.9875,98.9,-1.080416667,0.196416667,238.1063671833333 -2016-02-19 09:00:00,0.0,1014.7137779999999,32.1675,97.14166667,-0.23399999999999999,0.253333333,238.10386185000004 -2016-02-19 10:00:00,0.0,1015.1975560000001,53.39833333,96.24166667,0.32458333300000003,0.25525,238.10296709999997 -2016-02-19 11:00:00,0.0,1015.353444,153.8916667,92.40833333,1.442,0.543083333,238.10260918333336 -2016-02-19 12:00:00,0.0,1015.458333,141.4833333,92.73333333,2.042,0.78025,238.10332499999996 -2016-02-19 13:00:00,0.0,1015.6461109999999,132.38333329999998,92.85833333,2.3545833330000003,1.464666667,238.10099858333334 -2016-02-19 14:00:00,0.0,1015.8083330000001,146.75,91.875,2.8050833330000002,1.955,238.10081964999998 -2016-02-19 15:00:00,0.0,1016.009333,96.98583333,92.9,2.661333333,1.9869999999999999,238.10117755 -2016-02-19 16:00:00,0.0,1016.2808890000001,58.96416667,95.70833333,2.44675,1.9025833330000002,238.10117755000002 -2016-02-19 17:00:00,0.0,1016.5294439999999,17.89366667,96.925,2.3169999999999997,1.85325,238.1004617166667 -2016-02-19 18:00:00,0.0,1016.9176669999999,0.23399999999999999,97.73333333,1.8928333330000002,1.258416667,238.10278813333335 -2016-02-19 19:00:00,0.0,1017.209333,0.0,99.48333333,-0.166416667,0.253166667,238.10189336666667 -2016-02-19 20:00:00,0.0,1017.1146669999999,0.0,100.0,-1.56775,0.2135,238.1036829 -2016-02-19 21:00:00,0.0,1016.916667,0.0,100.0,-2.213,0.20800000000000002,238.10421975000006 -2016-02-19 22:00:00,0.0,1016.540667,0.0,100.0,-2.6060000000000003,0.38341666700000004,238.10475659999997 -2016-02-19 23:00:00,0.0,1016.039667,0.0,99.0,-3.284916667,0.228083333,238.10350395 -2016-02-20 00:00:00,0.0,1016.334333,0.0,99.925,-3.5211666669999997,0.271583333,238.10099858333334 -2016-02-20 01:00:00,0.0,1015.6695560000001,0.0,100.0,-3.8510000000000004,0.148333333,238.10207231666666 -2016-02-20 02:00:00,0.0,1014.8778890000001,0.0,95.26666667,-3.6289999999999996,0.10166666699999999,238.0999249 -2016-02-20 03:00:00,0.0,1014.3681109999999,0.0,92.125,-2.209666667,0.381,238.09813533333332 -2016-02-20 04:00:00,0.0,1013.950445,0.0,89.775,1.05375,1.363666667,238.09724058333333 -2016-02-20 05:00:00,0.0,1013.167111,0.0,90.10833333,3.234916667,1.8733333330000002,238.09688266666663 -2016-02-20 06:00:00,2.634978744,1012.091111,0.0,93.44166667,2.489583333,1.911583333,238.09777743333333 -2016-02-20 07:00:00,21.47885784,1011.2685560000001,0.687333333,95.90833333,1.4278333330000001,1.8805,238.09759848333331 -2016-02-20 08:00:00,15.91494466,1010.339667,12.61825,95.725,1.879,1.5395833330000002,238.09795640000002 -2016-02-20 09:00:00,3.110908176,1010.049,43.07416667,95.61666667,3.15,2.845166667,238.0983143 -2016-02-20 10:00:00,4.458533616,1009.921556,32.515,96.425,3.273166667,3.6284166669999998,238.10099858333334 -2016-02-20 11:00:00,0.0,1009.3181109999999,60.23666667,95.19166667,4.0565,2.704166667,238.1009985833333 -2016-02-20 12:00:00,3.767300832,1008.990667,62.23583333,95.7,4.88975,3.783416667,238.10081965000003 -2016-02-20 13:00:00,4.276470384,1008.3994449999999,70.81833333,97.45,5.2466666669999995,3.695,238.10278813333335 -2016-02-20 14:00:00,0.0,1007.782333,59.03666667,97.075,5.999833333,3.9,238.10225126666668 -2016-02-20 15:00:00,3.936956328,1007.725,35.5825,98.44166667,6.353416667,3.674083333,238.10243025 -2016-02-20 16:00:00,0.0,1007.5980000000001,16.05333333,100.0,6.417583333,1.829666667,238.1029670666667 -2016-02-20 17:00:00,24.89582832,1007.1701109999999,3.793166667,99.78333333,6.58875,1.8899166669999998,238.10421975 -2016-02-20 18:00:00,32.58256279,1006.896556,0.046,98.09166667,7.5919166670000005,2.522916667,238.10815673333332 -2016-02-20 19:00:00,25.8054378,1006.812222,0.0,99.19166667,8.060083333,3.437083333,238.11101998333334 -2016-02-20 20:00:00,29.10330019,1006.317111,0.0,99.24166667,8.4225,3.363833333,238.11746229999997 -2016-02-20 21:00:00,10.84506084,1005.528889,0.0,98.98333333,8.8425,3.2485,238.12712576666664 -2016-02-20 22:00:00,21.77523286,1005.199,0.0,99.49166667,9.16,3.70575,238.14090518333333 -2016-02-20 23:00:00,10.01392128,1005.133333,0.0,99.15,9.568333333,4.68375,238.1557583 -2016-02-21 00:00:00,0.0,1005.092667,0.0,99.775,9.799166667,4.383583333,238.1724009666667 -2016-02-21 01:00:00,0.0,1005.489222,0.0,99.99166667,10.1375,4.24575,238.18671725000002 -2016-02-21 02:00:00,0.0,1006.022111,0.0,99.875,10.45833333,3.901916667,238.19423326666666 -2016-02-21 03:00:00,0.0,1006.202,0.0,99.05833333,10.84333333,3.96075,238.20013873333338 -2016-02-21 04:00:00,0.0,1006.703444,0.0,97.50833333,11.01166667,3.746416667,238.20157038333332 -2016-02-21 05:00:00,0.0,1007.2260000000001,0.0,93.075,11.04333333,3.107166667,238.20192826666667 -2016-02-21 06:00:00,0.0,1007.6436669999999,0.0,92.23333333,10.96083333,3.207666667,238.20085456666666 -2016-02-21 07:00:00,0.0,1008.5245560000001,2.472583333,95.2,10.5025,3.15025,238.19727548333333 -2016-02-21 08:00:00,0.0,1008.7926669999999,16.93,94.69166667,10.56333333,3.7595,238.1976334 -2016-02-21 09:00:00,0.0,1009.117667,43.90916667,96.6,10.47,4.115833333,238.1958438833333 -2016-02-21 10:00:00,0.0,1009.325,100.9358333,98.40833333,10.5625,3.9765,238.19405435 -2016-02-21 11:00:00,0.0,1009.0239999999999,129.2666667,99.08333333,10.94083333,3.6934166669999997,238.1940543333333 -2016-02-21 12:00:00,0.0,1008.553889,137.3416667,98.1,11.3375,4.4255,238.1945911833333 -2016-02-21 13:00:00,4.942727784,1008.2455560000001,89.09416667,96.64166667,11.28916667,5.106666667,238.19477014999998 -2016-02-21 14:00:00,0.0,1007.7941109999999,77.02916667,90.85,12.28833333,5.498416667000001,238.19655965 -2016-02-21 15:00:00,0.0,1007.5583330000001,48.56166667,88.675,12.515,5.943083333,238.19817026666666 -2016-02-21 16:00:00,0.0,1007.766667,16.70333333,87.525,12.48333333,5.410666667,238.19620176666663 -2016-02-21 17:00:00,0.0,1007.629889,3.82675,87.33333333,12.345,5.71775,238.19834920000002 -2016-02-21 18:00:00,0.0,1007.725,0.11225,87.26666667,12.1225,5.423833332999999,238.1979913 -2016-02-21 19:00:00,0.0,1007.393111,0.0,86.24166667,12.05333333,5.66975,238.19870711666667 -2016-02-21 20:00:00,0.0,1007.1010000000001,0.0,85.8,11.90083333,5.398416667,238.19870711666667 -2016-02-21 21:00:00,0.0,1007.195556,0.0,86.21666667,11.60583333,5.26375,238.19584385 -2016-02-21 22:00:00,0.0,1006.945111,0.0,87.6,11.215,5.304166667,238.19369643333334 -2016-02-21 23:00:00,0.0,1007.054889,0.0,86.84166667,10.7775,5.174666666999999,238.19441223333334 -2016-02-22 00:00:00,0.0,1006.430333,0.0,84.85833333,10.55916667,5.17025,238.19333851666667 -2016-02-22 01:00:00,0.0,1005.8455560000001,0.0,81.05833333,10.59416667,4.742583333,238.1913700166667 -2016-02-22 02:00:00,0.0,1005.089667,0.0,81.45,10.41,4.4814166669999995,238.19011736666667 -2016-02-22 03:00:00,0.0,1004.7156669999999,0.0,81.625,10.20916667,4.689916667,238.18904365000003 -2016-02-22 04:00:00,0.0,1004.525,0.0,82.60833333,10.01416667,4.747583333,238.18725410000002 -2016-02-22 05:00:00,0.0,1004.5798890000001,0.0,83.35,9.880833333,5.274,238.1870751333333 -2016-02-22 06:00:00,0.0,1004.527444,0.0,83.55,9.789166667,5.5115,238.18492771666664 -2016-02-22 07:00:00,0.0,1004.264222,2.2391666669999997,83.55,9.775,5.228916667,238.18349608333335 -2016-02-22 08:00:00,0.0,1004.182333,34.30658333,83.71666667,9.791666667000001,5.0085,238.1806328166667 -2016-02-22 09:00:00,0.0,1004.140667,69.65083333,82.35,10.06166667,5.141833333,238.17794855000002 -2016-02-22 10:00:00,0.0,1004.1,100.6525,82.26666667,10.23083333,4.772333333,238.17723271666668 -2016-02-22 11:00:00,0.0,1004.130889,117.15833329999998,82.80833333,10.3925,4.779833333,238.17580106666662 -2016-02-22 12:00:00,0.0,1003.982333,94.43916667,83.325,10.61333333,4.665583333,238.17544318333333 -2016-02-22 13:00:00,0.0,1003.288667,41.8425,84.1,10.49,5.1475,238.17472736666664 -2016-02-22 14:00:00,0.0,1002.6489999999999,49.4825,86.84166667,10.11583333,4.834416667,238.17562213333335 -2016-02-22 15:00:00,8.377077048,1002.5666669999999,48.095,92.075,9.679166667,4.179166667,238.17150618333335 -2016-02-22 16:00:00,8.66397768,1002.567667,41.75666667,96.85833333,9.331666667,4.029833333,238.17204306666667 -2016-02-22 17:00:00,0.0,1002.4705560000001,9.571416667000001,94.94166667,9.555833332999999,4.117416667,238.17508526666666 -2016-02-22 18:00:00,0.0,1002.102444,0.211833333,94.54166667,9.48,4.39825,238.20604421666667 -2016-02-22 19:00:00,4.140798672,1002.146556,0.0,92.23333333,9.760833332999999,3.82425,238.21785511666667 -2016-02-22 20:00:00,31.20877222,1002.6981109999999,0.0,94.70833333,8.709333333,3.337583333,238.2237605833333 -2016-02-22 21:00:00,23.077204899999998,1004.010889,0.0,97.53333333,5.640333332999999,3.177666667,238.22895021666668 -2016-02-22 22:00:00,8.769699096,1004.834333,0.0,98.06666667,4.033,1.723583333,238.23413986666665 -2016-02-22 23:00:00,22.53028118,1005.447111,0.0,98.3,3.359,2.1925,238.23754 -2016-02-23 00:00:00,24.18939694,1005.847556,0.0,99.85,2.509083333,1.075916667,238.24219278333337 -2016-02-23 01:00:00,13.13121506,1005.757333,0.0,100.0,2.0836666669999997,0.87675,238.24935091666666 -2016-02-23 02:00:00,7.661020607999999,1005.8034439999999,0.0,100.0,1.853083333,1.0593333329999999,238.25919333333331 -2016-02-23 03:00:00,14.85164393,1005.646556,0.0,100.0,1.7078333330000002,0.532083333,238.26706726666666 -2016-02-23 04:00:00,12.24275863,1005.695111,0.0,100.0,1.295416667,0.325916667,238.27404646666665 -2016-02-23 05:00:00,7.275615672000001,1005.764222,0.0,100.0,1.298,0.211833333,238.2799519333333 -2016-02-23 06:00:00,7.35197004,1005.776444,0.0,100.0,1.28575,0.40575,238.28353100000004 -2016-02-23 07:00:00,7.325054136,1005.9162220000001,1.178,100.0,1.2945,0.396583333,238.28800481666667 -2016-02-23 08:00:00,9.86151408,1006.346111,14.100999999999999,100.0,1.361,0.439833333,238.29748935 -2016-02-23 09:00:00,9.954294383999999,1006.836778,28.52833333,100.0,1.416916667,0.559083333,238.31448991666664 -2016-02-23 10:00:00,4.94965272,1007.0808890000001,95.68333333,100.0,1.843083333,0.7905833329999999,238.31699528333334 -2016-02-23 11:00:00,0.0,1007.4044439999999,100.3616667,99.94166667,2.5459166669999997,1.061166667,238.32075326666666 -2016-02-23 12:00:00,0.0,1007.639222,83.575,99.225,3.396583333,1.4055,238.32653159999998 -2016-02-23 13:00:00,0.0,1007.5441109999999,67.61666667,97.74166667,3.41625,1.285583333,238.3586117333333 -2016-02-23 14:00:00,0.0,1007.6558890000001,174.1083333,92.79166667,4.376333333,1.678916667,238.3588207166667 -2016-02-23 15:00:00,0.0,1007.9971109999999,110.26333329999999,91.31666667,4.855333333,1.9295,238.35694003333333 -2016-02-23 16:00:00,0.0,1008.353444,66.84333333,90.00833333,4.34075,1.357666667,238.35631316666664 -2016-02-23 17:00:00,0.0,1008.824556,14.94341667,94.525,3.977416667,1.56525,238.3540146 -2016-02-23 18:00:00,6.248443632000001,1009.819167,0.4755,97.11666667,3.08775,2.187666667,238.3521339166667 -2016-02-23 19:00:00,0.0,1010.7611109999999,0.0,99.43333333,1.922916667,1.865583333,238.35088014999997 -2016-02-23 20:00:00,0.0,1011.635278,0.0,98.68333333,2.0346666669999998,0.96925,238.34670091666666 -2016-02-23 21:00:00,0.0,1012.2422220000001,0.0,99.73333333,1.6266666669999998,0.603166667,238.34502924999995 -2016-02-23 22:00:00,0.0,1012.609722,0.0,99.70833333,1.325583333,0.985583333,238.34273065 -2016-02-23 23:00:00,0.0,1013.109167,0.0,99.28333333,1.5880833330000002,1.43625,238.33938726666668 -2016-02-24 00:00:00,0.0,1013.285,0.0,98.51666667,1.502083333,0.928583333,238.33771554999998 -2016-02-24 01:00:00,0.0,1013.390833,0.0,98.475,1.099583333,0.7340000000000001,238.33583491666664 -2016-02-24 02:00:00,0.0,1013.6422220000001,0.0,99.95833333,0.489833333,0.449,238.33332736666662 -2016-02-24 03:00:00,0.0,1013.708333,0.0,99.99166667,0.935916667,0.327916667,238.3314467333333 -2016-02-24 04:00:00,0.0,1013.6169449999999,0.0,99.98333333,0.563583333,0.9015833329999999,238.32977505 -2016-02-24 05:00:00,0.0,1013.8419439999999,0.0,100.0,0.18075,0.399916667,238.33040191666666 -2016-02-24 06:00:00,0.0,1013.708056,0.0,100.0,0.354,0.515416667,238.32873021666668 -2016-02-24 07:00:00,0.0,1013.9097220000001,5.881666667,100.0,0.010833333,0.336583333,238.32496888333336 -2016-02-24 08:00:00,0.0,1014.393333,21.17666667,100.0,1.1005,0.783166667,238.32099864999998 -2016-02-24 09:00:00,2.456676648,1014.615833,62.43583333,100.0,1.7170833330000002,0.8261666670000001,238.31828213333335 -2016-02-24 10:00:00,0.0,1014.5077779999999,77.43333333,99.64166667,2.31425,1.3940000000000001,238.31640148333335 -2016-02-24 11:00:00,0.0,1014.1663890000001,161.8416667,94.50833333,3.1654166669999997,1.85675,238.31284913333334 -2016-02-24 12:00:00,0.0,1013.7638890000001,178.4,87.35833333,3.8698333330000003,1.331416667,238.31201328333336 -2016-02-24 13:00:00,5.143522872,1012.905833,126.15083329999999,92.0,2.136583333,1.921583333,238.31284911666668 -2016-02-24 14:00:00,0.0,1011.9719439999999,154.975,89.89166667,3.748583333,1.7131666669999999,238.31452081666666 -2016-02-24 15:00:00,0.0,1011.207778,237.2,76.28916667,4.991083333,1.6319166669999998,238.31284914999995 -2016-02-24 16:00:00,0.0,1010.648333,80.48,75.7775,5.0785,1.22925,238.313476 -2016-02-24 17:00:00,0.0,1010.1322220000001,28.39,83.91583333,3.9388333330000003,0.617,238.313476 -2016-02-24 18:00:00,0.0,1009.9080560000001,0.461916667,97.06666667,1.5363333330000002,0.21641666699999998,238.3151477 -2016-02-24 19:00:00,0.0,1009.716389,0.0,99.725,0.181833333,0.2815,238.3164015 -2016-02-24 20:00:00,0.0,1009.415,0.0,99.975,-0.38433333299999994,0.4015,238.31472978333332 -2016-02-24 21:00:00,0.0,1009.0077779999999,0.0,100.0,-1.3245,0.24658333300000002,238.31640146666666 -2016-02-24 22:00:00,0.0,1008.8575,0.0,100.0,-1.7375,0.39441666700000005,238.31556565000002 -2016-02-24 23:00:00,0.0,1008.481944,0.0,100.0,-1.7685,0.309083333,238.3141029 -2016-02-25 00:00:00,0.0,1008.0325,0.0,100.0,-2.380416667,0.152166667,238.31493875 -2016-02-25 01:00:00,0.0,1007.858056,0.0,100.0,-2.68475,0.15233333300000002,238.31243121666668 -2016-02-25 02:00:00,0.0,1007.54,0.0,100.0,-3.26825,0.2955,238.3111774333333 -2016-02-25 03:00:00,0.0,1007.1238890000001,0.0,100.0,-3.872583333,0.13975,238.31055055 -2016-02-25 04:00:00,0.0,1006.825,0.0,100.0,-4.438916667,0.044666667,238.31075953333337 -2016-02-25 05:00:00,0.0,1007.167222,0.0,100.0,-4.74175,0.058416667,238.30804301666663 -2016-02-25 06:00:00,0.0,1007.259167,0.0,100.0,-5.145166667,0.058833333,238.3074161333333 -2016-02-25 07:00:00,0.0,1007.275556,4.8255,100.0,-5.232333333,0.131416667,238.30407276666665 -2016-02-25 08:00:00,0.0,1007.7427779999999,21.69583333,100.0,-2.664083333,0.30041666699999997,238.3015652 -2016-02-25 09:00:00,0.0,1008.0763890000001,114.54666670000002,98.76666667,0.32375,0.72975,238.29822181666668 -2016-02-25 10:00:00,0.0,1008.634167,261.03333330000004,93.5,1.6905,1.4881666669999998,238.29195298333332 -2016-02-25 11:00:00,0.0,1008.8922220000001,303.21666669999996,88.825,2.9699166669999997,1.73075,238.29257985 -2016-02-25 12:00:00,0.0,1008.908611,369.3083333,83.75,2.999583333,1.624166667,238.29174401666668 -2016-02-25 13:00:00,0.0,1008.682222,275.15,76.78833333,3.989833333,2.077666667,238.2909081833333 -2016-02-25 14:00:00,0.0,1008.6752779999999,112.5116667,72.39416667,3.6350833330000003,2.655333333,238.2913260833333 -2016-02-25 15:00:00,4.3685077439999995,1008.766667,145.8325,72.9675,3.43325,4.076333333,238.29007230000002 -2016-02-25 16:00:00,0.0,1008.6833330000001,124.3925,70.60666667,3.6010000000000004,1.5369166669999998,238.2894454166667 -2016-02-25 17:00:00,0.0,1008.8425,20.98466667,78.81,2.851416667,1.183,238.28986335000002 -2016-02-25 18:00:00,0.0,1009.218056,0.705333333,87.25833333,1.047666667,0.340083333,238.28986335000002 -2016-02-25 19:00:00,0.0,1009.575,0.0,92.93333333,-0.29891666699999997,0.130333333,238.28965438333333 -2016-02-25 20:00:00,0.0,1009.91,0.0,93.10833333,0.419,0.9925,238.28777375 -2016-02-25 21:00:00,0.0,1010.158889,0.0,95.74166667,0.506,1.3295,238.28777375 -2016-02-25 22:00:00,0.0,1010.425833,0.0,96.36666667,0.23875,0.35758333299999995,238.28422138333335 -2016-02-25 23:00:00,0.0,1010.515833,0.0,94.89166667,-0.065083333,0.253666667,238.28108698333332 -2016-02-26 00:00:00,0.0,1010.391944,0.0,94.73333333,0.140666667,0.418416667,238.28108696666666 -2016-02-26 01:00:00,0.0,1010.341389,0.0,95.95833333,-0.034833333,0.7155,238.28108696666666 -2016-02-26 02:00:00,0.0,1010.299444,0.0,96.84166667,-0.623166667,0.246416667,238.28129591666666 -2016-02-26 03:00:00,0.0,1009.965833,0.0,96.73333333,-1.274833333,0.3095,238.28087801666666 -2016-02-26 04:00:00,0.0,1009.724444,0.0,98.06666667,-2.0085,0.0635,238.27899734999997 -2016-02-26 05:00:00,0.0,1009.432222,0.0,100.0,-1.8840833330000002,0.01475,238.2781615166667 -2016-02-26 06:00:00,0.0,1009.208333,0.0,100.0,-1.74325,0.0,238.27774358333332 -2016-02-26 07:00:00,0.0,1009.0666669999999,7.207916667,100.0,-2.068333333,0.034166667000000005,238.2781615 -2016-02-26 08:00:00,0.0,1009.559444,40.01166667,100.0,-1.6411666669999998,0.0,238.27398226666665 -2016-02-26 09:00:00,0.0,1009.625,85.35,99.49166667,-0.32675,0.034166667000000005,238.27356435 -2016-02-26 10:00:00,0.0,1009.6663890000001,146.3666667,94.825,0.750833333,0.358333333,238.2702209666667 -2016-02-26 11:00:00,0.0,1009.465833,200.56666669999998,91.50833333,2.2215833330000003,0.758916667,238.27022096666667 -2016-02-26 12:00:00,0.0,1009.031944,192.675,88.58333333,2.7515,1.0805,238.27063890000002 -2016-02-26 13:00:00,0.0,1008.381667,217.625,80.7575,4.3876666669999995,0.5730833329999999,238.27063890000002 -2016-02-26 14:00:00,0.0,1007.664444,119.61666670000001,78.75416667,3.909333333,1.211083333,238.27147471666663 -2016-02-26 15:00:00,0.0,1007.240278,93.61666667,69.2175,3.6989166669999998,0.70475,238.2716837 -2016-02-26 16:00:00,0.0,1006.5397220000001,63.05166667,65.59583333,3.680583333,0.3295,238.27001201666667 -2016-02-26 17:00:00,0.0,1005.940833,19.83983333,71.77166667,3.111916667,0.192083333,238.2710568 -2016-02-26 18:00:00,0.0,1005.9175,0.598166667,90.30833333,1.61775,0.11775,238.26959408333335 -2016-02-26 19:00:00,0.0,1005.9994439999999,0.0,95.63333333,0.10441666699999999,0.0,238.26980303333337 -2016-02-26 20:00:00,0.0,1005.9,0.0,97.45,-1.1461666670000001,0.0,238.26959408333335 -2016-02-26 21:00:00,0.0,1005.8,0.0,97.225,-0.24908333300000002,0.055166667,238.26708654999996 -2016-02-26 22:00:00,0.0,1005.581667,0.0,95.11666667,0.00125,0.036833332999999996,238.26645963333337 -2016-02-26 23:00:00,0.0,1005.165,0.0,96.33333333,-1.052166667,0.0,238.26813135 -2016-02-27 00:00:00,0.0,1004.7508330000001,0.0,98.95,-1.5961666669999999,0.0,238.2683403166667 -2016-02-27 01:00:00,0.0,1004.7075,0.0,97.40833333,-1.1935,0.069,238.2645789833333 -2016-02-27 02:00:00,0.0,1004.506389,0.0,97.68333333,-0.648333333,0.013166667,238.26562378333335 -2016-02-27 03:00:00,0.0,1003.7072220000001,0.0,99.18333333,-1.197333333,0.02975,238.2666686166667 -2016-02-27 04:00:00,0.0,1003.240278,0.0,100.0,-2.09725,0.093083333,238.26687758333333 -2016-02-27 05:00:00,0.0,1003.015833,0.0,100.0,-2.238916667,0.1945,238.26792238333334 -2016-02-27 06:00:00,0.0,1002.6916669999999,0.0,100.0,-2.5220833330000003,0.3165,238.26750445000002 -2016-02-27 07:00:00,0.0,1002.734167,5.292833333,100.0,-2.300916667,0.510083333,238.26729550000002 -2016-02-27 08:00:00,0.0,1003.2172220000001,22.8775,96.68333333,-1.201916667,1.016666667,238.2624893666667 -2016-02-27 09:00:00,0.0,1003.559167,129.5625,87.71666667,1.700166667,0.3775,238.2599818333333 -2016-02-27 10:00:00,0.0,1003.591667,261.1833333,76.9775,2.56125,2.664666667,238.25810121666666 -2016-02-27 11:00:00,0.0,1003.641944,324.0583333,73.11083333,3.1875,3.6975833330000003,238.25454883333336 -2016-02-27 12:00:00,0.0,1003.440556,352.0083333,68.9025,4.187666667,4.09075,238.25350403333331 -2016-02-27 13:00:00,0.0,1003.040278,347.8,64.7925,5.181583333,4.03575,238.25308611666665 -2016-02-27 14:00:00,0.0,1003.035,306.4,62.305,5.816333332999999,3.8535,238.25183231666665 -2016-02-27 15:00:00,0.0,1003.366667,236.68333330000002,60.2425,6.020916667000001,3.931833333,238.24974269999998 -2016-02-27 16:00:00,0.0,1003.4,126.18916670000002,60.0075,5.664166667000001,3.87525,238.25016061666665 -2016-02-27 17:00:00,0.0,1003.634722,44.12383333,67.0825,4.6845,3.202083333,238.25308610000002 -2016-02-27 18:00:00,0.0,1004.31,0.8434166670000001,78.14166667,2.993083333,1.3985833330000002,238.25329505 -2016-02-27 19:00:00,0.0,1004.843056,0.0,83.56666667,2.116083333,1.3585833330000001,238.2545488333333 -2016-02-27 20:00:00,0.0,1004.991944,0.0,92.75833333,1.36725,1.028333333,238.25559365 -2016-02-27 21:00:00,0.0,1005.3425,0.0,90.575,0.597583333,0.49608333299999996,238.25371299999998 -2016-02-27 22:00:00,0.0,1005.776945,0.0,94.975,0.452166667,0.84125,238.25496676666663 -2016-02-27 23:00:00,0.0,1006.0752779999999,0.0,94.25833333,0.279166667,1.208916667,238.25433986666667 -2016-02-28 00:00:00,0.0,1006.1747220000001,0.0,89.78333333,0.000166667,1.4151666669999998,238.2505785333333 -2016-02-28 01:00:00,0.0,1006.5175,0.0,87.44166667,-0.193416667,2.273583333,238.24786205 -2016-02-28 02:00:00,0.0,1006.500278,0.0,87.09166667,-0.69325,1.9970833330000002,238.25016061666665 -2016-02-28 03:00:00,0.0,1006.5247220000001,0.0,85.85,-1.238583333,0.8430833329999999,238.24702620000002 -2016-02-28 04:00:00,0.0,1006.550833,0.0,86.95833333,-1.27075,1.13975,238.24786206666667 -2016-02-28 05:00:00,0.0,1007.168333,0.0,86.91666667,-1.025583333,1.8913333330000002,238.24535451666665 -2016-02-28 06:00:00,0.0,1007.2913890000001,0.0,87.30833333,-1.13675,1.6174166669999999,238.2455635 -2016-02-28 07:00:00,0.0,1007.334444,6.990833332999999,86.725,-0.946583333,2.869416667,238.24410076666666 -2016-02-28 08:00:00,0.0,1008.060556,38.14666667,86.31666667,-0.61675,3.379916667,238.24180216666664 -2016-02-28 09:00:00,0.0,1008.684167,154.325,84.23333333,0.5854166670000001,3.285333333,238.23971253333332 -2016-02-28 10:00:00,0.0,1008.9430560000001,199.5166667,79.52666667,1.876166667,4.5425833330000005,238.2388766833333 -2016-02-28 11:00:00,0.0,1009.4094439999999,231.1083333,75.08333333,3.043,4.5679166669999995,238.23866775000002 -2016-02-28 12:00:00,0.0,1009.575,229.79166669999998,73.26333333,3.744916667,4.791,238.2361602 -2016-02-28 13:00:00,0.0,1009.801111,221.41666669999998,72.53416667,4.1705,4.761,238.23762293333334 -2016-02-28 14:00:00,0.0,1010.275833,227.1166667,69.8425,4.903166667,4.9263333330000005,238.2346974666667 -2016-02-28 15:00:00,0.0,1010.416667,106.74166670000001,71.89416667,4.6515,4.938916667,238.23595125 -2016-02-28 16:00:00,0.0,1010.618333,62.63,72.32833333,4.29725,5.057916667,238.23490643333332 -2016-02-28 17:00:00,0.0,1010.891944,21.43216667,73.98583333,3.8490833330000003,5.048833333,238.23616018333334 -2016-02-28 18:00:00,0.0,1011.671111,0.623083333,73.84166667,3.376083333,4.919916667,238.23260786666663 -2016-02-28 19:00:00,0.0,1012.600833,0.0,75.22416667,2.815833333,3.62825,238.23469748333332 -2016-02-28 20:00:00,0.0,1013.183889,0.0,77.04166667,2.4275833330000003,2.8681666669999997,238.23323474999998 -2016-02-28 21:00:00,0.0,1013.259167,0.0,77.46,2.2833333330000003,3.088,238.23365266666667 -2016-02-28 22:00:00,0.0,1013.400833,0.0,77.7675,2.1070833330000003,2.7061666669999997,238.23365263333335 -2016-02-28 23:00:00,0.0,1013.4486109999999,0.0,78.83833333,1.95075,2.522583333,238.23156305 -2016-02-29 00:00:00,0.0,1012.990833,0.0,79.86583333,1.7976666669999999,2.421916667,238.2346974666667 -2016-02-29 01:00:00,0.0,1013.050833,0.0,80.63333333,1.7083333330000001,2.763666667,238.23323476666667 -2016-02-29 02:00:00,0.0,1013.174167,0.0,81.60833333,1.5725,2.5306666669999998,238.23093616666665 -2016-02-29 03:00:00,0.0,1012.9588890000001,0.0,82.25833333,1.587166667,3.078583333,238.2323989 -2016-02-29 04:00:00,0.0,1013.108333,0.0,84.01666667,1.3705833330000001,2.932583333,238.23114511666665 -2016-02-29 05:00:00,0.0,1013.1425,0.0,84.04166667,1.163,2.675583333,238.23114513333334 -2016-02-29 06:00:00,0.0,1012.981944,0.0,83.86666667,0.969333333,2.59875,238.2303092666667 -2016-02-29 07:00:00,0.0,1012.834167,6.084083333,82.79166667,0.9793333329999999,2.9715833330000003,238.23051826666665 -2016-02-29 08:00:00,0.0,1013.4180560000001,38.49583333,81.5325,1.45125,3.654083333,238.22821965000003 -2016-02-29 09:00:00,0.0,1013.591667,86.10416667,75.27083333,1.9373333330000002,3.876666667,238.22738383333333 -2016-02-29 10:00:00,0.0,1014.0763890000001,139.33333330000002,70.10833333,2.4780833330000003,4.771333333,238.22529418333338 -2016-02-29 11:00:00,0.0,1014.3425,266.4,65.97166667,3.30825,5.878083332999999,238.22404043333336 -2016-02-29 12:00:00,0.0,1014.4319439999999,176.2166667,65.1325,3.49325,5.621333333,238.22424936666664 -2016-02-29 13:00:00,0.0,1013.765833,173.95,62.46416667,3.8176666669999997,6.074583333,238.22404041666667 -2016-02-29 14:00:00,0.0,1013.583056,125.975,61.82666667,3.952583333,5.747999999999999,238.2229956333333 -2016-02-29 15:00:00,0.0,1013.7422220000001,120.34166670000002,61.50833333,4.023666667,5.566583333,238.22153290000003 -2016-02-29 16:00:00,0.0,1014.0427779999999,72.14083333,62.4775,3.985416667,4.517166667,238.22153288333334 -2016-02-29 17:00:00,0.0,1014.501667,26.27666667,64.975,3.809916667,3.259416667,238.22195081666666 -2016-02-29 18:00:00,0.0,1015.2947220000001,1.3545,67.93,3.357166667,3.2705,238.22153288333334 -2016-02-29 19:00:00,0.0,1015.9927779999999,0.0,69.13,2.8705,3.331416667,238.22257770000002 -2016-02-29 20:00:00,0.0,1016.5172220000001,0.0,71.88416667,1.8234166669999998,2.845333333,238.22153288333334 -2016-02-29 21:00:00,0.0,1016.667222,0.0,73.97333333,1.3993333330000002,2.41125,238.22174185000003 -2016-02-29 22:00:00,0.0,1016.775278,0.0,76.73166667,0.7260833329999999,2.149666667,238.2219508166667 -2016-02-29 23:00:00,0.0,1016.8,0.0,80.51,-0.005416666999999999,1.3791666669999998,238.22215978333335 -2016-01-03 00:00:00,0.0,1016.5325,0.0,89.26666667,-0.842583333,0.243,238.0807768666666 -2016-01-03 01:00:00,0.0,1016.533611,0.0,91.84166667,-1.098416667,0.44608333299999997,238.08364011666663 -2016-01-03 02:00:00,0.0,1016.6833330000001,0.0,94.825,-2.1295833330000002,0.000583333,238.08632443333332 -2016-01-03 03:00:00,0.0,1016.398889,0.0,95.95,-3.1583333330000003,0.016416667,238.08847185000002 -2016-01-03 04:00:00,0.0,1016.6425,0.0,96.89166667,-3.7833333330000003,0.0,238.08954556666671 -2016-01-03 05:00:00,0.0,1016.6836109999999,0.0,97.51666667,-4.344916667,0.0,238.09222989999998 -2016-01-03 06:00:00,0.0,1016.608333,0.02725,98.375,-4.704666667,0.006166667,238.09384045 -2016-01-03 07:00:00,0.0,1016.725,9.4595,98.625,-4.630916667,0.01,238.09401939999998 -2016-01-03 08:00:00,0.0,1016.516389,43.90833333,98.675,-1.693416667,0.136666667,238.09419836666666 -2016-01-03 09:00:00,0.0,1016.708333,148.4133333,86.95833333,-0.07675,0.66275,238.09598788333332 -2016-01-03 10:00:00,0.0,1016.4075,271.9583333,78.12833333,0.8325,1.5483333330000002,238.0956299833333 -2016-01-03 11:00:00,0.0,1015.8644439999999,331.09166669999996,72.33083333,2.092,1.410166667,238.09509311666662 -2016-01-03 12:00:00,0.0,1014.871944,348.1416667,65.85583333,3.58675,1.333333333,238.09491416666663 -2016-01-03 13:00:00,0.0,1013.8133330000001,347.2916667,58.87083333,4.91125,1.5695,238.09527206666664 -2016-01-03 14:00:00,0.0,1012.630278,252.8833333,54.75666667,5.6254166670000005,1.060416667,238.09491418333332 -2016-01-03 15:00:00,0.0,1011.773611,151.15,53.70583333,6.2405,0.350916667,238.09563 -2016-01-03 16:00:00,0.0,1011.097778,54.80083333,55.94666667,5.872166667,0.340416667,238.09616686666666 -2016-01-03 17:00:00,0.0,1010.2388890000001,15.44483333,60.64083333,5.757083333,0.921583333,238.09724058333333 -2016-01-03 18:00:00,0.0,1009.8922220000001,0.412583333,68.87666667,4.3310833330000005,1.973916667,238.09759846666668 -2016-01-03 19:00:00,0.0,1009.446667,0.0,95.975,1.7630000000000001,0.602833333,238.09580895 -2016-01-03 20:00:00,0.0,1008.573333,0.0,93.5,1.6351666669999998,0.141916667,238.0970616333333 -2016-01-03 21:00:00,2.394925224,1007.923333,0.0,95.0,1.9435,0.856916667,238.09580894999996 -2016-01-03 22:00:00,0.0,1007.1055560000001,0.0,95.99166667,2.256333333,1.155916667,238.09401943333333 -2016-01-03 23:00:00,0.0,1006.131389,0.0,97.44166667,2.39025,1.3385833329999999,238.09384046666665 -2016-02-03 00:00:00,2.703677784,1005.331111,0.0,97.20833333,2.6725,1.0576666670000001,238.1117358 -2016-02-03 01:00:00,0.0,1004.263611,0.0,97.525,3.049833333,1.193666667,238.11406219999995 -2016-02-03 02:00:00,0.0,1003.288611,0.0,97.225,3.304416667,0.988666667,238.11620961666668 -2016-02-03 03:00:00,0.0,1002.1377779999999,0.0,96.025,3.5659166669999998,1.320916667,238.11513591666667 -2016-02-03 04:00:00,0.0,1001.073333,0.0,96.76666667,4.529833333,1.253666667,238.11603066666666 -2016-02-03 05:00:00,0.0,1000.380278,0.0,96.1,5.19475,1.90725,238.11620959999996 -2016-02-03 06:00:00,0.0,999.2641667000001,0.01225,94.48333333,5.686583333,2.356833333,238.11567275000002 -2016-02-03 07:00:00,0.0,998.3897222,6.22025,92.78333333,5.7035,2.034416667,238.11567276666665 -2016-02-03 08:00:00,0.0,997.8816667000001,45.82666667,94.125,5.432083333,2.1488333330000002,238.11603065 -2016-02-03 09:00:00,0.0,997.0219444,81.695,95.10833333,6.117916667,2.48325,238.11352533333334 -2016-02-03 10:00:00,7.510672992000001,995.9641667000001,75.17166667,94.325,6.917999999999999,3.4415,238.11316741666667 -2016-02-03 11:00:00,22.36194463,995.1891667000001,88.78916667,93.50833333,6.991416667,4.072416667,238.10958834999997 -2016-02-03 12:00:00,21.84170695,994.8186111,112.0,89.31666667,6.46725,4.01325,238.10851463333336 -2016-02-03 13:00:00,0.0,995.2497222000001,172.04166669999998,87.31666667,5.839333333,1.918916667,238.1077988333333 -2016-02-03 14:00:00,0.0,995.3002777999999,118.99166670000001,83.65833333,5.487166667,1.73975,238.107083 -2016-02-03 15:00:00,0.0,994.9733332999999,86.22583333,82.7725,5.4285,0.67375,238.10708301666662 -2016-02-03 16:00:00,0.0,994.6075,70.41916667,79.04,5.426833332999999,0.791583333,238.10672509999998 -2016-02-03 17:00:00,0.0,994.3916667000001,40.095,83.41666667,4.707333333,1.057416667,238.10511449999998 -2016-02-03 18:00:00,0.0,994.6166667000001,3.2735,89.125,3.460416667,2.072666667,238.10583033333333 -2016-02-03 19:00:00,0.0,994.6513889,0.0,87.40833333,2.167,1.9550833330000001,238.10368290000005 -2016-02-03 20:00:00,0.0,994.9416667000002,0.0,85.23333333,2.6661666669999997,2.5053333330000003,238.10386186666665 -2016-02-03 21:00:00,0.0,994.9669444,0.0,85.91666667,3.101416667,2.07875,238.10064068333335 -2016-02-03 22:00:00,0.0,994.9838889,0.0,88.55,3.6840833330000002,1.6085833330000001,238.10064068333335 -2016-02-03 23:00:00,6.632352384,994.7569444000001,0.0,95.11666667,2.857333333,2.591166667,238.099388 -2016-03-03 00:00:00,0.0,994.7755556,0.0,92.575,2.9186666669999997,2.980416667,238.22278666666668 -2016-03-03 01:00:00,0.0,995.0094444,0.0,89.44166667,3.0910833330000003,3.070333333,238.22069704999998 -2016-03-03 02:00:00,0.0,995.2166667000001,0.0,86.575,3.0035,2.173,238.22132393333334 -2016-03-03 03:00:00,0.0,995.2583332999999,0.0,86.75833333,2.93075,2.82125,238.21902536666664 -2016-03-03 04:00:00,0.0,995.5011111,0.0,87.65,2.81175,2.5118333330000002,238.21902536666667 -2016-03-03 05:00:00,0.0,995.7663889,0.0,89.40833333,2.6935,2.65625,238.2188164 -2016-03-03 06:00:00,0.0,995.6083332999999,0.025333333,88.74166667,2.5285833330000003,2.894583333,238.21756265 -2016-03-03 07:00:00,0.0,995.5580556,6.293833332999999,89.93333333,1.986666667,2.6920833330000002,238.21693575000003 -2016-03-03 08:00:00,0.0,995.65,67.79083333,87.025,3.0051666669999997,2.5895,238.21672676666665 -2016-03-03 09:00:00,0.0,995.6591667000001,137.8458333,81.57583333,4.0824166669999995,1.71125,238.21442818333333 -2016-03-03 10:00:00,0.0,995.6408332999998,113.275,84.15833333,3.683583333,2.195833333,238.21421923333332 -2016-03-03 11:00:00,0.0,995.5425,85.3225,86.14166667,3.87475,2.231,238.21442818333333 -2016-03-03 12:00:00,0.0,996.0180556,65.0625,87.33333333,3.847083333,2.4145,238.21296545000004 -2016-03-03 13:00:00,0.0,996.4594444,48.54583333,93.65,3.5585,0.8350833329999999,238.2142192166667 -2016-03-03 14:00:00,0.0,996.7255556,54.6875,96.725,3.379083333,0.23425,238.21233855 -2016-03-03 15:00:00,0.0,997.2522222000001,37.22333333,94.86666667,3.585916667,0.028583333,238.21212958333334 -2016-03-03 16:00:00,0.0,998.035,63.38,94.44166667,3.853,0.17425,238.21003998333336 -2016-03-03 17:00:00,0.0,998.6522222000001,11.23783333,93.69166667,3.6888333330000003,0.056416667000000004,238.20899518333337 -2016-03-03 18:00:00,0.0,999.5441667000001,1.6731666669999998,95.05,3.13375,0.054916667,238.21045793333334 -2016-03-03 19:00:00,0.0,1000.351667,0.0,99.41666667,0.712333333,0.028166667000000003,238.21275649999998 -2016-03-03 20:00:00,0.0,1000.976389,0.0,100.0,-0.833666667,0.0,238.20983103333333 -2016-03-03 21:00:00,0.0,1001.535,0.0,100.0,-0.94025,0.027666667000000002,238.21066688333337 -2016-03-03 22:00:00,0.0,1001.8755560000001,0.0,100.0,-0.94375,0.031333333,238.21066688333335 -2016-03-03 23:00:00,0.0,1002.034167,0.0,100.0,-0.565416667,0.020666667,238.21045791666668 -2016-04-03 00:00:00,0.0,1001.95,0.0,100.0,-1.9175,0.19775,238.3659254 -2016-04-03 01:00:00,0.0,1002.15,0.0,100.0,-2.186583333,0.0,238.36091031666663 -2016-04-03 02:00:00,0.0,1002.006944,0.0,100.0,-2.0659166669999998,0.004916667,238.35902968333332 -2016-04-03 03:00:00,0.0,1001.766389,0.0,100.0,-2.3795,0.042833333,238.3577759 -2016-04-03 04:00:00,0.0,1001.4738890000001,0.0,100.0,-2.369583333,0.58275,238.35464146666664 -2016-04-03 05:00:00,0.0,1000.688889,0.0,100.0,-2.007916667,0.5720000000000001,238.3506712 -2016-04-03 06:00:00,0.0,999.7144444,0.08508333300000001,100.0,-2.052083333,0.619583333,238.3467009166667 -2016-04-03 07:00:00,0.0,999.2069444,10.78308333,100.0,-1.293833333,0.6205,238.34523819999995 -2016-04-03 08:00:00,0.0,998.5725,58.235,100.0,0.0995,1.118083333,238.3385514 -2016-04-03 09:00:00,2.8444173360000002,997.6222222000001,104.1791667,100.0,0.8028333329999999,2.356416667,238.33479011666665 -2016-04-03 10:00:00,0.0,996.4633332999998,116.29166670000001,98.54166667,1.9909166669999998,2.221,238.32935713333336 -2016-04-03 11:00:00,0.0,995.3461110999999,131.8583333,91.06666667,3.4906666669999997,3.114,238.32622268333338 -2016-04-03 12:00:00,0.0,994.1141667000002,130.2,82.91416667,4.233416667,3.94025,238.32622268333333 -2016-04-03 13:00:00,0.0,992.8788889,158.16666669999998,76.415,5.331333333,4.1975,238.32267033333335 -2016-04-03 14:00:00,0.0,991.7727777999999,87.38583333,72.99916667,5.74025,4.251,238.32329721666665 -2016-04-03 15:00:00,4.997531232,991.1075,47.265,85.09166667,4.5555,5.022,238.32246139999998 -2016-04-03 16:00:00,16.82704853,990.8916667000001,17.61416667,95.56666667,3.20225,3.757583333,238.32099864999998 -2016-04-03 17:00:00,33.26132081,990.7572222000001,8.032583333,98.125,2.4003333330000003,2.71175,238.31932698333335 -2016-04-03 18:00:00,6.941140296,990.4758332999999,0.84325,99.48333333,2.684416667,2.79475,238.31849111666668 -2016-04-03 19:00:00,3.47888892,990.6158332999998,0.0,99.05,3.179833333,3.119916667,238.31890901666665 -2016-04-03 20:00:00,9.484604856,990.3744444,0.0,99.425,3.37975,2.591416667,238.31744631666666 -2016-04-03 21:00:00,6.62491308,990.2,0.0,100.0,3.457583333,2.5085,238.31452083333332 -2016-04-03 22:00:00,0.0,990.0408332999999,0.0,100.0,3.599166667,2.15675,238.31243121666662 -2016-04-03 23:00:00,12.85007935,989.7902777999999,0.0,100.0,3.688333333,0.889,238.30887888333334 -2016-05-03 00:00:00,11.31286505,989.6261111,0.0,100.0,3.799083333,1.45175,238.13132851666668 -2016-05-03 01:00:00,12.0349957,989.5652777999999,0.0,100.0,3.58475,0.050166667000000005,238.1294699 -2016-05-03 02:00:00,2.4862983119999997,989.2325,0.0,100.0,3.2039166669999997,0.078,238.1301457666667 -2016-05-03 03:00:00,0.0,988.8744444,0.0,100.0,3.402333333,0.070666667,238.12980783333333 -2016-05-03 04:00:00,4.918263504,988.7247222000001,0.0,100.0,3.7385,0.482333333,238.12913196666662 -2016-05-03 05:00:00,14.68466443,988.8008332999999,0.0,100.0,3.854333333,0.285833333,238.12963886666668 -2016-05-03 06:00:00,7.282888512,988.7991667000001,0.017416667,100.0,3.441666667,0.08416666699999999,238.12879404999998 -2016-05-03 07:00:00,7.238626104,988.9852778,3.0460833330000003,100.0,3.381333333,0.0525,238.12693546666665 -2016-05-03 08:00:00,4.8100455360000005,989.4088889000001,18.82,100.0,3.783833333,0.0,238.12541480000002 -2016-05-03 09:00:00,2.495569704,989.5841667000001,32.28833333,100.0,4.430333333,0.1615,238.1249079 -2016-05-03 10:00:00,0.0,989.9663889000001,85.6675,99.34166667,4.876333333,1.27725,238.12541480000002 -2016-05-03 11:00:00,0.0,990.4944444,108.405,93.10833333,5.77925,2.98075,238.12524583333334 -2016-05-03 12:00:00,0.0,990.5566667000002,82.165,92.375,5.68975,2.400583333,238.12271138333332 -2016-05-03 13:00:00,0.0,990.4841667000002,136.13666669999998,89.7,6.047333332999999,2.01575,238.12304930000002 -2016-05-03 14:00:00,0.0,990.725,114.90583329999998,88.925,6.026416667,1.19725,238.12220448333335 -2016-05-03 15:00:00,0.0,990.7347222000001,144.20833330000002,85.425,6.65625,0.9976666670000001,238.12321828333336 -2016-05-03 16:00:00,0.0,990.9583332999998,86.68166667,85.96666667,6.588333333,0.93825,238.12372515 -2016-05-03 17:00:00,0.0,991.1502777999999,41.15833333,87.875,6.0686666670000005,1.051666667,238.12102174999998 -2016-05-03 18:00:00,0.0,991.6186111,6.022083332999999,94.46666667,4.88425,0.24325,238.12203553333333 -2016-05-03 19:00:00,0.0,991.9266667000002,0.0,99.90833333,3.1358333330000003,0.436166667,238.12237345000003 -2016-05-03 20:00:00,0.0,992.3919444,0.0,100.0,2.7615,0.363,238.12304931666662 -2016-05-03 21:00:00,0.0,992.4338889,0.0,100.0,2.021083333,0.14675,238.12524583333334 -2016-05-03 22:00:00,0.0,992.7333332999999,0.0,100.0,1.109583333,0.19325,238.12423205000002 -2016-05-03 23:00:00,0.0,992.9425,0.0,100.0,0.8225,0.15183333300000001,238.12524583333334 -2016-06-03 00:00:00,0.0,993.2508332999998,0.0,100.0,0.881166667,0.21666666699999998,238.09854965 -2016-06-03 01:00:00,0.0,993.3922222000001,0.0,100.0,1.226666667,0.377833333,238.0973668833333 -2016-06-03 02:00:00,0.0,993.3994444,0.0,100.0,1.432166667,0.500583333,238.0995634 -2016-06-03 03:00:00,0.0,993.3172222000001,0.0,100.0,1.12375,0.963166667,238.09939444999998 -2016-06-03 04:00:00,0.0,993.6761111,0.0,100.0,1.498666667,1.34375,238.0992254833333 -2016-06-03 05:00:00,0.0,994.0927777999999,0.0,100.0,1.226,0.72325,238.09939443333334 -2016-06-03 06:00:00,0.0,994.2833332999999,0.12175,100.0,1.214916667,0.81425,238.0987185833333 -2016-06-03 07:00:00,0.0,994.3425,7.781333332999999,99.525,1.3528333330000002,0.213916667,238.09770483333332 -2016-06-03 08:00:00,0.0,994.7844444,47.77833333,97.69166667,1.6480000000000001,0.2615,238.09804275 -2016-06-03 09:00:00,0.0,994.9838889,136.7166667,94.0,3.394083333,0.82125,238.09669101666665 -2016-06-03 10:00:00,0.0,995.25,127.875,88.35833333,3.8489999999999998,1.051083333,238.09517036666668 -2016-06-03 11:00:00,0.0,995.2336111,121.74583329999999,85.55833333,4.350416667,1.200333333,238.09736686666665 -2016-06-03 12:00:00,0.0,995.14,108.70416670000002,89.95,3.863833333,1.4105833330000002,238.09770481666666 -2016-06-03 13:00:00,5.519656896,994.725,61.59333333,95.55,3.379916667,1.4236666669999998,238.09770479999997 -2016-06-03 14:00:00,23.72616302,994.6413889,131.725,98.65833333,3.007083333,1.8420833330000002,238.09483245 -2016-06-03 15:00:00,0.0,994.7091667000001,121.75833329999999,95.38333333,3.88,1.8455833330000002,238.09212903333332 -2016-06-03 16:00:00,0.0,994.7577777999999,70.46666667,95.44166667,3.883,2.071583333,238.09618414999997 -2016-06-03 17:00:00,0.0,994.8005555999999,28.43083333,99.35,2.5195,2.732583333,238.10851846666665 -2016-06-03 18:00:00,0.0,995.1761111,3.1774166669999997,99.15833333,2.144333333,1.694,238.1102081 -2016-06-03 19:00:00,0.0,995.5680556,0.0,99.2,1.978083333,1.28,238.1132494333333 -2016-06-03 20:00:00,0.0,996.0930556,0.0,99.95,1.712083333,1.178833333,238.1142632 -2016-06-03 21:00:00,2.676688608,996.5758332999999,0.0,99.91666667,1.503916667,1.4424166669999998,238.1117287833333 -2016-06-03 22:00:00,0.0,996.7252777999998,0.0,100.0,0.8843333329999999,0.564083333,238.110715 -2016-06-03 23:00:00,0.0,996.9436111,0.0,100.0,1.25925,0.544166667,238.11274258333333 -2016-07-03 00:00:00,0.0,997.2916667000002,0.0,99.99166667,0.9325,0.23025,238.06705758333337 -2016-07-03 01:00:00,0.0,997.4919444,0.0,99.95,0.96725,0.7285,238.06705760000003 -2016-07-03 02:00:00,0.0,997.4747222000001,0.0,100.0,0.38425,0.5914166670000001,238.06884854999998 -2016-07-03 03:00:00,0.0,997.2827777999998,0.0,100.0,-0.627583333,0.172416667,238.0704404833333 -2016-07-03 04:00:00,0.0,997.3180556,0.0,100.0,-1.324833333,0.058083333,238.06845056666668 -2016-07-03 05:00:00,0.0,997.8433332999999,0.0,100.0,-0.690583333,0.10400000000000001,238.0666596 -2016-07-03 06:00:00,0.0,998.2833332999999,0.174333333,100.0,-0.5775,0.023916667000000003,238.06546565 -2016-07-03 07:00:00,0.0,998.5263889,6.903333333,100.0,-0.35100000000000003,0.045166667,238.06466968333336 -2016-07-03 08:00:00,0.0,998.9927777999999,26.86166667,100.0,0.267416667,0.021833332999999996,238.0620827666667 -2016-07-03 09:00:00,2.492616744,999.3255556,139.9316667,99.8,1.8586666669999998,0.284166667,238.06128678333337 -2016-07-03 10:00:00,0.0,999.4169444,224.025,90.78333333,3.459166667,0.672333333,238.0592968666667 -2016-07-03 11:00:00,0.0,999.45,215.6333333,85.82333333,4.72125,1.313833333,238.06208276666666 -2016-07-03 12:00:00,18.012667699999998,999.5333332999999,109.06666670000001,91.575,2.568166667,0.968583333,238.0632767333333 -2016-07-03 13:00:00,9.894882312,999.3741667000002,100.97916670000001,95.5,2.219666667,1.077833333,238.06108780000002 -2016-07-03 14:00:00,2.672752464,999.5013889,71.90916667,96.49166667,2.942333333,1.089416667,238.05949586666668 -2016-07-03 15:00:00,2.676686376,999.9347222000001,174.33333330000002,98.05833333,2.7101666669999998,1.036666667,238.05949588333337 -2016-07-03 16:00:00,0.0,1000.2002779999999,211.85,92.69166667,2.8849166669999997,1.03275,238.05690895 -2016-07-03 17:00:00,0.0,1000.51,60.48166667,93.55833333,2.636,0.88225,238.06108780000002 -2016-07-03 18:00:00,0.0,1001.1936109999999,3.397166667,98.96666667,0.658833333,0.275916667,238.06427169999998 -2016-07-03 19:00:00,0.0,1001.843333,0.0,100.0,-0.613583333,0.178916667,238.06566465000003 -2016-07-03 20:00:00,0.0,1002.450833,0.0,100.0,-1.2685,0.258083333,238.06884855 -2016-07-03 21:00:00,0.0,1002.91,0.0,100.0,-1.7990000000000002,0.15825,238.07183343333338 -2016-07-03 22:00:00,0.0,1003.368333,0.0,100.0,-2.486916667,0.0995,238.07262941666667 -2016-07-03 23:00:00,0.0,1004.018611,0.0,100.0,-2.8095,0.08608333300000001,238.07123645000001 -2016-08-03 00:00:00,0.0,1004.508611,0.0,100.0,-2.722666667,0.0985,237.9544274 -2016-08-03 01:00:00,0.0,1004.8263890000001,0.0,100.0,-3.5339166669999997,0.268416667,237.95562133333337 -2016-08-03 02:00:00,0.0,1005.1594439999999,0.0,100.0,-4.03825,0.133583333,237.95860621666668 -2016-08-03 03:00:00,0.0,1005.5347220000001,0.0,100.0,-4.512416667,0.069583333,237.9594022 -2016-08-03 04:00:00,0.0,1006.194167,0.0,100.0,-4.7995,0.027083332999999998,237.96059616666665 -2016-08-03 05:00:00,0.0,1007.134722,0.0,100.0,-2.6245,0.618916667,237.96298408333334 -2016-08-03 06:00:00,0.0,1007.769167,0.24533333300000001,100.0,-1.9238333330000001,0.543166667,237.96338206666667 -2016-08-03 07:00:00,0.0,1008.585556,12.88641667,100.0,-1.434916667,0.319333333,237.96696396666664 -2016-08-03 08:00:00,0.0,1009.369167,61.2875,100.0,-1.054833333,0.581333333,237.9697498666667 -2016-08-03 09:00:00,0.0,1010.1513890000001,99.3825,100.0,-0.43325,1.247833333,237.9717398 -2016-08-03 10:00:00,2.580459288,1010.593056,195.7583333,100.0,0.9388333329999999,1.484833333,237.9723367833333 -2016-08-03 11:00:00,0.0,1010.909167,299.8916667,97.21666667,2.64425,1.37625,237.97372974999996 -2016-08-03 12:00:00,2.8300695119999997,1011.3419449999999,397.75,93.45,3.914166667,1.4685833330000002,237.97492369999998 -2016-08-03 13:00:00,0.0,1011.366389,385.8333333,89.04166667,4.78375,1.815166667,237.97691361666668 -2016-08-03 14:00:00,0.0,1011.233333,346.0166667,76.75416667,5.82625,1.8853333330000002,237.97910256666668 -2016-08-03 15:00:00,0.0,1011.409167,264.0666667,71.2575,5.97225,1.788583333,237.98009750000003 -2016-08-03 16:00:00,0.0,1011.358056,174.44166669999998,70.92083333,5.960916667,1.339083333,237.98149048333335 -2016-08-03 17:00:00,0.0,1011.5675,55.7725,76.935,4.579,1.01875,237.9802965166667 -2016-08-03 18:00:00,0.0,1011.9669439999999,2.403333333,93.45,0.9540833329999999,0.199916667,237.98109248333333 -2016-08-03 19:00:00,0.0,1012.243333,0.0,97.10833333,-0.253166667,0.228333333,237.98487335000002 -2016-08-03 20:00:00,0.0,1012.5513890000001,0.0,97.96666667,-0.9398333329999999,0.09025,237.9870622666667 -2016-08-03 21:00:00,0.0,1012.615278,0.0,99.45,-1.7249166669999998,0.073833333,237.98825625000003 -2016-08-03 22:00:00,0.0,1012.115,0.0,100.0,-2.09475,0.233916667,237.98905219999997 -2016-08-03 23:00:00,0.0,1011.5652779999999,0.0,100.0,-2.1875,0.133666667,237.99004718333333 -2016-09-03 00:00:00,0.0,1011.057222,0.0,100.0,-2.8755,0.05475,237.85154783333334 -2016-09-03 01:00:00,0.0,1010.799444,0.0,100.0,-3.142,0.096,237.8527418 -2016-09-03 02:00:00,0.0,1010.1969439999999,0.0,100.0,-3.582083333,0.181916667,237.85473171666663 -2016-09-03 03:00:00,0.0,1009.2572220000001,0.0,100.0,-4.054083333,0.068833333,237.85791561666667 -2016-09-03 04:00:00,0.0,1008.8486109999999,0.0,100.0,-4.05225,0.3225,237.85930856666667 -2016-09-03 05:00:00,0.0,1008.6161109999999,0.0,100.0,-2.235833333,0.239583333,237.86229346666664 -2016-09-03 06:00:00,0.0,1008.2813890000001,0.691916667,100.0,-2.2486666669999997,0.447166667,237.86368643333336 -2016-09-03 07:00:00,0.0,1007.740833,16.34316667,100.0,-1.047166667,1.06375,237.86468138333336 -2016-09-03 08:00:00,0.0,1007.1563890000001,50.30666667,100.0,-0.487833333,1.46625,237.86507938333338 -2016-09-03 09:00:00,0.0,1006.706667,86.02,99.56666667,0.05175,1.7710833330000002,237.8640844 -2016-09-03 10:00:00,0.0,1006.115,236.05,92.69166667,1.5733333330000001,2.176416667,237.85990555 -2016-09-03 11:00:00,0.0,1005.331667,303.59166669999996,85.75,2.929833333,2.7825,237.8579156333333 -2016-09-03 12:00:00,0.0,1004.6055560000001,276.6333333,78.58416667,4.741333333,2.923,237.85254278333332 -2016-09-03 13:00:00,0.0,1003.840833,323.7583333,72.3125,5.931833332999999,3.21375,237.84557801666668 -2016-09-03 14:00:00,0.0,1003.3147220000001,374.8833333,63.34666667,6.50675,3.57025,237.83821526666668 -2016-09-03 15:00:00,0.0,1002.8827779999999,284.7,60.97666667,6.401416667,3.116083333,237.8346334 -2016-09-03 16:00:00,0.0,1002.725,191.4083333,63.70583333,5.706583332999999,2.926,237.83125051666664 -2016-09-03 17:00:00,0.0,1002.6005560000001,63.00416667,67.68583333,5.119666667,1.944333333,237.8292605833333 -2016-09-03 18:00:00,0.0,1003.034167,5.094416667,79.06333333,3.540166667,0.6831666670000001,237.8278676333333 -2016-09-03 19:00:00,0.0,1003.366944,0.0,94.8,0.260916667,0.019833333,237.82926056666665 -2016-09-03 20:00:00,0.0,1003.6675,0.0,97.85,-0.43458333299999996,0.087,237.82985753333332 -2016-09-03 21:00:00,0.0,1004.034167,0.0,98.325,-0.17475,0.060916667,237.8306535 -2016-09-03 22:00:00,0.0,1004.368611,0.0,98.25,-0.243583333,0.074416667,237.8318475 -2016-09-03 23:00:00,0.0,1004.7675,0.0,99.575,-0.663333333,0.237166667,237.83085251666668 -2016-10-03 00:00:00,0.0,1005.285,0.0,100.0,-0.92175,0.10208333300000001,237.94568108333337 -2016-10-03 01:00:00,0.0,1005.8938890000001,0.0,100.0,-1.051166667,0.003833333,237.94539003333333 -2016-10-03 02:00:00,0.0,1006.484167,0.0,100.0,-2.066833333,0.01075,237.94657485000002 -2016-10-03 03:00:00,0.0,1007.044167,0.0,100.0,-2.54975,0.077083333,237.9445722 -2016-10-03 04:00:00,0.0,1007.777222,0.0,100.0,-2.6985,0.0,237.94552446666668 -2016-10-03 05:00:00,0.0,1008.7188890000001,0.0,100.0,-2.888,0.0,237.94660333333334 -2016-10-03 06:00:00,0.0,1009.393333,0.6205,100.0,-3.0140833330000003,0.0,237.94678839999997 -2016-10-03 07:00:00,0.0,1010.135833,19.09716667,100.0,-3.1840833330000002,0.0,237.9461699 -2016-10-03 08:00:00,0.0,1011.1447220000001,54.23083333,99.875,-0.646166667,0.45191666700000005,237.94599591666667 -2016-10-03 09:00:00,0.0,1012.219167,192.55833330000002,90.75,1.146666667,1.9898333330000002,237.9449028 -2016-10-03 10:00:00,0.0,1013.010278,282.4,86.35,2.6645,1.718833333,237.94589308333332 -2016-10-03 11:00:00,0.0,1013.541667,367.7333333,81.27666667,4.671666667,1.18,237.944539 -2016-10-03 12:00:00,0.0,1013.684167,396.1666667,76.73,6.066416667,1.17425,237.9457601666667 -2016-10-03 13:00:00,0.0,1014.001389,384.025,71.96,7.306583333,1.5640833330000001,237.94515588333334 -2016-10-03 14:00:00,0.0,1014.166667,271.5166667,69.95916667,8.403666667000001,1.4305833330000002,237.94491703333333 -2016-10-03 15:00:00,0.0,1014.391944,145.9833333,71.74,7.785333333,2.971083333,237.9433320166667 -2016-10-03 16:00:00,0.0,1014.618333,122.4425,70.3275,7.752999999999999,2.8130833330000002,237.94423208333333 -2016-10-03 17:00:00,0.0,1015.1686109999999,35.51833333,73.6525,7.00025,3.120083333,237.94310895 -2016-10-03 18:00:00,0.0,1015.885,3.5735,75.29666667,6.183416667,2.2294166669999997,237.94395525000002 -2016-10-03 19:00:00,0.0,1016.72,0.0,80.035,5.717166667000001,2.584916667,237.94445038333333 -2016-10-03 20:00:00,0.0,1017.5430560000001,0.0,83.625,5.276666667,2.39175,237.94390305000002 -2016-10-03 21:00:00,0.0,1018.2930550000001,0.0,86.20833333,3.2335,1.3895,237.9443618 -2016-10-03 22:00:00,0.0,1018.7344439999999,0.0,93.925,1.5030833330000002,0.076083333,237.94595791666666 -2016-10-03 23:00:00,0.0,1018.9163890000001,0.0,97.91666667,1.673583333,0.0,237.94636601666664 -2016-11-03 00:00:00,0.0,1018.934444,0.0,99.64166667,0.63375,0.033833333,238.0071006666667 -2016-11-03 01:00:00,0.0,1019.1497220000001,0.0,100.0,-0.46683333299999996,0.035333333,238.00708168333333 -2016-11-03 02:00:00,0.0,1019.209167,0.0,100.0,-1.0659999999999998,0.0,238.00637616666668 -2016-11-03 03:00:00,0.0,1019.350833,0.0,100.0,-1.43225,0.0,238.00561055000003 -2016-11-03 04:00:00,0.0,1019.5838890000001,0.0,100.0,-1.047416667,0.0,238.0077983 -2016-11-03 05:00:00,0.0,1019.934444,0.0,100.0,0.049416667000000004,0.013666667,238.00732056666666 -2016-11-03 06:00:00,0.0,1020.300556,0.48358333299999995,100.0,0.655,0.0,238.00711175000004 -2016-11-03 07:00:00,0.0,1020.668333,10.46191667,100.0,2.4275833330000003,0.075083333,238.00620535 -2016-11-03 08:00:00,0.0,1021.259722,26.935,100.0,3.846916667,0.1495,238.00527835 -2016-11-03 09:00:00,0.0,1021.583333,61.87333333,98.86666667,5.05425,1.036833333,238.00392110000004 -2016-11-03 10:00:00,0.0,1021.725833,123.44166670000001,91.90833333,6.100166667000001,1.976666667,238.00420111666665 -2016-11-03 11:00:00,0.0,1021.8577779999999,225.4666667,82.05583333,8.120916667000001,3.8489999999999998,238.00483386666664 -2016-11-03 12:00:00,0.0,1021.759167,281.46666669999996,67.8475,8.298333332999999,3.05175,238.0018441 -2016-11-03 13:00:00,0.0,1021.583056,208.5916667,68.38083333,8.295416667000001,3.2865833330000003,238.00364743333333 -2016-11-03 14:00:00,0.0,1021.716667,297.53333330000004,63.68083333,8.704166667,4.0033333330000005,238.00364588333332 -2016-11-03 15:00:00,0.0,1021.8083330000001,114.45083329999999,65.82333333,7.770666667,2.694583333,238.00252746666663 -2016-11-03 16:00:00,0.0,1021.766944,71.41333333,67.73416667,7.58975,1.9240833330000002,238.0046424666667 -2016-11-03 17:00:00,0.0,1021.8080560000001,31.5475,68.45,7.297083333,1.166083333,238.00571655 -2016-11-03 18:00:00,0.0,1022.0513890000001,4.205916666999999,71.435,6.732166667,0.42666666700000005,238.00591268333335 -2016-11-03 19:00:00,0.0,1022.576111,0.0,79.64416667,5.810833333,0.006999999999999999,238.00500311666667 -2016-11-03 20:00:00,0.0,1022.9772220000001,0.0,81.63,5.687333333,1.474666667,238.00649326666664 -2016-11-03 21:00:00,0.0,1023.6425,0.0,76.61833333,5.625916667,3.165083333,238.00480855 -2016-11-03 22:00:00,0.0,1023.9925,0.0,74.37,4.8331666669999995,2.972833333,238.00463451666667 -2016-11-03 23:00:00,0.0,1024.108333,0.0,76.15666667,4.136583333,3.1444166669999998,238.00585258333334 -2016-12-03 00:00:00,0.0,1024.166667,0.0,78.56,3.972333333,2.7195,238.05619111666667 -2016-12-03 01:00:00,0.0,1024.033056,0.0,77.38833333,3.839916667,2.06475,238.05657391666668 -2016-12-03 02:00:00,0.0,1023.631944,0.0,78.20916667,3.4779166669999997,0.600333333,238.0562448833333 -2016-12-03 03:00:00,0.0,1023.659167,0.0,81.21,3.480333333,1.285,238.05559000000002 -2016-12-03 04:00:00,0.0,1023.716667,0.0,82.81666667,3.5034166669999998,2.317416667,238.05621801666666 -2016-12-03 05:00:00,0.0,1023.9675,0.0,81.1075,3.303666667,2.962333333,238.05567858333328 -2016-12-03 06:00:00,0.0,1024.184167,0.197416667,80.235,3.04875,2.4283333330000003,238.05633031666665 -2016-12-03 07:00:00,0.0,1024.416667,5.108916667,81.05,2.93175,2.3296666669999997,238.0554049333333 -2016-12-03 08:00:00,0.0,1024.668056,16.56583333,82.58333333,3.03075,2.5060833330000003,238.05495726666666 -2016-12-03 09:00:00,0.0,1025.1013890000002,30.58916667,83.65833333,3.17225,2.504,238.05371708333334 -2016-12-03 10:00:00,0.0,1025.4919439999999,56.91916667,80.5725,3.320083333,2.657166667,238.05215891666668 -2016-12-03 11:00:00,0.0,1025.591667,63.305,81.1,3.3336666669999997,3.634083333,238.04929568333333 -2016-12-03 12:00:00,0.0,1025.45,86.37333333,80.10333333,3.6289999999999996,2.947,238.04816306666666 -2016-12-03 13:00:00,0.0,1025.273889,84.75666667,79.30666667,3.8845,2.7185,238.04697668333333 -2016-12-03 14:00:00,0.0,1024.8072220000001,80.31166667,77.97416667,4.164916667,3.1005,238.04755406666663 -2016-12-03 15:00:00,0.0,1024.8,42.8775,81.54916667,3.9329166669999998,3.300833333,238.04729146666668 -2016-12-03 16:00:00,0.0,1024.8,22.64833333,82.59166667,3.897416667,2.1495833330000003,238.05005818333328 -2016-12-03 17:00:00,0.0,1025.051389,9.888416667000001,81.88333333,3.9145,2.0905,238.05193745 -2016-12-03 18:00:00,0.0,1025.3175,1.0605,82.7,3.684333333,2.63775,238.05288815000003 -2016-12-03 19:00:00,0.0,1025.751389,0.0,83.19166667,3.43575,3.291416667,238.05164478333333 -2016-12-03 20:00:00,0.0,1026.075833,0.0,82.275,3.177083333,3.32325,238.05213833333335 -2016-12-03 21:00:00,0.0,1026.216944,0.0,81.825,3.011666667,3.6534166669999997,238.05069408333335 -2016-12-03 22:00:00,0.0,1026.299722,0.0,83.90833333,2.585666667,4.100666667,238.05101205000003 -2016-12-03 23:00:00,0.0,1026.098889,0.0,84.01666667,2.253083333,2.5278333330000002,238.04991736666668 -2016-03-13 00:00:00,0.0,1026.017778,0.0,84.74166667,1.9738333330000002,3.6115,238.1784868 -2016-03-13 01:00:00,0.0,1026.2,0.0,87.11666667,1.580583333,1.6269999999999998,238.1789047166667 -2016-03-13 02:00:00,0.0,1026.275,0.0,89.275,1.7195,1.29625,238.17994951666665 -2016-03-13 03:00:00,0.0,1026.274444,0.0,90.43333333,1.693583333,1.533916667,238.17806886666668 -2016-03-13 04:00:00,0.0,1026.126111,0.0,91.45,1.54575,1.393,238.18078536666667 -2016-03-13 05:00:00,0.0,1026.5336109999998,0.0,90.825,1.78325,2.4994166669999998,238.17932265000002 -2016-03-13 06:00:00,0.0,1026.7347220000001,0.827333333,89.99166667,1.7429166669999998,2.16525,238.17890473333338 -2016-03-13 07:00:00,0.0,1027.326389,18.945,89.56666667,2.463916667,2.486416667,238.17618819999998 -2016-03-13 08:00:00,0.0,1027.8094449999999,56.47916667,88.63333333,3.16975,3.187583333,238.17535235 -2016-03-13 09:00:00,0.0,1028.426667,57.85166667,87.775,3.832416667,4.80925,238.17388961666666 -2016-03-13 10:00:00,0.0,1028.8344439999998,80.02916667,87.75,4.33875,4.397333333,238.17263585 -2016-03-13 11:00:00,0.0,1028.908055,103.5241667,85.63333333,4.908166667,4.561916667,238.17347171666663 -2016-03-13 12:00:00,0.0,1028.623889,181.725,82.35,5.5425,4.8475,238.17221795 -2016-03-13 13:00:00,0.0,1028.315,227.9666667,82.04333333,5.8593333329999995,4.595333333,238.17451649999998 -2016-03-13 14:00:00,0.0,1027.7244449999998,369.5666667,77.00416667,7.011166667,4.374416667,238.17180001666668 -2016-03-13 15:00:00,0.0,1027.549167,291.8916667,73.42666667,6.967083333,4.533333333,238.17117313333333 -2016-03-13 16:00:00,0.0,1027.1911109999999,224.80833330000002,73.77833333,7.04875,4.212416667,238.17305379999996 -2016-03-13 17:00:00,0.0,1027.200556,88.2975,74.7725,6.703416667000001,3.907083333,238.17242690000003 -2016-03-13 18:00:00,0.0,1027.5275,7.167916667,79.63,4.961,3.814916667,238.17472546666667 -2016-03-13 19:00:00,0.0,1028.434167,0.0,85.29166667,2.75575,3.550166667,238.1747254666667 -2016-03-13 20:00:00,0.0,1028.708889,0.0,88.10833333,2.156416667,3.83175,238.17472548333333 -2016-03-13 21:00:00,0.0,1028.716667,0.0,86.35833333,1.6135,3.48075,238.17430756666667 -2016-03-13 22:00:00,0.0,1028.883611,0.0,88.10833333,0.8355,2.714833333,238.17263588333333 -2016-03-13 23:00:00,0.0,1028.883333,0.0,88.51666667,0.3055,2.44025,238.17493443333333 -2016-03-14 00:00:00,0.0,1028.8580550000001,0.0,90.2,-0.170166667,2.0605,238.17618819999998 -2016-03-14 01:00:00,0.0,1029.009445,0.0,90.8,0.245666667,2.135416667,238.1740985833333 -2016-03-14 02:00:00,0.0,1029.031667,0.0,89.46666667,0.751583333,2.884666667,238.17054625 -2016-03-14 03:00:00,0.0,1028.566389,0.0,87.85,0.546666667,2.3689166669999997,238.17117311666667 -2016-03-14 04:00:00,0.0,1028.4411109999999,0.0,85.625,0.36425,2.0306666669999998,238.17180001666665 -2016-03-14 05:00:00,0.0,1028.325278,0.0,85.71666667,0.224666667,2.3778333330000003,238.17284481666664 -2016-03-14 06:00:00,0.0,1028.467222,1.500583333,84.61666667,0.227416667,1.7770833330000002,238.17326273333333 -2016-03-14 07:00:00,0.0,1028.508333,24.14583333,86.55,0.37941666700000004,1.9889166669999998,238.1751434 -2016-03-14 08:00:00,0.0,1028.750833,56.67916667,81.37583333,1.7084166669999998,2.809416667,238.17284481666664 -2016-03-14 09:00:00,0.0,1028.816389,252.20833330000002,75.8125,2.882333333,3.968916667,238.16991936666668 -2016-03-14 10:00:00,0.0,1028.590833,323.4,72.99333333,3.460666667,4.0,238.16824765 -2016-03-14 11:00:00,0.0,1028.198333,419.28333330000004,68.61083333,4.7825,3.298333333,238.16720285000005 -2016-03-14 12:00:00,0.0,1027.548055,395.8916667,66.73833333,5.173916667,4.05325,238.16845665000005 -2016-03-14 13:00:00,0.0,1026.8477779999998,414.5666667,60.60833333,6.879916667000001,3.992916667,238.16824765 -2016-03-14 14:00:00,0.0,1025.9980560000001,327.1666667,53.80916667,8.05975,4.242,238.16636703333333 -2016-03-14 15:00:00,0.0,1025.5319439999998,311.0083333,48.015,9.026666667,4.69175,238.16678495 -2016-03-14 16:00:00,0.0,1025.073889,219.6166667,44.88,9.263333333,4.338166667,238.16657596666667 -2016-03-14 17:00:00,0.0,1024.640833,65.125,49.395,8.50475,2.85975,238.16887453333334 -2016-03-14 18:00:00,0.0,1024.583333,8.097166667,58.40833333,6.66325,2.32975,238.17200896666665 -2016-03-14 19:00:00,0.0,1024.5577779999999,0.010833333,79.28583333,3.293333333,0.094416667,238.17284481666664 -2016-03-14 20:00:00,0.0,1024.216111,0.0,87.45833333,1.4869999999999999,0.012916667,238.17535233333334 -2016-03-14 21:00:00,0.0,1024.117222,0.0,90.25833333,0.081416667,0.036333332999999995,238.17472546666667 -2016-03-14 22:00:00,0.0,1023.957778,0.0,91.74166667,-0.8655,0.0,238.17577028333335 -2016-03-14 23:00:00,0.0,1023.9075,0.0,94.14166667,-1.5354166669999998,0.0,238.1738896333333 -2016-03-15 00:00:00,0.0,1023.7494439999999,0.0,95.55833333,-1.9669999999999999,0.0,238.17430755 -2016-03-15 01:00:00,0.0,1023.5325,0.0,97.04166667,-2.204416667,0.0,238.17514338333334 -2016-03-15 02:00:00,0.0,1023.09,0.0,96.24166667,-2.50025,0.0,238.1740985833333 -2016-03-15 03:00:00,0.0,1022.5327779999999,0.0,97.51666667,-2.9075833330000003,0.0,238.17263584999998 -2016-03-15 04:00:00,0.0,1022.466111,0.0,98.08333333,-2.729833333,0.0,238.17284481666664 -2016-03-15 05:00:00,0.0,1022.283333,0.0,97.575,-2.447,0.0,238.17075521666666 -2016-03-15 06:00:00,0.0,1022.0819439999999,1.1723333329999999,98.51666667,-2.2551666669999997,8.329999999999999e-05,238.17242688333332 -2016-03-15 07:00:00,0.0,1021.707778,31.81333333,97.95,-1.681,0.0016666670000000001,238.1720089833333 -2016-03-15 08:00:00,0.0,1021.3738890000001,84.60166667,90.63333333,0.38983333299999995,0.006333333000000001,238.16866560000003 -2016-03-15 09:00:00,0.0,1021.0666669999999,98.46916667,80.1375,3.1045,0.012333333,238.16741183333338 -2016-03-15 10:00:00,0.0,1020.724167,148.35,77.07166667,4.558166667,1.294083333,238.16845663333334 -2016-03-15 11:00:00,0.0,1020.7661109999999,98.62416667,79.83583333,4.709333333,2.2014166669999997,238.16615805 -2016-03-15 12:00:00,0.0,1020.5244439999999,79.27,91.975,4.313916667,4.040416667,238.17117311666667 -2016-03-15 13:00:00,0.0,1020.4822220000001,81.61166667,95.25833333,4.485166667,3.7695,238.16866560000003 -2016-03-15 14:00:00,0.0,1020.082778,124.60833329999998,91.35833333,5.483166667000001,4.024,238.16720286666668 -2016-03-15 15:00:00,0.0,1020.0580560000001,168.20583330000002,83.59583333,6.628583333,3.561083333,238.16741181666666 -2016-03-15 16:00:00,0.0,1019.6661109999999,57.98583333,78.13083333,6.907666667000001,2.558333333,238.1674118166667 -2016-03-15 17:00:00,0.0,1019.608333,21.55583333,78.18583333,6.775666667,1.557916667,238.16991936666668 -2016-03-15 18:00:00,0.0,1019.7425,5.080833333,74.6575,6.396,2.11225,238.16908351666666 -2016-03-15 19:00:00,0.0,1020.085,0.0,83.18833333,4.131166667,0.6851666670000001,238.17033728333334 -2016-03-15 20:00:00,0.0,1020.751389,0.0,81.0,4.907083333,2.903,238.16657596666673 -2016-03-15 21:00:00,0.0,1020.8997220000001,0.0,87.46666667,4.1015,2.6534166669999997,238.16887458333335 -2016-03-15 22:00:00,0.0,1021.1427779999999,0.0,88.24166667,4.178083333,3.1545,238.16824768333336 -2016-03-15 23:00:00,0.0,1021.266667,0.0,85.75,3.816416667,4.19675,238.16991938333334 -2016-03-16 00:00:00,0.0,1021.233333,0.0,78.65833333,3.7105,4.151833333,238.16908351666675 -2016-03-16 01:00:00,0.0,1021.341667,0.0,82.14166667,3.451833333,4.21675,238.16950145 -2016-03-16 02:00:00,0.0,1021.433889,0.0,83.275,3.3024166669999997,3.9210000000000003,238.16887454999997 -2016-03-16 03:00:00,0.0,1021.3166669999999,0.0,83.05,3.185833333,3.59875,238.16866558333334 -2016-03-16 04:00:00,0.0,1021.1327779999999,0.0,82.13333333,3.0364166669999997,4.13025,238.1692925 -2016-03-16 05:00:00,0.0,1021.2255560000001,0.0,82.28333333,2.30225,4.0085,238.1688745666667 -2016-03-16 06:00:00,0.0,1021.709167,1.974833333,83.275,1.761,3.3770833330000003,238.16720286666668 -2016-03-16 07:00:00,0.0,1022.101667,26.85916667,84.99166667,2.0179166669999997,4.3781666669999995,238.16824768333336 -2016-03-16 08:00:00,0.0,1022.609722,64.57,82.875,3.036166667,5.265666667,238.16511323333336 -2016-03-16 09:00:00,0.0,1022.7577779999999,82.7925,80.21416667,3.757083333,5.490416667000001,238.1642773666667 -2016-03-16 10:00:00,0.0,1022.900833,132.50833329999998,74.2325,4.741333333,5.677333332999999,238.16469530000003 -2016-03-16 11:00:00,0.0,1023.1255560000001,157.7225,72.72166667,4.876416667,5.723666667000001,238.16385945000002 -2016-03-16 12:00:00,0.0,1022.8319439999999,249.7416667,69.01416667,5.463583333,6.55975,238.16323256666666 -2016-03-16 13:00:00,0.0,1022.758333,117.9,67.15916667,5.39875,7.194166667,238.16427738333337 -2016-03-16 14:00:00,0.0,1022.641667,218.0,65.7425,6.311333332999999,6.791166667000001,238.16365050000002 -2016-03-16 15:00:00,0.0,1022.641389,217.35,62.76916667,6.60475,5.91425,238.160934 -2016-03-16 16:00:00,0.0,1022.5747220000001,179.83333330000002,60.59333333,6.766166667,5.270166667,238.1607250333333 -2016-03-16 17:00:00,0.0,1022.3672220000001,70.18833333,61.58083333,6.793333333,4.479166667,238.1630236166667 -2016-03-16 18:00:00,0.0,1022.768056,12.35216667,65.385,5.940333333,3.6886666669999997,238.1636505 -2016-03-16 19:00:00,0.0,1023.275833,0.022083332999999997,71.36333333,4.8629166669999995,2.65075,238.16385945000002 -2016-03-16 20:00:00,0.0,1023.7508330000001,0.0,79.92,3.237666667,1.4210833330000001,238.16365048333333 -2016-03-16 21:00:00,0.0,1023.983611,0.0,86.69166667,1.275666667,0.0485,238.1653222166667 -2016-03-16 22:00:00,0.0,1024.267778,0.0,91.86666667,0.66975,0.0,238.16490428333336 -2016-03-16 23:00:00,0.0,1024.157778,0.0,97.35833333,-1.2379166670000001,0.0,238.16636701666667 -2016-03-17 00:00:00,0.0,1023.965833,0.0,98.99166667,-2.176,0.0,238.1659491 -2016-03-17 01:00:00,0.0,1023.8502779999999,0.0,99.825,-2.014166667,0.0,238.16615806666667 -2016-03-17 02:00:00,0.0,1023.6155560000001,0.0,99.91666667,-1.495333333,0.004416667,238.16636701666667 -2016-03-17 03:00:00,0.0,1023.4161109999999,0.0,100.0,-2.085,0.0,238.16678495 -2016-03-17 04:00:00,0.0,1023.35,0.0,100.0,-3.0355,0.0,238.16574013333334 -2016-03-17 05:00:00,0.0,1023.333333,0.0,100.0,-3.5773333330000003,0.0,238.1659491 -2016-03-17 06:00:00,0.0,1023.525833,2.451916667,100.0,-3.82025,0.0,238.16636701666667 -2016-03-17 07:00:00,0.0,1023.6847220000001,19.03,100.0,-2.7285,0.0,238.16657598333336 -2016-03-17 08:00:00,0.0,1023.975,66.62083333,97.8,1.278333333,0.697583333,238.16365050000002 -2016-03-17 09:00:00,0.0,1024.058333,275.9333333,83.4,3.429416667,1.12475,238.15800854999998 -2016-03-17 10:00:00,0.0,1023.974167,359.25,74.75583333,5.341666667,1.6455,238.15842648333333 -2016-03-17 11:00:00,0.0,1023.548889,425.95,67.1225,7.119083333,2.0284166669999997,238.1567547666667 -2016-03-17 12:00:00,0.0,1023.123056,450.38333330000006,63.65583333,8.441,2.545583333,238.15550101666668 -2016-03-17 13:00:00,0.0,1022.381667,447.0,59.6825,9.615833333,2.410583333,238.15591891666665 -2016-03-17 14:00:00,0.0,1021.6394439999999,405.4583333,54.16833333,10.92583333,1.8648333330000002,238.15487410000003 -2016-03-17 15:00:00,0.0,1020.881667,330.09166669999996,51.37833333,11.81666667,1.6046666669999998,238.15529204999999 -2016-03-17 16:00:00,0.0,1020.306111,225.725,53.32083333,11.63166667,2.0813333330000003,238.15675478333333 -2016-03-17 17:00:00,0.0,1019.8322220000001,72.28666667,58.47083333,10.97916667,1.787333333,238.15905335 -2016-03-17 18:00:00,0.0,1019.709167,10.04316667,74.49083333,7.792583333,0.3775,238.16218775000004 -2016-03-17 19:00:00,0.0,1019.6244439999999,0.036166667,89.175,3.960583333,0.0,238.16511326666668 -2016-03-17 20:00:00,0.0,1019.4825,0.0,93.85,2.038833333,0.0,238.1649042666667 -2016-03-17 21:00:00,0.0,1019.3,0.0,96.025,0.6416666670000001,0.0,238.1653221833334 -2016-03-17 22:00:00,0.0,1019.3075,0.0,97.70833333,-0.745916667,0.0,238.16511323333336 -2016-03-17 23:00:00,0.0,1019.166944,0.0,98.41666667,-1.40225,0.0,238.1657401166667 -2016-03-18 00:00:00,0.0,1018.9572220000001,0.0,98.55833333,-1.945416667,0.0,238.1651132166667 -2016-03-18 01:00:00,0.0,1018.623611,0.0,99.525,-2.564333333,0.0,238.16553116666668 -2016-03-18 02:00:00,0.0,1018.115278,0.0,99.99166667,-3.032333333,0.0,238.166367 -2016-03-18 03:00:00,0.0,1017.7327779999999,0.0,100.0,-3.46725,0.0,238.1642773666667 -2016-03-18 04:00:00,0.0,1017.1661109999999,0.0,100.0,-3.7289999999999996,0.0,238.16553116666668 -2016-03-18 05:00:00,0.0,1016.856389,0.0,100.0,-4.195,0.0,238.16511325000002 -2016-03-18 06:00:00,0.0,1016.7338890000001,2.816833333,100.0,-4.37175,0.0,238.16344155000002 -2016-03-18 07:00:00,0.0,1016.900278,23.81083333,99.95833333,-2.722333333,0.0,238.16281465 -2016-03-18 08:00:00,0.0,1017.000278,82.53166667,95.35,1.593083333,0.3255,238.16135191666663 -2016-03-18 09:00:00,0.0,1016.915556,265.2083333,81.85,5.68075,1.54575,238.15905335000002 -2016-03-18 10:00:00,0.0,1016.8083330000001,353.6,71.9325,8.496,1.83025,238.15570996666668 -2016-03-18 11:00:00,0.0,1016.4905560000001,418.875,64.97083333,10.6475,2.0346666669999998,238.1561279 -2016-03-18 12:00:00,0.0,1016.065833,452.33333330000005,60.01333333,12.09083333,2.1615,238.15529204999999 -2016-03-18 13:00:00,0.0,1015.3638890000001,443.90833330000004,51.72,13.6875,1.9638333330000002,238.15717271666668 -2016-03-18 14:00:00,0.0,1014.606389,419.8916666999999,44.44,14.94083333,1.72625,238.15633685 -2016-03-18 15:00:00,0.0,1013.99,292.1,45.3675,14.88333333,2.467333333,238.15779956666665 -2016-03-18 16:00:00,0.0,1013.525278,216.075,49.8225,13.91,2.7569999999999997,238.15968021666663 -2016-03-18 17:00:00,0.0,1013.759722,73.5575,55.38,12.41,2.04625,238.15947126666666 -2016-03-18 18:00:00,0.0,1014.2169439999999,11.27041667,66.79916667,10.21416667,1.794,238.15905335 -2016-03-18 19:00:00,0.0,1014.5938890000001,0.058666667,77.31583333,7.767,1.921416667,238.15968021666663 -2016-03-18 20:00:00,0.0,1015.293889,0.0,88.43333333,5.287416667,1.964083333,238.16156088333332 -2016-03-18 21:00:00,0.0,1015.9675,0.0,91.06666667,4.0976666669999995,1.68625,238.15968025000004 -2016-03-18 22:00:00,0.0,1016.325833,0.0,95.525,3.7926666669999998,0.7295,238.15926231666666 -2016-03-18 23:00:00,0.0,1016.641944,0.0,95.375,3.656666667,0.627416667,238.15738166666665 -2016-03-19 00:00:00,0.0,1016.5247220000001,0.0,92.06666667,3.81225,1.5195,238.15717271666668 -2016-03-19 01:00:00,0.0,1016.45,0.0,90.075,3.661166667,1.350416667,238.15738164999996 -2016-03-19 02:00:00,0.0,1016.3825,0.0,93.11666667,3.731583333,1.051083333,238.15529206666665 -2016-03-19 03:00:00,0.0,1015.9236109999999,0.0,94.7,3.758333333,0.15633333300000002,238.15633686666663 -2016-03-19 04:00:00,0.0,1015.733333,0.0,94.51666667,3.949666667,1.0590000000000002,238.15508308333332 -2016-03-19 05:00:00,0.0,1015.6916669999999,0.0,94.61666667,4.011083333,0.59175,238.15529204999999 -2016-03-19 06:00:00,0.0,1015.6925,0.593916667,96.23333333,3.864666667,0.90825,238.15633685 -2016-03-19 07:00:00,0.0,1016.018056,13.91966667,97.53333333,3.92225,0.047416667,238.1565458166667 -2016-03-19 08:00:00,0.0,1016.500278,34.51666667,96.08333333,4.274583333,0.18508333300000002,238.1540382833333 -2016-03-19 09:00:00,0.0,1016.834444,54.29416667,92.75833333,4.761833333,1.224583333,238.15299346666666 -2016-03-19 10:00:00,0.0,1017.0669439999999,77.87833333,84.425,5.207833333,1.6765833330000002,238.15299346666666 -2016-03-19 11:00:00,0.0,1017.099722,105.79166670000001,79.92333333,5.2765,1.525916667,238.15278449999997 -2016-03-19 12:00:00,0.0,1017.0583330000001,130.6916667,78.19,5.807333333,1.052833333,238.15236655 -2016-03-19 13:00:00,0.0,1016.815556,125.86666670000001,75.14583333,6.28425,1.189416667,238.1534113833333 -2016-03-19 14:00:00,0.0,1016.557778,152.70833330000002,72.06833333,7.175833333,0.5229166670000001,238.1523665666667 -2016-03-19 15:00:00,0.0,1016.358056,99.78333333,71.73416667,7.306,0.35725,238.1529934666667 -2016-03-19 16:00:00,0.0,1016.149167,57.49666667,73.01416667,7.146833332999999,0.14800000000000002,238.15320241666666 -2016-03-19 17:00:00,0.0,1015.958333,23.9175,74.21333333,6.95925,0.135666667,238.15633685 -2016-03-19 18:00:00,0.0,1016.0,5.252833333,74.47083333,6.5315,0.07933333299999999,238.15466516666666 -2016-03-19 19:00:00,0.0,1016.1925,0.01925,77.38333333,6.403416667,1.265,238.15487411666666 -2016-03-19 20:00:00,0.0,1016.417222,0.0,78.87,6.085916667,1.881833333,238.15508306666666 -2016-03-19 21:00:00,0.0,1016.4827779999999,0.0,80.01833333,5.806083332999999,1.5619999999999998,238.15633686666663 -2016-03-19 22:00:00,0.0,1016.5175,0.0,80.46666667,5.468166667,2.1358333330000003,238.155501 -2016-03-19 23:00:00,0.0,1016.499722,0.0,83.46666667,5.097416667,1.8054166669999998,238.1559189333333 -2016-03-20 00:00:00,0.0,1016.349167,0.0,84.2,4.625833333,2.336166667,238.15591891666668 -2016-03-20 01:00:00,0.0,1016.2327779999999,0.0,83.41666667,4.316,1.6393333330000002,238.15487411666672 -2016-03-20 02:00:00,0.0,1015.948889,0.0,83.25833333,4.168833333,1.246083333,238.15633684999997 -2016-03-20 03:00:00,0.0,1015.415555,0.0,82.86666667,4.059833333,0.731583333,238.1557099833333 -2016-03-20 04:00:00,0.0,1014.915,0.0,85.40833333,3.914083333,0.38191666700000004,238.1563368666667 -2016-03-20 05:00:00,0.0,1014.8505550000001,0.0,84.85,3.944,1.5221666669999998,238.15591893333337 -2016-03-20 06:00:00,0.0,1014.951111,0.907666667,84.875,3.83925,1.440666667,238.15654581666664 -2016-03-20 07:00:00,0.0,1015.3422220000001,9.62675,85.825,3.906166667,1.9316666669999998,238.15466516666666 -2016-03-20 08:00:00,0.0,1015.5425,27.6025,88.325,3.929,2.094166667,238.15278448333333 -2016-03-20 09:00:00,0.0,1015.716667,54.3325,87.79166667,4.334666667,1.2790000000000001,238.15173966666666 -2016-03-20 10:00:00,0.0,1015.649167,87.05583333,85.45,4.979583333,0.9395,238.15236656666664 -2016-03-20 11:00:00,0.0,1015.2491669999999,123.29166670000001,82.64,5.544333332999999,1.333083333,238.1523665666667 -2016-03-20 12:00:00,0.0,1015.057778,150.6166667,77.77,6.4715,1.87875,238.15111278333333 -2016-03-20 13:00:00,0.0,1014.64,156.1083333,74.0,6.7215,3.262916667,238.1511128 -2016-03-20 14:00:00,0.0,1014.233056,109.24166670000001,73.12916667,6.748333333,2.659333333,238.15236658333333 -2016-03-20 15:00:00,0.0,1014.2405560000001,121.58333329999999,72.93583333,6.950583332999999,1.300666667,238.15090383333336 -2016-03-20 16:00:00,0.0,1013.681667,71.31583333,71.58416667,6.981916667,0.80225,238.1511128 -2016-03-20 17:00:00,0.0,1013.233056,30.265,72.31,6.826166667000001,1.161666667,238.15445621666666 -2016-03-20 18:00:00,0.0,1013.166944,6.317083332999999,73.90583333,6.74775,1.053,238.15362036666667 -2016-03-20 19:00:00,0.0,1013.335,0.01975,76.735,6.380333332999999,1.3526666669999998,238.15445621666666 -2016-03-20 20:00:00,0.0,1013.599445,0.0,78.6225,6.178083332999999,1.5024166669999999,238.15550101666668 -2016-03-20 21:00:00,0.0,1013.608611,0.0,82.00166667,6.128166667,1.156,238.15550098333333 -2016-03-20 22:00:00,0.0,1013.691111,0.0,85.56666667,6.115833332999999,1.55175,238.15362034999998 -2016-03-20 23:00:00,0.0,1013.5330560000001,0.0,88.775,5.89825,1.268833333,238.15529205000004 -2016-03-21 00:00:00,0.0,1013.5011109999999,0.0,91.85833333,5.775583332999999,1.4359166669999999,238.15529204999999 -2016-03-21 01:00:00,0.0,1013.573333,0.0,93.71666667,5.612083332999999,1.5885,238.1542472333333 -2016-03-21 02:00:00,0.0,1013.1241669999999,0.0,96.725,5.411666667,1.7145833330000002,238.15382931666667 -2016-03-21 03:00:00,0.0,1012.883056,0.0,99.43333333,5.241083333,1.872166667,238.15445620000003 -2016-03-21 04:00:00,0.0,1012.858611,0.0,100.0,5.32325,1.2225,238.15591891666665 -2016-03-21 05:00:00,0.0,1013.109167,0.0,99.86666667,5.397083332999999,0.655083333,238.15257555000002 -2016-03-21 06:00:00,0.0,1013.309167,2.8551666669999998,99.31666667,4.385833333,0.11825,238.1542472333333 -2016-03-21 07:00:00,0.0,1013.659167,50.72,94.4,5.3065,0.6735,238.1534114 -2016-03-21 08:00:00,0.0,1013.876389,97.46583333,87.85,6.41,1.50025,238.15069488333336 -2016-03-21 09:00:00,0.0,1014.2422220000001,159.05,82.81666667,6.997333332999999,2.0074166669999998,238.14776943333334 -2016-03-21 10:00:00,0.0,1014.525278,188.25,79.89,7.444083332999999,2.813166667,238.1477694333333 -2016-03-21 11:00:00,0.0,1014.591389,253.30833330000002,76.46583333,8.261333333,2.65575,238.14693358333332 -2016-03-21 12:00:00,0.0,1014.240278,215.21,76.14416667,8.709166667,2.1069999999999998,238.14756046666665 -2016-03-21 13:00:00,0.0,1013.7811109999999,119.9883333,84.22833333,7.922416667,2.878166667,238.14881423333335 -2016-03-21 14:00:00,0.0,1013.550833,155.7258333,81.65083333,7.92675,2.85725,238.14944111666668 -2016-03-21 15:00:00,0.0,1013.2491669999999,119.25833329999999,75.8075,7.711416667000001,2.567583333,238.15132174999997 -2016-03-21 16:00:00,0.0,1012.890278,76.58916667,79.79416667,7.798166667,1.8535,238.150068 -2016-03-21 17:00:00,0.0,1012.5497220000001,42.08083333,77.315,7.542833333,1.31275,238.15278451666666 -2016-03-21 18:00:00,0.0,1012.5327779999999,1.7358333330000002,76.46833333,7.39025,1.0665,238.15299346666666 -2016-03-21 19:00:00,0.0,1012.6094439999999,0.0,76.13166667,7.313083333,1.25075,238.1544562 -2016-03-21 20:00:00,0.0,1012.6077779999999,0.0,78.11,6.988416667,1.072083333,238.15633685 -2016-03-21 21:00:00,0.0,1012.5819439999999,0.0,80.18916667,6.673416667000001,1.286,238.15466516666666 -2016-03-21 22:00:00,0.0,1012.024167,0.0,81.86666667,6.28875,1.189416667,238.15550101666668 -2016-03-21 23:00:00,0.0,1011.715833,0.0,83.525,6.0919166670000005,0.975833333,238.15529203333335 -2016-03-22 00:00:00,0.0,1011.1825,0.0,85.71666667,5.682333333,0.8946666670000001,238.15466515 -2016-03-22 01:00:00,0.0,1010.9825,0.0,86.45833333,5.401,0.62125,238.15487413333332 -2016-03-22 02:00:00,0.0,1010.724167,0.0,87.20833333,5.880666667000001,0.976166667,238.15424726666666 -2016-03-22 03:00:00,0.0,1010.3741669999999,0.0,88.98333333,5.496583332999999,1.3265,238.15487413333335 -2016-03-22 04:00:00,0.0,1010.3419439999999,0.0,91.175,4.6210833330000005,0.708,238.15529206666665 -2016-03-22 05:00:00,0.0,1010.140833,0.0,94.04166667,3.5630833330000002,0.7124166670000001,238.15675478333333 -2016-03-22 06:00:00,0.0,1009.9247220000001,4.652,94.79166667,2.695666667,0.9438333329999999,238.15696373333336 -2016-03-22 07:00:00,0.0,1010.175833,35.72083333,93.525,3.812583333,1.774583333,238.15424723333334 -2016-03-22 08:00:00,0.0,1010.090833,91.78083333,89.91666667,4.96925,2.254166667,238.15466516666666 -2016-03-22 09:00:00,0.0,1010.0669439999999,166.85,85.75,6.24075,2.340833333,238.15111278333333 -2016-03-22 10:00:00,0.0,1010.024167,121.93166670000001,83.45833333,7.2110833329999995,2.209916667,238.15236658333333 -2016-03-22 11:00:00,0.0,1009.481944,290.9416667,80.6825,7.923916667,2.261166667,238.1517397 -2016-03-22 12:00:00,0.0,1009.131667,192.2825,79.17416667,8.101166667000001,2.3610833330000003,238.15111281666665 -2016-03-22 13:00:00,0.0,1008.7072220000001,144.1391667,71.78,8.8675,2.696583333,238.15090383333333 -2016-03-22 14:00:00,0.0,1008.0988890000001,67.26833333,71.95583333,8.718333333,1.421416667,238.15278450000002 -2016-03-22 15:00:00,0.0,1007.649167,64.40166667,71.11666667,9.0275,2.0775,238.15278449999997 -2016-03-22 16:00:00,0.0,1007.3575,52.6575,71.11083333,9.048333332999999,1.388916667,238.15215761666664 -2016-03-22 17:00:00,0.0,1007.274167,23.45583333,72.15583333,8.755833333,2.13075,238.15362035 -2016-03-22 18:00:00,0.0,1007.091667,8.299166667,78.89333333,8.2825,1.574583333,238.15424725000003 -2016-03-22 19:00:00,0.0,1007.0838890000001,0.076083333,90.575,7.50125,0.571416667,238.15487411666666 -2016-03-22 20:00:00,2.4050227680000003,1007.166944,0.0,96.425,6.348583333,0.011833333,238.15257553333333 -2016-03-22 21:00:00,0.0,1006.9991669999999,0.0,100.0,5.886916667,0.01275,238.15278449999997 -2016-03-22 22:00:00,2.428650216,1006.531944,0.0,100.0,6.0141666670000005,0.44741666700000005,238.15424723333334 -2016-03-22 23:00:00,0.0,1006.349722,0.0,100.0,6.248333333,0.18,238.15382929999998 -2016-03-23 00:00:00,0.0,1006.156667,0.0,100.0,6.2183333329999995,0.0865,238.15299345000003 -2016-03-23 01:00:00,0.0,1005.875,0.0,100.0,6.39075,0.747083333,238.15424725 -2016-03-23 02:00:00,0.0,1005.658333,0.0,99.61666667,6.482,1.6340833330000002,238.15466516666666 -2016-03-23 03:00:00,0.0,1005.566111,0.0,100.0,5.7325,0.145,238.15341138333335 -2016-03-23 04:00:00,0.0,1005.474444,0.0,100.0,5.3115,0.0,238.15320241666666 -2016-03-23 05:00:00,0.0,1005.241667,0.0,100.0,5.216833333,0.0255,238.15487411666666 -2016-03-23 06:00:00,0.0,1005.291667,2.447916667,100.0,5.265333333,0.107583333,238.1536203666667 -2016-03-23 07:00:00,0.0,1005.7930550000001,27.1875,97.78333333,6.1535,0.6316666670000001,238.1490232 -2016-03-23 08:00:00,0.0,1005.9080560000001,79.74333333,90.01666667,6.870166667,1.1089166670000001,238.14839628333334 -2016-03-23 09:00:00,0.0,1005.9,104.6,84.11666667,7.481,2.043416667,238.14881421666666 -2016-03-23 10:00:00,0.0,1006.0502779999999,128.12,83.85833333,7.630083332999999,2.921916667,238.15027696666667 -2016-03-23 11:00:00,0.0,1005.975,181.375,80.29666667,8.4175,2.50575,238.14839631666666 -2016-03-23 12:00:00,0.0,1005.8997220000001,192.6083333,70.38833333,8.8675,3.105416667,238.14756045 -2016-03-23 13:00:00,0.0,1005.791667,215.3,65.315,9.5425,3.0811666669999997,238.14797836666665 -2016-03-23 14:00:00,0.0,1005.5905560000001,171.5,68.03333333,9.439166667,3.311416667,238.1481873333333 -2016-03-23 15:00:00,0.0,1005.643056,145.4916667,72.04416667,8.944166667000001,4.115833333,238.1490231833333 -2016-03-23 16:00:00,0.0,1005.773889,131.0583333,72.52666667,8.776666667,2.397833333,238.14860526666664 -2016-03-23 17:00:00,0.0,1005.868333,56.39083333,71.64166667,8.628333332999999,3.238083333,238.15111279999996 -2016-03-23 18:00:00,0.0,1006.385278,9.444833333,76.37166667,7.85025,2.274083333,238.1521576 -2016-03-23 19:00:00,0.0,1006.9094449999999,0.076083333,78.16833333,7.583083332999999,1.8925833330000001,238.1494411 -2016-03-23 20:00:00,0.0,1007.275833,0.0,81.6925,7.287666667000001,1.2985,238.14944110000002 -2016-03-23 21:00:00,0.0,1007.4336109999999,0.0,86.025,6.021083332999999,0.18308333300000001,238.150068 -2016-03-23 22:00:00,0.0,1007.700833,0.0,91.05833333,5.352916667,0.26358333300000003,238.14965005 -2016-03-23 23:00:00,0.0,1007.833056,0.0,93.15833333,5.698666667,0.096416667,238.15069486666664 -2016-03-24 00:00:00,0.0,1007.875,0.0,93.625,5.534083333,0.274916667,238.15048591666664 -2016-03-24 01:00:00,0.0,1007.9675,0.0,90.625,6.13025,0.795416667,238.15069488333336 -2016-03-24 02:00:00,0.0,1008.066111,0.0,89.90833333,6.015,0.713916667,238.14881421666666 -2016-03-24 03:00:00,0.0,1007.874722,0.0,87.48333333,5.5845,0.684416667,238.14902318333336 -2016-03-24 04:00:00,0.0,1007.908611,0.0,88.075,5.315166667,0.432166667,238.14818733333334 -2016-03-24 05:00:00,0.0,1008.1936109999999,0.0,92.76666667,4.74675,0.39625,238.1515307 -2016-03-24 06:00:00,0.0,1008.81,5.3020000000000005,98.075,3.171333333,0.36466666700000006,238.15027693333332 -2016-03-24 07:00:00,0.0,1009.350833,39.58916667,99.86666667,3.607166667,0.34333333299999996,238.15153071666666 -2016-03-24 08:00:00,0.0,1009.534167,74.35166667,84.39916667,6.05125,0.39483333299999995,238.14756045 -2016-03-24 09:00:00,0.0,1010.1513890000001,80.63416667,79.8675,6.123416667000001,0.935583333,238.14567981666667 -2016-03-24 10:00:00,0.0,1010.3502779999999,275.4,75.67416667,7.393333332999999,1.381,238.14400811666667 -2016-03-24 11:00:00,0.0,1010.383056,214.8916667,72.45666667,8.460833333,1.53275,238.14212746666666 -2016-03-24 12:00:00,0.0,1010.3083330000001,148.15,75.30333333,8.274166667000001,2.061083333,238.14567978333335 -2016-03-24 13:00:00,0.0,1010.4675,112.98333329999998,83.98833333,7.559083332999999,2.173,238.14756043333333 -2016-03-24 14:00:00,0.0,1010.4827779999999,115.05,85.5,7.7030833329999995,1.5600833330000001,238.1467246166667 -2016-03-24 15:00:00,0.0,1010.340833,71.445,80.74916667,8.018833333,1.25025,238.1452619 -2016-03-24 16:00:00,0.0,1010.334167,26.0375,88.16666667,6.8035,1.4976666669999998,238.14756046666665 -2016-03-24 17:00:00,0.0,1010.266389,26.99666667,89.44166667,6.70725,1.092833333,238.14797838333337 -2016-03-24 18:00:00,0.0,1010.3002779999999,8.126333333,86.86666667,6.502916667,1.015916667,238.1479783833333 -2016-03-24 19:00:00,0.0,1010.408889,0.010833333,86.35,6.31125,1.013833333,238.14693358333332 -2016-03-24 20:00:00,0.0,1010.709167,0.0,88.24166667,6.460583333,1.838,238.14714251666666 -2016-03-24 21:00:00,0.0,1010.640278,0.0,90.11666667,6.643166667000001,2.320333333,238.1456798 -2016-03-24 22:00:00,0.0,1010.2575,0.0,91.36666667,6.371666667,1.881083333,238.14547085 -2016-03-24 23:00:00,2.4050227680000003,1009.94,0.0,96.21666667,5.600833333,0.2145,238.14714251666666 -2016-03-25 00:00:00,0.0,1009.533333,0.0,100.0,4.499666667,0.005083333,238.1486052833333 -2016-03-25 01:00:00,0.0,1009.424167,0.0,100.0,4.448416667,0.01925,238.14881421666664 -2016-03-25 02:00:00,0.0,1009.091111,0.0,98.46666667,4.282,0.0,238.14756045000001 -2016-03-25 03:00:00,0.0,1008.9822220000001,0.0,94.225,4.264333333,0.007166667,238.144635 -2016-03-25 04:00:00,0.0,1008.7002779999999,0.0,88.6,4.667083333,0.027666667000000002,238.14567981666667 -2016-03-25 05:00:00,0.0,1008.833333,0.0,88.86666667,5.890833333,1.281583333,238.14484396666668 -2016-03-25 06:00:00,2.84911524,1008.624722,3.3363333330000002,91.3,5.939583333,1.9126666669999999,238.14484396666668 -2016-03-25 07:00:00,0.0,1008.3905560000001,30.38916667,93.89166667,5.9465,2.6319999999999997,238.14379913333335 -2016-03-25 08:00:00,3.824773416,1008.265833,104.9575,94.36666667,6.182083333,3.285916667,238.14484395 -2016-03-25 09:00:00,0.0,1008.0413890000001,139.55833330000002,92.025,6.765916667000001,3.350916667,238.14421708333336 -2016-03-25 10:00:00,14.29798022,1007.9425,128.4833333,93.53333333,6.6878333329999995,3.052333333,238.14442605000002 -2016-03-25 11:00:00,17.4823439,1007.915278,115.8075,93.93333333,6.847083333,2.85675,238.14338123333334 -2016-03-25 12:00:00,18.52564236,1007.565833,91.78333333,95.39166667,6.784416667,2.177666667,238.14630668333336 -2016-03-25 13:00:00,16.42420022,1007.375,92.9225,95.51666667,6.686,2.3905,238.14609773333336 -2016-03-25 14:00:00,18.57629256,1007.241667,88.4825,97.375,6.472083333,2.31375,238.14860524999997 -2016-03-25 15:00:00,15.57873053,1007.475833,81.25666667,97.53333333,6.293916667,2.2560833330000003,238.1496500833333 -2016-03-25 16:00:00,11.67474742,1007.692222,54.60416667,97.71666667,6.109,1.8,238.15194865 -2016-03-25 17:00:00,2.5979602319999997,1007.851111,24.22333333,98.75833333,6.1695,0.97125,238.15466516666666 -2016-03-25 18:00:00,5.26333308,1008.6530550000001,16.30383333,99.91666667,6.413583332999999,1.438083333,238.15487411666672 -2016-03-25 19:00:00,0.0,1009.652222,0.15183333300000001,98.65833333,6.6725833329999995,1.2365,238.15466516666666 -2016-03-25 20:00:00,0.0,1010.5702779999999,0.0,97.50833333,6.263083332999999,0.738083333,238.15717270000002 -2016-03-25 21:00:00,0.0,1011.5427779999999,0.0,99.25,6.06225,1.016,238.15403828333334 -2016-03-25 22:00:00,0.0,1011.901667,0.0,98.34166667,6.190833333,0.782166667,238.15403828333334 -2016-03-25 23:00:00,0.0,1012.8438890000001,0.0,98.36666667,6.032833332999999,0.6515,238.15153073333332 -2016-03-26 00:00:00,0.0,1013.334722,0.0,99.61666667,5.80075,0.8915,238.15403828333334 -2016-03-26 01:00:00,0.0,1013.9925,0.0,99.74166667,5.760333332999999,0.544333333,238.15215759999998 -2016-03-26 02:00:00,0.0,1014.192222,0.0,99.45,5.9051666670000005,0.749083333,238.15257553333333 -2016-03-26 03:00:00,0.0,1014.275833,0.0,100.0,5.760583333,0.500083333,238.15445623333332 -2016-03-26 04:00:00,0.0,1014.65,0.0,99.775,5.0705,0.841166667,238.15508308333332 -2016-03-26 05:00:00,0.0,1014.5425,0.004666667,100.0,2.7873333330000003,0.4835,238.15466515 -2016-03-26 06:00:00,0.0,1014.9419439999999,6.987333333,100.0,1.256333333,0.181916667,238.15445621666666 -2016-03-26 07:00:00,0.0,1015.2763890000001,54.68833333,100.0,2.421916667,0.10008333300000001,238.15215761666664 -2016-03-26 08:00:00,0.0,1015.4,123.54166670000001,100.0,5.1785,0.35616666700000005,238.15027693333332 -2016-03-26 09:00:00,0.0,1015.415278,266.275,95.24166667,7.5766666670000005,1.345166667,238.14693358333332 -2016-03-26 10:00:00,0.0,1015.1,370.4166667,84.84833333,9.606666667,2.66175,238.1463067 -2016-03-26 11:00:00,0.0,1014.824167,281.6833333,75.8675,11.00583333,2.664083333,238.14797836666665 -2016-03-26 12:00:00,0.0,1014.3727779999999,402.21666669999996,69.8475,11.68583333,2.758833333,238.1479783833333 -2016-03-26 13:00:00,0.0,1013.690833,495.3083333000001,64.90166667,12.97416667,3.091,238.14839630000003 -2016-03-26 14:00:00,0.0,1013.155833,445.3916666999999,61.7975,13.59833333,3.03575,238.14672463333338 -2016-03-26 15:00:00,0.0,1012.3894449999999,365.475,61.4725,13.73333333,3.191583333,238.14588876666667 -2016-03-26 16:00:00,0.0,1011.581111,261.9333333,64.60416667,13.10833333,3.108083333,238.150068 -2016-03-26 17:00:00,0.0,1010.623056,88.78833333,67.07583333,12.18166667,2.448666667,238.15236656666664 -2016-03-26 18:00:00,0.0,1010.148611,16.01575,69.07583333,10.54666667,2.3555833330000002,238.15341139999998 -2016-03-26 19:00:00,0.0,1009.6327779999999,0.165833333,80.36166667,9.538333332999999,2.096166667,238.15445621666666 -2016-03-26 20:00:00,0.0,1009.448889,0.0,77.11166667,9.494166667,2.045583333,238.15069488333333 -2016-03-26 21:00:00,0.0,1008.965,0.0,89.58333333,6.57625,0.720833333,238.15424723333334 -2016-03-26 22:00:00,0.0,1008.189445,0.0,86.325,5.536916667000001,0.485416667,238.15320240000003 -2016-03-26 23:00:00,0.0,1007.271944,0.0,80.135,7.9905,3.08125,238.15069486666667 -2016-03-27 00:00:00,0.0,1006.674444,0.0,80.9025,7.83925,3.175166667,238.15048591666664 -2016-03-27 01:00:00,0.0,1005.9386109999999,0.0,82.31666667,7.552416667,1.925,238.1523665666667 -2016-03-27 02:00:00,0.0,1005.3738890000001,0.0,84.775,6.419666667,1.6133333330000001,238.15194865 -2016-03-27 03:00:00,0.0,1004.2205560000001,0.0,87.58333333,6.325166667,2.6029166669999997,238.15278448333333 -2016-03-27 04:00:00,0.0,1003.4991669999999,0.0,86.46666667,6.278166667000001,2.864833333,238.15173968333332 -2016-03-27 05:00:00,0.0,1002.73,0.016416667,87.74166667,6.3673333329999995,2.7569999999999997,238.15132178333332 -2016-03-27 06:00:00,0.0,1002.160833,5.4450833329999995,87.38333333,6.452833332999999,2.332583333,238.15236658333333 -2016-03-27 07:00:00,0.0,1003.1680560000001,10.76566667,92.475,7.015166667000001,1.161833333,238.1490232 -2016-03-27 08:00:00,6.274298592,1003.6697220000001,18.70916667,89.825,7.407416667000001,1.5549166669999999,238.14985903333334 -2016-03-27 09:00:00,24.46550575,1005.096667,32.43083333,89.81666667,9.3275,3.19125,238.1479783833333 -2016-03-27 10:00:00,27.28105356,1006.6936109999999,70.885,95.725,8.715,3.700416667,238.14651564999997 -2016-03-27 11:00:00,0.0,1007.051667,107.88333329999999,90.475,8.721666667000001,3.0829166669999997,238.150068 -2016-03-27 12:00:00,0.0,1007.868333,153.2166667,84.75916667,9.641666667,3.141166667,238.14547085000004 -2016-03-27 13:00:00,0.0,1007.8319439999999,185.1908333,80.58166667,10.09583333,3.601333333,238.14630669999997 -2016-03-27 14:00:00,0.0,1007.675,280.6375,74.13,10.86583333,3.8510000000000004,238.14651563333334 -2016-03-27 15:00:00,0.0,1007.415833,207.2333333,67.25416667,11.3525,3.761916667,238.14651563333334 -2016-03-27 16:00:00,0.0,1007.149167,224.2833333,62.71,11.7025,3.5100833330000003,238.14902316666667 -2016-03-27 17:00:00,0.0,1006.791667,63.84166667,63.0025,11.30583333,2.245166667,238.1494411 -2016-03-27 18:00:00,0.0,1007.0747220000001,8.274166667000001,67.015,9.989166667000001,1.10625,238.14818733333334 -2016-03-27 19:00:00,0.0,1006.8502779999999,0.26025,79.2675,6.795333332999999,1.6035833330000002,238.15173968333332 -2016-03-27 20:00:00,0.0,1007.209167,0.0,77.49083333,5.373833332999999,0.7224166670000001,238.14839628333334 -2016-03-27 21:00:00,0.0,1007.1913890000001,0.0,78.08416667,5.0075,1.163833333,238.15006796666668 -2016-03-27 22:00:00,0.0,1006.931111,0.0,79.8625,7.086916667000001,1.3493333330000001,238.15027694999995 -2016-03-27 23:00:00,0.0,1006.466667,0.0,79.74166667,3.9815,0.38841666700000005,238.15069486666667 -2016-03-28 00:00:00,0.0,1006.140278,0.0,79.97333333,2.6555,1.0745833329999999,238.15048593333333 -2016-03-28 01:00:00,0.0,1005.706667,0.0,80.62916667,3.0180000000000002,2.36175,238.15006798333332 -2016-03-28 02:00:00,0.0,1004.9219439999999,0.0,89.95,2.737083333,2.44375,238.15257553333333 -2016-03-28 03:00:00,0.0,1004.106944,0.0,88.86666667,3.655,2.517583333,238.15278448333333 -2016-03-28 04:00:00,0.0,1003.398056,0.0,86.65,4.372166667,2.6639999999999997,238.15153073333332 -2016-03-28 05:00:00,0.0,1002.572222,0.024916667000000003,79.90583333,3.999916667,2.144166667,238.14881423333335 -2016-03-28 06:00:00,0.0,1001.673889,15.0235,78.65166667,4.382916667,2.43925,238.14923215 -2016-03-28 07:00:00,0.0,1001.1144449999999,56.46333333,76.89833333,5.69025,2.352083333,238.14965006666668 -2016-03-28 08:00:00,0.0,1000.313889,89.2125,73.0125,6.464166667000001,3.00725,238.14839628333334 -2016-03-28 09:00:00,0.0,999.8833332999999,99.9375,69.83083333,7.347833333,3.069083333,238.14797838333334 -2016-03-28 10:00:00,0.0,999.3308332999999,85.27,74.52,7.507916667000001,2.6775833330000003,238.14985905000003 -2016-03-28 11:00:00,5.109483192,998.2636110999999,188.7666667,77.30916667,8.37225,4.259083333,238.14756046666665 -2016-03-28 12:00:00,0.0,997.8497222000001,186.16666669999998,81.29166667,9.085833333,5.396166667,238.1469335666667 -2016-03-28 13:00:00,0.0,997.3638889,69.43333333,82.85833333,8.8125,4.876416667,238.14860526666664 -2016-03-28 14:00:00,0.0,996.4897222000001,57.47583333,80.395,9.343333333,4.42475,238.14839630000003 -2016-03-28 15:00:00,3.1209682560000003,995.4288889000001,47.47166667,80.32583333,9.950833333,3.92475,238.14839631666666 -2016-03-28 16:00:00,175.9698438,996.5038889,92.90416667,94.08333333,7.85125,3.9321666669999997,238.16260568333334 -2016-03-28 17:00:00,0.0,996.0433332999999,75.165,88.94166667,9.163333332999999,1.96125,238.1768150833333 -2016-03-28 18:00:00,0.0,996.5933332999999,20.95808333,86.01666667,9.168333333,1.7763333330000002,238.17681510000003 -2016-03-28 19:00:00,38.67406565,997.4602777999999,0.12166666699999999,91.56666667,7.154583333,2.434166667,238.30971471666666 -2016-03-28 20:00:00,48.38380332,998.0258332999998,0.0,98.01666667,6.19225,1.509166667,238.43906196666669 -2016-03-28 21:00:00,2.8210281839999998,997.8733332999999,0.0,99.95,5.402916667,1.7455833330000001,238.5011236 -2016-03-28 22:00:00,3.800256648,997.4591667000001,0.0,92.00833333,7.2625,1.494583333,238.37344803333337 -2016-03-28 23:00:00,9.041543352,997.7094444,0.0,94.06666667,7.373416667000001,2.6225,238.34126791666665 -2016-03-29 00:00:00,22.93543198,998.5591667000001,0.0,96.69166667,5.869416667,1.7031666669999999,238.33792455000003 -2016-03-29 01:00:00,0.0,998.9688889,0.0,93.775,5.746583332999999,3.492666667,238.35694004999996 -2016-03-29 02:00:00,0.0,999.5933332999999,0.0,93.23333333,5.48325,2.854333333,238.35944759999998 -2016-03-29 03:00:00,0.0,1000.1438890000001,0.0,91.83333333,5.702833332999999,3.585,238.3506712 -2016-03-29 04:00:00,0.0,1000.7022220000001,0.0,88.3,5.861916667000001,4.01725,238.34440234999997 -2016-03-29 05:00:00,0.0,1001.601389,0.0305,85.56666667,5.752583333,3.423166667,238.33458115 -2016-03-29 06:00:00,0.0,1002.210833,9.046166667,84.38333333,5.694916667,3.7735,238.33249151666666 -2016-03-29 07:00:00,0.0,1003.085,62.25333333,85.4,6.219666667,4.247,238.3241330666667 -2016-03-29 08:00:00,0.0,1003.626389,113.605,81.17333333,7.438333332999999,4.944166667,238.31890901666665 -2016-03-29 09:00:00,0.0,1004.318333,314.1166667,75.84166667,8.442166667,4.866416667,238.30950573333328 -2016-03-29 10:00:00,0.0,1004.8438890000001,375.65,71.4575,9.281666667,5.167333333,238.3053265 -2016-03-29 11:00:00,0.0,1005.200833,508.65,65.47333333,10.2075,4.915166667,238.29989349999997 -2016-03-29 12:00:00,0.0,1005.5583330000001,392.175,61.60333333,10.54833333,5.2595,238.29634115 -2016-03-29 13:00:00,0.0,1005.3741669999999,296.3583333,58.58833333,10.72583333,4.421333333,238.29383363333332 -2016-03-29 14:00:00,0.0,1005.4425,430.21666669999996,55.50166667,12.11416667,4.607333333,238.28860956666665 -2016-03-29 15:00:00,0.0,1005.3825,234.3416667,58.55,11.72333333,3.326083333,238.28631099999998 -2016-03-29 16:00:00,0.0,1005.3661109999999,263.7,55.9125,12.28833333,2.359916667,238.28234073333337 -2016-03-29 17:00:00,0.0,1005.042222,74.5825,56.9925,11.78666667,3.9355,238.2802511333333 -2016-03-29 18:00:00,0.0,1005.9030560000001,17.12941667,60.52666667,10.4425,3.030583333,238.27565395 -2016-03-29 19:00:00,0.0,1006.2075,0.35600000000000004,68.82416667,7.87325,0.849583333,238.2737733 -2016-03-29 20:00:00,0.0,1006.385,0.0,82.1575,4.954916667,0.279583333,238.27084786666668 -2016-03-29 21:00:00,0.0,1006.741667,0.0,81.685,4.031166667,0.11699999999999999,238.26583276666668 -2016-03-29 22:00:00,0.0,1006.540833,0.0,84.73333333,4.451416667,0.18483333300000002,238.26144455 -2016-03-29 23:00:00,0.0,1006.2661109999999,0.0,85.575,5.238166667,0.236083333,238.25851908333334 -2016-03-30 00:00:00,0.0,1005.538611,0.0,84.33666667,6.7535,1.317166667,238.25308611666665 -2016-03-30 01:00:00,44.46475687,1005.4922220000001,0.0,89.375,7.310583332999999,0.95725,238.2509964833333 -2016-03-30 02:00:00,2.563336776,1004.89,0.0,94.65833333,6.831333333,0.653,238.25057855 -2016-03-30 03:00:00,2.418224544,1004.5736109999999,0.0,97.81666667,6.616833333,0.279666667,238.24911581666666 -2016-03-30 04:00:00,0.0,1003.981944,0.0,91.63333333,7.298916667,0.842833333,238.24639930000004 -2016-03-30 05:00:00,0.0,1003.933889,0.016416667,89.725,8.064,1.2255,238.24284698333335 -2016-03-30 06:00:00,0.0,1003.9347220000001,9.337833332999999,88.63333333,8.384166667,1.8188333330000002,238.23971256666664 -2016-03-30 07:00:00,0.0,1004.7527779999999,51.01666667,87.275,8.96,2.290083333,238.23532435 -2016-03-30 08:00:00,0.0,1005.325556,83.14583333,85.86666667,9.638333333,2.514166667,238.23114511666665 -2016-03-30 09:00:00,38.34428789,1005.9525,47.20333333,91.33333333,8.297333333,2.055916667,238.23093618333328 -2016-03-30 10:00:00,18.50305272,1006.726389,95.58583333,96.325,7.7235,0.916416667,238.23386163333336 -2016-03-30 11:00:00,13.25768791,1007.259722,126.49416670000001,94.34166667,8.092583333,1.2399166670000001,238.24096633333332 -2016-03-30 12:00:00,8.50672992,1007.5836109999999,150.94166669999998,95.13333333,8.081416667000001,1.9595,238.24660830000002 -2016-03-30 13:00:00,3.61967556,1007.4575,270.21666669999996,92.25833333,9.189166667,2.5945,238.25245918333334 -2016-03-30 14:00:00,0.0,1007.35,276.7916667,85.575,10.46083333,2.3695,238.25371298333334 -2016-03-30 15:00:00,0.0,1007.1997220000001,260.78333330000004,81.91833333,11.17416667,2.498333333,238.25266816666667 -2016-03-30 16:00:00,0.0,1006.9994439999999,156.34,80.36166667,11.20166667,2.138416667,238.25204128333334 -2016-03-30 17:00:00,0.0,1006.875,47.41166667,79.09583333,10.745,2.53875,238.25225024999997 -2016-03-30 18:00:00,0.0,1007.091667,14.28025,84.01666667,9.97,2.68225,238.25057856666672 -2016-03-30 19:00:00,0.0,1007.234167,0.229666667,89.975,9.015833333,1.81575,238.24786205 -2016-03-30 20:00:00,0.0,1007.5597220000001,0.0,93.20833333,8.445,1.33725,238.24723516666668 -2016-03-30 21:00:00,0.0,1007.8911109999999,0.0,94.975,8.054666667000001,0.680666667,238.24514555000005 -2016-03-30 22:00:00,0.0,1007.6747220000001,0.0,98.59166667,7.827583333,0.502833333,238.24326489999999 -2016-03-30 23:00:00,0.0,1007.6425,0.0,99.79166667,7.418666667,0.04975,238.24222009999997 -2016-03-31 00:00:00,0.0,1007.515833,0.0,100.0,7.2489166670000005,0.5116666670000001,238.24159321666664 -2016-03-31 01:00:00,0.0,1007.6594439999999,0.0,100.0,7.22,0.253833333,238.23824981666664 -2016-03-31 02:00:00,0.0,1007.498333,0.0,100.0,7.132916667000001,0.30575,238.23511541666667 -2016-03-31 03:00:00,0.0,1006.965,0.0,100.0,7.1951666670000005,1.315416667,238.23553331666665 -2016-03-31 04:00:00,0.0,1006.9922220000001,0.0,99.775,7.074083333,0.18533333300000002,238.23302578333335 -2016-03-31 05:00:00,0.0,1006.958056,0.013666667,99.96666667,6.9356666670000005,1.170666667,238.23260786666663 -2016-03-31 06:00:00,2.899961784,1006.6747220000001,5.50525,98.675,6.961,1.6764166669999998,238.2296824166667 -2016-03-31 07:00:00,0.0,1006.834167,15.63416667,97.09166667,7.083083332999999,1.4841666669999998,238.22696586666666 -2016-03-31 08:00:00,0.0,1007.184167,42.07833333,93.44166667,7.18775,2.5380000000000003,238.22842863333335 -2016-03-31 09:00:00,0.0,1007.266667,84.60333333,89.775,7.545166667,3.115166667,238.22466731666668 -2016-03-31 10:00:00,3.5355353760000003,1007.3575,62.16666667,90.75833333,7.543916667,2.8785,238.22404041666667 -2016-03-31 11:00:00,56.51626495,1006.9161109999999,53.51166667,96.41666667,6.896,3.0758333330000003,238.22424938333336 -2016-03-31 12:00:00,24.640110699999997,1006.6913890000001,79.1875,98.2,6.679333333,3.9485,238.22759276666667 -2016-03-31 13:00:00,16.7240921,1006.8741669999999,38.7425,98.8,6.616833333,3.7085,238.23532438333334 -2016-03-31 14:00:00,3.8520688080000003,1006.450833,43.43333333,98.425,6.6965,3.701666667,238.24263801666666 -2016-03-31 15:00:00,25.3326901,1006.114167,20.7775,97.65833333,6.459083333,4.061333333,238.2476531 -2016-03-31 16:00:00,26.70476446,1005.1736109999999,18.42083333,99.5,6.05675,4.141583333,238.25580261666667 -2016-03-31 17:00:00,47.65058422,1005.542222,4.310083333,99.98333333,5.704416667,3.400416667,238.29822183333332 -2016-03-31 18:00:00,11.2990116,1005.383056,2.310333333,99.99166667,5.281666667,3.697,238.37407491666667 -2016-03-31 19:00:00,0.0,1005.4,0.045083332999999996,98.65833333,4.82575,3.991833333,238.33123776666665 -2016-03-31 20:00:00,0.0,1006.0277779999999,0.0,98.06666667,4.524416667,4.24925,238.32267036666667 -2016-03-31 21:00:00,64.41890402,1006.425,0.0,98.58333333,3.899666667,4.116416667,238.31681941666668 -2016-03-31 22:00:00,82.26429389,1006.616667,0.0,99.85833333,3.3425833330000003,4.574166667,238.52870653333335 -2016-03-31 23:00:00,74.92726646,1006.826667,0.0,99.95833333,2.7125,3.898666667,238.6175152333333 -2016-01-04 00:00:00,114.5331371,1007.5938890000001,0.0,100.0,2.50325,3.361416667,238.09545103333332 -2016-01-04 01:00:00,64.33012231,1008.3125,0.0,100.0,2.544166667,4.435166667,238.09276673333332 -2016-01-04 02:00:00,61.87606399,1009.376389,0.0,100.0,2.186833333,3.58275,238.09294569999997 -2016-01-04 03:00:00,50.99268862,1010.219722,0.0,100.0,2.3136666669999997,3.2015,238.09258779999996 -2016-01-04 04:00:00,18.67363586,1010.943333,0.0,100.0,2.7181666669999998,3.059916667,238.09079825 -2016-01-04 05:00:00,0.0,1011.6613890000001,0.0235,100.0,3.07525,2.699583333,238.08847185000002 -2016-01-04 06:00:00,0.0,1012.508333,6.676083332999999,99.84166667,3.419916667,2.1515,238.0875771 -2016-01-04 07:00:00,0.0,1013.4386109999999,32.6025,97.94166667,3.776416667,2.2769999999999997,238.08668233333333 -2016-01-04 08:00:00,0.0,1014.8272220000001,88.2725,95.45833333,4.393,2.2208333330000003,238.0843559 -2016-01-04 09:00:00,0.0,1015.5436109999999,161.2833333,92.41666667,5.331,2.767833333,238.08381908333334 -2016-01-04 10:00:00,0.0,1016.461111,249.2333333,87.28333333,6.311166667,3.53125,238.0807768666667 -2016-01-04 11:00:00,0.0,1017.150278,328.96666669999996,82.59166667,7.287666667000001,3.76925,238.08077686666664 -2016-01-04 12:00:00,0.0,1017.2088890000001,395.1833333,78.92333333,8.331583333,4.012583333,238.08077688333333 -2016-01-04 13:00:00,0.0,1017.3075,371.85,74.59583333,9.5525,3.992,238.08059793333334 -2016-01-04 14:00:00,0.0,1016.825,316.9,72.53833333,9.94,3.388,238.08185059999997 -2016-01-04 15:00:00,0.0,1016.7327779999999,271.6833333,71.0825,10.40416667,3.19375,238.0845348833333 -2016-01-04 16:00:00,0.0,1016.423333,248.275,69.46,10.78583333,3.3698333330000003,238.08793498333338 -2016-01-04 17:00:00,0.0,1015.898333,97.275,68.935,10.58166667,3.686833333,238.0904403333333 -2016-01-04 18:00:00,0.0,1015.8594439999999,37.74616667,74.4125,9.205833333,2.550916667,238.09670371666667 -2016-01-04 19:00:00,0.0,1016.2188890000001,0.5688333329999999,87.83333333,7.9139166670000005,2.522833333,238.1017144 -2016-01-04 20:00:00,0.0,1017.0425,0.0,92.85,6.482833332999999,1.500666667,238.10457766666664 -2016-01-04 21:00:00,0.0,1017.05,0.0,98.375,3.241083333,0.471416667,238.10976730000002 -2016-01-04 22:00:00,0.0,1016.89,0.0,99.96666667,1.66325,0.20425,238.10923045 -2016-01-04 23:00:00,0.0,1016.458333,0.0,100.0,0.7495,0.106833333,238.11263056666664 -2016-02-04 00:00:00,0.0,1016.449445,0.0,100.0,0.271083333,0.02725,238.09813535 -2016-02-04 01:00:00,0.0,1016.2830560000001,0.0,100.0,-0.284833333,0.038416667,238.09938799999998 -2016-02-04 02:00:00,0.0,1016.04,0.0,100.0,-0.6004166670000001,0.081916667,238.0970616333333 -2016-02-04 03:00:00,0.0,1015.3994449999999,0.0,100.0,-0.97525,0.0165,238.09813535 -2016-02-04 04:00:00,0.0,1014.974167,0.0,100.0,-1.011,0.04175,238.0986722 -2016-02-04 05:00:00,0.0,1015.133333,0.21575,100.0,-1.081333333,0.044083332999999995,238.09920905 -2016-02-04 06:00:00,0.0,1015.0583330000001,16.04283333,100.0,-1.158416667,0.042,238.09885115 -2016-02-04 07:00:00,0.0,1015.016667,53.7825,100.0,1.29975,0.078416667,238.1006406666667 -2016-02-04 08:00:00,0.0,1014.966667,129.925,97.85833333,4.625666667,0.10300000000000001,238.10099860000003 -2016-02-04 09:00:00,0.0,1014.983333,236.7333333,86.63333333,7.543083332999999,0.872833333,238.09867218333332 -2016-02-04 10:00:00,0.0,1014.840833,372.425,79.98,9.87,1.7265833330000002,238.09741955 -2016-02-04 11:00:00,0.0,1014.3469449999999,343.1083333,78.87333333,11.3725,1.92725,238.09741953333332 -2016-02-04 12:00:00,0.0,1013.674444,413.9166667,77.38333333,12.17166667,1.253333333,238.0999248666667 -2016-02-04 13:00:00,0.0,1013.214722,389.6833333,73.635,13.76833333,1.255916667,238.10064068333335 -2016-02-04 14:00:00,0.0,1012.5486109999999,284.78333330000004,71.44,14.32916667,1.428833333,238.10368291666668 -2016-02-04 15:00:00,0.0,1012.0469439999999,234.0916667,71.00083333,14.6575,1.076416667,238.1088725333333 -2016-02-04 16:00:00,0.0,1011.275556,193.675,70.52083333,15.3425,0.7140000000000001,238.11334638333332 -2016-02-04 17:00:00,0.0,1011.2994449999999,111.80833329999999,69.95,14.87,0.7373333329999999,238.11978870000004 -2016-02-04 18:00:00,0.0,1010.847778,29.03358333,81.57083333,12.755,0.214,238.12444150000002 -2016-02-04 19:00:00,0.0,1010.266389,0.48808333299999995,96.19166667,9.315833332999999,0.11508333300000001,238.12981008333335 -2016-02-04 20:00:00,0.0,1010.166667,0.0,99.45,7.73325,0.26158333300000003,238.1351786833333 -2016-02-04 21:00:00,0.0,1010.015,0.0,100.0,6.716583332999999,0.163416667,238.1382209 -2016-02-04 22:00:00,0.0,1009.633056,0.0,100.0,6.76025,0.257916667,238.14126310000003 -2016-02-04 23:00:00,0.0,1009.666667,0.0,100.0,6.81475,0.212416667,238.141621 -2016-03-04 00:00:00,0.0,1009.5583330000001,0.0,100.0,7.1455,0.201666667,238.20983105000002 -2016-03-04 01:00:00,0.0,1009.272222,0.0,100.0,7.63025,0.200833333,238.21108478333335 -2016-03-04 02:00:00,0.0,1008.9425,0.0,100.0,8.261666667,0.35858333299999995,238.2092041666667 -2016-03-04 03:00:00,0.0,1008.799444,0.0,100.0,7.857083332999999,0.311583333,238.20753246666663 -2016-03-04 04:00:00,0.0,1008.414444,0.0,100.0,7.281000000000001,0.180083333,238.20753246666663 -2016-03-04 05:00:00,0.0,1008.009722,0.07933333299999999,100.0,7.639416667000001,0.562,238.20795038333333 -2016-03-04 06:00:00,0.0,1008.475833,13.91383333,100.0,7.246083333,0.27525,238.20815935000005 -2016-03-04 07:00:00,0.0,1009.109167,57.54833333,99.75833333,8.0315,0.200833333,238.20920415 -2016-03-04 08:00:00,0.0,1008.9672220000001,103.5016667,95.43333333,9.85,0.56075,238.20627868333335 -2016-03-04 09:00:00,0.0,1009.551667,225.2333333,83.44583333,11.90083333,0.43108333299999996,238.20356218333333 -2016-03-04 10:00:00,0.0,1009.6241669999999,335.025,72.4075,14.99333333,0.7909166670000001,238.20565179999997 -2016-03-04 11:00:00,0.0,1009.299167,325.4583333,67.1025,16.5575,1.42275,238.20481596666664 -2016-03-04 12:00:00,0.0,1008.899167,267.825,67.88166667,17.12916667,1.8900833330000002,238.20711455 -2016-03-04 13:00:00,0.0,1008.339444,376.6916667,68.94833333,18.5975,1.34375,238.20627869999998 -2016-03-04 14:00:00,0.0,1007.856667,308.925,62.7575,19.16333333,1.52375,238.2066966166667 -2016-03-04 15:00:00,0.0,1007.189444,196.525,61.75833333,18.76166667,1.53825,238.20711455000003 -2016-03-04 16:00:00,0.0,1006.716111,156.2833333,61.41916667,18.335,1.501,238.20857726666668 -2016-03-04 17:00:00,0.0,1006.5580560000001,70.80166667,67.44916667,17.0125,1.207666667,238.20857726666668 -2016-03-04 18:00:00,0.0,1006.4077779999999,12.94925,83.0375,15.3075,0.613916667,238.21317439999999 -2016-03-04 19:00:00,0.0,1006.359167,0.26258333300000003,93.05,14.09833333,0.163333333,238.21442820000001 -2016-03-04 20:00:00,0.0,1006.3488890000001,0.0,94.71666667,13.2875,0.33799999999999997,238.21568196666666 -2016-03-04 21:00:00,0.0,1005.824444,0.0,97.675,12.52833333,0.24891666699999998,238.21484611666665 -2016-03-04 22:00:00,0.0,1005.4569439999999,0.0,98.825,12.20333333,0.21575,238.21881638333335 -2016-03-04 23:00:00,7.480853088,1005.6,0.0,99.51666667,11.99833333,0.309,238.22090599999999 -2016-04-04 00:00:00,4.919554008,1005.231667,0.0,100.0,11.95416667,0.160333333,238.30699821666667 -2016-04-04 01:00:00,0.0,1004.741389,0.0,100.0,11.715,0.255583333,238.30678924999998 -2016-04-04 02:00:00,0.0,1004.900833,0.0,97.79166667,12.34666667,0.8955,238.30261001666668 -2016-04-04 03:00:00,4.91390292,1004.6227779999999,0.0,99.14166667,11.86083333,0.252416667,238.30072934999998 -2016-04-04 04:00:00,32.0302146,1004.6244449999999,0.0,100.0,11.77916667,1.362333333,238.2994755833333 -2016-04-04 05:00:00,2.71386684,1003.8825,0.136166667,100.0,11.3675,0.551583333,238.3030279333333 -2016-04-04 06:00:00,0.0,1003.6833330000001,6.84925,100.0,10.55083333,0.5016666670000001,238.30553551666665 -2016-04-04 07:00:00,0.0,1003.9263890000001,39.86416667,100.0,11.54333333,2.218,238.30219208333335 -2016-04-04 08:00:00,0.0,1004.1925,90.64916667,97.56666667,13.0675,1.672833333,238.29738594999995 -2016-04-04 09:00:00,3.0010371360000003,1004.4333330000001,180.6333333,79.71666667,15.52,1.5590000000000002,238.29216193333332 -2016-04-04 10:00:00,0.0,1004.684167,201.0916667,74.58583333,16.3375,2.085083333,238.29216195000004 -2016-04-04 11:00:00,0.0,1004.849167,135.2933333,77.02583333,15.72416667,2.1535,238.2894454166667 -2016-04-04 12:00:00,5.56413612,1004.525556,251.2833333,78.775,15.80833333,1.03575,238.28986335000002 -2016-04-04 13:00:00,0.0,1004.531944,387.3916667,66.30333333,17.61,2.0838333330000003,238.2877737166667 -2016-04-04 14:00:00,0.0,1003.915,233.1083333,63.87666667,17.54666667,1.7256666669999998,238.2875647666667 -2016-04-04 15:00:00,0.0,1003.5919439999999,180.6083333,60.46833333,17.07833333,1.9405,238.28756475 -2016-04-04 16:00:00,10.81108406,1003.615833,82.73916667,77.1675,15.08416667,1.582583333,238.28631098333332 -2016-04-04 17:00:00,2.716943712,1003.7088890000001,54.14,80.50916667,13.8675,2.21525,238.2869378833333 -2016-04-04 18:00:00,0.0,1003.666667,34.05333333,87.55,13.12916667,1.17875,238.28401241666666 -2016-04-04 19:00:00,0.0,1003.809167,0.99525,89.91666667,11.9825,2.00375,238.28443033333335 -2016-04-04 20:00:00,0.0,1003.8577779999999,0.0,93.95833333,10.52666667,1.49075,238.28401241666666 -2016-04-04 21:00:00,0.0,1003.675,0.0,99.24166667,8.496916667,0.51025,238.28463929999998 -2016-04-04 22:00:00,0.0,1003.407222,0.0,100.0,8.256083333,0.29991666699999997,238.28254968333331 -2016-04-04 23:00:00,0.0,1003.334167,0.0,100.0,8.968333333,0.70475,238.28129593333333 -2016-05-04 00:00:00,0.0,1002.9638890000001,0.0,98.65,10.36416667,1.1530833329999999,238.12541480000002 -2016-05-04 01:00:00,2.9063526960000003,1002.5580560000001,0.0,99.03333333,10.61833333,1.328,238.12625963333335 -2016-05-04 02:00:00,7.58823612,1002.475833,0.0,100.0,10.04666667,0.440333333,238.12609066666667 -2016-05-04 03:00:00,41.16566124,1002.389167,0.0,100.0,9.909166667000001,0.567666667,238.12456996666666 -2016-05-04 04:00:00,2.4050227680000003,1002.3525,0.0,100.0,9.76,0.230083333,238.12693546666665 -2016-05-04 05:00:00,17.064148199999998,1002.8994439999999,0.05925,100.0,9.635,0.129,238.1272734 -2016-05-04 06:00:00,2.406314376,1003.018056,4.748333333,100.0,9.445,0.212,238.12423203333333 -2016-05-04 07:00:00,7.287348047999999,1002.8247220000001,21.19575,100.0,9.890833333,0.270833333,238.12203555 -2016-05-04 08:00:00,5.085198336,1003.041944,51.49916667,100.0,10.38833333,0.40783333299999996,238.11983900000004 -2016-05-04 09:00:00,2.82818052,1002.865278,62.14166667,100.0,11.05333333,1.3785,238.11865625000004 -2016-05-04 10:00:00,0.0,1002.9097220000001,96.20166667,100.0,11.44583333,1.8530000000000002,238.11848730000006 -2016-05-04 11:00:00,3.1977984239999997,1002.974722,116.51666670000002,97.59166667,12.86416667,2.224,238.11730458333332 -2016-05-04 12:00:00,0.0,1002.8911109999999,87.47583333,86.53333333,13.30083333,1.170833333,238.11865628333337 -2016-05-04 13:00:00,0.0,1002.682778,83.55833333,88.99166667,13.145,1.160666667,238.11764251666668 -2016-05-04 14:00:00,0.0,1002.5330560000001,103.8083333,90.54166667,13.33916667,1.385083333,238.11561491666666 -2016-05-04 15:00:00,0.0,1002.4430550000001,202.02333330000002,91.01666667,14.10916667,2.599583333,238.1151080333333 -2016-05-04 16:00:00,29.57461231,1003.301111,74.79166667,97.65833333,12.0575,2.080166667,238.11460113333337 -2016-05-04 17:00:00,2.7104589839999997,1003.810556,55.765,97.25,11.61,1.276916667,238.11696663333336 -2016-05-04 18:00:00,2.70604596,1004.4938890000001,16.27883333,97.36666667,10.99333333,0.893083333,238.11696663333336 -2016-05-04 19:00:00,0.0,1005.5022220000001,1.053166667,97.31666667,10.3,0.7404166670000001,238.11747351666668 -2016-05-04 20:00:00,0.0,1006.0925,0.0,98.51666667,9.725833332999999,0.699583333,238.12017693333334 -2016-05-04 21:00:00,0.0,1006.410833,0.0,99.94166667,8.273583333,0.203333333,238.12237344999997 -2016-05-04 22:00:00,0.0,1006.958333,0.0,100.0,7.541833333,0.06925,238.12051486666667 -2016-05-04 23:00:00,0.0,1007.2425,0.0,99.875,6.71475,0.04575,238.1216976166667 -2016-06-04 00:00:00,0.0,1007.408333,0.0,100.0,5.761666667,0.18383333300000002,238.11122186666668 -2016-06-04 01:00:00,0.0,1007.3,0.0,100.0,4.85275,0.201,238.11155981666664 -2016-06-04 02:00:00,0.0,1007.3505560000001,0.0,100.0,3.7715,0.015916667,238.1085184333333 -2016-06-04 03:00:00,2.405650608,1007.591667,0.0,100.0,3.066333333,0.040166667,238.1075046833333 -2016-06-04 04:00:00,0.0,1007.508333,0.0,100.0,2.339416667,0.05575,238.10834949999995 -2016-06-04 05:00:00,0.0,1007.6344439999999,0.5215833329999999,99.45833333,2.1245,0.11508333300000001,238.10547713333332 -2016-06-04 06:00:00,0.0,1008.0513890000001,14.74675,98.16666667,4.0055,0.92225,238.10530816666665 -2016-06-04 07:00:00,0.0,1008.458333,53.90916667,93.25,8.2475,2.4586666669999997,238.10311163333333 -2016-06-04 08:00:00,0.0,1008.826667,140.2216667,88.525,9.5475,2.962916667,238.1024358 -2016-06-04 09:00:00,0.0,1009.116389,275.4916667,85.34166667,10.52,3.092166667,238.10023928333337 -2016-06-04 10:00:00,0.0,1008.790556,357.4916667,79.1025,11.33833333,2.4035833330000003,238.10023926666668 -2016-06-04 11:00:00,0.0,1008.4825,496.95833330000005,71.83166667,12.6175,3.7600833330000003,238.09804271666664 -2016-06-04 12:00:00,0.0,1007.8063890000001,412.225,64.07833333,13.14583333,4.221166667,238.09686001666662 -2016-06-04 13:00:00,0.0,1007.097778,428.5666666999999,59.01666667,14.07083333,3.675833333,238.0975358333333 -2016-06-04 14:00:00,0.0,1006.164167,342.95,54.54333333,14.41666667,4.015416667,238.09702895 -2016-06-04 15:00:00,0.0,1005.322778,197.18333330000002,56.34916667,14.63583333,3.878166667,238.09432553333332 -2016-06-04 16:00:00,0.0,1005.040833,104.4091667,58.46666667,14.04666667,3.760416667,238.09280486666663 -2016-06-04 17:00:00,0.0,1004.6241669999999,42.80916667,61.1875,13.72,3.2744166669999997,238.09567726666668 -2016-06-04 18:00:00,0.0,1004.2827779999999,15.08066667,63.8025,13.395,2.902166667,238.0939876 -2016-06-04 19:00:00,0.0,1003.990833,1.4880000000000002,65.0075,12.94083333,2.4035833330000003,238.09280488333332 -2016-06-04 20:00:00,0.0,1003.799444,0.0,66.58583333,12.60416667,2.757916667,238.0939876 -2016-06-04 21:00:00,0.0,1003.658333,0.0,67.98916667,12.615,3.463666667,238.09415658333333 -2016-06-04 22:00:00,0.0,1003.665833,0.0,70.68583333,12.25166667,3.257916667,238.09483243333332 -2016-06-04 23:00:00,2.572469592,1004.111389,0.0,81.915,9.656916667,3.0678333330000003,238.0963531 -2016-07-04 00:00:00,19.44494158,1004.6255560000001,0.0,94.66666667,7.860666667,1.130083333,238.07282840000002 -2016-07-04 01:00:00,2.75423424,1004.524167,0.0,96.325,7.341833332999999,0.777666667,238.07422138333334 -2016-07-04 02:00:00,0.0,1004.2911109999999,0.0,99.1,6.75825,0.40666666700000004,238.07442038333332 -2016-07-04 03:00:00,0.0,1004.116667,0.0,96.775,6.4525,0.169083333,238.07521633333337 -2016-07-04 04:00:00,0.0,1004.158333,0.0,91.975,6.858166667000001,1.580583333,238.07601230000003 -2016-07-04 05:00:00,8.0791014,1004.31,0.054916667,95.3,6.802083333,1.146916667,238.07282841666665 -2016-07-04 06:00:00,23.21734872,1004.849722,3.747666667,95.525,5.6275,1.724,238.07282841666665 -2016-07-04 07:00:00,0.0,1005.11,53.79916667,94.86666667,5.669083333,1.5995,238.07223141666668 -2016-07-04 08:00:00,3.416158608,1005.518056,136.1116667,85.39166667,7.6035,2.620583333,238.06964453333333 -2016-07-04 09:00:00,0.0,1006.0177779999999,227.7033333,75.42583333,8.651666667,3.2345833330000002,238.06725661666667 -2016-07-04 10:00:00,0.0,1006.3755560000001,364.6916667,66.79833333,9.435833333,2.8235,238.06685860000002 -2016-07-04 11:00:00,0.0,1006.158333,397.0666667,63.11083333,9.615,3.445833333,238.0648686666667 -2016-07-04 12:00:00,0.0,1006.341667,552.8166667,60.33666667,10.57083333,3.0210000000000004,238.06526665 -2016-07-04 13:00:00,0.0,1006.140833,506.7333333000001,59.08333333,10.9375,3.407333333,238.0662616166667 -2016-07-04 14:00:00,0.0,1006.233611,508.11666669999994,51.62833333,11.925,2.8431666669999998,238.06466966666667 -2016-07-04 15:00:00,0.0,1006.116389,425.0166666999999,50.355,11.835,3.0238333330000002,238.0620827666667 -2016-07-04 16:00:00,0.0,1005.949167,330.0666667,47.8375,12.0125,2.755666667,238.0618837833334 -2016-07-04 17:00:00,0.0,1005.9925,93.0125,48.88416667,11.34,1.9965,238.06128680000003 -2016-07-04 18:00:00,0.0,1006.560556,21.905,67.70083333,8.569166667000001,1.43275,238.06128680000003 -2016-07-04 19:00:00,0.0,1007.351944,1.164416667,75.8075,7.340166667,1.6458333330000001,238.06029183333337 -2016-07-04 20:00:00,0.0,1007.809167,0.0,82.26666667,4.886,0.27775,238.06188378333334 -2016-07-04 21:00:00,0.0,1008.009167,0.0,83.0525,2.753583333,0.23925,238.06307775000005 -2016-07-04 22:00:00,0.0,1008.241667,0.0,84.20833333,3.3923333330000003,0.886833333,238.06407271666671 -2016-07-04 23:00:00,0.0,1008.1497220000001,0.0,87.725,2.80525,0.55975,238.06387370000002 -2016-08-04 00:00:00,0.0,1008.1255560000001,0.0,91.45,1.4996666669999998,0.19066666699999998,237.99144015 -2016-08-04 01:00:00,0.0,1008.3502779999999,0.0,97.51666667,0.455666667,0.275916667,237.99203713333335 -2016-08-04 02:00:00,0.0,1008.231944,0.0,99.85833333,-0.037666667,0.053,237.99084316666665 -2016-08-04 03:00:00,0.0,1007.9925,0.0,100.0,-0.65375,0.212083333,237.99303206666664 -2016-08-04 04:00:00,0.0,1007.815,0.0,100.0,-1.072,0.111916667,237.99522100000002 -2016-08-04 05:00:00,0.0,1007.7763890000001,0.825333333,100.0,-1.5408333330000001,0.0,237.99542 -2016-08-04 06:00:00,0.0,1008.2427779999999,18.00625,100.0,-0.95125,0.017083333,237.99601700000002 -2016-08-04 07:00:00,0.0,1008.650556,87.76083333,100.0,2.5125833330000003,0.176916667,237.99621598333331 -2016-08-04 08:00:00,0.0,1008.641389,149.5875,88.16833333,6.561916667,0.650083333,237.99939986666672 -2016-08-04 09:00:00,0.0,1008.6919439999999,243.4966667,74.8425,9.0075,1.182083333,238.00178780000002 -2016-08-04 10:00:00,0.0,1008.4736109999999,244.5,72.70083333,9.873333333,0.77025,238.00138980000006 -2016-08-04 11:00:00,0.0,1008.04,257.4916667,63.08583333,10.11083333,1.523916667,238.00258378333334 -2016-08-04 12:00:00,0.0,1007.665556,372.075,61.31083333,11.27416667,1.8374166669999998,238.00079283333335 -2016-08-04 13:00:00,0.0,1007.182778,377.96666669999996,61.255,11.745,1.5155,238.00099183333336 -2016-08-04 14:00:00,0.0,1006.8152779999999,299.8166667,56.7675,11.675,1.3608333330000002,238.00218576666668 -2016-08-04 15:00:00,0.0,1006.474167,234.31666669999998,51.84833333,11.87583333,0.99,238.0073596 -2016-08-04 16:00:00,0.0,1006.040833,160.2333333,53.51666667,11.80916667,1.154916667,238.00795659999997 -2016-08-04 17:00:00,0.0,1005.9675,94.6875,60.06166667,10.79916667,2.15,238.00994653333336 -2016-08-04 18:00:00,0.0,1006.2338890000001,25.99,64.07833333,10.14333333,1.1786666670000001,238.01293141666667 -2016-08-04 19:00:00,0.0,1006.500278,2.277333333,85.08166667,8.610083333,0.3485,238.01293140000004 -2016-08-04 20:00:00,0.0,1006.6422220000001,0.0,91.975,7.11375,0.2275,238.01512033333336 -2016-08-04 21:00:00,0.0,1006.449444,0.0,94.1,5.697166667,0.177333333,238.0171102666667 -2016-08-04 22:00:00,0.0,1006.5075,0.0,96.80833333,3.360416667,0.330833333,238.01790623333332 -2016-08-04 23:00:00,0.0,1006.2997220000001,0.0,98.39166667,1.607666667,0.111416667,238.01810521666667 -2016-09-04 00:00:00,0.0,1006.031944,0.0,99.925,0.6196666670000001,0.133833333,237.83224546666668 -2016-09-04 01:00:00,0.0,1005.766667,0.0,100.0,-0.059916667,0.027583332999999998,237.83682231666668 -2016-09-04 02:00:00,0.0,1005.4994439999999,0.0,100.0,-0.67725,0.00225,237.8372203 -2016-09-04 03:00:00,0.0,1005.3997220000001,0.0,100.0,-0.882833333,0.058333333,237.84080219999998 -2016-09-04 04:00:00,0.0,1005.366667,0.0,100.0,-1.19025,0.079666667,237.84299111666667 -2016-09-04 05:00:00,0.0,1005.2075,0.825333333,100.0,-1.5694166669999998,0.000166667,237.84657298333332 -2016-09-04 06:00:00,0.0,1005.1919439999999,18.55475,100.0,-1.154416667,0.0,237.846175 -2016-09-04 07:00:00,0.0,1005.3758330000001,78.10333333,100.0,2.1519999999999997,0.037916667,237.84677198333335 -2016-09-04 08:00:00,0.0,1005.475,141.4091667,87.925,5.653166667000001,0.43841666700000004,237.85214481666662 -2016-09-04 09:00:00,0.0,1005.3325,232.8733333,79.67666667,7.422000000000001,0.9545,237.85373674999997 -2016-09-04 10:00:00,0.0,1005.0575,471.15833330000004,66.28833333,10.56333333,0.738833333,237.85433371666667 -2016-09-04 11:00:00,0.0,1004.665833,534.5583333000001,52.32833333,13.22916667,0.956333333,237.85672163333334 -2016-09-04 12:00:00,0.0,1004.1902779999999,488.86666669999994,47.7275,14.16833333,1.733333333,237.85692066666664 -2016-09-04 13:00:00,0.0,1003.807222,485.34166669999996,44.715,14.9425,1.4929166669999998,237.85632368333333 -2016-09-04 14:00:00,0.0,1003.431667,287.1166667,46.29083333,14.8875,1.23,237.85711963333333 -2016-09-04 15:00:00,0.0,1003.041944,170.2333333,48.49666667,14.53916667,1.56725,237.85891059999997 -2016-09-04 16:00:00,0.0,1003.0838890000001,100.2425,51.93333333,13.08083333,1.4736666669999998,237.85990556666664 -2016-09-04 17:00:00,0.0,1003.400833,47.73583333,55.37416667,12.19083333,1.46875,237.86010453333336 -2016-09-04 18:00:00,0.0,1003.7677779999999,38.06916667,58.73333333,11.8975,1.70625,237.8646813833333 -2016-09-04 19:00:00,0.0,1004.3102779999999,3.5558333330000003,66.60416667,10.58833333,1.8228333330000002,237.86647233333338 -2016-09-04 20:00:00,0.0,1004.725,0.0,72.99,8.389916667,1.876416667,237.86826326666664 -2016-09-04 21:00:00,0.0,1004.801111,0.0,80.07166667,7.5789166670000006,0.511916667,237.8692582 -2016-09-04 22:00:00,0.0,1005.2422220000001,0.0,76.7975,9.316666667,0.730833333,237.86985521666668 -2016-09-04 23:00:00,0.0,1005.283333,0.0,87.29166667,8.375833333,0.2395,237.8722431333333 -2016-10-04 00:00:00,0.0,1005.509167,0.0,90.875,7.765916667000001,0.0030833329999999997,237.94730570000002 -2016-10-04 01:00:00,0.0,1005.6925,0.0,91.38333333,7.968666667000001,0.650166667,237.94801755 -2016-10-04 02:00:00,0.0,1005.766667,0.0,92.71666667,7.7885,0.6955,237.94845098333337 -2016-10-04 03:00:00,0.0,1006.059167,0.0,88.79166667,7.60525,0.291333333,237.94750185 -2016-10-04 04:00:00,0.0,1006.1663890000001,0.0,94.94166667,7.247166667,0.194083333,237.9479606 -2016-10-04 05:00:00,0.0,1006.266944,0.35233333299999997,96.94166667,6.935166667000001,0.08575,237.94667291666667 -2016-10-04 06:00:00,0.0,1006.384722,16.77091667,97.975,6.827666667000001,0.07875,237.94727721666666 -2016-10-04 07:00:00,0.0,1006.9522220000001,80.15083333,92.975,8.048833333,0.037916667,237.94553714999998 -2016-10-04 08:00:00,0.0,1007.534167,152.675,74.9875,10.71583333,0.805333333,237.94540268333333 -2016-10-04 09:00:00,0.0,1007.850833,249.68333330000002,69.50666667,12.12083333,1.476083333,237.94408815 -2016-10-04 10:00:00,0.0,1008.05,441.61666669999994,65.23083333,13.64,1.25875,237.9455497833333 -2016-10-04 11:00:00,0.0,1008.1833330000001,531.9166667,62.6275,14.16166667,1.6008333330000002,237.94555611666667 -2016-10-04 12:00:00,0.0,1007.9333330000001,563.6916667,60.885,15.11333333,1.8334166669999998,237.94680265 -2016-10-04 13:00:00,0.0,1007.7977779999999,485.3916666999999,56.36083333,16.02916667,1.707583333,237.9464752 -2016-10-04 14:00:00,0.0,1007.307222,341.325,53.2375,16.36166667,2.343,237.94554978333335 -2016-10-04 15:00:00,0.0,1006.983611,192.4,54.875,15.525,1.986666667,237.94436653333332 -2016-10-04 16:00:00,0.0,1007.183889,93.675,57.23416667,14.93916667,1.857,237.94507839999997 -2016-10-04 17:00:00,0.0,1007.284167,96.92666667,56.2925,14.805,1.7521666669999998,237.94485218333332 -2016-10-04 18:00:00,0.0,1007.325,30.56,59.77333333,14.03916667,0.8454166670000001,237.94501198333333 -2016-10-04 19:00:00,0.0,1007.425,2.785916667,70.59583333,12.265,0.107166667,237.94635813333332 -2016-10-04 20:00:00,0.0,1007.516944,0.0,89.04166667,8.581416667000001,0.147083333,237.94636445 -2016-10-04 21:00:00,0.0,1007.8097220000001,0.0,92.01666667,9.900833333,1.266583333,237.94581713333332 -2016-10-04 22:00:00,0.0,1008.469167,0.0,93.75,7.6195,0.451083333,237.94610346666664 -2016-10-04 23:00:00,0.0,1008.908889,0.0,98.825,5.800583333,0.14875,237.94647203333332 -2016-11-04 00:00:00,0.0,1009.225833,0.0,99.825,5.088666667,0.041916667000000005,238.0060614 -2016-11-04 01:00:00,0.0,1009.408333,0.0,99.46666667,3.9779166669999997,0.012916667,238.00840733333334 -2016-11-04 02:00:00,0.0,1009.4575,0.0,99.96666667,2.15075,0.04925,238.0085243666667 -2016-11-04 03:00:00,0.0,1009.241944,0.0,100.0,1.61,0.0005,238.00831241666666 -2016-11-04 04:00:00,0.0,1009.458333,0.0,100.0,1.276666667,0.039666667,238.0055457 -2016-11-04 05:00:00,0.0,1009.417222,1.701416667,100.0,1.30525,0.082416667,238.00476898333338 -2016-11-04 06:00:00,0.0,1009.6427779999999,21.10666667,98.64166667,2.039,0.34375,238.00398125 -2016-11-04 07:00:00,0.0,1010.041944,103.7466667,92.95833333,5.891083332999999,0.937666667,238.00423906666666 -2016-11-04 08:00:00,0.0,1010.0752779999999,140.4825,83.9725,8.12,2.031166667,238.00422323333336 -2016-11-04 09:00:00,0.0,1010.158333,244.38416669999998,72.61,10.85583333,2.0805,238.00424063333332 -2016-11-04 10:00:00,0.0,1009.806667,482.95833330000005,70.31416667,12.275,2.068833333,238.00367591666665 -2016-11-04 11:00:00,0.0,1009.198333,547.2333332999999,67.93416667,13.58583333,2.28775,238.0031713 -2016-11-04 12:00:00,0.0,1008.572222,575.775,61.565,14.7475,1.9949166669999998,238.00255438333332 -2016-11-04 13:00:00,0.0,1007.849722,566.6083332999999,59.28,15.68916667,1.7915,238.00216836666667 -2016-11-04 14:00:00,0.0,1007.523333,518.75,55.45416667,16.8625,1.200333333,238.00198648333333 -2016-11-04 15:00:00,0.0,1006.9811109999999,432.5666666999999,52.43583333,17.45,1.200833333,238.00230125 -2016-11-04 16:00:00,0.0,1006.391667,322.0666667,53.57166667,17.145,1.239416667,238.00401759999997 -2016-11-04 17:00:00,0.0,1006.5752779999999,123.5575,58.33166667,15.82583333,2.5660000000000003,238.00490980000004 -2016-11-04 18:00:00,0.0,1006.6172220000001,53.1,65.39583333,13.73583333,3.89475,238.00452065000002 -2016-11-04 19:00:00,0.0,1007.2525,4.704,73.725,11.35916667,2.81475,238.0061642166667 -2016-11-04 20:00:00,0.0,1007.7172220000001,0.0,83.47,8.565,0.612,238.00549033333337 -2016-11-04 21:00:00,0.0,1007.640833,0.0,94.65833333,6.6775,0.107833333,238.00539698333333 -2016-11-04 22:00:00,0.0,1007.390278,0.0,98.8,4.646,0.302166667,238.00549350000003 -2016-11-04 23:00:00,0.0,1007.1422220000001,0.0,99.85,4.298416667,0.124333333,238.00630974999999 -2016-12-04 00:00:00,0.0,1007.291667,0.0,99.99166667,4.152583333,0.222083333,238.05039668333333 -2016-12-04 01:00:00,0.0,1007.1327779999999,0.0,100.0,3.2966666669999998,0.021666667,238.05016573333333 -2016-12-04 02:00:00,0.0,1006.941111,0.0,100.0,2.67275,0.18025,238.0500455166667 -2016-12-04 03:00:00,0.0,1006.741389,0.0,100.0,3.1926666669999997,0.060583332999999996,238.05043151666666 -2016-12-04 04:00:00,0.0,1006.557778,0.0,100.0,2.3096666669999997,0.07775,238.04890813333336 -2016-12-04 05:00:00,0.0,1006.6763890000001,1.7919999999999998,100.0,2.534916667,0.107083333,238.04869618333336 -2016-12-04 06:00:00,0.0,1007.0675,35.83675,100.0,4.594083333,0.010666667,238.04884015000002 -2016-12-04 07:00:00,0.0,1007.408889,76.5875,99.49166667,6.19675,0.302416667,238.04906951666666 -2016-12-04 08:00:00,2.470082712,1007.608611,61.34,96.14166667,6.8899166670000005,0.255666667,238.04890024999997 -2016-12-04 09:00:00,0.0,1007.633333,111.41583329999999,97.425,7.700083332999999,0.276916667,238.04719656666666 -2016-12-04 10:00:00,0.0,1007.716667,235.2583333,95.25833333,9.4325,1.227166667,238.04683430000003 -2016-12-04 11:00:00,0.0,1007.365833,513.875,87.34166667,12.675,1.8546666669999998,238.04488068333333 -2016-12-04 12:00:00,0.0,1006.9811109999999,308.78333330000004,83.84166667,13.89166667,2.521583333,238.04210609999998 -2016-12-04 13:00:00,0.0,1006.440833,354.9333333,81.79166667,13.97416667,2.503916667,238.04171218333332 -2016-12-04 14:00:00,2.9942252160000002,1005.8822220000001,519.575,75.54583333,14.69583333,1.8926666669999999,238.04016034999998 -2016-12-04 15:00:00,0.0,1005.339445,440.625,66.715,16.34333333,2.687583333,238.04221045 -2016-12-04 16:00:00,0.0,1004.6986109999999,169.9666667,62.81916667,16.06416667,1.9910833330000002,238.04356298333332 -2016-12-04 17:00:00,0.0,1004.4163890000001,77.22416667,65.2675,14.62416667,1.327833333,238.04419256666668 -2016-12-04 18:00:00,0.0,1004.551111,29.45725,73.315,12.83916667,0.7214166670000001,238.04462758333332 -2016-12-04 19:00:00,61.45017811,1004.8822220000001,0.5096666670000001,94.03,10.79666667,1.069416667,238.0446623833333 -2016-12-04 20:00:00,0.0,1004.408333,0.0,100.0,9.13,0.567916667,238.04520178333337 -2016-12-04 21:00:00,0.0,1004.349444,0.0,100.0,7.846083332999999,0.313833333,238.04450261666668 -2016-12-04 22:00:00,0.0,1004.325556,0.0,100.0,7.323333333,0.25875,238.04470035 -2016-12-04 23:00:00,0.0,1004.5675,0.0,100.0,7.15575,0.34483333299999996,238.04310740000003 -2016-04-13 00:00:00,0.0,1004.733333,0.0,100.0,5.69675,0.258583333,238.19290515 -2016-04-13 01:00:00,0.0,1004.432778,0.0,100.0,4.579666667,0.26808333300000003,238.19332305 -2016-04-13 02:00:00,0.0,1004.5075,0.0,100.0,3.1405,0.12666666699999998,238.19186033333335 -2016-04-13 03:00:00,0.0,1004.376389,0.0,100.0,2.4355833330000003,0.15808333300000002,238.19269619999997 -2016-04-13 04:00:00,2.3865511440000002,1004.2825,0.0,100.0,1.867666667,0.165,238.19206929999999 -2016-04-13 05:00:00,0.0,1004.3002779999999,2.47725,100.0,3.302166667,0.167833333,238.18851693333332 -2016-04-13 06:00:00,0.0,1004.440833,27.77,100.0,4.9835,0.23199999999999998,238.18789003333336 -2016-04-13 07:00:00,0.0,1004.1833330000001,66.7475,100.0,5.792999999999999,0.13699999999999998,238.18559148333335 -2016-04-13 08:00:00,0.0,1004.0736109999999,105.025,100.0,7.074083333,0.3585,238.18433771666665 -2016-04-13 09:00:00,0.0,1003.9175,74.7375,100.0,7.5548333329999995,0.71575,238.18433771666665 -2016-04-13 10:00:00,0.0,1003.9330560000001,100.05333329999999,100.0,8.35325,0.70575,238.18600938333336 -2016-04-13 11:00:00,0.0,1004.041944,129.3916667,99.975,9.111666667,0.778166667,238.1853825166667 -2016-04-13 12:00:00,0.0,1003.940833,91.35583333,97.41666667,9.765,0.971666667,238.18580043333336 -2016-04-13 13:00:00,2.578534728,1003.7491669999999,115.06666670000001,94.88333333,10.3375,0.7293333329999999,238.1870542 -2016-04-13 14:00:00,0.0,1003.3755560000001,109.53166670000002,89.4,10.84333333,0.873,238.18789006666665 -2016-04-13 15:00:00,0.0,1003.408333,112.5275,87.84166667,11.50916667,0.615583333,238.18621835000002 -2016-04-13 16:00:00,0.0,1003.5077779999999,63.785,81.5625,11.11166667,1.32975,238.18726316666667 -2016-04-13 17:00:00,0.0,1003.651667,43.26583333,79.67,10.41666667,1.9220833330000002,238.18684525 -2016-04-13 18:00:00,0.0,1004.016667,22.85125,84.125,9.683333333,1.8445,238.18726316666667 -2016-04-13 19:00:00,0.0,1004.2102779999999,1.26125,93.825,9.256666667000001,0.853666667,238.1866362833333 -2016-04-13 20:00:00,0.0,1004.7002779999999,0.0,98.9,8.48,0.32275,238.1887259 -2016-04-13 21:00:00,0.0,1004.968333,0.0,99.075,8.265833333,0.8565,238.18747211666667 -2016-04-13 22:00:00,0.0,1005.4669449999999,0.0,95.475,8.383333333,0.737,238.18809901666665 -2016-04-13 23:00:00,0.0,1005.509167,0.0,96.69166667,8.0125,0.815083333,238.18956173333333 -2016-04-14 00:00:00,0.0,1005.775278,0.0,99.33333333,7.48975,0.453166667,238.18851693333337 -2016-04-14 01:00:00,0.0,1006.1005560000001,0.0,98.33333333,7.69275,1.29275,238.18747213333336 -2016-04-14 02:00:00,0.0,1006.05,0.0,98.625,7.00975,0.6216666670000001,238.18851691666669 -2016-04-14 03:00:00,0.0,1006.2677779999999,0.0,99.675,6.3055833329999995,0.945333333,238.18851693333337 -2016-04-14 04:00:00,0.0,1006.6005560000001,0.0,99.98333333,4.99875,0.584583333,238.18768106666667 -2016-04-14 05:00:00,2.660406096,1007.026667,1.769916667,100.0,5.018,0.794666667,238.18705418333332 -2016-04-14 06:00:00,0.0,1007.350833,38.00416667,100.0,6.740583332999999,0.8909999999999999,238.1849645833333 -2016-04-14 07:00:00,0.0,1007.809167,127.855,97.08333333,8.24,1.107416667,238.18433770000001 -2016-04-14 08:00:00,0.0,1008.427222,137.7666667,93.68333333,9.303333333,0.819583333,238.18162121666668 -2016-04-14 09:00:00,0.0,1008.935,275.3333333,87.25,10.7725,1.110333333,238.18015848333334 -2016-04-14 10:00:00,0.0,1009.0075,469.9833333000001,76.64833333,13.1425,1.037,238.17911365 -2016-04-14 11:00:00,0.0,1009.0,512.9,62.955,15.2,0.91725,238.17869573333329 -2016-04-14 12:00:00,0.0,1008.9247220000001,215.81666669999998,65.91166667,13.52583333,1.6640833330000002,238.17890473333338 -2016-04-14 13:00:00,0.0,1008.815833,353.8166667,56.3375,14.53166667,1.483,238.17827783333334 -2016-04-14 14:00:00,0.0,1008.356389,466.11666669999994,48.7725,16.16166667,1.3435,238.1768150833333 -2016-04-14 15:00:00,0.0,1007.858056,467.85,44.61333333,16.6275,1.48575,238.17744196666663 -2016-04-14 16:00:00,0.0,1007.5902779999999,322.9166667,39.625,16.1075,1.694833333,238.1755613 -2016-04-14 17:00:00,0.0,1007.35,149.55833330000002,50.83833333,15.76166667,1.6045,238.17869575 -2016-04-14 18:00:00,0.0,1007.1325,86.58833333,56.1725,14.14916667,1.57575,238.17806886666668 -2016-04-14 19:00:00,0.0,1006.815833,4.3595,75.2575,11.04166667,1.2339166670000001,238.1795315833334 -2016-04-14 20:00:00,0.0,1006.8744439999999,0.0,91.325,7.956083333,0.40425,238.1784868 -2016-04-14 21:00:00,0.0,1006.3825,0.0,93.7,7.694583333,0.131416667,238.18308393333334 -2016-04-14 22:00:00,0.0,1006.133333,0.0,97.04166667,7.211666667,0.079166667,238.18036745000003 -2016-04-14 23:00:00,0.0,1005.722778,0.0,98.16666667,7.211583332999999,0.032583333,238.18015848333332 -2016-04-15 00:00:00,0.0,1005.24,0.0,98.25,7.548166667,0.082166667,238.18036745000003 -2016-04-15 01:00:00,0.0,1004.4302779999999,0.0,97.4,7.759916667000001,0.05,238.18078540000002 -2016-04-15 02:00:00,0.0,1003.3975,0.0,97.69166667,7.773333332999999,0.3405,238.18141226666668 -2016-04-15 03:00:00,0.0,1002.6061109999999,0.0,95.20833333,8.253333332999999,1.020916667,238.1805764166667 -2016-04-15 04:00:00,0.0,1001.8163890000001,0.0,95.81666667,8.995,1.19925,238.1803674666667 -2016-04-15 05:00:00,2.5055759280000003,1001.606944,0.62775,97.38333333,8.4525,0.666583333,238.17994955000003 -2016-04-15 06:00:00,0.0,1000.906667,9.215,100.0,8.459166667,1.106833333,238.17806886666668 -2016-04-15 07:00:00,2.428834104,1000.750278,25.89166667,96.55833333,9.130833333,0.3345,238.1789047166667 -2016-04-15 08:00:00,3.48108396,1000.884167,115.15333329999999,86.225,11.30916667,2.4540833330000003,238.17660611666668 -2016-04-15 09:00:00,0.0,1001.0666669999999,197.3666667,84.46666667,12.29416667,3.342916667,238.17597925000004 -2016-04-15 10:00:00,0.0,1001.124722,262.9308333,82.16333333,12.75416667,3.228416667,238.17597923333335 -2016-04-15 11:00:00,0.0,1000.949444,292.325,72.90416667,13.85333333,3.749333333,238.17848676666668 -2016-04-15 12:00:00,0.0,1000.849722,324.75,68.3725,14.15083333,4.091083333,238.17493443333333 -2016-04-15 13:00:00,0.0,1000.6077779999999,434.40833330000004,64.32333333,14.96,3.392,238.17535236666663 -2016-04-15 14:00:00,0.0,1000.340833,518.925,52.0,16.21416667,4.4974166669999995,238.17347169999996 -2016-04-15 15:00:00,0.0,1000.1997220000001,454.525,48.4075,16.16583333,4.560416667,238.1724269 -2016-04-15 16:00:00,0.0,999.7477777999999,202.6416667,50.79916667,15.86083333,3.4289166669999998,238.17430755 -2016-04-15 17:00:00,0.0,999.2494444,127.61666670000001,49.58916667,15.97083333,3.32325,238.17535238333335 -2016-04-15 18:00:00,0.0,999.1663889,57.68583333,50.54083333,15.06666667,2.586666667,238.1728448166667 -2016-04-15 19:00:00,0.0,999.0916667000001,7.435,57.86,13.6475,2.1596666669999998,238.17430753333335 -2016-04-15 20:00:00,0.0,999.2925,0.0,71.37833333,11.25666667,1.110666667,238.1730537666667 -2016-04-15 21:00:00,0.0,999.4,0.0,84.43333333,10.1975,1.2106666670000001,238.17368066666666 -2016-04-15 22:00:00,0.0,999.1402777999999,0.0,84.89166667,8.206166667,1.02375,238.17326275000002 -2016-04-15 23:00:00,0.0,998.9747222000001,0.0,81.80833333,10.0775,1.214083333,238.17117313333333 -2016-04-16 00:00:00,0.0,998.7572222000001,0.0,82.90833333,12.035,1.158166667,238.17200895 -2016-04-16 01:00:00,0.0,998.4255555999999,0.0,82.325,10.83583333,1.523166667,238.17138208333336 -2016-04-16 02:00:00,0.0,998.0058332999998,0.0,92.29166667,10.91333333,2.1065,238.17054621666668 -2016-04-16 03:00:00,0.0,997.6491667000001,0.0,93.975,10.03583333,2.03,238.17138208333333 -2016-04-16 04:00:00,0.0,997.0911110999999,0.0,93.70833333,9.648333333,1.372333333,238.17075521666666 -2016-04-16 05:00:00,0.0,996.9994444,0.6745,93.875,9.9075,1.883666667,238.16950141666666 -2016-04-16 06:00:00,21.17815217,997.0666667000002,12.33641667,95.83333333,9.981666667,1.802416667,238.17159105 -2016-04-16 07:00:00,16.17900497,997.4427777999999,34.865,97.20833333,9.7625,1.7935,238.17159103333336 -2016-04-16 08:00:00,0.0,997.8102777999999,100.2491667,92.975,10.51416667,1.881666667,238.17326271666664 -2016-04-16 09:00:00,0.0,998.2591667000002,139.93333330000002,90.88333333,11.19333333,2.238333333,238.17221793333331 -2016-04-16 10:00:00,3.185400408,998.6597222000001,182.30833330000002,91.275,11.23666667,2.21425,238.17305376666664 -2016-04-16 11:00:00,0.0,998.9341667000001,314.7416667,85.79166667,12.26666667,2.428,238.17347171666665 -2016-04-16 12:00:00,0.0,999.0575,494.8166666999999,77.51583333,13.16916667,2.5645833330000003,238.17284481666664 -2016-04-16 13:00:00,0.0,999.175,513.15,72.7675,14.47416667,3.35975,238.17493445 -2016-04-16 14:00:00,0.0,998.8672222000001,453.3916666999999,66.69416667,14.79,3.197666667,238.17472548333333 -2016-04-16 15:00:00,0.0,998.8658332999998,422.5166666999999,63.65,15.18333333,3.70775,238.17451651666667 -2016-04-16 16:00:00,0.0,998.6666667000002,212.0083333,64.2475,14.525,3.1101666669999997,238.17597924999998 -2016-04-16 17:00:00,0.0,998.8919444,92.39333333,67.93333333,14.04083333,2.7926666669999998,238.17368066666666 -2016-04-16 18:00:00,0.0,999.5447222999999,16.22116667,81.51333333,11.51,1.900166667,238.17263588333333 -2016-04-16 19:00:00,0.0,1000.126389,1.4630833330000002,94.65833333,9.526666667,0.7435,238.17117313333335 -2016-04-16 20:00:00,2.52870012,1000.274167,0.0,96.78333333,9.1425,0.2275,238.1713821 -2016-04-16 21:00:00,9.605860296,1000.190556,0.0,98.925,9.053333333,0.028916667000000004,238.17305380000002 -2016-04-16 22:00:00,7.21560996,999.7583332999999,0.0,99.825,8.835833333,0.081,238.17388961666666 -2016-04-16 23:00:00,50.46082301,999.8927777999999,0.0,100.0,8.614166667000001,0.59875,238.17305379999996 -2016-04-17 00:00:00,35.544003000000004,1000.442778,0.0,99.08333333,7.992916667,0.633416667,238.17744198333335 -2016-04-17 01:00:00,38.47106278,1000.624722,0.0,99.44166667,7.58,0.0315,238.18977069999997 -2016-04-17 02:00:00,12.5293043,1000.508611,0.0,99.6,7.285166667,0.525833333,238.20586075000006 -2016-04-17 03:00:00,5.739461256,1000.951667,0.0,97.65833333,6.845916667000001,1.7544166669999999,238.21818951666668 -2016-04-17 04:00:00,0.0,1001.349722,0.0,97.09166667,6.315416667,0.959333333,238.21881638333335 -2016-04-17 05:00:00,0.0,1001.787222,0.6831666670000001,98.175,5.95875,0.686416667,238.21630885000002 -2016-04-17 06:00:00,0.0,1002.668889,16.9975,96.33333333,5.880083332999999,0.9228333329999999,238.21421921666663 -2016-04-17 07:00:00,0.0,1003.626944,41.37333333,93.20833333,6.029333332999999,1.0393333329999999,238.2133833833333 -2016-04-17 08:00:00,0.0,1004.3944439999999,99.46333333,85.88333333,6.57675,0.849916667,238.2106668833333 -2016-04-17 09:00:00,0.0,1005.368333,213.8583333,84.41666667,7.614,1.56075,238.20941310000003 -2016-04-17 10:00:00,0.0,1006.135833,364.84166669999996,78.2125,8.590666667,1.7015,238.20690558333334 -2016-04-17 11:00:00,0.0,1006.809167,312.59166669999996,72.67166667,9.181666667,1.84325,238.20795038333333 -2016-04-17 12:00:00,0.0,1007.1597220000001,481.1083333000001,62.03,9.875833333,1.5979166669999998,238.20774141666666 -2016-04-17 13:00:00,0.0,1007.675833,524.925,55.8925,10.89,1.81275,238.2056517833333 -2016-04-17 14:00:00,0.0,1007.650556,455.275,52.33,11.11083333,2.03525,238.2062786833333 -2016-04-17 15:00:00,0.0,1008.008611,192.3666667,50.90666667,10.9525,1.678333333,238.2050249166667 -2016-04-17 16:00:00,3.376018536,1008.186111,304.1083333,49.22583333,10.83416667,2.6735833330000003,238.20418906666666 -2016-04-17 17:00:00,0.0,1008.8925,169.2275,50.14916667,10.41166667,1.90875,238.20293531666667 -2016-04-17 18:00:00,0.0,1009.576667,117.58666670000001,44.4125,10.675,1.748083333,238.20272635 -2016-04-17 19:00:00,0.0,1010.343333,13.34158333,58.21666667,8.653666667000001,1.084833333,238.20439805 -2016-04-17 20:00:00,0.0,1010.9536109999999,0.0,87.65,5.377000000000001,0.40833333299999997,238.2058608 -2016-04-17 21:00:00,0.0,1012.011389,0.0,92.65,4.0569999999999995,0.5910833329999999,238.2029353 -2016-04-17 22:00:00,0.0,1012.8844439999999,0.0,95.40833333,2.381166667,0.42,238.20168151666667 -2016-04-17 23:00:00,0.0,1013.476389,0.0,97.75833333,1.2215,0.300083333,238.2006367166667 -2016-04-18 00:00:00,0.0,1013.984167,0.0,99.3,0.6495833329999999,0.086,238.19896501666668 -2016-04-18 01:00:00,0.0,1014.192778,0.0,100.0,0.237666667,0.045666667,238.20000985000001 -2016-04-18 02:00:00,0.0,1014.525556,0.0,100.0,-0.538666667,0.004083333,238.1972933333333 -2016-04-18 03:00:00,0.0,1014.700833,0.0,100.0,-0.876583333,0.017166667,238.19562161666667 -2016-04-18 04:00:00,0.0,1014.766389,0.0,100.0,-1.260916667,0.0,238.1947858 -2016-04-18 05:00:00,0.0,1014.7511109999999,4.5338333330000005,100.0,-1.4170833330000001,0.013083333,238.19499476666667 -2016-04-18 06:00:00,0.0,1015.4938890000001,25.64333333,100.0,-0.05925,0.043333332999999995,238.19081551666667 -2016-04-18 07:00:00,0.0,1016.159167,157.6441667,95.10833333,3.495666667,0.1535,238.18809903333332 -2016-04-18 08:00:00,0.0,1016.3672220000001,143.005,81.34583333,6.801,0.5821666670000001,238.18496459999997 -2016-04-18 09:00:00,0.0,1016.666944,288.3566667,69.1325,8.442833333,1.122916667,238.18183018333332 -2016-04-18 10:00:00,0.0,1016.633056,526.8916667,56.45166667,9.945833333,1.58025,238.17869575 -2016-04-18 11:00:00,0.0,1016.3911109999999,527.9666666999999,52.73,11.47583333,1.436333333,238.17994953333334 -2016-04-18 12:00:00,0.0,1016.2830560000001,422.95833330000005,54.645,12.145,1.608416667,238.18015849999998 -2016-04-18 13:00:00,0.0,1016.291667,339.0583333,50.7625,12.78583333,1.99025,238.1789047166667 -2016-04-18 14:00:00,0.0,1016.175,416.34166669999996,48.06333333,13.08416667,2.3801666669999997,238.17765093333333 -2016-04-18 15:00:00,0.0,1016.099444,405.40833330000004,47.25916667,13.69333333,1.719916667,238.1755613 -2016-04-18 16:00:00,0.0,1016.2255560000001,392.7083333,45.16166667,13.0525,2.2625,238.17430753333335 -2016-04-18 17:00:00,0.0,1016.133333,127.51083329999999,46.80916667,12.55583333,1.727333333,238.17597923333335 -2016-04-18 18:00:00,0.0,1016.284167,64.20416667,48.31416667,11.74083333,1.4795833330000001,238.17535235 -2016-04-18 19:00:00,0.0,1016.894167,11.12766667,56.40083333,8.724416667,0.5485,238.17618819999998 -2016-04-18 20:00:00,0.0,1017.71,0.0,85.62083333,5.157833333,0.150333333,238.1784868166667 -2016-04-18 21:00:00,0.0,1018.3019449999999,0.0,92.40833333,3.6955,0.071916667,238.17806886666662 -2016-04-18 22:00:00,0.0,1018.716667,0.0,93.75,2.4595,0.10258333300000001,238.17639716666667 -2016-04-18 23:00:00,0.0,1018.8927779999999,0.0,97.35833333,2.179666667,0.061833333,238.17785990000002 -2016-04-19 00:00:00,0.0,1019.167222,0.0,93.58333333,3.953083333,0.004166667,238.17514338333334 -2016-04-19 01:00:00,0.0,1019.308889,0.0,76.15166667,5.768416667,0.091916667,238.17221793333331 -2016-04-19 02:00:00,0.0,1019.575,0.0,75.67333333,6.428,0.238833333,238.1713821 -2016-04-19 03:00:00,0.0,1019.641944,0.0,77.16666667,6.72425,0.48316666700000005,238.16950143333335 -2016-04-19 04:00:00,0.0,1019.700556,0.0,79.15333333,6.77225,0.617583333,238.16929248333335 -2016-04-19 05:00:00,0.0,1020.059167,1.316583333,79.66083333,6.722916667000001,0.5708333329999999,238.16908351666666 -2016-04-19 06:00:00,0.0,1020.293333,41.0845,80.91666667,6.748333333,1.2335,238.16929248333338 -2016-04-19 07:00:00,0.0,1020.7088890000001,104.445,79.6075,7.363416667,1.66875,238.16553113333336 -2016-04-19 08:00:00,0.0,1020.9925,125.36666670000001,77.485,8.0465,1.5935833330000002,238.16448635000003 -2016-04-19 09:00:00,2.693258016,1021.2175,174.275,78.3625,8.553333333,1.640916667,238.16553116666668 -2016-04-19 10:00:00,0.0,1021.550833,149.845,77.09083333,9.095,1.4880000000000002,238.16532221666662 -2016-04-19 11:00:00,0.0,1021.523611,411.03333330000004,71.54083333,10.5475,2.072083333,238.16394301999998 -2016-04-19 12:00:00,0.0,1021.2422220000001,100.4858333,68.5175,10.82083333,0.8061666670000001,238.16596600000003 -2016-04-19 13:00:00,0.0,1021.3661109999999,161.9375,68.0375,11.24083333,1.33775,238.1668108166667 -2016-04-19 14:00:00,0.0,1021.4637880000001,236.7583333,59.9625,12.01083333,1.92375,238.16529015000003 -2016-04-19 15:00:00,0.0,1021.0317220000001,176.3666667,58.3375,12.20666667,1.442916667,238.17137283333332 -2016-04-19 16:00:00,0.0,1020.866667,106.24583329999999,60.1775,12.08,2.7125,238.16968318333338 -2016-04-19 17:00:00,0.0,1020.9416669999999,111.8475,58.72666667,11.99916667,2.36125,238.16900735000002 -2016-04-19 18:00:00,0.0,1020.9508060000001,46.595,61.56166667,11.38583333,1.272666667,238.16934526666668 -2016-04-19 19:00:00,0.0,1021.297306,7.89125,76.99333333,9.399083333,0.41433333299999997,238.170528 -2016-04-19 20:00:00,0.0,1021.9373609999999,0.0005,91.925,7.683916667,0.26075,238.17019006666666 -2016-04-19 21:00:00,0.0,1022.452417,0.0,94.54166667,6.1544166670000005,0.206333333,238.17019006666666 -2016-04-19 22:00:00,0.0,1022.830639,0.0,96.85,4.342083333,0.069916667,238.1703590333333 -2016-04-19 23:00:00,0.0,1023.462361,0.0,98.30833333,3.3948333330000002,0.00225,238.16850045 -2016-04-20 00:00:00,0.0,1023.943278,0.0,99.16666667,1.973583333,0.090333333,238.17086595 -2016-04-20 01:00:00,0.0,1024.150806,0.0,99.85,0.922083333,0.0048333329999999996,238.1691763 -2016-04-20 02:00:00,0.0,1024.377417,0.0,100.0,0.34666666700000004,0.0,238.16951421666667 -2016-04-20 03:00:00,0.0,1024.332528,0.0,100.0,-0.161916667,0.02475,238.17086593333332 -2016-04-20 04:00:00,0.0,1024.434139,0.0,100.0,-1.002416667,0.00075,238.1696831666667 -2016-04-20 05:00:00,0.0,1024.814778,4.842333333,100.0,-1.2319166670000001,0.0005,238.17069696666667 -2016-04-20 06:00:00,0.0,1025.723111,30.64916667,100.0,0.32375,0.045333332999999996,238.16816253333334 -2016-04-20 07:00:00,0.0,1026.363167,185.42833330000002,94.80833333,4.865333333,0.072166667,238.16613498333334 -2016-04-20 08:00:00,0.0,1026.643278,145.6191667,79.26083333,6.579666667000001,1.4125,238.16191088333335 -2016-04-20 09:00:00,0.0,1026.925,311.2608333,72.7675,7.869333332999999,1.149583333,238.16039021666668 -2016-04-20 10:00:00,0.0,1026.648389,536.4333333000001,67.83,9.240833333,1.095333333,238.16089710000003 -2016-04-20 11:00:00,0.0,1026.176889,599.575,63.85833333,10.43666667,1.68,238.1597143666667 -2016-04-20 12:00:00,0.0,1025.724195,628.875,53.76416667,11.54166667,1.47425,238.16022123333335 -2016-04-20 13:00:00,0.0,1025.420167,616.125,47.0025,12.67166667,1.280916667,238.15988331666668 -2016-04-20 14:00:00,0.0,1025.131722,570.5166667000001,44.36,13.46583333,1.5685,238.15937643333336 -2016-04-20 15:00:00,0.0,1024.770972,493.49166669999994,38.88,14.35416667,1.32775,238.15853160000003 -2016-04-20 16:00:00,0.0,1024.170167,384.425,36.36666667,14.99416667,1.2405,238.15903850000004 -2016-04-20 17:00:00,0.0,1023.511833,157.8416667,35.7375,14.49666667,1.6498333330000001,238.16039020000002 -2016-04-20 18:00:00,0.0,1022.9817220000001,75.08333333,41.795,13.0475,1.270583333,238.15954538333332 -2016-04-20 19:00:00,0.0,1022.9325279999999,13.17208333,65.67833333,9.566666667,0.034,238.15971435000003 -2016-04-20 20:00:00,0.0,1023.125,0.012666667,85.6675,5.925083333,0.007333333,238.16174193333336 -2016-04-20 21:00:00,0.0,1022.883333,0.0,93.80833333,4.057583333,0.008166666999999999,238.16106606666668 -2016-04-20 22:00:00,0.0,1022.977417,0.0,94.775,3.166583333,0.011166667,238.16072813333335 -2016-04-20 23:00:00,0.0,1023.2,0.0,96.74166667,2.6503333330000003,0.046833333,238.16174193333336 -2016-04-21 00:00:00,0.0,1023.0709720000001,0.0,98.78333333,1.6626666669999999,0.0,238.16089710000003 -2016-04-21 01:00:00,0.0,1022.5185560000001,0.0,99.84166667,0.669583333,0.0,238.16224883333336 -2016-04-21 02:00:00,0.0,1021.9325279999999,0.0,100.0,0.36458333299999995,0.0,238.16174193333336 -2016-04-21 03:00:00,0.0,1021.733333,0.0,100.0,0.030333332999999997,0.0,238.16343156666665 -2016-04-21 04:00:00,0.0,1021.530917,0.002833333,100.0,-0.5628333329999999,0.0,238.16224881666668 -2016-04-21 05:00:00,0.0,1021.331722,6.16025,100.0,-0.8745,0.0,238.16393843333333 -2016-04-21 06:00:00,0.0,1021.452417,31.58666667,100.0,1.33525,0.008,238.16275570000002 -2016-04-21 07:00:00,0.0,1021.7432779999999,193.14583330000002,89.63916667,5.162333333,0.43799999999999994,238.15954536666666 -2016-04-21 08:00:00,0.0,1021.7650560000001,144.19666669999998,77.04,8.025166667,1.516583333,238.15751783333334 -2016-04-21 09:00:00,0.0,1021.5991939999999,305.5,67.49833333,10.515,1.4409999999999998,238.15599716666665 -2016-04-21 10:00:00,0.0,1021.076083,540.6083332999999,59.7475,13.78583333,1.1145,238.15515233333335 -2016-04-21 11:00:00,0.0,1020.379306,606.6416667000001,46.96583333,15.8075,1.22025,238.1544764833333 -2016-04-21 12:00:00,0.0,1019.6435560000001,633.4583332999999,40.94083333,17.04833333,1.2660833329999999,238.15430751666668 -2016-04-21 13:00:00,0.0,1018.976889,624.6916667,39.26916667,17.94583333,1.297083333,238.15312479999997 -2016-04-21 14:00:00,0.0,1018.0352220000001,572.4333333,34.805,19.00416667,0.946416667,238.1529558 -2016-04-21 15:00:00,0.0,1017.209417,495.0583333000001,35.29,19.755,1.023583333,238.15211101666668 -2016-04-21 16:00:00,0.0,1016.376083,390.5083333,37.01,19.99166667,0.58675,238.15194205 -2016-04-21 17:00:00,0.0,1015.5026939999999,165.30833330000002,41.52416667,19.09916667,0.46533333299999996,238.1543075333333 -2016-04-21 18:00:00,0.0,1014.9217779999999,70.5825,48.8275,16.99416667,0.140166667,238.15515234999998 -2016-04-21 19:00:00,0.0,1014.7650560000001,5.800166667,76.96416667,10.56083333,0.4665,238.15616613333336 -2016-04-21 20:00:00,0.0,1014.6908609999999,0.0,87.51666667,7.654083332999999,0.202166667,238.15768680000005 -2016-04-21 21:00:00,0.0,1014.7198890000001,0.0,89.9,6.628666667,0.16899999999999998,238.15819368333334 -2016-04-21 22:00:00,0.0,1014.765861,0.0,92.18333333,6.092166667000001,0.1765,238.15751784999998 -2016-04-21 23:00:00,0.0,1014.9416669999999,0.0,94.30833333,5.45875,0.10216666699999999,238.15802473333335 -2016-04-22 00:00:00,0.0,1014.91075,0.0,93.7,5.4981666670000005,0.10291666699999999,238.15836263333333 -2016-04-22 01:00:00,0.0,1014.9709720000001,0.0,95.55833333,4.9965,0.0,238.15717991666665 -2016-04-22 02:00:00,0.0,1014.869083,0.0,95.64166667,5.6639166670000005,0.0,238.15616613333336 -2016-04-22 03:00:00,0.0,1014.747583,0.0,95.56666667,5.693916667000001,0.011833333,238.15701095 -2016-04-22 04:00:00,0.0,1014.455917,0.0,95.35833333,4.707916667,0.0,238.15853159999998 -2016-04-22 05:00:00,0.0,1014.444083,6.985583332999999,90.975,5.648333332999999,0.10225,238.1561661166667 -2016-04-22 06:00:00,0.0,1014.904833,52.9875,84.76916667,7.31575,1.248666667,238.15430751666668 -2016-04-22 07:00:00,0.0,1015.4448890000001,122.025,76.145,8.123416667,2.4795833330000003,238.1519420666667 -2016-04-22 08:00:00,0.0,1015.440056,188.9083333,73.14833333,8.965,3.3914166669999997,238.15075930000003 -2016-04-22 09:00:00,0.0,1015.4,255.4666667,71.2225,9.299166667,3.420666667,238.15008343333338 -2016-04-22 10:00:00,0.0,1015.2209720000001,287.225,68.22083333,10.37916667,2.667833333,238.14991446666667 -2016-04-22 11:00:00,0.0,1014.56775,518.7083333,62.54916667,12.06666667,2.399333333,238.14923863333334 -2016-04-22 12:00:00,0.0,1013.81425,508.95,59.49583333,12.935,2.584833333,238.14805586666662 -2016-04-22 13:00:00,0.0,1013.3185560000001,613.1166667,53.9325,13.96666667,2.35475,238.14687316666664 -2016-04-22 14:00:00,0.0,1012.348667,440.25833330000006,49.3425,14.83833333,1.262333333,238.14754900000003 -2016-04-22 15:00:00,0.0,1011.495972,391.3916667,48.88,15.69416667,0.96625,238.1492386166667 -2016-04-22 16:00:00,0.0,1010.76775,333.575,45.815,16.8025,0.648166667,238.14805586666662 -2016-04-22 17:00:00,0.0,1010.129306,143.08333330000002,47.30583333,16.1725,0.867416667,238.14856276666669 -2016-04-22 18:00:00,0.0,1009.757528,50.39083333,54.23166667,15.01416667,0.722916667,238.14974549999997 -2016-04-22 19:00:00,0.0,1009.709944,5.44625,61.7225,12.85333333,2.8085,238.1500834333333 -2016-04-22 20:00:00,0.0,1010.051611,0.0,73.97333333,11.56583333,0.83325,238.14957653333332 -2016-04-22 21:00:00,0.0,1010.040861,0.0,83.44166667,10.36666667,0.36908333299999996,238.14991446666667 -2016-04-22 22:00:00,0.0,1009.7317220000001,0.0,86.78333333,9.63,0.315,238.15143515 -2016-04-22 23:00:00,0.0,1009.5285,0.0,82.8,9.510833332999999,0.327,238.14991446666667 -2016-04-23 00:00:00,0.0,1009.1067220000001,0.0,83.06666667,8.429166667,0.072333333,238.1510972333334 -2016-04-23 01:00:00,0.0,1008.6634439999999,0.0,83.00916667,9.110833332999999,0.26766666699999997,238.15194205000003 -2016-04-23 02:00:00,0.0,1008.371778,0.0,72.92333333,8.476666667,1.4649166669999998,238.15160410000007 -2016-04-23 03:00:00,0.0,1008.0217779999999,0.0,76.9025,7.753416667000001,1.84575,238.15177308333332 -2016-04-23 04:00:00,0.0,1007.6317220000001,0.0,82.04666667,6.907166667,1.990083333,238.1524489333333 -2016-04-23 05:00:00,0.0,1007.3801109999999,2.592666667,84.78333333,6.41525,2.031666667,238.15194206666663 -2016-04-23 06:00:00,6.130595736,1007.38575,19.365,90.375,5.678583333,2.142,238.15211101666662 -2016-04-23 07:00:00,14.54501518,1007.625806,43.0925,92.66666667,5.481416667,1.7089166669999998,238.15278686666662 -2016-04-23 08:00:00,16.90281677,1007.4825279999999,71.52083333,95.70833333,4.741083333,2.838166667,238.15295584999998 -2016-04-23 09:00:00,3.101359272,1007.323389,135.2166667,94.34166667,5.056083333,2.6415833330000003,238.15312479999997 -2016-04-23 10:00:00,0.0,1007.494083,162.6516667,92.38333333,5.36075,2.695416667,238.15075929999998 -2016-04-23 11:00:00,0.0,1007.48925,194.93333330000002,85.54166667,6.29275,2.9645,238.15042136666662 -2016-04-23 12:00:00,0.0,1007.3,137.43333330000002,80.9225,6.676833332999999,2.0,238.1504213666667 -2016-04-23 13:00:00,0.0,1007.205917,147.8875,78.75416667,6.4155,2.636,238.1510972166667 -2016-04-23 14:00:00,0.0,1006.830917,212.675,70.34833333,7.587833333,0.7749166670000001,238.15211099999996 -2016-04-23 15:00:00,0.0,1006.666667,145.7191667,61.63666667,7.816416667,3.5173333330000003,238.1497455166667 -2016-04-23 16:00:00,0.0,1006.58925,164.8666667,60.48916667,7.7198333329999995,3.5340833330000003,238.1522799666667 -2016-04-23 17:00:00,0.0,1006.5782220000001,135.88666669999998,57.1725,7.821916667000001,3.172333333,238.15244893333332 -2016-04-23 18:00:00,0.0,1007.047306,46.2125,62.8375,7.0076666670000005,3.71925,238.1521109833334 -2016-04-23 19:00:00,0.0,1007.6215,17.99566667,70.12,5.854666667,1.8526666669999998,238.15244895 -2016-04-23 20:00:00,0.0,1008.4465,0.028166667000000003,78.3775,4.70475,2.0691666669999997,238.1529558166666 -2016-04-23 21:00:00,0.0,1008.88575,0.0,79.11666667,4.189083333,1.11225,238.1522799833333 -2016-04-23 22:00:00,0.0,1009.2706939999999,0.0,85.89166667,2.5379166669999997,0.08491666699999999,238.15278686666667 -2016-04-23 23:00:00,0.0,1009.602417,0.0,91.325,1.97775,0.10641666699999999,238.1544764833333 -2016-04-24 00:00:00,0.0,1009.806722,0.0,98.475,1.366416667,0.08883333300000001,238.15430750000004 -2016-04-24 01:00:00,0.0,1009.640861,0.0,99.30833333,-0.390083333,0.0010833330000000001,238.1544764666667 -2016-04-24 02:00:00,0.0,1009.3983890000001,0.0,99.34166667,-1.2379166670000001,0.000166667,238.1544764833333 -2016-04-24 03:00:00,0.0,1009.247583,0.0,100.0,-1.4539166669999999,0.0165,238.15549026666667 -2016-04-24 04:00:00,0.0,1009.15,0.028166667000000003,97.78333333,-1.954,0.0,238.1543075333333 -2016-04-24 05:00:00,0.0,1008.863444,11.64933333,97.675,-1.707583333,0.0,238.1531248 -2016-04-24 06:00:00,0.0,1008.878222,67.775,95.64166667,0.39433333299999995,0.11525,238.15042138333334 -2016-04-24 07:00:00,0.0,1009.0741939999999,188.4833333,92.275,2.7033333330000002,1.1109166670000001,238.1489007166667 -2016-04-24 08:00:00,0.0,1008.9508060000001,193.2583333,84.91333333,4.252416667,1.72325,238.14839381666664 -2016-04-24 09:00:00,0.0,1008.9416669999999,290.5833333,71.2225,5.338666667,2.057583333,238.14704211666663 -2016-04-24 10:00:00,5.017894944,1008.897583,295.555,70.66666667,4.978666667,2.322333333,238.1461973 -2016-04-24 11:00:00,2.79246096,1008.485222,506.15,71.1475,6.76975,2.010333333,238.14585935 -2016-04-24 12:00:00,0.0,1007.972583,275.135,75.22833333,5.532583333,3.59825,238.14906966666672 -2016-04-24 13:00:00,0.0,1007.41425,449.33333330000005,66.10666667,7.255583333,1.63875,238.14738006666667 -2016-04-24 14:00:00,0.0,1007.1035,341.59166669999996,65.64416667,7.127583333,2.409166667,238.1461973 -2016-04-24 15:00:00,0.0,1006.5666669999999,465.55,63.49833333,7.64225,2.25275,238.1483938166667 -2016-04-24 16:00:00,0.0,1006.766667,350.84166669999996,63.5875,8.102083333,2.51425,238.1477179666667 -2016-04-24 17:00:00,0.0,1006.681722,137.8875,68.24166667,6.275666667,1.7283333330000001,238.1495765666667 -2016-04-24 18:00:00,0.0,1006.998111,60.15666667,69.03833333,5.55275,2.67525,238.15092828333334 -2016-04-24 19:00:00,0.0,1007.344083,16.26533333,77.97083333,4.3395,1.597666667,238.1512662 -2016-04-24 20:00:00,0.0,1007.820694,0.032416667,91.11666667,2.2294166669999997,0.5125,238.15143515 -2016-04-24 21:00:00,0.0,1008.1758060000001,0.0,95.325,1.403083333,0.6881666670000001,238.15075928333331 -2016-04-24 22:00:00,0.0,1008.124194,0.0,94.91666667,0.954916667,0.680333333,238.1512662 -2016-04-24 23:00:00,0.0,1008.269083,0.0,96.30833333,0.558916667,0.62125,238.15261791666663 -2016-04-25 00:00:00,0.0,1008.291667,0.0,97.25833333,0.5375,0.673583333,238.1509282666667 -2016-04-25 01:00:00,0.0,1008.173389,0.0,97.00833333,0.37025,0.689333333,238.1507593166667 -2016-04-25 02:00:00,0.0,1008.132528,0.0,97.54166667,0.942083333,0.9521666670000001,238.1489007 -2016-04-25 03:00:00,0.0,1008.0626390000001,0.0,98.325,1.166,1.0805,238.14788695000001 -2016-04-25 04:00:00,0.0,1007.524194,0.029583333,97.51666667,0.36375,0.43891666700000004,238.14974549999997 -2016-04-25 05:00:00,0.0,1007.5174720000001,6.440666667,96.06666667,1.0120833329999999,0.425833333,238.14771796666665 -2016-04-25 06:00:00,2.60843052,1007.65,39.32583333,96.85833333,1.648916667,1.012833333,238.1482248666667 -2016-04-25 07:00:00,0.0,1007.659944,79.07083333,95.14166667,2.15275,1.432666667,238.1480559 -2016-04-25 08:00:00,0.0,1007.645972,179.1,92.025,3.221333333,2.21825,238.14602833333333 -2016-04-25 09:00:00,0.0,1007.26425,327.0166667,82.955,4.87825,2.03325,238.14670418333333 -2016-04-25 10:00:00,0.0,1006.804306,456.1916666999999,79.37166667,5.665,2.409333333,238.14602833333333 -2016-04-25 11:00:00,0.0,1006.01775,337.45,71.5075,6.220666667000001,2.1510833330000003,238.1461973 -2016-04-25 12:00:00,3.15663576,1005.1244720000001,268.3666667,69.23666667,6.73625,2.644333333,238.14636625000003 -2016-04-25 13:00:00,0.0,1004.5,292.3666667,72.2225,6.6784166670000005,3.03475,238.14738005 -2016-04-25 14:00:00,0.0,1003.882,223.08333330000002,70.50083333,6.979,2.516666667,238.14602833333333 -2016-04-25 15:00:00,0.0,1002.951889,189.16666669999998,71.6025,6.89575,3.215583333,238.14822483333333 -2016-04-25 16:00:00,6.2097375360000004,1002.1078060000001,120.73333329999998,89.24333333,5.1885,2.774833333,238.1502524 -2016-04-25 17:00:00,2.97900684,1000.848667,78.44083333,93.28333333,4.923916667,1.9119166669999998,238.1502524 -2016-04-25 18:00:00,6.357133104,999.4811945,36.85083333,93.65833333,5.013583333,2.111333333,238.15126618333338 -2016-04-25 19:00:00,25.25350675,998.4903332999999,4.252666667,94.75,4.595333333,2.210833333,238.15109721666667 -2016-04-25 20:00:00,9.659590968,997.4776945,0.031,94.875,4.574,2.351583333,238.15228 -2016-04-25 21:00:00,36.65804707,996.54275,0.0,96.075,4.63125,3.181166667,238.15329375000002 -2016-04-25 22:00:00,41.90901754,996.3016111,0.0,97.28333333,4.697083333,2.159166667,238.1548144 -2016-04-25 23:00:00,17.05508419,996.5440832999999,0.0,97.25833333,4.151666667,1.55775,238.15886953333333 -2016-04-26 00:00:00,2.584656072,996.3959722000001,0.0,98.475,3.298083333,0.843,238.16275570000002 -2016-04-26 01:00:00,0.0,995.8158611,0.0,98.975,2.81575,1.091083333,238.16478325000003 -2016-04-26 02:00:00,0.0,996.1174722000001,0.0,98.75833333,2.610416667,1.3405,238.16579703333332 -2016-04-26 03:00:00,2.884900272,996.1666667000002,0.0,97.58333333,2.5885,1.484666667,238.1663039166667 -2016-04-26 04:00:00,0.0,995.9666667000001,0.008,95.84166667,2.2233333330000002,1.3911666669999998,238.16714875000002 -2016-04-26 05:00:00,0.0,996.0932777999999,7.213833332999999,97.28333333,1.682166667,1.442083333,238.16833150000002 -2016-04-26 06:00:00,0.0,996.4798332999999,77.49416667,96.60833333,1.7524166669999999,1.573666667,238.16850043333332 -2016-04-26 07:00:00,0.0,996.8758056,209.5,91.025,3.1125,2.09125,238.1673177 -2016-04-26 08:00:00,0.0,997.0158610999999,164.175,87.225,3.8850833330000003,2.191333333,238.1669798 -2016-04-26 09:00:00,0.0,996.9983889,241.625,77.725,5.034666667,2.728166667,238.16579703333335 -2016-04-26 10:00:00,0.0,996.6408610999999,407.8833333,70.7875,5.86675,3.062583333,238.16697978333335 -2016-04-26 11:00:00,0.0,996.58575,510.33333330000005,67.75416667,7.0460833329999994,3.892,238.16647290000003 -2016-04-26 12:00:00,0.0,996.6709722,413.6416667,67.26416667,6.916583332999999,3.740916667,238.16478325000003 -2016-04-26 13:00:00,0.0,996.3075277999999,453.175,62.83916667,7.494833333,4.109166667,238.16410738333335 -2016-04-26 14:00:00,0.0,996.2626389000001,333.6333333,66.54916667,6.989416667,3.835416667,238.16545910000002 -2016-04-26 15:00:00,28.4857739,996.6421944,142.6266667,81.84083333,4.756,3.434583333,238.16427638333334 -2016-04-26 16:00:00,0.0,996.9258056,192.4525,92.95,4.1290833330000005,3.2335,238.1661349666667 -2016-04-26 17:00:00,3.09818796,996.7408611,126.68333329999999,92.54166667,4.639916667,2.536833333,238.165966 -2016-04-26 18:00:00,0.0,996.9956944,71.16,87.325,5.144666667,1.7345833330000002,238.1651211666667 -2016-04-26 19:00:00,0.0,997.5008056,6.082000000000001,87.89166667,3.81425,0.559916667,238.16579703333335 -2016-04-26 20:00:00,0.0,997.7706944,0.070916667,90.45833333,1.69125,0.176333333,238.1674866666667 -2016-04-26 21:00:00,0.0,997.9900556,0.0,84.36666667,3.0011666669999997,1.00275,238.16512118333333 -2016-04-26 22:00:00,0.0,997.9432777999999,0.0,84.38333333,2.7455,1.848583333,238.16579703333335 -2016-04-26 23:00:00,0.0,998.0690832999999,0.0,84.83333333,2.8725,2.121833333,238.16495220000002 -2016-04-27 00:00:00,0.0,998.1567222000001,0.0,84.41666667,3.094666667,3.20675,238.16292465 -2016-04-27 01:00:00,0.0,998.1016110999999,0.0,88.425,2.3835,2.682666667,238.1646142666667 -2016-04-27 02:00:00,0.0,998.3008056,0.0,92.51666667,2.023083333,2.962916667,238.16545910000002 -2016-04-27 03:00:00,0.0,998.6,0.0,89.19166667,2.4268333330000003,3.665916667,238.16461428333335 -2016-04-27 04:00:00,0.0,998.7698889000001,0.023,86.56666667,2.8271666669999997,4.060666667,238.16444533333333 -2016-04-27 05:00:00,0.0,998.9174722000001,3.2605,86.2,2.941166667,3.802083333,238.16224880000004 -2016-04-27 06:00:00,0.0,999.2215,29.32333333,83.05,3.333583333,4.4254166669999995,238.16123503333336 -2016-04-27 07:00:00,0.0,999.5083332999999,60.86083333,80.49083333,3.69275,4.650666667,238.16174191666667 -2016-04-27 08:00:00,0.0,999.5940832999999,149.01166669999998,78.42916667,4.340666667,4.3775,238.16140400000003 -2016-04-27 09:00:00,0.0,1000.087361,194.525,82.475,4.976333333,3.915,238.16039021666668 -2016-04-27 10:00:00,0.0,1000.7231109999999,143.1583333,90.24166667,4.332916667,3.1965,238.16022123333335 -2016-04-27 11:00:00,0.0,1001.3290279999999,197.79166669999998,90.03333333,5.071583333,3.398583333,238.15751783333334 -2016-04-27 12:00:00,0.0,1001.854833,244.825,88.65,5.482083332999999,3.179666667,238.1565040666666 -2016-04-27 13:00:00,0.0,1002.3215,229.95,83.80833333,6.007083333,2.5773333330000003,238.1551523166667 -2016-04-27 14:00:00,0.0,1002.833333,223.1083333,82.43583333,6.7285833329999996,2.65425,238.15582818333334 -2016-04-27 15:00:00,9.326708616,1003.298917,306.6,82.44166667,7.21175,2.72825,238.15464543333334 -2016-04-27 16:00:00,0.0,1003.9056390000001,221.5,80.46166667,7.52325,2.254083333,238.15363166666666 -2016-04-27 17:00:00,3.1278605760000002,1004.4008060000001,138.08,79.04166667,6.870583333,1.93925,238.15430751666668 -2016-04-27 18:00:00,0.0,1004.729028,74.30416667,84.09666667,6.281416667,1.130916667,238.15481441666665 -2016-04-27 19:00:00,0.0,1005.3481109999999,11.4425,79.94916667,5.6719166670000005,1.208083333,238.1553213 -2016-04-27 20:00:00,0.0,1006.0698890000001,0.083166667,84.35,4.139666667,0.776083333,238.1561661333334 -2016-04-27 21:00:00,0.0,1006.5290279999999,0.0,85.48333333,3.14175,0.985,238.15751785 -2016-04-27 22:00:00,0.0,1006.7599449999999,0.0,85.225,3.4315833330000003,1.153916667,238.1566730333333 -2016-04-27 23:00:00,0.0,1006.842472,0.0,91.35,2.05425,0.733916667,238.15582819999997 -2016-04-28 00:00:00,0.0,1007.21075,0.0,92.84166667,2.66375,1.106833333,238.1548144 -2016-04-28 01:00:00,0.0,1007.466667,0.0,92.98333333,2.329166667,1.109666667,238.15650406666668 -2016-04-28 02:00:00,0.0,1007.502417,0.0,93.90833333,1.8315833330000002,0.921166667,238.1558282 -2016-04-28 03:00:00,0.0,1007.684944,0.0,95.10833333,1.232916667,0.6905,238.1531247833333 -2016-04-28 04:00:00,0.0,1007.919083,0.10433333300000001,94.78333333,1.007833333,1.078916667,238.1538006333333 -2016-04-28 05:00:00,0.0,1008.523111,11.1015,94.44166667,1.2745,0.55425,238.15244891666666 -2016-04-28 06:00:00,0.0,1009.1715,61.13916667,92.64166667,2.732583333,1.249583333,238.15075930000003 -2016-04-28 07:00:00,0.0,1009.829833,132.21916670000002,89.33333333,3.956583333,0.975,238.15075930000003 -2016-04-28 08:00:00,0.0,1010.194083,181.56666669999998,84.73416667,5.15675,1.2219166670000001,238.1499144833334 -2016-04-28 09:00:00,0.0,1010.568278,299.6416667,80.74666667,5.873333333,1.5158333330000002,238.14636626666663 -2016-04-28 10:00:00,0.0,1010.8032220000001,487.6083333000001,73.79,6.769,1.8241666669999999,238.14771795 -2016-04-28 11:00:00,0.0,1010.7801109999999,250.95,66.94083333,6.833833332999999,1.6890833330000001,238.14788695000001 -2016-04-28 12:00:00,0.0,1010.8091390000001,349.4416667,67.27,8.223916667000001,2.0171666669999997,238.1475489833333 -2016-04-28 13:00:00,0.0,1010.491667,526.725,54.22416667,8.81075,1.6398333330000001,238.14873175 -2016-04-28 14:00:00,0.0,1010.522583,505.7,52.1875,9.954166667,1.810583333,238.14636624999994 -2016-04-28 15:00:00,0.0,1010.3408609999999,442.88333330000006,47.29583333,10.66833333,1.579166667,238.14771796666665 -2016-04-28 16:00:00,0.0,1010.225,373.8,43.89083333,11.13416667,1.626333333,238.1461973 -2016-04-28 17:00:00,0.0,1010.367472,175.0291667,43.82833333,10.4325,1.176916667,238.14636626666663 -2016-04-28 18:00:00,0.0,1010.3166669999999,80.18833333,43.90583333,9.658333333,1.185916667,238.1483938166667 -2016-04-28 19:00:00,0.0,1010.51075,16.90641667,64.21083333,6.181916667,0.2175,238.14974551666668 -2016-04-28 20:00:00,0.0,1010.995694,0.11508333300000001,87.43333333,2.56825,0.276666667,238.1502524 -2016-04-28 21:00:00,0.0,1011.4965,0.0,80.07333333,2.830833333,0.325416667,238.14940758333333 -2016-04-28 22:00:00,0.0,1011.826611,0.0,91.94166667,1.677416667,0.1945,238.1482248666667 -2016-04-28 23:00:00,0.0,1011.8567220000001,0.0,96.58333333,0.12716666699999998,0.223333333,238.14856278333332 -2016-04-29 00:00:00,0.0,1011.8241939999999,0.0,98.68333333,-0.84175,0.028916667000000004,238.14974550000002 -2016-04-29 01:00:00,0.0,1011.733333,0.0,99.95,-1.101166667,0.091333333,238.14957653333332 -2016-04-29 02:00:00,0.0,1011.488444,0.0,100.0,-1.6825,0.06725,238.1499145 -2016-04-29 03:00:00,0.0,1011.561556,0.0,100.0,-2.034166667,0.046166667,238.15059033333333 -2016-04-29 04:00:00,0.0,1011.766667,0.134916667,100.0,-1.3986666669999999,0.002166667,238.14704211666665 -2016-04-29 05:00:00,0.0,1011.8174720000001,12.13608333,100.0,-1.414833333,0.005583333,238.1480558833333 -2016-04-29 06:00:00,0.0,1012.08575,65.26166667,99.98333333,-0.43291666700000003,0.001583333,238.14738003333332 -2016-04-29 07:00:00,0.0,1012.422306,109.28333329999998,97.19166667,1.9513333330000002,0.12025,238.14602833333333 -2016-04-29 08:00:00,0.0,1012.6400560000001,136.5083333,91.225,5.022833333,0.38008333299999997,238.14383178333333 -2016-04-29 09:00:00,0.0,1012.641667,153.0166667,83.5275,7.650416667000001,0.722583333,238.1436628166667 -2016-04-29 10:00:00,0.0,1012.68575,321.5833333,56.04,9.879166667,2.7446666669999997,238.1440007333334 -2016-04-29 11:00:00,0.0,1012.6959720000001,349.6833333,54.21583333,10.295,2.754416667,238.14146633333334 -2016-04-29 12:00:00,0.0,1012.5182779999999,306.4,52.4975,11.37583333,2.786166667,238.14163528333333 -2016-04-29 13:00:00,0.0,1012.608333,279.45,50.33833333,11.09166667,2.408083333,238.14095943333334 -2016-04-29 14:00:00,0.0,1012.4983890000001,395.225,48.4225,11.5525,2.57125,238.14146633333334 -2016-04-29 15:00:00,0.0,1012.458333,324.4333333,48.02416667,11.82583333,2.6223333330000003,238.14095943333334 -2016-04-29 16:00:00,0.0,1012.3158609999999,320.7083333,47.7325,12.35666667,2.951833333,238.14062149999998 -2016-04-29 17:00:00,0.0,1012.020972,172.65,48.1225,12.15666667,2.063166667,238.14079046666666 -2016-04-29 18:00:00,0.0,1011.8432779999999,71.91333333,52.1525,10.885,1.5390000000000001,238.14095943333334 -2016-04-29 19:00:00,0.0,1012.075,12.50283333,68.05666667,7.314,0.31225,238.14248009999997 -2016-04-29 20:00:00,0.0,1012.21075,0.11791666699999999,82.34416667,4.418083333,0.11566666699999999,238.14248008333334 -2016-04-29 21:00:00,0.0,1012.2650560000001,0.0,89.6,3.112666667,0.17925,238.14400075000003 -2016-04-29 22:00:00,0.0,1011.955917,0.0,92.28333333,2.3209999999999997,0.159333333,238.14416970000002 -2016-04-29 23:00:00,0.0,1011.95,0.0,97.35833333,1.637083333,0.071416667,238.14332491666664 -2016-04-30 00:00:00,0.0,1011.891667,0.0,99.29166667,0.675083333,0.06383333299999999,238.14433868333333 -2016-04-30 01:00:00,0.0,1011.85,0.0,99.88333333,0.6595,0.067083333,238.14450763333332 -2016-04-30 02:00:00,0.0,1011.8083330000001,0.0,100.0,1.222083333,0.020083333000000002,238.14400078333333 -2016-04-30 03:00:00,0.0,1011.925,0.0,100.0,1.838,0.0115,238.14315593333333 -2016-04-30 04:00:00,0.0,1011.875,0.10291666699999999,99.85,1.9225833330000002,0.0,238.1421422 -2016-04-30 05:00:00,0.0,1011.877417,8.212916667,100.0,1.269666667,0.0,238.14332493333336 -2016-04-30 06:00:00,0.0,1012.327417,41.435,99.61666667,2.703583333,0.012416667,238.14146633333334 -2016-04-30 07:00:00,0.0,1012.576611,117.58333329999999,88.30833333,4.546916667,0.12641666699999998,238.13994565 -2016-04-30 08:00:00,0.0,1012.547583,142.35,83.065,6.525166667000001,0.41100000000000003,238.13893186666667 -2016-04-30 09:00:00,0.0,1012.3924720000001,314.475,78.12666667,9.429166667,0.543416667,238.13724224999999 -2016-04-30 10:00:00,0.0,1012.380917,534.8,59.55083333,12.505,1.02,238.13487676666668 -2016-04-30 11:00:00,0.0,1012.1741939999999,533.1833333000001,54.30833333,14.01166667,1.004583333,238.13403195 -2016-04-30 12:00:00,0.0,1011.806722,170.8666667,55.13666667,14.52166667,1.054583333,238.13622845 -2016-04-30 13:00:00,0.0,1011.8,223.20833330000002,52.47416667,14.51333333,0.7695833329999999,238.13572156666666 -2016-04-30 14:00:00,0.0,1011.865861,325.2333333,58.56583333,13.99416667,2.83,238.13369400000002 -2016-04-30 15:00:00,0.0,1011.78575,400.9166667,57.335,14.19666667,2.861333333,238.13403193333332 -2016-04-30 16:00:00,0.0,1011.9817220000001,153.475,61.64416667,13.37666667,2.6840833330000002,238.13436986666667 -2016-04-30 17:00:00,0.0,1012.0965,106.85833329999998,68.19583333,12.33,3.531333333,238.13521468333332 -2016-04-30 18:00:00,0.0,1012.4682779999999,42.4675,72.02916667,11.24333333,3.183166667,238.13555259999998 -2016-04-30 19:00:00,0.0,1012.779833,11.85441667,75.68916667,9.661666667,3.690583333,238.1343698666667 -2016-04-30 20:00:00,0.0,1013.548917,0.060166667,79.72916667,8.505,2.99325,238.1357215666667 -2016-04-30 21:00:00,3.8951563439999997,1014.1782220000001,0.0,82.44166667,8.04575,3.174583333,238.13656638333336 -2016-04-30 22:00:00,55.97580036,1014.3801109999999,0.0,92.26666667,6.8266666670000005,3.245083333,238.13741119999997 -2016-04-30 23:00:00,23.32400791,1014.2182779999999,0.0,96.225,6.617000000000001,3.449,238.13994565 -2016-01-05 00:00:00,0.0,1014.283333,0.0,94.35833333,6.626666667,3.952,238.11191475 -2016-01-05 01:00:00,0.0,1014.3932779999999,0.0,91.64166667,6.641666667000001,4.001666667,238.11280953333335 -2016-01-05 02:00:00,0.0,1014.7032220000001,0.0,91.15,6.5089999999999995,3.814833333,238.11442009999996 -2016-01-05 03:00:00,0.0,1014.93575,0.0,90.86666667,6.335166667,3.5100833330000003,238.11334639999995 -2016-01-05 04:00:00,0.0,1015.209139,0.057416667000000005,90.325,6.381,2.9761666669999998,238.11280953333335 -2016-01-05 05:00:00,0.0,1015.563167,10.43291667,89.75833333,6.437583332999999,3.216583333,238.11352533333334 -2016-01-05 06:00:00,0.0,1015.979833,41.26333333,89.875,6.725,3.478333333,238.11101998333334 -2016-01-05 07:00:00,3.8260368239999996,1016.6432779999999,75.01,89.24166667,7.27675,3.504083333,238.11191475 -2016-01-05 08:00:00,0.0,1017.004833,136.1583333,87.03333333,8.290583332999999,4.296166667,238.10958835 -2016-01-05 09:00:00,0.0,1017.342472,285.2916667,82.35333333,9.769166667,4.555333333,238.10815673333332 -2016-01-05 10:00:00,0.0,1017.6373609999999,530.2416667,76.72083333,11.52083333,4.321166667,238.10457765 -2016-01-05 11:00:00,0.0,1017.680917,570.2833333,73.50083333,12.8825,4.248666667,238.10368290000005 -2016-01-05 12:00:00,0.0,1017.609139,615.3916667000001,66.95583333,14.375,4.531833333,238.10260918333333 -2016-01-05 13:00:00,0.0,1017.7241939999999,606.4583332999999,62.66166667,15.54916667,4.744333333,238.09240881666668 -2016-01-05 14:00:00,0.0,1017.5174720000001,576.25,58.36333333,16.39583333,4.8260000000000005,238.09903010000002 -2016-01-05 15:00:00,0.0,1017.8889720000001,506.65833330000004,55.53916667,16.86666667,4.39075,238.09974593333334 -2016-01-05 16:00:00,0.0,1018.165056,395.925,55.12416667,16.95666667,4.179166667,238.09903011666665 -2016-01-05 17:00:00,0.0,1018.168278,228.55833330000002,53.715,16.7575,4.227333333,238.09920903333332 -2016-01-05 18:00:00,0.0,1018.61075,76.55833333,55.2975,15.82666667,3.42625,238.09813533333332 -2016-01-05 19:00:00,0.0,1019.1905830000001,19.94608333,61.7575,14.35083333,2.330083333,238.09491414999994 -2016-01-05 20:00:00,0.0,1019.862361,0.1935,71.95583333,12.295,1.480833333,238.0950931333333 -2016-01-05 21:00:00,0.0,1020.202417,0.0,89.15833333,9.552916667,0.5561666670000001,238.09240883333328 -2016-01-05 22:00:00,0.0,1020.369083,0.0,94.76666667,8.0695,0.832833333,238.09008245000004 -2016-01-05 23:00:00,0.0,1020.591667,0.0,97.73333333,8.514416667,0.557666667,238.08990346666667 -2016-02-05 00:00:00,0.0,1020.834944,0.0,99.74166667,6.5120000000000005,0.23175,238.14305261666664 -2016-02-05 01:00:00,0.0,1020.9333330000001,0.0,100.0,5.089916667,0.437333333,238.14251576666666 -2016-02-05 02:00:00,0.0,1020.958333,0.0,100.0,3.616083333,0.242083333,238.1405472666667 -2016-02-05 03:00:00,0.0,1020.875806,0.0,100.0,2.5765,0.233916667,238.13911565000004 -2016-02-05 04:00:00,0.0,1020.897583,0.345416667,100.0,2.056666667,0.208416667,238.13911565 -2016-02-05 05:00:00,0.0,1020.716667,15.44758333,100.0,1.7903333330000002,0.09758333300000001,238.1378629666667 -2016-02-05 06:00:00,0.0,1020.962361,99.88916667,100.0,5.017333333,0.00925,238.13535765000003 -2016-02-05 07:00:00,0.0,1021.1258050000001,231.9666667,91.75833333,9.087,0.68525,238.13338915 -2016-02-05 08:00:00,0.0,1021.0467779999999,152.025,79.46333333,11.26166667,1.231666667,238.13338913333334 -2016-02-05 09:00:00,0.0,1020.738444,358.26916669999997,69.15916667,13.20333333,1.279333333,238.13088378333336 -2016-02-05 10:00:00,0.0,1020.1967779999999,570.4166667000001,60.03166667,15.58416667,1.169083333,238.13142065 -2016-02-05 11:00:00,0.0,1019.584417,631.3416667,49.83666667,16.88666667,1.5408333330000001,238.12873636666666 -2016-02-05 12:00:00,0.0,1018.980111,658.35,45.1275,17.38,1.391583333,238.12730471666669 -2016-02-05 13:00:00,0.0,1018.486833,648.1583333,44.3825,18.1225,1.5495,238.12748366666665 -2016-02-05 14:00:00,0.0,1017.851889,603.15,42.425,18.82166667,1.596916667,238.12551519999997 -2016-02-05 15:00:00,0.0,1017.136833,522.4083333000001,38.8,19.57166667,1.171583333,238.12605204999997 -2016-02-05 16:00:00,0.0,1016.4035,421.34166669999996,38.26,19.575,1.647416667,238.12408358333334 -2016-02-05 17:00:00,0.0,1015.743556,263.0833333,39.86666667,19.6175,1.224416667,238.12533625 -2016-02-05 18:00:00,0.0,1015.0543050000001,78.33333333,42.82916667,19.04,0.6466666670000001,238.12300985000002 -2016-02-05 19:00:00,0.0,1015.05,10.06283333,75.605,11.59583333,0.27475,238.12265195 -2016-02-05 20:00:00,0.0,1015.1623609999999,0.16725,85.3,8.060166667,0.33316666699999997,238.1212203166667 -2016-02-05 21:00:00,0.0,1015.181722,0.0,89.61666667,6.498833332999999,0.050916667,238.12104135 -2016-02-05 22:00:00,0.0,1015.0717779999999,0.0,94.09166667,5.456333333,0.02425,238.12104138333336 -2016-02-05 23:00:00,0.0,1014.85,0.0,96.05,4.747833333,0.140083333,238.1183570666667 -2016-03-05 00:00:00,0.0,1014.66425,0.0,98.49166667,4.5595,0.181333333,238.2225776833333 -2016-03-05 01:00:00,0.0,1014.36425,0.0,96.075,4.748416667,0.161,238.22989136666664 -2016-03-05 02:00:00,0.0,1014.208333,0.0,97.675,4.42575,0.079666667,238.2382498333333 -2016-03-05 03:00:00,0.0,1014.3174720000001,0.0,99.00833333,4.632666667,0.01175,238.2420111 -2016-03-05 04:00:00,0.0,1014.13925,0.5648333329999999,99.75,5.296166667,0.024333333,238.2411753 -2016-03-05 05:00:00,0.0,1013.875,12.21941667,96.95833333,6.166333333,0.16,238.2436828333333 -2016-03-05 06:00:00,0.0,1014.051611,56.27166667,81.825,7.876333333,0.331916667,238.24911583333332 -2016-03-05 07:00:00,0.0,1014.513167,126.76416670000002,80.43916667,10.2625,0.207583333,238.25705638333338 -2016-03-05 08:00:00,0.0,1015.1905830000001,151.66666669999998,77.10666667,12.42,1.381666667,238.26144458333337 -2016-03-05 09:00:00,5.339980272,1015.8766109999999,118.875,88.74166667,10.84166667,2.02125,238.26708653333336 -2016-03-05 10:00:00,5.10006636,1016.276333,84.38083333,94.075,10.285,1.14975,238.27001199999998 -2016-03-05 11:00:00,0.0,1017.0575279999999,281.575,82.74,10.21,3.404583333,238.26980305000004 -2016-03-05 12:00:00,0.0,1017.16075,407.4916667,73.18,11.98416667,3.09525,238.2710568 -2016-03-05 13:00:00,0.0,1017.319083,277.53333330000004,67.12333333,12.355,2.022916667,238.26834033333338 -2016-03-05 14:00:00,0.0,1017.644889,392.0083333,60.4375,12.97833333,3.13675,238.26750448333334 -2016-03-05 15:00:00,0.0,1018.176611,198.95,77.20666667,10.92166667,3.943916667,238.26416108333333 -2016-03-05 16:00:00,0.0,1018.352417,114.99333329999999,66.09333333,11.6125,2.4860833330000003,238.26499691666666 -2016-03-05 17:00:00,0.0,1018.677417,202.64333330000002,61.8675,12.34166667,2.166583333,238.2654148666667 -2016-03-05 18:00:00,0.0,1018.81075,93.8575,63.2975,13.07666667,1.8911666669999998,238.26499691666666 -2016-03-05 19:00:00,0.0,1019.514778,30.52208333,51.06916667,11.41,1.9943333330000002,238.26562378333335 -2016-03-05 20:00:00,0.0,1020.5854720000001,0.367333333,61.62416667,7.29725,0.244583333,238.2622804 -2016-03-05 21:00:00,0.0,1021.597306,0.0,87.84083333,4.635083333,0.182416667,238.2618625 -2016-03-05 22:00:00,0.0,1022.2389720000001,0.0,93.64166667,3.178,0.054000000000000006,238.2622804 -2016-03-05 23:00:00,0.0,1022.694083,0.0,95.81666667,2.789666667,0.26366666699999997,238.26144456666665 -2016-04-05 00:00:00,0.0,1022.977417,0.0,97.825,2.031083333,0.12475,238.27732563333333 -2016-04-05 01:00:00,0.0,1023.108333,0.0,98.6,1.12275,0.039333333,238.27628083333332 -2016-04-05 02:00:00,0.0,1023.2365560000001,0.0,99.68333333,0.348083333,0.01025,238.27481811666664 -2016-04-05 03:00:00,0.0,1023.559944,0.0,100.0,-0.197083333,0.0,238.2746091333333 -2016-04-05 04:00:00,0.0,1023.7266109999999,0.417416667,100.0,-1.0756666670000001,0.00075,238.28401241666666 -2016-04-05 05:00:00,0.0,1024.1723060000002,19.66166667,100.0,-0.317583333,0.002666667,238.28505723333333 -2016-04-05 06:00:00,0.0,1024.7540279999998,126.34333329999998,96.51666667,2.769583333,0.08633333300000001,238.2929978 -2016-04-05 07:00:00,0.0,1025.175805,251.0575,80.41416667,5.7435,0.12116666699999999,238.2940426 -2016-04-05 08:00:00,0.0,1025.4349439999999,148.04166669999998,74.12333333,8.502083333,1.2795,238.29466948333334 -2016-04-05 09:00:00,0.0,1025.491667,388.4141667,70.29416667,9.744166667,1.80675,238.2946694833333 -2016-04-05 10:00:00,0.0,1025.205111,614.325,60.615,11.2425,1.332166667,238.2957143 -2016-04-05 11:00:00,0.0,1024.9717779999999,707.7583333,49.48583333,12.71333333,1.2615,238.2963411833333 -2016-04-05 12:00:00,0.0,1024.4801109999999,720.8166667,42.17916667,13.3175,1.49125,238.2967591 -2016-04-05 13:00:00,0.0,1024.2,661.6583333,41.6825,14.13416667,1.60625,238.29696805 -2016-04-05 14:00:00,0.0,1024.0785,634.975,39.7875,14.39416667,1.7645,238.2978039 -2016-04-05 15:00:00,0.0,1023.621778,562.3083333,38.35,14.62583333,2.180583333,238.29780389999996 -2016-04-05 16:00:00,0.0,1023.258333,398.6416667,37.23,14.85833333,1.7285833330000002,238.30031143333335 -2016-04-05 17:00:00,0.0,1023.097583,188.4833333,41.2125,14.07583333,1.9555,238.31326708333333 -2016-04-05 18:00:00,0.0,1022.984139,90.82083333,39.38916667,13.64,1.277666667,238.3191179833333 -2016-04-05 19:00:00,0.0,1023.125806,26.32725,60.835,9.859083333,0.289916667,238.31828215 -2016-04-05 20:00:00,0.0,1023.166667,0.3725,85.51,4.724,0.045,238.31849113333337 -2016-04-05 21:00:00,0.0,1023.386555,0.0,92.63333333,2.9675,0.033833333,238.31661046666667 -2016-04-05 22:00:00,0.0,1023.600806,0.0,95.38333333,1.7689166669999998,0.004333333,238.31514773333333 -2016-04-05 23:00:00,0.0,1023.675,0.0,97.55,1.03975,0.009333333000000001,238.31472978333332 -2016-05-05 00:00:00,0.0,1023.765861,0.0,98.21666667,0.622083333,0.000666667,238.12135968333337 -2016-05-05 01:00:00,0.0,1023.46425,0.0,99.28333333,-0.04425,0.0,238.12237346666666 -2016-05-05 02:00:00,0.0,1023.3241939999999,0.0,99.725,-0.296666667,0.0,238.12338724999998 -2016-05-05 03:00:00,0.0,1023.1483890000001,0.0,100.0,-0.840833333,0.0,238.12288033333334 -2016-05-05 04:00:00,0.0,1023.0666669999999,0.5658333329999999,100.0,-1.05875,0.0,238.12288034999997 -2016-05-05 05:00:00,0.0,1023.119083,22.62416667,100.0,-0.287583333,0.0016666670000000001,238.12186656666668 -2016-05-05 06:00:00,0.0,1023.4008060000001,128.0425,94.66666667,3.5789999999999997,0.0,238.11967003333336 -2016-05-05 07:00:00,0.0,1023.36425,245.6075,78.0425,6.09725,0.39883333299999996,238.11713560000007 -2016-05-05 08:00:00,0.0,1023.004306,144.6658333,72.64583333,9.456666667,0.6659999999999999,238.1147701166667 -2016-05-05 09:00:00,0.0,1022.436028,375.22333330000004,64.3325,12.91666667,2.148916667,238.1142632 -2016-05-05 10:00:00,0.0,1021.915861,585.4666667,60.54333333,14.71583333,2.12625,238.1134184 -2016-05-05 11:00:00,0.0,1021.276083,646.9416667,59.33583333,15.8675,2.291666667,238.1125736 -2016-05-05 12:00:00,0.0,1020.3935550000001,622.7333332999999,53.93166667,16.55083333,2.55525,238.11291149999997 -2016-05-05 13:00:00,0.0,1019.620167,664.625,50.6575,17.805,2.675833333,238.1118977333333 -2016-05-05 14:00:00,0.0,1018.927695,612.45,47.89083333,18.58333333,2.55725,238.1102080833333 -2016-05-05 15:00:00,0.0,1018.226083,515.25,48.53166667,19.47083333,2.016166667,238.1095322166667 -2016-05-05 16:00:00,0.0,1017.529306,422.00833330000006,45.83416667,19.85,2.152166667,238.10919429999998 -2016-05-05 17:00:00,0.0,1016.81775,258.4916667,45.5325,19.675,1.9405,238.1090253333333 -2016-05-05 18:00:00,0.0,1016.1602220000001,84.98083333,48.47,18.87,1.53725,238.1103770666667 -2016-05-05 19:00:00,0.0,1015.740861,26.76266667,63.42666667,15.67916667,0.36416666700000005,238.1122356833333 -2016-05-05 20:00:00,0.0,1015.68575,0.335333333,88.35,9.5675,0.0895,238.1147701 -2016-05-05 21:00:00,0.0,1015.6959720000001,0.0,94.94166667,7.227333333,0.072333333,238.11544596666667 -2016-05-05 22:00:00,0.0,1015.475806,0.0,98.225,6.110666667,0.0905,238.11730458333332 -2016-05-05 23:00:00,0.0,1015.330111,0.0,99.9,5.172083333,0.07525,238.11679768333337 -2016-06-05 00:00:00,0.0,1015.175,0.0,100.0,4.6384166669999995,0.1235,238.09432553333332 -2016-06-05 01:00:00,0.0,1014.922583,0.0,100.0,4.367,0.231083333,238.0955083 -2016-06-05 02:00:00,0.0,1014.561833,0.0,100.0,3.813583333,0.109083333,238.09466346666667 -2016-06-05 03:00:00,0.0,1013.988444,0.0,100.0,3.3410833330000003,0.094416667,238.09466346666667 -2016-06-05 04:00:00,0.0,1013.68925,1.1178333329999999,100.0,2.820583333,0.09275,238.09314278333332 -2016-06-05 05:00:00,0.0,1013.466667,36.19108333,100.0,3.6565,0.018833333,238.09162213333335 -2016-06-05 06:00:00,0.0,1013.382528,136.42583330000002,97.45,7.639333333,0.15075,238.09027043333336 -2016-06-05 07:00:00,0.0,1013.5174720000001,211.73833330000002,84.81666667,11.085,0.49175,238.08739803333336 -2016-06-05 08:00:00,0.0,1013.4325279999999,148.6625,71.74416667,15.07416667,2.066416667,238.08604635000003 -2016-06-05 09:00:00,0.0,1013.423389,382.2633333,67.94166667,16.81,2.1229166669999997,238.08384981666669 -2016-06-05 10:00:00,0.0,1013.0384439999999,589.6083332999999,65.65416667,17.91166667,3.05275,238.08283603333334 -2016-06-05 11:00:00,0.0,1012.6959720000001,646.6,62.675,19.52,2.484666667,238.08131536666664 -2016-06-05 12:00:00,0.0,1012.036833,674.1583333,55.77,21.00666667,2.264166667,238.08097745 -2016-06-05 13:00:00,0.0,1011.530917,661.5166667000001,50.10333333,22.06416667,2.439833333,238.08182225000004 -2016-06-05 14:00:00,0.0,1011.069361,616.225,42.9925,22.9175,2.426333333,238.07641541666666 -2016-06-05 15:00:00,0.0,1010.53925,504.125,37.8425,23.30083333,2.262833333,238.0745568333333 -2016-06-05 16:00:00,0.0,1010.121778,430.79166669999995,35.16666667,23.3775,1.9818333330000002,238.0745568333333 -2016-06-05 17:00:00,0.0,1009.7693609999999,265.25,37.54416667,22.96,1.5175833330000001,238.07506371666668 -2016-06-05 18:00:00,0.0,1009.197583,75.03666667,48.16,21.60666667,0.8161666670000001,238.0748947666666 -2016-06-05 19:00:00,0.0,1009.241667,16.18558333,75.88083333,15.63,0.030833332999999997,238.07523269999993 -2016-06-05 20:00:00,0.0,1009.320694,0.367333333,88.78333333,10.95416667,0.132,238.07641540000006 -2016-06-05 21:00:00,0.0,1009.5,0.0,92.70833333,8.963333333,0.00275,238.07726025000002 -2016-06-05 22:00:00,0.0,1009.415056,0.0,96.88333333,7.7615,0.0,238.07844296666667 -2016-06-05 23:00:00,0.0,1009.418278,0.0,98.40833333,7.013416667,0.005666666999999999,238.08232913333336 -2016-07-05 00:00:00,0.0,1009.516667,0.0,99.58333333,6.154666667000001,0.0,238.0636747166667 -2016-07-05 01:00:00,0.0,1009.431722,0.0,100.0,5.4850833329999995,0.00041666699999999996,238.06427168333335 -2016-07-05 02:00:00,0.0,1009.249194,0.0,100.0,4.938166667,0.0,238.06486866666668 -2016-07-05 03:00:00,0.0,1009.175,0.0,100.0,4.552916667,0.0,238.06705760000003 -2016-07-05 04:00:00,0.0,1009.133333,0.77375,100.0,4.293083333,0.0,238.06646063333335 -2016-07-05 05:00:00,0.0,1009.252417,35.043,100.0,4.96375,0.0,238.06646061666666 -2016-07-05 06:00:00,0.0,1009.577417,142.7841667,97.4,9.21175,0.0,238.06566465 -2016-07-05 07:00:00,0.0,1009.841667,247.17,78.43333333,12.79416667,0.048333333,238.06566465000003 -2016-07-05 08:00:00,0.0,1009.8432779999999,143.8875,69.43416667,16.02916667,1.234166667,238.06267976666666 -2016-07-05 09:00:00,0.0,1009.802694,380.1983333,60.79083333,18.95166667,0.7978333329999999,238.06148580000004 -2016-07-05 10:00:00,0.0,1009.36425,583.45,52.75666667,21.75166667,1.98,238.06148578333338 -2016-07-05 11:00:00,0.0,1008.880917,644.0083333,45.9525,22.8925,2.366916667,238.0577049 -2016-07-05 12:00:00,0.0,1008.488444,669.45,40.63666667,23.98083333,2.4765,238.055516 -2016-07-05 13:00:00,0.0,1008.077695,661.5416667000001,39.23416667,24.54666667,2.53725,238.05292910000003 -2016-07-05 14:00:00,0.0,1007.657528,589.8166667,37.62166667,25.25333333,2.02575,238.0517351 -2016-07-05 15:00:00,0.0,1007.095167,429.3583333000001,35.9325,25.2575,2.09225,238.05034216666664 -2016-07-05 16:00:00,0.0,1006.715056,350.025,35.035,25.04916667,1.943,238.04795425 -2016-07-05 17:00:00,0.0,1006.5876390000001,284.8833333,32.5375,24.67,1.8294166669999998,238.04894921666667 -2016-07-05 18:00:00,0.0,1006.3516109999999,81.57416667,37.67083333,23.6325,0.9175,238.04676028333336 -2016-07-05 19:00:00,0.0,1006.754833,26.52875,50.0175,19.30916667,0.2335,238.04636230000003 -2016-07-05 20:00:00,0.0,1007.3147779999999,0.682916667,82.9175,12.51583333,0.2275,238.04775525000002 -2016-07-05 21:00:00,0.0,1007.842472,0.0,88.83333333,10.5175,0.21833333300000002,238.0497452 -2016-07-05 22:00:00,0.0,1008.169889,0.0,92.05833333,8.835,0.238833333,238.04914821666668 -2016-07-05 23:00:00,0.0,1008.5965,0.0,95.0,7.542916667,0.26758333300000003,238.04914821666668 -2016-08-05 00:00:00,0.0,1008.833333,0.0,97.65,6.652833332999999,0.10391666699999999,238.01870223333333 -2016-08-05 01:00:00,0.0,1008.967472,0.0,99.14166667,5.884583332999999,0.133083333,238.02109015000005 -2016-08-05 02:00:00,0.0,1008.966667,0.0,99.09166667,5.670333332999999,0.198,238.02327908333334 -2016-08-05 03:00:00,0.0,1008.9416669999999,0.0,99.66666667,5.4299166670000005,0.133,238.02467203333333 -2016-08-05 04:00:00,0.0,1009.152417,0.905416667,99.875,4.941166667,0.068916667,238.0226821 -2016-08-05 05:00:00,0.0,1009.4540279999999,39.46133333,98.275,5.790083332999999,0.056916667000000004,238.0228810666667 -2016-08-05 06:00:00,0.0,1010.004028,142.6308333,84.755,10.02383333,0.31125,238.01989618333334 -2016-08-05 07:00:00,0.0,1010.51075,247.23,67.70666667,14.08833333,0.8181666670000001,238.0187022166667 -2016-08-05 08:00:00,0.0,1010.483333,145.6425,60.44666667,17.04916667,0.6699166670000001,238.01790625 -2016-08-05 09:00:00,0.0,1010.3543060000001,392.4191667,53.22916667,19.90416667,1.809916667,238.01512036666668 -2016-08-05 10:00:00,0.0,1009.7967779999999,601.45,43.01166667,21.81833333,2.306166667,238.01432438333336 -2016-08-05 11:00:00,0.0,1009.371778,663.975,35.52333333,22.51666667,2.9674166669999997,238.01293140000004 -2016-08-05 12:00:00,0.0,1009.1741939999999,689.6916667,35.13833333,23.00583333,3.179833333,238.01193646666664 -2016-08-05 13:00:00,0.0,1008.9543060000001,675.4333333,34.85333333,23.59833333,2.897416667,238.01133948333336 -2016-08-05 14:00:00,0.0,1008.7,629.6666667000001,33.5725,23.95333333,2.98175,238.0059666666667 -2016-08-05 15:00:00,0.0,1008.66425,550.2333332999999,33.12,24.22333333,2.76575,238.0037777166667 -2016-08-05 16:00:00,0.0,1008.4325279999999,439.83333330000005,34.72,24.14166667,2.818333333,237.99999683333337 -2016-08-05 17:00:00,0.0,1008.037639,267.03333330000004,36.08166667,23.725,2.5775,238.00079285000004 -2016-08-05 18:00:00,0.0,1007.852417,86.40833333,39.56583333,22.7875,1.96375,237.99920086666668 -2016-08-05 19:00:00,0.0,1008.344083,34.96208333,47.14416667,20.0825,0.7436666670000001,237.99760893333337 -2016-08-05 20:00:00,0.0,1008.8314439999999,0.863833333,64.51416667,14.87916667,0.05275,237.99760895 -2016-08-05 21:00:00,0.0,1009.5306390000001,0.0,85.38083333,10.4775,0.1365,237.99820590000002 -2016-08-05 22:00:00,0.0,1009.9932779999999,0.0,91.85,9.445,0.21991666699999998,237.99621598333331 -2016-08-05 23:00:00,0.0,1010.208333,0.0,96.03333333,8.350833332999999,0.10191666699999999,237.99442503333333 -2016-09-05 00:00:00,0.0,1010.2182779999999,0.0,98.66666667,7.4645,0.163666667,237.87483004999999 -2016-09-05 01:00:00,0.0,1010.173389,0.0,99.96666667,7.25825,0.3115,237.87582501666665 -2016-09-05 02:00:00,0.0,1010.007528,0.0,100.0,6.59675,0.251,237.87841191666666 -2016-09-05 03:00:00,0.0,1010.092472,0.0,100.0,6.292666667000001,0.307,237.88139681666667 -2016-09-05 04:00:00,0.0,1009.88925,1.039833333,100.0,5.9981666670000005,0.060833332999999996,237.88179481666668 -2016-09-05 05:00:00,0.0,1009.9965,48.63891667,99.89166667,6.8688333329999995,0.1345,237.8833867666667 -2016-09-05 06:00:00,0.0,1010.469083,159.075,86.77083333,11.92916667,0.078333333,237.88537668333333 -2016-09-05 07:00:00,0.0,1010.7766109999999,250.745,74.75916667,14.9825,0.488833333,237.8859736833333 -2016-09-05 08:00:00,0.0,1010.831722,143.2166667,67.9075,18.23583333,1.454833333,237.88398375 -2016-09-05 09:00:00,0.0,1010.597583,395.08416669999997,57.30083333,19.80666667,2.317916667,237.88378473333333 -2016-09-05 10:00:00,0.0,1010.221778,604.175,53.295,21.2,2.404583333,237.8851777 -2016-09-05 11:00:00,0.0,1009.959139,654.15,46.765,22.23416667,2.978583333,237.88617266666665 -2016-09-05 12:00:00,0.0,1009.936833,651.825,43.69916667,23.12916667,3.0239999999999996,237.88557568333337 -2016-09-05 13:00:00,0.0,1009.809944,640.325,41.52083333,23.78916667,2.86,237.88418273333335 -2016-09-05 14:00:00,0.0,1009.71425,619.2333332999999,39.59666667,24.71166667,2.592833333,237.88418275 -2016-09-05 15:00:00,0.0,1009.246778,484.3166666999999,39.17416667,24.93083333,2.548083333,237.88259076666668 -2016-09-05 16:00:00,0.0,1008.8535,305.6916667,39.8925,24.0525,2.10175,237.88179481666666 -2016-09-05 17:00:00,0.0,1008.533333,265.25,41.0175,23.9925,1.5981666669999999,237.87940688333333 -2016-09-05 18:00:00,0.0,1008.469083,78.69166667,46.6525,21.945,0.430166667,237.88020288333334 -2016-09-05 19:00:00,0.0,1008.75,30.79908333,66.42333333,17.68083333,0.107416667,237.8817948 -2016-09-05 20:00:00,0.0,1009.029833,0.687666667,84.52333333,13.33333333,0.11591666699999999,237.88358575000004 -2016-09-05 21:00:00,0.0,1009.293278,0.0,91.85833333,11.25083333,0.163083333,237.88537668333333 -2016-09-05 22:00:00,0.0,1009.405917,0.0,95.525,10.74916667,0.33066666699999997,237.88617266666665 -2016-09-05 23:00:00,0.0,1009.283333,0.0,97.88333333,9.719166667,0.240666667,237.88756560000002 -2016-10-05 00:00:00,0.0,1009.0317220000001,0.0,99.71666667,8.655,0.12783333300000002,237.94552446666668 -2016-10-05 01:00:00,0.0,1008.736833,0.0,100.0,8.139833333,0.13125,237.94512899999998 -2016-10-05 02:00:00,0.0,1008.3900560000001,0.0,99.44166667,9.341666667,0.34483333299999996,237.9453568166667 -2016-10-05 03:00:00,0.0,1008.055917,0.0,93.86666667,9.363333333,0.052333332999999996,237.94594843333334 -2016-10-05 04:00:00,0.0,1007.925,1.86075,86.74166667,9.501666667,0.146166667,237.94618573333332 -2016-10-05 05:00:00,0.0,1007.858333,29.45225,84.7,11.2125,0.35066666700000004,237.9468944166667 -2016-10-05 06:00:00,0.0,1007.7241939999999,142.925,78.75083333,14.27083333,0.204416667,237.9459168 -2016-10-05 07:00:00,0.0,1007.672583,179.1416667,74.91583333,15.9625,0.748416667,237.9447683666667 -2016-10-05 08:00:00,0.0,1007.425,215.6166667,68.98833333,17.78666667,1.99775,237.94531249999997 -2016-10-05 09:00:00,0.0,1007.2535,460.25833330000006,59.495,19.9275,1.6045833330000001,237.94495345000004 -2016-10-05 10:00:00,0.0,1006.8817220000001,577.2416667,53.15,22.07583333,1.2665,237.94523501666666 -2016-10-05 11:00:00,0.0,1006.555917,608.0083333,49.64166667,23.1775,1.5035,237.94406443333332 -2016-10-05 12:00:00,0.0,1006.197583,440.8916666999999,48.015,23.43916667,1.322416667,237.94573805000002 -2016-10-05 13:00:00,0.0,1006.0067220000001,430.45,44.42833333,23.93083333,1.251916667,237.94398218333333 -2016-10-05 14:00:00,0.0,1005.846778,380.35,46.34333333,23.27,1.316916667,237.94211238333332 -2016-10-05 15:00:00,0.0,1005.415056,243.2583333,55.13,22.55583333,1.14225,237.94333516666669 -2016-10-05 16:00:00,0.0,1005.35,169.675,64.18,20.47,1.3460833330000002,237.94333675 -2016-10-05 17:00:00,0.0,1005.342472,132.05,66.77583333,19.85916667,0.606,237.94253318333335 -2016-10-05 18:00:00,0.0,1005.31425,54.7525,74.73916667,19.125,0.277333333,237.94282423333337 -2016-10-05 19:00:00,0.0,1005.0908609999999,9.815666667,80.94083333,17.70083333,0.627583333,237.94119013333332 -2016-10-05 20:00:00,0.0,1005.277417,0.37425,83.2,16.27833333,1.218916667,237.9420728 -2016-10-05 21:00:00,0.0,1005.072583,0.0,93.10833333,14.89583333,0.278416667,237.94258534999997 -2016-10-05 22:00:00,0.0,1005.0341390000001,0.0,99.15,13.9325,0.110666667,237.942549 -2016-10-05 23:00:00,0.0,1005.25,0.0,100.0,12.62833333,0.1705,237.94424948333332 -2016-11-05 00:00:00,0.0,1005.21425,0.0,100.0,11.16166667,0.048,238.00483705 -2016-11-05 01:00:00,0.0,1004.749194,0.0,100.0,9.843333333,0.132833333,238.00578456666668 -2016-11-05 02:00:00,0.0,1004.575,0.0,100.0,8.698333332999999,0.10141666699999999,238.00410935000002 -2016-11-05 03:00:00,0.0,1004.419361,0.0,100.0,8.458333332999999,0.246916667,238.00538908333328 -2016-11-05 04:00:00,0.0,1003.855111,1.2471666670000001,100.0,7.818083333,0.014916667,238.00431026666664 -2016-11-05 05:00:00,0.0,1003.788167,18.33783333,100.0,7.861083333,0.024916667000000003,238.0056928 -2016-11-05 06:00:00,0.0,1004.0,94.49166667,100.0,11.0825,0.11966666699999999,238.00632396666666 -2016-11-05 07:00:00,0.0,1003.91425,231.55,99.475,13.3875,0.3115,238.00585101666664 -2016-11-05 08:00:00,0.0,1003.636833,203.4,87.61666667,17.05,0.47625,238.00641098333335 -2016-11-05 09:00:00,9.23967996,1003.2733890000001,406.65833330000004,78.39416667,19.52333333,1.614,238.00593796666666 -2016-11-05 10:00:00,0.0,1002.9709720000001,487.5166666999999,70.28333333,20.96666667,2.0605,238.00572605000002 -2016-11-05 11:00:00,0.0,1002.497583,575.5,63.08416667,21.89333333,2.5510833330000002,238.00644423333335 -2016-11-05 12:00:00,0.0,1002.077694,538.925,62.6625,21.4925,2.096916667,238.00907488333328 -2016-11-05 13:00:00,0.0,1001.201889,568.65,59.90166667,22.28833333,2.1888333330000003,238.01349621666665 -2016-11-05 14:00:00,0.0,1000.645167,328.0416667,58.955,22.88416667,1.829083333,238.02257461666662 -2016-11-05 15:00:00,0.0,999.9626389,252.9916667,59.28166667,22.60583333,1.6365833330000001,238.03172419999999 -2016-11-05 16:00:00,0.0,999.4951667000001,171.4083333,55.65083333,21.90916667,1.4811666669999999,238.03740156666663 -2016-11-05 17:00:00,0.0,998.9983889,158.7,49.67583333,21.0375,1.80025,238.04078360000003 -2016-11-05 18:00:00,0.0,998.8333332999998,97.30333333,55.10916667,20.84333333,0.63425,238.04356298333335 -2016-11-05 19:00:00,0.0,998.8325277999999,31.18383333,69.34333333,18.37416667,0.139916667,238.04511796666668 -2016-11-05 20:00:00,0.0,998.7317222000001,0.708416667,81.17833333,15.23666667,0.033583333,238.04436341666667 -2016-11-05 21:00:00,0.0,998.4459722000001,0.0,89.825,14.285,0.12916666699999999,238.04385246666666 -2016-11-05 22:00:00,0.0,998.5040277999999,0.0,90.10833333,16.01,0.4695,238.04135941666664 -2016-11-05 23:00:00,0.0,998.3709722000001,0.0,93.50833333,13.875,0.18725,238.04003066666667 -2016-12-05 00:00:00,0.0,998.0559167000001,0.0,95.66666667,11.98916667,0.162916667,238.04256638333334 -2016-12-05 01:00:00,0.0,997.6785,0.0,95.21666667,11.87166667,0.182083333,238.0435804 -2016-12-05 02:00:00,0.0,997.4016111,0.0,83.35833333,11.37916667,0.198,238.04324343333334 -2016-12-05 03:00:00,0.0,997.1301110999999,0.0,81.125,11.865,0.351416667,238.04338581666664 -2016-12-05 04:00:00,0.0,996.8225832999999,1.8605833330000001,81.96666667,10.61666667,0.24875,238.04231804999998 -2016-12-05 05:00:00,0.0,996.5559167000001,20.25833333,81.76666667,11.51916667,0.53325,238.04252843333333 -2016-12-05 06:00:00,0.0,996.6182777999999,80.67083333,81.08333333,12.49666667,0.438833333,238.04237024999998 -2016-12-05 07:00:00,0.0,996.5416667000002,190.7666667,76.81083333,15.07416667,1.877083333,238.04203330000004 -2016-12-05 08:00:00,0.0,996.4833332999999,220.25,68.51166667,17.08583333,3.254333333,238.04249521666665 -2016-12-05 09:00:00,0.0,996.6,363.775,66.14916667,18.3775,2.659166667,238.04232911666668 -2016-12-05 10:00:00,0.0,996.2959722,328.4583333,65.66333333,19.2375,1.9875,238.04093073333334 -2016-12-05 11:00:00,0.0,996.0725832999999,289.40833330000004,67.0,19.77666667,1.83975,238.0390467166667 -2016-12-05 12:00:00,0.0,995.71425,315.65833330000004,65.66583333,19.63583333,1.85125,238.0375123166667 -2016-12-05 13:00:00,0.0,995.5166667000001,384.96666669999996,64.13583333,20.98583333,1.81275,238.0345573666667 -2016-12-05 14:00:00,0.0,995.2725832999998,278.0083333,61.15333333,21.0,2.140333333,238.03341046666665 -2016-12-05 15:00:00,0.0,995.11425,236.7333333,60.99583333,20.975,2.242666667,238.03442763333337 -2016-12-05 16:00:00,0.0,994.9166667000002,337.9416667,61.32416667,21.9425,1.7821666669999998,238.0346491 -2016-12-05 17:00:00,0.0,994.5709722000001,179.54166669999998,60.15916667,21.31083333,1.5375833330000002,238.0352169833333 -2016-12-05 18:00:00,0.0,994.3666667000001,67.945,65.26916667,20.0925,1.8545833330000001,238.03782711666668 -2016-12-05 19:00:00,0.0,994.3233889,30.02583333,77.53583333,19.37416667,1.713416667,238.03697765 -2016-12-05 20:00:00,0.0,994.5639722000001,2.4925,88.1,16.14916667,0.523666667,238.03348483333332 -2016-12-05 21:00:00,0.0,995.01075,0.0,89.34166667,14.83416667,0.6519166670000001,238.03416346666666 -2016-12-05 22:00:00,0.0,995.3258056,0.0,88.5,14.49,0.164833333,238.0330672166667 -2016-12-05 23:00:00,0.0,995.2825277999999,0.0,95.15833333,12.4975,0.435666667,238.03073393333332 -2016-05-13 00:00:00,0.0,995.38575,0.0,98.60833333,10.97166667,0.13375,238.08841183333334 -2016-05-13 01:00:00,0.0,995.4483889,0.0,100.0,10.63416667,0.1435,238.08773598333335 -2016-05-13 02:00:00,0.0,995.5099444,0.0,100.0,9.529166667,0.203916667,238.08976353333335 -2016-05-13 03:00:00,0.0,995.5516111,0.0,100.0,9.089166667,0.193166667,238.09077733333334 -2016-05-13 04:00:00,0.0,995.7591389,1.155916667,100.0,8.340583333,0.16075,238.09145316666664 -2016-05-13 05:00:00,0.0,996.0290277999999,25.59416667,100.0,9.204166667,0.16699999999999998,238.09027043333333 -2016-05-13 06:00:00,0.0,996.4532222000001,64.035,99.99166667,11.07916667,0.135333333,238.09027043333336 -2016-05-13 07:00:00,0.0,996.7932777999999,144.925,91.475,14.75333333,1.311083333,238.08739806666668 -2016-05-13 08:00:00,0.0,996.9774167000002,189.0083333,78.305,16.5325,1.4985,238.08621530000005 -2016-05-13 09:00:00,0.0,997.15,384.71666669999996,69.85583333,18.435,2.011583333,238.0821602 -2016-05-13 10:00:00,0.0,997.2274167000002,522.5666666999999,66.47333333,19.66333333,2.277583333,238.08148433333335 -2016-05-13 11:00:00,0.0,997.2626389000001,640.425,64.77916667,20.61583333,3.677083333,238.07709128333332 -2016-05-13 12:00:00,0.0,997.0916667000001,441.9333333000001,63.95833333,20.92166667,4.306166667,238.07692233333333 -2016-05-13 13:00:00,0.0,996.85,330.6916667,62.80166667,20.6125,3.758333333,238.0764154333333 -2016-05-13 14:00:00,0.0,997.3080556,199.2583333,69.72666667,19.7325,2.9773333330000002,238.0769223 -2016-05-13 15:00:00,2.481989304,997.6916667000002,97.62333333,78.85083333,17.67416667,1.6485833330000002,238.07624646666667 -2016-05-13 16:00:00,5.115790344,997.8567222000001,63.81,85.185,16.55083333,1.26225,238.07996365 -2016-05-13 17:00:00,2.73107808,998.0290277999999,47.52166667,95.50833333,15.5875,0.9311666670000001,238.0811464 -2016-05-13 18:00:00,0.0,998.5381667000001,70.5825,97.16666667,15.72083333,0.571666667,238.0804705666667 -2016-05-13 19:00:00,0.0,999.1706944,65.42916667,91.55833333,16.02166667,0.425416667,238.08013263333336 -2016-05-13 20:00:00,0.0,999.6465,1.799916667,98.30833333,13.6125,0.41633333299999997,238.08300498333335 -2016-05-13 21:00:00,0.0,1000.229028,0.0,100.0,11.79,0.169583333,238.08520153333336 -2016-05-13 22:00:00,0.0,1000.577417,0.0,100.0,10.26333333,0.151416667,238.08587740000004 -2016-05-13 23:00:00,0.0,1000.877417,0.0,100.0,9.498333333,0.15575,238.08621531666668 -2016-05-14 00:00:00,0.0,1001.1841390000001,0.0,100.0,8.89,0.24508333300000001,238.08858080000002 -2016-05-14 01:00:00,0.0,1001.1991939999999,0.0,100.0,7.776333332999999,0.14800000000000002,238.08908768333336 -2016-05-14 02:00:00,0.0,1001.38225,0.0,100.0,6.604916667,0.26375,238.08925663333335 -2016-05-14 03:00:00,0.0,1002.052417,0.0,100.0,7.050666667000001,0.134583333,238.0890876666667 -2016-05-14 04:00:00,0.0,1002.6814439999999,1.373833333,100.0,8.410083333,1.21625,238.08604635000003 -2016-05-14 05:00:00,0.0,1003.648917,27.98583333,98.96666667,8.78,1.46875,238.0843567166667 -2016-05-14 06:00:00,0.0,1004.6330550000001,49.05583333,91.7,8.17075,1.200583333,238.08199123333335 -2016-05-14 07:00:00,3.5809553519999997,1005.2965,126.53333329999998,86.43333333,8.410833333,2.838,238.08283604999997 -2016-05-14 08:00:00,0.0,1005.7682779999999,154.91666669999998,82.70833333,8.7525,3.166583333,238.08283603333334 -2016-05-14 09:00:00,0.0,1006.019889,249.4083333,76.01666667,9.395833332999999,2.6475,238.08182226666668 -2016-05-14 10:00:00,0.0,1006.4373609999999,436.24166669999994,64.81666667,10.56083333,3.4410000000000003,238.08182226666668 -2016-05-14 11:00:00,0.0,1006.870694,591.1666667000001,57.97,11.115,3.87275,238.08097745 -2016-05-14 12:00:00,0.0,1007.1591390000001,665.4666667,53.88666667,11.87,3.693083333,238.0787809 -2016-05-14 13:00:00,0.0,1007.3932779999999,423.95833330000005,52.18416667,11.75166667,4.267166667,238.07742921666667 -2016-05-14 14:00:00,0.0,1007.63575,499.15,51.29916667,11.48916667,3.745083333,238.07742919999998 -2016-05-14 15:00:00,0.0,1007.716667,280.5583333,50.09416667,11.63666667,3.55075,238.07590854999998 -2016-05-14 16:00:00,0.0,1007.944083,107.89583329999999,56.265,10.97666667,3.7475,238.07675335000002 -2016-05-14 17:00:00,0.0,1008.254833,109.50833329999999,59.2025,10.70916667,2.169083333,238.07557063333329 -2016-05-14 18:00:00,0.0,1008.854028,49.98416667,60.08833333,10.14416667,2.64525,238.07641543333332 -2016-05-14 19:00:00,0.0,1009.227417,25.27033333,65.39,9.399166667000001,2.0118333330000002,238.07675336666662 -2016-05-14 20:00:00,0.0,1009.7873609999999,1.009666667,67.45583333,8.675833333,2.6675,238.07726025 -2016-05-14 21:00:00,0.0,1010.50725,0.0,71.96583333,7.41975,1.1935,238.07810505 -2016-05-14 22:00:00,0.0,1010.919083,0.0,76.48666667,6.166666667,1.008416667,238.08030158333335 -2016-05-14 23:00:00,0.0,1011.388167,0.0,80.0475,5.39175,0.649166667,238.0797947 -2016-05-15 00:00:00,0.0,1012.01075,0.0,84.51666667,4.382916667,0.432333333,238.08013261666665 -2016-05-15 01:00:00,0.0,1012.1099439999999,0.0,92.54166667,3.17725,0.303333333,238.08114641666666 -2016-05-15 02:00:00,0.0,1012.369083,0.0,91.75,3.531583333,0.501416667,238.08148434999998 -2016-05-15 03:00:00,0.0,1012.693278,0.0,91.35,4.8005,0.682583333,238.07979469999995 -2016-05-15 04:00:00,0.0,1012.858333,2.3456666669999997,93.11666667,4.3244166669999995,0.666166667,238.08063951666668 -2016-05-15 05:00:00,0.0,1013.0698890000001,22.77166667,91.88333333,4.754,0.631916667,238.08080846666664 -2016-05-15 06:00:00,0.0,1013.656444,55.28666667,92.15833333,5.683333332999999,0.71375,238.07894986666668 -2016-05-15 07:00:00,0.0,1014.091667,191.9833333,87.80833333,6.70325,0.910333333,238.07793608333336 -2016-05-15 08:00:00,0.0,1014.4290279999999,158.93333330000002,82.22916667,7.5221666670000005,1.39475,238.07776715 -2016-05-15 09:00:00,0.0,1014.594083,413.9166667,72.97166667,8.240583333,2.4785,238.07557061666668 -2016-05-15 10:00:00,0.0,1014.7317220000001,429.21666669999996,70.7875,8.21625,2.795833333,238.07320513333332 -2016-05-15 11:00:00,0.0,1014.625,415.25,66.89166667,9.458333332999999,2.313416667,238.07320513333335 -2016-05-15 12:00:00,0.0,1014.532528,511.8916666999999,61.59916667,10.44083333,2.0106666669999997,238.07100861666666 -2016-05-15 13:00:00,0.0,1014.4067220000001,481.09166669999996,56.58583333,10.86666667,3.3079166669999998,238.0694879333333 -2016-05-15 14:00:00,0.0,1014.479028,352.475,56.46916667,11.56666667,2.913583333,238.06948793333333 -2016-05-15 15:00:00,0.0,1014.46425,189.0141667,59.65,10.81166667,1.8459999999999999,238.06965691666664 -2016-05-15 16:00:00,0.0,1014.41425,160.45,60.54666667,10.5675,1.915,238.07067068333333 -2016-05-15 17:00:00,0.0,1014.225,107.685,59.16,10.50583333,1.5230833330000002,238.07236033333334 -2016-05-15 18:00:00,0.0,1014.275,50.72583333,59.62416667,9.760833332999999,1.739,238.07117756666665 -2016-05-15 19:00:00,0.0,1014.563167,26.46666667,66.62666667,9.018333333,0.11916666699999999,238.07219133333334 -2016-05-15 20:00:00,0.0,1014.834139,1.8186666669999998,70.16333333,7.081333333,0.08625,238.07388096666662 -2016-05-15 21:00:00,0.0,1015.077417,0.0,75.59666667,6.504666667,0.211416667,238.07472579999998 -2016-05-15 22:00:00,0.0,1015.345694,0.0,78.42416667,5.457999999999999,0.07200000000000001,238.07472579999998 -2016-05-15 23:00:00,0.0,1015.716667,0.0,79.1125,6.89775,0.321833333,238.07388096666668 -2016-05-16 00:00:00,0.0,1015.632528,0.0,83.825,5.7675,0.35966666700000005,238.07472579999992 -2016-05-16 01:00:00,0.0,1015.496778,0.0,88.71666667,4.3325833330000005,0.29725,238.0754016666666 -2016-05-16 02:00:00,0.0,1015.4016109999999,0.0,89.39166667,5.0120833330000005,0.11658333300000001,238.07573958333327 -2016-05-16 03:00:00,0.0,1015.222583,0.0,91.13333333,5.332166667,0.137666667,238.07641543333332 -2016-05-16 04:00:00,0.0,1015.1483890000001,0.975,88.7,5.552833333,0.133,238.0764154333333 -2016-05-16 05:00:00,0.0,1015.108333,12.47933333,89.0,5.8415,0.236166667,238.07793611666668 -2016-05-16 06:00:00,0.0,1015.08575,65.62416667,88.66666667,6.2595,0.34683333299999997,238.07878091666666 -2016-05-16 07:00:00,0.0,1015.3198890000001,190.3916667,81.43166667,7.70525,0.828,238.0765843833333 -2016-05-16 08:00:00,0.0,1015.4658609999999,215.2166667,69.24666667,8.87575,1.903416667,238.07573958333333 -2016-05-16 09:00:00,0.0,1015.484139,291.225,63.31583333,9.585,1.9445,238.07354303333332 -2016-05-16 10:00:00,0.0,1015.4051109999999,391.71666669999996,59.21,9.784166667000001,1.758833333,238.07219135 -2016-05-16 11:00:00,0.0,1015.115861,335.3333333,52.62583333,10.43833333,2.243666667,238.0728671833334 -2016-05-16 12:00:00,0.0,1015.041667,367.8,50.55,10.985,2.026916667,238.07219134999994 -2016-05-16 13:00:00,0.0,1015.005917,410.8583333,55.2575,10.95,2.717916667,238.0694879333333 -2016-05-16 14:00:00,0.0,1014.622583,248.8416667,57.3,11.45583333,1.737333333,238.07083965 -2016-05-16 15:00:00,0.0,1014.425,431.175,53.25666667,12.7125,1.734,238.06813623333332 -2016-05-16 16:00:00,0.0,1014.408333,290.9166667,52.3575,12.35583333,2.55325,238.0650949 -2016-05-16 17:00:00,0.0,1014.35,140.625,53.23083333,11.8325,1.7621666669999998,238.06762933333331 -2016-05-16 18:00:00,0.0,1014.3983890000001,69.2375,54.15666667,11.30833333,1.246416667,238.06746035 -2016-05-16 19:00:00,0.0,1014.451611,26.52666667,58.48916667,10.80083333,0.8075,238.0683051833333 -2016-05-16 20:00:00,0.0,1014.8198890000001,1.311916667,69.79833333,8.82,0.154,238.06881206666662 -2016-05-16 21:00:00,0.0,1015.06075,0.0,71.90083333,9.005833333,0.24975,238.07050173333334 -2016-05-16 22:00:00,0.0,1015.217472,0.0,74.94,8.410833333,0.050333333,238.07067068333333 -2016-05-16 23:00:00,0.0,1015.369083,0.0,78.46833333,7.904666667000001,0.23475,238.07151548333331 -2016-05-17 00:00:00,0.0,1015.415055,0.0,84.65,7.306833332999999,0.051166667,238.0730361333333 -2016-05-17 01:00:00,0.0,1015.2376390000001,0.0,89.775,6.0055,0.307333333,238.07303615 -2016-05-17 02:00:00,0.0,1015.025,0.0,84.79166667,6.331583332999999,0.519,238.0742189 -2016-05-17 03:00:00,0.0,1014.83925,0.0,85.15,6.720416667,0.122083333,238.0742189 -2016-05-17 04:00:00,0.0,1014.633333,0.5618333329999999,87.44166667,7.2035,0.412083333,238.07438786666663 -2016-05-17 05:00:00,0.0,1014.4741939999999,11.79766667,85.35833333,7.46,0.379333333,238.07438786666663 -2016-05-17 06:00:00,0.0,1014.5424720000001,39.98166667,83.575,7.94125,0.476416667,238.07371199999997 -2016-05-17 07:00:00,0.0,1014.744083,80.0125,81.75416667,8.6975,0.552083333,238.0725292666667 -2016-05-17 08:00:00,0.0,1014.9016109999999,166.70833330000002,77.9725,9.7825,0.711583333,238.07219133333334 -2016-05-17 09:00:00,0.0,1015.100806,186.6166667,75.81833333,10.615,0.9710833329999999,238.07151548333331 -2016-05-17 10:00:00,0.0,1015.0301109999999,279.4166667,72.79583333,11.55416667,1.0085,238.0699948333333 -2016-05-17 11:00:00,0.0,1014.63925,403.65,66.375,12.95583333,1.6899166669999999,238.0689810333333 -2016-05-17 12:00:00,0.0,1014.38925,458.9833333000001,57.49666667,14.13416667,1.4938333330000002,238.06712244999997 -2016-05-17 13:00:00,0.0,1013.9376390000001,283.9416667,54.42916667,14.135,1.536,238.06746038333333 -2016-05-17 14:00:00,0.0,1013.43925,254.3583333,52.69,14.40083333,1.196083333,238.06627765 -2016-05-17 15:00:00,0.0,1013.31425,300.1916667,50.28333333,14.82333333,1.667583333,238.06492593333334 -2016-05-17 16:00:00,0.0,1012.88925,285.3166667,49.61666667,15.08416667,1.862416667,238.06441903333334 -2016-05-17 17:00:00,0.0,1012.3935560000001,152.1416667,50.36916667,14.93833333,1.19475,238.06391213333333 -2016-05-17 18:00:00,0.0,1011.991667,107.07666670000002,52.8125,14.61083333,1.142916667,238.06577073333332 -2016-05-17 19:00:00,0.0,1011.831722,30.63258333,58.60333333,13.40833333,0.7979999999999999,238.0656018 -2016-05-17 20:00:00,0.0,1011.758333,1.2451666670000001,73.2225,12.79916667,1.187416667,238.06678453333333 -2016-05-17 21:00:00,0.0,1011.943278,0.0,68.34,12.97166667,2.2334166669999997,238.06746035 -2016-05-17 22:00:00,0.0,1011.86425,0.0,74.40583333,12.71166667,1.6128333330000002,238.06695346666666 -2016-05-17 23:00:00,0.0,1011.6483890000001,0.0,83.71583333,10.77166667,0.028416667000000003,238.06881206666665 -2016-05-18 00:00:00,0.0,1011.270972,0.0,83.55333333,9.775,0.041666667000000004,238.06982585 -2016-05-18 01:00:00,0.0,1010.9301109999999,0.0,85.49583333,9.435,0.031333333,238.07016378333333 -2016-05-18 02:00:00,0.0,1010.522583,0.0,77.9325,8.9475,0.15925,238.07050171666663 -2016-05-18 03:00:00,0.0,1009.9943609999999,0.0,89.675,8.73,0.052000000000000005,238.07185343333333 -2016-05-18 04:00:00,0.0,1009.532528,0.87775,95.225,8.435833333,0.021166667000000004,238.0740499333333 -2016-05-18 05:00:00,0.0,1009.4067220000001,11.05075,97.875,8.468333333,0.00025,238.0752326833333 -2016-05-18 06:00:00,0.0,1009.5206939999999,34.4425,96.94166667,9.2475,0.033333333,238.07455683333333 -2016-05-18 07:00:00,0.0,1009.505917,79.71166667,91.58333333,10.58666667,0.167333333,238.0725292666667 -2016-05-18 08:00:00,0.0,1009.340056,109.49166670000001,86.13333333,12.05833333,0.318333333,238.0725292666667 -2016-05-18 09:00:00,0.0,1009.122583,267.96666669999996,80.93833333,13.86416667,0.564333333,238.07185341666664 -2016-05-18 10:00:00,2.7214044960000003,1008.7884439999999,314.4416667,66.4325,15.89916667,1.32675,238.0699948333333 -2016-05-18 11:00:00,0.0,1008.118556,478.08333330000005,57.30166667,17.15083333,2.054916667,238.06898103333333 -2016-05-18 12:00:00,0.0,1007.554306,369.475,52.53166667,17.11416667,2.10075,238.00105779999998 -2016-05-18 13:00:00,0.0,1006.895167,386.8583333,54.4675,17.53833333,2.0725833330000003,237.9093107 -2016-05-18 14:00:00,0.0,1006.412639,180.45833330000002,55.7625,17.15583333,1.555333333,237.91066239999998 -2016-05-18 15:00:00,0.0,1005.8967779999999,215.35,56.76416667,17.52333333,1.4205833330000002,237.91268995 -2016-05-18 16:00:00,0.0,1005.258611,278.55,54.15083333,18.08916667,1.95525,237.90964861666666 -2016-05-18 17:00:00,0.0,1004.4435560000001,165.2166667,52.41083333,18.06166667,1.698166667,237.91015548333328 -2016-05-18 18:00:00,0.0,1003.686833,80.71583333,57.525,16.74833333,0.9914166670000001,237.91235203333335 -2016-05-18 19:00:00,0.0,1003.13925,19.2845,74.12416667,14.0675,0.19075,237.91556233333333 -2016-05-18 20:00:00,0.0,1003.11075,0.715833333,85.75833333,12.83666667,0.21525,237.91944848333333 -2016-05-18 21:00:00,0.0,1003.345167,0.0,86.72083333,13.30916667,0.881083333,237.92468638333332 -2016-05-18 22:00:00,0.0,1002.840056,0.0,97.375,11.92583333,0.274166667,237.9272208 -2016-05-18 23:00:00,0.0,1002.472583,0.0,99.73333333,11.13916667,0.1525,237.92941733333336 -2016-05-19 00:00:00,0.0,1002.1634439999999,0.0,100.0,10.38333333,0.12666666699999998,237.9324586666667 -2016-05-19 01:00:00,0.0,1001.883333,0.0,100.0,10.1375,0.198083333,237.93482415000003 -2016-05-19 02:00:00,0.0,1001.6916669999999,0.0,100.0,9.996666667000001,0.0435,237.93566898333336 -2016-05-19 03:00:00,4.8482770319999995,1002.0258060000001,0.0,100.0,10.27166667,0.209,237.93566898333336 -2016-05-19 04:00:00,7.215068304,1002.320694,0.42866666700000006,100.0,10.43666667,0.124583333,237.9373586 -2016-05-19 05:00:00,9.752347512,1002.889778,14.517999999999999,100.0,10.59416667,0.12616666699999998,237.93651378333334 -2016-05-19 06:00:00,2.4050227680000003,1003.673917,40.66833333,99.95833333,11.21,0.068416667,237.93499313333336 -2016-05-19 07:00:00,0.0,1004.5623609999999,46.025,97.71666667,11.1375,0.46766666700000004,237.93583795000004 -2016-05-19 08:00:00,2.476563288,1005.292194,124.79166670000001,96.36666667,11.63833333,0.541416667,237.93685170000003 -2016-05-19 09:00:00,0.0,1006.173917,197.2416667,91.875,12.8175,1.214916667,237.93718963333336 -2016-05-19 10:00:00,0.0,1007.123111,370.8666667,84.81666667,13.97333333,1.204416667,237.93127590000003 -2016-05-19 11:00:00,0.0,1007.8215,625.65,78.4425,14.79916667,1.340833333,237.92806563333332 -2016-05-19 12:00:00,0.0,1008.144889,742.1416667000001,66.76666667,15.59583333,1.828416667,237.9258691 -2016-05-19 13:00:00,0.0,1008.4766109999999,624.3666667,59.82666667,17.15166667,1.3786666669999998,237.92113811666664 -2016-05-19 14:00:00,0.0,1008.4658609999999,418.575,57.70666667,18.20916667,1.315166667,237.9235036 -2016-05-19 15:00:00,0.0,1008.844083,451.775,51.95333333,18.57083333,1.455,237.91944851666665 -2016-05-19 16:00:00,0.0,1008.992472,117.9,57.10916667,18.775,1.124,237.9213070833333 -2016-05-19 17:00:00,0.0,1009.3481109999999,86.76833333,58.27416667,17.29,0.9115,237.92282776666661 -2016-05-19 18:00:00,0.0,1010.1505279999999,58.1325,58.60416667,16.75583333,0.589833333,237.92316569999994 -2016-05-19 19:00:00,0.0,1010.879028,28.07833333,74.46416667,15.73166667,0.225583333,237.9226588 -2016-05-19 20:00:00,0.0,1011.680639,2.2926666669999998,89.90833333,12.0025,0.15891666699999998,237.92485530000002 -2016-05-19 21:00:00,0.0,1012.3532220000001,0.0,95.475,8.914916667,0.24708333300000002,237.92570013333332 -2016-05-19 22:00:00,0.0,1012.6591390000001,0.0,98.49166667,7.318583332999999,0.092833333,237.9277277 -2016-05-19 23:00:00,0.0,1012.716667,0.0,99.775,6.191583333,0.015916667,237.92722081666662 -2016-05-20 00:00:00,0.0,1013.248111,0.0,90.575,5.38025,0.032,237.92637599999998 -2016-05-20 01:00:00,0.0,1013.500806,0.0,92.63333333,4.9408333330000005,0.057416667000000005,237.92417946666663 -2016-05-20 02:00:00,0.0,1013.6908609999999,0.0,92.425,4.857916667,0.168583333,237.92215191666665 -2016-05-20 03:00:00,0.0,1013.2650560000001,0.0,97.75,5.35475,0.178833333,237.92401053333333 -2016-05-20 04:00:00,0.0,1013.9330560000001,1.9904166669999999,99.99166667,5.0315,0.11125,237.92248985 -2016-05-20 05:00:00,0.0,1014.2758060000001,41.96125,100.0,4.407416667,0.05,237.9221519 -2016-05-20 06:00:00,0.0,1014.6981109999999,151.8458333,94.175,8.431916667000001,0.29183333300000003,237.91944849999996 -2016-05-20 07:00:00,0.0,1015.1317220000001,275.8916667,79.24083333,11.74666667,1.133416667,237.91674509999999 -2016-05-20 08:00:00,0.0,1015.18575,163.5916667,74.31416667,14.7525,1.0765833329999999,237.91556233333333 -2016-05-20 09:00:00,0.0,1015.275,394.4166667,71.39666667,16.37416667,1.296333333,237.91353476666666 -2016-05-20 10:00:00,0.0,1015.233333,469.95,69.11166667,17.07333333,1.6879166669999999,237.91116929999998 -2016-05-20 11:00:00,0.0,1014.9491939999999,300.6833333,67.61166667,17.10166667,1.276916667,237.91218308333336 -2016-05-20 12:00:00,0.0,1014.9817220000001,562.6,62.22416667,18.2725,1.746583333,237.90762106666668 -2016-05-20 13:00:00,0.0,1014.891667,460.20833330000005,58.91583333,19.04666667,1.36475,237.90474868333334 -2016-05-20 14:00:00,0.0,1015.0016109999999,165.075,64.12416667,17.975,1.247833333,237.90356595 -2016-05-20 15:00:00,0.0,1015.0233890000001,218.7833333,69.95083333,17.42166667,1.16425,237.90525555 -2016-05-20 16:00:00,0.0,1014.925,254.525,68.87166667,17.49583333,1.373083333,237.9039038666667 -2016-05-20 17:00:00,0.0,1014.774194,112.74,69.65666667,17.125,1.442166667,237.90407283333334 -2016-05-20 18:00:00,0.0,1014.665056,70.35083333,71.66083333,16.945,0.79025,237.9050866 -2016-05-20 19:00:00,0.0,1014.7266109999999,28.0075,80.68333333,15.6875,0.75325,237.90542451666667 -2016-05-20 20:00:00,0.0,1014.959945,2.071916667,88.125,14.6325,0.6104166670000001,237.90677623333332 -2016-05-20 21:00:00,0.0,1015.0491939999999,0.0,91.28333333,13.79583333,0.08,237.90779003333333 -2016-05-20 22:00:00,0.0,1015.0758060000001,0.0,92.00833333,12.58,0.075416667,237.90762106666668 -2016-05-20 23:00:00,0.0,1015.084139,0.0,97.175,10.6275,0.179416667,237.907959 -2016-05-21 00:00:00,0.0,1015.075,0.0,89.66666667,10.5225,0.070416667,237.90779003333333 -2016-05-21 01:00:00,0.0,1014.811833,0.0,96.45833333,9.069166667000001,0.052833332999999996,237.90998654999996 -2016-05-21 02:00:00,0.0,1014.347583,0.0,100.0,8.825833333,0.138333333,237.91235203333335 -2016-05-21 03:00:00,0.0,1014.13575,0.0,100.0,9.305833332999999,0.0275,237.91268996666665 -2016-05-21 04:00:00,0.0,1014.305917,2.980666667,100.0,9.3425,0.139083333,237.91302786666665 -2016-05-21 05:00:00,0.0,1014.369083,36.7375,100.0,9.296666667,0.168083333,237.91268995 -2016-05-21 06:00:00,0.0,1014.592472,67.14,100.0,11.34083333,0.15341666699999998,237.91116926666663 -2016-05-21 07:00:00,0.0,1014.633333,223.85,89.625,14.62916667,0.631916667,237.91032444999996 -2016-05-21 08:00:00,0.0,1014.658333,220.7333333,80.1775,16.73083333,1.3799166669999998,237.9084659 -2016-05-21 09:00:00,0.0,1014.43925,306.3666667,76.0025,17.91416667,1.054833333,237.9069452 -2016-05-21 10:00:00,0.0,1014.1467779999999,346.2583333,72.49833333,18.585,0.797333333,237.90441075 -2016-05-21 11:00:00,0.0,1013.681722,406.175,68.03166667,19.61583333,1.8879166669999998,237.9025521666667 -2016-05-21 12:00:00,0.0,1013.5067220000001,321.6916667,65.3075,19.98,1.561083333,237.90103148333333 -2016-05-21 13:00:00,0.0,1013.3217779999999,551.25,60.7725,20.70583333,1.8945,237.89731430000003 -2016-05-21 14:00:00,0.0,1013.0459720000001,593.875,55.72666667,21.3925,1.93175,237.89494883333336 -2016-05-21 15:00:00,0.0,1012.505917,520.7416667,52.8775,22.6,2.27575,237.89376608333336 -2016-05-21 16:00:00,0.0,1011.843556,349.475,54.85333333,22.35916667,1.7725,237.8935971166666 -2016-05-21 17:00:00,0.0,1011.3575279999999,243.1583333,56.86416667,21.89166667,2.152166667,237.89376608333336 -2016-05-21 18:00:00,0.0,1011.1483890000001,119.04666670000002,59.57083333,21.45416667,1.4925,237.8934281666666 -2016-05-21 19:00:00,0.0,1010.9793050000001,25.71083333,78.22833333,17.47916667,0.195083333,237.8956246666667 -2016-05-21 20:00:00,0.0,1010.801611,1.968833333,91.475,13.2825,0.130333333,237.9000177 -2016-05-21 21:00:00,0.0,1010.654306,0.0,95.71666667,11.76916667,0.266916667,237.90356595000003 -2016-05-21 22:00:00,0.0,1010.346778,0.0,99.53333333,10.10083333,0.091083333,237.90677623333332 -2016-05-21 23:00:00,0.0,1009.7193609999999,0.0,100.0,9.830833333,0.09225,237.90931071666668 -2016-05-22 00:00:00,0.0,1008.826083,0.0,100.0,9.590833332999999,0.047916667,237.9104934333333 -2016-05-22 01:00:00,0.0,1007.9268890000001,0.0,100.0,8.878333332999999,0.10541666699999999,237.91268996666665 -2016-05-22 02:00:00,0.0,1007.390861,0.0,100.0,8.084833332999999,0.08558333300000001,237.91268996666668 -2016-05-22 03:00:00,0.0,1007.270972,0.0,100.0,7.734833332999999,0.1255,237.91336583333336 -2016-05-22 04:00:00,0.0,1006.736833,2.86225,100.0,7.268833333,0.12125,237.91590023333333 -2016-05-22 05:00:00,0.0,1006.467472,58.61416667,100.0,8.334583333,0.026666667,237.91539336666665 -2016-05-22 06:00:00,0.0,1006.274194,149.47916669999998,97.85,11.4025,0.318083333,237.91218306666667 -2016-05-22 07:00:00,0.0,1006.255917,261.3716667,82.93166667,17.18583333,2.444833333,237.91184513333334 -2016-05-22 08:00:00,0.0,1005.8293060000001,201.55833330000002,68.29166667,19.12166667,2.141833333,237.91015549999997 -2016-05-22 09:00:00,0.0,1005.505917,371.1083333,64.67083333,20.99,1.681583333,237.90762105 -2016-05-22 10:00:00,0.0,1005.030917,541.8,62.30833333,23.28166667,2.8405,237.90339698333332 -2016-05-22 11:00:00,0.0,1005.05,684.325,58.12416667,24.67833333,2.10425,237.90001771666667 -2016-05-22 12:00:00,0.0,1004.997583,520.1,55.16083333,24.80916667,1.43625,237.89579363333334 -2016-05-22 13:00:00,0.0,1004.33925,514.1083333,54.5675,25.00083333,1.69075,237.89444191666664 -2016-05-22 14:00:00,0.0,1004.052694,395.4333333,52.95,24.5725,2.1135,237.8908936833333 -2016-05-22 15:00:00,0.0,1003.6916669999999,225.9083333,54.59666667,24.41333333,1.8771666669999998,237.89072474999998 -2016-05-22 16:00:00,0.0,1003.9540279999999,66.75166667,51.80416667,23.53916667,3.160166667,237.88852821666663 -2016-05-22 17:00:00,0.0,1004.252417,57.55666667,53.5125,21.79083333,2.7334166669999997,237.8863316833333 -2016-05-22 18:00:00,6.119775504,1004.8064439999999,17.6075,69.3475,18.72666667,2.05075,237.88295241666665 -2016-05-22 19:00:00,2.45280444,1005.01425,10.74516667,78.42416667,16.31666667,0.782416667,237.88413515000002 -2016-05-22 20:00:00,0.0,1005.113167,0.841166667,74.1875,15.42416667,0.46866666700000004,237.8853179 -2016-05-22 21:00:00,0.0,1005.7349439999999,0.0,65.135,15.89916667,0.49700000000000005,237.8865006333333 -2016-05-22 22:00:00,18.13754899,1005.633333,0.0,81.22833333,14.7475,0.8290833329999999,237.88582476666667 -2016-05-22 23:00:00,18.03470628,1005.5959720000001,0.0,96.80833333,13.82666667,0.6958333329999999,237.88785235 -2016-05-23 00:00:00,5.294237328,1005.612361,0.0,100.0,13.44666667,0.937583333,237.88835925 -2016-05-23 01:00:00,5.595432912000001,1005.4026949999999,0.0,100.0,13.3775,1.336666667,237.88937303333333 -2016-05-23 02:00:00,0.0,1005.0741939999999,0.0,99.65833333,12.89833333,0.7565,237.88886614999998 -2016-05-23 03:00:00,0.0,1004.8209720000001,0.0,98.09166667,12.785,0.537083333,237.49501260000002 -2016-05-23 04:00:00,2.54905884,1004.9465,1.132416667,97.925,12.57083333,0.506083333,237.29681860000002 -2016-05-23 05:00:00,11.11010402,1005.16075,13.62733333,98.83333333,12.68916667,0.988583333,237.29766341666667 -2016-05-23 06:00:00,3.0623572560000003,1005.794889,52.02333333,98.34166667,12.68916667,1.891583333,237.29681861666668 -2016-05-23 07:00:00,0.0,1006.2465,136.975,95.23333333,13.21,1.9231666669999998,237.29766341666667 -2016-05-23 08:00:00,0.0,1006.375,228.8583333,91.80833333,13.82333333,1.8884166669999998,237.29867720000001 -2016-05-23 09:00:00,0.0,1006.477417,158.04166669999998,89.30833333,14.185,1.035,237.29850825000003 -2016-05-23 10:00:00,0.0,1006.669083,218.25,86.51666667,14.7625,1.087583333,237.29800133333333 -2016-05-23 11:00:00,0.0,1007.219083,239.115,82.89,14.98666667,1.051583333,237.29732548333334 -2016-05-23 12:00:00,0.0,1007.419083,200.2225,81.70916667,14.92333333,0.968666667,237.29681858333333 -2016-05-23 13:00:00,0.0,1007.625,244.3666667,77.85583333,15.80416667,0.9125833329999999,237.29529795 -2016-05-23 14:00:00,0.0,1007.540861,410.78333330000004,71.9375,16.47333333,1.3461666669999999,237.29276348333335 -2016-05-23 15:00:00,2.753525232,1007.391667,243.9916667,75.53666667,15.71,1.2365,237.29462209999997 -2016-05-23 16:00:00,0.0,1007.4983890000001,245.04166669999998,77.8275,15.6125,1.18725,237.29377726666667 -2016-05-23 17:00:00,0.0,1007.5932779999999,114.4875,83.38333333,14.80833333,0.9338333329999999,237.2936083 -2016-05-23 18:00:00,0.0,1007.7032220000001,42.7075,87.03333333,13.90583333,0.835916667,237.2941152 -2016-05-23 19:00:00,0.0,1008.0532220000001,19.05258333,88.70833333,13.34666667,0.9335,237.2949600166667 -2016-05-23 20:00:00,0.0,1008.319083,3.49425,92.175,12.825,0.812,237.29614275000003 -2016-05-23 21:00:00,0.0,1008.6916669999999,0.0,92.74166667,12.54,0.755833333,237.29631171666668 -2016-05-23 22:00:00,0.0,1008.6782220000001,0.0,93.65833333,12.2975,0.7415,237.29664965000003 -2016-05-23 23:00:00,0.0,1008.595167,0.0,94.20833333,12.11083333,0.8705,237.29952203333335 -2016-05-24 00:00:00,0.0,1008.6540279999999,0.0,93.01666667,12.11333333,1.301416667,237.29884616666666 -2016-05-24 01:00:00,0.0,1008.9333330000001,0.0,90.90833333,12.065,1.31125,237.29985996666667 -2016-05-24 02:00:00,0.0,1008.922583,0.0,90.39166667,11.96833333,1.5075833330000001,237.29918410000002 -2016-05-24 03:00:00,0.0,1008.744083,0.0,89.20833333,11.81083333,1.8928333330000002,237.29985996666667 -2016-05-24 04:00:00,0.0,1008.952417,0.29541666699999997,89.70833333,11.69416667,1.6520833330000002,237.2981703 -2016-05-24 05:00:00,0.0,1009.134139,5.61175,92.86666667,10.98333333,0.9923333329999999,237.3005358 -2016-05-24 06:00:00,0.0,1009.495694,18.205,89.825,11.26666667,1.4224166669999998,237.30070478333334 -2016-05-24 07:00:00,0.0,1009.962361,24.55916667,88.75,11.37166667,2.043583333,237.30019788333337 -2016-05-24 08:00:00,5.505201767999999,1010.2233890000001,34.37,90.64166667,11.00416667,1.254166667,237.30138063333337 -2016-05-24 09:00:00,11.09541067,1010.227417,79.14583333,93.65833333,10.7125,1.3555,237.3020564666667 -2016-05-24 10:00:00,12.0560274,1010.569083,115.5,94.35833333,10.91666667,1.8833333330000002,237.3017185333334 -2016-05-24 11:00:00,11.11482511,1010.827417,147.55833330000002,96.5,11.28,1.228083333,237.3007047666667 -2016-05-24 12:00:00,2.7383920560000004,1011.0,183.6583333,95.725,11.76333333,1.661,237.30053581666667 -2016-05-24 13:00:00,0.0,1010.9575279999999,156.8,94.30833333,11.5625,1.5819999999999999,237.30188750000002 -2016-05-24 14:00:00,0.0,1010.967472,141.6,94.04166667,11.6625,1.517166667,237.30154958333335 -2016-05-24 15:00:00,0.0,1011.033333,156.1083333,92.475,11.73416667,1.4869999999999999,237.30070478333337 -2016-05-24 16:00:00,0.0,1010.947583,119.91666670000001,92.44166667,11.8475,1.587,237.30070478333334 -2016-05-24 17:00:00,0.0,1010.83575,99.3525,90.65833333,11.61583333,1.229083333,237.30138060000002 -2016-05-24 18:00:00,0.0,1010.95,39.29166667,91.09166667,11.5425,0.989666667,237.3032392166667 -2016-05-24 19:00:00,0.0,1011.008333,15.60033333,95.14166667,11.35833333,0.29375,237.30628055 -2016-05-24 20:00:00,0.0,1011.201611,1.5336666669999999,95.325,10.735,0.227833333,237.3074632833333 -2016-05-24 21:00:00,0.0,1011.2317220000001,0.0,99.16666667,10.36833333,0.15433333300000002,237.3074633 -2016-05-24 22:00:00,0.0,1011.15,0.0,100.0,10.1425,0.12166666699999999,237.30712534999998 -2016-05-24 23:00:00,0.0,1010.9241939999999,0.0,100.0,9.931666667,0.053166667,237.3079701833333 -2016-05-25 00:00:00,0.0,1011.0016109999999,0.0,100.0,9.8125,0.15075,237.3093219 -2016-05-25 01:00:00,0.0,1011.073389,0.0,100.0,9.921666667,0.175416667,237.3091529333333 -2016-05-25 02:00:00,0.0,1010.91425,0.0,100.0,9.835833333,0.047666667,237.3074632833333 -2016-05-25 03:00:00,0.0,1010.5317220000001,0.0,100.0,9.496666667000001,0.20875,237.30763224999998 -2016-05-25 04:00:00,0.0,1010.5666669999999,3.8231666669999997,100.0,8.485833332999999,0.06483333299999999,237.3069564 -2016-05-25 05:00:00,0.0,1010.434944,39.45666667,100.0,8.69,0.17025,237.3091529333333 -2016-05-25 06:00:00,0.0,1010.9965,80.30416667,100.0,9.303333333,0.29875,237.3062805666667 -2016-05-25 07:00:00,0.0,1011.4206939999999,100.7716667,99.01666667,10.62333333,0.44141666700000004,237.3050978166667 -2016-05-25 08:00:00,0.0,1011.6150560000001,157.20833330000002,93.65833333,11.52916667,0.535333333,237.30526678333334 -2016-05-25 09:00:00,0.0,1011.6182779999999,256.3,83.10166667,12.6425,0.655083333,237.30509781666663 -2016-05-25 10:00:00,0.0,1011.4983890000001,300.9916667,78.69333333,13.51833333,1.0275,237.30340818333335 -2016-05-25 11:00:00,0.0,1011.4333330000001,386.3833333,75.7575,14.31166667,0.8190000000000001,237.30307025000002 -2016-05-25 12:00:00,0.0,1011.2785,222.85,80.2125,14.59833333,1.19175,237.3039150666667 -2016-05-25 13:00:00,0.0,1011.041667,243.3833333,76.59,14.94916667,1.142333333,237.3027323166667 -2016-05-25 14:00:00,0.0,1010.9508060000001,180.5916667,81.425,14.74916667,1.4575,237.3032392166667 -2016-05-25 15:00:00,0.0,1010.958333,117.05,81.65,15.06833333,1.350583333,237.30256335 -2016-05-25 16:00:00,0.0,1010.9008060000001,90.585,83.69166667,14.59666667,1.5234166669999998,237.3037461 -2016-05-25 17:00:00,0.0,1010.9325279999999,61.03666667,85.75833333,14.57083333,1.257333333,237.30239436666668 -2016-05-25 18:00:00,0.0,1010.959139,49.9825,86.10833333,14.39666667,1.1075,237.30053583333336 -2016-05-25 19:00:00,0.0,1011.1591390000001,16.08316667,90.85833333,13.87666667,0.46283333299999996,237.30222543333335 -2016-05-25 20:00:00,0.0,1011.4465,1.9285833330000002,96.75833333,13.03083333,0.022583332999999997,237.30340816666669 -2016-05-25 21:00:00,0.0,1011.85,0.0,99.66666667,11.46833333,0.073416667,237.30290128333334 -2016-05-25 22:00:00,0.0,1011.9333330000001,0.0,100.0,9.800833333,0.070333333,237.30442196666664 -2016-05-25 23:00:00,0.0,1012.0266109999999,0.0,100.0,8.438416667,0.137916667,237.30492884999998 -2016-05-26 00:00:00,0.0,1012.027417,0.0,100.0,6.4924166670000005,0.090833333,237.3067874333333 -2016-05-26 01:00:00,0.0,1012.0876390000001,0.0,100.0,5.56875,0.05875,237.3052668 -2016-05-26 02:00:00,0.0,1011.943278,0.0,100.0,5.0345833330000005,0.1065,237.30695641666668 -2016-05-26 03:00:00,0.0,1011.992472,0.0,100.0,4.483666667,0.048083333,237.30763226666667 -2016-05-26 04:00:00,0.0,1012.125,3.1726666669999997,100.0,3.97025,0.05125,237.3086460333333 -2016-05-26 05:00:00,0.0,1012.36075,48.24666667,100.0,5.123666667,0.010916667,237.30881499999998 -2016-05-26 06:00:00,0.0,1012.6706949999999,172.2666667,97.86666667,7.152083332999999,0.166333333,237.30611158333332 -2016-05-26 07:00:00,0.0,1013.087361,256.3833333,94.81666667,9.085833333,0.35675,237.30391506666663 -2016-05-26 08:00:00,0.0,1013.334139,135.9083333,87.25,11.36166667,0.72325,237.30138065000003 -2016-05-26 09:00:00,0.0,1013.28925,422.55,82.08333333,15.72166667,0.833,237.29800135000002 -2016-05-26 10:00:00,0.0,1013.105917,548.6916667,73.09583333,18.0925,1.082333333,237.29614278333335 -2016-05-26 11:00:00,0.0,1012.874194,682.125,65.7975,19.10416667,1.0490000000000002,237.29445313333335 -2016-05-26 12:00:00,0.0,1012.6150560000001,739.9583332999999,58.4775,19.8875,0.92975,237.2915807333333 -2016-05-26 13:00:00,0.0,1012.3884439999999,596.6,51.85916667,20.58416667,1.261666667,237.28820148333338 -2016-05-26 14:00:00,0.0,1011.9817220000001,428.1833333000001,54.72333333,21.54166667,1.691416667,237.2903980333333 -2016-05-26 15:00:00,0.0,1011.735222,450.5166666999999,51.6975,21.93583333,1.97825,237.28668080000003 -2016-05-26 16:00:00,0.0,1011.2075279999999,333.8583333,56.73083333,21.65583333,1.799833333,237.2876945666667 -2016-05-26 17:00:00,0.0,1011.1150560000001,209.475,58.3275,21.67083333,1.3494166669999998,237.28617393333332 -2016-05-26 18:00:00,0.0,1010.673389,81.39833333,62.2675,20.19666667,1.283666667,237.28837045 -2016-05-26 19:00:00,0.0,1010.7766109999999,43.75916667,83.84833333,17.31,0.6044166670000001,237.28887733333332 -2016-05-26 20:00:00,0.0,1010.944083,3.7585,94.425,13.475,0.134333333,237.29141178333336 -2016-05-26 21:00:00,0.0,1011.1349439999999,0.0,98.11666667,11.70583333,0.168916667,237.2942841666667 -2016-05-26 22:00:00,0.0,1011.133333,0.0,99.01666667,11.73833333,0.169583333,237.29529793333327 -2016-05-26 23:00:00,0.0,1011.313444,0.0,99.94166667,10.87,0.18408333300000002,237.29529793333333 -2016-05-27 00:00:00,0.0,1010.6825279999999,0.0,99.9,11.82333333,0.38191666700000004,237.29580483333334 -2016-05-27 01:00:00,0.0,1010.73925,0.0,99.60833333,12.30166667,0.173166667,237.29698758333336 -2016-05-27 02:00:00,0.0,1010.8147779999999,0.0,100.0,12.10916667,0.24558333300000001,237.29580483333334 -2016-05-27 03:00:00,33.75560777,1011.886556,0.0,99.96666667,12.60583333,0.08508333300000001,237.29631173333337 -2016-05-27 04:00:00,65.59159882,1011.625,0.169083333,100.0,12.40416667,0.24575,237.29664965000003 -2016-05-27 05:00:00,24.31223467,1011.841667,7.36075,100.0,12.37166667,0.141333333,237.29918408333333 -2016-05-27 06:00:00,24.10429222,1011.9682779999999,13.55416667,100.0,12.50833333,0.092,237.30138065000006 -2016-05-27 07:00:00,14.66443222,1012.000806,43.77083333,100.0,12.84583333,0.225,237.30391506666663 -2016-05-27 08:00:00,15.16234762,1012.040861,91.9175,100.0,13.3675,0.599583333,237.30459093333332 -2016-05-27 09:00:00,0.0,1012.0,198.68333330000002,99.38333333,14.9525,0.44191666700000004,237.30813913333336 -2016-05-27 10:00:00,0.0,1012.092472,322.65,91.425,16.4025,1.037,237.3086460333333 -2016-05-27 11:00:00,0.0,1011.9416669999999,446.71666669999996,86.08333333,17.86666667,1.7664166669999999,237.30830809999998 -2016-05-27 12:00:00,0.0,1011.955111,377.53333330000004,82.80083333,19.16833333,1.06025,237.30847708333332 -2016-05-27 13:00:00,0.0,1011.573389,457.91666669999995,77.035,20.835,1.216416667,237.30847706666665 -2016-05-27 14:00:00,0.0,1011.411833,491.8916666999999,71.6375,21.35916667,1.101166667,237.30712538333333 -2016-05-27 15:00:00,0.0,1010.8543060000001,428.70833330000005,69.72416667,22.22833333,1.2195,237.3037461 -2016-05-27 16:00:00,0.0,1010.4682779999999,164.7041667,77.45666667,21.225,0.87425,237.30526678333334 -2016-05-27 17:00:00,4.938654648,1010.297583,21.2275,94.65,18.79916667,0.8261666670000001,237.30712536666667 -2016-05-27 18:00:00,2.51999136,1010.278222,35.97333333,99.325,17.70166667,1.04275,237.3091529333333 -2016-05-27 19:00:00,9.715252632,1010.926611,7.875,100.0,17.13916667,0.29741666699999997,237.30830813333333 -2016-05-27 20:00:00,2.4050227680000003,1010.9174720000001,1.239416667,100.0,16.365,0.244666667,237.3093218833333 -2016-05-27 21:00:00,2.50229676,1011.2349439999999,0.0,100.0,15.0575,0.299666667,237.3093219 -2016-05-27 22:00:00,0.0,1010.91425,0.0,100.0,14.26833333,0.0835,237.30999774999998 -2016-05-27 23:00:00,0.0,1010.908333,0.0,100.0,12.8675,0.15308333300000002,237.30949086666666 -2016-05-28 00:00:00,0.0,1010.680917,0.0,100.0,11.775,0.1165,237.31101155 -2016-05-28 01:00:00,0.0,1010.43925,0.0,100.0,10.30916667,0.076333333,237.31168739999998 -2016-05-28 02:00:00,0.0,1010.444083,0.0,100.0,9.628333332999999,0.1315,237.31303908333334 -2016-05-28 03:00:00,0.0,1010.6317220000001,0.0,100.0,9.184166667000001,0.11258333300000001,237.31320806666668 -2016-05-28 04:00:00,2.4050227680000003,1010.569083,4.664333333,100.0,9.135833332999999,0.07925,237.31320806666668 -2016-05-28 05:00:00,0.0,1010.7349439999999,17.3925,100.0,10.91666667,0.222833333,237.31101155 -2016-05-28 06:00:00,0.0,1010.754306,61.5675,100.0,13.09166667,1.04175,237.3093219 -2016-05-28 07:00:00,0.0,1010.36425,95.54416667,100.0,13.4375,1.203666667,237.30780119999997 -2016-05-28 08:00:00,0.0,1010.3682779999999,132.09166670000002,100.0,13.94583333,1.556,237.3081391333333 -2016-05-28 09:00:00,0.0,1010.272583,216.55,100.0,15.31416667,1.1038333329999999,237.30847708333332 -2016-05-28 10:00:00,0.0,1010.0,465.275,92.53333333,18.115,0.814583333,237.30729433333332 -2016-05-28 11:00:00,0.0,1009.7110279999999,647.4416667,81.08333333,20.64666667,1.08025,237.3044219666667 -2016-05-28 12:00:00,0.0,1009.111833,547.9083333,74.03083333,22.64666667,1.023333333,237.30425298333333 -2016-05-28 13:00:00,0.0,1008.615861,478.49166669999994,64.71333333,23.86416667,0.82775,237.30239440000003 -2016-05-28 14:00:00,0.0,1008.241944,319.75,66.30916667,22.98166667,1.25025,237.30104270000004 -2016-05-28 15:00:00,0.0,1007.347583,284.225,65.28083333,22.9975,0.95325,237.30104270000004 -2016-05-28 16:00:00,0.0,1007.061833,183.975,69.33916667,22.84416667,0.89,237.30036683333336 -2016-05-28 17:00:00,0.0,1006.63925,104.5608333,81.90083333,22.15166667,0.41116666700000004,237.3029012833333 -2016-05-28 18:00:00,0.0,1006.48575,32.05333333,93.86666667,20.18916667,0.113916667,237.30307025000002 -2016-05-28 19:00:00,0.0,1006.658333,13.88916667,96.925,18.78916667,0.33575,237.30526678333334 -2016-05-28 20:00:00,2.471229648,1006.6674720000001,2.558916667,99.15,17.30166667,0.5735,237.30408403333334 -2016-05-28 21:00:00,0.0,1006.774195,0.0,99.94166667,16.97083333,1.194583333,237.30695641666668 -2016-05-28 22:00:00,0.0,1006.630917,0.0,99.05,16.32833333,1.9231666669999998,237.30763228333333 -2016-05-28 23:00:00,0.0,1006.130917,0.0,99.875,15.5775,0.514333333,237.3079702 -2016-05-29 00:00:00,0.0,1005.7602220000001,0.0,100.0,15.4375,0.8590000000000001,237.3061116 -2016-05-29 01:00:00,0.0,1004.8535,0.0,100.0,13.48083333,0.239916667,237.30763226666667 -2016-05-29 02:00:00,0.0,1004.4733890000001,0.0,100.0,11.6525,0.18683333300000002,237.3069564 -2016-05-29 03:00:00,0.0,1004.1785,0.0,100.0,11.79083333,0.607166667,237.30780123333332 -2016-05-29 04:00:00,0.0,1003.8543060000001,5.012916667,100.0,13.6225,0.6293333329999999,237.3079701833333 -2016-05-29 05:00:00,0.0,1003.677417,44.86416667,100.0,13.035,0.209666667,237.30763224999998 -2016-05-29 06:00:00,0.0,1003.447583,36.50916667,100.0,14.48083333,0.85025,237.30644951666667 -2016-05-29 07:00:00,2.856041064,1002.985222,63.535,100.0,15.205,1.6566666669999999,237.30509783333332 -2016-05-29 08:00:00,0.0,1003.023111,93.39166667,99.78333333,15.975,1.538083333,237.30459093333332 -2016-05-29 09:00:00,0.0,1003.305917,161.8583333,96.26666667,17.15083333,0.667416667,237.30459093333332 -2016-05-29 10:00:00,0.0,1003.166667,260.775,90.56666667,18.22416667,0.932583333,237.30442195 -2016-05-29 11:00:00,0.0,1002.9459720000001,131.125,90.75833333,18.33916667,1.00925,237.30357711666667 -2016-05-29 12:00:00,0.0,1002.657528,198.2166667,88.85833333,19.39583333,0.9664166670000001,237.94192061666664 -2016-05-29 13:00:00,0.0,1002.522583,241.3916667,85.95,20.49833333,0.778333333,238.0686431 -2016-05-29 14:00:00,0.0,1002.35,373.3083333,81.06333333,21.18916667,1.230583333,238.06593971666666 -2016-05-29 15:00:00,0.0,1002.122583,368.95,76.5775,21.54416667,1.095166667,238.06425006666666 -2016-05-29 16:00:00,0.0,1001.5793060000001,301.9416667,75.8375,21.96,0.9571666670000001,238.06323628333334 -2016-05-29 17:00:00,0.0,1001.1126390000001,145.8833333,80.20833333,21.635,1.0473333329999999,238.06560178333334 -2016-05-29 18:00:00,0.0,1000.991667,90.5325,86.78333333,21.31,0.930083333,238.06779831666665 -2016-05-29 19:00:00,0.0,1000.980917,31.17916667,95.75833333,19.97583333,0.282666667,238.0689810333333 -2016-05-29 20:00:00,2.5086256319999998,1000.391667,1.9883333330000001,99.55833333,18.56666667,0.34925,238.06982586666663 -2016-05-29 21:00:00,0.0,1000.825,0.0,100.0,17.44666667,0.2605,238.06847414999996 -2016-05-29 22:00:00,23.9616918,1000.524194,0.0,100.0,18.11333333,1.21175,238.07033276666664 -2016-05-29 23:00:00,36.2398811,999.9744722999999,0.0,100.0,18.3225,2.215,238.07067070000002 -2016-05-30 00:00:00,42.20765746,998.7895277999999,0.0,100.0,17.81666667,2.1669166669999997,238.07236031666665 -2016-05-30 01:00:00,246.02452169999998,998.51075,0.002833333,99.875,16.28666667,1.28075,238.0750637333333 -2016-05-30 02:00:00,92.00685857,998.0502777999999,0.000916667,100.0,15.34166667,1.445583333,238.14095941666665 -2016-05-30 03:00:00,0.0,997.4190832999999,0.0,100.0,14.93833333,0.5315833329999999,238.18759331666664 -2016-05-30 04:00:00,0.0,997.9448889,2.333,100.0,13.99083333,0.276083333,238.17846928333333 -2016-05-30 05:00:00,0.0,998.0309167000001,17.19383333,100.0,14.39666667,0.259666667,238.16765565 -2016-05-30 06:00:00,0.0,998.1131667000001,38.05583333,100.0,15.0525,0.135833333,238.15785574999998 -2016-05-30 07:00:00,9.788551752,998.3158611,47.11583333,100.0,15.42333333,0.229916667,238.1502524 -2016-05-30 08:00:00,0.0,998.2483889,124.40583329999998,99.975,16.26333333,0.5761666670000001,238.14400076666666 -2016-05-30 09:00:00,0.0,998.1583332999999,286.95,94.38333333,17.975,1.279916667,238.13724221666666 -2016-05-30 10:00:00,0.0,998.1849444000001,314.3166667,89.70833333,18.41416667,1.8220833330000001,238.13217331666667 -2016-05-30 11:00:00,0.0,998.4524167000002,404.6416667,88.21666667,19.10416667,2.810083333,238.12794925000003 -2016-05-30 12:00:00,0.0,998.9290277999999,373.4416667,87.34166667,18.33416667,2.57,238.12541480000002 -2016-05-30 13:00:00,0.0,999.2690832999999,492.275,83.3275,19.18583333,3.220416667,238.12271138333335 -2016-05-30 14:00:00,0.0,999.5424722000001,324.15833330000004,82.87083333,18.87583333,3.22225,238.12119073333338 -2016-05-30 15:00:00,0.0,999.6516111,223.4,86.99166667,18.3775,2.736,238.12017693333334 -2016-05-30 16:00:00,0.0,999.81075,266.9,85.73333333,18.17,2.720333333,238.11730454999997 -2016-05-30 17:00:00,0.0,1000.11075,67.1675,89.675,17.71333333,2.03975,238.11527700000002 -2016-05-30 18:00:00,48.68987006,1000.544083,34.25166667,98.38333333,16.35083333,1.962666667,238.11409423333336 -2016-05-30 19:00:00,14.62598174,1000.962361,10.72825,99.68333333,15.92333333,1.714083333,238.11358735000002 -2016-05-30 20:00:00,0.0,1001.238167,2.079416667,99.93333333,15.52583333,1.657583333,238.11308046666667 -2016-05-30 21:00:00,0.0,1001.837361,0.0,99.96666667,15.3525,1.2475,238.1124046333333 -2016-05-30 22:00:00,0.0,1002.294889,0.0,99.55833333,15.055,0.680916667,238.1107149833333 -2016-05-30 23:00:00,0.0,1002.3849439999999,0.0,98.79166667,14.49166667,0.86775,238.10953225 -2016-05-31 00:00:00,0.0,1002.918278,0.0,99.65,14.45083333,1.488666667,238.1090253333333 -2016-05-31 01:00:00,0.0,1003.083333,0.0,99.00833333,14.26,1.463333333,238.10818053333333 -2016-05-31 02:00:00,0.0,1003.219083,0.0,100.0,13.98666667,1.396333333,238.11037706666662 -2016-05-31 03:00:00,0.0,1003.419889,0.0,100.0,14.01083333,1.30275,238.1083495 -2016-05-31 04:00:00,0.0,1003.7182779999999,3.610583333,100.0,13.76166667,1.55875,238.10801158333334 -2016-05-31 05:00:00,0.0,1003.962361,31.63583333,99.10833333,13.80666667,1.55975,238.1078426 -2016-05-31 06:00:00,0.0,1004.8973060000001,100.47,95.25,14.4275,1.8035833330000002,238.10446333333334 -2016-05-31 07:00:00,0.0,1005.362361,157.16666669999998,92.475,15.3575,2.0545,238.10344956666665 -2016-05-31 08:00:00,0.0,1005.820694,233.975,86.73333333,16.31916667,2.205166667,238.10074616666668 -2016-05-31 09:00:00,0.0,1006.1508060000001,297.225,83.96916667,17.35,2.17925,238.0990565 -2016-05-31 10:00:00,0.0,1006.529833,197.6083333,80.89833333,17.63916667,1.5874166669999998,238.09702896666667 -2016-05-31 11:00:00,0.0,1006.9448890000001,100.6516667,83.51666667,16.7575,0.917333333,238.09990133333335 -2016-05-31 12:00:00,0.0,1007.2965,284.8833333,80.115,17.9225,1.318583333,238.09635308333336 -2016-05-31 13:00:00,0.0,1007.625,236.3416667,75.27583333,18.75166667,1.4451666669999998,238.09297385 -2016-05-31 14:00:00,0.0,1007.7,200.7375,75.44416667,19.25916667,0.6426666670000001,238.0931428 -2016-05-31 15:00:00,0.0,1007.658333,188.05,76.43,19.56833333,0.318166667,238.09297386666665 -2016-05-31 16:00:00,0.0,1007.858333,126.98666670000001,74.14583333,18.9,0.39225,238.09128423333334 -2016-05-31 17:00:00,0.0,1007.844083,29.31833333,93.09166667,17.69916667,0.18716666699999998,238.09348071666668 -2016-05-31 18:00:00,0.0,1008.233333,60.42083333,91.44166667,17.77,0.03975,238.09297383333333 -2016-05-31 19:00:00,0.0,1008.379028,31.855,93.43333333,17.29916667,0.033416667000000004,238.09415656666667 -2016-05-31 20:00:00,0.0,1008.552417,4.228083333,99.16666667,15.18083333,0.08433333300000001,238.09432554999998 -2016-05-31 21:00:00,0.0,1009.0948890000001,0.000916667,100.0,13.97583333,0.092083333,238.09601518333332 -2016-05-31 22:00:00,0.0,1009.46075,0.0,100.0,13.67166667,0.01775,238.0950014 -2016-05-31 23:00:00,0.0,1009.608333,0.0,100.0,13.6,0.06225,238.09364968333333 -2016-01-06 00:00:00,0.0,1009.5035,0.0,100.0,13.59583333,0.17375,238.08829289999997 -2016-01-06 01:00:00,0.0,1009.176611,0.0,100.0,13.605,0.333416667,238.0875771 -2016-01-06 02:00:00,0.0,1009.344083,0.0,100.0,13.96333333,0.8484166670000001,238.08364011666671 -2016-01-06 03:00:00,0.0,1009.330917,0.0,99.65,14.255,0.49691666700000003,238.08292429999997 -2016-01-06 04:00:00,0.0,1009.108333,1.7391666669999999,99.85833333,14.21916667,0.38983333299999995,238.0813137333333 -2016-01-06 05:00:00,48.15581921,1009.261556,8.96175,98.8,14.41666667,0.507166667,238.0814927 -2016-01-06 06:00:00,34.70686397,1009.41425,16.939,100.0,14.2175,0.397583333,238.08095581666666 -2016-01-06 07:00:00,4.84183656,1009.366667,64.90916667,100.0,14.60833333,0.166833333,238.07988211666665 -2016-01-06 08:00:00,0.0,1009.394083,131.7033333,98.34166667,15.64916667,0.4455,238.0795242 -2016-01-06 09:00:00,0.0,1009.355917,175.2166667,98.21666667,16.36916667,0.462916667,238.07737674999998 -2016-01-06 10:00:00,2.553779832,1009.2241939999999,327.2916667,94.30833333,17.81,0.7265,238.07522931666665 -2016-01-06 11:00:00,0.0,1009.173389,376.4166667,92.40833333,18.80333333,1.092333333,238.07308185000002 -2016-01-06 12:00:00,0.0,1008.865861,241.75,93.06666667,19.425,1.343666667,238.07129235000002 -2016-01-06 13:00:00,0.0,1008.654306,157.395,93.525,17.86,0.851833333,238.07111339999997 -2016-01-06 14:00:00,7.36393932,1008.13925,59.235,96.86666667,17.01416667,0.58225,238.07111338333334 -2016-01-06 15:00:00,39.80581678,1007.7285,84.17416667,99.925,16.50666667,0.43658333299999996,238.06986071666665 -2016-01-06 16:00:00,27.47606062,1007.2193609999999,97.9675,100.0,16.56416667,0.4555,238.0707555 -2016-01-06 17:00:00,17.17315435,1006.9408609999999,70.72666667,100.0,16.52916667,0.305583333,238.0707555 -2016-01-06 18:00:00,39.07964014,1006.548389,37.22916667,100.0,16.26083333,0.322,238.07003968333333 -2016-01-06 19:00:00,2.552665536,1006.2551109999999,23.03625,100.0,16.33416667,0.734916667,238.06896593333337 -2016-01-06 20:00:00,2.5015437119999997,1006.109139,1.974083333,100.0,16.13166667,0.677083333,238.06789223333337 -2016-01-06 21:00:00,0.0,1006.080917,0.0,100.0,15.96,0.749833333,238.06771325 -2016-01-06 22:00:00,2.618846976,1005.907528,0.0,100.0,15.84166667,1.15725,238.0677132666667 -2016-01-06 23:00:00,0.0,1005.7841390000001,0.0,100.0,15.82916667,1.337833333,238.06610270000002 -2016-02-06 00:00:00,0.0,1005.8083330000001,0.0,100.0,15.70166667,1.391666667,238.11817813333334 -2016-02-06 01:00:00,0.0,1005.73925,0.0,100.0,15.5225,1.8146666669999998,238.11656753333332 -2016-02-06 02:00:00,0.0,1005.466667,0.0,100.0,15.36083333,1.223666667,238.11782021666667 -2016-02-06 03:00:00,0.0,1005.4817220000001,0.0,100.0,15.3675,0.8325,238.11889393333334 -2016-02-06 04:00:00,0.0,1005.7706939999999,0.7955,100.0,15.35916667,0.33475,238.12139925 -2016-02-06 05:00:00,0.0,1005.88575,17.55525,100.0,15.4525,0.548666667,238.11925183333335 -2016-02-06 06:00:00,0.0,1006.227417,37.45416667,100.0,15.84583333,0.9198333329999999,238.11746228333337 -2016-02-06 07:00:00,0.0,1006.63575,115.29833329999998,99.61666667,16.86833333,1.135666667,238.11442009999996 -2016-02-06 08:00:00,0.0,1006.834944,194.525,94.29166667,17.97,1.137,238.11388325 -2016-02-06 09:00:00,0.0,1006.774194,409.2,86.205,19.19416667,1.3513333330000001,238.11173578333333 -2016-02-06 10:00:00,0.0,1006.783333,285.40833330000004,84.83333333,19.44916667,1.3205,238.11066206666666 -2016-02-06 11:00:00,0.0,1006.858333,345.15833330000004,81.85,20.36416667,1.3426666669999998,238.10994625 -2016-02-06 12:00:00,0.0,1006.838445,595.6833333,77.68833333,20.9575,1.8246666669999998,238.10887255 -2016-02-06 13:00:00,0.0,1006.4491939999999,413.0166667,74.59333333,21.10916667,1.373083333,238.10726196666664 -2016-02-06 14:00:00,0.0,1006.054306,287.34166669999996,76.6375,20.50416667,1.438166667,238.10744091666666 -2016-02-06 15:00:00,2.534053176,1006.084944,102.8583333,88.2775,19.25833333,0.698833333,238.10565135000002 -2016-02-06 16:00:00,0.0,1006.125806,116.41666670000001,95.69166667,18.68833333,1.211833333,238.10600928333335 -2016-02-06 17:00:00,17.35570747,1006.294083,65.35333333,96.43333333,18.2525,1.204916667,238.10887255 -2016-02-06 18:00:00,37.29194446,1006.45,18.36416667,99.675,16.09583333,0.49075,238.10976730000002 -2016-02-06 19:00:00,2.408844504,1006.7365560000001,10.33541667,100.0,15.945,0.238833333,238.11155683333334 -2016-02-06 20:00:00,2.405181144,1006.959139,2.1695,100.0,15.84083333,0.29383333300000003,238.11298846666668 -2016-02-06 21:00:00,0.0,1007.202417,0.013583333000000001,100.0,15.33,0.135416667,238.11119891666667 -2016-02-06 22:00:00,0.0,1007.4016109999999,0.0,100.0,14.1625,0.069666667,238.10976731666668 -2016-02-06 23:00:00,0.0,1007.627417,0.0,100.0,13.36416667,0.029916667,238.11155683333334 -2016-03-06 00:00:00,0.0,1007.681722,0.0,100.0,14.3825,0.32,238.25851908333334 -2016-03-06 01:00:00,0.0,1007.758333,0.0,100.0,14.565,0.76925,238.25705636666666 -2016-03-06 02:00:00,0.0,1007.508333,0.0,100.0,14.16166667,0.5515,238.25622053333333 -2016-03-06 03:00:00,2.5985574000000002,1007.472583,0.0,100.0,13.6475,0.94375,238.2574743 -2016-03-06 04:00:00,0.0,1007.462361,1.8445,100.0,13.43583333,0.460916667,238.25204129999997 -2016-03-06 05:00:00,0.0,1007.666667,23.299,100.0,13.46083333,0.892333333,238.24911583333335 -2016-03-06 06:00:00,0.0,1007.852417,53.48166667,100.0,13.7575,0.917,238.2482799833334 -2016-03-06 07:00:00,0.0,1008.1182779999999,106.24166670000001,100.0,14.16333333,1.0275,238.24723516666668 -2016-03-06 08:00:00,0.0,1008.1483890000001,141.6541667,100.0,14.92833333,0.406416667,238.24430971666666 -2016-03-06 09:00:00,0.0,1008.1424720000001,248.025,99.675,16.06666667,1.0095,238.242847 -2016-03-06 10:00:00,5.22782532,1008.055917,195.93333330000002,94.35833333,17.44416667,1.07,238.24180220000002 -2016-03-06 11:00:00,5.324042928,1007.95,203.7833333,95.00833333,17.87083333,1.068416667,238.24033941666667 -2016-03-06 12:00:00,16.93287084,1007.8766109999999,153.0083333,97.3,17.22083333,2.449166667,238.2415932166667 -2016-03-06 13:00:00,0.0,1007.772583,81.21583333,99.26666667,16.4275,0.5705,238.2418021666667 -2016-03-06 14:00:00,0.0,1007.58925,353.75,92.95833333,18.475,0.595333333,238.24201114999997 -2016-03-06 15:00:00,0.0,1007.375,326.375,87.31666667,20.30916667,0.879,238.24033943333333 -2016-03-06 16:00:00,68.31760721,1007.2126390000001,47.68916667,96.34166667,17.2425,0.761166667,238.24075736666666 -2016-03-06 17:00:00,0.0,1006.875,86.07833333,99.725,17.28416667,0.37008333299999996,238.24451866666666 -2016-03-06 18:00:00,2.519207424,1007.1016109999999,42.83083333,99.68333333,17.44666667,0.44125,238.24263801666666 -2016-03-06 19:00:00,2.552943912,1006.880917,28.8325,100.0,17.185,0.39183333299999995,238.24284698333335 -2016-03-06 20:00:00,0.0,1006.888167,1.9198333330000001,100.0,16.2775,0.427333333,238.24117529999998 -2016-03-06 21:00:00,0.0,1007.391667,0.0,100.0,16.335,0.33883333299999996,238.24222010000003 -2016-03-06 22:00:00,0.0,1007.315056,0.0,100.0,15.37916667,0.178833333,238.24305593333335 -2016-03-06 23:00:00,0.0,1007.227417,0.0,100.0,13.75916667,0.277416667,238.24096631666666 -2016-04-06 00:00:00,0.0,1007.390861,0.0,100.0,12.87083333,0.14300000000000002,238.31347600000004 -2016-04-06 01:00:00,0.0,1007.467472,0.0,100.0,11.83,0.109833333,238.31389393333333 -2016-04-06 02:00:00,0.0,1007.633333,0.0,100.0,12.545,0.043666667,238.31055055000002 -2016-04-06 03:00:00,0.0,1007.525,0.009416667,100.0,12.55666667,0.076333333,238.30699819999998 -2016-04-06 04:00:00,0.0,1007.719083,3.6676666669999998,100.0,12.22083333,0.134666667,238.30616236666665 -2016-04-06 05:00:00,0.0,1007.9,38.27833333,100.0,12.86416667,0.195916667,238.30386378333333 -2016-04-06 06:00:00,0.0,1008.044083,94.4275,100.0,14.2925,0.333833333,238.29926661666664 -2016-04-06 07:00:00,0.0,1008.436556,124.34166670000002,100.0,15.36916667,1.102833333,238.29487844999997 -2016-04-06 08:00:00,0.0,1008.804833,177.5,98.61666667,16.70916667,1.122666667,238.29237089999995 -2016-04-06 09:00:00,0.0,1009.033333,246.30833330000002,95.11666667,17.92,1.45675,238.29132608333336 -2016-04-06 10:00:00,0.0,1009.234139,269.28333330000004,90.73333333,19.06416667,1.6575,238.28986335000002 -2016-04-06 11:00:00,0.0,1009.383333,367.075,84.06666667,20.6575,1.2026666670000001,238.28819166666668 -2016-04-06 12:00:00,0.0,1009.258333,338.125,80.76666667,21.30666667,1.03575,238.28986335 -2016-04-06 13:00:00,2.583193536,1009.036833,345.0666667,82.46333333,21.0975,0.745916667,238.28798271666665 -2016-04-06 14:00:00,0.0,1008.8,544.1166667,71.54833333,22.68833333,1.054916667,238.28631099999998 -2016-04-06 15:00:00,0.0,1008.71425,427.8083333000001,71.78083333,23.36166667,1.4100833330000002,238.28526618333333 -2016-04-06 16:00:00,0.0,1008.6016109999999,221.18333330000002,72.66666667,21.73083333,2.1011666669999998,238.28422141666667 -2016-04-06 17:00:00,0.0,1008.448389,126.98666670000001,82.31833333,21.535,1.339333333,238.28380346666663 -2016-04-06 18:00:00,2.696271696,1008.7956939999999,109.35166670000001,81.56166667,21.4375,0.7835,238.28066903333334 -2016-04-06 19:00:00,2.503302984,1009.179833,25.17666667,94.375,19.33333333,0.395666667,238.28066903333334 -2016-04-06 20:00:00,2.481989304,1009.8755279999999,1.791916667,99.79166667,17.79916667,0.39791666700000006,238.27837046666664 -2016-04-06 21:00:00,0.0,1010.466667,0.0014166670000000001,100.0,16.91416667,0.302666667,238.2754449833333 -2016-04-06 22:00:00,0.0,1010.541667,0.0,100.0,15.90416667,0.22091666699999998,238.2733553666666 -2016-04-06 23:00:00,0.0,1010.5508060000001,0.0,100.0,14.7075,0.139916667,238.27210161666665 -2016-05-06 00:00:00,0.0,1010.7349439999999,0.0,100.0,13.5325,0.12608333300000002,238.1189942 -2016-05-06 01:00:00,0.0,1010.858333,0.0,100.0,13.37333333,0.12375,238.11848728333337 -2016-05-06 02:00:00,0.0,1010.967472,0.0,100.0,13.07083333,0.108416667,238.12017695 -2016-05-06 03:00:00,0.0,1011.0099439999999,0.031,100.0,13.06833333,0.13675,238.1205148666667 -2016-05-06 04:00:00,0.0,1011.26075,5.5083333329999995,100.0,12.27666667,0.030833332999999997,238.1208528 -2016-05-06 05:00:00,0.0,1011.7956939999999,11.62333333,100.0,12.38833333,0.048833333,238.12085281666668 -2016-05-06 06:00:00,0.0,1012.28575,81.92333333,100.0,14.06833333,0.16825,238.12000798333338 -2016-05-06 07:00:00,0.0,1012.5290279999999,183.725,100.0,17.40416667,0.548416667,238.11645975000002 -2016-05-06 08:00:00,0.0,1012.85,204.05,90.60833333,19.76916667,0.9903333329999999,238.1129115 -2016-05-06 09:00:00,0.0,1013.0174720000001,419.275,77.90166667,21.2775,1.1909999999999998,238.1130804833333 -2016-05-06 10:00:00,0.0,1013.0615550000001,598.375,70.36916667,23.35166667,1.133666667,238.1105460333333 -2016-05-06 11:00:00,0.0,1013.1400560000001,651.4166667000001,64.07666667,24.5425,1.631666667,238.1086874 -2016-05-06 12:00:00,0.0,1012.661833,532.075,58.89166667,25.32833333,2.4019999999999997,238.10885638333332 -2016-05-06 13:00:00,0.0,1012.258333,652.3916667000001,52.28833333,26.45666667,2.46375,238.10750469999996 -2016-05-06 14:00:00,0.0,1012.255917,647.125,45.51833333,27.14666667,2.05925,238.10699783333334 -2016-05-06 15:00:00,0.0,1012.1841390000001,571.475,49.36166667,26.80333333,2.560333333,238.10480128333333 -2016-05-06 16:00:00,0.0,1012.024194,505.425,54.7975,25.8975,3.44675,238.1044633333333 -2016-05-06 17:00:00,0.0,1012.473917,277.65,64.0375,24.57416667,2.586666667,238.10463229999996 -2016-05-06 18:00:00,0.0,1013.212361,104.6,71.43916667,23.29,0.628416667,238.10767365 -2016-05-06 19:00:00,0.0,1013.965583,49.79416667,80.00666667,20.4875,1.15575,238.10615296666666 -2016-05-06 20:00:00,0.0,1014.7198890000001,5.9115,92.88333333,17.60666667,0.222333333,238.10919429999998 -2016-05-06 21:00:00,0.0,1015.109139,0.04175,99.26666667,16.46083333,0.203333333,238.10885638333335 -2016-05-06 22:00:00,0.0,1015.2266109999999,0.0,100.0,15.42166667,0.300833333,238.11003913333332 -2016-05-06 23:00:00,0.0,1015.0491939999999,0.0,100.0,14.3025,0.244916667,238.11155981666664 -2016-06-06 00:00:00,0.0,1015.225805,0.0,100.0,13.37583333,0.18641666699999998,238.08182226666668 -2016-06-06 01:00:00,0.0,1015.2,0.0,100.0,12.99583333,0.16075,238.08334290000002 -2016-06-06 02:00:00,0.0,1015.2075279999999,0.0,100.0,12.26833333,0.24741666699999998,238.08317393333334 -2016-06-06 03:00:00,0.0,1015.116667,0.04275,100.0,11.6275,0.037583333,238.0831739666667 -2016-06-06 04:00:00,0.0,1015.379028,6.6685,100.0,11.29583333,0.013583333000000001,238.08283605000005 -2016-06-06 05:00:00,0.0,1015.8532220000001,78.905,100.0,13.46833333,0.007833333,238.08165329999997 -2016-06-06 06:00:00,0.0,1016.219083,179.2416667,96.59166667,17.29833333,0.120833333,238.07962573333336 -2016-06-06 07:00:00,0.0,1016.4766109999999,194.97916669999998,83.505,19.24333333,0.508166667,238.07827401666668 -2016-06-06 08:00:00,0.0,1016.551611,94.05833333,79.27166667,20.57166667,1.068583333,238.07776711666668 -2016-06-06 09:00:00,0.0,1016.6,421.88333330000006,73.30416667,22.45833333,0.80275,238.07607750000003 -2016-06-06 10:00:00,0.0,1016.597583,607.35,68.02916667,24.58916667,0.842333333,238.0742189 -2016-06-06 11:00:00,0.0,1016.341667,633.8833333,61.09666667,26.19583333,0.677,238.0725292666667 -2016-06-06 12:00:00,0.0,1016.179306,646.5333333,55.2275,27.21,1.5476666669999999,238.07151550000003 -2016-06-06 13:00:00,0.0,1015.757528,672.2583333,48.765,27.93166667,1.627666667,238.06914999999995 -2016-06-06 14:00:00,0.0,1015.680917,607.0666667,45.82583333,28.4175,1.314,238.06695348333335 -2016-06-06 15:00:00,0.0,1015.3650560000001,573.5416667000001,44.76333333,28.25833333,1.87825,238.06560178333334 -2016-06-06 16:00:00,0.0,1015.41075,375.4916667,57.28833333,24.925,2.9389999999999996,238.06222251666665 -2016-06-06 17:00:00,0.0,1015.3900560000001,114.09166670000002,69.70833333,21.72916667,0.734583333,238.06593973333335 -2016-06-06 18:00:00,0.0,1015.6706939999999,81.18833333,80.15666667,21.1625,0.39641666700000006,238.0650949 -2016-06-06 19:00:00,0.0,1016.136556,31.74916667,91.53333333,19.9675,0.28425,238.06695346666666 -2016-06-06 20:00:00,0.0,1016.479028,4.577083333,97.38333333,17.9025,0.202416667,238.06695348333332 -2016-06-06 21:00:00,0.0,1016.7567220000001,0.022083332999999997,99.89166667,16.2875,0.1265,238.07050169999994 -2016-06-06 22:00:00,0.0,1016.903222,0.0,100.0,15.09,0.023,238.07067068333333 -2016-06-06 23:00:00,0.0,1017.253222,0.0,100.0,14.52666667,0.21100000000000002,238.07100863333335 -2016-07-06 00:00:00,0.0,1017.408333,0.0,100.0,13.56166667,0.046166667,238.05173513333332 -2016-07-06 01:00:00,0.0,1017.4,0.0,100.0,12.86333333,0.046416667,238.05372505 -2016-07-06 02:00:00,0.0,1017.45,0.0,100.0,12.09583333,0.06675,238.05611298333335 -2016-07-06 03:00:00,0.0,1017.4766109999999,0.03475,100.0,11.545,0.066,238.05491901666667 -2016-07-06 04:00:00,0.0,1017.617472,6.031083333,100.0,11.33083333,0.02775,238.05690895 -2016-07-06 05:00:00,0.0,1017.970694,81.155,100.0,13.14833333,0.0,238.0559139833333 -2016-07-06 06:00:00,0.0,1018.33575,186.9666667,96.725,17.30833333,0.114,238.05670996666666 -2016-07-06 07:00:00,0.0,1018.6349439999999,193.9075,82.36333333,18.7425,0.95875,238.05332704999998 -2016-07-06 08:00:00,0.0,1018.725,79.27666667,75.45,20.11916667,1.2651666670000001,238.05332706666664 -2016-07-06 09:00:00,0.0,1018.640861,428.625,68.39833333,22.2025,1.120583333,238.04994420000003 -2016-07-06 10:00:00,0.0,1018.6591390000001,623.05,62.64833333,24.20416667,1.152916667,238.04596431666667 -2016-07-06 11:00:00,0.0,1018.3293060000001,681.975,58.78083333,25.55916667,1.424166667,238.04377538333335 -2016-07-06 12:00:00,0.0,1017.931722,705.1416667000001,56.50666667,26.53916667,1.6560833330000002,238.03959653333334 -2016-07-06 13:00:00,0.0,1017.6467779999999,702.0833332999999,48.66666667,27.40666667,1.5960833330000002,238.03740759999997 -2016-07-06 14:00:00,0.0,1017.2276939999999,649.5333333,45.97583333,27.815,1.527916667,238.03641259999995 -2016-07-06 15:00:00,0.0,1016.662639,565.8083333,40.11583333,28.0075,1.27075,238.03661161666665 -2016-07-06 16:00:00,0.0,1016.287639,476.04166669999995,44.16083333,28.12416667,1.138,238.03581565 -2016-07-06 17:00:00,0.0,1015.7233890000001,257.175,52.17083333,27.0425,1.25475,238.03382571666666 -2016-07-06 18:00:00,0.0,1016.104833,76.275,69.67416667,24.61833333,0.9551666670000001,238.0328307833333 -2016-07-06 19:00:00,0.0,1016.3766109999999,33.4075,87.56666667,22.67833333,0.7978333329999999,238.0316368 -2016-07-06 20:00:00,0.0,1016.380917,9.266333333,94.40833333,19.49666667,0.171416667,238.03342773333335 -2016-07-06 21:00:00,0.0,1016.4564439999999,0.024416667000000003,98.30833333,16.9,0.214,238.0346216833333 -2016-07-06 22:00:00,0.0,1017.169889,0.0,92.8,18.3075,0.679666667,238.03422371666662 -2016-07-06 23:00:00,0.0,1017.2035,0.0,93.66666667,17.6725,0.488916667,238.03581565 -2016-08-06 00:00:00,0.0,1016.780917,0.0,92.325,16.7075,0.281083333,237.99442505000002 -2016-08-06 01:00:00,0.0,1016.097583,0.0,98.275,16.6975,0.204833333,237.99681298333334 -2016-08-06 02:00:00,0.0,1016.1317220000001,0.0,99.21666667,16.82833333,0.6345,237.9986039 -2016-08-06 03:00:00,0.0,1015.741667,0.016916667,99.88333333,16.0575,0.11125,237.99900188333334 -2016-08-06 04:00:00,0.0,1015.847583,2.28375,100.0,14.95916667,0.07925,237.9988029 -2016-08-06 05:00:00,0.0,1015.71075,23.40908333,100.0,15.12666667,0.1415,238.0003948166667 -2016-08-06 06:00:00,0.0,1016.2706939999999,29.32166667,99.38333333,16.30833333,0.15966666699999998,238.00079281666672 -2016-08-06 07:00:00,9.72398184,1016.45,60.95583333,99.76666667,16.4925,0.211833333,237.99999683333337 -2016-08-06 08:00:00,0.0,1016.3733890000001,141.2833333,96.05,17.72333333,0.18833333300000002,237.9986039 -2016-08-06 09:00:00,0.0,1016.3599439999999,233.44166669999998,92.53333333,18.76833333,0.5844166670000001,237.99681293333336 -2016-08-06 10:00:00,0.0,1016.2959720000001,381.9583333,87.00833333,20.785,0.671666667,237.99382804999996 -2016-08-06 11:00:00,0.0,1015.845167,493.08333330000005,80.20416667,21.28833333,0.8460833329999999,237.99163911666665 -2016-08-06 12:00:00,0.0,1015.2884439999999,589.0583333,69.77916667,22.57583333,1.26075,237.99104215 -2016-08-06 13:00:00,0.0,1014.5876390000001,313.785,72.37166667,23.37083333,1.8793333330000002,237.9850723666667 -2016-08-06 14:00:00,0.0,1014.372583,69.40083333,90.975,20.56583333,1.64575,237.98308240000003 -2016-08-06 15:00:00,0.0,1013.863444,77.6925,94.70833333,19.6475,0.264916667,237.97870458333333 -2016-08-06 16:00:00,0.0,1013.647583,144.6416667,91.69166667,20.03583333,0.171583333,237.97492368333334 -2016-08-06 17:00:00,0.0,1013.525,137.81666669999998,88.2,20.72833333,0.33025,237.97313276666662 -2016-08-06 18:00:00,0.0,1013.541667,89.6475,88.04166667,20.7075,0.322666667,237.97134181666664 -2016-08-06 19:00:00,0.0,1013.8873609999999,85.03833333,77.02,21.0375,0.9470833329999999,237.96994883333332 -2016-08-06 20:00:00,0.0,1014.1623609999999,11.88416667,70.09,17.66,1.8188333330000002,237.97034686666666 -2016-08-06 21:00:00,0.0,1014.491667,0.048333333,95.50833333,16.07416667,0.90475,237.97034683333334 -2016-08-06 22:00:00,0.0,1014.665056,0.0,99.7,14.23166667,0.34133333299999996,237.9719388 -2016-08-06 23:00:00,0.0,1014.6897779999999,0.0,100.0,12.77416667,0.160583333,237.97313278333334 -2016-09-06 00:00:00,0.0,1014.897583,0.0,100.0,11.27083333,0.201583333,237.8881626 -2016-09-06 01:00:00,0.0,1014.825,0.0,100.0,10.0725,0.15766666699999998,237.88955554999998 -2016-09-06 02:00:00,0.0,1014.745972,0.0,100.0,9.694166667000001,0.180666667,237.8909485 -2016-09-06 03:00:00,0.0,1014.595694,0.028666667000000003,100.0,9.028333332999999,0.064166667,237.89453039999998 -2016-09-06 04:00:00,0.0,1014.852417,5.402416667000001,100.0,8.7475,0.16625,237.89632133333336 -2016-09-06 05:00:00,0.0,1015.144083,62.65416667,100.0,10.24,0.24525,237.89632131666667 -2016-09-06 06:00:00,0.0,1015.162639,186.1,96.65,13.22166667,1.13475,237.89811226666666 -2016-09-06 07:00:00,0.0,1015.034944,207.9233333,82.52916667,14.13666667,2.471,237.89731628333334 -2016-09-06 08:00:00,0.0,1015.0583330000001,107.34166670000002,75.48833333,15.10583333,1.880333333,237.89751528333332 -2016-09-06 09:00:00,0.0,1014.762639,463.25,64.48166667,16.12916667,1.77025,237.8965203333333 -2016-09-06 10:00:00,0.0,1014.4241939999999,666.1583333,62.95833333,17.33166667,2.34725,237.89592333333334 -2016-09-06 11:00:00,0.0,1014.323389,612.5416667000001,66.89333333,17.7675,2.913583333,237.89492836666668 -2016-09-06 12:00:00,0.0,1014.157528,601.4083333,64.61833333,18.2375,3.16275,237.89015253333332 -2016-09-06 13:00:00,0.0,1014.0134439999999,666.8583332999999,62.11583333,18.99166667,2.59325,237.88577468333335 -2016-09-06 14:00:00,0.0,1013.736833,620.5583333,61.45416667,19.31583333,3.0510833330000002,237.88259078333337 -2016-09-06 15:00:00,0.0,1013.284944,593.875,59.0025,19.76333333,2.5749166669999997,237.8786109333333 -2016-09-06 16:00:00,0.0,1013.047583,314.4916667,60.24916667,19.84583333,2.183416667,237.8774169666667 -2016-09-06 17:00:00,0.0,1012.991667,169.0333333,66.56833333,19.00666667,2.153083333,237.8732381166666 -2016-09-06 18:00:00,0.0,1012.8483890000001,92.39666667,72.96,18.07583333,2.170833333,237.8722431333333 -2016-09-06 19:00:00,0.0,1012.5793060000001,42.9925,77.59333333,17.50916667,1.239833333,237.8694572333333 -2016-09-06 20:00:00,0.0,1012.266667,12.7555,88.68333333,15.99166667,0.5519166670000001,237.87124818333334 -2016-09-06 21:00:00,0.0,1012.4825279999999,0.09633333300000001,96.18333333,12.5975,0.147083333,237.87244214999998 -2016-09-06 22:00:00,0.0,1012.53575,0.0,99.95,11.16166667,0.2725,237.87264111666664 -2016-09-06 23:00:00,0.0,1012.4285,0.0,100.0,10.01916667,0.08858333300000001,237.87264113333333 -2016-10-06 00:00:00,0.0,1011.841667,0.0,100.0,8.869166667,0.144833333,237.94353921666664 -2016-10-06 01:00:00,0.0,1011.7035,0.0,100.0,8.037166667000001,0.016833333,237.94380339999998 -2016-10-06 02:00:00,0.0,1011.2801109999999,0.0,100.0,7.5005,0.06375,237.9454359 -2016-10-06 03:00:00,0.0,1010.865861,0.039,100.0,6.862416667000001,0.0,237.94590571666666 -2016-10-06 04:00:00,0.0,1010.530917,6.381416667000001,100.0,6.57575,0.0375,237.9429049 -2016-10-06 05:00:00,0.0,1010.716667,80.05416667,100.0,8.8075,0.012833333,237.94415615 -2016-10-06 06:00:00,0.0,1010.709139,186.85,97.00833333,12.7025,0.49908333299999996,237.94448836666672 -2016-10-06 07:00:00,0.0,1010.7075279999999,210.2583333,88.31666667,15.03916667,0.66,237.94503413333334 -2016-10-06 08:00:00,0.0,1010.448389,163.1583333,77.24083333,17.4075,0.588833333,237.94435233333334 -2016-10-06 09:00:00,0.0,1010.3408609999999,428.15,71.19166667,18.495,0.76025,237.94436656666664 -2016-10-06 10:00:00,0.0,1010.086833,602.1,60.82666667,19.47083333,1.116416667,237.9447208833333 -2016-10-06 11:00:00,0.0,1009.7650560000001,682.6083332999999,62.50083333,20.08833333,1.255833333,237.94460381666667 -2016-10-06 12:00:00,0.0,1009.405917,691.4333333,59.41916667,20.9175,1.0265,237.94634549999998 -2016-10-06 13:00:00,0.0,1009.020167,669.425,55.7075,21.77333333,0.925083333,237.94611611666667 -2016-10-06 14:00:00,0.0,1008.520972,652.475,56.22666667,21.76083333,1.0380833329999999,237.94421624999998 -2016-10-06 15:00:00,0.0,1008.0317220000001,566.3666667,52.44333333,22.92416667,0.786166667,237.94349968333336 -2016-10-06 16:00:00,0.0,1007.597583,421.15,53.41916667,22.1425,0.697333333,237.94484111666668 -2016-10-06 17:00:00,0.0,1007.370167,203.25,58.13916667,22.59,0.6025,237.94567161666666 -2016-10-06 18:00:00,0.0,1007.015861,86.47583333,61.16666667,21.21333333,0.6729166670000001,237.94669665 -2016-10-06 19:00:00,0.0,1006.8983890000001,46.10583333,73.33916667,19.07583333,0.022833332999999997,237.94570956666666 -2016-10-06 20:00:00,0.0,1006.995694,7.00875,83.07583333,16.25833333,0.13325,237.94527615 -2016-10-06 21:00:00,0.0,1007.258333,0.037083332999999996,90.41666667,16.30166667,1.021333333,237.94697668333333 -2016-10-06 22:00:00,0.0,1007.3615560000001,0.0,91.55833333,16.45916667,1.0424166670000001,237.94662074999997 -2016-10-06 23:00:00,0.0,1007.4325279999999,0.0,92.75833333,12.94083333,0.142083333,237.9464609833333 -2016-11-06 00:00:00,0.0,1007.4983890000001,0.0,95.09166667,11.79833333,0.095,238.04032170000002 -2016-11-06 01:00:00,0.0,1007.28925,0.0,96.54166667,11.38333333,0.040833333,238.03984558333332 -2016-11-06 02:00:00,0.0,1006.897583,0.0,97.95833333,11.10916667,0.08275,238.03794731666665 -2016-11-06 03:00:00,0.0,1006.6067220000001,0.01125,99.41666667,10.66416667,0.0735,238.03804380000005 -2016-11-06 04:00:00,0.0,1006.524194,4.771083333,99.8,10.08833333,0.083666667,238.0393425166667 -2016-11-06 05:00:00,0.0,1006.704833,36.88833333,99.50833333,11.00083333,0.080833333,238.03631325 -2016-11-06 06:00:00,0.0,1006.948389,86.77416667,95.46666667,13.365,0.08516666699999999,238.0339673 -2016-11-06 07:00:00,0.0,1007.229028,149.3833333,84.225,15.39166667,1.355083333,238.03442765 -2016-11-06 08:00:00,0.0,1007.458333,207.2583333,77.85333333,16.08333333,1.7336666669999998,238.03355603333333 -2016-11-06 09:00:00,0.0,1007.419083,289.5583333,76.78666667,17.66083333,1.140916667,238.03155338333337 -2016-11-06 10:00:00,0.0,1007.4241939999999,358.40833330000004,72.87583333,18.63083333,1.564583333,238.031971 -2016-11-06 11:00:00,0.0,1007.3650560000001,408.8333333,71.75833333,19.47666667,1.829166667,238.0309601666667 -2016-11-06 12:00:00,0.0,1007.162639,460.5,63.57083333,21.41583333,1.175833333,238.03002841666668 -2016-11-06 13:00:00,0.0,1006.8241949999999,508.15833330000004,58.1425,22.24333333,1.024916667,238.0289053166667 -2016-11-06 14:00:00,0.0,1006.505917,333.625,58.14416667,21.795,1.0324166670000001,238.0307213 -2016-11-06 15:00:00,0.0,1006.1876390000001,247.18333330000002,60.76916667,22.36166667,0.5086666670000001,238.0310234166667 -2016-11-06 16:00:00,0.0,1005.922583,300.2083333,60.18916667,22.45583333,0.67825,238.0296978166667 -2016-11-06 17:00:00,0.0,1005.837361,201.55833330000002,68.03333333,20.23166667,1.833833333,238.029315 -2016-11-06 18:00:00,0.0,1005.931722,77.53916667,76.4075,19.54583333,1.162166667,238.02825671666665 -2016-11-06 19:00:00,0.0,1006.102417,32.39083333,79.64166667,18.09583333,0.73425,238.02760024999998 -2016-11-06 20:00:00,0.0,1006.379028,6.8833333329999995,84.96666667,16.55833333,0.46416666700000003,238.0258317 -2016-11-06 21:00:00,0.0,1006.7674720000001,0.038,93.8,15.20583333,0.34783333299999997,238.02598988333332 -2016-11-06 22:00:00,0.0,1006.9016109999999,0.0,98.525,14.2,0.08758333300000001,238.02530175 -2016-11-06 23:00:00,0.0,1006.798389,0.0,99.99166667,13.2375,0.093833333,238.02405208333334 -2016-12-06 00:00:00,0.0,1006.5551109999999,0.0,100.0,12.0225,0.07925,238.0322383 -2016-12-06 01:00:00,0.0,1006.2317220000001,0.0,100.0,12.3525,0.026333332999999997,238.03188873333332 -2016-12-06 02:00:00,0.0,1006.0467779999999,0.0,100.0,12.9375,0.0,238.03066908333335 -2016-12-06 03:00:00,0.0,1005.681722,0.0,100.0,13.125,0.0,238.0301091166667 -2016-12-06 04:00:00,0.0,1005.4849449999999,2.941833333,100.0,13.025,0.0,238.03015655000002 -2016-12-06 05:00:00,0.0,1005.665056,17.18083333,100.0,13.71833333,0.145583333,238.0295159 -2016-12-06 06:00:00,10.19749925,1005.516667,32.88666667,100.0,14.1325,0.7493333329999999,238.02991611666667 -2016-12-06 07:00:00,15.3719388,1005.55,71.575,100.0,14.53833333,0.838,238.03031318333333 -2016-12-06 08:00:00,5.404735848,1005.4658609999999,103.5,100.0,15.08333333,1.280916667,238.02971523333335 -2016-12-06 09:00:00,2.639996664,1005.3483890000001,174.7666667,99.63333333,15.99416667,1.4285833330000002,238.02894956666668 -2016-12-06 10:00:00,0.0,1005.11425,268.3666667,93.525,17.09083333,1.4729166669999998,238.02888473333334 -2016-12-06 11:00:00,0.0,1004.955917,472.6916666999999,84.07333333,18.22583333,1.27125,238.02898596666668 -2016-12-06 12:00:00,0.0,1004.520972,542.3083333,75.4075,19.74083333,1.7435,238.02639960000002 -2016-12-06 13:00:00,63.41273395,1004.362361,121.01333329999999,84.80166667,19.11833333,1.228083333,238.0270734833333 -2016-12-06 14:00:00,7.35010044,1004.4793060000001,173.8233333,98.80833333,16.80666667,0.357333333,238.0277885 -2016-12-06 15:00:00,0.0,1004.201611,340.8666667,88.68333333,19.2175,0.5671666670000001,238.02794035000002 -2016-12-06 16:00:00,0.0,1004.186028,249.6416667,86.89166667,19.4875,0.83475,238.0269438 -2016-12-06 17:00:00,0.0,1003.591667,156.44166669999998,90.375,18.325,0.568333333,238.02711143333332 -2016-12-06 18:00:00,0.0,1003.8599439999999,49.50083333,93.225,17.29833333,0.50925,238.02794035 -2016-12-06 19:00:00,29.43875278,1003.8126390000001,18.51166667,99.14166667,15.4425,0.627583333,238.02681561666668 -2016-12-06 20:00:00,0.0,1003.383333,4.079333333,99.825,14.60416667,0.03925,238.02804000000003 -2016-12-06 21:00:00,0.0,1003.45,0.0385,99.83333333,14.02833333,0.211916667,238.02845605000002 -2016-12-06 22:00:00,0.0,1003.3075279999999,0.0,100.0,13.655,0.165333333,238.0287708333333 -2016-12-06 23:00:00,0.0,1003.072583,0.0,100.0,13.53833333,0.04825,238.02821716666668 -2016-06-13 00:00:00,0.0,1002.662639,0.0,100.0,13.5925,0.202416667,238.0944945 -2016-06-13 01:00:00,0.0,1002.020167,0.0,100.0,13.40666667,0.2255,238.09550828333332 -2016-06-13 02:00:00,0.0,1001.536028,0.0,100.0,13.2075,0.031833333,238.09415656666667 -2016-06-13 03:00:00,2.4050227680000003,1001.1551109999999,0.0,100.0,13.28083333,0.030833332999999997,238.09229798333334 -2016-06-13 04:00:00,0.0,1000.5626390000001,4.59825,100.0,13.23333333,0.113,238.0938186333333 -2016-06-13 05:00:00,0.0,1000.1876390000001,27.01633333,100.0,13.56416667,0.245916667,238.09398761666668 -2016-06-13 06:00:00,0.0,999.95,72.245,100.0,14.55166667,0.266,238.0907773166667 -2016-06-13 07:00:00,0.0,999.7908610999999,128.7175,98.44166667,15.74666667,0.40475,238.0889187 -2016-06-13 08:00:00,29.78632646,999.4709722000001,92.72833333,99.78333333,15.81916667,0.2905,238.08790491666664 -2016-06-13 09:00:00,0.0,999.0551111,251.33333330000002,94.59166667,17.105,0.714666667,238.09027043333333 -2016-06-13 10:00:00,2.4220708319999997,998.6650556,139.075,94.45833333,17.77583333,0.47725,238.09077731666665 -2016-06-13 11:00:00,2.753525232,998.3535,308.055,88.02083333,17.69416667,1.1261666670000001,238.09010146666665 -2016-06-13 12:00:00,0.0,997.875,354.4125,88.0675,16.56083333,1.007916667,238.09229798333334 -2016-06-13 13:00:00,22.85476219,997.8126389,168.9483333,96.48333333,15.99416667,0.5631666670000001,238.09348075 -2016-06-13 14:00:00,0.0,997.3916667000001,171.75,91.76666667,16.96916667,0.43425,238.09331175 -2016-06-13 15:00:00,0.0,997.3543056,77.29833333,96.20833333,17.07666667,0.214666667,238.09500141666663 -2016-06-13 16:00:00,7.5651180479999995,997.2432777999999,278.1741667,94.35,17.64333333,0.59875,238.09449451666669 -2016-06-13 17:00:00,0.0,997.2932777999999,123.15833329999998,95.175,16.59833333,0.536333333,238.09348071666668 -2016-06-13 18:00:00,0.0,997.6865556,100.1425,95.61666667,16.33416667,0.49275,238.09483245 -2016-06-13 19:00:00,0.0,997.8083332999998,40.89583333,97.90833333,15.59583333,0.25025,238.09483243333332 -2016-06-13 20:00:00,0.0,998.0790278,3.21225,98.25833333,14.71,0.27775,238.09533933333333 -2016-06-13 21:00:00,4.871561208,998.3524167000002,0.013166667,99.81666667,13.83916667,0.287416667,238.09483243333332 -2016-06-13 22:00:00,0.0,998.3059167000001,0.0,100.0,13.5225,0.253333333,238.09432553333332 -2016-06-13 23:00:00,0.0,998.2983889000001,0.0,100.0,12.7925,0.215166667,238.0944945 -2016-06-14 00:00:00,0.0,998.2516111,0.0,100.0,12.1225,0.07958333299999999,238.09533933333333 -2016-06-14 01:00:00,4.8184679280000005,998.2916667000002,0.0,100.0,12.45416667,0.05375,238.09364968333333 -2016-06-14 02:00:00,0.0,998.0067222000001,0.0,100.0,12.52666667,0.281666667,238.09533933333333 -2016-06-14 03:00:00,0.0,997.8618332999998,0.0,100.0,12.705,0.303083333,238.09517036666668 -2016-06-14 04:00:00,0.0,997.6516111,4.163,100.0,12.63416667,0.131,238.09567726666668 -2016-06-14 05:00:00,0.0,997.7091389000001,31.55,100.0,12.95833333,0.072583333,238.09432553333332 -2016-06-14 06:00:00,31.97454936,997.8333332999998,46.44,100.0,13.5325,0.290583333,238.0922979833333 -2016-06-14 07:00:00,7.435165007999999,997.7158611,124.64416670000001,99.36666667,14.085,0.801083333,238.0934807333333 -2016-06-14 08:00:00,0.0,997.65,245.83333330000002,93.13333333,15.80833333,0.728916667,238.09432553333332 -2016-06-14 09:00:00,0.0,997.43925,336.55,87.18333333,17.21333333,0.9288333329999999,238.09449451666669 -2016-06-14 10:00:00,0.0,997.3551110999999,358.4416667,82.13,17.535,0.626083333,238.0922979833333 -2016-06-14 11:00:00,0.0,996.8991944,410.85,78.7175,18.6,0.752083333,238.09111525 -2016-06-14 12:00:00,0.0,996.7733889000001,379.9833333,78.75,18.96833333,0.8109999999999999,238.08824288333332 -2016-06-14 13:00:00,0.0,996.34275,419.35,78.19916667,18.7675,1.8495833330000002,238.0880739 -2016-06-14 14:00:00,0.0,995.975,286.09166669999996,76.64333333,18.805,1.4365833330000002,238.08942561666666 -2016-06-14 15:00:00,0.0,995.7666667000001,294.4258333,76.255,19.68666667,0.94025,238.08858080000002 -2016-06-14 16:00:00,0.0,995.4900556,266.14916669999997,74.5325,19.51583333,0.778833333,238.08824286666666 -2016-06-14 17:00:00,0.0,995.5725832999999,204.08333330000002,74.36333333,19.34583333,0.991833333,238.0855394666667 -2016-06-14 18:00:00,0.0,995.3,110.36666670000001,79.28833333,18.51416667,0.9500833329999999,238.08739805000002 -2016-06-14 19:00:00,0.0,995.6397777999999,40.125,87.03333333,17.315,0.861166667,238.08638428333336 -2016-06-14 20:00:00,10.04082259,996.1440832999999,2.828083333,93.70833333,16.08916667,0.574666667,238.08638425000004 -2016-06-14 21:00:00,0.0,996.4599444,0.055416667,99.775,14.33916667,0.259583333,238.08756703333336 -2016-06-14 22:00:00,2.483658576,996.68575,0.0,99.30833333,13.97916667,0.27899999999999997,238.08655325000004 -2016-06-14 23:00:00,0.0,996.6975832999999,0.0,100.0,13.80666667,0.137083333,238.08706013333335 -2016-06-15 00:00:00,0.0,996.5225832999998,0.0,100.0,13.33083333,0.475,238.0880739 -2016-06-15 01:00:00,0.0,996.2774167000001,0.0,100.0,12.7325,0.181666667,238.0884118166667 -2016-06-15 02:00:00,0.0,996.4983889,0.0,100.0,12.14333333,0.21933333300000002,238.08841180000002 -2016-06-15 03:00:00,0.0,996.0435556,0.008,100.0,12.05666667,0.1715,238.08858078333333 -2016-06-15 04:00:00,0.0,995.8182777999999,3.7569999999999997,100.0,11.63583333,0.141416667,238.08689118333334 -2016-06-15 05:00:00,0.0,995.9540278,40.72416667,100.0,11.32083333,0.03975,238.08672220000003 -2016-06-15 06:00:00,0.0,996.5365556,135.4833333,99.38333333,13.2025,0.674333333,238.08401878333333 -2016-06-15 07:00:00,0.0,996.6266111,158.66666669999998,89.5,15.51083333,0.8039166670000001,238.08300500000004 -2016-06-15 08:00:00,5.03670708,996.95,103.3516667,93.6,15.01166667,0.7170833329999999,238.08520153333336 -2016-06-15 09:00:00,2.844900864,996.9833332999999,279.2416667,92.36666667,15.28583333,1.5075,238.089932525 -2016-06-15 10:00:00,0.0,997.0008056,339.9583333,85.21666667,16.72416667,1.5666666669999998,238.08790493333333 -2016-06-15 11:00:00,0.0,996.81425,156.6716667,90.14166667,15.87333333,1.079833333,238.07938919999998 -2016-06-15 12:00:00,2.715575064,996.9524167000002,150.7583333,88.91666667,15.395,0.995166667,238.0745568333333 -2016-06-15 13:00:00,0.0,997.2282222000001,371.6,85.82333333,16.3675,1.5530000000000002,238.0725292666667 -2016-06-15 14:00:00,72.04357524,997.0709722000001,280.8716667,83.29333333,15.76083333,1.23525,238.07134655000004 -2016-06-15 15:00:00,298.60587660000004,997.70725,48.59366667,94.725,13.15166667,1.7005833330000002,238.0760775 -2016-06-15 16:00:00,12.16275792,997.6825277999999,188.7025,99.50833333,11.25166667,0.28575,238.11003911666668 -2016-06-15 17:00:00,0.0,997.4650556,299.6341667,86.88333333,15.44666667,1.121916667,238.11950108333338 -2016-06-15 18:00:00,0.0,997.5916667000001,69.0825,85.10833333,16.525,1.7349166669999998,238.1184873166667 -2016-06-15 19:00:00,0.0,997.73575,22.0275,95.56666667,14.2125,1.243083333,238.11696665000002 -2016-06-15 20:00:00,0.0,997.9798332999999,4.55575,100.0,11.86166667,0.37941666700000004,238.1134183833333 -2016-06-15 21:00:00,0.0,998.6473056,0.083583333,100.0,10.28083333,0.107416667,238.1100391333333 -2016-06-15 22:00:00,0.0,999.1440832999999,0.0,100.0,9.085,0.22116666699999998,238.1085184833333 -2016-06-15 23:00:00,0.0,999.2817222000001,0.0,100.0,8.35725,0.302833333,238.10767365 -2016-06-16 00:00:00,0.0,999.3166667000002,0.0,100.0,7.856,0.202416667,238.10649093333333 -2016-06-16 01:00:00,0.0,999.2075277999999,0.0,100.0,7.399666667000001,0.20825,238.1042944 -2016-06-16 02:00:00,0.0,999.0008056,0.0,100.0,7.061333332999999,0.36125,238.10361853333333 -2016-06-16 03:00:00,0.0,999.4123611,0.039916667,100.0,6.59725,0.201,238.10192891666668 -2016-06-16 04:00:00,0.0,999.16775,8.19225,100.0,6.656833333,0.307916667,238.1024358 -2016-06-16 05:00:00,0.0,999.1139722000001,51.055,100.0,8.34225,0.33675,238.10040821666666 -2016-06-16 06:00:00,0.0,999.8706945,86.39,100.0,9.308333333,0.227333333,238.09686 -2016-06-16 07:00:00,0.0,999.8225832999999,97.68333333,100.0,10.45833333,0.934666667,238.09601518333332 -2016-06-16 08:00:00,0.0,1000.0290279999999,135.5333333,100.0,11.03083333,0.688583333,238.09331176666663 -2016-06-16 09:00:00,0.0,1000.209139,155.70833330000002,100.0,11.7925,0.6476666670000001,238.09263593333333 -2016-06-16 10:00:00,0.0,1000.508333,182.33333330000002,99.96666667,13.48703378,0.388166667,238.09162215 -2016-06-16 11:00:00,0.0,1000.4206939999999,204.475,97.43333333,14.831946199999999,0.5924166670000001,238.09128421666665 -2016-06-16 12:00:00,0.0,1000.4709720000001,190.54166669999998,93.44166667,15.6940935,0.708583333,238.08942561666666 -2016-06-16 13:00:00,0.0,1000.26425,202.4833333,92.14166667,16.32282818,0.7395,238.08891870000002 -2016-06-16 14:00:00,0.0,1000.0016109999999,182.0908333,87.9,17.01566915,0.41775,238.09633810000003 -2016-06-16 15:00:00,0.0,999.9793056,92.40083333,94.075,16.27844691,0.374,238.10705526666672 -2016-06-16 16:00:00,4.989406224,999.6150556,126.72083329999998,92.81666667,16.07626556,0.384,238.10665730000002 -2016-06-16 17:00:00,0.0,999.5,62.79916667,93.74166667,16.07051244,0.263916667,238.10367238333336 -2016-06-16 18:00:00,0.0,999.2165243999999,49.51666667,98.61666667,15.64313723,0.200083333,238.10426935 -2016-06-16 19:00:00,0.0,998.9068056,32.49333333,99.50833333,15.37356209,0.037416667,238.1058613166667 -2016-06-16 20:00:00,0.0,998.975,12.64383333,100.0,14.52374293,0.08475,238.10486636666667 -2016-06-16 21:00:00,0.0,998.7531667000002,0.056833333,100.0,12.87012962,0.18375,238.10546331666671 -2016-06-16 22:00:00,0.0,998.51925,0.0,100.0,11.97675106,0.166833333,238.10606031666669 -2016-06-16 23:00:00,0.0,998.3474167000002,0.0,100.0,11.8115541,0.271333333,238.1066572666667 -2016-06-17 00:00:00,0.0,998.4010556,0.0,100.0,11.70060092,0.374666667,238.1060603 -2016-06-17 01:00:00,0.0,998.0963611,0.0,100.0,11.30281323,0.10591666699999999,238.10506535000002 -2016-06-17 02:00:00,0.0,998.1895556,0.0,100.0,10.91077866,0.1055,238.10526433333334 -2016-06-17 03:00:00,0.0,998.4239444,0.018333333,100.0,11.64553527,0.541,238.10387136666668 -2016-06-17 04:00:00,0.0,998.66925,4.55925,100.0,11.46390081,0.721916667,238.10327440000003 -2016-06-17 05:00:00,0.0,999.2015277999999,35.68833333,100.0,12.36549812,1.9870833330000002,238.10327440000003 -2016-06-17 06:00:00,0.0,999.6109167000001,122.19833329999999,97.35833333,13.35667986,2.386666667,238.10227941666668 -2016-06-17 07:00:00,0.0,1000.360333,110.8225,94.59166667,13.72734567,2.161833333,238.0998914833333 -2016-06-17 08:00:00,0.0,1000.777583,161.685,92.45,14.36676473,2.588,238.10009048333336 -2016-06-17 09:00:00,0.0,1001.4598609999999,253.33333330000002,87.30833333,15.52478717,2.5540000000000003,238.09810056666666 -2016-06-17 10:00:00,0.0,1002.1385,276.8266667,84.0675,15.96202488,2.141083333,238.09750358333335 -2016-06-17 11:00:00,0.0,1002.7780550000001,534.2583333,77.8625,17.44304436,2.87075,238.0943197 -2016-06-17 12:00:00,0.0,1003.3286390000001,545.5,74.485,18.25423538,3.479166667,238.09213078333332 -2016-06-17 13:00:00,0.0,1003.746833,696.425,66.71583333,19.16158582,3.748333333,238.0879519 -2016-06-17 14:00:00,0.0,1004.4124449999999,379.6666667,74.6575,18.64791369,2.5299166669999997,238.08576298333332 -2016-06-17 15:00:00,32.06966131,1005.283806,354.9575,79.28,17.09045981,1.9005833330000002,238.08735495000005 -2016-06-17 16:00:00,0.0,1005.7635,232.15,81.77,16.612950199999997,2.18225,238.08755391666668 -2016-06-17 17:00:00,0.0,1006.2812220000001,240.9083333,80.43,16.98772539,3.129916667,238.08854888333335 -2016-06-17 18:00:00,0.0,1006.887444,88.28083333,81.295,16.29159692,2.8545833330000003,238.08815090000004 -2016-06-17 19:00:00,0.0,1007.1833330000001,48.49916667,85.43333333,15.40890274,1.8785,238.08834988333334 -2016-06-17 20:00:00,0.0,1007.5968330000001,12.71116667,92.94166667,13.96322391,1.4579166669999999,238.0887478666667 -2016-06-17 21:00:00,0.0,1008.235917,0.12025,98.3,12.20851992,0.128333333,238.08854888333335 -2016-06-17 22:00:00,0.0,1008.4812220000001,0.0,100.0,11.43924455,0.3545,238.08775291666666 -2016-06-17 23:00:00,0.0,1008.8135,0.0,100.0,10.80557861,0.299,238.0879519 -2016-06-18 00:00:00,0.0,1009.128639,0.0,100.0,9.197332825,0.20975,238.08834986666662 -2016-06-18 01:00:00,0.0,1009.4072779999999,0.0,100.0,8.666894441,0.49875,238.0881509 -2016-06-18 02:00:00,0.0,1009.628639,0.0,100.0,8.818694828,0.47083333299999997,238.08854888333335 -2016-06-18 03:00:00,0.0,1009.7822779999999,0.044166667,100.0,8.146565124,0.224583333,238.08834990000003 -2016-06-18 04:00:00,0.0,1010.146833,6.82825,100.0,8.534736876,0.0955,238.08735493333336 -2016-06-18 05:00:00,0.0,1010.7181939999999,30.785,100.0,9.751112471,0.087,238.08476800000003 -2016-06-18 06:00:00,0.0,1010.972889,73.68583333,100.0,11.76306345,0.6316666670000001,238.085564 -2016-06-18 07:00:00,0.0,1011.4239439999999,191.405,92.65,14.60921797,2.145083333,238.08437001666667 -2016-06-18 08:00:00,0.0,1011.6322779999999,187.9666667,88.14166667,15.49191215,2.264333333,238.08317605000002 -2016-06-18 09:00:00,0.0,1012.071833,429.7,82.29583333,17.22360362,2.1390000000000002,238.07859921666667 -2016-06-18 10:00:00,0.0,1012.477583,428.6416666999999,80.41416667,17.46112561,2.027166667,238.07780323333336 -2016-06-18 11:00:00,0.0,1012.392722,623.7333332999999,77.0575,18.18601972,2.40225,238.07899721666664 -2016-06-18 12:00:00,0.0,1012.168778,620.25,71.11083333,19.17720145,2.981416667,238.0750173166667 -2016-06-18 13:00:00,0.0,1011.9593890000001,604.8083333,66.7275,19.88237055,2.940416667,238.07322638333335 -2016-06-18 14:00:00,0.0,1012.029111,283.425,68.90416667,19.23966399,2.2215833330000003,238.07163445000003 -2016-06-18 15:00:00,0.0,1012.4333330000001,247.7416667,77.08166667,17.80220391,1.486083333,238.07163445000003 -2016-06-18 16:00:00,0.0,1012.3296939999999,312.2416667,76.9275,18.05205403,1.599666667,238.07143546666666 -2016-06-18 17:00:00,0.0,1012.8135,223.425,72.8075,18.25505725,1.58375,238.0692465333333 -2016-06-18 18:00:00,0.0,1013.09425,139.4716667,74.90583333,17.77261639,1.114166667,238.06944554999998 -2016-06-18 19:00:00,0.0,1013.654111,62.13166667,80.69666667,16.14283747,1.3908333330000002,238.06944553333332 -2016-06-18 20:00:00,0.0,1014.177583,16.99333333,86.69166667,14.73496491,1.2864166670000001,238.07044048333333 -2016-06-18 21:00:00,0.0,1014.822889,0.1015,96.85833333,12.68602953,0.91475,238.07083848333332 -2016-06-18 22:00:00,0.0,1015.0765279999999,0.0,95.25833333,13.32709234,1.36475,238.07282843333334 -2016-06-18 23:00:00,0.0,1015.3166669999999,0.0,95.89166667,12.89725151,1.52075,238.07481836666668 -2016-06-19 00:00:00,0.0,1015.651528,0.0,96.70833333,12.48631381,1.211083333,238.07422136666665 -2016-06-19 01:00:00,0.0,1016.035917,0.0,97.34166667,12.45754817,1.3745,238.07362438333334 -2016-06-19 02:00:00,0.0,1016.245306,0.0,97.40833333,11.71539468,1.095,238.07422138333334 -2016-06-19 03:00:00,0.0,1016.4848609999999,0.020666667,99.71666667,11.19596943,1.199,238.07402238333336 -2016-06-19 04:00:00,0.0,1017.145778,1.84175,98.725,12.00140732,1.287583333,238.07123645000001 -2016-06-19 05:00:00,0.0,1017.602583,24.56833333,97.49166667,12.36796375,1.20525,238.07203243333333 -2016-06-19 06:00:00,0.0,1017.9369720000001,88.315,96.23333333,12.874239,1.5801666669999999,238.07223141666668 -2016-06-19 07:00:00,0.0,1018.369722,237.6333333,93.85,14.06102708,1.6438333330000001,238.07103748333336 -2016-06-19 08:00:00,0.0,1019.0619720000001,165.3666667,96.24166667,13.88268012,1.1674166670000001,238.07103748333336 -2016-06-19 09:00:00,27.35569795,1019.232278,333.7333333,91.64166667,14.64948987,1.3964166669999998,238.07183343333335 -2016-06-19 10:00:00,5.505087408,1019.5931939999999,175.18333330000002,86.41666667,15.07850883,1.204166667,238.0714354666667 -2016-06-19 11:00:00,0.0,1019.910917,271.875,82.375,15.71053101,1.366166667,238.07024150000004 -2016-06-19 12:00:00,0.0,1020.3203060000001,254.55,79.7625,15.60944034,1.73275,238.06785356666668 -2016-06-19 13:00:00,0.0,1020.232278,313.0083333,74.10583333,16.52090016,1.72225,238.06725660000004 -2016-06-19 14:00:00,0.0,1020.301056,264.475,73.32166667,16.64746897,1.2804166670000001,238.06526668333333 -2016-06-19 15:00:00,0.0,1020.158333,210.4,70.89416667,16.71157525,1.2705,238.0682515666667 -2016-06-19 16:00:00,0.0,1020.154694,196.3,70.8375,17.00662852,0.88725,238.06566463333334 -2016-06-19 17:00:00,0.0,1019.914083,117.575,71.17666667,16.82170655,0.834666667,238.06626161666668 -2016-06-19 18:00:00,0.0,1019.770306,93.24833333,67.25666667,17.12826608,0.7060833329999999,238.06566465 -2016-06-19 19:00:00,0.0,1019.75575,66.90416667,70.8,16.44939699,0.787833333,238.06566463333334 -2016-06-19 20:00:00,0.0,1019.901528,9.74225,93.43333333,12.60959512,0.557916667,238.06586363333335 -2016-06-19 21:00:00,0.0,1020.3812220000001,0.09958333300000001,99.56666667,9.998496966,0.591166667,238.0666596166667 -2016-06-19 22:00:00,0.0,1020.55,0.0,100.0,8.917895189,0.6489166670000001,238.06904753333333 -2016-06-19 23:00:00,0.0,1020.573944,0.0,100.0,8.020325062000001,0.39175,238.07063948333337 -2016-06-20 00:00:00,0.0,1020.5068060000001,0.0,100.0,7.045827397999999,0.24925,238.0710374833333 -2016-06-20 01:00:00,0.0,1020.4072779999999,0.0,100.0,6.548428405,0.5005,238.0726294333333 -2016-06-20 02:00:00,0.0,1020.1318060000001,0.0,100.0,6.078644425,0.885,238.07342538333333 -2016-06-20 03:00:00,0.0,1019.871361,0.0705,100.0,5.694992987999999,0.7440000000000001,238.07183343333335 -2016-06-20 04:00:00,0.0,1019.8510560000001,9.36275,100.0,5.431253171,0.48108333299999995,238.07243043333332 -2016-06-20 05:00:00,0.0,1019.8072779999999,90.29083333,99.93333333,7.262062816,0.054916667,238.0708384666667 -2016-06-20 06:00:00,0.0,1019.4542220000001,205.2666667,93.18333333,11.03159435,0.4005,238.07103745000003 -2016-06-20 07:00:00,0.0,1019.0,199.1166667,89.86666667,13.50954868,0.998416667,238.07083848333335 -2016-06-20 08:00:00,0.0,1018.8901390000001,80.3525,81.83583333,16.1485906,0.980833333,238.0676546166667 -2016-06-20 09:00:00,0.0,1018.2995279999999,345.7666667,72.18833333,18.25670101,0.825833333,238.0670576166667 -2016-06-20 10:00:00,0.0,1017.5484720000001,547.2916667000001,65.22083333,19.20432334,1.871,238.06407271666671 -2016-06-20 11:00:00,0.0,1017.0411949999999,659.9583332999999,59.33583333,20.15276756,2.004916667,238.06088880000004 -2016-06-20 12:00:00,0.0,1016.5068060000001,581.5083333,56.455,20.86368978,1.98175,238.0592968666667 -2016-06-20 13:00:00,0.0,1015.7984720000001,623.6583333,55.6425,21.33955564,2.5660000000000003,238.0585009 -2016-06-20 14:00:00,0.0,1015.191194,365.175,56.4575,20.78561162,2.536333333,238.05670996666663 -2016-06-20 15:00:00,0.0,1014.4115,305.6333333,57.86166667,20.802871,2.59575,238.055715 -2016-06-20 16:00:00,0.0,1013.808917,209.3916667,59.70166667,20.31549889,2.762083333,238.05491901666667 -2016-06-20 17:00:00,0.0,1013.3427220000001,109.08083329999998,65.0,19.52485475,2.40825,238.05491903333333 -2016-06-20 18:00:00,0.0,1013.122417,48.04083333,82.56333333,17.15374422,1.258666667,238.05472001666666 -2016-06-20 19:00:00,0.0,1012.99425,19.02916667,94.14166667,15.60533096,0.9940000000000001,238.05690895 -2016-06-20 20:00:00,16.81601448,1013.284861,6.563666667000001,97.45,14.77277118,1.9850833330000002,238.0592968666667 -2016-06-20 21:00:00,45.58973587,1013.53075,0.0,99.95,14.37333973,2.315083333,238.0618837833334 -2016-06-20 22:00:00,22.37747914,1013.098472,0.0,100.0,14.51716793,2.02975,238.06228178333336 -2016-06-20 23:00:00,5.77550244,1012.940611,0.0,99.38333333,14.92974938,2.821416667,238.0662616166667 -2016-06-21 00:00:00,0.0,1013.116667,0.0,99.70833333,15.04974319,2.844083333,238.06646061666666 -2016-06-21 01:00:00,0.0,1013.331222,0.0,99.925,15.08097445,2.735666667,238.06825156666665 -2016-06-21 02:00:00,0.0,1013.6572779999999,0.0,100.0,15.12782135,2.489583333,238.06845056666666 -2016-06-21 03:00:00,5.484245352,1013.896833,0.0,100.0,15.13768385,1.543166667,238.06825158333334 -2016-06-21 04:00:00,0.0,1014.502583,3.882666667,100.0,15.16973699,1.5501666669999998,238.0682515666667 -2016-06-21 05:00:00,0.0,1014.922889,19.17541667,100.0,15.35301521,1.275416667,238.0696445333334 -2016-06-21 06:00:00,0.0,1015.020306,44.39,100.0,15.68340912,0.7566666670000001,238.07123645000001 -2016-06-21 07:00:00,0.0,1015.362444,152.43333330000002,96.65833333,16.87923783,1.4955833330000001,238.07024150000004 -2016-06-21 08:00:00,0.0,1016.166083,176.69166669999998,92.23333333,17.64604758,1.61675,238.06825155 -2016-06-21 09:00:00,0.0,1016.666667,193.0,89.05,18.24437287,1.314416667,238.06785356666668 -2016-06-21 10:00:00,5.3300533439999995,1016.902583,196.75,85.675,18.868176300000002,1.183666667,238.06904755000002 -2016-06-21 11:00:00,0.0,1017.113028,339.375,81.82083333,19.85771429,1.072,238.06785358333335 -2016-06-21 12:00:00,0.0,1017.16925,491.2333333000001,76.38666667,21.61734952,1.151333333,238.06387371666668 -2016-06-21 13:00:00,0.0,1017.072417,527.175,70.895,22.63565314,1.408916667,238.05889888333334 -2016-06-21 14:00:00,0.0,1017.1,338.2916667,71.43083333,22.51648121,1.5580833330000001,238.05670995000003 -2016-06-21 15:00:00,0.0,1017.135917,194.05833330000002,77.69166667,21.1135399,2.0340833330000003,238.05790391666667 -2016-06-21 16:00:00,0.0,1017.151056,213.80833330000002,76.90916667,21.74063083,1.767166667,238.05631198333333 -2016-06-21 17:00:00,0.0,1016.889083,140.91666669999998,78.495,21.70035894,0.5925,238.05651096666668 -2016-06-21 18:00:00,0.0,1017.0931939999999,47.31916667,85.23833333,20.63274279,0.62525,238.05452101666665 -2016-06-21 19:00:00,0.0,1017.460917,21.44916667,98.125,18.547644899999998,0.8240000000000001,238.05611298333335 -2016-06-21 20:00:00,5.198193336,1017.5703060000001,3.538583333,98.20833333,17.82028517,0.7905,238.05790391666667 -2016-06-21 21:00:00,0.0,1017.8765279999999,0.0535,99.3,17.38715683,0.883,238.05869988333336 -2016-06-21 22:00:00,0.0,1018.223944,0.0,99.225,17.43235998,1.136666667,238.05889886666668 -2016-06-21 23:00:00,0.0,1018.511972,0.0,99.25,17.12826608,0.40700000000000003,238.05989383333338 -2016-06-22 00:00:00,0.0,1018.541667,0.0,100.0,16.48638139,0.00075,238.06148578333338 -2016-06-22 01:00:00,0.0,1018.5713609999999,0.0,100.0,16.15927498,0.0,238.06188378333334 -2016-06-22 02:00:00,0.0,1018.4203060000001,0.0,100.0,15.90613736,0.0,238.06327673333337 -2016-06-22 03:00:00,0.0,1018.4296939999999,0.0,100.0,15.82805919,0.0,238.06466966666673 -2016-06-22 04:00:00,0.0,1018.6312220000001,3.498583333,100.0,16.05736243,0.0,238.06327673333337 -2016-06-22 05:00:00,0.0,1018.982278,17.33666667,100.0,16.48555952,0.00125,238.0620827666667 -2016-06-22 06:00:00,0.0,1019.352583,91.525,100.0,17.70768824,0.44983333299999995,238.0624807666667 -2016-06-22 07:00:00,0.0,1019.7135,168.45833330000002,93.56666667,19.65388919,0.876416667,238.06168478333336 -2016-06-22 08:00:00,0.0,1020.107278,162.04166669999998,88.91666667,20.23002384,1.04225,238.05909788333335 -2016-06-22 09:00:00,0.0,1020.1656109999999,296.4333333,84.01916667,21.54173699,1.220666667,238.0577049166667 -2016-06-22 10:00:00,0.0,1020.154695,480.61666669999994,76.52833333,23.31945348,1.185916667,238.05491901666667 -2016-06-22 11:00:00,0.0,1019.949528,355.9416667,77.04083333,23.57012548,0.719916667,238.0541230166667 -2016-06-22 12:00:00,0.0,1020.005167,374.5166667,74.81583333,24.49966656,0.479833333,238.05133713333336 -2016-06-22 13:00:00,0.0,1019.897417,274.6833333,72.155,24.76841981,0.512166667,238.05014316666666 -2016-06-22 14:00:00,0.0,1019.91925,276.1416667,71.82083333,25.07580121,0.48458333299999995,238.04835221666667 -2016-06-22 15:00:00,0.0,1019.794833,174.8583333,75.02666667,24.95662928,0.4395,238.04934719999997 -2016-06-22 16:00:00,0.0,1019.535917,150.1416667,77.43333333,24.41172589,0.6315,238.0513371333333 -2016-06-22 17:00:00,0.0,1019.4078609999999,203.7741667,71.53333333,25.29195444,0.5488333329999999,238.05034218333336 -2016-06-22 18:00:00,0.0,1019.2906109999999,65.83166667,72.15666667,24.91060426,0.422833333,238.05014319999998 -2016-06-22 19:00:00,0.0,1019.214083,50.82833333,83.8225,23.261922199999997,0.214,238.0495462 -2016-06-22 20:00:00,0.0,1019.008333,12.47141667,97.175,19.80100489,0.213,238.05113813333332 -2016-06-22 21:00:00,0.0,1019.102583,0.1695,99.99166667,17.44633186,0.417333333,238.05253111666664 -2016-06-22 22:00:00,0.0,1019.073472,0.0,100.0,16.15105623,0.36808333299999996,238.05531701666666 -2016-06-22 23:00:00,0.0,1018.771361,0.0,100.0,15.25110266,0.29683333300000003,238.05670996666672 -2016-06-23 00:00:00,0.0,1018.689083,0.0,100.0,14.43169288,0.16925,238.05770493333333 -2016-06-23 01:00:00,0.0,1018.391667,0.0,100.0,13.97473016,0.11675,238.0585009 -2016-06-23 02:00:00,0.0,1018.090139,0.0,100.0,13.5892706,0.27,238.0616848 -2016-06-23 03:00:00,0.0,1017.863028,0.054916667,100.0,13.17011414,0.09375,238.0618837666667 -2016-06-23 04:00:00,0.0,1017.659389,5.346416667,100.0,13.18737353,0.134083333,238.06228178333336 -2016-06-23 05:00:00,0.0,1017.645306,73.64833333,100.0,14.81468682,0.045,238.06208278333335 -2016-06-23 06:00:00,0.0,1017.725,198.85,96.05,18.40628233,0.6335833329999999,238.06248076666668 -2016-06-23 07:00:00,0.0,1017.6489439999999,191.4941667,85.79666667,22.16307479,0.752916667,238.05969485000003 -2016-06-23 08:00:00,0.0,1017.572417,52.06833333,73.94666667,25.19004189,0.8656666670000001,238.05869986666667 -2016-06-23 09:00:00,0.0,1017.3115,401.3958333,67.07166667,26.66202074,0.879916667,238.05551599999998 -2016-06-23 10:00:00,0.0,1016.88075,625.875,65.01083333,27.93757136,1.055916667,238.05412303333335 -2016-06-23 11:00:00,0.0,1016.50575,685.825,62.03333333,29.30352828,1.144416667,238.04855123333334 -2016-06-23 12:00:00,0.0,1016.2365,711.7583333,59.765,30.14101932,1.329166667,238.04357640000003 -2016-06-23 13:00:00,0.0,1015.8286390000001,702.85,54.9975,31.22342922,1.535916667,238.03939751666667 -2016-06-23 14:00:00,0.0,1015.4375560000001,659.4916667,53.6825,32.16940781,1.4038333330000001,238.03621363333332 -2016-06-23 15:00:00,0.0,1014.88075,587.8666667,53.03,32.68883306,1.2488333329999999,238.03322874999995 -2016-06-23 16:00:00,0.0,1014.3115,497.3916666999999,49.92916667,33.00854259,1.150166667,238.0334277333333 -2016-06-23 17:00:00,0.0,1013.7792220000001,296.1641667,49.04916667,32.28036099,1.41025,238.03322873333332 -2016-06-23 18:00:00,0.0,1013.319833,60.0025,54.03333333,31.08535415,0.824833333,238.03322875 -2016-06-23 19:00:00,0.0,1012.573472,64.93416667,64.58583333,29.00765314,0.4585,238.03700963333335 -2016-06-23 20:00:00,0.0,1012.4203050000001,9.84525,89.275,22.83372512,0.484416667,238.03641263333336 -2016-06-23 21:00:00,0.0,1012.6822779999999,0.078916667,96.14166667,19.69991421,0.42366666700000005,238.03661161666665 -2016-06-23 22:00:00,0.0,1012.776528,0.0,96.85,19.02597638,0.22341666699999999,238.03800458333333 -2016-06-23 23:00:00,0.0,1013.352583,0.0,99.55,17.93534772,0.15666666699999998,238.03860156666667 -2016-06-24 00:00:00,0.0,1013.4333330000001,0.0,100.0,17.25730052,0.22825,238.04098948333333 -2016-06-24 01:00:00,0.0,1013.370306,0.0,100.0,16.98772538,0.2175,238.0413874666667 -2016-06-24 02:00:00,0.0,1013.516667,0.0,100.0,16.7600659,0.302,238.0425814166667 -2016-06-24 03:00:00,0.0,1013.397417,0.03525,100.0,16.54144704,0.312416667,238.0449693666667 -2016-06-24 04:00:00,0.0,1013.375,10.18008333,100.0,18.32820417,0.30041666699999997,238.04278043333332 -2016-06-24 05:00:00,0.0,1013.418194,88.60833333,97.93333333,19.09172641,0.096416667,238.04178545000002 -2016-06-24 06:00:00,0.0,1013.583333,138.1383333,89.74166667,21.643964899999997,0.44491666700000004,238.04158644999998 -2016-06-24 07:00:00,0.0,1013.664083,176.7341667,82.83333333,23.2575,0.843666667,238.0413874666667 -2016-06-24 08:00:00,0.0,1013.414083,73.69,75.255,25.72416667,0.7553333329999999,238.04019351666668 -2016-06-24 09:00:00,0.0,1013.2822779999999,390.51,72.05416667,28.00166667,0.5974166670000001,238.03521868333334 -2016-06-24 10:00:00,0.0,1013.1484720000001,603.5083333,67.2625,29.71833333,0.8051666670000001,238.03243278333332 -2016-06-24 11:00:00,0.0,1012.891667,670.6916667,65.22416667,30.48916667,1.0111666670000001,238.0276569166667 -2016-06-24 12:00:00,0.0,1012.328167,609.2,63.13,31.82333333,0.95375,238.02407503333336 -2016-06-24 13:00:00,7.8631410960000006,1013.056111,39.53333333,87.44333333,24.43916667,2.0870833330000003,238.2431667 -2016-06-24 14:00:00,0.0,1013.5084449999999,249.9666667,100.0,19.0125,1.1025833329999999,238.7450279 -2016-06-24 15:00:00,0.0,1012.627583,499.925,92.65833333,24.465,1.535833333,238.66821648333334 -2016-06-24 16:00:00,0.0,1013.065611,346.75,86.625,25.85416667,1.052166667,238.6550828833334 -2016-06-24 17:00:00,0.0,1013.025,209.5241667,84.38333333,25.53083333,1.5700833330000001,238.65010808333332 -2016-06-24 18:00:00,0.0,1013.134389,80.9,83.95,24.47583333,1.48725,238.64831711666668 -2016-06-24 19:00:00,0.0,1012.8115,74.85083333,87.15833333,24.04583333,0.42108333299999995,238.64811815 -2016-06-24 20:00:00,0.0,1012.460917,16.62741667,93.98333333,22.48083333,0.491333333,238.64334230000006 -2016-06-24 21:00:00,0.0,1012.723944,0.177583333,100.0,20.37916667,0.39299999999999996,238.63936243333333 -2016-06-24 22:00:00,0.0,1012.5786390000001,0.0,100.0,20.14,0.279583333,238.6218510166667 -2016-06-24 23:00:00,0.0,1012.772417,0.0,100.0,20.45,0.19975,238.5796644333333 -2016-06-25 00:00:00,0.0,1012.173,0.0,100.0,19.56,0.23875,238.54603456666666 -2016-06-25 01:00:00,0.0,1011.1401390000001,0.0,100.0,18.84916667,0.370833333,238.51718051666668 -2016-06-25 02:00:00,0.0,1010.759389,0.0,100.0,18.32,0.016583333000000002,238.48892346666665 -2016-06-25 03:00:00,3.59821548,1011.4598609999999,0.0,100.0,19.11083333,0.374166667,238.46205935000003 -2016-06-25 04:00:00,0.0,1010.629222,1.503166667,100.0,19.43333333,0.162833333,238.44255801666668 -2016-06-25 05:00:00,0.0,1009.248,13.91975,100.0,19.28916667,1.133166667,238.4250466 -2016-06-25 06:00:00,0.0,1010.1816949999999,14.93583333,99.73333333,19.46416667,1.166083333,238.40594326666667 -2016-06-25 07:00:00,0.0,1009.9375560000001,40.81083333,99.63333333,18.4975,0.39883333299999996,238.40017244999999 -2016-06-25 08:00:00,0.0,1009.427583,62.48916667,100.0,18.54243239,0.41716666700000005,238.39400364999997 -2016-06-25 09:00:00,15.17110291,1009.5843890000001,111.255,99.85,19.00378574,0.3295,238.38524796666664 -2016-06-25 10:00:00,10.3530913,1009.339083,207.95833330000002,96.16666667,20.23742072,0.446666667,238.37888016666668 -2016-06-25 11:00:00,0.0,1009.2963609999999,250.1,90.59166667,21.70282457,0.34266666700000004,238.36873148333333 -2016-06-25 12:00:00,0.0,1008.7266390000001,236.65,88.775,22.10472164,0.41825,238.36116976666665 -2016-06-25 13:00:00,0.0,1008.05575,171.2208333,90.33333333,21.96335907,1.0455,238.35062311666664 -2016-06-25 14:00:00,0.0,1007.9978890000001,150.515,97.2,20.48480522,1.680833333,238.34365835000003 -2016-06-25 15:00:00,11.39531141,1008.7207779999999,114.53083329999998,96.2,18.23368849,2.562583333,238.33868349999997 -2016-06-25 16:00:00,0.0,1009.5400279999999,50.70166667,98.38333333,15.93079362,2.349166667,238.33350966666663 -2016-06-25 17:00:00,5.136267528,1009.839083,52.75916667,96.40833333,15.60861846,1.25425,238.3267439166667 -2016-06-25 18:00:00,0.0,1010.541556,47.2025,92.41666667,15.92832799,1.336833333,238.31659524999998 -2016-06-25 19:00:00,0.0,1011.6145560000001,44.54083333,88.56666667,16.00229678,1.0573333329999999,238.30724256666667 -2016-06-25 20:00:00,0.0,1011.955167,7.3755,93.58333333,15.34808396,0.813416667,238.30127276666667 -2016-06-25 21:00:00,0.0,1012.6921390000001,0.0705,96.30833333,14.86810872,1.30525,238.29410900000002 -2016-06-25 22:00:00,0.0,1013.50775,0.0,96.61666667,14.35936785,1.5866666669999998,238.28853719999998 -2016-06-25 23:00:00,0.0,1013.914083,0.0,97.925,13.91884263,1.93975,238.28236838333336 -2016-06-26 00:00:00,0.0,1013.616667,0.0,98.70833333,13.30901109,1.8435,238.27739356666666 -2016-06-26 01:00:00,0.0,1013.4234720000001,0.0,99.99166667,12.45754817,1.1975833329999999,238.2698318 -2016-06-26 02:00:00,0.0,1013.332278,0.0,100.0,11.88470101,1.147916667,238.26525498333334 -2016-06-26 03:00:00,0.0,1013.486972,0.025833332999999997,100.0,11.03077247,1.02525,238.25749423333332 -2016-06-26 04:00:00,0.0,1013.583333,8.7585,100.0,11.2502132,1.280666667,238.25192238333332 -2016-06-26 05:00:00,0.0,1014.119722,90.175,96.93333333,12.78465458,0.24916666699999998,238.24376368333333 -2016-06-26 06:00:00,0.0,1014.603639,161.8833333,91.19166667,14.97988378,0.379,238.23500796666667 -2016-06-26 07:00:00,0.0,1014.666667,94.34916667,93.26666667,14.48429291,0.7759999999999999,238.2340130166667 -2016-06-26 08:00:00,0.0,1014.8848609999999,96.80416667,87.58333333,15.92175299,1.477416667,238.22724723333332 -2016-06-26 09:00:00,0.0,1015.021361,384.9741667,74.29833333,17.21374112,1.6539166669999998,238.21968548333328 -2016-06-26 10:00:00,0.0,1014.8593890000001,569.0916667,68.87333333,18.203279100000003,2.155416667,238.21371568333328 -2016-06-26 11:00:00,0.0,1014.622417,565.4666667,65.27333333,18.96022635,2.4735,238.21053181666664 -2016-06-26 12:00:00,0.0,1014.497417,632.45,61.325,19.80429239,2.145333333,238.20416401666662 -2016-06-26 13:00:00,0.0,1013.927111,737.25,56.11083333,20.76013348,2.38525,238.20117911666662 -2016-06-26 14:00:00,0.0,1013.779694,560.525,53.76916667,21.19983682,2.0495,238.1930203833334 -2016-06-26 15:00:00,0.0,1013.642722,482.9333333000001,56.135,21.07491176,2.43375,238.1876475666667 -2016-06-26 16:00:00,0.0,1013.5286390000001,436.1083333000001,52.54583333,21.40037442,2.365333333,238.18127978333337 -2016-06-26 17:00:00,0.0,1013.4546939999999,116.2383333,63.09166667,19.46321409,1.68575,238.18147880000004 -2016-06-26 18:00:00,0.0,1013.760917,86.89416667,69.05583333,18.5575074,1.516083333,238.17829486666665 -2016-06-26 19:00:00,0.0,1014.2015279999999,59.33833333,69.50083333,17.34195368,1.3501666669999999,238.17411601666663 -2016-06-26 20:00:00,0.0,1014.482278,11.13908333,85.9125,14.7785243,0.8210833329999999,238.16993716666664 -2016-06-26 21:00:00,0.0,1014.608333,0.1395,87.40833333,14.25581155,0.95275,238.16754921666666 -2016-06-26 22:00:00,0.0,1014.9765279999999,0.0,94.25833333,13.17175789,0.32808333300000003,238.1659572833333 -2016-06-26 23:00:00,4.979375784,1015.197889,0.0,98.075,12.06962298,0.142166667,238.16337038333336 -2016-06-27 00:00:00,0.0,1015.409389,0.0,100.0,10.88530052,0.386166667,238.15939051666666 -2016-06-27 01:00:00,0.0,1015.166667,0.0,99.93333333,10.58367225,0.768083333,238.15879353333335 -2016-06-27 02:00:00,0.0,1015.534861,0.0,98.85833333,11.48937895,1.63825,238.15441566666664 -2016-06-27 03:00:00,0.0,1015.514083,0.043166667,99.95,10.43820031,0.6203333329999999,238.15302275 -2016-06-27 04:00:00,0.0,1015.6431949999999,4.875,100.0,9.506193601,0.10541666699999999,238.15023681666662 -2016-06-27 05:00:00,0.0,1015.952583,96.205,98.46666667,10.91899742,0.0915,238.14705293333336 -2016-06-27 06:00:00,0.0,1016.141667,171.4825,91.35,13.80378008,1.027666667,238.14327206666667 -2016-06-27 07:00:00,0.0,1016.4145560000001,151.7641667,88.925,14.668393,1.80125,238.14068513333328 -2016-06-27 08:00:00,0.0,1016.715611,80.13083333,80.055,16.22009376,1.736,238.13471533333333 -2016-06-27 09:00:00,0.0,1016.598472,307.7583333,76.43833333,16.92855035,2.05775,238.1359093 -2016-06-27 10:00:00,0.0,1016.3380279999999,409.475,74.58916667,17.52358815,2.640333333,238.13372036666667 -2016-06-27 11:00:00,0.0,1016.1260550000001,342.6833333,73.1775,18.07917592,2.336083333,238.13093446666664 -2016-06-27 12:00:00,0.0,1015.872417,186.05833330000002,76.04166667,17.65591009,2.4908333330000003,238.13013850000002 -2016-06-27 13:00:00,0.0,1015.9239439999999,281.5666667,81.67666667,17.55892879,3.103916667,238.1263576 -2016-06-27 14:00:00,0.0,1015.792722,288.75,81.41833333,17.97315399,2.3889166669999997,238.1233727166667 -2016-06-27 15:00:00,0.0,1015.698944,217.6083333,82.81666667,18.18108847,2.594166667,238.11780090000005 -2016-06-27 16:00:00,0.0,1015.379222,121.4625,83.275,18.24601662,2.22875,238.11919385000002 -2016-06-27 17:00:00,0.0,1014.958333,51.4075,87.25,17.58769443,2.1156666669999997,238.12197975000004 -2016-06-27 18:00:00,0.0,1014.753167,74.79,90.18333333,17.30332554,2.271583333,238.12038780000003 -2016-06-27 19:00:00,0.0,1014.5583330000001,30.54416667,90.74166667,17.18990673,2.301583333,238.11979083333335 -2016-06-27 20:00:00,0.0,1014.646833,9.41625,92.33333333,16.83323405,1.90425,238.1179999 -2016-06-27 21:00:00,0.0,1015.0713609999999,0.11408333300000001,91.68333333,16.60166667,2.20175,238.11700493333333 -2016-06-27 22:00:00,0.0,1015.2728890000001,0.0,97.15833333,16.27333333,1.625083333,238.1166069666667 -2016-06-27 23:00:00,0.0,1015.184389,0.0,100.0,15.57166667,1.6990833330000001,238.1178009166667 -2016-06-28 00:00:00,0.0,1015.139083,0.0,100.0,15.39166667,1.50675,238.11879585000005 -2016-06-28 01:00:00,0.0,1015.1406109999999,0.0,100.0,15.33916667,1.03125,238.11979083333338 -2016-06-28 02:00:00,0.0,1014.753167,0.0,100.0,15.135,0.47808333299999994,238.1205868166667 -2016-06-28 03:00:00,0.0,1014.8468330000001,0.0,100.0,14.73666667,0.806666667,238.1187958666667 -2016-06-28 04:00:00,0.0,1015.034389,6.743333333,100.0,14.12333333,0.183666667,238.11899485000004 -2016-06-28 05:00:00,0.0,1015.082278,63.28833333,100.0,14.1975,0.308916667,238.11600996666667 -2016-06-28 06:00:00,0.0,1015.1916669999999,65.72416667,100.0,15.14,0.36266666700000005,238.11461701666667 -2016-06-28 07:00:00,0.0,1015.2036390000001,125.6225,95.81666667,15.21909492,0.8640000000000001,238.11302504999995 -2016-06-28 08:00:00,0.0,1015.3119720000001,207.825,89.48333333,16.5496658,0.43475,238.1126270833333 -2016-06-28 09:00:00,0.0,1015.1963609999999,298.95,84.95833333,17.43071623,0.5419166670000001,238.11143311666663 -2016-06-28 10:00:00,0.0,1015.05575,363.9583333,82.83333333,18.73010123,0.677666667,238.10924418333335 -2016-06-28 11:00:00,0.0,1014.668778,417.175,78.44166667,19.51910162,0.6153333329999999,238.10904519999997 -2016-06-28 12:00:00,0.0,1014.0875560000001,415.9583333,72.42583333,20.47165521,0.81225,238.10805021666667 -2016-06-28 13:00:00,0.0,1013.4208890000001,311.125,75.49833333,20.55630838,0.7625,238.10824921666668 -2016-06-28 14:00:00,0.0,1012.822417,476.3083333000001,71.06583333,21.69049644,0.880916667,238.10566231666667 -2016-06-28 15:00:00,0.0,1012.323472,334.8666667,70.80166667,21.63378703,0.906083333,238.10426935 -2016-06-28 16:00:00,0.0,1011.8854439999999,379.6166667,65.77083333,22.2329342,1.32675,238.10347338333335 -2016-06-28 17:00:00,0.0,1011.2828609999999,215.7833333,67.295,21.80062774,1.40025,238.10287640000004 -2016-06-28 18:00:00,0.0,1010.6661939999999,104.95583329999998,70.07416667,21.18668681,1.5530000000000002,238.10387136666668 -2016-06-28 19:00:00,0.0,1010.3343890000001,34.11166667,81.3125,19.83634553,1.19425,238.1032744 -2016-06-28 20:00:00,0.0,1009.872417,4.65775,85.725,19.03748264,0.95725,238.10327440000003 -2016-06-28 21:00:00,0.0,1009.8296939999999,0.0155,87.11666667,18.68654184,1.848916667,238.10188143333335 -2016-06-28 22:00:00,0.0,1009.456806,0.0,90.975,17.67645697,1.051666667,238.1032744 -2016-06-28 23:00:00,0.0,1009.042722,0.0,89.80833333,17.52112252,1.666333333,238.10227940000004 -2016-06-29 00:00:00,0.0,1008.6021109999999,0.0,87.51666667,17.55646316,1.9650833330000002,238.10208043333333 -2016-06-29 01:00:00,0.0,1008.348472,0.0,92.525,16.917044100000002,1.7750833330000002,238.1026774166667 -2016-06-29 02:00:00,5.4601777920000005,1007.98075,0.0,95.71666667,16.38200321,1.20625,238.1028764 -2016-06-29 03:00:00,0.0,1007.733333,0.0,92.15833333,16.96800038,2.429916667,238.1042693666667 -2016-06-29 04:00:00,0.0,1007.985917,4.637416667,91.275,17.10196607,1.9996666669999998,238.10108546666672 -2016-06-29 05:00:00,0.0,1008.210917,40.46916667,89.20833333,17.58605068,2.8015,238.09949353333334 -2016-06-29 06:00:00,0.0,1008.552583,176.54166669999998,83.565,18.61586056,3.429916667,238.09730461666666 -2016-06-29 07:00:00,0.0,1008.9156109999999,204.715,78.49833333,19.36705467,3.7775,238.09511566666663 -2016-06-29 08:00:00,0.0,1009.0869720000001,97.5475,74.2625,19.69169546,3.34825,238.09332475 -2016-06-29 09:00:00,0.0,1009.127583,345.1066667,68.0725,20.30317076,2.9589999999999996,238.0941207 -2016-06-29 10:00:00,0.0,1009.473944,539.225,61.98583333,21.12340241,3.313166667,238.09073781666666 -2016-06-29 11:00:00,0.0,1009.66925,658.5666667,56.7525,21.69624956,3.5125,238.08775293333335 -2016-06-29 12:00:00,0.0,1009.916667,703.375,51.84333333,22.17869042,3.249666667,238.08476801666666 -2016-06-29 13:00:00,0.0,1009.775,704.7916667000001,51.25583333,22.55675311,3.222416667,238.08257908333334 -2016-06-29 14:00:00,0.0,1009.766667,658.9416667,45.84333333,22.80400415,2.216916667,238.07820121666668 -2016-06-29 15:00:00,0.0,1009.5281669999999,430.36666669999994,48.74,22.57416667,1.374166667,238.07720625 -2016-06-29 16:00:00,0.0,1009.0151390000001,350.025,47.50166667,22.23666667,1.169916667,238.07820121666666 -2016-06-29 17:00:00,0.0,1008.823944,273.15833330000004,48.41166667,22.675,0.700666667,238.07541533333335 -2016-06-29 18:00:00,0.0,1008.878639,95.78666667,55.9775,20.79583333,0.26375,238.07541533333335 -2016-06-29 19:00:00,0.0,1008.9630279999999,30.7125,82.31416667,18.22916667,0.168166667,238.07601229999997 -2016-06-29 20:00:00,0.0,1008.925,6.08825,91.7,15.61,0.1265,238.08039016666666 -2016-06-29 21:00:00,0.0,1009.052583,0.08783333300000001,94.675,13.36083333,0.10591666699999999,238.08098715000003 -2016-06-29 22:00:00,0.0,1009.1833330000001,0.0,96.69166667,11.725,0.01,238.0809871166667 -2016-06-29 23:00:00,0.0,1008.989083,0.0,99.53333333,10.9275,0.046166667,238.0827780666667 -2016-06-30 00:00:00,0.0,1008.4625560000001,0.0,100.0,10.445,0.07400000000000001,238.08437000000004 -2016-06-30 01:00:00,0.0,1008.277583,0.0,100.0,11.1325,0.003916667,238.0833750666667 -2016-06-30 02:00:00,0.0,1008.577583,0.0,100.0,12.03666667,0.00041666699999999996,238.0815841166667 -2016-06-30 03:00:00,0.0,1008.675,0.0,100.0,12.69583333,0.071833333,238.08078815000002 -2016-06-30 04:00:00,0.0,1008.930167,0.969333333,100.0,13.12833333,0.062666667,238.08098714999997 -2016-06-30 05:00:00,2.406519936,1009.2,8.239083333,100.0,13.49333333,0.1065,238.08039018333332 -2016-06-30 06:00:00,0.0,1009.3072779999999,23.90966667,100.0,13.76583333,0.043416667,238.08297706666667 -2016-06-30 07:00:00,4.836397896,1009.5703060000001,42.23916667,99.26666667,14.52916667,0.076083333,238.0819821166667 -2016-06-30 08:00:00,0.0,1010.033806,125.59166670000002,94.76666667,16.71083333,1.0344166670000001,238.08138513333333 -2016-06-30 09:00:00,0.0,1010.291667,310.5,89.85,17.95583333,1.4339166669999999,238.0799921833333 -2016-06-30 10:00:00,0.0,1010.377583,504.125,79.22083333,19.50166667,1.344916667,238.07919619999998 -2016-06-30 11:00:00,0.0,1010.491667,360.475,74.805,21.02916667,1.485,238.07820123333337 -2016-06-30 12:00:00,0.0,1010.522417,286.925,74.3475,21.4,1.48975,238.07581331666665 -2016-06-30 13:00:00,0.0,1010.385917,234.06666669999998,75.4225,20.44416667,1.6269999999999998,238.07680828333332 -2016-06-30 14:00:00,0.0,1010.752583,303.3166667,71.52333333,21.34666667,1.749166667,238.07183346666667 -2016-06-30 15:00:00,0.0,1010.75575,223.425,72.45083333,21.38166667,0.916416667,238.07143545000005 -2016-06-30 16:00:00,0.0,1010.509389,201.58333330000002,71.53416667,21.66583333,1.1395,238.0704404666666 -2016-06-30 17:00:00,0.0,1010.3296939999999,154.29166669999998,72.33833333,21.295,1.064166667,238.0726294 -2016-06-30 18:00:00,0.0,1010.216667,111.34,73.22833333,21.18833333,1.128416667,238.07163445 -2016-06-30 19:00:00,0.0,1010.4145560000001,43.85083333,76.4425,20.3775,1.148333333,238.07103745000003 -2016-06-30 20:00:00,0.0,1010.6739439999999,5.31375,86.0425,19.08833333,0.560583333,238.07143545 -2016-06-30 21:00:00,0.0,1011.01925,0.092,92.125,18.11083333,0.891833333,238.07402238333336 -2016-06-30 22:00:00,0.0,1011.310917,0.0,84.58333333,18.69916667,0.705666667,238.07501734999997 -2016-06-30 23:00:00,0.0,1011.40575,0.0,85.26666667,18.58833333,0.9764166670000001,238.07461936666667 -2016-01-07 00:00:00,0.0,1010.972417,0.0,88.95,18.31416667,1.9031666669999998,238.06628165000004 -2016-01-07 01:00:00,0.0,1010.947889,0.0,85.35833333,18.4925,1.63125,238.0668185166667 -2016-01-07 02:00:00,0.0,1011.072417,0.0,85.31666667,18.7425,2.096666667,238.06502896666666 -2016-01-07 03:00:00,0.0,1010.847417,0.015,90.30833333,17.81583333,1.54925,238.06323943333328 -2016-01-07 04:00:00,0.0,1010.7906109999999,8.708166667,96.9,17.03333333,0.8773333329999999,238.06252361666665 -2016-01-07 05:00:00,0.0,1011.072889,50.16833333,95.90833333,17.17833333,0.39241666700000005,238.0630605 -2016-01-07 06:00:00,0.0,1011.395306,92.26333333,93.39166667,17.55833333,1.101583333,238.06216571666664 -2016-01-07 07:00:00,0.0,1011.671833,155.61,82.59166667,19.865,1.21725,238.06288151666664 -2016-01-07 08:00:00,0.0,1011.970306,133.38333329999998,82.47166667,20.16166667,1.317083333,238.06162883333332 -2016-01-07 09:00:00,0.0,1012.021361,194.8833333,78.58833333,21.7525,1.093083333,238.05912351666666 -2016-01-07 10:00:00,0.0,1012.04425,183.1,75.94416667,22.03916667,1.4896666669999998,238.06001828333333 -2016-01-07 11:00:00,0.0,1011.978167,409.15,71.77666667,22.41166667,2.477583333,238.05858666666666 -2016-01-07 12:00:00,0.0,1011.6734720000001,278.0666667,71.59583333,22.3825,2.5213333330000003,238.05966038333335 -2016-01-07 13:00:00,0.0,1011.279694,230.3583333,70.82,22.19333333,2.343833333,238.0605551333333 -2016-01-07 14:00:00,0.0,1011.3369720000001,454.74166669999994,69.13083333,22.76583333,2.510416667,238.06180783333335 -2016-01-07 15:00:00,0.0,1011.056806,291.3333333,70.54583333,22.58833333,2.497833333,238.06198674999996 -2016-01-07 16:00:00,0.0,1010.8046949999999,261.7916667,69.53833333,22.395,2.7295,238.06037619999998 -2016-01-07 17:00:00,0.0,1010.91925,105.39166670000002,70.64333333,21.79333333,1.270833333,238.06323945 -2016-01-07 18:00:00,0.0,1010.8510560000001,91.51583333,73.9125,21.69,0.895083333,238.06502898333335 -2016-01-07 19:00:00,0.0,1010.622417,33.29083333,84.91083333,21.1525,0.46133333299999996,238.06431316666666 -2016-01-07 20:00:00,0.0,1010.3296939999999,3.893333333,92.4,19.3875,0.6645,238.06556584999998 -2016-01-07 21:00:00,0.0,1010.0151390000001,0.08175,93.88333333,17.225,1.060416667,238.06574478333334 -2016-01-07 22:00:00,0.0,1009.5615,0.0,98.19166667,16.22333333,0.1465,238.06807116666667 -2016-01-07 23:00:00,0.0,1009.2953060000001,0.0,95.00833333,18.38916667,0.875166667,238.0700396666667 -2016-02-07 00:00:00,0.0,1009.003167,0.0,86.35833333,19.75583333,1.0075,238.11155681666665 -2016-02-07 01:00:00,0.0,1008.569833,0.0,92.48333333,19.15833333,0.889833333,238.10815673333332 -2016-02-07 02:00:00,0.0,1007.9416669999999,0.0,94.73333333,18.2975,0.9863333329999999,238.10797778333333 -2016-02-07 03:00:00,0.0,1007.966667,0.016,86.91666667,18.225,1.080083333,238.10618821666662 -2016-02-07 04:00:00,0.0,1008.108333,1.5834166669999998,84.91666667,18.27333333,0.8275,238.10618824999997 -2016-02-07 05:00:00,0.0,1008.330167,20.63941667,84.425,18.61416667,1.467416667,238.10690405 -2016-02-07 06:00:00,5.310584712,1009.356694,30.11025,93.55,15.0625,1.315166667,238.10475660000006 -2016-02-07 07:00:00,0.0,1009.870306,61.6575,90.46666667,14.15833333,0.786083333,238.10350395 -2016-02-07 08:00:00,0.0,1010.270778,76.79416667,91.21666667,13.83416667,0.808083333,238.10117755000002 -2016-02-07 09:00:00,4.920031176,1010.8848609999999,83.84666667,93.55833333,13.85833333,0.46366666700000003,238.10099858333334 -2016-02-07 10:00:00,2.422933128,1011.115611,114.88083329999999,93.60833333,14.265,0.29375,238.10028276666665 -2016-02-07 11:00:00,5.0918717760000005,1011.6703060000001,140.04166669999998,93.66666667,14.75833333,0.718333333,238.09974590000002 -2016-02-07 12:00:00,4.980405696,1011.6239439999999,166.4916667,93.4,14.42916667,0.727,238.10010383333338 -2016-02-07 13:00:00,0.0,1011.79425,479.15,82.98083333,16.2775,1.363083333,238.10117753333338 -2016-02-07 14:00:00,0.0,1011.606806,665.8,72.795,18.04833333,1.85375,238.099388 -2016-02-07 15:00:00,0.0,1011.6739439999999,299.0,70.59416667,17.8425,2.51225,238.09724058333333 -2016-02-07 16:00:00,0.0,1011.805167,291.155,68.4425,18.70916667,1.092166667,238.09580895 -2016-02-07 17:00:00,2.998479192,1012.599417,102.0708333,73.455,16.58,1.700166667,238.09580895 -2016-02-07 18:00:00,0.0,1013.138028,65.20416667,70.46083333,16.065,0.891916667,238.09724058333333 -2016-02-07 19:00:00,0.0,1013.48275,49.2325,75.11666667,15.9,0.634916667,238.0958089333333 -2016-02-07 20:00:00,0.0,1014.254111,12.69291667,80.59416667,14.08,0.18225,238.09741954999996 -2016-02-07 21:00:00,0.0,1015.0385,0.1255,94.63333333,10.715,0.096166667,238.09473519999997 -2016-02-07 22:00:00,0.0,1015.720306,0.0,94.58333333,10.83916667,0.42916666700000006,238.09616686666666 -2016-02-07 23:00:00,0.0,1015.611972,0.0,99.475,9.6975,0.223333333,238.09580893333327 -2016-03-07 00:00:00,0.0,1015.6869720000001,0.0,100.0,8.274166667000001,0.00225,238.23908565 -2016-03-07 01:00:00,0.0,1015.7822779999999,0.0,100.0,7.410583333,0.0,238.24013046666664 -2016-03-07 02:00:00,0.0,1015.634389,0.0,100.0,6.82475,0.0048333329999999996,238.2405484 -2016-03-07 03:00:00,0.0,1015.64425,0.0,100.0,6.9175,0.001,238.23908568333331 -2016-03-07 04:00:00,0.0,1015.990611,3.21375,100.0,8.263333333,0.079666667,238.23992151666664 -2016-03-07 05:00:00,0.0,1016.314556,29.54166667,100.0,9.440833332999999,0.043916667,238.23720501666665 -2016-03-07 06:00:00,0.0,1016.590611,96.58083333,97.88333333,11.4225,0.26858333300000004,238.2344885 -2016-03-07 07:00:00,0.0,1016.827583,160.44166669999998,84.4575,13.9975,0.490333333,238.23532435 -2016-03-07 08:00:00,0.0,1016.972417,153.2833333,75.68416667,15.86083333,0.762166667,238.2338616333333 -2016-03-07 09:00:00,0.0,1016.833333,333.55,71.59,17.27666667,0.962166667,238.23114515 -2016-03-07 10:00:00,0.0,1016.908333,397.2416667,67.7525,17.715,1.113583333,238.23051826666665 -2016-03-07 11:00:00,33.68943718,1016.715139,258.51,83.88416667,15.11583333,0.8735,238.23051824999996 -2016-03-07 12:00:00,0.0,1016.4681949999999,214.4,89.55833333,15.785,0.84125,238.23135411666667 -2016-03-07 13:00:00,3.204028464,1016.776056,436.8916666999999,82.45166667,17.19916667,2.209333333,238.23281683333332 -2016-03-07 14:00:00,0.0,1016.621361,608.3916667000001,69.52833333,17.76583333,1.802416667,238.23177201666667 -2016-03-07 15:00:00,0.0,1016.370306,447.21666669999996,68.17083333,18.03166667,1.5395833330000002,238.23030930000002 -2016-03-07 16:00:00,0.0,1016.9197220000001,229.69,71.37083333,17.3325,1.754083333,238.2296824 -2016-03-07 17:00:00,22.51354565,1017.106806,127.5525,94.96666667,15.21833333,0.438666667,238.23198098333333 -2016-03-07 18:00:00,0.0,1016.9989439999999,99.84583333,87.075,17.055,0.454083333,238.2340706 -2016-03-07 19:00:00,0.0,1017.456222,55.44416667,90.26666667,17.295,0.082916667,238.23553331666665 -2016-03-07 20:00:00,0.0,1017.810917,7.72725,99.80833333,13.72666667,0.21,238.23553331666668 -2016-03-07 21:00:00,0.0,1017.983333,0.129583333,100.0,12.5,0.285416667,238.2361602 -2016-03-07 22:00:00,0.0,1018.2645550000001,0.0,100.0,10.78916667,0.209333333,238.23407059999997 -2016-03-07 23:00:00,0.0,1018.611972,0.0,100.0,10.21916667,0.017583333,238.23156305 -2016-04-07 00:00:00,0.0,1018.4380279999999,0.0,100.0,9.216666667,0.205833333,238.27147475000004 -2016-04-07 01:00:00,0.0,1018.3260560000001,0.0,100.0,8.929166667,0.078666667,238.27168368333335 -2016-04-07 02:00:00,0.0,1018.05575,0.0,100.0,8.543916667000001,0.027333332999999998,238.27126574999997 -2016-04-07 03:00:00,0.0,1017.926056,0.018833333,100.0,7.20975,0.034416667000000005,238.2702209666667 -2016-04-07 04:00:00,0.0,1017.848944,5.51275,100.0,6.929333333,0.034,238.26750446666668 -2016-04-07 05:00:00,0.0,1018.210917,40.28166667,100.0,9.019083333,0.060083332999999996,238.26687756666664 -2016-04-07 06:00:00,0.0,1018.3848609999999,85.1,100.0,10.965,0.171,238.26687758333333 -2016-04-07 07:00:00,0.0,1018.422417,142.79166669999998,99.79166667,12.6775,0.316083333,238.26875823333333 -2016-04-07 08:00:00,0.0,1018.267722,219.425,91.98333333,15.04333333,0.8613333329999999,238.26541484999998 -2016-04-07 09:00:00,0.0,1018.097417,443.53333330000004,82.60166667,17.86666667,1.118833333,238.2622804 -2016-04-07 10:00:00,0.0,1017.9119720000001,325.3,78.46583333,19.49083333,1.0135,238.26228040000004 -2016-04-07 11:00:00,0.0,1017.7615,424.4416666999999,70.35416667,19.85916667,1.134666667,238.26165353333332 -2016-04-07 12:00:00,0.0,1017.2963609999999,172.3225,75.4575,19.72583333,1.5561666669999998,238.25831015000003 -2016-04-07 13:00:00,0.0,1016.95575,186.0,75.90583333,19.2925,1.270916667,238.2574743 -2016-04-07 14:00:00,0.0,1016.815139,174.5725,78.84833333,18.62416667,0.829666667,238.25538466666663 -2016-04-07 15:00:00,0.0,1016.539083,193.325,77.47083333,19.1475,0.65875,238.2568474166667 -2016-04-07 16:00:00,0.0,1016.122417,305.3,73.75,20.13,0.86475,238.25622051666667 -2016-04-07 17:00:00,0.0,1015.5375560000001,194.91666669999998,73.53,20.915,0.677083333,238.25538466666663 -2016-04-07 18:00:00,0.0,1015.05,104.1891667,76.785,20.15416667,1.140666667,238.25371298333334 -2016-04-07 19:00:00,0.0,1014.7865,90.21166667,77.91666667,19.25916667,0.7809166670000001,238.2547577833333 -2016-04-07 20:00:00,0.0,1014.541667,10.67483333,91.64166667,16.34833333,0.517083333,238.25266815 -2016-04-07 21:00:00,0.0,1014.517722,0.111333333,99.71666667,13.5575,0.12216666699999999,238.25392193333334 -2016-04-07 22:00:00,0.0,1014.341667,0.0,100.0,13.76416667,0.166666667,238.2526681833333 -2016-04-07 23:00:00,0.0,1014.233333,0.0,100.0,14.5125,0.0665,238.25266816666667 -2016-05-07 00:00:00,0.0,1014.1021109999999,0.0,100.0,14.63916667,0.0,238.1117287666667 -2016-05-07 01:00:00,0.0,1013.7818060000001,0.0,100.0,14.9325,0.11225,238.11155979999998 -2016-05-07 02:00:00,0.0,1013.020889,0.0,100.0,14.635,0.03125,238.11240463333334 -2016-05-07 03:00:00,0.0,1012.2365,0.0,100.0,14.29666667,0.004083333,238.1144322 -2016-05-07 04:00:00,0.0,1012.095306,1.96625,100.0,14.44,0.00125,238.11291151666663 -2016-05-07 05:00:00,0.0,1011.988028,22.38291667,97.69166667,14.89333333,0.06975,238.11358736666662 -2016-05-07 06:00:00,0.0,1011.983333,79.53916667,92.56666667,17.05,0.20375,238.11172876666663 -2016-05-07 07:00:00,0.0,1011.983333,176.45,87.15833333,19.10083333,0.5715,238.11003913333332 -2016-05-07 08:00:00,0.0,1012.193195,133.5666667,82.0225,20.30166667,1.03525,238.10733573333334 -2016-05-07 09:00:00,0.0,1012.3260560000001,210.55,82.675,20.00916667,0.843833333,238.10412539999996 -2016-05-07 10:00:00,0.0,1012.4515279999999,207.55,80.665,19.70916667,0.7925,238.10513918333334 -2016-05-07 11:00:00,0.0,1012.6786390000001,409.7916667,71.41416667,20.76333333,1.5018333330000002,238.10243578333333 -2016-05-07 12:00:00,0.0,1012.739083,399.65,71.61583333,21.28916667,1.320833333,238.10125301666667 -2016-05-07 13:00:00,0.0,1012.4796949999999,446.7,68.61166667,21.75583333,1.39175,238.10040823333335 -2016-05-07 14:00:00,0.0,1012.223472,428.675,70.1075,21.84916667,1.764083333,238.10023923333333 -2016-05-07 15:00:00,0.0,1011.8760560000001,437.41666669999995,68.21083333,22.4175,1.94375,238.10040823333335 -2016-05-07 16:00:00,0.0,1011.6104439999999,257.775,69.02166667,21.97833333,1.620333333,238.10074616666668 -2016-05-07 17:00:00,2.6691611280000003,1011.2786390000001,220.3441667,73.88,20.92916667,0.912333333,238.09719791666666 -2016-05-07 18:00:00,0.0,1011.9931939999999,67.91583333,78.31916667,18.875,1.4205,238.09973236666667 -2016-05-07 19:00:00,0.0,1012.196833,63.135,80.9225,18.7525,0.8245,238.10091513333336 -2016-05-07 20:00:00,0.0,1012.5489439999999,6.525333333,84.31666667,17.165,0.5519166670000001,238.10159098333335 -2016-05-07 21:00:00,0.0,1013.0062220000001,0.057333333,83.93333333,16.83,2.06125,238.10378746666666 -2016-05-07 22:00:00,0.0,1013.5968330000001,0.0,83.14166667,15.66,1.575083333,238.10446333333334 -2016-05-07 23:00:00,0.0,1014.143194,0.0,81.49583333,14.845,1.62775,238.10480126666667 -2016-06-07 00:00:00,0.0,1014.460917,0.0,83.1,13.63083333,1.244583333,238.07134655000004 -2016-06-07 01:00:00,0.0,1014.660917,0.0,90.58333333,11.23666667,0.078916667,238.07168446666665 -2016-06-07 02:00:00,0.0,1014.8,0.0,95.63333333,9.059166667000001,0.027000000000000003,238.07320511666663 -2016-06-07 03:00:00,0.0,1015.11925,0.0,97.4,9.079166667,0.08433333300000001,238.0726982333333 -2016-06-07 04:00:00,0.0,1015.3083330000001,4.468166667,99.625,8.805833332999999,0.02475,238.07489476666663 -2016-06-07 05:00:00,0.0,1015.9197220000001,47.76083333,96.675,10.0325,0.21608333300000002,238.07219135000003 -2016-06-07 06:00:00,0.0,1016.091667,119.895,92.14166667,12.85916667,0.501416667,238.07219136666671 -2016-06-07 07:00:00,0.0,1016.6015279999999,149.4591667,88.13333333,13.9375,0.623166667,238.07100863333332 -2016-06-07 08:00:00,0.0,1017.0062220000001,173.47666669999998,86.45833333,14.10666667,0.922166667,238.06915 -2016-06-07 09:00:00,0.0,1017.26925,375.2583333,77.30666667,15.67333333,1.379083333,238.06931896666663 -2016-06-07 10:00:00,0.0,1017.383333,581.4,71.36666667,17.25333333,1.321,238.06475695000003 -2016-06-07 11:00:00,0.0,1017.508333,508.775,67.35,18.60583333,1.5546666669999998,238.06239146666667 -2016-06-07 12:00:00,0.0,1017.4296939999999,641.275,62.53416667,19.40416667,1.6335,238.05850533333333 -2016-06-07 13:00:00,0.0,1017.184389,695.2,59.7125,19.43916667,2.250083333,238.05664673333334 -2016-06-07 14:00:00,0.0,1016.9713609999999,595.9416667,56.55166667,21.36916667,1.2731666670000001,238.0546191666667 -2016-06-07 15:00:00,0.0,1016.6568060000001,366.96666669999996,58.17666667,20.665,2.20275,238.05157785000003 -2016-06-07 16:00:00,0.0,1016.40575,420.475,52.6075,21.13,2.278916667,238.05022613333333 -2016-06-07 17:00:00,0.0,1016.2869720000001,282.18,53.02666667,20.67333333,2.27325,238.05056406666665 -2016-06-07 18:00:00,0.0,1016.5707779999999,98.54583333,55.96833333,20.08333333,2.498333333,238.05140888333335 -2016-06-07 19:00:00,0.0,1016.847417,54.62333333,59.0525,19.04333333,1.158583333,238.05360538333332 -2016-06-07 20:00:00,0.0,1016.934861,8.498333333,78.78833333,15.56083333,0.236083333,238.05478813333335 -2016-06-07 21:00:00,0.0,1017.333333,0.047416667,93.6,12.69416667,0.21716666699999998,238.0576605 -2016-06-07 22:00:00,0.0,1017.460917,0.0,96.10833333,11.4425,0.23525,238.0590122 -2016-06-07 23:00:00,0.0,1017.697889,0.0,98.975,10.915,0.051583332999999995,238.05884325 -2016-07-07 00:00:00,0.0,1017.8296949999999,0.0,100.0,9.905,0.08808333300000001,238.03820358333328 -2016-07-07 01:00:00,0.0,1017.6615,0.0,100.0,8.690833332999999,0.08,238.04218343333335 -2016-07-07 02:00:00,0.0,1017.333333,0.0,100.0,7.745416667000001,0.00425,238.04397438333334 -2016-07-07 03:00:00,0.0,1017.472889,0.01225,100.0,7.2030833329999995,0.016833333,238.04457135000004 -2016-07-07 04:00:00,0.0,1017.541667,4.789166667,100.0,6.834833333,0.01625,238.04695926666668 -2016-07-07 05:00:00,0.0,1017.9135,51.40833333,100.0,8.224833333,0.055666667,238.04377540000004 -2016-07-07 06:00:00,0.0,1018.5754720000001,170.825,90.90833333,12.03333333,0.24225,238.04377538333335 -2016-07-07 07:00:00,0.0,1018.85,209.3258333,82.10333333,14.895,0.5479166670000001,238.0433774166667 -2016-07-07 08:00:00,0.0,1018.926056,85.29166667,68.02,17.68333333,0.670583333,238.04098948333333 -2016-07-07 09:00:00,0.0,1018.8046939999999,386.7416667,62.59416667,18.92,0.7855833329999999,238.03979553333332 -2016-07-07 10:00:00,2.697949992,1018.497417,654.575,58.86166667,20.2325,1.0155,238.03621363333332 -2016-07-07 11:00:00,0.0,1018.1401390000001,720.6166667,58.29416667,21.10416667,1.1815,238.03263176666667 -2016-07-07 12:00:00,0.0,1017.9213609999999,720.2333332999999,52.85583333,21.60833333,1.5316666669999999,238.02885089999998 -2016-07-07 13:00:00,0.0,1017.8604439999999,683.2,49.04,22.415,1.259416667,238.02447303333335 -2016-07-07 14:00:00,0.0,1017.366667,642.1416667000001,44.92416667,23.52,1.067083333,238.0230800666667 -2016-07-07 15:00:00,0.0,1017.129694,506.70833330000005,45.5275,23.67916667,1.1,238.0200951666667 -2016-07-07 16:00:00,0.0,1016.745889,267.1416667,51.04083333,23.465,0.81725,238.01949820000002 -2016-07-07 17:00:00,0.0,1016.323472,172.925,53.82583333,23.17333333,0.437833333,238.0200952 -2016-07-07 18:00:00,0.0,1015.88075,88.505,63.515,22.41416667,0.18866666699999998,238.0196972 -2016-07-07 19:00:00,0.0,1015.5630279999999,31.91083333,78.2275,20.60583333,0.03475,238.01989619999998 -2016-07-07 20:00:00,0.0,1015.458333,7.6,87.13333333,17.98833333,0.153,238.02029416666667 -2016-07-07 21:00:00,0.0,1015.5796939999999,0.043666667,92.65,15.91416667,0.037000000000000005,238.02109013333333 -2016-07-07 22:00:00,0.0,1015.388028,0.0,96.525,13.53166667,0.036333332999999995,238.02327906666667 -2016-07-07 23:00:00,0.0,1015.1187779999999,0.0,99.575,12.40083333,0.030416667,238.02586598333335 -2016-08-07 00:00:00,0.0,1014.884389,0.0,100.0,11.5775,0.012416667,237.97353075 -2016-08-07 01:00:00,0.0,1014.985917,0.0,100.0,10.51583333,0.032583333,237.9745257 -2016-08-07 02:00:00,0.0,1014.922417,0.0,100.0,10.4475,0.02325,237.97711261666666 -2016-08-07 03:00:00,0.0,1014.3865,0.0,100.0,10.25416667,0.135583333,237.97910256666668 -2016-08-07 04:00:00,0.0,1013.9031669999999,2.5675,100.0,9.91,0.0975,237.9814904666667 -2016-08-07 05:00:00,0.0,1013.645306,30.43333333,100.0,10.87416667,0.0405,237.9808935 -2016-08-07 06:00:00,0.0,1013.622417,82.0475,100.0,13.11333333,0.15158333300000001,237.98208745000002 -2016-08-07 07:00:00,0.0,1013.608333,171.9916667,90.975,15.78666667,0.348916667,237.98089349999998 -2016-08-07 08:00:00,0.0,1013.2698330000001,131.6666667,77.28416667,19.21666667,0.44933333299999995,237.9783066 -2016-08-07 09:00:00,0.0,1012.6318060000001,321.225,68.8,22.4325,0.705666667,237.9783066 -2016-08-07 10:00:00,0.0,1012.357278,459.0666666999999,59.18833333,24.33416667,1.158833333,237.9749237 -2016-08-07 11:00:00,0.0,1012.447417,511.3583333000001,56.4675,25.11416667,0.918083333,237.96915288333332 -2016-08-07 12:00:00,0.0,1012.3036390000001,533.3666667,54.76416667,25.71666667,1.314666667,237.96238713333332 -2016-08-07 13:00:00,0.0,1012.139083,439.8083333000001,52.93083333,25.81583333,1.263583333,237.9578103 -2016-08-07 14:00:00,0.0,1012.00575,202.04166669999998,57.68666667,24.88166667,0.91225,237.95144246666666 -2016-08-07 15:00:00,0.0,1012.072889,91.28166667,68.82833333,23.285,1.281333333,237.94905456666672 -2016-08-07 16:00:00,0.0,1012.0880279999999,136.625,75.64583333,22.7875,0.773,237.94447771666668 -2016-08-07 17:00:00,0.0,1012.0318060000001,117.76583329999998,73.99,22.92416667,0.752583333,237.94427873333333 -2016-08-07 18:00:00,0.0,1011.999417,97.9575,65.32833333,23.6975,0.826333333,237.94268678333336 -2016-08-07 19:00:00,0.0,1012.23075,50.42,69.335,22.61333333,0.584333333,237.94009985000002 -2016-08-07 20:00:00,0.0,1012.856695,10.81925,80.41666667,21.02416667,0.507166667,237.93970188333333 -2016-08-07 21:00:00,0.0,1013.518194,0.110833333,93.51666667,18.54833333,0.142666667,237.9410948166667 -2016-08-07 22:00:00,0.0,1013.8562220000001,0.0,91.73333333,17.78333333,0.18775,237.94427871666667 -2016-08-07 23:00:00,0.0,1014.353639,0.0,96.65833333,16.33333333,0.41600000000000004,237.94587065 -2016-09-07 00:00:00,0.0,1014.546833,0.0,95.84166667,16.14666667,0.4095,237.87343709999996 -2016-09-07 01:00:00,0.0,1014.835917,0.0,91.95,15.14166667,0.285833333,237.8770189833333 -2016-09-07 02:00:00,0.0,1015.208333,0.0,87.375,15.205,0.3085,237.87522803333334 -2016-09-07 03:00:00,0.0,1015.228639,0.0,89.1,14.78083333,0.07475,237.87801395 -2016-09-07 04:00:00,0.0,1015.3380279999999,5.211416667,95.76666667,14.63166667,0.12625,237.88219279999998 -2016-09-07 05:00:00,0.0,1015.629111,37.81916667,95.29166667,16.12,0.42566666700000005,237.8849787 -2016-09-07 06:00:00,0.0,1016.275472,146.4083333,89.10833333,17.56,0.392166667,237.8851777 -2016-09-07 07:00:00,0.0,1016.4630279999999,205.44166669999998,84.18333333,18.8275,0.7283333329999999,237.88438173333336 -2016-09-07 08:00:00,0.0,1016.6239449999999,146.5916667,80.17583333,19.835,1.5546666669999998,237.88577466666666 -2016-09-07 09:00:00,0.0,1016.8119720000001,226.825,78.02666667,20.30166667,0.9301666670000001,237.88597366666667 -2016-09-07 10:00:00,0.0,1017.159861,383.2583333,75.56416667,20.81,0.8776666670000001,237.88537668333333 -2016-09-07 11:00:00,0.0,1017.3260560000001,501.16666669999995,72.0475,22.44916667,1.4120833330000002,237.88358576666667 -2016-09-07 12:00:00,0.0,1016.869833,676.9,60.48916667,23.06166667,1.5859166669999998,237.8792079 -2016-09-07 13:00:00,0.0,1016.277111,591.7666667000001,60.21333333,23.41583333,1.48175, -2016-09-07 14:00:00,0.0,1016.15,519.2,59.11583333,24.04083333,1.1450833329999999, -2016-09-07 15:00:00,0.0,1015.7354449999999,477.99166669999994,59.17166667,24.28833333,0.9744166670000001, -2016-09-07 16:00:00,0.0,1015.660444,287.4916667,59.80583333,25.05083333,0.899083333,237.86003504 -2016-09-07 17:00:00,0.0,1015.289083,276.2175,60.225,24.83833333,0.6705,237.85782514999997 -2016-09-07 18:00:00,0.0,1014.9843890000001,91.45,64.71166667,24.0625,0.44941666700000005,237.8575752 -2016-09-07 19:00:00,0.0,1014.741667,37.55166667,73.46,22.155,0.226666667,237.85833608333334 -2016-09-07 20:00:00,0.0,1014.542722,10.78816667,87.46666667,19.37916667,0.043416667,237.8586809333333 -2016-09-07 21:00:00,0.0,1014.464083,0.038,96.25833333,16.66666667,0.059000000000000004,237.85902578333335 -2016-09-07 22:00:00,0.0,1014.222417,0.0,99.93333333,15.155,0.005916667,237.85831239999996 -2016-09-07 23:00:00,0.0,1013.764083,0.0,99.43333333,14.3025,0.00825,237.85873156666665 -2016-10-07 00:00:00,0.0,1013.725,0.0,99.825,13.63333333,0.000666667,237.94619838333332 -2016-10-07 01:00:00,0.0,1013.733333,0.0,100.0,13.08666667,0.08516666699999999,237.94766004999997 -2016-10-07 02:00:00,0.0,1013.440139,0.0,100.0,12.65333333,0.03825,237.94745121666665 -2016-10-07 03:00:00,0.0,1012.95575,0.0,100.0,12.42,0.237833333,237.94701935 -2016-10-07 04:00:00,0.0,1012.9546939999999,3.11825,100.0,11.68833333,0.07958333299999999,237.94808079999996 -2016-10-07 05:00:00,0.0,1012.83075,56.13833333,100.0,13.325,0.047416667,237.94823898333334 -2016-10-07 06:00:00,0.0,1012.760917,131.7375,97.60833333,16.145,0.306416667,237.9495013333333 -2016-10-07 07:00:00,0.0,1012.6437779999999,198.2583333,92.26666667,18.96916667,0.473416667,237.9488353833333 -2016-10-07 08:00:00,0.0,1012.4296939999999,153.5,83.40666667,20.955,1.1703333329999999,237.94740851666668 -2016-10-07 09:00:00,0.0,1011.71725,364.5666667,73.205,24.10666667,1.2425,237.94051309999998 -2016-10-07 10:00:00,0.0,1011.2115,494.00833330000006,64.23583333,25.89333333,2.2095833330000003,237.9467204 -2016-10-07 11:00:00,0.0,1010.651056,366.7416667,66.61666667,27.06916667,2.614583333,237.9462632333333 -2016-10-07 12:00:00,0.0,1010.294833,626.4083333,60.00166667,27.68833333,2.6745,237.94726770000003 -2016-10-07 13:00:00,0.0,1009.583917,718.3583332999999,56.0725,28.475,2.68075,237.94863601666668 -2016-10-07 14:00:00,0.0,1008.832861,644.6416667000001,51.935,29.65666667,2.598166667,237.94973859999996 -2016-10-07 15:00:00,0.0,1008.194833,585.1583333,49.19833333,30.44416667,2.828833333,237.95045045000003 -2016-10-07 16:00:00,0.0,1007.428167,394.2916667,48.075,30.26833333,2.3915,237.95119710000003 -2016-10-07 17:00:00,0.0,1006.9068060000001,176.06666669999998,55.30916667,29.01,1.5105,237.95289288333333 -2016-10-07 18:00:00,0.0,1006.517722,96.09166667,66.5,27.82666667,0.648666667,237.95467405 -2016-10-07 19:00:00,0.0,1006.2604439999999,67.47666667,70.69583333,26.73833333,0.48,237.95668781666663 -2016-10-07 20:00:00,0.0,1006.233333,6.737916667,79.13333333,23.62333333,0.34675,237.95886289999999 -2016-10-07 21:00:00,0.0,1006.158333,0.028666667000000003,85.525,21.01333333,0.002833333,237.95869676666666 -2016-10-07 22:00:00,0.0,1006.0010560000001,0.0,84.16333333,19.19666667,0.029833332999999997,237.95990533333335 -2016-10-07 23:00:00,0.0,1006.073944,0.0,92.8,18.11083333,0.0048333329999999996,237.95779985 -2016-11-07 00:00:00,0.0,1005.7984720000001,0.0,97.96666667,17.10916667,0.10308333300000001,238.02412963333336 -2016-11-07 01:00:00,0.0,1005.565611,0.0,99.85833333,16.51166667,0.056833333,238.02410431666667 -2016-11-07 02:00:00,0.0,1005.491667,0.0,83.445,16.04,0.049083333,238.02401253333335 -2016-11-07 03:00:00,0.0,1005.676056,0.0,75.86583333,15.47,0.059166667,238.02354905 -2016-11-07 04:00:00,0.0,1005.7489439999999,3.889416667,77.41,15.42,0.058166667000000005,238.02327061666665 -2016-11-07 05:00:00,0.0,1006.121833,41.57333333,76.94,16.35833333,0.070333333,238.02477975 -2016-11-07 06:00:00,0.0,1006.7895560000001,90.81833333,80.55333333,19.795,0.18566666699999998,238.02932606666664 -2016-11-07 07:00:00,0.0,1007.1015279999999,165.45,81.13333333,22.4075,0.6114166670000001,238.0333582833333 -2016-11-07 08:00:00,0.0,1007.3739439999999,181.2166667,75.98916667,23.26916667,1.4763333330000001,238.03624521666666 -2016-11-07 09:00:00,0.0,1007.541667,343.225,72.04916667,23.55416667,1.12925,238.04001165 -2016-11-07 10:00:00,0.0,1007.472417,481.20833330000005,66.7925,24.44166667,1.875583333,238.04117595 -2016-11-07 11:00:00,0.0,1007.292722,495.88333330000006,63.7775,25.55166667,1.735333333,238.04457853333335 -2016-11-07 12:00:00,0.0,1007.2265279999999,370.0416667,61.5625,25.13333333,1.666833333,238.0436405 -2016-11-07 13:00:00,0.0,1007.416667,461.275,62.33666667,25.4575,1.326916667,238.0449202166667 -2016-11-07 14:00:00,0.0,1007.585917,492.04166669999995,59.70916667,25.9025,1.6200833330000002,238.045988 -2016-11-07 15:00:00,0.0,1007.973944,345.1,61.54833333,24.76,1.3871666669999998,238.04499931666666 -2016-11-07 16:00:00,0.0,1008.0380279999999,214.85,62.97,23.53416667,1.080666667,238.04597376666672 -2016-11-07 17:00:00,0.0,1007.847417,140.1166667,64.82,23.29666667,0.512416667,238.0458662166667 -2016-11-07 18:00:00,0.0,1007.5546939999999,100.9958333,66.6875,22.90916667,0.58975,238.04613353333332 -2016-11-07 19:00:00,0.0,1007.783806,53.17833333,67.91583333,21.72916667,0.41,238.04724085 -2016-11-07 20:00:00,0.0,1008.4588060000001,6.1420833329999995,68.45166667,19.85833333,0.339416667,238.04680424999995 -2016-11-07 21:00:00,0.0,1009.095306,0.041333333,73.05,18.66583333,0.40033333299999996,238.0458045 -2016-11-07 22:00:00,0.0,1009.232278,0.0,77.5925,17.79833333,0.19016666699999998,238.04656536666667 -2016-11-07 23:00:00,0.0,1009.1916669999999,0.0,74.89333333,17.83416667,0.25975,238.04634706666664 -2016-12-07 00:00:00,0.0,1009.2786390000001,0.0,77.34666667,16.99,0.008416667,238.02667326666665 -2016-12-07 01:00:00,0.0,1009.358333,0.0,85.53333333,14.70833333,0.04,238.02698490000003 -2016-12-07 02:00:00,0.0,1009.229694,0.0,88.175,13.29333333,0.18025,238.02551376666665 -2016-12-07 03:00:00,0.0,1009.1786390000001,0.0,91.69166667,12.23833333,0.025416667,238.0265309166667 -2016-12-07 04:00:00,0.0,1009.4989439999999,1.70925,92.60833333,12.23,0.068416667,238.02508663333333 -2016-12-07 05:00:00,0.0,1009.8681939999999,21.71633333,87.975,14.1575,0.35925,238.02662898333335 -2016-12-07 06:00:00,0.0,1009.997417,122.91,85.49166667,16.58583333,0.5365833329999999,238.02503601666663 -2016-12-07 07:00:00,0.0,1010.2004720000001,291.1,76.3225,19.12333333,0.72425,238.02645338333332 -2016-12-07 08:00:00,0.0,1010.383333,211.6166667,68.86833333,19.31333333,0.8245,238.0250281 -2016-12-07 09:00:00,0.0,1010.3380279999999,405.4333333,65.24833333,20.78583333,1.064083333,238.02558018333335 -2016-12-07 10:00:00,0.0,1010.2343890000001,408.525,64.15916667,21.18583333,1.146583333,238.02525906666665 -2016-12-07 11:00:00,0.0,1009.9416669999999,562.1416667000001,57.7275,22.4225,1.2605,238.0246516166667 -2016-12-07 12:00:00,0.0,1009.8354439999999,551.1083332999999,52.16333333,23.0475,1.17525,238.02578581666663 -2016-12-07 13:00:00,0.0,1009.3125560000001,417.2583333,51.75583333,22.99833333,0.95625,238.02559443333337 -2016-12-07 14:00:00,0.0,1008.681806,559.9,52.1325,23.82,0.8340833329999999,238.02512145 -2016-12-07 15:00:00,0.0,1008.363028,597.1833333,45.22666667,24.48916667,1.4284166669999998,238.02486993333332 -2016-12-07 16:00:00,0.0,1007.910444,377.075,46.0375,24.57166667,1.84975,238.02540933333339 -2016-12-07 17:00:00,0.0,1007.697417,230.79166669999998,50.99916667,23.86,1.146833333,238.02443173333336 -2016-12-07 18:00:00,0.0,1008.1791109999999,41.29,73.055,21.165,1.54325,238.0246643 -2016-12-07 19:00:00,2.659438584,1008.391667,50.04916667,90.06666667,18.76,0.556083333,238.0242245333333 -2016-12-07 20:00:00,0.0,1008.2572779999999,10.65358333,98.40833333,17.36333333,0.233666667,238.02444914999998 -2016-12-07 21:00:00,0.0,1008.916083,0.044583332999999996,99.84166667,15.86,0.213416667,238.02450608333334 -2016-12-07 22:00:00,0.0,1009.4536390000001,0.0,99.7,15.66166667,0.6940000000000001,238.02551375 -2016-12-07 23:00:00,0.0,1009.597417,0.0,100.0,14.84583333,0.39591666700000006,238.02526381666667 -2016-07-13 00:00:00,0.0,1009.197417,0.0,100.0,14.30916667,0.109916667,237.9830824166667 -2016-07-13 01:00:00,0.0,1008.9416669999999,0.0,100.0,12.77166667,0.180583333,237.98427638333337 -2016-07-13 02:00:00,0.0,1008.83075,0.0,100.0,12.59583333,0.03625,237.98805724999997 -2016-07-13 03:00:00,0.0,1008.8083330000001,0.0,100.0,12.2425,0.2855,237.9892512 -2016-07-13 04:00:00,0.0,1009.01925,1.524666667,100.0,12.53333333,0.146333333,237.9894502 -2016-07-13 05:00:00,0.0,1009.185917,30.10266667,100.0,13.22083333,0.226333333,237.9898482 -2016-07-13 06:00:00,0.0,1009.535917,143.305,97.05,14.35916667,0.3615,237.99203710000003 -2016-07-13 07:00:00,0.0,1009.7572779999999,209.8416667,91.53333333,15.985,0.700416667,237.99422603333335 -2016-07-13 08:00:00,8.0992644,1009.863028,229.55833330000002,82.73083333,17.36416667,0.62175,237.99581798333335 -2016-07-13 09:00:00,0.0,1009.759389,366.5666667,73.78166667,18.86916667,0.688666667,237.99442503333333 -2016-07-13 10:00:00,0.0,1009.4427220000001,284.15833330000004,65.485,18.57166667,1.4499166669999999,237.98566933333336 -2016-07-13 11:00:00,390.20031969999997,1010.1223060000001,68.69083333,92.75833333,13.80333333,2.274083333,237.99601698333333 -2016-07-13 12:00:00,2.483419608,1010.3083330000001,173.9025,96.79166667,13.55833333,0.428,238.03322875 -2016-07-13 13:00:00,0.0,1010.272417,463.8166666999999,85.36166667,16.35916667,0.966666667,238.0459643 -2016-07-13 14:00:00,0.0,1010.259389,404.15833330000004,79.47416667,17.91,0.9785,238.04755628333336 -2016-07-13 15:00:00,0.0,1010.164083,405.03333330000004,73.24916667,18.32083333,0.866583333,238.04875021666666 -2016-07-13 16:00:00,2.897572728,1009.9156109999999,513.8583333,66.6525,18.66416667,1.285666667,238.04516835000004 -2016-07-13 17:00:00,0.0,1009.716667,323.2075,64.46666667,19.085,1.276583333,238.04536733333336 -2016-07-13 18:00:00,0.0,1010.146833,52.40583333,72.9775,17.5825,0.8775,238.04616330000002 -2016-07-13 19:00:00,2.679977472,1010.89425,20.9925,93.28333333,14.20583333,0.82225,238.04536733333336 -2016-07-13 20:00:00,0.0,1010.8348609999999,3.8885,95.525,13.41083333,0.213333333,238.04496935 -2016-07-13 21:00:00,0.0,1011.699417,0.0,94.65833333,13.23,0.288333333,238.04377538333335 -2016-07-13 22:00:00,2.45625072,1012.25,0.0,96.125,13.2925,0.410083333,238.04477035000002 -2016-07-13 23:00:00,0.0,1011.95,0.0,97.3,13.075,0.47,238.0457653166667 -2016-07-14 00:00:00,0.0,1012.228639,0.0,97.64166667,12.85666667,0.1455,238.04397438333334 -2016-07-14 01:00:00,0.0,1012.315611,0.0,95.825,13.0475,0.40783333299999996,238.04457136666667 -2016-07-14 02:00:00,0.0,1012.541667,0.0,94.4,13.1225,0.44058333299999997,238.04636230000003 -2016-07-14 03:00:00,0.0,1012.698944,0.0,95.575,12.895,0.7885833329999999,238.04636230000003 -2016-07-14 04:00:00,0.0,1012.810917,1.341083333,96.025,12.32083333,0.604916667,238.04695926666662 -2016-07-14 05:00:00,0.0,1013.3885,13.84558333,96.79166667,11.9225,0.585833333,238.04676026666667 -2016-07-14 06:00:00,0.0,1013.784861,110.81083329999998,94.13333333,11.81916667,1.029583333,238.04556633333334 -2016-07-14 07:00:00,0.0,1014.2036390000001,161.99583330000002,84.79166667,13.43416667,1.801,238.04397438333334 -2016-07-14 08:00:00,3.460317528,1014.332278,130.4416667,78.28333333,15.05666667,2.870916667,238.04417338333337 -2016-07-14 09:00:00,0.0,1014.409389,362.9583333,70.1225,16.20833333,2.638,238.04385496000003 -2016-07-14 10:00:00,0.0,1014.44425,506.65833330000004,63.56,16.99583333,2.3795,238.04855123333334 -2016-07-14 11:00:00,0.0,1014.7656109999999,372.125,62.48833333,17.09333333,2.3883333330000003,238.04397438333334 -2016-07-14 12:00:00,0.0,1014.716667,236.7391667,62.3475,16.61333333,2.0693333330000003,238.04178545000002 -2016-07-14 13:00:00,0.0,1014.7739439999999,306.90833330000004,59.465,17.22,2.8551666669999998,238.03919853333335 -2016-07-14 14:00:00,0.0,1015.073945,327.375,59.36833333,17.27,2.40375,238.03362671666665 -2016-07-14 15:00:00,0.0,1015.00575,254.5916667,60.80416667,17.80833333,2.489416667,238.03223379999997 -2016-07-14 16:00:00,0.0,1015.3338060000001,343.9,57.94583333,18.54583333,2.255,238.02705995 -2016-07-14 17:00:00,0.0,1015.5010560000001,224.925,55.165,18.45,2.374583333,238.02745793333335 -2016-07-14 18:00:00,0.0,1015.6098609999999,89.66666667,54.71916667,18.14916667,2.59975,238.0246720166667 -2016-07-14 19:00:00,0.0,1016.01925,32.31666667,71.38416667,16.9225,1.2605,238.0230800666667 -2016-07-14 20:00:00,0.0,1016.50775,10.26325,79.52916667,14.53916667,0.485833333,238.02248310000002 -2016-07-14 21:00:00,0.0,1017.2598609999999,0.036583332999999996,85.6,13.3575,0.49958333299999996,238.0230800666667 -2016-07-14 22:00:00,0.0,1017.6885,0.0,93.16666667,11.90333333,0.35908333299999995,238.02487101666668 -2016-07-14 23:00:00,0.0,1018.2598609999999,0.0,92.31666667,10.91833333,0.077916667,238.02705995 -2016-07-15 00:00:00,0.0,1018.939556,0.0,85.30833333,12.42,0.171083333,238.02367705000003 -2016-07-15 01:00:00,0.0,1019.104694,0.0,88.88333333,12.67,0.5003333329999999,238.02686095 -2016-07-15 02:00:00,0.0,1019.020306,0.0,88.25,12.58583333,0.32458333300000003,238.0278559333333 -2016-07-15 03:00:00,0.0,1019.3812220000001,0.0,89.98333333,12.39916667,0.16825,238.02507001666666 -2016-07-15 04:00:00,0.0,1019.61925,0.9774166670000001,91.58333333,11.77583333,0.12825,238.02686093333332 -2016-07-15 05:00:00,0.0,1019.8468330000001,16.68691667,90.13333333,12.21916667,0.455,238.02725895 -2016-07-15 06:00:00,0.0,1020.4239439999999,59.62916667,88.975,12.72916667,0.849916667,238.02546798333336 -2016-07-15 07:00:00,0.0,1020.9671390000001,136.79166669999998,84.1825,13.6725,1.053083333,238.02546798333333 -2016-07-15 08:00:00,0.0,1021.5015279999999,208.06666669999998,77.17833333,14.2125,1.96675,238.0242740333333 -2016-07-15 09:00:00,0.0,1021.810917,457.475,71.00083333,15.51833333,1.5555833330000002,238.0187022 -2016-07-15 10:00:00,0.0,1021.9677220000001,419.74166669999994,65.0825,16.55833333,2.3071666669999997,238.0163143 -2016-07-15 11:00:00,0.0,1021.9333330000001,576.4416667,60.03333333,17.31333333,2.2505,238.01233445000003 -2016-07-15 12:00:00,0.0,1021.9322779999999,474.1,60.51333333,17.775,1.5435,238.01034451666666 -2016-07-15 13:00:00,0.0,1021.8593890000001,410.4166667,57.57166667,19.19833333,1.894333333,238.00835458333333 -2016-07-15 14:00:00,0.0,1021.863028,335.03333330000004,56.7675,19.03916667,2.894666667,238.00716063333334 -2016-07-15 15:00:00,0.0,1021.7703050000001,446.58333330000005,54.5575,19.5925,2.495833333,238.00238476666672 -2016-07-15 16:00:00,0.0,1021.667722,289.46666669999996,55.27333333,19.74,2.278666667,237.99999685000003 -2016-07-15 17:00:00,0.0,1021.4901390000001,242.5083333,59.63,19.9825,1.845083333,237.99900188333336 -2016-07-15 18:00:00,0.0,1021.5145560000001,86.6575,62.92083333,19.54416667,0.739916667,237.99800691666667 -2016-07-15 19:00:00,0.0,1021.6739439999999,54.545,68.3075,18.71916667,0.175166667,237.99641498333332 -2016-07-15 20:00:00,0.0,1021.6093890000001,6.604083332999999,87.35083333,14.96583333,0.046166667,237.99920088333337 -2016-07-15 21:00:00,0.0,1021.7739439999999,0.008416667,96.65833333,12.03083333,0.0435,238.0009918166667 -2016-07-15 22:00:00,0.0,1021.783333,0.0,99.85,10.51083333,0.002,238.00158881666667 -2016-07-15 23:00:00,0.0,1021.9369720000001,0.0,100.0,9.74,0.0,238.00119080000002 -2016-07-16 00:00:00,0.0,1022.0666669999999,0.0,100.0,8.923333332999999,0.0155,238.0043747166667 -2016-07-16 01:00:00,0.0,1022.0765279999999,0.0,100.0,8.473333333,0.074416667,238.00457368333332 -2016-07-16 02:00:00,0.0,1021.969833,0.0,100.0,8.104166667000001,0.059833332999999995,238.00616563333335 -2016-07-16 03:00:00,0.0,1021.708333,0.0,100.0,7.9211666670000005,0.040333333,238.00795659999997 -2016-07-16 04:00:00,0.0,1021.625,2.851333333,100.0,8.703333333,0.0,238.01014553333334 -2016-07-16 05:00:00,0.0,1022.002583,35.47333333,100.0,9.768333333,0.038,238.00656363333337 -2016-07-16 06:00:00,0.0,1022.026056,132.53833329999998,95.50833333,12.41833333,0.11800000000000001,238.00636465000002 -2016-07-16 07:00:00,0.0,1021.840611,110.32166670000001,94.09166667,13.74666667,0.4345,238.00735959999997 -2016-07-16 08:00:00,0.0,1022.082278,220.3916667,82.21916667,15.94833333,0.565,238.00696161666667 -2016-07-16 09:00:00,0.0,1022.3119720000001,259.625,74.57,18.15083333,0.8320833329999999,238.0051707 -2016-07-16 10:00:00,0.0,1022.214083,366.7083333,68.1225,19.95416667,1.19,238.00337975000002 -2016-07-16 11:00:00,0.0,1022.2213609999999,470.34166669999996,66.0075,19.9625,1.3015,238.0011908166667 -2016-07-16 12:00:00,0.0,1021.939083,393.1333333,67.36333333,20.08,1.5195833330000001,237.99681296666665 -2016-07-16 13:00:00,0.0,1021.543778,311.85,68.20916667,20.125,1.1763333329999999,237.99462403333334 -2016-07-16 14:00:00,0.0,1020.9937779999999,206.3416667,69.97833333,20.2225,0.6465,237.99422603333335 -2016-07-16 15:00:00,0.0,1020.8083330000001,229.3583333,68.98166667,20.9875,0.70075,237.99124111666666 -2016-07-16 16:00:00,0.0,1020.690139,270.8083333,68.8,22.36333333,1.03225,237.98726126666668 -2016-07-16 17:00:00,0.0,1020.25575,120.51666670000002,73.13583333,21.13583333,0.752,237.9872612833333 -2016-07-16 18:00:00,0.0,1020.034389,89.7875,74.735,20.75583333,0.6535833329999999,237.9866643 -2016-07-16 19:00:00,0.0,1020.184861,47.94583333,76.88833333,20.68416667,1.240333333,237.9834804 -2016-07-16 20:00:00,0.0,1020.527583,3.8015,88.31916667,18.53333333,0.51925,237.98367940000003 -2016-07-16 21:00:00,0.0,1020.642722,0.002833333,96.99166667,16.0025,0.07125,237.9864653 -2016-07-16 22:00:00,0.0,1020.314083,0.0,99.01666667,15.73083333,0.167333333,237.9880572333333 -2016-07-16 23:00:00,0.0,1020.121361,0.0,100.0,15.72666667,0.199333333,237.9880572333333 -2016-07-17 00:00:00,0.0,1019.909389,0.0,99.71666667,16.63666667,0.233916667,237.98785826666665 -2016-07-17 01:00:00,0.0,1019.689083,0.0,99.24166667,16.21416667,0.06308333299999999,237.9888532 -2016-07-17 02:00:00,0.0,1019.504694,0.0,97.96666667,15.96583333,0.061666667,237.9910421666667 -2016-07-17 03:00:00,0.0,1019.081806,0.0,99.34166667,15.54083333,0.037083332999999996,237.99442503333333 -2016-07-17 04:00:00,0.0,1018.628167,3.104083333,100.0,14.89333333,0.14575,237.9992009 -2016-07-17 05:00:00,0.0,1018.361972,25.11916667,100.0,15.58416667,0.02,238.00019583333335 -2016-07-17 06:00:00,0.0,1018.801528,69.38333333,96.475,17.52166667,0.229666667,237.9995988666667 -2016-07-17 07:00:00,0.0,1019.0,142.55833330000002,88.44166667,19.65166667,0.52725,238.0007928166667 -2016-07-17 08:00:00,0.0,1018.892722,244.6166667,83.125,21.725,0.680333333,237.99820594999997 -2016-07-17 09:00:00,0.0,1018.547417,300.7333333,79.2525,23.16,0.9894166670000001,237.99721093333335 -2016-07-17 10:00:00,0.0,1018.4463609999999,377.7416667,75.74833333,23.74333333,1.1049166670000001,237.99581799999999 -2016-07-17 11:00:00,0.0,1018.28075,401.975,68.31,24.495,1.5081666669999998,237.99004718333333 -2016-07-17 12:00:00,0.0,1018.034389,365.825,67.6625,24.22916667,1.9165833330000002,237.98507236666669 -2016-07-17 13:00:00,0.0,1017.8046939999999,296.975,68.58583333,24.60333333,1.152333333,237.98109248333333 -2016-07-17 14:00:00,0.0,1017.357861,243.875,68.45,24.65083333,0.904416667,237.98009753333335 -2016-07-17 15:00:00,0.0,1017.20575,243.7583333,67.9075,24.785,1.0856666670000001,237.97651564999998 -2016-07-17 16:00:00,0.0,1016.883333,253.79166669999998,66.365,24.7025,1.319166667,237.97432671666664 -2016-07-17 17:00:00,0.0,1016.7739439999999,222.29166669999998,66.1075,25.34083333,0.939916667,237.97054583333332 -2016-07-17 18:00:00,0.0,1016.7427220000001,82.31916667,66.3825,24.85083333,1.532416667,237.96994886666664 -2016-07-17 19:00:00,0.0,1016.885917,37.86916667,74.91666667,22.95416667,2.94425,237.96716296666668 -2016-07-17 20:00:00,0.0,1017.3848609999999,9.569916667000001,83.15333333,21.45916667,1.628333333,237.96656599999997 -2016-07-17 21:00:00,0.0,1017.690611,0.010833333,94.43333333,19.04666667,0.11,237.9691529 -2016-07-17 22:00:00,0.0,1017.7953050000001,0.0,98.41666667,17.1075,0.096666667,237.97253578333334 -2016-07-17 23:00:00,0.0,1017.94425,0.0,100.0,15.47916667,0.004,237.97552065 -2016-07-18 00:00:00,0.0,1017.989083,0.0,100.0,14.26666667,0.11725,237.98049550000005 -2016-07-18 01:00:00,0.0,1017.9369720000001,0.0,100.0,13.7475,0.1425,237.98188845 -2016-07-18 02:00:00,0.0,1017.866667,0.0,100.0,13.21666667,0.047416667,237.9834803833334 -2016-07-18 03:00:00,0.0,1017.809389,0.0,100.0,14.2475,0.048,237.98447538333335 -2016-07-18 04:00:00,0.0,1017.8213609999999,1.7755,100.0,13.24833333,0.037833333,237.98785826666665 -2016-07-18 05:00:00,0.0,1018.0921390000001,52.38,100.0,13.80333333,0.11716666699999999,237.9892512 -2016-07-18 06:00:00,0.0,1018.652583,149.7833333,98.775,17.44166667,0.440833333,237.98746026666663 -2016-07-18 07:00:00,0.0,1018.845306,232.3233333,90.45833333,19.8475,0.44791666700000005,237.98845521666667 -2016-07-18 08:00:00,0.0,1018.9369720000001,180.4966667,75.67083333,21.2025,1.1840000000000002,237.98945019999996 -2016-07-18 09:00:00,0.0,1018.9510560000001,344.9825,68.40916667,22.26916667,1.258916667,237.98686328333335 -2016-07-18 10:00:00,0.0,1018.935917,592.175,63.75,23.71833333,1.668166667,237.98168945000006 -2016-07-18 11:00:00,0.0,1018.93075,526.4,60.56833333,24.75333333,1.5623333330000002,237.97552066666665 -2016-07-18 12:00:00,0.0,1018.6713609999999,514.6833333000001,58.8425,25.56583333,1.1461666670000001,237.97114281666666 -2016-07-18 13:00:00,0.0,1018.666667,632.2666667000001,55.17833333,25.90833333,1.42125,237.96338208333336 -2016-07-18 14:00:00,0.0,1018.542722,511.25,50.29833333,27.08166667,1.3759166669999998,237.9594022 -2016-07-18 15:00:00,0.0,1018.053167,299.7416667,50.89833333,26.80166667,2.1635,237.95900421666667 -2016-07-18 16:00:00,0.0,1017.590139,212.9,49.9325,27.83,1.1925,237.9576112666667 -2016-07-18 17:00:00,0.0,1017.5536390000001,246.3141667,47.6225,27.96916667,0.932083333,237.9530344166667 -2016-07-18 18:00:00,0.0,1017.267722,88.935,48.9,27.52583333,1.16825,237.95303443333333 -2016-07-18 19:00:00,0.0,1017.3119720000001,43.43083333,58.62083333,26.02666667,0.300333333,237.95303441666667 -2016-07-18 20:00:00,0.0,1017.5754720000001,5.6145,81.01166667,21.01,0.37200000000000005,237.95363141666664 -2016-07-18 21:00:00,0.0,1017.9546939999999,0.02675,90.84166667,17.92333333,0.25875,237.9564173 -2016-07-18 22:00:00,0.0,1018.16925,0.0,95.95833333,15.87916667,0.017,237.95800925 -2016-07-18 23:00:00,0.0,1018.4416669999999,0.0,98.925,14.50916667,0.149666667,237.96099416666664 -2016-07-19 00:00:00,0.0,1018.427583,0.0,99.93333333,13.83083333,0.068583333,237.96358106666665 -2016-07-19 01:00:00,0.0,1018.341667,0.0,100.0,13.20583333,0.069333333,237.966367 -2016-07-19 02:00:00,0.0,1018.3130279999999,0.0,100.0,12.745,0.07641666700000001,237.96875491666665 -2016-07-19 03:00:00,0.0,1018.3380279999999,0.0,100.0,12.3475,0.07925,237.97253576666665 -2016-07-19 04:00:00,0.0,1018.2119720000001,1.7341666669999998,100.0,11.94333333,0.031,237.97552066666665 -2016-07-19 05:00:00,0.0,1018.511972,52.90758333,100.0,13.11416667,0.010666667,237.97591864999995 -2016-07-19 06:00:00,0.0,1018.809861,149.56666669999998,92.14166667,17.24333333,0.222833333,237.97711261666666 -2016-07-19 07:00:00,0.0,1019.16925,218.8433333,82.2425,19.73583333,0.39983333299999996,237.97890355 -2016-07-19 08:00:00,0.0,1019.2187779999999,192.325,76.06333333,22.34833333,0.65925,237.97651563333332 -2016-07-19 09:00:00,0.0,1019.0286390000001,338.6666667,66.45833333,25.385,0.8394166670000001,237.97353075 -2016-07-19 10:00:00,0.0,1018.810444,579.2666667000001,56.90666667,26.96916667,0.979833333,237.96994886666667 -2016-07-19 11:00:00,0.0,1018.465139,638.5583333,52.69833333,27.67,1.248916667,237.96358108333334 -2016-07-19 12:00:00,0.0,1018.134389,690.6833333,49.64666667,28.82583333,1.228083333,237.95621831666668 -2016-07-19 13:00:00,0.0,1017.685444,676.4916667,45.735,29.55333333,1.51375,237.94965151666668 -2016-07-19 14:00:00,0.0,1017.247417,583.95,43.3125,30.26833333,1.115,237.9448757 -2016-07-19 15:00:00,0.0,1016.8375550000001,516.6333333,41.47833333,30.16916667,1.374,237.9420897833334 -2016-07-19 16:00:00,0.0,1016.3083330000001,479.8916666999999,40.80416667,30.63583333,1.134083333,237.9393038666667 -2016-07-19 17:00:00,0.0,1015.776639,307.6883333,42.46666667,29.88083333,1.3593333330000001,237.94009985000002 -2016-07-19 18:00:00,0.0,1015.325,97.5775,47.915,29.87083333,1.109416667,237.94129383333336 -2016-07-19 19:00:00,0.0,1015.216667,42.20416667,63.35083333,28.04333333,0.56975,237.9416918166667 -2016-07-19 20:00:00,0.0,1015.327583,4.736333333,80.76583333,21.52333333,0.22025,237.94228880000003 -2016-07-19 21:00:00,0.0,1015.402111,0.023916667000000003,89.45,18.32666667,0.056416667000000004,237.94368173333336 -2016-07-19 22:00:00,0.0,1015.283333,0.0,95.38333333,16.50833333,0.08991666699999999,237.94547266666666 -2016-07-19 23:00:00,0.0,1015.2786390000001,0.0,98.63333333,15.47833333,0.134416667,237.94985053333335 -2016-07-20 00:00:00,0.0,1015.167722,0.0,99.76666667,14.6275,0.061166667,237.95283546666664 -2016-07-20 01:00:00,0.0,1015.064083,0.0,100.0,13.95166667,0.046083333,237.95562135 -2016-07-20 02:00:00,0.0,1014.901056,0.0,100.0,13.4225,0.091083333,237.95960121666667 -2016-07-20 03:00:00,0.0,1014.6489439999999,0.0,100.0,12.77666667,0.107833333,237.96019818333332 -2016-07-20 04:00:00,0.0,1014.522417,1.625666667,100.0,12.33583333,0.168916667,237.96378004999997 -2016-07-20 05:00:00,0.0,1014.5,62.9405,99.89166667,13.83916667,0.008166666999999999,237.96477503333332 -2016-07-20 06:00:00,0.0,1014.45,168.5916667,89.95,18.4575,0.0875,237.96696395 -2016-07-20 07:00:00,0.0,1014.198472,234.82166669999998,79.9875,20.825,0.419,237.96974985 -2016-07-20 08:00:00,0.0,1013.7687779999999,191.945,68.81166667,24.03916667,1.019833333,237.96895388333334 -2016-07-20 09:00:00,0.0,1013.48075,340.8591667,56.64916667,27.105,1.83975,237.965969 -2016-07-20 10:00:00,0.0,1013.1151390000001,601.7416667,50.77083333,28.97333333,2.28275,237.95960121666667 -2016-07-20 11:00:00,0.0,1012.628167,662.8166667,47.32916667,30.74833333,2.707666667,237.95343243333332 -2016-07-20 12:00:00,0.0,1012.05575,692.3416667,43.1425,31.815,2.843333333,237.94587065 -2016-07-20 13:00:00,0.0,1011.5495279999999,685.4583332999999,42.65,32.5575,2.900083333,237.9397018666667 -2016-07-20 14:00:00,0.0,1010.928167,641.0666667,41.00666667,33.15333333,2.397333333,237.9331351 -2016-07-20 15:00:00,0.0,1010.443778,556.4166667000001,40.88833333,33.37,2.394583333,237.92756329999997 -2016-07-20 16:00:00,0.0,1010.0021109999999,459.66666669999995,38.61666667,33.83666667,2.327666667,237.92457836666668 -2016-07-20 17:00:00,0.0,1009.5615,306.2583333,36.40333333,33.76583333,1.565333333,237.92338443333333 -2016-07-20 18:00:00,0.0,1008.928167,89.24083333,38.585,32.67333333,1.295916667,237.92617033333332 -2016-07-20 19:00:00,0.0,1008.805167,16.73875,62.8,27.7875,0.2725,237.9243793833333 -2016-07-20 20:00:00,0.0,1009.141667,2.030333333,76.97416667,24.59416667,0.332083333,237.92676730000002 -2016-07-20 21:00:00,0.0,1009.486972,0.0,71.45833333,25.44666667,0.359,237.92676729999997 -2016-07-20 22:00:00,0.0,1009.3296939999999,0.0,80.2025,23.45083333,0.245916667,237.9303491833333 -2016-07-20 23:00:00,0.0,1009.253639,0.0,87.48333333,21.96583333,0.17925,237.93214013333332 -2016-07-21 00:00:00,0.0,1009.54425,0.0,92.93333333,20.93333333,0.307583333,237.93472703333336 -2016-07-21 01:00:00,0.0,1009.7,0.0,92.2,20.85166667,0.196666667,237.93771193333336 -2016-07-21 02:00:00,0.0,1009.40575,0.0,89.8175,20.49583333,0.1645,237.94149280000002 -2016-07-21 03:00:00,0.0,1009.940028,0.0,72.40083333,21.4275,0.218,237.94029883333337 -2016-07-21 04:00:00,0.0,1010.577583,0.2395,72.37583333,23.05166667,0.484416667,237.94308476666671 -2016-07-21 05:00:00,0.0,1010.908806,4.7466666669999995,75.70416667,22.30416667,0.942083333,237.94388073333334 -2016-07-21 06:00:00,0.0,1011.7312220000001,19.57,87.02083333,21.195,1.051583333,237.94587066666665 -2016-07-21 07:00:00,10.07739463,1012.151528,23.21333333,93.38333333,19.87333333,0.60275,237.94945255000002 -2016-07-21 08:00:00,18.28438447,1012.745778,41.31833333,96.51666667,19.03583333,0.704416667,237.95223845 -2016-07-21 09:00:00,43.10717578,1013.008333,75.5475,99.10833333,18.37166667,0.572833333,237.95542233333333 -2016-07-21 10:00:00,2.445249984,1013.228639,180.3583333,95.68333333,19.80666667,0.6286666670000001,237.95542233333333 -2016-07-21 11:00:00,0.0,1013.158333,258.05,92.30833333,21.19166667,0.905666667,237.95840725000002 -2016-07-21 12:00:00,0.0,1012.9687779999999,327.03333330000004,86.71666667,21.88666667,1.337416667,237.96159115 -2016-07-21 13:00:00,0.0,1012.883333,493.84166669999996,81.1925,23.6875,1.40725,237.96378004999997 -2016-07-21 14:00:00,2.943667848,1012.7427220000001,497.41666669999995,79.21083333,24.4525,2.366666667,237.9627851 -2016-07-21 15:00:00,0.0,1012.366194,374.8666667,75.935,24.87833333,2.5365833330000003,237.96358105 -2016-07-21 16:00:00,0.0,1012.0619720000001,169.04166669999998,77.30666667,24.477434699999996,1.3985833330000002,237.96457601666665 -2016-07-21 17:00:00,0.0,1011.94425,85.47166667,79.83083333,24.11338512,0.889166667,237.9653720166667 -2016-07-21 18:00:00,0.0,1011.956806,79.16166667,80.19666667,23.82490685,1.208833333,237.9683569166667 -2016-07-21 19:00:00,0.0,1012.270778,23.19333333,90.8,21.64118391,0.310833333,237.96656598333334 -2016-07-21 20:00:00,0.0,1012.627583,2.8785,97.45,19.533073499999997,0.37208333299999996,237.96716296666668 -2016-07-21 21:00:00,0.0,1012.8380279999999,0.0,99.5,18.82215128,0.2915,237.97193878333334 -2016-07-21 22:00:00,0.0,1013.010917,0.0,99.71666667,18.88461381,0.016916667,237.9745257 -2016-07-21 23:00:00,0.0,1012.806806,0.0,100.0,18.43504797,0.142833333,237.97950053333338 -2016-07-22 00:00:00,0.0,1012.4593890000001,0.0,100.0,17.73398825,0.062916667,237.98109248333333 -2016-07-22 01:00:00,0.0,1012.354694,0.0,100.0,17.52358815,0.082083333,237.98188845000004 -2016-07-22 02:00:00,0.0,1012.4036390000001,0.0,100.0,17.25730051,0.07641666700000001,237.9832814166667 -2016-07-22 03:00:00,0.0,1012.348944,0.0,100.0,17.22935675,0.07925,237.98467438333333 -2016-07-22 04:00:00,0.0,1012.628639,2.1676666669999998,100.0,18.28135727,0.031,237.9854703666667 -2016-07-22 05:00:00,0.0,1012.434389,24.74583333,100.0,18.1498572,0.006083333000000001,237.98646531666665 -2016-07-22 06:00:00,0.0,1012.7088050000001,81.64083333,99.61666667,18.96597948,0.22375,237.98626631666664 -2016-07-22 07:00:00,0.0,1013.3083330000001,115.675,92.58333333,21.006696100000003,0.29991666699999997,237.98825624999998 -2016-07-22 08:00:00,0.0,1013.1963609999999,128.175,89.325,21.56310574,0.7340000000000001,237.9880572333333 -2016-07-22 09:00:00,0.0,1012.753167,378.8166667,78.19583333,24.61390724,0.759166667,237.99024616666665 -2016-07-22 10:00:00,0.0,1012.25575,528.8,71.86583333,26.31354557,0.9561666670000001,237.98586831666668 -2016-07-22 11:00:00,0.0,1012.0760560000001,627.05,63.5325,28.23837776,1.313916667,237.98149045000002 -2016-07-22 12:00:00,0.0,1011.8615,530.9916667,60.26833333,28.61561857,1.2155,237.97532164999998 -2016-07-22 13:00:00,0.0,1011.20575,444.16666669999995,57.7025,28.76766552,1.476833333,237.97372973333333 -2016-07-22 14:00:00,0.0,1010.973472,383.6416667,56.945,28.60411231,1.1089166670000001,237.96915288333332 -2016-07-22 15:00:00,0.0,1010.921833,268.815,54.88666667,28.48000913,1.412166667,237.9655710166667 -2016-07-22 16:00:00,0.0,1011.698361,77.605,73.94416667,23.58574111,1.1320000000000001,237.96059615 -2016-07-22 17:00:00,0.0,1012.0068060000001,45.3775,78.42416667,21.94774343,1.383583333,237.96059620000003 -2016-07-22 18:00:00,0.0,1012.06925,44.46583333,76.44083333,21.83679025,1.106416667,237.95940223333332 -2016-07-22 19:00:00,0.0,1012.327583,21.23916667,83.16333333,21.106964899999998,0.63575,237.95980020000002 -2016-07-22 20:00:00,0.0,1012.533805,2.2381666669999998,88.35833333,20.19714883,0.197166667,237.95980018333333 -2016-07-22 21:00:00,0.0,1012.88075,0.0,94.025,19.27336088,0.079416667,237.96139215000002 -2016-07-22 22:00:00,0.0,1012.5151390000001,0.0,96.725,19.02844201,0.09,237.96278511666665 -2016-07-22 23:00:00,0.0,1012.877,0.0,97.64166667,18.855026300000002,0.122916667,237.96397904999995 -2016-07-23 00:00:00,0.0,1013.33075,0.0,97.43333333,18.92899508,0.072666667,237.9673619666667 -2016-07-23 01:00:00,0.0,1013.225,0.0,98.04166667,18.51230425,0.046083333,237.9701478333333 -2016-07-23 02:00:00,0.0,1013.591667,0.0,99.54166667,18.37998231,0.09066666699999999,237.97432671666664 -2016-07-23 03:00:00,267.2111754,1013.138028,0.0,100.0,17.78658827,0.083666667,238.02845290000005 -2016-07-23 04:00:00,15.14697686,1012.747417,0.265833333,100.0,17.902472699999997,0.179833333,238.05750595000003 -2016-07-23 05:00:00,5.2319856719999995,1012.684389,14.97683333,100.0,17.992879000000002,0.019916667,238.06407270000003 -2016-07-23 06:00:00,0.0,1013.029111,56.53416667,100.0,18.45312922,0.076333333,238.0606898166667 -2016-07-23 07:00:00,0.0,1013.6312220000001,47.69166667,100.0,18.87721693,0.335416667,238.05989385 -2016-07-23 08:00:00,0.0,1014.0765279999999,59.9425,99.98333333,19.35883592,0.9793333329999999,238.0565109833333 -2016-07-23 09:00:00,0.0,1014.435917,72.06083333,99.33333333,19.7336111,1.8671666669999998,238.0573069333333 -2016-07-23 10:00:00,0.0,1014.7989439999999,128.71,97.4,20.03277375,2.157166667,238.05531699999997 -2016-07-23 11:00:00,0.0,1014.784389,222.54166669999998,92.86666667,21.00258672,2.693333333,238.05452103333332 -2016-07-23 12:00:00,0.0,1014.5796939999999,326.675,88.19166667,21.9888372,2.831083333,238.05372505 -2016-07-23 13:00:00,0.0,1014.508333,492.09166669999996,81.47583333,23.47807543,2.8689999999999998,238.05133715 -2016-07-23 14:00:00,0.0,1014.3651390000001,369.475,81.07583333,23.91038189,2.504666667,238.05093914999998 -2016-07-23 15:00:00,0.0,1014.029694,311.4416667,78.97583333,24.04763509,2.39825,238.0499441833333 -2016-07-23 16:00:00,0.0,1013.676056,182.875,79.96,23.18384404,2.384666667,238.04974518333333 -2016-07-23 17:00:00,0.0,1013.716667,109.75,82.025,22.68496567,1.537333333,238.04775525000002 -2016-07-23 18:00:00,0.0,1013.832278,82.445,83.35833333,22.18033417,1.392916667,238.04556631666665 -2016-07-23 19:00:00,0.0,1014.047889,29.53583333,87.14166667,21.25408059,0.310083333,238.04596430000004 -2016-07-23 20:00:00,0.0,1014.443194,2.386666667,92.33333333,20.22098322,0.343416667,238.04496933333334 -2016-07-23 21:00:00,0.0,1014.845306,0.0,97.76666667,19.11473893,0.36516666700000006,238.04377540000004 -2016-07-23 22:00:00,0.0,1015.060917,0.0,99.175,18.5509324,0.2335,238.04357640000003 -2016-07-23 23:00:00,0.0,1015.1630279999999,0.0,99.825,17.99781025,0.179666667,238.04556633333334 -2016-07-24 00:00:00,0.0,1015.167722,0.0,100.0,17.82768204,0.29275,238.04516835 -2016-07-24 01:00:00,0.0,1015.207278,0.0,100.0,17.00662852,0.206833333,238.04556633333334 -2016-07-24 02:00:00,0.0,1015.129694,0.0,100.0,17.03706886,0.182083333,238.04536733333336 -2016-07-24 03:00:00,0.0,1015.0630279999999,0.0,100.0,17.29166667,0.11908333300000001,238.04576533333332 -2016-07-24 04:00:00,0.0,1014.875,0.567916667,100.0,17.17166667,0.06408333299999999,238.04815323333332 -2016-07-24 05:00:00,0.0,1014.957278,15.1545,100.0,17.06916667,0.12675,238.04815323333335 -2016-07-24 06:00:00,0.0,1015.1869720000001,56.8775,99.25833333,18.40166667,0.173416667,238.04795423333334 -2016-07-24 07:00:00,0.0,1015.418194,122.30833329999999,89.98333333,19.99833333,0.580333333,238.04477033333333 -2016-07-24 08:00:00,0.0,1015.8166669999999,198.7416667,78.87833333,21.0375,1.27325,238.0427804166667 -2016-07-24 09:00:00,0.0,1015.729694,312.84166669999996,73.94333333,22.14666667,1.472083333,238.0427804 -2016-07-24 10:00:00,0.0,1015.5843890000001,400.90833330000004,68.635,23.4775,1.6265833330000001,238.04198445000006 -2016-07-24 11:00:00,0.0,1015.565611,451.28333330000004,65.03916667,24.66333333,1.512083333,238.03760658333331 -2016-07-24 12:00:00,0.0,1015.391667,553.8333332999999,58.3625,25.53416667,1.521833333,238.03442269999996 -2016-07-24 13:00:00,0.0,1015.319833,591.2833333,58.65,26.54833333,0.835583333,238.02785590000005 -2016-07-24 14:00:00,0.0,1014.8760560000001,666.35,55.85333333,28.095,0.85625,238.0222841 -2016-07-24 15:00:00,0.0,1014.4365,236.9666667,64.49416667,27.83583333,1.3019999999999998,238.02009518333332 -2016-07-24 16:00:00,426.2275321,1014.10575,189.4666667,66.2875,23.37083333,1.6706666669999999,238.0196972 -2016-07-24 17:00:00,9.64911348,1013.925,97.29166667,81.27333333,21.6625,0.29933333300000003,238.01910020000003 -2016-07-24 18:00:00,0.0,1014.04425,52.26333333,92.55,22.36,0.067166667,238.01651328333335 -2016-07-24 19:00:00,0.0,1014.1869720000001,15.92141667,97.75,21.5825,0.11908333300000001,238.01631433333333 -2016-07-24 20:00:00,0.0,1014.44425,0.6113333329999999,98.55833333,20.795,0.12866666699999998,238.01691128333331 -2016-07-24 21:00:00,0.0,1014.810917,0.0,99.76666667,20.21833333,0.258166667,238.0165133 -2016-07-24 22:00:00,0.0,1014.791667,0.0,98.35,20.10666667,0.149083333,238.01850321666666 -2016-07-24 23:00:00,0.0,1014.772417,0.0,98.80833333,19.91166667,0.172083333,238.0191002 -2016-07-25 00:00:00,0.0,1014.723944,0.0,98.96666667,19.7075,0.140083333,238.0202942 -2016-07-25 01:00:00,0.0,1014.6927220000001,0.0,99.8,19.32666667,0.0415,238.02069215000003 -2016-07-25 02:00:00,0.0,1014.4380279999999,0.0,99.575,19.34916667,0.143333333,238.02427405 -2016-07-25 03:00:00,0.0,1014.417722,0.0,99.95,19.22,0.093666667,238.02447303333335 -2016-07-25 04:00:00,0.0,1014.3213609999999,1.131,100.0,18.87083333,0.12925,238.02546801666668 -2016-07-25 05:00:00,0.0,1014.2895560000001,13.65416667,100.0,18.6425,0.175,238.02725895000003 -2016-07-25 06:00:00,0.0,1014.760917,68.16916667,98.30833333,19.21916667,0.196083333,238.02705995 -2016-07-25 07:00:00,0.0,1015.1239439999999,132.55,89.43333333,21.00666667,0.5641666670000001,238.02546800000002 -2016-07-25 08:00:00,0.0,1015.3072779999999,151.15,89.30833333,21.84083333,0.8795,238.02646298333335 -2016-07-25 09:00:00,0.0,1015.133333,309.7333333,80.45916667,23.72333333,1.04575,238.02367706666666 -2016-07-25 10:00:00,0.0,1015.1260560000001,513.4916667,73.08166667,25.3725,0.98875,238.02029418333333 -2016-07-25 11:00:00,0.0,1014.8937779999999,355.1166667,68.965,26.28416667,1.19475,238.0175082666667 -2016-07-25 12:00:00,2.5644711119999997,1014.79425,323.0583333,70.62916667,26.15833333,1.05275,238.01452335000002 -2016-07-25 13:00:00,0.0,1014.659389,441.4,66.56583333,26.07333333,0.93275,238.01114046666666 -2016-07-25 14:00:00,0.0,1014.7046939999999,607.1583333,60.3125,27.1775,1.5640833330000001,238.00397673333336 -2016-07-25 15:00:00,0.0,1014.633333,597.0666667,55.48666667,27.07583333,1.606416667,237.9978079166667 -2016-07-25 16:00:00,0.0,1014.642722,437.84166669999996,53.01416667,26.68333333,0.924416667,237.99362906666667 -2016-07-25 17:00:00,0.0,1014.3677220000001,295.6083333,50.405,27.38583333,1.20975,237.99203709999998 -2016-07-25 18:00:00,0.0,1014.427583,95.69916667,57.4775,27.0125,1.09,237.9872612833333 -2016-07-25 19:00:00,0.0,1014.6322779999999,48.1025,63.07666667,25.93583333,0.713916667,237.9846743666667 -2016-07-25 20:00:00,0.0,1015.145778,3.17225,81.91833333,22.26916667,0.1835,237.9834803833334 -2016-07-25 21:00:00,0.0,1015.74425,0.0,94.16666667,19.44083333,0.09375,237.9832814166667 -2016-07-25 22:00:00,0.0,1015.8,0.0,97.23333333,18.18416667,0.12941666699999999,237.98487338333337 -2016-07-25 23:00:00,0.0,1015.858333,0.0,99.43333333,17.81166667,0.326916667,237.98646531666668 -2016-07-26 00:00:00,0.0,1015.8343890000001,0.0,100.0,17.29916667,0.211166667,237.98666431666666 -2016-07-26 01:00:00,0.0,1015.783333,0.0,100.0,17.09416667,0.1635,237.98845523333333 -2016-07-26 02:00:00,0.0,1015.6833330000001,0.0,100.0,17.63166667,0.15733333300000002,237.98885321666668 -2016-07-26 03:00:00,0.0,1015.810917,0.0,100.0,18.15416667,0.15541666699999998,237.98686328333335 -2016-07-26 04:00:00,0.0,1015.9380279999999,0.52375,100.0,17.42583333,0.12091666699999999,237.9896492 -2016-07-26 05:00:00,0.0,1016.0453060000001,13.05091667,100.0,17.79666667,0.242,237.9910421666667 -2016-07-26 06:00:00,0.0,1016.207278,67.02333333,99.86666667,18.78166667,0.163,237.99323106666668 -2016-07-26 07:00:00,0.0,1016.3728890000001,214.9183333,85.26666667,20.8675,0.62025,237.99442503333333 -2016-07-26 08:00:00,0.0,1016.4713609999999,200.45833330000002,79.20166667,22.7175,0.896416667,237.99283308333335 -2016-07-26 09:00:00,0.0,1016.358333,277.675,71.40833333,24.6025,1.082083333,237.99044518333335 -2016-07-26 10:00:00,0.0,1016.314083,336.9833333,69.155,25.31583333,0.8255,237.98825624999998 -2016-07-26 11:00:00,0.0,1015.925,450.125,67.2125,25.72833333,1.37225,237.98566931666667 -2016-07-26 12:00:00,0.0,1015.716194,383.5166667,62.2125,25.67333333,1.6560833330000002,237.97969953333336 -2016-07-26 13:00:00,0.0,1015.2521109999999,175.725,64.2075,25.6975,0.9435,237.9777096 -2016-07-26 14:00:00,0.0,1015.041667,183.45,64.005,25.08833333,0.37225,237.9747247 -2016-07-26 15:00:00,0.0,1015.025,373.3333333,60.75916667,27.25666667,0.515083333,237.96875490000002 -2016-07-26 16:00:00,0.0,1015.00575,184.2333333,64.65916667,26.36583333,0.7485,237.96318306666663 -2016-07-26 17:00:00,0.0,1014.625,75.5225,67.32583333,25.22166667,0.7496666670000001,237.96517301666668 -2016-07-26 18:00:00,0.0,1014.7093890000001,94.255,70.32666667,24.895,1.9296666669999998,237.96397906666664 -2016-07-26 19:00:00,0.0,1014.7885,38.46,76.33333333,23.29083333,2.1085,237.96218813333334 -2016-07-26 20:00:00,0.0,1015.4156109999999,2.237833333,83.7375,22.15333333,1.3581666669999999,237.96218811666668 -2016-07-26 21:00:00,0.0,1015.4333330000001,0.0,92.66666667,20.245,0.6709999999999999,237.96318308333335 -2016-07-26 22:00:00,0.0,1015.347417,0.0,98.5,18.45416667,0.18566666699999998,237.9637800666667 -2016-07-26 23:00:00,0.0,1015.0583330000001,0.0,100.0,17.81583333,0.139833333,237.96557099999998 -2016-07-27 00:00:00,0.0,1014.7984720000001,0.0,100.0,17.5725,0.03125,237.96855590000004 -2016-07-27 01:00:00,0.0,1014.4984720000001,0.0,100.0,17.25583333,0.170416667,237.9703468333333 -2016-07-27 02:00:00,0.0,1014.146361,0.0,100.0,16.865,0.065083333,237.97372975 -2016-07-27 03:00:00,0.0,1013.93075,0.0,100.0,16.40166667,0.178833333,237.97432671666664 -2016-07-27 04:00:00,0.0,1013.666667,0.53725,100.0,15.77416667,0.148666667,237.9771126333333 -2016-07-27 05:00:00,7.728838056,1013.725,13.30425,100.0,16.57666667,0.628583333,237.97890358333333 -2016-07-27 06:00:00,5.027851176,1013.7036390000001,44.90083333,100.0,17.2275,0.42725,237.9795005666667 -2016-07-27 07:00:00,0.0,1013.940611,63.655,100.0,17.69416667,0.430666667,237.98089348333335 -2016-07-27 08:00:00,0.0,1014.190611,140.325,99.48333333,18.57666667,0.528,237.98069450000003 -2016-07-27 09:00:00,0.0,1014.2510560000001,263.5666667,94.74166667,19.385,0.9864166670000001,237.98149046666666 -2016-07-27 10:00:00,0.0,1013.964083,545.1,78.63083333,22.19916667,0.976916667,237.97950054999998 -2016-07-27 11:00:00,0.0,1013.581806,398.7416667,71.025,23.7775,1.175,237.97950055 -2016-07-27 12:00:00,0.0,1013.189083,625.9,61.94916667,24.03,1.22625,237.97492369999998 -2016-07-27 13:00:00,0.0,1012.785444,576.65,59.24833333,25.05166667,1.249416667,237.96994885 -2016-07-27 14:00:00,0.0,1012.322417,423.54166669999995,59.9625,24.9525,1.416833333,237.96557099999998 -2016-07-27 15:00:00,0.0,1012.235917,316.5583333,61.9025,23.95583333,1.4345,237.96238713333332 -2016-07-27 16:00:00,0.0,1012.285445,364.1166667,59.15166667,23.61083333,1.3628333330000002,237.9586062333333 -2016-07-27 17:00:00,0.0,1012.357278,287.0466667,55.89416667,23.95916667,1.3791666669999998,237.95442738333335 -2016-07-27 18:00:00,0.0,1012.4598609999999,75.49166667,57.515,23.32916667,1.569916667,237.95223846666667 -2016-07-27 19:00:00,0.0,1012.8203060000001,35.53583333,63.95166667,22.17583333,0.5711666670000001,237.94905458333332 -2016-07-27 20:00:00,0.0,1013.060917,2.577416667,85.47083333,18.1725,0.288916667,237.94905456666666 -2016-07-27 21:00:00,0.0,1013.348944,0.0,92.26666667,16.28916667,0.21766666699999998,237.9488555833333 -2016-07-27 22:00:00,0.0,1013.61925,0.0,95.44166667,16.645,0.04525,237.94885556666668 -2016-07-27 23:00:00,0.0,1013.625,0.0,96.60833333,16.485,0.032,237.95184046666665 -2016-07-28 00:00:00,0.0,1013.595306,0.0,92.21666667,17.34666667,0.1395,237.95422838333334 -2016-07-28 01:00:00,0.0,1013.7177220000001,0.0,90.8,17.75166667,0.46025,237.95203943333334 -2016-07-28 02:00:00,0.0,1013.3937779999999,0.0,97.01666667,16.91083333,0.021416667,237.9576112666667 -2016-07-28 03:00:00,0.0,1013.097417,0.0,97.725,16.33,0.082333333,237.95980018333333 -2016-07-28 04:00:00,0.0,1012.847417,0.54625,99.225,16.51166667,0.1955,237.96238711666663 -2016-07-28 05:00:00,0.0,1012.6822779999999,26.55566667,99.35833333,15.36583333,0.00875,237.9661679666667 -2016-07-28 06:00:00,0.0,1012.970306,93.74,94.525,17.51916667,0.317333333,237.96238711666663 -2016-07-28 07:00:00,0.0,1013.085917,152.18333330000002,86.72916667,19.50916667,0.734666667,237.96477503333327 -2016-07-28 08:00:00,0.0,1013.283333,189.825,75.47833333,21.26,0.774666667,237.96338206666667 -2016-07-28 09:00:00,0.0,1013.223944,293.575,73.40833333,21.72666667,0.631166667,237.96159113333331 -2016-07-28 10:00:00,0.0,1013.164083,240.7833333,70.20166667,22.34916667,0.7244166670000001,237.9586062333333 -2016-07-28 11:00:00,0.0,1013.059389,165.35,73.5175,21.75833333,0.5083333329999999,237.95860625 -2016-07-28 12:00:00,0.0,1012.872417,304.4416667,68.84083333,22.57916667,1.3715,237.95303443333333 -2016-07-28 13:00:00,0.0,1012.5546939999999,328.8,65.46083333,23.94416667,2.279833333,237.94746261666663 -2016-07-28 14:00:00,0.0,1011.9375560000001,318.575,66.7325,23.63166667,2.255,237.94288578333337 -2016-07-28 15:00:00,0.0,1011.3042220000001,306.65,62.79583333,24.42666667,2.108833333,237.94009985000002 -2016-07-28 16:00:00,0.0,1010.85575,198.3583333,65.81583333,23.63833333,2.252,237.9395028666667 -2016-07-28 17:00:00,0.0,1010.616667,117.57166670000001,75.44416667,22.535,1.222333333,237.93830891666667 -2016-07-28 18:00:00,0.0,1010.745306,49.72666667,84.89166667,21.065,1.0115,237.93552301666668 -2016-07-28 19:00:00,0.0,1010.666667,25.35916667,91.18333333,19.67,0.750833333,237.93612 -2016-07-28 20:00:00,0.0,1010.883333,3.106583333,98.36666667,19.015,0.227916667,237.93631898333334 -2016-07-28 21:00:00,0.0,1010.891667,0.0,99.55833333,18.45833333,0.18983333300000002,237.9397018666667 -2016-07-28 22:00:00,0.0,1010.7130279999999,0.0,100.0,17.675,0.1455,237.94407971666666 -2016-07-28 23:00:00,2.4050227680000003,1010.5760560000001,0.0,100.0,17.6875,0.19216666699999999,237.94567168333336 -2016-07-29 00:00:00,0.0,1010.448944,0.0,100.0,16.83583333,0.053666667,237.94825858333334 -2016-07-29 01:00:00,0.0,1010.447417,0.0,100.0,16.76833333,0.0068333330000000005,237.9496515333333 -2016-07-29 02:00:00,0.0,1010.416667,0.0,100.0,16.01416667,0.003666667,237.94805958333333 -2016-07-29 03:00:00,0.0,1010.292722,0.0,99.975,15.4475,0.12091666699999999,237.95363139999998 -2016-07-29 04:00:00,0.0,1010.277583,0.4275,100.0,15.03333333,0.0725,237.95621831666668 -2016-07-29 05:00:00,0.0,1010.560917,11.03025,97.09166667,15.56916667,0.18675,237.95761125 -2016-07-29 06:00:00,0.0,1010.7489439999999,92.02,93.34166667,16.90166667,0.223333333,237.95661631666667 -2016-07-29 07:00:00,0.0,1010.895306,135.2416667,87.89166667,18.64333333,0.619083333,237.95681528333333 -2016-07-29 08:00:00,0.0,1010.996361,155.2833333,81.3525,19.49916667,0.8725,237.95880521666666 -2016-07-29 09:00:00,0.0,1011.05,337.7083333,77.7875,20.1775,1.275666667,237.95582033333335 -2016-07-29 10:00:00,0.0,1010.7427220000001,354.3,74.95083333,21.6325,1.33475,237.95243743333333 -2016-07-29 11:00:00,25.48893703,1010.428167,236.4041667,88.105,20.57416667,0.8038333329999999,237.95303441666667 -2016-07-29 12:00:00,0.0,1009.9604439999999,184.8108333,87.70833333,21.2375,0.46975,237.9526364333333 -2016-07-29 13:00:00,0.0,1009.5,205.2666667,90.075,20.92083333,1.008,237.95263641666668 -2016-07-29 14:00:00,0.0,1009.1802779999999,318.21666669999996,80.395,22.85916667,1.178833333,237.9526364333333 -2016-07-29 15:00:00,40.21829234,1008.572417,107.43833329999998,84.96666667,22.665,1.316833333,237.9514424666667 -2016-07-29 16:00:00,10.1464584,1008.9207779999999,220.1608333,89.6,20.49583333,0.740583333,237.95422838333334 -2016-07-29 17:00:00,0.0,1009.0927220000001,167.305,84.14166667,21.27,1.05825,237.95323340000002 -2016-07-29 18:00:00,0.0,1008.914083,58.65333333,81.09,21.94916667,0.725,237.95402938333334 -2016-07-29 19:00:00,0.0,1008.741667,19.51833333,88.775,20.35666667,0.19216666699999999,237.95582033333335 -2016-07-29 20:00:00,0.0,1009.1385,1.7629166669999998,89.96666667,18.895,0.229083333,237.9564173166667 -2016-07-29 21:00:00,0.0,1009.482278,0.0,92.425,16.84666667,0.02825,237.9594022 -2016-07-29 22:00:00,0.0,1009.591667,0.0,97.90833333,15.85583333,0.048916667000000004,237.95999919999997 -2016-07-29 23:00:00,0.0,1009.7822779999999,0.0,100.0,15.49916667,0.1655,237.96139216666666 -2016-07-30 00:00:00,0.0,1009.6260560000001,0.0,100.0,15.32083333,0.00675,237.96477501666666 -2016-07-30 01:00:00,0.0,1009.30575,0.0,100.0,14.5875,0.171416667,237.96855591666667 -2016-07-30 02:00:00,0.0,1009.378639,0.0,100.0,15.48166667,0.325916667,237.96736195000003 -2016-07-30 03:00:00,0.0,1009.3046939999999,0.0,100.0,15.92083333,0.146333333,237.96875491666665 -2016-07-30 04:00:00,0.0,1009.184389,0.228666667,100.0,15.61666667,0.151416667,237.97253578333334 -2016-07-30 05:00:00,0.0,1009.24425,10.19616667,100.0,15.93666667,0.13625,237.97372973333333 -2016-07-30 06:00:00,0.0,1009.483333,64.9425,99.675,17.20333333,0.26508333300000003,237.97293378333333 -2016-07-30 07:00:00,0.0,1009.69425,90.39916667,92.50833333,19.27583333,0.612666667,237.97293376666664 -2016-07-30 08:00:00,0.0,1010.0588050000001,170.975,87.11666667,19.915,0.677416667,237.9721378 -2016-07-30 09:00:00,0.0,1010.2260560000001,240.5166667,81.23666667,20.36166667,1.081833333,237.97353075 -2016-07-30 10:00:00,0.0,1010.041667,266.65,74.57,21.72333333,1.051166667,237.97054581666666 -2016-07-30 11:00:00,0.0,1009.9687779999999,414.78333330000004,70.02666667,21.96916667,0.999583333,237.96875490000002 -2016-07-30 12:00:00,0.0,1009.716667,322.6833333,64.12333333,22.82333333,1.032666667,237.96557099999995 -2016-07-30 13:00:00,0.0,1009.659389,467.625,56.64666667,23.875,1.2780833329999999,237.95860623333337 -2016-07-30 14:00:00,0.0,1009.641667,364.3083333,57.29416667,23.69583333,1.4938333330000002,237.95144248333335 -2016-07-30 15:00:00,0.0,1009.496361,459.75,54.2725,24.64916667,1.3095,237.94507468333333 -2016-07-30 16:00:00,0.0,1009.184389,219.5083333,58.39916667,23.79083333,1.20425,237.9424878 -2016-07-30 17:00:00,0.0,1009.047417,164.80833330000002,60.2175,23.30166667,1.240666667,237.93711495000002 -2016-07-30 18:00:00,0.0,1009.011972,92.90916667,62.66583333,23.0,0.645083333,237.9329361 -2016-07-30 19:00:00,0.0,1008.916667,33.54916667,69.8725,21.935,0.427833333,237.93174214999996 -2016-07-30 20:00:00,0.0,1009.115611,2.357333333,83.45833333,19.4825,0.15675,237.9321401166667 -2016-07-30 21:00:00,0.0,1009.3,0.0,92.125,17.35916667,0.196916667,237.9337320666667 -2016-07-30 22:00:00,0.0,1009.1703060000001,0.0,96.2,16.1125,0.024833333,237.93572199999997 -2016-07-30 23:00:00,0.0,1009.00575,0.0,99.15,15.09833333,0.1385,237.93791094999997 -2016-07-31 00:00:00,0.0,1008.979694,0.0,100.0,15.005,0.06433333299999999,237.9395028666667 -2016-07-31 01:00:00,0.0,1008.706806,0.0,100.0,14.73166667,0.072583333,237.94109483333332 -2016-07-31 02:00:00,0.0,1008.775,0.0,100.0,15.26083333,0.11758333300000001,237.94447771666668 -2016-07-31 03:00:00,0.0,1008.6489439999999,0.0,100.0,15.355,0.1145,237.94706461666667 -2016-07-31 04:00:00,0.0,1008.2484720000001,0.49358333299999996,100.0,15.42083333,0.257333333,237.94985053333335 -2016-07-31 05:00:00,0.0,1008.185917,15.09283333,100.0,15.08,0.236833333,237.9514424666667 -2016-07-31 06:00:00,0.0,1008.6181939999999,56.2225,98.90833333,16.325,0.5745,237.94965153333328 -2016-07-31 07:00:00,0.0,1008.841667,153.725,89.34166667,17.87416667,0.5631666670000001,237.95283541666666 -2016-07-31 08:00:00,0.0,1008.9286390000001,152.54166669999998,83.58333333,19.20083333,0.543666667,237.95124348333331 -2016-07-31 09:00:00,0.0,1009.147417,294.025,75.885,20.62083333,0.871583333,237.9478606 -2016-07-31 10:00:00,0.0,1009.1921390000001,516.1166667,68.27916667,21.96166667,1.53875,237.94228878333334 -2016-07-31 11:00:00,0.0,1009.2010560000001,296.3083333,68.17833333,21.16583333,1.7291666669999999,237.9406968333334 -2016-07-31 12:00:00,0.0,1009.216667,245.30833330000002,69.24666667,20.9775,1.7895833330000002,237.93631898333334 -2016-07-31 13:00:00,0.0,1009.385917,387.7666667,66.88333333,21.76666667,0.979833333,237.93114515000002 -2016-07-31 14:00:00,0.0,1009.6098609999999,380.9416667,63.58166667,22.21666667,1.861833333,237.92597133333334 -2016-07-31 15:00:00,0.0,1010.255167,232.7333333,67.09916667,21.12666667,3.459833333,237.92378240000005 -2016-07-31 16:00:00,0.0,1010.5869720000001,184.29166669999998,72.5925,20.15083333,3.000166667,237.92199144999998 -2016-07-31 17:00:00,0.0,1010.930167,132.625,72.54833333,19.62083333,1.9159166669999999,237.91781260000002 -2016-07-31 18:00:00,0.0,1011.6171390000001,52.92166667,70.46083333,19.31916667,2.437,237.91701661666664 -2016-07-31 19:00:00,0.0,1012.314556,38.28,75.28166667,18.08583333,1.7283333330000001,237.9170166166667 -2016-07-31 20:00:00,0.0,1012.719722,1.77225,82.05166667,15.48833333,0.178416667,237.91960355 -2016-07-31 21:00:00,0.0,1013.54425,0.0,89.75,13.64416667,0.13625,237.92139448333333 -2016-07-31 22:00:00,0.0,1013.91925,0.0,96.9,12.4675,0.121333333,237.92258845 -2016-07-31 23:00:00,0.0,1014.227583,0.0,99.90833333,12.03916667,0.358833333,237.92457836666668 -2016-01-08 00:00:00,0.0,1014.2906109999999,0.0,100.0,12.3325,0.62025,238.07218709999998 -2016-01-08 01:00:00,0.0,1014.627583,0.0,100.0,12.19416667,0.351916667,238.07505035 -2016-01-08 02:00:00,0.0,1014.9036390000001,0.0,100.0,11.70166667,0.34616666700000004,238.0748714 -2016-01-08 03:00:00,0.0,1015.0156109999999,0.0,100.0,11.58083333,0.605083333,238.07737676666667 -2016-01-08 04:00:00,0.0,1015.1703060000001,0.465,100.0,10.65333333,0.12766666699999998,238.07791361666668 -2016-01-08 05:00:00,0.0,1015.3812220000001,25.46383333,100.0,11.13083333,0.4755,238.08059791666668 -2016-01-08 06:00:00,0.0,1015.677583,98.05666667,98.65,13.185,0.239416667,238.08167161666665 -2016-01-08 07:00:00,0.0,1015.958333,193.4983333,94.775,14.11083333,1.0075,238.07952418333332 -2016-01-08 08:00:00,0.0,1016.308806,185.44166669999998,84.19666667,16.40666667,0.77225,238.08041896666666 -2016-01-08 09:00:00,0.0,1016.427111,317.1508333,71.1225,18.19333333,1.190833333,238.08131374999996 -2016-01-08 10:00:00,0.0,1016.41925,568.7083332999999,59.69,19.74833333,1.262583333,238.07880836666666 -2016-01-08 11:00:00,0.0,1016.1734720000001,487.49166669999994,57.52833333,20.93333333,1.12175,238.07809254999998 -2016-01-08 12:00:00,0.0,1016.05575,536.2166666999999,55.4825,21.45333333,1.3115,238.07737675 -2016-01-08 13:00:00,0.0,1015.75,435.3166666999999,52.99916667,21.67416667,1.272,238.07522933333334 -2016-01-08 14:00:00,0.0,1015.472417,299.1833333,54.00583333,21.69083333,0.850833333,238.07666096666665 -2016-01-08 15:00:00,0.0,1015.05575,355.775,51.4825,22.38166667,1.021916667,238.07648200000003 -2016-01-08 16:00:00,0.0,1014.728167,170.2333333,53.6775,22.10083333,0.618583333,238.08006106666664 -2016-01-08 17:00:00,0.0,1014.422417,207.0,51.58083333,22.955,0.529333333,238.08041896666666 -2016-01-08 18:00:00,0.0,1014.159389,76.585,56.76666667,21.42333333,0.211416667,238.08059793333328 -2016-01-08 19:00:00,0.0,1014.102583,20.74583333,74.4075,18.755,0.070916667,238.07988211666665 -2016-01-08 20:00:00,0.0,1014.360917,1.07575,88.20833333,15.45166667,0.27399999999999997,238.07755571666667 -2016-01-08 21:00:00,0.0,1014.616667,0.0,95.26666667,14.55333333,0.10233333300000001,238.07719780000002 -2016-01-08 22:00:00,0.0,1014.472417,0.0,95.06666667,14.78666667,0.139083333,238.07791361666668 -2016-01-08 23:00:00,0.0,1014.416667,0.0,94.9,14.56333333,0.21383333300000001,238.07719780000002 -2016-02-08 00:00:00,0.0,1014.2,0.0,94.83333333,14.47666667,0.10341666699999999,238.09473524999999 -2016-02-08 01:00:00,0.0,1013.9042220000001,0.0,95.025,14.245,0.058083333,238.09563 -2016-02-08 02:00:00,0.0,1013.389083,0.0,96.43333333,13.92666667,0.136583333,238.09491416666663 -2016-02-08 03:00:00,0.0,1013.0713609999999,0.0,96.475,14.05583333,0.647083333,238.09330359999998 -2016-02-08 04:00:00,0.0,1013.1786390000001,0.052166667,97.43333333,13.93,0.35025,238.09187196666667 -2016-02-08 05:00:00,2.44628208,1012.728167,7.884333333,99.60833333,13.95666667,0.279833333,238.09151410000004 -2016-02-08 06:00:00,4.924653696,1012.666667,25.11916667,100.0,14.06333333,0.27525,238.09222988333332 -2016-02-08 07:00:00,0.0,1012.607278,34.6625,100.0,14.56166667,0.079416667,238.09115615000005 -2016-02-08 08:00:00,2.427917784,1012.8203060000001,82.80166667,97.31666667,15.39833333,0.444166667,238.09169303333337 -2016-02-08 09:00:00,0.0,1012.68075,135.4425,91.74166667,16.45,0.364416667,238.09222986666666 -2016-02-08 10:00:00,0.0,1012.514083,163.20833330000002,90.91666667,16.5875,1.341333333,238.09258779999996 -2016-02-08 11:00:00,0.0,1012.197417,179.35,91.9,16.60583333,2.151583333,238.09366149999997 -2016-02-08 12:00:00,5.504452944,1011.8593890000001,131.6066667,97.23333333,15.9475,1.27275,238.09312465000002 -2016-02-08 13:00:00,0.0,1011.866667,139.9175,95.225,16.64916667,1.32575,238.10010383333335 -2016-02-08 14:00:00,0.0,1012.034861,177.44166669999998,93.43333333,18.10583333,0.998416667,238.12909428333333 -2016-02-08 15:00:00,0.0,1011.956806,161.0333333,92.23333333,18.305,1.3539166669999998,238.15217925 -2016-02-08 16:00:00,0.0,1011.848944,137.71083330000002,90.71666667,18.2475,1.28275,238.17043249999998 -2016-02-08 17:00:00,0.0,1011.747417,118.22916670000001,90.85833333,18.60666667,1.227166667,238.18009596666664 -2016-02-08 18:00:00,0.0,1011.733333,59.655,94.64166667,18.04916667,0.92925,238.18134863333333 -2016-02-08 19:00:00,0.0,1011.770306,14.75725,97.8,17.18166667,1.01175,238.18206445 -2016-02-08 20:00:00,0.0,1011.7989439999999,0.83325,95.56666667,17.1575,0.951916667,238.1808117833333 -2016-02-08 21:00:00,0.0,1011.939083,0.0,94.69166667,17.2675,1.27325,238.17848540000003 -2016-02-08 22:00:00,2.4977994,1011.860917,0.0,97.13333333,16.91833333,0.68875,238.17598003333333 -2016-02-08 23:00:00,12.68576158,1011.872417,0.0,99.88333333,16.4625,0.727166667,238.17240098333332 -2016-03-08 00:00:00,10.60944722,1011.7869720000001,0.0,100.0,16.51916667,0.941916667,238.2294734333333 -2016-03-08 01:00:00,0.0,1011.5187779999999,0.0,100.0,16.6125,0.9470000000000001,238.2315630666666 -2016-03-08 02:00:00,2.612124072,1011.1568060000001,0.0,99.925,16.785,0.62375,238.23177201666667 -2016-03-08 03:00:00,0.0,1010.6568060000001,0.0,98.875,17.00666667,0.7264166670000001,238.23051825000002 -2016-03-08 04:00:00,0.0,1010.3354439999999,0.1005,98.875,17.065,0.663833333,238.22926446666668 -2016-03-08 05:00:00,0.0,1010.177583,7.10925,98.53333333,17.425,1.0655,238.2246673 -2016-03-08 06:00:00,73.71493294,1010.159389,17.38333333,99.95833333,17.41833333,1.4491666669999999,238.22424938333333 -2016-03-08 07:00:00,2.7464603519999997,1009.988028,72.9925,99.84166667,17.83166667,1.6179166669999998,238.22320456666668 -2016-03-08 08:00:00,3.0739191839999997,1009.908333,145.7166667,99.10833333,18.56,1.51725,238.22174186666666 -2016-03-08 09:00:00,0.0,1009.922417,193.9,97.05,19.18833333,1.6368333330000002,238.21965225 -2016-03-08 10:00:00,0.0,1009.947889,215.8666667,92.43333333,20.02333333,1.257416667,238.2192343 -2016-03-08 11:00:00,2.5736205119999997,1009.872417,159.6,92.43333333,20.48,0.792666667,238.21965223333333 -2016-03-08 12:00:00,5.191437504,1009.875,128.9416667,96.225,20.30333333,0.585916667,238.21798053333328 -2016-03-08 13:00:00,2.821403592,1009.9072779999999,128.77,95.10833333,19.8075,0.886833333,238.2160998833333 -2016-03-08 14:00:00,5.393494487999999,1009.927111,173.31666669999998,97.43333333,18.95916667,1.064,238.21609990000002 -2016-03-08 15:00:00,0.0,1009.40575,126.65,96.68333333,19.035,1.5430833330000002,238.21484610000002 -2016-03-08 16:00:00,0.0,1009.232278,97.91416667,95.18333333,19.58166667,0.664,238.2158909166666 -2016-03-08 17:00:00,0.0,1009.516667,82.44,93.8,19.60166667,0.573,238.21798053333336 -2016-03-08 18:00:00,0.0,1009.5703060000001,25.98925,95.03333333,19.42916667,0.38375,238.2177715833333 -2016-03-08 19:00:00,0.0,1009.202111,9.108333333,98.01666667,18.805,0.45733333299999995,238.21923431666664 -2016-03-08 20:00:00,0.0,1009.075,0.431166667,100.0,18.19666667,0.34,238.21902535 -2016-03-08 21:00:00,0.0,1008.940139,0.0,100.0,17.97083333,1.12725,238.21860744999995 -2016-03-08 22:00:00,0.0,1008.840611,0.0,100.0,17.91083333,0.606583333,238.2204881 -2016-03-08 23:00:00,0.0,1008.80575,0.0,100.0,16.90583333,0.21275,238.2188164 -2016-04-08 00:00:00,0.0,1008.4937779999999,0.0,100.0,16.38916667,0.198083333,238.2528771333333 -2016-04-08 01:00:00,0.0,1008.366667,0.0,100.0,16.22416667,0.2235,238.25225026666666 -2016-04-08 02:00:00,0.0,1008.2739439999999,0.0,95.64166667,16.00583333,0.168833333,238.24995170000003 -2016-04-08 03:00:00,0.0,1008.151056,0.0,91.16666667,16.01833333,0.147666667,238.25120543333333 -2016-04-08 04:00:00,0.0,1008.064083,0.149333333,89.94166667,17.61416667,0.279916667,238.25120544999996 -2016-04-08 05:00:00,0.0,1007.982278,4.316666667,92.5,17.8525,0.403083333,238.24995166666668 -2016-04-08 06:00:00,0.0,1008.270306,35.2545,94.975,17.385,0.677666667,238.24890686666666 -2016-04-08 07:00:00,0.0,1008.737445,91.78,94.275,18.05666667,0.75175,238.24472765 -2016-04-08 08:00:00,14.92505136,1008.973944,91.08416667,96.96666667,17.7975,0.45925,238.24075736666668 -2016-04-08 09:00:00,17.19110597,1008.909389,94.81416667,98.34166667,17.6225,0.315,238.23783189999997 -2016-04-08 10:00:00,9.792182184,1009.177583,90.48,98.825,18.01666667,0.32408333300000003,238.23636915 -2016-04-08 11:00:00,0.0,1009.325,94.2175,98.89166667,18.11,0.310083333,238.23824980000003 -2016-04-08 12:00:00,0.0,1009.4630279999999,206.1333333,95.475,19.11833333,0.849333333,238.23804086666664 -2016-04-08 13:00:00,0.0,1009.1927220000001,117.91916670000002,94.45833333,19.45,0.765,238.23616019999997 -2016-04-08 14:00:00,0.0,1008.725,179.2,90.61666667,20.02666667,0.76775,238.23657813333332 -2016-04-08 15:00:00,15.1674679,1008.9296939999999,105.76666670000002,92.56666667,19.13416667,1.88675,238.23365269999996 -2016-04-08 16:00:00,0.0,1008.791667,78.44416667,95.13333333,18.29166667,1.098833333,238.23741398333334 -2016-04-08 17:00:00,3.129703104,1008.78075,66.89666667,93.51666667,18.38833333,0.862083333,238.23574228333334 -2016-04-08 18:00:00,0.0,1008.727583,22.69833333,95.98333333,17.6125,0.18583333300000002,238.23386161666667 -2016-04-08 19:00:00,2.535130488,1008.95,5.936083332999999,99.61666667,16.99583333,0.41808333299999995,238.23448848333337 -2016-04-08 20:00:00,2.408224632,1009.280167,0.87275,100.0,16.615,0.215,238.2351153666667 -2016-04-08 21:00:00,4.818420216,1009.541667,0.0,100.0,16.145,0.11175,238.23490643333332 -2016-04-08 22:00:00,0.0,1009.835917,0.0,100.0,15.56,0.061,238.23532436666665 -2016-04-08 23:00:00,2.437795368,1009.95,0.0,100.0,15.04333333,0.080833333,238.23532435 -2016-05-08 00:00:00,0.0,1009.955167,0.0,100.0,14.53583333,0.11199999999999999,238.10564609999997 -2016-05-08 01:00:00,0.0,1010.3046939999999,0.0,100.0,14.30583333,0.11591666699999999,238.10649091666664 -2016-05-08 02:00:00,0.0,1010.352583,0.0,100.0,13.405,0.049083333,238.1078426 -2016-05-08 03:00:00,0.0,1010.5927220000001,0.0,100.0,12.89333333,0.10383333300000001,238.10767363333335 -2016-05-08 04:00:00,0.0,1010.905167,0.07275,100.0,13.37833333,0.31625,238.10767365 -2016-05-08 05:00:00,2.406948312,1011.354111,10.22025,100.0,13.29333333,0.32358333300000003,238.10615298333332 -2016-05-08 06:00:00,0.0,1012.279111,46.86416667,99.88333333,13.71083333,0.3065,238.10412540000002 -2016-05-08 07:00:00,0.0,1012.827583,128.89,97.65833333,15.06083333,0.29791666699999997,238.10361851666667 -2016-05-08 08:00:00,0.0,1013.196833,189.2833333,92.175,16.82416667,0.550166667,238.1005772166667 -2016-05-08 09:00:00,0.0,1013.8254720000001,257.84166669999996,84.775,18.12583333,0.7855,238.09838066666666 -2016-05-08 10:00:00,0.0,1014.2786390000001,471.45,77.24333333,18.7525,1.268416667,238.0978738 -2016-05-08 11:00:00,0.0,1014.44425,545.9916667,72.615,19.69083333,1.307416667,238.09702896666667 -2016-05-08 12:00:00,0.0,1014.908806,325.3166667,72.625,19.80833333,1.993,238.09415658333333 -2016-05-08 13:00:00,0.0,1015.370306,356.9583333,72.94083333,19.83833333,2.443083333,238.092298 -2016-05-08 14:00:00,0.0,1015.582278,567.6916667,64.99083333,21.04083333,2.7345833330000002,238.09128420000002 -2016-05-08 15:00:00,0.0,1015.559389,371.91583330000003,64.485,21.75166667,1.150666667,238.08942560000003 -2016-05-08 16:00:00,0.0,1015.5572779999999,399.5833333,57.5325,22.2,1.246416667,238.09060836666666 -2016-05-08 17:00:00,0.0,1015.7119720000001,208.0433333,62.96666667,21.45666667,1.278166667,238.0919600833333 -2016-05-08 18:00:00,0.0,1016.0931939999999,46.82833333,69.44166667,19.97333333,1.627583333,238.09280486666668 -2016-05-08 19:00:00,0.0,1016.7900279999999,20.17258333,75.75333333,19.10666667,0.6658333329999999,238.09229798333334 -2016-05-08 20:00:00,0.0,1017.5135,0.5701666670000001,81.7875,16.56,0.026000000000000002,238.0939876 -2016-05-08 21:00:00,0.0,1018.085917,0.0,87.2,15.4275,0.49308333299999996,238.0950013833333 -2016-05-08 22:00:00,0.0,1018.551528,0.0,93.675,15.37166667,0.5708333329999999,238.09584623333333 -2016-05-08 23:00:00,0.0,1019.121833,0.0,91.4,15.195,0.425916667,238.09770481666666 -2016-06-08 00:00:00,0.0,1019.4333330000001,0.0,93.51666667,14.66,0.3035,238.06188459999998 -2016-06-08 01:00:00,0.0,1019.333333,0.0,97.69166667,13.89333333,0.184416667,238.06408111666667 -2016-06-08 02:00:00,0.0,1019.402583,0.0,99.7,13.43333333,0.516916667,238.06391213333333 -2016-06-08 03:00:00,0.0,1019.533333,0.0,99.90833333,13.2775,0.623083333,238.06425005000003 -2016-06-08 04:00:00,0.0,1019.8135,0.109916667,99.925,12.87166667,0.5095,238.06441905 -2016-06-08 05:00:00,0.0,1020.198944,15.59166667,99.88333333,12.22583333,0.150166667,238.06475696666666 -2016-06-08 06:00:00,0.0,1020.7885,56.7425,97.36666667,14.00916667,0.313166667,238.06171561666667 -2016-06-08 07:00:00,0.0,1021.2598609999999,136.1,92.78333333,15.84166667,0.963333333,238.06323626666665 -2016-06-08 08:00:00,0.0,1021.736972,177.6166667,87.21666667,17.0725,0.7335,238.06205356666666 -2016-06-08 09:00:00,0.0,1021.9921390000001,289.3666667,81.27083333,18.52416667,1.016416667,238.06695348333332 -2016-06-08 10:00:00,0.0,1022.166667,438.21666669999996,74.09416667,20.095,1.08825,238.06120875 -2016-06-08 11:00:00,0.0,1022.215611,342.0,69.99583333,20.64,1.411083333,238.06103976666668 -2016-06-08 12:00:00,0.0,1022.0078609999999,377.84166669999996,63.2875,20.9225,1.281,238.05901221666667 -2016-06-08 13:00:00,0.0,1022.085917,352.1666667,57.9725,21.93083333,1.289666667,238.05715361666668 -2016-06-08 14:00:00,0.0,1022.1796939999999,328.34166669999996,53.7875,22.31333333,1.250333333,238.0591811666667 -2016-06-08 15:00:00,0.0,1022.2895560000001,369.875,51.66916667,22.71833333,1.167916667,238.06087081666666 -2016-06-08 16:00:00,0.0,1022.364083,356.5166667,51.96416667,22.7125,1.257416667,238.0605328833333 -2016-06-08 17:00:00,0.0,1022.3072779999999,91.15083333,57.40416667,22.26416667,0.9109166670000001,238.0585053 -2016-06-08 18:00:00,0.0,1022.353639,55.66666667,59.0325,22.54666667,0.5075,238.0605328833333 -2016-06-08 19:00:00,0.0,1022.621833,20.9075,73.00916667,20.26083333,0.16066666699999999,238.060026 -2016-06-08 20:00:00,0.0,1023.3265279999999,0.874083333,91.56666667,16.18833333,0.324666667,238.06256044999998 -2016-06-08 21:00:00,0.0,1023.8265279999999,0.0,96.45833333,14.375,0.094666667,238.06492593333334 -2016-06-08 22:00:00,0.0,1024.189556,0.0,99.59166667,13.58916667,0.2705,238.06408109999998 -2016-06-08 23:00:00,0.0,1024.602583,0.0,100.0,13.1575,0.175833333,238.06695348333332 -2016-07-08 00:00:00,0.0,1024.788028,0.0,100.0,12.80583333,0.210666667,238.02745793333335 -2016-07-08 01:00:00,0.0,1024.7,0.0,100.0,12.37,0.078666667,238.0266619666667 -2016-07-08 02:00:00,0.0,1024.4818050000001,0.0,100.0,11.32333333,0.052166667,238.02805490000003 -2016-07-08 03:00:00,0.0,1024.2239439999998,0.0,100.0,10.54083333,0.050583333,238.02885089999998 -2016-07-08 04:00:00,0.0,1024.25,0.177583333,100.0,9.958333332999999,0.013416667,238.0324327666667 -2016-07-08 05:00:00,0.0,1024.3062220000002,10.90358333,100.0,9.874166667,0.021416667,238.03402471666664 -2016-07-08 06:00:00,0.0,1024.673945,100.7841667,100.0,12.87583333,0.244166667,238.03442269999996 -2016-07-08 07:00:00,0.0,1024.9572779999999,195.5408333,93.19166667,15.725,0.833,238.03322875 -2016-07-08 08:00:00,0.0,1025.133333,177.3625,82.23666667,18.50666667,0.7955,238.0316368166667 -2016-07-08 09:00:00,0.0,1024.922417,291.3858333,72.64,20.60333333,0.991833333,238.02964683333335 -2016-07-08 10:00:00,0.0,1024.565139,551.925,63.6675,22.06666667,1.164416667,238.024672 -2016-07-08 11:00:00,0.0,1024.1615,614.35,60.63,23.30416667,1.101083333,238.02347806666668 -2016-07-08 12:00:00,0.0,1023.5401390000001,644.9,58.32333333,24.43333333,1.31775,238.01790625 -2016-07-08 13:00:00,0.0,1022.8365,633.175,54.075,25.59333333,1.44675,238.0159163166667 -2016-07-08 14:00:00,0.0,1022.241194,580.3666667,50.51,26.50166667,1.11875,238.01611533333335 -2016-07-08 15:00:00,0.0,1021.395889,518.4,50.6275,27.02166667,1.4344166669999998,238.01492135 -2016-07-08 16:00:00,0.0,1020.7745279999999,419.825,50.38083333,27.47166667,1.15375,238.01273243333333 -2016-07-08 17:00:00,0.0,1020.008917,232.61833330000002,52.03,27.53916667,0.8594166670000001,238.01213546666668 -2016-07-08 18:00:00,0.0,1019.434389,42.4575,54.75833333,26.47666667,0.38125,238.01153845 -2016-07-08 19:00:00,0.0,1019.3,22.77525,63.81416667,23.62166667,0.0315,238.01193645 -2016-07-08 20:00:00,0.0,1019.358333,1.22575,84.62916667,19.12833333,0.167333333,238.0109414666667 -2016-07-08 21:00:00,0.0,1019.0234720000001,0.0,91.51666667,16.89916667,0.0575,238.01492138333333 -2016-07-08 22:00:00,0.0,1018.779694,0.0,91.375,15.71833333,0.0965,238.01691128333334 -2016-07-08 23:00:00,0.0,1018.583333,0.0,97.05833333,15.67833333,0.461583333,238.01870221666664 -2016-08-08 00:00:00,0.0,1018.2578609999999,0.0,99.9,15.23583333,0.12116666699999999,237.9474626 -2016-08-08 01:00:00,0.0,1017.616194,0.0,100.0,14.17916667,0.008333333,237.95064651666667 -2016-08-08 02:00:00,0.0,1017.106806,0.0,100.0,13.535,0.091666667,237.9508455 -2016-08-08 03:00:00,0.0,1016.564083,0.0,100.0,13.00083333,0.16925,237.95363139999998 -2016-08-08 04:00:00,0.0,1016.40575,0.113666667,100.0,13.35416667,0.134083333,237.95482536666665 -2016-08-08 05:00:00,0.0,1016.3119720000001,6.860416667000001,99.075,13.70583333,0.056833333,237.95681530000002 -2016-08-08 06:00:00,0.0,1016.283333,23.53833333,86.44166667,15.39333333,0.10775,237.95721328333335 -2016-08-08 07:00:00,0.0,1016.23075,113.62,83.70833333,18.22666667,0.64225,237.95999918333334 -2016-08-08 08:00:00,0.0,1015.997417,198.2666667,78.9625,21.2,1.3156666670000001,237.95721328333332 -2016-08-08 09:00:00,0.0,1015.738028,303.46666669999996,70.17333333,22.35,1.514666667,237.95462638333333 -2016-08-08 10:00:00,0.0,1015.625,448.86666669999994,65.55083333,23.47916667,1.5859166669999998,237.94945256666665 -2016-08-08 11:00:00,0.0,1015.5583330000001,646.95,55.81333333,24.48833333,1.5270833330000002,237.94388073333334 -2016-08-08 12:00:00,0.0,1015.5880279999999,597.1916667,59.03666667,24.5025,1.4824166669999999,237.93651796666668 -2016-08-08 13:00:00,0.0,1015.706222,610.8416667,53.17583333,24.4275,1.929,237.93154313333332 -2016-08-08 14:00:00,0.0,1015.7568060000001,564.1416667000001,51.18833333,24.445,2.201083333,237.9265683333333 -2016-08-08 15:00:00,0.0,1015.6,494.1833333000001,55.47666667,24.35,1.9084166669999998,237.92278745 -2016-08-08 16:00:00,0.0,1015.448944,340.9,58.7725,23.57,2.007666667,237.92020053333337 -2016-08-08 17:00:00,0.0,1015.955167,96.9925,69.10333333,20.47416667,4.004166667,237.91562368333334 -2016-08-08 18:00:00,0.0,1016.325,35.5325,72.6725,19.15833333,1.6415,237.9142307333333 -2016-08-08 19:00:00,0.0,1016.083333,13.38025,74.4825,18.59583333,0.259583333,237.91522568333335 -2016-08-08 20:00:00,0.0,1016.41925,0.316083333,79.01,17.57583333,0.223833333,237.91661866666664 -2016-08-08 21:00:00,0.0,1016.392722,0.0,85.3,15.91083333,0.20875,237.91860858333334 -2016-08-08 22:00:00,0.0,1016.1354439999999,0.0,87.09166667,16.20416667,0.334916667,237.91940456666666 -2016-08-08 23:00:00,0.0,1016.283806,0.0,91.0,15.45083333,0.075583333,237.91880758333332 -2016-09-08 00:00:00,0.0,1016.5713609999999,0.0,96.73333333,14.1925,0.077833333,237.85994329999997 -2016-09-08 01:00:00,0.0,1016.2177220000001,0.0,99.43333333,13.62,0.025666667,237.85950193333335 -2016-09-08 02:00:00,0.0,1016.158333,0.0,99.81666667,13.94916667,0.033416667000000004,237.86219745000002 -2016-09-08 03:00:00,0.0,1016.25575,0.0,100.0,13.86,0.055833333,237.8635468 -2016-09-08 04:00:00,0.0,1016.2348609999999,0.0,99.34166667,14.06416667,0.15441666699999998,237.8647711666667 -2016-09-08 05:00:00,2.628730488,1016.611972,2.509083333,98.275,13.98666667,0.518416667,237.8632668333333 -2016-09-08 06:00:00,0.0,1016.710917,40.53833333,99.775,13.735,0.233666667,237.86485660000002 -2016-09-08 07:00:00,0.0,1017.0062220000001,197.985,89.59166667,15.30166667,0.37391666700000004,237.86471738333339 -2016-09-08 08:00:00,0.0,1017.158333,165.5916667,80.20083333,16.63083333,0.800666667,237.86693361666667 -2016-09-08 09:00:00,0.0,1017.2869720000001,200.9666667,74.6475,17.37083333,0.6639166670000001,237.86681338333332 -2016-09-08 10:00:00,0.0,1017.271361,133.97166670000001,72.06666667,16.855,0.824666667,237.86692886666665 -2016-09-08 11:00:00,0.0,1017.292722,248.075,64.81166667,17.715,1.430083333,237.86185421666667 -2016-09-08 12:00:00,0.0,1017.1,499.5666666999999,56.17333333,18.41416667,2.069583333,237.85753725000004 -2016-09-08 13:00:00,0.0,1017.146361,387.84166669999996,51.2225,19.395,2.709166667,237.85135051666666 -2016-09-08 14:00:00,0.0,1016.810444,544.8833333,44.69916667,20.1375,2.108666667,237.84700193333333 -2016-09-08 15:00:00,0.0,1016.3130279999999,429.2,42.43583333,20.61666667,3.0491666669999997,237.8437053 -2016-09-08 16:00:00,0.0,1016.3380279999999,228.45,46.2375,19.2575,2.249666667,237.8396588833333 -2016-09-08 17:00:00,0.0,1016.357278,157.0083333,49.8375,18.15166667,1.883083333,237.83759135 -2016-09-08 18:00:00,0.0,1016.633333,77.09916667,58.4975,17.37833333,2.2119166669999997,237.83643971666666 -2016-09-08 19:00:00,0.0,1016.7431939999999,7.36425,69.21,16.10583333,1.342083333,237.83342308333332 -2016-09-08 20:00:00,0.0,1017.065611,0.15875,75.3275,15.43916667,1.4651666669999999,237.83392141666664 -2016-09-08 21:00:00,0.0,1017.291667,0.0,76.7575,14.61083333,0.63475,237.83707251666667 -2016-09-08 22:00:00,0.0,1017.216667,0.0,80.44583333,13.8,0.61375,237.83760083333334 -2016-09-08 23:00:00,0.0,1017.05575,0.0,93.625,11.82583333,0.032,237.83816396666668 -2016-10-08 00:00:00,0.0,1016.8677220000001,0.0,96.175,11.28333333,0.014083333,237.95947506666667 -2016-10-08 01:00:00,0.0,1016.55575,0.0,98.125,10.35916667,0.008,237.9613306166667 -2016-10-08 02:00:00,0.0,1016.272417,0.0,99.825,9.955,0.03625,237.9604242 -2016-10-08 03:00:00,0.0,1016.258333,0.0,98.84166667,10.40583333,0.12966666699999999,237.9607389833333 -2016-10-08 04:00:00,0.0,1015.9927220000001,0.015,96.90833333,10.45416667,0.031916667,237.96243793333338 -2016-10-08 05:00:00,0.0,1016.107278,3.773916667,93.94166667,10.755,0.380833333,237.96062826666665 -2016-10-08 06:00:00,0.0,1016.546833,29.46333333,94.99166667,10.8925,0.132916667,237.95944501666668 -2016-10-08 07:00:00,0.0,1016.825,76.685,92.7,11.6825,0.24983333300000002,237.95984048333335 -2016-10-08 08:00:00,0.0,1016.958333,122.33,86.06666667,13.04083333,0.3885,237.95885178333333 -2016-10-08 09:00:00,4.9729444560000005,1017.06925,89.64666667,85.98333333,12.7025,0.7404166670000001,237.96070576666668 -2016-10-08 10:00:00,0.0,1017.310917,201.9083333,84.05,13.41,0.875083333,237.96047639999998 -2016-10-08 11:00:00,0.0,1017.35575,325.95,83.19,14.03166667,0.7819166670000001,237.9615077666667 -2016-10-08 12:00:00,0.0,1016.7901390000001,470.5,75.42583333,16.03916667,1.07075,237.96167705000002 -2016-10-08 13:00:00,0.0,1016.48075,284.4833333,69.1175,15.79833333,1.545333333,237.9623572666667 -2016-10-08 14:00:00,0.0,1016.418194,73.49083333,73.94083333,14.74,1.42575,237.96047639999998 -2016-10-08 15:00:00,0.0,1016.6916669999999,504.575,70.955,15.3525,1.92975,237.96015526666665 -2016-10-08 16:00:00,16.64076694,1017.1051669999999,227.0333333,65.10833333,15.12166667,2.4525,237.95963485000001 -2016-10-08 17:00:00,0.0,1017.154694,178.255,63.235,15.28083333,0.86375,237.96032929999998 -2016-10-08 18:00:00,0.0,1017.1786390000001,35.49166667,65.25833333,15.77333333,0.51975,237.96300265 -2016-10-08 19:00:00,0.0,1017.7385,13.710999999999999,75.85666667,13.38916667,0.372166667,237.96471585000003 -2016-10-08 20:00:00,0.0,1018.3931949999999,0.43825,92.15833333,9.9525,0.032833333,237.96548144999997 -2016-10-08 21:00:00,0.0,1018.887444,0.0,95.7,8.368333332999999,0.000916667,237.96351363333335 -2016-10-08 22:00:00,0.0,1019.335917,0.0,97.71666667,7.859583333,0.073916667,237.96504485 -2016-10-08 23:00:00,0.0,1019.53075,0.0,99.94166667,7.111916667000001,0.010166666999999999,237.96536913333333 -2016-11-08 00:00:00,0.0,1019.510917,0.0,100.0,6.70775,0.08375,238.04684853333333 -2016-11-08 01:00:00,0.0,1019.475,0.0,100.0,6.247166667,0.13,238.04477470000003 -2016-11-08 02:00:00,0.0,1019.525,0.0,100.0,6.52225,0.16175,238.0432592666667 -2016-11-08 03:00:00,0.0,1019.5630279999999,0.0,100.0,5.007083333,0.07983333299999999,238.04264234999997 -2016-11-08 04:00:00,0.0,1019.603639,0.071416667,100.0,4.121166667,0.02075,238.04494551666667 -2016-11-08 05:00:00,0.0,1019.7515279999999,9.841333333,100.0,3.810166667,0.016,238.0446829166667 -2016-11-08 06:00:00,0.0,1020.2728890000001,54.92416667,100.0,6.022333333,0.02475,238.04651316666664 -2016-11-08 07:00:00,0.0,1020.6562220000001,146.3916667,99.33333333,8.967666667,0.40666666700000004,238.0463834666666 -2016-11-08 08:00:00,0.0,1020.8510560000001,212.3833333,88.06666667,12.335,0.756083333,238.0486218166667 -2016-11-08 09:00:00,0.0,1020.8083330000001,240.775,82.0825,14.05416667,0.879416667,238.04935899999998 -2016-11-08 10:00:00,0.0,1020.4151390000001,433.15,70.71916667,15.5175,0.989833333,238.04859651666666 -2016-11-08 11:00:00,0.0,1019.9115,446.9416666999999,61.3625,16.44583333,1.164583333,238.051156 -2016-11-08 12:00:00,0.0,1019.583333,432.58333330000005,54.66583333,17.36833333,0.940916667,238.05091713333331 -2016-11-08 13:00:00,0.0,1019.3365,392.45,47.61083333,17.87083333,1.105583333,238.05152615 -2016-11-08 14:00:00,0.0,1018.7343890000001,349.075,39.03166667,18.2875,1.233833333,238.05313966666665 -2016-11-08 15:00:00,0.0,1018.503167,269.96666669999996,40.45416667,18.31166667,1.1863333329999999,238.05463298333333 -2016-11-08 16:00:00,0.0,1017.989083,140.3583333,46.10916667,17.85916667,0.7250833329999999,238.05340541666666 -2016-11-08 17:00:00,0.0,1017.885917,73.6275,55.53833333,17.3875,0.654833333,238.05543498333336 -2016-11-08 18:00:00,2.441380824,1018.410917,32.02083333,75.2175,15.15083333,0.553666667,238.05541281666663 -2016-11-08 19:00:00,7.404504504,1018.422417,7.022083332999999,90.80833333,13.02083333,0.281916667,238.05703423333333 -2016-11-08 20:00:00,9.870432312,1018.13075,0.077,96.41666667,12.29583333,0.3745,238.0557719 -2016-11-08 21:00:00,17.6623427,1018.052583,0.0,97.73333333,12.19083333,0.500166667,238.05563586666668 -2016-11-08 22:00:00,10.15123538,1017.9510560000001,0.0,99.04166667,12.145,0.642,238.05399228333337 -2016-11-08 23:00:00,10.06019033,1017.8687779999999,0.0,99.7,12.35583333,0.5638333329999999,238.05471838333332 -2016-12-08 00:00:00,0.0,1017.542722,0.0,100.0,12.54333333,0.39816666700000003,238.02716208333334 -2016-12-08 01:00:00,0.0,1017.45,0.0,100.0,12.76583333,0.34916666700000004,238.02676185000004 -2016-12-08 02:00:00,2.421048024,1017.3213609999999,0.0,100.0,13.005,0.238916667,238.02617655000003 -2016-12-08 03:00:00,0.0,1017.236972,0.0,100.0,13.19583333,0.24775,238.02561500000002 -2016-12-08 04:00:00,0.0,1017.332278,0.017833333,100.0,13.30833333,0.30375,238.02595668333333 -2016-12-08 05:00:00,0.0,1017.7301669999999,3.9994166669999998,100.0,13.55333333,0.11699999999999999,238.02632525000004 -2016-12-08 06:00:00,0.0,1018.107278,33.63,99.925,14.15083333,0.257333333,238.02592186666666 -2016-12-08 07:00:00,0.0,1018.610917,64.31833333,99.23333333,15.03333333,0.416916667,238.02629521666668 -2016-12-08 08:00:00,0.0,1019.0395560000001,154.8133333,98.63333333,15.78166667,0.69775,238.02605000000003 -2016-12-08 09:00:00,0.0,1019.4598609999999,192.9916667,96.1,16.54333333,0.663416667,238.02577318333337 -2016-12-08 10:00:00,0.0,1019.89425,243.95833330000002,94.39166667,17.58916667,0.7655,238.02574628333332 -2016-12-08 11:00:00,0.0,1020.0406109999999,261.55,92.64166667,18.37416667,0.78225,238.02507083333333 -2016-12-08 12:00:00,0.0,1020.1869720000001,229.975,91.5,19.10333333,0.86125,238.02451556666665 -2016-12-08 13:00:00,0.0,1020.3906109999999,172.55,88.40833333,19.65333333,0.7636666670000001,238.02475761666665 -2016-12-08 14:00:00,0.0,1020.5703060000001,173.6225,86.325,19.53,1.0105,238.0245662 -2016-12-08 15:00:00,0.0,1020.604694,221.85,79.78333333,20.70083333,1.71075,238.02582063333332 -2016-12-08 16:00:00,0.0,1020.755167,114.9775,77.97,20.9875,1.0225,238.02779639999997 -2016-12-08 17:00:00,0.0,1020.9130279999999,92.3925,77.97916667,21.06166667,0.87125,238.0251736666667 -2016-12-08 18:00:00,0.0,1020.672417,41.05,78.03833333,20.9325,0.36975,238.02678875000004 -2016-12-08 19:00:00,0.0,1020.6536390000001,10.62566667,84.57333333,20.01,0.027666667000000002,238.02718421666665 -2016-12-08 20:00:00,0.0,1020.9598609999999,0.279416667,95.00833333,18.40916667,0.109083333,238.02657678333335 -2016-12-08 21:00:00,0.0,1021.108333,0.0,98.94166667,17.565,0.055333333,238.02743256666668 -2016-12-08 22:00:00,0.0,1020.8901390000001,0.0,99.66666667,17.39416667,0.22725,238.02835636666669 -2016-12-08 23:00:00,0.0,1020.6916669999999,0.0,90.64166667,17.19583333,0.044416667,238.02710513333332 -2016-08-13 00:00:00,0.0,1020.522417,0.0,87.54166667,17.185,0.165333333,237.94985051666666 -2016-08-13 01:00:00,0.0,1020.25575,0.0,89.64166667,17.41666667,0.07525,237.95323341666665 -2016-08-13 02:00:00,0.0,1019.85575,0.0,94.18333333,15.87583333,0.095083333,237.95900421666667 -2016-08-13 03:00:00,0.0,1019.517722,0.0,99.65833333,13.92833333,0.015416667,237.9598002 -2016-08-13 04:00:00,0.0,1019.3818060000001,0.038,100.0,13.0175,0.22575,237.96159115 -2016-08-13 05:00:00,0.0,1019.2728890000001,7.544666667,100.0,12.04916667,0.0505,237.96338206666667 -2016-08-13 06:00:00,0.0,1019.6228890000001,47.16083333,100.0,14.165,0.066,237.96298409999997 -2016-08-13 07:00:00,0.0,1019.783333,200.3108333,88.3,18.13666667,0.37658333299999996,237.96338206666667 -2016-08-13 08:00:00,0.0,1019.8437779999999,173.2116667,78.5375,20.81416667,0.862083333,237.96159115 -2016-08-13 09:00:00,0.0,1019.611972,282.9841667,72.9,22.38,1.1381666670000001,237.96099413333332 -2016-08-13 10:00:00,0.0,1019.4865,546.9333333,63.65583333,23.87,1.0805833329999999,237.95582035000004 -2016-08-13 11:00:00,0.0,1019.029694,524.4833333,55.53333333,24.83333333,1.3865,237.94985053333332 -2016-08-13 12:00:00,0.0,1018.759389,616.8666667,50.865,25.51166667,1.32775,237.94149280000002 -2016-08-13 13:00:00,0.0,1018.60575,623.175,48.95083333,26.7175,1.300666667,237.93353308333334 -2016-08-13 14:00:00,0.0,1018.1437779999999,567.3583332999999,49.96416667,27.2825,1.491916667,237.92696628333331 -2016-08-13 15:00:00,0.0,1017.7687779999999,423.1083333000001,51.235,27.34833333,1.290833333,237.9213945 -2016-08-13 16:00:00,0.0,1017.572417,349.0,51.21833333,27.65,1.04325,237.91522569999998 -2016-08-13 17:00:00,0.0,1017.3296939999999,114.765,47.70333333,27.23916667,0.87975,237.91084783333335 -2016-08-13 18:00:00,0.0,1017.370306,38.25,49.14583333,26.10916667,1.165583333,237.90647 -2016-08-13 19:00:00,0.0,1017.5312220000001,14.07166667,71.96666667,22.39,0.15875,237.905873 -2016-08-13 20:00:00,0.0,1018.033806,0.22066666699999998,83.54166667,19.34583333,0.290666667,237.90527601666668 -2016-08-13 21:00:00,0.0,1018.486972,0.0,89.93333333,18.17333333,0.283083333,237.90706696666666 -2016-08-13 22:00:00,0.0,1018.865611,0.0,97.38333333,16.8525,0.509916667,237.9086589 -2016-08-13 23:00:00,0.0,1018.76925,0.0,99.18333333,15.365,0.141916667,237.9094549 -2016-08-14 00:00:00,0.0,1018.7901390000001,0.0,99.84166667,13.84,0.418,237.9100518833333 -2016-08-14 01:00:00,0.0,1018.852583,0.0,100.0,13.38833333,0.29225,237.91164381666667 -2016-08-14 02:00:00,0.0,1018.8380279999999,0.0,100.0,12.31333333,0.070083333,237.91442971666666 -2016-08-14 03:00:00,0.0,1018.472417,0.0,100.0,11.3025,0.12825,237.91840956666667 -2016-08-14 04:00:00,0.0,1018.636972,0.015,100.0,10.7275,0.18841666699999998,237.92079750000002 -2016-08-14 05:00:00,0.0,1018.785917,7.836916667000001,100.0,10.52666667,0.052416667,237.92238943333334 -2016-08-14 06:00:00,0.0,1019.06925,51.60833333,100.0,12.43416667,0.144333333,237.9235834 -2016-08-14 07:00:00,0.0,1019.241667,168.6925,96.49166667,15.8075,0.7466666670000001,237.92636931666667 -2016-08-14 08:00:00,0.0,1019.4671390000001,213.825,84.15083333,18.99833333,0.7955,237.9251753666667 -2016-08-14 09:00:00,0.0,1019.666667,347.975,74.37916667,21.2,0.5085833329999999,237.92537435000006 -2016-08-14 10:00:00,0.0,1019.5234720000001,486.16666669999995,66.84583333,22.28583333,1.14075,237.92039951666666 -2016-08-14 11:00:00,0.0,1019.122417,252.68333330000002,66.32,22.0225,1.4723333330000001,237.91781260000002 -2016-08-14 12:00:00,0.0,1019.0156109999999,485.15,62.65416667,23.14166667,1.42825,237.91044986666668 -2016-08-14 13:00:00,0.0,1018.819833,420.125,60.17916667,23.64833333,1.126,237.90388306666668 -2016-08-14 14:00:00,0.0,1018.613028,542.825,53.92666667,25.2575,1.0135,237.89851026666665 -2016-08-14 15:00:00,0.0,1018.3604449999999,481.175,49.07416667,26.04666667,1.1694166670000001,237.89552536666667 -2016-08-14 16:00:00,0.0,1018.2,421.09166669999996,46.36583333,25.35583333,2.29925,237.89254044999998 -2016-08-14 17:00:00,0.0,1017.847417,141.11,47.9525,24.92583333,1.149833333,237.89234145 -2016-08-14 18:00:00,0.0,1017.861972,49.48833333,52.63916667,24.325,1.9538333330000002,237.8909485 -2016-08-14 19:00:00,0.0,1018.3983609999999,13.67758333,63.9175,22.405,2.621333333,237.8903515333333 -2016-08-14 20:00:00,0.0,1019.09425,0.140333333,73.63083333,20.92166667,1.981333333,237.8907495 -2016-08-14 21:00:00,0.0,1019.3812220000001,0.0,88.025,17.6925,0.46016666700000003,237.89453038333332 -2016-08-14 22:00:00,0.0,1019.634389,0.0,95.975,14.5225,0.09775,237.8965203333333 -2016-08-14 23:00:00,0.0,1019.697889,0.0,98.38333333,13.46666667,0.13475,237.89811226666666 -2016-08-15 00:00:00,0.0,1019.85575,0.0,99.65,12.20583333,0.229583333,237.90069918333333 -2016-08-15 01:00:00,0.0,1019.9072779999999,0.0,100.0,11.64,0.172083333,237.90249011666666 -2016-08-15 02:00:00,0.0,1019.684389,0.0,100.0,10.98666667,0.2065,237.90786293333335 -2016-08-15 03:00:00,0.0,1019.604694,0.0,100.0,10.46833333,0.09,237.90985286666668 -2016-08-15 04:00:00,0.0,1019.64425,0.021166667000000004,100.0,10.185,0.05925,237.91184280000002 -2016-08-15 05:00:00,0.0,1019.5677220000001,6.4195,100.0,9.889166667000001,0.035666667,237.9150266833333 -2016-08-15 06:00:00,0.0,1019.805167,41.21583333,100.0,11.595,0.069833333,237.91462871666667 -2016-08-15 07:00:00,0.0,1020.141667,193.6791667,92.89166667,15.2425,0.933666667,237.91582266666668 -2016-08-15 08:00:00,0.0,1019.975,171.1191667,81.94666667,16.82666667,2.4561666669999997,237.9168176166667 -2016-08-15 09:00:00,0.0,1019.8687779999999,282.8633333,74.88416667,18.45833333,2.615416667,237.91562368333334 -2016-08-15 10:00:00,0.0,1019.547417,530.75,66.795,20.26666667,2.594166667,237.91084783333335 -2016-08-15 11:00:00,0.0,1019.1365,597.2166667,59.35166667,22.095,2.082583333,237.90467905 -2016-08-15 12:00:00,0.0,1018.739083,631.5333333,56.45833333,23.16333333,1.899416667,237.89811225000003 -2016-08-15 13:00:00,0.0,1018.402111,638.575,53.43583333,24.07583333,1.910916667,237.8917445 -2016-08-15 14:00:00,0.0,1018.017722,492.11666669999994,52.40666667,24.46,2.359083333,237.88736663333336 -2016-08-15 15:00:00,0.0,1017.6401390000001,409.59166669999996,51.03,24.76166667,2.0731666669999997,237.88537669999997 -2016-08-15 16:00:00,0.0,1017.145889,377.1083333,49.4875,24.8225,1.9396666669999998,237.8821928 -2016-08-15 17:00:00,0.0,1016.50575,158.3175,51.2125,24.15666667,2.56525,237.8821928 -2016-08-15 18:00:00,0.0,1016.34425,42.7675,54.33083333,22.89416667,3.281083333,237.88020288333334 -2016-08-15 19:00:00,0.0,1016.610917,11.87066667,64.14666667,20.7925,2.225,237.87900891666666 -2016-08-15 20:00:00,0.0,1016.95,0.19675,78.53083333,19.15,1.4909166669999998,237.88000388333333 -2016-08-15 21:00:00,0.0,1017.097889,0.0,89.775,16.94916667,0.7373333329999999,237.88239178333333 -2016-08-15 22:00:00,0.0,1017.297417,0.0,96.18333333,15.01333333,0.36775,237.88438173333336 -2016-08-15 23:00:00,0.0,1017.4239439999999,0.0,97.21666667,13.24166667,0.242333333,237.88657066666667 -2016-08-16 00:00:00,0.0,1017.1927220000001,0.0,99.48333333,11.13333333,0.122,237.89114751666662 -2016-08-16 01:00:00,0.0,1016.745889,0.0,100.0,10.19083333,0.10675,237.89373441666666 -2016-08-16 02:00:00,0.0,1016.4333330000001,0.0,100.0,9.308333333,0.063916667,237.8963213333333 -2016-08-16 03:00:00,0.0,1016.264083,0.0,100.0,8.319333333,0.082916667,237.89990321666664 -2016-08-16 04:00:00,0.0,1016.004694,0.009416667,100.0,7.95775,0.110583333,237.9026891 -2016-08-16 05:00:00,0.0,1015.776056,7.02675,100.0,7.7410000000000005,0.037166667,237.905674 -2016-08-16 06:00:00,0.0,1015.902583,38.39083333,100.0,9.915833333,0.006083333000000001,237.90806195000002 -2016-08-16 07:00:00,0.0,1016.004694,142.905,93.70833333,13.24833333,0.423416667,237.9072659666667 -2016-08-16 08:00:00,0.0,1015.7427220000001,159.075,81.79583333,15.19916667,1.9059166669999998,237.91025083333332 -2016-08-16 09:00:00,0.0,1015.552111,291.8,72.66666667,17.175,1.8466666669999998,237.906669 -2016-08-16 10:00:00,0.0,1015.022416,496.1083333000001,65.3,19.43583333,1.1803333329999999,237.9034851 -2016-08-16 11:00:00,0.0,1014.699528,598.0416667000001,57.89583333,22.15583333,1.07075,237.89751528333332 -2016-08-16 12:00:00,0.0,1014.203167,637.8666667,52.71166667,23.6025,1.183916667,237.89074951666666 -2016-08-16 13:00:00,0.0,1013.763028,631.8083333,46.52166667,23.88833333,1.465333333,237.88179481666668 -2016-08-16 14:00:00,0.0,1013.0802779999999,584.3,47.16083333,24.7725,1.4405833330000002,237.8766209833333 -2016-08-16 15:00:00,0.0,1012.568778,506.5666666999999,44.1625,24.81583333,2.1485,237.8710491833333 -2016-08-16 16:00:00,0.0,1012.0578609999999,396.775,45.7675,25.035,2.187,237.8680642666667 -2016-08-16 17:00:00,0.0,1011.397417,104.37,48.01416667,24.15416667,2.3715833330000002,237.86886024999998 -2016-08-16 18:00:00,0.0,1011.1916669999999,40.71333333,51.635,23.30333333,2.0215,237.86667133333336 -2016-08-16 19:00:00,0.0,1011.24425,11.22475,64.2825,20.38,0.6779999999999999,237.86507938333332 -2016-08-16 20:00:00,0.0,1011.66925,0.145666667,84.16583333,16.195,0.22116666699999998,237.86607435 -2016-08-16 21:00:00,0.0,1011.952583,0.0,91.06666667,13.82083333,0.23525,237.86746728333333 -2016-08-16 22:00:00,0.0,1012.0630279999999,0.0,95.61666667,14.86916667,0.755,237.8710491833333 -2016-08-16 23:00:00,0.0,1012.0869720000001,0.0,94.5,15.87166667,0.84675,237.875825 -2016-08-17 00:00:00,0.0,1012.240611,0.0,90.34166667,14.1275,0.350083333,237.87761596666664 -2016-08-17 01:00:00,0.0,1012.3,0.0,93.24166667,12.96083333,0.33275,237.88079983333333 -2016-08-17 02:00:00,0.0,1012.0318060000001,0.0,97.73333333,10.54333333,0.236333333,237.88398375 -2016-08-17 03:00:00,0.0,1011.7046939999999,0.0,99.975,9.723333333,0.237416667,237.88816261666668 -2016-08-17 04:00:00,0.0,1011.809389,0.006083333000000001,100.0,9.3075,0.05275,237.89035151666667 -2016-08-17 05:00:00,0.0,1011.5713609999999,5.91575,100.0,9.308333333,0.161583333,237.89472936666667 -2016-08-17 06:00:00,0.0,1011.527583,30.15833333,100.0,11.55833333,0.6858333329999999,237.89552536666665 -2016-08-17 07:00:00,0.0,1011.7,211.175,86.72666667,14.31333333,1.78025,237.89472936666667 -2016-08-17 08:00:00,0.0,1011.6536390000001,174.1,74.87166667,16.62083333,1.238166667,237.89552536666667 -2016-08-17 09:00:00,0.0,1011.568778,286.37,66.12833333,19.445,1.054666667,237.8939334 -2016-08-17 10:00:00,0.0,1011.25575,549.3166667,57.825,21.40666667,1.40225,237.88915755000002 -2016-08-17 11:00:00,0.0,1010.8125560000001,571.925,52.48,22.39083333,1.46725,237.88438173333336 -2016-08-17 12:00:00,0.0,1010.309389,597.9083333,49.58916667,23.13333333,1.166083333,237.87681998333335 -2016-08-17 13:00:00,0.0,1009.9630279999999,563.9583332999999,45.38833333,23.805,1.828583333,237.86846225 -2016-08-17 14:00:00,0.0,1009.628167,588.1916667,42.215,24.69416667,1.218333333,237.8609005333333 -2016-08-17 15:00:00,0.0,1009.090139,511.0583333000001,40.5975,24.29083333,2.1845,237.85711963333333 -2016-08-17 16:00:00,0.0,1008.578167,405.3166667,39.10666667,24.26583333,2.2113333330000002,237.85632366666664 -2016-08-17 17:00:00,0.0,1008.358333,81.16916667,40.08416667,23.79166667,1.843083333,237.85353776666662 -2016-08-17 18:00:00,0.0,1008.229694,52.36833333,44.80333333,22.61833333,0.91175,237.85114981666663 -2016-08-17 19:00:00,0.0,1008.240611,16.54833333,66.10333333,19.565,0.146583333,237.85194579999998 -2016-08-17 20:00:00,0.0,1008.408333,0.22033333300000002,78.8725,13.785,0.122333333,237.8531397666667 -2016-08-17 21:00:00,0.0,1008.583333,0.0,89.9,11.79583333,0.08175,237.8577166333333 -2016-08-17 22:00:00,0.0,1008.6239439999999,0.0,95.15833333,10.34833333,0.08075,237.8603035333333 -2016-08-17 23:00:00,0.0,1008.5369720000001,0.0,98.18333333,9.513333333,0.0385,237.8640844 -2016-08-18 00:00:00,0.0,1008.4031669999999,0.0,99.1,8.591916667000001,0.0225,237.86726829999998 -2016-08-18 01:00:00,0.0,1008.026056,0.0,99.93333333,7.457999999999999,0.022000000000000002,237.8706511833333 -2016-08-18 02:00:00,0.0,1007.7521109999999,0.0,100.0,6.7475,0.05525,237.87562603333333 -2016-08-18 03:00:00,0.0,1007.40575,0.0,100.0,5.894833332999999,0.0105,237.8796058833333 -2016-08-18 04:00:00,0.0,1007.184389,0.0,100.0,5.661916667000001,0.001166667,237.88259078333337 -2016-08-18 05:00:00,0.0,1006.85575,4.913166667,100.0,5.676083332999999,0.094833333,237.88776461666666 -2016-08-18 06:00:00,0.0,1006.810917,27.07,100.0,8.237666667000001,0.009666667,237.88975455 -2016-08-18 07:00:00,0.0,1007.1489439999999,219.31666669999998,87.5025,12.925,0.18941666699999998,237.88955558333336 -2016-08-18 08:00:00,0.0,1007.1619720000001,172.2033333,72.135,15.88833333,0.8500833329999999,237.88676963333333 -2016-08-18 09:00:00,0.0,1007.152111,283.6675,63.73583333,18.315,0.973916667,237.88696863333334 -2016-08-18 10:00:00,0.0,1006.952111,537.2333332999999,56.25416667,21.715,0.899333333,237.8817948166667 -2016-08-18 11:00:00,0.0,1006.4546939999999,600.95,47.06083333,24.06833333,0.7905,237.87483006666665 -2016-08-18 12:00:00,0.0,1006.139083,589.0416667000001,41.96833333,25.0625,1.223083333,237.86667131666664 -2016-08-18 13:00:00,0.0,1005.612556,515.675,42.24416667,25.95916667,1.335083333,237.8607015166667 -2016-08-18 14:00:00,0.0,1005.18075,315.7916667,45.39333333,26.125,0.956833333,237.85473171666663 -2016-08-18 15:00:00,0.0,1004.6531669999999,316.5666667,44.65333333,26.725,1.3615833330000002,237.85274178333336 -2016-08-18 16:00:00,0.0,1004.589556,392.7583333,44.1125,26.99,0.909333333,237.84736898333333 -2016-08-18 17:00:00,0.0,1004.6630279999999,93.63166667,48.18583333,25.55833333,0.705666667,237.84617500000002 -2016-08-18 18:00:00,0.0,1004.852583,59.70083333,51.23666667,24.07083333,0.4745,237.84358809999995 -2016-08-18 19:00:00,0.0,1005.380167,6.446166667000001,60.62083333,21.325,0.073166667,237.84179716666665 -2016-08-18 20:00:00,0.0,1005.827583,0.072333333,72.32416667,18.495,0.080916667,237.84319011666662 -2016-08-18 21:00:00,0.0,1006.082278,0.0,72.5925,17.20833333,0.108666667,237.84637399999997 -2016-08-18 22:00:00,0.0,1006.266667,0.0,74.4175,17.98416667,0.236833333,237.84657298333332 -2016-08-18 23:00:00,0.0,1006.175,0.0,87.3,16.08583333,0.228,237.85055286666667 -2016-08-19 00:00:00,0.0,1006.102583,0.0,92.78333333,14.57333333,0.128333333,237.85433373333333 -2016-08-19 01:00:00,0.0,1006.28075,0.0,96.875,13.8325,0.052000000000000005,237.8585126 -2016-08-19 02:00:00,0.0,1006.111972,0.0,97.91666667,13.13083333,0.162166667,237.86249243333336 -2016-08-19 03:00:00,0.0,1006.125,0.0,99.70833333,11.84666667,0.06025,237.86706931666666 -2016-08-19 04:00:00,0.0,1006.177583,0.0,100.0,11.11833333,0.139416667,237.86866123333334 -2016-08-19 05:00:00,0.0,1006.4416669999999,4.20775,100.0,11.18666667,0.06308333299999999,237.8730391 -2016-08-19 06:00:00,0.0,1006.9124439999999,36.45,100.0,12.30666667,0.009333333000000001,237.87423306666665 -2016-08-19 07:00:00,0.0,1007.402583,147.8,95.96666667,15.65416667,0.23125,237.87622298333335 -2016-08-19 08:00:00,0.0,1007.6656109999999,170.69166669999998,85.99166667,17.9825,0.704333333,237.87721798333334 -2016-08-19 09:00:00,0.0,1007.625,272.825,77.80833333,20.265,1.079833333,237.87721796666665 -2016-08-19 10:00:00,0.0,1007.73075,488.6833333000001,72.95333333,22.04833333,0.9644166670000001,237.87204415 -2016-08-19 11:00:00,0.0,1007.572417,448.38333330000006,66.36666667,23.64166667,1.135666667,237.86607435000005 -2016-08-19 12:00:00,0.0,1007.091667,487.35,64.555,24.18,1.3800833330000002,237.86109948333333 -2016-08-19 13:00:00,0.0,1006.864083,312.8166667,61.74416667,24.7325,1.983,237.85592569999997 -2016-08-19 14:00:00,0.0,1006.6318060000001,310.7,56.09583333,25.24833333,1.23875,237.84995588333334 -2016-08-19 15:00:00,0.0,1006.23075,103.32,60.8625,24.81916667,0.5315,237.84736898333335 -2016-08-19 16:00:00,0.0,1006.39425,176.2166667,61.90333333,24.69666667,2.306166667,237.84458304999998 -2016-08-19 17:00:00,0.0,1006.5286390000001,98.1175,66.89833333,23.9,1.8455833330000002,237.84418505 -2016-08-19 18:00:00,0.0,1006.818194,33.5925,68.59333333,23.27833333,1.510083333,237.84299111666664 -2016-08-19 19:00:00,0.0,1006.948944,6.7024166670000005,78.16666667,22.09416667,0.67075,237.84159816666667 -2016-08-19 20:00:00,0.0,1007.245306,0.0,89.26666667,19.945,0.36541666700000003,237.84498104999997 -2016-08-19 21:00:00,0.0,1007.5931939999999,0.0,91.5,19.80833333,0.6243333329999999,237.84756794999998 -2016-08-19 22:00:00,0.0,1007.847889,0.0,80.9225,20.64416667,1.0544166670000001,237.84776696666668 -2016-08-19 23:00:00,0.0,1008.2786390000001,0.0,80.73583333,20.16583333,0.8793333329999999,237.85015486666666 -2016-08-20 00:00:00,2.4064164,1008.49425,0.0,90.525,18.585,0.10875,237.85353775 -2016-08-20 01:00:00,0.0,1008.2995279999999,0.0,95.45833333,17.47083333,0.145083333,237.85910956666666 -2016-08-20 02:00:00,0.0,1008.09425,0.0,99.625,17.12583333,0.26275,237.86308945000005 -2016-08-20 03:00:00,0.0,1007.989083,0.0,100.0,17.10333333,0.29783333300000003,237.86806426666666 -2016-08-20 04:00:00,0.0,1007.883333,0.0,100.0,16.54666667,0.1835,237.87144716666668 -2016-08-20 05:00:00,0.0,1008.085917,2.285583333,100.0,16.29,0.146666667,237.87542701666666 -2016-08-20 06:00:00,0.0,1008.3978890000001,35.24666667,100.0,15.97333333,0.15833333300000002,237.87781493333333 -2016-08-20 07:00:00,0.0,1008.511972,138.2308333,89.26666667,19.00166667,0.8885,237.87980488333332 -2016-08-20 08:00:00,0.0,1008.9598609999999,98.625,79.71916667,20.30833333,0.910666667,237.88079986666665 -2016-08-20 09:00:00,0.0,1009.2812220000001,202.925,78.1375,21.07666667,0.8723333329999999,237.88418273333335 -2016-08-20 10:00:00,0.0,1009.7489439999999,157.0916667,80.24833333,21.13,0.99825,237.88119785 -2016-08-20 11:00:00,0.0,1009.740611,137.1141667,80.11,20.535,0.758,237.88199381666666 -2016-08-20 12:00:00,0.0,1010.2812220000001,178.825,75.76833333,21.24416667,1.08075,237.87781495 -2016-08-20 13:00:00,0.0,1010.55,150.6083333,72.75333333,21.19416667,0.810083333,237.87522801666668 -2016-08-20 14:00:00,11.11332456,1010.5072779999999,72.55,79.51916667,19.9875,1.067416667,237.87423306666668 -2016-08-20 15:00:00,17.27733194,1010.585917,79.94833333,93.60833333,17.595,1.296083333,237.87502904999997 -2016-08-20 16:00:00,0.0,1010.7510560000001,125.615,86.19166667,17.11,0.7979999999999999,237.8790089 -2016-08-20 17:00:00,0.0,1010.638028,72.99,83.51666667,17.25333333,0.715166667,237.87861091666664 -2016-08-20 18:00:00,0.0,1010.830167,64.26083333,79.32833333,17.73416667,0.775666667,237.88079985 -2016-08-20 19:00:00,0.0,1011.2348609999999,7.90825,94.01666667,15.68083333,0.571416667,237.88358575000004 -2016-08-20 20:00:00,0.0,1011.8812220000001,0.029583333,99.14166667,12.965,0.165333333,237.88716763333332 -2016-08-20 21:00:00,0.0,1012.3338050000001,0.0,100.0,11.62083333,0.2215,237.88995353333334 -2016-08-20 22:00:00,0.0,1012.559389,0.0,100.0,10.465,0.252,237.89453038333332 -2016-08-20 23:00:00,0.0,1012.76925,0.0,100.0,10.985,0.18566666699999998,237.89592334999998 -2016-08-21 00:00:00,0.0,1012.9072779999999,0.0,100.0,12.6325,0.254833333,237.89731629999997 -2016-08-21 01:00:00,0.0,1013.103639,0.0,100.0,13.235,0.42216666700000005,237.89851026666665 -2016-08-21 02:00:00,0.0,1013.235917,0.0,100.0,13.39333333,0.559666667,237.89930621666667 -2016-08-21 03:00:00,0.0,1013.3989439999999,0.0,100.0,12.59666667,0.144416667,237.89990318333335 -2016-08-21 04:00:00,0.0,1013.514083,0.0,99.53333333,10.9675,0.11308333300000001,237.90448003333333 -2016-08-21 05:00:00,0.0,1013.292722,2.948083333,99.66666667,10.1775,0.339583333,237.90786293333335 -2016-08-21 06:00:00,0.0,1013.555167,30.11666667,98.725,11.6825,0.40766666700000004,237.91005186666666 -2016-08-21 07:00:00,0.0,1013.9978890000001,134.5075,90.48333333,15.39833333,0.39766666700000003,237.91184281666665 -2016-08-21 08:00:00,0.0,1014.220306,179.7,84.25,16.89666667,0.933583333,237.91403173333333 -2016-08-21 09:00:00,0.0,1014.443194,147.68333330000002,80.62583333,17.1175,0.973833333,237.91522568333335 -2016-08-21 10:00:00,0.0,1014.7,275.0666667,72.42083333,18.51166667,1.4656666669999998,237.91283776666668 -2016-08-21 11:00:00,0.0,1014.9,329.3166667,68.575,18.85416667,1.242416667,237.90905691666669 -2016-08-21 12:00:00,0.0,1014.952583,261.5416667,71.55833333,18.5275,1.51275,237.9120418 -2016-08-21 13:00:00,2.531102064,1015.1619720000001,330.5,79.99416667,18.09416667,0.7333333329999999,237.90646998333338 -2016-08-21 14:00:00,0.0,1015.4515279999999,341.525,69.32833333,20.34416667,1.2105,237.90288811666665 -2016-08-21 15:00:00,2.543828424,1015.827583,127.06416670000002,81.3775,17.83166667,0.87575,237.90328608333334 -2016-08-21 16:00:00,2.558539248,1016.01925,310.6725,85.80666667,17.7175,0.737583333,237.9038830833333 -2016-08-21 17:00:00,0.0,1016.56925,103.6433333,75.205,19.16,0.968583333,237.89950521666665 -2016-08-21 18:00:00,0.0,1016.8588060000001,40.875,76.16416667,18.21583333,0.593583333,237.90050018333332 -2016-08-21 19:00:00,0.0,1017.591083,4.312666667,81.0825,17.17083333,0.6848333329999999,237.89930621666667 -2016-08-21 20:00:00,0.0,1018.310917,0.0,82.78333333,16.335,0.25975,237.90209213333333 -2016-08-21 21:00:00,0.0,1018.652583,0.0,86.00833333,15.49083333,0.1795,237.90448004999996 -2016-08-21 22:00:00,0.0,1019.1171390000001,0.0,90.20833333,15.03166667,0.560583333,237.90507701666664 -2016-08-21 23:00:00,0.0,1019.573945,0.0,91.63333333,14.04666667,0.210083333,237.90587301666665 -2016-08-22 00:00:00,0.0,1019.9848609999999,0.0,90.575,14.82833333,0.45333333299999995,237.90726598333333 -2016-08-22 01:00:00,0.0,1020.175,0.0,92.45833333,14.72083333,0.151666667,237.90985288333331 -2016-08-22 02:00:00,0.0,1020.443194,0.0,93.90833333,14.17,0.17300000000000001,237.91343476666668 -2016-08-22 03:00:00,0.0,1020.947889,0.0,92.58333333,14.53166667,0.12066666699999999,237.91303676666666 -2016-08-22 04:00:00,0.0,1020.8296939999999,0.0,95.25,13.33666667,0.041583333,237.91661865 -2016-08-22 05:00:00,0.0,1021.0765279999999,5.159666667,99.075,11.27583333,0.038833333,237.91980255 -2016-08-22 06:00:00,0.0,1021.6098609999999,34.40416667,100.0,11.335,0.004916667,237.92258843333332 -2016-08-22 07:00:00,0.0,1022.347889,121.83166670000001,92.50833333,15.33416667,0.479916667,237.9213944833333 -2016-08-22 08:00:00,0.0,1022.784861,99.46916667,87.23333333,15.98916667,0.51175,237.92238946666666 -2016-08-22 09:00:00,0.0,1023.155167,173.55833330000002,84.05833333,16.90583333,0.944416667,237.9217924666667 -2016-08-22 10:00:00,0.0,1023.5010550000001,228.06666669999998,84.49583333,17.67416667,0.7759166670000001,237.9217925 -2016-08-22 11:00:00,0.0,1023.246361,362.1083333,77.0825,18.83416667,1.202583333,237.92079750000002 -2016-08-22 12:00:00,0.0,1023.1,263.59166669999996,75.395,19.19905421,1.6155,237.91622066666665 -2016-08-22 13:00:00,0.0,1023.333333,186.30833330000002,80.1475,18.66599496,0.746166667,237.91403174999996 -2016-08-22 14:00:00,0.0,1023.54425,252.625,78.82666667,19.30377027,1.1550833329999999,237.91064885 -2016-08-22 15:00:00,0.0,1023.516667,260.6833333,74.53333333,20.32618327,0.94375,237.90467903333334 -2016-08-22 16:00:00,0.0,1023.5489439999999,239.7416667,72.845,20.98943672,0.702916667,237.90050018333332 -2016-08-22 17:00:00,0.0,1023.522417,118.00833329999999,72.45083333,21.25261319,0.92775,237.89851023333335 -2016-08-22 18:00:00,0.0,1023.582278,47.77666667,75.11166667,20.91,0.29175,237.89811226666666 -2016-08-22 19:00:00,0.0,1023.732278,8.848916667000001,85.81333333,18.5175,0.172916667,237.89751528333332 -2016-08-22 20:00:00,0.0,1023.983333,0.0,95.50833333,15.59166667,0.197833333,237.89870925 -2016-08-22 21:00:00,0.0,1023.857278,0.0,99.075,14.00333333,0.04475,237.90030118333334 -2016-08-22 22:00:00,0.0,1024.045306,0.0,100.0,12.80333333,0.0735,237.90189314999998 -2016-08-22 23:00:00,0.0,1024.047417,0.0,100.0,11.58916667,0.04,237.90408205000003 -2016-08-23 00:00:00,0.0,1023.9072779999999,0.0,100.0,10.7175,0.08175,237.90567401666667 -2016-08-23 01:00:00,0.0,1023.78075,0.0,100.0,10.185,0.10616666699999999,237.90945488333332 -2016-08-23 02:00:00,0.0,1024.006222,0.0,100.0,9.469166667,0.026166667,237.91144481666666 -2016-08-23 03:00:00,0.0,1024.0296939999998,0.0,100.0,8.981666667,0.011166667,237.9142307333333 -2016-08-23 04:00:00,0.0,1024.131222,0.0,100.0,9.018333333,0.013583333000000001,237.91502669999997 -2016-08-23 05:00:00,0.0,1024.523944,3.571416667,100.0,10.68916667,0.005166667,237.91681763333335 -2016-08-23 06:00:00,0.0,1024.9015279999999,28.555,100.0,12.12416667,0.0085,237.9180116 -2016-08-23 07:00:00,0.0,1025.152583,116.85416670000001,100.0,12.83333333,0.15491666699999998,237.91860859999997 -2016-08-23 08:00:00,0.0,1025.2760560000002,156.6375,95.48333333,14.295,0.441,237.91980253333335 -2016-08-23 09:00:00,0.0,1025.147417,268.6416667,82.9125,19.0,0.675583333,237.92059851666667 -2016-08-23 10:00:00,0.0,1024.839083,514.3416666999999,71.45083333,22.54166667,0.816583333,237.92000151666664 -2016-08-23 11:00:00,0.0,1024.3615,576.8083333,63.18166667,24.79666667,1.173333333,237.91442973333332 -2016-08-23 12:00:00,0.0,1023.6437779999999,626.1583333,57.91416667,26.51833333,1.0676666670000001,237.90766393333334 -2016-08-23 13:00:00,0.0,1023.389083,590.1916667,52.12666667,27.25583333,1.161916667,237.89910723333332 -2016-08-23 14:00:00,0.0,1022.7016390000001,547.7583333,47.19583333,28.46166667,0.7353333329999999,237.89373441666666 -2016-08-23 15:00:00,0.0,1022.2010560000001,475.96666669999996,43.90833333,28.31666667,1.5401666669999998,237.88696863333334 -2016-08-23 16:00:00,0.0,1021.85575,372.3166667,44.83916667,28.67083333,1.310833333,237.88079983333338 -2016-08-23 17:00:00,0.0,1021.5677220000001,52.43166667,48.60583333,27.62083333,1.652833333,237.87562601666664 -2016-08-23 18:00:00,0.0,1021.284389,28.0425,54.04916667,26.33083333,1.6404166669999998,237.87423305000002 -2016-08-23 19:00:00,0.0,1021.5765279999999,7.122333332999999,74.27416667,22.80666667,0.9590833329999999,237.87045220000002 -2016-08-23 20:00:00,0.0,1021.716667,0.0,87.43333333,18.05666667,0.16475,237.87045220000002 -2016-08-23 21:00:00,0.0,1021.697417,0.0,93.13333333,15.585,0.1395,237.87204413333333 -2016-08-23 22:00:00,0.0,1021.5786390000001,0.0,97.75833333,13.7975,0.11525,237.8730391 -2016-08-23 23:00:00,0.0,1021.496361,0.0,99.05833333,12.78083333,0.083416667,237.87463103333334 -2016-08-24 00:00:00,0.0,1021.4593890000001,0.0,100.0,11.94833333,0.002833333,237.87582501666665 -2016-08-24 01:00:00,0.0,1021.333333,0.0,100.0,11.45333333,0.0525,237.87781496666665 -2016-08-24 02:00:00,0.0,1021.129694,0.0,100.0,10.78833333,0.1085,237.88338678333332 -2016-08-24 03:00:00,0.0,1020.948472,0.0,100.0,10.61,0.08816666699999999,237.88378473333339 -2016-08-24 04:00:00,0.0,1020.591667,0.0,100.0,10.4425,0.049333333,237.8885606 -2016-08-24 05:00:00,0.0,1020.735917,2.589083333,100.0,10.28333333,0.06308333299999999,237.88975456666665 -2016-08-24 06:00:00,0.0,1021.1406109999999,17.61916667,100.0,11.9775,0.0065,237.89154548333332 -2016-08-24 07:00:00,0.0,1021.452583,139.985,99.18333333,16.36666667,0.41633333299999997,237.88995355 -2016-08-24 08:00:00,0.0,1021.5,152.79416669999998,84.88666667,20.22333333,0.7340000000000001,237.89015253333332 -2016-08-24 09:00:00,0.0,1021.2651390000001,263.0858333,66.67833333,23.60583333,1.3176666670000001,237.88756561666665 -2016-08-24 10:00:00,0.0,1020.9760550000001,508.2666666999999,57.5125,26.31416667,2.1680833330000002,237.88298878333333 -2016-08-24 11:00:00,0.0,1020.6115,570.4,54.3475,27.57166667,2.725833333,237.87681996666666 -2016-08-24 12:00:00,0.0,1020.159389,597.4333333,50.4975,28.88166667,2.5925833330000003,237.86587535 -2016-08-24 13:00:00,0.0,1019.6734720000001,589.3,48.65083333,29.74666667,2.507833333,237.85990553333332 -2016-08-24 14:00:00,0.0,1019.293778,546.95,44.43666667,30.63833333,2.685083333,237.8521448 -2016-08-24 15:00:00,0.0,1018.948472,471.54166669999995,43.72166667,30.90166667,2.5445833330000003,237.84299109999998 -2016-08-24 16:00:00,0.0,1018.478167,369.65,43.40666667,30.90916667,2.183666667,237.83801626666664 -2016-08-24 17:00:00,0.0,1017.7687779999999,44.56166667,46.88,30.06583333,1.7558333330000002,237.83921024999998 -2016-08-24 18:00:00,0.0,1017.397417,27.54,53.98083333,28.945,1.41475,237.83821526666668 -2016-08-24 19:00:00,0.0,1017.5312220000001,5.87175,76.12833333,24.9725,0.47966666700000005,237.83781728333335 -2016-08-24 20:00:00,0.0,1017.725,0.0,87.9,19.47083333,0.23399999999999999,237.83960823333334 -2016-08-24 21:00:00,0.0,1017.8130279999999,0.0,94.59166667,17.1925,0.081583333,237.84179713333333 -2016-08-24 22:00:00,0.0,1017.589083,0.0,98.41666667,15.59833333,0.036583332999999996,237.84498104999997 -2016-08-24 23:00:00,0.0,1017.333333,0.0,99.75833333,14.75333333,0.147333333,237.84836395000002 -2016-08-25 00:00:00,0.0,1017.345306,0.0,100.0,13.96,0.0905,237.85075185000002 -2016-08-25 01:00:00,0.0,1017.18075,0.0,100.0,13.35,0.064,237.8555277 -2016-08-25 02:00:00,0.0,1016.979694,0.0,100.0,12.55583333,0.09325,237.85970656666666 -2016-08-25 03:00:00,0.0,1016.8427220000001,0.0,100.0,12.12833333,0.079166667,237.86348741666666 -2016-08-25 04:00:00,0.0,1016.8083330000001,0.0,100.0,11.5475,0.046166667,237.86547735 -2016-08-25 05:00:00,0.0,1016.8083330000001,2.394666667,100.0,11.03083333,0.055,237.87065116666665 -2016-08-25 06:00:00,0.0,1017.035917,17.2825,100.0,12.84083333,0.0,237.87383508333335 -2016-08-25 07:00:00,0.0,1016.996361,134.86583330000002,99.55,17.68833333,0.20575,237.87542701666666 -2016-08-25 08:00:00,0.0,1016.9927220000001,154.15083330000002,80.18083333,22.0575,0.754416667,237.87483003333332 -2016-08-25 09:00:00,0.0,1016.7213609999999,266.7175,62.1525,24.7975,2.374333333,237.87403406666667 -2016-08-25 10:00:00,0.0,1016.4984720000001,515.7333333,53.00333333,26.75416667,2.696916667,237.86945721666666 -2016-08-25 11:00:00,0.0,1015.824528,578.8833333,46.85083333,28.25333333,3.0524166669999997,237.86269143333334 -2016-08-25 12:00:00,0.0,1015.2354439999999,607.025,39.85833333,29.765,2.581666667,237.85294076666665 -2016-08-25 13:00:00,0.0,1014.944833,597.5166667000001,36.35083333,30.64333333,2.946166667,237.8433891 -2016-08-25 14:00:00,0.0,1014.575,552.8416667,35.855,31.3375,2.7245,237.83403641666666 -2016-08-25 15:00:00,0.0,1014.0161939999999,476.0,36.18916667,31.74833333,2.804666667,237.82846461666668 -2016-08-25 16:00:00,0.0,1013.362555,370.8916667,36.13,32.0225,2.83075,237.8258777 -2016-08-25 17:00:00,0.0,1012.6828609999999,43.6875,36.9925,31.27333333,2.5453333330000003,237.82627564999999 -2016-08-25 18:00:00,0.0,1012.36925,27.24083333,47.94166667,29.795,1.494083333,237.8256786833333 -2016-08-25 19:00:00,0.0,1012.943194,5.371666667,70.03833333,23.26333333,0.5176666670000001,237.82289279999998 -2016-08-25 20:00:00,0.0,1013.1093890000001,0.0,83.46583333,18.81333333,0.2425,237.82448473333332 -2016-08-25 21:00:00,0.0,1012.866667,0.0,92.33333333,16.63333333,0.195083333,237.82707165000002 -2016-08-25 22:00:00,0.0,1013.021361,0.0,94.63333333,15.5425,0.232666667,237.82926056666665 -2016-08-25 23:00:00,0.0,1013.072889,0.0,96.40833333,14.84833333,0.225083333,237.83204648333333 -2016-08-26 00:00:00,0.0,1013.2130279999999,0.0,97.84166667,13.51416667,0.10525,237.83363841666667 -2016-08-26 01:00:00,0.0,1013.009389,0.0,99.86666667,12.69583333,0.22066666699999998,237.83642433333333 -2016-08-26 02:00:00,0.0,1012.966667,0.0,100.0,12.23166667,0.159833333,237.84020518333332 -2016-08-26 03:00:00,0.0,1013.1572779999999,0.0,100.0,11.63333333,0.106833333,237.8435881 -2016-08-26 04:00:00,0.0,1013.270306,0.0,100.0,11.37333333,0.093666667,237.84736898333335 -2016-08-26 05:00:00,0.0,1013.5228890000001,2.313,100.0,11.09333333,0.08816666699999999,237.85075185000002 -2016-08-26 06:00:00,0.0,1013.7989449999999,16.94666667,100.0,12.7175,0.015583333000000001,237.85433375 -2016-08-26 07:00:00,0.0,1013.857278,123.19416670000001,94.57333333,17.8025,0.172666667,237.85731861666667 -2016-08-26 08:00:00,0.0,1014.025,149.7641667,74.13666667,21.99416667,0.45525,237.85831359999997 -2016-08-26 09:00:00,0.0,1014.1572779999999,260.0083333,58.7675,25.47666667,1.072083333,237.85652265000002 -2016-08-26 10:00:00,0.0,1014.232278,498.0666666999999,49.22833333,27.61583333,1.6019166669999998,237.84955788333332 -2016-08-26 11:00:00,0.0,1014.1177220000001,561.5166667000001,45.41083333,29.59333333,1.5110833330000002,237.84139915 -2016-08-26 12:00:00,0.0,1013.989083,587.925,44.505,31.41083333,1.49075,237.8312505333333 -2016-08-26 13:00:00,0.0,1013.8677220000001,574.55,43.78833333,32.7975,1.595,237.8232907833333 -2016-08-26 14:00:00,0.0,1013.7786390000001,523.5,42.0775,33.31666667,1.847,237.81533106666666 -2016-08-26 15:00:00,0.0,1013.410444,446.675,42.05416667,33.54583333,1.8414166669999998,237.81314211666668 -2016-08-26 16:00:00,0.0,1013.246361,340.9416667,42.55166667,33.60333333,1.7955,237.81135116666667 -2016-08-26 17:00:00,0.0,1013.009389,43.53666667,46.73333333,32.7425,2.5785,237.81015723333334 -2016-08-26 18:00:00,0.0,1012.990611,25.7925,55.27666667,31.22833333,1.890166667,237.8103561833333 -2016-08-26 19:00:00,0.0,1013.4895560000001,3.397333333,73.99333333,26.28166667,0.602916667,237.81095319999997 -2016-08-26 20:00:00,0.0,1013.69425,0.0,86.15,23.1925,0.24833333300000002,237.81493305 -2016-08-26 21:00:00,0.0,1014.16925,0.0,92.575,20.81583333,0.26625,237.81533104999997 -2016-08-26 22:00:00,0.0,1014.543194,0.0,95.00833333,19.49166667,0.237333333,237.81811693333336 -2016-08-26 23:00:00,0.0,1014.573472,0.0,95.76666667,18.69083333,0.133583333,237.8230917666667 -2016-08-27 00:00:00,0.0,1014.607278,0.0,98.45833333,17.49166667,0.177916667,237.82627566666665 -2016-08-27 01:00:00,0.0,1014.685917,0.0,99.66666667,16.8325,0.256,237.83065353333333 -2016-08-27 02:00:00,0.0,1014.891667,0.0,99.98333333,16.44416667,0.206916667,237.83503139999996 -2016-08-27 03:00:00,0.0,1014.895306,0.0,100.0,16.0225,0.15975,237.8390112333333 -2016-08-27 04:00:00,0.0,1014.9989439999999,0.0,100.0,15.32166667,0.287833333,237.84418505 -2016-08-27 05:00:00,0.0,1015.0619720000001,2.126416667,100.0,15.41083333,0.145083333,237.84716998333332 -2016-08-27 06:00:00,0.0,1015.4515279999999,17.82916667,100.0,16.27666667,0.03825,237.84955791666667 -2016-08-27 07:00:00,0.0,1015.848944,110.91583329999999,97.88333333,20.54083333,0.380333333,237.85274176666667 -2016-08-27 08:00:00,0.0,1015.958333,144.39583330000002,78.63916667,23.22,1.605666667,237.85373674999997 -2016-08-27 09:00:00,0.0,1016.065611,255.3466667,70.0525,26.0825,1.122416667,237.85294078333334 -2016-08-27 10:00:00,0.0,1015.8651390000001,482.6916666999999,61.1275,28.89416667,0.923166667,237.84736895 -2016-08-27 11:00:00,0.0,1015.4068060000001,546.2166667,48.38416667,31.54833333,1.039583333,237.83940923333333 -2016-08-27 12:00:00,0.0,1015.014083,571.9666667,43.48666667,33.29833333,1.6320833330000002,237.82906158333333 -2016-08-27 13:00:00,0.0,1014.70575,564.7333332999999,41.02333333,34.18416667,1.4485,237.81871391666667 -2016-08-27 14:00:00,0.0,1014.1531669999999,523.5583333000001,37.73333333,34.37166667,1.8934166669999999,237.81155016666665 -2016-08-27 15:00:00,0.0,1013.6151390000001,448.96666669999996,37.87583333,34.415,2.038416667,237.80558035 -2016-08-27 16:00:00,0.0,1012.94225,334.4416667,35.69416667,34.33166667,2.0460833330000003,237.80299345000003 -2016-08-27 17:00:00,0.0,1012.198472,41.56583333,40.06333333,33.33416667,2.16875,237.80478438333333 -2016-08-27 18:00:00,0.0,1012.1489439999999,25.51,48.93833333,31.38666667,1.3925833330000001,237.80060555 -2016-08-27 19:00:00,0.0,1012.4801669999999,2.362333333,68.92083333,24.925,0.24683333300000002,237.80040654999996 -2016-08-27 20:00:00,0.0,1012.568778,0.0,81.18,21.94083333,0.289916667,237.80458540000004 -2016-08-27 21:00:00,0.0,1012.4630279999999,0.0,89.68333333,19.53333333,0.212166667,237.80637633333336 -2016-08-27 22:00:00,0.0,1012.097417,0.0,93.975,18.40583333,0.14225,237.81095319999997 -2016-08-27 23:00:00,0.0,1012.0703060000001,0.0,96.325,17.46916667,0.1755,237.81433606666667 -2016-08-28 00:00:00,0.0,1011.777111,0.0,98.65,16.42833333,0.16066666699999999,237.81990788333334 -2016-08-28 01:00:00,0.0,1011.356806,0.0,99.425,15.84083333,0.1185,237.8232908 -2016-08-28 02:00:00,0.0,1011.325,0.0,99.78333333,15.75916667,0.105833333,237.82667364999998 -2016-08-28 03:00:00,0.0,1011.081806,0.0,99.975,15.3575,0.11725,237.83144951666665 -2016-08-28 04:00:00,0.0,1010.832278,0.0,100.0,14.895,0.175666667,237.83503139999996 -2016-08-28 05:00:00,0.0,1011.0786390000001,1.6359166669999998,100.0,14.88666667,0.142666667,237.84020519999999 -2016-08-28 06:00:00,0.0,1010.975,16.602999999999998,100.0,15.37416667,0.173166667,237.84398608333333 -2016-08-28 07:00:00,0.0,1011.3895560000001,117.10833329999998,95.31666667,19.485,0.488416667,237.84358808333332 -2016-08-28 08:00:00,0.0,1011.7895560000001,121.68666670000002,82.06333333,22.03333333,0.928416667,237.84518003333332 -2016-08-28 09:00:00,0.0,1011.8822779999999,262.85,72.12416667,25.23833333,0.7899166670000001,237.84597601666667 -2016-08-28 10:00:00,0.0,1011.512556,474.08333330000005,60.52333333,28.46583333,1.335333333,237.8427921166667 -2016-08-28 11:00:00,0.0,1010.803167,531.7,53.95166667,30.86166667,1.5450833330000002,237.83582734999996 -2016-08-28 12:00:00,0.0,1010.231806,561.1833333,46.06583333,32.3775,2.449,237.82508171666666 -2016-08-28 13:00:00,0.0,1009.7187779999999,480.81083330000007,41.94416667,33.64083333,2.097583333,237.81473405 -2016-08-28 14:00:00,822.8178622,1009.909389,106.38,87.0525,23.1575,2.4965,237.8825908 -2016-08-28 15:00:00,5.533983216,1009.291667,357.56,78.56166667,27.3225,2.112666667,237.99542 -2016-08-28 16:00:00,0.0,1009.9707779999999,150.88666669999998,60.86,27.95166667,1.32525,238.00318075000004 -2016-08-28 17:00:00,0.0,1010.470306,49.49916667,61.57916667,26.665,0.5860833329999999,238.00576766666669 -2016-08-28 18:00:00,0.0,1010.7015279999999,28.76333333,84.79,24.08583333,0.604833333,238.0043747 -2016-08-28 19:00:00,0.0,1011.01925,5.14275,94.39166667,21.35916667,0.242583333,238.0011908166667 -2016-08-28 20:00:00,0.0,1011.427583,0.0,98.25,19.35,0.313333333,237.99999685000003 -2016-08-28 21:00:00,0.0,1012.024417,0.0,99.71666667,18.86416667,0.256833333,237.99780793333335 -2016-08-28 22:00:00,0.0,1012.693194,0.0,99.95833333,18.98916667,0.180166667,237.9940270666667 -2016-08-28 23:00:00,0.0,1013.090611,0.0,100.0,18.26333333,0.27699999999999997,237.99362906666667 -2016-08-29 00:00:00,0.0,1013.0703060000001,0.0,100.0,17.13083333,0.179416667,237.99343005 -2016-08-29 01:00:00,0.0,1013.133333,0.0,100.0,16.24,0.169916667,237.9914401333333 -2016-08-29 02:00:00,0.0,1013.225,0.0,100.0,16.28416667,0.224666667,237.98905221666664 -2016-08-29 03:00:00,0.0,1013.402583,0.0,100.0,16.76083333,0.32866666699999997,237.98925121666662 -2016-08-29 04:00:00,0.0,1013.3380279999999,0.0,100.0,16.625,0.32725,237.98865423333334 -2016-08-29 05:00:00,0.0,1013.4286390000001,1.7238333330000002,100.0,15.36333333,0.105333333,237.98865423333334 -2016-08-29 06:00:00,0.0,1014.012444,17.76,97.05833333,15.81833333,0.4875,237.98825624999998 -2016-08-29 07:00:00,0.0,1014.646833,108.93916670000002,86.30833333,18.35166667,0.5665,237.98646531666668 -2016-08-29 08:00:00,0.0,1014.960917,164.45,79.12583333,20.10166667,0.934333333,237.98447538333335 -2016-08-29 09:00:00,0.0,1015.207278,260.40833330000004,72.665,21.2725,1.020333333,237.98188845000004 -2016-08-29 10:00:00,0.0,1015.475,338.1666667,69.94416667,21.65583333,1.038666667,237.98109248333336 -2016-08-29 11:00:00,0.0,1015.5239439999999,316.3166667,67.765,22.29333333,1.0088333329999999,237.98089348333335 -2016-08-29 12:00:00,0.0,1015.5453060000001,261.55,66.22916667,22.35583333,1.070333333,237.97989853333334 -2016-08-29 13:00:00,0.0,1015.716667,281.3358333,62.75333333,22.88416667,1.113166667,237.97711261666666 -2016-08-29 14:00:00,0.0,1015.733333,211.56666669999998,63.36416667,22.65833333,0.819666667,237.97571966666666 -2016-08-29 15:00:00,0.0,1015.8431939999999,143.15,66.01,21.96833333,1.953,237.97273476666666 -2016-08-29 16:00:00,0.0,1016.360917,137.3833333,67.32416667,21.7175,2.380083333,237.96994885 -2016-08-29 17:00:00,0.0,1016.71925,82.18166667,72.65916667,21.06666667,3.125166667,237.96756095 -2016-08-29 18:00:00,0.0,1017.080167,31.36916667,75.76083333,20.19833333,1.5355833330000002,237.96477503333332 -2016-08-29 19:00:00,0.0,1017.6885,1.61675,82.24333333,18.8575,0.318583333,237.96378004999997 -2016-08-29 20:00:00,0.0,1018.5791109999999,0.0,86.18333333,18.46083333,0.9055833329999999,237.96119315 -2016-08-29 21:00:00,0.0,1019.237445,0.0,94.6,16.49583333,0.15633333300000002,237.96159114999998 -2016-08-29 22:00:00,0.0,1019.810917,0.0,99.225,15.78833333,0.2355,237.96258611666667 -2016-08-29 23:00:00,0.0,1020.0635,0.0,100.0,15.635,0.309583333,237.96417803333335 -2016-08-30 00:00:00,0.0,1020.3046939999999,0.0,100.0,14.31333333,0.256583333,237.96358106666665 -2016-08-30 01:00:00,0.0,1020.5312220000001,0.0,100.0,12.88416667,0.08666666699999999,237.96417803333335 -2016-08-30 02:00:00,0.0,1020.94425,0.0,100.0,11.88583333,0.11983333300000001,237.96437704999997 -2016-08-30 03:00:00,0.0,1021.05,0.0,100.0,11.93166667,0.604083333,237.96636700000002 -2016-08-30 04:00:00,0.0,1020.9927220000001,0.0,100.0,11.23666667,0.2055,237.96795893333334 -2016-08-30 05:00:00,0.0,1021.146833,2.7489999999999997,100.0,10.515,0.09125,237.9689539 -2016-08-30 06:00:00,0.0,1021.7874439999999,26.195,100.0,11.03833333,0.149583333,237.96895389999997 -2016-08-30 07:00:00,0.0,1022.4062220000001,88.54666667,100.0,13.75,0.139083333,237.96756095000003 -2016-08-30 08:00:00,0.0,1022.955167,138.6883333,93.26666667,15.55166667,1.0211666670000001,237.96696396666667 -2016-08-30 09:00:00,0.0,1023.457278,263.0616667,81.20916667,17.54416667,1.185416667,237.965372 -2016-08-30 10:00:00,0.0,1023.3687779999999,514.5916666999999,68.8475,19.49083333,1.52425,237.96557099999995 -2016-08-30 11:00:00,0.0,1022.7901390000001,473.74166669999994,63.925,20.26416667,2.16625,237.96497403333333 -2016-08-30 12:00:00,0.0,1022.475,599.5916667,58.58,21.6225,1.8655,237.9621881 -2016-08-30 13:00:00,0.0,1022.228167,550.5833332999999,53.13,22.2625,1.932083333,237.96553122 -2016-08-30 14:00:00,0.0,1021.5375550000001,533.5666666999999,49.3025,23.325,1.678083333,237.92935423333333 -2016-08-30 15:00:00,0.0,1021.00575,454.91666669999995,45.7425,23.75083333,1.825166667,237.92318541666668 -2016-08-30 16:00:00,0.0,1020.565139,328.1366667,44.2525,23.87166667,2.112083333,237.92139448333333 -2016-08-30 17:00:00,0.0,1020.056806,36.26833333,44.26,23.0275,2.060333333,237.9209965 -2016-08-30 18:00:00,0.0,1019.904694,22.70333333,54.9075,21.56416667,1.740083333,237.9190065833333 -2016-08-30 19:00:00,0.0,1019.964556,2.219,79.67333333,17.4475,0.363916667,237.91940456666669 -2016-08-30 20:00:00,0.0,1020.240611,0.0,89.65833333,13.81166667,0.321166667,237.91860858333334 -2016-08-30 21:00:00,0.0,1020.2869720000001,0.0,95.08333333,12.41916667,0.225,237.91960355 -2016-08-30 22:00:00,0.0,1020.379694,0.0,97.41666667,11.41666667,0.167333333,237.91880758333332 -2016-08-30 23:00:00,0.0,1020.215139,0.0,98.625,10.54,0.12541666699999998,237.91860858333334 -2016-08-31 00:00:00,0.0,1019.8046939999999,0.0,99.7,9.480833333,0.055416667,237.92000153333333 -2016-08-31 01:00:00,0.0,1019.547417,0.0,100.0,8.8875,0.130333333,237.91940455 -2016-08-31 02:00:00,0.0,1019.3521109999999,0.0,100.0,8.5,0.0735,237.92079751666665 -2016-08-31 03:00:00,0.0,1018.904694,0.0,100.0,8.161666667,0.08766666699999999,237.9217924666667 -2016-08-31 04:00:00,0.0,1018.784389,0.0,100.0,7.97725,0.113416667,237.92219046666665 -2016-08-31 05:00:00,0.0,1018.758333,1.5163333330000002,100.0,7.75725,0.10383333300000001,237.92437938333333 -2016-08-31 06:00:00,0.0,1018.866667,15.652000000000001,100.0,8.771666667,0.099,237.92597133333334 -2016-08-31 07:00:00,0.0,1018.982278,90.8575,99.78333333,12.30583333,0.258,237.92537435 -2016-08-31 08:00:00,0.0,1019.016667,145.0033333,83.2925,14.96833333,0.77375,237.92577235000002 -2016-08-31 09:00:00,0.0,1018.93075,257.0966667,68.01666667,18.67083333,0.77375,237.92418039999998 -2016-08-31 10:00:00,0.0,1018.697417,484.9833333000001,60.46833333,21.57083333,1.34025,237.92219045000002 -2016-08-31 11:00:00,0.0,1018.222417,546.7916667000001,52.66333333,24.02333333,1.45475,237.91980254999999 -2016-08-31 12:00:00,0.0,1017.794833,577.575,48.07333333,25.655,1.555166667,237.91383274999998 -2016-08-31 13:00:00,0.0,1017.172417,558.1583333,46.14083333,26.41916667,1.4499166669999999,237.91064883333334 -2016-08-31 14:00:00,0.0,1016.815139,487.96666669999996,44.63666667,26.8275,1.3461666669999999,237.90507703333333 -2016-08-31 15:00:00,0.0,1016.397417,332.175,46.00833333,26.335,0.8420000000000001,237.90388308333334 -2016-08-31 16:00:00,0.0,1016.164083,239.04166669999998,44.7,26.72916667,0.5235833329999999,237.9010971833333 -2016-08-31 17:00:00,0.0,1015.716194,56.3725,51.69166667,26.00666667,0.936333333,237.90030118333334 -2016-08-31 18:00:00,0.0,1015.7348609999999,19.18166667,68.12666667,22.44833333,0.300583333,237.8969183 -2016-08-31 19:00:00,0.0,1015.977583,1.5275,80.68833333,19.17666667,0.38308333299999997,237.8971173 -2016-08-31 20:00:00,0.0,1016.21925,0.0,84.93333333,17.17833333,0.1685,237.89831125 -2016-08-31 21:00:00,0.0,1016.659861,0.0,86.70833333,17.31416667,0.231083333,237.89532638333333 -2016-08-31 22:00:00,0.0,1016.883333,0.0,87.475,17.425,0.33875,237.8971173 -2016-08-31 23:00:00,0.0,1017.145306,0.0,88.20833333,16.92083333,0.231333333,237.8983112666667 -2016-01-09 00:00:00,0.0,1017.402583,0.0,91.53333333,16.8775,0.207916667,238.07630303333335 -2016-01-09 01:00:00,0.0,1017.448944,0.0,94.1,17.36666667,0.11816666699999999,238.0732608333333 -2016-01-09 02:00:00,0.0,1017.541667,0.0,94.15833333,17.74666667,0.151,238.07254501666668 -2016-01-09 03:00:00,0.0,1017.4427220000001,0.0,93.4,16.17416667,0.193166667,238.0718292 -2016-01-09 04:00:00,0.0,1017.490611,0.0,94.21666667,15.1625,0.105333333,238.0702186333333 -2016-01-09 05:00:00,0.0,1017.6181939999999,1.029666667,95.78333333,14.52083333,0.0425,238.06950279999998 -2016-01-09 06:00:00,0.0,1018.01925,17.47258333,98.425,13.97583333,0.16016666699999998,238.06878698333333 -2016-01-09 07:00:00,0.0,1018.680167,73.845,96.29166667,16.69083333,0.233333333,238.06842906666668 -2016-01-09 08:00:00,0.0,1019.421833,144.625,78.37833333,19.59166667,0.606916667,238.06699745000003 -2016-01-09 09:00:00,0.0,1019.715611,253.81666669999998,68.39583333,21.90916667,0.524166667,238.06574480000003 -2016-01-09 10:00:00,0.0,1019.652111,360.09166669999996,62.8925,23.57416667,0.7354166670000001,238.06485001666667 -2016-01-09 11:00:00,0.0,1019.410444,470.15833330000004,59.93166667,24.5275,1.145416667,238.0634183833333 -2016-01-09 12:00:00,0.0,1018.864083,559.8583332999999,58.24,25.16083333,1.15625,238.06198676666668 -2016-01-09 13:00:00,0.0,1018.496361,559.5083333,53.8375,25.4675,1.1923333329999999,238.06198676666665 -2016-01-09 14:00:00,0.0,1018.2578609999999,422.475,51.94916667,25.88916667,1.315833333,238.06198674999996 -2016-01-09 15:00:00,0.0,1018.025,417.85,49.22166667,26.52666667,0.9720833329999999,238.06162884999995 -2016-01-09 16:00:00,0.0,1017.9380279999999,301.7808333,47.4825,25.87083333,1.2548333329999999,238.05966036666666 -2016-01-09 17:00:00,0.0,1017.6734720000001,50.76916667,48.8375,24.8175,1.687416667,238.0575129166667 -2016-01-09 18:00:00,0.0,1017.4848609999999,23.045,53.7275,23.585,1.02575,238.05751293333333 -2016-01-09 19:00:00,0.0,1018.0385,1.5063333330000002,73.90666667,19.76083333,0.349583333,238.0575129166667 -2016-01-09 20:00:00,0.0,1018.4286390000001,0.0,85.825,16.89083333,0.20825,238.0557234 -2016-01-09 21:00:00,0.0,1018.590611,0.0,92.0,16.0025,0.046666667,238.05554444999999 -2016-01-09 22:00:00,0.0,1018.591667,0.0,96.46666667,15.28,0.36775,238.0560813 -2016-01-09 23:00:00,0.0,1018.6869720000001,0.0,97.075,14.92166667,0.211333333,238.0560813333333 -2016-02-09 00:00:00,0.0,1018.716667,0.0,99.39166667,14.8275,0.4245,238.17132725000002 -2016-02-09 01:00:00,0.0,1018.622417,0.0,100.0,13.4625,0.23125,238.16900083333334 -2016-02-09 02:00:00,0.0,1018.3130279999999,0.0,100.0,12.1975,0.150583333,238.16828505 -2016-02-09 03:00:00,0.0,1018.502583,0.0,100.0,11.42416667,0.10008333300000001,238.16703236666663 -2016-02-09 04:00:00,0.0,1018.497417,0.0,100.0,10.8725,0.059333332999999995,238.16416913333333 -2016-02-09 05:00:00,0.0,1018.4427220000001,1.047833333,100.0,10.49,0.015666667,238.16327434999997 -2016-02-09 06:00:00,0.0,1018.302583,19.99158333,100.0,10.8375,0.022083332999999997,238.16023215000004 -2016-02-09 07:00:00,0.0,1018.5380279999999,83.89,100.0,14.36416667,0.328416667,238.1598742333333 -2016-02-09 08:00:00,0.0,1018.611972,138.10166669999998,90.075,18.29583333,0.38975,238.15862156666662 -2016-02-09 09:00:00,0.0,1018.5489439999999,252.93333330000002,76.24333333,21.08416667,0.56425,238.1566531 -2016-02-09 10:00:00,0.0,1018.3901390000001,473.675,65.22416667,22.56,1.111666667,238.15432666666666 -2016-02-09 11:00:00,0.0,1017.8604439999999,524.8833333,60.06083333,24.07666667,0.8865833329999999,238.15486356666668 -2016-02-09 12:00:00,0.0,1017.449528,525.25,55.00333333,24.3825,1.416166667,238.15629520000005 -2016-02-09 13:00:00,0.0,1016.828167,542.55,50.07,25.28666667,1.1338333329999999,238.15540040000005 -2016-02-09 14:00:00,0.0,1016.4296939999999,469.50833330000006,48.52666667,25.7925,1.194916667,238.1566531 -2016-02-09 15:00:00,0.0,1016.0078609999999,386.4166667,45.95416667,26.00083333,1.048,238.15987425 -2016-02-09 16:00:00,0.0,1015.24225,274.5783333,45.75333333,25.76083333,1.108833333,238.16291645 -2016-02-09 17:00:00,0.0,1014.865611,46.01333333,52.66583333,24.41166667,0.491833333,238.17902225 -2016-02-09 18:00:00,0.0,1014.9213609999999,24.65083333,71.49,21.89583333,0.16075,238.19691756666668 -2016-02-09 19:00:00,0.0,1015.034861,0.9359999999999999,80.07416667,19.06333333,0.2135,238.2092653666667 -2016-02-09 20:00:00,0.0,1015.325,0.0,82.89166667,17.5225,0.15866666699999998,238.21499188333334 -2016-02-09 21:00:00,0.0,1015.535917,0.0,89.13333333,17.02916667,0.07925,238.21517085000002 -2016-02-09 22:00:00,0.0,1015.94425,0.0,84.8725,17.9325,0.141416667,238.21499185000002 -2016-02-09 23:00:00,0.0,1015.8521109999999,0.0,87.05833333,17.45666667,0.02225,238.21194965000004 -2016-03-09 00:00:00,0.0,1015.4151390000001,0.0,89.15833333,16.68666667,0.1975,238.2192343 -2016-03-09 01:00:00,0.0,1015.141667,0.0,93.175,16.78416667,0.224916667,238.21944328333333 -2016-03-09 02:00:00,0.0,1015.235917,0.0,92.03333333,16.18416667,0.172,238.21944325 -2016-03-09 03:00:00,0.0,1015.026056,0.0,97.41666667,14.385,0.1445,238.21965221666665 -2016-03-09 04:00:00,0.0,1015.416667,0.0,97.64166667,13.82666667,0.469083333,238.21923431666667 -2016-03-09 05:00:00,0.0,1015.383805,0.5285,98.65,13.075,0.291333333,238.21777158333336 -2016-03-09 06:00:00,0.0,1015.6177220000001,25.61833333,100.0,12.96166667,0.13675,238.21547299999997 -2016-03-09 07:00:00,0.0,1015.893194,77.07083333,99.15,15.3475,0.031666667,238.21505508333337 -2016-03-09 08:00:00,0.0,1015.931806,134.45,84.85916667,18.74916667,0.33116666699999997,238.21233856666666 -2016-03-09 09:00:00,0.0,1015.973944,269.9833333,71.1575,21.93583333,0.734583333,238.21233855 -2016-03-09 10:00:00,0.0,1015.8260560000001,458.6,62.00166667,24.05083333,0.8640000000000001,238.21024893333333 -2016-03-09 11:00:00,0.0,1015.353167,376.1333333,56.64166667,24.54083333,0.9555,238.21150273333333 -2016-03-09 12:00:00,0.0,1014.844833,381.2083333,55.66416667,24.73833333,1.02275,238.21045789999997 -2016-03-09 13:00:00,0.0,1014.306806,366.675,55.695,25.565,1.069916667,238.21192065000002 -2016-03-09 14:00:00,0.0,1013.6828609999999,352.6416667,52.94916667,25.8575,1.231833333,238.20690558333334 -2016-03-09 15:00:00,0.0,1012.956806,235.275,53.3475,26.27,0.67725,238.2083683 -2016-03-09 16:00:00,0.0,1012.2875560000001,223.5,52.68583333,26.895,1.786583333,238.20711451666662 -2016-03-09 17:00:00,0.0,1011.863028,63.66916667,55.00333333,26.2825,2.046,238.21024894999996 -2016-03-09 18:00:00,0.0,1011.6187779999999,24.32666667,66.41083333,24.75416667,0.7483333329999999,238.2085772833333 -2016-03-09 19:00:00,0.0,1011.607278,1.13275,76.42666667,21.43833333,0.399083333,238.21129376666667 -2016-03-09 20:00:00,0.0,1011.634389,0.0,85.5,18.69666667,0.36175,238.21066688333335 -2016-03-09 21:00:00,0.0,1011.598944,0.0,86.77,16.6375,0.1915,238.20983105000002 -2016-03-09 22:00:00,0.0,1011.502583,0.0,70.58083333,16.47833333,0.34025,238.20941309999998 -2016-03-09 23:00:00,0.0,1011.806806,0.0,67.11166667,18.80083333,0.195583333,238.20920415 -2016-04-09 00:00:00,0.0,1011.5666669999999,0.0,72.92166667,17.02666667,0.154,238.23365266666667 -2016-04-09 01:00:00,0.0,1011.306806,0.0,86.19166667,14.84083333,0.037166667,238.23365263333335 -2016-04-09 02:00:00,0.0,1010.991667,0.0,91.56666667,13.7325,0.094916667,238.23407056666667 -2016-04-09 03:00:00,0.0,1010.7115,0.0,91.86666667,13.09333333,0.19,238.23323476666664 -2016-04-09 04:00:00,0.0,1010.310444,0.0,97.03333333,12.88166667,0.08483333300000001,238.23072719999996 -2016-04-09 05:00:00,0.0,1009.9333330000001,0.525166667,99.24166667,13.02916667,0.224166667,238.23010033333333 -2016-04-09 06:00:00,0.0,1010.145306,16.60358333,98.63333333,14.28416667,0.162083333,238.22989135 -2016-04-09 07:00:00,5.254893864,1010.774889,36.34666667,93.78333333,15.83,0.35866666700000005,238.2259210666667 -2016-04-09 08:00:00,22.68010169,1011.2484720000001,49.6125,95.8,16.52833333,0.423833333,238.22007014999997 -2016-04-09 09:00:00,2.6324686319999997,1010.650583,59.49916667,96.95,16.8075,0.870083333,238.21777159999996 -2016-04-09 10:00:00,0.0,1010.539083,255.6091667,92.21666667,18.24416667,1.136,238.21818951666668 -2016-04-09 11:00:00,0.0,1009.7995279999999,423.79166669999995,82.395,20.89666667,1.497333333,238.21756261666664 -2016-04-09 12:00:00,0.0,1008.76725,269.8333333,78.9275,21.88083333,1.9805,238.21693573333334 -2016-04-09 13:00:00,3.416691816,1008.353167,304.6666667,81.26,21.84333333,2.09075,238.21756263333336 -2016-04-09 14:00:00,10.68781205,1007.6734720000001,167.575,89.61666667,21.0875,1.8925833330000001,238.21798056666668 -2016-04-09 15:00:00,36.99535272,1007.427583,27.005,92.85,19.53,1.1805,238.22153290000003 -2016-04-09 16:00:00,35.1926383,1007.71925,176.5733333,91.2,19.43833333,1.006,238.2204880833333 -2016-04-09 17:00:00,0.0,1008.2348609999999,69.05916667,82.23333333,19.56333333,0.856833333,238.21735368333336 -2016-04-09 18:00:00,0.0,1008.365611,23.7175,80.89583333,18.56916667,0.7959999999999999,238.21630885000002 -2016-04-09 19:00:00,0.0,1008.874417,0.46883333299999996,77.45666667,17.73166667,0.708666667,238.2177716 -2016-04-09 20:00:00,0.0,1009.659861,0.0,83.4075,16.78916667,1.083916667,238.21881638333332 -2016-04-09 21:00:00,0.0,1010.267139,0.0,86.9,16.44583333,0.667666667,238.21923433333328 -2016-04-09 22:00:00,0.0,1010.723944,0.0,88.91666667,15.95083333,0.557916667,238.21484610000002 -2016-04-09 23:00:00,0.0,1010.9322779999999,0.0,90.425,15.58833333,0.40525,238.21609990000002 -2016-05-09 00:00:00,0.0,1011.0453060000001,0.0,90.31666667,15.6775,0.392166667,238.0995634 -2016-05-09 01:00:00,0.0,1011.3083330000001,0.0,89.14166667,15.76416667,0.46466666700000003,238.10091513333336 -2016-05-09 02:00:00,0.0,1011.302583,0.0,89.675,15.58666667,0.479833333,238.10209784999998 -2016-05-09 03:00:00,0.0,1011.635917,0.0,91.05,15.49916667,0.6821666670000001,238.10226681666666 -2016-05-09 04:00:00,0.0,1011.955167,0.0,93.73333333,15.04833333,0.47808333299999994,238.10277369999997 -2016-05-09 05:00:00,2.442999624,1012.556222,0.276666667,96.4,14.70166667,0.285083333,238.10159096666666 -2016-05-09 06:00:00,0.0,1013.008806,24.67483333,99.23333333,14.59416667,0.275166667,238.09922548333336 -2016-05-09 07:00:00,12.43923864,1013.635917,53.2725,98.93333333,15.04416667,0.34966666700000004,238.09719793333332 -2016-05-09 08:00:00,0.0,1014.0671390000001,139.845,96.74166667,16.9225,0.5093333329999999,238.0961841333333 -2016-05-09 09:00:00,0.0,1014.7431939999999,192.5916667,87.40833333,17.32583333,1.318583333,238.09381865 -2016-05-09 10:00:00,0.0,1015.258806,230.2333333,81.385,17.9875,1.7398333330000002,238.09179113333332 -2016-05-09 11:00:00,0.0,1015.707278,280.8766667,78.17666667,18.88416667,2.6055,238.09094628333332 -2016-05-09 12:00:00,0.0,1016.2135,201.41666669999998,76.61,19.05833333,1.8725833330000001,238.08672220000003 -2016-05-09 13:00:00,0.0,1016.49425,262.3583333,74.25666667,19.60833333,1.6269999999999998,238.08655325000004 -2016-05-09 14:00:00,0.0,1016.960917,348.5,71.79583333,19.905,2.094833333,238.08587738333335 -2016-05-09 15:00:00,0.0,1017.1406109999999,318.2916667,67.4775,20.56833333,2.431,238.08638428333336 -2016-05-09 16:00:00,0.0,1017.3978890000001,212.3666667,67.42583333,20.26416667,1.9173333330000002,238.08604635000003 -2016-05-09 17:00:00,0.0,1017.8072779999999,73.65,71.13333333,19.74,1.069916667,238.08672218333334 -2016-05-09 18:00:00,0.0,1018.1051669999999,19.5445,78.89166667,18.805,0.4085,238.08756701666667 -2016-05-09 19:00:00,0.0,1018.871833,0.7829166670000001,89.225,16.19166667,0.221833333,238.08841181666665 -2016-05-09 20:00:00,0.0,1019.5312220000001,0.0,97.54166667,15.17666667,0.11441666699999999,238.09094628333332 -2016-05-09 21:00:00,0.0,1019.955167,0.0,99.36666667,15.40416667,0.169833333,238.09162215 -2016-05-09 22:00:00,0.0,1020.2812220000001,0.0,100.0,15.83333333,0.355916667,238.09280488333332 -2016-05-09 23:00:00,0.0,1020.672889,0.0,100.0,15.08166667,0.34416666700000004,238.09398761666662 -2016-06-09 00:00:00,0.0,1021.267139,0.0,100.0,14.45583333,0.232166667,238.06678451666664 -2016-06-09 01:00:00,0.0,1021.608333,0.0,100.0,13.67083333,0.080166667,238.06796725 -2016-06-09 02:00:00,0.0,1021.760917,0.0,100.0,12.70416667,0.174,238.06796725 -2016-06-09 03:00:00,0.0,1021.841667,0.0,100.0,12.53666667,0.138083333,238.06898103333333 -2016-06-09 04:00:00,0.0,1022.0062220000001,0.0,100.0,10.73083333,0.081416667,238.06695346666663 -2016-06-09 05:00:00,0.0,1022.327583,0.7140833329999999,100.0,9.986666667,0.01525,238.06661556666666 -2016-06-09 06:00:00,0.0,1022.916083,16.55991667,100.0,10.88583333,0.018083333,238.06526386666667 -2016-06-09 07:00:00,0.0,1023.559389,58.8,100.0,13.575,0.307583333,238.06492593333334 -2016-06-09 08:00:00,0.0,1023.658805,134.0208333,95.275,15.97,0.457666667,238.06374316666668 -2016-06-09 09:00:00,0.0,1023.9510560000001,281.6225,85.62583333,18.2975,0.939916667,238.06154666666666 -2016-06-09 10:00:00,0.0,1023.833333,463.3083333000001,74.39916667,21.0275,0.629166667,238.05867426666669 -2016-06-09 11:00:00,0.0,1023.614083,526.6166667,66.39833333,22.23666667,1.14525,238.05563296666665 -2016-06-09 12:00:00,0.0,1023.2521109999999,558.0666667,60.26333333,23.265,1.12925,238.05546398333334 -2016-06-09 13:00:00,0.0,1022.940139,553.875,57.04416667,24.215,1.207666667,238.05090196666666 -2016-06-09 14:00:00,0.0,1022.397417,493.6083333000001,52.43166667,24.5875,1.590416667,238.04887440000002 -2016-06-09 15:00:00,0.0,1022.05575,415.4833333,51.88833333,25.14916667,1.5574166669999998,238.04752271666666 -2016-06-09 16:00:00,0.0,1021.809389,271.40416669999996,51.75583333,24.865,1.82725,238.04549515 -2016-06-09 17:00:00,0.0,1021.676056,38.195,55.7675,23.92583333,1.89175,238.04566410000004 -2016-06-09 18:00:00,0.0,1021.6239439999999,15.34725,70.1075,21.73416667,0.584583333,238.0466779 -2016-06-09 19:00:00,0.0,1021.96925,0.6063333329999999,88.15833333,17.20333333,0.27375,238.04701583333335 -2016-06-09 20:00:00,0.0,1022.2739439999999,0.0,95.1,14.52583333,0.2995,238.04887441666668 -2016-06-09 21:00:00,0.0,1022.358333,0.0,98.175,12.80416667,0.24675,238.05056405000002 -2016-06-09 22:00:00,0.0,1022.3510560000001,0.0,99.91666667,11.7125,0.238666667,238.0546191666667 -2016-06-09 23:00:00,0.0,1022.1916669999999,0.0,100.0,10.88583333,0.11458333300000001,238.05647775 -2016-07-09 00:00:00,0.0,1022.017722,0.0,100.0,10.05916667,0.138083333,238.02069216666666 -2016-07-09 01:00:00,0.0,1021.552111,0.0,100.0,9.5625,0.208833333,238.02089116666664 -2016-07-09 02:00:00,0.0,1021.397417,0.0,100.0,9.081666667,0.174083333,238.02148811666666 -2016-07-09 03:00:00,0.0,1021.1010550000001,0.0,100.0,8.806666667,0.04975,238.02288106666666 -2016-07-09 04:00:00,0.0,1020.604222,0.0,100.0,8.526666667,0.07575,238.02586600000004 -2016-07-09 05:00:00,0.0,1020.127583,0.569416667,100.0,8.223333333,0.09475,238.0252690166667 -2016-07-09 06:00:00,0.0,1020.244833,10.80058333,100.0,8.763333333,0.033416667000000004,238.02447301666666 -2016-07-09 07:00:00,0.0,1020.276528,46.7225,100.0,12.49666667,0.177416667,238.02546800000005 -2016-07-09 08:00:00,0.0,1020.272417,129.4325,97.2,15.37833333,0.967833333,238.02268208333336 -2016-07-09 09:00:00,0.0,1019.981806,294.6175,82.7625,17.805,1.5030833330000002,238.0222841 -2016-07-09 10:00:00,0.0,1019.2792220000001,460.5583333000001,71.70666667,19.87333333,1.72,238.01989618333334 -2016-07-09 11:00:00,0.0,1018.238611,522.0666666999999,64.205,22.28416667,1.6719166669999999,238.01770726666666 -2016-07-09 12:00:00,0.0,1017.5115,538.2,58.37083333,24.11916667,1.7033333330000002,238.01253343333337 -2016-07-09 13:00:00,0.0,1016.6969449999999,531.1833333000001,56.07,25.09833333,2.2585833330000002,238.00735959999997 -2016-07-09 14:00:00,0.0,1015.841195,484.1833333000001,52.40416667,26.4725,1.9190833330000001,238.00377773333335 -2016-07-09 15:00:00,0.0,1015.0997570000001,384.84166669999996,49.5425,26.94333333,1.9778333330000002,238.00337973333333 -2016-07-09 16:00:00,0.0,1014.103993,220.9033333,49.865,26.82,1.84675,238.0013897833334 -2016-07-09 17:00:00,0.0,1013.5226529999999,30.5725,55.73583333,25.99083333,1.661416667,238.0009918166667 -2016-07-09 18:00:00,0.0,1013.03125,16.6815,73.59416667,24.62416667,0.902666667,238.00059383333337 -2016-07-09 19:00:00,0.0,1012.85416,1.09625,89.225,20.04,0.265916667,237.9990018666667 -2016-07-09 20:00:00,0.0,1012.889542,0.0,94.73333333,16.87666667,0.18816666699999998,238.00178780000002 -2016-07-09 21:00:00,0.0,1012.522785,0.0,98.76666667,15.4025,0.174583333,238.00477268333336 -2016-07-09 22:00:00,0.0,1012.1352919999999,0.0,99.93333333,14.6425,0.195583333,238.00716060000002 -2016-07-09 23:00:00,0.0,1011.779167,0.0,100.0,13.66416667,0.123166667,238.00895155 -2016-08-09 00:00:00,0.0,1011.674951,0.0,100.0,13.00333333,0.106,237.92199146666667 -2016-08-09 01:00:00,0.0,1011.2915419999999,0.0,100.0,12.52083333,0.12583333300000002,237.9245784 -2016-08-09 02:00:00,0.0,1010.828986,0.0,100.0,11.93416667,0.075,237.92577235000002 -2016-08-09 03:00:00,0.0,1010.17891,0.0,100.0,11.41083333,0.12758333300000002,237.92816025 -2016-08-09 04:00:00,0.0,1009.595792,0.0,100.0,11.27583333,0.207333333,237.93134416666666 -2016-08-09 05:00:00,0.0,1009.7460070000001,0.5900833329999999,100.0,11.505,0.2355,237.93253811666668 -2016-08-09 06:00:00,0.0,1010.1520830000001,14.103,100.0,11.74583333,0.386166667,237.93711496666666 -2016-08-09 07:00:00,0.0,1010.125,47.15583333,100.0,14.46416667,0.293,237.93791094999997 -2016-08-09 08:00:00,0.0,1009.868667,124.7575,97.54166667,18.60916667,1.220333333,237.94029885 -2016-08-09 09:00:00,0.0,1009.570701,299.2108333,78.36583333,21.18416667,2.109,237.94049785 -2016-08-09 10:00:00,0.0,1009.08525,438.95833330000005,66.74333333,23.85916667,1.714,237.94348275000002 -2016-08-09 11:00:00,0.0,1008.749917,500.36666669999994,60.40583333,26.18333333,1.9749166669999998,237.9395028666667 -2016-08-09 12:00:00,0.0,1008.439576,532.275,53.0825,27.56583333,1.4631666669999999,237.93532405 -2016-08-09 13:00:00,0.0,1008.466757,521.175,52.66916667,28.18083333,1.766583333,237.92915523333332 -2016-08-09 14:00:00,0.0,1008.5103330000001,470.91666669999995,54.2025,28.40083333,0.9765,237.92358341666667 -2016-08-09 15:00:00,0.0,1008.289535,386.975,52.31,28.47,1.2099166670000001,237.91900656666667 -2016-08-09 16:00:00,0.0,1008.175,224.045,51.5875,28.01833333,0.728666667,237.91482771666665 -2016-08-09 17:00:00,0.0,1008.0832849999999,50.26666667,53.37833333,26.83916667,0.670666667,237.9120418166667 -2016-08-09 18:00:00,0.0,1008.321007,13.22125,64.265,24.47916667,0.277333333,237.9112458333333 -2016-08-09 19:00:00,0.0,1009.0668400000001,0.47333333299999997,83.51916667,20.51083333,0.4985,237.9110468166667 -2016-08-09 20:00:00,0.0,1009.585549,0.0,89.88333333,18.5675,0.37341666700000004,237.91403174999996 -2016-08-09 21:00:00,0.0,1010.002208,0.0,95.475,17.45333333,0.280083333,237.91442971666666 -2016-08-09 22:00:00,0.0,1010.55434,0.0,98.33333333,16.4375,0.07691666700000001,237.91562366666665 -2016-08-09 23:00:00,0.0,1011.243965,0.0,98.56666667,16.40916667,0.068166667,237.9172156333333 -2016-09-09 00:00:00,0.0,1011.943882,0.0,95.44166667,16.81833333,0.13425,237.83995943333335 -2016-09-09 01:00:00,0.0,1012.4334650000001,0.0,86.91666667,17.66416667,0.11941666699999999,237.84059215 -2016-09-09 02:00:00,0.0,1012.797958,0.0,88.31666667,17.39416667,0.16675,237.8401983 -2016-09-09 03:00:00,0.0,1012.889625,0.0,97.66666667,17.03583333,0.15741666699999998,237.84590568333337 -2016-09-09 04:00:00,0.0,1012.8250419999999,0.0,100.0,15.82916667,0.2295,237.8478466666667 -2016-09-09 05:00:00,0.0,1013.318924,0.48658333299999995,100.0,15.36416667,0.13875,237.84904573333333 -2016-09-09 06:00:00,0.0,1013.835549,15.41566667,100.0,15.3175,0.46716666700000004,237.85100568333334 -2016-09-09 07:00:00,0.0,1014.256382,68.32333333,98.95833333,17.06833333,0.48875,237.85136633333332 -2016-09-09 08:00:00,0.0,1014.8022080000001,116.79166670000001,90.49166667,18.55916667,0.73425,237.85380085000006 -2016-09-09 09:00:00,0.0,1015.2125900000001,223.2333333,83.81666667,20.14333333,0.80625,237.85431178333332 -2016-09-09 10:00:00,0.0,1015.304042,305.1833333,76.89333333,21.48583333,0.9255,237.8531333 -2016-09-09 11:00:00,0.0,1015.05625,334.3833333,70.83083333,22.58166667,0.683916667,237.85039981666668 -2016-09-09 12:00:00,0.0,1014.8644929999999,404.1166667,67.5825,23.51416667,0.928583333,237.8454880833333 -2016-09-09 13:00:00,0.0,1014.49575,464.91666669999995,64.1525,24.62583333,0.899166667,237.84097656666665 -2016-09-09 14:00:00,0.0,1014.1352919999999,438.325,60.9025,25.2525,1.259833333,237.83523753333336 -2016-09-09 15:00:00,0.0,1013.53941,383.125,58.56083333,25.9325,0.49541666700000003,237.83174946666665 -2016-09-09 16:00:00,0.0,1013.347951,258.61,57.3675,25.315,0.7556666670000001,237.82810006666662 -2016-09-09 17:00:00,0.0,1013.1395,64.12583333,63.8475,24.82583333,0.630083333,237.82627778333335 -2016-09-09 18:00:00,0.0,1013.008375,24.68933333,71.9775,22.72583333,0.177416667,237.826765 -2016-09-09 19:00:00,0.0,1013.372958,0.33725,85.4,20.2025,0.250666667,237.8266305 -2016-09-09 20:00:00,0.0,1013.650083,0.0,91.44166667,17.72,0.270916667,237.8277125333333 -2016-09-09 21:00:00,0.0,1013.764674,0.0,96.60833333,16.06916667,0.125,237.82902073333332 -2016-09-09 22:00:00,0.0,1013.874951,0.0,98.725,14.9325,0.159,237.83067061666665 -2016-09-09 23:00:00,0.0,1013.8146320000001,0.0,99.93333333,14.265,0.08691666699999999,237.83334403333333 -2016-10-09 00:00:00,0.0,1013.95625,0.0,100.0,13.57833333,0.0305,237.96710605 -2016-10-09 01:00:00,0.0,1013.98541,0.0,100.0,13.09083333,0.0465,237.96615533333332 -2016-10-09 02:00:00,0.0,1013.966583,0.0,100.0,12.61666667,0.059166667,237.96746515000004 -2016-10-09 03:00:00,0.0,1013.689583,0.0,100.0,12.19916667,0.040833333,237.96707915000002 -2016-10-09 04:00:00,0.0,1013.6520419999999,0.0,100.0,11.83833333,0.0014166670000000001,237.96690988333333 -2016-10-09 05:00:00,0.0,1013.643792,0.33025,100.0,11.5225,0.032,237.96659193333335 -2016-10-09 06:00:00,0.0,1013.7541669999999,13.753,100.0,11.92916667,0.0,237.96747303333336 -2016-10-09 07:00:00,0.0,1013.927215,41.75166667,100.0,15.285,0.06408333299999999,237.96900273333335 -2016-10-09 08:00:00,0.0,1014.108333,105.005,96.45,18.72333333,0.49091666700000003,237.9669478666667 -2016-10-09 09:00:00,0.0,1014.204125,295.59166669999996,82.87416667,20.39,0.8726666670000001,237.96697160000005 -2016-10-09 10:00:00,0.0,1013.904,410.8666667,73.16333333,24.00583333,0.72225,237.96686405000003 -2016-10-09 11:00:00,0.0,1013.322785,470.8,64.19083333,26.66333333,0.811416667,237.96722313333336 -2016-10-09 12:00:00,0.0,1012.685201,383.0583333,57.55916667,27.75083333,1.3628333330000002,237.966709 -2016-10-09 13:00:00,0.0,1012.087417,377.65833330000004,54.375,28.37666667,1.038166667,237.96513188333333 -2016-10-09 14:00:00,0.0,1011.747833,290.65,50.37083333,29.0725,1.373083333,237.96718199999998 -2016-10-09 15:00:00,0.0,1011.197695,153.2,54.61583333,29.0275,1.3734166669999999,237.96706650000002 -2016-10-09 16:00:00,0.0,1010.75,154.5016667,54.74583333,28.64916667,1.4358333330000002,237.96611421666668 -2016-10-09 17:00:00,0.0,1010.508292,67.39083333,51.27333333,28.1125,1.4325833330000002,237.96599558333332 -2016-10-09 18:00:00,0.0,1010.5938679999999,13.90333333,67.44666667,24.51833333,0.40416666700000003,237.96620753333335 -2016-10-09 19:00:00,0.0,1011.1105,0.162,84.51666667,19.88,0.18858333300000002,237.96544506666666 -2016-10-09 20:00:00,0.0,1011.31875,0.0,85.85,17.66833333,0.106583333,237.96585161666667 -2016-10-09 21:00:00,0.0,1011.5647640000001,0.0,92.90833333,16.29333333,0.192583333,237.96660145 -2016-10-09 22:00:00,0.0,1011.893792,0.0,95.09166667,16.25416667,0.26275,237.96706495000004 -2016-10-09 23:00:00,0.0,1012.054167,0.0,97.65,15.27166667,0.10925,237.96682291666664 -2016-11-09 00:00:00,0.0,1012.437632,0.0,81.2025,14.82583333,0.208416667,238.05236613333332 -2016-11-09 01:00:00,0.0,1012.408285,0.0,93.94166667,16.0825,0.278416667,238.05172548333334 -2016-11-09 02:00:00,0.0,1012.5897150000001,0.0,98.88333333,16.45583333,0.438166667,238.05193743333334 -2016-11-09 03:00:00,0.0,1012.8875,0.0,99.7,16.71,0.34875,238.0505469666667 -2016-11-09 04:00:00,0.0,1012.914625,0.0,99.85833333,15.71166667,0.347083333,238.05006135 -2016-11-09 05:00:00,0.0,1013.329431,0.24708333300000002,99.825,13.26416667,0.11708333300000001,238.0491312 -2016-11-09 06:00:00,0.0,1014.006333,9.948416667,100.0,12.385,0.136666667,238.04712381666664 -2016-11-09 07:00:00,0.0,1014.483465,28.36916667,99.81666667,15.6075,0.1765,238.04680583333334 -2016-11-09 08:00:00,0.0,1014.88759,94.925,82.41166667,19.97583333,0.41875,238.04621103333338 -2016-11-09 09:00:00,0.0,1015.122917,346.5666667,62.70833333,23.89166667,0.764416667,238.04497561666665 -2016-11-09 10:00:00,0.0,1015.2687990000001,459.1,52.3475,25.67916667,0.903,238.04236231666664 -2016-11-09 11:00:00,0.0,1015.258333,523.3416666999999,48.0625,25.97166667,1.15175,238.0413372666667 -2016-11-09 12:00:00,0.0,1015.235417,548.2583333,44.73166667,26.925,1.4771666669999999,238.04348388333332 -2016-11-09 13:00:00,0.0,1014.991535,536.8833333,42.0725,28.04,1.5794166669999998,238.04257903333334 -2016-11-09 14:00:00,0.0,1014.6978330000001,490.6833333000001,41.13083333,28.26666667,1.4611666669999999,238.04359143333332 -2016-11-09 15:00:00,0.0,1014.352035,301.6333333,44.87916667,27.465,1.48825,238.04527775 -2016-11-09 16:00:00,0.0,1014.126951,46.69083333,55.605,25.3225,0.587916667,238.04867878333334 -2016-11-09 17:00:00,0.0,1014.048,22.25083333,69.43166667,23.38,0.15658333300000002,238.04949346666663 -2016-11-09 18:00:00,0.0,1014.273,5.836416667000001,79.565,20.43166667,0.304833333,238.0488607 -2016-11-09 19:00:00,0.0,1014.67934,0.183666667,86.94166667,16.84666667,0.176416667,238.05101204999997 -2016-11-09 20:00:00,0.0,1015.054132,0.0,92.975,15.1475,0.32899999999999996,238.05420111666663 -2016-11-09 21:00:00,0.0,1015.081292,0.0,95.4,14.08166667,0.094083333,238.05919825 -2016-11-09 22:00:00,0.0,1015.06875,0.0,96.175,13.025,0.077,238.06709341666667 -2016-11-09 23:00:00,0.0,1015.064535,0.0,96.53333333,12.44666667,0.059166667,238.07611801666667 -2016-12-09 00:00:00,0.0,1015.081292,0.0,99.18333333,12.2,0.09300000000000001,238.02666853333332 -2016-12-09 01:00:00,0.0,1015.054125,0.0,99.51666667,12.81083333,0.0265,238.02623981666667 -2016-12-09 02:00:00,0.0,1014.7852849999999,0.0,99.84166667,12.26083333,0.052666667,238.02715573333333 -2016-12-09 03:00:00,0.0,1014.4957919999999,0.0,100.0,11.61333333,0.01075,238.0257035666667 -2016-12-09 04:00:00,0.0,1014.274958,0.0,100.0,11.23916667,0.06775,238.02555328333332 -2016-12-09 05:00:00,0.0,1014.1375,0.226416667,100.0,11.06666667,0.079416667,238.0261275 -2016-12-09 06:00:00,0.0,1014.2750900000001,11.28508333,100.0,11.30666667,0.001,238.02608323333334 -2016-12-09 07:00:00,0.0,1014.587625,35.44666667,100.0,14.90583333,0.051083333,238.0238685833333 -2016-12-09 08:00:00,0.0,1014.902125,92.21166667,88.03833333,18.28833333,1.186166667,238.02411696666664 -2016-12-09 09:00:00,0.0,1014.9937570000001,322.4583333,74.55916667,21.44666667,0.8876666670000001,238.02332760000002 -2016-12-09 10:00:00,0.0,1014.791535,422.03333330000004,65.74833333,25.43583333,0.893916667,238.02327381666666 -2016-12-09 11:00:00,0.0,1014.518674,483.71666669999996,57.36666667,27.88166667,1.56375,238.02350476666666 -2016-12-09 12:00:00,0.0,1014.1519509999999,505.5,51.93166667,29.60916667,2.22,238.02339245 -2016-12-09 13:00:00,0.0,1013.735333,488.28333330000004,46.29416667,30.30916667,1.9051666669999998,238.02490315 -2016-12-09 14:00:00,0.0,1013.3790759999999,440.63333330000006,42.74583333,30.81583333,1.3136666670000001,238.02427038333335 -2016-12-09 15:00:00,0.0,1012.95191,349.425,44.085,31.00916667,1.6856666669999998,238.0242783 -2016-12-09 16:00:00,0.0,1012.556167,202.0908333,44.27666667,30.6725,1.9553333330000002,238.02567351666664 -2016-12-09 17:00:00,0.0,1012.1519509999999,43.755,51.9775,29.73166667,1.6951666669999998,238.02788181666668 -2016-12-09 18:00:00,0.0,1012.112708,13.17625,70.88666667,25.0125,0.3435,238.02769675 -2016-12-09 19:00:00,0.0,1012.635458,0.1245,83.0725,21.96666667,0.384166667,238.02859998333335 -2016-12-09 20:00:00,0.0,1012.6604169999999,0.0,88.2,19.4675,0.29791666699999997,238.0271652166667 -2016-12-09 21:00:00,0.0,1012.758292,0.0,93.90833333,17.64083333,0.16025,238.0268188 -2016-12-09 22:00:00,0.0,1012.760458,0.0,96.15833333,16.70333333,0.16625,238.02560868333333 -2016-12-09 23:00:00,0.0,1012.631167,0.0,98.20833333,15.855,0.066,238.02560234999999 -2016-09-13 00:00:00,0.0,1012.61675,0.0,99.68333333,15.03583333,0.2195,237.80908748333334 -2016-09-13 01:00:00,0.0,1012.654125,0.0,100.0,14.58583333,0.211333333,237.81089398333336 -2016-09-13 02:00:00,0.0,1012.526993,0.0,100.0,14.1075,0.056583333,237.81359741666668 -2016-09-13 03:00:00,0.0,1012.327125,0.0,100.0,13.3325,0.08991666699999999,237.81721991666666 -2016-09-13 04:00:00,0.0,1012.287458,0.0,100.0,12.77083333,0.110583333,237.82059723333336 -2016-09-13 05:00:00,0.0,1012.289583,0.20475,100.0,12.3425,0.0275,237.82331330000002 -2016-09-13 06:00:00,0.0,1012.562632,10.0065,100.0,12.4925,0.04275,237.8252511166667 -2016-09-13 07:00:00,0.0,1013.02309,29.8375,100.0,16.325,0.097166667,237.82711771666666 -2016-09-13 08:00:00,0.0,1013.358375,89.31583333,95.95833333,20.29583333,0.42058333299999995,237.82763500000001 -2016-09-13 09:00:00,0.0,1013.312375,326.5583333,77.2875,23.27416667,0.824583333,237.8292105833333 -2016-09-13 10:00:00,0.0,1013.054125,414.8666667,64.34166667,26.275,1.15225,237.8271730833333 -2016-09-13 11:00:00,0.0,1012.539326,478.6,50.685,28.93416667,1.565333333,237.82250813333334 -2016-09-13 12:00:00,0.0,1011.887417,504.4333333000001,46.01666667,30.46333333,1.876333333,237.8169589 -2016-09-13 13:00:00,0.0,1011.576993,493.5,41.32083333,31.2,1.878916667,237.80977561666668 -2016-09-13 14:00:00,0.0,1011.23325,440.8583333000001,39.54583333,31.81333333,1.3960833330000002,237.80315861666668 -2016-09-13 15:00:00,0.0,1010.6747359999999,357.6833333,39.7075,31.83166667,1.587666667,237.7993478666667 -2016-09-13 16:00:00,0.0,1010.054167,216.36,35.96583333,31.34666667,2.031666667,237.79838606666667 -2016-09-13 17:00:00,0.0,1009.672743,36.65416667,41.8975,30.22833333,1.854916667,237.79656691666665 -2016-09-13 18:00:00,0.0,1009.4521179999999,11.31033333,65.1275,25.4725,0.51975,237.79511788333335 -2016-09-13 19:00:00,0.0,1009.48125,0.10091666699999999,79.74416667,20.78916667,0.283666667,237.7953552 -2016-09-13 20:00:00,0.0,1009.606208,0.0,85.06583333,18.84333333,0.270416667,237.79565575 -2016-09-13 21:00:00,0.0,1009.658375,0.0,91.725,17.20916667,0.188,237.79740533333333 -2016-09-13 22:00:00,0.0,1009.65625,0.0,95.775,15.70083333,0.259416667,237.7985110666667 -2016-09-13 23:00:00,0.0,1009.812542,0.0,98.65833333,14.81666667,0.163,237.79877993333335 -2016-09-14 00:00:00,0.0,1009.84384,0.0,99.84166667,14.4725,0.180833333,237.80087595 -2016-09-14 01:00:00,0.0,1010.075,0.0,100.0,14.06583333,0.11075,237.80161153333333 -2016-09-14 02:00:00,0.0,1010.1125,0.0,100.0,13.60416667,0.16899999999999998,237.80413620000002 -2016-09-14 03:00:00,0.0,1010.125042,0.0,100.0,12.89166667,0.122666667,237.80761001666667 -2016-09-14 04:00:00,0.0,1010.243708,0.0,100.0,12.23416667,0.094416667,237.81030394999996 -2016-09-14 05:00:00,0.0,1010.137549,0.17425,100.0,11.8675,0.174,237.8145702666667 -2016-09-14 06:00:00,0.0,1010.402167,9.431333333,100.0,12.11416667,0.142583333,237.81656185000006 -2016-09-14 07:00:00,0.0,1010.725125,30.41416667,100.0,15.89166667,0.069333333,237.81893149999996 -2016-09-14 08:00:00,0.0,1010.9187919999999,96.89083333,90.1,19.84916667,0.84775,237.82119201666669 -2016-09-14 09:00:00,0.0,1011.208299,325.2666667,72.36833333,22.51416667,1.090833333,237.82284983333332 -2016-09-14 10:00:00,0.0,1011.0395,413.525,61.73,25.96,1.015333333,237.82222025 -2016-09-14 11:00:00,0.0,1010.954174,467.2,48.7525,28.65916667,1.483416667,237.8171012833333 -2016-09-14 12:00:00,0.0,1010.8416599999999,490.9833333000001,43.61,30.04166667,1.5164166669999999,237.81044475 -2016-09-14 13:00:00,0.0,1010.5749099999999,490.4416666999999,40.36,30.665,1.9005833330000002,237.80355408333332 -2016-09-14 14:00:00,0.0,1010.093583,421.11666669999994,40.91083333,29.89416667,2.05675,237.79940163333336 -2016-09-14 15:00:00,0.0,1009.543576,155.7075,46.49833333,29.95,1.5101666669999998,237.7987166833333 -2016-09-14 16:00:00,0.0,1009.212583,148.9591667,42.40166667,29.92916667,1.754083333,237.80061336666665 -2016-09-14 17:00:00,0.0,1009.054035,45.00916667,46.89,28.71,1.51675,237.79995373333335 -2016-09-14 18:00:00,0.0,1009.0750830000001,11.85525,66.4325,25.83166667,0.34125,237.79859646666668 -2016-09-14 19:00:00,0.0,1009.381292,0.077,79.85,20.32666667,0.29025,237.80144066666665 -2016-09-14 20:00:00,0.0,1009.579257,0.0,84.69166667,19.04083333,0.2675,237.80401124999995 -2016-09-14 21:00:00,0.0,1009.5519929999999,0.0,89.64166667,17.23,0.263833333,237.8042500833333 -2016-09-14 22:00:00,0.0,1009.247792,0.0,93.55833333,16.45833333,0.231416667,237.80610883333335 -2016-09-14 23:00:00,0.0,1008.933285,0.0,95.9,15.25916667,0.303833333,237.80700575 -2016-09-15 00:00:00,0.0,1008.662458,0.0,97.74166667,14.69583333,0.331,237.80949875000002 -2016-09-15 01:00:00,0.0,1008.441542,0.0,99.35,14.38083333,0.310583333,237.81208198333334 -2016-09-15 02:00:00,0.0,1008.345875,0.0,99.71666667,14.41416667,0.13025,237.81267358333335 -2016-09-15 03:00:00,0.0,1008.1061599999999,0.0,98.80833333,14.46416667,0.081166667,237.81552100000002 -2016-09-15 04:00:00,0.0,1007.806118,0.0,99.825,13.38333333,0.21433333300000001,237.81996288333335 -2016-09-15 05:00:00,0.0,1007.75634,0.149833333,100.0,12.49916667,0.110916667,237.82348100000002 -2016-09-15 06:00:00,0.0,1007.900083,9.548583333,100.0,11.9825,0.140166667,237.82701491666668 -2016-09-15 07:00:00,0.0,1008.1269580000001,31.71666667,96.40833333,15.84083333,0.253916667,237.82870436666667 -2016-09-15 08:00:00,0.0,1007.862542,104.6425,81.70083333,20.18583333,2.1395,237.8298781333333 -2016-09-15 09:00:00,0.0,1007.8895,330.9916667,70.98166667,22.61666667,2.6415833330000003,237.82940353333336 -2016-09-15 10:00:00,0.0,1007.624958,414.9416667,57.97583333,25.385,2.416666667,237.82860943333333 -2016-09-15 11:00:00,0.0,1007.224826,461.475,52.42833333,26.965,2.1815833330000003,237.8234715 -2016-09-15 12:00:00,0.0,1006.95,500.9,45.94416667,28.49833333,2.103583333,237.81803775 -2016-09-15 13:00:00,0.0,1006.6207009999999,481.3083333000001,44.12083333,29.2225,2.43675,237.81109013333335 -2016-09-15 14:00:00,0.0,1006.489625,405.21666669999996,45.73833333,29.14333333,2.8736666669999997,237.8042501 -2016-09-15 15:00:00,0.0,1006.3124240000001,309.5416667,47.24416667,28.6575,2.555416667,237.79858380000005 -2016-09-15 16:00:00,0.0,1006.339618,106.94333329999999,52.76916667,27.31166667,2.274333333,237.79863445 -2016-09-15 17:00:00,0.0,1006.5188820000001,65.14416667,56.76,26.3675,1.083333333,237.79772326666668 -2016-09-15 18:00:00,0.0,1006.975042,7.247166667,63.26833333,23.55166667,0.1775,237.79781660000003 -2016-09-15 19:00:00,0.0,1007.331424,0.013166667,66.9925,22.3775,0.37641666700000004,237.79719490000002 -2016-09-15 20:00:00,0.0,1007.798042,0.0,69.69666667,22.87166667,0.841583333,237.79784031666665 -2016-09-15 21:00:00,0.0,1008.493882,0.0,74.65083333,21.91333333,1.207333333,237.79607338333335 -2016-09-15 22:00:00,0.0,1008.9877150000001,0.0,80.14666667,19.95833333,1.0776666670000001,237.79557193333335 -2016-09-15 23:00:00,0.0,1009.464667,0.0,81.00833333,18.83416667,0.972583333,237.7946797166667 -2016-09-16 00:00:00,0.0,1009.57509,0.0,83.675,18.44083333,0.511333333,237.7971063166667 -2016-09-16 01:00:00,0.0,1009.8312080000001,0.0,84.98333333,17.90333333,0.30525,237.79959778333333 -2016-09-16 02:00:00,0.0,1009.883375,0.0,85.5,17.58416667,0.512166667,237.8026682166667 -2016-09-16 03:00:00,0.0,1009.997958,0.0,87.79166667,16.89333333,0.49225,237.80440194999997 -2016-09-16 04:00:00,0.0,1010.1,0.0,88.075,15.83583333,0.137833333,237.8072825666667 -2016-09-16 05:00:00,0.0,1010.0353259999999,0.072833333,92.68333333,15.5225,0.34633333299999997,237.81088608333334 -2016-09-16 06:00:00,0.0,1009.88134,13.18116667,91.3,15.66166667,0.50075,237.81276534999998 -2016-09-16 07:00:00,0.0,1010.508549,53.13,88.85833333,16.35666667,0.265833333,237.81441051666664 -2016-09-16 08:00:00,0.0,1010.906292,114.13333329999999,87.525,17.66083333,0.834916667,237.81455761666666 -2016-09-16 09:00:00,0.0,1011.295924,113.23583329999998,84.69166667,18.41833333,0.608583333,237.81609836666667 -2016-09-16 10:00:00,0.0,1011.374958,152.95,82.07083333,19.10083333,0.564583333,237.81705066666666 -2016-09-16 11:00:00,0.0,1011.191618,163.43333330000002,77.5925,19.66666667,0.73475,237.81602246666668 -2016-09-16 12:00:00,0.0,1010.94575,277.0833333,71.44583333,20.6025,0.92375,237.8138505166667 -2016-09-16 13:00:00,0.0,1010.585292,210.2333333,66.48166667,21.50416667,0.820916667,237.81023593333336 -2016-09-16 14:00:00,0.0,1010.260368,235.05,66.68416667,21.03333333,1.062583333,237.80653274999997 -2016-09-16 15:00:00,0.0,1009.749785,137.3416667,66.46083333,20.92166667,0.884166667,237.80175075000002 -2016-09-16 16:00:00,0.0,1009.275042,93.17333333,66.23833333,20.3275,0.40083333299999996,237.80136316666665 -2016-09-16 17:00:00,0.0,1009.2374169999999,42.15416667,66.77166667,19.45166667,0.27175,237.79966581666665 -2016-09-16 18:00:00,0.0,1009.15625,3.1670833330000003,72.43333333,18.54416667,0.13725,237.80124451666663 -2016-09-16 19:00:00,0.0,1009.550174,0.0,71.83833333,18.0275,0.22175,237.80332471666665 -2016-09-16 20:00:00,0.0,1009.6854099999999,0.0,78.19166667,17.58666667,0.29100000000000004,237.8035367 -2016-09-16 21:00:00,0.0,1009.452,0.0,83.23333333,17.1775,0.616083333,237.80413305000002 -2016-09-16 22:00:00,0.0,1009.508424,0.0,89.68333333,15.9825,0.135833333,237.80426276666665 -2016-09-16 23:00:00,0.0,1009.702042,0.0,87.14166667,15.57916667,0.34416666700000004,237.80561051666666 -2016-09-17 00:00:00,0.0,1009.8167080000001,0.0,83.125,16.05083333,0.61575,237.8059506 -2016-09-17 01:00:00,0.0,1009.985451,0.0,87.96666667,15.08416667,0.196083333,237.80828386666664 -2016-09-17 02:00:00,0.0,1009.9458400000001,0.0,94.84166667,13.7925,0.19825,237.81395018333333 -2016-09-17 03:00:00,0.0,1009.658243,0.0,98.36666667,13.08833333,0.09575,237.81824971666666 -2016-09-17 04:00:00,0.0,1009.623007,0.0,99.65,12.87833333,0.146083333,237.82103226666663 -2016-09-17 05:00:00,0.0,1010.0125,0.01875,99.96666667,13.5625,0.15766666699999998,237.82340506666665 -2016-09-17 06:00:00,0.0,1010.2460070000001,6.729583333,99.25833333,14.49333333,0.564583333,237.82535236666664 -2016-09-17 07:00:00,0.0,1010.5750419999999,41.545,96.20833333,15.0025,0.34725,237.82704021666666 -2016-09-17 08:00:00,0.0,1010.752167,84.62666667,89.88333333,15.93166667,0.406416667,237.83027356666665 -2016-09-17 09:00:00,0.0,1011.154215,51.27833333,90.81666667,15.9225,0.39833333299999996,237.83348479999998 -2016-09-17 10:00:00,0.0,1011.060326,139.095,87.775,17.10666667,0.662333333,237.83550486666664 -2016-09-17 11:00:00,0.0,1010.979292,136.86833330000002,81.54166667,18.30916667,0.601916667,237.83639860000002 -2016-09-17 12:00:00,0.0,1011.2207080000001,129.0275,79.57416667,18.67916667,0.968,237.83543998333334 -2016-09-17 13:00:00,0.0,1010.8645,223.0,74.67083333,19.87583333,1.7131666669999999,237.83463641666665 -2016-09-17 14:00:00,0.0,1010.497875,232.3666667,68.5675,20.83666667,2.508666667,237.83177161666666 -2016-09-17 15:00:00,0.0,1010.27491,81.54416667,67.01833333,20.59416667,3.591916667,237.82986388333336 -2016-09-17 16:00:00,26.45740841,1010.208465,24.96833333,77.6475,18.69916667,2.209833333,237.82822661666663 -2016-09-17 17:00:00,51.11013355,1010.5979169999999,6.410083332999999,96.81666667,16.175,0.6878333329999999,237.82799093333333 -2016-09-17 18:00:00,44.74146473,1010.560417,1.148416667,98.13333333,15.78333333,1.476833333,237.83207689999998 -2016-09-17 19:00:00,56.79516974,1010.787625,0.0,99.80833333,15.59916667,1.15025,237.83542575 -2016-09-17 20:00:00,42.81236902,1011.102083,0.0,100.0,15.63666667,1.4636666669999998,237.84021251666664 -2016-09-17 21:00:00,25.4914421,1010.914542,0.0,99.83333333,15.84,2.345416667,237.8468864666667 -2016-09-17 22:00:00,54.99937219,1010.762417,0.0,100.0,15.755,2.4925,237.85560418333333 -2016-09-17 23:00:00,11.56344192,1010.587458,0.0,100.0,15.72333333,1.711916667,237.8666298833333 -2016-09-18 00:00:00,0.0,1010.3499099999999,0.0,100.0,15.60583333,1.028166667,237.87602941666668 -2016-09-18 01:00:00,0.0,1010.345917,0.0,100.0,15.87583333,1.5765,237.8819725333333 -2016-09-18 02:00:00,0.0,1010.212458,0.0,100.0,16.25166667,2.460916667,237.88772106666667 -2016-09-18 03:00:00,3.130164024,1010.1124169999999,0.0,99.55,16.30666667,1.9605833330000002,237.89283051666666 -2016-09-18 04:00:00,0.0,1009.793708,0.0,99.81666667,16.42666667,2.208916667,237.89552448333336 -2016-09-18 05:00:00,0.0,1009.770875,0.0,99.15833333,16.29166667,2.0146666669999997,237.89875625 -2016-09-18 06:00:00,0.0,1009.9104580000001,2.6116666669999997,99.7,16.05,1.6755,237.90048208333334 -2016-09-18 07:00:00,0.0,1010.112542,18.57641667,96.70833333,16.17916667,2.520333333,237.90282803333332 -2016-09-18 08:00:00,0.0,1010.310417,53.60333333,94.25833333,16.38916667,2.810083333,237.90353828333332 -2016-09-18 09:00:00,0.0,1010.412632,72.01666667,92.01666667,16.76583333,2.8675833330000002,237.90443676666666 -2016-09-18 10:00:00,0.0,1010.6520419999999,224.95,85.03333333,17.67166667,4.036833333,237.90549506666665 -2016-09-18 11:00:00,0.0,1010.462458,144.625,81.17916667,18.5875,3.9795,237.90517866666664 -2016-09-18 12:00:00,0.0,1010.470826,334.8166667,76.465,18.685,3.000416667,237.90679378333334 -2016-09-18 13:00:00,0.0,1010.2645,320.225,73.93083333,19.29583333,3.2286666669999997,237.90588735000003 -2016-09-18 14:00:00,0.0,1010.193792,355.2,69.07916667,20.05916667,3.291583333,237.90563426666668 -2016-09-18 15:00:00,0.0,1010.21875,227.275,64.73916667,20.66,3.193833333,237.90341173333334 -2016-09-18 16:00:00,0.0,1010.010375,110.63416670000001,66.465,19.8525,2.895916667,237.90561053333337 -2016-09-18 17:00:00,0.0,1010.21884,34.35583333,70.32166667,19.0475,2.54075,237.9071497 -2016-09-18 18:00:00,0.0,1010.700167,6.43575,72.915,17.82666667,2.41525,237.90674 -2016-09-18 19:00:00,0.0,1011.189674,0.0,82.87583333,16.56,1.8725833330000001,237.90881066666668 -2016-09-18 20:00:00,0.0,1011.668882,0.0,92.28333333,15.78583333,1.3691666669999998,237.90870628333334 -2016-09-18 21:00:00,0.0,1011.84375,0.0,95.58333333,15.23333333,1.7815,237.90984996666668 -2016-09-18 22:00:00,0.0,1012.058417,0.0,97.30833333,15.1375,1.043916667,237.90933744999998 -2016-09-18 23:00:00,0.0,1012.147917,0.0,98.26666667,14.35416667,1.097583333,237.90921088333334 -2016-09-19 00:00:00,0.0,1012.225049,0.0,98.09166667,13.10666667,0.18825,237.91067255 -2016-09-19 01:00:00,0.0,1012.2791599999999,0.0,92.88333333,12.78083333,0.162416667,237.91148881666672 -2016-09-19 02:00:00,0.0,1012.3250419999999,0.0,95.225,12.54333333,0.081833333,237.91217058333334 -2016-09-19 03:00:00,0.0,1012.633424,0.0,96.43333333,13.03416667,0.18508333300000002,237.91134166666666 -2016-09-19 04:00:00,0.0,1012.850083,0.0,97.18333333,12.83416667,0.10275,237.9115663 -2016-09-19 05:00:00,0.0,1012.929083,0.014083333,97.71666667,12.50833333,0.040833333,237.91289033333337 -2016-09-19 06:00:00,0.0,1012.962583,4.715833333,96.96666667,12.56,0.048583333,237.91473008333332 -2016-09-19 07:00:00,0.0,1013.189674,35.18166667,93.25,13.1275,0.0655,237.91329214999996 -2016-09-19 08:00:00,0.0,1013.68559,75.73833333,82.02,14.37833333,0.23775,237.91289508333332 -2016-09-19 09:00:00,0.0,1014.433549,118.8525,80.55833333,14.61166667,2.19525,237.91163115000003 -2016-09-19 10:00:00,0.0,1014.875,138.1333333,80.71083333,15.0275,2.267,237.91168495 -2016-09-19 11:00:00,0.0,1014.912542,146.1,80.1525,15.19583333,2.3535,237.91180516666668 -2016-09-19 12:00:00,0.0,1015.0042080000001,92.48166667,83.39166667,14.55416667,2.90975,237.91265940000002 -2016-09-19 13:00:00,2.7994476,1015.237583,73.71,94.89166667,13.15083333,1.74925,237.91417479999998 -2016-09-19 14:00:00,0.0,1015.229167,62.22833333,98.13333333,13.59833333,1.4445833330000002,237.91273213333332 -2016-09-19 15:00:00,0.0,1015.247875,37.245,97.10833333,13.79166667,2.043333333,237.91385053333337 -2016-09-19 16:00:00,0.0,1015.204167,40.1275,96.91666667,13.46937246,0.48975,237.91551783333333 -2016-09-19 17:00:00,0.0,1015.164583,14.1395,97.81666667,13.0714891,0.27175,237.91625975 -2016-09-19 18:00:00,0.0,1015.287549,3.695166667,98.63333333,12.92026402,0.13725,237.91667105 -2016-09-19 19:00:00,0.0,1015.522917,0.0,99.55,12.79451708,0.22175,237.91884134999998 -2016-09-19 20:00:00,0.0,1015.587542,0.0,100.0,12.64411388,0.29100000000000004,237.91870056666667 -2016-09-19 21:00:00,0.0,1015.6125,0.0,100.0,12.5767201,0.616083333,237.92043748333336 -2016-09-19 22:00:00,0.0,1015.522917,0.0,100.0,12.52412008,0.135833333,237.92249393333336 -2016-09-19 23:00:00,0.0,1015.5979169999999,0.0,100.0,12.46165755,0.34416666700000004,237.92140245000004 -2016-09-20 00:00:00,0.0,1015.564583,0.0,100.0,12.40330439,0.61575,237.92148470000004 -2016-09-20 01:00:00,0.0,1015.297785,0.0,100.0,12.372895,0.196083333,237.92252399999998 -2016-09-20 02:00:00,0.0,1014.860326,0.0,100.0,12.38604501,0.19825,237.92460416666665 -2016-09-20 03:00:00,0.0,1014.666632,0.0,100.0,12.38029188,0.09575,237.9244206666667 -2016-09-20 04:00:00,0.0,1014.581201,0.0,100.0,12.32769186,0.146083333,237.9256308 -2016-09-20 05:00:00,0.0,1014.550007,0.01225,100.0,12.26769495,0.15766666699999998,237.9259614166667 -2016-09-20 06:00:00,0.0,1014.689708,3.45275,100.0,12.24879182,0.564583333,237.92666061666668 -2016-09-20 07:00:00,0.0,1015.05425,36.28333333,100.0,12.56192634,0.34725,237.9256212833333 -2016-09-20 08:00:00,0.0,1015.389674,87.67583333,97.21666667,13.34681735,0.406416667,237.92393976666668 -2016-09-20 09:00:00,0.0,1015.600042,134.29166669999998,90.88333333,14.26649593,0.39833333299999996,237.92455193333333 -2016-09-20 10:00:00,0.0,1015.575,200.7583333,87.30833333,15.3267152,0.662333333,237.9243178 -2016-09-20 11:00:00,0.0,1015.406118,256.9166667,81.75416667,16.38693446,0.601916667,237.92380211666662 -2016-09-20 12:00:00,0.0,1015.233333,286.125,76.98666667,17.19401611,0.968,237.9225762 -2016-09-20 13:00:00,0.0,1015.047792,245.08333330000002,72.38416667,17.43400373,1.7131666669999999,237.92108286666667 -2016-09-20 14:00:00,0.0,1014.749958,207.2166667,71.45166667,17.6255007,2.508666667,237.92051501666666 -2016-09-20 15:00:00,0.0,1014.620785,152.54166669999998,70.9075,17.54824441,3.591916667,237.9194092666667 -2016-09-20 16:00:00,0.0,1014.381208,81.54166667,69.09916667,17.14716921,2.209833333,237.9203489 -2016-09-20 17:00:00,0.0,1014.381299,25.29166667,71.23583333,16.23570939,0.6878333329999999,237.92110030000003 -2016-09-20 18:00:00,0.0,1014.5522080000001,2.7345,84.20916667,14.76126492,1.476833333,237.92147680000002 -2016-09-20 19:00:00,0.0,1015.045917,0.0,91.675,13.65913001,1.15025,237.92083293333337 -2016-09-20 20:00:00,0.0,1015.179167,0.0,95.36666667,12.92026402,1.4636666669999998,237.92069056666665 -2016-09-20 21:00:00,0.0,1015.38134,0.0,97.775,12.27673558,2.345416667,237.92149576666668 -2016-09-20 22:00:00,0.0,1015.660465,0.0,99.58333333,10.41107842,2.4925,237.9217583666667 -2016-09-20 23:00:00,0.0,1015.97925,0.0,100.0,8.359348665,1.711916667,237.92258565 -2016-09-21 00:00:00,0.0,1015.9916599999999,0.0,100.0,7.092263357999999,1.028166667,237.92534446666664 -2016-09-21 01:00:00,0.0,1015.8374650000001,0.0,100.0,6.216061992999999,1.5765,237.92588705000003 -2016-09-21 02:00:00,0.0,1015.81666,0.0,100.0,5.447197554,2.460916667,237.9254235666667 -2016-09-21 03:00:00,0.0,1015.595785,0.0,100.0,5.364434701,1.9605833330000002,237.92712568333334 -2016-09-21 04:00:00,0.0,1015.637465,0.0,100.0,4.956373564,2.208916667,237.92813648333333 -2016-09-21 05:00:00,0.0,1015.764625,0.026333332999999997,100.0,4.44664644,2.0146666669999997,237.92940196666666 -2016-09-21 06:00:00,0.0,1015.79384,6.682166667000001,100.0,4.082555637,1.6755,237.9302815 -2016-09-21 07:00:00,0.0,1016.175083,27.48333333,100.0,5.195950244,2.520333333,237.92882141666666 -2016-09-21 08:00:00,0.0,1016.5730070000001,120.3225,99.94166667,8.268449246,2.810083333,237.92812383333333 -2016-09-21 09:00:00,0.0,1016.870875,303.6,85.08166667,12.17646678,2.8675833330000002,237.92656724999998 -2016-09-21 10:00:00,0.0,1016.8582849999999,392.05,73.2825,14.86728685,4.036833333,237.92440326666667 -2016-09-21 11:00:00,0.0,1016.5895419999999,426.50833330000006,65.1675,16.67787836,3.9795,237.9230460166667 -2016-09-21 12:00:00,0.0,1016.2290830000001,353.1416667,60.1675,17.13484108,3.000416667,237.9221016 -2016-09-21 13:00:00,0.0,1016.137458,486.75833330000006,53.66083333,18.82132941,3.2286666669999997,237.91858511666666 -2016-09-21 14:00:00,0.0,1015.964535,383.1833333,50.67083333,18.97502011,3.291583333,237.9179317666667 -2016-09-21 15:00:00,0.0,1015.6686599999999,331.9333333,48.43416667,19.66786107,3.193833333,237.91524418333327 -2016-09-21 16:00:00,0.0,1015.4770490000001,188.27333330000002,49.14833333,19.57252352,2.895916667,237.91431086666668 -2016-09-21 17:00:00,0.0,1015.275042,25.16083333,59.2975,17.21374112,2.54075,237.9153786333333 -2016-09-21 18:00:00,0.0,1015.639715,3.492,82.85416667,12.39179814,2.41525,237.91434883333332 -2016-09-21 19:00:00,0.0,1016.095917,0.0,90.15,9.887954725,1.8725833330000001,237.91458451666668 -2016-09-21 20:00:00,0.0,1016.4397150000001,0.0,96.45833333,8.31809052,1.3691666669999998,237.91565228333334 -2016-09-21 21:00:00,0.0,1016.795833,0.0,99.50833333,7.07015491,1.7815,237.9147696 -2016-09-21 22:00:00,0.0,1017.006375,0.0,99.9,6.710913172000001,1.043916667,237.9151002333333 -2016-09-21 23:00:00,0.0,1017.18125,0.0,100.0,6.258881701,1.097583333,237.9169446833333 -2016-09-22 00:00:00,0.0,1017.35,0.0,100.0,5.727703629,0.18825,237.91774826666668 -2016-09-22 01:00:00,0.0,1017.495882,0.0,100.0,5.320957492,0.162416667,237.91790488333336 -2016-09-22 02:00:00,0.0,1017.4958330000001,0.0,100.0,4.683757494,0.081833333,237.9188825 -2016-09-22 03:00:00,0.0,1017.560417,0.0,100.0,4.252272907,0.18508333300000002,237.91886826666666 -2016-09-22 04:00:00,0.0,1017.377035,0.0,100.0,3.963301516,0.10275,237.92009265 -2016-09-22 05:00:00,0.0,1017.285507,0.0235,100.0,3.533789431,0.040833333,237.92237845 -2016-09-22 06:00:00,0.0,1017.8085070000001,9.496166667,100.0,3.643920735,0.048583333,237.92185798333335 -2016-09-22 07:00:00,0.0,1018.475174,29.56166667,100.0,5.293999979,0.0655,237.91880340000003 -2016-09-22 08:00:00,0.0,1018.829243,130.4241667,100.0,8.496601858,0.23775,237.91933176666672 -2016-09-22 09:00:00,0.0,1019.1416320000001,302.875,89.26666667,12.53644821,2.19525,237.91786535000003 -2016-09-22 10:00:00,0.0,1018.9562080000001,400.1,76.08916667,15.8477842,2.267,237.91782894999997 -2016-09-22 11:00:00,0.0,1018.68325,450.86666669999994,61.82666667,19.08477151,1.651666667,237.9161822333333 -2016-09-22 12:00:00,0.0,1018.445743,457.34166669999996,53.02833333,20.50833333,1.7895,237.9154371666667 -2016-09-22 13:00:00,0.0,1017.9665349999999,344.21666669999996,51.09083333,21.12,1.8735,237.913058 -2016-09-22 14:00:00,0.0,1017.564542,280.1,49.28666667,20.33,2.1091666669999998,237.91142551666667 -2016-09-22 15:00:00,0.0,1017.539583,212.4083333,49.26083333,20.13166667,1.891583333,237.90968383333336 -2016-09-22 16:00:00,0.0,1017.416576,113.45833329999999,52.44333333,19.8125,2.19375,237.90827286666664 -2016-09-22 17:00:00,0.0,1017.4396320000001,46.82416667,61.51333333,18.25583333,1.149,237.90775875 -2016-09-22 18:00:00,0.0,1017.6125900000001,4.323916667,78.86666667,14.445,0.24625,237.90791695 -2016-09-22 19:00:00,0.0,1017.777118,0.0,87.45,13.135,0.275166667,237.90829813333335 -2016-09-22 20:00:00,0.0,1017.881292,0.0,89.70833333,12.52833333,0.067166667,237.90873473333332 -2016-09-22 21:00:00,0.0,1018.1437990000001,0.0,90.16666667,10.87,0.145083333,237.9079169 -2016-09-22 22:00:00,0.0,1018.233333,0.0,94.05,9.4275,0.155,237.9088929333333 -2016-09-22 23:00:00,0.0,1018.395833,0.0,97.15,8.843333333,0.112166667,237.90861453333332 -2016-09-23 00:00:00,0.0,1018.193826,0.0,98.11666667,8.071916667,0.055416667,237.90991641666665 -2016-09-23 01:00:00,0.0,1018.5375560000001,0.0,99.65833333,8.2475,0.0275,237.90820800000003 -2016-09-23 02:00:00,0.0,1018.72291,0.0,98.85,8.270833332999999,0.074916667,237.9089309166667 -2016-09-23 03:00:00,0.0,1018.712549,0.0,99.8,7.708666667,0.081333333,237.91160743333333 -2016-09-23 04:00:00,0.0,1018.764625,0.0,100.0,6.911333332999999,0.18725,237.9144675 -2016-09-23 05:00:00,0.0,1019.00625,0.0,100.0,7.0004166670000005,0.015916667,237.9122117166667 -2016-09-23 06:00:00,0.0,1019.327257,7.003166667,100.0,6.093583333,0.081083333,237.9147806666667 -2016-09-23 07:00:00,0.0,1020.0439650000001,43.81916667,100.0,8.550083333,0.069,237.91439788333332 -2016-09-23 08:00:00,0.0,1020.5959650000001,118.975,96.775,10.9475,0.235416667,237.9139786833333 -2016-09-23 09:00:00,0.0,1021.045875,292.65,75.81,15.715,0.48608333299999995,237.91142236666667 -2016-09-23 10:00:00,0.0,1021.275049,374.5083333,63.08416667,18.87166667,0.48925,237.910962 -2016-09-23 11:00:00,0.0,1021.1604169999999,412.9583333,59.29833333,21.47166667,0.5895,237.90995913333333 -2016-09-23 12:00:00,0.0,1021.1624929999999,364.1083333,59.07083333,20.945,0.969333333,237.90869361666668 -2016-09-23 13:00:00,0.0,1021.154167,279.65833330000004,58.58916667,21.40333333,0.769333333,237.90798016666668 -2016-09-23 14:00:00,0.0,1021.0874650000001,301.2,58.7625,21.6225,0.825333333,237.90622903333335 -2016-09-23 15:00:00,0.0,1020.947868,356.9,54.53833333,22.23583333,0.946,237.90246733333333 -2016-09-23 16:00:00,0.0,1020.837451,109.82583329999999,56.86583333,20.5025,0.363416667,237.90172070000003 -2016-09-23 17:00:00,0.0,1020.7979650000001,47.045,58.69,20.28833333,0.61125,237.9022474333333 -2016-09-23 18:00:00,0.0,1021.1626669999999,4.233083333,72.9175,17.17333333,0.230583333,237.90143278333335 -2016-09-23 19:00:00,0.0,1021.787549,0.0,88.98333333,13.9625,0.21633333300000002,237.9002163333333 -2016-09-23 20:00:00,0.0,1021.9751669999999,0.0,96.13333333,12.14916667,0.136833333,237.90161156666662 -2016-09-23 21:00:00,0.0,1021.954125,0.0,98.84166667,10.3275,0.04225,237.89892709999995 -2016-09-23 22:00:00,0.0,1022.106299,0.0,99.96666667,9.633333333,0.23575,237.89744961666665 -2016-09-23 23:00:00,0.0,1022.412625,0.0,100.0,8.8575,0.058583333,237.89737053333332 -2016-09-24 00:00:00,0.0,1022.264458,0.0,100.0,8.243166667,0.12608333300000002,237.89761888333337 -2016-09-24 01:00:00,0.0,1022.166625,0.0,100.0,7.608833333,0.074083333,237.89966109999997 -2016-09-24 02:00:00,0.0,1021.974951,0.0,100.0,7.044,0.06375,237.90066560000002 -2016-09-24 03:00:00,0.0,1021.874958,0.0,100.0,6.458833332999999,0.071,237.90134896666666 -2016-09-24 04:00:00,0.0,1021.937583,0.0,100.0,5.895833333,0.08808333300000001,237.90154985 -2016-09-24 05:00:00,0.0,1021.858326,0.0,100.0,5.9625833329999995,0.094666667,237.90258756666665 -2016-09-24 06:00:00,0.0,1022.3126390000001,5.825583332999999,100.0,6.0,0.019333333,237.90194375000002 -2016-09-24 07:00:00,0.0,1022.608465,44.42416667,100.0,7.631833332999999,0.061333333,237.90184881666664 -2016-09-24 08:00:00,0.0,1022.722868,115.36583329999999,100.0,9.36,0.452583333,237.90123665 -2016-09-24 09:00:00,0.0,1022.827,266.875,96.79166667,10.87833333,0.333916667,237.90150241666666 -2016-09-24 10:00:00,0.0,1022.641625,357.125,87.50833333,15.7075,0.532083333,237.90215255 -2016-09-24 11:00:00,0.0,1022.322875,412.8166667,74.86333333,19.45416667,0.780666667,237.90173493333336 -2016-09-24 12:00:00,0.0,1021.85191,436.9833333000001,67.17916667,21.20583333,1.205916667,237.90072094999996 -2016-09-24 13:00:00,0.0,1021.110153,214.2,62.9525,22.47916667,1.6140833330000002,237.90106260000002 -2016-09-24 14:00:00,0.0,1020.416458,335.4916667,56.8025,21.8875,2.070083333,237.8984921166667 -2016-09-24 15:00:00,0.0,1019.756118,338.4333333,48.40583333,22.35166667,2.8915833330000003,237.8962126 -2016-09-24 16:00:00,0.0,1019.103993,179.4925,46.1475,21.78583333,2.6324166669999998,237.89443298333333 -2016-09-24 17:00:00,0.0,1018.791618,27.48666667,56.6225,20.0275,1.247833333,237.89457376666667 -2016-09-24 18:00:00,0.0,1018.662451,4.40525,80.61583333,14.55583333,0.2225,237.89441715 -2016-09-24 19:00:00,0.0,1018.389549,0.0,90.11666667,11.85666667,0.145916667,237.8947319333333 -2016-09-24 20:00:00,0.0,1018.260368,0.0,96.28333333,9.835833333,0.09908333300000001,237.89577756666665 -2016-09-24 21:00:00,0.0,1018.031257,0.0,98.975,8.422333333,0.037333332999999996,237.8960006 -2016-09-24 22:00:00,0.0,1017.93116,0.0,99.99166667,7.54625,0.023333332999999998,237.8960370166666 -2016-09-24 23:00:00,0.0,1017.641576,0.0,100.0,6.927333332999999,0.025666667,237.89599905000003 -2016-09-25 00:00:00,0.0,1017.2915830000001,0.0,100.0,6.339833333,0.05075,237.89576178333337 -2016-09-25 01:00:00,0.0,1017.122875,0.0,100.0,5.858,0.058416667,237.89787513333337 -2016-09-25 02:00:00,0.0,1016.8707009999999,0.0,100.0,5.59475,0.05175,237.89905841666666 -2016-09-25 03:00:00,0.0,1016.552042,0.0,100.0,5.316333333,0.060583332999999996,237.8997955666667 -2016-09-25 04:00:00,0.0,1016.377,0.0,100.0,5.3405,0.11308333300000001,237.90062604999994 -2016-09-25 05:00:00,0.0,1016.0979169999999,0.0,100.0,5.006666667,0.056833333,237.90295771666663 -2016-09-25 06:00:00,0.0,1016.149993,5.7969166670000005,100.0,4.543666667,0.035833332999999995,237.90224746666664 -2016-09-25 07:00:00,0.0,1016.2375900000001,24.4775,100.0,7.302916667000001,0.011833333,237.90370594999993 -2016-09-25 08:00:00,0.0,1016.352042,118.27916670000002,100.0,10.93583333,0.254583333,237.90058810000002 -2016-09-25 09:00:00,0.0,1016.210333,301.3,91.65833333,15.55416667,0.882583333,237.8999679833333 -2016-09-25 10:00:00,0.0,1015.829035,383.5666667,75.88916667,18.76833333,1.82175,237.8990726333333 -2016-09-25 11:00:00,0.0,1015.3478259999999,436.925,64.77083333,20.92583333,2.085,237.89881161666665 -2016-09-25 12:00:00,0.0,1014.860201,452.41666669999995,59.50833333,22.1575,2.2785833330000003,237.89655743333333 -2016-09-25 13:00:00,0.0,1014.28325,435.75,54.82416667,23.61916667,2.195,237.89419571666667 -2016-09-25 14:00:00,0.0,1014.024924,382.9166667,47.70166667,24.97833333,2.68375,237.88991195000003 -2016-09-25 15:00:00,0.0,1014.083368,299.3833333,48.8775,25.6275,0.93575,237.88881415000003 -2016-09-25 16:00:00,0.0,1013.970833,173.7741667,52.0425,24.1975,0.8656666670000001,237.88871128333332 -2016-09-25 17:00:00,0.0,1014.216799,22.3475,62.38416667,22.52083333,1.2575,237.8870851833333 -2016-09-25 18:00:00,0.0,1014.525083,2.260166667,84.08583333,17.79583333,0.225583333,237.8869411833334 -2016-09-25 19:00:00,0.0,1014.993833,0.0,94.9,14.59416667,0.123666667,237.88679406666665 -2016-09-25 20:00:00,0.0,1015.173049,0.0,98.05833333,13.7375,0.18383333300000002,237.88859113333334 -2016-09-25 21:00:00,0.0,1015.618882,0.0,98.11666667,12.9825,0.40375,237.88875243333334 -2016-09-25 22:00:00,0.0,1016.346,0.0,95.675,13.1125,0.3635,237.88748221666665 -2016-09-25 23:00:00,0.0,1016.89184,0.0,90.975,13.63,0.26666666699999997,237.88733508333334 -2016-09-26 00:00:00,0.0,1017.4959240000001,0.0,91.725,15.1025,0.56425,237.88513628333337 -2016-09-26 01:00:00,0.0,1017.610458,0.0,99.38333333,14.52416667,0.35775,237.88881574999996 -2016-09-26 02:00:00,0.0,1017.716674,0.0,97.275,14.11666667,0.302916667,237.88827790000002 -2016-09-26 03:00:00,0.0,1018.231375,0.0,91.58333333,14.03333333,0.97925,237.88782389999997 -2016-09-26 04:00:00,0.0,1018.470958,0.0,91.14166667,14.55416667,1.085583333,237.88976168333332 -2016-09-26 05:00:00,0.0,1018.647958,0.0,91.00833333,14.56583333,0.982916667,237.8904609 -2016-09-26 06:00:00,0.0,1018.841715,4.477416667,91.41666667,14.17833333,0.30141666699999997,237.8909655 -2016-09-26 07:00:00,0.0,1018.883333,56.78583333,90.25,14.7125,0.365,237.89220408333335 -2016-09-26 08:00:00,0.0,1019.073049,90.15916667,87.88333333,15.99083333,0.966833333,237.8935439666666 -2016-09-26 09:00:00,0.0,1019.5979580000001,154.41666669999998,84.70833333,15.96833333,0.732833333,237.8925315833333 -2016-09-26 10:00:00,0.0,1019.6375,232.375,80.03,17.1075,1.03225,237.8922943 -2016-09-26 11:00:00,0.0,1019.299861,213.075,77.7725,17.75083333,1.592583333,237.8918893166667 -2016-09-26 12:00:00,0.0,1019.0791320000001,296.0666667,72.54083333,19.02166667,1.853833333,237.88885371666666 -2016-09-26 13:00:00,0.0,1018.7895,128.2083333,72.945,18.8425,1.229583333,237.88816715 -2016-09-26 14:00:00,0.0,1018.6145,99.7575,73.98,18.8525,1.147333333,237.88708675 -2016-09-26 15:00:00,0.0,1018.522917,77.88916667,74.61083333,18.6675,0.84025,237.88599368333334 -2016-09-26 16:00:00,0.0,1018.352083,96.55083333,74.36666667,18.83333333,1.8149166669999999,237.8846490666667 -2016-09-26 17:00:00,0.0,1018.445833,28.14541667,79.82916667,18.11166667,1.600416667,237.8854748166667 -2016-09-26 18:00:00,0.0,1018.6292080000001,0.9740833329999999,90.225,14.39553037,0.225583333,237.88675453333335 -2016-09-26 19:00:00,0.0,1018.8835,0.0,96.675,12.06633548,0.123666667,237.88643975 -2016-09-26 20:00:00,0.0,1019.641924,0.0,99.075,11.94634167,0.18383333300000002,237.88618665 -2016-09-26 21:00:00,0.0,1019.8165349999999,0.0,98.63333333,12.83314523,0.40375,237.8866786 -2016-09-26 22:00:00,0.0,1019.620847,0.0,99.375,12.64329201,0.3635,237.88810071666668 -2016-09-26 23:00:00,0.0,1019.481195,0.0,99.78333333,12.69096078,0.26666666699999997,237.88813078333337 -2016-09-27 00:00:00,0.0,1019.283333,0.0,100.0,12.32933561,0.56425,237.89111891666664 -2016-09-27 01:00:00,0.0,1019.6584650000001,0.0,99.99166667,12.8775265,0.35775,237.89136888333329 -2016-09-27 02:00:00,0.0,1020.002125,0.0,99.81666667,13.09614536,0.302916667,237.89091015 -2016-09-27 03:00:00,0.0,1020.135382,0.0,99.51666667,13.36161111,0.97925,237.8923212 -2016-09-27 04:00:00,0.0,1020.010583,0.0,99.99166667,13.15696414,1.085583333,237.89442823333331 -2016-09-27 05:00:00,0.0,1020.654257,0.0,100.0,13.1413485,0.982916667,237.89506414999997 -2016-09-27 06:00:00,0.0,1020.98966,2.224166667,100.0,12.09263549,0.30141666699999997,237.89701618333333 -2016-09-27 07:00:00,0.0,1021.287681,25.72491667,100.0,11.08830375,0.365,237.89951713333332 -2016-09-27 08:00:00,0.0,1022.062708,51.81166667,100.0,12.77479207,0.966833333,237.89806496666668 -2016-09-27 09:00:00,0.0,1022.387424,252.5333333,94.85833333,15.93805433,0.49475,237.8982010333333 -2016-09-27 10:00:00,0.0,1022.550083,306.9916667,82.515,17.57833333,1.2640833329999999,237.89631383333335 -2016-09-27 11:00:00,0.0,1022.654167,361.28333330000004,77.33166667,18.805,1.0975,237.89648784999997 -2016-09-27 12:00:00,0.0,1022.724958,280.525,74.49416667,20.42333333,0.9005,237.89659226666666 -2016-09-27 13:00:00,0.0,1022.572875,292.0925,65.06916667,20.79333333,0.604666667,237.89556241666665 -2016-09-27 14:00:00,0.0,1022.352083,210.30833330000002,62.61166667,21.80416667,0.672583333,237.89426216666666 -2016-09-27 15:00:00,0.0,1022.233292,148.94916669999998,64.83083333,21.46,1.045916667,237.89311371666665 -2016-09-27 16:00:00,0.0,1022.229167,87.82083333,70.9475,20.51166667,0.511333333,237.89263438333333 -2016-09-27 17:00:00,0.0,1022.2605,21.7925,83.80166667,18.68166667,0.21616666699999998,237.8931675 -2016-09-27 18:00:00,0.0,1022.662625,1.473416667,92.04166667,15.17666667,0.44525,237.8929286 -2016-09-27 19:00:00,0.0,1023.083382,0.0,96.61666667,12.83083333,0.16699999999999998,237.89245403333334 -2016-09-27 20:00:00,0.0,1023.179292,0.0,99.73333333,11.02583333,0.11841666699999999,237.89433331666666 -2016-09-27 21:00:00,0.0,1023.408257,0.0,100.0,10.00083333,0.152416667,237.89317538333333 -2016-09-27 22:00:00,0.0,1023.37091,0.0,100.0,9.454166667,0.19375,237.89316433333332 -2016-09-27 23:00:00,0.0,1023.3936669999999,0.0,100.0,8.733333333,0.132333333,237.89278308333334 -2016-09-28 00:00:00,0.0,1023.1375419999999,0.0,100.0,8.479166667000001,0.24775,237.8923338 -2016-09-28 01:00:00,0.0,1023.1915759999999,0.0,100.0,8.569416667,0.08841666699999999,237.89401693333332 -2016-09-28 02:00:00,0.0,1022.87075,0.0,100.0,7.61625,0.033916667000000005,237.89647360000004 -2016-09-28 03:00:00,0.0,1022.82709,0.0,100.0,8.049333333,0.050333333,237.89690546666668 -2016-09-28 04:00:00,0.0,1022.943826,0.0,100.0,7.620833332999999,0.042833333,237.89731358333336 -2016-09-28 05:00:00,0.0,1022.7769509999999,0.0,100.0,6.955583333,0.12558333300000002,237.89958514999998 -2016-09-28 06:00:00,0.0,1022.0936740000001,2.279,100.0,6.5535,0.287416667,237.90139008333335 -2016-09-28 07:00:00,0.0,1022.498007,17.31283333,100.0,8.05,0.233333333,237.9007715666667 -2016-09-28 08:00:00,0.0,1022.862535,99.1475,86.02,11.48,0.285,237.89955668333334 -2016-09-28 09:00:00,0.0,1023.256465,268.575,63.53833333,16.9425,0.666166667,237.89797636666665 -2016-09-28 10:00:00,0.0,1023.179042,282.775,58.845,19.10916667,1.3748333330000002,237.89716805 -2016-09-28 11:00:00,0.0,1022.874951,162.08333330000002,59.15833333,19.83416667,1.052083333,237.8960370166667 -2016-09-28 12:00:00,0.0,1022.558243,237.70833330000002,61.68833333,20.52916667,1.241083333,237.89336361666665 -2016-09-28 13:00:00,0.0,1022.187292,228.075,66.9125,20.365,1.73025,237.8915571166667 -2016-09-28 14:00:00,0.0,1021.7624099999999,251.3416667,68.78666667,20.3625,1.6626666669999999,237.88988510000001 -2016-09-28 15:00:00,0.0,1021.3395830000001,194.675,67.0275,20.515,1.81575,237.88770524999998 -2016-09-28 16:00:00,0.0,1021.435417,81.2675,67.8625,20.00166667,0.880083333,237.88523911666664 -2016-09-28 17:00:00,0.0,1021.404215,15.78883333,69.8925,19.33166667,1.058916667,237.88278876666664 -2016-09-28 18:00:00,0.0,1021.533368,1.6359166669999998,74.30166667,17.5275,0.626916667,237.88132868333332 -2016-09-28 19:00:00,0.0,1021.589465,0.0,78.045,16.24333333,0.196833333,237.88195669999996 -2016-09-28 20:00:00,0.0,1021.408333,0.0,79.83666667,15.80166667,0.134666667,237.88252775 -2016-09-28 21:00:00,0.0,1021.1791529999999,0.0,81.28333333,15.355,0.164583333,237.8814078 -2016-09-28 22:00:00,0.0,1020.91025,0.0,82.43333333,14.62916667,0.12841666699999998,237.88019765 -2016-09-28 23:00:00,0.0,1020.677083,0.0,85.5,13.81666667,0.145666667,237.8783658333333 -2016-09-29 00:00:00,0.0,1020.504083,0.0,92.39166667,11.95333333,0.236416667,237.87933709999996 -2016-09-29 01:00:00,0.0,1020.218708,0.0,91.84166667,10.85833333,0.08508333300000001,237.8797468 -2016-09-29 02:00:00,0.0,1019.8789929999999,0.0,99.15833333,10.10833333,0.168666667,237.8805251 -2016-09-29 03:00:00,0.0,1019.376993,0.0,100.0,9.8175,0.292083333,237.88263533333335 -2016-09-29 04:00:00,0.0,1018.951875,0.0,100.0,9.530833333,0.298083333,237.88337091666665 -2016-09-29 05:00:00,0.0,1018.4124099999999,0.0,100.0,9.87,0.07983333299999999,237.88435958333332 -2016-09-29 06:00:00,0.0,1017.92275,5.28525,100.0,10.15083333,0.06275,237.8847692666667 -2016-09-29 07:00:00,0.0,1017.4811109999999,27.48333333,100.0,12.09666667,0.43041666700000003,237.88688900000002 -2016-09-29 08:00:00,0.0,1017.206292,75.99583333,95.10833333,15.84833333,1.722166667,237.88564885000002 -2016-09-29 09:00:00,0.0,1016.858208,149.85,82.68333333,18.99083333,1.3645833330000001,237.88571841666666 -2016-09-29 10:00:00,0.0,1016.185118,241.5083333,78.41916667,19.78666667,2.492833333,237.88590193333334 -2016-09-29 11:00:00,0.0,1015.2788609999999,392.65,72.45416667,21.44333333,1.7365,237.88540203333332 -2016-09-29 12:00:00,0.0,1014.187243,434.70833330000005,64.8,22.5125,2.093916667,237.88285996666664 -2016-09-29 13:00:00,0.0,1013.164278,411.3083333,59.00083333,23.90416667,2.8136666669999997,237.87898436666669 -2016-09-29 14:00:00,0.0,1012.374868,350.175,52.09166667,25.48583333,2.367,237.87579214999997 -2016-09-29 15:00:00,0.0,1011.63725,282.3333333,52.26583333,25.46333333,1.6153333330000001,237.87428935 -2016-09-29 16:00:00,0.0,1010.8331949999999,157.055,52.48416667,24.435,1.663583333,237.87327693333336 -2016-09-29 17:00:00,0.0,1010.602083,17.95425,55.9275,23.18166667,0.92175,237.87108765000002 -2016-09-29 18:00:00,0.0,1010.866667,1.168,59.27,21.54916667,0.6609166670000001,237.87001671666667 -2016-09-29 19:00:00,0.0,1010.8959169999999,0.0,63.93583333,19.57166667,0.237333333,237.87013060000004 -2016-09-29 20:00:00,0.0,1010.991583,0.0,69.51416667,18.93666667,0.37,237.86905650000003 -2016-09-29 21:00:00,0.0,1010.789667,0.0,72.095,19.06083333,1.082083333,237.87017331666667 -2016-09-29 22:00:00,0.0,1011.2229169999999,0.0,76.5225,17.97333333,0.474416667,237.86835254999997 -2016-09-29 23:00:00,0.0,1010.983292,0.0,78.70666667,17.10666667,0.255333333,237.86823865 -2016-09-30 00:00:00,0.0,1010.6353330000001,0.0,81.28333333,15.21083333,0.09883333300000001,237.86673741666667 -2016-09-30 01:00:00,0.0,1010.470833,0.0,84.64166667,13.63083333,0.059333332999999995,237.86677701666667 -2016-09-30 02:00:00,0.0,1010.585417,0.0,84.60833333,14.37666667,0.52175,237.8670902166667 -2016-09-30 03:00:00,0.0,1010.431208,0.0,81.22333333,15.57916667,1.57975,237.86697475000003 -2016-09-30 04:00:00,0.0,1010.356243,0.0,82.25333333,14.89666667,0.14975,237.8675015 -2016-09-30 05:00:00,0.0,1010.429215,0.0,87.61666667,14.19416667,0.033,237.86946303333332 -2016-09-30 06:00:00,0.0,1010.6375419999999,0.751416667,87.78333333,13.94916667,0.273833333,237.87044065 -2016-09-30 07:00:00,0.0,1010.812542,11.50083333,87.04166667,14.46,0.31175,237.87001828333337 -2016-09-30 08:00:00,0.0,1010.931292,55.11916667,84.79166667,15.505,0.490333333,237.87093260000003 -2016-09-30 09:00:00,0.0,1011.318924,77.71416667,84.61666667,16.61166667,0.623083333,237.8692384 -2016-09-30 10:00:00,0.0,1011.462458,64.83083333,86.075,16.20083333,0.98575,237.87059563333332 -2016-09-30 11:00:00,0.0,1011.487507,43.92333333,85.44166667,15.8925,0.57525,237.87146886666665 -2016-09-30 12:00:00,31.54512641,1011.5937849999999,51.91416667,88.95833333,13.75416667,0.81,237.87427351666668 -2016-09-30 13:00:00,0.0,1011.55625,65.91666667,88.95833333,13.305,0.57825,237.87536818333334 -2016-09-30 14:00:00,0.0,1011.641708,136.1741667,88.45833333,14.27666667,0.7011666670000001,237.87322314999997 -2016-09-30 15:00:00,0.0,1011.593708,107.36666670000001,85.00833333,15.32416667,0.413,237.87301119999998 -2016-09-30 16:00:00,0.0,1011.45191,65.18916667,84.93333333,15.22416667,0.17575,237.87346993333327 -2016-09-30 17:00:00,0.0,1011.122917,25.648000000000003,91.53333333,14.1125,0.36466666700000006,237.87725693333337 -2016-09-30 18:00:00,0.0,1011.2834650000001,1.012666667,98.99166667,12.2325,0.420333333,237.8796376833333 -2016-09-30 19:00:00,0.0,1011.397958,0.0,100.0,10.86583333,0.294166667,237.88037958333337 -2016-09-30 20:00:00,0.0,1011.577042,0.0,100.0,10.575,0.239833333,237.88116891666667 -2016-09-30 21:00:00,0.0,1011.27075,0.0,100.0,9.946666667,0.149,237.88345156666662 -2016-09-30 22:00:00,0.0,1010.928993,0.0,100.0,9.7775,0.091666667,237.88508248333332 -2016-09-30 23:00:00,0.0,1010.3873679999999,0.0,100.0,9.753333332999999,0.08008333299999999,237.88528498333335 -2016-01-10 00:00:00,0.0,1009.974917,0.0,100.0,9.905833333,0.026166667,238.05554444999999 -2016-01-10 01:00:00,2.465991576,1009.491535,0.0,100.0,10.3275,0.15833333300000002,238.0535759833333 -2016-01-10 02:00:00,4.818466368,1008.8706179999999,0.0,100.0,10.7925,0.029666667,238.0546497 -2016-01-10 03:00:00,12.12324367,1008.170576,0.0,100.0,11.24166667,0.15425,238.0526811833333 -2016-01-10 04:00:00,5.272049664,1007.2477359999999,0.0,100.0,11.58916667,0.9690000000000001,238.05286016666665 -2016-01-10 05:00:00,2.541367944,1006.726917,0.0,100.0,11.62666667,0.48558333299999995,238.05142849999996 -2016-01-10 06:00:00,2.628730488,1006.341708,0.409083333,100.0,11.6675,0.3205,238.05035479999995 -2016-01-10 07:00:00,5.077936296,1006.181118,10.74475,100.0,11.38166667,0.584833333,238.05160746666664 -2016-01-10 08:00:00,2.512983072,1005.7999580000001,38.19666667,100.0,11.70833333,0.53,238.05303909999998 -2016-01-10 09:00:00,17.62021222,1005.6749580000001,75.29666667,100.0,12.68833333,0.552083333,238.0507127 -2016-01-10 10:00:00,32.01011818,1005.5915349999999,87.265,100.0,13.99333333,0.35916666700000005,238.04963899999996 -2016-01-10 11:00:00,35.64124555,1005.212458,79.73166667,100.0,14.85666667,1.4525,238.04749155 -2016-01-10 12:00:00,8.597475072,1004.976993,111.49166670000001,100.0,15.6425,1.7271666669999999,238.04767049999998 -2016-01-10 13:00:00,0.0,1004.574833,96.96166667,97.11666667,16.19083333,1.4929166669999998,238.0469546833333 -2016-01-10 14:00:00,16.36053667,1004.325,69.025,95.91666667,16.48333333,1.1195,238.0458809666667 -2016-01-10 15:00:00,32.19154598,1004.272958,54.53666667,97.98333333,16.1725,1.17975,238.0492810833333 -2016-01-10 16:00:00,8.695893936000001,1004.400083,44.40833333,98.16666667,15.48583333,0.8005,238.05017584999996 -2016-01-10 17:00:00,0.0,1004.8480900000001,43.37583333,98.08333333,15.26333333,0.400583333,238.04946004999996 -2016-01-10 18:00:00,0.0,1005.658549,2.072833333,99.66666667,14.28916667,0.256083333,238.04910213333332 -2016-01-10 19:00:00,0.0,1006.0875,0.0,98.61666667,13.8,0.8585,238.05017584999996 -2016-01-10 20:00:00,0.0,1006.302174,0.0,97.575,14.1925,1.712833333,238.05375491666666 -2016-01-10 21:00:00,0.0,1006.612583,0.0,96.35,13.42,0.69075,238.05769188333338 -2016-01-10 22:00:00,0.0,1007.033507,0.0,96.11666667,13.05,0.862,238.05697606666664 -2016-01-10 23:00:00,0.0,1007.224958,0.0,96.2,12.26166667,0.43641666700000004,238.05912351666666 -2016-02-10 00:00:00,0.0,1007.25009,0.0,95.23333333,12.31083333,0.747083333,238.20854955000001 -2016-02-10 01:00:00,0.0,1007.376993,0.0,95.03333333,13.1175,2.113,238.20819163333329 -2016-02-10 02:00:00,2.900759064,1007.402125,0.0,94.34166667,13.255,1.536083333,238.20604419999995 -2016-02-10 03:00:00,0.0,1007.110285,0.0,95.36666667,12.91416667,1.0405,238.20425468333335 -2016-02-10 04:00:00,2.903553072,1007.004083,0.0,96.66666667,12.90833333,1.5723333330000002,238.20282301666668 -2016-02-10 05:00:00,0.0,1006.818924,0.0,99.25,12.18583333,1.114333333,238.20246511666667 -2016-02-10 06:00:00,0.0,1007.414708,2.20925,97.51666667,11.71,1.53125,238.1994229333333 -2016-02-10 07:00:00,0.0,1007.70009,18.43416667,96.86666667,12.03833333,1.98875,238.1956649 -2016-02-10 08:00:00,0.0,1008.4022570000001,77.86166667,93.325,12.7675,2.17575,238.19405435 -2016-02-10 09:00:00,0.0,1009.046049,296.40833330000004,82.62583333,14.14916667,1.851,238.19208585 -2016-02-10 10:00:00,0.0,1009.195833,356.84166669999996,73.82916667,15.0125,1.93825,238.19065420000004 -2016-02-10 11:00:00,0.0,1009.247826,378.85,67.19583333,15.58416667,2.3403333330000002,238.1902963166667 -2016-02-10 12:00:00,4.2742583519999995,1009.222924,196.8825,67.93333333,15.3425,3.340166667,238.18904365000003 -2016-02-10 13:00:00,0.0,1009.072917,132.3216667,77.48,13.865,2.332166667,238.18886469999998 -2016-02-10 14:00:00,18.81948264,1009.350132,166.0341667,85.60083333,13.61583333,1.373833333,238.18832783333335 -2016-02-10 15:00:00,0.0,1009.327076,126.825,87.71666667,13.26333333,1.9921666669999998,238.18886468333335 -2016-02-10 16:00:00,0.0,1009.375,97.48,85.025,13.05083333,1.690333333,238.18814888333335 -2016-02-10 17:00:00,0.0,1009.566757,19.13408333,87.575,12.52583333,1.745,238.18850678333334 -2016-02-10 18:00:00,0.0,1010.116882,0.810666667,89.01666667,11.49666667,1.16975,238.18689618333335 -2016-02-10 19:00:00,0.0,1010.843924,0.0,89.05,11.46916667,1.1285,238.18671721666666 -2016-02-10 20:00:00,0.0,1011.372958,0.0,94.35,11.34333333,1.214916667,238.18761199999997 -2016-02-10 21:00:00,5.041768032,1011.681458,0.0,97.725,11.0375,0.563333333,238.18904363333334 -2016-02-10 22:00:00,5.090170776,1012.3668470000001,0.0,98.63333333,11.25083333,0.7535,238.18868575 -2016-02-10 23:00:00,0.0,1012.958507,0.0,97.81666667,11.54333333,1.2045,238.18850676666668 -2016-03-10 00:00:00,0.0,1013.504292,0.0,96.33333333,11.34,1.106416667,238.20920414999998 -2016-03-10 01:00:00,0.0,1013.9876320000001,0.0,94.03333333,11.53833333,1.314333333,238.20815931666667 -2016-03-10 02:00:00,0.0,1014.531382,0.0,95.10833333,11.43,1.12525,238.20795036666667 -2016-03-10 03:00:00,0.0,1015.143924,0.0,98.25,11.10166667,0.577416667,238.20836831666668 -2016-03-10 04:00:00,0.0,1015.687625,0.0,97.69166667,11.20666667,0.594916667,238.20815935 -2016-03-10 05:00:00,0.0,1016.287722,0.0,98.24166667,11.16916667,0.426416667,238.20523388333334 -2016-03-10 06:00:00,2.4884729759999997,1017.0127150000001,3.015916667,99.09166667,11.09833333,0.288333333,238.20502495000002 -2016-03-10 07:00:00,0.0,1017.764799,21.03916667,99.25,11.3175,0.48858333299999995,238.20523390000002 -2016-03-10 08:00:00,0.0,1018.4210419999999,66.185,99.0,12.03833333,0.38391666700000004,238.20272635 -2016-03-10 09:00:00,0.0,1019.114764,100.0958333,96.33333333,12.8775,0.41725,238.19792021666663 -2016-03-10 10:00:00,0.0,1019.679215,120.87,93.44166667,13.47583333,0.797333333,238.19603956666666 -2016-03-10 11:00:00,0.0,1019.966743,186.8733333,90.85833333,14.89583333,0.773416667,238.1947858 -2016-03-10 12:00:00,0.0,1020.266757,122.77166670000001,91.25833333,14.47833333,0.731666667,238.19394995000002 -2016-03-10 13:00:00,0.0,1020.508368,214.725,85.41166667,14.9025,0.933666667,238.19039758333335 -2016-03-10 14:00:00,0.0,1020.495757,253.94666669999998,78.59916667,16.10166667,1.11775,238.19081555000002 -2016-03-10 15:00:00,0.0,1020.573,179.83833330000002,81.53166667,16.00833333,1.199416667,238.1933230666667 -2016-03-10 16:00:00,81.12083630000001,1020.770924,100.6141667,86.64166667,13.245,0.775,238.19415891666665 -2016-03-10 17:00:00,0.0,1021.2377220000001,13.59983333,89.18333333,12.41916667,0.889416667,238.1931141 -2016-03-10 18:00:00,0.0,1022.062715,0.79425,98.21666667,9.798333332999999,0.146583333,238.19186033333335 -2016-03-10 19:00:00,0.0,1022.818958,0.0,100.0,9.541666667000001,0.15841666699999998,238.19353203333333 -2016-03-10 20:00:00,0.0,1023.398049,0.0,100.0,9.286666667,0.08666666699999999,238.19311411666664 -2016-03-10 21:00:00,0.0,1023.7625830000001,0.0,100.0,7.961916667000001,0.136916667,238.1933230666667 -2016-03-10 22:00:00,0.0,1024.18975,0.0,100.0,6.96675,0.18358333300000002,238.1931141166667 -2016-03-10 23:00:00,0.0,1024.5687990000001,0.0,100.0,6.635,0.058666667,238.19394996666665 -2016-04-10 00:00:00,2.4050227680000003,1024.858424,0.0,100.0,5.968916667,0.094666667,238.215473 -2016-04-10 01:00:00,0.0,1025.016674,0.0,100.0,5.296,0.0705,238.21463713333333 -2016-04-10 02:00:00,0.0,1024.91875,0.0,100.0,4.852083333,0.037666667,238.2135923333333 -2016-04-10 03:00:00,0.0,1025.154201,0.0,100.0,4.5545,0.003416667,238.21338336666665 -2016-04-10 04:00:00,0.0,1025.385542,0.0,100.0,5.18625,0.067166667,238.2131744333333 -2016-04-10 05:00:00,0.0,1025.714667,0.0,100.0,6.531333332999999,0.13675,238.21338335 -2016-04-10 06:00:00,0.0,1026.127208,0.650833333,100.0,7.273333332999999,0.0215,238.2133833833333 -2016-04-10 07:00:00,0.0,1026.6084720000001,12.4465,100.0,8.376583333,0.053416667,238.21108481666667 -2016-04-10 08:00:00,0.0,1026.989708,27.0075,100.0,10.1,0.17925,238.20753246666663 -2016-04-10 09:00:00,0.0,1027.295806,56.56083333,100.0,11.8675,1.901083333,238.20565181666666 -2016-04-10 10:00:00,0.0,1027.479368,107.275,95.00833333,13.38583333,3.926583333,238.20481598333333 -2016-04-10 11:00:00,0.0,1027.693667,103.095,84.71666667,13.90083333,4.2335,238.20314426666673 -2016-04-10 12:00:00,0.0,1027.845882,96.41,82.39166667,13.68833333,4.0904166669999995,238.20251736666668 -2016-04-10 13:00:00,0.0,1027.764535,260.3666667,75.4475,14.28666667,3.731833333,238.20084568333337 -2016-04-10 14:00:00,0.0,1027.589549,306.9,66.08,15.23083333,4.129,238.2046070166667 -2016-04-10 15:00:00,0.0,1027.552035,183.2641667,64.15583333,15.0675,3.909583333,238.20481596666664 -2016-04-10 16:00:00,0.0,1027.4813470000001,100.53,65.30916667,14.8125,3.99975,238.20230843333334 -2016-04-10 17:00:00,0.0,1027.8334439999999,18.26225,68.87666667,13.5625,2.3803333330000003,238.20356221666668 -2016-04-10 18:00:00,0.0,1028.133382,0.646416667,84.86666667,10.16083333,0.37791666700000004,238.20356218333333 -2016-04-10 19:00:00,0.0,1028.38759,0.0,95.54166667,7.316166667,0.22575,238.20481598333333 -2016-04-10 20:00:00,0.0,1028.7875900000001,0.0,98.74166667,5.999416667,0.302583333,238.20565181666666 -2016-04-10 21:00:00,0.0,1028.918785,0.0,99.96666667,4.9021666669999995,0.243166667,238.20690560000003 -2016-04-10 22:00:00,0.0,1029.131208,0.0,100.0,4.05225,0.2095,238.20544286666666 -2016-04-10 23:00:00,0.0,1028.9582990000001,0.0,100.0,3.48575,0.069416667,238.2048159666667 -2016-05-10 00:00:00,0.0,1028.950076,0.0,100.0,3.135,0.15325,238.09567726666668 -2016-05-10 01:00:00,0.0,1028.849917,0.0,100.0,3.3975,0.30675,238.09601518333332 -2016-05-10 02:00:00,0.0,1028.52075,0.0,100.0,5.148666667,0.45325,238.09652208333333 -2016-05-10 03:00:00,0.0,1028.1998609999998,0.0,100.0,5.42275,1.3219999999999998,238.09533933333333 -2016-05-10 04:00:00,0.0,1027.877,0.0,100.0,7.04525,2.29475,238.09466346666667 -2016-05-10 05:00:00,0.0,1027.814597,0.0,100.0,6.095,1.956083333,238.09449451666669 -2016-05-10 06:00:00,0.0,1028.054326,2.102666667,100.0,6.423833332999999,2.888083333,238.09432555 -2016-05-10 07:00:00,0.0,1028.46684,12.3305,97.875,6.598416667,2.4049166669999997,238.0941565666667 -2016-05-10 08:00:00,0.0,1028.883292,47.56833333,91.325,7.71325,3.94575,238.09331178333332 -2016-05-10 09:00:00,0.0,1028.906285,242.1583333,80.6675,8.595833333,4.083333333,238.08874975 -2016-05-10 10:00:00,0.0,1028.835417,212.375,78.49,8.9875,3.8283333330000002,238.08841183333334 -2016-05-10 11:00:00,0.0,1028.612243,281.3166667,72.83166667,10.25083333,4.407666667,238.08537050000004 -2016-05-10 12:00:00,0.0,1027.495535,161.3916667,69.6725,11.17916667,3.988666667,238.08587740000004 -2016-05-10 13:00:00,0.0,1026.7311320000001,270.97833330000003,65.26,11.89083333,4.1435833330000005,238.0824981166667 -2016-05-10 14:00:00,0.0,1026.249854,199.05833330000002,61.19916667,12.15583333,3.4765,238.0797947 -2016-05-10 15:00:00,0.0,1025.6644099999999,137.44666669999998,62.66333333,11.80666667,4.1225,238.08199123333335 -2016-05-10 16:00:00,0.0,1025.120667,112.45416670000002,64.465,11.35083333,3.066166667,238.08384980000002 -2016-05-10 17:00:00,0.0,1024.875042,7.405,70.48666667,10.835,3.400083333,238.08232915000005 -2016-05-10 18:00:00,0.0,1024.674958,0.46566666700000003,76.72833333,9.911666667,2.315416667,238.0836808666667 -2016-05-10 19:00:00,0.0,1024.4540279999999,0.0,80.065,9.578333333,1.1845,238.08503256666668 -2016-05-10 20:00:00,0.0,1023.945708,0.0,89.30833333,7.814416667000001,0.44325,238.08604635000003 -2016-05-10 21:00:00,0.0,1023.547833,0.0,95.35,5.82825,0.345583333,238.08739803333333 -2016-05-10 22:00:00,0.0,1023.178951,0.0,98.95,4.226166667,0.18491666699999998,238.08706013333335 -2016-05-10 23:00:00,0.0,1022.4019099999999,0.0,99.94166667,4.434833333,0.449,238.08722908333334 -2016-06-10 00:00:00,0.0,1021.9145,0.0,100.0,4.9215,0.37508333299999996,238.05867428333337 -2016-06-10 01:00:00,0.0,1021.474826,0.0,100.0,4.7540833330000005,0.439666667,238.05918116666666 -2016-06-10 02:00:00,0.0,1020.947736,0.0,100.0,4.442416667,0.72275,238.0596880666667 -2016-06-10 03:00:00,0.0,1020.25409,0.0,100.0,5.567916667,1.3799166669999998,238.0610397833333 -2016-06-10 04:00:00,0.0,1020.047826,0.0,99.825,6.371333333,1.87075,238.06188458333335 -2016-06-10 05:00:00,0.0,1019.381076,0.0,94.73333333,6.676916667,1.79675,238.06053286666668 -2016-06-10 06:00:00,0.0,1018.9560759999999,1.050666667,94.91666667,6.3835,0.7416666670000001,238.05918118333332 -2016-06-10 07:00:00,0.0,1018.64375,13.48391667,94.35833333,6.958666667,1.53425,238.0576605 -2016-06-10 08:00:00,0.0,1018.529167,29.675,90.51666667,7.757166667000001,2.2745833330000003,238.05749151666666 -2016-06-10 09:00:00,0.0,1018.547792,45.55083333,88.20833333,8.274166667000001,2.5269999999999997,238.0558019166667 -2016-06-10 10:00:00,0.0,1018.09366,116.66916670000002,86.66666667,9.061666667,4.039833333,238.0529295 -2016-06-10 11:00:00,0.0,1017.929167,115.37833329999998,86.24166667,9.365,3.617916667,238.04887440000002 -2016-06-10 12:00:00,0.0,1017.562326,82.825,87.73333333,9.575,3.2939999999999996,238.04667788333333 -2016-06-10 13:00:00,0.0,1017.062375,139.1333333,86.43333333,10.19083333,3.491083333,238.0439744666667 -2016-06-10 14:00:00,0.0,1016.727035,79.82083333,86.50833333,10.6,3.1701666669999997,238.04160898333336 -2016-06-10 15:00:00,0.0,1016.460333,50.215,87.36666667,10.54583333,3.3355,238.04127104999998 -2016-06-10 16:00:00,0.0,1016.2374169999999,7.846416667000001,90.03333333,10.33166667,1.8029166669999999,238.04076415000006 -2016-06-10 17:00:00,0.0,1015.887493,2.03375,92.06666667,10.49083333,2.0710833330000002,238.03941246666668 -2016-06-10 18:00:00,0.0,1015.9937570000001,0.08683333300000001,92.60833333,10.38666667,2.499833333,238.04076418333338 -2016-06-10 19:00:00,0.0,1016.0625,0.0,92.53333333,10.42083333,2.5453333330000003,238.04008833333333 -2016-06-10 20:00:00,0.0,1016.05625,0.0,93.99166667,10.28833333,1.8188333330000002,238.0409331166667 -2016-06-10 21:00:00,0.0,1015.84566,0.0,95.13333333,10.38416667,1.555083333,238.04211585 -2016-06-10 22:00:00,0.0,1015.4521179999999,0.0,94.0,10.61166667,2.148416667,238.04414343333335 -2016-06-10 23:00:00,0.0,1015.37075,0.0,93.99166667,10.69916667,1.9039166669999998,238.0456641166667 -2016-07-10 00:00:00,0.0,1015.2999580000001,0.0,94.71666667,10.7175,1.6200833330000002,238.01094148333334 -2016-07-10 01:00:00,0.0,1015.074958,0.0,95.19166667,10.65166667,1.413416667,238.01233441666668 -2016-07-10 02:00:00,0.0,1014.7686669999999,0.0,96.15,10.62666667,1.332333333,238.01452336666668 -2016-07-10 03:00:00,0.0,1014.618792,0.0,95.85833333,10.74416667,1.969333333,238.01790625 -2016-07-10 04:00:00,0.0,1014.697875,0.0,96.0,10.53833333,1.258,238.0179062666667 -2016-07-10 05:00:00,0.0,1014.566618,0.0,98.36666667,10.10083333,0.343416667,238.0187022166667 -2016-07-10 06:00:00,0.0,1014.525042,0.29600000000000004,99.96666667,10.25666667,0.96225,238.01750826666662 -2016-07-10 07:00:00,0.0,1014.687583,11.00175,99.91666667,10.37583333,1.4958333330000002,238.01870221666664 -2016-07-10 08:00:00,0.0,1014.960424,40.82416667,99.49166667,10.5425,1.771,238.01750825 -2016-07-10 09:00:00,0.0,1015.1063330000001,44.92666667,97.25833333,10.9025,1.406916667,238.0163143 -2016-07-10 10:00:00,0.0,1015.4313400000001,39.47333333,97.975,10.86916667,1.7265,238.01233445 -2016-07-10 11:00:00,5.935647816,1015.672924,91.9425,99.60833333,10.54083333,2.29225,238.01193645 -2016-07-10 12:00:00,0.0,1015.716701,115.1575,98.41666667,10.74833333,2.124833333,238.00636463333333 -2016-07-10 13:00:00,0.0,1015.597868,128.3175,95.575,11.71333333,1.39975,238.00059385 -2016-07-10 14:00:00,0.0,1015.341583,108.05,91.55833333,12.2175,1.83025,237.99661396666667 -2016-07-10 15:00:00,0.0,1015.222875,77.6175,92.11666667,12.25083333,1.305833333,237.99243511666666 -2016-07-10 16:00:00,0.0,1015.15209,56.70416667,94.35833333,12.26416667,0.45233333299999995,237.99283306666666 -2016-07-10 17:00:00,17.45488037,1015.370917,5.4595,98.49166667,10.75,1.41975,237.99223611666665 -2016-07-10 18:00:00,2.488230696,1015.550083,0.150333333,100.0,9.725833332999999,0.320083333,237.9910421666667 -2016-07-10 19:00:00,0.0,1015.66041,0.0,100.0,9.085833333,0.332833333,237.99124114999998 -2016-07-10 20:00:00,0.0,1015.662507,0.0,100.0,6.7430833329999995,0.107583333,237.99124113333335 -2016-07-10 21:00:00,0.0,1015.808375,0.0,100.0,5.343083333,0.131583333,237.99502201666667 -2016-07-10 22:00:00,0.0,1015.991757,0.0,100.0,5.84725,0.1465,237.99820590000002 -2016-07-10 23:00:00,0.0,1016.133333,0.0,100.0,6.532,0.040333333,238.0011908166667 -2016-08-10 00:00:00,0.0,1016.041535,0.0,100.0,6.085916667,0.123583333,237.91880759999995 -2016-08-10 01:00:00,0.0,1015.758424,0.0,100.0,6.026333332999999,0.0245,237.92219045 -2016-08-10 02:00:00,0.0,1015.8415699999999,0.0,100.0,6.3229999999999995,0.052916667,237.92636931666667 -2016-08-10 03:00:00,0.0,1015.702007,0.0,100.0,6.171666667,0.063416667,237.92796126666667 -2016-08-10 04:00:00,0.0,1015.56259,0.0,100.0,6.626166667000001,0.071916667,237.9311451833333 -2016-08-10 05:00:00,7.215068304,1015.820917,0.0,100.0,7.3175,0.015666667,237.93134418333332 -2016-08-10 06:00:00,15.65977457,1016.206417,0.261666667,100.0,7.979666667,2.136083333,237.9325381 -2016-08-10 07:00:00,0.0,1016.779257,16.06,100.0,7.908583332999999,2.242833333,237.9333341 -2016-08-10 08:00:00,0.0,1017.350215,59.55333333,99.925,8.2775,2.477166667,237.93572199999997 -2016-08-10 09:00:00,0.0,1017.7542080000001,109.9025,96.54166667,8.798333332999999,2.62575,237.93810993333332 -2016-08-10 10:00:00,0.0,1018.235507,116.11833329999999,91.88333333,9.380833333,2.51325,237.92780208 -2016-08-10 11:00:00,0.0,1018.433417,268.8166667,86.16416667,10.4475,2.365333333,237.93671699999996 -2016-08-10 12:00:00,0.0,1018.3624169999999,171.6775,80.195,11.1425,2.933333333,237.93492603333334 -2016-08-10 13:00:00,0.0,1018.460507,214.0,76.87166667,11.0825,3.335416667,237.93253811666668 -2016-08-10 14:00:00,0.0,1018.627083,215.15,75.37,11.42583333,1.98275,237.93154316666667 -2016-08-10 15:00:00,0.0,1018.681333,202.4216667,69.205,11.86666667,3.3523333330000002,237.93015019999999 -2016-08-10 16:00:00,0.0,1018.895875,120.25833329999999,74.73416667,10.6575,2.265333333,237.92915523333332 -2016-08-10 17:00:00,0.0,1019.014667,18.61883333,81.84,10.195,1.204583333,237.93273709999997 -2016-08-10 18:00:00,0.0,1019.227132,0.169083333,95.56666667,7.595916667000001,0.35700000000000004,237.93154315 -2016-08-10 19:00:00,0.0,1019.545875,0.0,99.58333333,6.212000000000001,0.107416667,237.93054818333334 -2016-08-10 20:00:00,0.0,1019.750125,0.0,100.0,5.766833332999999,0.130916667,237.93313511666668 -2016-08-10 21:00:00,0.0,1020.2062990000001,0.0,100.0,6.560166667000001,0.198833333,237.93572201666666 -2016-08-10 22:00:00,0.0,1020.162451,0.0,100.0,6.896,0.35100000000000003,237.93751296666665 -2016-08-10 23:00:00,0.0,1019.977042,0.0,100.0,5.895916667000001,0.11841666699999999,237.93990085 -2016-09-10 00:00:00,0.0,1019.954257,0.0,100.0,5.068083333,0.210916667,237.8333424333333 -2016-09-10 01:00:00,0.0,1020.129118,0.0,100.0,5.5628333329999995,0.018916666999999998,237.83530395 -2016-09-10 02:00:00,0.0,1019.8582849999999,0.0,100.0,5.547166667000001,0.063666667,237.83724968333334 -2016-09-10 03:00:00,0.0,1019.733257,0.0,100.0,5.739,0.11483333300000001,237.84183078333334 -2016-09-10 04:00:00,0.0,1019.618708,0.0,100.0,5.978,0.004,237.84158558333334 -2016-09-10 05:00:00,0.0,1019.510417,0.0,100.0,6.046333333,0.046833333,237.84391410000003 -2016-09-10 06:00:00,0.0,1019.560458,0.60375,100.0,6.302083333,0.15691666699999998,237.84637078333333 -2016-09-10 07:00:00,0.0,1019.741792,16.28108333,100.0,6.703583332999999,0.024083333,237.8469877 -2016-09-10 08:00:00,0.0,1019.975049,59.3425,100.0,7.51225,1.057166667,237.84839398333335 -2016-09-10 09:00:00,0.0,1020.1792009999999,81.38833333,96.60833333,7.966583332999999,1.830416667,237.8481092666667 -2016-09-10 10:00:00,0.0,1020.418757,116.61666670000001,92.29166667,8.956666667,1.643666667,237.84526503333333 -2016-09-10 11:00:00,0.0,1020.439542,258.6916667,82.98416667,10.07083333,1.792583333,237.84254738333334 -2016-09-10 12:00:00,0.0,1020.045743,390.95,71.41,12.49333333,0.97,237.83898498333335 -2016-09-10 13:00:00,0.0,1019.643625,317.725,66.57583333,13.44666667,1.067916667,237.83425518333334 -2016-09-10 14:00:00,0.0,1019.3729519999999,78.12666667,71.25,11.885,0.5840833329999999,237.82812063333333 -2016-09-10 15:00:00,0.0,1019.329042,49.38666667,83.12,10.08083333,0.706666667,237.82516093333334 -2016-09-10 16:00:00,0.0,1019.300125,26.77083333,86.49166667,9.631666667000001,1.54675,237.82395398333333 -2016-09-10 17:00:00,0.0,1019.556299,6.448166667000001,85.53333333,9.0875,1.3213333329999999,237.8207032 -2016-09-10 18:00:00,0.0,1019.837542,0.060583332999999996,91.51666667,8.0855,0.16899999999999998,237.81943771666667 -2016-09-10 19:00:00,0.0,1020.070875,0.0,95.7,7.69575,0.055416667,237.81872109999998 -2016-09-10 20:00:00,0.0,1020.137549,0.0,97.84166667,7.209833333,0.06975,237.82009105 -2016-09-10 21:00:00,0.0,1020.420917,0.0,99.55,5.8245,0.15866666699999998,237.8211492833333 -2016-09-10 22:00:00,0.0,1020.539583,0.0,100.0,4.220333333,0.152916667,237.82233889999998 -2016-09-10 23:00:00,0.0,1020.47916,0.0,100.0,2.7695,0.2145,237.8234035 -2016-10-10 00:00:00,0.0,1020.533347,0.0,100.0,1.7775,0.0465,237.96580103333335 -2016-10-10 01:00:00,0.0,1020.564576,0.0,100.0,0.9601666670000001,0.01625,237.96591650000002 -2016-10-10 02:00:00,0.0,1020.5333400000001,0.0,100.0,0.253833333,0.0,237.96619331666668 -2016-10-10 03:00:00,0.0,1020.424861,0.0,100.0,1.264416667,0.009916666999999999,237.9642444333333 -2016-10-10 04:00:00,0.0,1020.072875,0.0,100.0,0.79875,0.019833333,237.9664733 -2016-10-10 05:00:00,0.0,1019.787458,0.0,100.0,0.11275,0.0,237.9685677166667 -2016-10-10 06:00:00,0.0,1019.752125,1.553833333,100.0,0.0915,0.02975,237.9680267 -2016-10-10 07:00:00,0.0,1020.141708,48.16666667,100.0,0.669416667,0.0855,237.96610313333335 -2016-10-10 08:00:00,0.0,1020.0958820000001,87.66666667,100.0,3.532333333,0.35908333299999995,237.9655906 -2016-10-10 09:00:00,0.0,1020.0291179999999,158.075,98.275,4.179916667,0.689333333,237.96454498333333 -2016-10-10 10:00:00,0.0,1020.07709,269.725,90.44166667,6.8805,0.527333333,237.96152046666666 -2016-10-10 11:00:00,0.0,1019.84566,271.475,81.14416667,10.04,0.302083333,237.96228133333332 -2016-10-10 12:00:00,0.0,1019.1227779999999,168.29166669999998,68.98333333,11.37666667,0.564666667,237.96321620000003 -2016-10-10 13:00:00,0.0,1018.5895,219.6,72.4075,11.47666667,0.41525,237.9626514833333 -2016-10-10 14:00:00,0.0,1018.37691,135.025,72.055,10.89916667,0.344083333,237.96097151666666 -2016-10-10 15:00:00,0.0,1017.689417,58.0475,76.99416667,9.9725,0.38341666700000004,237.96292671666666 -2016-10-10 16:00:00,0.0,1017.545833,32.19833333,85.04166667,9.4375,0.0485,237.96283025 -2016-10-10 17:00:00,0.0,1017.368785,8.403083333,95.04166667,8.148416667000001,0.24525,237.96283343333332 -2016-10-10 18:00:00,0.0,1017.472965,0.055416667,97.99166667,7.4935,0.144916667,237.96330796666666 -2016-10-10 19:00:00,0.0,1017.433208,0.0,99.375,7.013166667,0.003166667,237.96331113333335 -2016-10-10 20:00:00,0.0,1017.514625,0.0,99.9,6.660833332999999,0.147416667,237.9643346 -2016-10-10 21:00:00,0.0,1017.414535,0.0,100.0,6.34225,0.146083333,237.96469051666668 -2016-10-10 22:00:00,0.0,1017.225,0.0,100.0,5.9835,0.145583333,237.96457345 -2016-10-10 23:00:00,0.0,1017.122875,0.0,100.0,5.85625,0.1975,237.9650606666667 -2016-11-10 00:00:00,0.0,1017.008243,0.0,100.0,5.512083333,0.034,238.08094594999997 -2016-11-10 01:00:00,0.0,1016.643674,0.0,100.0,5.125083333,0.12633333300000002,238.0862041 -2016-11-10 02:00:00,0.0,1016.422868,0.0,100.0,5.040166667,0.11783333300000001,238.09137053333333 -2016-11-10 03:00:00,0.0,1016.1852849999999,0.0,100.0,5.01025,0.10158333300000001,238.09384458333332 -2016-11-10 04:00:00,0.0,1015.952132,0.0,100.0,4.811333333,0.04,238.09914858333332 -2016-11-10 05:00:00,0.0,1015.883285,0.0,100.0,4.27525,0.066416667,238.10371075 -2016-11-10 06:00:00,0.0,1015.937549,0.676166667,100.0,3.121916667,0.026333332999999997,238.10514710000004 -2016-11-10 07:00:00,0.0,1016.09375,11.6845,100.0,2.0878333330000003,0.123666667,238.10584151666663 -2016-11-10 08:00:00,0.0,1016.285583,58.48166667,100.0,3.97975,1.4085,238.10547929999998 -2016-11-10 09:00:00,0.0,1016.61875,124.30833329999999,100.0,4.653583333,1.045166667,238.1030511 -2016-11-10 10:00:00,0.0,1016.6437080000001,221.7666667,96.53333333,6.215083333,0.40883333299999997,238.10099624999998 -2016-11-10 11:00:00,0.0,1016.5583330000001,185.4666667,90.65,7.881666667,1.6015,238.09834656666666 -2016-11-10 12:00:00,0.0,1016.116493,143.27333330000002,87.24166667,8.5475,2.004916667,238.09519708333335 -2016-11-10 13:00:00,0.0,1015.704083,217.40083330000002,79.14166667,10.14333333,2.1608333330000002,238.09256165 -2016-11-10 14:00:00,0.0,1015.345785,159.0166667,75.275,10.695,2.379333333,238.09138631666667 -2016-11-10 15:00:00,0.0,1015.049833,91.72916667,76.20416667,10.80833333,1.72025,238.0888932833333 -2016-11-10 16:00:00,0.0,1014.810451,31.19858333,78.295,10.74083333,1.475333333,238.08834119999997 -2016-11-10 17:00:00,0.0,1014.835382,3.28675,88.375,9.903333332999999,0.6729999999999999,238.08743005 -2016-11-10 18:00:00,0.0,1014.868792,0.02825,95.14166667,8.711666667000001,0.056833333,238.08408440000002 -2016-11-10 19:00:00,0.0,1015.07925,0.0,97.4,8.301666667000001,0.08433333300000001,238.08346746666666 -2016-11-10 20:00:00,0.0,1015.106167,0.0,99.2,7.96625,0.0965,238.0819488333333 -2016-11-10 21:00:00,0.0,1014.9187919999999,0.0,99.91666667,7.885333332999999,0.11741666699999999,238.08090636666665 -2016-11-10 22:00:00,4.8100455360000005,1014.797792,0.0,100.0,7.6315,0.020666667,238.0797721666667 -2016-11-10 23:00:00,4.8270935999999995,1014.526993,0.0,100.0,7.1735,0.106,238.07568935000003 -2016-12-10 00:00:00,2.4050227680000003,1014.402125,0.0,100.0,7.117916667,0.03775,238.02705135 -2016-12-10 01:00:00,7.347074736000001,1014.3625,0.0,100.0,7.233333332999999,0.12616666699999998,238.02775526666667 -2016-12-10 02:00:00,7.222709256,1014.327042,0.0,100.0,7.268916667,0.020416667,238.03000945 -2016-12-10 03:00:00,2.420878824,1014.045708,0.0,100.0,7.277083332999999,0.070333333,238.03008379999997 -2016-12-10 04:00:00,0.0,1013.847868,0.0,100.0,7.351833332999999,0.026083332999999997,238.030696 -2016-12-10 05:00:00,0.0,1013.795875,0.0,100.0,7.544833333,0.15125,238.03027363333334 -2016-12-10 06:00:00,2.73979092,1013.908333,0.2275,100.0,7.633833332999999,0.886416667,238.03205956666667 -2016-12-10 07:00:00,0.0,1014.0772220000001,11.26325,100.0,7.709416667,1.183416667,238.03139515 -2016-12-10 08:00:00,0.0,1014.746042,20.56833333,100.0,7.781083333,2.3471666669999998,238.03221299999998 -2016-12-10 09:00:00,0.0,1015.216708,63.60666667,99.71666667,7.63875,2.34975,238.03102499999997 -2016-12-10 10:00:00,0.0,1015.389583,123.89166670000002,95.99166667,8.006333332999999,2.834333333,238.02889736666668 -2016-12-10 11:00:00,0.0,1015.431299,126.06666670000001,91.50833333,8.279166667,3.4485,238.02771571666668 -2016-12-10 12:00:00,0.0,1015.31666,134.3916667,89.16666667,8.505833333,3.4940833330000003,238.02851140000004 -2016-12-10 13:00:00,0.0,1015.24784,92.785,87.85,8.505,3.348666667,238.02691846666667 -2016-12-10 14:00:00,0.0,1014.933243,58.97916667,88.89166667,8.424166667,2.73675,238.02813173333334 -2016-12-10 15:00:00,0.0,1014.681208,37.20416667,88.15,8.658333333,2.575333333,238.02868543333332 -2016-12-10 16:00:00,0.0,1014.658375,21.68266667,88.725,8.559166667000001,2.539583333,238.0298655 -2016-12-10 17:00:00,0.0,1014.7687080000001,2.2671666669999997,91.61666667,8.281666667,2.238,238.03082730000003 -2016-12-10 18:00:00,0.0,1014.860542,0.06675,92.95833333,8.078333333,1.9790833330000002,238.03175741666666 -2016-12-10 19:00:00,0.0,1015.0812080000001,0.0,93.94166667,7.955583333,1.491916667,238.0302404 -2016-12-10 20:00:00,0.0,1015.1146669999999,0.0,94.81666667,7.696166667000001,1.507333333,238.02960291666668 -2016-12-10 21:00:00,0.0,1015.1833330000001,0.0,95.74166667,7.692666667,1.877583333,238.02978480000002 -2016-12-10 22:00:00,0.0,1015.20625,0.0,97.09166667,7.099,0.897083333,238.0296962333333 -2016-12-10 23:00:00,0.0,1014.887375,0.0,99.98333333,5.808666667000001,0.132166667,238.03185075 -2016-10-13 00:00:00,0.0,1014.735458,0.0,100.0,4.743916667,0.215166667,237.96763285 -2016-10-13 01:00:00,0.0,1014.9375,0.0,100.0,4.356666667,0.195583333,237.96757903333335 -2016-10-13 02:00:00,0.0,1014.718618,0.0,100.0,3.6085,0.21508333300000002,237.96915776666665 -2016-10-13 03:00:00,0.0,1014.301958,0.0,100.0,2.6806666669999997,0.30425,237.96945198333336 -2016-10-13 04:00:00,0.0,1013.924951,0.0,100.0,1.847,0.028583333,237.97023184999998 -2016-10-13 05:00:00,0.0,1013.9375,0.0,100.0,2.0466666669999998,0.061333333,237.96929221666664 -2016-10-13 06:00:00,0.0,1013.779125,0.852916667,100.0,3.1225,0.0,237.96914508333336 -2016-10-13 07:00:00,0.0,1013.729208,15.59516667,100.0,2.651916667,0.066666667,237.96980631666668 -2016-10-13 08:00:00,0.0,1013.616542,62.41333333,100.0,5.252833333,0.325833333,237.96866261666665 -2016-10-13 09:00:00,0.0,1013.3583679999999,92.3125,94.59166667,8.3725,1.696666667,237.96789545 -2016-10-13 10:00:00,0.0,1013.316542,93.5775,83.5,9.215833332999999,2.24125,237.9671488 -2016-10-13 11:00:00,0.0,1012.78316,92.34833333,81.875,9.394166667,1.8234166669999998,237.96702695000002 -2016-10-13 12:00:00,0.0,1011.901917,118.46666670000002,81.68333333,9.96,2.066166667,237.96728798333334 -2016-10-13 13:00:00,0.0,1011.533201,96.3225,79.79833333,10.2,1.935,237.966603 -2016-10-13 14:00:00,0.0,1011.18116,53.2225,77.53083333,9.960833333,2.249666667,237.96773563333338 -2016-10-13 15:00:00,0.0,1010.3455759999999,49.99583333,77.97666667,10.06583333,2.632583333,237.96769135 -2016-10-13 16:00:00,0.0,1009.9957919999999,32.26916667,80.7975,9.841666667,3.080166667,237.96703645000002 -2016-10-13 17:00:00,0.0,1009.895875,4.3755,85.15,9.429166667,3.420833333,237.96775146666664 -2016-10-13 18:00:00,0.0,1009.760285,0.01175,86.66666667,9.088333333,3.439916667,237.9675268166667 -2016-10-13 19:00:00,0.0,1009.4249580000001,0.0,90.44166667,7.7816666670000005,2.0790833330000003,237.96819911666668 -2016-10-13 20:00:00,0.0,1009.3624169999999,0.0,97.0,6.373666667,0.8201666670000001,237.96979364999996 -2016-10-13 21:00:00,0.0,1009.427125,0.0,100.0,4.4319999999999995,0.170083333,237.96787326666666 -2016-10-13 22:00:00,0.0,1009.002042,0.0,100.0,3.590583333,0.239666667,237.97066526666666 -2016-10-13 23:00:00,0.0,1008.868535,0.0,100.0,2.6460000000000004,0.24983333300000002,237.970061 -2016-10-14 00:00:00,0.0,1008.5979580000001,0.0,100.0,3.2460000000000004,0.173583333,237.96907708333333 -2016-10-14 01:00:00,0.0,1008.31441,0.0,100.0,3.89425,0.08408333300000001,237.9689283833333 -2016-10-14 02:00:00,0.0,1007.368493,0.0,100.0,4.656000000000001,0.167416667,237.96957378333332 -2016-10-14 03:00:00,0.0,1007.1125,0.0,100.0,4.624916667,0.159833333,237.9693207 -2016-10-14 04:00:00,0.0,1006.487278,0.0,99.725,4.361666667,0.37141666700000003,237.97086460000003 -2016-10-14 05:00:00,0.0,1006.129083,0.0,99.325,4.365,0.29575,237.97185326666667 -2016-10-14 06:00:00,0.0,1005.824917,0.642333333,99.16666667,4.067083333,0.442166667,237.97238001666665 -2016-10-14 07:00:00,0.0,1005.787542,32.22758333,98.64166667,4.844333333,0.61575,237.97179631666663 -2016-10-14 08:00:00,0.0,1005.860417,76.97,93.81666667,7.24125,2.66,237.9714103333333 -2016-10-14 09:00:00,0.0,1006.104292,173.4,85.23333333,9.112666667000001,1.75625,237.96589591666665 -2016-10-14 10:00:00,0.0,1005.585201,195.0166667,82.41,9.814166667,1.7635833330000001,237.96572981666668 -2016-10-14 11:00:00,0.0,1005.391583,310.1166667,77.27333333,12.28166667,1.4941666669999998,237.96503223333335 -2016-10-14 12:00:00,0.0,1004.65816,251.9833333,70.91,14.05833333,1.9339166669999999,237.96314186666666 -2016-10-14 13:00:00,0.0,1004.083118,252.3416667,67.42,14.6925,1.8015833330000002,237.96241578333334 -2016-10-14 14:00:00,0.0,1003.5123679999999,106.3675,69.95833333,14.3525,1.187833333,237.96457345 -2016-10-14 15:00:00,0.0,1002.774868,94.51583333,73.51333333,14.64416667,0.876833333,237.96486138333333 -2016-10-14 16:00:00,0.0,1002.576917,27.025,84.86833333,13.9675,1.446083333,237.96437416666666 -2016-10-14 17:00:00,0.0,1001.599868,11.28025,83.88333333,12.94666667,3.384583333,237.9658278833333 -2016-10-14 18:00:00,0.0,1001.687458,0.0,86.59166667,11.68166667,2.297583333,237.96526156666667 -2016-10-14 19:00:00,0.0,1001.7000419999999,0.0,90.35,10.8475,2.274916667,237.96437573333333 -2016-10-14 20:00:00,0.0,1001.5875,0.0,92.76666667,10.2725,1.4555,237.96533751666666 -2016-10-14 21:00:00,0.0,1002.000132,0.0,94.025,10.01916667,0.652833333,237.96456873333332 -2016-10-14 22:00:00,0.0,1002.035368,0.0,97.15833333,9.814166667,0.9863333329999999,237.96509073333334 -2016-10-14 23:00:00,0.0,1001.685375,0.0,97.78333333,8.22475,0.282,237.9667358833333 -2016-10-15 00:00:00,0.0,1002.102125,0.0,99.35833333,6.967166667000001,0.161666667,237.96596868333336 -2016-10-15 01:00:00,0.0,1002.114632,0.0,100.0,6.135916667,0.19266666699999999,237.9673038 -2016-10-15 02:00:00,0.0,1002.35,0.0,100.0,5.846333333,0.13375,237.96780208333334 -2016-10-15 03:00:00,0.0,1002.37309,0.0,100.0,5.79125,0.20475,237.96610156666665 -2016-10-15 04:00:00,0.0,1002.856375,0.0,100.0,6.831333333,1.0375,237.96748411666667 -2016-10-15 05:00:00,0.0,1003.556382,0.0,100.0,6.51625,0.27066666699999997,237.96679918333336 -2016-10-15 06:00:00,0.0,1004.0355900000001,0.125,100.0,5.5765,0.183916667,237.96739076666668 -2016-10-15 07:00:00,0.0,1004.944007,13.36925,100.0,7.0381666670000005,0.29933333300000003,237.9651872333333 -2016-10-15 08:00:00,0.0,1005.846181,61.46333333,98.81666667,10.11833333,1.230166667,237.96260561666668 -2016-10-15 09:00:00,0.0,1006.7689650000001,90.42666667,89.78333333,11.785,1.3713333330000002,237.961261 -2016-10-15 10:00:00,0.0,1007.766965,86.94083333,88.24166667,13.90083333,0.941583333,237.96240628333337 -2016-10-15 11:00:00,0.0,1008.648007,200.41666669999998,84.075,15.24583333,0.901666667,237.96189693333335 -2016-10-15 12:00:00,0.0,1009.079424,148.2416667,79.95916667,15.87916667,0.8985,237.9609573 -2016-10-15 13:00:00,0.0,1009.906424,151.44166669999998,77.41166667,15.39166667,1.144583333,237.96164541666667 -2016-10-15 14:00:00,0.0,1010.4250490000001,90.0325,80.74166667,14.75583333,0.44525,237.9601268 -2016-10-15 15:00:00,0.0,1010.956507,84.44333333,79.9625,14.76583333,0.29725,237.95983575 -2016-10-15 16:00:00,0.0,1011.554299,51.39666667,81.675,14.77583333,0.15275,237.95851961666665 -2016-10-15 17:00:00,0.0,1012.048049,4.377,87.70833333,13.5625,0.21975,237.95823171666666 -2016-10-15 18:00:00,0.0,1012.598125,0.000916667,92.65833333,11.1,0.09825,237.9579549 -2016-10-15 19:00:00,0.0,1013.0875900000001,0.0,99.35,9.124166667,0.21558333300000002,237.95885338333332 -2016-10-15 20:00:00,0.0,1013.8252150000001,0.0,100.0,8.444166667000001,0.21125,237.9579295833333 -2016-10-15 21:00:00,0.0,1014.352215,0.0,100.0,7.875083332999999,0.15416666699999998,237.95903056666666 -2016-10-15 22:00:00,0.0,1014.579208,0.0,100.0,5.857,0.20225,237.95931211666667 -2016-10-15 23:00:00,0.0,1014.939667,0.0,100.0,4.525416667,0.182416667,237.95937701666665 -2016-10-16 00:00:00,0.0,1015.327174,0.0,100.0,3.68075,0.082166667,237.96053808333332 -2016-10-16 01:00:00,0.0,1015.573,0.0,100.0,3.2694166669999998,0.11833333300000001,237.96109175000004 -2016-10-16 02:00:00,0.0,1015.8792080000001,0.0,100.0,3.280916667,0.11125,237.96047165000002 -2016-10-16 03:00:00,0.0,1016.0104650000001,0.0,100.0,4.383083333,0.077333333,237.96083074999999 -2016-10-16 04:00:00,0.0,1016.414799,0.0,100.0,5.0035,0.04275,237.95926943333333 -2016-10-16 05:00:00,0.0,1016.916667,0.0,100.0,5.572916667,0.10641666699999999,237.9593153 -2016-10-16 06:00:00,0.0,1016.975174,0.36558333299999995,100.0,5.998083332999999,0.071,237.95943233333333 -2016-10-16 07:00:00,0.0,1017.485458,14.65491667,100.0,6.4530833329999995,0.142166667,237.95799758333337 -2016-10-16 08:00:00,0.0,1017.8022080000001,51.42916667,100.0,6.882166667000001,0.239333333,237.9596823333333 -2016-10-16 09:00:00,2.5736205119999997,1018.060465,88.78,100.0,7.422333332999999,0.789666667,237.95882651666668 -2016-10-16 10:00:00,0.0,1018.279167,167.1166667,100.0,8.1305,0.83,237.95753570000002 -2016-10-16 11:00:00,0.0,1018.381201,218.2833333,100.0,9.131666667000001,0.5295,237.95697096666666 -2016-10-16 12:00:00,0.0,1018.0582919999999,316.0833333,99.625,10.97333333,0.908666667,237.95883758333332 -2016-10-16 13:00:00,0.0,1017.603993,329.5583333,87.28333333,15.3075,1.121583333,237.95781566666668 -2016-10-16 14:00:00,0.0,1017.28125,280.34166669999996,76.94916667,16.89083333,1.443416667,237.95788846666667 -2016-10-16 15:00:00,0.0,1017.2145830000001,212.2416667,72.80916667,16.82583333,1.3216666670000001,237.95686654999997 -2016-10-16 16:00:00,0.0,1017.114583,99.27333333,76.5325,15.8625,1.4193333330000002,237.95860345000003 -2016-10-16 17:00:00,0.0,1017.064549,5.98275,94.13333333,12.44416667,0.486333333,237.9601331166667 -2016-10-16 18:00:00,0.0,1017.191701,0.0,98.95,9.053583332999999,0.21433333300000001,237.96262145 -2016-10-16 19:00:00,0.0,1017.375049,0.0,100.0,7.2750833329999995,0.227666667,237.96156474999998 -2016-10-16 20:00:00,0.0,1017.5209169999999,0.0,100.0,5.810916667000001,0.142,237.96127683333336 -2016-10-16 21:00:00,0.0,1017.708333,0.0,100.0,5.535083332999999,0.112166667,237.9604226333333 -2016-10-16 22:00:00,0.0,1017.620875,0.0,100.0,4.978583333,0.08608333300000001,237.96151571666667 -2016-10-16 23:00:00,0.0,1017.712375,0.0,100.0,4.5418333330000005,0.005333333000000001,237.9616849666667 -2016-10-17 00:00:00,0.0,1017.545875,0.0,100.0,4.9965,0.031333333,237.96144926666668 -2016-10-17 01:00:00,0.0,1017.7229580000001,0.0,100.0,5.611916667000001,0.122333333,237.9608529 -2016-10-17 02:00:00,0.0,1017.756208,0.0,100.0,6.163083332999999,0.18100000000000002,237.96143659999998 -2016-10-17 03:00:00,0.0,1017.406201,0.0,100.0,5.800083333,0.051666667,237.96221649999998 -2016-10-17 04:00:00,0.0,1017.472965,0.0,100.0,5.5335,0.052083332999999996,237.96190009999998 -2016-10-17 05:00:00,0.0,1017.5354169999999,0.0,100.0,5.557083333,0.21783333300000002,237.96318931666667 -2016-10-17 06:00:00,0.0,1017.366618,0.22699999999999998,100.0,5.584833333,0.073666667,237.96323836666667 -2016-10-17 07:00:00,0.0,1017.623056,12.55966667,100.0,5.96425,0.057666667000000005,237.96368918333337 -2016-10-17 08:00:00,0.0,1018.087625,49.4825,100.0,6.888416667,0.16525,237.96350411666666 -2016-10-17 09:00:00,0.0,1018.4105,114.35916670000002,100.0,7.945583332999999,0.310833333,237.96305803333334 -2016-10-17 10:00:00,0.0,1018.6040830000001,139.8316667,100.0,9.361666667,0.55825,237.96552098333333 -2016-10-17 11:00:00,0.0,1018.39366,115.36666670000001,100.0,10.2525,0.4255,237.96351995 -2016-10-17 12:00:00,0.0,1018.039542,189.44166669999998,100.0,11.88666667,0.434833333,237.96374298333333 -2016-10-17 13:00:00,0.0,1017.939625,195.79166669999998,95.70833333,13.69916667,0.512833333,237.96316241666668 -2016-10-17 14:00:00,0.0,1018.029125,92.72833333,92.79166667,14.25583333,0.910083333,237.96252966666668 -2016-10-17 15:00:00,0.0,1017.679076,29.17666667,89.45833333,13.94583333,0.47583333299999997,237.9642175333333 -2016-10-17 16:00:00,2.41123968,1017.664674,22.19083333,97.44166667,13.37916667,0.567916667,237.96473325 -2016-10-17 17:00:00,2.464641288,1017.952125,2.43475,100.0,12.43333333,0.293166667,237.96503538333334 -2016-10-17 18:00:00,22.16822885,1018.3230070000001,0.0,100.0,11.98166667,0.332083333,237.96529481666667 -2016-10-17 19:00:00,2.498296608,1018.4896669999999,0.0,100.0,11.71,0.261833333,237.96599715000002 -2016-10-17 20:00:00,2.410962288,1018.6208330000001,0.0,100.0,11.31666667,0.108833333,237.96594178333336 -2016-10-17 21:00:00,0.0,1018.672917,0.0,100.0,10.59166667,0.077916667,237.96656504999999 -2016-10-17 22:00:00,2.4050227680000003,1018.522875,0.0,100.0,10.02083333,0.02125,237.9671867333333 -2016-10-17 23:00:00,0.0,1018.475,0.0,100.0,10.59166667,0.33799999999999997,237.96694945 -2016-10-18 00:00:00,0.0,1018.3624580000001,0.0,100.0,10.81416667,0.361833333,237.96580100000003 -2016-10-18 01:00:00,0.0,1018.518833,0.0,100.0,10.69166667,0.3055,237.96670425000002 -2016-10-18 02:00:00,0.0,1018.5415830000001,0.0,100.0,10.64083333,0.11125,237.96769926666664 -2016-10-18 03:00:00,0.0,1018.385417,0.0,100.0,10.435,0.24583333300000001,237.9667105666667 -2016-10-18 04:00:00,0.0,1018.2478679999999,0.0,100.0,11.18166667,0.228166667,237.96702376666667 -2016-10-18 05:00:00,0.0,1018.15209,0.0,100.0,11.02916667,0.02,237.96809154999997 -2016-10-18 06:00:00,0.0,1018.0771179999999,0.10333333300000001,100.0,10.88333333,0.11525,237.96734333333333 -2016-10-18 07:00:00,0.0,1018.200049,7.54525,99.8,10.87583333,0.095416667,237.96859301666666 -2016-10-18 08:00:00,0.0,1018.491715,36.8625,99.575,11.63083333,0.5904166670000001,237.96776253333334 -2016-10-18 09:00:00,0.0,1018.777076,51.57333333,97.2,12.07916667,0.47275,237.9671472 -2016-10-18 10:00:00,0.0,1018.604167,85.105,96.98333333,12.11166667,0.724833333,237.97003253333332 -2016-10-18 11:00:00,0.0,1018.68125,147.6166667,93.74166667,12.67083333,0.49975,237.96913718333334 -2016-10-18 12:00:00,0.0,1018.272708,237.19166669999998,89.78333333,13.3775,0.74875,237.97043275 -2016-10-18 13:00:00,0.0,1017.601951,172.4083333,81.73916667,14.13333333,1.259416667,237.96818488333335 -2016-10-18 14:00:00,0.0,1016.8414449999999,107.31916670000001,76.36083333,13.33583333,1.7815,237.96816433333333 -2016-10-18 15:00:00,0.0,1016.1685349999999,50.44666667,76.58916667,13.65666667,0.7220833329999999,237.9707064 -2016-10-18 16:00:00,0.0,1015.545708,23.52,79.07583333,13.0025,0.804416667,237.97030776666665 -2016-10-18 17:00:00,0.0,1015.118618,2.330166667,82.45833333,12.205,0.89025,237.97073014999998 -2016-10-18 18:00:00,0.0,1014.841493,0.0,82.21666667,11.78583333,0.989833333,237.97033465 -2016-10-18 19:00:00,0.0,1014.427083,0.0,82.775,12.06416667,1.10025,237.96971301666667 -2016-10-18 20:00:00,0.0,1014.108201,0.0,82.075,12.11166667,1.49225,237.97116356666666 -2016-10-18 21:00:00,3.3891395280000003,1013.866625,0.0,88.26666667,11.50583333,2.2454166669999998,237.97008316666665 -2016-10-18 22:00:00,10.31650865,1013.818792,0.0,94.0,10.39916667,1.015,237.96964496666666 -2016-10-18 23:00:00,7.595049096,1013.585382,0.0,96.35,9.424166667,0.285666667,237.96971296666663 -2016-10-19 00:00:00,2.405564424,1013.456201,0.0,94.71666667,8.881666667000001,0.279583333,237.9700689166667 -2016-10-19 01:00:00,0.0,1013.3727849999999,0.0,97.85,7.1245833329999995,0.13575,237.97002936666664 -2016-10-19 02:00:00,0.0,1012.9019999999999,0.0,100.0,5.512166667000001,0.034583333,237.97217911666667 -2016-10-19 03:00:00,0.0,1012.3435279999999,0.0,100.0,3.995583333,0.063916667,237.97321051666668 -2016-10-19 04:00:00,0.0,1012.09384,0.0,97.46666667,4.621333333,0.087,237.97252085000002 -2016-10-19 05:00:00,5.19368592,1011.989542,0.0,96.33333333,7.204666667000001,0.765833333,237.97292105 -2016-10-19 06:00:00,0.0,1011.9874169999999,0.18466666699999998,96.825,6.92875,0.40833333299999997,237.97306343333332 -2016-10-19 07:00:00,0.0,1011.920917,19.119,97.55833333,7.09975,1.1330833329999999,237.97469591666672 -2016-10-19 08:00:00,2.8131705119999997,1012.1124169999999,53.69,95.975,8.202,1.807333333,237.97457251666665 -2016-10-19 09:00:00,3.198755544,1011.8416179999999,84.14,95.96666667,8.6775,2.6315,237.97266795000004 -2016-10-19 10:00:00,5.963904887999999,1011.20591,135.0275,94.35,9.277793737,2.798333333,237.9726031 -2016-10-19 11:00:00,0.0,1010.247743,217.775,88.325,10.46203469,3.344833333,237.97400779999998 -2016-10-19 12:00:00,0.0,1009.5435279999999,137.7908333,83.85,10.58285038,3.476083333,237.97298431666664 -2016-10-19 13:00:00,0.0,1008.674833,105.1,80.17,10.70530981,3.384666667,237.9748082333333 -2016-10-19 14:00:00,0.0,1008.133201,50.51583333,79.29416667,10.78831923,2.8285,237.9746073 -2016-10-19 15:00:00,0.0,1008.000042,41.90666667,82.9525,10.42587218,2.6196666669999997,237.9736139 -2016-10-19 16:00:00,6.199098096,1008.0125,25.66666667,93.5,9.22757784,2.5139166669999997,237.9744428 -2016-10-19 17:00:00,6.227274672,1008.469007,7.254416667,93.3,8.832255772,2.201,237.97427036666667 -2016-10-19 18:00:00,0.0,1009.164674,0.0,90.54166667,7.959424095,2.101333333,237.97295745 -2016-10-19 19:00:00,0.0,1009.464667,0.0,92.43333333,7.358468801,1.447416667,237.97461838333334 -2016-10-19 20:00:00,0.0,1009.802132,0.0,97.11666667,6.995610811000001,1.506666667,237.97423081666662 -2016-10-19 21:00:00,5.382988632000001,1009.835417,0.0,97.11666667,6.745760689,1.9020833330000002,237.97442223333334 -2016-10-19 22:00:00,0.0,1009.789667,0.0,97.54166667,6.42596897,1.009083333,237.97547578333334 -2016-10-19 23:00:00,0.0,1009.808208,0.0,97.96666667,6.5296896460000005,0.09925,237.97722851666666 -2016-10-20 00:00:00,0.0,1009.6937429999999,0.0,98.05833333,6.798936028,0.235333333,237.97531758333335 -2016-10-20 01:00:00,0.0,1009.7854169999999,0.0,99.53333333,6.8894245089999995,0.206083333,237.97556911666663 -2016-10-20 02:00:00,10.90934405,1009.454083,0.0,99.48333333,6.827537292000001,0.180333333,237.9750802833333 -2016-10-20 03:00:00,5.288273352,1009.112368,0.0,98.83333333,6.733268183,0.33866666700000003,237.97477660000004 -2016-10-20 04:00:00,0.0,1008.68525,0.0,99.9,6.72135099,0.031166667000000002,237.9755027 -2016-10-20 05:00:00,4.982054616,1008.3812429999999,0.0,100.0,6.663573148999999,0.061333333,237.97646286666668 -2016-10-20 06:00:00,29.962791499999998,1008.302042,0.013166667,100.0,6.424818345,0.0,237.97631893333332 -2016-10-20 07:00:00,35.01021182,1008.335507,1.60425,100.0,6.233239188,0.066666667,237.9783864333333 -2016-10-20 08:00:00,4.979375784,1008.339625,16.04025,100.0,6.202583236000001,0.224416667,237.98019610000003 -2016-10-20 09:00:00,5.0706999360000005,1008.458333,50.85666667,100.0,6.4567892979999995,1.679,237.9823427166667 -2016-10-20 10:00:00,5.052106224,1008.508333,52.52916667,100.0,6.662751273,2.1814166669999997,237.9842283 -2016-10-20 11:00:00,0.0,1008.474917,83.46083333,99.65833333,7.040978332999999,1.85975,237.98694598333336 -2016-10-20 12:00:00,0.0,1008.333375,99.19416667,95.83333333,7.783378384,2.06375,237.98813240000004 -2016-10-20 13:00:00,0.0,1008.179076,125.8008333,93.95,8.114183233,1.9270833330000001,237.9912803 -2016-10-20 14:00:00,0.0,1008.052083,105.535,90.99166667,8.845652341000001,2.247666667,237.99071403333335 -2016-10-20 15:00:00,0.0,1007.7707429999999,49.27833333,94.85,8.242313608,2.5365,237.99276886666667 -2016-10-20 16:00:00,0.0,1007.691674,12.86583333,99.55,6.581878734,3.048833333,237.99451051666668 -2016-10-20 17:00:00,0.0,1007.752125,2.113916667,100.0,4.487658023,3.385916667,237.995708 -2016-10-20 18:00:00,0.0,1007.8875,0.0,100.0,3.992642468,3.53275,237.99675994999998 -2016-10-20 19:00:00,0.0,1007.975,0.0,100.0,4.110745963,2.1574166669999997,237.99738318333337 -2016-10-20 20:00:00,0.0,1008.077215,0.0,100.0,3.879059287,0.965916667,237.99676309999995 -2016-10-20 21:00:00,0.0,1008.500083,0.0,100.0,4.374074842,0.137916667,237.9966444666667 -2016-10-20 22:00:00,0.0,1008.906333,0.0,100.0,5.12255677,0.239083333,237.99437761666664 -2016-10-20 23:00:00,0.0,1009.1020900000001,0.0,100.0,5.552479793,0.277083333,237.99540585000003 -2016-10-21 00:00:00,0.0,1009.2605,0.0,100.0,5.592258563,0.179416667,237.99556246666666 -2016-10-21 01:00:00,0.0,1009.297875,0.0,100.0,5.555356357000001,0.072583333,237.99518123333334 -2016-10-21 02:00:00,0.0,1008.970785,0.0,100.0,5.190772429,0.165583333,237.9972566833333 -2016-10-21 03:00:00,0.0,1009.04375,0.0,100.0,5.359010324,0.161583333,237.9966460666666 -2016-10-21 04:00:00,5.029452288,1009.19384,0.0,100.0,5.524700404,0.32375,237.99576178333334 -2016-10-21 05:00:00,30.74154415,1009.375042,0.0,100.0,5.54557604,0.278,237.9951148 -2016-10-21 06:00:00,5.117450208,1009.389625,0.08783333300000001,100.0,5.434458485,0.428833333,237.99672516666666 -2016-10-21 07:00:00,0.0,1009.608382,9.757583333,100.0,5.343559066,0.594833333,237.9980776333333 -2016-10-21 08:00:00,0.0,1010.023042,40.53358333,100.0,5.92010466,2.505083333,237.99747811666668 -2016-10-21 09:00:00,0.0,1010.2,104.90666670000002,98.61666667,7.005719879,1.8891666669999998,237.99684061666665 -2016-10-21 10:00:00,0.0,1010.47925,125.77916670000002,93.45833333,7.837457785,1.778416667,237.99568585 -2016-10-21 11:00:00,0.0,1010.585424,140.28916669999998,88.15833333,8.520682807,1.494666667,237.99561783333334 -2016-10-21 12:00:00,0.0,1010.385285,59.30666667,89.43333333,8.231629228,1.852916667,237.99772491666667 -2016-10-21 13:00:00,0.0,1010.131208,99.89833333,89.3,8.682510073,1.878166667,237.9983465833333 -2016-10-21 14:00:00,0.0,1010.125083,178.8,84.24083333,9.705909324,1.222833333,237.99580925 -2016-10-21 15:00:00,0.0,1010.1749580000001,133.7566667,79.3325,9.816287191,0.8995833329999999,237.99522234999998 -2016-10-21 16:00:00,0.0,1010.074958,45.74333333,85.15,8.114594171,1.254416667,237.99731993333333 -2016-10-21 17:00:00,0.0,1009.945875,3.493666667,90.26666667,6.748144128,3.3403333330000002,237.99933685 -2016-10-21 18:00:00,0.0,1010.0979169999999,0.0,92.04166667,6.361123001,2.43,237.99893821666663 -2016-10-21 19:00:00,0.0,1010.074958,0.0,93.81666667,6.277867023,2.323083333,237.99806816666668 -2016-10-21 20:00:00,0.0,1009.883285,0.0,94.63333333,5.937281856,1.4751666669999999,237.99834656666667 -2016-10-21 21:00:00,0.0,1009.889632,0.0,94.025,6.0091137660000005,0.671333333,237.99638343333334 -2016-10-21 22:00:00,0.0,1009.866535,0.0,97.36666667,5.8502452510000005,1.0615,237.99594841666666 -2016-10-21 23:00:00,27.26697098,1009.256118,0.0,99.78333333,5.838081495,0.262,237.99767426666668 -2016-10-22 00:00:00,5.676993096,1008.849917,0.0,99.31666667,6.134531953,0.15875,237.99779293333333 -2016-10-22 01:00:00,5.476652424,1008.610375,0.0,99.675,6.235211689,0.22216666699999998,237.99672988333336 -2016-10-22 02:00:00,0.0,1008.270701,0.0,99.48333333,6.388655827000001,0.12191666699999999,237.99791313333333 -2016-10-22 03:00:00,0.0,1007.8311669999999,0.0,100.0,6.467884616,0.197333333,237.9987958 -2016-10-22 04:00:00,0.0,1007.73125,0.0,100.0,6.563550912,0.974166667,237.99779608333333 -2016-10-22 05:00:00,0.0,1007.8083330000001,0.0,100.0,6.721926302000001,0.334083333,237.9973199333333 -2016-10-22 06:00:00,0.0,1007.795833,0.06525,100.0,6.828687917000001,0.199166667,237.99784036666668 -2016-10-22 07:00:00,5.289525,1007.962625,6.148416667,100.0,6.943175161,0.2255,237.9975666833333 -2016-10-22 08:00:00,10.89550704,1008.3458820000001,19.69741667,100.0,7.10590649,1.240583333,237.9979495 -2016-10-22 09:00:00,27.71909846,1008.460458,72.36833333,99.575,7.5373910760000005,1.31775,237.9984921 -2016-10-22 10:00:00,0.0,1008.8022080000001,106.18333329999999,98.46666667,8.20582234,1.0415,237.99846046666664 -2016-10-22 11:00:00,0.0,1008.979167,94.0975,97.66666667,8.513861241,0.83675,237.99971963333329 -2016-10-22 12:00:00,0.0,1009.0333400000001,179.3,94.81666667,9.062134322,0.8865833329999999,238.00045203333332 -2016-10-22 13:00:00,5.391899208,1009.052125,182.5333333,87.8,9.794671867,1.177,238.0002179333333 -2016-10-22 14:00:00,0.0,1009.0832849999999,92.7775,88.175,9.654953049,0.5106666670000001,237.9999569 -2016-10-22 15:00:00,0.0,1008.9104169999999,54.01833333,93.86666667,9.164293434,0.284166667,238.00380405 -2016-10-22 16:00:00,0.0,1009.1667150000001,46.51416667,92.44166667,9.278945053,0.142166667,238.00192321666668 -2016-10-22 17:00:00,0.0,1009.429292,3.2040833330000003,99.625,7.953424405,0.232416667,238.0032234833333 -2016-10-22 18:00:00,0.0,1009.691715,0.0,100.0,6.62412313,0.10099999999999999,238.0044099 -2016-10-22 19:00:00,0.0,1009.923042,0.0,100.0,6.269977019,0.22241666699999998,238.00447476666668 -2016-10-22 20:00:00,0.0,1010.125,0.0,100.0,4.837612569,0.203083333,238.004054 -2016-10-22 21:00:00,0.0,1010.34175,0.0,100.0,4.360678273,0.136916667,238.00402711666666 -2016-10-22 22:00:00,0.0,1010.3374650000001,0.0,100.0,5.179841486,0.21891666699999998,238.00124931666667 -2016-10-22 23:00:00,0.0,1010.2875,0.0,100.0,4.983413265,0.17225,238.002605 -2016-10-23 00:00:00,0.0,1010.322826,0.0,100.0,5.396323467,0.1025,238.00282488333335 -2016-10-23 01:00:00,0.0,1010.087458,0.0,100.0,5.594806376,0.107416667,238.00212881666664 -2016-10-23 02:00:00,0.0,1009.9249580000001,0.0,100.0,5.555520732000001,0.11791666699999999,238.00161471666664 -2016-10-23 03:00:00,0.0,1009.604035,0.0,100.0,5.495277265,0.081583333,238.00318235 -2016-10-23 04:00:00,0.0,1009.437583,0.0,100.0,5.350709382,0.03425,238.0022997 -2016-10-23 05:00:00,0.0,1009.412458,0.0,100.0,5.188553365,0.109166667,238.00308115000004 -2016-10-23 06:00:00,0.0,1009.312542,0.05175,100.0,4.974619198,0.07675,238.00408085 -2016-10-23 07:00:00,0.0,1009.499958,3.548916667,100.0,4.8276678760000005,0.093416667,238.00328991666663 -2016-10-23 08:00:00,0.0,1009.6834240000001,23.28666667,100.0,4.971660447,0.25575,238.0037755666667 -2016-10-23 09:00:00,0.0,1009.908417,46.4825,100.0,5.519111652,0.75,238.0036142 -2016-10-23 10:00:00,0.0,1009.879042,60.25166667,100.0,5.846711187,0.831666667,238.0027346833333 -2016-10-23 11:00:00,0.0,1009.454035,71.425,100.0,6.4092849,0.51425,238.00239620000002 -2016-10-23 12:00:00,0.0,1009.0269509999999,74.50083333,99.05,7.055854277999999,0.8955833329999999,238.00210353333333 -2016-10-23 13:00:00,0.0,1008.5353259999999,96.94333333,97.05833333,7.814116524,1.095583333,238.00128728333334 -2016-10-23 14:00:00,0.0,1008.404208,129.8866667,95.06666667,8.364773043,1.4411666669999998,238.00066719999995 -2016-10-23 15:00:00,0.0,1008.114375,113.48333329999998,92.925,9.314696632999999,1.35675,237.99991896666666 -2016-10-23 16:00:00,0.0,1007.727083,49.92583333,93.01666667,9.362611968,1.4044166669999998,238.00131100000002 -2016-10-23 17:00:00,0.0,1007.8354099999999,3.6615,97.9,8.073418213,0.590916667,238.00109113333338 -2016-10-23 18:00:00,0.0,1007.733333,0.0,100.0,6.462953363,0.211833333,238.00468356666667 -2016-10-23 19:00:00,0.0,1007.656257,0.0,100.0,5.095106132,0.22925,238.00392430000002 -2016-10-23 20:00:00,0.0,1007.937625,0.0,100.0,4.754931903,0.12608333300000002,238.00334215 -2016-10-23 21:00:00,0.0,1008.193667,0.0,100.0,5.162253352,0.11983333300000001,238.00356673333332 -2016-10-23 22:00:00,0.0,1007.925042,0.0,100.0,5.700746115,0.097416667,238.00227598333333 -2016-10-23 23:00:00,0.0,1008.312632,0.0,100.0,6.7717319520000006,0.0019166670000000002,238.00041251666667 -2016-10-24 00:00:00,0.0,1008.560333,0.0,100.0,7.039992083,0.03475,238.00012459999996 -2016-10-24 01:00:00,0.0,1008.437625,0.0,100.0,6.962735795,0.11725,238.00201019999997 -2016-10-24 02:00:00,5.027651928,1008.672833,0.0,100.0,6.843317299,0.18608333300000002,238.00139166666665 -2016-10-24 03:00:00,0.0,1008.402125,0.0,100.0,6.888273884,0.051666667,238.00099466666668 -2016-10-24 04:00:00,0.0,1008.518743,0.0,100.0,6.9732558000000004,0.043916667,238.00077320000003 -2016-10-24 05:00:00,5.076879264,1008.33959,0.0,100.0,7.10656399,0.195916667,238.00114174999996 -2016-10-24 06:00:00,0.0,1008.987583,0.0,100.0,7.219571857999999,0.10375,237.99999805000002 -2016-10-24 07:00:00,0.0,1008.764757,4.93575,100.0,7.373426932999999,0.047416667,238.0009962 -2016-10-24 08:00:00,5.08390572,1009.477167,17.0325,100.0,7.687712087,0.16016666699999998,237.99924506666665 -2016-10-24 09:00:00,20.6218579,1009.7145,20.18833333,100.0,7.873209365,0.299666667,238.00044415 -2016-10-24 10:00:00,10.37291954,1009.6061179999999,45.20166667,100.0,8.201466401,0.5449166670000001,238.00110378333332 -2016-10-24 11:00:00,5.1060724319999995,1009.077083,58.89333333,100.0,8.749164169,0.393583333,238.00136320000001 -2016-10-24 12:00:00,5.087163336000001,1008.974875,36.2275,100.0,9.086215271,0.44375,238.00136953333333 -2016-10-24 13:00:00,41.45908157,1008.750042,38.9675,100.0,9.50454985,0.479,238.00321243333335 -2016-10-24 14:00:00,10.3827875,1008.775,21.99916667,100.0,9.414965432,0.9505,238.00658496666665 -2016-10-24 15:00:00,10.27069363,1008.775132,22.55083333,100.0,9.482359214,0.532083333,238.00865408333334 -2016-10-24 16:00:00,10.20996211,1008.872743,13.58808333,100.0,9.47249671,0.5488333329999999,238.01137018333336 -2016-10-24 17:00:00,0.0,1009.164972,0.813333333,100.0,9.436334192,0.284166667,238.01185898333333 -2016-10-24 18:00:00,0.0,1010.050083,0.0,100.0,9.598243646,0.305583333,238.01358321666666 -2016-10-24 19:00:00,0.0,1010.15625,0.0,100.0,9.577696761,0.299666667,238.0155874666667 -2016-10-24 20:00:00,9.958751568,1010.247917,0.0,100.0,9.44208732,0.12558333300000002,238.01576146666665 -2016-10-24 21:00:00,4.979375784,1010.750347,0.0,100.0,9.520165483,0.033916667000000005,238.01644168333337 -2016-10-24 22:00:00,0.0,1011.385368,0.0,100.0,9.576874886,0.06525,238.01640688333336 -2016-10-24 23:00:00,14.93812735,1011.2272220000001,0.0,100.0,9.410856055,0.282166667,238.0164606666667 -2016-10-25 00:00:00,9.958751568,1011.7125,0.0,100.0,9.424006061,0.40299999999999997,238.01835731666665 -2016-10-25 01:00:00,14.93812735,1011.827208,0.0,100.0,9.529206112,0.320166667,238.01998035 -2016-10-25 02:00:00,19.99049177,1012.554424,0.0,100.0,9.649199921000001,0.097916667,238.02310136666665 -2016-10-25 03:00:00,30.74056507,1013.220833,0.0,100.0,9.774946857,0.20875,238.0293513833333 -2016-10-25 04:00:00,10.38188071,1013.3063400000001,0.0,100.0,9.775768733,0.27325,238.03733830000002 -2016-10-25 05:00:00,5.0536872960000006,1013.9898400000001,0.0,100.0,9.521809234,0.025333333,238.04057798333335 -2016-10-25 06:00:00,0.0,1014.639799,0.024916667000000003,100.0,9.589449579,0.10133333300000001,238.04390464999997 -2016-10-25 07:00:00,0.0,1015.775306,5.41575,100.0,10.00071603,0.10825,238.04414036666665 -2016-10-25 08:00:00,0.0,1016.6690070000001,22.96416667,100.0,10.86968489,0.5319166670000001,238.04378284999999 -2016-10-25 09:00:00,0.0,1017.508465,32.43083333,100.0,11.08912563,0.51575,238.04225001666666 -2016-10-25 10:00:00,0.0,1017.868792,63.80916667,99.91666667,11.51814458,0.661833333,238.04046405 -2016-10-25 11:00:00,0.0,1017.941757,101.5166667,97.21666667,12.07784173,0.526333333,238.04070293333334 -2016-10-25 12:00:00,0.0,1018.15625,174.7416667,94.01666667,12.81013272,0.6868333329999999,238.03994996666665 -2016-10-25 13:00:00,0.0,1018.2457919999999,51.96916667,92.34166667,12.73780768,1.2675,238.03894861666666 -2016-10-25 14:00:00,0.0,1018.42934,32.86666667,92.56666667,12.16085115,1.7934166669999998,238.03961776666665 -2016-10-25 15:00:00,0.0,1019.1544240000001,47.49916667,90.90833333,11.63813839,0.776083333,238.03803589999998 -2016-10-25 16:00:00,0.0,1019.733417,32.30925,92.2,11.0965225,0.73425,238.03773373333334 -2016-10-25 17:00:00,0.0,1020.314798,1.789166667,97.86666667,9.047094002,0.922333333,238.03677198333332 -2016-10-25 18:00:00,0.0,1020.86459,0.0,100.0,8.6348413,0.992166667,238.03687796666668 -2016-10-25 19:00:00,0.0,1021.091875,0.0,100.0,9.179909067,1.038583333,238.0345320333333 -2016-10-25 20:00:00,0.0,1021.477132,0.0,100.0,9.353324776000001,1.5275833330000002,238.0331463166667 -2016-10-25 21:00:00,0.0,1021.96684,0.0,100.0,9.211962207000001,2.168333333,238.03255313333332 -2016-10-25 22:00:00,0.0,1022.435458,0.0,100.0,9.06484651,1.17325,238.03115788333332 -2016-10-25 23:00:00,0.0,1022.443708,0.0,100.0,8.944688327,0.29933333300000003,238.03179856666668 -2016-10-26 00:00:00,0.0,1022.51891,0.0,100.0,8.834885773,0.256833333,238.03195834999997 -2016-10-26 01:00:00,0.0,1022.779174,0.0,100.0,8.764451051,0.150333333,238.03055043333336 -2016-10-26 02:00:00,0.0,1022.679167,0.0,100.0,8.728946034,0.050916667,238.03060421666666 -2016-10-26 03:00:00,0.0,1022.7041320000001,0.0,100.0,8.640430053,0.063916667,238.03014236666664 -2016-10-26 04:00:00,0.0,1022.6979439999999,0.0,100.0,8.593500967,0.073916667,238.0290366 -2016-10-26 05:00:00,0.0,1022.798007,0.0,100.0,8.524709996,0.7254166670000001,238.02908563333332 -2016-10-26 06:00:00,0.0,1023.26259,0.0,100.0,8.47712341,0.395,238.0267412833333 -2016-10-26 07:00:00,0.0,1023.658458,2.34575,100.0,8.461507778,1.064416667,238.02687098333334 -2016-10-26 08:00:00,0.0,1024.07925,12.76858333,100.0,8.623992545,1.8041666669999998,238.02700388333335 -2016-10-26 09:00:00,0.0,1024.266722,28.32583333,100.0,9.012299959,2.5710833330000002,238.02418021666665 -2016-10-26 10:00:00,0.0,1024.714715,32.93083333,98.43333333,9.265,0.68625,238.02235313333335 -2016-10-26 11:00:00,0.0,1024.789458,63.0325,93.68333333,9.609166667,0.24916666699999998,238.0219798333333 -2016-10-26 12:00:00,0.0,1024.725111,75.76083333,84.44166667,9.964166667,0.237,238.02208738333334 -2016-10-26 13:00:00,0.0,1024.662389,105.725,79.30666667,10.39333333,0.51775,238.02098165000004 -2016-10-26 14:00:00,0.0,1024.458326,108.85666670000002,77.43416667,10.79083333,1.076833333,238.02005943333336 -2016-10-26 15:00:00,0.0,1024.310368,118.01083329999999,74.24916667,10.77333333,0.35566666700000005,238.0215701333333 -2016-10-26 16:00:00,0.0,1024.445917,26.17333333,87.41833333,10.10416667,0.062916667,238.02137556666665 -2016-10-26 17:00:00,0.0,1024.595972,1.385,95.575,9.503333332999999,0.129083333,238.0216096833333 -2016-10-26 18:00:00,0.0,1024.9355,0.0,98.78333333,8.970833333,0.047583333,238.01999775000002 -2016-10-26 19:00:00,0.0,1025.17916,0.0,99.95,8.701666667000001,0.12825,238.02061466666666 -2016-10-26 20:00:00,0.0,1025.5085900000001,0.0,100.0,8.121583333,0.3225,238.02098166666664 -2016-10-26 21:00:00,0.0,1026.081306,0.0,100.0,6.145416667,0.33399999999999996,238.02013853333335 -2016-10-26 22:00:00,0.0,1026.670875,0.0,100.0,4.652583333,0.297583333,238.01992338333332 -2016-10-26 23:00:00,0.0,1026.668743,0.0,100.0,4.1849166669999995,0.190583333,238.02201936666665 -2016-10-27 00:00:00,0.0,1026.5687990000001,0.0,100.0,3.974416667,0.10075,238.01949313333333 -2016-10-27 01:00:00,0.0,1026.6645,0.0,100.0,3.417916667,0.06408333299999999,238.02022868333333 -2016-10-27 02:00:00,2.456033784,1026.670924,0.0,100.0,3.962333333,0.213916667,238.01860729999999 -2016-10-27 03:00:00,0.0,1027.196042,0.0,100.0,5.536583332999999,0.36958333299999996,238.01889199999997 -2016-10-27 04:00:00,0.0,1027.322833,0.0,100.0,4.956583333,0.176416667,238.01718515000002 -2016-10-27 05:00:00,0.0,1027.473,0.0,100.0,3.356083333,0.38833333299999995,238.01847438333334 -2016-10-27 06:00:00,0.0,1027.793958,0.03475,100.0,3.0990833330000003,0.09725,238.01853925 -2016-10-27 07:00:00,0.0,1028.5125970000001,11.66566667,100.0,3.129833333,0.022833332999999997,238.0164417 -2016-10-27 08:00:00,0.0,1028.991792,34.68,100.0,3.5835,0.1325,238.01506069999996 -2016-10-27 09:00:00,0.0,1029.489715,116.56083329999998,100.0,4.695666667,0.6343333329999999,238.0136069333333 -2016-10-27 10:00:00,0.0,1029.625097,154.975,100.0,6.355916667000001,0.8415,238.01120093333336 -2016-10-27 11:00:00,0.0,1029.777028,214.7583333,88.75833333,9.264916667,0.851583333,238.01057926666667 -2016-10-27 12:00:00,0.0,1029.537458,286.5583333,76.87666667,11.78833333,0.832666667,238.0100145 -2016-10-27 13:00:00,0.0,1029.43525,210.925,75.205,11.86916667,1.183416667,238.00888185 -2016-10-27 14:00:00,0.0,1029.1271179999999,92.86666667,76.93166667,12.185,1.129083333,238.01122304999998 -2016-10-27 15:00:00,0.0,1028.860333,77.63833333,79.48833333,12.3975,1.4769999999999999,238.01303431666668 -2016-10-27 16:00:00,0.0,1028.972958,43.72866667,82.7225,11.97583333,0.7515,238.0120930833333 -2016-10-27 17:00:00,0.0,1029.091743,1.214666667,96.275,10.22833333,0.21025,238.01196338333338 -2016-10-27 18:00:00,0.0,1029.2167220000001,0.0,99.34166667,9.835,0.30141666699999997,238.0123446166667 -2016-10-27 19:00:00,0.0,1029.106125,0.0,100.0,9.679166667,0.551416667,238.0118447333333 -2016-10-27 20:00:00,0.0,1028.98541,0.0,100.0,8.226666667,0.226166667,238.01202979999997 -2016-10-27 21:00:00,0.0,1028.818792,0.0,100.0,6.870583333,0.2815,238.01182891666667 -2016-10-27 22:00:00,0.0,1029.158347,0.0,100.0,6.261666667,0.07958333299999999,238.01030556666663 -2016-10-27 23:00:00,0.0,1029.322903,0.0,100.0,6.635833333,0.028666667000000003,238.01053808333333 -2016-10-28 00:00:00,0.0,1029.060417,0.0,100.0,6.9435,0.144083333,238.01094938333333 -2016-10-28 01:00:00,0.0,1028.987417,0.0,100.0,7.380333332999999,0.286916667,238.00927575000003 -2016-10-28 02:00:00,0.0,1028.67284,0.0,99.38333333,8.01525,0.42258333299999995,238.0083393 -2016-10-28 03:00:00,0.0,1028.704202,0.0,98.23333333,8.24,0.448166667,238.00859873333332 -2016-10-28 04:00:00,0.0,1028.387368,0.0,97.9,8.308333333,0.227416667,238.00923780000002 -2016-10-28 05:00:00,0.0,1028.335465,0.0,97.33333333,8.4525,0.228083333,238.00736485000002 -2016-10-28 06:00:00,0.0,1028.295875,0.0,99.76666667,8.140916667,0.04125,238.0079865333333 -2016-10-28 07:00:00,0.0,1028.497993,2.524083333,100.0,8.438333333,0.2495,238.00936593333333 -2016-10-28 08:00:00,0.0,1028.875049,19.49225,97.41666667,8.845833333,0.3585,238.00754678333328 -2016-10-28 09:00:00,0.0,1029.21259,35.39583333,94.575,10.27666667,0.34766666700000004,238.0063445333333 -2016-10-28 10:00:00,0.0,1029.5729509999999,42.60916667,93.23333333,11.11416667,0.478,238.00603293333333 -2016-10-28 11:00:00,0.0,1029.460424,95.03666667,90.23333333,12.01166667,0.73025,238.0060962 -2016-10-28 12:00:00,0.0,1029.022743,151.6583333,87.16666667,13.25666667,1.035833333,238.00743131666664 -2016-10-28 13:00:00,0.0,1028.797958,75.1075,85.90833333,12.99083333,1.037416667,238.0071528833333 -2016-10-28 14:00:00,0.0,1028.833292,59.69333333,84.20833333,13.29916667,0.854833333,238.00574184999996 -2016-10-28 15:00:00,0.0,1029.191799,22.7125,86.05,13.08333333,0.67425,238.00495883333335 -2016-10-28 16:00:00,0.0,1029.210327,12.80958333,88.15833333,12.81666667,0.58175,238.00574818333334 -2016-10-28 17:00:00,0.0,1029.183549,1.28325,89.775,12.47166667,0.5196666670000001,238.0070991166667 -2016-10-28 18:00:00,0.0,1029.516583,0.0,91.2,12.2625,0.619166667,238.00715131666666 -2016-10-28 19:00:00,0.0,1029.583417,0.0,92.71666667,12.13166667,0.52425,238.00628441666666 -2016-10-28 20:00:00,0.0,1029.850056,0.0,94.05,11.98,0.410583333,238.00517873333334 -2016-10-28 21:00:00,0.0,1029.883312,0.0,95.04166667,11.97666667,0.864583333,238.00534639999998 -2016-10-28 22:00:00,0.0,1029.7145070000001,0.0,95.89166667,11.86416667,0.944333333,238.0058336 -2016-10-28 23:00:00,0.0,1029.560458,0.0,97.05833333,11.68333333,1.015666667,238.00608196666667 -2016-10-29 00:00:00,0.0,1029.687458,0.0,98.41666667,11.63666667,0.760416667,238.00393535 -2016-10-29 01:00:00,0.0,1029.502,0.0,99.825,11.3575,0.564,238.00605665 -2016-10-29 02:00:00,0.0,1029.227035,0.0,100.0,10.84833333,0.570916667,238.00622906666663 -2016-10-29 03:00:00,0.0,1028.950035,0.0,100.0,10.38166667,0.510166667,238.00698046666665 -2016-10-29 04:00:00,0.0,1029.0249789999998,0.0,100.0,8.919166667,0.198666667,238.00625755000002 -2016-10-29 05:00:00,0.0,1029.110452,0.0,100.0,8.490833333,0.276416667,238.00682386666668 -2016-10-29 06:00:00,0.0,1029.112451,0.020666667,100.0,7.520083333,0.204583333,238.00653438333333 -2016-10-29 07:00:00,0.0,1029.4126390000001,7.789083333,100.0,7.7195,0.29525,238.00492085000005 -2016-10-29 08:00:00,0.0,1029.7105,42.65833333,100.0,9.573333332999999,0.43858333299999996,238.00390846666664 -2016-10-29 09:00:00,0.0,1030.002167,62.04166667,99.75,12.10583333,1.736833333,238.00322033333336 -2016-10-29 10:00:00,0.0,1030.224958,144.0633333,86.03083333,12.5425,2.935333333,238.00207981666668 -2016-10-29 11:00:00,0.0,1030.012458,215.55833330000002,73.34166667,12.75833333,2.232916667,238.00267301666665 -2016-10-29 12:00:00,0.0,1029.543521,294.96666669999996,68.9275,13.5675,2.556833333,238.00272359999997 -2016-10-29 13:00:00,0.0,1028.887458,303.6333333,63.51333333,13.54333333,2.087333333,238.00338169999998 -2016-10-29 14:00:00,0.0,1028.633215,234.55,60.81583333,13.57083333,1.774583333,238.00161948333334 -2016-10-29 15:00:00,0.0,1028.2040769999999,147.6416667,60.93916667,13.71,1.584,238.00160363333336 -2016-10-29 16:00:00,0.0,1027.966625,47.06541667,68.30583333,12.28583333,0.797583333,238.00265876666666 -2016-10-29 17:00:00,0.0,1028.062542,1.606916667,91.70833333,8.581166667,0.320833333,238.00297038333335 -2016-10-29 18:00:00,0.0,1028.2875900000001,0.0,98.15833333,6.567416667000001,0.201916667,238.00237718333332 -2016-10-29 19:00:00,0.0,1028.5646179999999,0.0,99.86666667,5.35125,0.15441666699999998,238.0030416 -2016-10-29 20:00:00,0.0,1028.345799,0.0,100.0,4.184666667,0.18600000000000003,238.00457128333335 -2016-10-29 21:00:00,0.0,1028.570875,0.0,100.0,3.8344166669999997,0.259083333,238.0035145666667 -2016-10-29 22:00:00,0.0,1028.489542,0.0,100.0,3.427083333,0.22225,238.00388631666667 -2016-10-29 23:00:00,0.0,1028.414625,0.0,100.0,2.384666667,0.049666667000000005,238.00515815000003 -2016-10-30 00:00:00,0.0,1028.504076,0.0,100.0,1.84,0.0,238.0030147 -2016-10-30 01:00:00,0.0,1028.137375,0.0,100.0,1.709583333,0.028166667000000003,238.0020781833333 -2016-10-30 02:00:00,0.0,1027.8603679999999,0.0,100.0,1.662,0.001333333,238.00361896666666 -2016-10-30 03:00:00,0.0,1027.424917,0.0,100.0,2.8801666669999997,0.08633333300000001,238.00082853333333 -2016-10-30 04:00:00,0.0,1027.666625,0.0,100.0,2.670416667,0.171916667,238.0002733 -2016-10-30 05:00:00,0.0,1027.3603679999999,0.0,100.0,1.502083333,0.055833333,238.0026334833333 -2016-10-30 06:00:00,0.0,1027.054125,0.000916667,100.0,1.210583333,0.055166667,238.00496518333333 -2016-10-30 07:00:00,0.0,1026.756215,5.365666667,100.0,0.7978333329999999,0.022833332999999997,238.00431975000004 -2016-10-30 08:00:00,0.0,1027.264833,20.88416667,100.0,2.089416667,0.24483333300000001,238.00148341666667 -2016-10-30 09:00:00,0.0,1027.606167,107.24083329999999,100.0,4.109666667,0.81775,238.00165428333335 -2016-10-30 10:00:00,0.0,1027.564715,217.525,99.33333333,5.364916667,1.39475,238.00005973333336 -2016-10-30 11:00:00,0.0,1027.649945,195.1583333,93.98333333,8.113999999999999,0.831333333,237.9991928833333 -2016-10-30 12:00:00,0.0,1027.237257,271.775,85.69166667,10.97916667,1.350416667,237.99808243333334 -2016-10-30 13:00:00,0.0,1026.73741,248.70833330000002,77.40083333,12.085,1.192166667,237.99848103333332 -2016-10-30 14:00:00,0.0,1026.172743,166.76833330000002,75.45666667,12.9,0.67875,237.99861230000002 -2016-10-30 15:00:00,0.0,1025.833368,77.48916667,82.415,12.39,0.16475,238.00014041666665 -2016-10-30 16:00:00,0.0,1025.897882,27.713,92.34166667,11.00333333,0.048083333,237.99909795 -2016-10-30 17:00:00,0.0,1026.039667,0.833,97.725,9.1175,0.34975,237.99996641666667 -2016-10-30 18:00:00,0.0,1026.025042,0.0,99.80833333,7.517333333,0.14775,238.00060073333336 -2016-10-30 19:00:00,0.0,1026.243708,0.0,100.0,5.711333333,0.180666667,238.00144231666664 -2016-10-30 20:00:00,0.0,1026.354264,0.0,100.0,4.5675,0.1945,238.00133949999997 -2016-10-30 21:00:00,0.0,1026.577118,0.0,100.0,3.708,0.138083333,238.00174603333332 -2016-10-30 22:00:00,0.0,1026.695875,0.0,100.0,3.028666667,0.13425,238.00135215 -2016-10-30 23:00:00,0.0,1026.69375,0.0,100.0,3.62525,0.105833333,238.00121768333335 -2016-10-31 00:00:00,0.0,1026.712542,0.0,100.0,4.43675,0.146416667,237.99866611666664 -2016-10-31 01:00:00,0.0,1026.597833,0.0,100.0,4.6361666669999995,0.13975,237.9977280333333 -2016-10-31 02:00:00,0.0,1026.341535,0.0,100.0,5.4295,0.07741666700000001,237.99759516666668 -2016-10-31 03:00:00,0.0,1025.806076,0.0,100.0,5.843916667,0.165833333,237.9981899833333 -2016-10-31 04:00:00,0.0,1025.4582990000001,0.0,100.0,6.14675,0.055833333,237.99921505 -2016-10-31 05:00:00,0.0,1025.3624929999999,0.0,100.0,6.288416667000001,0.138833333,237.99928463333333 -2016-10-31 06:00:00,0.0,1025.360417,0.0,100.0,6.382166667000001,0.01125,238.00100728333337 -2016-10-31 07:00:00,0.0,1025.839792,4.552166667,100.0,6.6493333329999995,0.11483333300000001,237.9994364833333 -2016-10-31 08:00:00,0.0,1026.045708,25.0725,100.0,7.300333332999999,0.066,237.99868980000005 -2016-10-31 09:00:00,0.0,1025.743667,84.81833333,100.0,8.635166667,0.18408333300000002,237.99750503333334 -2016-10-31 10:00:00,0.0,1025.612542,131.0,90.58333333,11.18666667,0.40366666700000003,237.99647045000003 -2016-10-31 11:00:00,0.0,1025.422833,193.29166669999998,78.8125,13.09416667,1.325583333,237.99655428333332 -2016-10-31 12:00:00,0.0,1024.860243,276.3,73.9625,13.81916667,1.17325,237.99731991666667 -2016-10-31 13:00:00,0.0,1024.4394519999998,259.6416667,71.85333333,14.28083333,0.964833333,237.99723768333334 -2016-10-31 14:00:00,0.0,1023.960333,211.45,71.1975,14.5825,0.728,237.99684378333333 -2016-10-31 15:00:00,0.0,1023.445701,138.9,73.69666667,13.92,0.702416667,237.99884801666664 -2016-10-31 16:00:00,0.0,1023.2166599999999,33.22941667,84.44416667,12.07833333,0.297666667,237.99838611666664 -2016-10-31 17:00:00,0.0,1023.156257,1.240666667,97.23333333,8.059166667000001,0.31175,237.99860915000002 -2016-10-31 18:00:00,0.0,1023.20625,0.0,99.95,6.479416667000001,0.240083333,237.99945231666666 -2016-10-31 19:00:00,0.0,1023.1395,0.0,100.0,5.495916667,0.30175,237.99983669999997 -2016-10-31 20:00:00,0.0,1023.039625,0.0,100.0,4.39175,0.135,238.00095668333333 -2016-10-31 21:00:00,0.0,1023.0832429999999,0.0,100.0,3.558583333,0.15341666699999998,238.00049475000003 -2016-10-31 22:00:00,0.0,1022.681201,0.0,100.0,3.0255,0.11933333300000001,238.00019738333336 -2016-10-31 23:00:00,0.0,1022.35609,0.0,100.0,2.29475,0.013666667,238.0005897 -2016-01-11 00:00:00,0.0,1021.831069,0.0,100.0,1.7476666669999998,0.05875,238.05912349999997 -2016-01-11 01:00:00,0.0,1021.4165830000001,0.0,100.0,2.803416667,0.083166667,238.0634183833333 -2016-01-11 02:00:00,0.0,1021.095701,0.0,100.0,4.234083333,0.000166667,238.06663955000002 -2016-01-11 03:00:00,0.0,1020.368535,0.0,100.0,4.8245,0.207083333,238.0709344333333 -2016-01-11 04:00:00,0.0,1019.747833,0.0,100.0,4.619083333,0.34125,238.07326081666668 -2016-01-11 05:00:00,0.0,1019.414451,0.0,100.0,4.4105,0.345416667,238.07522931666665 -2016-01-11 06:00:00,0.0,1018.768618,0.0,100.0,3.8675833330000002,0.3635,238.07934523333333 -2016-01-11 07:00:00,0.0,1018.6665830000001,3.816833333,100.0,3.534,0.290666667,238.07827151666666 -2016-01-11 08:00:00,0.0,1018.437542,29.56416667,100.0,3.590583333,0.227166667,238.07809254999998 -2016-01-11 09:00:00,0.0,1018.349917,84.90833333,100.0,4.0264166669999994,0.38575,238.0770188333333 -2016-01-11 10:00:00,0.0,1018.060333,107.81666670000001,100.0,4.906333333,0.42566666700000005,238.07576618333334 -2016-01-11 11:00:00,0.0,1017.587319,127.91666670000001,100.0,5.4215,0.500166667,238.07773463333334 -2016-01-11 12:00:00,0.0,1016.8059509999999,150.35,100.0,6.6995,0.475916667,238.07791360000002 -2016-01-11 13:00:00,0.0,1015.783167,170.91666669999998,99.78333333,6.996083333,0.9148333329999999,238.07773465 -2016-01-11 14:00:00,0.0,1015.27482,171.1,96.19166667,7.226166667,1.020583333,238.07827151666666 -2016-01-11 15:00:00,0.0,1014.704042,89.05,96.73333333,7.7205,0.6104166670000001,238.0797031666667 -2016-01-11 16:00:00,0.0,1014.095653,26.06308333,99.21666667,7.6385,0.313166667,238.08006108333333 -2016-01-11 17:00:00,0.0,1013.731208,0.474,100.0,6.3475,0.08641666699999999,238.0827453333333 -2016-01-11 18:00:00,0.0,1013.652049,0.0,100.0,4.96625,0.236416667,238.08399801666667 -2016-01-11 19:00:00,0.0,1013.43741,0.0,100.0,4.070333333,0.26625,238.08578758333337 -2016-01-11 20:00:00,0.0,1013.300042,0.0,100.0,4.84325,0.13699999999999998,238.08721920000002 -2016-01-11 21:00:00,0.0,1013.227042,0.0,100.0,5.5345,0.197333333,238.09008245000004 -2016-01-11 22:00:00,0.0,1013.006201,0.0,100.0,6.14675,0.257166667,238.09366149999997 -2016-01-11 23:00:00,0.0,1012.889549,0.0,100.0,6.543583333,0.262166667,238.09688265 -2016-02-11 00:00:00,0.0,1013.210583,0.0,100.0,7.016,0.7416666670000001,238.18796989999998 -2016-02-11 01:00:00,0.0,1013.656292,0.0,100.0,7.135833333,0.29875,238.18743306666667 -2016-02-11 02:00:00,0.0,1013.820875,0.0,100.0,7.057833333,0.258083333,238.18707515000003 -2016-02-11 03:00:00,0.0,1013.9,0.0,97.5,6.811083332999999,0.42458333299999995,238.1854645666667 -2016-02-11 04:00:00,0.0,1013.758208,0.0,96.40833333,5.9138333329999995,0.47575,238.18582246666665 -2016-02-11 05:00:00,0.0,1013.433382,0.0,98.14166667,4.2866666669999995,0.254416667,238.18528561666668 -2016-02-11 06:00:00,2.439976992,1013.62091,0.0,97.45,4.288833333,0.18475,238.18456979999996 -2016-02-11 07:00:00,0.0,1013.725007,9.243916667,99.06666667,3.7605,0.140666667,238.18403295 -2016-02-11 08:00:00,0.0,1013.995875,40.635,97.73333333,6.110416667000001,0.605666667,238.183854 -2016-02-11 09:00:00,2.715575064,1014.108375,58.83083333,96.3,7.466083332999999,1.3719999999999999,238.1818855 -2016-02-11 10:00:00,16.86478109,1014.237583,70.02333333,97.43333333,7.53175,1.347166667,238.17884330000004 -2016-02-11 11:00:00,0.0,1014.053993,94.535,96.925,8.14075,1.047,238.17902225 -2016-02-11 12:00:00,2.7074017439999998,1013.827042,121.9108333,94.34166667,8.198833333,1.37775,238.17794855 -2016-02-11 13:00:00,0.0,1013.6645,97.40666667,91.525,8.462166667,1.3795,238.17580108333334 -2016-02-11 14:00:00,0.0,1013.445875,109.39166670000002,91.81666667,8.40825,0.9520000000000001,238.17544316666667 -2016-02-11 15:00:00,0.0,1013.564542,128.71666670000002,85.04166667,8.796666667,1.083583333,238.17311676666668 -2016-02-11 16:00:00,0.0,1013.460458,24.18608333,91.41666667,7.354416667000001,0.954583333,238.17293785 -2016-02-11 17:00:00,0.0,1013.577167,0.698666667,95.325,6.051,0.663333333,238.17186411666668 -2016-02-11 18:00:00,0.0,1014.212632,0.0,96.08333333,5.538333333,0.845916667,238.17204306666665 -2016-02-11 19:00:00,0.0,1014.354208,0.0,97.54166667,4.42,0.113,238.17222201666667 -2016-02-11 20:00:00,0.0,1014.687632,0.0,96.05833333,5.164666667,0.718666667,238.1695377 -2016-02-11 21:00:00,0.0,1015.039667,0.0,96.54166667,5.538333333,0.75375,238.1673903 -2016-02-11 22:00:00,0.0,1015.2833400000001,0.0,96.61666667,5.784583333,0.97275,238.16667448333337 -2016-02-11 23:00:00,0.0,1015.539667,0.0,97.31666667,5.86675,0.640833333,238.1654218 -2016-03-11 00:00:00,0.0,1015.537458,0.0,98.38333333,4.954333333,0.36216666700000005,238.19499476666667 -2016-03-11 01:00:00,0.0,1015.802215,0.0,99.79166667,2.9285,0.161833333,238.19415891666668 -2016-03-11 02:00:00,0.0,1015.96675,0.0,100.0,3.021083333,0.394583333,238.19624851666666 -2016-03-11 03:00:00,0.0,1016.110417,0.0,100.0,2.845416667,0.204916667,238.19520371666667 -2016-03-11 04:00:00,0.0,1016.237542,0.0,100.0,3.367416667,0.639916667,238.19123345 -2016-03-11 05:00:00,0.0,1016.62509,0.0,100.0,3.254166667,0.8465,238.19081555 -2016-03-11 06:00:00,0.0,1016.858451,0.0,100.0,2.583333333,0.5488333329999999,238.188099 -2016-03-11 07:00:00,0.0,1017.2875970000001,3.6556666669999998,100.0,3.421166667,0.312666667,238.18830798333332 -2016-03-11 08:00:00,0.0,1017.78975,27.615,100.0,4.4535,0.141833333,238.18600941666668 -2016-03-11 09:00:00,0.0,1018.102215,65.71416667,98.86666667,6.160416667000001,0.8390833329999999,238.18454666666665 -2016-03-11 10:00:00,0.0,1018.53759,92.275,96.48333333,7.108916667000001,0.869166667,238.18621836666668 -2016-03-11 11:00:00,0.0,1018.58116,142.1,92.45,7.9749166670000005,1.056333333,238.18350186666666 -2016-03-11 12:00:00,0.0,1018.195701,126.78333329999998,87.79166667,8.6375,0.726583333,238.18538253333335 -2016-03-11 13:00:00,0.0,1017.812375,58.44333333,87.91666667,8.2725,0.7625,238.1853825166667 -2016-03-11 14:00:00,2.8556553360000003,1017.335375,103.92833329999999,84.95833333,8.631666667000001,1.198083333,238.18141225000002 -2016-03-11 15:00:00,0.0,1017.4019999999999,99.22,81.1675,9.41,1.04575,238.1832929 -2016-03-11 16:00:00,0.0,1017.193736,20.99633333,84.58333333,8.13325,0.40399999999999997,238.18517356666663 -2016-03-11 17:00:00,0.0,1017.066674,0.46333333299999996,97.00833333,5.537583333,0.42675,238.18391979999998 -2016-03-11 18:00:00,0.0,1017.035375,0.0,99.975,5.0955,0.22016666699999998,238.18412876666665 -2016-03-11 19:00:00,0.0,1016.779076,0.0,100.0,4.68925,0.150583333,238.18412876666665 -2016-03-11 20:00:00,0.0,1016.660465,0.0,100.0,3.248333333,0.05875,238.18496458333334 -2016-03-11 21:00:00,0.0,1016.831201,0.0,100.0,2.735083333,0.05825,238.18162123333335 -2016-03-11 22:00:00,0.0,1016.476958,0.0,100.0,2.136,0.070416667,238.18120331666668 -2016-03-11 23:00:00,0.0,1015.906118,0.0,100.0,1.319,0.08475,238.18308395 -2016-04-11 00:00:00,0.0,1015.554035,0.0,100.0,0.97275,0.12766666699999998,238.20293530000004 -2016-04-11 01:00:00,0.0,1014.922785,0.0,100.0,0.46566666700000003,0.11425,238.20168151666667 -2016-04-11 02:00:00,0.0,1014.33525,0.0,100.0,-0.163916667,0.138416667,238.20314426666667 -2016-04-11 03:00:00,0.0,1014.041618,0.0,100.0,-0.38883333299999995,0.071583333,238.20398011666668 -2016-04-11 04:00:00,0.0,1013.816625,0.0,100.0,0.5810833329999999,0.16016666699999998,238.20293531666667 -2016-04-11 05:00:00,0.0,1013.664417,0.0,100.0,1.001833333,0.092416667,238.20230840000002 -2016-04-11 06:00:00,0.0,1013.006118,0.0,100.0,1.5535833330000002,0.074833333,238.20000981666666 -2016-04-11 07:00:00,0.0,1012.73741,2.526916667,100.0,1.8260833330000001,0.10208333300000001,238.1977112333333 -2016-04-11 08:00:00,0.0,1012.5812990000001,21.6745,100.0,2.140916667,0.26325,238.1962485 -2016-04-11 09:00:00,0.0,1012.2539449999999,41.09666667,100.0,2.687083333,0.301666667,238.1926962 -2016-04-11 10:00:00,0.0,1011.5415,65.88833333,100.0,3.2141666669999998,0.9348333329999999,238.1924872 -2016-04-11 11:00:00,0.0,1011.151993,76.2,100.0,3.862916667,1.258333333,238.19123346666666 -2016-04-11 12:00:00,0.0,1010.514368,121.86666670000001,98.65,5.219833333,0.719833333,238.19206929999999 -2016-04-11 13:00:00,0.0,1009.841451,97.3,93.71666667,6.3106666670000005,0.983083333,238.1924872333333 -2016-04-11 14:00:00,0.0,1009.0977849999999,66.77916667,91.275,6.214583332999999,1.32175,238.18956173333333 -2016-04-11 15:00:00,0.0,1008.5102919999999,70.92833333,89.68333333,6.361666667000001,1.555,238.19102450000003 -2016-04-11 16:00:00,0.0,1007.8080689999999,14.16216667,92.475,5.85325,1.684333333,238.19081553333334 -2016-04-11 17:00:00,0.0,1007.633424,0.12733333300000002,96.00833333,5.438333332999999,1.494666667,238.1922782833333 -2016-04-11 18:00:00,7.903559184,1007.274694,0.0,99.50833333,5.155916667,0.73875,238.19311411666664 -2016-04-11 19:00:00,0.0,1006.389326,0.0,100.0,5.041166667,1.387666667,238.19332308333333 -2016-04-11 20:00:00,0.0,1005.4727429999999,0.0,100.0,4.92325,0.9178333329999999,238.19415893333334 -2016-04-11 21:00:00,0.0,1005.008243,0.0,100.0,5.130666667,0.519833333,238.1954127 -2016-04-11 22:00:00,0.0,1004.460201,0.0,100.0,4.84025,0.078916667,238.1958306 -2016-04-11 23:00:00,2.4050227680000003,1003.783118,0.0,100.0,5.0054166669999995,0.025666667,238.1958306 -2016-05-11 00:00:00,0.0,1003.087326,0.0,100.0,5.348083333,1.577833333,238.08942560000003 -2016-05-11 01:00:00,3.394410648,1002.24141,0.0,100.0,5.587000000000001,2.594416667,238.09145318333333 -2016-05-11 02:00:00,0.0,1001.418576,0.0,100.0,5.5755,0.837583333,238.0909463 -2016-05-11 03:00:00,0.0,1000.7936179999999,0.0,100.0,5.497916667,0.39075,238.09212901666663 -2016-05-11 04:00:00,4.8968186639999995,1000.17275,0.0,100.0,5.535,0.2115,238.0929738166666 -2016-05-11 05:00:00,0.0,999.7039027999999,0.0,100.0,5.549083333,0.268916667,238.09246695000002 -2016-05-11 06:00:00,0.0,998.8727917000001,0.0,99.20833333,5.640916667000001,0.254083333,238.08976355000001 -2016-05-11 07:00:00,0.0,998.5165764000001,2.014333333,99.31666667,5.902083332999999,0.622583333,238.08621530000005 -2016-05-11 08:00:00,0.0,998.0082014000001,14.1975,100.0,6.02575,0.58725,238.08773600000004 -2016-05-11 09:00:00,0.0,997.727,24.8,100.0,6.612333333,0.6829999999999999,238.08672219999997 -2016-05-11 10:00:00,2.430876192,997.4999582999999,31.80666667,100.0,7.1645,0.48775,238.08486358333334 -2016-05-11 11:00:00,33.65674387,997.1497847,24.37083333,100.0,7.3281666670000005,0.033416667000000004,238.0821602 -2016-05-11 12:00:00,33.87834799,996.3957014,39.12,100.0,7.38975,0.11675,238.08030158333335 -2016-05-11 13:00:00,14.848252800000003,996.1499582999999,44.60666667,100.0,7.5115,0.42108333299999995,238.08131536666664 -2016-05-11 14:00:00,7.5432069120000005,995.8416667000001,49.95333333,100.0,7.474166667,0.533083333,238.08013261666667 -2016-05-11 15:00:00,0.0,995.7478264,24.33191667,100.0,7.422999999999999,0.47366666700000004,238.08165328333334 -2016-05-11 16:00:00,2.482703688,995.7771736,8.455,100.0,7.182416667000001,0.29641666699999997,238.07979469999995 -2016-05-11 17:00:00,0.0,995.9000832999999,0.5830833329999999,100.0,6.14875,0.075333333,238.08182225 -2016-05-11 18:00:00,0.0,996.2249582999999,0.0,100.0,4.939916667,0.07275,238.0816533166667 -2016-05-11 19:00:00,0.0,996.1249582999999,0.0,100.0,4.367166667,0.35425,238.08148434999998 -2016-05-11 20:00:00,0.0,996.2668402999999,0.0,100.0,3.532,0.375666667,238.08384980000002 -2016-05-11 21:00:00,0.0,996.55,0.0,100.0,3.29975,0.3085,238.08621533333334 -2016-05-11 22:00:00,0.0,996.7375417000002,0.0,100.0,3.046583333,0.316416667,238.08621531666668 -2016-05-11 23:00:00,0.0,996.7000417000002,0.0,99.875,3.14275,0.29975,238.08689116666667 -2016-06-11 00:00:00,2.4673486319999998,996.7874167000001,0.0,100.0,2.301916667,0.11475,238.04515723333336 -2016-06-11 01:00:00,0.0,996.4561597000001,0.0,99.79166667,2.1709166669999997,0.24325,238.04802958333335 -2016-06-11 02:00:00,0.0,996.45,0.0,98.875,2.81775,0.475,238.04955026666664 -2016-06-11 03:00:00,0.0,995.9748332999999,0.0,99.30833333,1.690916667,0.261333333,238.05140886666666 -2016-06-11 04:00:00,0.0,995.8375417000001,0.0,99.96666667,0.71375,0.224583333,238.05174678333333 -2016-06-11 05:00:00,0.0,995.925,0.0,100.0,1.51825,0.288166667,238.05174678333333 -2016-06-11 06:00:00,0.0,995.8749582999999,0.0,100.0,1.402333333,0.091916667,238.05191578333336 -2016-06-11 07:00:00,2.39248308,996.1565486,1.2724166670000001,99.99166667,0.829416667,0.2195,238.05157785000003 -2016-06-11 08:00:00,0.0,996.5187082999998,24.72408333,99.225,3.960083333,2.224333333,238.05140888333335 -2016-06-11 09:00:00,0.0,996.8250832999998,57.18166667,97.64166667,4.875916667,1.50975,238.05022611666666 -2016-06-11 10:00:00,0.0,997.070875,104.98166670000002,95.21666667,5.2985,2.125916667,238.04633995000003 -2016-06-11 11:00:00,0.0,996.9874167000002,146.675,90.23333333,6.374,1.84625,238.04498825 -2016-06-11 12:00:00,0.0,996.5811181,125.59166670000002,88.46666667,6.946083333,1.6245,238.04228483333338 -2016-06-11 13:00:00,0.0,996.1644514000001,122.15,82.55833333,7.050833333,1.7369999999999999,238.03941245000001 -2016-06-11 14:00:00,0.0,995.9062985999999,45.4775,82.11666667,6.682,1.728666667,238.03670905 -2016-06-11 15:00:00,0.0,996.2544236,22.66916667,83.90833333,6.369666667000001,2.0445,238.036878 -2016-06-11 16:00:00,0.0,996.6604167000002,4.485,85.26666667,6.06175,1.8001666669999998,238.03637111666663 -2016-06-11 17:00:00,0.0,996.9667082999998,0.16066666699999999,86.04166667,5.861833333,2.261166667,238.03518838333332 -2016-06-11 18:00:00,0.0,997.2333332999999,0.0,86.64166667,5.367999999999999,1.190833333,238.0341746 -2016-06-11 19:00:00,0.0,997.2479652999999,0.0,87.18333333,5.015,1.32125,238.0363711 -2016-06-11 20:00:00,0.0,997.3209167000001,0.0,89.625,4.6443333330000005,1.1640000000000001,238.03822970000002 -2016-06-11 21:00:00,0.0,997.6,0.0,90.95833333,4.578666667,0.902416667,238.04093313333337 -2016-06-11 22:00:00,0.0,997.6667569,0.0,90.35,4.606083333,0.873166667,238.0427917166667 -2016-06-11 23:00:00,0.0,997.9625832999999,0.0,89.89166667,4.521,0.639833333,238.04414345 -2016-07-11 00:00:00,0.0,998.4021667000002,0.0,91.29166667,4.23375,0.40533333299999996,238.00337975000002 -2016-07-11 01:00:00,5.22364056,998.6605486,0.0,92.53333333,4.018,0.5994166670000001,238.00417571666665 -2016-07-11 02:00:00,24.51507869,999.0125832999998,0.0,96.0,3.570416667,0.208083333,238.00616565000004 -2016-07-11 03:00:00,17.1820753,999.2187985999999,0.0,98.15833333,3.3530833330000003,0.24925,238.0041757166667 -2016-07-11 04:00:00,24.50320486,999.3584167000001,0.0,99.01666667,3.112916667,0.282,238.00696161666667 -2016-07-11 05:00:00,4.81336956,999.777125,0.0,98.2,3.0045833330000002,0.052833332999999996,238.00815558333338 -2016-07-11 06:00:00,4.887484464,999.9396320000001,0.0,98.70833333,2.992666667,0.165083333,238.00755861666667 -2016-07-11 07:00:00,2.4050227680000003,1000.325167,1.03225,99.44166667,3.0306666669999998,0.060083332999999996,238.00915053333335 -2016-07-11 08:00:00,2.42646768,1000.881424,15.10566667,99.91666667,3.201166667,0.094833333,238.00915053333335 -2016-07-11 09:00:00,0.0,1001.45434,40.96916667,99.41666667,3.874333333,0.37425,238.0077576 -2016-07-11 10:00:00,0.0,1002.075132,51.5975,98.04166667,4.162666667,0.7466666670000001,238.00397673333336 -2016-07-11 11:00:00,2.678988936,1002.362542,54.28833333,98.55833333,4.042666667,1.304833333,238.00039483333333 -2016-07-11 12:00:00,0.0,1002.641708,79.35583333,97.71666667,4.357,1.3924166669999998,237.99880288333338 -2016-07-11 13:00:00,2.801292984,1002.683382,83.31583333,95.18333333,4.73725,1.2455,237.99343008333332 -2016-07-11 14:00:00,3.0614711760000004,1002.666667,57.64416667,95.675,4.579416667,1.643,237.98785825000002 -2016-07-11 15:00:00,0.0,1002.835417,38.165,96.40833333,4.57725,1.0856666670000001,237.9868633 -2016-07-11 16:00:00,2.618540112,1003.025083,3.4853333330000003,98.0,4.2015,0.6073333329999999,237.98746028333335 -2016-07-11 17:00:00,2.421557784,1003.3167990000001,0.15783333300000002,98.81666667,3.960083333,0.633916667,237.98348041666668 -2016-07-11 18:00:00,0.0,1003.6375419999999,0.0,99.375,3.729166667,1.0008333329999999,237.98188846666667 -2016-07-11 19:00:00,0.0,1003.65,0.0,99.125,3.748416667,1.048666667,237.98109248333336 -2016-07-11 20:00:00,0.0,1003.912583,0.0,97.96666667,3.816833333,0.997833333,237.98069448333334 -2016-07-11 21:00:00,0.0,1004.08125,0.0,98.05,3.6928333330000003,0.7785,237.98427638333337 -2016-07-11 22:00:00,0.0,1003.925,0.0,98.38333333,3.60375,0.70275,237.9850723666667 -2016-07-11 23:00:00,2.531905224,1003.65825,0.0,99.16666667,3.347833333,0.57175,237.98586831666668 -2016-08-11 00:00:00,2.691587808,1003.474868,0.0,99.54166667,3.160333333,0.49725,237.94169180000006 -2016-08-11 01:00:00,0.0,1003.199958,0.0,99.85833333,2.964333333,0.7124166670000001,237.94328375000006 -2016-08-11 02:00:00,2.581151304,1003.124958,0.0,99.80833333,3.254916667,0.478416667,237.94706461666667 -2016-08-11 03:00:00,8.221947816,1002.8332429999999,0.0,99.775,3.213916667,0.933583333,237.95044751666669 -2016-08-11 04:00:00,16.63984826,1002.5625,0.0,99.9,2.5059166669999997,1.152916667,237.9516414666667 -2016-08-11 05:00:00,5.331406536,1002.474917,0.0,100.0,2.326083333,1.289416667,237.95303441666667 -2016-08-11 06:00:00,13.344114600000001,1002.412583,0.0,100.0,2.090666667,1.1105,237.95243743333333 -2016-08-11 07:00:00,2.639681616,1002.858424,0.832666667,100.0,2.071416667,1.0364166670000001,237.95203948333332 -2016-08-11 08:00:00,0.0,1003.32934,14.067,100.0,2.389333333,0.806916667,237.95164146666664 -2016-08-11 09:00:00,0.0,1003.8647990000001,47.50916667,99.70833333,2.744916667,0.757166667,237.95064650000003 -2016-08-11 10:00:00,0.0,1004.447958,65.23583333,97.08333333,3.195583333,0.722666667,237.95164148333333 -2016-08-11 11:00:00,0.0,1004.574958,109.62083329999999,95.75,3.767583333,0.72975,237.94885556666668 -2016-08-11 12:00:00,0.0,1004.425,103.3641667,91.675,4.383416667,0.839833333,237.94407973333338 -2016-08-11 13:00:00,3.169311936,1004.335285,70.51666667,94.89166667,3.7195,1.26275,237.9395028666667 -2016-08-11 14:00:00,0.0,1004.083507,99.44583333,94.95,4.19275,1.5210833330000002,237.935921 -2016-08-11 15:00:00,14.01859757,1004.5125419999999,70.3525,98.45,2.1795,1.229666667,237.93074718333332 -2016-08-11 16:00:00,0.0,1004.848007,15.68383333,99.15,1.4398333330000002,0.1455,237.92776228333332 -2016-08-11 17:00:00,0.0,1005.3168400000001,0.33425,100.0,-0.046166667,0.143083333,237.9233844 -2016-08-11 18:00:00,0.0,1005.695833,0.0,100.0,-0.79875,0.13675,237.91980254999999 -2016-08-11 19:00:00,0.0,1005.685458,0.0,100.0,-1.1278333329999999,0.07591666700000001,237.91980253333335 -2016-08-11 20:00:00,0.0,1005.724958,0.0,100.0,-1.6145,0.111416667,237.92139448333333 -2016-08-11 21:00:00,0.0,1005.9355419999999,0.0,100.0,-1.837083333,0.12708333300000002,237.92378241666668 -2016-08-11 22:00:00,0.0,1005.79575,0.0,100.0,-1.837166667,0.02,237.92517538333334 -2016-08-11 23:00:00,0.0,1005.37691,0.0,100.0,-1.8114166669999998,0.133833333,237.92816026666665 -2016-09-11 00:00:00,0.0,1005.1604169999999,0.0,100.0,-1.514083333,0.02975,237.8237594 -2016-09-11 01:00:00,0.0,1004.853993,0.0,100.0,-0.877,0.39125,237.82754326666668 -2016-09-11 02:00:00,0.0,1004.070576,0.0,100.0,-0.9039166670000001,0.38091666700000004,237.82870278333337 -2016-09-11 03:00:00,0.0,1003.420701,0.0,100.0,-0.7395,0.11233333300000001,237.83123538333334 -2016-09-11 04:00:00,0.0,1002.797785,0.0,100.0,-0.2015,0.238083333,237.8345019333333 -2016-09-11 05:00:00,0.0,1002.1518679999999,0.0,100.0,-0.190833333,0.360833333,237.83530554999996 -2016-09-11 06:00:00,0.0,1001.599917,0.0,100.0,0.734833333,1.76325,237.83770526666663 -2016-09-11 07:00:00,0.0,1001.39366,0.67925,100.0,0.87175,1.32,237.83844081666666 -2016-09-11 08:00:00,0.0,1001.062417,4.093583333,100.0,1.166833333,1.085416667,237.84025366666665 -2016-09-11 09:00:00,13.10894294,1000.822875,26.55141667,100.0,1.5915,1.50375,237.8393678 -2016-09-11 10:00:00,2.496806832,1000.797917,57.44416667,100.0,2.1436666669999997,1.116416667,237.8372433333333 -2016-09-11 11:00:00,3.17497416,1000.5039929999999,58.32666667,100.0,2.386083333,1.8259166669999998,237.83097118333333 -2016-09-11 12:00:00,3.1561679760000003,999.7414931,68.62916667,99.73333333,2.66225,2.5943333330000002,237.8232611 -2016-09-11 13:00:00,0.0,999.1310764000001,62.655,99.55833333,3.155916667,2.01,237.81714398333335 -2016-09-11 14:00:00,0.0,998.6415764000001,44.29583333,97.875,3.512,1.9796666669999998,237.81397865 -2016-09-11 15:00:00,0.0,998.0976597000001,19.75083333,99.38333333,3.55275,1.788,237.81371606666664 -2016-09-11 16:00:00,0.0,997.4749167000001,3.708583333,99.65833333,3.475,1.5315,237.81413526666665 -2016-09-11 17:00:00,9.581209632,997.0998681,0.05825,99.85833333,3.169083333,2.3615,237.81255495000002 -2016-09-11 18:00:00,11.09035339,996.7999167000002,0.0,99.95833333,3.119916667,3.199083333,237.8130153 -2016-09-11 19:00:00,14.044573699999999,996.2206181,0.0,100.0,3.104083333,2.79475,237.81343923333336 -2016-09-11 20:00:00,10.42684272,995.7437082999999,0.0,100.0,3.12725,2.743666667,237.81572979999999 -2016-09-11 21:00:00,20.34457658,995.2039445,0.0,100.0,3.0135,2.759083333,237.81837626666666 -2016-09-11 22:00:00,7.050544488,994.702,0.0,100.0,2.788916667,2.703083333,237.82033463333332 -2016-09-11 23:00:00,3.1195930080000003,994.6000902999999,0.0,100.0,2.255833333,2.1465,237.82119518333332 -2016-10-11 00:00:00,12.51292322,995.1751667000001,0.0,100.0,2.0300833330000003,0.525333333,237.9650765 -2016-10-11 01:00:00,2.7159170639999997,995.8315139,0.0,100.0,2.136583333,1.31925,237.96552258333335 -2016-10-11 02:00:00,5.375822808,996.76475,0.0,100.0,1.845,1.6893333330000002,237.9661933333334 -2016-10-11 03:00:00,13.128976300000001,997.2709236,0.0,100.0,1.3535833330000002,1.4059166669999998,237.96599874999995 -2016-10-11 04:00:00,5.053408056,998.0211319,0.0,100.0,1.234166667,0.97575,237.96627715 -2016-10-11 05:00:00,7.492953624,998.7314236,0.0,100.0,1.158166667,0.7260833329999999,237.96546246666665 -2016-10-11 06:00:00,2.533610328,999.6669722000001,0.0,100.0,1.4513333330000002,0.843583333,237.96734176666664 -2016-10-11 07:00:00,0.0,1000.8483470000001,0.8995833329999999,100.0,1.7229166669999998,1.2195833329999999,237.9677752 -2016-10-11 08:00:00,0.0,1001.921007,12.00266667,100.0,2.032333333,0.966916667,237.96680236666668 -2016-10-11 09:00:00,0.0,1002.475125,36.10333333,100.0,2.503083333,0.4475,237.9639154166667 -2016-10-11 10:00:00,0.0,1002.8688400000001,37.68166667,100.0,2.97575,0.35908333299999995,237.9634962166667 -2016-10-11 11:00:00,2.436422976,1003.024958,52.99083333,100.0,3.2439999999999998,0.46566666700000003,237.96342343333333 -2016-10-11 12:00:00,0.0,1002.833333,72.6325,99.775,4.132583333,0.37891666700000004,237.96348195 -2016-10-11 13:00:00,0.0,1002.858292,38.70333333,98.40833333,5.165166667,0.2985,237.96230823333335 -2016-10-11 14:00:00,0.0,1002.726993,39.00583333,97.84166667,5.73575,0.486333333,237.96094778333335 -2016-10-11 15:00:00,0.0,1002.727125,32.3325,99.31666667,5.849,0.38325,237.96150621666666 -2016-10-11 16:00:00,0.0,1002.656208,20.85133333,99.13333333,5.442916667,0.3775,237.96110441666667 -2016-10-11 17:00:00,0.0,1002.6292080000001,0.11800000000000001,98.98333333,4.154833333,0.166333333,237.96031823333337 -2016-10-11 18:00:00,0.0,1002.7917570000001,0.0,96.89166667,4.241666667,0.124666667,237.96201399999995 -2016-10-11 19:00:00,0.0,1002.9,0.0,100.0,3.62475,0.018083333,237.96168654999997 -2016-10-11 20:00:00,0.0,1002.829125,0.0,100.0,3.7915,0.2105,237.96168809999998 -2016-10-11 21:00:00,0.0,1002.722868,0.0,100.0,3.07125,0.168083333,237.96267678333334 -2016-10-11 22:00:00,2.403358248,1002.399917,0.0,100.0,1.99925,0.122083333,237.9620836 -2016-10-11 23:00:00,2.4050227680000003,1002.275,0.0,100.0,1.945,0.047833333,237.96356898333332 -2016-11-11 00:00:00,5.11564248,1002.195792,0.0,100.0,3.3643333330000003,0.8211666670000001,238.073818 -2016-11-11 01:00:00,21.83898646,1002.2625419999999,0.0,100.0,3.976083333,0.2575,238.07165078333333 -2016-11-11 02:00:00,14.49114516,1002.4,0.0,100.0,4.05325,0.12708333300000002,238.07124425000003 -2016-11-11 03:00:00,21.73599271,1002.3626320000001,0.0,100.0,4.022916667,0.091833333,238.07175995000003 -2016-11-11 04:00:00,44.02699056,1002.8563330000001,0.0,100.0,4.049166667,0.2645,238.07595193333336 -2016-11-11 05:00:00,45.10132812,1003.4585490000001,0.0,100.0,3.9930000000000003,0.451166667,238.10258919999998 -2016-11-11 06:00:00,56.31745488,1004.4232220000001,0.0,100.0,3.522,1.1514166670000001,238.14267715000003 -2016-11-11 07:00:00,26.14100369,1005.4753890000001,0.29883333300000003,100.0,3.4828333330000003,0.9325,238.19101776666665 -2016-11-11 08:00:00,15.17732988,1006.7878400000001,4.108833333,100.0,3.463916667,0.550666667,238.21281921666665 -2016-11-11 09:00:00,8.108288783999999,1008.1858050000001,10.5725,100.0,3.854833333,1.150166667,238.21428245 -2016-11-11 10:00:00,0.0,1009.5586810000001,14.71883333,100.0,4.3595,2.056,238.2106868666667 -2016-11-11 11:00:00,0.0,1010.812806,38.87083333,100.0,4.713,2.5445833330000003,238.20439729999998 -2016-11-11 12:00:00,0.0,1011.631465,32.39166667,99.44166667,4.696833333,3.060083333,238.19611933333337 -2016-11-11 13:00:00,0.0,1012.6148400000001,70.44416667,97.16666667,4.81825,3.696333333,238.1855856 -2016-11-11 14:00:00,0.0,1013.346049,27.15541667,96.175,4.443833333,3.255416667,238.17704505000006 -2016-11-11 15:00:00,0.0,1014.423264,14.3545,95.83333333,4.14575,3.3096666669999997,238.1682925 -2016-11-11 16:00:00,0.0,1015.427264,3.008083333,95.975,3.98425,2.508333333,238.16140976666668 -2016-11-11 17:00:00,0.0,1016.227382,0.05025,96.11666667,3.753,1.8048333330000002,238.15587316666668 -2016-11-11 18:00:00,0.0,1017.252382,0.0,96.25,3.506166667,2.26475,238.14809508333335 -2016-11-11 19:00:00,0.0,1018.125174,0.0,90.15,2.982583333,2.35525,238.1431011 -2016-11-11 20:00:00,0.0,1018.8168820000001,0.0,91.25,2.417916667,1.90375,238.13877781666667 -2016-11-11 21:00:00,0.0,1019.475132,0.0,91.93333333,2.135583333,1.318,238.13476935000003 -2016-11-11 22:00:00,0.0,1019.739625,0.0,92.13333333,2.148416667,1.9889166669999998,238.13135406666666 -2016-11-11 23:00:00,0.0,1019.945833,0.0,92.675,2.02775,1.595166667,238.12701971666664 -2016-12-11 00:00:00,0.0,1020.114625,0.0,94.83333333,1.594416667,1.79925,238.03235695000004 -2016-12-11 01:00:00,0.0,1020.1208330000001,0.0,97.28333333,1.3093333329999999,1.222583333,238.0329359333333 -2016-12-11 02:00:00,0.0,1020.202049,0.0,96.90833333,0.844916667,1.715333333,238.03249298333333 -2016-12-11 03:00:00,0.0,1020.2605,0.0,97.45,0.7785,0.772,238.03154703333334 -2016-12-11 04:00:00,0.0,1020.314625,0.0,98.8,0.773833333,0.5588333329999999,238.03178428333334 -2016-12-11 05:00:00,0.0,1020.383375,0.0,98.85,0.7144166670000001,0.4045,238.03078613333335 -2016-12-11 06:00:00,0.0,1020.44166,0.0,98.36666667,0.5900833329999999,0.376,238.03106456666669 -2016-12-11 07:00:00,0.0,1020.500049,0.914666667,98.825,0.554666667,0.43525,238.0309332666667 -2016-12-11 08:00:00,0.0,1020.8146320000001,21.50991667,97.68333333,0.8031666670000001,0.99475,238.02892268333335 -2016-12-11 09:00:00,0.0,1021.023083,70.39666667,93.58333333,1.3866666669999999,1.6993333330000002,238.03109778333328 -2016-12-11 10:00:00,0.0,1021.1894580000001,98.83,88.34083333,2.3209999999999997,1.244166667,238.03267334999998 -2016-12-11 11:00:00,0.0,1020.9332009999999,122.875,73.8925,2.816833333,1.511416667,238.03334719999998 -2016-12-11 12:00:00,0.0,1020.3477849999999,249.43333330000002,69.915,3.4899166669999997,1.1754166670000001,238.03270813333333 -2016-12-11 13:00:00,0.0,1020.147875,187.8225,68.145,4.16775,1.2985,238.03464910000002 -2016-12-11 14:00:00,0.0,1019.822875,156.2858333,68.85083333,4.071916667,1.07625,238.03284573333335 -2016-12-11 15:00:00,0.0,1019.706243,56.68666667,77.33083333,3.14075,0.934583333,238.03233004999996 -2016-12-11 16:00:00,0.0,1019.527049,9.651916667,88.74583333,1.4425,0.309333333,238.03371263333338 -2016-12-11 17:00:00,0.0,1019.48125,0.105333333,98.26666667,-1.235333333,0.079416667,238.0345051666667 -2016-12-11 18:00:00,0.0,1019.7812849999999,0.0,100.0,-1.7943333330000002,0.165666667,238.03432325000003 -2016-12-11 19:00:00,0.0,1019.900132,0.0,100.0,-2.17175,0.066083333,238.03349116666664 -2016-12-11 20:00:00,0.0,1020.0979169999999,0.0,100.0,-2.183916667,0.11558333300000001,238.03400051666662 -2016-12-11 21:00:00,0.0,1020.28759,0.0,100.0,-2.318916667,0.00025,238.03599686666666 -2016-12-11 22:00:00,0.0,1020.343701,0.0,100.0,-2.414666667,0.00041666699999999996,238.03565200000003 -2016-12-11 23:00:00,0.0,1020.320833,0.0,100.0,-1.992666667,0.034416667000000005,238.03627051666663 -2016-11-13 00:00:00,0.0,1020.162417,0.0,99.29166667,-1.7325,0.0035833329999999997,238.08378065 -2016-11-13 01:00:00,0.0,1019.9561669999999,0.0,98.55,-1.6980000000000002,0.013916666999999999,238.08233325 -2016-11-13 02:00:00,0.0,1019.8979509999999,0.0,98.79166667,-1.705416667,0.051083333,238.0813303333333 -2016-11-13 03:00:00,0.0,1019.756215,0.0,99.58333333,-1.749416667,0.0855,238.08090953333337 -2016-11-13 04:00:00,0.0,1019.929208,0.0,99.36666667,-1.383833333,0.175333333,238.07892901666665 -2016-11-13 05:00:00,0.0,1020.014674,0.0,97.91666667,-1.057833333,0.225583333,238.07837535 -2016-11-13 06:00:00,0.0,1020.277167,0.0,98.55,-1.183166667,0.175666667,238.0771225166667 -2016-11-13 07:00:00,0.0,1020.5583330000001,0.803666667,98.65833333,-0.923583333,0.56025,238.07588866666666 -2016-11-13 08:00:00,0.0,1020.894007,21.99491667,98.075,-0.505416667,0.5389166670000001,238.07580163333333 -2016-11-13 09:00:00,0.0,1021.7918400000001,58.9725,93.31666667,0.7463333329999999,1.0765833329999999,238.07266321666665 -2016-11-13 10:00:00,0.0,1022.145924,101.6975,87.775,1.440083333,1.618916667,238.07277396666666 -2016-11-13 11:00:00,0.0,1022.147826,148.55,84.24166667,2.172166667,1.88525,238.07195928333337 -2016-11-13 12:00:00,0.0,1021.941583,159.6416667,82.31666667,3.031416667,1.9638333330000002,238.07093105 -2016-11-13 13:00:00,0.0,1021.589549,236.075,77.955,4.398833333,2.13725,238.06951845 -2016-11-13 14:00:00,0.0,1021.806285,143.2416667,75.91166667,4.261416667,1.566416667,238.0691752 -2016-11-13 15:00:00,0.0,1022.148132,49.24,78.01833333,3.86875,1.28175,238.06933333333333 -2016-11-13 16:00:00,0.0,1022.733424,7.473583333,81.49166667,3.1505,1.176666667,238.06889833333335 -2016-11-13 17:00:00,0.0,1023.1751320000001,0.08691666699999999,82.44166667,2.490583333,1.2720833329999999,238.06964656666665 -2016-11-13 18:00:00,0.0,1023.79609,0.0,82.75,1.6073333330000001,1.043166667,238.06843958333332 -2016-11-13 19:00:00,0.0,1024.441826,0.0,91.75,-0.864166667,0.01825,238.06902806666665 -2016-11-13 20:00:00,0.0,1025.1480900000001,0.0,99.05,-1.679416667,0.035833332999999995,238.06797136666668 -2016-11-13 21:00:00,0.0,1025.618882,0.0,100.0,-1.334416667,0.252833333,238.07002939999998 -2016-11-13 22:00:00,0.0,1026.237667,0.0,100.0,-2.032083333,0.191083333,238.0683431 -2016-11-13 23:00:00,0.0,1026.522958,0.0,100.0,-3.046916667,0.114166667,238.0694678166667 -2016-11-14 00:00:00,0.0,1026.7625,0.0,100.0,-4.016166667,0.014416667,238.06819914999997 -2016-11-14 01:00:00,0.0,1026.877174,0.0,100.0,-4.375416667,0.1255,238.0699091833333 -2016-11-14 02:00:00,0.0,1027.225083,0.0,100.0,-4.60075,0.143666667,238.0669732 -2016-11-14 03:00:00,0.0,1027.598042,0.0,100.0,-4.81,0.31975,238.06641796666668 -2016-11-14 04:00:00,0.0,1027.77709,0.0,100.0,-5.4875,0.1125,238.06708235 -2016-11-14 05:00:00,0.0,1027.960458,0.0,100.0,-5.919083333,0.027916667000000003,238.06574726666668 -2016-11-14 06:00:00,0.0,1028.045993,0.0,99.93333333,-6.282083332999999,0.09908333300000001,238.06483606666666 -2016-11-14 07:00:00,0.0,1028.877264,1.4490833330000001,99.9,-6.2430833329999995,0.145666667,238.06471585 -2016-11-14 08:00:00,0.0,1029.612674,12.76675,99.94166667,-5.090916667,0.08491666699999999,238.0625534333333 -2016-11-14 09:00:00,0.0,1029.995889,33.0725,100.0,-2.257083333,0.409583333,238.06056501666663 -2016-11-14 10:00:00,2.49554544,1029.993833,160.08333330000002,99.76666667,0.18633333300000002,0.332,238.05787581666667 -2016-11-14 11:00:00,0.0,1030.154014,120.475,93.24166667,2.122416667,0.548416667,238.0555995166667 -2016-11-14 12:00:00,0.0,1029.479069,227.9833333,77.47666667,3.437666667,1.33375,238.05540018333332 -2016-11-14 13:00:00,0.0,1028.9789449999998,218.33333330000002,64.14833333,4.00425,2.158583333,238.05451748333334 -2016-11-14 14:00:00,0.0,1028.456222,168.70833330000002,63.6925,4.032583333,1.839,238.05193586666667 -2016-11-14 15:00:00,0.0,1028.181069,96.28416667,67.43583333,3.383333333,1.41275,238.0544399833333 -2016-11-14 16:00:00,0.0,1027.7228189999998,14.17133333,84.87583333,0.97475,0.273833333,238.05484651666666 -2016-11-14 17:00:00,0.0,1027.4582990000001,0.073333333,93.84166667,-0.5428333329999999,0.20425,238.05789005 -2016-11-14 18:00:00,0.0,1027.506417,0.0,96.04166667,-1.25375,0.014666667,238.05760216666667 -2016-11-14 19:00:00,0.0,1027.691535,0.0,98.14166667,-1.3176666670000001,0.099,238.05683176666665 -2016-11-14 20:00:00,0.0,1027.548049,0.0,98.11666667,-1.07825,0.046583333,238.05430393333333 -2016-11-14 21:00:00,0.0,1027.87075,0.0,98.24166667,-0.6045,0.018583333,238.05188523333334 -2016-11-14 22:00:00,0.0,1027.674958,0.0,98.125,-0.36416666700000005,0.137083333,238.0521304333333 -2016-11-14 23:00:00,0.0,1027.158118,0.0,97.66666667,0.011833333,0.20475,238.05277585 -2016-11-15 00:00:00,0.0,1026.695694,0.0,97.575,0.194833333,0.11491666699999999,238.0509424333333 -2016-11-15 01:00:00,0.0,1026.033125,0.0,98.61666667,0.009666667,0.177666667,238.05250058333334 -2016-11-15 02:00:00,0.0,1025.545792,0.0,97.2,0.406416667,0.2105,238.05157678333333 -2016-11-15 03:00:00,0.0,1025.229083,0.0,94.36666667,0.672583333,1.016416667,238.05012621666665 -2016-11-15 04:00:00,0.0,1024.76866,0.0,90.28333333,0.7935,2.104333333,238.0512351166667 -2016-11-15 05:00:00,0.0,1024.5707009999999,0.0,94.14166667,0.624,2.086583333,238.0494175166667 -2016-11-15 06:00:00,2.6951370960000003,1024.274917,0.0,97.79166667,0.376333333,1.6171666669999998,238.05018946666667 -2016-11-15 07:00:00,0.0,1023.895882,0.36466666700000006,99.825,0.26025,1.73925,238.0489920166667 -2016-11-15 08:00:00,2.608068096,1023.9520349999999,8.312083333,100.0,0.502916667,1.281083333,238.04881166666667 -2016-11-15 09:00:00,7.784999592,1023.9249580000001,17.46166667,100.0,0.84625,1.325166667,238.04854433333333 -2016-11-15 10:00:00,10.48612445,1023.770792,36.62,100.0,1.348333333,1.200166667,238.04755564999996 -2016-11-15 11:00:00,20.95404917,1023.416535,37.13833333,100.0,1.8355833330000002,1.116583333,238.0494966166667 -2016-11-15 12:00:00,16.41261466,1022.733118,39.16166667,100.0,2.37875,1.36975,238.05362371666664 -2016-11-15 13:00:00,0.0,1022.316625,40.545,100.0,2.791083333,1.39375,238.06233671666666 -2016-11-15 14:00:00,0.0,1021.86241,32.955,100.0,3.099416667,0.991083333,238.06665841666668 -2016-11-15 15:00:00,0.0,1021.614542,10.627,100.0,3.09225,0.7898333329999999,238.0715907 -2016-11-15 16:00:00,5.095566312,1021.797826,1.94875,100.0,3.164416667,0.742916667,238.07247023333332 -2016-11-15 17:00:00,0.0,1021.404125,0.014583333,100.0,3.239083333,0.882583333,238.07493955000004 -2016-11-15 18:00:00,0.0,1021.4020830000001,0.0,100.0,3.361583333,0.8916666670000001,238.07702918333337 -2016-11-15 19:00:00,0.0,1020.976958,0.0,100.0,3.4860833330000003,0.719333333,238.0773645666667 -2016-11-15 20:00:00,5.020838184,1020.922958,0.0,100.0,3.656666667,0.39191666700000005,238.07553905 -2016-11-15 21:00:00,4.900887168,1020.714444,0.0,100.0,3.815416667,0.36366666700000005,238.07566561666667 -2016-11-15 22:00:00,0.0,1020.404,0.0,100.0,4.015166667,0.425416667,238.0745836166667 -2016-11-15 23:00:00,2.45799348,1019.985375,0.0,100.0,4.120583333,0.314416667,238.07548845000005 -2016-11-16 00:00:00,2.571894912,1019.7957849999999,0.0,100.0,4.34375,0.48916666700000005,238.07518788333334 -2016-11-16 01:00:00,9.827327184,1019.231083,0.0,100.0,4.47025,0.3565,238.07649135 -2016-11-16 02:00:00,20.05736813,1018.870743,0.0,100.0,4.749416667,0.56425,238.07791819999997 -2016-11-16 03:00:00,9.91434444,1018.3228330000001,0.0,100.0,4.942083333,0.409583333,238.08909418333334 -2016-11-16 04:00:00,2.628730488,1017.6580349999999,0.0,100.0,5.1525,0.6275,238.10092505000003 -2016-11-16 05:00:00,2.50786116,1016.9039449999999,0.0,100.0,5.229833333,0.487833333,238.1106124833333 -2016-11-16 06:00:00,27.16527622,1016.210243,0.0,100.0,5.342333333,0.39666666700000003,238.11599088333332 -2016-11-16 07:00:00,12.55338139,1015.687375,0.204916667,100.0,5.67725,0.474,238.13040336666666 -2016-11-16 08:00:00,7.5566421120000005,1015.395868,5.591,100.0,6.016166667,0.498666667,238.15052643333334 -2016-11-16 09:00:00,17.18831412,1014.987208,24.71166667,100.0,6.5335,0.468083333,238.16309920000003 -2016-11-16 10:00:00,2.5678866,1014.351993,51.745,100.0,7.478916667000001,0.589333333,238.16990603333338 -2016-11-16 11:00:00,0.0,1013.743535,48.85,99.88333333,9.838333333,1.3085,238.17253983333333 -2016-11-16 12:00:00,2.9127727919999997,1013.0226529999999,57.21833333,99.95,10.69833333,2.007833333,238.17248766666668 -2016-11-16 13:00:00,6.819965976000001,1012.418715,56.27083333,100.0,10.68083333,2.576666667,238.16983325 -2016-11-16 14:00:00,20.11563866,1011.8934859999999,52.73333333,100.0,10.8025,2.428416667,238.1656998 -2016-11-16 15:00:00,0.0,1011.477083,28.7525,100.0,10.75666667,2.20525,238.16491835 -2016-11-16 16:00:00,0.0,1011.1540349999999,5.054333333,100.0,10.695,2.273916667,238.1644706666667 -2016-11-16 17:00:00,0.0,1011.006208,0.009416667,100.0,10.72416667,2.59125,238.16158531666665 -2016-11-16 18:00:00,0.0,1010.954208,0.0,100.0,10.785,1.792416667,238.15943081666668 -2016-11-16 19:00:00,2.810562408,1010.685292,0.0,99.99166667,10.69583333,1.318916667,238.15513918333332 -2016-11-16 20:00:00,0.0,1010.429118,0.0,98.825,10.73666667,1.797333333,238.15428023333334 -2016-11-16 21:00:00,0.0,1010.281292,0.0,97.63333333,10.68666667,2.253666667,238.15338171666664 -2016-11-16 22:00:00,0.0,1010.2769999999999,0.0,95.10833333,10.55166667,2.8539999999999996,238.15083015000005 -2016-11-16 23:00:00,0.0,1009.6976599999999,0.0,95.225,9.805833332999999,3.557,238.14978770000002 -2016-11-17 00:00:00,0.0,1009.399993,0.0,95.95833333,9.266666667,2.75575,238.1460687166667 -2016-11-17 01:00:00,0.0,1008.6997849999999,0.0,96.33333333,9.47,3.067416667,238.14417201666666 -2016-11-17 02:00:00,0.0,1008.037333,0.0,96.34166667,9.290833333,3.034833333,238.14264076666663 -2016-11-17 03:00:00,0.0,1007.351868,0.0,94.975,9.205833333,2.9289166669999998,238.14057323333336 -2016-11-17 04:00:00,0.0,1006.851951,0.0,96.66666667,9.300833333,1.4550833330000001,238.13690645 -2016-11-17 05:00:00,0.0,1006.093535,0.0,96.66666667,9.128333332999999,0.9085,238.13381073333335 -2016-11-17 06:00:00,17.4272321,1005.358118,0.0,97.725,9.68,1.7229166669999998,238.1314125833333 -2016-11-17 07:00:00,11.53135219,1004.875,0.256,97.31666667,10.0475,3.000916667,238.12949378333334 -2016-11-17 08:00:00,0.0,1005.087542,7.537833332999999,96.525,10.14666667,2.9635,238.12833586666667 -2016-11-17 09:00:00,0.0,1005.25,41.02416667,95.04166667,10.55666667,3.231666667,238.12840070000001 -2016-11-17 10:00:00,0.0,1005.060375,41.14333333,92.875,10.82333333,3.261,238.12746581666661 -2016-11-17 11:00:00,0.0,1004.693535,71.17916667,91.80833333,11.23,2.7858333330000002,238.12642491666668 -2016-11-17 12:00:00,0.0,1003.88941,64.9375,90.34166667,11.51833333,3.5579166669999998,238.1265341 -2016-11-17 13:00:00,25.96104605,1003.3707009999999,33.38916667,90.41666667,11.24,4.094666667,238.12525591666667 -2016-11-17 14:00:00,0.0,1002.841583,35.84583333,86.1,11.3225,4.329916667,238.12633478333336 -2016-11-17 15:00:00,0.0,1002.672868,16.34666667,88.625,11.02,3.741583333,238.1245250833333 -2016-11-17 16:00:00,3.289927608,1002.335201,2.47525,97.675,9.781666667,1.30625,238.1229732666667 -2016-11-17 17:00:00,0.0,1001.508201,0.0,97.14166667,9.948333332999999,1.009666667,238.12364556666668 -2016-11-17 18:00:00,3.192543024,1000.685201,0.0,93.8,10.69666667,2.137916667,238.12301440000002 -2016-11-17 19:00:00,0.0,1000.604125,0.0,89.425,11.37083333,3.081833333,238.11946783333337 -2016-11-17 20:00:00,0.0,1000.412417,0.0,87.50833333,11.405,2.807416667,238.1167391 -2016-11-17 21:00:00,0.0,999.7665347000001,0.0,86.95833333,11.37916667,2.31675,238.11715195 -2016-11-17 22:00:00,0.0,999.3122430999999,0.0,86.075,11.60333333,2.915166667,238.11701435 -2016-11-17 23:00:00,0.0,998.2893680999999,0.0,86.88333333,11.55333333,2.778833333,238.11726741666666 -2016-11-18 00:00:00,0.0,997.4955277999999,0.0,86.575,11.71083333,2.571333333,238.11592600000003 -2016-11-18 01:00:00,0.0,996.5372431,0.0,86.63333333,12.1275,3.15125,238.11543088333335 -2016-11-18 02:00:00,0.0,995.8477847000001,0.0,87.78333333,11.96583333,2.796583333,238.11585163333336 -2016-11-18 03:00:00,0.0,994.9455277999999,0.0,84.93333333,12.235,2.516333333,238.11455296666665 -2016-11-18 04:00:00,0.0,993.9976597000001,0.0,84.5,12.15333333,2.682416667,238.11316565000004 -2016-11-18 05:00:00,0.0,993.5332917000002,0.0,88.75833333,11.67083333,3.460583333,238.11279863333334 -2016-11-18 06:00:00,0.0,993.1165764000001,0.0,84.75833333,12.46416667,3.6519999999999997,238.11159483333336 -2016-11-18 07:00:00,0.0,992.7249167000001,0.10625,83.80833333,12.58166667,3.774166667,238.10903691666667 -2016-11-18 08:00:00,216.8222539,993.6068125,4.9263333330000005,93.31666667,10.38,4.46775,238.10971238333335 -2016-11-18 09:00:00,39.78316029999999,994.8167986,23.804000000000002,96.53333333,8.207666667,2.345333333,238.1296250833333 -2016-11-18 10:00:00,8.750368992,994.9499097000001,50.385,98.325,8.182916667,2.2465833330000002,238.1498509666667 -2016-11-18 11:00:00,0.0,995.5126736,96.26833333,92.45833333,9.615833333,3.48825,238.15712445 -2016-11-18 12:00:00,0.0,996.0356736,54.34916667,87.70833333,9.581666667,3.711166667,238.1579486166667 -2016-11-18 13:00:00,0.0,996.1875902999999,37.82166667,84.53333333,9.054166667,3.7970833330000002,238.16339974999997 -2016-11-18 14:00:00,0.0,996.7876736,46.7275,82.40833333,9.124166667,4.049916667,238.16467 -2016-11-18 15:00:00,0.0,997.6481319000001,60.15416667,81.10333333,8.999166667,3.949083333,238.16231773333334 -2016-11-18 16:00:00,0.0,998.2521667000001,8.75125,83.63333333,8.440833332999999,2.4105,238.16184478333332 -2016-11-18 17:00:00,0.0,998.7856319,0.0305,80.62666667,7.944916667,1.26225,238.15990540000004 -2016-11-18 18:00:00,0.0,999.4940556,0.0,82.80833333,6.377583333,1.04975,238.1564268333333 -2016-11-18 19:00:00,0.0,1000.5042990000001,0.0,84.05833333,7.4611666670000005,2.447666667,238.15257496666666 -2016-11-18 20:00:00,0.0,1001.116965,0.0,81.355,7.236333332999999,2.696333333,238.15067671666668 -2016-11-18 21:00:00,0.0,1001.779299,0.0,83.48333333,6.58625,1.71175,238.1489667 -2016-11-18 22:00:00,0.0,1002.4417990000001,0.0,87.45,6.0229166670000005,1.213083333,238.14634553333335 -2016-11-18 23:00:00,0.0,1002.9500419999999,0.0,88.74166667,6.28625,1.95375,238.14316438333333 -2016-11-19 00:00:00,0.0,1003.358458,0.0,89.425,6.142166667000001,2.235583333,238.14164420000006 -2016-11-19 01:00:00,0.0,1003.304042,0.0,91.775,4.5105833330000005,0.912166667,238.14168850000001 -2016-11-19 02:00:00,0.0,1003.0375,0.0,99.59166667,1.7754166669999998,0.35016666700000004,238.13902931666667 -2016-11-19 03:00:00,0.0,1002.7622849999999,0.0,100.0,1.5468333330000001,0.71475,238.13838548333334 -2016-11-19 04:00:00,0.0,1002.099951,0.0,100.0,3.198083333,1.82175,238.13666601666668 -2016-11-19 05:00:00,0.0,1002.2230490000001,0.0,100.0,3.797583333,1.362333333,238.13172263333334 -2016-11-19 06:00:00,0.0,1002.312458,0.0,100.0,3.862083333,0.554666667,238.12865538333335 -2016-11-19 07:00:00,0.0,1002.262458,0.400083333,100.0,4.038833333,0.5720833329999999,238.12798151666667 -2016-11-19 08:00:00,0.0,1002.183375,21.95208333,100.0,3.3410833330000003,0.35766666700000005,238.12665113333333 -2016-11-19 09:00:00,2.407745568,1002.883465,20.9775,100.0,4.607833333,0.493166667,238.12302231666663 -2016-11-19 10:00:00,2.564755008,1003.008549,36.4525,97.28333333,6.0165,0.796416667,238.12117783333335 -2016-11-19 11:00:00,0.0,1003.399826,73.5225,92.375,6.85225,1.86475,238.11991393333335 -2016-11-19 12:00:00,3.056164584,1003.1375830000001,97.58333333,87.88333333,7.336333333,2.635,238.11722631666666 -2016-11-19 13:00:00,0.0,1003.685465,88.70916667,82.34166667,7.3979166670000005,3.044666667,238.11519516666667 -2016-11-19 14:00:00,0.0,1003.712625,109.26,75.67083333,8.09475,2.3369999999999997,238.1145054666667 -2016-11-19 15:00:00,0.0,1004.118882,35.3425,74.705,7.614583333,1.3445,238.11430773333333 -2016-11-19 16:00:00,0.0,1004.177083,4.952166667,77.19666667,7.266916667,2.157916667,238.11494523333332 -2016-11-19 17:00:00,0.0,1004.6147080000001,0.010333333,75.36583333,6.721416667000001,2.2105,238.11371453333334 -2016-11-19 18:00:00,0.0,1005.0584650000001,0.0,84.56083333,4.01875,1.14925,238.1117387666667 -2016-11-19 19:00:00,0.0,1005.237542,0.0,91.74166667,2.7073333330000002,1.113583333,238.11113450000002 -2016-11-19 20:00:00,0.0,1005.3395419999999,0.0,88.11666667,2.139166667,1.32275,238.1094925 -2016-11-19 21:00:00,0.0,1005.199958,0.0,89.41666667,2.78275,1.471333333,238.1078267833333 -2016-11-19 22:00:00,0.0,1004.7310349999999,0.0,91.075,2.941416667,1.900333333,238.10842156666664 -2016-11-19 23:00:00,0.0,1004.3249099999999,0.0,89.45,3.672583333,2.2021666669999997,238.10635880000004 -2016-11-20 00:00:00,0.0,1003.824875,0.0,90.35833333,3.621333333,2.294666667,238.10518979999998 -2016-11-20 01:00:00,0.0,1003.3790759999999,0.0,92.29166667,3.2551666669999997,2.5678333330000003,238.10517716666666 -2016-11-20 02:00:00,0.0,1002.735201,0.0,96.84166667,2.88175,1.8480833330000002,238.10761324999999 -2016-11-20 03:00:00,0.0,1001.7225279999999,0.0,93.26666667,2.968,1.9210833330000001,238.10540335 -2016-11-20 04:00:00,0.0,1000.595618,0.0,95.18333333,2.858666667,1.75825,238.10517554999998 -2016-11-20 05:00:00,0.0,999.7684027999999,0.0,89.90833333,3.5725,2.6149166669999997,238.10409831666664 -2016-11-20 06:00:00,0.0,998.656125,0.0,89.06666667,3.947166667,3.62275,238.10210671666667 -2016-11-20 07:00:00,0.0,998.2289445,0.2815,87.35,4.3325,4.202833333,238.10062764999998 -2016-11-20 08:00:00,0.0,997.3414514000001,14.51666667,81.83333333,5.067583333,4.566083333,238.10051218333334 -2016-11-20 09:00:00,0.0,996.3704931,62.095,76.0225,5.817166667,4.911833333,238.10029705000002 -2016-11-20 10:00:00,0.0,995.8832431,62.9975,69.43333333,6.595083333,5.4825,238.0992973 -2016-11-20 11:00:00,0.0,995.5499582999998,65.86833333,64.8725,7.574083333,3.9610000000000003,238.0979543 -2016-11-20 12:00:00,0.0,995.4250417000002,69.02416667,63.55083333,9.355,4.6915,238.09833078333335 -2016-11-20 13:00:00,0.0,995.70425,65.64333333,65.175,10.70916667,5.452999999999999,238.0963566 -2016-11-20 14:00:00,0.0,995.8500069,30.73416667,69.26333333,10.83833333,2.868416667,238.0961019 -2016-11-20 15:00:00,0.0,996.2440485999999,12.48533333,72.08166667,11.19583333,2.202083333,238.09474625000004 -2016-11-20 16:00:00,0.0,997.1960485999999,2.581833333,71.3275,11.58666667,2.29825,238.0933383833333 -2016-11-20 17:00:00,0.0,998.1210902999999,0.0,70.52333333,12.70916667,1.8459166669999998,238.09335101666667 -2016-11-20 18:00:00,0.0,998.58125,0.0,70.13166667,11.69416667,2.437083333,238.09241611666667 -2016-11-20 19:00:00,0.0,998.8730903,0.0,71.70833333,11.98666667,2.687416667,238.09168526666667 -2016-11-20 20:00:00,0.0,999.3000902999999,0.0,72.17583333,12.13416667,2.08075,238.09117751666668 -2016-11-20 21:00:00,0.0,999.6750832999999,0.0,71.2575,12.85083333,1.493416667,238.09179601666668 -2016-11-20 22:00:00,0.0,999.6499582999999,0.0,69.63,12.89916667,2.1688333330000003,238.09021891666666 -2016-11-20 23:00:00,0.0,999.6750902999999,0.0,69.9175,11.05333333,2.39775,238.09124398333327 -2016-11-21 00:00:00,0.0,999.9395347000001,0.0,67.61666667,10.76666667,2.78625,238.0898993833333 -2016-11-21 01:00:00,0.0,999.9375485999999,0.0,68.04083333,10.7275,2.236416667,238.0902284166667 -2016-11-21 02:00:00,0.0,1000.008285,0.0,73.05166667,10.825,2.157083333,238.09055111666666 -2016-11-21 03:00:00,0.0,1000.133465,0.0,59.51416667,11.23666667,2.2425,238.08857691666665 -2016-11-21 04:00:00,0.0,1000.491667,0.0,58.46,11.21333333,2.089333333,238.08600793333335 -2016-11-21 05:00:00,0.0,1000.1749580000001,0.0,72.2075,10.46666667,2.713083333,238.08686533333335 -2016-11-21 06:00:00,0.0,1000.3125,0.0,85.165,9.224166667,2.149833333,238.08858008333334 -2016-11-21 07:00:00,0.0,1000.262625,0.4685,95.825,8.620833333,0.384,238.08841873333336 -2016-11-21 08:00:00,0.0,1000.920965,4.051583333,75.34666667,9.363333333,1.704083333,238.08642239999998 -2016-11-21 09:00:00,0.0,1000.6726179999999,16.3975,75.98416667,9.4525,0.893166667,238.08684000000002 -2016-11-21 10:00:00,0.0,1000.250042,41.90416667,79.71916667,9.366666667,0.44025,238.08638915000003 -2016-11-21 11:00:00,0.0,999.8978264000001,44.44916667,80.30916667,9.631666667000001,0.42375,238.08427261666668 -2016-11-21 12:00:00,0.0,999.5622430999999,42.06666667,80.19916667,9.918333333,0.55075,238.08495441666665 -2016-11-21 13:00:00,0.0,999.3565555,46.98666667,81.92666667,10.0175,0.569083333,238.08652998333332 -2016-11-21 14:00:00,0.0,999.4811181,42.16666667,81.0275,10.3075,0.372666667,238.08499871666672 -2016-11-21 15:00:00,0.0,999.5625,22.27666667,81.58416667,10.26583333,0.71775,238.0856931333333 -2016-11-21 16:00:00,0.0,999.4310347,2.430583333,84.245,9.898333333,1.546583333,238.08528818333335 -2016-11-21 17:00:00,0.0,999.1293402999999,0.0,74.535,9.713333333,1.8925,238.08383285 -2016-11-21 18:00:00,0.0,999.1290764,0.0,74.3875,9.553333333,2.126833333,238.08327128333335 -2016-11-21 19:00:00,0.0,999.3668402999999,0.0,73.67666667,10.3275,2.308833333,238.08184286666668 -2016-11-21 20:00:00,0.0,999.5104167000002,0.0,81.86666667,10.25583333,1.012583333,238.08316054999997 -2016-11-21 21:00:00,0.0,999.675,0.0,88.49166667,9.329166667,0.45983333299999996,238.08325703333333 -2016-11-21 22:00:00,0.0,999.8875902999999,0.0,93.41666667,8.314583333,0.346583333,238.0841508166667 -2016-11-21 23:00:00,0.0,1000.4439169999999,0.0,96.84166667,6.889416667000001,0.24941666699999998,238.08450513333332 -2016-11-22 00:00:00,0.0,1000.8168400000001,0.0,99.65833333,5.80075,0.32908333300000003,238.08408753333333 -2016-11-22 01:00:00,0.0,1001.764931,0.0,100.0,5.801,0.289583333,238.08285526666666 -2016-11-22 02:00:00,0.0,1002.762632,0.0,100.0,5.808916667,0.18883333300000002,238.0819615 -2016-11-22 03:00:00,0.0,1003.125125,0.0,100.0,5.18225,0.334083333,238.08156443333334 -2016-11-22 04:00:00,0.0,1003.420833,0.0,100.0,4.70325,0.284916667,238.08264646666666 -2016-11-22 05:00:00,0.0,1003.733465,0.0,100.0,5.3965,1.126666667,238.08246296666664 -2016-11-22 06:00:00,0.0,1004.179382,0.0,100.0,6.4105,0.854833333,238.08094748333335 -2016-11-22 07:00:00,0.0,1004.843965,0.18283333300000001,100.0,6.19425,0.764083333,238.08029893333332 -2016-11-22 08:00:00,0.0,1005.937805,10.66275,100.0,6.134583332999999,0.629,238.07807006666667 -2016-11-22 09:00:00,0.0,1006.756465,39.14833333,100.0,6.196083333,0.45325,238.07734556666665 -2016-11-22 10:00:00,0.0,1007.446007,66.11333333,100.0,7.6565,0.288666667,238.07619871666665 -2016-11-22 11:00:00,0.0,1008.081292,79.88666667,98.38333333,9.295,0.5631666670000001,238.07556753333336 -2016-11-22 12:00:00,0.0,1008.377125,85.44,95.125,10.25166667,0.555916667,238.07470856666666 -2016-11-22 13:00:00,0.0,1008.297875,98.05833333,92.3,10.98166667,0.734083333,238.07435740000003 -2016-11-22 14:00:00,0.0,1007.962458,81.7475,92.33333333,10.42833333,1.47475,238.07461053333336 -2016-11-22 15:00:00,0.0,1008.220924,60.71416667,94.075,10.4175,1.31025,238.07484303333334 -2016-11-22 16:00:00,0.0,1008.406417,7.015,96.95833333,9.589166667,1.088,238.07634265000002 -2016-11-22 17:00:00,0.0,1008.98134,0.0,99.65833333,8.78,0.416833333,238.07564978333335 -2016-11-22 18:00:00,0.0,1009.062625,0.0,99.50833333,8.215333333,0.228916667,238.07673971666665 -2016-11-22 19:00:00,0.0,1010.112674,0.0,100.0,8.416666667000001,0.38983333299999995,238.07608008333332 -2016-11-22 20:00:00,0.0,1010.748132,0.0,100.0,8.11325,0.298,238.07567509999998 -2016-11-22 21:00:00,0.0,1010.98134,0.0,100.0,7.6559166670000005,0.273166667,238.07549955 -2016-11-22 22:00:00,0.0,1011.437542,0.0,100.0,7.502666667000001,0.35366666700000005,238.07517366666664 -2016-11-22 23:00:00,0.0,1011.2915830000001,0.0,100.0,6.6325,0.277083333,238.07603104999998 -2016-11-23 00:00:00,0.0,1011.05616,0.0,100.0,5.713833332999999,0.1515,238.0783627333333 -2016-11-23 01:00:00,0.0,1010.975132,0.0,100.0,4.850666667,0.3175,238.07701654999997 -2016-11-23 02:00:00,0.0,1011.4355,0.0,100.0,4.829583333,0.51025,238.07254933333334 -2016-11-23 03:00:00,0.0,1011.399917,0.0,100.0,4.546833333,0.3155,238.07430518333334 -2016-11-23 04:00:00,0.0,1011.5022150000001,0.0,100.0,4.104083333,0.34083333299999996,238.07538563333333 -2016-11-23 05:00:00,0.0,1012.062625,0.0,100.0,4.048166667,0.39,238.07431945 -2016-11-23 06:00:00,0.0,1012.304208,0.0,100.0,3.5971666669999998,0.20025,238.07481773333333 -2016-11-23 07:00:00,0.0,1012.787674,0.406583333,100.0,2.897916667,0.093416667,238.0751958 -2016-11-23 08:00:00,0.0,1013.4189240000001,17.3275,100.0,2.989833333,0.1745,238.07440486666667 -2016-11-23 09:00:00,0.0,1013.914757,66.64583333,100.0,5.90925,0.252333333,238.07058461666668 -2016-11-23 10:00:00,0.0,1014.177042,103.7016667,100.0,7.01375,0.24941666699999998,238.06909766666664 -2016-11-23 11:00:00,0.0,1014.266625,109.065,99.5,8.753583333,0.21866666699999998,238.06773721666664 -2016-11-23 12:00:00,0.0,1014.029076,151.0166667,92.85833333,11.6175,0.68375,238.06657931666666 -2016-11-23 13:00:00,0.0,1013.656208,176.6333333,85.99166667,12.4975,0.570916667,238.0670792 -2016-11-23 14:00:00,0.0,1013.577125,107.63,83.2,12.8275,1.102666667,238.06715669999997 -2016-11-23 15:00:00,0.0,1013.497917,38.37583333,91.75,11.48916667,0.18516666699999998,238.0698443 -2016-11-23 16:00:00,0.0,1013.6625,6.034333332999999,97.675,9.146666667,0.3395,238.06992655 -2016-11-23 17:00:00,0.0,1013.760458,0.0,99.825,7.8555,0.38591666700000005,238.0696750333333 -2016-11-23 18:00:00,0.0,1013.989632,0.0,100.0,7.161333332999999,0.38775,238.0700958166667 -2016-11-23 19:00:00,0.0,1013.8811599999999,0.0,100.0,6.876916667000001,0.35200000000000004,238.07082348333336 -2016-11-23 20:00:00,0.0,1013.8250419999999,0.0,100.0,6.728916667000001,0.255166667,238.07087251666664 -2016-11-23 21:00:00,0.0,1013.9333330000001,0.0,100.0,6.803083332999999,0.32275,238.07015118333334 -2016-11-23 22:00:00,0.0,1013.843799,0.0,98.7,7.83275,0.42958333299999996,238.06818650000002 -2016-11-23 23:00:00,0.0,1013.983208,0.0,99.83333333,8.529166667,0.33883333299999996,238.06794761666666 -2016-11-24 00:00:00,0.0,1013.604243,0.0,100.0,9.124166667,1.1675,238.0693112333333 -2016-11-24 01:00:00,0.0,1013.5395490000001,0.0,96.81666667,9.774166667000001,0.799333333,238.06808053333336 -2016-11-24 02:00:00,0.0,1013.785493,0.0,89.06666667,9.978333333,1.332166667,238.06645909999997 -2016-11-24 03:00:00,0.0,1013.84575,0.0,88.43333333,10.31416667,1.492666667,238.06490885000002 -2016-11-24 04:00:00,0.0,1013.654174,0.0,87.90833333,10.37166667,1.8,238.06587853333335 -2016-11-24 05:00:00,0.0,1013.7,0.0,89.34166667,9.91,1.2955,238.0654198 -2016-11-24 06:00:00,0.0,1013.720951,0.0,88.825,10.21333333,2.06375,238.06711875 -2016-11-24 07:00:00,0.0,1014.185507,0.317083333,89.525,9.733333333,2.04975,238.06452443333333 -2016-11-24 08:00:00,0.0,1014.677174,16.0855,90.625,9.728333333,2.27375,238.06682764999996 -2016-11-24 09:00:00,0.0,1015.235674,52.79916667,89.76666667,10.4775,2.52325,238.06441529999998 -2016-11-24 10:00:00,0.0,1015.789674,94.8875,87.3,10.97,3.14,238.06411318333335 -2016-11-24 11:00:00,0.0,1015.8394509999999,83.72583333,85.99166667,11.46833333,4.754416667,238.06354686666668 -2016-11-24 12:00:00,0.0,1015.377,145.35,85.45833333,11.84083333,4.452583333,238.0619808 -2016-11-24 13:00:00,0.0,1015.089535,151.275,85.0,11.90666667,4.424166667,238.06157108333335 -2016-11-24 14:00:00,0.0,1015.0291179999999,84.91583333,85.55,11.67083333,3.7513333330000003,238.0618843166667 -2016-11-24 15:00:00,0.0,1014.75409,40.125,88.13333333,10.49083333,3.494916667,238.06350415 -2016-11-24 16:00:00,0.0,1014.614625,5.2531666669999995,90.13333333,9.691666667,3.496166667,238.06332539999997 -2016-11-24 17:00:00,0.0,1015.002208,0.0,91.08333333,8.901666667,3.378083333,238.06260878333333 -2016-11-24 18:00:00,0.0,1015.410514,0.0,92.51666667,8.399166667000001,3.447083333,238.06387270000002 -2016-11-24 19:00:00,0.0,1015.937701,0.0,93.83333333,8.07125,2.76275,238.06359746666666 -2016-11-24 20:00:00,0.0,1016.1749580000001,0.0,94.225,7.743583332999999,3.7135,238.06346933333336 -2016-11-24 21:00:00,0.0,1016.114549,0.0,93.475,7.800666667000001,4.6835,238.06233356666667 -2016-11-24 22:00:00,0.0,1016.00625,0.0,93.94166667,7.6915,4.19775,238.0619254166667 -2016-11-24 23:00:00,0.0,1016.160375,0.0,93.8,7.494333332999999,4.696583333,238.0609731333333 -2016-11-25 00:00:00,0.0,1015.939576,0.0,93.23333333,7.245166667,4.76625,238.06170396666667 -2016-11-25 01:00:00,0.0,1015.722792,0.0,93.54166667,6.968,5.203666667,238.06149040000003 -2016-11-25 02:00:00,0.0,1015.560417,0.0,93.73333333,6.558833333,5.12825,238.06228133333332 -2016-11-25 03:00:00,0.0,1015.156076,0.0,94.55,6.365833332999999,4.84025,238.0632209833333 -2016-11-25 04:00:00,0.0,1014.810458,0.0,95.21666667,6.069166667,5.483916667000001,238.06241425 -2016-11-25 05:00:00,0.0,1014.7853259999999,0.0,94.76666667,5.884166667000001,5.242999999999999,238.06391388333336 -2016-11-25 06:00:00,0.0,1014.8480490000001,0.0,94.79166667,5.8965,4.3303333330000005,238.06130691666667 -2016-11-25 07:00:00,0.0,1014.858292,0.135833333,94.98333333,5.748666667,3.5725,238.0622782 -2016-11-25 08:00:00,0.0,1015.056382,8.925833333,94.19166667,5.560333332999999,4.258166667,238.06080705 -2016-11-25 09:00:00,0.0,1015.510458,52.33166667,93.38333333,5.737666667,4.1906666669999995,238.05997815 -2016-11-25 10:00:00,0.0,1015.702215,101.825,90.74166667,6.10525,5.061,238.06035459999998 -2016-11-25 11:00:00,0.0,1016.00416,89.98666667,86.90833333,6.434083332999999,5.072166667,238.05785210000002 -2016-11-25 12:00:00,0.0,1015.8645,173.66666669999998,81.32833333,7.07625,4.900166667,238.05810046666662 -2016-11-25 13:00:00,0.0,1015.504083,172.29166669999998,72.9775,7.922416667,4.270333333,238.05740598333333 -2016-11-25 14:00:00,0.0,1015.40625,129.1916667,68.9525,8.1225,4.371,238.05634930000005 -2016-11-25 15:00:00,0.0,1015.2020349999999,60.67916667,70.19,7.4079999999999995,3.688916667,238.05814631666667 -2016-11-25 16:00:00,0.0,1015.387632,5.812583332999999,76.23833333,5.945333333,3.3369999999999997,238.06040841666663 -2016-11-25 17:00:00,0.0,1015.681208,0.0,81.1775,5.783666667,3.950583333,238.06004931666666 -2016-11-25 18:00:00,0.0,1015.96059,0.0,84.73333333,5.532666667000001,1.652916667,238.05942761666665 -2016-11-25 19:00:00,0.0,1016.2812849999999,0.0,88.30833333,5.279916667,2.385166667,238.05885498333336 -2016-11-25 20:00:00,0.0,1016.3625490000001,0.0,90.15,4.7946666669999995,2.1285,238.05970920000001 -2016-11-25 21:00:00,0.0,1016.427083,0.0,92.7,4.4885,1.855666667,238.0599338333333 -2016-11-25 22:00:00,0.0,1016.425007,0.0,93.55,3.863333333,2.384666667,238.0593691 -2016-11-25 23:00:00,0.0,1016.36041,0.0,94.14166667,3.811083333,2.592916667,238.05896098333335 -2016-11-26 00:00:00,0.0,1016.066542,0.0,94.85833333,3.9595833330000003,1.729333333,238.05925046666667 -2016-11-26 01:00:00,0.0,1015.914542,0.0,94.99166667,4.03,1.65275,238.05727155 -2016-11-26 02:00:00,0.0,1015.8645759999999,0.0,95.19166667,3.99675,1.53275,238.05835355 -2016-11-26 03:00:00,0.0,1015.75825,0.0,95.15833333,3.933583333,1.7525,238.05767018333333 -2016-11-26 04:00:00,0.0,1015.4249169999999,0.0,95.31666667,3.839833333,1.341083333,238.0572319666667 -2016-11-26 05:00:00,0.0,1015.158285,0.0,95.93333333,3.534833333,1.905666667,238.05723196666665 -2016-11-26 06:00:00,0.0,1015.114542,0.0,96.79166667,3.2945,1.221833333,238.05700738333334 -2016-11-26 07:00:00,0.0,1015.170965,0.15691666699999998,97.60833333,3.13575,1.197416667,238.05695200000002 -2016-11-26 08:00:00,0.0,1015.414542,7.0148333329999994,98.65,2.882166667,1.9265833330000002,238.05512336666666 -2016-11-26 09:00:00,0.0,1015.427125,24.915,99.175,2.84125,1.9835,238.05502688333334 -2016-11-26 10:00:00,0.0,1015.3416179999999,46.4275,98.98333333,2.946416667,1.82975,238.05628126666667 -2016-11-26 11:00:00,0.0,1015.129083,72.5725,96.43333333,3.417916667,1.398166667,238.05454598333336 -2016-11-26 12:00:00,0.0,1014.616493,78.56,93.41666667,4.0215,0.7426666670000001,238.05471203333332 -2016-11-26 13:00:00,0.0,1014.01441,72.24833333,91.0,4.886083333,0.6995,238.05458395000005 -2016-11-26 14:00:00,0.0,1013.489458,58.305,90.24166667,5.411666667,0.727166667,238.05405714999998 -2016-11-26 15:00:00,0.0,1013.258285,43.76333333,89.69166667,5.520083333,0.027083332999999998,238.05292136666665 -2016-11-26 16:00:00,0.0,1013.027132,7.357166667,96.06666667,3.705916667,0.11558333300000001,238.05542705000002 -2016-11-26 17:00:00,0.0,1013.266708,0.0,98.375,3.948666667,0.0025833329999999997,238.05595226666665 -2016-11-26 18:00:00,0.0,1013.295792,0.0,98.65,4.383916667,0.028333333,238.0558098833333 -2016-11-26 19:00:00,0.0,1013.433375,0.0,97.95833333,4.448583333,0.00041666699999999996,238.05517713333333 -2016-11-26 20:00:00,0.0,1013.472875,0.0,98.49166667,4.1739999999999995,0.065,238.05494775 -2016-11-26 21:00:00,0.0,1013.420958,0.0,99.725,4.08925,0.144583333,238.05522774999997 -2016-11-26 22:00:00,0.0,1013.5499169999999,0.0,99.73333333,3.492916667,0.286166667,238.05476901666665 -2016-11-26 23:00:00,0.0,1013.420833,0.0,100.0,2.7560000000000002,0.147416667,238.05596649999998 -2016-11-27 00:00:00,0.0,1013.3375,0.0,100.0,3.380666667,0.29741666699999997,238.05546663333334 -2016-11-27 01:00:00,0.0,1013.179118,0.0,100.0,2.596083333,0.506083333,238.0563145166667 -2016-11-27 02:00:00,0.0,1013.002,0.0,100.0,0.998416667,0.1425,238.05649483333332 -2016-11-27 03:00:00,0.0,1012.987542,0.0,100.0,2.113416667,0.46683333299999996,238.05677166666666 -2016-11-27 04:00:00,0.0,1013.002042,0.0,99.675,3.607333333,0.428,238.0536316333333 -2016-11-27 05:00:00,0.0,1013.141757,0.0,97.53333333,4.210166667,0.64075,238.05243258333334 -2016-11-27 06:00:00,0.0,1013.283375,0.0,97.76666667,4.526166667,0.79325,238.0527220833333 -2016-11-27 07:00:00,0.0,1013.46059,0.07275,97.60833333,4.600416667,0.662416667,238.05291976666663 -2016-11-27 08:00:00,0.0,1014.391917,6.560583332999999,97.1,5.263833333,1.300666667,238.04982088333335 -2016-11-27 09:00:00,0.0,1014.910424,28.02083333,95.60833333,5.6055,1.31325,238.04980983333334 -2016-11-27 10:00:00,0.0,1015.120958,60.03083333,94.58333333,5.986833333,1.165666667,238.0511449166667 -2016-11-27 11:00:00,0.0,1015.2895,78.86916667,92.1,6.726083332999999,1.7404166669999999,238.04999650000002 -2016-11-27 12:00:00,0.0,1014.935375,105.06083329999998,88.25833333,7.1093333329999995,1.377583333,238.0506688 -2016-11-27 13:00:00,0.0,1014.591583,68.83333333,80.99583333,7.62625,1.6133333330000001,238.04959783333334 -2016-11-27 14:00:00,0.0,1014.470826,70.58333333,81.43916667,6.93875,1.306166667,238.04979716666665 -2016-11-27 15:00:00,0.0,1014.68559,26.06166667,78.38166667,6.863666667,2.218833333,238.05120345 -2016-11-27 16:00:00,0.0,1015.191715,4.417166667,85.94166667,5.915916667,1.184166667,238.05085225000002 -2016-11-27 17:00:00,0.0,1015.5835490000001,0.0,96.56666667,4.546333333,0.6901666670000001,238.05148344999998 -2016-11-27 18:00:00,0.0,1016.362674,0.0,99.43333333,3.6775833330000003,0.884,238.05251165 -2016-11-27 19:00:00,0.0,1016.943833,0.0,100.0,2.05425,0.4875,238.05222220000005 -2016-11-27 20:00:00,0.0,1017.327167,0.0,100.0,-0.02975,0.43125,238.05323456666665 -2016-11-27 21:00:00,0.0,1017.591799,0.0,100.0,-0.972333333,0.32658333300000003,238.05380404999997 -2016-11-27 22:00:00,0.0,1017.964625,0.0,100.0,-1.373833333,0.35116666700000004,238.05261765 -2016-11-27 23:00:00,0.0,1018.375257,0.0,100.0,-1.287916667,0.24875,238.0527505333333 -2016-11-28 00:00:00,0.0,1018.9687849999999,0.0,100.0,-1.663666667,0.235583333,238.0517492 -2016-11-28 01:00:00,0.0,1019.2126390000001,0.0,100.0,-1.82625,0.35283333299999997,238.05227595 -2016-11-28 02:00:00,0.0,1019.708375,0.0,100.0,-1.448166667,0.39075,238.05100886666665 -2016-11-28 03:00:00,0.0,1019.664625,0.0,100.0,-2.49125,0.12125,238.0525670333333 -2016-11-28 04:00:00,0.0,1019.977083,0.0,100.0,-3.06875,0.36541666700000003,238.05346236666665 -2016-11-28 05:00:00,0.0,1020.310632,0.0,100.0,-3.563583333,0.1855,238.05294666666666 -2016-11-28 06:00:00,0.0,1020.973083,0.0,100.0,-4.007166667,0.0835,238.05336590000002 -2016-11-28 07:00:00,0.0,1021.57518,0.236416667,100.0,-3.89275,0.535666667,238.05346238333334 -2016-11-28 08:00:00,0.0,1022.408674,7.839333333,100.0,-1.894166667,0.702416667,238.05187576666665 -2016-11-28 09:00:00,0.0,1023.2918470000001,19.09,100.0,-0.3595,0.1985,238.0482564166667 -2016-11-28 10:00:00,0.0,1024.271139,97.335,99.23333333,0.5708333329999999,2.165083333,238.0451796666667 -2016-11-28 11:00:00,3.038256072,1024.710382,74.26833333,91.3,1.460083333,3.214083333,238.0449993 -2016-11-28 12:00:00,0.0,1024.8188400000001,193.04166669999998,86.68,2.638833333,3.7799166669999997,238.04410396666665 -2016-11-28 13:00:00,0.0,1025.016611,176.94166669999998,75.3325,2.488833333,3.590833333,238.04274516666666 -2016-11-28 14:00:00,0.0,1025.221042,110.86166670000001,74.31833333,2.6444166669999998,3.05275,238.0424272 -2016-11-28 15:00:00,0.0,1025.518681,63.555,76.23083333,1.7683333330000002,2.881166667,238.04436656666667 -2016-11-28 16:00:00,0.0,1025.733493,5.959083333,83.02333333,0.41183333299999997,1.263666667,238.0447082666667 -2016-11-28 17:00:00,0.0,1026.11675,0.024916667000000003,93.775,-0.934583333,0.5555,238.04539321666664 -2016-11-28 18:00:00,0.0,1026.52934,0.0,96.675,-1.8935,0.716166667,238.04807925 -2016-11-28 19:00:00,0.0,1027.24809,0.0,98.975,-3.07975,0.327416667,238.0466681833333 -2016-11-28 20:00:00,0.0,1027.639667,0.0,99.925,-4.1355,0.237833333,238.04764423333333 -2016-11-28 21:00:00,0.0,1028.012632,0.0,100.0,-4.350583333,0.46041666700000006,238.04794794999998 -2016-11-28 22:00:00,0.0,1028.241625,0.0,100.0,-4.363333333,0.32425,238.04675518333337 -2016-11-28 23:00:00,0.0,1028.475083,0.0,100.0,-4.87175,0.207333333,238.04737053333338 -2016-11-29 00:00:00,0.0,1028.587583,0.0,99.975,-5.0904166669999995,0.26358333300000003,238.04688175 -2016-11-29 01:00:00,0.0,1028.889667,0.0,99.91666667,-5.720916667000001,0.37125,238.04410240000004 -2016-11-29 02:00:00,0.0,1028.983299,0.0,99.95,-5.228166667,0.48308333299999995,238.04415616666665 -2016-11-29 03:00:00,0.0,1028.81666,0.0,99.79166667,-6.20075,0.18891666699999998,238.04596266666667 -2016-11-29 04:00:00,0.0,1028.839542,0.0,99.54166667,-6.850583332999999,0.240083333,238.04580131666668 -2016-11-29 05:00:00,0.0,1028.716701,0.0,99.19166667,-7.2729166670000005,0.26516666699999997,238.04657805000002 -2016-11-29 06:00:00,0.0,1028.808333,0.0,99.0,-7.600083333,0.08391666699999999,238.04689441666665 -2016-11-29 07:00:00,0.0,1029.012625,0.197083333,98.86666667,-7.884666667,0.08825,238.0456289166667 -2016-11-29 08:00:00,0.0,1029.373049,6.8034166670000005,98.93333333,-7.6615,0.130583333,238.0459500333333 -2016-11-29 09:00:00,0.0,1030.095924,17.68333333,99.65833333,-4.179083333,0.070416667,238.04298085000002 -2016-11-29 10:00:00,0.0,1030.495986,84.2475,99.725,-1.089416667,0.07825,238.0410051 -2016-11-29 11:00:00,0.0,1030.556153,65.41666667,97.175,-0.5865,0.47333333299999997,238.03875564999998 -2016-11-29 12:00:00,0.0,1030.139514,176.7416667,90.48333333,1.0290000000000001,0.56525,238.0379615666667 -2016-11-29 13:00:00,0.0,1029.949951,185.2666667,82.02333333,2.035416667,0.468583333,238.03736834999998 -2016-11-29 14:00:00,0.0,1029.829167,131.1416667,79.35333333,2.435916667,0.46866666700000004,238.03732878333335 -2016-11-29 15:00:00,0.0,1029.664493,62.32833333,81.51916667,1.528583333,0.7125,238.03710415 -2016-11-29 16:00:00,0.0,1029.341618,5.047666667,94.15833333,-1.222,0.38983333299999995,238.0402109833333 -2016-11-29 17:00:00,0.0,1029.224952,0.017416667,97.46666667,-3.1215833330000002,0.421916667,238.04151921666667 -2016-11-29 18:00:00,0.0,1029.170708,0.0,99.21666667,-4.0815,0.50775,238.04290491666669 -2016-11-29 19:00:00,0.0,1029.037618,0.0,99.46666667,-4.894833333,0.4015,238.0432592666667 -2016-11-29 20:00:00,0.0,1029.385549,0.0,99.88333333,-5.614666667000001,0.30141666699999997,238.04213613333334 -2016-11-29 21:00:00,0.0,1029.5875,0.0,99.86666667,-6.51275,0.12275,238.04180553333333 -2016-11-29 22:00:00,0.0,1029.41241,0.0,99.75833333,-6.7961666670000005,0.1685,238.04115060000004 -2016-11-29 23:00:00,0.0,1028.9949800000002,0.0,99.75,-6.91875,0.423416667,238.04078298 -2016-11-30 00:00:00,0.0,1028.709043,0.0,99.65,-7.274083332999999,0.27399999999999997, -2016-11-30 01:00:00,0.0,1028.474839,0.0,99.475,-7.741083333,0.161916667, -2016-11-30 02:00:00,0.0,1028.2406349999999,0.0,99.45833333,-7.902666667,0.252416667, -2016-11-30 03:00:00,0.0,1028.006431,0.0,99.30833333,-7.682166667000001,0.44941666700000005, -2016-11-30 04:00:00,0.0,1027.772227,0.0,99.08333333,-7.740416667000001,0.38583333299999995, -2016-11-30 05:00:00,0.0,1027.538024,0.0,98.83333333,-8.07375,0.322166667, -2016-11-30 06:00:00,0.0,1027.3038199999999,0.0,99.05833333,-7.788416667000001,0.35725, -2016-11-30 07:00:00,0.0,1027.0696169999999,0.128,98.63333333,-8.3,0.2615, -2016-11-30 08:00:00,0.0,1026.835413,9.416916667,98.94166667,-7.793416667000001,0.473416667, -2016-11-30 09:00:00,0.0,1026.601209,39.23333333,98.925,-5.256416667,0.274416667, -2016-11-30 10:00:00,0.0,1026.367006,87.65916667,97.975,-2.879083333,0.536166667, -2016-11-30 11:00:00,0.0,1026.1328019999999,84.17833333,83.50333333,-0.8301666670000001,0.614583333, -2016-11-30 12:00:00,0.0,1025.898597,158.9083333,67.76333333,1.2055,0.763166667, -2016-11-30 13:00:00,0.0,1025.664394,149.4666667,61.0275,2.21225,1.157, -2016-11-30 14:00:00,0.0,1025.430191,144.2166667,59.84083333,2.683083333,1.608916667, -2016-11-30 15:00:00,0.0,1025.1959869999998,59.205,57.09,2.6528333330000002,0.7314166670000001, -2016-11-30 16:00:00,0.0,1024.961783,5.767666667,59.62333333,0.7523333329999999,0.05625, -2016-11-30 17:00:00,0.0,1024.72758,0.0,66.02416667,-0.943916667,0.235166667, -2016-11-30 18:00:00,0.0,1024.493376,0.0,58.6325,-1.452083333,0.161833333, -2016-11-30 19:00:00,0.0,1024.259172,0.0,60.55333333,-1.5746666669999998,0.26125, -2016-11-30 20:00:00,0.0,1024.024969,0.0,64.68416667,1.4384166669999998,1.005833333, -2016-11-30 21:00:00,0.0,1023.7907650000001,0.0,68.38333333,1.8520833330000002,1.040833333, -2016-11-30 22:00:00,0.0,1023.556561,0.0,70.07666667,1.8420833330000002,0.877, -2016-11-30 23:00:00,0.0,1023.322358,0.0,73.51333333,1.81825,0.531416667, -2016-01-12 00:00:00,0.0,1023.0881529999999,0.0,73.36166667,2.0980000000000003,0.980083333,238.10099858333334 -2016-01-12 01:00:00,0.0,1022.85395,0.0,74.28416667,2.298166667,0.8544166670000001,238.1060093 -2016-01-12 02:00:00,0.0,1022.6197460000001,0.0,75.85416667,2.413416667,1.156,238.1117358 -2016-01-12 03:00:00,0.0,1022.385542,0.0,76.25,2.44475,0.909666667,238.11692543333334 -2016-01-12 04:00:00,0.0,1022.151339,0.0,78.55333333,2.61375,1.410833333,238.11996765 -2016-01-12 05:00:00,0.0,1021.9171349999999,0.0,81.44166667,2.7110000000000003,1.7855,238.1237256833334 -2016-01-12 06:00:00,0.0,1021.682932,0.0,84.2,2.8649166669999997,1.37875,238.1231888166667 -2016-01-12 07:00:00,0.0,1021.448728,0.0,86.55833333,3.0093333330000003,2.03175,238.12336778333338 -2016-01-12 08:00:00,0.0,1021.214524,3.4845,88.21666667,3.12175,1.6965833330000002,238.12283088333334 -2016-01-12 09:00:00,0.0,1020.9803199999999,15.2,89.13333333,3.375916667,1.5749166669999999,238.12569415 -2016-01-12 10:00:00,0.0,1020.746117,35.2825,89.41666667,3.737916667,2.003,238.12354673333337 -2016-01-12 11:00:00,0.0,1020.511913,54.21,88.83333333,4.26075,1.824416667,238.12247296666666 -2016-01-12 12:00:00,0.0,1020.277709,44.015,89.625,4.040666667,2.216916667,238.14484215000002 -2016-01-12 13:00:00,0.0,1020.0435060000001,24.74583333,91.16666667,3.82225,2.359416667,238.07343978333336 -2016-01-12 14:00:00,0.0,1019.809302,11.69433333,93.375,3.84,2.048666667,238.07326079999999 -2016-01-12 15:00:00,0.0,1019.575098,6.62025,94.45,3.87325,1.39125, -2016-01-12 16:00:00,0.0,1019.3408949999999,1.081,95.075,3.921416667,1.4416666669999998, -2016-01-12 17:00:00,0.0,1019.17606,0.0,94.99166667,3.90925,1.715416667, -2016-01-12 18:00:00,0.0,1018.6208330000001,0.0,94.79166667,3.967083333,2.0705, -2016-01-12 19:00:00,0.0,1018.29375,0.0,95.725,4.023583333,1.625083333, -2016-01-12 20:00:00,0.0,1018.241319,0.0,96.68333333,4.1523333330000005,1.182916667, -2016-01-12 21:00:00,0.0,1018.146528,0.0,96.48333333,4.35625,0.968833333, -2016-01-12 22:00:00,0.0,1017.773264,0.0,96.20833333,4.994,2.18675, -2016-01-12 23:00:00,0.0,1017.303819,0.0,95.25833333,5.36625,2.3585833330000003, -2016-02-12 00:00:00,0.0,1017.1045140000001,0.0,95.26666667,5.560916667000001,2.69275,238.16649553333335 -2016-02-12 01:00:00,0.0,1016.58125,0.0,95.05,5.7190833329999995,2.090083333,238.1641691 -2016-02-12 02:00:00,0.0,1016.252431,0.0,94.375,5.76775,1.712,238.16237959999998 -2016-02-12 03:00:00,0.0,1015.931597,0.0,90.96666667,6.439916667,1.155916667,238.16273749999996 -2016-02-12 04:00:00,0.0,1015.804167,0.0,91.04166667,6.628083332999999,1.27725,238.16220064999996 -2016-02-12 05:00:00,0.0,1015.764583,0.0,93.775,6.34475,1.383833333,238.16184274999998 -2016-02-12 06:00:00,0.0,1015.720833,0.0,95.94166667,6.025666667,1.6405833330000001,238.16237959999998 -2016-02-12 07:00:00,0.0,1015.812153,0.07375,96.625,6.070416667000001,1.93475,238.16094796666664 -2016-02-12 08:00:00,0.0,1016.2458330000001,7.093166667,97.55833333,6.26475,1.9251666669999998,238.16220064999996 -2016-02-12 09:00:00,0.0,1016.601736,33.67333333,96.85833333,6.793916667,2.02,238.15862155 -2016-02-12 10:00:00,0.0,1017.085417,74.57333333,94.9,7.402916667,2.19775,238.15540043333337 -2016-02-12 11:00:00,53.41856875,1017.130903,40.94833333,94.63333333,7.4844166670000005,1.2760833329999999,238.15504250000004 -2016-02-12 12:00:00,15.16571594,1017.227431,21.36316667,98.54166667,6.5781666670000005,1.193916667,238.15486351666667 -2016-02-12 13:00:00,0.0,1017.357986,38.28916667,99.55833333,6.786583332999999,1.8094166669999998,238.15361084999998 -2016-02-12 14:00:00,2.9916784080000003,1017.5,35.69916667,94.86666667,5.8015,2.241333333,238.15271611666665 -2016-02-12 15:00:00,0.0,1017.916667,19.295,97.20833333,5.366833333,0.30075,238.15182133333334 -2016-02-12 16:00:00,0.0,1018.1204859999999,3.6190833330000003,99.91666667,2.06475,0.6475,238.15361086666667 -2016-02-12 17:00:00,0.0,1018.28125,0.004666667,100.0,0.43691666700000004,0.582583333,238.15486355000004 -2016-02-12 18:00:00,0.0,1018.45,0.0,100.0,-0.43441666700000003,0.368166667,238.15396876666668 -2016-02-12 19:00:00,0.0,1018.7065970000001,0.0,100.0,-1.046333333,0.330916667,238.15307399999998 -2016-02-12 20:00:00,0.0,1019.0725689999999,0.0,100.0,-1.586916667,0.22125,238.15361086666667 -2016-02-12 21:00:00,0.0,1019.064583,0.0,100.0,-2.3296666669999997,0.201,238.15343191666668 -2016-02-12 22:00:00,0.0,1019.170833,0.0,100.0,-2.8575,0.105083333,238.15289504999998 -2016-02-12 23:00:00,0.0,1019.360069,0.0,100.0,-3.9163333330000003,0.017583333,238.15110554999998 -2016-03-12 00:00:00,0.0,1019.5357640000001,0.0,100.0,-4.337166667,0.00875,238.18224813333333 -2016-03-12 01:00:00,0.0,1019.5583330000001,0.0,100.0,-4.292333333,0.049666667000000005,238.18308395 -2016-03-12 02:00:00,0.0,1019.622569,0.0,100.0,-3.984666667,0.061666667,238.18308395 -2016-03-12 03:00:00,0.0,1019.6604169999999,0.0,99.925,-3.928833333,0.12708333300000002,238.18183016666669 -2016-03-12 04:00:00,0.0,1019.602431,0.0,99.95833333,-4.310833333,0.324666667,238.1816212 -2016-03-12 05:00:00,0.0,1019.857986,0.0,100.0,-4.427166667,0.302333333,238.18162120000002 -2016-03-12 06:00:00,0.0,1019.9125,0.0,99.44166667,-4.865166667,0.192083333,238.18141223333336 -2016-03-12 07:00:00,0.0,1020.06875,0.11766666699999999,99.20833333,-5.1255,0.296083333,238.18183018333332 -2016-03-12 08:00:00,0.0,1020.485069,5.8645,99.09166667,-5.515833333,0.08608333300000001,238.1822481 -2016-03-12 09:00:00,0.0,1020.9875,16.5025,99.91666667,-4.392166667,0.033,238.1795316166667 -2016-03-12 10:00:00,0.0,1021.3243060000001,73.28,100.0,-1.5566666669999998,0.18666666699999998,238.1786957666667 -2016-03-12 11:00:00,0.0,1021.64375,65.04,100.0,-0.26916666699999997,0.6335833329999999,238.17911370000004 -2016-03-12 12:00:00,2.50219908,1021.520833,180.44416669999998,99.46666667,0.52575,0.7885833329999999,238.17702403333337 -2016-03-12 13:00:00,0.0,1021.602083,204.0333333,95.025,2.7206666669999997,0.319916667,238.17618818333332 -2016-03-12 14:00:00,0.0,1021.360417,159.5,92.0,2.968,0.64525,238.17702405 -2016-03-12 15:00:00,0.0,1021.116319,71.49083333,93.48333333,2.7688333330000003,0.5655,238.17932263333338 -2016-03-12 16:00:00,0.0,1020.9815970000001,5.311166667,98.95833333,-0.5499166670000001,0.44158333299999997,238.1786957666667 -2016-03-12 17:00:00,0.0,1021.0486109999999,0.009416667,100.0,-2.222666667,0.28375,238.18162123333332 -2016-03-12 18:00:00,0.0,1021.4017359999999,0.0,100.0,-3.2519166669999997,0.28375,238.18057643333336 -2016-03-12 19:00:00,0.0,1021.7125,0.0,100.0,-3.8539999999999996,0.4655,238.17953160000002 -2016-03-12 20:00:00,0.0,1021.7940970000001,0.0,100.0,-4.578666667,0.332583333,238.17974058333337 -2016-03-12 21:00:00,0.0,1022.032639,0.0,100.0,-5.391916667,0.235916667,238.17806886666668 -2016-03-12 22:00:00,0.0,1022.0503470000001,0.0,99.975,-5.950166667,0.292416667,238.1786957666667 -2016-03-12 23:00:00,0.0,1022.210417,0.0,99.90833333,-6.394083332999999,0.17175,238.17994953333334 -2016-04-12 00:00:00,0.0,1022.36007,0.0,99.66666667,-6.7695,0.23875,238.19415889999996 -2016-04-12 01:00:00,0.0,1022.3857640000001,0.0,99.475,-7.120833332999999,0.141083333,238.19499476666667 -2016-04-12 02:00:00,0.0,1022.6625,0.0,99.14166667,-7.491916667000001,0.141,238.19394996666668 -2016-04-12 03:00:00,0.0,1022.577083,0.0,98.99166667,-7.642166667000001,0.285,238.19248723333337 -2016-04-12 04:00:00,0.0,1022.4190970000001,0.0,98.875,-7.7925,0.26916666699999997,238.19290518333335 -2016-04-12 05:00:00,0.0,1022.4892359999999,0.0,98.75833333,-8.129083332999999,0.198666667,238.1931141 -2016-04-12 06:00:00,0.0,1022.6357640000001,0.0,98.6,-8.301666667000001,0.239,238.18977071666666 -2016-04-12 07:00:00,0.0,1022.797569,0.041916667000000005,98.425,-8.353333333,0.331583333,238.18747213333333 -2016-04-12 08:00:00,0.0,1023.241319,5.507999999999999,98.31666667,-8.360333333,0.200333333,238.1883079833333 -2016-04-12 09:00:00,0.0,1023.9725689999999,17.195,99.06666667,-5.530333333,0.1615,238.18747215 -2016-04-12 10:00:00,0.0,1024.211806,75.8225,99.8,-2.7765,0.64175,238.18559148333335 -2016-04-12 11:00:00,0.0,1024.151736,68.00083333,98.9,0.29991666699999997,0.236083333,238.18308394999997 -2016-04-12 12:00:00,0.0,1024.052083,163.5566667,96.38333333,1.7084166669999998,0.137583333,238.1835018666667 -2016-04-12 13:00:00,2.406839208,1023.758681,196.04166669999998,92.39166667,1.48175,0.807333333,238.18371085 -2016-04-12 14:00:00,0.0,1023.479167,150.5333333,88.49166667,1.79475,1.125583333,238.1835018833333 -2016-04-12 15:00:00,0.0,1023.235764,65.66083333,90.30833333,1.077583333,1.159166667,238.18203915 -2016-04-12 16:00:00,0.0,1023.072917,4.473916667,96.91666667,-1.076666667,0.165583333,238.18433771666665 -2016-04-12 17:00:00,0.0,1023.116667,0.0,99.45833333,-2.900583333,0.3915,238.18475561666665 -2016-04-12 18:00:00,0.0,1023.25625,0.0,99.925,-4.301833333,0.494333333,238.18538249999997 -2016-04-12 19:00:00,0.0,1023.529167,0.0,99.94166667,-5.45675,0.159,238.18642731666668 -2016-04-12 20:00:00,0.0,1023.697917,0.0,99.85,-6.154,0.22041666699999998,238.19123343333334 -2016-04-12 21:00:00,0.0,1023.775,0.0,99.80833333,-6.690083333,0.239166667,238.19436788333334 -2016-04-12 22:00:00,0.0,1023.6461810000001,0.0,99.68333333,-7.126416667000001,0.21591666699999998,238.1952037333333 -2016-04-12 23:00:00,0.0,1023.9,0.0,99.69166667,-7.372166667,0.304416667,238.19394996666665 -2016-05-12 00:00:00,0.0,1023.7065970000001,0.0,99.34166667,-7.495666667,0.309083333,238.08790493333336 -2016-05-12 01:00:00,0.0,1023.19375,0.0,99.275,-7.879916667000001,0.2295,238.08959458333337 -2016-05-12 02:00:00,0.0,1022.994097,0.0,99.15833333,-8.325833333,0.1035,238.08858080000002 -2016-05-12 03:00:00,0.0,1023.014583,0.0,98.96666667,-8.158833332999999,0.35200000000000004,238.08891871666665 -2016-05-12 04:00:00,0.0,1022.943403,0.0,98.875,-8.558333333,0.043083333,238.08925663333335 -2016-05-12 05:00:00,0.0,1022.850347,0.0,98.675,-8.753333332999999,0.239666667,238.0914531666667 -2016-05-12 06:00:00,0.0,1022.755903,0.0,98.50833333,-8.8125,0.202916667,238.08959455000002 -2016-05-12 07:00:00,0.0,1022.71875,0.06675,98.18333333,-8.91,0.35908333299999995,238.0895945666667 -2016-05-12 08:00:00,0.0,1023.0725699999999,5.553916667,98.11666667,-8.848333333,0.04675,238.08942560000003 -2016-05-12 09:00:00,0.0,1023.279167,17.26416667,98.775,-5.857666667,0.21508333300000002,238.08520151666673 -2016-05-12 10:00:00,0.0,1023.435069,66.77083333,98.68333333,-2.544083333,0.006333333000000001,238.0843567166667 -2016-05-12 11:00:00,0.0,1023.325,65.60416667,97.075,-2.034333333,0.903083333,238.0843567166667 -2016-05-12 12:00:00,0.0,1023.172917,146.4133333,94.125,0.242916667,1.016833333,238.08232916666665 -2016-05-12 13:00:00,0.0,1022.922917,180.8,90.6,1.116666667,1.9671666669999999,238.08131538333336 -2016-05-12 14:00:00,0.0,1022.841667,121.75833329999999,87.13333333,1.224833333,1.4930833330000002,238.07979469999995 -2016-05-12 15:00:00,0.0,1022.702083,52.33833333,89.06666667,0.308333333,1.356916667,238.07962573333336 -2016-05-12 16:00:00,0.0,1022.8107640000001,4.752166667,95.76666667,-1.561,1.22,238.07911886666662 -2016-05-12 17:00:00,0.0,1022.8767359999999,0.0005,99.525,-2.834083333,0.6386666670000001,238.07945676666668 -2016-05-12 18:00:00,0.0,1022.908681,0.0,99.98333333,-3.8033333330000003,0.622,238.07911886666668 -2016-05-12 19:00:00,0.0,1023.108333,0.0,100.0,-3.069083333,0.9341666670000001,238.0824981333334 -2016-05-12 20:00:00,0.0,1023.7138890000001,0.0,100.0,-2.817583333,1.30075,238.08368085000004 -2016-05-12 21:00:00,0.0,1023.966667,0.0,99.99166667,-2.7341666669999998,1.5465,238.08435670000003 -2016-05-12 22:00:00,0.0,1024.291667,0.0,100.0,-2.891333333,1.0335,238.08604633333334 -2016-05-12 23:00:00,0.0,1024.607639,0.0,100.0,-2.9940833330000003,1.15275,238.08655323333335 -2016-06-12 00:00:00,0.0,1024.556597,0.0,100.0,-3.140083333,0.458083333,238.0451572333333 -2016-06-12 01:00:00,0.0,1024.641667,0.0,100.0,-3.085416667,0.8145,238.04752268333334 -2016-06-12 02:00:00,0.0,1024.827083,0.0,100.0,-3.0915,1.4046666669999999,238.04718476666667 -2016-06-12 03:00:00,0.0,1025.151736,0.0,100.0,-2.958583333,1.290166667,238.04735371666666 -2016-06-12 04:00:00,0.0,1025.247917,0.0,100.0,-3.002166667,0.9884166670000001,238.04853648333335 -2016-06-12 05:00:00,0.0,1025.345486,0.0,100.0,-3.156416667,0.700583333,238.04904335 -2016-06-12 06:00:00,0.0,1025.741667,0.0,100.0,-3.10075,0.94575,238.05140885 -2016-06-12 07:00:00,0.0,1026.160764,0.018333333,100.0,-3.069833333,0.8265,238.05191575 -2016-06-12 08:00:00,0.0,1026.661806,3.2720833330000003,100.0,-3.064916667,0.799583333,238.05259158333334 -2016-06-12 09:00:00,0.0,1027.184722,17.78833333,100.0,-2.884416667,1.145416667,238.05191576666664 -2016-06-12 10:00:00,0.0,1027.637847,35.30916667,100.0,-2.6710000000000003,0.656833333,238.05208471666666 -2016-06-12 11:00:00,0.0,1027.6225689999999,49.98916667,100.0,-2.544,0.59125,238.05123993333333 -2016-06-12 12:00:00,0.0,1027.826736,53.52916667,100.0,-2.3744166669999998,0.9155833329999999,238.05039510000003 -2016-06-12 13:00:00,0.0,1027.733333,42.40583333,100.0,-2.182833333,0.714833333,238.04988820000003 -2016-06-12 14:00:00,0.0,1027.856597,27.83333333,100.0,-2.085666667,0.705583333,238.0890876833333 -2016-06-12 15:00:00,0.0,1028.0388890000002,14.194,100.0,-2.198833333,0.906666667,238.10919433333333 -2016-06-12 16:00:00,0.0,1028.3444439999998,1.6025,100.0,-2.341416667,1.234,238.10784261666663 -2016-06-12 17:00:00,0.0,1028.805208,0.0,100.0,-2.3209999999999997,0.982083333,238.10581506666665 -2016-06-12 18:00:00,0.0,1029.061111,0.0,100.0,-2.4893333330000003,1.1714166670000001,238.10344953333333 -2016-06-12 19:00:00,0.0,1029.207639,0.0,100.0,-2.681833333,1.168833333,238.1019289 -2016-06-12 20:00:00,0.0,1029.286111,0.0,100.0,-2.981833333,1.160583333,238.10091511666667 -2016-06-12 21:00:00,0.0,1029.452083,0.0,100.0,-2.859333333,1.348,238.09990133333335 -2016-06-12 22:00:00,0.0,1029.55,0.0,100.0,-2.7095,0.989916667,238.09871856666666 -2016-06-12 23:00:00,0.0,1029.826736,0.0,100.0,-2.679166667,1.147916667,238.0973668833333 -2016-07-12 00:00:00,0.0,1029.870139,0.0,100.0,-2.60875,0.762333333,237.98706226666664 -2016-07-12 01:00:00,0.0,1029.925695,0.0,100.0,-2.392416667,1.235833333,237.98905221666666 -2016-07-12 02:00:00,0.0,1030.066319,0.0,100.0,-2.182583333,1.128416667,237.99203711666667 -2016-07-12 03:00:00,0.0,1030.149653,0.0,100.0,-2.139416667,1.410833333,237.99203711666667 -2016-07-12 04:00:00,0.0,1030.070833,0.0,100.0,-2.12675,1.405416667,237.99303208333333 -2016-07-12 05:00:00,0.0,1029.7881949999999,0.0,100.0,-2.136166667,1.5549166669999999,237.99303208333333 -2016-07-12 06:00:00,0.0,1029.782986,0.0,100.0,-2.0460833330000003,1.567333333,237.99502200000003 -2016-07-12 07:00:00,0.0,1029.7125,0.007083333000000001,100.0,-2.035916667,1.474,237.99402706666663 -2016-07-12 08:00:00,0.0,1029.7524310000001,2.56475,100.0,-1.9279166669999999,1.461583333,237.99422604999998 -2016-07-12 09:00:00,0.0,1029.971875,20.70583333,100.0,-1.6671666669999998,1.4638333330000002,237.99203713333335 -2016-07-12 10:00:00,0.0,1030.3357640000002,38.16166667,100.0,-1.440333333,1.5223333330000002,237.9876592666666 -2016-07-12 11:00:00,0.0,1030.325347,54.76666667,100.0,-1.208166667,1.317,237.98586831666668 -2016-07-12 12:00:00,0.0,1029.8,59.04083333,100.0,-1.1,1.52575,237.97969953333333 -2016-07-12 13:00:00,0.0,1029.2,45.47666667,100.0,-1.122916667,1.6,237.97631664999997 -2016-07-12 14:00:00,0.0,1029.135764,33.03416667,100.0,-1.038,1.2745,237.9745257 -2016-07-12 15:00:00,0.0,1029.372917,20.01416667,100.0,-1.000166667,1.071083333,237.96875490000002 -2016-07-12 16:00:00,0.0,1029.029167,2.5066666669999997,100.0,-1.027583333,1.075333333,237.96855589999998 -2016-07-12 17:00:00,0.0,1029.145833,0.0,100.0,-1.10125,0.821916667,237.9683569 -2016-07-12 18:00:00,0.0,1029.327083,0.0,100.0,-0.951416667,0.62675,237.96517301666668 -2016-07-12 19:00:00,0.0,1029.628472,0.0,100.0,-1.059583333,0.44583333299999994,237.96596898333337 -2016-07-12 20:00:00,0.0,1029.927083,0.0,100.0,-1.23425,0.7240833329999999,237.9709438333333 -2016-07-12 21:00:00,0.0,1029.86875,0.0,100.0,-1.187666667,0.99775,237.97333176666666 -2016-07-12 22:00:00,0.0,1029.604514,0.0,100.0,-1.2348333329999999,0.766916667,237.97671463333333 -2016-07-12 23:00:00,0.0,1029.74757,0.0,100.0,-1.2359166670000001,0.521083333,237.9783065833333 -2016-08-12 00:00:00,0.0,1029.5961810000001,0.0,100.0,-1.2819999999999998,0.507583333,237.9307471666667 -2016-08-12 01:00:00,0.0,1029.30625,0.0,100.0,-1.240083333,0.7958333329999999,237.93353305000002 -2016-08-12 02:00:00,0.0,1029.415278,0.0,100.0,-1.099666667,0.957416667,237.93512501666666 -2016-08-12 03:00:00,0.0,1029.208333,0.0,100.0,-1.172916667,1.188166667,237.93850791666668 -2016-08-12 04:00:00,0.0,1028.879167,0.0,100.0,-1.3546666669999998,1.337083333,237.94268678333333 -2016-08-12 05:00:00,0.0,1028.672917,0.0,100.0,-1.446916667,1.6769999999999998,237.94407973333333 -2016-08-12 06:00:00,0.0,1028.4625,0.0,100.0,-1.613666667,1.25325,237.94766159999998 -2016-08-12 07:00:00,0.0,1028.728819,0.018833333,100.0,-1.7516666669999998,1.4829166669999998,237.94845758333335 -2016-08-12 08:00:00,0.0,1029.1642359999998,5.625833332999999,100.0,-1.7550833330000002,1.214666667,237.95044753333332 -2016-08-12 09:00:00,0.0,1029.1253470000001,29.60083333,100.0,-1.620916667,1.122583333,237.95144246666666 -2016-08-12 10:00:00,0.0,1028.935764,48.2025,100.0,-1.470083333,0.7795,237.95223845 -2016-08-12 11:00:00,0.0,1028.4086810000001,70.82083333,100.0,-1.204083333,1.275166667,237.95044751666663 -2016-08-12 12:00:00,0.0,1027.739236,72.1125,100.0,-0.99725,1.267916667,237.95024851666665 -2016-08-12 13:00:00,0.0,1027.029861,55.39333333,100.0,-0.776083333,1.4040833330000002,237.94925353333335 -2016-08-12 14:00:00,0.0,1026.85625,46.40916667,100.0,-0.620833333,1.166,237.9492535666667 -2016-08-12 15:00:00,0.0,1026.416667,18.74741667,100.0,-0.627166667,1.237,237.94805958333333 -2016-08-12 16:00:00,0.0,1026.177778,2.1705,100.0,-0.7264166670000001,0.966,237.9452736833333 -2016-08-12 17:00:00,0.0,1025.9538189999998,0.0,100.0,-0.8866666670000001,0.714916667,237.94427873333333 -2016-08-12 18:00:00,0.0,1026.029514,0.0,100.0,-0.823916667,0.795,237.94527368333334 -2016-08-12 19:00:00,0.0,1026.1951390000002,0.0,100.0,-0.910166667,1.0384166670000001,237.94507468333333 -2016-08-12 20:00:00,0.0,1026.4819439999999,0.0,100.0,-0.9824166670000001,0.663166667,237.94527368333334 -2016-08-12 21:00:00,0.0,1026.1125,0.0,100.0,-0.985,0.787166667,237.94786059999998 -2016-08-12 22:00:00,0.0,1025.99757,0.0,100.0,-1.033083333,1.103416667,237.94925356666667 -2016-08-12 23:00:00,0.0,1026.119097,0.0,100.0,-0.9025,0.645166667,237.95184045 -2016-09-12 00:00:00,0.0,1025.910417,0.0,100.0,-0.896833333,1.14075,237.82382901666665 -2016-09-12 01:00:00,0.0,1025.7,0.0,100.0,-0.823416667,1.05725,237.82618758333334 -2016-09-12 02:00:00,0.0,1025.229167,0.0,100.0,-0.6968333329999999,1.038916667,237.8291647 -2016-09-12 03:00:00,0.0,1025.317014,0.0,100.0,-0.38575,0.279083333,237.8317494833333 -2016-09-12 04:00:00,0.0,1025.4538189999998,0.0,100.0,-0.17825,0.755583333,237.83487366666665 -2016-09-12 05:00:00,0.0,1025.375,0.0,100.0,-0.0315,1.120083333,237.83679883333332 -2016-09-12 06:00:00,0.0,1025.3586810000002,0.0,100.0,0.073,0.783083333,237.8385736833333 -2016-09-12 07:00:00,0.0,1025.647569,0.0014166670000000001,100.0,0.14400000000000002,0.487333333,237.83961931666667 -2016-09-12 08:00:00,0.0,1025.922917,2.055333333,100.0,0.22825,0.275666667,237.84015875 -2016-09-12 09:00:00,0.0,1026.526736,10.23016667,100.0,0.44591666700000004,0.18275,237.84010496666667 -2016-09-12 10:00:00,0.0,1026.7475689999999,40.3225,100.0,1.080916667,0.35766666700000005,237.83754863333334 -2016-09-12 11:00:00,0.0,1026.6559029999999,38.47833333,100.0,1.402833333,0.70175,237.83245813333335 -2016-09-12 12:00:00,0.0,1026.517361,39.20333333,100.0,1.6915,0.501,237.82524005000002 -2016-09-12 13:00:00,0.0,1026.283333,45.3525,100.0,2.16675,0.3605,237.82089938333334 -2016-09-12 14:00:00,0.0,1026.232986,39.01916667,100.0,2.5164166669999997,0.44991666700000005,237.81215156666667 -2016-09-12 15:00:00,0.0,1026.056597,32.36,100.0,2.777916667,0.49558333299999996,237.80849586666668 -2016-09-12 16:00:00,0.0,1025.935417,4.1144166669999995,100.0,2.449083333,0.626083333,237.80788840000002 -2016-09-12 17:00:00,0.0,1025.712847,0.0,100.0,2.07475,0.1645,237.80577029999998 -2016-09-12 18:00:00,0.0,1025.525347,0.0,100.0,0.8593333329999999,0.3425,237.8050806 -2016-09-12 19:00:00,0.0,1025.151736,0.0,100.0,1.833083333,0.202583333,237.80513276666667 -2016-09-12 20:00:00,0.0,1025.2125,0.0,100.0,1.593666667,0.20175,237.80530835000002 -2016-09-12 21:00:00,0.0,1025.208333,0.0,100.0,1.065833333,0.26925,237.80542225 -2016-09-12 22:00:00,0.0,1024.771528,0.0,100.0,1.87225,0.268333333,237.8058446166667 -2016-09-12 23:00:00,0.0,1024.6642359999998,0.0,100.0,2.228416667,0.044000000000000004,237.80774606666668 -2016-10-12 00:00:00,0.0,1024.356597,0.0,100.0,2.307583333,0.24825,237.96251704999997 -2016-10-12 01:00:00,0.0,1023.927083,0.0,100.0,1.596333333,0.242083333,237.96164224999998 -2016-10-12 02:00:00,0.0,1023.029861,0.0,100.0,1.014166667,0.354333333,237.96133220000002 -2016-10-12 03:00:00,0.0,1022.3857640000001,0.0,100.0,0.055833333,0.41333333299999997,237.96148721666665 -2016-10-12 04:00:00,0.0,1022.11007,0.0,100.0,-0.603666667,0.317083333,237.96097468333332 -2016-10-12 05:00:00,0.0,1021.756945,0.0,100.0,-0.661083333,0.50725,237.96144766666666 -2016-10-12 06:00:00,0.0,1021.119097,0.0,100.0,-0.59475,0.20725,237.96117241666664 -2016-10-12 07:00:00,0.0,1021.147917,0.017416667,100.0,-1.0465,0.16025,237.96192381666665 -2016-10-12 08:00:00,0.0,1021.242014,7.152333333,100.0,-0.9159166670000001,0.235333333,237.96084341666668 -2016-10-12 09:00:00,0.0,1021.5659720000001,36.16583333,100.0,-0.312583333,0.3055,237.96193805 -2016-10-12 10:00:00,0.0,1022.0809029999999,70.23,100.0,0.546416667,0.48925,237.96251543333332 -2016-10-12 11:00:00,0.0,1021.821181,83.285,100.0,0.9511666670000001,1.0705,237.9628682166667 -2016-10-12 12:00:00,0.0,1021.247917,69.765,100.0,1.6246666669999998,0.9793333329999999,237.96206775 -2016-10-12 13:00:00,0.0,1020.633681,97.06833333,100.0,1.9825,0.789166667,237.96155838333334 -2016-10-12 14:00:00,0.0,1020.2086810000001,63.7875,100.0,2.57825,0.174333333,237.96398026666668 -2016-10-12 15:00:00,0.0,1019.7375,36.505,100.0,1.7976666669999999,0.26475,237.9641147 -2016-10-12 16:00:00,0.0,1019.485417,6.8600833329999995,100.0,0.47858333299999994,0.120833333,237.9632652833333 -2016-10-12 17:00:00,0.0,1019.5586810000001,0.00425,100.0,-0.1465,0.39125,237.9635057 -2016-10-12 18:00:00,0.0,1019.270833,0.0,100.0,-0.298083333,0.11741666699999999,237.96441368333333 -2016-10-12 19:00:00,0.0,1019.1208330000001,0.0,100.0,0.452083333,0.45775,237.9647316666667 -2016-10-12 20:00:00,0.0,1018.4482640000001,0.0,100.0,1.698916667,0.264333333,237.96367811666667 -2016-10-12 21:00:00,0.0,1018.0625,0.0,99.4,1.95925,0.35566666700000005,237.9638648 -2016-10-12 22:00:00,0.0,1017.639931,0.0,100.0,2.181666667,0.42125,237.96453551666664 -2016-10-12 23:00:00,0.0,1016.859028,0.0,100.0,2.634666667,0.36791666700000003,237.9672247166667 -2016-11-12 00:00:00,0.0,1016.000347,0.0,100.0,2.2864166669999997,0.6828333329999999,238.12481935000002 -2016-11-12 01:00:00,0.0,1014.952778,0.0,100.0,1.8581666669999999,0.261416667,238.12135975 -2016-11-12 02:00:00,0.0,1014.2,0.0,100.0,2.015,0.564583333,238.11824188333333 -2016-11-12 03:00:00,0.0,1013.554514,0.0,97.75833333,1.9250833330000001,0.271333333,238.11529958333335 -2016-11-12 04:00:00,0.0,1012.484028,0.0,95.10833333,5.919083333,2.510583333,238.11325738333335 -2016-11-12 05:00:00,0.0,1011.758333,0.0,91.45833333,8.008916667000001,2.539583333,238.11013160000002 -2016-11-12 06:00:00,0.0,1011.6875,0.0,91.66666667,8.560833333,3.3289166669999997,238.10795174999998 -2016-11-12 07:00:00,0.0,1012.5909720000001,0.0,94.46666667,8.305833332999999,3.478,238.10535908333335 -2016-11-12 08:00:00,0.0,1014.2763890000001,1.697583333,89.31666667,8.345,2.3255,238.10332795 -2016-11-12 09:00:00,0.0,1015.5138890000001,19.98666667,87.11666667,8.184166667000001,2.107583333,238.09986518333332 -2016-11-12 10:00:00,0.0,1016.2,46.26,91.95833333,8.19,1.888333333,238.09724083333333 -2016-11-12 11:00:00,2.91760704,1016.555903,74.90583333,92.69166667,7.935416667,2.2128333330000003,238.09799066666665 -2016-11-12 12:00:00,0.0,1016.622917,55.82666667,93.78333333,7.725,2.0175,238.09644041666664 -2016-11-12 13:00:00,0.0,1016.775,62.8375,88.85,8.081166667,2.457833333,238.09370696666667 -2016-11-12 14:00:00,0.0,1016.7145830000001,78.78166667,82.58333333,8.335,2.331583333,238.09386513333334 -2016-11-12 15:00:00,0.0,1016.916667,19.60166667,82.85,7.974166667,2.2635,238.09350761666667 -2016-11-12 16:00:00,0.0,1016.795833,3.024083333,87.10833333,7.4124166670000005,2.060083333,238.09292863333334 -2016-11-12 17:00:00,0.0,1016.99375,0.0,85.40833333,7.162333332999999,1.805333333,238.0926011833333 -2016-11-12 18:00:00,0.0,1017.05,0.0,85.375,7.116166667000001,2.514166667,238.09247781666667 -2016-11-12 19:00:00,0.0,1017.1579859999999,0.0,85.39166667,7.041333333,2.388833333,238.09122969999999 -2016-11-12 20:00:00,0.0,1017.3711810000001,0.0,86.025,7.0495,2.786083333,238.08818776666666 -2016-11-12 21:00:00,0.0,1017.201736,0.0,89.45,6.707999999999999,2.123333333,238.08793308333335 -2016-11-12 22:00:00,0.0,1017.3625,0.0,92.21666667,6.2905,2.013833333,238.08664388333332 -2016-11-12 23:00:00,2.96060988,1017.510417,0.0,93.31666667,6.131583332999999,2.0695,238.08534988333335 -2016-12-12 00:00:00,0.0,1017.5954859999999,0.0,95.99166667,6.091416667000001,2.3080000000000003,238.03571371666666 -2016-12-12 01:00:00,3.244785288,1017.662847,0.0,97.46666667,6.099666667,2.237166667,238.03490853333332 -2016-12-12 02:00:00,2.867276664,1017.947917,0.0,98.075,5.998583332999999,1.687416667,238.0342821 -2016-12-12 03:00:00,0.0,1018.235417,0.0,99.55833333,5.91125,1.117916667,238.03525655 -2016-12-12 04:00:00,0.0,1018.6138890000001,0.0,99.93333333,5.728333332999999,1.329083333,238.0345668166666 -2016-12-12 05:00:00,2.652375984,1019.0121529999999,0.0,100.0,5.899416667000001,1.168833333,238.03438016666666 -2016-12-12 06:00:00,0.0,1019.289236,0.0,100.0,5.854666667,1.191916667,238.03553494999997 -2016-12-12 07:00:00,0.0,1019.752431,0.0,100.0,5.919083333,1.537833333,238.03444030000003 -2016-12-12 08:00:00,0.0,1020.397222,4.279583333,100.0,5.2895,0.90425,238.03383441666668 -2016-12-12 09:00:00,0.0,1021.195486,20.79333333,100.0,5.444833332999999,0.818583333,238.03511891666668 -2016-12-12 10:00:00,0.0,1021.864583,24.9875,99.33333333,6.459916667000001,1.205833333,238.03302291666662 -2016-12-12 11:00:00,0.0,1021.9809029999999,31.255,97.725,6.710666667000001,1.6873333330000002,238.0341286666667 -2016-12-12 12:00:00,0.0,1022.0815970000001,34.78916667,96.5,6.833166667,1.260166667,238.0339435666667 -2016-12-12 13:00:00,0.0,1022.068403,26.74583333,95.73333333,6.8419166670000005,1.29,238.03329341666665 -2016-12-12 14:00:00,0.0,1022.0277779999999,25.16583333,96.10833333,6.900833333,0.856583333,238.03230953333332 -2016-12-12 15:00:00,0.0,1021.945139,11.49433333,95.43333333,6.878666667,1.5409166669999999,238.03351646666667 -2016-12-12 16:00:00,0.0,1022.054167,0.76375,95.43333333,6.589833333,0.47075,238.03443238333338 -2016-12-12 17:00:00,0.0,1022.26875,0.0,98.13333333,6.065083333,0.300333333,238.0358829666667 -2016-12-12 18:00:00,0.0,1022.39375,0.0,98.86666667,6.071000000000001,0.340916667,238.0353941666667 -2016-12-12 19:00:00,0.0,1022.36875,0.0,99.55,5.49625,0.32,238.03593990000002 -2016-12-12 20:00:00,0.0,1022.427083,0.0,99.925,5.185083333,0.30625,238.03552704999996 -2016-12-12 21:00:00,0.0,1022.520833,0.0,99.18333333,4.705,0.08433333300000001,238.03497811666668 -2016-12-12 22:00:00,0.0,1022.7854169999999,0.0,99.93333333,4.326583333,0.075,238.03500659999997 -2016-12-12 23:00:00,0.0,1022.7204859999999,0.0,100.0,4.236333333,0.26666666699999997,238.03510941666664 -2016-12-13 00:00:00,0.0,1022.460764,0.0,100.0,4.34625,0.202833333,238.036212 -2016-12-13 01:00:00,0.0,1021.9899310000001,0.0,100.0,4.555416667,0.24975,238.03618668333334 -2016-12-13 02:00:00,0.0,1021.875347,0.0,100.0,4.16575,0.199083333,238.03521221666665 -2016-12-13 03:00:00,0.0,1021.5121529999999,0.0,100.0,2.1895833330000003,0.10075,238.03657581666667 -2016-12-13 04:00:00,0.0,1021.312847,0.0,100.0,2.27275,0.107916667,238.03496705 -2016-12-13 05:00:00,0.0,1021.1125,0.0,100.0,1.958083333,0.231,238.03495915000005 -2016-12-13 06:00:00,0.0,1020.889931,0.0,100.0,1.165583333,0.194666667,238.0368321 -2016-12-13 07:00:00,0.0,1020.9788189999999,0.005666666999999999,100.0,0.697916667,0.13475,238.0360475 -2016-12-13 08:00:00,0.0,1021.6684029999999,8.509416667,100.0,1.6890833330000001,0.13875,238.0338471 -2016-12-13 09:00:00,0.0,1021.60625,30.3225,100.0,2.70275,0.275666667,238.03427576666664 -2016-12-13 10:00:00,0.0,1021.508681,37.40333333,100.0,3.85825,0.524083333,238.0340210833333 -2016-12-13 11:00:00,0.0,1021.382986,76.8325,99.95833333,4.479833333,1.131083333,238.03320958333333 -2016-12-13 12:00:00,0.0,1021.102431,57.55833333,98.325,4.67775,1.3794166669999999,238.03388346666668 -2016-12-13 13:00:00,0.0,1020.783681,39.75416667,98.025,4.361416667,1.1886666670000001,238.03318113333333 -2016-12-13 14:00:00,0.0,1020.564583,19.7425,98.11666667,4.4414166669999995,0.8059999999999999,238.03325228333335 -2016-12-13 15:00:00,27.47199492,1020.389583,9.286583333,99.71666667,4.186083333,0.584,238.0332523 -2016-12-13 16:00:00,2.60425512,1020.083333,2.285583333,100.0,3.722083333,0.9710833329999999,238.03422991666665 -2016-12-13 17:00:00,2.53729176,1020.266667,0.0,100.0,3.5373333330000003,0.675083333,238.03503823333332 -2016-12-13 18:00:00,0.0,1020.352083,0.0,100.0,3.104916667,0.841916667,238.03582443333335 -2016-12-13 19:00:00,0.0,1020.310417,0.0,100.0,2.9899166669999997,0.675,238.03640971666664 -2016-12-13 20:00:00,0.0,1020.3479169999999,0.0,100.0,3.064083333,0.349916667,238.03795996666668 -2016-12-13 21:00:00,0.0,1020.3788189999999,0.0,100.0,3.10575,0.570666667,238.03739838333334 -2016-12-13 22:00:00,0.0,1020.467361,0.0,100.0,3.166833333,0.532333333,238.037207 -2016-12-13 23:00:00,0.0,1020.274653,0.0,100.0,3.198666667,0.32666666699999997,238.03792041666665 -2016-12-14 00:00:00,0.0,1020.048264,0.0,100.0,3.2726666669999998,0.433666667,238.0384962166667 -2016-12-14 01:00:00,0.0,1019.945833,0.0,100.0,3.23,0.804083333,238.03802641666667 -2016-12-14 02:00:00,2.516603688,1019.798264,0.0,100.0,3.23825,0.689916667,238.03790776666668 -2016-12-14 03:00:00,5.098260671999999,1019.5746529999999,0.0,100.0,3.2795,0.764,238.03982498333332 -2016-12-14 04:00:00,9.840415823999999,1019.429167,0.0,100.0,3.298666667,0.35016666700000004,238.03941053333332 -2016-12-14 05:00:00,7.254270384,1019.2690970000001,0.0,100.0,3.4163333330000003,0.23475,238.0404182 -2016-12-14 06:00:00,15.32103456,1019.453819,0.0,100.0,3.5188333330000003,0.48416666700000005,238.04045776666666 -2016-12-14 07:00:00,0.0,1019.6916669999999,0.0,100.0,3.54375,0.4065,238.042356 -2016-12-14 08:00:00,2.479382928,1020.099653,1.84475,100.0,3.655166667,0.46175,238.043457 -2016-12-14 09:00:00,0.0,1020.48125,11.4985,100.0,3.8645,0.6788333329999999,238.04449788333332 -2016-12-14 10:00:00,0.0,1020.7,41.505,100.0,4.258583333,0.586666667,238.04668561666668 -2016-12-14 11:00:00,0.0,1020.826736,48.05166667,100.0,4.568166667,1.01,238.04816785 -2016-12-14 12:00:00,0.0,1020.869097,64.235,100.0,4.882166667,0.944583333,238.04884171666666 -2016-12-14 13:00:00,0.0,1020.7767359999999,49.04166667,100.0,5.183083333,0.7051666670000001,238.0494982 -2016-12-14 14:00:00,0.0,1020.88125,32.39583333,100.0,5.548833332999999,0.534083333,238.04834026666666 -2016-12-14 15:00:00,0.0,1020.96875,14.615,100.0,5.4135,0.804333333,238.04938745 -2016-12-14 16:00:00,0.0,1020.9375,3.016666667,100.0,5.188583333,0.550583333,238.05002495 -2016-12-14 17:00:00,0.0,1021.2875,0.0,100.0,5.033083333,0.6153333329999999,238.05177293333335 -2016-12-14 18:00:00,0.0,1021.304167,0.0,100.0,4.955083333,0.578666667,238.05176186666665 -2016-12-14 19:00:00,0.0,1021.60625,0.0,100.0,4.959166667,0.564333333,238.05122718333337 -2016-12-14 20:00:00,0.0,1022.3079859999999,0.0,100.0,4.967416667,0.444333333,238.0489160333333 -2016-12-14 21:00:00,0.0,1022.672917,0.0,100.0,5.006416667,0.307666667,238.0499695833333 -2016-12-14 22:00:00,0.0,1022.5100689999999,0.0,100.0,5.00525,0.375833333,238.05081748333336 -2016-12-14 23:00:00,0.0,1022.5375,0.0,100.0,5.053666667,0.76825,238.05066720000002 -2016-12-15 00:00:00,0.0,1022.579514,0.0,100.0,5.193,0.810583333,238.05093609999997 -2016-12-15 01:00:00,0.0,1022.7767359999999,0.0,100.0,5.19575,0.318916667,238.05005974999997 -2016-12-15 02:00:00,0.0,1023.139236,0.0,100.0,5.309,0.656833333,238.04952665000005 -2016-12-15 03:00:00,0.0,1023.220833,0.0,100.0,5.254166667,0.49408333299999996,238.04947604999998 -2016-12-15 04:00:00,0.0,1023.1520830000001,0.0,100.0,5.201916667,0.251083333,238.05036348333337 -2016-12-15 05:00:00,0.0,1022.9253470000001,0.0,100.0,5.240416667,0.5379999999999999,238.0503887666667 -2016-12-15 06:00:00,0.0,1023.0413189999999,0.0,100.0,5.3158333330000005,0.9674166670000001,238.05070833333332 -2016-12-15 07:00:00,0.0,1023.11875,0.0,100.0,5.3815,0.5665,238.04938271666666 -2016-12-15 08:00:00,0.0,1023.2541669999999,1.47725,100.0,5.310666667,0.105833333,238.05003446666663 -2016-12-15 09:00:00,0.0,1023.5746529999999,10.25825,100.0,5.458083332999999,0.060333332999999996,238.04756829999997 -2016-12-15 10:00:00,0.0,1023.781597,29.105,100.0,5.972916667000001,0.586,238.0478214166667 -2016-12-15 11:00:00,0.0,1023.7375,35.97,100.0,6.442083332999999,1.08125,238.04566530000002 -2016-12-15 12:00:00,0.0,1023.3024310000001,28.6175,100.0,6.709416667,1.194583333,238.04704945 -2016-12-15 13:00:00,0.0,1022.877431,29.32916667,100.0,6.747166667,1.3728333330000002,238.0462932833333 -2016-12-15 14:00:00,0.0,1022.7,20.99333333,99.83333333,6.77825,1.4226666669999999,238.04584248333333 -2016-12-15 15:00:00,0.0,1022.4951390000001,6.748583332999999,99.75833333,6.6675,1.52025,238.04670618333333 -2016-12-15 16:00:00,0.0,1022.570833,0.790416667,98.99166667,6.0135,1.797,238.04714751666668 -2016-12-15 17:00:00,0.0,1022.5670140000001,0.0,97.9,5.579,1.7105,238.0475746333333 -2016-12-15 18:00:00,0.0,1022.689583,0.0,96.61666667,5.280583333,2.00325,238.04755565000002 -2016-12-15 19:00:00,0.0,1022.725,0.0,96.35,5.0495,1.87525,238.04905366666665 -2016-12-15 20:00:00,0.0,1022.647917,0.0,95.29166667,4.87375,1.9485,238.04847945000003 -2016-12-15 21:00:00,0.0,1022.8625,0.0,95.125,4.73275,1.9770833330000002,238.04733258333331 -2016-12-15 22:00:00,0.0,1022.860417,0.0,94.93333333,4.606916667,2.00325,238.04716808333333 -2016-12-15 23:00:00,0.0,1023.1288199999999,0.0,95.46666667,4.315166667,2.447083333,238.04573488333335 -2016-12-16 00:00:00,0.0,1023.242014,0.0,95.375,3.899333333,2.006583333,238.04661283333334 -2016-12-16 01:00:00,0.0,1023.30382,0.0,95.6,3.6745,1.819916667,238.0488164 -2016-12-16 02:00:00,0.0,1023.579167,0.0,95.675,3.614083333,1.8268333330000002,238.04625848333333 -2016-12-16 03:00:00,0.0,1023.491667,0.0,96.04166667,3.5510833330000002,1.90775,238.04705576666666 -2016-12-16 04:00:00,0.0,1023.528819,0.0,95.6,3.43325,1.8705833330000001,238.045988 -2016-12-16 05:00:00,0.0,1023.789583,0.0,95.73333333,3.3039166669999998,1.8938333330000001,238.04500563333332 -2016-12-16 06:00:00,0.0,1024.1954859999998,0.0,95.41666667,3.225916667,1.297666667,238.04456589999998 -2016-12-16 07:00:00,0.0,1024.552083,0.0,93.825,3.153083333,1.1875,238.0444978666667 -2016-12-16 08:00:00,0.0,1025.166667,1.28825,92.83333333,3.118083333,1.276583333,238.04176281666665 -2016-12-16 09:00:00,0.0,1025.534722,9.225416667000001,92.16666667,3.164333333,1.530583333,238.04258536666666 -2016-12-16 10:00:00,0.0,1025.845833,21.13166667,91.425,3.281166667,1.74975,238.04244774999998 -2016-12-16 11:00:00,0.0,1026.014583,31.51583333,91.075,3.261,1.807833333,238.04300139999998 -2016-12-16 12:00:00,0.0,1025.9625,36.26416667,91.03333333,3.261583333,2.034583333,238.04186721666667 -2016-12-16 13:00:00,0.0,1025.99375,31.77583333,90.95,3.21625,1.77825,238.04100508333337 -2016-12-16 14:00:00,0.0,1026.147917,26.18916667,91.425,3.07525,1.936833333,238.04214245 -2016-12-16 15:00:00,0.0,1026.501389,11.61016667,91.81666667,2.953833333,1.4825,238.04115535000003 -2016-12-16 16:00:00,0.0,1027.069097,1.177833333,92.425,2.594,1.63425,238.04119016666667 -2016-12-16 17:00:00,0.0,1027.872222,0.0,92.25833333,2.226416667,1.3671666669999998,238.03972691666664 -2016-12-16 18:00:00,0.0,1028.245486,0.0,93.00833333,1.8714166669999999,1.7096666669999998,238.04050205 -2016-12-16 19:00:00,0.0,1028.869097,0.0,94.00833333,1.493916667,1.450833333,238.03917800000002 -2016-12-16 20:00:00,0.0,1029.291319,0.0,94.725,1.318333333,1.296666667,238.0384282 -2016-12-16 21:00:00,0.0,1029.599653,0.0,95.90833333,1.197083333,0.976833333,238.03754235 -2016-12-16 22:00:00,0.0,1029.9288199999999,0.0,96.49166667,1.048583333,1.084416667,238.03755024999998 -2016-12-16 23:00:00,0.0,1030.172917,0.0,96.975,0.8823333329999999,1.009083333,238.03849306666666 -2016-12-17 00:00:00,0.0,1030.514236,0.0,97.625,0.791166667,1.1385,238.03828743333335 -2016-12-17 01:00:00,0.0,1030.641667,0.0,98.50833333,0.63475,0.877083333,238.0386908 -2016-12-17 02:00:00,0.0,1030.949653,0.0,99.075,0.5196666670000001,0.518916667,238.03807859999998 -2016-12-17 03:00:00,0.0,1031.248611,0.0,99.80833333,0.45025,0.783083333,238.03728766666666 -2016-12-17 04:00:00,0.0,1031.211806,0.0,100.0,0.405916667,0.574416667,238.03771635000007 -2016-12-17 05:00:00,0.0,1031.314583,0.0,100.0,0.565583333,0.3575,238.03874298333335 -2016-12-17 06:00:00,0.0,1031.915972,0.0,100.0,0.7705833329999999,0.81825,238.03528344999995 -2016-12-17 07:00:00,0.0,1032.287153,0.0,99.975,0.6505,0.842583333,238.03657109999997 -2016-12-17 08:00:00,0.0,1032.548264,2.9668333330000003,100.0,0.63625,1.24275,238.03677988333334 -2016-12-17 09:00:00,0.0,1033.201389,14.44383333,100.0,0.74775,1.3846666669999999,238.03488636666668 -2016-12-17 10:00:00,0.0,1033.76875,23.355,99.44166667,0.9298333329999999,1.261583333,238.03504298333334 -2016-12-17 11:00:00,0.0,1033.842361,51.68583333,98.33333333,1.4375,1.2035833329999999,238.03449250000003 -2016-12-17 12:00:00,0.0,1033.6538189999999,47.72333333,98.69166667,1.642166667,1.5423333330000002,238.03502085000002 -2016-12-17 13:00:00,0.0,1033.647917,42.43083333,98.475,2.000416667,0.92675,238.0336082166667 -2016-12-17 14:00:00,0.0,1033.489583,34.46166667,97.55,1.87375,1.256,238.03331396666667 -2016-12-17 15:00:00,0.0,1033.7034720000001,17.92691667,97.78333333,1.9159166669999999,1.063166667,238.03353071666666 -2016-12-17 16:00:00,2.593831728,1033.752778,2.334666667,99.13333333,1.879,0.79475,238.0357564166667 -2016-12-17 17:00:00,0.0,1034.090972,0.0,100.0,1.821916667,0.27066666699999997,238.03588296666666 -2016-12-17 18:00:00,0.0,1034.165625,0.0,100.0,1.5643333330000002,0.32858333300000003,238.03535620000002 -2016-12-17 19:00:00,0.0,1034.03507,0.0,100.0,1.52575,0.303333333,238.03442765 -2016-12-17 20:00:00,0.0,1034.2034720000001,0.0,100.0,1.7381666669999998,0.252416667,238.03254678333334 -2016-12-17 21:00:00,0.0,1034.600347,0.0,100.0,1.918833333,0.254166667,238.03308306666668 -2016-12-17 22:00:00,0.0,1034.675,0.0,100.0,1.97525,0.206833333,238.03125595000003 -2016-12-17 23:00:00,0.0,1034.3357640000002,0.0,100.0,2.073083333,0.441166667,238.0316973166667 -2016-12-18 00:00:00,0.0,1033.53125,0.0,100.0,2.035416667,0.751833333,238.03042706666665 -2016-12-18 01:00:00,0.0,1033.504514,0.0,100.0,1.982,0.519083333,238.03198678333334 -2016-12-18 02:00:00,0.0,1033.297917,0.0,100.0,2.046833333,0.133416667,238.0325689166667 -2016-12-18 03:00:00,0.0,1033.050695,0.0,100.0,2.175416667,0.298583333,238.0313160833333 -2016-12-18 04:00:00,0.0,1032.7496529999999,0.0,100.0,2.24575,0.6215,238.03177641666664 -2016-12-18 05:00:00,0.0,1032.114583,0.0,100.0,2.301416667,0.201416667,238.03374740000004 -2016-12-18 06:00:00,0.0,1032.157986,0.0,100.0,2.219083333,0.39675,238.0318033 -2016-12-18 07:00:00,0.0,1031.6170140000002,0.0,100.0,2.414166667,0.5093333329999999,238.03255628333332 -2016-12-18 08:00:00,0.0,1031.525347,1.3955,100.0,2.600833333,0.73475,238.03183493333333 -2016-12-18 09:00:00,0.0,1031.472917,18.35833333,100.0,3.1910000000000003,0.384,238.03184916666666 -2016-12-18 10:00:00,0.0,1031.922917,28.48583333,100.0,3.4493333330000002,0.616166667,238.03165776666665 -2016-12-18 11:00:00,0.0,1031.411111,30.085,98.26666667,3.856833333,0.3105,238.03097119999998 -2016-12-18 12:00:00,0.0,1030.7809029999999,39.1725,95.35,4.3703333330000005,0.46183333299999996,238.03186340000002 -2016-12-18 13:00:00,0.0,1030.1402779999999,45.41833333,94.25,5.166416667,0.66575,238.03261481666667 -2016-12-18 14:00:00,0.0,1029.633333,40.385,94.33333333,5.636583333,1.322333333,238.03185706666662 -2016-12-18 15:00:00,0.0,1029.137847,17.16916667,94.28333333,5.491416667,0.9115,238.03303083333333 -2016-12-18 16:00:00,0.0,1028.5628470000001,2.788416667,96.64166667,4.4295,0.258416667,238.0355681666667 -2016-12-18 17:00:00,0.0,1028.154167,0.0,99.775,3.57875,0.072833333,238.0350224333333 -2016-12-18 18:00:00,0.0,1028.0,0.0,100.0,3.7033333330000002,0.29225,238.0330957 -2016-12-18 19:00:00,0.0,1027.900347,0.0,100.0,4.1514166669999994,0.45491666700000005,238.0329834 -2016-12-18 20:00:00,0.0,1027.820833,0.0,100.0,3.9363333330000003,0.555416667,238.03227788333334 -2016-12-18 21:00:00,0.0,1027.683333,0.0,100.0,3.3609166669999997,0.21833333300000002,238.0324265666667 -2016-12-18 22:00:00,0.0,1027.622917,0.0,100.0,3.153333333,0.3685,238.0320136833333 -2016-12-18 23:00:00,0.0,1027.3274310000002,0.0,100.0,3.0460833330000003,0.42908333299999996,238.03057733333333 -2016-12-19 00:00:00,0.0,1026.902431,0.0,100.0,2.85975,0.2285,238.03396254999998 -2016-12-19 01:00:00,2.61762024,1026.755903,0.0,100.0,2.890166667,0.502166667,238.03210068333337 -2016-12-19 02:00:00,0.0,1026.454514,0.0,100.0,2.9175,0.2785,238.03324121666665 -2016-12-19 03:00:00,0.0,1026.314583,0.0,100.0,2.960333333,0.075333333,238.03200105 -2016-12-19 04:00:00,0.0,1025.8774310000001,0.0,100.0,2.936833333,0.375166667,238.03293750000003 -2016-12-19 05:00:00,0.0,1025.6125,0.0,100.0,2.85775,0.37591666700000004,238.03207378333332 -2016-12-19 06:00:00,0.0,1025.520833,0.0,100.0,2.834916667,0.283083333,238.03284416666668 -2016-12-19 07:00:00,0.0,1025.047917,0.0,100.0,2.705666667,0.29933333300000003,238.03201528333332 -2016-12-19 08:00:00,0.0,1024.941667,1.053833333,100.0,2.8185,1.150833333,238.03295016666667 -2016-12-19 09:00:00,0.0,1025.016667,11.61441667,100.0,3.061416667,0.57075,238.03204058333333 -2016-12-19 10:00:00,0.0,1024.925,43.09083333,100.0,3.90075,1.62675,238.03227786666665 -2016-12-19 11:00:00,0.0,1024.767361,71.15916667,94.85833333,4.819083333,2.088833333,238.0313556166667 -2016-12-19 12:00:00,0.0,1024.167014,69.95083333,89.16666667,4.75525,1.9118333330000001,238.0320674666667 -2016-12-19 13:00:00,0.0,1023.537153,69.52083333,88.89166667,4.412333333,1.867583333,238.0323316333333 -2016-12-19 14:00:00,0.0,1022.813542,54.395,88.85,4.169583333,1.33975,238.0331399833333 -2016-12-19 15:00:00,0.0,1022.6138890000001,27.7885,91.19166667,3.89875,1.6736666669999998,238.0314347 -2016-12-19 16:00:00,0.0,1022.927083,1.50175,91.85833333,2.992416667,2.437166667,238.03265435 -2016-12-19 17:00:00,0.0,1022.977778,0.0,91.65833333,2.563166667,1.8585833330000001,238.03307986666667 -2016-12-19 18:00:00,0.0,1023.0118050000001,0.0,91.125,2.563166667,1.528666667,238.03269863333333 -2016-12-19 19:00:00,0.0,1023.072917,0.0,88.94166667,2.886,1.73625,238.03138091666662 -2016-12-19 20:00:00,0.0,1023.0875,0.0,89.675,2.7685,1.1555,238.03157866666666 -2016-12-19 21:00:00,0.0,1022.8631939999999,0.0,91.675,2.70375,1.363583333,238.0344387166667 -2016-12-19 22:00:00,0.0,1022.787153,0.0,91.34166667,2.775416667,1.1740000000000002,238.03219245 -2016-12-19 23:00:00,0.0,1022.88125,0.0,90.89166667,2.826083333,1.376416667,238.03236961666664 -2016-12-20 00:00:00,0.0,1022.6663189999999,0.0,93.66666667,2.2818333330000002,1.9393333330000002,238.03374585000003 -2016-12-20 01:00:00,0.0,1022.416667,0.0,97.29166667,0.761083333,1.337083333,238.03162611666667 -2016-12-20 02:00:00,0.0,1022.334028,0.0,99.66666667,-1.124916667,0.110416667,238.03366833333334 -2016-12-20 03:00:00,0.0,1021.9107640000001,0.0,100.0,-1.5330000000000001,0.008916667,238.03358291666666 -2016-12-20 04:00:00,0.0,1021.360764,0.0,100.0,-2.2095833330000003,0.04,238.0335054 -2016-12-20 05:00:00,0.0,1021.166667,0.0,100.0,-2.538416667,0.0020833329999999997,238.03235695 -2016-12-20 06:00:00,0.0,1020.95,0.0,100.0,-2.891,0.15733333300000002,238.03368886666667 -2016-12-20 07:00:00,0.0,1020.564931,0.0,100.0,-2.633916667,0.8190000000000001,238.03486896666666 -2016-12-20 08:00:00,0.0,1020.563889,2.695666667,100.0,-2.119333333,1.8585833330000001,238.0321007 -2016-12-20 09:00:00,0.0,1020.7795140000001,15.95666667,100.0,-1.9350833330000001,2.253666667,238.03040810000002 -2016-12-20 10:00:00,0.0,1020.3166669999999,33.80333333,100.0,-1.8508333330000002,2.161666667,238.03016288333333 -2016-12-20 11:00:00,0.0,1020.2875,43.105,100.0,-1.670333333,1.7518333330000002,238.03014865 -2016-12-20 12:00:00,0.0,1019.682292,47.925,100.0,-1.398833333,2.185,238.03059 -2016-12-20 13:00:00,0.0,1019.0267359999999,45.88083333,100.0,-1.2685,1.5555,238.02868066666667 -2016-12-20 14:00:00,0.0,1018.648611,33.91916667,100.0,-1.068,1.803166667,238.02719688333332 -2016-12-20 15:00:00,0.0,1018.48125,11.2595,100.0,-1.123583333,1.57375,238.02917265 -2016-12-20 16:00:00,0.0,1018.6892359999999,1.1685,100.0,-0.84175,1.33775,238.02842915 -2016-12-20 17:00:00,0.0,1019.00625,0.0,100.0,-0.715166667,0.6124166670000001,238.0287408 -2016-12-20 18:00:00,0.0,1019.274653,0.0,100.0,-0.58375,0.61725,238.02871703333335 -2016-12-20 19:00:00,0.0,1019.514236,0.0,100.0,-0.260083333,0.783166667,238.02834373333334 -2016-12-20 20:00:00,0.0,1019.406597,0.0,100.0,-1.371833333,0.23775,238.02962346666672 -2016-12-20 21:00:00,0.0,1019.70625,0.0,100.0,-2.343,0.150833333,238.03077983333336 -2016-12-20 22:00:00,0.0,1020.187153,0.0,100.0,-3.010166667,0.13025,238.0313160833333 -2016-12-20 23:00:00,0.0,1020.1756949999999,0.0,100.0,-3.7295,0.136833333,238.03180644999998 -2016-12-21 00:00:00,0.0,1020.3392359999999,0.0,100.0,-3.94525,0.11458333300000001,238.0324740333333 -2016-12-21 01:00:00,0.0,1020.716667,0.0,100.0,-4.219333333,0.2855,238.03014075 -2016-12-21 02:00:00,0.0,1021.146875,0.0,100.0,-4.52375,0.254,238.02964718333337 -2016-12-21 03:00:00,0.0,1021.5045140000001,0.0,100.0,-4.702,0.3255,238.03119586666665 -2016-12-21 04:00:00,0.0,1021.768056,0.0,100.0,-5.055083333,0.22366666699999999,238.02959501666666 -2016-12-21 05:00:00,0.0,1022.5,0.0,100.0,-5.056583333,0.174416667,238.02765245 -2016-12-21 06:00:00,0.0,1022.9104169999999,0.0,100.0,-4.43275,0.201416667,238.03041915000003 -2016-12-21 07:00:00,0.0,1023.440625,0.0,100.0,-3.590166667,0.42758333299999995,238.02713043333333 -2016-12-21 08:00:00,0.0,1024.252083,2.191666667,100.0,-2.5026666669999997,0.306166667,238.02589815 -2016-12-21 09:00:00,0.0,1024.603819,13.71083333,100.0,-1.589083333,0.5205,238.02636798333336 -2016-12-21 10:00:00,0.0,1025.040972,14.44583333,100.0,-1.00375,0.7959999999999999,238.02472439999997 -2016-12-21 11:00:00,0.0,1025.204861,28.58416667,100.0,-0.543583333,1.187333333,238.02457726666663 -2016-12-21 12:00:00,0.0,1025.147569,33.91583333,100.0,-0.30125,1.20425,238.02330705 -2016-12-21 13:00:00,0.0,1025.0336810000001,34.77166667,100.0,-0.140333333,0.873833333,238.02343198333332 -2016-12-21 14:00:00,0.0,1025.1097220000001,24.19833333,100.0,-0.25725,1.4275,238.02271381666665 -2016-12-21 15:00:00,0.0,1025.423611,10.05225,100.0,-0.30225,1.40175,238.0224101166667 -2016-12-21 16:00:00,0.0,1025.401736,1.71625,100.0,-0.37508333299999996,1.59125,238.022785 -2016-12-21 17:00:00,0.0,1025.782986,0.0,100.0,-0.393166667,2.220416667,238.02255563333333 -2016-12-21 18:00:00,0.0,1026.014583,0.0,100.0,-0.42025,2.5260833330000003,238.02142933333332 -2016-12-21 19:00:00,0.0,1026.014583,0.0,100.0,-0.29691666699999997,2.406666667,238.0231693833333 -2016-12-21 20:00:00,0.0,1026.00625,0.0,99.99166667,-0.10308333300000001,1.290916667,238.02275496666667 -2016-12-21 21:00:00,0.0,1025.7420140000002,0.0,100.0,0.0135,1.3013333329999999,238.0214404 -2016-12-21 22:00:00,0.0,1025.5600689999999,0.0,100.0,0.0785,1.6925833330000002,238.02097531666664 -2016-12-21 23:00:00,0.0,1025.379514,0.0,100.0,0.11933333300000001,1.6280000000000001,238.0218580333333 -2016-12-22 00:00:00,0.0,1025.5625,0.0,100.0,0.20925,1.165833333,238.02241011666663 -2016-12-22 01:00:00,0.0,1025.389583,0.0,100.0,0.270833333,0.6485833329999999,238.02277395 -2016-12-22 02:00:00,0.0,1025.41875,0.0,100.0,0.23075,0.79625,238.02140876666667 -2016-12-22 03:00:00,0.0,1025.458333,0.0,100.0,0.163333333,1.422916667,238.02197350000003 -2016-12-22 04:00:00,0.0,1025.489583,0.0,100.0,0.09025,1.191083333,238.02016383333333 -2016-12-22 05:00:00,0.0,1025.21875,0.0,100.0,-0.027416667000000002,1.6211666669999998,238.02208738333334 -2016-12-22 06:00:00,0.0,1025.3,0.0,100.0,-0.233833333,1.5874166669999998,238.02175205000003 -2016-12-22 07:00:00,0.0,1025.229167,0.0,100.0,-0.2995,1.999,238.02164763333334 -2016-12-22 08:00:00,0.0,1025.347917,5.772583332999999,100.0,-0.242083333,2.5545,238.021423 -2016-12-22 09:00:00,0.0,1025.760069,29.75166667,100.0,-0.11641666699999999,2.418916667,238.02021603333333 -2016-12-22 10:00:00,0.0,1025.95,39.47916667,100.0,0.032916667000000004,2.441083333,238.02073648333337 -2016-12-22 11:00:00,0.0,1025.808333,53.34333333,99.96666667,0.07675,2.31975,238.02142143333333 -2016-12-22 12:00:00,8.636385288,1025.4625,52.59833333,100.0,0.122,2.576083333,238.02124586666665 -2016-12-22 13:00:00,11.02840303,1025.3586810000002,46.11416667,100.0,0.2835,1.9435,238.02121893333333 -2016-12-22 14:00:00,10.74659206,1025.377083,22.75833333,100.0,0.35700000000000004,1.6673333330000002,238.02163181666666 -2016-12-22 15:00:00,5.252383512,1025.485417,13.58725,100.0,0.456166667,1.52225,238.02263475000004 -2016-12-22 16:00:00,7.594338576,1025.674653,1.1098333329999999,100.0,0.373666667,0.93225,238.02398566666668 -2016-12-22 17:00:00,0.0,1026.025,0.0,100.0,0.41100000000000003,0.454083333,238.02498223333336 -2016-12-22 18:00:00,2.423685432,1026.628819,0.0,100.0,0.47425,0.296083333,238.02473705 -2016-12-22 19:00:00,0.0,1026.989583,0.0,100.0,0.5096666670000001,0.281916667,238.02764611666666 -2016-12-22 20:00:00,0.0,1027.428819,0.0,100.0,0.47116666700000004,0.443166667,238.0269327 -2016-12-22 21:00:00,0.0,1027.920139,0.0,100.0,0.559333333,0.11708333300000001,238.02751164999998 -2016-12-22 22:00:00,0.0,1028.0375,0.0,100.0,0.5765,0.194333333,238.02820293333332 -2016-12-22 23:00:00,0.0,1028.682986,0.0,100.0,0.63425,0.070833333,238.02849400000002 -2016-12-23 00:00:00,0.0,1028.716667,0.0,99.51666667,0.70325,0.24833333300000002,238.02887208333334 -2016-12-23 01:00:00,0.0,1028.4086810000001,0.0,100.0,0.77375,0.520333333,238.03054571666667 -2016-12-23 02:00:00,0.0,1029.428472,0.0,100.0,0.814583333,0.15825,238.02717156666662 -2016-12-23 03:00:00,0.0,1030.235417,0.0,100.0,0.8514166670000001,0.072416667,238.02846868333333 -2016-12-23 04:00:00,0.0,1030.6350699999998,0.0,100.0,0.9375,0.47675,238.02950483333333 -2016-12-23 05:00:00,0.0,1030.677083,0.0,100.0,1.018666667,0.786333333,238.02941781666667 -2016-12-23 06:00:00,0.0,1030.635764,0.0,100.0,1.023833333,0.403083333,238.02954278333334 -2016-12-23 07:00:00,0.0,1030.678819,0.0,100.0,0.702916667,0.24475,238.03254045000003 -2016-12-23 08:00:00,0.0,1031.2350689999998,2.377,100.0,0.840583333,0.5175,238.02935140000002 -2016-12-23 09:00:00,0.0,1031.491667,25.04833333,100.0,1.195916667,0.792666667,238.02950324999998 -2016-12-23 10:00:00,0.0,1032.243403,31.13666667,100.0,1.776083333,0.54225,238.02913624999997 -2016-12-23 11:00:00,0.0,1032.089931,41.16416667,100.0,2.3845,0.15791666699999998,238.03031314999998 -2016-12-23 12:00:00,0.0,1031.512847,59.94583333,100.0,2.90725,0.433166667,238.03179538333333 -2016-12-23 13:00:00,0.0,1030.754514,40.71583333,99.99166667,3.3455,0.854583333,238.0304017666667 -2016-12-23 14:00:00,0.0,1029.723264,28.67166667,99.94166667,3.283416667,1.14475,238.03209909999998 -2016-12-23 15:00:00,0.0,1029.021528,20.68,99.38333333,3.115333333,1.1318333329999999,238.0312638833333 -2016-12-23 16:00:00,0.0,1028.404167,2.069,100.0,2.8875,1.275666667,238.03316689999997 -2016-12-23 17:00:00,0.0,1027.8045140000002,0.0,100.0,2.640583333,1.667416667,238.03446558333334 -2016-12-23 18:00:00,0.0,1027.342014,0.0,100.0,2.731833333,0.7779166670000001,238.03388665 -2016-12-23 19:00:00,0.0,1027.079514,0.0,100.0,2.7345,0.6749166670000001,238.03312100000002 -2016-12-23 20:00:00,0.0,1026.376736,0.0,100.0,3.1318333330000003,1.636916667,238.03451305 -2016-12-23 21:00:00,0.0,1025.561111,0.0,99.88333333,3.327833333,2.876833333,238.0336968 -2016-12-23 22:00:00,0.0,1024.9149300000001,0.0,99.75833333,3.4739999999999998,1.7825,238.0325626 -2016-12-23 23:00:00,0.0,1024.577083,0.0,97.25,3.915666667,1.55775,238.0340132 -2016-12-24 00:00:00,0.0,1023.5902779999999,0.0,92.54166667,4.716,1.519166667,238.03403846666666 -2016-12-24 01:00:00,0.0,1023.123611,0.0,92.09166667,5.329833333,1.848,238.03349115 -2016-12-24 02:00:00,0.0,1022.764583,0.0,92.80833333,5.007583333,1.204583333,238.03119586666665 -2016-12-24 03:00:00,0.0,1021.9899310000001,0.0,92.68333333,5.292083333,1.4529166669999998,238.0328979666667 -2016-12-24 04:00:00,0.0,1021.577083,0.0,99.00833333,5.4771666670000005,1.7204166669999998,238.03366989999998 -2016-12-24 05:00:00,0.0,1021.26875,0.0,100.0,5.35125,1.893,238.0354622 -2016-12-24 06:00:00,5.98390332,1021.2625,0.0,100.0,5.505916667,2.277666667,238.03372371666669 -2016-12-24 07:00:00,0.0,1021.46875,0.0,100.0,5.825083332999999,2.7833333330000003,238.03423463333334 -2016-12-24 08:00:00,3.504816168,1021.865972,0.516,99.61666667,5.986583333,2.6118333330000003,238.03318743333332 -2016-12-24 09:00:00,0.0,1022.0274300000001,21.7335,97.60833333,6.316166667,3.042,238.03313525 -2016-12-24 10:00:00,0.0,1021.915972,60.49916667,96.29166667,6.6725833329999995,3.53,238.03169733333334 -2016-12-24 11:00:00,0.0,1022.2920140000001,64.3,92.95,7.128833332999999,2.5284166669999997,238.03456525 -2016-12-24 12:00:00,0.0,1021.696528,88.8,90.04166667,7.676,3.06775,238.03473608333334 -2016-12-24 13:00:00,0.0,1021.868056,66.69333333,87.19166667,7.755416667,3.276333333,238.03317474999997 -2016-12-24 14:00:00,0.0,1021.8336810000001,70.8525,78.37416667,7.8205,2.51425,238.03432006666665 -2016-12-24 15:00:00,0.0,1022.079167,33.80666667,78.4925,6.9315,2.071583333,238.03455893333333 -2016-12-24 16:00:00,0.0,1022.0895830000001,4.058083333,79.90083333,6.126916667000001,1.6511666669999998,238.0379409666667 -2016-12-24 17:00:00,0.0,1022.5180550000001,0.0,80.95583333,6.0275,1.693,238.03709940000007 -2016-12-24 18:00:00,0.0,1022.702778,0.0,84.7,5.745666667,1.8659166669999998,238.03675298333337 -2016-12-24 19:00:00,0.0,1022.5100689999999,0.0,85.4,5.910416667000001,2.118416667,238.0374759166667 -2016-12-24 20:00:00,0.0,1022.547569,0.0,86.09166667,6.6325833329999995,3.3111666669999997,238.03649514999998 -2016-12-24 21:00:00,0.0,1022.548264,0.0,86.49166667,7.019666667,3.61725,238.03466331666667 -2016-12-24 22:00:00,0.0,1022.51875,0.0,86.29166667,7.14125,3.397833333,238.03501135000002 -2016-12-24 23:00:00,0.0,1021.984028,0.0,87.44166667,7.140916667000001,2.984833333,238.03496231666668 -2016-12-25 00:00:00,0.0,1021.537153,0.0,90.36666667,7.071916667000001,3.2614166669999998,238.03578645000002 -2016-12-25 01:00:00,0.0,1021.895833,0.0,94.10833333,6.781000000000001,2.850166667,238.03431375 -2016-12-25 02:00:00,0.0,1022.0329859999999,0.0,93.74166667,6.846166667,2.127,238.03589086666668 -2016-12-25 03:00:00,3.0285823919999997,1021.750347,0.0,96.83333333,6.712666667000001,2.343333333,238.03631321666668 -2016-12-25 04:00:00,3.8172056160000003,1021.221181,0.0,96.68333333,6.8513333329999995,2.74375,238.03674035000003 -2016-12-25 05:00:00,0.0,1020.721181,0.0,93.73333333,7.3135,3.8480000000000003,238.03577063333333 -2016-12-25 06:00:00,0.0,1020.897569,0.0,91.8,7.507916667000001,2.800166667,238.03343106666662 -2016-12-25 07:00:00,0.0,1020.7694439999999,0.0,92.775,7.4226666670000006,3.3185,238.03407805000003 -2016-12-25 08:00:00,0.0,1020.591319,1.75475,95.79166667,7.2256666670000005,3.640333333,238.03416346666666 -2016-12-25 09:00:00,0.0,1020.437153,7.627166667000001,95.30833333,7.603666667000001,4.061666667,238.0336952166667 -2016-12-25 10:00:00,0.0,1021.196181,11.40466667,95.40833333,7.757833333,3.4979166669999997,238.03198838333333 -2016-12-25 11:00:00,0.0,1020.9163199999999,18.8275,95.55,7.962833333,3.266166667,238.03219718333332 -2016-12-25 12:00:00,0.0,1020.7458330000001,23.135,97.16666667,8.135,3.0590833330000002,238.03192034999998 -2016-12-25 13:00:00,0.0,1020.837847,15.80416667,94.15,8.7025,2.695083333,238.0329359166667 -2016-12-25 14:00:00,0.0,1020.797569,15.155,93.325,8.969166667,3.0291666669999997,238.03281726666668 -2016-12-25 15:00:00,0.0,1021.135417,7.134333333,94.14166667,8.874166667,2.827,238.03250723333335 -2016-12-25 16:00:00,0.0,1021.195833,1.438916667,98.41666667,8.31,3.1928333330000003,238.03367466666668 -2016-12-25 17:00:00,0.0,1021.345833,0.0,99.64166667,8.040333333,3.18225,238.0350683 -2016-12-25 18:00:00,0.0,1021.6371529999999,0.0,97.425,8.113583333,2.8664166669999998,238.03451463333332 -2016-12-25 19:00:00,0.0,1021.4253470000001,0.0,98.175,7.9715,2.6875,238.0372607666667 -2016-12-25 20:00:00,0.0,1021.6520830000001,0.0,98.275,7.942333333,2.71725,238.03697129999998 -2016-12-25 21:00:00,0.0,1021.9079859999999,0.0,98.96666667,7.856,2.25825,238.03525020000004 -2016-12-25 22:00:00,0.0,1022.0017359999999,0.0,99.98333333,7.74075,2.38925,238.03526445 -2016-12-25 23:00:00,0.0,1022.156597,0.0,100.0,7.87375,2.382166667,238.03481520000003 -2016-12-26 00:00:00,0.0,1022.2222220000001,0.0,98.55833333,8.094583333,2.394583333,238.03575008333334 -2016-12-26 01:00:00,0.0,1022.475,0.0,97.68333333,8.544166667,2.620666667,238.03586398333331 -2016-12-26 02:00:00,0.0,1022.4899310000001,0.0,96.775,8.7,2.174416667,238.03424886666667 -2016-12-26 03:00:00,0.0,1022.2774310000001,0.0,95.93333333,8.8675,2.609083333,238.0337585 -2016-12-26 04:00:00,0.0,1021.854167,0.0,99.44166667,8.6775,3.069083333,238.03472345 -2016-12-26 05:00:00,0.0,1021.53125,0.0,100.0,8.6575,2.4914166669999998,238.0350936166667 -2016-12-26 06:00:00,0.0,1021.23368,0.0,100.0,8.536666667,2.707416667,238.0353783666667 -2016-12-26 07:00:00,0.0,1021.008333,0.0,99.90833333,8.735,2.983,238.03632430000002 -2016-12-26 08:00:00,0.0,1021.204167,2.2153333330000002,96.10833333,9.2425,3.657083333,238.03537676666664 -2016-12-26 09:00:00,0.0,1021.104167,22.305,93.24166667,9.649166667000001,3.4348333330000003,238.03544163333333 -2016-12-26 10:00:00,0.0,1021.329167,33.9525,91.49166667,10.045,3.620166667,238.03511258333333 -2016-12-26 11:00:00,0.0,1021.164931,47.9225,89.525,10.65166667,4.16225,238.03561405000002 -2016-12-26 12:00:00,14.06022401,1021.086458,51.3325,90.86666667,10.6475,3.740416667,238.03522331666667 -2016-12-26 13:00:00,5.88153624,1023.153819,40.7275,86.91666667,7.864333332999999,3.611333333,238.03512525 -2016-12-26 14:00:00,0.0,1023.591667,41.58416667,85.525,6.9371666670000005,1.7209166669999998,238.0371105 -2016-12-26 15:00:00,0.0,1024.309722,24.7585,87.425,6.650583332999999,1.98325,238.03657424999997 -2016-12-26 16:00:00,0.0,1025.1409720000001,2.910416667,84.95,6.46825,2.55275,238.03679255 -2016-12-26 17:00:00,0.0,1025.908333,0.014083333,83.45833333,6.233833333,2.322666667,238.03822573333335 -2016-12-26 18:00:00,0.0,1026.9534720000001,0.0,80.65166667,6.012083333,2.44575,238.03733671666666 -2016-12-26 19:00:00,0.0,1027.868403,0.0,77.93,5.520416667,1.9409999999999998,238.03852628333334 -2016-12-26 20:00:00,0.0,1028.455903,0.0,81.64166667,4.992666667,1.86675,238.03871135 -2016-12-26 21:00:00,0.0,1028.775347,0.0,83.55833333,4.3515,2.1284166669999998,238.03989775000002 -2016-12-26 22:00:00,0.0,1029.228819,0.0,84.825,3.978333333,2.058916667,238.03850571666666 -2016-12-26 23:00:00,0.0,1029.661806,0.0,85.65833333,3.234333333,1.9924166669999999,238.03858638333335 -2016-12-27 00:00:00,0.0,1030.09375,0.0,87.00833333,3.2795,2.0724166669999997,238.03851996666666 -2016-12-27 01:00:00,0.0,1030.126736,0.0,86.25833333,3.5213333330000003,2.3908333330000002,238.03741738333338 -2016-12-27 02:00:00,0.0,1030.495833,0.0,86.325,3.379333333,2.106833333,238.03710735 -2016-12-27 03:00:00,0.0,1030.766667,0.0,87.45833333,3.33175,2.288583333,238.03743163333334 -2016-12-27 04:00:00,0.0,1030.985417,0.0,87.90833333,3.347333333,2.2368333330000003,238.03740630000004 -2016-12-27 05:00:00,0.0,1031.4767359999998,0.0,88.34166667,3.555,2.002916667,238.03618666666668 -2016-12-27 06:00:00,0.0,1032.005903,0.0,89.23333333,3.7713333330000003,1.966166667,238.03552705 -2016-12-27 07:00:00,0.0,1032.430903,0.0,90.375,4.336833333,1.56025,238.03389768333332 -2016-12-27 08:00:00,0.0,1033.318403,1.560416667,91.35833333,4.527083333,1.607833333,238.03444028333334 -2016-12-27 09:00:00,0.0,1033.783333,25.96716667,91.85,4.462583333,1.85825,238.03400368333334 -2016-12-27 10:00:00,0.0,1034.176736,43.19,89.325,4.836916667,1.9433333330000002,238.0343612 -2016-12-27 11:00:00,0.0,1034.702083,46.18166667,87.05833333,5.6445,1.99725,238.03369998333332 -2016-12-27 12:00:00,0.0,1034.887847,43.53666667,84.35833333,6.051916667,2.55175,238.03249456666666 -2016-12-27 13:00:00,0.0,1035.1246529999999,75.1575,81.62833333,6.461416667000001,2.3655,238.03305615 -2016-12-27 14:00:00,0.0,1035.6100689999998,54.095,80.80833333,6.6348333329999996,2.4715,238.0322984333333 -2016-12-27 15:00:00,0.0,1036.057639,25.955,81.81666667,6.392583332999999,2.18275,238.03340415000002 -2016-12-27 16:00:00,0.0,1036.610417,3.262,84.76666667,6.245166667,1.75875,238.03424888333333 -2016-12-27 17:00:00,0.0,1036.81007,0.008,90.29166667,5.0671666669999995,0.939333333,238.0350857 -2016-12-27 18:00:00,0.0,1037.3204859999998,0.0,91.7,4.046916667,0.7485,238.0344054666667 -2016-12-27 19:00:00,0.0,1037.9996529999999,0.0,90.78333333,5.128416667,1.2945,238.03264801666668 -2016-12-27 20:00:00,0.0,1038.50625,0.0,91.65833333,5.457083333,1.68625,238.03349115 -2016-12-27 21:00:00,0.0,1038.676389,0.0,91.825,5.685416667,2.07425,238.03253411666665 -2016-12-27 22:00:00,0.0,1038.6,0.0,93.125,5.303916667,1.33475,238.03457316666666 -2016-12-27 23:00:00,0.0,1038.571528,0.0,93.625,5.145916667,0.7859999999999999,238.03396571666667 -2016-12-28 00:00:00,0.0,1038.552083,0.0,93.95,4.805833333,1.20175,238.03403850000004 -2016-12-28 01:00:00,0.0,1038.857986,0.0,91.25,5.158333333,0.769083333,238.03316846666664 -2016-12-28 02:00:00,0.0,1039.332639,0.0,90.81666667,5.342333333,0.9973333329999999,238.03208645000004 -2016-12-28 03:00:00,0.0,1038.899653,0.0,89.26666667,5.096166667,0.9933333329999999,238.03330131666667 -2016-12-28 04:00:00,0.0,1038.4375,0.0,87.93333333,5.0351666669999995,0.828,238.03228578333332 -2016-12-28 05:00:00,0.0,1038.620139,0.0,86.29166667,5.059666667,1.13025,238.03189346666667 -2016-12-28 06:00:00,0.0,1038.795486,0.0,87.29166667,4.88125,1.197916667,238.03146794999998 -2016-12-28 07:00:00,0.0,1039.029861,0.0,88.8,4.424583333,1.229083333,238.03141574999998 -2016-12-28 08:00:00,0.0,1039.303125,1.8720833330000002,91.28333333,3.9160000000000004,0.77875,238.03201526666666 -2016-12-28 09:00:00,0.0,1039.7038189999998,26.1175,90.98333333,4.2773333330000005,0.465583333,238.03144104999998 -2016-12-28 10:00:00,0.0,1039.869097,68.25416667,86.25,5.337166667,0.812916667,238.03051883333333 -2016-12-28 11:00:00,0.0,1039.90625,100.2166667,82.32166667,5.969416667000001,1.180416667,238.02967411666665 -2016-12-28 12:00:00,0.0,1039.3694449999998,110.61666670000001,77.665,6.385,1.322833333,238.03089531666663 -2016-12-28 13:00:00,0.0,1039.051389,90.80333333,75.1775,6.3660000000000005,1.045833333,238.02960290000001 -2016-12-28 14:00:00,0.0,1038.7836810000001,43.81083333,75.64083333,6.170333332999999,0.6828333329999999,238.0301043833333 -2016-12-28 15:00:00,0.0,1038.467014,26.17333333,77.75583333,5.910583333,0.8068333329999999,238.03141415000002 -2016-12-28 16:00:00,0.0,1038.404861,3.95975,82.755,5.155,0.91,238.03022301666667 -2016-12-28 17:00:00,0.0,1038.338889,0.002833333,85.56666667,4.9725,0.753833333,238.03230475 -2016-12-28 18:00:00,0.0,1038.433333,0.0,89.55,4.7314166669999995,0.5419166670000001,238.03162611666664 -2016-12-28 19:00:00,0.0,1038.644097,0.0,93.23333333,4.266916667,0.15466666699999998,238.03160398333338 -2016-12-28 20:00:00,0.0,1038.740972,0.0,95.83333333,3.6694166669999997,0.0335,238.03265434999994 -2016-12-28 21:00:00,0.0,1038.777778,0.0,97.25833333,3.398,0.011000000000000001,238.03202633333333 -2016-12-28 22:00:00,0.0,1038.64132,0.0,98.675,3.181833333,0.252916667,238.03264013333333 -2016-12-28 23:00:00,0.0,1038.39375,0.0,99.26666667,1.75225,0.168833333,238.03233005 -2016-12-29 00:00:00,0.0,1038.356945,0.0,99.49166667,1.5659999999999998,0.192833333,238.03233008333333 -2016-12-29 01:00:00,0.0,1037.960069,0.0,98.675,1.4935,0.195,238.03138725 -2016-12-29 02:00:00,0.0,1037.37257,0.0,99.5,0.293666667,0.2395,238.03338516666668 -2016-12-29 03:00:00,0.0,1036.978472,0.0,100.0,-1.08875,0.18558333300000002,238.03275875 -2016-12-29 04:00:00,0.0,1036.585417,0.0,100.0,-2.058333333,0.0,238.0337142 -2016-12-29 05:00:00,0.0,1036.550695,0.0,100.0,-2.590833333,0.106,238.03313365 -2016-12-29 06:00:00,0.0,1036.4243060000001,0.0,100.0,-2.9893333330000003,0.0615,238.0355982166667 -2016-12-29 07:00:00,0.0,1036.467361,0.0,100.0,-3.53525,0.12175,238.0365536666667 -2016-12-29 08:00:00,0.0,1036.48125,2.859833333,100.0,-3.87575,0.10266666699999999,238.03440708333332 -2016-12-29 09:00:00,0.0,1036.886806,12.14083333,100.0,-2.1645,0.009583333000000001,238.03250091666666 -2016-12-29 10:00:00,0.0,1037.088889,47.95,100.0,2.1756666669999998,0.024333333,238.03268598333332 -2016-12-29 11:00:00,0.0,1036.979167,62.01916667,99.88333333,2.350916667,0.491333333,238.03103766666663 -2016-12-29 12:00:00,0.0,1036.7211810000001,138.175,95.81666667,4.71825,0.166583333,238.02904768333335 -2016-12-29 13:00:00,0.0,1036.019097,155.5166667,89.48333333,5.560166667000001,0.93575,238.02888790000006 -2016-12-29 14:00:00,0.0,1035.5211800000002,122.225,86.01666667,5.8745,1.051583333,238.02770306666665 -2016-12-29 15:00:00,0.0,1035.305556,63.76333333,88.71666667,4.81925,0.56625,238.02720321666663 -2016-12-29 16:00:00,0.0,1035.009722,5.972833333,98.53333333,0.8675,0.26466666699999997,238.02875185000002 -2016-12-29 17:00:00,0.0,1034.760417,0.054583333,100.0,-0.9375,0.26358333300000003,238.03111833333332 -2016-12-29 18:00:00,0.0,1034.7524310000001,0.0,100.0,-1.613666667,0.294083333,238.03160556666668 -2016-12-29 19:00:00,0.0,1034.679167,0.0,100.0,-2.2119999999999997,0.2275,238.03273341666667 -2016-12-29 20:00:00,0.0,1034.3753470000001,0.0,100.0,-2.979833333,0.13875,238.03307671666667 -2016-12-29 21:00:00,0.0,1034.432986,0.0,100.0,-3.30525,0.00775,238.03320641666667 -2016-12-29 22:00:00,0.0,1034.666667,0.0,100.0,-3.918416667,0.133333333,238.0317764 -2016-12-29 23:00:00,0.0,1034.614236,0.0,100.0,-4.282166667,0.18816666699999998,238.03270653333334 -2016-12-30 00:00:00,0.0,1034.5149310000002,0.0,100.0,-4.66225,0.210916667,238.03237120000003 -2016-12-30 01:00:00,0.0,1034.083681,0.0,100.0,-4.703583333,0.09041666699999999,238.03264013333333 -2016-12-30 02:00:00,0.0,1034.19132,0.0,100.0,-3.728333333,0.038583333,238.03126861666667 -2016-12-30 03:00:00,0.0,1034.017014,0.0,100.0,-3.272833333,0.321666667,238.03292326666664 -2016-12-30 04:00:00,0.0,1033.9975689999999,0.0,100.0,-3.316083333,0.42108333299999995,238.03101394999996 -2016-12-30 05:00:00,0.0,1034.03125,0.0,100.0,-3.8874166669999997,0.10375,238.0305631 -2016-12-30 06:00:00,0.0,1033.88125,0.0,100.0,-4.3465,0.341416667,238.02891795000002 -2016-12-30 07:00:00,0.0,1034.037847,0.0,100.0,-4.768916667,0.382666667,238.0287661 -2016-12-30 08:00:00,0.0,1034.318056,2.3425,100.0,-5.029166667,0.40075,238.02771730000003 -2016-12-30 09:00:00,0.0,1034.7625,22.01416667,100.0,-4.808,0.309,238.02764928333332 -2016-12-30 10:00:00,0.0,1034.747917,58.74333333,100.0,-4.05925,0.245166667,238.02677450000002 -2016-12-30 11:00:00,0.0,1034.308333,97.79666667,100.0,-3.49475,0.5135833329999999,238.02704976666664 -2016-12-30 12:00:00,0.0,1033.896181,124.79166670000001,100.0,-3.128583333,0.208833333,238.02561658333335 -2016-12-30 13:00:00,0.0,1033.274653,158.85,100.0,-2.952083333,0.148166667,238.0251531 -2016-12-30 14:00:00,0.0,1032.806597,155.5916667,100.0,-2.397833333,0.055083333,238.0242609166667 -2016-12-30 15:00:00,0.0,1032.696528,80.21833333,100.0,-2.740333333,0.149916667,238.02343199999999 -2016-12-30 16:00:00,0.0,1032.31875,6.464083333,100.0,-3.6669166669999997,0.0,238.02711143333332 -2016-12-30 17:00:00,0.0,1032.3625,0.063,100.0,-4.71025,0.000583333,238.02888156666666 -2016-12-30 18:00:00,0.0,1032.185764,0.0,100.0,-5.3754166670000005,0.02975,238.02978638333332 -2016-12-30 19:00:00,0.0,1032.135764,0.0,100.0,-6.084,0.046333333,238.02934348333335 -2016-12-30 20:00:00,0.0,1032.380556,0.0,100.0,-6.627083333,0.0,238.02766351666665 -2016-12-30 21:00:00,0.0,1032.433333,0.0,100.0,-4.978083333,0.021833332999999996,238.02707981666666 -2016-12-30 22:00:00,0.0,1032.295833,0.0,100.0,-3.9380833330000002,0.079166667,238.02589811666667 -2016-12-30 23:00:00,0.0,1032.183681,0.0,100.0,-3.81,0.27399999999999997,238.0266954 -2016-12-31 00:00:00,0.0,1031.808333,0.0,100.0,-4.03225,0.29733333300000003,238.02729493333334 -2016-12-31 01:00:00,0.0,1031.585417,0.0,100.0,-3.9899166669999997,0.6779999999999999,238.02646604999998 -2016-12-31 02:00:00,0.0,1031.559028,0.0,100.0,-3.7785,0.862666667,238.02461208333332 -2016-12-31 03:00:00,0.0,1031.205903,0.0,100.0,-3.57975,0.5721666670000001,238.02390655 -2016-12-31 04:00:00,0.0,1030.853819,0.0,100.0,-3.798916667,0.66275,238.0244887 -2016-12-31 05:00:00,0.0,1030.539931,0.0,100.0,-3.7181666669999998,0.425416667,238.02463263333334 -2016-12-31 06:00:00,0.0,1030.292014,0.0,100.0,-3.954416667,0.43825,238.02444125000002 -2016-12-31 07:00:00,0.0,1030.197917,0.0,100.0,-4.171583333,0.40275,238.02393344999996 -2016-12-31 08:00:00,0.0,1030.075,1.549833333,100.0,-4.343999999999999,0.557416667,238.02416915 -2016-12-31 09:00:00,0.0,1030.25,16.13791667,100.0,-4.32225,1.100833333,238.02437481666666 -2016-12-31 10:00:00,0.0,1030.20625,45.32666667,100.0,-4.010916667,1.209416667,238.02397301666667 -2016-12-31 11:00:00,0.0,1029.881597,63.99166667,100.0,-3.8898333330000003,1.0304166670000001,238.0235648833333 -2016-12-31 12:00:00,0.0,1029.283333,67.91333333,100.0,-3.64775,0.8165,238.0230428666667 -2016-12-31 13:00:00,0.0,1028.634028,61.67416667,100.0,-3.503166667,0.513083333,238.02264581666665 -2016-12-31 14:00:00,0.0,1028.027431,43.85333333,100.0,-3.548166667,0.698583333,238.02488891666667 -2016-12-31 15:00:00,0.0,1027.710069,20.30166667,100.0,-3.7784166669999997,0.9398333329999999,238.0242292833333 -2016-12-31 16:00:00,0.0,1027.397917,3.3845,100.0,-4.10875,0.94575,238.02485725 -2016-12-31 17:00:00,0.0,1026.9527779999999,0.025833332999999997,100.0,-4.350833333,0.8999166670000001,238.02540458333337 -2016-12-31 18:00:00,0.0,1026.580903,0.0,100.0,-4.5805,0.9675,238.02575893333332 -2016-12-31 19:00:00,0.0,1026.082292,0.0,100.0,-4.87075,1.014666667,238.02639326666664 -2016-12-31 20:00:00,0.0,1025.6413189999998,0.0,100.0,-5.0258333330000005,1.003083333,238.0260753166667 -2016-12-31 21:00:00,0.0,1024.880208,0.0,100.0,-4.955166667,1.39325,238.02625408333336 -2016-12-31 22:00:00,0.0,1024.4378470000001,0.0,100.0,-5.138833333,1.030166667,238.02553431666664 -2016-12-31 23:00:00,0.0,1023.8791669999999,0.0,100.0,-5.242000000000001,0.986833333,238.02651666666668 diff --git a/spotpy/examples/cmf_data/fulda_climate.csv b/spotpy/examples/cmf_data/fulda_climate.csv deleted file mode 100644 index 61114e8d..00000000 --- a/spotpy/examples/cmf_data/fulda_climate.csv +++ /dev/null @@ -1,3655 +0,0 @@ -date,tmax,tmin,tmean,Prec,Q -#,°C,°C,°C,mm/day,m³/s -01.01.1979,-12.9,-20.1,-16.5,1,143 -02.01.1979,-10.9,-19.8,-15.35,0.6,110 -03.01.1979,-6.2,-19.1,-12.65,0.7,62.6 -04.01.1979,-6.3,-17,-11.65,0,46.9 -05.01.1979,-12.4,-21,-16.7,0,35.7 -06.01.1979,-9.5,-21,-15.25,0.1,31.7 -07.01.1979,-6.7,-20.6,-13.65,1,32.2 -08.01.1979,-0.4,-7.6,-4,2.6,35.7 -09.01.1979,1.1,-1.3,-0.1,3.5,35.1 -10.01.1979,1.1,-1.3,-0.1,6,25.2 -11.01.1979,1.6,-0.1,0.75,5.4,22.4 -12.01.1979,1.2,-0.3,0.45,3.3,19.4 -13.01.1979,0.3,-1.7,-0.7,1.8,15.6 -14.01.1979,0.7,-3.8,-1.55,1.2,16.9 -15.01.1979,-0.5,-5.7,-3.1,0.1,17.1 -16.01.1979,-3.8,-6.5,-5.15,0.3,18.6 -17.01.1979,-3.1,-6.6,-4.85,0,19.4 -18.01.1979,-3.4,-7.3,-5.35,0,20.7 -19.01.1979,-3.3,-6.9,-5.1,0.1,20.2 -20.01.1979,-3,-6.9,-4.95,0.1,20.2 -21.01.1979,-3.6,-5.1,-4.35,0.1,20.7 -22.01.1979,-2.2,-5.9,-4.05,1.2,24.2 -23.01.1979,3.5,-3.3,0.1,4.6,21.6 -24.01.1979,3.5,-1.9,0.8,1.1,15.6 -25.01.1979,1.2,-6,-2.4,0,17.5 -26.01.1979,0.1,-7.1,-3.5,0,17.5 -27.01.1979,1.7,-1.2,0.25,2.4,15.6 -28.01.1979,1.4,-1.6,-0.1,0.5,13.8 -29.01.1979,1.7,-0.5,0.6,1,13.4 -30.01.1979,2.7,-1.1,0.8,2.9,13.1 -31.01.1979,1.7,-0.5,0.6,1.2,13.4 -01.02.1979,2.8,0.5,1.65,7.3,13.4 -02.02.1979,5,-0.7,2.15,4.1,13.8 -03.02.1979,2.2,-3.5,-0.65,0,24.2 -04.02.1979,3.2,-0.7,1.25,1,55.2 -05.02.1979,3,-2,0.5,0,34.4 -06.02.1979,1.9,-8.3,-3.2,0.3,27.1 -07.02.1979,1.4,-8.4,-3.5,5.2,23.3 -08.02.1979,2.6,-0.7,0.95,0.2,20.7 -09.02.1979,0,-9.6,-4.8,0,22 -10.02.1979,0.7,-11.6,-5.45,0.3,22 -11.02.1979,0.7,-3.6,-1.45,8.2,22 -12.02.1979,1.9,-2.1,-0.1,2.1,21.6 -13.02.1979,4.1,0.7,2.4,4.4,24.7 -14.02.1979,6.5,-0.5,3,3.7,25.6 -15.02.1979,0.2,-7.4,-3.6,0.7,44.7 -16.02.1979,-4.1,-8.1,-6.1,0.8,80.3 -17.02.1979,-5,-8.3,-6.65,2,60.1 -18.02.1979,-2.8,-8.2,-5.5,0,35.1 -19.02.1979,1.6,-2.9,-0.65,0,31.7 -20.02.1979,4.5,-1.3,1.6,0,24.2 -21.02.1979,4.3,-5.3,-0.5,0,19.4 -22.02.1979,2.6,-8.6,-3,0.2,18.2 -23.02.1979,0.7,-3.9,-1.6,3,19 -24.02.1979,1.5,-6.2,-2.35,0.5,18.6 -25.02.1979,1.8,-7.8,-3,0,18.6 -26.02.1979,2.4,-10.9,-4.25,0,16.9 -27.02.1979,5,-8.9,-1.95,0,15.6 -28.02.1979,5.6,-7.5,-0.95,0.1,15.9 -01.03.1979,5.6,-4.1,0.75,0.5,15.9 -02.03.1979,5.2,-0.9,2.15,0.5,15.9 -03.03.1979,7.3,3.7,5.5,0.6,20.7 -04.03.1979,8.6,1.3,4.95,7.6,56.8 -05.03.1979,8.2,-1.4,3.4,0.1,109 -06.03.1979,9.4,-1.7,3.85,1.9,148 -07.03.1979,8.1,1,4.55,1,114 -08.03.1979,5.8,-0.2,2.8,1,104 -09.03.1979,6,-0.3,2.85,17.8,93.7 -10.03.1979,5.3,-1.9,1.7,2.4,98.5 -11.03.1979,3.6,-3,0.3,13.4,155 -12.03.1979,9.4,3.3,6.35,2.4,146 -13.03.1979,8.2,4.2,6.2,6.4,160 -14.03.1979,4.6,2.4,3.5,8.7,170 -15.03.1979,4.5,1.9,3.2,0.5,140 -16.03.1979,4.7,1.9,3.3,2.9,149 -17.03.1979,9.4,1.7,5.55,0.1,137 -18.03.1979,8.8,-0.5,4.15,3.9,106 -19.03.1979,2.9,-1.4,0.75,0.1,87.3 -20.03.1979,6.6,-1.3,2.65,1.3,79.4 -21.03.1979,10,0.9,5.45,2.3,68.6 -22.03.1979,8,1.4,4.7,2.5,61.7 -23.03.1979,7,-0.7,3.15,0.6,57.6 -24.03.1979,8.4,-4.2,2.1,0.2,52.2 -25.03.1979,10.7,-1,4.85,5.5,45.4 -26.03.1979,13.2,6,9.6,6.3,45.4 -27.03.1979,8.9,2.4,5.65,2.1,62.6 -28.03.1979,10.3,6.5,8.4,4.2,63.4 -29.03.1979,6.8,2.5,4.65,3.8,66 -30.03.1979,4.2,2,3.1,5.6,71.2 -31.03.1979,4.6,1.8,3.2,2.1,72.1 -01.04.1979,6.4,-0.7,2.85,1.9,70.4 -02.04.1979,9.5,2.9,6.2,7,61.7 -03.04.1979,8,0.9,4.45,2.1,66 -04.04.1979,8.5,-0.8,3.85,0.9,79.4 -05.04.1979,6,0.1,3.05,1.5,70.4 -06.04.1979,8,0.8,4.4,2.8,60.9 -07.04.1979,6.3,2.7,4.5,3.7,56 -08.04.1979,7.2,0.8,4,0.1,58.5 -09.04.1979,11.8,-0.7,5.55,0,53.7 -10.04.1979,18.2,-0.6,8.8,0,46.2 -11.04.1979,18.2,1.7,9.95,0,41.7 -12.04.1979,14.8,4.8,9.8,0,39 -13.04.1979,19.9,1.2,10.55,0,36.4 -14.04.1979,20.7,1.4,11.05,0,33.3 -15.04.1979,21.9,3.4,12.65,0.8,31.2 -16.04.1979,10.4,4,7.2,15.5,30.6 -17.04.1979,5,2.7,3.85,0.4,37 -18.04.1979,9.2,-0.1,4.55,0,40.3 -19.04.1979,11.2,-0.4,5.4,0,32.8 -20.04.1979,11.7,-1.5,5.1,2.1,29 -21.04.1979,9.4,2.2,5.8,3,28 -22.04.1979,9.7,4.2,6.95,8,28.5 -23.04.1979,14.7,4,9.35,7.3,31.2 -24.04.1979,12.4,7,9.7,1.7,44 -25.04.1979,10.5,5,7.75,6.5,60.1 -26.04.1979,12.7,2.3,7.5,0.1,56.8 -27.04.1979,9,1.4,5.2,0.1,50.7 -28.04.1979,11,1,6,0.1,45.4 -29.04.1979,9.6,-0.5,4.55,4,40.3 -30.04.1979,8.8,3.1,5.95,6.6,35.7 -01.05.1979,7.8,-1.5,3.15,4.8,44.7 -02.05.1979,7.8,3.5,5.65,0.4,46.9 -03.05.1979,8.6,1.3,4.95,2.5,44.7 -04.05.1979,5.6,0.3,2.95,2.2,38.4 -05.05.1979,10,2.6,6.3,3.1,36.4 -06.05.1979,8.4,1.1,4.75,1.1,35.7 -07.05.1979,13.3,-2.6,5.35,0,34.4 -08.05.1979,18.4,-1.1,8.65,0,31.2 -09.05.1979,21,0.5,10.75,0.1,28 -10.05.1979,12.2,4,8.1,0.1,26.1 -11.05.1979,10,-0.1,4.95,9.6,25.2 -12.05.1979,12.7,9.5,11.1,0.1,27.1 -13.05.1979,19,8.1,13.55,0,29 -14.05.1979,24.2,5.1,14.65,0,25.2 -15.05.1979,26.4,7.1,16.75,0,23.3 -16.05.1979,26.5,7.8,17.15,0,22.4 -17.05.1979,20,11.4,15.7,1,21.1 -18.05.1979,17.5,11.9,14.7,3.9,21.1 -19.05.1979,20,9.4,14.7,0.2,21.1 -20.05.1979,22,11,16.5,0,21.1 -21.05.1979,19.2,10.3,14.75,0,19.8 -22.05.1979,16.8,8.5,12.65,0.6,19 -23.05.1979,25.5,9.9,17.7,6.1,18.2 -24.05.1979,16.4,7.8,12.1,6.2,19.8 -25.05.1979,13.7,6.6,10.15,3.8,22 -26.05.1979,23.4,4.8,14.1,0.6,19.8 -27.05.1979,17.5,11.6,14.55,4.1,18.2 -28.05.1979,19,9.4,14.2,0,17.8 -29.05.1979,28.8,7.4,18.1,0,17.8 -30.05.1979,29.8,15.1,22.45,0,16.3 -31.05.1979,30.5,12.3,21.4,0,15.6 -01.06.1979,26,12.7,19.35,4.6,14.5 -02.06.1979,29.8,15.9,22.85,0.2,15.2 -03.06.1979,30.3,15.1,22.7,0,16.9 -04.06.1979,30.4,15.2,22.8,0,13.8 -05.06.1979,28.4,13.9,21.15,15.1,18.2 -06.06.1979,15.9,14.5,15.2,1.9,25.2 -07.06.1979,20,13.1,16.55,5.2,19.4 -08.06.1979,15.5,10.3,12.9,0.1,17.8 -09.06.1979,20.4,6.2,13.3,0,16.9 -10.06.1979,23.4,7.3,15.35,0,14.8 -11.06.1979,25.2,14.7,19.95,0.3,13.8 -12.06.1979,25.2,13.4,19.3,8.2,13.4 -13.06.1979,22.6,15.2,18.9,0.9,14.8 -14.06.1979,17.9,9.5,13.7,9.6,15.2 -15.06.1979,14.8,9.9,12.35,3.2,14.8 -16.06.1979,15.8,8.2,12,0.6,17.1 -17.06.1979,15.2,9.2,12.2,0.1,16.3 -18.06.1979,15.6,9.9,12.75,0.1,14.5 -19.06.1979,21.2,12.7,16.95,0,13.1 -20.06.1979,24.6,9.2,16.9,0,12.8 -21.06.1979,27,10.5,18.75,0.8,12.4 -22.06.1979,18,12.3,15.15,11.5,13.1 -23.06.1979,17.5,13.2,15.35,1.7,14.2 -24.06.1979,25.1,11.7,18.4,0.2,16.3 -25.06.1979,19.8,9.1,14.45,0.1,13.4 -26.06.1979,23.2,10.3,16.75,0.9,12.4 -27.06.1979,23,10.2,16.6,16.3,11.9 -28.06.1979,22.4,13.7,18.05,0,14.2 -29.06.1979,22.5,11.5,17,0.3,19.4 -30.06.1979,17.2,11.9,14.55,0.3,13.8 -01.07.1979,16.1,9.7,12.9,0,12.1 -02.07.1979,14.7,7.3,11,0,11.6 -03.07.1979,17.6,5.1,11.35,0,11.4 -04.07.1979,16.8,8.6,12.7,0,11.1 -05.07.1979,20,7.7,13.85,0,10.8 -06.07.1979,20.8,5.9,13.35,0,10.8 -07.07.1979,22.4,10.4,16.4,5,10.6 -08.07.1979,18.6,13.1,15.85,5.5,11.1 -09.07.1979,18.4,12.6,15.5,4.9,11.4 -10.07.1979,16.6,12.1,14.35,0,12.8 -11.07.1979,22.2,6.3,14.25,0,12.8 -12.07.1979,24.2,9.1,16.65,0.1,11.4 -13.07.1979,22.9,12.6,17.75,26.7,10.8 -14.07.1979,22.6,14.5,18.55,0.1,17.1 -15.07.1979,19,12,15.5,0,33.9 -16.07.1979,15.7,10.2,12.95,3.3,17.1 -17.07.1979,18.6,10.7,14.65,0.7,14.2 -18.07.1979,23.6,14.9,19.25,0.9,13.4 -19.07.1979,20.4,12.6,16.5,0.9,12.8 -20.07.1979,17,12.5,14.75,0,12.4 -21.07.1979,17.2,12.7,14.95,2.7,12.1 -22.07.1979,18,10.9,14.45,0.2,11.6 -23.07.1979,17.4,11.5,14.45,0.4,11.6 -24.07.1979,17.5,10.4,13.95,0.5,11.6 -25.07.1979,21,12.5,16.75,0.9,10.8 -26.07.1979,22,14,18,0.6,11.4 -27.07.1979,23,13.5,18.25,0,10.8 -28.07.1979,28,14,21,0.9,10.3 -29.07.1979,26,17,21.5,19,10.3 -30.07.1979,21.5,15.9,18.7,0.6,13.4 -31.07.1979,24.5,11.7,18.1,9.6,19 -01.08.1979,22.3,13.6,17.95,1.1,14.5 -02.08.1979,20.6,15.5,18.05,7.2,17.5 -03.08.1979,22,12.3,17.15,0.7,15.9 -04.08.1979,21.3,11.1,16.2,3.6,17.5 -05.08.1979,22.2,8.4,15.3,0,14.8 -06.08.1979,24.1,9.1,16.6,0,14.8 -07.08.1979,26.5,10.4,18.45,0,12.8 -08.08.1979,23.9,12.9,18.4,1.7,12.1 -09.08.1979,19.1,9.3,14.2,21,11.6 -10.08.1979,14.9,11.5,13.2,3,13.8 -11.08.1979,18.4,8.4,13.4,0.4,22.9 -12.08.1979,19.6,10.4,15,0.6,21.1 -13.08.1979,22.5,10.3,16.4,0.5,15.6 -14.08.1979,25.7,10.5,18.1,0,14.5 -15.08.1979,20.9,14,17.45,0.4,13.4 -16.08.1979,16.3,11.8,14.05,0.1,12.8 -17.08.1979,21.6,12.7,17.15,0.1,11.9 -18.08.1979,22.1,9.8,15.95,0.4,11.6 -19.08.1979,24.2,9.6,16.9,7,11.1 -20.08.1979,17.4,12.3,14.85,0.7,11.6 -21.08.1979,20.6,10.1,15.35,2.2,13.8 -22.08.1979,19,11,15,0.5,12.1 -23.08.1979,19.5,7.1,13.3,1,11.1 -24.08.1979,16.6,7.8,12.2,2,11.6 -25.08.1979,14,8.6,11.3,1.8,11.4 -26.08.1979,14.6,8.4,11.5,2.9,11.4 -27.08.1979,16.5,9.3,12.9,0.2,11.6 -28.08.1979,14.4,10.2,12.3,0.1,11.9 -29.08.1979,21,5.7,13.35,0,11.1 -30.08.1979,24.3,6.8,15.55,0,10.8 -31.08.1979,25.7,8.9,17.3,0,10.3 -01.09.1979,26.5,9.5,18,0,10.1 -02.09.1979,27.6,10.6,19.1,6.9,9.8 -03.09.1979,18.8,13,15.9,11.1,10.1 -04.09.1979,17.6,10.4,14,0.3,12.1 -05.09.1979,20.5,7.7,14.1,0,13.4 -06.09.1979,23.4,6.5,14.95,0,12.1 -07.09.1979,25.5,8.2,16.85,0.3,10.6 -08.09.1979,24,15.3,19.65,0.6,10.6 -09.09.1979,19.7,13.3,16.5,6.4,10.6 -10.09.1979,21,12.1,16.55,0.1,11.6 -11.09.1979,22.2,9.1,15.65,0,11.9 -12.09.1979,20,10.4,15.2,0,11.6 -13.09.1979,20.4,8.7,14.55,0,10.1 -14.09.1979,18,7.3,12.65,0.1,10.1 -15.09.1979,13.8,6.8,10.3,0.2,9.8 -16.09.1979,15.4,0.1,7.75,0,9.8 -17.09.1979,19.2,2.3,10.75,0,9.55 -18.09.1979,21.6,8.1,14.85,0,9.05 -19.09.1979,22.5,13.4,17.95,0.4,9.55 -20.09.1979,20.8,10,15.4,9,9.3 -21.09.1979,15.6,7.6,11.6,0.1,10.3 -22.09.1979,14.7,5.4,10.05,0.1,10.6 -23.09.1979,13,6.5,9.75,0,10.8 -24.09.1979,15.4,5.2,10.3,0,10.1 -25.09.1979,15.8,4.6,10.2,0,9.3 -26.09.1979,17.3,2.8,10.05,0,9.8 -27.09.1979,19,7.7,13.35,0.6,9.05 -28.09.1979,12.7,9.8,11.25,0.2,10.1 -29.09.1979,17.4,2.5,9.95,0,11.4 -30.09.1979,17.8,-0.2,8.8,0,11.6 -01.10.1979,16.6,1.5,9.05,0,9.05 -02.10.1979,14.8,3,8.9,0,9.05 -03.10.1979,15.8,1.9,8.85,0,8.8 -04.10.1979,20.5,6.3,13.4,0,9.05 -05.10.1979,17.2,9.5,13.35,2.8,9.05 -06.10.1979,13.8,7.9,10.85,0.3,9.3 -07.10.1979,12,3.3,7.65,0,9.3 -08.10.1979,20.5,7.7,14.1,0,9.55 -09.10.1979,22.5,6.8,14.65,0,9.3 -10.10.1979,23.6,7.7,15.65,0,9.55 -11.10.1979,23,6.5,14.75,0.1,8.8 -12.10.1979,20.6,9.8,15.2,0.1,9.05 -13.10.1979,21,5.2,13.1,0.1,8.8 -14.10.1979,16.6,9.3,12.95,0.8,9.3 -15.10.1979,15.4,8.8,12.1,0.2,9.05 -16.10.1979,13.2,8.3,10.75,3.9,9.3 -17.10.1979,14,7.3,10.65,0.2,9.55 -18.10.1979,12.4,5.2,8.8,1.1,9.8 -19.10.1979,13.4,4.2,8.8,0,9.8 -20.10.1979,15.2,1,8.1,0,9.55 -21.10.1979,12.7,5.2,8.95,0,9.3 -22.10.1979,11.8,-0.1,5.85,0,8.8 -23.10.1979,10.2,-0.7,4.75,0,8.55 -24.10.1979,12.6,-3.4,4.6,0,8.8 -25.10.1979,11,-0.5,5.25,0.1,8.8 -26.10.1979,9.9,-0.2,4.85,0,8.8 -27.10.1979,8,-0.8,3.6,0,8.8 -28.10.1979,8,-1.4,3.3,0.7,8.8 -29.10.1979,6.6,-0.2,3.2,0.5,8.8 -30.10.1979,7.4,1.1,4.25,0,9.3 -31.10.1979,11,-0.5,5.25,10.2,9.05 -01.11.1979,12.5,5.1,8.8,2.9,10.6 -02.11.1979,11.2,3.9,7.55,1.4,10.6 -03.11.1979,6,1.2,3.6,0.2,10.6 -04.11.1979,9.3,2.2,5.75,13.6,10.3 -05.11.1979,9.4,4.9,7.15,8.6,11.9 -06.11.1979,8,4.5,6.25,6.8,14.8 -07.11.1979,8.7,1.8,5.25,12.4,17.5 -08.11.1979,11.8,5,8.4,23.1,19.4 -09.11.1979,7.8,1.5,4.65,0.5,35.1 -10.11.1979,6.1,-1.1,2.5,1.3,60.9 -11.11.1979,6.9,-1.5,2.7,0.3,33.9 -12.11.1979,4,-1.5,1.25,6.9,22.9 -13.11.1979,6.6,-2.1,2.25,1.4,19.4 -14.11.1979,5.3,-3.6,0.85,1.3,22 -15.11.1979,5.7,-0.7,2.5,7.2,22.4 -16.11.1979,4.9,-0.1,2.4,0.1,28.5 -17.11.1979,1.4,-3.5,-1.05,0,22.9 -18.11.1979,2.9,-4.6,-0.85,0.1,22.9 -19.11.1979,3.6,0.4,2,0,19 -20.11.1979,5.4,2.9,4.15,0,17.5 -21.11.1979,4.5,2.8,3.65,0.2,15.9 -22.11.1979,2.8,-2.7,0.05,0,15.2 -23.11.1979,1.6,-5.5,-1.95,0.1,14.5 -24.11.1979,1.5,-0.5,0.5,0.4,13.8 -25.11.1979,2.8,0.8,1.8,0,13.4 -26.11.1979,6.9,2,4.45,2,13.1 -27.11.1979,8,2.4,5.2,1.3,12.8 -28.11.1979,9.5,2.7,6.1,0.1,13.1 -29.11.1979,10.8,1.7,6.25,0.1,13.8 -30.11.1979,6,0.4,3.2,0.8,13.4 -01.12.1979,9.7,5.8,7.75,3.8,14.9 -02.12.1979,10.1,6.7,8.4,0,14.9 -03.12.1979,12,7.1,9.55,0,16.5 -04.12.1979,11.8,3.1,7.45,0,15.6 -05.12.1979,12.1,1.3,6.7,3.1,14.9 -06.12.1979,11.1,6.7,8.9,3.2,14.2 -07.12.1979,12.4,7.9,10.15,1.7,15.6 -08.12.1979,11.4,8.7,10.05,3.1,20 -09.12.1979,9.5,6.3,7.9,13,19.2 -10.12.1979,10.7,8,9.35,32.9,25.2 -11.12.1979,10.4,6.1,8.25,9.1,74.8 -12.12.1979,6.5,-3.5,1.5,0.2,127 -13.12.1979,3.5,-4.1,-0.3,9.4,188 -14.12.1979,8.9,2.9,5.9,6.2,109 -15.12.1979,9.8,4.4,7.1,7.3,90.4 -16.12.1979,5.1,3.8,4.45,1.6,101 -17.12.1979,8.2,2.5,5.35,8.9,113 -18.12.1979,6.8,3.1,4.95,1.2,90.4 -19.12.1979,3.9,-1.9,1,1.7,101 -20.12.1979,1,-2.9,-0.95,0.5,85.2 -21.12.1979,1.3,-1,0.15,0.1,62.7 -22.12.1979,2.8,-1,0.9,0.1,51.1 -23.12.1979,3.1,1.6,2.35,0.3,45.7 -24.12.1979,2.8,1.7,2.25,2.3,41.2 -25.12.1979,3.1,0.6,1.85,0.4,37.5 -26.12.1979,3.5,-2.8,0.35,0,34.5 -27.12.1979,1.9,-4.9,-1.5,0.1,30.5 -28.12.1979,6.8,1.8,4.3,1.4,27.8 -29.12.1979,5,0.7,2.85,8.7,27.3 -30.12.1979,2,0.5,1.25,3.5,29.4 -31.12.1979,2.8,0.3,1.55,1.4,30.5 -01.01.1980,1.6,-1.4,0.1,1.7,27.8 -02.01.1980,0.2,-1.5,-0.65,0.6,26.2 -03.01.1980,-0.5,-8.5,-4.5,0.3,24.8 -04.01.1980,-0.6,-10.6,-5.6,5,23 -05.01.1980,3,-0.7,1.15,1.5,22.1 -06.01.1980,3.7,0.9,2.3,3.1,24.4 -07.01.1980,3.1,0.9,2,0.4,29.4 -08.01.1980,1.6,-0.1,0.75,0,36.9 -09.01.1980,1.5,-1.7,-0.1,0,32.8 -10.01.1980,-0.9,-3,-1.95,0,27.8 -11.01.1980,-2.7,-8.7,-5.7,0,25.2 -12.01.1980,-6.5,-11,-8.75,0,23 -13.01.1980,-4.5,-13.1,-8.8,0,18.8 -14.01.1980,-2.7,-14.5,-8.6,0,20.4 -15.01.1980,-5.9,-11.1,-8.5,0,26.2 -16.01.1980,-1.4,-12.5,-6.95,0,28.9 -17.01.1980,-0.9,-4.5,-2.7,0,28.9 -18.01.1980,-1.3,-8.9,-5.1,0,24.4 -19.01.1980,-0.3,-12.1,-6.2,0,21.7 -20.01.1980,-1.8,-5.9,-3.85,0,21.7 -21.01.1980,-0.5,-7.4,-3.95,3.4,18.8 -22.01.1980,5.5,-0.6,2.45,3,17.6 -23.01.1980,4.9,1.4,3.15,3.7,18.4 -24.01.1980,3.4,-0.2,1.6,0.2,21.7 -25.01.1980,4.2,0.6,2.4,2.6,23.9 -26.01.1980,2,-2.3,-0.15,2.9,20.8 -27.01.1980,2.1,-8.6,-3.25,1.2,20.8 -28.01.1980,-2.8,-15.6,-9.2,0.8,20.8 -29.01.1980,0.9,-3.5,-1.3,0.9,15.9 -30.01.1980,6.6,-0.4,3.1,6.5,16.9 -31.01.1980,9.3,4.1,6.7,10.7,41.8 -01.02.1980,8.5,-4.3,2.1,3.2,96.1 -02.02.1980,5.4,-4.5,0.45,12,151 -03.02.1980,5.4,2.6,4,11.6,151 -04.02.1980,6.6,0.5,3.55,5.5,155 -05.02.1980,8,1.1,4.55,7.8,179 -06.02.1980,7.5,3.7,5.6,5.2,181 -07.02.1980,6.8,2.9,4.85,1.5,175 -08.02.1980,8.4,2.9,5.65,0.1,169 -09.02.1980,11.8,1.2,6.5,0.1,127 -10.02.1980,9,0.4,4.7,1.3,96.1 -11.02.1980,7.4,0.9,4.15,3.3,79.4 -12.02.1980,6.6,2.1,4.35,0.3,73 -13.02.1980,5,1.5,3.25,0.3,67.7 -14.02.1980,7.6,-0.9,3.35,0,58.2 -15.02.1980,5.6,-3.7,0.95,2.1,51.8 -16.02.1980,7.3,2.5,4.9,0.7,47.7 -17.02.1980,5,1.8,3.4,0,46.4 -18.02.1980,4.6,1.1,2.85,0,42.4 -19.02.1980,5,-3.8,0.6,0,38.7 -20.02.1980,8.8,-3.1,2.85,0,35.7 -21.02.1980,11.5,-4.3,3.6,0,33.4 -22.02.1980,11.5,-4.7,3.4,0,30.5 -23.02.1980,12.4,-4.7,3.85,0,27.8 -24.02.1980,10.4,-3.7,3.35,0,27.3 -25.02.1980,11,-5.3,2.85,0,26.2 -26.02.1980,12.2,-5.3,3.45,0,25.7 -27.02.1980,-0.2,-3.2,-1.7,0,24.4 -28.02.1980,1.7,-1.9,-0.1,0.3,23.4 -29.02.1980,5.3,1.2,3.25,1.7,23 -01.03.1980,8,4.5,6.25,0.2,23 -02.03.1980,6.5,0.4,3.45,1.1,22.6 -03.03.1980,5,-1.5,1.75,1.3,22.6 -04.03.1980,2.1,-3.1,-0.5,0.8,21.7 -05.03.1980,5,-4,0.5,0.1,20.8 -06.03.1980,6.8,-2.8,2,6.9,20 -07.03.1980,8.8,4.3,6.55,1.5,21.2 -08.03.1980,11,0.1,5.55,0.4,28.3 -09.03.1980,9,0.2,4.6,0,28.9 -10.03.1980,7.5,2.9,5.2,1.5,24.4 -11.03.1980,5.4,3.4,4.4,1,22.6 -12.03.1980,9.1,2.8,5.95,2.9,22.1 -13.03.1980,6.2,2.9,4.55,1.3,22.6 -14.03.1980,6.4,1.2,3.8,0,22.6 -15.03.1980,7.4,-1.5,2.95,0,22.1 -16.03.1980,11.4,-0.7,5.35,0,20.8 -17.03.1980,8.6,-0.5,4.05,0,19.6 -18.03.1980,8.6,3.1,5.85,0.4,19.2 -19.03.1980,4.1,-1.5,1.3,1.3,18.4 -20.03.1980,-0.4,-3.5,-1.95,0.2,18 -21.03.1980,1.7,-5.2,-1.75,0.7,17.6 -22.03.1980,6.5,-1,2.75,0.1,17.6 -23.03.1980,9.8,-2.5,3.65,0,17.6 -24.03.1980,3.8,-1.8,1,0,17.2 -25.03.1980,12.2,-0.5,5.85,0.8,16.5 -26.03.1980,11.5,2.6,7.05,3.3,16.5 -27.03.1980,12.1,0.4,6.25,5.1,16.9 -28.03.1980,17.3,11.5,14.4,4.2,18.4 -29.03.1980,12.2,5.5,8.85,4.2,23 -30.03.1980,9.2,3.3,6.25,1.2,26.2 -31.03.1980,12.2,-0.9,5.65,6.4,24.4 -01.04.1980,13.8,6.3,10.05,8.8,23.4 -02.04.1980,11.8,3.3,7.55,4,35.7 -03.04.1980,5.2,2.9,4.05,2.6,47.7 -04.04.1980,5,1.9,3.45,1,41.2 -05.04.1980,8.5,-0.7,3.9,0.1,35.7 -06.04.1980,11.8,-3.6,4.1,0.1,31.6 -07.04.1980,13.8,-2.4,5.7,0.5,27.3 -08.04.1980,8.2,2.2,5.2,3.7,26.2 -09.04.1980,8,1.8,4.9,5.9,27.3 -10.04.1980,7,0.6,3.8,2.1,27.3 -11.04.1980,9.5,3.2,6.35,0,29.4 -12.04.1980,14.5,-1.1,6.7,0,28.9 -13.04.1980,17.5,-0.8,8.35,0,26.8 -14.04.1980,20.5,-0.1,10.2,0,25.2 -15.04.1980,21,1.2,11.1,0,23.4 -16.04.1980,22.4,2.3,12.35,0,22.6 -17.04.1980,22,2.8,12.4,0.1,21.7 -18.04.1980,12.7,5.4,9.05,0.9,20.8 -19.04.1980,9,1.4,5.2,2.9,20.8 -20.04.1980,5.5,0.4,2.95,2.1,21.2 -21.04.1980,10,-0.9,4.55,0.7,21.2 -22.04.1980,8,-1.3,3.35,1,20.4 -23.04.1980,9.9,0.7,5.3,0.4,20 -24.04.1980,9.1,2.8,5.95,7.3,19.6 -25.04.1980,5.6,2.4,4,11.3,20.4 -26.04.1980,10.8,3.2,7,0.3,28.9 -27.04.1980,11.6,4.6,8.1,5.1,31 -28.04.1980,10.2,5.4,7.8,0.2,28.9 -29.04.1980,12.3,4.7,8.5,1.5,27.8 -30.04.1980,17.5,3.6,10.55,0,25.7 -01.05.1980,18.7,7.5,13.1,0,24.8 -02.05.1980,13.2,6.2,9.7,0.2,23 -03.05.1980,12.2,4.3,8.25,6.1,21.7 -04.05.1980,12.3,3.4,7.85,0.6,20.8 -05.05.1980,13.1,-2.5,5.3,0,23.4 -06.05.1980,16.8,0.5,8.65,0.5,23.9 -07.05.1980,15,7.9,11.45,0.5,21.7 -08.05.1980,9,3.3,6.15,3.5,21.7 -09.05.1980,15.3,4.4,9.85,0,21.2 -10.05.1980,18,-0.3,8.85,0,20.4 -11.05.1980,18.8,-0.2,9.3,0,19.6 -12.05.1980,20.6,5.3,12.95,0,18.4 -13.05.1980,18.3,6.4,12.35,0,16.9 -14.05.1980,17.2,3.1,10.15,0,17.2 -15.05.1980,15.1,1,8.05,0,15.6 -16.05.1980,16.9,-1.2,7.85,0,16.2 -17.05.1980,19.3,-0.3,9.5,0,16.2 -18.05.1980,21.2,6.5,13.85,0,16.2 -19.05.1980,22.2,4.2,13.2,0.2,15.9 -20.05.1980,22.7,8.1,15.4,1.5,15.9 -21.05.1980,22.8,4.5,13.65,0.1,15.9 -22.05.1980,14.5,4.7,9.6,0,15.6 -23.05.1980,16.3,-1.2,7.55,0.2,15.2 -24.05.1980,12.7,8.6,10.65,0.2,14.9 -25.05.1980,13,8.4,10.7,0,14.9 -26.05.1980,20.5,5.3,12.9,0,14.9 -27.05.1980,22.6,4.3,13.45,5.8,14.2 -28.05.1980,20,9.5,14.75,0.7,15.9 -29.05.1980,21,10.2,15.6,29.2,15.9 -30.05.1980,14.1,9.2,11.65,2.6,23.9 -31.05.1980,17.5,3.2,10.35,2.2,28.9 -01.06.1980,13.9,9.3,11.6,2.5,19.2 -02.06.1980,17.8,3.3,10.55,0,18 -03.06.1980,18.8,3.7,11.25,0,17.6 -04.06.1980,23.5,11.2,17.35,0,15.9 -05.06.1980,25.2,9.1,17.15,0,14.6 -06.06.1980,26.7,10.9,18.8,0.2,14.6 -07.06.1980,22.5,11.3,16.9,7.3,14.9 -08.06.1980,22.1,12.9,17.5,0.2,14.9 -09.06.1980,20.4,10.9,15.65,4.1,16.5 -10.06.1980,18.2,14.2,16.2,20.9,14.6 -11.06.1980,20.7,13.4,17.05,2.3,25.2 -12.06.1980,23.4,8.7,16.05,0,30.5 -13.06.1980,26.4,10.4,18.4,0.1,18.8 -14.06.1980,29.6,14,21.8,21.5,16.2 -15.06.1980,21.4,13.2,17.3,1.9,26.2 -16.06.1980,20.6,9.3,14.95,0.7,32.8 -17.06.1980,19.3,13,16.15,3.7,21.2 -18.06.1980,17.9,11.2,14.55,2.2,19.6 -19.06.1980,19,8.7,13.85,4,18 -20.06.1980,16.5,9.3,12.9,3,18.8 -21.06.1980,15.6,8.2,11.9,0.9,18 -22.06.1980,16.6,8.4,12.5,4.6,16.9 -23.06.1980,18,7.7,12.85,1,16.9 -24.06.1980,16.8,7.1,11.95,5.7,16.9 -25.06.1980,15.7,10.3,13,5.8,16.2 -26.06.1980,18.2,7.7,12.95,7.5,19.2 -27.06.1980,16.3,9.2,12.75,3.5,25.2 -28.06.1980,14.6,7.8,11.2,9.6,23.4 -29.06.1980,14.6,10.4,12.5,4.3,22.1 -30.06.1980,17.3,10.2,13.75,0.9,31 -01.07.1980,16.2,8.1,12.15,14.3,28.3 -02.07.1980,15.5,10.3,12.9,11.2,32.8 -03.07.1980,17.2,11.3,14.25,7.1,61.9 -04.07.1980,19.6,10.1,14.85,2,73 -05.07.1980,19.1,11.5,15.3,5.8,66.8 -06.07.1980,20.5,9.9,15.2,3,53.2 -07.07.1980,18.7,11.3,15,6.4,49 -08.07.1980,18,11.8,14.9,0.5,45 -09.07.1980,18.2,13.1,15.65,0.8,42.4 -10.07.1980,18.4,12.7,15.55,7.7,38.1 -11.07.1980,15.8,12.8,14.3,13.2,45 -12.07.1980,15.4,10.6,13,7,76.6 -13.07.1980,15.5,9.6,12.55,4.1,94.9 -14.07.1980,17.8,8.8,13.3,4.9,88.3 -15.07.1980,17.6,11.9,14.75,7.1,76.6 -16.07.1980,15.9,10,12.95,0.2,84.2 -17.07.1980,16.4,7.3,11.85,0.2,82.1 -18.07.1980,18.4,10.8,14.6,4.6,59.7 -19.07.1980,16.6,12.6,14.6,7.7,50.4 -20.07.1980,18,14.2,16.1,6.8,61.2 -21.07.1980,16.7,9,12.85,19.9,83.1 -22.07.1980,18.7,8,13.35,0,104 -23.07.1980,24.3,5.5,14.9,0,124 -24.07.1980,27,8,17.5,0,121 -25.07.1980,26.6,10,18.3,0,67.7 -26.07.1980,27.5,13.5,20.5,0,53.2 -27.07.1980,26.5,10.5,18.5,3.5,46.4 -28.07.1980,26,15.6,20.8,0.6,45.7 -29.07.1980,24.9,10.8,17.85,0,42.4 -30.07.1980,20.8,15,17.9,0.8,35.7 -31.07.1980,23.2,10.8,17,0,32.2 -01.08.1980,25.5,5.9,15.7,0,28.9 -02.08.1980,29.8,12.6,21.2,0,27.3 -03.08.1980,27.7,15.9,21.8,4.1,25.2 -04.08.1980,25.7,15.5,20.6,0,25.7 -05.08.1980,23.6,13.4,18.5,0.1,23.9 -06.08.1980,19.8,12.6,16.2,0,22.1 -07.08.1980,25.2,9.8,17.5,0,21.2 -08.08.1980,28.2,14.3,21.25,1.9,20.8 -09.08.1980,19,13.1,16.05,0,20 -10.08.1980,20.7,8.8,14.75,0,20 -11.08.1980,24.7,11.7,18.2,6.4,18.4 -12.08.1980,20.8,10,15.4,3.9,19.2 -13.08.1980,20,9.1,14.55,0,20.4 -14.08.1980,23.3,8.5,15.9,0,19.2 -15.08.1980,27.5,10.5,19,0,18 -16.08.1980,28.5,12.4,20.45,0.4,16.5 -17.08.1980,26.1,14.2,20.15,1.4,16.2 -18.08.1980,26.1,12.5,19.3,2.7,15.9 -19.08.1980,19.9,13.8,16.85,3.9,18.4 -20.08.1980,21.8,13.7,17.75,0.1,17.6 -21.08.1980,20.4,14,17.2,2.6,17.2 -22.08.1980,14.7,10.8,12.75,3.6,16.2 -23.08.1980,13.2,9.9,11.55,0.8,15.9 -24.08.1980,14.2,8.3,11.25,1.7,15.9 -25.08.1980,17.2,5.7,11.45,0,15.6 -26.08.1980,22.3,3.4,12.85,0,14.9 -27.08.1980,26,5.6,15.8,0,14.6 -28.08.1980,23.8,10.1,16.95,0.1,14.2 -29.08.1980,24.4,14.6,19.5,7.2,13.9 -30.08.1980,21.1,13.3,17.2,8.1,15.6 -31.08.1980,17.8,13.3,15.55,4.1,16.9 -01.09.1980,17.9,10.1,14,0.9,18 -02.09.1980,20.8,5.5,13.15,0,16.5 -03.09.1980,23.6,3.3,13.45,0,15.9 -04.09.1980,25.2,7.5,16.35,0,12.7 -05.09.1980,22.9,13.4,18.15,3.9,13.6 -06.09.1980,17.4,11.2,14.3,1.9,14.2 -07.09.1980,23.2,7.7,15.45,0,14.2 -08.09.1980,25,7.9,16.45,11.6,13.6 -09.09.1980,16.6,11.4,14,4.4,15.9 -10.09.1980,15,9.5,12.25,4.2,18.4 -11.09.1980,16.7,12.4,14.55,2.8,18.4 -12.09.1980,19.6,13,16.3,5.6,18.4 -13.09.1980,16.1,11.7,13.9,3.9,16.5 -14.09.1980,16.2,11.7,13.95,1.9,20.8 -15.09.1980,17,12.1,14.55,0.1,20.8 -16.09.1980,21.6,9.5,15.55,0,18.4 -17.09.1980,19.3,9.5,14.4,2.5,15.9 -18.09.1980,21.3,10.2,15.75,0,14.9 -19.09.1980,24.7,7.4,16.05,0,14.6 -20.09.1980,27.1,11.8,19.45,0,13.6 -21.09.1980,25.6,11.3,18.45,0,13.3 -22.09.1980,25.1,14.2,19.65,0,13 -23.09.1980,17.2,12.9,15.05,4.8,13 -24.09.1980,22.7,13.6,18.15,2.1,13.3 -25.09.1980,15.1,12.2,13.65,3,14.6 -26.09.1980,18.4,7.8,13.1,0,13.6 -27.09.1980,19.5,5.4,12.45,0,13.6 -28.09.1980,20.6,6.4,13.5,0,13 -29.09.1980,19.8,6.6,13.2,0,13.6 -30.09.1980,17.6,9,13.3,0.1,12.4 -01.10.1980,16.2,5.7,10.95,1.6,12 -02.10.1980,14.3,8.8,11.55,0,12 -03.10.1980,15.3,5,10.15,0,10.5 -04.10.1980,15.4,1.1,8.25,0.1,12 -05.10.1980,14.2,5.1,9.65,0.1,12 -06.10.1980,12.5,3.6,8.05,3.8,12 -07.10.1980,14.8,10,12.4,19.8,13.3 -08.10.1980,12.2,7.3,9.75,0.8,24.4 -09.10.1980,10,4.9,7.45,1,25.7 -10.10.1980,9.1,1.4,5.25,0,18 -11.10.1980,9.1,0.5,4.8,0.4,16.5 -12.10.1980,9.8,2.7,6.25,0.1,14.6 -13.10.1980,7.9,3,5.45,0.5,14.6 -14.10.1980,10.7,3.7,7.2,0.1,13.6 -15.10.1980,11.8,1.5,6.65,0.1,13.9 -16.10.1980,12,2.9,7.45,1.7,13.3 -17.10.1980,14.4,8.8,11.6,4.1,13.3 -18.10.1980,10.9,7.9,9.4,0.4,13.9 -19.10.1980,9.8,2.9,6.35,2.1,14.9 -20.10.1980,10.2,1.2,5.7,0,13.9 -21.10.1980,12.4,1.2,6.8,0.1,13.3 -22.10.1980,14,2.9,8.45,0.2,12.7 -23.10.1980,11.8,5.1,8.45,5.4,13 -24.10.1980,11.4,9.3,10.35,4.3,12.7 -25.10.1980,10.5,4.8,7.65,0.5,15.6 -26.10.1980,9.8,0.6,5.2,0.1,21.2 -27.10.1980,13.2,5,9.1,0.8,17.2 -28.10.1980,18.7,11.1,14.9,0.8,15.6 -29.10.1980,15.4,9.4,12.4,1.8,14.9 -30.10.1980,9.7,3.4,6.55,0,15.2 -31.10.1980,7.8,-0.6,3.6,0,15.2 -01.11.1980,5.7,-1.4,2.15,0,13.9 -02.11.1980,0.7,-4.4,-1.85,0,13.6 -03.11.1980,-1.8,-3.4,-2.6,0.1,13.3 -04.11.1980,-1.6,-4.7,-3.15,0.1,12.7 -05.11.1980,-0.9,-3.8,-2.35,0.2,12.7 -06.11.1980,0.2,-1.9,-0.85,8.5,12 -07.11.1980,1.5,-1.2,0.15,1.1,12.4 -08.11.1980,2.2,-1.9,0.15,0.3,12.7 -09.11.1980,0.9,-4.2,-1.65,0,12.7 -10.11.1980,0.7,-2,-0.65,0.1,12.7 -11.11.1980,2.2,-2.7,-0.25,0.6,12.7 -12.11.1980,3.6,0.6,2.1,0.2,12.7 -13.11.1980,5.2,0.6,2.9,0,12.7 -14.11.1980,5.8,3.1,4.45,2.5,13.3 -15.11.1980,10.2,2.9,6.55,8.4,13.6 -16.11.1980,12.7,10,11.35,5.6,17.2 -17.11.1980,13.4,11.3,12.35,4.8,28.9 -18.11.1980,12.7,6.9,9.8,1,36.3 -19.11.1980,8.5,4.7,6.6,2.4,32.2 -20.11.1980,12.6,4.4,8.5,0,26.2 -21.11.1980,12.9,4.6,8.75,0,22.6 -22.11.1980,12.1,10.4,11.25,0,20.8 -23.11.1980,13.4,11.1,12.25,0,18.4 -24.11.1980,12.9,9.2,11.05,0,17.2 -25.11.1980,9.4,5.8,7.6,9.7,16.9 -26.11.1980,6.2,0.1,3.15,0.4,19.6 -27.11.1980,3.2,-4.9,-0.85,1.1,23 -28.11.1980,2.7,-0.8,0.95,4.9,20.8 -29.11.1980,1.4,-0.6,0.4,3.9,19.6 -30.11.1980,0.6,-1.9,-0.65,0.9,19.2 -01.12.1980,0.8,-7.9,-3.55,0.3,17.7 -02.12.1980,-3.8,-8.1,-5.95,3,16.9 -03.12.1980,0.1,-5.6,-2.75,2.3,15.9 -04.12.1980,0.6,-6.6,-3,3.1,16.6 -05.12.1980,1.3,-10.6,-4.65,8.4,16 -06.12.1980,2.1,-6.6,-2.25,1.6,17.3 -07.12.1980,-3.4,-12.6,-8,0.1,19.3 -08.12.1980,-4.2,-12,-8.1,0.1,16.9 -09.12.1980,-0.3,-5.1,-2.7,0,16.8 -10.12.1980,1.4,-2.7,-0.65,0,17.1 -11.12.1980,4.4,1,2.7,1,15.6 -12.12.1980,4.7,2.6,3.65,0.3,18.3 -13.12.1980,7.3,2,4.65,9.5,23 -14.12.1980,10.3,6,8.15,8.7,45.2 -15.12.1980,11.6,5.3,8.45,2.1,94.4 -16.12.1980,5.8,-0.4,2.7,0.1,113 -17.12.1980,4.9,-1.7,1.6,0.8,116 -18.12.1980,1.2,-1.2,0,5.1,59.6 -19.12.1980,1.7,-2.1,-0.2,0,45 -20.12.1980,2.4,-4.8,-1.2,3.2,39.7 -21.12.1980,4.7,2,3.35,1,37.6 -22.12.1980,5.7,1,3.35,1.7,42.5 -23.12.1980,9.9,3.2,6.55,1.6,39.8 -24.12.1980,10.7,7.7,9.2,0.5,41.4 -25.12.1980,10.2,5.6,7.9,2.8,50.4 -26.12.1980,5.9,1.5,3.7,1.7,43.9 -27.12.1980,2.8,-0.8,1,0.3,44.5 -28.12.1980,2.2,-4.4,-1.1,0,37.1 -29.12.1980,2.8,-1.8,0.5,0.3,31.7 -30.12.1980,5,2.1,3.55,0.6,28.4 -31.12.1980,5.4,3.3,4.35,3.1,27.4 -01.01.1981,5.3,0.3,2.8,3.6,28.5 -02.01.1981,5.2,1.4,3.3,8.2,28.9 -03.01.1981,8.5,4,6.25,11.1,38.9 -04.01.1981,5.3,0.1,2.7,3,85.2 -05.01.1981,2.8,-0.6,1.1,3.4,124 -06.01.1981,0.8,-2.1,-0.65,1.2,83.1 -07.01.1981,-1.3,-10.3,-5.8,1.3,52.9 -08.01.1981,-4.4,-16.1,-10.25,0.2,43.4 -09.01.1981,-0.4,-4.6,-2.5,2.3,37.8 -10.01.1981,0.7,-0.9,-0.1,2,36 -11.01.1981,0.7,-9.2,-4.25,0.1,33.9 -12.01.1981,-1.2,-7.8,-4.5,3.3,30.7 -13.01.1981,1,-5.3,-2.15,0.3,28.4 -14.01.1981,0.7,-5,-2.15,10.8,27.3 -15.01.1981,1.9,-0.2,0.85,3.6,26.9 -16.01.1981,0.7,-3.2,-1.25,6.1,25.2 -17.01.1981,4.7,-2.1,1.3,2.7,26.3 -18.01.1981,2.3,-0.9,0.7,2.3,28.4 -19.01.1981,2.7,-1,0.85,5.1,29 -20.01.1981,1.6,-1.6,0,0.5,30.9 -21.01.1981,-1,-7,-4,0.1,28.2 -22.01.1981,0,-11,-5.5,0,25.5 -23.01.1981,-1.5,-11.6,-6.55,0,22.9 -24.01.1981,3.5,-2.1,0.7,0.3,21.4 -25.01.1981,2.6,-1.2,0.7,1.3,20.8 -26.01.1981,3.4,-4.9,-0.75,0.2,21.3 -27.01.1981,-0.4,-8.3,-4.35,0,20.3 -28.01.1981,1.7,-1,0.35,0,19.2 -29.01.1981,1,-5.8,-2.4,0,18.6 -30.01.1981,3.2,-10,-3.4,0,18.3 -31.01.1981,2.5,-8.6,-3.05,0,17.5 -01.02.1981,3.7,-10.5,-3.4,0,17.4 -02.02.1981,6.3,-9.3,-1.5,0.1,17.3 -03.02.1981,5.2,-1,2.1,5.4,17.2 -04.02.1981,3.7,1.5,2.6,3.6,19.6 -05.02.1981,2.7,0,1.35,2.2,24.1 -06.02.1981,5.2,-0.5,2.35,1.6,22.8 -07.02.1981,8.5,4.8,6.65,0.6,33.2 -08.02.1981,8.5,6.6,7.55,0.5,95.5 -09.02.1981,8.7,5.9,7.3,0.4,130 -10.02.1981,6.2,1,3.6,1.9,151 -11.02.1981,2.2,-3,-0.4,2.2,132 -12.02.1981,1.7,-5.9,-2.1,1.1,88.1 -13.02.1981,-0.2,-8.6,-4.4,0,62.1 -14.02.1981,1,-11.1,-5.05,0,51.8 -15.02.1981,0.6,-9,-4.2,0,44.8 -16.02.1981,1.7,-10.1,-4.2,0,40.2 -17.02.1981,3.5,-3.2,0.15,0.5,35.4 -18.02.1981,1.5,-5.2,-1.85,1.5,34.1 -19.02.1981,0,-3.2,-1.6,0.5,31.8 -20.02.1981,-1,-5.4,-3.2,0.6,29.6 -21.02.1981,-1.3,-11.4,-6.35,0.1,27.7 -22.02.1981,1.2,-10.2,-4.5,0,26.6 -23.02.1981,-0.2,-11,-5.6,0,25.1 -24.02.1981,1.4,-4,-1.3,0,24.2 -25.02.1981,2.2,-1.6,0.3,0,23.2 -26.02.1981,4.7,-3,0.85,0,22.4 -27.02.1981,5.5,-8.1,-1.3,0,21.8 -28.02.1981,4.8,-6.5,-0.85,3.2,20.7 -01.03.1981,5.6,0.2,2.9,1.4,20.9 -02.03.1981,7.8,1.1,4.45,2.8,22.5 -03.03.1981,3.9,1.1,2.5,2.3,25.5 -04.03.1981,2.8,-0.8,1,0.2,39.9 -05.03.1981,2.2,-1.8,0.2,0.4,34.6 -06.03.1981,6,-3.5,1.25,1.1,27.7 -07.03.1981,12.7,5.8,9.25,3.1,26.5 -08.03.1981,12.4,10.9,11.65,5.8,41.6 -09.03.1981,13.6,11,12.3,14.3,78.9 -10.03.1981,12.9,9,10.95,12.1,122 -11.03.1981,17.2,12.7,14.95,3.5,151 -12.03.1981,14.7,8.2,11.45,0.8,197 -13.03.1981,12.1,7.3,9.7,2.3,163 -14.03.1981,9.2,5.7,7.45,3.4,102 -15.03.1981,11.2,1.2,6.2,1,86.4 -16.03.1981,8.8,-0.7,4.05,5.8,74 -17.03.1981,5.6,-0.3,2.65,1.7,72.8 -18.03.1981,5.7,1.1,3.4,0,66.1 -19.03.1981,8.9,2.6,5.75,0,56.1 -20.03.1981,12.5,4.2,8.35,0,50 -21.03.1981,16.4,0.4,8.4,0,45.8 -22.03.1981,18,7.4,12.7,1.2,42.5 -23.03.1981,10.8,2.1,6.45,12.9,39.5 -24.03.1981,14.6,10.3,12.45,2.3,44.9 -25.03.1981,18.7,10.4,14.55,7.2,68.7 -26.03.1981,15.2,7.6,11.4,9.2,58.7 -27.03.1981,15.6,3.1,9.35,0,85.2 -28.03.1981,17.2,0.9,9.05,0,77.3 -29.03.1981,15.2,4.7,9.95,0,57.2 -30.03.1981,17.5,3.4,10.45,0,50.3 -31.03.1981,17.8,7.6,12.7,0,45.8 -01.04.1981,19.7,9.1,14.4,0,42.4 -02.04.1981,17,9.3,13.15,0,39.4 -03.04.1981,18.5,6.4,12.45,0,36.2 -04.04.1981,9.8,5.8,7.8,0.8,33.8 -05.04.1981,8,4.2,6.1,0.5,32 -06.04.1981,12.5,1.8,7.15,0,30.1 -07.04.1981,20.8,1.4,11.1,0.2,28.4 -08.04.1981,14.2,6.5,10.35,2.8,28.6 -09.04.1981,18.1,3.3,10.7,0,27.4 -10.04.1981,21.4,1,11.2,0,25.7 -11.04.1981,21.7,3.5,12.6,0,24.7 -12.04.1981,22.4,6.4,14.4,0.1,23.5 -13.04.1981,18.2,9,13.6,0,23.1 -14.04.1981,19.1,3.7,11.4,0,22.6 -15.04.1981,20.7,0.2,10.45,0,22 -16.04.1981,14.8,1.6,8.2,0,21.5 -17.04.1981,8.8,-1.1,3.85,0,21 -18.04.1981,9.6,-4.4,2.6,1.4,20.6 -19.04.1981,5.6,0.9,3.25,4.7,21.3 -20.04.1981,10.5,0.9,5.7,0,21.7 -21.04.1981,7.6,-3.4,2.1,0,20.7 -22.04.1981,8,2.5,5.25,1.1,20.2 -23.04.1981,5.7,-1.7,2,1.4,19.8 -24.04.1981,10.3,-5,2.65,0,19.6 -25.04.1981,15,1.5,8.25,0,19.3 -26.04.1981,17.7,4.9,11.3,0,19 -27.04.1981,13.1,5.4,9.25,30.4,19.7 -28.04.1981,9.6,1.4,5.5,3.2,35.9 -29.04.1981,8.6,4.1,6.35,2.1,35.2 -30.04.1981,11.7,7.8,9.75,12.4,27.8 -01.05.1981,9.6,3.4,6.5,2.7,38.5 -02.05.1981,9.7,-0.1,4.8,0.3,48.7 -03.05.1981,8.8,-0.6,4.1,0.1,38 -04.05.1981,8.8,1.4,5.1,1.6,31.4 -05.05.1981,11.6,4.1,7.85,1.3,28.6 -06.05.1981,9.6,-0.3,4.65,2.2,27.8 -07.05.1981,19.8,7,13.4,0,26.9 -08.05.1981,20.8,7.5,14.15,0,25.5 -09.05.1981,24.6,6.2,15.4,0,24.2 -10.05.1981,26.6,7.6,17.1,0,22.7 -11.05.1981,25.4,13.8,19.6,3.1,21.6 -12.05.1981,23.2,7.5,15.35,4,21.2 -13.05.1981,22.4,10.4,16.4,5.9,22.5 -14.05.1981,18.7,12.4,15.55,0.9,23.1 -15.05.1981,18.1,11.8,14.95,0.2,24.8 -16.05.1981,22.2,8.8,15.5,7.7,21.8 -17.05.1981,16.2,10,13.1,2.1,24.8 -18.05.1981,20.4,4.5,12.45,0,23.5 -19.05.1981,24.8,5.4,15.1,0,21.3 -20.05.1981,27.4,8.5,17.95,0,19.9 -21.05.1981,27.5,12.4,19.95,0.1,18.8 -22.05.1981,19.7,13.8,16.75,2.1,18.5 -23.05.1981,20.4,7.1,13.75,1.8,18 -24.05.1981,16.7,9.6,13.15,4.1,18.5 -25.05.1981,15.6,6.2,10.9,0.9,18.5 -26.05.1981,15,8.3,11.65,10.5,18.2 -27.05.1981,12.5,8.8,10.65,23.5,28.1 -28.05.1981,14.5,5,9.75,2.9,49.2 -29.05.1981,16.5,9,12.75,5.4,40.1 -30.05.1981,19,10.8,14.9,0,32.8 -31.05.1981,26.7,11.4,19.05,2.3,32.7 -01.06.1981,26.5,17.5,22,3.3,26.9 -02.06.1981,30,12.4,21.2,9.3,24.9 -03.06.1981,20.7,14.9,17.8,54.7,31 -04.06.1981,15.2,11.4,13.3,4.4,172 -05.06.1981,19.6,11,15.3,0.2,200 -06.06.1981,22.1,13.9,18,0.7,257 -07.06.1981,22.8,11.9,17.35,1.6,159 -08.06.1981,25.3,14.1,19.7,0.7,73.4 -09.06.1981,22,17.5,19.75,2.1,58.3 -10.06.1981,20.2,11.7,15.95,0.2,50.3 -11.06.1981,22.8,8.1,15.45,2.3,43.4 -12.06.1981,20.7,10.2,15.45,0.4,38.9 -13.06.1981,20,3.6,11.8,0,35.1 -14.06.1981,23.7,8.8,16.25,0,31.2 -15.06.1981,27,17.8,22.4,0.7,28.4 -16.06.1981,20.5,12.6,16.55,0.3,26.8 -17.06.1981,13.6,8.7,11.15,10.2,25.7 -18.06.1981,11,9,10,2.3,28.3 -19.06.1981,12.2,8,10.1,0.2,27.8 -20.06.1981,14.3,5.3,9.8,4.8,25.3 -21.06.1981,14.2,8.9,11.55,6.2,24 -22.06.1981,17.5,10.1,13.8,0.3,25.9 -23.06.1981,20.1,6.6,13.35,0.5,25.2 -24.06.1981,20.6,9.4,15,0,23.3 -25.06.1981,22.8,10.4,16.6,0.4,21.9 -26.06.1981,20,8.9,14.45,7.8,20.8 -27.06.1981,22.7,11.5,17.1,0.4,22.2 -28.06.1981,25.5,13.9,19.7,17.2,21.7 -29.06.1981,20.2,9.6,14.9,14.7,29.7 -30.06.1981,14.7,9,11.85,0.6,58.3 -01.07.1981,20.2,11.2,15.7,0,46.6 -02.07.1981,21.5,12.1,16.8,2.5,31.8 -03.07.1981,20.8,13.1,16.95,5,27.5 -04.07.1981,20.8,9.9,15.35,0,27.1 -05.07.1981,22.4,9.6,16,0,25.7 -06.07.1981,24.5,12.7,18.6,0,23 -07.07.1981,25.6,12.8,19.2,0,21.7 -08.07.1981,27.4,12.1,19.75,0,20.4 -09.07.1981,28,14.2,21.1,0,19 -10.07.1981,29.6,14.4,22,0.3,18 -11.07.1981,24.5,16.3,20.4,3.4,19.2 -12.07.1981,22.3,16.8,19.55,0.5,19.6 -13.07.1981,22.2,14.9,18.55,0.2,19.7 -14.07.1981,20.8,12.6,16.7,0.1,19.1 -15.07.1981,18,12.8,15.4,0.2,17.4 -16.07.1981,21.4,12.7,17.05,1.4,16.5 -17.07.1981,20.7,12.8,16.75,2.4,16.5 -18.07.1981,14.7,10.4,12.55,9.8,19.6 -19.07.1981,13.9,7.4,10.65,1.2,21 -20.07.1981,16.7,6,11.35,2.7,17.9 -21.07.1981,17.6,12.6,15.1,12.5,18 -22.07.1981,21.7,13.5,17.6,12.6,22.7 -23.07.1981,17.5,11.7,14.6,5.8,29 -24.07.1981,19.3,11.9,15.6,1.6,38.4 -25.07.1981,14.2,11.3,12.75,7.9,29.3 -26.07.1981,16.8,11.7,14.25,8.4,26.5 -27.07.1981,17.9,13,15.45,0.3,33 -28.07.1981,19,12.1,15.55,0.3,37.6 -29.07.1981,23.5,13.4,18.45,0,28.4 -30.07.1981,19.9,11.9,15.9,0,24.2 -31.07.1981,22.4,6.4,14.4,0.7,22 -01.08.1981,23.9,13.8,18.85,0.2,20.8 -02.08.1981,23,15.2,19.1,3.7,20.1 -03.08.1981,26.5,15.1,20.8,0.1,19.5 -04.08.1981,28.2,14.5,21.35,0,19.3 -05.08.1981,29.5,14.6,22.05,0,18.3 -06.08.1981,29.5,13.6,21.55,0,19.2 -07.08.1981,29.3,14.7,22,11.7,18.1 -08.08.1981,22.2,15.9,19.05,0.1,17.4 -09.08.1981,22.9,15.9,19.4,19.2,24 -10.08.1981,18.8,15.3,17.05,56.6,33.2 -11.08.1981,15.8,14.8,15.3,2.2,116 -12.08.1981,21.6,11.6,16.6,0,170 -13.08.1981,25.1,11.2,18.15,0,221 -14.08.1981,26.4,12.1,19.25,0,99.8 -15.08.1981,27.3,13.7,20.5,0,54.6 -16.08.1981,21.9,11.7,16.8,0.5,44.5 -17.08.1981,16.7,7.5,12.1,0,38.4 -18.08.1981,21,6.3,13.65,0,34 -19.08.1981,17,8.4,12.7,9.2,30.8 -20.08.1981,15.4,12.2,13.8,8.2,34.8 -21.08.1981,18,11.6,14.8,0.7,38.6 -22.08.1981,14.9,8.9,11.9,1.8,36.5 -23.08.1981,15.5,10.8,13.15,2.3,30.7 -24.08.1981,19.5,11.6,15.55,0,27.9 -25.08.1981,18.1,7.7,12.9,0.5,26.4 -26.08.1981,18.9,10.4,14.65,2.9,24 -27.08.1981,16.7,12.8,14.75,3,22.9 -28.08.1981,18.7,11.1,14.9,0,22.7 -29.08.1981,16.7,8.9,12.8,0.1,21.6 -30.08.1981,19.6,9.6,14.6,0,21.1 -31.08.1981,20.7,5,12.85,0,20.3 -01.09.1981,19.8,8.7,14.25,0,19.6 -02.09.1981,19.2,8.7,13.95,0,19 -03.09.1981,19.8,5.5,12.65,0,18.8 -04.09.1981,20.4,4.7,12.55,0,18.3 -05.09.1981,21.6,4.6,13.1,0,18 -06.09.1981,23.2,4.5,13.85,0,17.8 -07.09.1981,23.8,5.3,14.55,0,17.4 -08.09.1981,21.4,9.8,15.6,1.3,17.7 -09.09.1981,21.5,13.4,17.45,0,17.9 -10.09.1981,22.1,10.2,16.15,0,17.1 -11.09.1981,23.8,10.9,17.35,0.1,16.3 -12.09.1981,19.9,13.6,16.75,1.6,15.4 -13.09.1981,18.9,9,13.95,0.1,17 -14.09.1981,15.9,5.8,10.85,0.6,15.9 -15.09.1981,18.7,5.7,12.2,3.7,14.9 -16.09.1981,19.5,13.3,16.4,1.6,15.4 -17.09.1981,18.8,12,15.4,0.2,15.9 -18.09.1981,21.7,8.6,15.15,3.1,15.6 -19.09.1981,17.7,10.9,14.3,3.7,15.5 -20.09.1981,21.2,10.5,15.85,0.5,15.8 -21.09.1981,22.1,14.8,18.45,4.6,15.6 -22.09.1981,24.2,14.3,19.25,18.5,17.1 -23.09.1981,17.7,9.4,13.55,1.5,27.6 -24.09.1981,18.4,5.3,11.85,0.1,24.4 -25.09.1981,18.5,5.4,11.95,0.5,18.3 -26.09.1981,19.8,7.4,13.6,0,17.1 -27.09.1981,14.8,8.4,11.6,0.9,16.6 -28.09.1981,12.9,6.4,9.65,9.9,16.2 -29.09.1981,16.3,8.6,12.45,0.9,18.3 -30.09.1981,18.3,4.6,11.45,0,19.5 -01.10.1981,18.7,5.7,12.2,0.1,17.9 -02.10.1981,15.9,7.8,11.85,2.1,16.5 -03.10.1981,13.2,9.6,11.4,7.6,16.4 -04.10.1981,14.3,7.3,10.8,0.8,17.7 -05.10.1981,13.4,10.4,11.9,0.7,19.4 -06.10.1981,21.4,10.3,15.85,0.5,17.2 -07.10.1981,17.7,11.5,14.6,1,17 -08.10.1981,15.4,8.9,12.15,0,16.3 -09.10.1981,19.2,5.2,12.2,9.7,16.1 -10.10.1981,13.8,7,10.4,12.2,16.5 -11.10.1981,11.2,6.3,8.75,6.7,25.9 -12.10.1981,7.9,4,5.95,6.9,50.6 -13.10.1981,8.3,4.6,6.45,2.2,43.6 -14.10.1981,8.2,2.2,5.2,1.9,38.4 -15.10.1981,7.7,4.6,6.15,12.9,33.7 -16.10.1981,10.7,1,5.85,0.2,46 -17.10.1981,8.4,0,4.2,4.2,58.8 -18.10.1981,13.7,7.4,10.55,8.2,44 -19.10.1981,11.9,7.7,9.8,1.5,48.2 -20.10.1981,11.8,8.5,10.15,5.4,47.2 -21.10.1981,9.8,3.7,6.75,1.4,47.3 -22.10.1981,6.8,1.1,3.95,0,53 -23.10.1981,5.8,0.3,3.05,0.1,42 -24.10.1981,4.8,-0.2,2.3,0.1,35.6 -25.10.1981,5.9,-0.8,2.55,1.2,31.5 -26.10.1981,10.2,3.7,6.95,0,28.6 -27.10.1981,7,3.2,5.1,0.5,27.4 -28.10.1981,10,3.9,6.95,3,25.9 -29.10.1981,11.6,6.5,9.05,4.4,24.6 -30.10.1981,10,3.9,6.95,4.2,27.5 -31.10.1981,15.7,4,9.85,1.1,35.1 -01.11.1981,13.9,4.2,9.05,1.7,37.4 -02.11.1981,13.8,10.6,12.2,3.1,32.3 -03.11.1981,13.6,7.2,10.4,0.1,30.4 -04.11.1981,12.4,5.9,9.15,0.1,30.1 -05.11.1981,10.2,4.4,7.3,1.7,27.2 -06.11.1981,9.4,5.3,7.35,0.9,25.5 -07.11.1981,6.4,-1.9,2.25,0.5,24.3 -08.11.1981,3.2,-1.9,0.65,0.8,23.2 -09.11.1981,2.2,-1.7,0.25,0.7,21.9 -10.11.1981,5.2,-2.5,1.35,0.4,21.3 -11.11.1981,1.4,-1.7,-0.15,4.6,20.9 -12.11.1981,3.8,0.9,2.35,1.8,21.4 -13.11.1981,7,1.9,4.45,5.3,23.4 -14.11.1981,6.9,2.4,4.65,1.7,29.7 -15.11.1981,4.5,-1.7,1.4,0,30.7 -16.11.1981,4.2,-5.4,-0.6,0,26.6 -17.11.1981,6.2,-4.5,0.85,0.7,24.4 -18.11.1981,10.6,1.9,6.25,3.5,23.1 -19.11.1981,11.6,3.7,7.65,3.5,23.3 -20.11.1981,14.6,2.1,8.35,1.4,30.6 -21.11.1981,14.4,6.4,10.4,4.8,34.7 -22.11.1981,14.4,10.7,12.55,0.1,34.7 -23.11.1981,12.4,9.3,10.85,2.4,34.9 -24.11.1981,11.4,2.2,6.8,2.1,32.4 -25.11.1981,3.7,0.3,2,5.8,33.2 -26.11.1981,4.2,0.6,2.4,7.7,32.9 -27.11.1981,6.4,3.8,5.1,9.9,49.3 -28.11.1981,6.2,0,3.1,1,75.1 -29.11.1981,5,0,2.5,4.5,96 -30.11.1981,5,0.3,2.65,16.5,75.2 -01.12.1981,1.4,0.3,0.85,2.8,71.9 -02.12.1981,1.7,-1.3,0.2,0.8,75.6 -03.12.1981,1.2,-4.5,-1.65,16.6,60.9 -04.12.1981,4.4,0.6,2.5,7.5,80.2 -05.12.1981,2.8,0.3,1.55,2.2,131 -06.12.1981,2.5,0.6,1.55,6.1,135 -07.12.1981,3,1.1,2.05,6.5,101 -08.12.1981,4.8,0.2,2.5,16.3,99.4 -09.12.1981,3,-0.1,1.45,4.6,129 -10.12.1981,2.2,-2.9,-0.35,1.5,192 -11.12.1981,0.4,-4,-1.8,10,174 -12.12.1981,-0.3,-5.2,-2.75,0.4,103 -13.12.1981,-4.1,-13.9,-9,1.2,80.9 -14.12.1981,2.9,-8.3,-2.7,5.5,67.2 -15.12.1981,2.7,-9.9,-3.6,2.6,66 -16.12.1981,-5.7,-12.6,-9.15,0.1,66.7 -17.12.1981,-7.8,-16.2,-12,0.2,55.9 -18.12.1981,-4.8,-10.7,-7.75,6.1,46.9 -19.12.1981,-6.4,-9.6,-8,0.7,44.1 -20.12.1981,-4.8,-10.7,-7.75,0,40 -21.12.1981,-4.7,-9,-6.85,2.1,37.9 -22.12.1981,0.8,-5,-2.1,1.4,36.9 -23.12.1981,0.5,-2.8,-1.15,0.3,35.8 -24.12.1981,0.5,-2.4,-0.95,1.5,35 -25.12.1981,1.6,-1.9,-0.15,1.5,32.6 -26.12.1981,1,-0.9,0.05,1,31.7 -27.12.1981,-0.4,-7.1,-3.75,0.1,30.6 -28.12.1981,0.2,-7.7,-3.75,1,29 -29.12.1981,4.2,-4.3,-0.05,0.9,28.8 -30.12.1981,7.2,-0.7,3.25,6.9,29 -31.12.1981,8.2,2.8,5.5,2,54.9 -01.01.1982,7.6,2.8,5.2,0.1,134 -02.01.1982,5.8,2.9,4.35,2,216 -03.01.1982,9.7,4.9,7.3,1.7,170 -04.01.1982,10.2,3.2,6.7,5.3,145 -05.01.1982,10.2,7.7,8.95,12.1,156 -06.01.1982,8.9,-6.7,1.1,0.7,174 -07.01.1982,-5.5,-10.5,-8,0.1,209 -08.01.1982,-6.6,-12.4,-9.5,1.3,173 -09.01.1982,-6.9,-11.9,-9.4,5.1,107 -10.01.1982,-9.1,-20.1,-14.6,1.6,83.1 -11.01.1982,-6.4,-20.4,-13.4,4.3,74.2 -12.01.1982,-2.6,-14.5,-8.55,0,68.4 -13.01.1982,-8.2,-18.8,-13.5,0,56.6 -14.01.1982,-8,-18.5,-13.25,0,51.2 -15.01.1982,-4.6,-17.5,-11.05,0,49.1 -16.01.1982,0.1,-11.6,-5.75,0,53.1 -17.01.1982,-2,-11.2,-6.6,0,54 -18.01.1982,-2.6,-12.5,-7.55,0,52 -19.01.1982,0.2,-6.7,-3.25,0,37.1 -20.01.1982,-1.1,-9.7,-5.4,0,33.7 -21.01.1982,-1.3,-4.2,-2.75,0.2,32.1 -22.01.1982,1,-2.5,-0.75,0.4,30.9 -23.01.1982,1.8,0.2,1,0.9,29.6 -24.01.1982,2.8,-0.9,0.95,0.2,28.9 -25.01.1982,2.7,-0.9,0.9,0.7,28.1 -26.01.1982,3.6,-0.1,1.75,0.9,27.5 -27.01.1982,3.4,0.7,2.05,0.4,28.4 -28.01.1982,1.4,-3,-0.8,8.3,29.2 -29.01.1982,4.7,0.5,2.6,7.7,36.5 -30.01.1982,8.1,3.4,5.75,8.5,74.1 -31.01.1982,6.4,-1.8,2.3,0.5,133 -01.02.1982,1.2,-5.1,-1.95,0,148 -02.02.1982,1.7,-7.3,-2.8,0,117 -03.02.1982,2.6,-7.9,-2.65,0,62.5 -04.02.1982,3.9,-8.1,-2.1,0,49.4 -05.02.1982,4.8,-7.5,-1.35,0,41.4 -06.02.1982,4.2,-3.3,0.45,0.7,39.5 -07.02.1982,7.3,0.9,4.1,2.8,39.3 -08.02.1982,6.8,0.2,3.5,3.8,38.8 -09.02.1982,6.8,-1.1,2.85,0,46 -10.02.1982,9.2,-1.9,3.65,0,57.2 -11.02.1982,10.8,-2.5,4.15,0,43.1 -12.02.1982,8,-0.5,3.75,0,40.7 -13.02.1982,11.5,-2,4.75,0.1,38.6 -14.02.1982,4.4,-3.5,0.45,0.9,38.2 -15.02.1982,4,1.4,2.7,0.3,35.8 -16.02.1982,2,-0.1,0.95,0.1,35.5 -17.02.1982,2,-0.2,0.9,0,33.3 -18.02.1982,4.2,-1,1.6,0,32.1 -19.02.1982,-0.5,-3.8,-2.15,0,30.7 -20.02.1982,4.2,-6,-0.9,0,27.4 -21.02.1982,5,-7.1,-1.05,0,27.2 -22.02.1982,6.6,-7.9,-0.65,1.2,27 -23.02.1982,2.2,-4.7,-1.25,0.4,25.9 -24.02.1982,2,-9.3,-3.65,0,24.9 -25.02.1982,1.7,-9.2,-3.75,0,24.8 -26.02.1982,4.2,-8.1,-1.95,0,24.4 -27.02.1982,5.9,-8.5,-1.3,0,23.7 -28.02.1982,5.3,-4.1,0.6,0.5,22.8 -01.03.1982,10.7,5.2,7.95,6.1,22 -02.03.1982,7.2,2.9,5.05,2.8,25.2 -03.03.1982,9.8,1.4,5.6,10.9,33.5 -04.03.1982,9.4,4,6.7,1.1,57 -05.03.1982,5.7,-1.3,2.2,0.3,76.7 -06.03.1982,8.1,-1.8,3.15,0,54.1 -07.03.1982,5.7,-3.5,1.1,0,43.3 -08.03.1982,9.7,-2.3,3.7,0,34.6 -09.03.1982,5.9,-3.1,1.4,0.1,29.9 -10.03.1982,8.4,-0.6,3.9,12.1,28.7 -11.03.1982,7,0.6,3.8,1.8,40.8 -12.03.1982,7,0.6,3.8,4.1,71.1 -13.03.1982,5.3,0.3,2.8,1.8,53 -14.03.1982,7.8,-1,3.4,0.1,54.5 -15.03.1982,12.7,1.4,7.05,0.1,46.6 -16.03.1982,8.2,4.7,6.45,2.7,42.1 -17.03.1982,5.7,0.8,3.25,5,41.1 -18.03.1982,9.8,-0.6,4.6,0.4,45.7 -19.03.1982,7.7,-1.9,2.9,0.1,43.6 -20.03.1982,7.2,-1.9,2.65,1.1,38.2 -21.03.1982,7.2,0.9,4.05,0,35.3 -22.03.1982,10.2,-0.4,4.9,0.6,35.1 -23.03.1982,9,-1.2,3.9,0,33.4 -24.03.1982,13.7,-3.7,5,0,31 -25.03.1982,14.2,-3.1,5.55,0,28.5 -26.03.1982,16.7,-2.1,7.3,0,27.6 -27.03.1982,20.3,-1.6,9.35,0,27.3 -28.03.1982,14.9,-0.2,7.35,0.3,27.4 -29.03.1982,12.7,1.8,7.25,1.1,27.3 -30.03.1982,8.4,2,5.2,0,27.3 -31.03.1982,9.4,2,5.7,0,27.2 -01.04.1982,17.4,-1.3,8.05,0,25.7 -02.04.1982,18.7,-0.1,9.3,1.8,24.5 -03.04.1982,12.1,5.8,8.95,0,24.3 -04.04.1982,17,-1.1,7.95,0,23.9 -05.04.1982,19.5,-0.6,9.45,0,23 -06.04.1982,21.2,4.1,12.65,0.7,22.3 -07.04.1982,11.9,8.3,10.1,17.1,22.4 -08.04.1982,11.8,1.6,6.7,7.6,25.2 -09.04.1982,7,1,4,1.6,62.3 -10.04.1982,6.3,0.8,3.55,2.1,57.4 -11.04.1982,5.4,-0.8,2.3,1.9,40.8 -12.04.1982,6.2,-0.5,2.85,1.7,37.1 -13.04.1982,6.4,-0.5,2.95,0.7,34 -14.04.1982,10,-3.8,3.1,0,31.5 -15.04.1982,14.4,-3.1,5.65,0,28.8 -16.04.1982,17.1,-1.1,8,0,27.2 -17.04.1982,12.2,3.3,7.75,0,26 -18.04.1982,14.1,0.4,7.25,0,25 -19.04.1982,13.9,-2.1,5.9,0,24.2 -20.04.1982,15.2,4.8,10,0,23.7 -21.04.1982,14.2,5.3,9.75,0,23.1 -22.04.1982,15.7,1.7,8.7,0,22.3 -23.04.1982,16.2,-1.3,7.45,15.4,20.1 -24.04.1982,11.4,3.6,7.5,1.7,24 -25.04.1982,15.2,1.4,8.3,0.1,26.1 -26.04.1982,12.2,2.6,7.4,0.3,23.6 -27.04.1982,13.3,4.2,8.75,0,21.9 -28.04.1982,10.7,5.6,8.15,0.6,21.1 -29.04.1982,8.7,3.2,5.95,4.8,21.1 -30.04.1982,9.3,1.4,5.35,2.6,22.1 -01.05.1982,10.3,3,6.65,3.9,22.5 -02.05.1982,9.9,0.4,5.15,0.1,22.9 -03.05.1982,15.5,0.8,8.15,0,23.2 -04.05.1982,14.4,3.3,8.85,1.6,21.7 -05.05.1982,12.6,6.2,9.4,1.8,21 -06.05.1982,13.7,1.3,7.5,9.2,21 -07.05.1982,11,3.4,7.2,3.2,25.6 -08.05.1982,14.8,1.1,7.95,0,28.3 -09.05.1982,17.9,1.2,9.55,1.7,26 -10.05.1982,14.4,6.4,10.4,25.9,24.6 -11.05.1982,14.2,6.7,10.45,5.1,48 -12.05.1982,18.3,2.4,10.35,0,107 -13.05.1982,20.7,2.1,11.4,0,65.3 -14.05.1982,22.7,2.7,12.7,0,45.9 -15.05.1982,24.7,5,14.85,0,39.5 -16.05.1982,26.6,7.9,17.25,0,35.3 -17.05.1982,22.7,10.5,16.6,2.7,32.4 -18.05.1982,24,9.7,16.85,2.1,31.3 -19.05.1982,20.1,11.9,16,0,29.9 -20.05.1982,23.7,6.3,15,0.5,27.3 -21.05.1982,18.2,13.3,15.75,1.9,26.6 -22.05.1982,17.9,13.3,15.6,0.4,25.3 -23.05.1982,17.7,11,14.35,10.7,26.6 -24.05.1982,16,9.3,12.65,2,29.2 -25.05.1982,19.2,6.7,12.95,0,26.6 -26.05.1982,25,5.9,15.45,0,23.9 -27.05.1982,27.6,7.7,17.65,0,22.2 -28.05.1982,19.7,10.2,14.95,0,20.7 -29.05.1982,19.1,5.7,12.4,0,19.9 -30.05.1982,21.3,5.5,13.4,0,19.8 -31.05.1982,26.2,6.8,16.5,0,19.2 -01.06.1982,29.3,10.2,19.75,0,17.9 -02.06.1982,29.9,12.4,21.15,0,17.4 -03.06.1982,31.6,11.5,21.55,0,17.1 -04.06.1982,32,12.3,22.15,0,14.9 -05.06.1982,30.8,14.1,22.45,0.8,14.2 -06.06.1982,26.6,14.8,20.7,3.2,14.1 -07.06.1982,26.8,14.5,20.65,0.4,15.3 -08.06.1982,25.6,12.4,19,2.6,16.6 -09.06.1982,22.1,13.4,17.75,0,15.7 -10.06.1982,22.6,7.8,15.2,0.1,15.6 -11.06.1982,18.5,11.2,14.85,6.5,14.8 -12.06.1982,17.8,10.6,14.2,4.9,15.5 -13.06.1982,14.5,9.4,11.95,4.2,18 -14.06.1982,14.5,9.1,11.8,1.2,17.4 -15.06.1982,14.6,5.4,10,0.3,15.3 -16.06.1982,13.7,6.9,10.3,4.6,14.9 -17.06.1982,18,6.6,12.3,0,15.7 -18.06.1982,20.2,4.8,12.5,2.6,15.2 -19.06.1982,18.2,10.7,14.45,5.8,14.7 -20.06.1982,18.5,11.9,15.2,0,16.6 -21.06.1982,19.8,7.8,13.8,0.1,15.5 -22.06.1982,22.2,9.1,15.65,1.3,14.9 -23.06.1982,21.9,12.4,17.15,1.2,13.8 -24.06.1982,17.9,11.2,14.55,1,14.3 -25.06.1982,24.6,8.8,16.7,0.5,14.1 -26.06.1982,22.7,13.6,18.15,7.2,13.6 -27.06.1982,19.9,12.6,16.25,2.2,14.3 -28.06.1982,18.8,11.1,14.95,4,18.2 -29.06.1982,17.7,10.4,14.05,5.5,15 -30.06.1982,19.7,11.1,15.4,1.3,15.1 -01.07.1982,20.4,6.8,13.6,0,15.5 -02.07.1982,25,13.2,19.1,0.4,14.4 -03.07.1982,26.5,15.1,20.8,11.7,13.8 -04.07.1982,19.5,11,15.25,0.5,15.6 -05.07.1982,19.9,7.9,13.9,0,15.7 -06.07.1982,21.2,10.9,16.05,0.1,14.7 -07.07.1982,21.6,13.5,17.55,0,13.1 -08.07.1982,25.6,8,16.8,0,13 -09.07.1982,28.5,10.3,19.4,0,12.7 -10.07.1982,26.4,12.6,19.5,0,12.2 -11.07.1982,28.3,15.2,21.75,0,12.2 -12.07.1982,28.6,12.9,20.75,0,13.1 -13.07.1982,28.5,15.1,21.8,0,10.9 -14.07.1982,29.4,14.5,21.95,0,11.6 -15.07.1982,31,14.4,22.7,1.5,11.8 -16.07.1982,27.3,14.3,20.8,0,11.5 -17.07.1982,23.7,14.8,19.25,0,11.2 -18.07.1982,23.2,11,17.1,0,11.5 -19.07.1982,22.2,9.9,16.05,0,11.2 -20.07.1982,26.3,13.8,20.05,0,11 -21.07.1982,29,15.7,22.35,10.2,10.9 -22.07.1982,23.5,14.8,19.15,5.1,14.4 -23.07.1982,21.2,13.8,17.5,0.6,14.5 -24.07.1982,23,15.5,19.25,2.8,12.4 -25.07.1982,24.7,14.9,19.8,3.3,13 -26.07.1982,17.9,14.1,16,0.8,14.4 -27.07.1982,20.1,12.5,16.3,0.3,12.5 -28.07.1982,22.8,6.9,14.85,2.1,12.6 -29.07.1982,27.2,15,21.1,0,11.9 -30.07.1982,28.4,9.9,19.15,0,12.3 -31.07.1982,28.6,16.3,22.45,0.1,11.3 -01.08.1982,30.2,13.4,21.8,0.2,11 -02.08.1982,30.5,11.5,21,0,10.9 -03.08.1982,29.5,14,21.75,0.7,10.8 -04.08.1982,26.5,15.9,21.2,0,10.8 -05.08.1982,25.7,13.6,19.65,1.2,10.7 -06.08.1982,24.2,15.3,19.75,1.4,10.8 -07.08.1982,25.2,16.5,20.85,3.9,10.8 -08.08.1982,23.5,16.4,19.95,2.7,11.4 -09.08.1982,23.1,14.6,18.85,0.2,11.4 -10.08.1982,21.8,12.9,17.35,0,11.3 -11.08.1982,24.8,7.9,16.35,0,11.2 -12.08.1982,29.4,9.8,19.6,1.9,10.5 -13.08.1982,23.7,14.5,19.1,0.6,10.6 -14.08.1982,22.3,14.1,18.2,0.2,10.4 -15.08.1982,25.9,9.8,17.85,0.4,10.6 -16.08.1982,24.2,13.7,18.95,0,10 -17.08.1982,20.7,12.3,16.5,2.1,10.3 -18.08.1982,24.7,12.5,18.6,5.7,10.6 -19.08.1982,20.8,11.8,16.3,0.5,10.7 -20.08.1982,18,8.8,13.4,1.1,10.6 -21.08.1982,17.7,8.5,13.1,0,11.1 -22.08.1982,19.8,7.2,13.5,0,10.5 -23.08.1982,20.2,8.8,14.5,1,10.4 -24.08.1982,19.8,11.9,15.85,1.2,10.3 -25.08.1982,19.8,12.7,16.25,0.2,10.6 -26.08.1982,25,9.4,17.2,7.4,10.2 -27.08.1982,20.5,12.1,16.3,0.2,12.3 -28.08.1982,21.2,8.5,14.85,0.1,10.8 -29.08.1982,22.3,6.4,14.35,0,10.3 -30.08.1982,23.2,6,14.6,0.1,10 -31.08.1982,21.4,10.3,15.85,0,10.1 -01.09.1982,16.8,9.9,13.35,0,9.87 -02.09.1982,14.8,10.1,12.45,1,9.7 -03.09.1982,21.7,4.1,12.9,0,10.1 -04.09.1982,25.2,6.1,15.65,0,9.92 -05.09.1982,26.5,7.5,17,2.3,9.73 -06.09.1982,22.8,16.2,19.5,0.8,9.56 -07.09.1982,20,12.5,16.25,0,9.78 -08.09.1982,21.8,12.2,17,0,9.87 -09.09.1982,22.8,9.3,16.05,0,9.63 -10.09.1982,26,9.1,17.55,0,9.78 -11.09.1982,26,9.4,17.7,0,9.29 -12.09.1982,25.5,10.4,17.95,0,9.28 -13.09.1982,24.1,9.9,17,0,9.26 -14.09.1982,25.2,8.9,17.05,0,9.35 -15.09.1982,27.9,8.8,18.35,0,9.79 -16.09.1982,28.5,9.4,18.95,0,9.14 -17.09.1982,28.2,10.9,19.55,0,9.16 -18.09.1982,27.5,9.4,18.45,0.1,9.1 -19.09.1982,25.6,11.2,18.4,0,9.13 -20.09.1982,26.4,9.8,18.1,0.9,8.87 -21.09.1982,23.1,14.6,18.85,6.6,9.27 -22.09.1982,20,9.2,14.6,0.3,9.61 -23.09.1982,17.7,6.2,11.95,0.4,9.62 -24.09.1982,19.8,6.9,13.35,0,10.5 -25.09.1982,20.6,6.9,13.75,0,10.2 -26.09.1982,25.5,12.5,19,4.4,9.89 -27.09.1982,19.2,9.2,14.2,0,9.68 -28.09.1982,22,5.9,13.95,0,9.77 -29.09.1982,22.7,5.9,14.3,0,10 -30.09.1982,18.2,8.7,13.45,3,10.3 -01.10.1982,16.2,10,13.1,0.1,10.1 -02.10.1982,19.2,9.8,14.5,0,10.1 -03.10.1982,19.5,8.8,14.15,0,10.2 -04.10.1982,19.4,7.9,13.65,0,10.5 -05.10.1982,15,4.3,9.65,6.3,9.15 -06.10.1982,13,9.7,11.35,19.9,10 -07.10.1982,11.4,5.9,8.65,40,13.9 -08.10.1982,13.1,7.7,10.4,4.1,34.8 -09.10.1982,11.5,9.5,10.5,2.5,37.1 -10.10.1982,12.2,8.3,10.25,2.6,23.4 -11.10.1982,12.8,8.3,10.55,8.3,17.7 -12.10.1982,12.7,9.7,11.2,5.8,16.5 -13.10.1982,12.1,8.4,10.25,12.1,24.7 -14.10.1982,12.8,9.1,10.95,6.4,31.7 -15.10.1982,12.2,9,10.6,0.4,40.3 -16.10.1982,11.2,5.4,8.3,0.1,36.3 -17.10.1982,10.1,5.4,7.75,2.1,23.6 -18.10.1982,15,6.1,10.55,0.3,19.8 -19.10.1982,15.5,6.4,10.95,0.1,18.4 -20.10.1982,15.2,4.9,10.05,0,16.6 -21.10.1982,15.4,7.5,11.45,0,15.2 -22.10.1982,19.6,7.9,13.75,0,14.8 -23.10.1982,13.8,6.8,10.3,10.1,14.1 -24.10.1982,11.8,7.3,9.55,0.9,15.3 -25.10.1982,10.9,1.7,6.3,0,16.6 -26.10.1982,12.8,0.5,6.65,0.1,15.8 -27.10.1982,12.7,6.7,9.7,0.2,14.3 -28.10.1982,14.8,9.5,12.15,0,13.5 -29.10.1982,12,5.6,8.8,0,13 -30.10.1982,10.2,8.4,9.3,0,12.6 -31.10.1982,9.7,4.2,6.95,0,12.3 -01.11.1982,12.8,3.1,7.95,0,12.1 -02.11.1982,14.8,5.3,10.05,0,11.9 -03.11.1982,12.4,7.1,9.75,0,11.6 -04.11.1982,10.4,7.9,9.15,0.1,11.7 -05.11.1982,9.2,3.4,6.3,0,11.6 -06.11.1982,7.8,-2,2.9,0,11.1 -07.11.1982,8.7,-1.4,3.65,0.3,11.4 -08.11.1982,15.6,3.7,9.65,0.1,11.1 -09.11.1982,15.6,10.1,12.85,0,11.2 -10.11.1982,13.8,9.9,11.85,0.2,11.1 -11.11.1982,15,4.9,9.95,0,10.9 -12.11.1982,11.2,3,7.1,6.7,11 -13.11.1982,10.6,4.7,7.65,3,11.7 -14.11.1982,7.2,-0.1,3.55,4.9,12.7 -15.11.1982,5.7,-0.9,2.4,0.2,15.7 -16.11.1982,4.6,-1.1,1.75,6.7,15.8 -17.11.1982,4.9,1.1,3,4.2,16.1 -18.11.1982,11.6,4.6,8.1,5.9,16.1 -19.11.1982,11.6,7.5,9.55,1.8,27.4 -20.11.1982,9.7,5.4,7.55,0.3,41.8 -21.11.1982,8.7,3.9,6.3,0.1,29.3 -22.11.1982,9.2,3.4,6.3,5.2,22.8 -23.11.1982,13.8,6.5,10.15,0.2,20.8 -24.11.1982,13.8,4.3,9.05,1.5,23.2 -25.11.1982,10.7,3.6,7.15,0.4,22.4 -26.11.1982,9.7,4.7,7.2,0,22.7 -27.11.1982,7.3,3.6,5.45,3.9,19.6 -28.11.1982,6.2,-0.6,2.8,0,18.8 -29.11.1982,3.2,-0.7,1.25,0,18.3 -30.11.1982,2.2,1.1,1.65,0,17 -01.12.1982,2,0.1,1.05,0,15.3 -02.12.1982,4.3,-2.3,1,0,14.4 -03.12.1982,0.8,-2.3,-0.75,0,13.7 -04.12.1982,2.4,-0.9,0.75,0.1,13.5 -05.12.1982,3.2,1.1,2.15,1.8,13.1 -06.12.1982,4.2,0.5,2.35,2.8,13.1 -07.12.1982,5.8,-1.5,2.15,8.2,13.3 -08.12.1982,11.9,5.5,8.7,1.6,15.4 -09.12.1982,8.8,6,7.4,7.7,24 -10.12.1982,11,4.5,7.75,9.6,28 -11.12.1982,5.7,2.8,4.25,2.2,44.7 -12.12.1982,4,0.8,2.4,6.8,44.7 -13.12.1982,3.4,0.2,1.8,0.2,33.4 -14.12.1982,0.7,-0.7,0,1.9,28.9 -15.12.1982,10,-0.5,4.75,10.9,25.9 -16.12.1982,11.2,4.9,8.05,2,28.6 -17.12.1982,6,1.2,3.6,1.3,69.3 -18.12.1982,2.1,0.5,1.3,0.4,84.3 -19.12.1982,2.7,0.2,1.45,4.2,46.3 -20.12.1982,6.7,0.7,3.7,13.4,36.9 -21.12.1982,5.3,3.8,4.55,2.3,61.3 -22.12.1982,4.7,0.8,2.75,2.5,90.3 -23.12.1982,1.5,-0.5,0.5,1.1,57.7 -24.12.1982,0.4,-1.9,-0.75,1.3,44.9 -25.12.1982,1.7,-0.7,0.5,0.4,35.7 -26.12.1982,3.8,1.2,2.5,0.9,30.7 -27.12.1982,8,3.7,5.85,4.4,28.5 -28.12.1982,6.2,2.9,4.55,1.9,30.4 -29.12.1982,4.7,-0.7,2,0,37.2 -30.12.1982,4.4,-1.1,1.65,0,30.8 -31.12.1982,1.2,-4.3,-1.55,0,26.9 -01.01.1983,1.7,-5.1,-1.7,0.9,24.3 -02.01.1983,2.4,-4.2,-0.9,0.7,22.6 -03.01.1983,9,1,5,7.2,21.5 -04.01.1983,10.2,6.7,8.45,8.4,23.8 -05.01.1983,12.2,3.6,7.9,3.6,56.5 -06.01.1983,13.2,9.1,11.15,3.6,72.4 -07.01.1983,10.2,3.3,6.75,1.3,63.7 -08.01.1983,5.7,0.6,3.15,1.5,51.2 -09.01.1983,5.6,1.5,3.55,1.8,43.7 -10.01.1983,7.7,2.5,5.1,0.4,38.3 -11.01.1983,9.7,6.9,8.3,0.1,37.4 -12.01.1983,7.3,2.5,4.9,0,33.8 -13.01.1983,6.2,-0.6,2.8,1.4,30.1 -14.01.1983,4.4,-0.1,2.15,7.2,27.9 -15.01.1983,4.7,0.8,2.75,11.1,30.9 -16.01.1983,7.4,4.2,5.8,2.3,45.4 -17.01.1983,8.1,6.8,7.45,0.5,69.1 -18.01.1983,7.8,1.9,4.85,3.1,56.9 -19.01.1983,3.1,0.2,1.65,4.3,47 -20.01.1983,2.7,-0.1,1.3,1.5,41.3 -21.01.1983,4.9,0.8,2.85,0.5,36.3 -22.01.1983,5.6,4.1,4.85,0,35.5 -23.01.1983,4.6,-2.7,0.95,0,36.6 -24.01.1983,1.8,-6.1,-2.15,0,33.9 -25.01.1983,2.8,-3.5,-0.35,1.2,29.3 -26.01.1983,8.8,2.4,5.6,0.6,27.1 -27.01.1983,11.8,8.6,10.2,2.7,27 -28.01.1983,9.8,7.5,8.65,5,30.1 -29.01.1983,10.2,6.5,8.35,1.8,33.3 -30.01.1983,7.7,-0.5,3.6,8.2,46.3 -31.01.1983,4.3,-0.5,1.9,5.6,48.3 -01.02.1983,10.2,1.9,6.05,9.7,51.7 -02.02.1983,4.3,0.4,2.35,1.7,85.7 -03.02.1983,3.4,-2.1,0.65,3.5,114 -04.02.1983,3.1,-3.7,-0.3,0.3,70.6 -05.02.1983,1.5,-4.3,-1.4,4.3,53.8 -06.02.1983,3.2,0.6,1.9,4.1,46.9 -07.02.1983,2.2,-0.4,0.9,1.6,44.8 -08.02.1983,0,-2.5,-1.25,0.9,42.1 -09.02.1983,0.7,-3.5,-1.4,0.9,37.3 -10.02.1983,-2,-4,-3,0.7,33.8 -11.02.1983,-1.7,-4.9,-3.3,0.3,31.3 -12.02.1983,-0.6,-2.5,-1.55,0.7,28.6 -13.02.1983,1.2,-9.9,-4.35,0,27.1 -14.02.1983,-0.6,-10.6,-5.6,0,25.2 -15.02.1983,-1,-8.1,-4.55,0,23.3 -16.02.1983,-0.5,-11.3,-5.9,0,22.1 -17.02.1983,2.6,-7,-2.2,0,20.7 -18.02.1983,1.8,-11.2,-4.7,0,19.8 -19.02.1983,-0.1,-4.9,-2.5,0.1,19.4 -20.02.1983,1.7,-0.8,0.45,0.5,19 -21.02.1983,2.1,-7.5,-2.7,0,18.5 -22.02.1983,1.2,-13.5,-6.15,0,18 -23.02.1983,4.5,-12.9,-4.2,0,17.1 -24.02.1983,6.7,-11.1,-2.2,0,16.7 -25.02.1983,8.2,-7.7,0.25,1.6,17 -26.02.1983,8.3,2,5.15,2.9,17.3 -27.02.1983,8.5,4.2,6.35,6,27.7 -28.02.1983,7.4,3.1,5.25,1.6,62.8 -01.03.1983,4.4,0.3,2.35,3.7,75.1 -02.03.1983,6.9,-0.3,3.3,0.1,57.9 -03.03.1983,7.3,-1,3.15,0,45.5 -04.03.1983,8.6,-3.2,2.7,0,40.1 -05.03.1983,10.6,-2.1,4.25,0,34.8 -06.03.1983,8.2,6.1,7.15,0.1,32.1 -07.03.1983,11.8,6.9,9.35,0.1,29.9 -08.03.1983,8.7,1.7,5.2,0,28.9 -09.03.1983,13.2,-1.4,5.9,0,27.9 -10.03.1983,8.2,2.9,5.55,0,27 -11.03.1983,8.9,-0.4,4.25,0,26.2 -12.03.1983,7.8,-5.1,1.35,0,24.8 -13.03.1983,11.8,-4.5,3.65,0.5,23.2 -14.03.1983,14.2,-0.9,6.65,2.1,22.4 -15.03.1983,11.6,5.6,8.6,1.9,22.1 -16.03.1983,11,2.3,6.65,0.1,22.4 -17.03.1983,10.9,-1.9,4.5,4.1,22.1 -18.03.1983,12.6,8.5,10.55,3.8,21.7 -19.03.1983,11.6,9.4,10.5,5,23.2 -20.03.1983,12.2,7.3,9.75,2,27.5 -21.03.1983,10.6,7.5,9.05,5.3,29.5 -22.03.1983,9.1,0.5,4.8,8.9,28.7 -23.03.1983,8.6,1.3,4.95,5.4,31.6 -24.03.1983,10.2,4.6,7.4,6.2,46.3 -25.03.1983,6.7,1.7,4.2,4,75 -26.03.1983,4.1,-0.5,1.8,3.7,71 -27.03.1983,5.1,-0.5,2.3,3.5,59.3 -28.03.1983,4.6,-1.1,1.75,3.8,54.8 -29.03.1983,7.6,-1.3,3.15,0.1,57.6 -30.03.1983,6.2,-0.6,2.8,1.8,51 -31.03.1983,9.9,4.4,7.15,1.2,47.2 -01.04.1983,12.2,1.2,6.7,7.2,48.5 -02.04.1983,8.6,3.6,6.1,13.1,52.9 -03.04.1983,7.7,-0.1,3.8,0.2,87.4 -04.04.1983,7.8,-2.9,2.45,0.9,102 -05.04.1983,7.7,1.9,4.8,8.3,67.7 -06.04.1983,9.1,3.3,6.2,4.9,61.6 -07.04.1983,8.6,2.4,5.5,3.1,75.8 -08.04.1983,9.7,0.9,5.3,24.6,77.5 -09.04.1983,10.8,3.8,7.3,0.4,120 -10.04.1983,12.8,2.3,7.55,5.4,175 -11.04.1983,14.7,6,10.35,5.7,161 -12.04.1983,7.6,3.5,5.55,8.5,123 -13.04.1983,7.2,1.8,4.5,1.5,124 -14.04.1983,6.6,-0.2,3.2,6,124 -15.04.1983,9.2,3.8,6.5,2,106 -16.04.1983,17.2,2.7,9.95,0,100 -17.04.1983,20.7,3.6,12.15,0,86.5 -18.04.1983,22.3,9.4,15.85,0.1,71.6 -19.04.1983,19.2,9.1,14.15,14.5,62.3 -20.04.1983,16.8,4.8,10.8,0,68.3 -21.04.1983,21.8,8.9,15.35,0.2,73 -22.04.1983,15.2,7.4,11.3,0.3,56.1 -23.04.1983,21.4,3.2,12.3,6.4,49.2 -24.04.1983,13.4,8,10.7,0.9,46.3 -25.04.1983,20.7,2.6,11.65,1.6,48.4 -26.04.1983,20.6,8.3,14.45,1.8,42.1 -27.04.1983,15.4,8,11.7,1,39.3 -28.04.1983,17.4,6.4,11.9,1.7,37.3 -29.04.1983,15.2,6,10.6,1.1,34.3 -30.04.1983,18.7,1.4,10.05,1.2,32 -01.05.1983,15.8,7.3,11.55,2.4,29.5 -02.05.1983,14.6,7.6,11.1,4.3,29 -03.05.1983,11.6,5.5,8.55,1.3,29.2 -04.05.1983,13.5,6.1,9.8,2.1,29.7 -05.05.1983,15.8,1.9,8.85,0,28.4 -06.05.1983,17.8,1.4,9.6,0,27.1 -07.05.1983,13.9,10.5,12.2,8.6,25.6 -08.05.1983,15.7,9.8,12.75,1.3,27.3 -09.05.1983,15.6,5.7,10.65,1.5,27.3 -10.05.1983,12.7,6.4,9.55,1.7,26.3 -11.05.1983,14,5.9,9.95,1.2,24.6 -12.05.1983,16.4,7.5,11.95,3.5,24.3 -13.05.1983,12.7,7.5,10.1,2.7,24.2 -14.05.1983,18.8,4.7,11.75,3.3,24.7 -15.05.1983,19.7,11,15.35,2.8,24.8 -16.05.1983,22.5,12.2,17.35,0.2,26.4 -17.05.1983,22.2,7.2,14.7,2.3,24.9 -18.05.1983,18.1,9.4,13.75,0,23.6 -19.05.1983,14.3,5.1,9.7,3,21.9 -20.05.1983,21.1,4.3,12.7,0,21.6 -21.05.1983,23.8,8.6,16.2,0.8,21.2 -22.05.1983,14.3,9.7,12,0.7,19.9 -23.05.1983,10.8,8.6,9.7,29.7,20.2 -24.05.1983,10.4,8.5,9.45,6.8,41.9 -25.05.1983,11.2,9.1,10.15,18.5,59.7 -26.05.1983,13.4,8.8,11.1,2.8,81.2 -27.05.1983,9.8,7.5,8.65,6.9,108 -28.05.1983,12.6,6.9,9.75,1.8,99.3 -29.05.1983,12.9,7.2,10.05,3.8,84.8 -30.05.1983,14.8,8.4,11.6,0.2,66.7 -31.05.1983,23.2,4.1,13.65,0,58.2 -01.06.1983,25.5,9.5,17.5,3.7,47.5 -02.06.1983,22.2,14.8,18.5,0.8,42.1 -03.06.1983,22.4,6.9,14.65,0,39.5 -04.06.1983,27,9.4,18.2,0,34.9 -05.06.1983,18.9,12.8,15.85,1.5,31.9 -06.06.1983,17.8,9.2,13.5,0.1,28.1 -07.06.1983,22.7,4.7,13.7,0.1,26.1 -08.06.1983,28,5.6,16.8,0.4,24.6 -09.06.1983,24,12.5,18.25,1.4,23.8 -10.06.1983,20,11.4,15.7,0,23.4 -11.06.1983,22.3,8.4,15.35,0,22.4 -12.06.1983,24.5,9.5,17,0,21.4 -13.06.1983,24.2,11.8,18,1.6,21.2 -14.06.1983,20,11.7,15.85,0.6,20.8 -15.06.1983,17,6.5,11.75,1.1,20.9 -16.06.1983,13.4,5.5,9.45,0.1,19.8 -17.06.1983,12.7,5.4,9.05,0,19.2 -18.06.1983,18.5,4.7,11.6,0,18.2 -19.06.1983,23.6,8.2,15.9,0,17.4 -20.06.1983,25.6,8.9,17.25,0,18 -21.06.1983,27,8.9,17.95,5.2,16.4 -22.06.1983,27.6,13.7,20.65,0,15.7 -23.06.1983,28.2,10.3,19.25,0,17.1 -24.06.1983,29.5,11.7,20.6,0,15.9 -25.06.1983,25.2,15.3,20.25,3.9,15.2 -26.06.1983,25,14.6,19.8,5.9,15.9 -27.06.1983,19.6,13.3,16.45,2.5,19.4 -28.06.1983,16.4,9.1,12.75,0.1,16.7 -29.06.1983,15.9,9.4,12.65,0.8,15.9 -30.06.1983,19.2,13.7,16.45,2.3,15.3 -01.07.1983,16.7,10.7,13.7,4.7,15.5 -02.07.1983,21.7,6.5,14.1,0,16.6 -03.07.1983,25.2,12.1,18.65,0,15.4 -04.07.1983,26,12.2,19.1,0,14.4 -05.07.1983,27.2,11.3,19.25,0,14 -06.07.1983,28.1,13.9,21,2.6,13.9 -07.07.1983,28.8,15,21.9,3.9,14.7 -08.07.1983,27.5,16,21.75,4.2,17.5 -09.07.1983,30.1,14.2,22.15,0,14.2 -10.07.1983,30.4,11.8,21.1,0,14.9 -11.07.1983,31,13.3,22.15,0,13.1 -12.07.1983,31,13.3,22.15,0,12.7 -13.07.1983,24.2,15.2,19.7,0,12.4 -14.07.1983,19.7,12.7,16.2,0,12.1 -15.07.1983,27.5,9.7,18.6,0,11.5 -16.07.1983,29.5,14,21.75,14.9,11.5 -17.07.1983,31,14,22.5,0.3,20.9 -18.07.1983,28.5,17,22.75,14.2,14.8 -19.07.1983,21.2,13.4,17.3,7.7,19.8 -20.07.1983,18.4,12.4,15.4,0,17.9 -21.07.1983,18.6,5.1,11.85,0,16.3 -22.07.1983,27.3,8.2,17.75,0,13 -23.07.1983,29.5,11.2,20.35,0,11.6 -24.07.1983,23.8,13.9,18.85,2.5,11.9 -25.07.1983,27.5,14.6,21.05,0,13 -26.07.1983,32.5,15.2,23.85,0,11.7 -27.07.1983,31.3,16.8,24.05,0.1,11.5 -28.07.1983,26.2,16.3,21.25,0,11 -29.07.1983,22.8,14.2,18.5,0,10.9 -30.07.1983,26.6,16,21.3,0,10.5 -31.07.1983,32.3,11,21.65,0,10.4 -01.08.1983,28.3,17.3,22.8,6.4,10.3 -02.08.1983,21.7,13.2,17.45,1.9,10.8 -03.08.1983,19.4,11.8,15.6,1.5,10.9 -04.08.1983,15.4,9.8,12.6,7.3,11.1 -05.08.1983,15.2,12.4,13.8,17.7,12 -06.08.1983,17.2,12.2,14.7,4.8,14.9 -07.08.1983,21.2,12,16.6,0.1,18.4 -08.08.1983,25.9,14.1,20,0.2,14.6 -09.08.1983,26.6,11.7,19.15,0,11.5 -10.08.1983,27.4,13.2,20.3,0.2,10.9 -11.08.1983,25.3,12.1,18.7,0.7,11 -12.08.1983,25.8,10.7,18.25,0,11.1 -13.08.1983,19.2,12,15.6,0,11.2 -14.08.1983,17.9,9.7,13.8,0,11 -15.08.1983,25.6,6,15.8,0,11 -16.08.1983,24.8,9.9,17.35,0.2,10.6 -17.08.1983,25,11.7,18.35,1.1,10.8 -18.08.1983,27.5,11.9,19.7,0,11 -19.08.1983,29.4,13.3,21.35,0,10.8 -20.08.1983,29.6,13.9,21.75,0,10.3 -21.08.1983,29.5,15,22.25,2.3,10.4 -22.08.1983,27.2,14,20.6,1.4,10.4 -23.08.1983,28,15.1,21.55,2.5,10.7 -24.08.1983,26.5,14.3,20.4,0,11.2 -25.08.1983,28,14.4,21.2,0,10.8 -26.08.1983,28,13.1,20.55,0,10.2 -27.08.1983,26.6,12,19.3,0,10 -28.08.1983,23.2,10.6,16.9,0,9.87 -29.08.1983,25.3,8.9,17.1,0,11.5 -30.08.1983,26.2,7.5,16.85,0,9.98 -31.08.1983,28.1,7.3,17.7,0,10.1 -01.09.1983,24.3,11.3,17.8,0.6,9.32 -02.09.1983,24.2,15.1,19.65,0.4,8.97 -03.09.1983,19.8,11.9,15.85,5.8,9.53 -04.09.1983,19.7,12.3,16,0,10.3 -05.09.1983,22.6,14.6,18.6,0,9.86 -06.09.1983,18.2,5.3,11.75,0,10.1 -07.09.1983,16.7,5.8,11.25,0,9.87 -08.09.1983,18.8,2.1,10.45,0.6,9.82 -09.09.1983,20.4,12,16.2,5.9,9.47 -10.09.1983,18.7,13.6,16.15,11.7,9.5 -11.09.1983,16.6,12.7,14.65,1.5,9.6 -12.09.1983,13.4,11.7,12.55,1.9,9.62 -13.09.1983,12.8,9.2,11,4.8,10.5 -14.09.1983,15.7,9.2,12.45,6.3,10.9 -15.09.1983,22.1,9.9,16,13,12.8 -16.09.1983,17,10.2,13.6,2.9,14.8 -17.09.1983,16.1,10.1,13.1,1,16.7 -18.09.1983,16.2,9.3,12.75,0,12.9 -19.09.1983,17.4,14.4,15.9,6.8,11.2 -20.09.1983,17.8,8.6,13.2,0.1,11 -21.09.1983,16,6,11,5.2,11.3 -22.09.1983,16.7,8.4,12.55,0.1,12.1 -23.09.1983,19.4,4.2,11.8,0,11.2 -24.09.1983,24.2,6.3,15.25,1.7,11.2 -25.09.1983,19.2,7.9,13.55,0,10.6 -26.09.1983,18.7,2.8,10.75,0,10.2 -27.09.1983,25,4.9,14.95,0,10.1 -28.09.1983,23.2,6.7,14.95,0,10.1 -29.09.1983,21.7,8.1,14.9,0,9.62 -30.09.1983,12.9,9.1,11,0,9.67 -01.10.1983,15.2,4,9.6,0.1,9.48 -02.10.1983,14.7,5.6,10.15,3.1,9.56 -03.10.1983,20.2,12.5,16.35,0.1,9.8 -04.10.1983,25.4,12.7,19.05,0,9.59 -05.10.1983,21.3,11.4,16.35,0,9.87 -06.10.1983,15.8,10.3,13.05,0,9.77 -07.10.1983,15.2,8,11.6,0.5,9.71 -08.10.1983,13.5,10.1,11.8,9.4,9.58 -09.10.1983,13,7.8,10.4,1.5,9.98 -10.10.1983,14.8,8.9,11.85,2.1,10.6 -11.10.1983,13.6,8.3,10.95,1.8,11.2 -12.10.1983,11.8,7,9.4,0.1,10.5 -13.10.1983,20.2,2.7,11.45,0.1,10.5 -14.10.1983,17.3,8.6,12.95,3.7,10.2 -15.10.1983,14.4,7.3,10.85,2.2,10 -16.10.1983,14.7,7.8,11.25,7.7,10.3 -17.10.1983,10.3,7.5,8.9,0.5,13.3 -18.10.1983,11.8,4.7,8.25,1.9,13.2 -19.10.1983,15.5,5.6,10.55,2.7,10.3 -20.10.1983,10.7,3.7,7.2,0,10.9 -21.10.1983,10.2,2.4,6.3,0,11.6 -22.10.1983,9.6,-1.1,4.25,0,11.1 -23.10.1983,11.8,-3,4.4,0,10.3 -24.10.1983,11.2,-2.9,4.15,0,10.1 -25.10.1983,9.6,-2.1,3.75,0.1,10.1 -26.10.1983,13.4,4.6,9,0,10.1 -27.10.1983,15.2,1.5,8.35,0,10.1 -28.10.1983,9.4,4.3,6.85,0.7,10 -29.10.1983,8.7,-0.6,4.05,0.3,9.97 -30.10.1983,7.9,-2.5,2.7,0.1,9.7 -31.10.1983,8.8,-1.2,3.8,0.5,9.79 -01.11.1983,10.8,7.3,9.05,0.1,9.62 -02.11.1983,11.9,8,9.95,0,9.64 -03.11.1983,14.2,1.5,7.85,0,9.6 -04.11.1983,12.6,2.4,7.5,0,9.7 -05.11.1983,15.3,3.6,9.45,0,9.7 -06.11.1983,10.6,2.7,6.65,0.1,9.7 -07.11.1983,10.6,1.8,6.2,0,9.66 -08.11.1983,11.2,0.5,5.85,0,9.7 -09.11.1983,10,0.5,5.25,0,9.6 -10.11.1983,10.3,-1.5,4.4,0,9.6 -11.11.1983,4.8,-0.1,2.35,0,9.33 -12.11.1983,6.6,-3.3,1.65,0,9.49 -13.11.1983,3.5,-6.4,-1.45,0,9.48 -14.11.1983,2.2,-9.5,-3.65,0.1,9.6 -15.11.1983,-0.8,-9.7,-5.25,1.9,9.3 -16.11.1983,1.8,-1.5,0.15,0.4,9.21 -17.11.1983,3.5,-0.7,1.4,0.3,9.64 -18.11.1983,3.4,-0.9,1.25,0.3,9.51 -19.11.1983,4.5,0.1,2.3,0.2,9.6 -20.11.1983,4,1.5,2.75,0.4,9.6 -21.11.1983,4.7,-0.5,2.1,0.6,9.51 -22.11.1983,3.8,-1.9,0.95,0,9.6 -23.11.1983,3.8,-3.9,-0.05,0,9.56 -24.11.1983,1.7,-3.1,-0.7,1.9,9.6 -25.11.1983,11.2,-1.9,4.65,7.7,9.6 -26.11.1983,13.2,11,12.1,21,8.96 -27.11.1983,14.7,8.1,11.4,14.8,22.1 -28.11.1983,8.7,5,6.85,4.4,51.1 -29.11.1983,8.2,3.5,5.85,2.3,45.6 -30.11.1983,4,-2.1,0.95,2.5,25.5 -01.12.1983,-0.2,-6,-3.1,0.2,20.6 -02.12.1983,-1.3,-8.6,-4.95,0,17.1 -03.12.1983,0.3,-9.2,-4.45,0,15.3 -04.12.1983,0.8,-8.5,-3.85,0,14.4 -05.12.1983,1.8,-8.9,-3.55,1.3,13 -06.12.1983,1.8,-7.1,-2.65,4.2,13.2 -07.12.1983,2,-6,-2,1.1,12.5 -08.12.1983,1.5,-6.9,-2.7,2.9,12.5 -09.12.1983,3.2,0.7,1.95,2.8,11.5 -10.12.1983,4,-4,0,2.1,12.6 -11.12.1983,0.9,-8.4,-3.75,0.7,13.6 -12.12.1983,-3.6,-13.1,-8.35,0,13.2 -13.12.1983,-2.8,-10.6,-6.7,0,11.2 -14.12.1983,-1.4,-6.7,-4.05,0,11.8 -15.12.1983,-0.7,-10.9,-5.8,0,10.6 -16.12.1983,-3.3,-12.6,-7.95,0,10.4 -17.12.1983,-0.9,-8.2,-4.55,0.2,11.6 -18.12.1983,4,-1.6,1.2,2.9,12 -19.12.1983,3.8,1.1,2.45,1.3,11.3 -20.12.1983,7.9,1.7,4.8,0.6,12.3 -21.12.1983,7.2,2.4,4.8,0.3,14.9 -22.12.1983,7,-0.1,3.45,4.2,16.5 -23.12.1983,8.7,5.1,6.9,0.7,19.4 -24.12.1983,11.9,3.5,7.7,2.5,24.9 -25.12.1983,13.4,9.5,11.45,11.5,24.3 -26.12.1983,10,4.4,7.2,7.9,28.6 -27.12.1983,6.4,2.5,4.45,0.2,51.6 -28.12.1983,9.3,6,7.65,0.1,40.6 -29.12.1983,8.4,6,7.2,0,28.6 -30.12.1983,6.4,3.1,4.75,0,24.1 -31.12.1983,4.9,0.4,2.65,0,21 -01.01.1984,5.2,2.9,4.05,2,18 -02.01.1984,7.2,4.3,5.75,7.1,17.6 -03.01.1984,6.8,3.7,5.25,8.4,18.6 -04.01.1984,4.8,0.4,2.6,5.6,48.6 -05.01.1984,2,-0.5,0.75,2.1,46.2 -06.01.1984,3.5,1.1,2.3,0.4,29.8 -07.01.1984,3.7,1.9,2.8,3.8,26.3 -08.01.1984,3.1,0.8,1.95,3.7,28.1 -09.01.1984,2,-0.7,0.65,1.1,27 -10.01.1984,1.8,-2.1,-0.15,0.7,23.4 -11.01.1984,4.4,-0.1,2.15,0.5,21.2 -12.01.1984,4.8,3,3.9,1.1,20.2 -13.01.1984,6.2,1.9,4.05,8.1,21.5 -14.01.1984,10.1,3.7,6.9,18.7,31.5 -15.01.1984,4.2,0.3,2.25,3.3,81 -16.01.1984,5,0.5,2.75,15.8,135 -17.01.1984,7.4,0.1,3.75,3.2,110 -18.01.1984,2.7,0.2,1.45,1,121 -19.01.1984,3.4,-1.4,1,0.1,157 -20.01.1984,2.2,-3.5,-0.65,0.5,68.2 -21.01.1984,-1.1,-6.7,-3.9,0,48.2 -22.01.1984,-2.5,-5.4,-3.95,5.9,40.1 -23.01.1984,2.5,-3.5,-0.5,5.7,34.8 -24.01.1984,3,0.7,1.85,6.4,33 -25.01.1984,1.5,-4.7,-1.6,0.4,31.6 -26.01.1984,-0.5,-10,-5.25,1.6,27.7 -27.01.1984,2.8,-1,0.9,0.5,24.9 -28.01.1984,4.5,-1.9,1.3,0.7,24.6 -29.01.1984,5.1,1.4,3.25,3.3,23.5 -30.01.1984,5.5,2.6,4.05,2.4,25.5 -31.01.1984,3.8,1.1,2.45,5.7,40.7 -01.02.1984,2.4,0.4,1.4,4.4,48.9 -02.02.1984,7.2,1.8,4.5,1.5,49.5 -03.02.1984,5.7,2.8,4.25,9.4,62.3 -04.02.1984,6.2,3.4,4.8,0.8,90.5 -05.02.1984,8.8,2.6,5.7,4.4,108 -06.02.1984,5.2,-0.9,2.15,41.2,101 -07.02.1984,7.2,0.1,3.65,2.5,162 -08.02.1984,3.2,0.7,1.95,9.2,360 -09.02.1984,2.8,0.4,1.6,1.1,249 -10.02.1984,2.4,-2.9,-0.25,1.4,158 -11.02.1984,5.2,0.6,2.9,0.9,99.3 -12.02.1984,2.9,-3.3,-0.2,0,80.3 -13.02.1984,2.2,-3.2,-0.5,0,66.2 -14.02.1984,4.6,-4.3,0.15,0,54.4 -15.02.1984,3.8,-3.8,0,0,46 -16.02.1984,0.6,-7.7,-3.55,0,41.2 -17.02.1984,1.7,-10.3,-4.3,0,36.5 -18.02.1984,-0.4,-10.2,-5.3,0,32.7 -19.02.1984,1.2,-8.8,-3.8,0,30.5 -20.02.1984,4.2,-6.6,-1.2,0.1,28.4 -21.02.1984,5.8,-3.7,1.05,1.7,26.9 -22.02.1984,2.6,-0.6,1,1.1,26.2 -23.02.1984,2.2,-1.1,0.55,0,25.9 -24.02.1984,2.2,-1.1,0.55,0,24.7 -25.02.1984,2,-0.7,0.65,1.2,24.1 -26.02.1984,5.1,-0.5,2.3,0.4,22.9 -27.02.1984,3.8,-0.1,1.85,1.9,22.7 -28.02.1984,5,-1.9,1.55,0,23.1 -29.02.1984,7.6,-5.2,1.2,0,21.8 -01.03.1984,7.2,-4.9,1.15,0,20.6 -02.03.1984,3.7,-4.6,-0.45,3.9,20.1 -03.03.1984,2.9,-0.5,1.2,0.4,20.8 -04.03.1984,2.1,-5.2,-1.55,0,21.1 -05.03.1984,3,-1.2,0.9,0.1,19.9 -06.03.1984,9.2,1.6,5.4,0.1,19.1 -07.03.1984,6.4,2.1,4.25,0.2,19 -08.03.1984,6.2,-1.7,2.25,0.7,20.9 -09.03.1984,4.2,-5.6,-0.7,0.1,21.2 -10.03.1984,3.6,-7.5,-1.95,0,19.6 -11.03.1984,7.2,-6.3,0.45,0,18.4 -12.03.1984,6.7,-5.2,0.75,0,17.7 -13.03.1984,6,-0.7,2.65,0,17.2 -14.03.1984,8,-0.8,3.6,0,17 -15.03.1984,11.2,-3.5,3.85,0,17 -16.03.1984,6.3,-3.3,1.5,0,17.2 -17.03.1984,7.6,-0.5,3.55,0,18 -18.03.1984,6,-2.6,1.7,0,17.7 -19.03.1984,6.2,-3.6,1.3,0,17.7 -20.03.1984,7.4,-6.7,0.35,0,17.8 -21.03.1984,11,-6,2.5,0,17.3 -22.03.1984,11.4,-4.5,3.45,0,17.4 -23.03.1984,12.6,-5,3.8,0,17.2 -24.03.1984,12.2,-3.5,4.35,1.5,17.5 -25.03.1984,9.6,2.4,6,1.2,17.2 -26.03.1984,11.9,-0.6,5.65,1.8,18.6 -27.03.1984,10.4,3.9,7.15,6.5,19.6 -28.03.1984,12.2,6.2,9.2,3.1,23.4 -29.03.1984,10.9,4.6,7.75,2,31.2 -30.03.1984,8.1,-0.6,3.75,0.4,39 -31.03.1984,7.8,-2.9,2.45,4.2,32.9 -01.04.1984,3.2,0.3,1.75,12.5,29.7 -02.04.1984,2.1,-0.6,0.75,9.4,34.7 -03.04.1984,2,-0.8,0.6,1.5,40.7 -04.04.1984,3.2,-0.7,1.25,2.8,36.7 -05.04.1984,6.8,-0.9,2.95,0.5,35.8 -06.04.1984,6.9,-1.5,2.7,0.9,38.5 -07.04.1984,6.9,0.7,3.8,0.1,40.7 -08.04.1984,9.7,1.6,5.65,0.1,42.9 -09.04.1984,8.7,1.9,5.3,0.8,43.1 -10.04.1984,10.9,1.5,6.2,0,42.2 -11.04.1984,11.2,4.4,7.8,0,38.8 -12.04.1984,6.2,1.4,3.8,2,36.1 -13.04.1984,13.8,-0.3,6.75,0,35 -14.04.1984,17.7,-1.1,8.3,0,32.7 -15.04.1984,20.7,1.7,11.2,0.7,30.7 -16.04.1984,15.3,4.5,9.9,3,31.1 -17.04.1984,9.6,1.5,5.55,0,31.4 -18.04.1984,13,-2.5,5.25,0,27.8 -19.04.1984,15.6,-2.3,6.65,0,25.5 -20.04.1984,16.6,-1.1,7.75,0,23.8 -21.04.1984,21,0.9,10.95,0,22.9 -22.04.1984,24.2,4,14.1,0,22.2 -23.04.1984,20.2,5,12.6,0,21.8 -24.04.1984,19.2,2.3,10.75,0,20.8 -25.04.1984,19.9,1.1,10.5,0,20 -26.04.1984,19.3,1.9,10.6,0,19.4 -27.04.1984,14.8,-1.6,6.6,0,18.4 -28.04.1984,10.7,-1.9,4.4,0,18.2 -29.04.1984,13.9,-1.8,6.05,0,17.7 -30.04.1984,13.2,0.5,6.85,5.1,17.4 -01.05.1984,9.3,5.4,7.35,2.2,18.8 -02.05.1984,18.7,1.7,10.2,0.6,16.8 -03.05.1984,13.2,7.2,10.2,0.6,16.3 -04.05.1984,19.2,6.7,12.95,0.1,15.9 -05.05.1984,21,9.5,15.25,1.6,15.6 -06.05.1984,17.1,12.1,14.6,0.3,15.4 -07.05.1984,12.8,3.7,8.25,0.3,14.9 -08.05.1984,10.8,1.9,6.35,0.8,14.9 -09.05.1984,11,0.2,5.6,0,14.7 -10.05.1984,10.2,1.2,5.7,0.4,14.3 -11.05.1984,12.3,2.8,7.55,1.9,14.1 -12.05.1984,9.2,5.8,7.5,6,14 -13.05.1984,9.3,5.3,7.3,3.8,15 -14.05.1984,14.2,6.2,10.2,7.4,17.3 -15.05.1984,15.2,8.4,11.8,0.1,18.2 -16.05.1984,21.7,4.5,13.1,6.8,18 -17.05.1984,17.6,9.8,13.7,1.5,18.5 -18.05.1984,20.6,6.1,13.35,0.1,17.9 -19.05.1984,23.5,5.8,14.65,12.2,16.5 -20.05.1984,19.4,9.9,14.65,2.7,17 -21.05.1984,15.4,9.2,12.3,33.8,25.5 -22.05.1984,15.1,7.7,11.4,1,57.4 -23.05.1984,16.6,6.4,11.5,18.2,82.6 -24.05.1984,11.9,8.5,10.2,6.3,61.5 -25.05.1984,15.3,8.9,12.1,9.4,100 -26.05.1984,16.7,9.2,12.95,3.8,123 -27.05.1984,14.8,9.1,11.95,17.2,108 -28.05.1984,11.2,8.3,9.75,19.1,126 -29.05.1984,12.6,7.6,10.1,15.9,171 -30.05.1984,12.6,7.6,10.1,6.9,211 -31.05.1984,18,3.2,10.6,1.5,224 -01.06.1984,20.2,8.6,14.4,1.4,214 -02.06.1984,20.8,10.3,15.55,0.9,191 -03.06.1984,26.7,14.2,20.45,0,111 -04.06.1984,19.7,10.1,14.9,0.4,76.1 -05.06.1984,19,7.9,13.45,8.7,62.7 -06.06.1984,12.4,10.2,11.3,8.2,56.5 -07.06.1984,16.8,8.5,12.65,0.6,66.1 -08.06.1984,19.1,10.2,14.65,14.2,63.6 -09.06.1984,14.7,9.8,12.25,0,65.9 -10.06.1984,20.7,9.7,15.2,1,82 -11.06.1984,17.2,9.2,13.2,0,56.6 -12.06.1984,20.3,4.4,12.35,0,44.3 -13.06.1984,22.4,8.3,15.35,0,39 -14.06.1984,17.3,11.3,14.3,4,35.4 -15.06.1984,15,10.3,12.65,0.1,34.5 -16.06.1984,13.7,10.5,12.1,0,32.3 -17.06.1984,17.7,10.1,13.9,0,29.6 -18.06.1984,21.3,9.6,15.45,0,27.9 -19.06.1984,25.1,6,15.55,0,25.8 -20.06.1984,28.1,9.5,18.8,0.5,23.7 -21.06.1984,25,16.2,20.6,4.7,22.8 -22.06.1984,20.7,10.4,15.55,5.7,24 -23.06.1984,17.1,10.4,13.75,0.1,23.7 -24.06.1984,13.8,8.5,11.15,0.1,22.9 -25.06.1984,14.4,9.1,11.75,5.7,21.1 -26.06.1984,14.6,10.5,12.55,0.1,21.6 -27.06.1984,22.4,10.1,16.25,0.2,21.2 -28.06.1984,17,11.6,14.3,3.1,19.3 -29.06.1984,14.1,8.5,11.3,0.9,19.1 -30.06.1984,16.7,6.5,11.6,1.8,18.8 -01.07.1984,19.2,3.6,11.4,0.9,18.2 -02.07.1984,18.7,7.6,13.15,8.4,18.4 -03.07.1984,12.5,9.1,10.8,5.6,19.7 -04.07.1984,13.8,9.2,11.5,0.4,21.9 -05.07.1984,15.3,10,12.65,0,19.8 -06.07.1984,17.2,10.5,13.85,0,17.9 -07.07.1984,23.2,6.8,15,0,17 -08.07.1984,26,9.1,17.55,0,16.2 -09.07.1984,30,8.9,19.45,0,15.1 -10.07.1984,32.6,15.3,23.95,0,14.9 -11.07.1984,33.5,16.6,25.05,8,14.2 -12.07.1984,24.4,16.4,20.4,0.4,15.4 -13.07.1984,20,11.9,15.95,2.7,15 -14.07.1984,16.3,12.7,14.5,13.6,15 -15.07.1984,16.8,12.9,14.85,17.4,16.8 -16.07.1984,16.2,11.3,13.75,4.4,32.2 -17.07.1984,14.2,9.9,12.05,0.6,32 -18.07.1984,13.8,11.1,12.45,4.9,26.4 -19.07.1984,17.3,12,14.65,0.4,22.9 -20.07.1984,15.6,11.1,13.35,0,21.5 -21.07.1984,17.5,12.1,14.8,0,20.3 -22.07.1984,18.1,10.3,14.2,0,18.6 -23.07.1984,19.5,8.5,14,0,16.8 -24.07.1984,23,7.3,15.15,0,16.1 -25.07.1984,23.9,7.3,15.6,0,15.5 -26.07.1984,15.9,12.6,14.25,1.8,14.4 -27.07.1984,17.4,11.8,14.6,5.6,14.2 -28.07.1984,16.6,12.9,14.75,2,14.5 -29.07.1984,26.6,15.8,21.2,0,15.2 -30.07.1984,29.4,8.2,18.8,1.2,14.9 -31.07.1984,30,16.8,23.4,6.3,14.6 -01.08.1984,20.8,15.1,17.95,8.3,14.4 -02.08.1984,22.5,13.3,17.9,0.4,18.2 -03.08.1984,27.2,15.1,21.15,0.5,16.2 -04.08.1984,21.8,15.3,18.55,3.4,14.2 -05.08.1984,22.1,14.4,18.25,1.6,13.7 -06.08.1984,19.8,10.7,15.25,1.7,14.4 -07.08.1984,20.7,8.5,14.6,0,14.1 -08.08.1984,22.1,11.4,16.75,0,14 -09.08.1984,17.6,12.9,15.25,0.9,13.2 -10.08.1984,17.2,15.2,16.2,6.2,13 -11.08.1984,15.4,13.6,14.5,5.6,13.7 -12.08.1984,21.7,13.7,17.7,0.5,15.3 -13.08.1984,22.2,9.5,15.85,0.1,16.5 -14.08.1984,24.3,10.4,17.35,1.2,14.9 -15.08.1984,21.2,13,17.1,0,13.6 -16.08.1984,21.2,11.2,16.2,0.7,13 -17.08.1984,21.9,9,15.45,0,12.6 -18.08.1984,22,9.2,15.6,0,12.8 -19.08.1984,24.8,12.9,18.85,0,12.3 -20.08.1984,25.5,10.8,18.15,0,12.3 -21.08.1984,26,11.2,18.6,0,11.6 -22.08.1984,26.5,11.2,18.85,0,11.9 -23.08.1984,27.8,10.1,18.95,0,11.6 -24.08.1984,27,10.1,18.55,1.3,11.1 -25.08.1984,22.3,16.4,19.35,14.1,11.6 -26.08.1984,22.4,15,18.7,0.5,11.7 -27.08.1984,22.6,11.4,17,0,26.9 -28.08.1984,23.5,11.1,17.3,0,15.8 -29.08.1984,24.2,9.5,16.85,0,13.5 -30.08.1984,23.2,12.6,17.9,0,12.3 -31.08.1984,22.2,13.4,17.8,0,11.4 -01.09.1984,24.4,15.5,19.95,0,11.3 -02.09.1984,24.1,14.2,19.15,0,11.4 -03.09.1984,23.7,13.3,18.5,0,11 -04.09.1984,19.8,15.2,17.5,7.3,11.1 -05.09.1984,16.1,8.4,12.25,0.4,11.5 -06.09.1984,11.1,5.6,8.35,21.2,13.2 -07.09.1984,11.1,8.8,9.95,6.9,19.6 -08.09.1984,11.5,8.9,10.2,15.2,17.8 -09.09.1984,12.8,9.6,11.2,21.9,24.5 -10.09.1984,12.2,9.7,10.95,8.8,51.5 -11.09.1984,13.2,9.8,11.5,12.4,72.6 -12.09.1984,14.1,10.8,12.45,2.4,54.2 -13.09.1984,18.5,10.4,14.45,0.4,56.9 -14.09.1984,22,9.6,15.8,5.5,42.5 -15.09.1984,17.1,12.4,14.75,2.3,36.1 -16.09.1984,14.9,12.7,13.8,0.1,34 -17.09.1984,14.2,9.2,11.7,0.4,30.9 -18.09.1984,16.4,9.7,13.05,0.1,27.7 -19.09.1984,15.5,6.2,10.85,2.6,25 -20.09.1984,15,10.5,12.75,0.2,23.1 -21.09.1984,18.3,10,14.15,3,21.9 -22.09.1984,14.2,6.6,10.4,2.9,21.5 -23.09.1984,11.6,7,9.3,4.2,21.4 -24.09.1984,11.9,8.1,10,3,21.5 -25.09.1984,12.2,7.4,9.8,4.7,22.9 -26.09.1984,10.6,8.6,9.6,5.9,25 -27.09.1984,15.6,6.7,11.15,0,29.1 -28.09.1984,15.8,5.2,10.5,0,30.8 -29.09.1984,19.7,6,12.85,3.3,25 -30.09.1984,18,10.7,14.35,0.7,23 -01.10.1984,20.3,11.4,15.85,4.6,22.5 -02.10.1984,15.8,8.5,12.15,0.7,22 -03.10.1984,14.4,5.7,10.05,1.3,22.4 -04.10.1984,15.1,7.4,11.25,7.7,22.6 -05.10.1984,15.9,9.3,12.6,4.2,23 -06.10.1984,13.6,9.4,11.5,1.3,27.2 -07.10.1984,13.2,6.3,9.75,2.9,26.3 -08.10.1984,14,9.1,11.55,1.7,25.9 -09.10.1984,16.8,11.4,14.1,4.4,24.1 -10.10.1984,15.4,11.9,13.65,1.4,27.6 -11.10.1984,16.7,9.7,13.2,0,30.3 -12.10.1984,14.1,6.8,10.45,0.2,28.9 -13.10.1984,13.5,6.2,9.85,0,25.8 -14.10.1984,13.2,5.5,9.35,0,23.7 -15.10.1984,16.1,6.9,11.5,0,22.2 -16.10.1984,14.2,5.9,10.05,0,20.9 -17.10.1984,17.4,3.7,10.55,0,20.1 -18.10.1984,16.7,10.2,13.45,5,19.1 -19.10.1984,16.3,11.6,13.95,2.2,19 -20.10.1984,15.5,8.3,11.9,4.1,21.4 -21.10.1984,11.2,7.2,9.2,0.1,20.9 -22.10.1984,10.6,1.5,6.05,4.8,21 -23.10.1984,15.2,10.4,12.8,3.6,20.6 -24.10.1984,13,7.5,10.25,0.2,23 -25.10.1984,16.6,7.3,11.95,5,24.5 -26.10.1984,14.7,4.5,9.6,6.6,25.5 -27.10.1984,12.2,2.3,7.25,0.5,31 -28.10.1984,9.8,-0.7,4.55,0,31.3 -29.10.1984,11.3,3,7.15,0.1,25.9 -30.10.1984,17,6.3,11.65,0,23.4 -31.10.1984,9.8,1.3,5.55,0,22 -01.11.1984,10.6,1.9,6.25,0.1,20.1 -02.11.1984,7.4,1,4.2,0,19.6 -03.11.1984,6.9,3.8,5.35,0,19.3 -04.11.1984,6.8,5.4,6.1,0,18.9 -05.11.1984,10.4,5.3,7.85,0,18.3 -06.11.1984,12.2,3.3,7.75,0,17.9 -07.11.1984,9.8,0.7,5.25,0,17.8 -08.11.1984,10.6,2.2,6.4,0,17.2 -09.11.1984,11.1,3.4,7.25,0,16.7 -10.11.1984,10.4,6.6,8.5,0,16 -11.11.1984,13.2,6.2,9.7,0,15.9 -12.11.1984,11,1.1,6.05,0,15.8 -13.11.1984,11,0.1,5.55,0,15 -14.11.1984,8.6,-3.1,2.75,0,14.9 -15.11.1984,2.5,-1.8,0.35,0.1,14.3 -16.11.1984,3.1,-1,1.05,3.4,15 -17.11.1984,2.8,0.5,1.65,2.3,14.5 -18.11.1984,6.2,1.6,3.9,0.1,15.9 -19.11.1984,4.1,1.7,2.9,0,15.5 -20.11.1984,4.3,1.9,3.1,1,15.1 -21.11.1984,7,3.6,5.3,5.5,15 -22.11.1984,13.5,6.4,9.95,40.4,15.8 -23.11.1984,14,8.7,11.35,15.9,75.6 -24.11.1984,14.7,8,11.35,9.7,140 -25.11.1984,10.3,8.3,9.3,1.6,197 -26.11.1984,10.3,5.3,7.8,0.1,195 -27.11.1984,7.6,2.1,4.85,0,120 -28.11.1984,8.4,0.7,4.55,0,65.9 -29.11.1984,9.6,1.5,5.55,0,53.2 -30.11.1984,6.8,-2.3,2.25,0,46 -01.12.1984,4.2,-2.5,0.85,0,39.9 -02.12.1984,0.9,-4.1,-1.6,0,36.7 -03.12.1984,3.2,-2.1,0.55,0,33.5 -04.12.1984,3.5,1.5,2.5,0,31.5 -05.12.1984,4.6,2.4,3.5,0,29.8 -06.12.1984,4.7,1.5,3.1,0,27.9 -07.12.1984,4.1,0.5,2.3,0,26.2 -08.12.1984,5.8,2.1,3.95,0.3,25.3 -09.12.1984,6.1,4.6,5.35,1.4,23.4 -10.12.1984,6.7,2.2,4.45,0.1,23.3 -11.12.1984,7,5.3,6.15,0,23.1 -12.12.1984,7.5,2.2,4.85,0,21.9 -13.12.1984,3.6,-0.4,1.6,0,21.6 -14.12.1984,2,-0.9,0.55,5.3,21.1 -15.12.1984,4.8,0.5,2.65,0.1,21.8 -16.12.1984,4.6,2.3,3.45,4,22.8 -17.12.1984,4.2,1.5,2.85,5.1,22 -18.12.1984,6.2,2.1,4.15,7.4,25.8 -19.12.1984,4,-2.1,0.95,1.2,39.5 -20.12.1984,7.3,3.6,5.45,8.2,40.5 -21.12.1984,7.4,2.5,4.95,2.1,42.7 -22.12.1984,4.3,-1.2,1.55,0,62.6 -23.12.1984,4.6,-2.7,0.95,0,45.9 -24.12.1984,6.7,-1.1,2.8,0,37.2 -25.12.1984,1.3,-3.1,-0.9,0.8,33.7 -26.12.1984,3.7,-1.2,1.25,0.1,30.9 -27.12.1984,2.8,0.5,1.65,0,29.6 -28.12.1984,1,-1.9,-0.45,0,27.7 -29.12.1984,-0.9,-3.9,-2.4,0.2,26.5 -30.12.1984,-0.2,-3.5,-1.85,0,24.7 -31.12.1984,-1.2,-8.2,-4.7,2,23.7 -01.01.1985,2,-3,-0.5,11.1,22.5 -02.01.1985,0.6,-5.8,-2.6,1.8,22.3 -03.01.1985,-3.5,-6.5,-5,2.7,22 -04.01.1985,-6,-12.1,-9.05,1,21.2 -05.01.1985,-7.3,-9.7,-8.5,0.5,18.3 -06.01.1985,-9.2,-14.1,-11.65,1.8,17.6 -07.01.1985,-8.6,-16.9,-12.75,0.4,17.7 -08.01.1985,-8.3,-16.9,-12.6,1.1,19 -09.01.1985,-7.2,-15.1,-11.15,0.8,19.7 -10.01.1985,-6.1,-10.6,-8.35,0.3,18 -11.01.1985,-7.6,-14.3,-10.95,2.2,19.6 -12.01.1985,-4.6,-11.3,-7.95,1.7,18.8 -13.01.1985,-7.5,-14.6,-11.05,0.2,18.2 -14.01.1985,-7.4,-15,-11.2,0.5,16.7 -15.01.1985,-5.8,-12.5,-9.15,0,16.8 -16.01.1985,-5.1,-13.2,-9.15,0,17.9 -17.01.1985,-6.4,-14.7,-10.55,0,18.1 -18.01.1985,-6.6,-16.5,-11.55,0,17.5 -19.01.1985,-7.7,-17.2,-12.45,1.4,17.5 -20.01.1985,-3.1,-8.2,-5.65,1,18.1 -21.01.1985,4.2,-3.5,0.35,1.5,18.5 -22.01.1985,8.2,4,6.1,3.1,23 -23.01.1985,7.7,-0.5,3.6,0.4,72.6 -24.01.1985,2.2,-1.5,0.35,1.3,74.5 -25.01.1985,2.8,0.3,1.55,6,73.6 -26.01.1985,6.5,0.4,3.45,3.2,80.4 -27.01.1985,1.7,-5.2,-1.75,0.2,76 -28.01.1985,0.8,-8.1,-3.65,0,52.6 -29.01.1985,4.8,-3.9,0.45,3.2,34 -30.01.1985,8.5,0.3,4.4,0.8,31.4 -31.01.1985,7.7,-0.3,3.7,4.1,46.1 -01.02.1985,10.5,3.8,7.15,2.8,63.2 -02.02.1985,9.7,6.8,8.25,0.6,85 -03.02.1985,6.8,-3.3,1.75,0,95.7 -04.02.1985,5.9,-4.4,0.75,0,63.5 -05.02.1985,7.7,-6.1,0.8,0,48.7 -06.02.1985,4.7,-4.6,0.05,0.3,42.4 -07.02.1985,3.1,-5,-0.95,0,38.2 -08.02.1985,-2.3,-5.7,-4,10,34.7 -09.02.1985,-4.8,-7,-5.9,3.1,32.3 -10.02.1985,-4.7,-15.1,-9.9,0,29.4 -11.02.1985,-7.1,-13.1,-10.1,0,27.5 -12.02.1985,-5.6,-16.6,-11.1,0,22.4 -13.02.1985,-1.4,-18,-9.7,0,23.1 -14.02.1985,-1.8,-15.1,-8.45,0.1,24.6 -15.02.1985,-5,-12,-8.5,0,24.4 -16.02.1985,1.7,-8,-3.15,0,23.6 -17.02.1985,2.6,-7.2,-2.3,0,22.7 -18.02.1985,-2.1,-13.3,-7.7,0,21.7 -19.02.1985,-1.2,-17.5,-9.35,0,19.9 -20.02.1985,-0.4,-17.8,-9.1,0,18.6 -21.02.1985,0.7,-3.6,-1.45,0.1,19.1 -22.02.1985,0.8,-2.1,-0.65,0.1,18.8 -23.02.1985,4.2,-7.6,-1.7,0.2,18.8 -24.02.1985,9.9,-0.4,4.75,0,18.6 -25.02.1985,9.6,-4.1,2.75,0,19.6 -26.02.1985,8.2,-1.7,3.25,0,19.5 -27.02.1985,9.8,-1.7,4.05,0,19.9 -28.02.1985,2.2,-1.5,0.35,0,22.6 -01.03.1985,8.1,0.5,4.3,1.3,22.2 -02.03.1985,7.4,2.7,5.05,1,23 -03.03.1985,10.1,2.4,6.25,0,24.3 -04.03.1985,9.8,2.9,6.35,0,24.8 -05.03.1985,9.1,2.5,5.8,0.5,24.1 -06.03.1985,6.8,3.7,5.25,0,23.2 -07.03.1985,4.6,2.7,3.65,0,22.8 -08.03.1985,7.6,1.5,4.55,0,21.8 -09.03.1985,7.1,-0.6,3.25,0,20.9 -10.03.1985,3.3,-1.1,1.1,0.1,19.8 -11.03.1985,3.6,-0.5,1.55,0.3,19 -12.03.1985,9.1,-3.7,2.7,0,18.5 -13.03.1985,9.3,-4.5,2.4,0,18.2 -14.03.1985,4,-3.9,0.05,2.7,17.8 -15.03.1985,3.7,-0.9,1.4,3.3,17.8 -16.03.1985,3.9,-1.2,1.35,3.9,18.1 -17.03.1985,2.2,-0.2,1,2.9,20.4 -18.03.1985,0.2,-1.9,-0.85,4.6,20.8 -19.03.1985,2.8,-2.1,0.35,0.4,20.1 -20.03.1985,4.2,0.4,2.3,0,19.9 -21.03.1985,9.6,-2.7,3.45,0,20 -22.03.1985,11.2,-1.1,5.05,0,20.8 -23.03.1985,11,-0.6,5.2,0.1,22.5 -24.03.1985,8.1,-0.7,3.7,1,24.8 -25.03.1985,10.6,-1.1,4.75,0.6,25.4 -26.03.1985,10.8,5.6,8.2,8.8,25.1 -27.03.1985,8.2,2.7,5.45,7.4,35.8 -28.03.1985,6.4,0,3.2,1.7,57.3 -29.03.1985,5.3,1.2,3.25,0.9,49.2 -30.03.1985,11.8,5.2,8.5,2,39.4 -31.03.1985,11.7,8.1,9.9,3.6,35.1 -01.04.1985,14.2,5.3,9.75,2.8,41.1 -02.04.1985,13.4,8,10.7,0.3,44.9 -03.04.1985,18.7,8.1,13.4,0,39.1 -04.04.1985,23.6,5.6,14.6,0,34.1 -05.04.1985,20.3,9.6,14.95,5.6,31.1 -06.04.1985,16.1,9.6,12.85,3.1,30.1 -07.04.1985,14.6,7.5,11.05,3.9,31.1 -08.04.1985,14.6,7.7,11.15,0.9,31.5 -09.04.1985,12.5,4.7,8.6,0.9,32.9 -10.04.1985,13.1,0.3,6.7,1.3,29.8 -11.04.1985,11.6,4.3,7.95,3.6,27.8 -12.04.1985,9,4.9,6.95,5.9,27.1 -13.04.1985,13.3,3.5,8.4,5.3,29.5 -14.04.1985,8.6,4.2,6.4,2.8,40.5 -15.04.1985,9.5,4.1,6.8,4.3,47.3 -16.04.1985,7.8,3.3,5.55,1.5,45.5 -17.04.1985,15.7,-0.5,7.6,0,38.8 -18.04.1985,18.4,-0.6,8.9,0,34.7 -19.04.1985,18.7,1.1,9.9,0,30.9 -20.04.1985,18.7,2,10.35,0,28.2 -21.04.1985,19.5,2.8,11.15,0,27.4 -22.04.1985,18.2,4.9,11.55,0,25.9 -23.04.1985,9.2,2.5,5.85,0.2,24.7 -24.04.1985,9.7,-0.2,4.75,0,23.8 -25.04.1985,6.2,-0.3,2.95,1,22.7 -26.04.1985,7.6,-3.8,1.9,0.5,22.5 -27.04.1985,6.2,-1,2.6,9,22.2 -28.04.1985,7.9,-0.2,3.85,2.9,23.8 -29.04.1985,7.8,0.8,4.3,0.9,26.7 -30.04.1985,10.8,1.9,6.35,0.7,23.9 -01.05.1985,11.8,4.8,8.3,2.1,22.8 -02.05.1985,8.1,3.9,6,4.3,22 -03.05.1985,7.9,2.6,5.25,0.7,23.2 -04.05.1985,9.8,1.5,5.65,0.7,23.1 -05.05.1985,13.5,4,8.75,0,22.6 -06.05.1985,17.5,6.8,12.15,0,22 -07.05.1985,20.8,9.9,15.35,0.1,21.1 -08.05.1985,19.4,9.8,14.6,1,20.5 -09.05.1985,19.5,7.1,13.3,4.6,20.5 -10.05.1985,15.6,9.7,12.65,0.2,20.5 -11.05.1985,20,6.9,13.45,3.6,21.4 -12.05.1985,22.1,8,15.05,3.7,22.9 -13.05.1985,23.9,11.9,17.9,0,23.6 -14.05.1985,19.8,11.4,15.6,0,20.9 -15.05.1985,19.5,5.4,12.45,2.1,19.8 -16.05.1985,23.3,8.1,15.7,0,19.2 -17.05.1985,21.7,7.3,14.5,0,18.9 -18.05.1985,22.3,7.3,14.8,0,18.2 -19.05.1985,23.5,11.8,17.65,2.6,17.9 -20.05.1985,23.8,12.1,17.95,4.3,17.8 -21.05.1985,23.1,12.1,17.6,16.9,19.4 -22.05.1985,13.2,10.2,11.7,14.3,29.2 -23.05.1985,15,9.9,12.45,2.3,44.4 -24.05.1985,18.9,9.2,14.05,0,39.8 -25.05.1985,24.6,6.4,15.5,0,31.3 -26.05.1985,27.9,9.5,18.7,0,25.9 -27.05.1985,28.9,12.2,20.55,2.6,23 -28.05.1985,22.1,14.8,18.45,23.5,26 -29.05.1985,15.1,12,13.55,4.5,62.3 -30.05.1985,20.7,10.8,15.75,0,40.8 -31.05.1985,23.3,5.9,14.6,0,34.2 -01.06.1985,22.8,11.8,17.3,0,26.7 -02.06.1985,25,9.3,17.15,0,23.1 -03.06.1985,25,6.6,15.8,0,21.2 -04.06.1985,26.5,8.8,17.65,0,19.5 -05.06.1985,24.2,13.1,18.65,10.6,18.8 -06.06.1985,22.7,14.3,18.5,4.8,21.5 -07.06.1985,19.7,14.8,17.25,3.1,24.7 -08.06.1985,15.8,8,11.9,4.2,21.4 -09.06.1985,13.2,6.4,9.8,7.6,21 -10.06.1985,12.8,7.5,10.15,3.8,21 -11.06.1985,14.8,9.3,12.05,4.2,24.4 -12.06.1985,16,8.4,12.2,7.4,25.1 -13.06.1985,11.8,8.4,10.1,5,26.7 -14.06.1985,14.5,5.6,10.05,2.4,30.8 -15.06.1985,13.8,7.8,10.8,0.2,28.2 -16.06.1985,14.1,2.9,8.5,0.2,24.5 -17.06.1985,12.2,6.9,9.55,0.2,21.9 -18.06.1985,17.2,4.7,10.95,0.1,20.7 -19.06.1985,19.5,8.5,14,4.3,19.7 -20.06.1985,15.7,11.6,13.65,19.6,20.2 -21.06.1985,18.6,11.4,15,1.9,32.4 -22.06.1985,20,12.2,16.1,2.1,43.1 -23.06.1985,17.6,8.4,13,0.3,31.1 -24.06.1985,19.4,7.4,13.4,5.5,26.4 -25.06.1985,15,11.3,13.15,5.4,24.9 -26.06.1985,14,7.5,10.75,11.2,27 -27.06.1985,17.6,10,13.8,2.5,37.3 -28.06.1985,15.1,10.7,12.9,2.2,40.6 -29.06.1985,16.3,11.2,13.75,0.7,33.5 -30.06.1985,22,12.1,17.05,0,31.3 -01.07.1985,19.6,10.6,15.1,17.8,27.3 -02.07.1985,19.9,11.7,15.8,0,35.7 -03.07.1985,24.2,7.4,15.8,0,49 -04.07.1985,25.7,10.2,17.95,0,32.1 -05.07.1985,26.5,11.8,19.15,0,26.3 -06.07.1985,26.1,12.2,19.15,9.9,24 -07.07.1985,20,8.4,14.2,0,30.5 -08.07.1985,15.1,7.7,11.4,1.9,25.5 -09.07.1985,16.3,11.2,13.75,3.6,22.5 -10.07.1985,16,11.9,13.95,0.5,21.7 -11.07.1985,20.1,12.2,16.15,0.1,22.1 -12.07.1985,23,10.6,16.8,0,20.6 -13.07.1985,26.7,9.9,18.3,0,19 -14.07.1985,30.6,11.4,21,0.9,18 -15.07.1985,23.2,15.4,19.3,0,17.3 -16.07.1985,24.8,10.5,17.65,0,16.5 -17.07.1985,22.9,10.3,16.6,0,16.1 -18.07.1985,26.2,9.7,17.95,7.2,15.4 -19.07.1985,20.7,15.2,17.95,2.2,16.3 -20.07.1985,20.8,11.9,16.35,3.1,18.9 -21.07.1985,17.7,9.1,13.4,3.3,17.7 -22.07.1985,19.2,7.9,13.55,5.8,17.9 -23.07.1985,19.6,13.5,16.55,0,18.6 -24.07.1985,24.7,8.6,16.65,0,17.6 -25.07.1985,26.9,10.3,18.6,0,16 -26.07.1985,25.3,14,19.65,13.4,14.7 -27.07.1985,21.7,15.1,18.4,0,19.5 -28.07.1985,26,10.1,18.05,8.5,19.1 -29.07.1985,20.5,15.6,18.05,4.1,16.4 -30.07.1985,21.2,13.6,17.4,1.3,21.6 -31.07.1985,19,12.4,15.7,5.7,18.8 -01.08.1985,20.9,9.9,15.4,8.2,17.7 -02.08.1985,19,12.9,15.95,0,19.9 -03.08.1985,20.2,11.9,16.05,2.3,22.3 -04.08.1985,17.9,10,13.95,0.1,18.1 -05.08.1985,23.8,13.2,18.5,1.3,15.9 -06.08.1985,16.2,11.6,13.9,2.5,14.9 -07.08.1985,16.8,6.6,11.7,0.4,14.7 -08.08.1985,19.3,10.2,14.75,0.2,14.5 -09.08.1985,24.7,9.1,16.9,2,14.5 -10.08.1985,20.7,13.6,17.15,2.6,14 -11.08.1985,22.7,7.2,14.95,0.4,13.9 -12.08.1985,17.9,13.9,15.9,4.1,13.7 -13.08.1985,25.5,13.5,19.5,1.6,13.5 -14.08.1985,31.1,14.7,22.9,2.1,13.9 -15.08.1985,27.5,16.1,21.8,0.7,14 -16.08.1985,22.5,14.9,18.7,6.4,13.7 -17.08.1985,18.9,12.2,15.55,3.4,14.5 -18.08.1985,17.6,9.8,13.7,0.1,14.8 -19.08.1985,19.9,8.8,14.35,8.8,14.6 -20.08.1985,19.4,12.9,16.15,0,16.4 -21.08.1985,21.8,10.9,16.35,0.3,16.1 -22.08.1985,24.8,9.6,17.2,10.4,14 -23.08.1985,20.6,10.5,15.55,0,15.8 -24.08.1985,23.2,9.3,16.25,4.8,20.3 -25.08.1985,18,11.8,14.9,0.1,15.8 -26.08.1985,19.4,8.4,13.9,0.1,15.3 -27.08.1985,18.6,9.7,14.15,0.1,14.2 -28.08.1985,22.4,4.7,13.55,0,13.2 -29.08.1985,24.2,6.9,15.55,0,12.5 -30.08.1985,24.9,8,16.45,0,12.1 -31.08.1985,25.6,8.4,17,0,12.1 -01.09.1985,20.7,13.3,17,1.4,11.7 -02.09.1985,18.8,10.5,14.65,0.6,11.4 -03.09.1985,16.8,9.3,13.05,20.4,12.7 -04.09.1985,17.5,10.7,14.1,3.3,16.9 -05.09.1985,16.2,10.7,13.45,3.4,20.7 -06.09.1985,13.8,9,11.4,1.7,18.9 -07.09.1985,13.7,6.4,10.05,2.4,17.2 -08.09.1985,11.9,8.6,10.25,6.2,15.6 -09.09.1985,14.9,7.3,11.1,0.5,15.9 -10.09.1985,18.7,2.8,10.75,0,16.9 -11.09.1985,21.1,6.5,13.8,0,15.6 -12.09.1985,21,8.1,14.55,0,14.4 -13.09.1985,22.8,6.5,14.65,3.9,14.4 -14.09.1985,16.7,12,14.35,0.1,15 -15.09.1985,13.7,8.5,11.1,2.9,14.2 -16.09.1985,13.8,4.9,9.35,0.1,13.8 -17.09.1985,16.6,12.1,14.35,2.9,13.3 -18.09.1985,21.8,11.9,16.85,0,13.8 -19.09.1985,25.9,9.8,17.85,0,13.4 -20.09.1985,22,11.8,16.9,0,13.1 -21.09.1985,23.7,12.8,18.25,0,12.2 -22.09.1985,21.7,15.6,18.65,1.1,12.1 -23.09.1985,20.2,13,16.6,0,11.5 -24.09.1985,20.7,9.8,15.25,0,11.8 -25.09.1985,17.7,9.5,13.6,0,11.7 -26.09.1985,18.8,6.4,12.6,0,11.9 -27.09.1985,21.2,6,13.6,0,10.9 -28.09.1985,19,5.9,12.45,0,10.9 -29.09.1985,19.7,8.5,14.1,0,10.9 -30.09.1985,20.7,3.4,12.05,0,10.6 -01.10.1985,24.3,6.1,15.2,0,10.8 -02.10.1985,21.7,7.6,14.65,2.6,10.8 -03.10.1985,25.3,12.5,18.9,0.1,10.6 -04.10.1985,25.5,10.3,17.9,2.1,11.1 -05.10.1985,19.6,12.6,16.1,6.9,11.4 -06.10.1985,17.5,9.8,13.65,0.4,13.4 -07.10.1985,16.2,8.3,12.25,1.4,11.5 -08.10.1985,13.2,7.3,10.25,3.7,12.2 -09.10.1985,14.1,5.9,10,1.9,12.1 -10.10.1985,14.7,10.2,12.45,0.2,11.6 -11.10.1985,17.1,11.5,14.3,0.3,11.9 -12.10.1985,15.7,5.8,10.75,0,11.6 -13.10.1985,12.8,3.6,8.2,0,11.1 -14.10.1985,13.6,4.9,9.25,0.8,10.8 -15.10.1985,14.8,6.9,10.85,0.4,10.8 -16.10.1985,10.2,5.1,7.65,0.2,10.8 -17.10.1985,12.1,9.7,10.9,0.3,10.6 -18.10.1985,11.3,8.9,10.1,0.4,10.5 -19.10.1985,11.3,4.5,7.9,0,10.7 -20.10.1985,13.1,2.8,7.95,0,10.8 -21.10.1985,13.5,0.3,6.9,0,10.5 -22.10.1985,10.2,-0.2,5,0,10.5 -23.10.1985,11.7,3.9,7.8,0,10.4 -24.10.1985,11.1,-1.4,4.85,0,10.3 -25.10.1985,11.3,2.7,7,0,10.1 -26.10.1985,10.8,-0.1,5.35,0,10.2 -27.10.1985,3,-1.2,0.9,0,10.1 -28.10.1985,4.7,0.3,2.5,0,10.1 -29.10.1985,9.1,0,4.55,0,10.1 -30.10.1985,3,-0.5,1.25,0,10.2 -31.10.1985,2.9,0.3,1.6,0,9.89 -01.11.1985,5.7,2.2,3.95,1.7,10.4 -02.11.1985,6.8,2.3,4.55,2,10 -03.11.1985,6.2,-0.9,2.65,0,10.3 -04.11.1985,8.1,-4.1,2,1.3,10.8 -05.11.1985,15.2,1.1,8.15,12.8,10.7 -06.11.1985,10.2,1.2,5.7,2.3,13.8 -07.11.1985,8.1,3.4,5.75,2.4,17.2 -08.11.1985,10.2,1.9,6.05,1.3,15.1 -09.11.1985,16.4,8.7,12.55,9.9,14.2 -10.11.1985,13.4,3.8,8.6,3.1,14.2 -11.11.1985,4.2,1,2.6,0.2,20.6 -12.11.1985,2.2,-0.2,1,0,20.4 -13.11.1985,3.9,-2.6,0.65,0,16.4 -14.11.1985,2.4,-1.6,0.4,0.1,14.8 -15.11.1985,1.9,-2,-0.05,0,13.4 -16.11.1985,1.8,-4.6,-1.4,0,12.9 -17.11.1985,0.9,-5.6,-2.35,0,12.6 -18.11.1985,-1.2,-4,-2.6,1,12 -19.11.1985,-3.5,-5.1,-4.3,0.3,12 -20.11.1985,-3,-4.5,-3.75,2.9,12.1 -21.11.1985,-1.4,-3.3,-2.35,8.5,12.1 -22.11.1985,-1.5,-6.2,-3.85,0.6,11.6 -23.11.1985,-0.9,-4.7,-2.8,0.2,11.6 -24.11.1985,-0.9,-9.1,-5,0.1,12 -25.11.1985,0.9,-4.7,-1.9,0,11.6 -26.11.1985,-1.7,-6.6,-4.15,0.4,11.4 -27.11.1985,0.1,-2.9,-1.4,4.2,10.8 -28.11.1985,1.9,-2.3,-0.2,2,12 -29.11.1985,1.4,-5.9,-2.25,4.2,11.7 -30.11.1985,0.5,-8.3,-3.9,8.7,11.3 -01.12.1985,2.4,0,1.2,0.2,12.8 -02.12.1985,5.2,-0.7,2.25,0.1,17.5 -03.12.1985,12.4,0.3,6.35,0.4,33.4 -04.12.1985,13.2,8.1,10.65,0.2,45 -05.12.1985,14.8,4.5,9.65,3.5,36.3 -06.12.1985,12.5,6.1,9.3,1.2,27.7 -07.12.1985,9.4,5.9,7.65,2.9,26.1 -08.12.1985,8.1,4.9,6.5,0.9,23.9 -09.12.1985,9,5.8,7.4,1.4,28.2 -10.12.1985,7.8,2.3,5.05,0.5,23.9 -11.12.1985,4.7,1.3,3,0,22.1 -12.12.1985,3.9,-2.8,0.55,0,21.1 -13.12.1985,2.2,-5.3,-1.55,3.3,19.4 -14.12.1985,4.5,0.8,2.65,1.1,18.4 -15.12.1985,9.2,4.5,6.85,0.9,18 -16.12.1985,11.2,8.7,9.95,1.7,18.6 -17.12.1985,9,6.9,7.95,3.7,21.3 -18.12.1985,8.2,5.1,6.65,6.4,25.2 -19.12.1985,7.8,1.3,4.55,2.7,29.3 -20.12.1985,6.5,1.5,4,5.4,33.4 -21.12.1985,6.7,-0.6,3.05,0,35 -22.12.1985,5.6,-3.1,1.25,0,30.4 -23.12.1985,5.2,-3.5,0.85,0,27 -24.12.1985,6.7,3.2,4.95,1.7,23.7 -25.12.1985,9.1,3.8,6.45,2.2,22.1 -26.12.1985,8.8,7.4,8.1,5.3,22 -27.12.1985,7.7,-1,3.35,7.3,28 -28.12.1985,-0.5,-3.5,-2,3,42.7 -29.12.1985,-1.6,-4.2,-2.9,0.4,42.5 -30.12.1985,-0.7,-6.6,-3.65,0,30.9 -31.12.1985,-3.3,-11.1,-7.2,0,26.2 -01.01.1986,-4.2,-12,-8.1,1.4,20.9 -02.01.1986,4.3,-4.8,-0.25,1.6,20.6 -03.01.1986,6.1,2.6,4.35,7.9,22 -04.01.1986,4.1,-3.1,0.5,1.5,24.9 -05.01.1986,1.5,-1.9,-0.2,0.6,26.9 -06.01.1986,3.6,1,2.3,2,24.3 -07.01.1986,2.3,-4.8,-1.25,0,22.7 -08.01.1986,-0.3,-2.6,-1.45,0,21.7 -09.01.1986,-1.9,-5.7,-3.8,0,20.7 -10.01.1986,1.3,-6.4,-2.55,4.3,19.9 -11.01.1986,5.2,1.3,3.25,4,19.4 -12.01.1986,4,1.5,2.75,2.3,22.6 -13.01.1986,6.8,2.4,4.6,8.3,33.8 -14.01.1986,8.4,0.9,4.65,8,57.1 -15.01.1986,4.4,1.2,2.8,4.9,94.9 -16.01.1986,2.2,0.3,1.25,4,103 -17.01.1986,0.6,-7.3,-3.35,2.8,68.7 -18.01.1986,4.5,-9.4,-2.45,14.6,49.7 -19.01.1986,10.4,2.9,6.65,11.6,67.7 -20.01.1986,10,2.3,6.15,0.4,128 -21.01.1986,6,4.3,5.15,4.8,192 -22.01.1986,6.5,4.7,5.6,5.7,166 -23.01.1986,7.2,3.8,5.5,8.4,104 -24.01.1986,4.9,0.3,2.6,4.5,120 -25.01.1986,1.9,0.2,1.05,2.5,159 -26.01.1986,1.1,-4,-1.45,0.2,112 -27.01.1986,-0.4,-4,-2.2,0.5,67.9 -28.01.1986,2,-3.5,-0.75,0.5,55.7 -29.01.1986,3.6,-4.9,-0.65,0,48 -30.01.1986,3.7,-4.1,-0.2,0,42.7 -31.01.1986,2.8,0.7,1.75,0,38.9 -01.02.1986,5.6,1.7,3.65,0.1,36.6 -02.02.1986,3.5,0,1.75,1.8,35.2 -03.02.1986,0.1,-2.4,-1.15,0,33 -04.02.1986,-1.4,-5.6,-3.5,0,30.1 -05.02.1986,-2.4,-10.5,-6.45,0.3,27.9 -06.02.1986,-2.3,-7.1,-4.7,0.8,25.9 -07.02.1986,-3.6,-11.5,-7.55,0.2,24.6 -08.02.1986,-6.3,-12.3,-9.3,1.9,22.2 -09.02.1986,-11,-18.5,-14.75,6.5,19.7 -10.02.1986,-1.3,-11.6,-6.45,0.3,19.8 -11.02.1986,1.4,-8.9,-3.75,0,22.1 -12.02.1986,0.8,-14,-6.6,0,22.5 -13.02.1986,-1.3,-15.6,-8.45,0,21.2 -14.02.1986,-2.9,-6.1,-4.5,0,20.9 -15.02.1986,0.2,-9,-4.4,0,21.2 -16.02.1986,-1.2,-7.7,-4.45,0.1,21.1 -17.02.1986,-1,-6.1,-3.55,0.1,19.9 -18.02.1986,-2.9,-7.8,-5.35,1.1,20 -19.02.1986,-3.1,-10.5,-6.8,1.4,18.5 -20.02.1986,-4.6,-10.6,-7.6,0.2,18.5 -21.02.1986,-4.6,-15.1,-9.85,0,18.1 -22.02.1986,-5.3,-22.1,-13.7,0.2,17.6 -23.02.1986,-3.2,-14.3,-8.75,0,18.4 -24.02.1986,-5.4,-20.5,-12.95,0,17.7 -25.02.1986,-2.6,-12.7,-7.65,0,17.2 -26.02.1986,-3.4,-15.1,-9.25,0,16.8 -27.02.1986,0.1,-18.6,-9.25,0,16.5 -28.02.1986,-1.6,-16.9,-9.25,0,16.5 -01.03.1986,-1.3,-6.3,-3.8,0,16.2 -02.03.1986,1.2,-3.7,-1.25,0,16.3 -03.03.1986,2.8,-4.5,-0.85,0,16.7 -04.03.1986,1.7,-5.8,-2.05,10.6,16.1 -05.03.1986,5.9,0.4,3.15,4,16.9 -06.03.1986,6.1,2.8,4.45,11.6,34 -07.03.1986,6.6,0.8,3.7,0.1,99.2 -08.03.1986,5.2,-1.2,2,3.4,109 -09.03.1986,3.1,0.1,1.6,0.3,51 -10.03.1986,5.4,-2.1,1.65,0,41 -11.03.1986,4.3,2,3.15,0,34.8 -12.03.1986,3.8,1.2,2.5,0,33 -13.03.1986,4.6,0.8,2.7,0,33.5 -14.03.1986,5.7,1.6,3.65,0,31.3 -15.03.1986,10.2,1.8,6,0,29.4 -16.03.1986,11.3,3.2,7.25,0,29 -17.03.1986,14.5,-1.5,6.5,0,27.9 -18.03.1986,14.8,0.1,7.45,0,29.1 -19.03.1986,14.9,-2.9,6,0,30.8 -20.03.1986,9.8,-3.3,3.25,6.7,29.7 -21.03.1986,8.5,1,4.75,2,30.5 -22.03.1986,8.1,-0.2,3.95,1.9,35.1 -23.03.1986,7.8,2.3,5.05,6.7,34.2 -24.03.1986,10.1,0.4,5.25,22.9,56.4 -25.03.1986,8.8,2,5.4,0.8,108 -26.03.1986,8.3,3.1,5.7,1,157 -27.03.1986,12,3.4,7.7,0.8,102 -28.03.1986,12.9,5,8.95,0.9,67 -29.03.1986,9.9,4,6.95,5.8,66.6 -30.03.1986,7.2,2.2,4.7,15.2,65.9 -31.03.1986,10.1,2.8,6.45,24.2,70 -01.04.1986,10.4,3.5,6.95,0.5,154 -02.04.1986,10.1,-0.9,4.6,1.3,300 -03.04.1986,7.5,1.8,4.65,7,170 -04.04.1986,3.9,0.9,2.4,4.9,114 -05.04.1986,2.7,0.4,1.55,0.8,116 -06.04.1986,7.1,-0.5,3.3,0,94.1 -07.04.1986,9.2,5.3,7.25,0,74.4 -08.04.1986,9.5,6.7,8.1,0,63.6 -09.04.1986,7,3.1,5.05,3,58.2 -10.04.1986,3.1,-1.5,0.8,4.8,54.7 -11.04.1986,1.8,-4.2,-1.2,0.4,54.5 -12.04.1986,2.3,-7.1,-2.4,0.1,47.8 -13.04.1986,5.2,-5.3,-0.05,0,43.6 -14.04.1986,7.2,-3.2,2,2.4,40.4 -15.04.1986,15.1,4.2,9.65,0.1,39.8 -16.04.1986,14.8,1.9,8.35,6,39.1 -17.04.1986,12.9,1.8,7.35,0.8,39.6 -18.04.1986,9.8,1.9,5.85,4.4,40 -19.04.1986,8.8,1.6,5.2,2.4,40 -20.04.1986,9.7,3.8,6.75,2.7,40.7 -21.04.1986,12.4,3.8,8.1,3.6,39.5 -22.04.1986,12.6,6.8,9.7,1.8,39.8 -23.04.1986,13.2,4.2,8.7,0.4,42.5 -24.04.1986,15.2,4.3,9.75,0.9,39.2 -25.04.1986,15.9,3.7,9.8,0.4,35.8 -26.04.1986,13,5.3,9.15,3.6,33.8 -27.04.1986,17.7,8.8,13.25,0,32.5 -28.04.1986,19,5.9,12.45,0,32.4 -29.04.1986,21.7,7.5,14.6,0,29.6 -30.04.1986,13.3,5.6,9.45,0,27.7 -01.05.1986,19.3,3.1,11.2,0,25.9 -02.05.1986,24.1,8.3,16.2,0,25.2 -03.05.1986,26.9,8.9,17.9,1.3,24.3 -04.05.1986,19.4,12.3,15.85,0.9,24.2 -05.05.1986,23.7,10.7,17.2,0.1,23.9 -06.05.1986,22.1,9.6,15.85,9.7,22.8 -07.05.1986,19.1,10.4,14.75,0.8,24.9 -08.05.1986,15.8,9.3,12.55,1.2,27.8 -09.05.1986,16.3,6.8,11.55,1.5,23.7 -10.05.1986,14.7,10.1,12.4,8.2,24.5 -11.05.1986,17.4,10.8,14.1,0,24.2 -12.05.1986,20.6,5.9,13.25,0,24.7 -13.05.1986,22.5,6,14.25,7.2,23.3 -14.05.1986,16.2,11.1,13.65,4.1,29.1 -15.05.1986,16.8,6.4,11.6,1.4,26.1 -16.05.1986,17.9,1.4,9.65,0,24.8 -17.05.1986,21.7,2.7,12.2,0,24 -18.05.1986,25.1,13.2,19.15,5.9,23.2 -19.05.1986,21.2,11.9,16.55,0.2,25.1 -20.05.1986,23.7,10.9,17.3,0.7,23.6 -21.05.1986,22.5,15.6,19.05,0.3,22.7 -22.05.1986,19.7,12.2,15.95,0,21.5 -23.05.1986,24,7.9,15.95,7.4,21 -24.05.1986,17.7,10,13.85,4.9,24.5 -25.05.1986,20.2,5,12.6,0,24.4 -26.05.1986,25.9,6.9,16.4,0,22.2 -27.05.1986,24.6,10.1,17.35,2.5,18.2 -28.05.1986,15.8,9,12.4,0.7,16.2 -29.05.1986,13.5,5.6,9.55,2.6,17 -30.05.1986,13.1,7.3,10.2,2.3,16.2 -31.05.1986,15.4,3.4,9.4,0.2,17 -01.06.1986,16.2,5.1,10.65,1.3,15.7 -02.06.1986,14.4,8.9,11.65,3.3,15.5 -03.06.1986,18.9,5.9,12.4,20.5,15.8 -04.06.1986,13.2,6.8,10,6.3,23 -05.06.1986,12.6,4.4,8.5,3.4,39.5 -06.06.1986,9.8,7.3,8.55,17.1,28 -07.06.1986,10.7,7.8,9.25,9.6,34.8 -08.06.1986,13.8,7.4,10.6,1.2,72.2 -09.06.1986,21.5,6.9,14.2,0,72.3 -10.06.1986,24.4,7.9,16.15,0.4,41.6 -11.06.1986,16.8,10.1,13.45,2.3,32.2 -12.06.1986,17.8,8.9,13.35,0,28.8 -13.06.1986,21,7.7,14.35,0,25.7 -14.06.1986,24.1,10.5,17.3,0,22.9 -15.06.1986,26.5,11,18.75,0,21.8 -16.06.1986,29.5,14.7,22.1,1.5,19.9 -17.06.1986,27.9,16.1,22,13.8,20.5 -18.06.1986,22.7,16.1,19.4,2.8,27.2 -19.06.1986,24.4,14,19.2,0.1,35.5 -20.06.1986,26.7,15.9,21.3,0,25 -21.06.1986,25,16.2,20.6,0,20.9 -22.06.1986,24.4,9.3,16.85,0.1,19 -23.06.1986,25.5,12.9,19.2,0.4,17.4 -24.06.1986,23.1,14.6,18.85,0,16.7 -25.06.1986,23.7,10,16.85,0,16.4 -26.06.1986,26.5,10.4,18.45,0,15.5 -27.06.1986,28.5,10.1,19.3,0,15.2 -28.06.1986,28.8,12.2,20.5,0,14.6 -29.06.1986,25.3,11.1,18.2,0,13.8 -30.06.1986,26.1,9.8,17.95,0,13.5 -01.07.1986,28,11.1,19.55,0,13.2 -02.07.1986,29.9,12,20.95,0,13.3 -03.07.1986,30.3,13.8,22.05,0,13 -04.07.1986,26.1,15,20.55,0.1,12.7 -05.07.1986,26.5,14.4,20.45,8.5,12.5 -06.07.1986,21.7,16.3,19,3.9,15.6 -07.07.1986,19.8,12.4,16.1,5.1,14.4 -08.07.1986,18.1,10.3,14.2,2.2,14.7 -09.07.1986,18.1,8.4,13.25,3.2,16.2 -10.07.1986,17.1,9.8,13.45,2.5,14.5 -11.07.1986,18.7,9.3,14,0,15.1 -12.07.1986,17.1,6.6,11.85,0,13.4 -13.07.1986,16.3,9.1,12.7,0,12.9 -14.07.1986,20.2,7.1,13.65,0,12.2 -15.07.1986,23.2,9.3,16.25,0,11.7 -16.07.1986,27.4,11.7,19.55,0,11.7 -17.07.1986,27.7,12.3,20,9.1,11 -18.07.1986,20.6,13.5,17.05,0.1,11.9 -19.07.1986,18.7,11.6,15.15,0,13.3 -20.07.1986,21.8,7.3,14.55,0,12.1 -21.07.1986,22.2,9.9,16.05,0,11.4 -22.07.1986,24.8,12.1,18.45,8.7,11 -23.07.1986,21.6,12.8,17.2,8.5,12.1 -24.07.1986,16.2,9.9,13.05,2,15.2 -25.07.1986,16.2,7.9,12.05,4.6,13.9 -26.07.1986,21.2,13.1,17.15,3.4,13.5 -27.07.1986,23.8,13.8,18.8,0,12.4 -28.07.1986,26.4,14.3,20.35,0,13 -29.07.1986,29,13.7,21.35,0,11.7 -30.07.1986,23.8,11.3,17.55,0,11.1 -31.07.1986,28.1,11,19.55,0.2,10.4 -01.08.1986,23.9,14.4,19.15,0,10.6 -02.08.1986,29.3,9.7,19.5,0,10.6 -03.08.1986,33.2,14.9,24.05,0,10.5 -04.08.1986,28.2,18.1,23.15,0.5,10.7 -05.08.1986,22.8,13.5,18.15,0,10.5 -06.08.1986,26.6,7.7,17.15,0,10.2 -07.08.1986,27.4,10,18.7,0,10.3 -08.08.1986,21.4,10.3,15.85,0,9.83 -09.08.1986,23.8,7.9,15.85,0,9.9 -10.08.1986,26.8,10.1,18.45,2.9,9.67 -11.08.1986,27.1,14.9,21,1.1,9.65 -12.08.1986,21.7,16,18.85,9.8,10.4 -13.08.1986,23.2,15,19.1,0.1,13.2 -14.08.1986,25.2,14.6,19.9,0,11.2 -15.08.1986,26.8,12.6,19.7,4.1,11.2 -16.08.1986,23.3,15.4,19.35,0,10.6 -17.08.1986,23.3,11.6,17.45,1.6,10.9 -18.08.1986,17.6,11,14.3,6.6,12.3 -19.08.1986,16.5,11.6,14.05,9.8,13.9 -20.08.1986,15.9,10.3,13.1,2.5,13.4 -21.08.1986,19.2,6.9,13.05,0.4,11.7 -22.08.1986,16,11.5,13.75,3.1,12.1 -23.08.1986,16.9,10.9,13.9,3.1,11.8 -24.08.1986,14.2,8.4,11.3,5.8,11.6 -25.08.1986,18.2,5.6,11.9,0.9,13.1 -26.08.1986,20.2,10.6,15.4,4.1,13.9 -27.08.1986,16,13,14.5,1.5,12.6 -28.08.1986,15.8,9,12.4,0.9,11.6 -29.08.1986,15.3,9.1,12.2,2.1,11 -30.08.1986,15.2,9,12.1,2.2,11.2 -31.08.1986,15.8,10.2,13,1.6,11.3 -01.09.1986,14.1,6.9,10.5,1.5,11.2 -02.09.1986,17.4,10.1,13.75,0.3,11.4 -03.09.1986,15.9,10.3,13.1,9.9,11.6 -04.09.1986,14.4,9.1,11.75,0.1,12.7 -05.09.1986,18.2,3.9,11.05,0,14 -06.09.1986,18.8,4.1,11.45,4,12.3 -07.09.1986,16.6,9.5,13.05,0.1,11.9 -08.09.1986,16.7,5.8,11.25,0,11.4 -09.09.1986,16.2,5.5,10.85,0,11.1 -10.09.1986,16.7,1.5,9.1,0,11 -11.09.1986,18.6,2.3,10.45,0,10.7 -12.09.1986,13.9,7.4,10.65,10.2,10.4 -13.09.1986,13.7,8.1,10.9,2.9,11.2 -14.09.1986,20.7,11.1,15.9,0.1,13.6 -15.09.1986,17.3,9.8,13.55,13.8,14.2 -16.09.1986,10,7.6,8.8,12.4,19.8 -17.09.1986,9.1,7.8,8.45,5.9,18.6 -18.09.1986,14,4.8,9.4,0.3,22.6 -19.09.1986,16.6,1,8.8,0,19.7 -20.09.1986,18.6,2.1,10.35,0,15.5 -21.09.1986,19.2,4.7,11.95,0,13.4 -22.09.1986,20.1,7.4,13.75,0,12.7 -23.09.1986,19,9.9,14.45,0,12.3 -24.09.1986,17.3,8,12.65,0,12.4 -25.09.1986,15.8,3.4,9.6,0,12 -26.09.1986,15.6,2.2,8.9,0,11.4 -27.09.1986,16.1,4.4,10.25,0,11.5 -28.09.1986,18.8,6.8,12.8,0,11.5 -29.09.1986,19.3,5.9,12.6,0,11.2 -30.09.1986,19.6,9.7,14.65,0,10.6 -01.10.1986,22.8,4.9,13.85,0,10.6 -02.10.1986,20.2,4.3,12.25,0,10.6 -03.10.1986,16.4,8.4,12.4,0,10.7 -04.10.1986,17.2,3.3,10.25,0,11.2 -05.10.1986,19.7,3.1,11.4,0,11.2 -06.10.1986,17.3,7.3,12.3,0,11.3 -07.10.1986,17.2,9.9,13.55,1.5,11 -08.10.1986,14.8,11.5,13.15,0,11 -09.10.1986,17.4,9.3,13.35,0,11.3 -10.10.1986,18.6,4.6,11.6,0,11.4 -11.10.1986,17.4,6.3,11.85,0,10.8 -12.10.1986,16.7,7.8,12.25,0,10.2 -13.10.1986,18.2,4,11.1,0,10.2 -14.10.1986,21.7,6.9,14.3,0,10.2 -15.10.1986,21.9,6.6,14.25,0,9.98 -16.10.1986,18.7,6.7,12.7,0.1,10.1 -17.10.1986,14.3,11.7,13,0,9.91 -18.10.1986,15.7,6,10.85,0.7,10 -19.10.1986,13.9,3.5,8.7,6.8,10.7 -20.10.1986,12.6,3.2,7.9,18.1,11.4 -21.10.1986,10.1,6,8.05,19.3,15.1 -22.10.1986,14.2,7.7,10.95,35.8,27.9 -23.10.1986,11.1,4.3,7.7,6.2,74.7 -24.10.1986,10,3.9,6.95,0.3,100 -25.10.1986,10.1,4.2,7.15,4.5,57 -26.10.1986,9.8,6.8,8.3,0.5,32.4 -27.10.1986,10.8,0.9,5.85,0.2,31.9 -28.10.1986,10.1,2.3,6.2,2.3,26.9 -29.10.1986,11.4,1.9,6.65,2.6,23.1 -30.10.1986,9.2,-1.1,4.05,0.7,22.4 -31.10.1986,8.5,-0.1,4.2,1.8,21.9 -01.11.1986,12.4,7.5,9.95,5,19.8 -02.11.1986,11.7,0.5,6.1,0.1,20.6 -03.11.1986,6.8,-0.5,3.15,0.2,27.6 -04.11.1986,7.8,3.7,5.75,0.3,23.4 -05.11.1986,7.4,5.7,6.55,1.3,20.2 -06.11.1986,11.6,3.2,7.4,0.7,19.2 -07.11.1986,8.3,1.4,4.85,0,18.2 -08.11.1986,7.3,3.5,5.4,0.4,17.6 -09.11.1986,7.9,-0.3,3.8,0,16.6 -10.11.1986,10.8,-0.4,5.2,0,16.3 -11.11.1986,14.2,1.3,7.75,0,15.7 -12.11.1986,13.7,5.9,9.8,0,15.1 -13.11.1986,14.2,1.5,7.85,0,14.6 -14.11.1986,10.7,1.2,5.95,0.1,13.5 -15.11.1986,11.7,1.1,6.4,0.1,12.4 -16.11.1986,13,7.8,10.4,1.2,12.3 -17.11.1986,12.5,7.6,10.05,2.6,12.8 -18.11.1986,10.6,3.6,7.1,1.5,13.9 -19.11.1986,10.5,8,9.25,3,14.3 -20.11.1986,10.4,5.3,7.85,3.7,14.3 -21.11.1986,6.9,-0.6,3.15,2.1,21.5 -22.11.1986,9.1,5.1,7.1,5,22.8 -23.11.1986,9.1,3.7,6.4,0.4,22.5 -24.11.1986,8.3,5.1,6.7,0.8,25.1 -25.11.1986,10.8,7.9,9.35,0.1,22.3 -26.11.1986,11.2,7.3,9.25,1.4,20.6 -27.11.1986,8.7,2.8,5.75,0,19.4 -28.11.1986,3.2,-1.8,0.7,0,18.5 -29.11.1986,1.7,-4.1,-1.2,0,17 -30.11.1986,1.7,-5.5,-1.9,0,16.1 -01.12.1986,0.9,-1.1,-0.1,0.6,15.4 -02.12.1986,6.2,-0.5,2.85,0.3,15.4 -03.12.1986,8.4,0.8,4.6,0,15.1 -04.12.1986,8.9,0.4,4.65,0,15.2 -05.12.1986,9.8,-0.3,4.75,0.1,14.8 -06.12.1986,8.2,2.7,5.45,6.5,14.6 -07.12.1986,6.2,-0.4,2.9,1.1,15.7 -08.12.1986,10.7,3.5,7.1,0,19.4 -09.12.1986,7.4,-0.4,3.5,0.1,17.7 -10.12.1986,7.6,0.9,4.25,0,17.6 -11.12.1986,3.8,0.3,2.05,0,15.9 -12.12.1986,3,1,2,0,14.8 -13.12.1986,2.8,0,1.4,1.3,13.8 -14.12.1986,6.7,1.9,4.3,0.4,14.6 -15.12.1986,3.8,1.3,2.55,7,14.3 -16.12.1986,5.2,1.5,3.35,0.4,15.5 -17.12.1986,4.7,2.2,3.45,4.8,18.4 -18.12.1986,7.8,4.5,6.15,8.9,19.6 -19.12.1986,9.8,1.4,5.6,2.5,33 -20.12.1986,4.2,0.9,2.55,5,53.7 -21.12.1986,3.2,-0.1,1.55,4.3,34.5 -22.12.1986,-0.1,-4.1,-2.1,1.4,30.1 -23.12.1986,-1.3,-3.6,-2.45,1.6,26 -24.12.1986,-2.4,-4.1,-3.25,0.2,22.9 -25.12.1986,-2.5,-9.5,-6,4,20.8 -26.12.1986,1.2,-3.7,-1.25,2.9,19.5 -27.12.1986,2.3,0.2,1.25,4.8,19.3 -28.12.1986,3.7,0.9,2.3,4.6,20.7 -29.12.1986,8.7,3.6,6.15,7.3,38.6 -30.12.1986,9.2,7.3,8.25,12.4,96.2 -31.12.1986,7.8,6,6.9,9.6,123 -01.01.1987,7.3,5.3,6.3,22.1,148 -02.01.1987,6.3,-3.5,1.4,3.1,203 -03.01.1987,-2.1,-10.2,-6.15,0.9,198 -04.01.1987,0.7,-8.9,-4.1,6.1,184 -05.01.1987,2.8,-0.1,1.35,7.9,92.4 -06.01.1987,2.8,-1.6,0.6,5.4,83.7 -07.01.1987,-1.4,-5.1,-3.25,0.2,78.6 -08.01.1987,-3,-10.7,-6.85,1.9,57.8 -09.01.1987,-1.1,-5,-3.05,2.8,47.2 -10.01.1987,-4.4,-11.5,-7.95,1.3,42.3 -11.01.1987,-11.1,-21,-16.05,0.6,36.8 -12.01.1987,-10.3,-16.5,-13.4,0.8,30 -13.01.1987,-10.2,-18.4,-14.3,0.1,28.9 -14.01.1987,-12.4,-19.8,-16.1,0.8,29.1 -15.01.1987,-10.2,-18.3,-14.25,8.4,27.9 -16.01.1987,-10.2,-12.1,-11.15,0.2,25.2 -17.01.1987,-6.8,-10.6,-8.7,0,25.4 -18.01.1987,-7.3,-9.4,-8.35,0,25.4 -19.01.1987,-4.4,-9.1,-6.75,0,25.3 -20.01.1987,-7,-11.8,-9.4,0,24.1 -21.01.1987,-7.4,-11.7,-9.55,0.1,23.1 -22.01.1987,-1.7,-7.7,-4.7,0.6,22.8 -23.01.1987,1,-2.1,-0.55,2.2,22 -24.01.1987,2.7,0.7,1.7,0.3,22.1 -25.01.1987,1.7,0.4,1.05,0.9,22 -26.01.1987,1.8,-1.5,0.15,3.8,21 -27.01.1987,0.2,-8.9,-4.35,0.9,21.2 -28.01.1987,0.8,-8.9,-4.05,2.5,20.2 -29.01.1987,-1.1,-13.2,-7.15,0,18.6 -30.01.1987,-8.2,-21.3,-14.75,0,19.7 -31.01.1987,-6.4,-20.3,-13.35,0,35.4 -01.02.1987,-3.9,-18.4,-11.15,0,14.7 -02.02.1987,-1.9,-17,-9.45,0,15.5 -03.02.1987,-0.2,-13,-6.6,0,15.5 -04.02.1987,0.5,-6.6,-3.05,0,15.7 -05.02.1987,2.7,0.1,1.4,0.1,15.9 -06.02.1987,4.7,1.3,3,2.8,16.5 -07.02.1987,5.4,0.2,2.8,0.4,26.5 -08.02.1987,5.7,-3.6,1.05,2.9,45.5 -09.02.1987,7.5,2.7,5.1,2.1,53.9 -10.02.1987,7.8,1.3,4.55,4.2,106 -11.02.1987,6.7,-0.1,3.3,0.2,129 -12.02.1987,4.2,-1.1,1.55,3.7,118 -13.02.1987,4.1,-0.4,1.85,1.1,73.8 -14.02.1987,3.2,-0.9,1.15,0.8,71 -15.02.1987,2.7,0.1,1.4,2.7,57.5 -16.02.1987,0.4,-1.1,-0.35,1.2,49.3 -17.02.1987,-0.4,-2.1,-1.25,1.5,43.7 -18.02.1987,-0.3,-2.7,-1.5,2.4,39.2 -19.02.1987,0.1,-6.9,-3.4,0.4,35.7 -20.02.1987,0.7,-1.9,-0.6,4.5,32.5 -21.02.1987,0.7,-3.1,-1.2,0.6,30.2 -22.02.1987,2.2,-2.2,0,0.6,28.6 -23.02.1987,2.2,-5.1,-1.45,0.1,28.2 -24.02.1987,2.3,-10.5,-4.1,0,26.4 -25.02.1987,2.7,-9.9,-3.6,0,23.9 -26.02.1987,3.4,-7.7,-2.15,4.4,22.9 -27.02.1987,6.5,-2,2.25,10.9,24.1 -28.02.1987,6.2,3.5,4.85,8.2,61.8 -01.03.1987,5.6,-0.8,2.4,10.1,133 -02.03.1987,-0.5,-5.6,-3.05,18.8,161 -03.03.1987,-3.7,-13.6,-8.65,0,139 -04.03.1987,-2.8,-16.9,-9.85,0,178 -05.03.1987,-1.3,-15.1,-8.2,0,118 -06.03.1987,0.6,-12.1,-5.75,0,66.4 -07.03.1987,-1.6,-13.3,-7.45,0,54.9 -08.03.1987,-0.8,-10.7,-5.75,0,46.9 -09.03.1987,0.6,-6.1,-2.75,0,41.6 -10.03.1987,3.6,-9.7,-3.05,0,37.4 -11.03.1987,3.4,-9.6,-3.1,0,34.4 -12.03.1987,2.5,-9.9,-3.7,0,31.9 -13.03.1987,2.4,-11,-4.3,0,29.9 -14.03.1987,3.7,-9.1,-2.7,0,28.2 -15.03.1987,3.2,-9.9,-3.35,2.5,27 -16.03.1987,1.3,-1.1,0.1,1.8,26.6 -17.03.1987,2.2,-1.9,0.15,5.4,26.2 -18.03.1987,5.3,1.9,3.6,3.1,30 -19.03.1987,2.8,-1.3,0.75,7.2,49.9 -20.03.1987,3.6,-3.2,0.2,0.6,39.8 -21.03.1987,4.5,-0.8,1.85,1.8,35 -22.03.1987,6.3,-1.3,2.5,2,35.9 -23.03.1987,6.3,-2.9,1.7,16.2,39.7 -24.03.1987,9.6,4.9,7.25,6.7,109 -25.03.1987,10.1,4.2,7.15,7.6,183 -26.03.1987,11.7,2.3,7,0.1,250 -27.03.1987,11.7,-0.4,5.65,3.2,215 -28.03.1987,11.8,4.8,8.3,2.9,178 -29.03.1987,8.3,2.5,5.4,0.4,141 -30.03.1987,6.6,-0.8,2.9,0.6,111 -31.03.1987,7,1.5,4.25,0,80.3 -01.04.1987,9.6,-2.8,3.4,1.2,67 -02.04.1987,6.9,-0.6,3.15,0.1,61.3 -03.04.1987,15.5,2.2,8.85,0,56.4 -04.04.1987,11.2,4.5,7.85,0.4,51.1 -05.04.1987,14.5,6,10.25,0.1,47.8 -06.04.1987,13.5,0.8,7.15,2,44 -07.04.1987,19.2,1.4,10.3,0.4,41.5 -08.04.1987,16.8,9.1,12.95,0.2,39.8 -09.04.1987,15.2,3.1,9.15,1.1,37 -10.04.1987,12.4,6.3,9.35,1.3,35.1 -11.04.1987,11.9,-0.6,5.65,7.2,34.2 -12.04.1987,7.6,0.7,4.15,4.7,35.2 -13.04.1987,9.7,0.8,5.25,0,40.2 -14.04.1987,13.8,-1.7,6.05,0,38.3 -15.04.1987,13.2,5.4,9.3,0,33.2 -16.04.1987,11.2,4.4,7.8,0.1,30.2 -17.04.1987,17.1,5.4,11.25,0,28.6 -18.04.1987,18.7,3.3,11,0.2,27.3 -19.04.1987,20.6,4.4,12.5,4.9,26.2 -20.04.1987,14.8,8.4,11.6,2.8,28.9 -21.04.1987,11.4,5.9,8.65,0.3,26.7 -22.04.1987,15.7,1.4,8.55,0,25.8 -23.04.1987,18.8,1.6,10.2,0,24.5 -24.04.1987,22.7,2.4,12.55,0,23.4 -25.04.1987,21.9,4.4,13.15,0,22.8 -26.04.1987,18.9,6.1,12.5,0,22.2 -27.04.1987,16.2,4,10.1,0,21.6 -28.04.1987,20.9,1.6,11.25,0,21.1 -29.04.1987,25.5,2.9,14.2,0,20.8 -30.04.1987,23,7.1,15.05,0.8,20.6 -01.05.1987,18.2,9.4,13.8,0,20.6 -02.05.1987,21.6,8.6,15.1,0.5,20.2 -03.05.1987,13.9,4.4,9.15,18,20.7 -04.05.1987,7.1,3.7,5.4,1.6,25.3 -05.05.1987,11.4,6.9,9.15,0.3,25.9 -06.05.1987,9.7,6.6,8.15,0.1,21.8 -07.05.1987,14.3,4.8,9.55,0,19.6 -08.05.1987,14.1,1,7.55,0,18.8 -09.05.1987,21.5,1.4,11.45,0,18.2 -10.05.1987,20.1,3.6,11.85,5.3,19.2 -11.05.1987,12.8,0.9,6.85,0.2,19.6 -12.05.1987,11.5,8.2,9.85,17.9,18.9 -13.05.1987,11.6,4.6,8.1,0.8,25.5 -14.05.1987,12,1.6,6.8,8.9,30.7 -15.05.1987,13,6,9.5,2.3,23.7 -16.05.1987,12.2,5.2,8.7,0.7,30.4 -17.05.1987,14,2.8,8.4,0,25.9 -18.05.1987,15.8,2.5,9.15,0.1,22 -19.05.1987,17.6,3.9,10.75,0.1,20.7 -20.05.1987,12.3,4.4,8.35,3.7,19.5 -21.05.1987,11,3.5,7.25,8.7,20 -22.05.1987,11.3,6,8.65,8.6,21.6 -23.05.1987,15.3,7.2,11.25,0.1,27.5 -24.05.1987,19.3,5.9,12.6,0.1,26.6 -25.05.1987,21.1,6,13.55,0,22.9 -26.05.1987,22,4.6,13.3,0,20.7 -27.05.1987,19.3,7,13.15,5.5,19.4 -28.05.1987,15.5,8.9,12.2,0.2,19.8 -29.05.1987,11.5,6.3,8.9,5.5,21.4 -30.05.1987,12.2,6.4,9.3,3.6,21.3 -31.05.1987,15.5,10.5,13,11.6,22.5 -01.06.1987,18.8,10.3,14.55,1.4,29.5 -02.06.1987,14.3,10.9,12.6,6.9,29.9 -03.06.1987,16.8,10.5,13.65,9.3,29.6 -04.06.1987,16.5,11,13.75,1.5,51.8 -05.06.1987,16.2,10.1,13.15,1.1,41.3 -06.06.1987,18.5,7.6,13.05,3.5,34.7 -07.06.1987,19.1,12.5,15.8,2.9,31.2 -08.06.1987,16.7,11.1,13.9,0.3,29 -09.06.1987,16.2,6.6,11.4,0.6,27.7 -10.06.1987,18,5,11.5,0.3,24.8 -11.06.1987,20.5,6,13.25,2.7,23.4 -12.06.1987,14.5,10.3,12.4,4,22.7 -13.06.1987,15,9.9,12.45,16.8,29.8 -14.06.1987,18,11.8,14.9,1.7,44.8 -15.06.1987,13.3,9,11.15,17.4,40.2 -16.06.1987,13,7.1,10.05,1,62.8 -17.06.1987,12.4,4.8,8.6,6.5,60.9 -18.06.1987,11.4,8.3,9.85,1.8,49.5 -19.06.1987,15,4.7,9.85,4.8,47 -20.06.1987,18,10.4,14.2,5.4,44.3 -21.06.1987,17.4,9.8,13.6,0,50.1 -22.06.1987,18.1,6.4,12.25,9.1,46.9 -23.06.1987,16.5,12.9,14.7,2.5,39.3 -24.06.1987,17.4,9,13.2,11,46.8 -25.06.1987,17.1,10.4,13.75,1.7,55 -26.06.1987,19.4,11.5,15.45,1.6,66.4 -27.06.1987,22.1,12.6,17.35,0.4,46.9 -28.06.1987,24.6,16.3,20.45,0.4,39.1 -29.06.1987,29.5,14.8,22.15,0,34.2 -30.06.1987,30.6,15.7,23.15,0.1,31.1 -01.07.1987,24.2,15.6,19.9,0,28.3 -02.07.1987,21.6,13.5,17.55,0,26.4 -03.07.1987,23.6,13.5,18.55,0.6,24.5 -04.07.1987,23.8,12.6,18.2,0,23.2 -05.07.1987,24,8.8,16.4,0,22.1 -06.07.1987,26.2,9.8,18,0,21 -07.07.1987,28.3,11.1,19.7,5.3,20.4 -08.07.1987,19,16.2,17.6,6.5,20.8 -09.07.1987,20,10.8,15.4,0,23.9 -10.07.1987,20.1,6.4,13.25,0,21.7 -11.07.1987,25.7,12.5,19.1,0,18.9 -12.07.1987,22.6,14.6,18.6,0,17.9 -13.07.1987,19.9,8.9,14.4,0,17 -14.07.1987,24.5,7.3,15.9,0,16.4 -15.07.1987,27.5,13.1,20.3,0,16.1 -16.07.1987,26.9,14.2,20.55,12,15.7 -17.07.1987,23.7,17.7,20.7,3.4,18.3 -18.07.1987,19.8,14.6,17.2,6.9,20.9 -19.07.1987,21.5,13.4,17.45,0.6,19.9 -20.07.1987,19.9,12.9,16.4,5.3,19.4 -21.07.1987,20.5,13.1,16.8,2.2,17.2 -22.07.1987,21.3,11.9,16.6,5.6,17.5 -23.07.1987,22,14,18,0.5,18.9 -24.07.1987,20.3,10.9,15.6,1.6,17.3 -25.07.1987,18.9,10.4,14.65,1.5,16 -26.07.1987,15,6.9,10.95,1.4,15.2 -27.07.1987,16.8,8.9,12.85,11.5,15.9 -28.07.1987,16.3,11.1,13.7,1.6,18.2 -29.07.1987,16,11.2,13.6,5.1,18.5 -30.07.1987,19,13.5,16.25,13.8,18.4 -31.07.1987,16.2,12.2,14.2,2,36.1 -01.08.1987,18.5,13.9,16.2,5,31.8 -02.08.1987,16.5,11.9,14.2,3,26.1 -03.08.1987,16.1,9.8,12.95,7.8,24.4 -04.08.1987,18.2,7.4,12.8,3,24.5 -05.08.1987,16,8.8,12.4,2.7,33.3 -06.08.1987,15.1,8.2,11.65,0.3,26.4 -07.08.1987,18.5,2.9,10.7,0.2,22.9 -08.08.1987,20.8,7.9,14.35,0.3,19.6 -09.08.1987,15.3,12.3,13.8,7.8,18.8 -10.08.1987,17.2,11.3,14.25,0.5,20 -11.08.1987,19.5,7.7,13.6,0,18.8 -12.08.1987,20.2,10.2,15.2,0.1,17.2 -13.08.1987,20.5,10.2,15.35,4.5,16.3 -14.08.1987,23.6,15.1,19.35,0.2,17.2 -15.08.1987,18.9,12.4,15.65,0,16.6 -16.08.1987,17,10.5,13.75,0,15.2 -17.08.1987,27.3,11.6,19.45,0.1,14.7 -18.08.1987,19.6,15.3,17.45,19.2,24.7 -19.08.1987,21.6,16.1,18.85,2,29.5 -20.08.1987,23.5,15.2,19.35,0,23 -21.08.1987,27.2,12.4,19.8,0,18.4 -22.08.1987,28.4,12.6,20.5,1.2,16.9 -23.08.1987,22,15.4,18.7,6.3,16.2 -24.08.1987,24.7,15.8,20.25,1.1,17.5 -25.08.1987,19.8,14.9,17.35,1.1,17.8 -26.08.1987,18.2,13.3,15.75,2.3,15.7 -27.08.1987,19.1,12.5,15.8,3.3,15.2 -28.08.1987,17.5,13.4,15.45,1.3,15.8 -29.08.1987,18.9,14,16.45,2.1,16.2 -30.08.1987,20.3,13.2,16.75,0,15.4 -31.08.1987,18.5,9.9,14.2,0,15.3 -01.09.1987,25,7.3,16.15,1.7,14.7 -02.09.1987,24.3,13.9,19.1,0,14.3 -03.09.1987,25.1,10.4,17.75,0,14.1 -04.09.1987,26.5,12.4,19.45,5.4,13.4 -05.09.1987,21.5,14.8,18.15,1.7,13.9 -06.09.1987,18.9,11.7,15.3,1,14.1 -07.09.1987,20,11.6,15.8,16.3,14.4 -08.09.1987,16.8,10.1,13.45,0,16.9 -09.09.1987,20,9.5,14.75,0,31.2 -10.09.1987,19.1,8.2,13.65,1.3,19.1 -11.09.1987,18.5,10.6,14.55,0.6,16.4 -12.09.1987,23.2,11.4,17.3,0,15.4 -13.09.1987,20.6,18,19.3,0.6,14.6 -14.09.1987,20.2,11.5,15.85,5.6,14.6 -15.09.1987,17.4,9.6,13.5,0,15.2 -16.09.1987,21.2,8.4,14.8,0,15.1 -17.09.1987,22.9,9.6,16.25,0.1,13.6 -18.09.1987,21.5,16.1,18.8,6,14.6 -19.09.1987,18.5,11.9,15.2,0,14.9 -20.09.1987,21.6,13.4,17.5,0,16.8 -21.09.1987,25.6,11.7,18.65,0,14 -22.09.1987,24.9,16,20.45,12,13.5 -23.09.1987,19.7,15.2,17.45,14.4,15.8 -24.09.1987,16.5,10.3,13.4,6.2,33.7 -25.09.1987,16,8.3,12.15,0,40.9 -26.09.1987,15.8,6.2,11,0.1,30.8 -27.09.1987,12.9,6.1,9.5,0.1,22.8 -28.09.1987,12,1.7,6.85,0,19.7 -29.09.1987,9.5,3.5,6.5,0.3,17.6 -30.09.1987,13,0.8,6.9,0,16.8 -01.10.1987,14.6,1.6,8.1,0,15.9 -02.10.1987,14.2,2.1,8.15,0,15.1 -03.10.1987,13.9,1.2,7.55,0,14.6 -04.10.1987,14.1,1.5,7.8,0,14.2 -05.10.1987,19.3,6.1,12.7,0,14 -06.10.1987,19.9,8.8,14.35,4.1,14 -07.10.1987,15,8.8,11.9,1.8,13.9 -08.10.1987,14.4,8,11.2,6.4,14.3 -09.10.1987,14,5.8,9.9,0,15.4 -10.10.1987,20.5,5.1,12.8,0,17.1 -11.10.1987,15.3,9.6,12.45,5,14.8 -12.10.1987,10.9,5.2,8.05,6.7,15.5 -13.10.1987,11.2,5.2,8.2,7.2,17 -14.10.1987,12.5,7.5,10,7.1,20.6 -15.10.1987,18,8.9,13.45,4.7,25.6 -16.10.1987,19.7,12.4,16.05,1.2,34.4 -17.10.1987,14,6.2,10.1,0.2,35 -18.10.1987,14.4,6,10.2,0,25.5 -19.10.1987,15.6,2.2,8.9,0,21.4 -20.10.1987,12.6,3.9,8.25,0,19.2 -21.10.1987,11.8,7.6,9.7,14.1,18 -22.10.1987,11.1,6.8,8.95,8.1,20.8 -23.10.1987,9.8,4.3,7.05,5.1,53.3 -24.10.1987,9.2,7,8.1,0.5,44.3 -25.10.1987,8.7,2.7,5.7,0,34.8 -26.10.1987,10.5,1.5,6,0,28.5 -27.10.1987,12.6,1.9,7.25,0,24.9 -28.10.1987,12.8,4.7,8.75,0.5,22.5 -29.10.1987,10.6,6.8,8.7,0.3,21.2 -30.10.1987,11.1,4.7,7.9,0,20.2 -31.10.1987,13.4,4.6,9,0.1,19.1 -01.11.1987,10.6,5.2,7.9,2.7,18.4 -02.11.1987,10.6,8.1,9.35,0.7,18.2 -03.11.1987,8.9,6.9,7.9,0,18.2 -04.11.1987,8.2,0.5,4.35,0,17.7 -05.11.1987,4.2,-1.1,1.55,0,16.6 -06.11.1987,7.2,4.2,5.7,0,16.1 -07.11.1987,6.4,3.4,4.9,0,15.7 -08.11.1987,3.4,1.1,2.25,0,15.3 -09.11.1987,5.4,1.6,3.5,0,15.4 -10.11.1987,4.8,2.9,3.85,4,15.2 -11.11.1987,9.9,4.4,7.15,1.7,15.8 -12.11.1987,9.8,7.1,8.45,9.8,16.2 -13.11.1987,9.8,5.9,7.85,8.9,21.2 -14.11.1987,8.5,3.1,5.8,1.9,32.9 -15.11.1987,6.6,2.9,4.75,2.8,47.8 -16.11.1987,11.2,5.6,8.4,4.4,36.2 -17.11.1987,10,7.4,8.7,1.4,34.1 -18.11.1987,10.8,6.7,8.75,0.2,33.4 -19.11.1987,9.5,7.5,8.5,9,29 -20.11.1987,8,4.6,6.3,7.9,30.6 -21.11.1987,6.9,4.5,5.7,5.7,48.4 -22.11.1987,5.8,4.5,5.15,3.8,54.4 -23.11.1987,6.6,4.2,5.4,0,57.3 -24.11.1987,4.9,-0.7,2.1,0.1,53.2 -25.11.1987,2.5,0.4,1.45,7.9,42.3 -26.11.1987,3.5,0.6,2.05,0,42.2 -27.11.1987,2.6,1.7,2.15,0,41.8 -28.11.1987,4.6,1.2,2.9,0,36.1 -29.11.1987,3.8,0.8,2.3,0,32.1 -30.11.1987,1.3,-1.5,-0.1,0,29.3 -01.12.1987,3.6,-0.5,1.55,0,27.1 -02.12.1987,2.5,1.1,1.8,0,25.3 -03.12.1987,3,-0.2,1.4,0,24 -04.12.1987,1.2,-3.7,-1.25,0,22.9 -05.12.1987,1.6,-4.9,-1.65,0,22.5 -06.12.1987,-0.9,-3.1,-2,0,21.7 -07.12.1987,-0.5,-5.9,-3.2,0.2,21.2 -08.12.1987,-4.2,-10.7,-7.45,0,20.5 -09.12.1987,-6,-13.8,-9.9,0,18.8 -10.12.1987,-0.9,-11.6,-6.25,1,18.3 -11.12.1987,3.7,-1,1.35,0.2,18.3 -12.12.1987,1.4,-0.3,0.55,0,18.3 -13.12.1987,0.5,-3,-1.25,0,18.2 -14.12.1987,-2.5,-4.3,-3.4,0.1,17.4 -15.12.1987,0.5,-4.6,-2.05,1.1,17.3 -16.12.1987,3.2,0.3,1.75,9.8,16.9 -17.12.1987,10,2.8,6.4,23.8,22.3 -18.12.1987,14.2,7.5,10.85,12.1,65.9 -19.12.1987,11,6.3,8.65,6.4,115 -20.12.1987,9,6.2,7.6,1.4,140 -21.12.1987,9,8,8.5,0.4,139 -22.12.1987,9.4,2.9,6.15,0.1,89.6 -23.12.1987,4.5,-1,1.75,0,63.5 -24.12.1987,2,-3.7,-0.85,0.1,52.5 -25.12.1987,1.9,-2.6,-0.35,0.9,46.1 -26.12.1987,6.3,1.8,4.05,0.5,41.9 -27.12.1987,8,6.2,7.1,0,38.5 -28.12.1987,10.5,7.7,9.1,0,36.3 -29.12.1987,10.4,7.5,8.95,1.7,33.8 -30.12.1987,12,4.3,8.15,0.1,31.9 -31.12.1987,11.5,4.8,8.15,0.1,31.3 -01.01.1988,8.2,6.9,7.55,3.5,30.4 -02.01.1988,12.2,6.9,9.55,8.5,29.1 -03.01.1988,8.9,5.8,7.35,4.7,39.8 -04.01.1988,8.6,5.4,7,7.3,55.7 -05.01.1988,12,5.5,8.75,1.9,67.8 -06.01.1988,12.3,7.4,9.85,1.4,71.9 -07.01.1988,7.8,3.1,5.45,5.1,55.9 -08.01.1988,5.6,1,3.3,0.1,50.6 -09.01.1988,6.4,-1.3,2.55,0,50.4 -10.01.1988,5.1,0.8,2.95,3,43.4 -11.01.1988,6.8,2.6,4.7,2.1,41 -12.01.1988,3.6,-1.6,1,0,41.4 -13.01.1988,4,-2.5,0.75,0,40 -14.01.1988,3,-4.2,-0.6,0,35.9 -15.01.1988,4.7,-0.4,2.15,2.4,32.9 -16.01.1988,4.5,1.9,3.2,4.3,32.3 -17.01.1988,5.2,3.2,4.2,1.1,33.7 -18.01.1988,5.5,-0.1,2.7,0.1,34 -19.01.1988,3.6,2.5,3.05,0,32.7 -20.01.1988,2.7,0.3,1.5,0.1,31.3 -21.01.1988,5.4,1.4,3.4,0.1,29.2 -22.01.1988,4.4,-0.1,2.15,7.9,28.4 -23.01.1988,3.7,-0.1,1.8,3.4,29.9 -24.01.1988,6.7,0.5,3.6,11.2,33 -25.01.1988,10.6,1.7,6.15,4.5,51.9 -26.01.1988,9,6.3,7.65,4,95.6 -27.01.1988,7.9,-0.5,3.7,1.4,101 -28.01.1988,6.6,-0.7,2.95,2.9,77.4 -29.01.1988,10,6.5,8.25,2.6,63.5 -30.01.1988,7.5,4.2,5.85,1.6,61.9 -31.01.1988,5.1,3.5,4.3,0.5,58.9 -01.02.1988,6.8,1.7,4.25,10,51.4 -02.02.1988,7.8,5.1,6.45,10.3,57.6 -03.02.1988,7.5,2.6,5.05,1.6,85.5 -04.02.1988,10,5.5,7.75,3.2,99.5 -05.02.1988,7.8,2.8,5.3,4.1,90.2 -06.02.1988,10,3,6.5,2.4,80.5 -07.02.1988,7.4,-0.8,3.3,4,87.9 -08.02.1988,3.4,0.9,2.15,3.3,78.5 -09.02.1988,5.6,1.4,3.5,6.7,65 -10.02.1988,5.1,1.5,3.3,4.5,72.3 -11.02.1988,4.5,0.3,2.4,2.6,94.6 -12.02.1988,1.6,-0.7,0.45,9.7,82.8 -13.02.1988,5.2,-1.8,1.7,0,78.2 -14.02.1988,6.5,-4.5,1,0,68.7 -15.02.1988,8.4,-4.9,1.75,0,56.3 -16.02.1988,8.2,-5.1,1.55,0.1,49.6 -17.02.1988,5,0.7,2.85,1.9,46.5 -18.02.1988,4.7,2.2,3.45,2.7,46.1 -19.02.1988,5.6,2.8,4.2,4.9,49 -20.02.1988,6,-1.5,2.25,0.5,58.9 -21.02.1988,4,-2.8,0.6,0.1,61.8 -22.02.1988,7.4,1.5,4.45,0.1,52.4 -23.02.1988,6,1.5,3.75,4.6,48.1 -24.02.1988,2,-0.7,0.65,2.1,48.1 -25.02.1988,0.7,-1.1,-0.2,7.5,47.9 -26.02.1988,0.3,-1.5,-0.6,1.9,45.1 -27.02.1988,0.8,-0.2,0.3,0.8,43.2 -28.02.1988,4.4,-1.1,1.65,5.2,41.3 -29.02.1988,4.4,-0.5,1.95,3.7,41.2 -01.03.1988,1.5,-1.8,-0.15,2.7,41.6 -02.03.1988,2.5,-2.5,0,0.7,40 -03.03.1988,3,-0.1,1.45,1,37.8 -04.03.1988,2.5,0.6,1.55,3.4,36.5 -05.03.1988,3.6,-1.6,1,0.4,36.8 -06.03.1988,2.7,-1.1,0.8,9.2,36.3 -07.03.1988,3.6,-0.5,1.55,2.5,38.5 -08.03.1988,2,-3.9,-0.95,0.7,41.6 -09.03.1988,4.3,-6.5,-1.1,0.1,38.8 -10.03.1988,3.6,-4.5,-0.45,4.1,35.1 -11.03.1988,5.6,0.8,3.2,6.3,34.9 -12.03.1988,4.6,0.5,2.55,3.9,49.2 -13.03.1988,2,-2,0,15,83.9 -14.03.1988,3.7,-3.8,-0.05,2.9,76.9 -15.03.1988,8.4,-4.5,1.95,8.1,87.2 -16.03.1988,9,5,7,3.2,120 -17.03.1988,6.4,-0.9,2.75,0.3,190 -18.03.1988,5.7,-4.5,0.6,0.1,268 -19.03.1988,7.3,-4.8,1.25,0.1,195 -20.03.1988,11.5,4.9,8.2,5,122 -21.03.1988,11.1,3.9,7.5,6.4,118 -22.03.1988,10.7,6.9,8.8,0.6,156 -23.03.1988,9.4,1.7,5.55,5.6,170 -24.03.1988,8.8,4.3,6.55,3.4,159 -25.03.1988,7.3,1.7,4.5,12.3,153 -26.03.1988,8.2,3,5.6,9.1,157 -27.03.1988,7.3,1.3,4.3,4.1,176 -28.03.1988,8.5,2.4,5.45,2.1,199 -29.03.1988,8.5,3.9,6.2,1.7,184 -30.03.1988,14.8,4.2,9.5,0.1,144 -31.03.1988,9.3,5.2,7.25,20.7,117 -01.04.1988,5.5,3.5,4.5,2.6,126 -02.04.1988,10.8,-0.3,5.25,0.1,161 -03.04.1988,13.6,-1.6,6,0,186 -04.04.1988,11.2,0.4,5.8,0,121 -05.04.1988,9.2,1.3,5.25,0.4,92.7 -06.04.1988,16,3.7,9.85,0,80.1 -07.04.1988,16.7,4.9,10.8,1.7,73.2 -08.04.1988,10,6.4,8.2,5.2,71.4 -09.04.1988,6.4,0.4,3.4,2.1,80.2 -10.04.1988,8.5,-3.2,2.65,0,73.1 -11.04.1988,12.5,-1.4,5.55,0,60.6 -12.04.1988,18.1,-1.5,8.3,2.3,53.3 -13.04.1988,11.4,2.1,6.75,0.8,50.2 -14.04.1988,12,-3.1,4.45,0,46.9 -15.04.1988,16.1,-1.5,7.3,0,43 -16.04.1988,20.4,-0.6,9.9,0,40.4 -17.04.1988,15,7.3,11.15,1,38.4 -18.04.1988,21,8.9,14.95,0.5,37.1 -19.04.1988,24.5,6.9,15.7,0,35.2 -20.04.1988,18,6.3,12.15,2.6,33.9 -21.04.1988,16.7,4.4,10.55,0,33.4 -22.04.1988,12.6,4.3,8.45,0,32.1 -23.04.1988,7.5,-1.3,3.1,0,30.2 -24.04.1988,10,-4.6,2.7,0,28.4 -25.04.1988,11.5,-3.1,4.2,0,26.7 -26.04.1988,12.6,-1.7,5.45,0,23.9 -27.04.1988,14.8,0,7.4,3.7,24.1 -28.04.1988,11.6,3.9,7.75,10,26.2 -29.04.1988,16,5.2,10.6,0.3,30.7 -30.04.1988,18.9,7.2,13.05,0,28.8 -01.05.1988,21.1,5.7,13.4,0.6,26 -02.05.1988,17,8.3,12.65,6.6,24.6 -03.05.1988,16.5,8.3,12.4,0.3,25.3 -04.05.1988,17.4,6.1,11.75,1.1,27 -05.05.1988,19,3.3,11.15,0,25.8 -06.05.1988,19,6.4,12.7,0,23.8 -07.05.1988,21.9,5.6,13.75,0,22.7 -08.05.1988,17.2,10.6,13.9,0,21.9 -09.05.1988,22.7,9.9,16.3,0,20.4 -10.05.1988,22.2,7.1,14.65,0,19.5 -11.05.1988,19.5,7.8,13.65,0,19.2 -12.05.1988,24.1,7.5,15.8,0,18.5 -13.05.1988,23.8,11.2,17.5,0,18.1 -14.05.1988,24.4,8.7,16.55,0,18 -15.05.1988,25.2,13.1,19.15,0.2,17.7 -16.05.1988,23.1,9.1,16.1,1.4,17.4 -17.05.1988,22.4,9.7,16.05,1.5,17.5 -18.05.1988,15,8.9,11.95,2.8,18.6 -19.05.1988,15.6,7.1,11.35,5.3,18.7 -20.05.1988,12.4,6.2,9.3,0.3,19.7 -21.05.1988,12,0.4,6.2,0,18.8 -22.05.1988,14.5,1,7.75,0,17.6 -23.05.1988,19.2,1.1,10.15,0,16.8 -24.05.1988,21.7,5.2,13.45,0.1,16.5 -25.05.1988,25.5,8.8,17.15,0,16.5 -26.05.1988,27,10.4,18.7,0,16.4 -27.05.1988,25.5,17.8,21.65,1.9,16.3 -28.05.1988,21.4,11.9,16.65,1.4,17 -29.05.1988,20.1,11.7,15.9,0.2,18.1 -30.05.1988,19.9,6.4,13.15,1.9,17.4 -31.05.1988,17,9.3,13.15,3.1,17.9 -01.06.1988,17.5,8.9,13.2,3.5,18.9 -02.06.1988,17,9.4,13.2,0.8,18.9 -03.06.1988,20,12.1,16.05,0.1,18.9 -04.06.1988,19,12.6,15.8,0.1,17.4 -05.06.1988,16,6.4,11.2,0.3,16.6 -06.06.1988,13.6,8.7,11.15,13.3,17 -07.06.1988,16.4,9.7,13.05,0.1,19.6 -08.06.1988,17.6,9.2,13.4,0.4,18.8 -09.06.1988,16.9,12.2,14.55,0,16.3 -10.06.1988,22.5,8.9,15.7,0.1,15.4 -11.06.1988,18.7,12.2,15.45,0.6,14.8 -12.06.1988,18.6,12.1,15.35,0,14.3 -13.06.1988,23,5.2,14.1,0,13.9 -14.06.1988,25,7.3,16.15,0,13.7 -15.06.1988,22.5,9.2,15.85,0,13.3 -16.06.1988,19.8,10.5,15.15,0,12.8 -17.06.1988,23.4,9.4,16.4,0,12.7 -18.06.1988,23.8,8.6,16.2,0,12.3 -19.06.1988,16.5,13,14.75,0,12.1 -20.06.1988,15.5,11.6,13.55,0,12 -21.06.1988,19.8,12.2,16,0.8,12.1 -22.06.1988,18.5,10.4,14.45,3.9,12.2 -23.06.1988,14.5,7.8,11.15,0.2,12.8 -24.06.1988,15.7,11.8,13.75,0,12.6 -25.06.1988,17,12.6,14.8,0,12 -26.06.1988,20.5,11.6,16.05,0,12.1 -27.06.1988,21.4,14.4,17.9,2.7,11.6 -28.06.1988,25.2,10.5,17.85,2.2,12.5 -29.06.1988,25,13.8,19.4,2.9,12.3 -30.06.1988,25.6,12.4,19,2.4,12.6 -01.07.1988,22.6,15.4,19,7.2,12.5 -02.07.1988,19,8.9,13.95,1.7,13.9 -03.07.1988,19,13.4,16.2,0.5,12.7 -04.07.1988,23.1,13.9,18.5,0.5,12 -05.07.1988,25.6,13.4,19.5,0.1,12 -06.07.1988,23.3,11.4,17.35,3.5,11.3 -07.07.1988,22.7,13.5,18.1,0.6,11.4 -08.07.1988,22,11.3,16.65,1.1,12.1 -09.07.1988,20.9,10.4,15.65,0,11.8 -10.07.1988,24,7.5,15.75,0,11.3 -11.07.1988,26.6,10.4,18.5,2.9,11.3 -12.07.1988,22.4,11.5,16.95,0,11.1 -13.07.1988,22,9.3,15.65,5.3,11.8 -14.07.1988,18,12.6,15.3,10.9,11.8 -15.07.1988,16.8,13.1,14.95,6.2,13.3 -16.07.1988,15,12,13.5,17.7,15 -17.07.1988,16.4,11.9,14.15,2.4,16.7 -18.07.1988,17.3,12,14.65,0.9,21 -19.07.1988,18.4,12.3,15.35,0,16 -20.07.1988,23.2,9.4,16.3,0.1,14.4 -21.07.1988,22,14.9,18.45,1.6,12.3 -22.07.1988,26.1,14.1,20.1,0,12.2 -23.07.1988,29.4,18.6,24,9.7,11.7 -24.07.1988,23.2,14.2,18.7,3.4,13.4 -25.07.1988,23.2,11.5,17.35,0,14.8 -26.07.1988,28,10.4,19.2,4.5,13 -27.07.1988,21,13.1,17.05,0.1,12.7 -28.07.1988,22,9.2,15.6,0.1,12.5 -29.07.1988,20.1,11.7,15.9,1.5,11.3 -30.07.1988,19.6,7.6,13.6,0,11.4 -31.07.1988,21.8,6.7,14.25,0,11.2 -01.08.1988,26,8.4,17.2,0,10.7 -02.08.1988,17.9,11.3,14.6,0.9,10.6 -03.08.1988,17.7,10.6,14.15,1.6,10.9 -04.08.1988,19.5,5.9,12.7,0,10.6 -05.08.1988,22,10.1,16.05,0,10.6 -06.08.1988,24.7,11.1,17.9,0,10.3 -07.08.1988,28.1,10.9,19.5,0,10.4 -08.08.1988,29.1,11.9,20.5,4.7,10.2 -09.08.1988,28,13.1,20.55,0,9.81 -10.08.1988,27.1,14.2,20.65,0,11 -11.08.1988,26,16.4,21.2,0.3,10.8 -12.08.1988,27.2,12.4,19.8,0,9.89 -13.08.1988,24.1,16.4,20.25,0,9.9 -14.08.1988,29.1,9.5,19.3,0,9.7 -15.08.1988,26.9,13.2,20.05,0,9.35 -16.08.1988,22.8,11.9,17.35,0,9.41 -17.08.1988,23.4,6.9,15.15,0,9.38 -18.08.1988,27.6,7,17.3,0,9.63 -19.08.1988,26,10.2,18.1,2.1,9.6 -20.08.1988,21.4,15.2,18.3,2.4,9.64 -21.08.1988,19,12,15.5,1.6,10.6 -22.08.1988,19,11.8,15.4,1.8,10.9 -23.08.1988,19,7.3,13.15,0,10.8 -24.08.1988,19.1,9.7,14.4,3.8,10.7 -25.08.1988,16.9,12.2,14.55,3,10.6 -26.08.1988,17.5,11.2,14.35,0.2,10.6 -27.08.1988,18.5,7.8,13.15,0.1,11.1 -28.08.1988,27,15.4,21.2,0.3,10.8 -29.08.1988,23.1,13.4,18.25,1.1,9.92 -30.08.1988,20.5,11.7,16.1,0,9.73 -31.08.1988,22.9,8.2,15.55,0,10.2 -01.09.1988,24.4,7.3,15.85,8.5,9.42 -02.09.1988,19,11.4,15.2,0.3,9.56 -03.09.1988,15.5,10.5,13,8.3,9.55 -04.09.1988,19.5,12.3,15.9,0.2,10.6 -05.09.1988,18,11.8,14.9,12.3,11.4 -06.09.1988,19.9,10.1,15,0,12.7 -07.09.1988,21,6.2,13.6,0,14.2 -08.09.1988,20.5,6.3,13.4,0,11.2 -09.09.1988,22.8,6.8,14.8,0,9.91 -10.09.1988,24.5,7.1,15.8,0,9.82 -11.09.1988,18.9,11.5,15.2,0.3,9.46 -12.09.1988,17.3,10.4,13.85,1.5,9.18 -13.09.1988,14.8,8.3,11.55,4.8,8.9 -14.09.1988,14,7.1,10.55,8.5,9.8 -15.09.1988,15.2,7.7,11.45,2.2,11 -16.09.1988,12,9.9,10.95,1.3,11.9 -17.09.1988,15.5,10.9,13.2,0.2,10.4 -18.09.1988,17,11.4,14.2,0.7,9.56 -19.09.1988,14.8,12,13.4,0.1,9.15 -20.09.1988,15.4,11.5,13.45,0,9.68 -21.09.1988,13.6,9.2,11.4,0,9.29 -22.09.1988,19.6,4.9,12.25,0.1,9.24 -23.09.1988,16.5,9.4,12.95,7.4,9.34 -24.09.1988,14.4,10.5,12.45,2.4,9.78 -25.09.1988,15.6,12.4,14,4.5,10.9 -26.09.1988,19.2,15.1,17.15,0.5,10.6 -27.09.1988,20.2,13.4,16.8,0,12.3 -28.09.1988,19.6,12.4,16,2.5,11.5 -29.09.1988,17.3,9.3,13.3,0,10.3 -30.09.1988,14.6,5.9,10.25,0,10.2 -01.10.1988,16,1.3,8.65,0,9.54 -02.10.1988,17.4,2,9.7,0,9.17 -03.10.1988,15.4,3.6,9.5,0,8.99 -04.10.1988,13,6.9,9.95,0,9.34 -05.10.1988,14,6.7,10.35,2.8,9.33 -06.10.1988,13.3,9.4,11.35,12.5,9.45 -07.10.1988,12,7.5,9.75,7.3,10.7 -08.10.1988,11,5.6,8.3,0.9,21.3 -09.10.1988,18.6,9.8,14.2,2.9,20.5 -10.10.1988,18.6,5.9,12.25,0.1,14.6 -11.10.1988,9.6,2.7,6.15,7.2,14.2 -12.10.1988,13.1,9.1,11.1,1.2,13.8 -13.10.1988,17,9.1,13.05,0,14.3 -14.10.1988,16.4,7.5,11.95,0,13.3 -15.10.1988,16.2,11.8,14,0,12.3 -16.10.1988,14,11.4,12.7,0,11.7 -17.10.1988,13.6,11.1,12.35,0,11.2 -18.10.1988,14.6,12.3,13.45,0.1,10.7 -19.10.1988,12.8,10,11.4,0.7,10.5 -20.10.1988,12,9.5,10.75,0.3,10.5 -21.10.1988,12.4,6.6,9.5,0,11.8 -22.10.1988,13.5,4.9,9.2,0,10.1 -23.10.1988,11.5,3.1,7.3,0,10 -24.10.1988,12,8.1,10.05,3.2,9.89 -25.10.1988,10.4,5.5,7.95,0.3,10 -26.10.1988,11,3.6,7.3,0.1,10.1 -27.10.1988,17.6,5.6,11.6,0.8,10.3 -28.10.1988,16.1,8.8,12.45,0,9.81 -29.10.1988,11.2,1.6,6.4,0,9.64 -30.10.1988,5.7,-2.1,1.8,0,9.73 -31.10.1988,7.4,-2.7,2.35,0.5,9.4 -01.11.1988,9,2.3,5.65,0.1,9.59 -02.11.1988,8.5,1.1,4.8,2.2,9.62 -03.11.1988,3.2,-3.3,-0.05,0,9.7 -04.11.1988,4.4,-5.5,-0.55,0,9.71 -05.11.1988,4.9,-8.2,-1.65,0,9.73 -06.11.1988,5,-6.7,-0.85,0,9.61 -07.11.1988,4.5,-2.3,1.1,0,8.91 -08.11.1988,8.2,-3.5,2.35,0,9.28 -09.11.1988,9.3,-0.1,4.6,0,9.34 -10.11.1988,9,1.5,5.25,0.2,9.16 -11.11.1988,10.2,7.1,8.65,0.3,9.16 -12.11.1988,11.5,4.5,8,1.2,9.06 -13.11.1988,9.6,7.3,8.45,3.9,9.52 -14.11.1988,9.7,5.9,7.8,6.9,9.77 -15.11.1988,10,8.1,9.05,1.6,11.1 -16.11.1988,10,5.6,7.8,0.1,11 -17.11.1988,9.5,-0.1,4.7,1.9,11.5 -18.11.1988,9.8,5.9,7.85,4.8,10.6 -19.11.1988,7.1,1.9,4.5,4.9,11.1 -20.11.1988,2.3,0.2,1.25,8.3,12.6 -21.11.1988,0.2,-5.3,-2.55,0.4,14.2 -22.11.1988,-4,-12.2,-8.1,3.5,13.6 -23.11.1988,0.1,-4.7,-2.3,1.2,12.3 -24.11.1988,1.9,-0.1,0.9,2,11.6 -25.11.1988,6.3,1.2,3.75,0.8,12.5 -26.11.1988,5.8,2.7,4.25,0.1,14.2 -27.11.1988,6.2,2.9,4.55,0.4,18.6 -28.11.1988,3.8,1.3,2.55,0.5,17.9 -29.11.1988,8,0.5,4.25,6.9,16.8 -30.11.1988,1,-0.5,0.25,22.5,16.8 -01.12.1988,2.5,0.5,1.5,0.8,39.2 -02.12.1988,1.5,-2.5,-0.5,1.8,66.2 -03.12.1988,1.3,-2.5,-0.6,5.8,39.6 -04.12.1988,6.3,-0.6,2.85,12.4,28.6 -05.12.1988,6.4,2.4,4.4,0.9,52.4 -06.12.1988,4.5,1.5,3,4,75.5 -07.12.1988,4,-1.4,1.3,0.3,43 -08.12.1988,4.8,-0.7,2.05,5.4,34.3 -09.12.1988,6.1,-0.3,2.9,3.4,28.2 -10.12.1988,9.5,-0.5,4.5,3.9,32.7 -11.12.1988,9.5,6.6,8.05,5.3,34.7 -12.12.1988,7,4.4,5.7,2.4,38.5 -13.12.1988,7.4,2.9,5.15,0.7,41.2 -14.12.1988,7.4,3.4,5.4,2.4,37.6 -15.12.1988,3.6,-4.3,-0.35,0,31.7 -16.12.1988,-1.1,-7.9,-4.5,0.4,28.1 -17.12.1988,0,-3.5,-1.75,2.6,24.1 -18.12.1988,4.5,0,2.25,10.7,22 -19.12.1988,8.6,2.2,5.4,18.5,34.9 -20.12.1988,4.6,-2.3,1.15,0.1,78.9 -21.12.1988,5.4,-2.3,1.55,2.3,105 -22.12.1988,8,5.3,6.65,0.6,57.1 -23.12.1988,8.3,6.5,7.4,8.8,46.6 -24.12.1988,9,5.9,7.45,8.4,51.9 -25.12.1988,7,1.4,4.2,0.5,87.9 -26.12.1988,8.1,6.4,7.25,0.1,108 -27.12.1988,8.2,4.5,6.35,0.4,60.5 -28.12.1988,8.5,3.8,6.15,0,45.2 -29.12.1988,9.8,1.7,5.75,0,38.8 -30.12.1988,4.4,0.7,2.55,0.1,34 -31.12.1988,4.8,3.1,3.95,0.3,30.5 diff --git a/spotpy/examples/cmf_data/soilmoisture_site24.csv b/spotpy/examples/cmf_data/soilmoisture_site24.csv deleted file mode 100644 index 04e28add..00000000 --- a/spotpy/examples/cmf_data/soilmoisture_site24.csv +++ /dev/null @@ -1,26312 +0,0 @@ -# time,soil_moisture_10cm,soil_moisture_25cm,soil_moisture_40cm -# -# A dataset containing data for a soil moisture profile at the Vollnkrichner Bach near Vollnkirchen, Hesse, Germany -# The data is cortesey of the Chair of Landscape, Water and Biogeochemical Cycles, Justus-Liebig-University Gießen -# https://www.uni-giessen.de/faculties/f09/institutes/ilr/hydro -# This dataset can be used for any purpose with proper references in publications -# The data is provided AS IS with no guarantee of correctness -# -2014-01-01 00:00:00,0.253,0.318,0.344 -2014-01-01 01:00:00,0.253,0.317,0.344 -2014-01-01 02:00:00,0.253,0.344,0.344 -2014-01-01 03:00:00,0.253,0.349,0.344 -2014-01-01 04:00:00,0.253,0.345,0.344 -2014-01-01 05:00:00,0.253,0.34700000000000003,0.344 -2014-01-01 06:00:00,0.253,0.34700000000000003,0.344 -2014-01-01 07:00:00,0.252,0.34600000000000003,0.345 -2014-01-01 08:00:00,0.252,0.345,0.34600000000000003 -2014-01-01 09:00:00,0.252,0.34299999999999997,0.34600000000000003 -2014-01-01 10:00:00,0.252,0.341,0.34600000000000003 -2014-01-01 11:00:00,0.252,0.341,0.34600000000000003 -2014-01-01 12:00:00,0.252,0.341,0.345 -2014-01-01 13:00:00,0.252,0.34,0.345 -2014-01-01 14:00:00,0.253,0.33899999999999997,0.345 -2014-01-01 15:00:00,0.253,0.33899999999999997,0.344 -2014-01-01 16:00:00,0.253,0.33799999999999997,0.344 -2014-01-01 17:00:00,0.253,0.33799999999999997,0.344 -2014-01-01 18:00:00,0.253,0.33799999999999997,0.344 -2014-01-01 19:00:00,0.253,0.33799999999999997,0.344 -2014-01-01 20:00:00,0.253,0.33799999999999997,0.344 -2014-01-01 21:00:00,0.253,0.33799999999999997,0.344 -2014-01-01 22:00:00,0.253,0.337,0.344 -2014-01-01 23:00:00,0.253,0.336,0.344 -2014-01-02 00:00:00,0.253,0.33399999999999996,0.344 -2014-01-02 01:00:00,0.253,0.33399999999999996,0.344 -2014-01-02 02:00:00,0.253,0.33299999999999996,0.344 -2014-01-02 03:00:00,0.253,0.332,0.344 -2014-01-02 04:00:00,0.253,0.332,0.344 -2014-01-02 05:00:00,0.253,0.332,0.344 -2014-01-02 06:00:00,0.253,0.331,0.344 -2014-01-02 07:00:00,0.253,0.33,0.345 -2014-01-02 08:00:00,0.253,0.33,0.345 -2014-01-02 09:00:00,0.253,0.33,0.344 -2014-01-02 10:00:00,0.253,0.32899999999999996,0.344 -2014-01-02 11:00:00,0.253,0.32899999999999996,0.344 -2014-01-02 12:00:00,0.253,0.32899999999999996,0.344 -2014-01-02 13:00:00,0.253,0.32799999999999996,0.344 -2014-01-02 14:00:00,0.254,0.327,0.344 -2014-01-02 15:00:00,0.254,0.326,0.344 -2014-01-02 16:00:00,0.254,0.32899999999999996,0.344 -2014-01-02 17:00:00,0.254,0.326,0.344 -2014-01-02 18:00:00,0.254,0.326,0.344 -2014-01-02 19:00:00,0.254,0.325,0.344 -2014-01-02 20:00:00,0.254,0.326,0.344 -2014-01-02 21:00:00,0.254,0.327,0.344 -2014-01-02 22:00:00,0.254,0.326,0.344 -2014-01-02 23:00:00,0.254,0.325,0.344 -2014-01-03 00:00:00,0.253,0.324,0.344 -2014-01-03 01:00:00,0.253,0.322,0.344 -2014-01-03 02:00:00,0.253,0.322,0.34299999999999997 -2014-01-03 03:00:00,0.253,0.322,0.34299999999999997 -2014-01-03 04:00:00,0.253,0.322,0.344 -2014-01-03 05:00:00,0.253,0.322,0.344 -2014-01-03 06:00:00,0.253,0.322,0.344 -2014-01-03 07:00:00,0.253,0.321,0.344 -2014-01-03 08:00:00,0.253,0.321,0.34299999999999997 -2014-01-03 09:00:00,0.253,0.321,0.34299999999999997 -2014-01-03 10:00:00,0.253,0.322,0.344 -2014-01-03 11:00:00,0.252,0.322,0.34600000000000003 -2014-01-03 12:00:00,0.253,0.32299999999999995,0.345 -2014-01-03 13:00:00,0.253,0.32299999999999995,0.345 -2014-01-03 14:00:00,0.253,0.324,0.344 -2014-01-03 15:00:00,0.253,0.324,0.344 -2014-01-03 16:00:00,0.253,0.324,0.34299999999999997 -2014-01-03 17:00:00,0.253,0.324,0.34299999999999997 -2014-01-03 18:00:00,0.253,0.326,0.34299999999999997 -2014-01-03 19:00:00,0.253,0.322,0.34299999999999997 -2014-01-03 20:00:00,0.253,0.321,0.34299999999999997 -2014-01-03 21:00:00,0.253,0.34299999999999997,0.34299999999999997 -2014-01-03 22:00:00,0.253,0.344,0.34299999999999997 -2014-01-03 23:00:00,0.253,0.34600000000000003,0.34299999999999997 -2014-01-04 00:00:00,0.254,0.34299999999999997,0.34299999999999997 -2014-01-04 01:00:00,0.253,0.34299999999999997,0.34299999999999997 -2014-01-04 02:00:00,0.253,0.344,0.34299999999999997 -2014-01-04 03:00:00,0.253,0.345,0.34299999999999997 -2014-01-04 04:00:00,0.253,0.344,0.34299999999999997 -2014-01-04 05:00:00,0.253,0.344,0.34299999999999997 -2014-01-04 06:00:00,0.253,0.34299999999999997,0.34299999999999997 -2014-01-04 07:00:00,0.253,0.342,0.34299999999999997 -2014-01-04 08:00:00,0.253,0.341,0.34299999999999997 -2014-01-04 09:00:00,0.253,0.341,0.34299999999999997 -2014-01-04 10:00:00,0.253,0.33799999999999997,0.34299999999999997 -2014-01-04 11:00:00,0.253,0.33799999999999997,0.34299999999999997 -2014-01-04 12:00:00,0.253,0.337,0.34299999999999997 -2014-01-04 13:00:00,0.253,0.336,0.34299999999999997 -2014-01-04 14:00:00,0.253,0.33399999999999996,0.34299999999999997 -2014-01-04 15:00:00,0.253,0.33299999999999996,0.34299999999999997 -2014-01-04 16:00:00,0.253,0.332,0.34299999999999997 -2014-01-04 17:00:00,0.253,0.332,0.34299999999999997 -2014-01-04 18:00:00,0.253,0.331,0.34299999999999997 -2014-01-04 19:00:00,0.253,0.331,0.34299999999999997 -2014-01-04 20:00:00,0.253,0.331,0.34299999999999997 -2014-01-04 21:00:00,0.253,0.331,0.34299999999999997 -2014-01-04 22:00:00,0.253,0.331,0.34299999999999997 -2014-01-04 23:00:00,0.253,0.331,0.34299999999999997 -2014-01-05 00:00:00,0.253,0.331,0.34299999999999997 -2014-01-05 01:00:00,0.253,0.331,0.34299999999999997 -2014-01-05 02:00:00,0.253,0.327,0.34299999999999997 -2014-01-05 03:00:00,0.252,0.326,0.34299999999999997 -2014-01-05 04:00:00,0.252,0.326,0.34299999999999997 -2014-01-05 05:00:00,0.251,0.326,0.345 -2014-01-05 06:00:00,0.24600000000000002,0.326,0.34700000000000003 -2014-01-05 07:00:00,0.251,0.326,0.34700000000000003 -2014-01-05 08:00:00,0.255,0.324,0.34600000000000003 -2014-01-05 09:00:00,0.254,0.32299999999999995,0.34600000000000003 -2014-01-05 10:00:00,0.254,0.322,0.348 -2014-01-05 11:00:00,0.254,0.321,0.348 -2014-01-05 12:00:00,0.254,0.321,0.348 -2014-01-05 13:00:00,0.256,0.32,0.348 -2014-01-05 14:00:00,0.258,0.319,0.34700000000000003 -2014-01-05 15:00:00,0.259,0.319,0.34700000000000003 -2014-01-05 16:00:00,0.259,0.318,0.34600000000000003 -2014-01-05 17:00:00,0.259,0.317,0.34600000000000003 -2014-01-05 18:00:00,0.259,0.317,0.345 -2014-01-05 19:00:00,0.259,0.317,0.345 -2014-01-05 20:00:00,0.258,0.317,0.345 -2014-01-05 21:00:00,0.258,0.317,0.345 -2014-01-05 22:00:00,0.258,0.317,0.345 -2014-01-05 23:00:00,0.258,0.316,0.345 -2014-01-06 00:00:00,0.258,0.315,0.344 -2014-01-06 01:00:00,0.257,0.315,0.344 -2014-01-06 02:00:00,0.257,0.315,0.344 -2014-01-06 03:00:00,0.257,0.315,0.344 -2014-01-06 04:00:00,0.257,0.315,0.344 -2014-01-06 05:00:00,0.256,0.314,0.344 -2014-01-06 06:00:00,0.256,0.314,0.344 -2014-01-06 07:00:00,0.256,0.314,0.344 -2014-01-06 08:00:00,0.256,0.314,0.344 -2014-01-06 09:00:00,0.256,0.314,0.344 -2014-01-06 10:00:00,0.255,0.314,0.344 -2014-01-06 11:00:00,0.255,0.314,0.344 -2014-01-06 12:00:00,0.255,0.314,0.344 -2014-01-06 13:00:00,0.255,0.314,0.344 -2014-01-06 14:00:00,0.256,0.312,0.344 -2014-01-06 15:00:00,0.256,0.312,0.344 -2014-01-06 16:00:00,0.256,0.312,0.344 -2014-01-06 17:00:00,0.256,0.312,0.344 -2014-01-06 18:00:00,0.256,0.312,0.344 -2014-01-06 19:00:00,0.255,0.312,0.344 -2014-01-06 20:00:00,0.252,0.312,0.34600000000000003 -2014-01-06 21:00:00,0.249,0.312,0.34700000000000003 -2014-01-06 22:00:00,0.25,0.312,0.348 -2014-01-06 23:00:00,0.264,0.312,0.363 -2014-01-07 00:00:00,0.263,0.312,0.371 -2014-01-07 01:00:00,0.262,0.312,0.371 -2014-01-07 02:00:00,0.263,0.311,0.371 -2014-01-07 03:00:00,0.26,0.31,0.371 -2014-01-07 04:00:00,0.257,0.31,0.371 -2014-01-07 05:00:00,0.256,0.31,0.371 -2014-01-07 06:00:00,0.255,0.31,0.371 -2014-01-07 07:00:00,0.254,0.31,0.371 -2014-01-07 08:00:00,0.253,0.31,0.371 -2014-01-07 09:00:00,0.254,0.31,0.37 -2014-01-07 10:00:00,0.256,0.31,0.36700000000000005 -2014-01-07 11:00:00,0.259,0.31,0.361 -2014-01-07 12:00:00,0.259,0.31,0.36 -2014-01-07 13:00:00,0.259,0.31,0.359 -2014-01-07 14:00:00,0.259,0.31,0.359 -2014-01-07 15:00:00,0.259,0.31,0.359 -2014-01-07 16:00:00,0.259,0.31,0.358 -2014-01-07 17:00:00,0.259,0.31,0.358 -2014-01-07 18:00:00,0.259,0.31,0.35700000000000004 -2014-01-07 19:00:00,0.259,0.31,0.35700000000000004 -2014-01-07 20:00:00,0.259,0.31,0.35700000000000004 -2014-01-07 21:00:00,0.259,0.31,0.35700000000000004 -2014-01-07 22:00:00,0.258,0.31,0.35600000000000004 -2014-01-07 23:00:00,0.258,0.31,0.355 -2014-01-08 00:00:00,0.258,0.31,0.354 -2014-01-08 01:00:00,0.258,0.31,0.354 -2014-01-08 02:00:00,0.258,0.31,0.353 -2014-01-08 03:00:00,0.258,0.31,0.353 -2014-01-08 04:00:00,0.258,0.31,0.35200000000000004 -2014-01-08 05:00:00,0.257,0.31,0.353 -2014-01-08 06:00:00,0.257,0.31,0.353 -2014-01-08 07:00:00,0.257,0.31,0.353 -2014-01-08 08:00:00,0.258,0.31,0.35200000000000004 -2014-01-08 09:00:00,0.258,0.31,0.35200000000000004 -2014-01-08 10:00:00,0.258,0.31,0.35100000000000003 -2014-01-08 11:00:00,0.257,0.309,0.35 -2014-01-08 12:00:00,0.257,0.309,0.35 -2014-01-08 13:00:00,0.257,0.309,0.35 -2014-01-08 14:00:00,0.257,0.309,0.349 -2014-01-08 15:00:00,0.257,0.309,0.349 -2014-01-08 16:00:00,0.257,0.309,0.349 -2014-01-08 17:00:00,0.257,0.309,0.349 -2014-01-08 18:00:00,0.257,0.309,0.349 -2014-01-08 19:00:00,0.257,0.309,0.349 -2014-01-08 20:00:00,0.257,0.309,0.348 -2014-01-08 21:00:00,0.257,0.309,0.348 -2014-01-08 22:00:00,0.256,0.309,0.348 -2014-01-08 23:00:00,0.256,0.309,0.348 -2014-01-09 00:00:00,0.256,0.309,0.348 -2014-01-09 01:00:00,0.256,0.309,0.348 -2014-01-09 02:00:00,0.255,0.309,0.348 -2014-01-09 03:00:00,0.25,0.309,0.35100000000000003 -2014-01-09 04:00:00,0.249,0.309,0.35100000000000003 -2014-01-09 05:00:00,0.249,0.309,0.35100000000000003 -2014-01-09 06:00:00,0.25,0.309,0.35100000000000003 -2014-01-09 07:00:00,0.25,0.309,0.35 -2014-01-09 08:00:00,0.25,0.309,0.35 -2014-01-09 09:00:00,0.251,0.309,0.35 -2014-01-09 10:00:00,0.251,0.309,0.35 -2014-01-09 11:00:00,0.253,0.308,0.35 -2014-01-09 12:00:00,0.256,0.307,0.349 -2014-01-09 13:00:00,0.258,0.307,0.348 -2014-01-09 14:00:00,0.258,0.307,0.348 -2014-01-09 15:00:00,0.258,0.307,0.348 -2014-01-09 16:00:00,0.255,0.307,0.349 -2014-01-09 17:00:00,0.259,0.307,0.35200000000000004 -2014-01-09 18:00:00,0.263,0.307,0.364 -2014-01-09 19:00:00,0.259,0.307,0.361 -2014-01-09 20:00:00,0.257,0.307,0.359 -2014-01-09 21:00:00,0.256,0.307,0.359 -2014-01-09 22:00:00,0.255,0.307,0.358 -2014-01-09 23:00:00,0.255,0.309,0.35700000000000004 -2014-01-10 00:00:00,0.258,0.308,0.35700000000000004 -2014-01-10 01:00:00,0.261,0.307,0.35600000000000004 -2014-01-10 02:00:00,0.261,0.307,0.355 -2014-01-10 03:00:00,0.261,0.307,0.355 -2014-01-10 04:00:00,0.26,0.307,0.354 -2014-01-10 05:00:00,0.26,0.307,0.354 -2014-01-10 06:00:00,0.259,0.306,0.354 -2014-01-10 07:00:00,0.259,0.305,0.353 -2014-01-10 08:00:00,0.259,0.304,0.353 -2014-01-10 09:00:00,0.259,0.304,0.353 -2014-01-10 10:00:00,0.258,0.304,0.353 -2014-01-10 11:00:00,0.258,0.304,0.353 -2014-01-10 12:00:00,0.258,0.305,0.35200000000000004 -2014-01-10 13:00:00,0.258,0.305,0.35200000000000004 -2014-01-10 14:00:00,0.258,0.307,0.35200000000000004 -2014-01-10 15:00:00,0.258,0.307,0.35200000000000004 -2014-01-10 16:00:00,0.257,0.309,0.35200000000000004 -2014-01-10 17:00:00,0.257,0.31,0.35100000000000003 -2014-01-10 18:00:00,0.257,0.31,0.35100000000000003 -2014-01-10 19:00:00,0.257,0.312,0.35100000000000003 -2014-01-10 20:00:00,0.257,0.311,0.35100000000000003 -2014-01-10 21:00:00,0.257,0.312,0.35 -2014-01-10 22:00:00,0.257,0.31,0.35 -2014-01-10 23:00:00,0.257,0.31,0.35 -2014-01-11 00:00:00,0.256,0.312,0.35 -2014-01-11 01:00:00,0.256,0.315,0.35 -2014-01-11 02:00:00,0.256,0.313,0.349 -2014-01-11 03:00:00,0.256,0.332,0.349 -2014-01-11 04:00:00,0.256,0.33899999999999997,0.349 -2014-01-11 05:00:00,0.256,0.33799999999999997,0.349 -2014-01-11 06:00:00,0.255,0.33799999999999997,0.349 -2014-01-11 07:00:00,0.255,0.33799999999999997,0.349 -2014-01-11 08:00:00,0.255,0.33899999999999997,0.349 -2014-01-11 09:00:00,0.255,0.33899999999999997,0.349 -2014-01-11 10:00:00,0.255,0.33799999999999997,0.348 -2014-01-11 11:00:00,0.255,0.33799999999999997,0.349 -2014-01-11 12:00:00,0.255,0.33799999999999997,0.349 -2014-01-11 13:00:00,0.255,0.337,0.349 -2014-01-11 14:00:00,0.254,0.337,0.349 -2014-01-11 15:00:00,0.254,0.336,0.348 -2014-01-11 16:00:00,0.254,0.336,0.348 -2014-01-11 17:00:00,0.254,0.336,0.348 -2014-01-11 18:00:00,0.254,0.33399999999999996,0.349 -2014-01-11 19:00:00,0.254,0.33399999999999996,0.35 -2014-01-11 20:00:00,0.254,0.332,0.349 -2014-01-11 21:00:00,0.255,0.331,0.349 -2014-01-11 22:00:00,0.255,0.331,0.349 -2014-01-11 23:00:00,0.254,0.32899999999999996,0.349 -2014-01-12 00:00:00,0.254,0.32799999999999996,0.349 -2014-01-12 01:00:00,0.254,0.327,0.348 -2014-01-12 02:00:00,0.254,0.326,0.348 -2014-01-12 03:00:00,0.254,0.326,0.348 -2014-01-12 04:00:00,0.254,0.324,0.348 -2014-01-12 05:00:00,0.254,0.324,0.348 -2014-01-12 06:00:00,0.254,0.32299999999999995,0.348 -2014-01-12 07:00:00,0.254,0.322,0.348 -2014-01-12 08:00:00,0.254,0.322,0.348 -2014-01-12 09:00:00,0.254,0.321,0.34700000000000003 -2014-01-12 10:00:00,0.253,0.321,0.34700000000000003 -2014-01-12 11:00:00,0.253,0.321,0.34700000000000003 -2014-01-12 12:00:00,0.253,0.321,0.34700000000000003 -2014-01-12 13:00:00,0.253,0.319,0.34700000000000003 -2014-01-12 14:00:00,0.253,0.318,0.34700000000000003 -2014-01-12 15:00:00,0.253,0.317,0.34700000000000003 -2014-01-12 16:00:00,0.253,0.317,0.34700000000000003 -2014-01-12 17:00:00,0.253,0.317,0.34600000000000003 -2014-01-12 18:00:00,0.253,0.317,0.34600000000000003 -2014-01-12 19:00:00,0.253,0.317,0.34600000000000003 -2014-01-12 20:00:00,0.253,0.316,0.34600000000000003 -2014-01-12 21:00:00,0.253,0.316,0.34600000000000003 -2014-01-12 22:00:00,0.253,0.315,0.34600000000000003 -2014-01-12 23:00:00,0.253,0.315,0.34600000000000003 -2014-01-13 00:00:00,0.253,0.315,0.34600000000000003 -2014-01-13 01:00:00,0.253,0.315,0.34600000000000003 -2014-01-13 02:00:00,0.252,0.315,0.34600000000000003 -2014-01-13 03:00:00,0.252,0.314,0.34600000000000003 -2014-01-13 04:00:00,0.252,0.314,0.34600000000000003 -2014-01-13 05:00:00,0.252,0.314,0.34600000000000003 -2014-01-13 06:00:00,0.252,0.314,0.34600000000000003 -2014-01-13 07:00:00,0.252,0.314,0.34600000000000003 -2014-01-13 08:00:00,0.252,0.314,0.34600000000000003 -2014-01-13 09:00:00,0.252,0.313,0.34600000000000003 -2014-01-13 10:00:00,0.252,0.313,0.34700000000000003 -2014-01-13 11:00:00,0.252,0.312,0.348 -2014-01-13 12:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 13:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 14:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 15:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 16:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 17:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 18:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 19:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 20:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 21:00:00,0.252,0.312,0.34700000000000003 -2014-01-13 22:00:00,0.252,0.31,0.34700000000000003 -2014-01-13 23:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 00:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 01:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 02:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 03:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 04:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 05:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 06:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 07:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 08:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 09:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 10:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 11:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 12:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 13:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 14:00:00,0.252,0.31,0.34700000000000003 -2014-01-14 15:00:00,0.252,0.31,0.34600000000000003 -2014-01-14 16:00:00,0.252,0.31,0.34600000000000003 -2014-01-14 17:00:00,0.252,0.31,0.34600000000000003 -2014-01-14 18:00:00,0.252,0.31,0.34600000000000003 -2014-01-14 19:00:00,0.252,0.31,0.34600000000000003 -2014-01-14 20:00:00,0.252,0.309,0.34600000000000003 -2014-01-14 21:00:00,0.252,0.309,0.34600000000000003 -2014-01-14 22:00:00,0.252,0.309,0.34600000000000003 -2014-01-14 23:00:00,0.252,0.309,0.34600000000000003 -2014-01-15 00:00:00,0.252,0.309,0.34600000000000003 -2014-01-15 01:00:00,0.252,0.309,0.345 -2014-01-15 02:00:00,0.252,0.309,0.34600000000000003 -2014-01-15 03:00:00,0.252,0.309,0.34600000000000003 -2014-01-15 04:00:00,0.252,0.309,0.34600000000000003 -2014-01-15 05:00:00,0.252,0.309,0.34600000000000003 -2014-01-15 06:00:00,0.252,0.308,0.34600000000000003 -2014-01-15 07:00:00,0.252,0.308,0.34600000000000003 -2014-01-15 08:00:00,0.252,0.306,0.345 -2014-01-15 09:00:00,0.252,0.307,0.345 -2014-01-15 10:00:00,0.252,0.336,0.345 -2014-01-15 11:00:00,0.252,0.337,0.345 -2014-01-15 12:00:00,0.251,0.336,0.345 -2014-01-15 13:00:00,0.251,0.33799999999999997,0.345 -2014-01-15 14:00:00,0.251,0.33799999999999997,0.345 -2014-01-15 15:00:00,0.251,0.341,0.345 -2014-01-15 16:00:00,0.252,0.345,0.345 -2014-01-15 17:00:00,0.252,0.349,0.345 -2014-01-15 18:00:00,0.252,0.348,0.345 -2014-01-15 19:00:00,0.252,0.34600000000000003,0.34600000000000003 -2014-01-15 20:00:00,0.252,0.344,0.34700000000000003 -2014-01-15 21:00:00,0.252,0.34299999999999997,0.34700000000000003 -2014-01-15 22:00:00,0.252,0.341,0.34700000000000003 -2014-01-15 23:00:00,0.252,0.34,0.34700000000000003 -2014-01-16 00:00:00,0.251,0.33899999999999997,0.34700000000000003 -2014-01-16 01:00:00,0.25,0.33799999999999997,0.34700000000000003 -2014-01-16 02:00:00,0.248,0.337,0.348 -2014-01-16 03:00:00,0.245,0.336,0.348 -2014-01-16 04:00:00,0.245,0.33399999999999996,0.348 -2014-01-16 05:00:00,0.245,0.33399999999999996,0.348 -2014-01-16 06:00:00,0.245,0.332,0.349 -2014-01-16 07:00:00,0.24600000000000002,0.332,0.349 -2014-01-16 08:00:00,0.248,0.331,0.349 -2014-01-16 09:00:00,0.251,0.33,0.349 -2014-01-16 10:00:00,0.251,0.32899999999999996,0.349 -2014-01-16 11:00:00,0.251,0.327,0.349 -2014-01-16 12:00:00,0.251,0.327,0.348 -2014-01-16 13:00:00,0.251,0.326,0.348 -2014-01-16 14:00:00,0.251,0.326,0.348 -2014-01-16 15:00:00,0.251,0.326,0.348 -2014-01-16 16:00:00,0.251,0.325,0.348 -2014-01-16 17:00:00,0.252,0.325,0.348 -2014-01-16 18:00:00,0.251,0.324,0.348 -2014-01-16 19:00:00,0.252,0.324,0.349 -2014-01-16 20:00:00,0.253,0.324,0.349 -2014-01-16 21:00:00,0.254,0.32299999999999995,0.349 -2014-01-16 22:00:00,0.254,0.322,0.349 -2014-01-16 23:00:00,0.258,0.322,0.349 -2014-01-17 00:00:00,0.259,0.321,0.349 -2014-01-17 01:00:00,0.257,0.321,0.35 -2014-01-17 02:00:00,0.257,0.321,0.35100000000000003 -2014-01-17 03:00:00,0.255,0.321,0.35 -2014-01-17 04:00:00,0.254,0.321,0.35 -2014-01-17 05:00:00,0.253,0.32,0.35 -2014-01-17 06:00:00,0.253,0.319,0.349 -2014-01-17 07:00:00,0.252,0.319,0.349 -2014-01-17 08:00:00,0.253,0.319,0.349 -2014-01-17 09:00:00,0.254,0.318,0.348 -2014-01-17 10:00:00,0.255,0.317,0.348 -2014-01-17 11:00:00,0.258,0.317,0.348 -2014-01-17 12:00:00,0.259,0.317,0.34700000000000003 -2014-01-17 13:00:00,0.259,0.317,0.34700000000000003 -2014-01-17 14:00:00,0.259,0.317,0.34700000000000003 -2014-01-17 15:00:00,0.259,0.316,0.34700000000000003 -2014-01-17 16:00:00,0.259,0.316,0.34600000000000003 -2014-01-17 17:00:00,0.259,0.315,0.34600000000000003 -2014-01-17 18:00:00,0.258,0.315,0.34600000000000003 -2014-01-17 19:00:00,0.258,0.315,0.34600000000000003 -2014-01-17 20:00:00,0.258,0.315,0.34600000000000003 -2014-01-17 21:00:00,0.258,0.315,0.34600000000000003 -2014-01-17 22:00:00,0.258,0.315,0.34600000000000003 -2014-01-17 23:00:00,0.258,0.31,0.34600000000000003 -2014-01-18 00:00:00,0.257,0.308,0.34600000000000003 -2014-01-18 01:00:00,0.257,0.309,0.34600000000000003 -2014-01-18 02:00:00,0.257,0.313,0.34600000000000003 -2014-01-18 03:00:00,0.257,0.32,0.34600000000000003 -2014-01-18 04:00:00,0.256,0.324,0.34600000000000003 -2014-01-18 05:00:00,0.256,0.326,0.34600000000000003 -2014-01-18 06:00:00,0.256,0.326,0.34600000000000003 -2014-01-18 07:00:00,0.256,0.326,0.34600000000000003 -2014-01-18 08:00:00,0.256,0.32799999999999996,0.34600000000000003 -2014-01-18 09:00:00,0.256,0.326,0.34600000000000003 -2014-01-18 10:00:00,0.256,0.331,0.34700000000000003 -2014-01-18 11:00:00,0.255,0.337,0.34700000000000003 -2014-01-18 12:00:00,0.255,0.337,0.34700000000000003 -2014-01-18 13:00:00,0.255,0.335,0.34700000000000003 -2014-01-18 14:00:00,0.255,0.335,0.34700000000000003 -2014-01-18 15:00:00,0.255,0.33399999999999996,0.34700000000000003 -2014-01-18 16:00:00,0.255,0.33399999999999996,0.34700000000000003 -2014-01-18 17:00:00,0.255,0.33399999999999996,0.34700000000000003 -2014-01-18 18:00:00,0.255,0.335,0.34600000000000003 -2014-01-18 19:00:00,0.255,0.33399999999999996,0.34600000000000003 -2014-01-18 20:00:00,0.255,0.33399999999999996,0.34600000000000003 -2014-01-18 21:00:00,0.255,0.33299999999999996,0.34600000000000003 -2014-01-18 22:00:00,0.254,0.332,0.34600000000000003 -2014-01-18 23:00:00,0.254,0.331,0.34700000000000003 -2014-01-19 00:00:00,0.254,0.33,0.34600000000000003 -2014-01-19 01:00:00,0.254,0.32899999999999996,0.34600000000000003 -2014-01-19 02:00:00,0.254,0.327,0.34600000000000003 -2014-01-19 03:00:00,0.254,0.326,0.34600000000000003 -2014-01-19 04:00:00,0.254,0.324,0.34700000000000003 -2014-01-19 05:00:00,0.254,0.322,0.34700000000000003 -2014-01-19 06:00:00,0.254,0.319,0.34700000000000003 -2014-01-19 07:00:00,0.254,0.319,0.34700000000000003 -2014-01-19 08:00:00,0.253,0.319,0.34700000000000003 -2014-01-19 09:00:00,0.253,0.32,0.34700000000000003 -2014-01-19 10:00:00,0.253,0.321,0.34700000000000003 -2014-01-19 11:00:00,0.253,0.322,0.34700000000000003 -2014-01-19 12:00:00,0.253,0.321,0.34700000000000003 -2014-01-19 13:00:00,0.253,0.321,0.34600000000000003 -2014-01-19 14:00:00,0.253,0.321,0.34600000000000003 -2014-01-19 15:00:00,0.254,0.319,0.34600000000000003 -2014-01-19 16:00:00,0.254,0.317,0.34600000000000003 -2014-01-19 17:00:00,0.254,0.317,0.34600000000000003 -2014-01-19 18:00:00,0.253,0.317,0.34600000000000003 -2014-01-19 19:00:00,0.254,0.318,0.34600000000000003 -2014-01-19 20:00:00,0.253,0.318,0.34600000000000003 -2014-01-19 21:00:00,0.253,0.318,0.34600000000000003 -2014-01-19 22:00:00,0.253,0.317,0.34600000000000003 -2014-01-19 23:00:00,0.253,0.317,0.34600000000000003 -2014-01-20 00:00:00,0.253,0.317,0.34600000000000003 -2014-01-20 01:00:00,0.253,0.317,0.34600000000000003 -2014-01-20 02:00:00,0.253,0.317,0.34600000000000003 -2014-01-20 03:00:00,0.253,0.315,0.34600000000000003 -2014-01-20 04:00:00,0.253,0.308,0.34600000000000003 -2014-01-20 05:00:00,0.253,0.3,0.34600000000000003 -2014-01-20 06:00:00,0.253,0.301,0.34600000000000003 -2014-01-20 07:00:00,0.253,0.304,0.34600000000000003 -2014-01-20 08:00:00,0.253,0.309,0.34600000000000003 -2014-01-20 09:00:00,0.253,0.326,0.345 -2014-01-20 10:00:00,0.253,0.33899999999999997,0.345 -2014-01-20 11:00:00,0.253,0.344,0.345 -2014-01-20 12:00:00,0.253,0.344,0.345 -2014-01-20 13:00:00,0.253,0.34299999999999997,0.345 -2014-01-20 14:00:00,0.253,0.34299999999999997,0.345 -2014-01-20 15:00:00,0.253,0.34299999999999997,0.345 -2014-01-20 16:00:00,0.253,0.34299999999999997,0.345 -2014-01-20 17:00:00,0.253,0.34299999999999997,0.345 -2014-01-20 18:00:00,0.253,0.34299999999999997,0.345 -2014-01-20 19:00:00,0.253,0.341,0.345 -2014-01-20 20:00:00,0.253,0.34,0.345 -2014-01-20 21:00:00,0.253,0.33899999999999997,0.345 -2014-01-20 22:00:00,0.252,0.33799999999999997,0.345 -2014-01-20 23:00:00,0.253,0.33799999999999997,0.345 -2014-01-21 00:00:00,0.253,0.33799999999999997,0.345 -2014-01-21 01:00:00,0.252,0.335,0.345 -2014-01-21 02:00:00,0.252,0.326,0.345 -2014-01-21 03:00:00,0.252,0.32799999999999996,0.345 -2014-01-21 04:00:00,0.252,0.33799999999999997,0.34600000000000003 -2014-01-21 05:00:00,0.24600000000000002,0.33799999999999997,0.348 -2014-01-21 06:00:00,0.256,0.33899999999999997,0.349 -2014-01-21 07:00:00,0.257,0.33899999999999997,0.35 -2014-01-21 08:00:00,0.256,0.33799999999999997,0.35100000000000003 -2014-01-21 09:00:00,0.257,0.33799999999999997,0.353 -2014-01-21 10:00:00,0.257,0.34,0.354 -2014-01-21 11:00:00,0.257,0.34,0.355 -2014-01-21 12:00:00,0.257,0.34,0.355 -2014-01-21 13:00:00,0.259,0.33899999999999997,0.358 -2014-01-21 14:00:00,0.259,0.33899999999999997,0.36200000000000004 -2014-01-21 15:00:00,0.257,0.341,0.36200000000000004 -2014-01-21 16:00:00,0.255,0.34299999999999997,0.363 -2014-01-21 17:00:00,0.254,0.34299999999999997,0.366 -2014-01-21 18:00:00,0.255,0.344,0.37 -2014-01-21 19:00:00,0.254,0.344,0.375 -2014-01-21 20:00:00,0.254,0.34299999999999997,0.37799999999999995 -2014-01-21 21:00:00,0.254,0.34299999999999997,0.38 -2014-01-21 22:00:00,0.254,0.341,0.379 -2014-01-21 23:00:00,0.254,0.341,0.37799999999999995 -2014-01-22 00:00:00,0.254,0.33899999999999997,0.377 -2014-01-22 01:00:00,0.254,0.33799999999999997,0.375 -2014-01-22 02:00:00,0.254,0.33799999999999997,0.374 -2014-01-22 03:00:00,0.254,0.33799999999999997,0.37200000000000005 -2014-01-22 04:00:00,0.254,0.337,0.371 -2014-01-22 05:00:00,0.254,0.336,0.37 -2014-01-22 06:00:00,0.254,0.33399999999999996,0.369 -2014-01-22 07:00:00,0.254,0.33399999999999996,0.36700000000000005 -2014-01-22 08:00:00,0.254,0.33399999999999996,0.36700000000000005 -2014-01-22 09:00:00,0.254,0.332,0.366 -2014-01-22 10:00:00,0.254,0.332,0.366 -2014-01-22 11:00:00,0.254,0.331,0.365 -2014-01-22 12:00:00,0.255,0.331,0.364 -2014-01-22 13:00:00,0.255,0.33,0.364 -2014-01-22 14:00:00,0.256,0.32899999999999996,0.36200000000000004 -2014-01-22 15:00:00,0.256,0.32899999999999996,0.36200000000000004 -2014-01-22 16:00:00,0.256,0.327,0.361 -2014-01-22 17:00:00,0.256,0.327,0.36 -2014-01-22 18:00:00,0.256,0.327,0.36 -2014-01-22 19:00:00,0.256,0.327,0.359 -2014-01-22 20:00:00,0.256,0.326,0.358 -2014-01-22 21:00:00,0.256,0.326,0.358 -2014-01-22 22:00:00,0.256,0.326,0.35700000000000004 -2014-01-22 23:00:00,0.256,0.324,0.35600000000000004 -2014-01-23 00:00:00,0.256,0.324,0.35600000000000004 -2014-01-23 01:00:00,0.255,0.324,0.35600000000000004 -2014-01-23 02:00:00,0.255,0.324,0.355 -2014-01-23 03:00:00,0.255,0.324,0.355 -2014-01-23 04:00:00,0.255,0.32299999999999995,0.354 -2014-01-23 05:00:00,0.255,0.322,0.354 -2014-01-23 06:00:00,0.255,0.322,0.354 -2014-01-23 07:00:00,0.255,0.322,0.353 -2014-01-23 08:00:00,0.255,0.322,0.353 -2014-01-23 09:00:00,0.255,0.322,0.353 -2014-01-23 10:00:00,0.255,0.321,0.353 -2014-01-23 11:00:00,0.254,0.321,0.35200000000000004 -2014-01-23 12:00:00,0.254,0.321,0.35200000000000004 -2014-01-23 13:00:00,0.254,0.321,0.35200000000000004 -2014-01-23 14:00:00,0.255,0.321,0.35200000000000004 -2014-01-23 15:00:00,0.255,0.321,0.35100000000000003 -2014-01-23 16:00:00,0.255,0.32,0.35100000000000003 -2014-01-23 17:00:00,0.255,0.32,0.35100000000000003 -2014-01-23 18:00:00,0.255,0.319,0.35100000000000003 -2014-01-23 19:00:00,0.255,0.319,0.35100000000000003 -2014-01-23 20:00:00,0.25,0.319,0.353 -2014-01-23 21:00:00,0.25,0.319,0.353 -2014-01-23 22:00:00,0.255,0.319,0.353 -2014-01-23 23:00:00,0.255,0.319,0.353 -2014-01-24 00:00:00,0.254,0.318,0.353 -2014-01-24 01:00:00,0.254,0.317,0.353 -2014-01-24 02:00:00,0.254,0.317,0.354 -2014-01-24 03:00:00,0.254,0.317,0.354 -2014-01-24 04:00:00,0.254,0.317,0.354 -2014-01-24 05:00:00,0.254,0.317,0.354 -2014-01-24 06:00:00,0.255,0.317,0.355 -2014-01-24 07:00:00,0.257,0.317,0.355 -2014-01-24 08:00:00,0.257,0.316,0.355 -2014-01-24 09:00:00,0.256,0.316,0.35600000000000004 -2014-01-24 10:00:00,0.255,0.315,0.35600000000000004 -2014-01-24 11:00:00,0.255,0.315,0.35600000000000004 -2014-01-24 12:00:00,0.254,0.315,0.35600000000000004 -2014-01-24 13:00:00,0.254,0.315,0.35600000000000004 -2014-01-24 14:00:00,0.254,0.315,0.355 -2014-01-24 15:00:00,0.255,0.315,0.355 -2014-01-24 16:00:00,0.255,0.315,0.355 -2014-01-24 17:00:00,0.256,0.315,0.355 -2014-01-24 18:00:00,0.256,0.315,0.355 -2014-01-24 19:00:00,0.255,0.314,0.355 -2014-01-24 20:00:00,0.255,0.314,0.355 -2014-01-24 21:00:00,0.255,0.314,0.355 -2014-01-24 22:00:00,0.255,0.314,0.355 -2014-01-24 23:00:00,0.254,0.314,0.355 -2014-01-25 00:00:00,0.253,0.314,0.355 -2014-01-25 01:00:00,0.252,0.314,0.355 -2014-01-25 02:00:00,0.252,0.314,0.355 -2014-01-25 03:00:00,0.252,0.314,0.355 -2014-01-25 04:00:00,0.253,0.313,0.355 -2014-01-25 05:00:00,0.253,0.313,0.354 -2014-01-25 06:00:00,0.253,0.313,0.354 -2014-01-25 07:00:00,0.255,0.313,0.354 -2014-01-25 08:00:00,0.257,0.313,0.353 -2014-01-25 09:00:00,0.257,0.313,0.353 -2014-01-25 10:00:00,0.257,0.313,0.353 -2014-01-25 11:00:00,0.256,0.312,0.353 -2014-01-25 12:00:00,0.255,0.312,0.353 -2014-01-25 13:00:00,0.255,0.312,0.353 -2014-01-25 14:00:00,0.255,0.312,0.353 -2014-01-25 15:00:00,0.256,0.312,0.353 -2014-01-25 16:00:00,0.256,0.312,0.35200000000000004 -2014-01-25 17:00:00,0.256,0.312,0.35200000000000004 -2014-01-25 18:00:00,0.256,0.312,0.35200000000000004 -2014-01-25 19:00:00,0.256,0.312,0.35200000000000004 -2014-01-25 20:00:00,0.256,0.312,0.35200000000000004 -2014-01-25 21:00:00,0.256,0.312,0.35200000000000004 -2014-01-25 22:00:00,0.256,0.312,0.35200000000000004 -2014-01-25 23:00:00,0.255,0.312,0.35200000000000004 -2014-01-26 00:00:00,0.25,0.311,0.353 -2014-01-26 01:00:00,0.25,0.311,0.354 -2014-01-26 02:00:00,0.25,0.31,0.355 -2014-01-26 03:00:00,0.25,0.31,0.355 -2014-01-26 04:00:00,0.25,0.31,0.355 -2014-01-26 05:00:00,0.251,0.311,0.355 -2014-01-26 06:00:00,0.253,0.311,0.35600000000000004 -2014-01-26 07:00:00,0.257,0.31,0.359 -2014-01-26 08:00:00,0.257,0.31,0.363 -2014-01-26 09:00:00,0.256,0.31,0.365 -2014-01-26 10:00:00,0.255,0.31,0.366 -2014-01-26 11:00:00,0.255,0.31,0.37 -2014-01-26 12:00:00,0.256,0.31,0.375 -2014-01-26 13:00:00,0.258,0.31,0.37799999999999995 -2014-01-26 14:00:00,0.26,0.31,0.38 -2014-01-26 15:00:00,0.26,0.31,0.382 -2014-01-26 16:00:00,0.26,0.31,0.38299999999999995 -2014-01-26 17:00:00,0.26,0.31,0.38299999999999995 -2014-01-26 18:00:00,0.26,0.31,0.38299999999999995 -2014-01-26 19:00:00,0.259,0.307,0.38299999999999995 -2014-01-26 20:00:00,0.259,0.304,0.384 -2014-01-26 21:00:00,0.259,0.308,0.384 -2014-01-26 22:00:00,0.255,0.321,0.386 -2014-01-26 23:00:00,0.252,0.33399999999999996,0.387 -2014-01-27 00:00:00,0.261,0.33799999999999997,0.39 -2014-01-27 01:00:00,0.261,0.33799999999999997,0.392 -2014-01-27 02:00:00,0.26,0.33799999999999997,0.391 -2014-01-27 03:00:00,0.259,0.33799999999999997,0.391 -2014-01-27 04:00:00,0.258,0.33799999999999997,0.392 -2014-01-27 05:00:00,0.258,0.337,0.39299999999999996 -2014-01-27 06:00:00,0.258,0.335,0.39299999999999996 -2014-01-27 07:00:00,0.257,0.33399999999999996,0.39299999999999996 -2014-01-27 08:00:00,0.256,0.332,0.39399999999999996 -2014-01-27 09:00:00,0.254,0.331,0.39399999999999996 -2014-01-27 10:00:00,0.253,0.32799999999999996,0.39399999999999996 -2014-01-27 11:00:00,0.252,0.326,0.39399999999999996 -2014-01-27 12:00:00,0.253,0.326,0.39399999999999996 -2014-01-27 13:00:00,0.256,0.325,0.39399999999999996 -2014-01-27 14:00:00,0.259,0.325,0.39399999999999996 -2014-01-27 15:00:00,0.261,0.326,0.395 -2014-01-27 16:00:00,0.262,0.326,0.395 -2014-01-27 17:00:00,0.261,0.326,0.395 -2014-01-27 18:00:00,0.261,0.324,0.395 -2014-01-27 19:00:00,0.26,0.324,0.395 -2014-01-27 20:00:00,0.26,0.322,0.395 -2014-01-27 21:00:00,0.26,0.322,0.395 -2014-01-27 22:00:00,0.26,0.322,0.395 -2014-01-27 23:00:00,0.26,0.321,0.395 -2014-01-28 00:00:00,0.259,0.321,0.395 -2014-01-28 01:00:00,0.259,0.321,0.395 -2014-01-28 02:00:00,0.259,0.321,0.395 -2014-01-28 03:00:00,0.259,0.319,0.395 -2014-01-28 04:00:00,0.259,0.319,0.395 -2014-01-28 05:00:00,0.259,0.319,0.395 -2014-01-28 06:00:00,0.258,0.317,0.395 -2014-01-28 07:00:00,0.258,0.317,0.395 -2014-01-28 08:00:00,0.258,0.317,0.395 -2014-01-28 09:00:00,0.258,0.317,0.395 -2014-01-28 10:00:00,0.258,0.316,0.395 -2014-01-28 11:00:00,0.258,0.315,0.395 -2014-01-28 12:00:00,0.258,0.315,0.395 -2014-01-28 13:00:00,0.258,0.315,0.396 -2014-01-28 14:00:00,0.258,0.314,0.395 -2014-01-28 15:00:00,0.257,0.314,0.396 -2014-01-28 16:00:00,0.257,0.314,0.396 -2014-01-28 17:00:00,0.257,0.314,0.396 -2014-01-28 18:00:00,0.258,0.314,0.396 -2014-01-28 19:00:00,0.257,0.314,0.396 -2014-01-28 20:00:00,0.257,0.314,0.396 -2014-01-28 21:00:00,0.257,0.314,0.396 -2014-01-28 22:00:00,0.257,0.314,0.396 -2014-01-28 23:00:00,0.256,0.314,0.396 -2014-01-29 00:00:00,0.256,0.314,0.396 -2014-01-29 01:00:00,0.256,0.314,0.396 -2014-01-29 02:00:00,0.256,0.314,0.396 -2014-01-29 03:00:00,0.256,0.314,0.396 -2014-01-29 04:00:00,0.256,0.314,0.396 -2014-01-29 05:00:00,0.256,0.314,0.396 -2014-01-29 06:00:00,0.256,0.314,0.396 -2014-01-29 07:00:00,0.255,0.314,0.396 -2014-01-29 08:00:00,0.255,0.314,0.395 -2014-01-29 09:00:00,0.255,0.313,0.395 -2014-01-29 10:00:00,0.255,0.313,0.395 -2014-01-29 11:00:00,0.255,0.313,0.395 -2014-01-29 12:00:00,0.255,0.312,0.395 -2014-01-29 13:00:00,0.255,0.312,0.395 -2014-01-29 14:00:00,0.255,0.312,0.395 -2014-01-29 15:00:00,0.255,0.312,0.39399999999999996 -2014-01-29 16:00:00,0.255,0.312,0.39399999999999996 -2014-01-29 17:00:00,0.255,0.312,0.39399999999999996 -2014-01-29 18:00:00,0.255,0.312,0.39399999999999996 -2014-01-29 19:00:00,0.255,0.312,0.39399999999999996 -2014-01-29 20:00:00,0.255,0.312,0.39399999999999996 -2014-01-29 21:00:00,0.255,0.312,0.39299999999999996 -2014-01-29 22:00:00,0.255,0.311,0.39299999999999996 -2014-01-29 23:00:00,0.255,0.311,0.39299999999999996 -2014-01-30 00:00:00,0.255,0.31,0.392 -2014-01-30 01:00:00,0.255,0.31,0.392 -2014-01-30 02:00:00,0.255,0.31,0.392 -2014-01-30 03:00:00,0.255,0.31,0.392 -2014-01-30 04:00:00,0.254,0.31,0.392 -2014-01-30 05:00:00,0.254,0.31,0.391 -2014-01-30 06:00:00,0.254,0.31,0.391 -2014-01-30 07:00:00,0.254,0.31,0.386 -2014-01-30 08:00:00,0.254,0.31,0.384 -2014-01-30 09:00:00,0.254,0.31,0.382 -2014-01-30 10:00:00,0.254,0.31,0.381 -2014-01-30 11:00:00,0.254,0.31,0.381 -2014-01-30 12:00:00,0.254,0.31,0.38 -2014-01-30 13:00:00,0.254,0.31,0.379 -2014-01-30 14:00:00,0.254,0.31,0.379 -2014-01-30 15:00:00,0.254,0.31,0.37799999999999995 -2014-01-30 16:00:00,0.254,0.31,0.37799999999999995 -2014-01-30 17:00:00,0.254,0.31,0.37799999999999995 -2014-01-30 18:00:00,0.254,0.31,0.37200000000000005 -2014-01-30 19:00:00,0.254,0.31,0.37 -2014-01-30 20:00:00,0.253,0.31,0.37 -2014-01-30 21:00:00,0.253,0.31,0.369 -2014-01-30 22:00:00,0.253,0.31,0.369 -2014-01-30 23:00:00,0.253,0.31,0.365 -2014-01-31 00:00:00,0.253,0.31,0.363 -2014-01-31 01:00:00,0.253,0.31,0.363 -2014-01-31 02:00:00,0.253,0.31,0.36200000000000004 -2014-01-31 03:00:00,0.253,0.31,0.36200000000000004 -2014-01-31 04:00:00,0.253,0.31,0.36200000000000004 -2014-01-31 05:00:00,0.253,0.31,0.361 -2014-01-31 06:00:00,0.253,0.31,0.361 -2014-01-31 07:00:00,0.253,0.31,0.361 -2014-01-31 08:00:00,0.253,0.31,0.36 -2014-01-31 09:00:00,0.253,0.31,0.36 -2014-01-31 10:00:00,0.253,0.31,0.36 -2014-01-31 11:00:00,0.253,0.31,0.36 -2014-01-31 12:00:00,0.253,0.31,0.36 -2014-01-31 13:00:00,0.252,0.31,0.359 -2014-01-31 14:00:00,0.252,0.31,0.359 -2014-01-31 15:00:00,0.252,0.31,0.359 -2014-01-31 16:00:00,0.252,0.31,0.358 -2014-01-31 17:00:00,0.252,0.313,0.358 -2014-01-31 18:00:00,0.252,0.311,0.358 -2014-01-31 19:00:00,0.252,0.31,0.35700000000000004 -2014-01-31 20:00:00,0.252,0.31,0.35700000000000004 -2014-01-31 21:00:00,0.252,0.31,0.35700000000000004 -2014-01-31 22:00:00,0.252,0.31,0.35700000000000004 -2014-01-31 23:00:00,0.252,0.31,0.35700000000000004 -2014-02-01 00:00:00,0.252,0.31,0.35700000000000004 -2014-02-01 01:00:00,0.252,0.31,0.35700000000000004 -2014-02-01 02:00:00,0.252,0.31,0.35600000000000004 -2014-02-01 03:00:00,0.252,0.31,0.35600000000000004 -2014-02-01 04:00:00,0.252,0.31,0.35600000000000004 -2014-02-01 05:00:00,0.252,0.31,0.35600000000000004 -2014-02-01 06:00:00,0.252,0.31,0.35600000000000004 -2014-02-01 07:00:00,0.252,0.31,0.35600000000000004 -2014-02-01 08:00:00,0.252,0.309,0.35600000000000004 -2014-02-01 09:00:00,0.252,0.309,0.355 -2014-02-01 10:00:00,0.251,0.309,0.355 -2014-02-01 11:00:00,0.252,0.309,0.355 -2014-02-01 12:00:00,0.251,0.309,0.354 -2014-02-01 13:00:00,0.252,0.309,0.354 -2014-02-01 14:00:00,0.251,0.309,0.355 -2014-02-01 15:00:00,0.25,0.31,0.35600000000000004 -2014-02-01 16:00:00,0.244,0.31,0.35700000000000004 -2014-02-01 17:00:00,0.248,0.31,0.358 -2014-02-01 18:00:00,0.256,0.309,0.358 -2014-02-01 19:00:00,0.258,0.309,0.359 -2014-02-01 20:00:00,0.258,0.309,0.361 -2014-02-01 21:00:00,0.257,0.309,0.361 -2014-02-01 22:00:00,0.257,0.309,0.361 -2014-02-01 23:00:00,0.256,0.309,0.361 -2014-02-02 00:00:00,0.255,0.309,0.361 -2014-02-02 01:00:00,0.255,0.309,0.361 -2014-02-02 02:00:00,0.254,0.309,0.361 -2014-02-02 03:00:00,0.254,0.309,0.361 -2014-02-02 04:00:00,0.254,0.309,0.361 -2014-02-02 05:00:00,0.253,0.309,0.361 -2014-02-02 06:00:00,0.253,0.309,0.361 -2014-02-02 07:00:00,0.253,0.309,0.361 -2014-02-02 08:00:00,0.253,0.309,0.361 -2014-02-02 09:00:00,0.252,0.309,0.361 -2014-02-02 10:00:00,0.252,0.309,0.361 -2014-02-02 11:00:00,0.252,0.309,0.36 -2014-02-02 12:00:00,0.253,0.309,0.36 -2014-02-02 13:00:00,0.256,0.309,0.359 -2014-02-02 14:00:00,0.259,0.309,0.358 -2014-02-02 15:00:00,0.259,0.309,0.35700000000000004 -2014-02-02 16:00:00,0.259,0.309,0.35700000000000004 -2014-02-02 17:00:00,0.259,0.309,0.35700000000000004 -2014-02-02 18:00:00,0.259,0.309,0.35700000000000004 -2014-02-02 19:00:00,0.259,0.309,0.35600000000000004 -2014-02-02 20:00:00,0.259,0.307,0.35600000000000004 -2014-02-02 21:00:00,0.258,0.307,0.35600000000000004 -2014-02-02 22:00:00,0.258,0.307,0.355 -2014-02-02 23:00:00,0.258,0.308,0.355 -2014-02-03 00:00:00,0.258,0.309,0.355 -2014-02-03 01:00:00,0.258,0.309,0.355 -2014-02-03 02:00:00,0.258,0.309,0.354 -2014-02-03 03:00:00,0.257,0.309,0.354 -2014-02-03 04:00:00,0.257,0.309,0.354 -2014-02-03 05:00:00,0.257,0.309,0.354 -2014-02-03 06:00:00,0.257,0.309,0.354 -2014-02-03 07:00:00,0.257,0.31,0.354 -2014-02-03 08:00:00,0.256,0.31,0.354 -2014-02-03 09:00:00,0.256,0.31,0.354 -2014-02-03 10:00:00,0.256,0.31,0.354 -2014-02-03 11:00:00,0.256,0.31,0.355 -2014-02-03 12:00:00,0.256,0.31,0.355 -2014-02-03 13:00:00,0.256,0.31,0.355 -2014-02-03 14:00:00,0.256,0.31,0.355 -2014-02-03 15:00:00,0.256,0.31,0.355 -2014-02-03 16:00:00,0.256,0.31,0.355 -2014-02-03 17:00:00,0.256,0.31,0.355 -2014-02-03 18:00:00,0.256,0.31,0.354 -2014-02-03 19:00:00,0.256,0.31,0.354 -2014-02-03 20:00:00,0.256,0.31,0.354 -2014-02-03 21:00:00,0.256,0.31,0.354 -2014-02-03 22:00:00,0.256,0.31,0.354 -2014-02-03 23:00:00,0.256,0.31,0.354 -2014-02-04 00:00:00,0.256,0.31,0.354 -2014-02-04 01:00:00,0.256,0.31,0.354 -2014-02-04 02:00:00,0.256,0.31,0.353 -2014-02-04 03:00:00,0.256,0.31,0.353 -2014-02-04 04:00:00,0.256,0.309,0.353 -2014-02-04 05:00:00,0.255,0.309,0.353 -2014-02-04 06:00:00,0.255,0.309,0.353 -2014-02-04 07:00:00,0.255,0.309,0.353 -2014-02-04 08:00:00,0.255,0.309,0.353 -2014-02-04 09:00:00,0.255,0.309,0.353 -2014-02-04 10:00:00,0.255,0.309,0.353 -2014-02-04 11:00:00,0.255,0.309,0.353 -2014-02-04 12:00:00,0.255,0.309,0.353 -2014-02-04 13:00:00,0.255,0.309,0.353 -2014-02-04 14:00:00,0.255,0.309,0.353 -2014-02-04 15:00:00,0.255,0.309,0.353 -2014-02-04 16:00:00,0.255,0.309,0.35200000000000004 -2014-02-04 17:00:00,0.255,0.309,0.35200000000000004 -2014-02-04 18:00:00,0.255,0.309,0.35200000000000004 -2014-02-04 19:00:00,0.255,0.309,0.35200000000000004 -2014-02-04 20:00:00,0.255,0.309,0.35200000000000004 -2014-02-04 21:00:00,0.255,0.309,0.35200000000000004 -2014-02-04 22:00:00,0.254,0.309,0.35200000000000004 -2014-02-04 23:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 00:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 01:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 02:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 03:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 04:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 05:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 06:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 07:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 08:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 09:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 10:00:00,0.253,0.309,0.35200000000000004 -2014-02-05 11:00:00,0.253,0.309,0.35200000000000004 -2014-02-05 12:00:00,0.253,0.309,0.353 -2014-02-05 13:00:00,0.253,0.309,0.353 -2014-02-05 14:00:00,0.253,0.309,0.353 -2014-02-05 15:00:00,0.253,0.309,0.353 -2014-02-05 16:00:00,0.254,0.309,0.353 -2014-02-05 17:00:00,0.254,0.309,0.353 -2014-02-05 18:00:00,0.254,0.309,0.353 -2014-02-05 19:00:00,0.253,0.309,0.353 -2014-02-05 20:00:00,0.253,0.309,0.353 -2014-02-05 21:00:00,0.254,0.309,0.353 -2014-02-05 22:00:00,0.254,0.309,0.35200000000000004 -2014-02-05 23:00:00,0.253,0.309,0.35200000000000004 -2014-02-06 00:00:00,0.254,0.309,0.35200000000000004 -2014-02-06 01:00:00,0.253,0.309,0.35200000000000004 -2014-02-06 02:00:00,0.254,0.309,0.35200000000000004 -2014-02-06 03:00:00,0.254,0.309,0.35200000000000004 -2014-02-06 04:00:00,0.254,0.309,0.35200000000000004 -2014-02-06 05:00:00,0.254,0.309,0.35200000000000004 -2014-02-06 06:00:00,0.254,0.308,0.35200000000000004 -2014-02-06 07:00:00,0.254,0.307,0.35100000000000003 -2014-02-06 08:00:00,0.254,0.307,0.35200000000000004 -2014-02-06 09:00:00,0.254,0.308,0.35200000000000004 -2014-02-06 10:00:00,0.254,0.308,0.35100000000000003 -2014-02-06 11:00:00,0.254,0.308,0.35100000000000003 -2014-02-06 12:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 13:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 14:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 15:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 16:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 17:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 18:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 19:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 20:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 21:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 22:00:00,0.254,0.309,0.35100000000000003 -2014-02-06 23:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 00:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 01:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 02:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 03:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 04:00:00,0.254,0.307,0.35100000000000003 -2014-02-07 05:00:00,0.254,0.306,0.35100000000000003 -2014-02-07 06:00:00,0.254,0.307,0.35100000000000003 -2014-02-07 07:00:00,0.254,0.307,0.35100000000000003 -2014-02-07 08:00:00,0.254,0.308,0.35100000000000003 -2014-02-07 09:00:00,0.254,0.308,0.35100000000000003 -2014-02-07 10:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 11:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 12:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 13:00:00,0.254,0.308,0.35100000000000003 -2014-02-07 14:00:00,0.254,0.309,0.35100000000000003 -2014-02-07 15:00:00,0.254,0.309,0.35 -2014-02-07 16:00:00,0.254,0.309,0.35 -2014-02-07 17:00:00,0.254,0.307,0.35 -2014-02-07 18:00:00,0.254,0.341,0.35 -2014-02-07 19:00:00,0.254,0.34299999999999997,0.35 -2014-02-07 20:00:00,0.254,0.34299999999999997,0.35 -2014-02-07 21:00:00,0.254,0.345,0.35 -2014-02-07 22:00:00,0.254,0.34299999999999997,0.35 -2014-02-07 23:00:00,0.254,0.344,0.35 -2014-02-08 00:00:00,0.254,0.344,0.35 -2014-02-08 01:00:00,0.254,0.34299999999999997,0.35 -2014-02-08 02:00:00,0.254,0.342,0.35 -2014-02-08 03:00:00,0.253,0.34299999999999997,0.35 -2014-02-08 04:00:00,0.253,0.34299999999999997,0.35 -2014-02-08 05:00:00,0.253,0.34299999999999997,0.35 -2014-02-08 06:00:00,0.253,0.34299999999999997,0.35 -2014-02-08 07:00:00,0.253,0.34299999999999997,0.35 -2014-02-08 08:00:00,0.253,0.341,0.35 -2014-02-08 09:00:00,0.253,0.341,0.35 -2014-02-08 10:00:00,0.253,0.341,0.35 -2014-02-08 11:00:00,0.253,0.33899999999999997,0.35 -2014-02-08 12:00:00,0.253,0.33799999999999997,0.35 -2014-02-08 13:00:00,0.253,0.33799999999999997,0.35 -2014-02-08 14:00:00,0.253,0.33799999999999997,0.35 -2014-02-08 15:00:00,0.253,0.336,0.35 -2014-02-08 16:00:00,0.252,0.336,0.35200000000000004 -2014-02-08 17:00:00,0.24600000000000002,0.33399999999999996,0.353 -2014-02-08 18:00:00,0.24600000000000002,0.33399999999999996,0.353 -2014-02-08 19:00:00,0.24600000000000002,0.332,0.353 -2014-02-08 20:00:00,0.248,0.331,0.353 -2014-02-08 21:00:00,0.251,0.331,0.353 -2014-02-08 22:00:00,0.254,0.331,0.353 -2014-02-08 23:00:00,0.258,0.331,0.35200000000000004 -2014-02-09 00:00:00,0.258,0.32899999999999996,0.35100000000000003 -2014-02-09 01:00:00,0.259,0.32899999999999996,0.35100000000000003 -2014-02-09 02:00:00,0.258,0.32899999999999996,0.35 -2014-02-09 03:00:00,0.258,0.32899999999999996,0.35 -2014-02-09 04:00:00,0.258,0.32899999999999996,0.35 -2014-02-09 05:00:00,0.258,0.32799999999999996,0.35 -2014-02-09 06:00:00,0.258,0.327,0.35 -2014-02-09 07:00:00,0.258,0.327,0.35 -2014-02-09 08:00:00,0.258,0.327,0.35 -2014-02-09 09:00:00,0.258,0.327,0.35 -2014-02-09 10:00:00,0.258,0.327,0.35 -2014-02-09 11:00:00,0.258,0.327,0.35 -2014-02-09 12:00:00,0.258,0.326,0.35 -2014-02-09 13:00:00,0.258,0.326,0.35 -2014-02-09 14:00:00,0.258,0.326,0.35 -2014-02-09 15:00:00,0.258,0.326,0.35 -2014-02-09 16:00:00,0.258,0.326,0.35 -2014-02-09 17:00:00,0.258,0.325,0.35 -2014-02-09 18:00:00,0.258,0.324,0.35 -2014-02-09 19:00:00,0.258,0.324,0.35 -2014-02-09 20:00:00,0.258,0.324,0.35 -2014-02-09 21:00:00,0.258,0.324,0.35 -2014-02-09 22:00:00,0.257,0.324,0.35 -2014-02-09 23:00:00,0.257,0.324,0.35 -2014-02-10 00:00:00,0.257,0.32299999999999995,0.35 -2014-02-10 01:00:00,0.257,0.322,0.35 -2014-02-10 02:00:00,0.257,0.322,0.35 -2014-02-10 03:00:00,0.256,0.322,0.35 -2014-02-10 04:00:00,0.256,0.321,0.35 -2014-02-10 05:00:00,0.256,0.321,0.35 -2014-02-10 06:00:00,0.256,0.321,0.35 -2014-02-10 07:00:00,0.256,0.321,0.35 -2014-02-10 08:00:00,0.256,0.321,0.35 -2014-02-10 09:00:00,0.256,0.32,0.35 -2014-02-10 10:00:00,0.256,0.319,0.35 -2014-02-10 11:00:00,0.256,0.319,0.35100000000000003 -2014-02-10 12:00:00,0.256,0.319,0.35100000000000003 -2014-02-10 13:00:00,0.256,0.319,0.35 -2014-02-10 14:00:00,0.256,0.319,0.35 -2014-02-10 15:00:00,0.256,0.318,0.35 -2014-02-10 16:00:00,0.256,0.317,0.35 -2014-02-10 17:00:00,0.256,0.317,0.349 -2014-02-10 18:00:00,0.256,0.317,0.35 -2014-02-10 19:00:00,0.256,0.317,0.35 -2014-02-10 20:00:00,0.256,0.317,0.35 -2014-02-10 21:00:00,0.256,0.317,0.35 -2014-02-10 22:00:00,0.256,0.317,0.35100000000000003 -2014-02-10 23:00:00,0.255,0.317,0.35100000000000003 -2014-02-11 00:00:00,0.256,0.316,0.35100000000000003 -2014-02-11 01:00:00,0.256,0.316,0.35100000000000003 -2014-02-11 02:00:00,0.256,0.316,0.35100000000000003 -2014-02-11 03:00:00,0.256,0.316,0.35100000000000003 -2014-02-11 04:00:00,0.256,0.315,0.35100000000000003 -2014-02-11 05:00:00,0.256,0.315,0.35 -2014-02-11 06:00:00,0.256,0.315,0.35 -2014-02-11 07:00:00,0.255,0.315,0.35 -2014-02-11 08:00:00,0.255,0.315,0.35 -2014-02-11 09:00:00,0.255,0.315,0.35 -2014-02-11 10:00:00,0.255,0.314,0.35 -2014-02-11 11:00:00,0.255,0.314,0.349 -2014-02-11 12:00:00,0.255,0.314,0.349 -2014-02-11 13:00:00,0.255,0.314,0.349 -2014-02-11 14:00:00,0.256,0.314,0.349 -2014-02-11 15:00:00,0.256,0.314,0.349 -2014-02-11 16:00:00,0.256,0.314,0.349 -2014-02-11 17:00:00,0.256,0.314,0.349 -2014-02-11 18:00:00,0.256,0.314,0.349 -2014-02-11 19:00:00,0.256,0.313,0.349 -2014-02-11 20:00:00,0.256,0.313,0.349 -2014-02-11 21:00:00,0.256,0.313,0.349 -2014-02-11 22:00:00,0.255,0.313,0.349 -2014-02-11 23:00:00,0.255,0.313,0.349 -2014-02-12 00:00:00,0.255,0.312,0.349 -2014-02-12 01:00:00,0.255,0.312,0.349 -2014-02-12 02:00:00,0.256,0.312,0.35 -2014-02-12 03:00:00,0.253,0.312,0.35200000000000004 -2014-02-12 04:00:00,0.252,0.312,0.35200000000000004 -2014-02-12 05:00:00,0.251,0.312,0.35200000000000004 -2014-02-12 06:00:00,0.252,0.312,0.35200000000000004 -2014-02-12 07:00:00,0.252,0.312,0.35200000000000004 -2014-02-12 08:00:00,0.253,0.312,0.35200000000000004 -2014-02-12 09:00:00,0.253,0.311,0.35200000000000004 -2014-02-12 10:00:00,0.254,0.31,0.35200000000000004 -2014-02-12 11:00:00,0.256,0.31,0.35100000000000003 -2014-02-12 12:00:00,0.256,0.31,0.35 -2014-02-12 13:00:00,0.257,0.31,0.349 -2014-02-12 14:00:00,0.256,0.31,0.349 -2014-02-12 15:00:00,0.257,0.31,0.349 -2014-02-12 16:00:00,0.257,0.31,0.349 -2014-02-12 17:00:00,0.257,0.31,0.349 -2014-02-12 18:00:00,0.257,0.31,0.349 -2014-02-12 19:00:00,0.257,0.31,0.349 -2014-02-12 20:00:00,0.257,0.31,0.349 -2014-02-12 21:00:00,0.257,0.31,0.349 -2014-02-12 22:00:00,0.257,0.31,0.349 -2014-02-12 23:00:00,0.257,0.31,0.349 -2014-02-13 00:00:00,0.256,0.31,0.349 -2014-02-13 01:00:00,0.253,0.31,0.35200000000000004 -2014-02-13 02:00:00,0.251,0.31,0.35200000000000004 -2014-02-13 03:00:00,0.253,0.31,0.35200000000000004 -2014-02-13 04:00:00,0.256,0.31,0.35200000000000004 -2014-02-13 05:00:00,0.258,0.31,0.35100000000000003 -2014-02-13 06:00:00,0.258,0.31,0.35100000000000003 -2014-02-13 07:00:00,0.257,0.31,0.35200000000000004 -2014-02-13 08:00:00,0.257,0.31,0.35200000000000004 -2014-02-13 09:00:00,0.258,0.31,0.35200000000000004 -2014-02-13 10:00:00,0.258,0.31,0.35100000000000003 -2014-02-13 11:00:00,0.259,0.31,0.35100000000000003 -2014-02-13 12:00:00,0.259,0.31,0.35 -2014-02-13 13:00:00,0.26,0.31,0.35 -2014-02-13 14:00:00,0.26,0.311,0.35200000000000004 -2014-02-13 15:00:00,0.266,0.312,0.36700000000000005 -2014-02-13 16:00:00,0.267,0.311,0.373 -2014-02-13 17:00:00,0.266,0.31,0.375 -2014-02-13 18:00:00,0.264,0.31,0.385 -2014-02-13 19:00:00,0.262,0.31,0.392 -2014-02-13 20:00:00,0.259,0.31,0.392 -2014-02-13 21:00:00,0.258,0.31,0.392 -2014-02-13 22:00:00,0.258,0.31,0.392 -2014-02-13 23:00:00,0.258,0.31,0.39299999999999996 -2014-02-14 00:00:00,0.258,0.308,0.39299999999999996 -2014-02-14 01:00:00,0.257,0.308,0.39299999999999996 -2014-02-14 02:00:00,0.258,0.308,0.39299999999999996 -2014-02-14 03:00:00,0.259,0.307,0.39299999999999996 -2014-02-14 04:00:00,0.261,0.307,0.392 -2014-02-14 05:00:00,0.262,0.308,0.392 -2014-02-14 06:00:00,0.263,0.309,0.392 -2014-02-14 07:00:00,0.263,0.309,0.392 -2014-02-14 08:00:00,0.263,0.309,0.391 -2014-02-14 09:00:00,0.263,0.309,0.391 -2014-02-14 10:00:00,0.262,0.309,0.39 -2014-02-14 11:00:00,0.262,0.309,0.39 -2014-02-14 12:00:00,0.262,0.309,0.389 -2014-02-14 13:00:00,0.262,0.309,0.389 -2014-02-14 14:00:00,0.262,0.309,0.389 -2014-02-14 15:00:00,0.262,0.31,0.38799999999999996 -2014-02-14 16:00:00,0.262,0.31,0.387 -2014-02-14 17:00:00,0.262,0.31,0.387 -2014-02-14 18:00:00,0.262,0.31,0.387 -2014-02-14 19:00:00,0.26,0.31,0.387 -2014-02-14 20:00:00,0.258,0.31,0.386 -2014-02-14 21:00:00,0.255,0.31,0.38299999999999995 -2014-02-14 22:00:00,0.257,0.31,0.381 -2014-02-14 23:00:00,0.258,0.31,0.38 -2014-02-15 00:00:00,0.259,0.31,0.379 -2014-02-15 01:00:00,0.261,0.31,0.37799999999999995 -2014-02-15 02:00:00,0.261,0.31,0.37799999999999995 -2014-02-15 03:00:00,0.261,0.31,0.377 -2014-02-15 04:00:00,0.262,0.31,0.377 -2014-02-15 05:00:00,0.262,0.31,0.376 -2014-02-15 06:00:00,0.262,0.31,0.375 -2014-02-15 07:00:00,0.262,0.309,0.375 -2014-02-15 08:00:00,0.262,0.31,0.374 -2014-02-15 09:00:00,0.262,0.31,0.37 -2014-02-15 10:00:00,0.262,0.31,0.368 -2014-02-15 11:00:00,0.261,0.31,0.36700000000000005 -2014-02-15 12:00:00,0.262,0.31,0.366 -2014-02-15 13:00:00,0.261,0.31,0.366 -2014-02-15 14:00:00,0.262,0.31,0.365 -2014-02-15 15:00:00,0.262,0.31,0.364 -2014-02-15 16:00:00,0.261,0.31,0.364 -2014-02-15 17:00:00,0.261,0.31,0.364 -2014-02-15 18:00:00,0.261,0.31,0.363 -2014-02-15 19:00:00,0.261,0.31,0.36200000000000004 -2014-02-15 20:00:00,0.261,0.31,0.36200000000000004 -2014-02-15 21:00:00,0.261,0.308,0.361 -2014-02-15 22:00:00,0.261,0.307,0.361 -2014-02-15 23:00:00,0.261,0.309,0.361 -2014-02-16 00:00:00,0.26,0.309,0.361 -2014-02-16 01:00:00,0.26,0.309,0.36 -2014-02-16 02:00:00,0.26,0.309,0.361 -2014-02-16 03:00:00,0.26,0.31,0.36 -2014-02-16 04:00:00,0.26,0.31,0.36 -2014-02-16 05:00:00,0.26,0.31,0.359 -2014-02-16 06:00:00,0.259,0.31,0.359 -2014-02-16 07:00:00,0.259,0.31,0.358 -2014-02-16 08:00:00,0.259,0.31,0.358 -2014-02-16 09:00:00,0.259,0.31,0.35700000000000004 -2014-02-16 10:00:00,0.259,0.31,0.35700000000000004 -2014-02-16 11:00:00,0.259,0.31,0.35700000000000004 -2014-02-16 12:00:00,0.259,0.31,0.35700000000000004 -2014-02-16 13:00:00,0.259,0.31,0.35600000000000004 -2014-02-16 14:00:00,0.259,0.31,0.35600000000000004 -2014-02-16 15:00:00,0.259,0.31,0.35600000000000004 -2014-02-16 16:00:00,0.259,0.31,0.35600000000000004 -2014-02-16 17:00:00,0.259,0.31,0.355 -2014-02-16 18:00:00,0.259,0.31,0.355 -2014-02-16 19:00:00,0.259,0.31,0.35600000000000004 -2014-02-16 20:00:00,0.259,0.31,0.355 -2014-02-16 21:00:00,0.259,0.31,0.355 -2014-02-16 22:00:00,0.258,0.31,0.354 -2014-02-16 23:00:00,0.258,0.31,0.354 -2014-02-17 00:00:00,0.258,0.31,0.354 -2014-02-17 01:00:00,0.258,0.31,0.354 -2014-02-17 02:00:00,0.258,0.31,0.354 -2014-02-17 03:00:00,0.258,0.31,0.354 -2014-02-17 04:00:00,0.258,0.31,0.353 -2014-02-17 05:00:00,0.258,0.31,0.353 -2014-02-17 06:00:00,0.257,0.31,0.353 -2014-02-17 07:00:00,0.257,0.31,0.353 -2014-02-17 08:00:00,0.257,0.31,0.353 -2014-02-17 09:00:00,0.257,0.31,0.353 -2014-02-17 10:00:00,0.257,0.31,0.354 -2014-02-17 11:00:00,0.257,0.31,0.353 -2014-02-17 12:00:00,0.257,0.31,0.353 -2014-02-17 13:00:00,0.257,0.31,0.353 -2014-02-17 14:00:00,0.257,0.31,0.353 -2014-02-17 15:00:00,0.257,0.31,0.353 -2014-02-17 16:00:00,0.257,0.31,0.35200000000000004 -2014-02-17 17:00:00,0.257,0.312,0.35200000000000004 -2014-02-17 18:00:00,0.257,0.311,0.35200000000000004 -2014-02-17 19:00:00,0.257,0.31,0.35200000000000004 -2014-02-17 20:00:00,0.257,0.31,0.35200000000000004 -2014-02-17 21:00:00,0.257,0.31,0.35200000000000004 -2014-02-17 22:00:00,0.257,0.31,0.35200000000000004 -2014-02-17 23:00:00,0.257,0.31,0.35200000000000004 -2014-02-18 00:00:00,0.257,0.31,0.35200000000000004 -2014-02-18 01:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 02:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 03:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 04:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 05:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 06:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 07:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 08:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 09:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 10:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 11:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 12:00:00,0.256,0.31,0.353 -2014-02-18 13:00:00,0.256,0.31,0.353 -2014-02-18 14:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 15:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 16:00:00,0.256,0.31,0.35200000000000004 -2014-02-18 17:00:00,0.256,0.311,0.35200000000000004 -2014-02-18 18:00:00,0.256,0.31,0.35100000000000003 -2014-02-18 19:00:00,0.256,0.311,0.35100000000000003 -2014-02-18 20:00:00,0.256,0.31,0.35100000000000003 -2014-02-18 21:00:00,0.256,0.311,0.35100000000000003 -2014-02-18 22:00:00,0.256,0.312,0.35200000000000004 -2014-02-18 23:00:00,0.256,0.311,0.35200000000000004 -2014-02-19 00:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 01:00:00,0.255,0.313,0.35200000000000004 -2014-02-19 02:00:00,0.255,0.314,0.35200000000000004 -2014-02-19 03:00:00,0.254,0.314,0.354 -2014-02-19 04:00:00,0.253,0.314,0.354 -2014-02-19 05:00:00,0.254,0.314,0.354 -2014-02-19 06:00:00,0.254,0.314,0.354 -2014-02-19 07:00:00,0.254,0.314,0.354 -2014-02-19 08:00:00,0.255,0.314,0.353 -2014-02-19 09:00:00,0.255,0.314,0.353 -2014-02-19 10:00:00,0.255,0.313,0.353 -2014-02-19 11:00:00,0.255,0.312,0.35200000000000004 -2014-02-19 12:00:00,0.255,0.311,0.35200000000000004 -2014-02-19 13:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 14:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 15:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 16:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 17:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 18:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 19:00:00,0.256,0.31,0.35200000000000004 -2014-02-19 20:00:00,0.254,0.31,0.353 -2014-02-19 21:00:00,0.25,0.31,0.354 -2014-02-19 22:00:00,0.25,0.31,0.354 -2014-02-19 23:00:00,0.251,0.31,0.354 -2014-02-20 00:00:00,0.25,0.31,0.354 -2014-02-20 01:00:00,0.251,0.31,0.354 -2014-02-20 02:00:00,0.251,0.309,0.354 -2014-02-20 03:00:00,0.252,0.309,0.353 -2014-02-20 04:00:00,0.253,0.309,0.353 -2014-02-20 05:00:00,0.253,0.309,0.353 -2014-02-20 06:00:00,0.254,0.309,0.353 -2014-02-20 07:00:00,0.254,0.309,0.353 -2014-02-20 08:00:00,0.254,0.309,0.353 -2014-02-20 09:00:00,0.254,0.309,0.353 -2014-02-20 10:00:00,0.255,0.309,0.353 -2014-02-20 11:00:00,0.256,0.309,0.353 -2014-02-20 12:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 13:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 14:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 15:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 16:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 17:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 18:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 19:00:00,0.258,0.309,0.35200000000000004 -2014-02-20 20:00:00,0.258,0.309,0.35100000000000003 -2014-02-20 21:00:00,0.258,0.309,0.35100000000000003 -2014-02-20 22:00:00,0.258,0.309,0.35100000000000003 -2014-02-20 23:00:00,0.258,0.309,0.35100000000000003 -2014-02-21 00:00:00,0.258,0.309,0.35100000000000003 -2014-02-21 01:00:00,0.258,0.309,0.35200000000000004 -2014-02-21 02:00:00,0.258,0.309,0.35200000000000004 -2014-02-21 03:00:00,0.257,0.309,0.353 -2014-02-21 04:00:00,0.253,0.309,0.354 -2014-02-21 05:00:00,0.254,0.309,0.354 -2014-02-21 06:00:00,0.255,0.309,0.354 -2014-02-21 07:00:00,0.257,0.308,0.353 -2014-02-21 08:00:00,0.257,0.307,0.353 -2014-02-21 09:00:00,0.258,0.307,0.353 -2014-02-21 10:00:00,0.258,0.307,0.353 -2014-02-21 11:00:00,0.258,0.307,0.35200000000000004 -2014-02-21 12:00:00,0.258,0.307,0.35200000000000004 -2014-02-21 13:00:00,0.258,0.307,0.35200000000000004 -2014-02-21 14:00:00,0.258,0.308,0.35200000000000004 -2014-02-21 15:00:00,0.258,0.309,0.35200000000000004 -2014-02-21 16:00:00,0.258,0.309,0.35200000000000004 -2014-02-21 17:00:00,0.258,0.309,0.35100000000000003 -2014-02-21 18:00:00,0.253,0.309,0.354 -2014-02-21 19:00:00,0.252,0.308,0.355 -2014-02-21 20:00:00,0.254,0.307,0.355 -2014-02-21 21:00:00,0.255,0.307,0.355 -2014-02-21 22:00:00,0.255,0.307,0.354 -2014-02-21 23:00:00,0.255,0.307,0.354 -2014-02-22 00:00:00,0.255,0.308,0.354 -2014-02-22 01:00:00,0.255,0.308,0.354 -2014-02-22 02:00:00,0.255,0.307,0.354 -2014-02-22 03:00:00,0.256,0.307,0.354 -2014-02-22 04:00:00,0.256,0.306,0.354 -2014-02-22 05:00:00,0.257,0.305,0.354 -2014-02-22 06:00:00,0.258,0.306,0.353 -2014-02-22 07:00:00,0.259,0.305,0.353 -2014-02-22 08:00:00,0.259,0.304,0.353 -2014-02-22 09:00:00,0.26,0.305,0.353 -2014-02-22 10:00:00,0.26,0.305,0.35200000000000004 -2014-02-22 11:00:00,0.26,0.305,0.35200000000000004 -2014-02-22 12:00:00,0.26,0.305,0.35200000000000004 -2014-02-22 13:00:00,0.26,0.306,0.35200000000000004 -2014-02-22 14:00:00,0.26,0.307,0.35200000000000004 -2014-02-22 15:00:00,0.26,0.307,0.35200000000000004 -2014-02-22 16:00:00,0.261,0.307,0.35200000000000004 -2014-02-22 17:00:00,0.261,0.308,0.35200000000000004 -2014-02-22 18:00:00,0.261,0.309,0.35200000000000004 -2014-02-22 19:00:00,0.261,0.309,0.35200000000000004 -2014-02-22 20:00:00,0.261,0.309,0.35200000000000004 -2014-02-22 21:00:00,0.261,0.309,0.35200000000000004 -2014-02-22 22:00:00,0.261,0.309,0.35200000000000004 -2014-02-22 23:00:00,0.26,0.309,0.35200000000000004 -2014-02-23 00:00:00,0.26,0.309,0.35200000000000004 -2014-02-23 01:00:00,0.26,0.309,0.35200000000000004 -2014-02-23 02:00:00,0.26,0.309,0.35200000000000004 -2014-02-23 03:00:00,0.26,0.309,0.35200000000000004 -2014-02-23 04:00:00,0.26,0.309,0.35200000000000004 -2014-02-23 05:00:00,0.26,0.309,0.35100000000000003 -2014-02-23 06:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 07:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 08:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 09:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 10:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 11:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 12:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 13:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 14:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 15:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 16:00:00,0.259,0.309,0.35100000000000003 -2014-02-23 17:00:00,0.26,0.309,0.35100000000000003 -2014-02-23 18:00:00,0.26,0.309,0.35100000000000003 -2014-02-23 19:00:00,0.26,0.309,0.35100000000000003 -2014-02-23 20:00:00,0.26,0.309,0.35100000000000003 -2014-02-23 21:00:00,0.259,0.309,0.35 -2014-02-23 22:00:00,0.259,0.309,0.35 -2014-02-23 23:00:00,0.259,0.309,0.35 -2014-02-24 00:00:00,0.259,0.309,0.35 -2014-02-24 01:00:00,0.258,0.309,0.35 -2014-02-24 02:00:00,0.258,0.308,0.35 -2014-02-24 03:00:00,0.258,0.308,0.35 -2014-02-24 04:00:00,0.258,0.308,0.35 -2014-02-24 05:00:00,0.258,0.308,0.35 -2014-02-24 06:00:00,0.258,0.307,0.35 -2014-02-24 07:00:00,0.258,0.307,0.35 -2014-02-24 08:00:00,0.258,0.307,0.35 -2014-02-24 09:00:00,0.257,0.307,0.35 -2014-02-24 10:00:00,0.257,0.307,0.35100000000000003 -2014-02-24 11:00:00,0.257,0.307,0.35100000000000003 -2014-02-24 12:00:00,0.257,0.307,0.35100000000000003 -2014-02-24 13:00:00,0.257,0.307,0.35100000000000003 -2014-02-24 14:00:00,0.257,0.308,0.35 -2014-02-24 15:00:00,0.257,0.309,0.35 -2014-02-24 16:00:00,0.257,0.309,0.35 -2014-02-24 17:00:00,0.257,0.308,0.35 -2014-02-24 18:00:00,0.257,0.307,0.35 -2014-02-24 19:00:00,0.257,0.307,0.35 -2014-02-24 20:00:00,0.257,0.308,0.35 -2014-02-24 21:00:00,0.257,0.308,0.35 -2014-02-24 22:00:00,0.257,0.308,0.35 -2014-02-24 23:00:00,0.257,0.309,0.35 -2014-02-25 00:00:00,0.257,0.309,0.35 -2014-02-25 01:00:00,0.257,0.309,0.35 -2014-02-25 02:00:00,0.257,0.309,0.35 -2014-02-25 03:00:00,0.256,0.309,0.35 -2014-02-25 04:00:00,0.256,0.309,0.35 -2014-02-25 05:00:00,0.256,0.308,0.35 -2014-02-25 06:00:00,0.256,0.307,0.35 -2014-02-25 07:00:00,0.256,0.307,0.35 -2014-02-25 08:00:00,0.256,0.307,0.35 -2014-02-25 09:00:00,0.256,0.307,0.35 -2014-02-25 10:00:00,0.256,0.307,0.35 -2014-02-25 11:00:00,0.256,0.307,0.35 -2014-02-25 12:00:00,0.256,0.307,0.35 -2014-02-25 13:00:00,0.256,0.307,0.35 -2014-02-25 14:00:00,0.256,0.307,0.35 -2014-02-25 15:00:00,0.256,0.307,0.35 -2014-02-25 16:00:00,0.256,0.307,0.35 -2014-02-25 17:00:00,0.256,0.307,0.35 -2014-02-25 18:00:00,0.256,0.307,0.35 -2014-02-25 19:00:00,0.256,0.307,0.35 -2014-02-25 20:00:00,0.256,0.307,0.35 -2014-02-25 21:00:00,0.256,0.307,0.35 -2014-02-25 22:00:00,0.256,0.307,0.35 -2014-02-25 23:00:00,0.256,0.307,0.35 -2014-02-26 00:00:00,0.256,0.307,0.35 -2014-02-26 01:00:00,0.256,0.307,0.35 -2014-02-26 02:00:00,0.256,0.307,0.35 -2014-02-26 03:00:00,0.256,0.307,0.35 -2014-02-26 04:00:00,0.256,0.307,0.35 -2014-02-26 05:00:00,0.256,0.307,0.35 -2014-02-26 06:00:00,0.256,0.307,0.35 -2014-02-26 07:00:00,0.256,0.307,0.35 -2014-02-26 08:00:00,0.256,0.307,0.35 -2014-02-26 09:00:00,0.256,0.307,0.35 -2014-02-26 10:00:00,0.256,0.307,0.35 -2014-02-26 11:00:00,0.256,0.306,0.35 -2014-02-26 12:00:00,0.256,0.306,0.35 -2014-02-26 13:00:00,0.256,0.306,0.35 -2014-02-26 14:00:00,0.256,0.307,0.35 -2014-02-26 15:00:00,0.256,0.309,0.35 -2014-02-26 16:00:00,0.256,0.309,0.35 -2014-02-26 17:00:00,0.256,0.309,0.35 -2014-02-26 18:00:00,0.256,0.309,0.35 -2014-02-26 19:00:00,0.256,0.309,0.35 -2014-02-26 20:00:00,0.256,0.309,0.35 -2014-02-26 21:00:00,0.256,0.309,0.35 -2014-02-26 22:00:00,0.256,0.309,0.35100000000000003 -2014-02-26 23:00:00,0.256,0.309,0.35100000000000003 -2014-02-27 00:00:00,0.256,0.309,0.35100000000000003 -2014-02-27 01:00:00,0.256,0.309,0.35100000000000003 -2014-02-27 02:00:00,0.256,0.309,0.35100000000000003 -2014-02-27 03:00:00,0.256,0.309,0.35100000000000003 -2014-02-27 04:00:00,0.256,0.309,0.35100000000000003 -2014-02-27 05:00:00,0.256,0.309,0.35100000000000003 -2014-02-27 06:00:00,0.256,0.308,0.35100000000000003 -2014-02-27 07:00:00,0.256,0.307,0.35 -2014-02-27 08:00:00,0.255,0.307,0.35 -2014-02-27 09:00:00,0.255,0.307,0.35100000000000003 -2014-02-27 10:00:00,0.255,0.307,0.35100000000000003 -2014-02-27 11:00:00,0.255,0.307,0.35100000000000003 -2014-02-27 12:00:00,0.255,0.307,0.35 -2014-02-27 13:00:00,0.255,0.308,0.349 -2014-02-27 14:00:00,0.255,0.309,0.349 -2014-02-27 15:00:00,0.255,0.309,0.349 -2014-02-27 16:00:00,0.255,0.309,0.349 -2014-02-27 17:00:00,0.255,0.307,0.349 -2014-02-27 18:00:00,0.255,0.307,0.349 -2014-02-27 19:00:00,0.255,0.307,0.349 -2014-02-27 20:00:00,0.255,0.307,0.349 -2014-02-27 21:00:00,0.253,0.307,0.35200000000000004 -2014-02-27 22:00:00,0.25,0.307,0.353 -2014-02-27 23:00:00,0.249,0.308,0.353 -2014-02-28 00:00:00,0.249,0.308,0.353 -2014-02-28 01:00:00,0.249,0.309,0.353 -2014-02-28 02:00:00,0.248,0.309,0.353 -2014-02-28 03:00:00,0.249,0.309,0.353 -2014-02-28 04:00:00,0.249,0.309,0.353 -2014-02-28 05:00:00,0.249,0.309,0.353 -2014-02-28 06:00:00,0.25,0.309,0.353 -2014-02-28 07:00:00,0.252,0.309,0.353 -2014-02-28 08:00:00,0.252,0.309,0.353 -2014-02-28 09:00:00,0.253,0.309,0.353 -2014-02-28 10:00:00,0.254,0.309,0.353 -2014-02-28 11:00:00,0.257,0.307,0.35200000000000004 -2014-02-28 12:00:00,0.259,0.307,0.35100000000000003 -2014-02-28 13:00:00,0.26,0.307,0.35 -2014-02-28 14:00:00,0.26,0.307,0.35 -2014-02-28 15:00:00,0.26,0.307,0.35 -2014-02-28 16:00:00,0.26,0.307,0.35 -2014-02-28 17:00:00,0.26,0.307,0.35 -2014-02-28 18:00:00,0.261,0.309,0.35 -2014-02-28 19:00:00,0.26,0.307,0.35 -2014-02-28 20:00:00,0.26,0.307,0.35 -2014-02-28 21:00:00,0.26,0.306,0.35 -2014-02-28 22:00:00,0.26,0.306,0.35 -2014-02-28 23:00:00,0.26,0.307,0.35 -2014-03-01 00:00:00,0.259,0.307,0.35 -2014-03-01 01:00:00,0.259,0.307,0.35 -2014-03-01 02:00:00,0.259,0.307,0.35 -2014-03-01 03:00:00,0.259,0.307,0.35 -2014-03-01 04:00:00,0.259,0.307,0.35 -2014-03-01 05:00:00,0.259,0.308,0.35 -2014-03-01 06:00:00,0.259,0.307,0.35 -2014-03-01 07:00:00,0.258,0.307,0.35 -2014-03-01 08:00:00,0.258,0.307,0.35 -2014-03-01 09:00:00,0.258,0.307,0.35 -2014-03-01 10:00:00,0.258,0.307,0.35 -2014-03-01 11:00:00,0.258,0.307,0.35 -2014-03-01 12:00:00,0.258,0.306,0.35 -2014-03-01 13:00:00,0.258,0.306,0.35 -2014-03-01 14:00:00,0.258,0.306,0.35 -2014-03-01 15:00:00,0.258,0.307,0.35 -2014-03-01 16:00:00,0.258,0.307,0.35 -2014-03-01 17:00:00,0.258,0.307,0.349 -2014-03-01 18:00:00,0.258,0.307,0.349 -2014-03-01 19:00:00,0.258,0.307,0.349 -2014-03-01 20:00:00,0.258,0.307,0.349 -2014-03-01 21:00:00,0.258,0.307,0.349 -2014-03-01 22:00:00,0.258,0.307,0.349 -2014-03-01 23:00:00,0.258,0.307,0.349 -2014-03-02 00:00:00,0.258,0.307,0.349 -2014-03-02 01:00:00,0.258,0.307,0.349 -2014-03-02 02:00:00,0.258,0.307,0.349 -2014-03-02 03:00:00,0.258,0.308,0.349 -2014-03-02 04:00:00,0.258,0.309,0.349 -2014-03-02 05:00:00,0.257,0.309,0.349 -2014-03-02 06:00:00,0.257,0.308,0.349 -2014-03-02 07:00:00,0.257,0.309,0.349 -2014-03-02 08:00:00,0.257,0.31,0.349 -2014-03-02 09:00:00,0.257,0.31,0.35 -2014-03-02 10:00:00,0.257,0.309,0.35 -2014-03-02 11:00:00,0.257,0.309,0.35 -2014-03-02 12:00:00,0.257,0.307,0.349 -2014-03-02 13:00:00,0.257,0.306,0.349 -2014-03-02 14:00:00,0.257,0.307,0.349 -2014-03-02 15:00:00,0.257,0.307,0.349 -2014-03-02 16:00:00,0.257,0.307,0.349 -2014-03-02 17:00:00,0.257,0.307,0.349 -2014-03-02 18:00:00,0.257,0.307,0.349 -2014-03-02 19:00:00,0.257,0.307,0.349 -2014-03-02 20:00:00,0.257,0.307,0.349 -2014-03-02 21:00:00,0.257,0.307,0.349 -2014-03-02 22:00:00,0.257,0.31,0.349 -2014-03-02 23:00:00,0.257,0.31,0.349 -2014-03-03 00:00:00,0.256,0.31,0.349 -2014-03-03 01:00:00,0.256,0.31,0.349 -2014-03-03 02:00:00,0.256,0.31,0.349 -2014-03-03 03:00:00,0.256,0.31,0.349 -2014-03-03 04:00:00,0.256,0.31,0.349 -2014-03-03 05:00:00,0.256,0.31,0.349 -2014-03-03 06:00:00,0.256,0.31,0.349 -2014-03-03 07:00:00,0.256,0.31,0.349 -2014-03-03 08:00:00,0.256,0.31,0.349 -2014-03-03 09:00:00,0.256,0.31,0.349 -2014-03-03 10:00:00,0.256,0.31,0.349 -2014-03-03 11:00:00,0.256,0.31,0.349 -2014-03-03 12:00:00,0.256,0.308,0.349 -2014-03-03 13:00:00,0.256,0.308,0.349 -2014-03-03 14:00:00,0.256,0.307,0.349 -2014-03-03 15:00:00,0.256,0.307,0.349 -2014-03-03 16:00:00,0.256,0.306,0.349 -2014-03-03 17:00:00,0.256,0.305,0.349 -2014-03-03 18:00:00,0.256,0.305,0.349 -2014-03-03 19:00:00,0.256,0.305,0.349 -2014-03-03 20:00:00,0.256,0.305,0.349 -2014-03-03 21:00:00,0.256,0.305,0.349 -2014-03-03 22:00:00,0.256,0.309,0.349 -2014-03-03 23:00:00,0.256,0.309,0.349 -2014-03-04 00:00:00,0.256,0.309,0.349 -2014-03-04 01:00:00,0.255,0.309,0.349 -2014-03-04 02:00:00,0.255,0.309,0.349 -2014-03-04 03:00:00,0.255,0.309,0.348 -2014-03-04 04:00:00,0.255,0.309,0.348 -2014-03-04 05:00:00,0.255,0.309,0.349 -2014-03-04 06:00:00,0.255,0.309,0.349 -2014-03-04 07:00:00,0.255,0.309,0.349 -2014-03-04 08:00:00,0.255,0.309,0.349 -2014-03-04 09:00:00,0.255,0.309,0.349 -2014-03-04 10:00:00,0.255,0.309,0.349 -2014-03-04 11:00:00,0.255,0.309,0.349 -2014-03-04 12:00:00,0.255,0.31,0.349 -2014-03-04 13:00:00,0.255,0.309,0.349 -2014-03-04 14:00:00,0.255,0.306,0.349 -2014-03-04 15:00:00,0.255,0.305,0.349 -2014-03-04 16:00:00,0.255,0.305,0.349 -2014-03-04 17:00:00,0.255,0.305,0.348 -2014-03-04 18:00:00,0.255,0.305,0.348 -2014-03-04 19:00:00,0.255,0.305,0.348 -2014-03-04 20:00:00,0.255,0.305,0.348 -2014-03-04 21:00:00,0.255,0.305,0.348 -2014-03-04 22:00:00,0.255,0.307,0.348 -2014-03-04 23:00:00,0.255,0.307,0.348 -2014-03-05 00:00:00,0.255,0.307,0.348 -2014-03-05 01:00:00,0.255,0.307,0.348 -2014-03-05 02:00:00,0.254,0.307,0.348 -2014-03-05 03:00:00,0.254,0.307,0.348 -2014-03-05 04:00:00,0.254,0.307,0.35 -2014-03-05 05:00:00,0.253,0.307,0.35100000000000003 -2014-03-05 06:00:00,0.253,0.307,0.35100000000000003 -2014-03-05 07:00:00,0.253,0.307,0.35100000000000003 -2014-03-05 08:00:00,0.253,0.307,0.35100000000000003 -2014-03-05 09:00:00,0.253,0.307,0.35100000000000003 -2014-03-05 10:00:00,0.254,0.307,0.35100000000000003 -2014-03-05 11:00:00,0.254,0.307,0.35 -2014-03-05 12:00:00,0.254,0.307,0.349 -2014-03-05 13:00:00,0.254,0.307,0.348 -2014-03-05 14:00:00,0.254,0.305,0.348 -2014-03-05 15:00:00,0.255,0.305,0.348 -2014-03-05 16:00:00,0.255,0.305,0.348 -2014-03-05 17:00:00,0.255,0.305,0.348 -2014-03-05 18:00:00,0.255,0.305,0.348 -2014-03-05 19:00:00,0.255,0.305,0.348 -2014-03-05 20:00:00,0.255,0.305,0.348 -2014-03-05 21:00:00,0.254,0.305,0.348 -2014-03-05 22:00:00,0.254,0.306,0.348 -2014-03-05 23:00:00,0.254,0.307,0.348 -2014-03-06 00:00:00,0.254,0.307,0.348 -2014-03-06 01:00:00,0.254,0.306,0.348 -2014-03-06 02:00:00,0.254,0.306,0.348 -2014-03-06 03:00:00,0.254,0.306,0.348 -2014-03-06 04:00:00,0.254,0.305,0.348 -2014-03-06 05:00:00,0.253,0.305,0.348 -2014-03-06 06:00:00,0.253,0.305,0.348 -2014-03-06 07:00:00,0.253,0.305,0.348 -2014-03-06 08:00:00,0.253,0.306,0.348 -2014-03-06 09:00:00,0.253,0.306,0.349 -2014-03-06 10:00:00,0.254,0.306,0.35 -2014-03-06 11:00:00,0.254,0.306,0.35 -2014-03-06 12:00:00,0.254,0.306,0.349 -2014-03-06 13:00:00,0.254,0.307,0.349 -2014-03-06 14:00:00,0.254,0.305,0.348 -2014-03-06 15:00:00,0.253,0.305,0.348 -2014-03-06 16:00:00,0.254,0.305,0.348 -2014-03-06 17:00:00,0.254,0.304,0.348 -2014-03-06 18:00:00,0.254,0.305,0.348 -2014-03-06 19:00:00,0.254,0.305,0.34700000000000003 -2014-03-06 20:00:00,0.254,0.305,0.348 -2014-03-06 21:00:00,0.253,0.305,0.348 -2014-03-06 22:00:00,0.253,0.305,0.348 -2014-03-06 23:00:00,0.253,0.307,0.34700000000000003 -2014-03-07 00:00:00,0.253,0.308,0.34700000000000003 -2014-03-07 01:00:00,0.253,0.306,0.34700000000000003 -2014-03-07 02:00:00,0.253,0.305,0.34700000000000003 -2014-03-07 03:00:00,0.253,0.305,0.34700000000000003 -2014-03-07 04:00:00,0.253,0.305,0.34700000000000003 -2014-03-07 05:00:00,0.253,0.305,0.34700000000000003 -2014-03-07 06:00:00,0.253,0.305,0.34700000000000003 -2014-03-07 07:00:00,0.252,0.305,0.34700000000000003 -2014-03-07 08:00:00,0.252,0.305,0.34700000000000003 -2014-03-07 09:00:00,0.252,0.305,0.34700000000000003 -2014-03-07 10:00:00,0.253,0.305,0.349 -2014-03-07 11:00:00,0.253,0.305,0.349 -2014-03-07 12:00:00,0.253,0.305,0.348 -2014-03-07 13:00:00,0.252,0.306,0.348 -2014-03-07 14:00:00,0.253,0.305,0.348 -2014-03-07 15:00:00,0.253,0.304,0.348 -2014-03-07 16:00:00,0.253,0.304,0.348 -2014-03-07 17:00:00,0.253,0.304,0.348 -2014-03-07 18:00:00,0.253,0.304,0.34700000000000003 -2014-03-07 19:00:00,0.253,0.304,0.34700000000000003 -2014-03-07 20:00:00,0.253,0.304,0.34700000000000003 -2014-03-07 21:00:00,0.253,0.304,0.34700000000000003 -2014-03-07 22:00:00,0.253,0.305,0.34700000000000003 -2014-03-07 23:00:00,0.253,0.305,0.34700000000000003 -2014-03-08 00:00:00,0.253,0.305,0.34700000000000003 -2014-03-08 01:00:00,0.253,0.305,0.34700000000000003 -2014-03-08 02:00:00,0.253,0.305,0.34700000000000003 -2014-03-08 03:00:00,0.252,0.305,0.34700000000000003 -2014-03-08 04:00:00,0.252,0.305,0.34700000000000003 -2014-03-08 05:00:00,0.252,0.305,0.34700000000000003 -2014-03-08 06:00:00,0.252,0.304,0.34700000000000003 -2014-03-08 07:00:00,0.252,0.304,0.34700000000000003 -2014-03-08 08:00:00,0.252,0.304,0.34700000000000003 -2014-03-08 09:00:00,0.252,0.304,0.34700000000000003 -2014-03-08 10:00:00,0.252,0.304,0.348 -2014-03-08 11:00:00,0.252,0.304,0.348 -2014-03-08 12:00:00,0.252,0.304,0.348 -2014-03-08 13:00:00,0.252,0.304,0.348 -2014-03-08 14:00:00,0.252,0.304,0.348 -2014-03-08 15:00:00,0.253,0.304,0.348 -2014-03-08 16:00:00,0.253,0.304,0.34700000000000003 -2014-03-08 17:00:00,0.253,0.304,0.34700000000000003 -2014-03-08 18:00:00,0.253,0.304,0.34700000000000003 -2014-03-08 19:00:00,0.253,0.304,0.34700000000000003 -2014-03-08 20:00:00,0.253,0.304,0.34700000000000003 -2014-03-08 21:00:00,0.253,0.304,0.34700000000000003 -2014-03-08 22:00:00,0.253,0.305,0.34700000000000003 -2014-03-08 23:00:00,0.252,0.305,0.34700000000000003 -2014-03-09 00:00:00,0.252,0.305,0.34700000000000003 -2014-03-09 01:00:00,0.252,0.305,0.34700000000000003 -2014-03-09 02:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 03:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 04:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 05:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 06:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 07:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 08:00:00,0.251,0.304,0.34700000000000003 -2014-03-09 09:00:00,0.251,0.304,0.34700000000000003 -2014-03-09 10:00:00,0.252,0.304,0.349 -2014-03-09 11:00:00,0.252,0.304,0.348 -2014-03-09 12:00:00,0.251,0.304,0.34700000000000003 -2014-03-09 13:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 14:00:00,0.252,0.302,0.34700000000000003 -2014-03-09 15:00:00,0.252,0.303,0.34700000000000003 -2014-03-09 16:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 17:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 18:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 19:00:00,0.253,0.304,0.34700000000000003 -2014-03-09 20:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 21:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 22:00:00,0.252,0.304,0.34700000000000003 -2014-03-09 23:00:00,0.252,0.304,0.34700000000000003 -2014-03-10 00:00:00,0.252,0.304,0.34700000000000003 -2014-03-10 01:00:00,0.252,0.304,0.34700000000000003 -2014-03-10 02:00:00,0.252,0.304,0.34700000000000003 -2014-03-10 03:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 04:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 05:00:00,0.251,0.304,0.34600000000000003 -2014-03-10 06:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 07:00:00,0.251,0.304,0.34600000000000003 -2014-03-10 08:00:00,0.251,0.304,0.34600000000000003 -2014-03-10 09:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 10:00:00,0.252,0.304,0.348 -2014-03-10 11:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 12:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 13:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 14:00:00,0.251,0.304,0.34700000000000003 -2014-03-10 15:00:00,0.252,0.304,0.34700000000000003 -2014-03-10 16:00:00,0.252,0.303,0.34700000000000003 -2014-03-10 17:00:00,0.252,0.304,0.34700000000000003 -2014-03-10 18:00:00,0.252,0.304,0.34700000000000003 -2014-03-10 19:00:00,0.252,0.304,0.34600000000000003 -2014-03-10 20:00:00,0.252,0.304,0.34600000000000003 -2014-03-10 21:00:00,0.252,0.304,0.34600000000000003 -2014-03-10 22:00:00,0.252,0.304,0.34600000000000003 -2014-03-10 23:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 00:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 01:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 02:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 03:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 04:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 05:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 06:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 07:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 08:00:00,0.251,0.304,0.34600000000000003 -2014-03-11 09:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 10:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 11:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 12:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 13:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 14:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 15:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 16:00:00,0.251,0.304,0.34700000000000003 -2014-03-11 17:00:00,0.252,0.303,0.34700000000000003 -2014-03-11 18:00:00,0.252,0.303,0.34600000000000003 -2014-03-11 19:00:00,0.252,0.303,0.34600000000000003 -2014-03-11 20:00:00,0.251,0.303,0.34600000000000003 -2014-03-11 21:00:00,0.252,0.302,0.34600000000000003 -2014-03-11 22:00:00,0.251,0.303,0.34600000000000003 -2014-03-11 23:00:00,0.251,0.303,0.34600000000000003 -2014-03-12 00:00:00,0.251,0.303,0.34600000000000003 -2014-03-12 01:00:00,0.251,0.304,0.34600000000000003 -2014-03-12 02:00:00,0.251,0.304,0.34700000000000003 -2014-03-12 03:00:00,0.251,0.304,0.34700000000000003 -2014-03-12 04:00:00,0.251,0.304,0.34700000000000003 -2014-03-12 05:00:00,0.251,0.304,0.34700000000000003 -2014-03-12 06:00:00,0.251,0.304,0.34700000000000003 -2014-03-12 07:00:00,0.25,0.304,0.34700000000000003 -2014-03-12 08:00:00,0.25,0.304,0.34700000000000003 -2014-03-12 09:00:00,0.251,0.304,0.34700000000000003 -2014-03-12 10:00:00,0.251,0.303,0.348 -2014-03-12 11:00:00,0.251,0.303,0.34700000000000003 -2014-03-12 12:00:00,0.25,0.303,0.34700000000000003 -2014-03-12 13:00:00,0.251,0.302,0.34700000000000003 -2014-03-12 14:00:00,0.251,0.302,0.34700000000000003 -2014-03-12 15:00:00,0.251,0.302,0.34700000000000003 -2014-03-12 16:00:00,0.251,0.302,0.34700000000000003 -2014-03-12 17:00:00,0.251,0.302,0.34700000000000003 -2014-03-12 18:00:00,0.251,0.302,0.34700000000000003 -2014-03-12 19:00:00,0.251,0.302,0.34600000000000003 -2014-03-12 20:00:00,0.251,0.302,0.34600000000000003 -2014-03-12 21:00:00,0.251,0.302,0.34600000000000003 -2014-03-12 22:00:00,0.251,0.302,0.34600000000000003 -2014-03-12 23:00:00,0.251,0.302,0.34600000000000003 -2014-03-13 00:00:00,0.251,0.302,0.34600000000000003 -2014-03-13 01:00:00,0.25,0.303,0.34600000000000003 -2014-03-13 02:00:00,0.25,0.302,0.34600000000000003 -2014-03-13 03:00:00,0.25,0.302,0.34600000000000003 -2014-03-13 04:00:00,0.25,0.302,0.34600000000000003 -2014-03-13 05:00:00,0.25,0.302,0.34600000000000003 -2014-03-13 06:00:00,0.25,0.29100000000000004,0.34600000000000003 -2014-03-13 07:00:00,0.25,0.304,0.34600000000000003 -2014-03-13 08:00:00,0.25,0.315,0.34600000000000003 -2014-03-13 09:00:00,0.25,0.321,0.34700000000000003 -2014-03-13 10:00:00,0.25,0.324,0.348 -2014-03-13 11:00:00,0.25,0.324,0.34700000000000003 -2014-03-13 12:00:00,0.25,0.326,0.34600000000000003 -2014-03-13 13:00:00,0.25,0.326,0.34600000000000003 -2014-03-13 14:00:00,0.25,0.326,0.344 -2014-03-13 15:00:00,0.251,0.326,0.34299999999999997 -2014-03-13 16:00:00,0.251,0.326,0.34299999999999997 -2014-03-13 17:00:00,0.251,0.326,0.34299999999999997 -2014-03-13 18:00:00,0.251,0.326,0.34299999999999997 -2014-03-13 19:00:00,0.251,0.326,0.34299999999999997 -2014-03-13 20:00:00,0.251,0.325,0.34299999999999997 -2014-03-13 21:00:00,0.251,0.324,0.34299999999999997 -2014-03-13 22:00:00,0.25,0.324,0.34299999999999997 -2014-03-13 23:00:00,0.25,0.32299999999999995,0.34299999999999997 -2014-03-14 00:00:00,0.25,0.322,0.34299999999999997 -2014-03-14 01:00:00,0.25,0.322,0.34299999999999997 -2014-03-14 02:00:00,0.25,0.321,0.34299999999999997 -2014-03-14 03:00:00,0.25,0.321,0.34299999999999997 -2014-03-14 04:00:00,0.25,0.321,0.34299999999999997 -2014-03-14 05:00:00,0.25,0.321,0.34299999999999997 -2014-03-14 06:00:00,0.249,0.32,0.34299999999999997 -2014-03-14 07:00:00,0.249,0.319,0.34299999999999997 -2014-03-14 08:00:00,0.249,0.319,0.34299999999999997 -2014-03-14 09:00:00,0.25,0.317,0.34299999999999997 -2014-03-14 10:00:00,0.25,0.317,0.344 -2014-03-14 11:00:00,0.249,0.317,0.34299999999999997 -2014-03-14 12:00:00,0.249,0.316,0.34299999999999997 -2014-03-14 13:00:00,0.25,0.315,0.34299999999999997 -2014-03-14 14:00:00,0.25,0.314,0.34299999999999997 -2014-03-14 15:00:00,0.25,0.314,0.34299999999999997 -2014-03-14 16:00:00,0.25,0.314,0.34299999999999997 -2014-03-14 17:00:00,0.25,0.314,0.34299999999999997 -2014-03-14 18:00:00,0.25,0.313,0.342 -2014-03-14 19:00:00,0.25,0.313,0.342 -2014-03-14 20:00:00,0.25,0.313,0.342 -2014-03-14 21:00:00,0.25,0.313,0.342 -2014-03-14 22:00:00,0.25,0.313,0.342 -2014-03-14 23:00:00,0.25,0.313,0.342 -2014-03-15 00:00:00,0.25,0.314,0.342 -2014-03-15 01:00:00,0.249,0.314,0.342 -2014-03-15 02:00:00,0.249,0.314,0.342 -2014-03-15 03:00:00,0.249,0.314,0.342 -2014-03-15 04:00:00,0.249,0.313,0.342 -2014-03-15 05:00:00,0.249,0.312,0.342 -2014-03-15 06:00:00,0.249,0.312,0.342 -2014-03-15 07:00:00,0.249,0.312,0.342 -2014-03-15 08:00:00,0.249,0.311,0.342 -2014-03-15 09:00:00,0.249,0.31,0.342 -2014-03-15 10:00:00,0.249,0.31,0.344 -2014-03-15 11:00:00,0.243,0.31,0.34700000000000003 -2014-03-15 12:00:00,0.244,0.31,0.34600000000000003 -2014-03-15 13:00:00,0.25,0.31,0.344 -2014-03-15 14:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 15:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 16:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 17:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 18:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 19:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 20:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 21:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 22:00:00,0.25,0.309,0.34299999999999997 -2014-03-15 23:00:00,0.25,0.31,0.34299999999999997 -2014-03-16 00:00:00,0.25,0.31,0.34299999999999997 -2014-03-16 01:00:00,0.25,0.309,0.34299999999999997 -2014-03-16 02:00:00,0.25,0.309,0.34299999999999997 -2014-03-16 03:00:00,0.25,0.309,0.34299999999999997 -2014-03-16 04:00:00,0.25,0.309,0.34299999999999997 -2014-03-16 05:00:00,0.25,0.309,0.34299999999999997 -2014-03-16 06:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 07:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 08:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 09:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 10:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 11:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 12:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 13:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 14:00:00,0.25,0.307,0.34299999999999997 -2014-03-16 15:00:00,0.251,0.307,0.34299999999999997 -2014-03-16 16:00:00,0.251,0.306,0.34299999999999997 -2014-03-16 17:00:00,0.251,0.306,0.34299999999999997 -2014-03-16 18:00:00,0.251,0.305,0.34299999999999997 -2014-03-16 19:00:00,0.251,0.305,0.34299999999999997 -2014-03-16 20:00:00,0.251,0.305,0.34299999999999997 -2014-03-16 21:00:00,0.251,0.305,0.34299999999999997 -2014-03-16 22:00:00,0.251,0.303,0.34299999999999997 -2014-03-16 23:00:00,0.251,0.305,0.34299999999999997 -2014-03-17 00:00:00,0.25,0.309,0.34299999999999997 -2014-03-17 01:00:00,0.25,0.311,0.342 -2014-03-17 02:00:00,0.25,0.314,0.342 -2014-03-17 03:00:00,0.25,0.315,0.342 -2014-03-17 04:00:00,0.25,0.317,0.342 -2014-03-17 05:00:00,0.25,0.317,0.342 -2014-03-17 06:00:00,0.25,0.317,0.342 -2014-03-17 07:00:00,0.25,0.317,0.342 -2014-03-17 08:00:00,0.25,0.319,0.34299999999999997 -2014-03-17 09:00:00,0.25,0.319,0.342 -2014-03-17 10:00:00,0.25,0.319,0.342 -2014-03-17 11:00:00,0.25,0.319,0.342 -2014-03-17 12:00:00,0.25,0.317,0.342 -2014-03-17 13:00:00,0.25,0.317,0.342 -2014-03-17 14:00:00,0.25,0.317,0.342 -2014-03-17 15:00:00,0.25,0.317,0.342 -2014-03-17 16:00:00,0.25,0.316,0.342 -2014-03-17 17:00:00,0.25,0.316,0.342 -2014-03-17 18:00:00,0.25,0.315,0.342 -2014-03-17 19:00:00,0.25,0.315,0.342 -2014-03-17 20:00:00,0.25,0.315,0.342 -2014-03-17 21:00:00,0.25,0.315,0.342 -2014-03-17 22:00:00,0.25,0.317,0.342 -2014-03-17 23:00:00,0.25,0.317,0.342 -2014-03-18 00:00:00,0.25,0.317,0.342 -2014-03-18 01:00:00,0.25,0.317,0.342 -2014-03-18 02:00:00,0.25,0.315,0.342 -2014-03-18 03:00:00,0.25,0.315,0.342 -2014-03-18 04:00:00,0.25,0.315,0.342 -2014-03-18 05:00:00,0.25,0.315,0.342 -2014-03-18 06:00:00,0.25,0.315,0.342 -2014-03-18 07:00:00,0.25,0.314,0.342 -2014-03-18 08:00:00,0.25,0.314,0.342 -2014-03-18 09:00:00,0.25,0.314,0.342 -2014-03-18 10:00:00,0.25,0.314,0.342 -2014-03-18 11:00:00,0.25,0.312,0.342 -2014-03-18 12:00:00,0.25,0.311,0.342 -2014-03-18 13:00:00,0.25,0.31,0.342 -2014-03-18 14:00:00,0.25,0.31,0.342 -2014-03-18 15:00:00,0.25,0.31,0.342 -2014-03-18 16:00:00,0.25,0.31,0.342 -2014-03-18 17:00:00,0.251,0.31,0.342 -2014-03-18 18:00:00,0.251,0.31,0.342 -2014-03-18 19:00:00,0.25,0.31,0.342 -2014-03-18 20:00:00,0.25,0.31,0.342 -2014-03-18 21:00:00,0.25,0.309,0.342 -2014-03-18 22:00:00,0.25,0.31,0.342 -2014-03-18 23:00:00,0.25,0.31,0.342 -2014-03-19 00:00:00,0.25,0.31,0.342 -2014-03-19 01:00:00,0.25,0.31,0.34299999999999997 -2014-03-19 02:00:00,0.25,0.31,0.344 -2014-03-19 03:00:00,0.253,0.31,0.35 -2014-03-19 04:00:00,0.26,0.31,0.354 -2014-03-19 05:00:00,0.256,0.31,0.35100000000000003 -2014-03-19 06:00:00,0.254,0.31,0.35 -2014-03-19 07:00:00,0.255,0.31,0.349 -2014-03-19 08:00:00,0.258,0.31,0.349 -2014-03-19 09:00:00,0.26,0.31,0.349 -2014-03-19 10:00:00,0.261,0.31,0.348 -2014-03-19 11:00:00,0.261,0.31,0.348 -2014-03-19 12:00:00,0.261,0.31,0.34700000000000003 -2014-03-19 13:00:00,0.261,0.309,0.34700000000000003 -2014-03-19 14:00:00,0.26,0.307,0.34700000000000003 -2014-03-19 15:00:00,0.261,0.307,0.345 -2014-03-19 16:00:00,0.261,0.307,0.345 -2014-03-19 17:00:00,0.261,0.307,0.345 -2014-03-19 18:00:00,0.26,0.307,0.345 -2014-03-19 19:00:00,0.26,0.307,0.345 -2014-03-19 20:00:00,0.26,0.307,0.345 -2014-03-19 21:00:00,0.259,0.307,0.345 -2014-03-19 22:00:00,0.259,0.307,0.345 -2014-03-19 23:00:00,0.259,0.307,0.345 -2014-03-20 00:00:00,0.259,0.308,0.345 -2014-03-20 01:00:00,0.258,0.307,0.345 -2014-03-20 02:00:00,0.258,0.307,0.345 -2014-03-20 03:00:00,0.258,0.307,0.345 -2014-03-20 04:00:00,0.258,0.307,0.345 -2014-03-20 05:00:00,0.258,0.307,0.344 -2014-03-20 06:00:00,0.258,0.307,0.344 -2014-03-20 07:00:00,0.257,0.307,0.344 -2014-03-20 08:00:00,0.257,0.307,0.344 -2014-03-20 09:00:00,0.257,0.307,0.344 -2014-03-20 10:00:00,0.257,0.307,0.344 -2014-03-20 11:00:00,0.257,0.307,0.344 -2014-03-20 12:00:00,0.257,0.307,0.344 -2014-03-20 13:00:00,0.257,0.307,0.344 -2014-03-20 14:00:00,0.258,0.305,0.344 -2014-03-20 15:00:00,0.258,0.305,0.344 -2014-03-20 16:00:00,0.258,0.305,0.344 -2014-03-20 17:00:00,0.258,0.305,0.344 -2014-03-20 18:00:00,0.258,0.305,0.344 -2014-03-20 19:00:00,0.258,0.305,0.344 -2014-03-20 20:00:00,0.258,0.305,0.344 -2014-03-20 21:00:00,0.258,0.305,0.344 -2014-03-20 22:00:00,0.257,0.306,0.344 -2014-03-20 23:00:00,0.257,0.307,0.344 -2014-03-21 00:00:00,0.257,0.307,0.344 -2014-03-21 01:00:00,0.257,0.307,0.344 -2014-03-21 02:00:00,0.257,0.307,0.344 -2014-03-21 03:00:00,0.256,0.307,0.344 -2014-03-21 04:00:00,0.256,0.306,0.344 -2014-03-21 05:00:00,0.256,0.306,0.344 -2014-03-21 06:00:00,0.256,0.305,0.344 -2014-03-21 07:00:00,0.256,0.305,0.344 -2014-03-21 08:00:00,0.256,0.305,0.344 -2014-03-21 09:00:00,0.256,0.305,0.344 -2014-03-21 10:00:00,0.256,0.305,0.344 -2014-03-21 11:00:00,0.256,0.305,0.344 -2014-03-21 12:00:00,0.256,0.305,0.344 -2014-03-21 13:00:00,0.256,0.304,0.34299999999999997 -2014-03-21 14:00:00,0.257,0.305,0.34299999999999997 -2014-03-21 15:00:00,0.257,0.305,0.34299999999999997 -2014-03-21 16:00:00,0.256,0.304,0.34299999999999997 -2014-03-21 17:00:00,0.257,0.304,0.34299999999999997 -2014-03-21 18:00:00,0.256,0.304,0.34299999999999997 -2014-03-21 19:00:00,0.256,0.304,0.34299999999999997 -2014-03-21 20:00:00,0.256,0.304,0.34299999999999997 -2014-03-21 21:00:00,0.256,0.304,0.34299999999999997 -2014-03-21 22:00:00,0.256,0.305,0.34299999999999997 -2014-03-21 23:00:00,0.256,0.307,0.34299999999999997 -2014-03-22 00:00:00,0.256,0.306,0.34299999999999997 -2014-03-22 01:00:00,0.256,0.307,0.34299999999999997 -2014-03-22 02:00:00,0.256,0.306,0.34299999999999997 -2014-03-22 03:00:00,0.256,0.306,0.34299999999999997 -2014-03-22 04:00:00,0.255,0.305,0.344 -2014-03-22 05:00:00,0.255,0.305,0.344 -2014-03-22 06:00:00,0.255,0.305,0.344 -2014-03-22 07:00:00,0.255,0.304,0.34299999999999997 -2014-03-22 08:00:00,0.255,0.304,0.345 -2014-03-22 09:00:00,0.255,0.304,0.345 -2014-03-22 10:00:00,0.255,0.304,0.344 -2014-03-22 11:00:00,0.254,0.304,0.34299999999999997 -2014-03-22 12:00:00,0.254,0.304,0.34299999999999997 -2014-03-22 13:00:00,0.255,0.304,0.34299999999999997 -2014-03-22 14:00:00,0.255,0.304,0.34299999999999997 -2014-03-22 15:00:00,0.255,0.304,0.34299999999999997 -2014-03-22 16:00:00,0.255,0.304,0.34299999999999997 -2014-03-22 17:00:00,0.255,0.304,0.34299999999999997 -2014-03-22 18:00:00,0.253,0.304,0.345 -2014-03-22 19:00:00,0.251,0.304,0.348 -2014-03-22 20:00:00,0.26,0.304,0.348 -2014-03-22 21:00:00,0.257,0.304,0.348 -2014-03-22 22:00:00,0.255,0.304,0.348 -2014-03-22 23:00:00,0.254,0.305,0.348 -2014-03-23 00:00:00,0.253,0.305,0.348 -2014-03-23 01:00:00,0.253,0.305,0.348 -2014-03-23 02:00:00,0.253,0.305,0.348 -2014-03-23 03:00:00,0.252,0.305,0.348 -2014-03-23 04:00:00,0.252,0.305,0.348 -2014-03-23 05:00:00,0.253,0.304,0.348 -2014-03-23 06:00:00,0.254,0.304,0.34700000000000003 -2014-03-23 07:00:00,0.256,0.304,0.34700000000000003 -2014-03-23 08:00:00,0.261,0.304,0.34600000000000003 -2014-03-23 09:00:00,0.255,0.304,0.34700000000000003 -2014-03-23 10:00:00,0.259,0.304,0.34600000000000003 -2014-03-23 11:00:00,0.26,0.304,0.345 -2014-03-23 12:00:00,0.26,0.304,0.344 -2014-03-23 13:00:00,0.26,0.304,0.344 -2014-03-23 14:00:00,0.26,0.303,0.344 -2014-03-23 15:00:00,0.26,0.303,0.34299999999999997 -2014-03-23 16:00:00,0.26,0.303,0.34299999999999997 -2014-03-23 17:00:00,0.26,0.303,0.34299999999999997 -2014-03-23 18:00:00,0.26,0.303,0.34299999999999997 -2014-03-23 19:00:00,0.26,0.303,0.34299999999999997 -2014-03-23 20:00:00,0.26,0.303,0.34299999999999997 -2014-03-23 21:00:00,0.259,0.303,0.34299999999999997 -2014-03-23 22:00:00,0.259,0.304,0.34299999999999997 -2014-03-23 23:00:00,0.259,0.304,0.34299999999999997 -2014-03-24 00:00:00,0.259,0.304,0.34299999999999997 -2014-03-24 01:00:00,0.258,0.304,0.34299999999999997 -2014-03-24 02:00:00,0.258,0.304,0.34299999999999997 -2014-03-24 03:00:00,0.258,0.304,0.34299999999999997 -2014-03-24 04:00:00,0.258,0.304,0.34299999999999997 -2014-03-24 05:00:00,0.257,0.304,0.34299999999999997 -2014-03-24 06:00:00,0.257,0.304,0.34299999999999997 -2014-03-24 07:00:00,0.257,0.304,0.34299999999999997 -2014-03-24 08:00:00,0.257,0.303,0.34299999999999997 -2014-03-24 09:00:00,0.257,0.303,0.344 -2014-03-24 10:00:00,0.257,0.303,0.344 -2014-03-24 11:00:00,0.257,0.302,0.34299999999999997 -2014-03-24 12:00:00,0.257,0.303,0.34299999999999997 -2014-03-24 13:00:00,0.257,0.302,0.34299999999999997 -2014-03-24 14:00:00,0.258,0.302,0.34299999999999997 -2014-03-24 15:00:00,0.258,0.302,0.34299999999999997 -2014-03-24 16:00:00,0.258,0.302,0.34299999999999997 -2014-03-24 17:00:00,0.258,0.302,0.34299999999999997 -2014-03-24 18:00:00,0.258,0.302,0.34299999999999997 -2014-03-24 19:00:00,0.258,0.302,0.342 -2014-03-24 20:00:00,0.258,0.302,0.342 -2014-03-24 21:00:00,0.257,0.302,0.342 -2014-03-24 22:00:00,0.257,0.303,0.342 -2014-03-24 23:00:00,0.257,0.304,0.342 -2014-03-25 00:00:00,0.257,0.304,0.342 -2014-03-25 01:00:00,0.256,0.303,0.342 -2014-03-25 02:00:00,0.256,0.303,0.342 -2014-03-25 03:00:00,0.256,0.303,0.342 -2014-03-25 04:00:00,0.256,0.303,0.342 -2014-03-25 05:00:00,0.256,0.302,0.342 -2014-03-25 06:00:00,0.255,0.303,0.342 -2014-03-25 07:00:00,0.255,0.302,0.342 -2014-03-25 08:00:00,0.255,0.302,0.342 -2014-03-25 09:00:00,0.255,0.302,0.34299999999999997 -2014-03-25 10:00:00,0.256,0.302,0.344 -2014-03-25 11:00:00,0.255,0.302,0.34299999999999997 -2014-03-25 12:00:00,0.255,0.302,0.342 -2014-03-25 13:00:00,0.255,0.302,0.342 -2014-03-25 14:00:00,0.256,0.301,0.342 -2014-03-25 15:00:00,0.256,0.3,0.342 -2014-03-25 16:00:00,0.256,0.3,0.342 -2014-03-25 17:00:00,0.256,0.3,0.342 -2014-03-25 18:00:00,0.256,0.3,0.342 -2014-03-25 19:00:00,0.256,0.3,0.342 -2014-03-25 20:00:00,0.256,0.3,0.342 -2014-03-25 21:00:00,0.255,0.3,0.341 -2014-03-25 22:00:00,0.255,0.301,0.342 -2014-03-25 23:00:00,0.255,0.302,0.341 -2014-03-26 00:00:00,0.255,0.302,0.341 -2014-03-26 01:00:00,0.255,0.302,0.341 -2014-03-26 02:00:00,0.254,0.302,0.341 -2014-03-26 03:00:00,0.254,0.302,0.341 -2014-03-26 04:00:00,0.254,0.302,0.341 -2014-03-26 05:00:00,0.254,0.302,0.341 -2014-03-26 06:00:00,0.254,0.301,0.341 -2014-03-26 07:00:00,0.254,0.3,0.341 -2014-03-26 08:00:00,0.254,0.3,0.341 -2014-03-26 09:00:00,0.254,0.3,0.342 -2014-03-26 10:00:00,0.254,0.3,0.34299999999999997 -2014-03-26 11:00:00,0.254,0.3,0.34299999999999997 -2014-03-26 12:00:00,0.253,0.3,0.342 -2014-03-26 13:00:00,0.254,0.3,0.342 -2014-03-26 14:00:00,0.254,0.3,0.342 -2014-03-26 15:00:00,0.254,0.3,0.341 -2014-03-26 16:00:00,0.254,0.3,0.341 -2014-03-26 17:00:00,0.254,0.3,0.342 -2014-03-26 18:00:00,0.254,0.3,0.342 -2014-03-26 19:00:00,0.254,0.3,0.341 -2014-03-26 20:00:00,0.254,0.3,0.341 -2014-03-26 21:00:00,0.254,0.3,0.341 -2014-03-26 22:00:00,0.254,0.3,0.341 -2014-03-26 23:00:00,0.254,0.3,0.341 -2014-03-27 00:00:00,0.254,0.302,0.341 -2014-03-27 01:00:00,0.254,0.302,0.341 -2014-03-27 02:00:00,0.253,0.301,0.341 -2014-03-27 03:00:00,0.253,0.301,0.341 -2014-03-27 04:00:00,0.253,0.3,0.341 -2014-03-27 05:00:00,0.253,0.3,0.341 -2014-03-27 06:00:00,0.253,0.3,0.341 -2014-03-27 07:00:00,0.253,0.3,0.341 -2014-03-27 08:00:00,0.253,0.3,0.341 -2014-03-27 09:00:00,0.253,0.3,0.342 -2014-03-27 10:00:00,0.253,0.3,0.342 -2014-03-27 11:00:00,0.253,0.3,0.341 -2014-03-27 12:00:00,0.253,0.3,0.341 -2014-03-27 13:00:00,0.253,0.3,0.341 -2014-03-27 14:00:00,0.254,0.299,0.341 -2014-03-27 15:00:00,0.254,0.299,0.341 -2014-03-27 16:00:00,0.254,0.299,0.341 -2014-03-27 17:00:00,0.254,0.299,0.341 -2014-03-27 18:00:00,0.254,0.299,0.341 -2014-03-27 19:00:00,0.254,0.299,0.341 -2014-03-27 20:00:00,0.254,0.299,0.341 -2014-03-27 21:00:00,0.254,0.299,0.341 -2014-03-27 22:00:00,0.253,0.3,0.341 -2014-03-27 23:00:00,0.253,0.3,0.341 -2014-03-28 00:00:00,0.253,0.3,0.341 -2014-03-28 01:00:00,0.253,0.3,0.341 -2014-03-28 02:00:00,0.253,0.3,0.341 -2014-03-28 03:00:00,0.253,0.3,0.341 -2014-03-28 04:00:00,0.253,0.3,0.341 -2014-03-28 05:00:00,0.252,0.3,0.341 -2014-03-28 06:00:00,0.252,0.3,0.341 -2014-03-28 07:00:00,0.252,0.299,0.341 -2014-03-28 08:00:00,0.252,0.299,0.341 -2014-03-28 09:00:00,0.252,0.299,0.341 -2014-03-28 10:00:00,0.252,0.298,0.341 -2014-03-28 11:00:00,0.252,0.298,0.341 -2014-03-28 12:00:00,0.252,0.298,0.341 -2014-03-28 13:00:00,0.253,0.298,0.341 -2014-03-28 14:00:00,0.253,0.298,0.341 -2014-03-28 15:00:00,0.253,0.298,0.341 -2014-03-28 16:00:00,0.253,0.298,0.341 -2014-03-28 17:00:00,0.253,0.298,0.341 -2014-03-28 18:00:00,0.253,0.298,0.341 -2014-03-28 19:00:00,0.253,0.298,0.341 -2014-03-28 20:00:00,0.253,0.298,0.341 -2014-03-28 21:00:00,0.253,0.298,0.341 -2014-03-28 22:00:00,0.253,0.298,0.341 -2014-03-28 23:00:00,0.252,0.299,0.341 -2014-03-29 00:00:00,0.252,0.3,0.341 -2014-03-29 01:00:00,0.252,0.3,0.341 -2014-03-29 02:00:00,0.252,0.299,0.341 -2014-03-29 03:00:00,0.252,0.299,0.341 -2014-03-29 04:00:00,0.252,0.299,0.341 -2014-03-29 05:00:00,0.252,0.299,0.341 -2014-03-29 06:00:00,0.252,0.299,0.341 -2014-03-29 07:00:00,0.251,0.298,0.34 -2014-03-29 08:00:00,0.252,0.298,0.341 -2014-03-29 09:00:00,0.252,0.298,0.342 -2014-03-29 10:00:00,0.251,0.298,0.342 -2014-03-29 11:00:00,0.251,0.298,0.341 -2014-03-29 12:00:00,0.251,0.298,0.341 -2014-03-29 13:00:00,0.255,0.298,0.341 -2014-03-29 14:00:00,0.257,0.298,0.341 -2014-03-29 15:00:00,0.262,0.298,0.341 -2014-03-29 16:00:00,0.261,0.298,0.341 -2014-03-29 17:00:00,0.259,0.298,0.341 -2014-03-29 18:00:00,0.261,0.298,0.341 -2014-03-29 19:00:00,0.26,0.298,0.34 -2014-03-29 20:00:00,0.259,0.298,0.34 -2014-03-29 21:00:00,0.258,0.298,0.34 -2014-03-29 22:00:00,0.26,0.298,0.34 -2014-03-29 23:00:00,0.258,0.298,0.34 -2014-03-30 00:00:00,0.258,0.298,0.34 -2014-03-30 01:00:00,0.259,0.298,0.34 -2014-03-30 02:00:00,0.255,0.298,0.34 -2014-03-30 03:00:00,0.255,0.298,0.34 -2014-03-30 04:00:00,0.255,0.298,0.34 -2014-03-30 05:00:00,0.255,0.298,0.34 -2014-03-30 06:00:00,0.255,0.298,0.34 -2014-03-30 07:00:00,0.256,0.298,0.34 -2014-03-30 08:00:00,0.256,0.297,0.34 -2014-03-30 09:00:00,0.256,0.297,0.341 -2014-03-30 10:00:00,0.255,0.297,0.34 -2014-03-30 11:00:00,0.255,0.297,0.34 -2014-03-30 12:00:00,0.255,0.297,0.34 -2014-03-30 13:00:00,0.255,0.297,0.34 -2014-03-30 14:00:00,0.256,0.297,0.34 -2014-03-30 15:00:00,0.257,0.297,0.34 -2014-03-30 16:00:00,0.258,0.297,0.34 -2014-03-30 17:00:00,0.258,0.297,0.34 -2014-03-30 18:00:00,0.258,0.297,0.34 -2014-03-30 19:00:00,0.257,0.297,0.34 -2014-03-30 20:00:00,0.257,0.297,0.34 -2014-03-30 21:00:00,0.257,0.297,0.34 -2014-03-30 22:00:00,0.256,0.297,0.34 -2014-03-30 23:00:00,0.256,0.297,0.34 -2014-03-31 00:00:00,0.258,0.297,0.34 -2014-03-31 01:00:00,0.258,0.297,0.34 -2014-03-31 02:00:00,0.258,0.297,0.34 -2014-03-31 03:00:00,0.256,0.297,0.34 -2014-03-31 04:00:00,0.255,0.297,0.34 -2014-03-31 05:00:00,0.256,0.297,0.34 -2014-03-31 06:00:00,0.258,0.297,0.34 -2014-03-31 07:00:00,0.257,0.297,0.34 -2014-03-31 08:00:00,0.257,0.297,0.34 -2014-03-31 09:00:00,0.257,0.297,0.34 -2014-03-31 10:00:00,0.258,0.297,0.34 -2014-03-31 11:00:00,0.257,0.297,0.34 -2014-03-31 12:00:00,0.257,0.29600000000000004,0.34 -2014-03-31 13:00:00,0.256,0.297,0.34 -2014-03-31 14:00:00,0.254,0.297,0.34 -2014-03-31 15:00:00,0.253,0.29600000000000004,0.34 -2014-03-31 16:00:00,0.253,0.29600000000000004,0.34 -2014-03-31 17:00:00,0.255,0.29600000000000004,0.34 -2014-03-31 18:00:00,0.254,0.29600000000000004,0.34 -2014-03-31 19:00:00,0.255,0.29600000000000004,0.33899999999999997 -2014-03-31 20:00:00,0.25,0.29600000000000004,0.33899999999999997 -2014-03-31 21:00:00,0.248,0.297,0.33899999999999997 -2014-03-31 22:00:00,0.248,0.297,0.33899999999999997 -2014-03-31 23:00:00,0.248,0.297,0.33899999999999997 -2014-04-01 00:00:00,0.248,0.297,0.33899999999999997 -2014-04-01 01:00:00,0.248,0.297,0.33899999999999997 -2014-04-01 02:00:00,0.248,0.297,0.33899999999999997 -2014-04-01 03:00:00,0.248,0.297,0.33899999999999997 -2014-04-01 04:00:00,0.247,0.297,0.33899999999999997 -2014-04-01 05:00:00,0.247,0.297,0.33899999999999997 -2014-04-01 06:00:00,0.247,0.297,0.33899999999999997 -2014-04-01 07:00:00,0.247,0.29600000000000004,0.33899999999999997 -2014-04-01 08:00:00,0.247,0.29600000000000004,0.33899999999999997 -2014-04-01 09:00:00,0.247,0.29600000000000004,0.33899999999999997 -2014-04-01 10:00:00,0.247,0.295,0.33899999999999997 -2014-04-01 11:00:00,0.248,0.295,0.33899999999999997 -2014-04-01 12:00:00,0.248,0.295,0.33899999999999997 -2014-04-01 13:00:00,0.248,0.295,0.33899999999999997 -2014-04-01 14:00:00,0.248,0.295,0.33899999999999997 -2014-04-01 15:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 16:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 17:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 18:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 19:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 20:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 21:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 22:00:00,0.249,0.295,0.33899999999999997 -2014-04-01 23:00:00,0.248,0.29600000000000004,0.33899999999999997 -2014-04-02 00:00:00,0.248,0.29600000000000004,0.33899999999999997 -2014-04-02 01:00:00,0.248,0.29600000000000004,0.33899999999999997 -2014-04-02 02:00:00,0.248,0.29600000000000004,0.33899999999999997 -2014-04-02 03:00:00,0.248,0.295,0.33899999999999997 -2014-04-02 04:00:00,0.248,0.295,0.33899999999999997 -2014-04-02 05:00:00,0.247,0.295,0.33899999999999997 -2014-04-02 06:00:00,0.247,0.295,0.33899999999999997 -2014-04-02 07:00:00,0.247,0.295,0.33899999999999997 -2014-04-02 08:00:00,0.247,0.295,0.33899999999999997 -2014-04-02 09:00:00,0.24600000000000002,0.295,0.33899999999999997 -2014-04-02 10:00:00,0.24600000000000002,0.293,0.33899999999999997 -2014-04-02 11:00:00,0.247,0.293,0.33899999999999997 -2014-04-02 12:00:00,0.247,0.293,0.33899999999999997 -2014-04-02 13:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 14:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 15:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 16:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 17:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 18:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 19:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 20:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 21:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 22:00:00,0.248,0.293,0.33899999999999997 -2014-04-02 23:00:00,0.248,0.293,0.33899999999999997 -2014-04-03 00:00:00,0.248,0.292,0.33899999999999997 -2014-04-03 01:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 02:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 03:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 04:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 05:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 06:00:00,0.24600000000000002,0.292,0.33899999999999997 -2014-04-03 07:00:00,0.24600000000000002,0.292,0.33899999999999997 -2014-04-03 08:00:00,0.24600000000000002,0.292,0.33899999999999997 -2014-04-03 09:00:00,0.24600000000000002,0.292,0.33899999999999997 -2014-04-03 10:00:00,0.24600000000000002,0.292,0.33899999999999997 -2014-04-03 11:00:00,0.24600000000000002,0.292,0.33899999999999997 -2014-04-03 12:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 13:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 14:00:00,0.247,0.292,0.33899999999999997 -2014-04-03 15:00:00,0.248,0.292,0.33899999999999997 -2014-04-03 16:00:00,0.248,0.292,0.33899999999999997 -2014-04-03 17:00:00,0.248,0.292,0.33899999999999997 -2014-04-03 18:00:00,0.248,0.292,0.33899999999999997 -2014-04-03 19:00:00,0.248,0.292,0.33899999999999997 -2014-04-03 20:00:00,0.248,0.292,0.33799999999999997 -2014-04-03 21:00:00,0.248,0.292,0.33799999999999997 -2014-04-03 22:00:00,0.248,0.292,0.33899999999999997 -2014-04-03 23:00:00,0.247,0.292,0.33899999999999997 -2014-04-04 00:00:00,0.247,0.292,0.33899999999999997 -2014-04-04 01:00:00,0.247,0.292,0.33899999999999997 -2014-04-04 02:00:00,0.247,0.292,0.33799999999999997 -2014-04-04 03:00:00,0.247,0.292,0.33799999999999997 -2014-04-04 04:00:00,0.247,0.292,0.33799999999999997 -2014-04-04 05:00:00,0.247,0.292,0.33799999999999997 -2014-04-04 06:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-04 07:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-04 08:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-04 09:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-04 10:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-04 11:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-04 12:00:00,0.247,0.292,0.33799999999999997 -2014-04-04 13:00:00,0.247,0.29100000000000004,0.33799999999999997 -2014-04-04 14:00:00,0.247,0.29100000000000004,0.33799999999999997 -2014-04-04 15:00:00,0.247,0.29100000000000004,0.33799999999999997 -2014-04-04 16:00:00,0.247,0.29,0.33799999999999997 -2014-04-04 17:00:00,0.247,0.29,0.33799999999999997 -2014-04-04 18:00:00,0.247,0.29,0.33799999999999997 -2014-04-04 19:00:00,0.247,0.29,0.33799999999999997 -2014-04-04 20:00:00,0.247,0.29,0.33799999999999997 -2014-04-04 21:00:00,0.247,0.29,0.33799999999999997 -2014-04-04 22:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-04 23:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 00:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 01:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 02:00:00,0.24600000000000002,0.29100000000000004,0.33799999999999997 -2014-04-05 03:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-05 04:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-04-05 05:00:00,0.245,0.292,0.33799999999999997 -2014-04-05 06:00:00,0.24600000000000002,0.29100000000000004,0.33799999999999997 -2014-04-05 07:00:00,0.245,0.29,0.33799999999999997 -2014-04-05 08:00:00,0.245,0.29,0.33899999999999997 -2014-04-05 09:00:00,0.245,0.29,0.33799999999999997 -2014-04-05 10:00:00,0.245,0.29,0.33799999999999997 -2014-04-05 11:00:00,0.245,0.29,0.33799999999999997 -2014-04-05 12:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 13:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 14:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 15:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 16:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 17:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 18:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 19:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 20:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 21:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 22:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-05 23:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-06 00:00:00,0.24600000000000002,0.29,0.337 -2014-04-06 01:00:00,0.24600000000000002,0.29,0.337 -2014-04-06 02:00:00,0.245,0.29,0.337 -2014-04-06 03:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-06 04:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-06 05:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-06 06:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-06 07:00:00,0.24600000000000002,0.29,0.33799999999999997 -2014-04-06 08:00:00,0.245,0.29,0.33799999999999997 -2014-04-06 09:00:00,0.245,0.29,0.33799999999999997 -2014-04-06 10:00:00,0.245,0.289,0.337 -2014-04-06 11:00:00,0.245,0.289,0.337 -2014-04-06 12:00:00,0.24600000000000002,0.289,0.337 -2014-04-06 13:00:00,0.24600000000000002,0.289,0.337 -2014-04-06 14:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-06 15:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-06 16:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-06 17:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-06 18:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-06 19:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-06 20:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-06 21:00:00,0.24600000000000002,0.28800000000000003,0.336 -2014-04-06 22:00:00,0.24600000000000002,0.28800000000000003,0.336 -2014-04-06 23:00:00,0.24600000000000002,0.28800000000000003,0.337 -2014-04-07 00:00:00,0.245,0.28800000000000003,0.337 -2014-04-07 01:00:00,0.24600000000000002,0.28800000000000003,0.336 -2014-04-07 02:00:00,0.245,0.28800000000000003,0.337 -2014-04-07 03:00:00,0.245,0.28800000000000003,0.336 -2014-04-07 04:00:00,0.245,0.28800000000000003,0.336 -2014-04-07 05:00:00,0.245,0.28800000000000003,0.336 -2014-04-07 06:00:00,0.245,0.28800000000000003,0.336 -2014-04-07 07:00:00,0.245,0.28800000000000003,0.337 -2014-04-07 08:00:00,0.245,0.28800000000000003,0.336 -2014-04-07 09:00:00,0.245,0.28800000000000003,0.336 -2014-04-07 10:00:00,0.245,0.28800000000000003,0.336 -2014-04-07 11:00:00,0.245,0.287,0.337 -2014-04-07 12:00:00,0.245,0.287,0.337 -2014-04-07 13:00:00,0.24600000000000002,0.287,0.337 -2014-04-07 14:00:00,0.24600000000000002,0.287,0.336 -2014-04-07 15:00:00,0.24600000000000002,0.287,0.336 -2014-04-07 16:00:00,0.24600000000000002,0.287,0.336 -2014-04-07 17:00:00,0.24600000000000002,0.287,0.336 -2014-04-07 18:00:00,0.24600000000000002,0.287,0.336 -2014-04-07 19:00:00,0.24600000000000002,0.287,0.336 -2014-04-07 20:00:00,0.245,0.28600000000000003,0.336 -2014-04-07 21:00:00,0.245,0.28600000000000003,0.336 -2014-04-07 22:00:00,0.245,0.287,0.336 -2014-04-07 23:00:00,0.245,0.287,0.336 -2014-04-08 00:00:00,0.245,0.287,0.336 -2014-04-08 01:00:00,0.244,0.287,0.336 -2014-04-08 02:00:00,0.244,0.287,0.336 -2014-04-08 03:00:00,0.244,0.287,0.336 -2014-04-08 04:00:00,0.244,0.287,0.336 -2014-04-08 05:00:00,0.244,0.287,0.336 -2014-04-08 06:00:00,0.244,0.28600000000000003,0.336 -2014-04-08 07:00:00,0.244,0.28600000000000003,0.33799999999999997 -2014-04-08 08:00:00,0.244,0.28600000000000003,0.33799999999999997 -2014-04-08 09:00:00,0.244,0.285,0.337 -2014-04-08 10:00:00,0.244,0.285,0.336 -2014-04-08 11:00:00,0.244,0.284,0.336 -2014-04-08 12:00:00,0.244,0.28300000000000003,0.335 -2014-04-08 13:00:00,0.244,0.28300000000000003,0.335 -2014-04-08 14:00:00,0.244,0.284,0.335 -2014-04-08 15:00:00,0.244,0.285,0.335 -2014-04-08 16:00:00,0.244,0.28300000000000003,0.335 -2014-04-08 17:00:00,0.244,0.28300000000000003,0.335 -2014-04-08 18:00:00,0.243,0.28300000000000003,0.335 -2014-04-08 19:00:00,0.243,0.28300000000000003,0.335 -2014-04-08 20:00:00,0.24100000000000002,0.28300000000000003,0.337 -2014-04-08 21:00:00,0.239,0.28300000000000003,0.34 -2014-04-08 22:00:00,0.24,0.28300000000000003,0.34 -2014-04-08 23:00:00,0.237,0.28300000000000003,0.341 -2014-04-09 00:00:00,0.237,0.28300000000000003,0.341 -2014-04-09 01:00:00,0.23800000000000002,0.28300000000000003,0.341 -2014-04-09 02:00:00,0.24,0.28300000000000003,0.34 -2014-04-09 03:00:00,0.24100000000000002,0.28300000000000003,0.34 -2014-04-09 04:00:00,0.242,0.28300000000000003,0.34 -2014-04-09 05:00:00,0.242,0.282,0.34 -2014-04-09 06:00:00,0.242,0.282,0.34 -2014-04-09 07:00:00,0.242,0.282,0.34 -2014-04-09 08:00:00,0.242,0.282,0.34 -2014-04-09 09:00:00,0.244,0.282,0.33799999999999997 -2014-04-09 10:00:00,0.244,0.282,0.336 -2014-04-09 11:00:00,0.244,0.282,0.335 -2014-04-09 12:00:00,0.245,0.281,0.335 -2014-04-09 13:00:00,0.245,0.281,0.335 -2014-04-09 14:00:00,0.245,0.282,0.335 -2014-04-09 15:00:00,0.245,0.282,0.335 -2014-04-09 16:00:00,0.245,0.282,0.335 -2014-04-09 17:00:00,0.245,0.28300000000000003,0.33399999999999996 -2014-04-09 18:00:00,0.245,0.282,0.33399999999999996 -2014-04-09 19:00:00,0.245,0.282,0.33399999999999996 -2014-04-09 20:00:00,0.245,0.282,0.33399999999999996 -2014-04-09 21:00:00,0.245,0.281,0.33399999999999996 -2014-04-09 22:00:00,0.244,0.281,0.33399999999999996 -2014-04-09 23:00:00,0.244,0.281,0.33399999999999996 -2014-04-10 00:00:00,0.244,0.282,0.33399999999999996 -2014-04-10 01:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 02:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 03:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 04:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 05:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 06:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 07:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 08:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 09:00:00,0.244,0.28300000000000003,0.33399999999999996 -2014-04-10 10:00:00,0.244,0.282,0.33399999999999996 -2014-04-10 11:00:00,0.244,0.29100000000000004,0.33399999999999996 -2014-04-10 12:00:00,0.244,0.29,0.33399999999999996 -2014-04-10 13:00:00,0.244,0.287,0.33399999999999996 -2014-04-10 14:00:00,0.244,0.281,0.33399999999999996 -2014-04-10 15:00:00,0.244,0.281,0.33399999999999996 -2014-04-10 16:00:00,0.244,0.281,0.33399999999999996 -2014-04-10 17:00:00,0.244,0.28,0.33399999999999996 -2014-04-10 18:00:00,0.244,0.28,0.33399999999999996 -2014-04-10 19:00:00,0.244,0.28,0.33399999999999996 -2014-04-10 20:00:00,0.244,0.28,0.33399999999999996 -2014-04-10 21:00:00,0.244,0.28,0.33399999999999996 -2014-04-10 22:00:00,0.244,0.28,0.33399999999999996 -2014-04-10 23:00:00,0.244,0.281,0.33399999999999996 -2014-04-11 00:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 01:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 02:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 03:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 04:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 05:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 06:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 07:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 08:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 09:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 10:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 11:00:00,0.243,0.281,0.33399999999999996 -2014-04-11 12:00:00,0.244,0.28,0.33399999999999996 -2014-04-11 13:00:00,0.244,0.28,0.33399999999999996 -2014-04-11 14:00:00,0.244,0.28,0.33399999999999996 -2014-04-11 15:00:00,0.243,0.28,0.33299999999999996 -2014-04-11 16:00:00,0.244,0.28,0.33299999999999996 -2014-04-11 17:00:00,0.243,0.27899999999999997,0.33299999999999996 -2014-04-11 18:00:00,0.243,0.27899999999999997,0.33299999999999996 -2014-04-11 19:00:00,0.243,0.27899999999999997,0.33299999999999996 -2014-04-11 20:00:00,0.243,0.27899999999999997,0.33399999999999996 -2014-04-11 21:00:00,0.243,0.28,0.33299999999999996 -2014-04-11 22:00:00,0.243,0.28,0.33399999999999996 -2014-04-11 23:00:00,0.243,0.28,0.33299999999999996 -2014-04-12 00:00:00,0.243,0.28,0.33299999999999996 -2014-04-12 01:00:00,0.243,0.28,0.33299999999999996 -2014-04-12 02:00:00,0.243,0.28,0.33299999999999996 -2014-04-12 03:00:00,0.242,0.28,0.33299999999999996 -2014-04-12 04:00:00,0.242,0.28,0.33299999999999996 -2014-04-12 05:00:00,0.242,0.28,0.33299999999999996 -2014-04-12 06:00:00,0.242,0.27899999999999997,0.33299999999999996 -2014-04-12 07:00:00,0.242,0.27899999999999997,0.33299999999999996 -2014-04-12 08:00:00,0.242,0.278,0.33299999999999996 -2014-04-12 09:00:00,0.242,0.278,0.33299999999999996 -2014-04-12 10:00:00,0.242,0.27699999999999997,0.33299999999999996 -2014-04-12 11:00:00,0.242,0.27699999999999997,0.33299999999999996 -2014-04-12 12:00:00,0.242,0.278,0.33299999999999996 -2014-04-12 13:00:00,0.242,0.27899999999999997,0.33299999999999996 -2014-04-12 14:00:00,0.242,0.278,0.33299999999999996 -2014-04-12 15:00:00,0.243,0.278,0.33299999999999996 -2014-04-12 16:00:00,0.242,0.278,0.33299999999999996 -2014-04-12 17:00:00,0.242,0.278,0.33299999999999996 -2014-04-12 18:00:00,0.242,0.278,0.332 -2014-04-12 19:00:00,0.242,0.278,0.332 -2014-04-12 20:00:00,0.242,0.278,0.332 -2014-04-12 21:00:00,0.24100000000000002,0.278,0.332 -2014-04-12 22:00:00,0.24100000000000002,0.278,0.332 -2014-04-12 23:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 00:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 01:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 02:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 03:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 04:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 05:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 06:00:00,0.24100000000000002,0.278,0.332 -2014-04-13 07:00:00,0.24,0.278,0.332 -2014-04-13 08:00:00,0.24,0.278,0.332 -2014-04-13 09:00:00,0.24,0.278,0.332 -2014-04-13 10:00:00,0.24,0.27699999999999997,0.332 -2014-04-13 11:00:00,0.24,0.276,0.332 -2014-04-13 12:00:00,0.24,0.276,0.332 -2014-04-13 13:00:00,0.24,0.276,0.332 -2014-04-13 14:00:00,0.24,0.276,0.332 -2014-04-13 15:00:00,0.24,0.276,0.332 -2014-04-13 16:00:00,0.24,0.276,0.332 -2014-04-13 17:00:00,0.24,0.276,0.332 -2014-04-13 18:00:00,0.24,0.276,0.331 -2014-04-13 19:00:00,0.24,0.276,0.331 -2014-04-13 20:00:00,0.24,0.276,0.331 -2014-04-13 21:00:00,0.24,0.276,0.331 -2014-04-13 22:00:00,0.239,0.276,0.331 -2014-04-13 23:00:00,0.239,0.276,0.331 -2014-04-14 00:00:00,0.239,0.276,0.331 -2014-04-14 01:00:00,0.239,0.276,0.331 -2014-04-14 02:00:00,0.239,0.276,0.331 -2014-04-14 03:00:00,0.23800000000000002,0.276,0.331 -2014-04-14 04:00:00,0.23800000000000002,0.276,0.331 -2014-04-14 05:00:00,0.23800000000000002,0.276,0.331 -2014-04-14 06:00:00,0.23800000000000002,0.276,0.331 -2014-04-14 07:00:00,0.23800000000000002,0.275,0.331 -2014-04-14 08:00:00,0.239,0.275,0.33299999999999996 -2014-04-14 09:00:00,0.239,0.275,0.33399999999999996 -2014-04-14 10:00:00,0.239,0.275,0.33299999999999996 -2014-04-14 11:00:00,0.239,0.275,0.332 -2014-04-14 12:00:00,0.23800000000000002,0.275,0.331 -2014-04-14 13:00:00,0.23800000000000002,0.275,0.331 -2014-04-14 14:00:00,0.23800000000000002,0.276,0.331 -2014-04-14 15:00:00,0.23800000000000002,0.275,0.331 -2014-04-14 16:00:00,0.23800000000000002,0.275,0.331 -2014-04-14 17:00:00,0.23800000000000002,0.275,0.331 -2014-04-14 18:00:00,0.239,0.275,0.332 -2014-04-14 19:00:00,0.23800000000000002,0.275,0.332 -2014-04-14 20:00:00,0.23800000000000002,0.27399999999999997,0.332 -2014-04-14 21:00:00,0.23600000000000002,0.275,0.33399999999999996 -2014-04-14 22:00:00,0.23199999999999998,0.275,0.337 -2014-04-14 23:00:00,0.23199999999999998,0.275,0.337 -2014-04-15 00:00:00,0.23199999999999998,0.275,0.336 -2014-04-15 01:00:00,0.233,0.275,0.336 -2014-04-15 02:00:00,0.23399999999999999,0.275,0.336 -2014-04-15 03:00:00,0.233,0.275,0.336 -2014-04-15 04:00:00,0.233,0.275,0.336 -2014-04-15 05:00:00,0.23399999999999999,0.275,0.336 -2014-04-15 06:00:00,0.235,0.275,0.335 -2014-04-15 07:00:00,0.23600000000000002,0.275,0.335 -2014-04-15 08:00:00,0.23600000000000002,0.275,0.335 -2014-04-15 09:00:00,0.237,0.275,0.33399999999999996 -2014-04-15 10:00:00,0.237,0.275,0.332 -2014-04-15 11:00:00,0.23600000000000002,0.27399999999999997,0.331 -2014-04-15 12:00:00,0.237,0.273,0.331 -2014-04-15 13:00:00,0.237,0.273,0.331 -2014-04-15 14:00:00,0.237,0.273,0.33 -2014-04-15 15:00:00,0.237,0.273,0.33 -2014-04-15 16:00:00,0.237,0.273,0.33 -2014-04-15 17:00:00,0.237,0.273,0.33 -2014-04-15 18:00:00,0.237,0.272,0.33 -2014-04-15 19:00:00,0.237,0.272,0.33 -2014-04-15 20:00:00,0.237,0.272,0.33 -2014-04-15 21:00:00,0.23600000000000002,0.272,0.33 -2014-04-15 22:00:00,0.23600000000000002,0.273,0.33 -2014-04-15 23:00:00,0.23600000000000002,0.273,0.33 -2014-04-16 00:00:00,0.23600000000000002,0.273,0.33 -2014-04-16 01:00:00,0.23600000000000002,0.272,0.33 -2014-04-16 02:00:00,0.235,0.272,0.33 -2014-04-16 03:00:00,0.235,0.272,0.33 -2014-04-16 04:00:00,0.235,0.272,0.32899999999999996 -2014-04-16 05:00:00,0.23399999999999999,0.272,0.32899999999999996 -2014-04-16 06:00:00,0.23399999999999999,0.272,0.32899999999999996 -2014-04-16 07:00:00,0.23399999999999999,0.272,0.32899999999999996 -2014-04-16 08:00:00,0.23399999999999999,0.271,0.32899999999999996 -2014-04-16 09:00:00,0.235,0.271,0.331 -2014-04-16 10:00:00,0.235,0.271,0.33 -2014-04-16 11:00:00,0.23399999999999999,0.271,0.33 -2014-04-16 12:00:00,0.23399999999999999,0.271,0.32899999999999996 -2014-04-16 13:00:00,0.235,0.271,0.32799999999999996 -2014-04-16 14:00:00,0.24100000000000002,0.271,0.32899999999999996 -2014-04-16 15:00:00,0.242,0.271,0.32899999999999996 -2014-04-16 16:00:00,0.243,0.271,0.32799999999999996 -2014-04-16 17:00:00,0.243,0.271,0.32799999999999996 -2014-04-16 18:00:00,0.243,0.271,0.32799999999999996 -2014-04-16 19:00:00,0.24100000000000002,0.271,0.32799999999999996 -2014-04-16 20:00:00,0.24100000000000002,0.27,0.32799999999999996 -2014-04-16 21:00:00,0.24,0.271,0.32799999999999996 -2014-04-16 22:00:00,0.24,0.271,0.32799999999999996 -2014-04-16 23:00:00,0.242,0.271,0.32799999999999996 -2014-04-17 00:00:00,0.24,0.271,0.32799999999999996 -2014-04-17 01:00:00,0.237,0.271,0.32799999999999996 -2014-04-17 02:00:00,0.23600000000000002,0.271,0.327 -2014-04-17 03:00:00,0.23600000000000002,0.271,0.327 -2014-04-17 04:00:00,0.237,0.271,0.327 -2014-04-17 05:00:00,0.237,0.271,0.327 -2014-04-17 06:00:00,0.23600000000000002,0.271,0.327 -2014-04-17 07:00:00,0.237,0.271,0.327 -2014-04-17 08:00:00,0.237,0.271,0.32799999999999996 -2014-04-17 09:00:00,0.23800000000000002,0.27,0.32899999999999996 -2014-04-17 10:00:00,0.23800000000000002,0.271,0.32799999999999996 -2014-04-17 11:00:00,0.23800000000000002,0.27,0.32799999999999996 -2014-04-17 12:00:00,0.24100000000000002,0.27,0.32799999999999996 -2014-04-17 13:00:00,0.24,0.27,0.32799999999999996 -2014-04-17 14:00:00,0.23800000000000002,0.27,0.32799999999999996 -2014-04-17 15:00:00,0.23800000000000002,0.27,0.32799999999999996 -2014-04-17 16:00:00,0.23800000000000002,0.27,0.32799999999999996 -2014-04-17 17:00:00,0.23800000000000002,0.27,0.32799999999999996 -2014-04-17 18:00:00,0.23800000000000002,0.27,0.32799999999999996 -2014-04-17 19:00:00,0.23800000000000002,0.27,0.32799999999999996 -2014-04-17 20:00:00,0.23800000000000002,0.27,0.327 -2014-04-17 21:00:00,0.23800000000000002,0.27,0.327 -2014-04-17 22:00:00,0.237,0.27,0.327 -2014-04-17 23:00:00,0.23800000000000002,0.27,0.327 -2014-04-18 00:00:00,0.237,0.271,0.327 -2014-04-18 01:00:00,0.237,0.271,0.327 -2014-04-18 02:00:00,0.237,0.27,0.327 -2014-04-18 03:00:00,0.237,0.27,0.32799999999999996 -2014-04-18 04:00:00,0.237,0.27,0.32799999999999996 -2014-04-18 05:00:00,0.23800000000000002,0.27,0.33 -2014-04-18 06:00:00,0.23800000000000002,0.27,0.33 -2014-04-18 07:00:00,0.23800000000000002,0.27,0.33 -2014-04-18 08:00:00,0.23800000000000002,0.27,0.32899999999999996 -2014-04-18 09:00:00,0.237,0.27,0.32799999999999996 -2014-04-18 10:00:00,0.237,0.27,0.32799999999999996 -2014-04-18 11:00:00,0.237,0.27,0.327 -2014-04-18 12:00:00,0.237,0.27,0.327 -2014-04-18 13:00:00,0.237,0.27,0.327 -2014-04-18 14:00:00,0.237,0.27,0.327 -2014-04-18 15:00:00,0.23800000000000002,0.26899999999999996,0.327 -2014-04-18 16:00:00,0.237,0.268,0.327 -2014-04-18 17:00:00,0.237,0.268,0.327 -2014-04-18 18:00:00,0.237,0.268,0.327 -2014-04-18 19:00:00,0.237,0.268,0.327 -2014-04-18 20:00:00,0.237,0.268,0.327 -2014-04-18 21:00:00,0.237,0.268,0.327 -2014-04-18 22:00:00,0.23600000000000002,0.268,0.327 -2014-04-18 23:00:00,0.23600000000000002,0.268,0.327 -2014-04-19 00:00:00,0.23600000000000002,0.268,0.327 -2014-04-19 01:00:00,0.23600000000000002,0.268,0.327 -2014-04-19 02:00:00,0.23600000000000002,0.268,0.327 -2014-04-19 03:00:00,0.23600000000000002,0.268,0.326 -2014-04-19 04:00:00,0.235,0.268,0.326 -2014-04-19 05:00:00,0.235,0.268,0.326 -2014-04-19 06:00:00,0.235,0.268,0.326 -2014-04-19 07:00:00,0.23399999999999999,0.268,0.327 -2014-04-19 08:00:00,0.23399999999999999,0.267,0.327 -2014-04-19 09:00:00,0.23399999999999999,0.266,0.327 -2014-04-19 10:00:00,0.23399999999999999,0.266,0.327 -2014-04-19 11:00:00,0.23399999999999999,0.266,0.327 -2014-04-19 12:00:00,0.235,0.266,0.327 -2014-04-19 13:00:00,0.235,0.266,0.327 -2014-04-19 14:00:00,0.23600000000000002,0.266,0.327 -2014-04-19 15:00:00,0.23600000000000002,0.266,0.327 -2014-04-19 16:00:00,0.23600000000000002,0.266,0.327 -2014-04-19 17:00:00,0.23600000000000002,0.266,0.327 -2014-04-19 18:00:00,0.23600000000000002,0.265,0.327 -2014-04-19 19:00:00,0.23600000000000002,0.265,0.326 -2014-04-19 20:00:00,0.23600000000000002,0.265,0.326 -2014-04-19 21:00:00,0.23600000000000002,0.265,0.326 -2014-04-19 22:00:00,0.23600000000000002,0.265,0.327 -2014-04-19 23:00:00,0.23600000000000002,0.266,0.327 -2014-04-20 00:00:00,0.23600000000000002,0.266,0.327 -2014-04-20 01:00:00,0.235,0.266,0.326 -2014-04-20 02:00:00,0.23600000000000002,0.266,0.327 -2014-04-20 03:00:00,0.235,0.266,0.327 -2014-04-20 04:00:00,0.235,0.266,0.327 -2014-04-20 05:00:00,0.235,0.266,0.327 -2014-04-20 06:00:00,0.235,0.265,0.327 -2014-04-20 07:00:00,0.235,0.264,0.32799999999999996 -2014-04-20 08:00:00,0.23399999999999999,0.264,0.327 -2014-04-20 09:00:00,0.23399999999999999,0.264,0.327 -2014-04-20 10:00:00,0.23399999999999999,0.264,0.327 -2014-04-20 11:00:00,0.23399999999999999,0.264,0.326 -2014-04-20 12:00:00,0.23399999999999999,0.264,0.326 -2014-04-20 13:00:00,0.235,0.264,0.326 -2014-04-20 14:00:00,0.23600000000000002,0.264,0.326 -2014-04-20 15:00:00,0.23600000000000002,0.264,0.326 -2014-04-20 16:00:00,0.23600000000000002,0.264,0.326 -2014-04-20 17:00:00,0.23600000000000002,0.264,0.326 -2014-04-20 18:00:00,0.23600000000000002,0.264,0.326 -2014-04-20 19:00:00,0.23600000000000002,0.264,0.326 -2014-04-20 20:00:00,0.235,0.264,0.326 -2014-04-20 21:00:00,0.235,0.264,0.326 -2014-04-20 22:00:00,0.23399999999999999,0.264,0.326 -2014-04-20 23:00:00,0.23399999999999999,0.264,0.326 -2014-04-21 00:00:00,0.23399999999999999,0.264,0.326 -2014-04-21 01:00:00,0.233,0.264,0.326 -2014-04-21 02:00:00,0.233,0.264,0.326 -2014-04-21 03:00:00,0.233,0.264,0.326 -2014-04-21 04:00:00,0.233,0.264,0.326 -2014-04-21 05:00:00,0.233,0.264,0.326 -2014-04-21 06:00:00,0.23199999999999998,0.264,0.326 -2014-04-21 07:00:00,0.23199999999999998,0.264,0.326 -2014-04-21 08:00:00,0.23199999999999998,0.259,0.326 -2014-04-21 09:00:00,0.23199999999999998,0.261,0.326 -2014-04-21 10:00:00,0.23199999999999998,0.259,0.326 -2014-04-21 11:00:00,0.233,0.259,0.326 -2014-04-21 12:00:00,0.233,0.259,0.326 -2014-04-21 13:00:00,0.233,0.261,0.326 -2014-04-21 14:00:00,0.233,0.263,0.326 -2014-04-21 15:00:00,0.233,0.266,0.326 -2014-04-21 16:00:00,0.233,0.265,0.326 -2014-04-21 17:00:00,0.23399999999999999,0.265,0.325 -2014-04-21 18:00:00,0.233,0.265,0.325 -2014-04-21 19:00:00,0.233,0.265,0.325 -2014-04-21 20:00:00,0.233,0.266,0.325 -2014-04-21 21:00:00,0.233,0.266,0.326 -2014-04-21 22:00:00,0.23399999999999999,0.266,0.331 -2014-04-21 23:00:00,0.23399999999999999,0.266,0.331 -2014-04-22 00:00:00,0.23399999999999999,0.266,0.331 -2014-04-22 01:00:00,0.23399999999999999,0.266,0.331 -2014-04-22 02:00:00,0.233,0.266,0.331 -2014-04-22 03:00:00,0.233,0.266,0.331 -2014-04-22 04:00:00,0.233,0.266,0.331 -2014-04-22 05:00:00,0.233,0.266,0.331 -2014-04-22 06:00:00,0.233,0.266,0.331 -2014-04-22 07:00:00,0.233,0.266,0.332 -2014-04-22 08:00:00,0.233,0.266,0.331 -2014-04-22 09:00:00,0.233,0.266,0.33 -2014-04-22 10:00:00,0.23399999999999999,0.266,0.32799999999999996 -2014-04-22 11:00:00,0.233,0.266,0.327 -2014-04-22 12:00:00,0.233,0.266,0.326 -2014-04-22 13:00:00,0.233,0.266,0.326 -2014-04-22 14:00:00,0.23399999999999999,0.266,0.326 -2014-04-22 15:00:00,0.233,0.266,0.33 -2014-04-22 16:00:00,0.233,0.266,0.33 -2014-04-22 17:00:00,0.233,0.266,0.32799999999999996 -2014-04-22 18:00:00,0.233,0.266,0.327 -2014-04-22 19:00:00,0.233,0.266,0.327 -2014-04-22 20:00:00,0.233,0.266,0.326 -2014-04-22 21:00:00,0.233,0.266,0.326 -2014-04-22 22:00:00,0.23199999999999998,0.266,0.326 -2014-04-22 23:00:00,0.23199999999999998,0.266,0.326 -2014-04-23 00:00:00,0.23199999999999998,0.267,0.326 -2014-04-23 01:00:00,0.23199999999999998,0.268,0.326 -2014-04-23 02:00:00,0.23199999999999998,0.268,0.326 -2014-04-23 03:00:00,0.231,0.268,0.326 -2014-04-23 04:00:00,0.231,0.268,0.326 -2014-04-23 05:00:00,0.231,0.268,0.326 -2014-04-23 06:00:00,0.231,0.268,0.326 -2014-04-23 07:00:00,0.231,0.268,0.326 -2014-04-23 08:00:00,0.231,0.268,0.327 -2014-04-23 09:00:00,0.231,0.268,0.327 -2014-04-23 10:00:00,0.231,0.268,0.327 -2014-04-23 11:00:00,0.231,0.268,0.326 -2014-04-23 12:00:00,0.231,0.268,0.326 -2014-04-23 13:00:00,0.23199999999999998,0.266,0.326 -2014-04-23 14:00:00,0.23199999999999998,0.266,0.326 -2014-04-23 15:00:00,0.23199999999999998,0.266,0.326 -2014-04-23 16:00:00,0.233,0.264,0.325 -2014-04-23 17:00:00,0.233,0.263,0.325 -2014-04-23 18:00:00,0.233,0.263,0.325 -2014-04-23 19:00:00,0.23199999999999998,0.266,0.325 -2014-04-23 20:00:00,0.23199999999999998,0.26899999999999996,0.325 -2014-04-23 21:00:00,0.23199999999999998,0.27,0.325 -2014-04-23 22:00:00,0.23199999999999998,0.27,0.325 -2014-04-23 23:00:00,0.231,0.27,0.325 -2014-04-24 00:00:00,0.231,0.271,0.325 -2014-04-24 01:00:00,0.231,0.27,0.325 -2014-04-24 02:00:00,0.23,0.272,0.325 -2014-04-24 03:00:00,0.23,0.273,0.325 -2014-04-24 04:00:00,0.23,0.27399999999999997,0.325 -2014-04-24 05:00:00,0.23,0.275,0.325 -2014-04-24 06:00:00,0.23,0.275,0.325 -2014-04-24 07:00:00,0.23,0.27399999999999997,0.325 -2014-04-24 08:00:00,0.23,0.27399999999999997,0.325 -2014-04-24 09:00:00,0.23,0.273,0.325 -2014-04-24 10:00:00,0.23,0.27399999999999997,0.325 -2014-04-24 11:00:00,0.23,0.275,0.325 -2014-04-24 12:00:00,0.23,0.275,0.325 -2014-04-24 13:00:00,0.231,0.275,0.325 -2014-04-24 14:00:00,0.231,0.275,0.325 -2014-04-24 15:00:00,0.231,0.27399999999999997,0.325 -2014-04-24 16:00:00,0.231,0.275,0.325 -2014-04-24 17:00:00,0.231,0.275,0.324 -2014-04-24 18:00:00,0.23199999999999998,0.275,0.324 -2014-04-24 19:00:00,0.231,0.275,0.324 -2014-04-24 20:00:00,0.231,0.275,0.324 -2014-04-24 21:00:00,0.231,0.275,0.324 -2014-04-24 22:00:00,0.231,0.275,0.324 -2014-04-24 23:00:00,0.23,0.275,0.324 -2014-04-25 00:00:00,0.23,0.275,0.324 -2014-04-25 01:00:00,0.23,0.275,0.324 -2014-04-25 02:00:00,0.23,0.275,0.324 -2014-04-25 03:00:00,0.23,0.275,0.325 -2014-04-25 04:00:00,0.23,0.275,0.325 -2014-04-25 05:00:00,0.22899999999999998,0.275,0.324 -2014-04-25 06:00:00,0.22899999999999998,0.275,0.325 -2014-04-25 07:00:00,0.22899999999999998,0.275,0.325 -2014-04-25 08:00:00,0.22899999999999998,0.275,0.324 -2014-04-25 09:00:00,0.22899999999999998,0.275,0.324 -2014-04-25 10:00:00,0.23,0.275,0.324 -2014-04-25 11:00:00,0.23,0.275,0.324 -2014-04-25 12:00:00,0.23,0.275,0.324 -2014-04-25 13:00:00,0.23,0.275,0.324 -2014-04-25 14:00:00,0.23,0.275,0.324 -2014-04-25 15:00:00,0.231,0.275,0.324 -2014-04-25 16:00:00,0.231,0.275,0.324 -2014-04-25 17:00:00,0.231,0.275,0.324 -2014-04-25 18:00:00,0.231,0.275,0.324 -2014-04-25 19:00:00,0.231,0.275,0.32299999999999995 -2014-04-25 20:00:00,0.231,0.275,0.32299999999999995 -2014-04-25 21:00:00,0.23,0.275,0.32299999999999995 -2014-04-25 22:00:00,0.23,0.275,0.32299999999999995 -2014-04-25 23:00:00,0.23,0.275,0.32299999999999995 -2014-04-26 00:00:00,0.23,0.275,0.32299999999999995 -2014-04-26 01:00:00,0.22899999999999998,0.275,0.32299999999999995 -2014-04-26 02:00:00,0.22899999999999998,0.276,0.32299999999999995 -2014-04-26 03:00:00,0.22899999999999998,0.276,0.32299999999999995 -2014-04-26 04:00:00,0.23,0.276,0.324 -2014-04-26 05:00:00,0.23,0.276,0.324 -2014-04-26 06:00:00,0.23,0.276,0.324 -2014-04-26 07:00:00,0.23,0.276,0.324 -2014-04-26 08:00:00,0.23,0.276,0.324 -2014-04-26 09:00:00,0.22899999999999998,0.276,0.32299999999999995 -2014-04-26 10:00:00,0.23,0.276,0.32299999999999995 -2014-04-26 11:00:00,0.23,0.276,0.325 -2014-04-26 12:00:00,0.23,0.276,0.324 -2014-04-26 13:00:00,0.23,0.275,0.324 -2014-04-26 14:00:00,0.23,0.275,0.32299999999999995 -2014-04-26 15:00:00,0.23,0.275,0.32299999999999995 -2014-04-26 16:00:00,0.23,0.275,0.32299999999999995 -2014-04-26 17:00:00,0.23,0.276,0.32299999999999995 -2014-04-26 18:00:00,0.23,0.276,0.32299999999999995 -2014-04-26 19:00:00,0.23,0.276,0.32299999999999995 -2014-04-26 20:00:00,0.23,0.276,0.32299999999999995 -2014-04-26 21:00:00,0.23,0.276,0.32299999999999995 -2014-04-26 22:00:00,0.23,0.276,0.32299999999999995 -2014-04-26 23:00:00,0.23,0.276,0.32299999999999995 -2014-04-27 00:00:00,0.23,0.276,0.32299999999999995 -2014-04-27 01:00:00,0.22899999999999998,0.276,0.32299999999999995 -2014-04-27 02:00:00,0.22699999999999998,0.276,0.32299999999999995 -2014-04-27 03:00:00,0.226,0.276,0.32299999999999995 -2014-04-27 04:00:00,0.226,0.276,0.325 -2014-04-27 05:00:00,0.223,0.276,0.332 -2014-04-27 06:00:00,0.223,0.276,0.332 -2014-04-27 07:00:00,0.223,0.276,0.33299999999999996 -2014-04-27 08:00:00,0.223,0.276,0.33299999999999996 -2014-04-27 09:00:00,0.22399999999999998,0.276,0.33299999999999996 -2014-04-27 10:00:00,0.223,0.276,0.33299999999999996 -2014-04-27 11:00:00,0.223,0.276,0.33299999999999996 -2014-04-27 12:00:00,0.225,0.276,0.332 -2014-04-27 13:00:00,0.228,0.276,0.33 -2014-04-27 14:00:00,0.23,0.276,0.32899999999999996 -2014-04-27 15:00:00,0.23,0.275,0.32799999999999996 -2014-04-27 16:00:00,0.23,0.275,0.32799999999999996 -2014-04-27 17:00:00,0.23,0.275,0.327 -2014-04-27 18:00:00,0.23,0.275,0.327 -2014-04-27 19:00:00,0.23,0.275,0.327 -2014-04-27 20:00:00,0.23,0.275,0.327 -2014-04-27 21:00:00,0.23,0.275,0.327 -2014-04-27 22:00:00,0.23,0.275,0.326 -2014-04-27 23:00:00,0.23,0.275,0.327 -2014-04-28 00:00:00,0.23,0.275,0.327 -2014-04-28 01:00:00,0.23,0.275,0.327 -2014-04-28 02:00:00,0.23,0.275,0.327 -2014-04-28 03:00:00,0.23,0.275,0.327 -2014-04-28 04:00:00,0.23,0.275,0.327 -2014-04-28 05:00:00,0.23,0.275,0.327 -2014-04-28 06:00:00,0.23,0.275,0.327 -2014-04-28 07:00:00,0.23,0.275,0.327 -2014-04-28 08:00:00,0.23,0.275,0.327 -2014-04-28 09:00:00,0.23,0.275,0.327 -2014-04-28 10:00:00,0.23,0.275,0.327 -2014-04-28 11:00:00,0.23,0.275,0.326 -2014-04-28 12:00:00,0.231,0.275,0.326 -2014-04-28 13:00:00,0.231,0.275,0.326 -2014-04-28 14:00:00,0.231,0.27399999999999997,0.326 -2014-04-28 15:00:00,0.231,0.273,0.326 -2014-04-28 16:00:00,0.231,0.273,0.326 -2014-04-28 17:00:00,0.231,0.273,0.326 -2014-04-28 18:00:00,0.231,0.273,0.326 -2014-04-28 19:00:00,0.231,0.273,0.326 -2014-04-28 20:00:00,0.231,0.273,0.326 -2014-04-28 21:00:00,0.23199999999999998,0.273,0.32799999999999996 -2014-04-28 22:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-28 23:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 00:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 01:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 02:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 03:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 04:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 05:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 06:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 07:00:00,0.23199999999999998,0.273,0.32899999999999996 -2014-04-29 08:00:00,0.23199999999999998,0.273,0.33 -2014-04-29 09:00:00,0.231,0.273,0.331 -2014-04-29 10:00:00,0.231,0.273,0.331 -2014-04-29 11:00:00,0.23199999999999998,0.273,0.331 -2014-04-29 12:00:00,0.23199999999999998,0.273,0.33 -2014-04-29 13:00:00,0.231,0.273,0.331 -2014-04-29 14:00:00,0.23199999999999998,0.273,0.332 -2014-04-29 15:00:00,0.24,0.272,0.33299999999999996 -2014-04-29 16:00:00,0.25,0.272,0.332 -2014-04-29 17:00:00,0.252,0.271,0.331 -2014-04-29 18:00:00,0.253,0.271,0.33 -2014-04-29 19:00:00,0.253,0.271,0.33 -2014-04-29 20:00:00,0.252,0.271,0.33 -2014-04-29 21:00:00,0.251,0.271,0.331 -2014-04-29 22:00:00,0.249,0.271,0.332 -2014-04-29 23:00:00,0.25,0.271,0.332 -2014-04-30 00:00:00,0.251,0.271,0.332 -2014-04-30 01:00:00,0.251,0.271,0.332 -2014-04-30 02:00:00,0.251,0.271,0.332 -2014-04-30 03:00:00,0.251,0.271,0.332 -2014-04-30 04:00:00,0.25,0.271,0.332 -2014-04-30 05:00:00,0.249,0.271,0.33299999999999996 -2014-04-30 06:00:00,0.249,0.271,0.33299999999999996 -2014-04-30 07:00:00,0.249,0.271,0.33299999999999996 -2014-04-30 08:00:00,0.249,0.271,0.332 -2014-04-30 09:00:00,0.249,0.271,0.332 -2014-04-30 10:00:00,0.249,0.271,0.332 -2014-04-30 11:00:00,0.251,0.271,0.331 -2014-04-30 12:00:00,0.251,0.271,0.331 -2014-04-30 13:00:00,0.252,0.271,0.33 -2014-04-30 14:00:00,0.251,0.271,0.32899999999999996 -2014-04-30 15:00:00,0.251,0.27,0.32899999999999996 -2014-04-30 16:00:00,0.251,0.27,0.32899999999999996 -2014-04-30 17:00:00,0.251,0.27,0.32799999999999996 -2014-04-30 18:00:00,0.251,0.27,0.32799999999999996 -2014-04-30 19:00:00,0.251,0.271,0.32799999999999996 -2014-04-30 20:00:00,0.25,0.27,0.32799999999999996 -2014-04-30 21:00:00,0.25,0.27,0.32799999999999996 -2014-04-30 22:00:00,0.25,0.27,0.32799999999999996 -2014-04-30 23:00:00,0.249,0.27,0.32799999999999996 -2014-05-01 00:00:00,0.249,0.27,0.32799999999999996 -2014-05-01 01:00:00,0.249,0.27,0.32799999999999996 -2014-05-01 02:00:00,0.249,0.27,0.32799999999999996 -2014-05-01 03:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 04:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 05:00:00,0.248,0.271,0.32899999999999996 -2014-05-01 06:00:00,0.248,0.271,0.32899999999999996 -2014-05-01 07:00:00,0.248,0.27,0.32899999999999996 -2014-05-01 08:00:00,0.248,0.27,0.32899999999999996 -2014-05-01 09:00:00,0.248,0.271,0.32799999999999996 -2014-05-01 10:00:00,0.248,0.271,0.32799999999999996 -2014-05-01 11:00:00,0.248,0.271,0.32799999999999996 -2014-05-01 12:00:00,0.247,0.271,0.32799999999999996 -2014-05-01 13:00:00,0.248,0.271,0.32799999999999996 -2014-05-01 14:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 15:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 16:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 17:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 18:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 19:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 20:00:00,0.248,0.27,0.32799999999999996 -2014-05-01 21:00:00,0.247,0.27,0.32799999999999996 -2014-05-01 22:00:00,0.247,0.27,0.32799999999999996 -2014-05-01 23:00:00,0.247,0.27,0.32799999999999996 -2014-05-02 00:00:00,0.24600000000000002,0.271,0.32799999999999996 -2014-05-02 01:00:00,0.24600000000000002,0.271,0.32799999999999996 -2014-05-02 02:00:00,0.24600000000000002,0.271,0.32799999999999996 -2014-05-02 03:00:00,0.24600000000000002,0.271,0.32799999999999996 -2014-05-02 04:00:00,0.24600000000000002,0.272,0.32799999999999996 -2014-05-02 05:00:00,0.24600000000000002,0.272,0.32799999999999996 -2014-05-02 06:00:00,0.24600000000000002,0.272,0.32799999999999996 -2014-05-02 07:00:00,0.24600000000000002,0.271,0.32799999999999996 -2014-05-02 08:00:00,0.245,0.271,0.32799999999999996 -2014-05-02 09:00:00,0.245,0.271,0.32799999999999996 -2014-05-02 10:00:00,0.245,0.271,0.32799999999999996 -2014-05-02 11:00:00,0.245,0.271,0.32799999999999996 -2014-05-02 12:00:00,0.245,0.271,0.32799999999999996 -2014-05-02 13:00:00,0.245,0.27,0.32799999999999996 -2014-05-02 14:00:00,0.245,0.27,0.33 -2014-05-02 15:00:00,0.245,0.27,0.33 -2014-05-02 16:00:00,0.24600000000000002,0.27,0.32899999999999996 -2014-05-02 17:00:00,0.245,0.27,0.32899999999999996 -2014-05-02 18:00:00,0.244,0.27,0.33 -2014-05-02 19:00:00,0.245,0.27,0.33 -2014-05-02 20:00:00,0.245,0.27,0.33 -2014-05-02 21:00:00,0.245,0.271,0.32899999999999996 -2014-05-02 22:00:00,0.245,0.271,0.32899999999999996 -2014-05-02 23:00:00,0.245,0.271,0.32899999999999996 -2014-05-03 00:00:00,0.245,0.271,0.32899999999999996 -2014-05-03 01:00:00,0.245,0.27,0.32899999999999996 -2014-05-03 02:00:00,0.245,0.27,0.32899999999999996 -2014-05-03 03:00:00,0.245,0.27,0.32799999999999996 -2014-05-03 04:00:00,0.245,0.27,0.32799999999999996 -2014-05-03 05:00:00,0.244,0.271,0.32799999999999996 -2014-05-03 06:00:00,0.244,0.271,0.32799999999999996 -2014-05-03 07:00:00,0.244,0.271,0.32799999999999996 -2014-05-03 08:00:00,0.244,0.271,0.32799999999999996 -2014-05-03 09:00:00,0.244,0.271,0.32799999999999996 -2014-05-03 10:00:00,0.244,0.271,0.32799999999999996 -2014-05-03 11:00:00,0.243,0.271,0.327 -2014-05-03 12:00:00,0.243,0.271,0.327 -2014-05-03 13:00:00,0.243,0.271,0.327 -2014-05-03 14:00:00,0.243,0.271,0.327 -2014-05-03 15:00:00,0.243,0.271,0.327 -2014-05-03 16:00:00,0.243,0.271,0.326 -2014-05-03 17:00:00,0.243,0.27,0.326 -2014-05-03 18:00:00,0.243,0.27,0.326 -2014-05-03 19:00:00,0.243,0.27,0.326 -2014-05-03 20:00:00,0.243,0.27,0.326 -2014-05-03 21:00:00,0.243,0.27,0.326 -2014-05-03 22:00:00,0.243,0.27,0.326 -2014-05-03 23:00:00,0.242,0.271,0.326 -2014-05-04 00:00:00,0.242,0.272,0.326 -2014-05-04 01:00:00,0.242,0.272,0.326 -2014-05-04 02:00:00,0.242,0.273,0.326 -2014-05-04 03:00:00,0.242,0.273,0.326 -2014-05-04 04:00:00,0.24100000000000002,0.273,0.326 -2014-05-04 05:00:00,0.24100000000000002,0.273,0.326 -2014-05-04 06:00:00,0.24100000000000002,0.273,0.326 -2014-05-04 07:00:00,0.24100000000000002,0.272,0.326 -2014-05-04 08:00:00,0.24100000000000002,0.272,0.326 -2014-05-04 09:00:00,0.242,0.271,0.327 -2014-05-04 10:00:00,0.242,0.271,0.326 -2014-05-04 11:00:00,0.242,0.271,0.326 -2014-05-04 12:00:00,0.242,0.271,0.326 -2014-05-04 13:00:00,0.242,0.271,0.326 -2014-05-04 14:00:00,0.242,0.271,0.326 -2014-05-04 15:00:00,0.242,0.271,0.326 -2014-05-04 16:00:00,0.243,0.27,0.326 -2014-05-04 17:00:00,0.243,0.27,0.326 -2014-05-04 18:00:00,0.243,0.271,0.326 -2014-05-04 19:00:00,0.242,0.271,0.326 -2014-05-04 20:00:00,0.243,0.271,0.325 -2014-05-04 21:00:00,0.242,0.27,0.325 -2014-05-04 22:00:00,0.242,0.27,0.326 -2014-05-04 23:00:00,0.242,0.26899999999999996,0.326 -2014-05-05 00:00:00,0.242,0.271,0.325 -2014-05-05 01:00:00,0.242,0.26899999999999996,0.325 -2014-05-05 02:00:00,0.24100000000000002,0.27,0.325 -2014-05-05 03:00:00,0.24100000000000002,0.271,0.325 -2014-05-05 04:00:00,0.24100000000000002,0.271,0.325 -2014-05-05 05:00:00,0.24100000000000002,0.272,0.325 -2014-05-05 06:00:00,0.24100000000000002,0.273,0.325 -2014-05-05 07:00:00,0.24100000000000002,0.273,0.325 -2014-05-05 08:00:00,0.24100000000000002,0.273,0.326 -2014-05-05 09:00:00,0.24,0.27399999999999997,0.325 -2014-05-05 10:00:00,0.24,0.275,0.325 -2014-05-05 11:00:00,0.24,0.275,0.325 -2014-05-05 12:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 13:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 14:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 15:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 16:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 17:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 18:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 19:00:00,0.24100000000000002,0.275,0.325 -2014-05-05 20:00:00,0.24100000000000002,0.27399999999999997,0.325 -2014-05-05 21:00:00,0.24,0.275,0.325 -2014-05-05 22:00:00,0.24,0.276,0.325 -2014-05-05 23:00:00,0.24,0.276,0.325 -2014-05-06 00:00:00,0.24,0.276,0.325 -2014-05-06 01:00:00,0.239,0.276,0.325 -2014-05-06 02:00:00,0.239,0.276,0.325 -2014-05-06 03:00:00,0.239,0.276,0.325 -2014-05-06 04:00:00,0.239,0.276,0.325 -2014-05-06 05:00:00,0.239,0.276,0.325 -2014-05-06 06:00:00,0.23800000000000002,0.276,0.325 -2014-05-06 07:00:00,0.23800000000000002,0.276,0.325 -2014-05-06 08:00:00,0.23800000000000002,0.276,0.325 -2014-05-06 09:00:00,0.23800000000000002,0.276,0.325 -2014-05-06 10:00:00,0.23800000000000002,0.276,0.325 -2014-05-06 11:00:00,0.23800000000000002,0.275,0.325 -2014-05-06 12:00:00,0.239,0.275,0.325 -2014-05-06 13:00:00,0.239,0.275,0.325 -2014-05-06 14:00:00,0.239,0.275,0.325 -2014-05-06 15:00:00,0.239,0.276,0.326 -2014-05-06 16:00:00,0.239,0.276,0.32799999999999996 -2014-05-06 17:00:00,0.239,0.275,0.327 -2014-05-06 18:00:00,0.24,0.275,0.327 -2014-05-06 19:00:00,0.24,0.276,0.326 -2014-05-06 20:00:00,0.239,0.276,0.326 -2014-05-06 21:00:00,0.239,0.275,0.326 -2014-05-06 22:00:00,0.239,0.276,0.325 -2014-05-06 23:00:00,0.239,0.276,0.325 -2014-05-07 00:00:00,0.239,0.276,0.325 -2014-05-07 01:00:00,0.23800000000000002,0.276,0.325 -2014-05-07 02:00:00,0.23399999999999999,0.276,0.32899999999999996 -2014-05-07 03:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 04:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 05:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 06:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 07:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 08:00:00,0.235,0.276,0.33 -2014-05-07 09:00:00,0.237,0.276,0.32899999999999996 -2014-05-07 10:00:00,0.239,0.276,0.327 -2014-05-07 11:00:00,0.239,0.275,0.326 -2014-05-07 12:00:00,0.23800000000000002,0.275,0.326 -2014-05-07 13:00:00,0.239,0.276,0.325 -2014-05-07 14:00:00,0.23800000000000002,0.276,0.325 -2014-05-07 15:00:00,0.23800000000000002,0.276,0.325 -2014-05-07 16:00:00,0.23399999999999999,0.276,0.32899999999999996 -2014-05-07 17:00:00,0.237,0.276,0.32799999999999996 -2014-05-07 18:00:00,0.233,0.276,0.33 -2014-05-07 19:00:00,0.233,0.276,0.33 -2014-05-07 20:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 21:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 22:00:00,0.23399999999999999,0.276,0.33 -2014-05-07 23:00:00,0.235,0.276,0.33 -2014-05-08 00:00:00,0.235,0.276,0.33 -2014-05-08 01:00:00,0.235,0.276,0.33 -2014-05-08 02:00:00,0.235,0.276,0.33 -2014-05-08 03:00:00,0.235,0.276,0.33 -2014-05-08 04:00:00,0.235,0.276,0.33 -2014-05-08 05:00:00,0.235,0.276,0.32899999999999996 -2014-05-08 06:00:00,0.23600000000000002,0.276,0.32899999999999996 -2014-05-08 07:00:00,0.23600000000000002,0.276,0.32899999999999996 -2014-05-08 08:00:00,0.237,0.276,0.32899999999999996 -2014-05-08 09:00:00,0.23800000000000002,0.276,0.32799999999999996 -2014-05-08 10:00:00,0.23800000000000002,0.276,0.327 -2014-05-08 11:00:00,0.23800000000000002,0.276,0.326 -2014-05-08 12:00:00,0.23800000000000002,0.276,0.326 -2014-05-08 13:00:00,0.23800000000000002,0.276,0.325 -2014-05-08 14:00:00,0.23800000000000002,0.276,0.325 -2014-05-08 15:00:00,0.23800000000000002,0.276,0.325 -2014-05-08 16:00:00,0.23800000000000002,0.276,0.325 -2014-05-08 17:00:00,0.23800000000000002,0.276,0.325 -2014-05-08 18:00:00,0.23800000000000002,0.275,0.327 -2014-05-08 19:00:00,0.237,0.275,0.32799999999999996 -2014-05-08 20:00:00,0.23600000000000002,0.276,0.32899999999999996 -2014-05-08 21:00:00,0.235,0.275,0.33 -2014-05-08 22:00:00,0.23199999999999998,0.27399999999999997,0.331 -2014-05-08 23:00:00,0.23199999999999998,0.272,0.331 -2014-05-09 00:00:00,0.23199999999999998,0.278,0.33 -2014-05-09 01:00:00,0.233,0.28,0.33 -2014-05-09 02:00:00,0.233,0.28,0.33 -2014-05-09 03:00:00,0.233,0.28,0.33 -2014-05-09 04:00:00,0.233,0.28,0.33 -2014-05-09 05:00:00,0.23399999999999999,0.28,0.33 -2014-05-09 06:00:00,0.23399999999999999,0.28,0.33 -2014-05-09 07:00:00,0.23399999999999999,0.28,0.33 -2014-05-09 08:00:00,0.23600000000000002,0.28,0.32899999999999996 -2014-05-09 09:00:00,0.23800000000000002,0.28,0.32899999999999996 -2014-05-09 10:00:00,0.23800000000000002,0.27899999999999997,0.32799999999999996 -2014-05-09 11:00:00,0.239,0.28,0.326 -2014-05-09 12:00:00,0.239,0.28,0.326 -2014-05-09 13:00:00,0.239,0.28,0.326 -2014-05-09 14:00:00,0.239,0.28,0.326 -2014-05-09 15:00:00,0.239,0.28,0.326 -2014-05-09 16:00:00,0.239,0.28,0.325 -2014-05-09 17:00:00,0.239,0.28,0.325 -2014-05-09 18:00:00,0.239,0.28,0.325 -2014-05-09 19:00:00,0.239,0.28,0.325 -2014-05-09 20:00:00,0.23600000000000002,0.28,0.32799999999999996 -2014-05-09 21:00:00,0.23399999999999999,0.28,0.32899999999999996 -2014-05-09 22:00:00,0.235,0.28,0.32899999999999996 -2014-05-09 23:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 00:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 01:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 02:00:00,0.23600000000000002,0.28,0.32899999999999996 -2014-05-10 03:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 04:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 05:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 06:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 07:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 08:00:00,0.235,0.28,0.32899999999999996 -2014-05-10 09:00:00,0.23600000000000002,0.28,0.32799999999999996 -2014-05-10 10:00:00,0.237,0.28,0.32799999999999996 -2014-05-10 11:00:00,0.23800000000000002,0.28,0.327 -2014-05-10 12:00:00,0.23800000000000002,0.28,0.327 -2014-05-10 13:00:00,0.23800000000000002,0.28,0.326 -2014-05-10 14:00:00,0.23800000000000002,0.28,0.326 -2014-05-10 15:00:00,0.237,0.27899999999999997,0.32799999999999996 -2014-05-10 16:00:00,0.23600000000000002,0.278,0.32899999999999996 -2014-05-10 17:00:00,0.237,0.278,0.32899999999999996 -2014-05-10 18:00:00,0.23600000000000002,0.278,0.33 -2014-05-10 19:00:00,0.23399999999999999,0.278,0.33 -2014-05-10 20:00:00,0.23399999999999999,0.278,0.331 -2014-05-10 21:00:00,0.23800000000000002,0.278,0.331 -2014-05-10 22:00:00,0.243,0.278,0.331 -2014-05-10 23:00:00,0.255,0.278,0.33399999999999996 -2014-05-11 00:00:00,0.254,0.278,0.33299999999999996 -2014-05-11 01:00:00,0.253,0.278,0.332 -2014-05-11 02:00:00,0.252,0.278,0.332 -2014-05-11 03:00:00,0.252,0.278,0.332 -2014-05-11 04:00:00,0.251,0.278,0.332 -2014-05-11 05:00:00,0.251,0.278,0.331 -2014-05-11 06:00:00,0.25,0.278,0.331 -2014-05-11 07:00:00,0.25,0.278,0.331 -2014-05-11 08:00:00,0.251,0.278,0.331 -2014-05-11 09:00:00,0.253,0.278,0.33 -2014-05-11 10:00:00,0.254,0.278,0.32899999999999996 -2014-05-11 11:00:00,0.255,0.278,0.32799999999999996 -2014-05-11 12:00:00,0.254,0.278,0.32799999999999996 -2014-05-11 13:00:00,0.254,0.278,0.32799999999999996 -2014-05-11 14:00:00,0.254,0.278,0.32799999999999996 -2014-05-11 15:00:00,0.254,0.278,0.327 -2014-05-11 16:00:00,0.253,0.276,0.327 -2014-05-11 17:00:00,0.251,0.276,0.32899999999999996 -2014-05-11 18:00:00,0.249,0.276,0.33 -2014-05-11 19:00:00,0.252,0.276,0.33 -2014-05-11 20:00:00,0.253,0.276,0.32899999999999996 -2014-05-11 21:00:00,0.254,0.276,0.32899999999999996 -2014-05-11 22:00:00,0.254,0.276,0.32899999999999996 -2014-05-11 23:00:00,0.254,0.276,0.32799999999999996 -2014-05-12 00:00:00,0.254,0.276,0.32799999999999996 -2014-05-12 01:00:00,0.254,0.276,0.32799999999999996 -2014-05-12 02:00:00,0.254,0.276,0.32799999999999996 -2014-05-12 03:00:00,0.253,0.276,0.32799999999999996 -2014-05-12 04:00:00,0.253,0.276,0.32799999999999996 -2014-05-12 05:00:00,0.253,0.276,0.32799999999999996 -2014-05-12 06:00:00,0.252,0.276,0.32799999999999996 -2014-05-12 07:00:00,0.252,0.276,0.327 -2014-05-12 08:00:00,0.252,0.276,0.327 -2014-05-12 09:00:00,0.252,0.276,0.327 -2014-05-12 10:00:00,0.251,0.276,0.327 -2014-05-12 11:00:00,0.251,0.276,0.327 -2014-05-12 12:00:00,0.247,0.276,0.33 -2014-05-12 13:00:00,0.249,0.276,0.33 -2014-05-12 14:00:00,0.251,0.276,0.32899999999999996 -2014-05-12 15:00:00,0.251,0.276,0.32799999999999996 -2014-05-12 16:00:00,0.249,0.275,0.33 -2014-05-12 17:00:00,0.25,0.275,0.32899999999999996 -2014-05-12 18:00:00,0.25,0.275,0.32899999999999996 -2014-05-12 19:00:00,0.249,0.275,0.33 -2014-05-12 20:00:00,0.249,0.275,0.33 -2014-05-12 21:00:00,0.249,0.275,0.32899999999999996 -2014-05-12 22:00:00,0.249,0.275,0.32899999999999996 -2014-05-12 23:00:00,0.248,0.275,0.33 -2014-05-13 00:00:00,0.24600000000000002,0.275,0.33 -2014-05-13 01:00:00,0.24600000000000002,0.275,0.33 -2014-05-13 02:00:00,0.24600000000000002,0.276,0.33 -2014-05-13 03:00:00,0.24600000000000002,0.276,0.33 -2014-05-13 04:00:00,0.24600000000000002,0.276,0.33 -2014-05-13 05:00:00,0.24600000000000002,0.276,0.33 -2014-05-13 06:00:00,0.24600000000000002,0.276,0.33 -2014-05-13 07:00:00,0.24600000000000002,0.276,0.33 -2014-05-13 08:00:00,0.244,0.276,0.331 -2014-05-13 09:00:00,0.245,0.276,0.331 -2014-05-13 10:00:00,0.249,0.276,0.33 -2014-05-13 11:00:00,0.252,0.276,0.32899999999999996 -2014-05-13 12:00:00,0.254,0.276,0.32899999999999996 -2014-05-13 13:00:00,0.254,0.275,0.32799999999999996 -2014-05-13 14:00:00,0.254,0.275,0.327 -2014-05-13 15:00:00,0.254,0.275,0.327 -2014-05-13 16:00:00,0.253,0.275,0.327 -2014-05-13 17:00:00,0.253,0.273,0.327 -2014-05-13 18:00:00,0.253,0.273,0.327 -2014-05-13 19:00:00,0.253,0.273,0.327 -2014-05-13 20:00:00,0.253,0.273,0.327 -2014-05-13 21:00:00,0.252,0.273,0.326 -2014-05-13 22:00:00,0.252,0.273,0.326 -2014-05-13 23:00:00,0.252,0.273,0.326 -2014-05-14 00:00:00,0.252,0.273,0.326 -2014-05-14 01:00:00,0.251,0.275,0.326 -2014-05-14 02:00:00,0.251,0.275,0.326 -2014-05-14 03:00:00,0.251,0.275,0.326 -2014-05-14 04:00:00,0.25,0.275,0.326 -2014-05-14 05:00:00,0.25,0.275,0.326 -2014-05-14 06:00:00,0.25,0.275,0.326 -2014-05-14 07:00:00,0.25,0.275,0.326 -2014-05-14 08:00:00,0.25,0.275,0.327 -2014-05-14 09:00:00,0.249,0.275,0.326 -2014-05-14 10:00:00,0.249,0.275,0.326 -2014-05-14 11:00:00,0.249,0.275,0.326 -2014-05-14 12:00:00,0.249,0.275,0.326 -2014-05-14 13:00:00,0.249,0.275,0.326 -2014-05-14 14:00:00,0.249,0.273,0.326 -2014-05-14 15:00:00,0.249,0.273,0.326 -2014-05-14 16:00:00,0.249,0.273,0.326 -2014-05-14 17:00:00,0.249,0.272,0.326 -2014-05-14 18:00:00,0.249,0.271,0.326 -2014-05-14 19:00:00,0.24600000000000002,0.271,0.32799999999999996 -2014-05-14 20:00:00,0.248,0.271,0.331 -2014-05-14 21:00:00,0.252,0.271,0.33 -2014-05-14 22:00:00,0.252,0.271,0.33 -2014-05-14 23:00:00,0.252,0.271,0.33 -2014-05-15 00:00:00,0.251,0.272,0.33 -2014-05-15 01:00:00,0.251,0.273,0.33 -2014-05-15 02:00:00,0.251,0.273,0.33 -2014-05-15 03:00:00,0.25,0.273,0.33 -2014-05-15 04:00:00,0.25,0.273,0.33 -2014-05-15 05:00:00,0.25,0.273,0.33 -2014-05-15 06:00:00,0.25,0.273,0.33 -2014-05-15 07:00:00,0.25,0.273,0.33 -2014-05-15 08:00:00,0.25,0.273,0.33 -2014-05-15 09:00:00,0.251,0.273,0.33 -2014-05-15 10:00:00,0.254,0.273,0.32899999999999996 -2014-05-15 11:00:00,0.255,0.273,0.32899999999999996 -2014-05-15 12:00:00,0.255,0.273,0.32799999999999996 -2014-05-15 13:00:00,0.255,0.271,0.32799999999999996 -2014-05-15 14:00:00,0.255,0.271,0.327 -2014-05-15 15:00:00,0.255,0.271,0.327 -2014-05-15 16:00:00,0.255,0.27,0.327 -2014-05-15 17:00:00,0.255,0.27,0.327 -2014-05-15 18:00:00,0.255,0.27,0.326 -2014-05-15 19:00:00,0.254,0.27,0.326 -2014-05-15 20:00:00,0.254,0.27,0.326 -2014-05-15 21:00:00,0.254,0.27,0.327 -2014-05-15 22:00:00,0.254,0.27,0.327 -2014-05-15 23:00:00,0.253,0.27,0.326 -2014-05-16 00:00:00,0.253,0.27,0.326 -2014-05-16 01:00:00,0.253,0.27,0.326 -2014-05-16 02:00:00,0.253,0.27,0.326 -2014-05-16 03:00:00,0.253,0.271,0.326 -2014-05-16 04:00:00,0.252,0.271,0.326 -2014-05-16 05:00:00,0.252,0.271,0.326 -2014-05-16 06:00:00,0.252,0.27,0.327 -2014-05-16 07:00:00,0.252,0.27,0.327 -2014-05-16 08:00:00,0.252,0.27,0.327 -2014-05-16 09:00:00,0.252,0.27,0.327 -2014-05-16 10:00:00,0.252,0.27,0.327 -2014-05-16 11:00:00,0.252,0.27,0.326 -2014-05-16 12:00:00,0.251,0.27,0.326 -2014-05-16 13:00:00,0.251,0.27,0.326 -2014-05-16 14:00:00,0.251,0.26899999999999996,0.326 -2014-05-16 15:00:00,0.251,0.268,0.326 -2014-05-16 16:00:00,0.251,0.268,0.326 -2014-05-16 17:00:00,0.251,0.267,0.326 -2014-05-16 18:00:00,0.251,0.266,0.326 -2014-05-16 19:00:00,0.251,0.266,0.326 -2014-05-16 20:00:00,0.251,0.266,0.326 -2014-05-16 21:00:00,0.25,0.266,0.325 -2014-05-16 22:00:00,0.25,0.266,0.325 -2014-05-16 23:00:00,0.25,0.266,0.326 -2014-05-17 00:00:00,0.25,0.266,0.325 -2014-05-17 01:00:00,0.249,0.267,0.325 -2014-05-17 02:00:00,0.249,0.268,0.325 -2014-05-17 03:00:00,0.249,0.268,0.325 -2014-05-17 04:00:00,0.249,0.268,0.325 -2014-05-17 05:00:00,0.248,0.268,0.325 -2014-05-17 06:00:00,0.248,0.268,0.325 -2014-05-17 07:00:00,0.248,0.268,0.325 -2014-05-17 08:00:00,0.248,0.268,0.326 -2014-05-17 09:00:00,0.248,0.268,0.326 -2014-05-17 10:00:00,0.248,0.268,0.326 -2014-05-17 11:00:00,0.248,0.268,0.326 -2014-05-17 12:00:00,0.248,0.265,0.326 -2014-05-17 13:00:00,0.248,0.264,0.325 -2014-05-17 14:00:00,0.248,0.266,0.325 -2014-05-17 15:00:00,0.248,0.267,0.325 -2014-05-17 16:00:00,0.248,0.268,0.325 -2014-05-17 17:00:00,0.248,0.268,0.325 -2014-05-17 18:00:00,0.248,0.268,0.325 -2014-05-17 19:00:00,0.247,0.268,0.325 -2014-05-17 20:00:00,0.248,0.266,0.325 -2014-05-17 21:00:00,0.247,0.266,0.325 -2014-05-17 22:00:00,0.247,0.266,0.325 -2014-05-17 23:00:00,0.247,0.266,0.325 -2014-05-18 00:00:00,0.24600000000000002,0.268,0.325 -2014-05-18 01:00:00,0.24600000000000002,0.268,0.325 -2014-05-18 02:00:00,0.24600000000000002,0.268,0.325 -2014-05-18 03:00:00,0.245,0.268,0.325 -2014-05-18 04:00:00,0.24600000000000002,0.268,0.325 -2014-05-18 05:00:00,0.245,0.268,0.325 -2014-05-18 06:00:00,0.245,0.268,0.325 -2014-05-18 07:00:00,0.245,0.268,0.325 -2014-05-18 08:00:00,0.245,0.268,0.325 -2014-05-18 09:00:00,0.245,0.268,0.325 -2014-05-18 10:00:00,0.245,0.268,0.325 -2014-05-18 11:00:00,0.245,0.268,0.325 -2014-05-18 12:00:00,0.245,0.268,0.325 -2014-05-18 13:00:00,0.244,0.268,0.325 -2014-05-18 14:00:00,0.244,0.266,0.325 -2014-05-18 15:00:00,0.244,0.266,0.324 -2014-05-18 16:00:00,0.244,0.266,0.324 -2014-05-18 17:00:00,0.244,0.266,0.324 -2014-05-18 18:00:00,0.244,0.266,0.324 -2014-05-18 19:00:00,0.244,0.266,0.324 -2014-05-18 20:00:00,0.244,0.266,0.324 -2014-05-18 21:00:00,0.244,0.266,0.324 -2014-05-18 22:00:00,0.243,0.266,0.324 -2014-05-18 23:00:00,0.243,0.266,0.324 -2014-05-19 00:00:00,0.243,0.266,0.324 -2014-05-19 01:00:00,0.243,0.266,0.324 -2014-05-19 02:00:00,0.242,0.266,0.324 -2014-05-19 03:00:00,0.242,0.266,0.324 -2014-05-19 04:00:00,0.242,0.266,0.324 -2014-05-19 05:00:00,0.242,0.266,0.324 -2014-05-19 06:00:00,0.24100000000000002,0.266,0.324 -2014-05-19 07:00:00,0.24100000000000002,0.266,0.325 -2014-05-19 08:00:00,0.24100000000000002,0.266,0.325 -2014-05-19 09:00:00,0.24100000000000002,0.266,0.325 -2014-05-19 10:00:00,0.24100000000000002,0.266,0.324 -2014-05-19 11:00:00,0.24100000000000002,0.266,0.324 -2014-05-19 12:00:00,0.24100000000000002,0.266,0.324 -2014-05-19 13:00:00,0.24100000000000002,0.265,0.324 -2014-05-19 14:00:00,0.24100000000000002,0.264,0.324 -2014-05-19 15:00:00,0.24100000000000002,0.264,0.32299999999999995 -2014-05-19 16:00:00,0.24100000000000002,0.264,0.32299999999999995 -2014-05-19 17:00:00,0.24100000000000002,0.264,0.32299999999999995 -2014-05-19 18:00:00,0.24,0.263,0.32299999999999995 -2014-05-19 19:00:00,0.24,0.263,0.32299999999999995 -2014-05-19 20:00:00,0.24,0.263,0.32299999999999995 -2014-05-19 21:00:00,0.24,0.263,0.322 -2014-05-19 22:00:00,0.24,0.263,0.322 -2014-05-19 23:00:00,0.24,0.263,0.322 -2014-05-20 00:00:00,0.239,0.263,0.322 -2014-05-20 01:00:00,0.239,0.263,0.322 -2014-05-20 02:00:00,0.239,0.263,0.322 -2014-05-20 03:00:00,0.239,0.263,0.322 -2014-05-20 04:00:00,0.23800000000000002,0.263,0.32299999999999995 -2014-05-20 05:00:00,0.23800000000000002,0.263,0.32299999999999995 -2014-05-20 06:00:00,0.23800000000000002,0.263,0.32299999999999995 -2014-05-20 07:00:00,0.23800000000000002,0.263,0.32299999999999995 -2014-05-20 08:00:00,0.23800000000000002,0.263,0.324 -2014-05-20 09:00:00,0.23800000000000002,0.263,0.32299999999999995 -2014-05-20 10:00:00,0.23800000000000002,0.263,0.32299999999999995 -2014-05-20 11:00:00,0.23800000000000002,0.263,0.32299999999999995 -2014-05-20 12:00:00,0.23800000000000002,0.263,0.322 -2014-05-20 13:00:00,0.237,0.263,0.322 -2014-05-20 14:00:00,0.237,0.263,0.322 -2014-05-20 15:00:00,0.237,0.263,0.322 -2014-05-20 16:00:00,0.237,0.263,0.321 -2014-05-20 17:00:00,0.237,0.263,0.321 -2014-05-20 18:00:00,0.237,0.263,0.321 -2014-05-20 19:00:00,0.237,0.263,0.321 -2014-05-20 20:00:00,0.237,0.263,0.321 -2014-05-20 21:00:00,0.23600000000000002,0.263,0.321 -2014-05-20 22:00:00,0.23600000000000002,0.263,0.32 -2014-05-20 23:00:00,0.23600000000000002,0.263,0.32 -2014-05-21 00:00:00,0.23600000000000002,0.263,0.321 -2014-05-21 01:00:00,0.235,0.263,0.321 -2014-05-21 02:00:00,0.235,0.264,0.321 -2014-05-21 03:00:00,0.23399999999999999,0.264,0.321 -2014-05-21 04:00:00,0.23399999999999999,0.265,0.321 -2014-05-21 05:00:00,0.23399999999999999,0.266,0.321 -2014-05-21 06:00:00,0.23399999999999999,0.266,0.321 -2014-05-21 07:00:00,0.23399999999999999,0.266,0.321 -2014-05-21 08:00:00,0.233,0.266,0.321 -2014-05-21 09:00:00,0.23399999999999999,0.267,0.321 -2014-05-21 10:00:00,0.23399999999999999,0.268,0.321 -2014-05-21 11:00:00,0.23399999999999999,0.268,0.321 -2014-05-21 12:00:00,0.23399999999999999,0.268,0.32 -2014-05-21 13:00:00,0.23399999999999999,0.268,0.32 -2014-05-21 14:00:00,0.23399999999999999,0.268,0.32 -2014-05-21 15:00:00,0.233,0.268,0.319 -2014-05-21 16:00:00,0.233,0.268,0.319 -2014-05-21 17:00:00,0.233,0.268,0.319 -2014-05-21 18:00:00,0.233,0.268,0.318 -2014-05-21 19:00:00,0.233,0.268,0.318 -2014-05-21 20:00:00,0.233,0.268,0.318 -2014-05-21 21:00:00,0.233,0.268,0.318 -2014-05-21 22:00:00,0.233,0.268,0.318 -2014-05-21 23:00:00,0.23199999999999998,0.268,0.318 -2014-05-22 00:00:00,0.23199999999999998,0.26899999999999996,0.318 -2014-05-22 01:00:00,0.23199999999999998,0.26899999999999996,0.318 -2014-05-22 02:00:00,0.231,0.27,0.318 -2014-05-22 03:00:00,0.231,0.27,0.318 -2014-05-22 04:00:00,0.231,0.27,0.318 -2014-05-22 05:00:00,0.231,0.27,0.318 -2014-05-22 06:00:00,0.231,0.27,0.318 -2014-05-22 07:00:00,0.231,0.27,0.319 -2014-05-22 08:00:00,0.231,0.27,0.319 -2014-05-22 09:00:00,0.231,0.27,0.318 -2014-05-22 10:00:00,0.23199999999999998,0.27,0.318 -2014-05-22 11:00:00,0.23199999999999998,0.27,0.319 -2014-05-22 12:00:00,0.23199999999999998,0.27,0.318 -2014-05-22 13:00:00,0.23199999999999998,0.27,0.317 -2014-05-22 14:00:00,0.231,0.27,0.316 -2014-05-22 15:00:00,0.23199999999999998,0.27,0.316 -2014-05-22 16:00:00,0.231,0.27,0.316 -2014-05-22 17:00:00,0.231,0.27,0.315 -2014-05-22 18:00:00,0.231,0.27,0.315 -2014-05-22 19:00:00,0.231,0.27,0.315 -2014-05-22 20:00:00,0.231,0.27,0.316 -2014-05-22 21:00:00,0.231,0.27,0.316 -2014-05-22 22:00:00,0.23,0.27,0.32 -2014-05-22 23:00:00,0.23,0.27,0.32 -2014-05-23 00:00:00,0.23,0.27,0.321 -2014-05-23 01:00:00,0.23,0.27,0.32 -2014-05-23 02:00:00,0.22899999999999998,0.27,0.321 -2014-05-23 03:00:00,0.22899999999999998,0.27,0.321 -2014-05-23 04:00:00,0.22899999999999998,0.27,0.321 -2014-05-23 05:00:00,0.22899999999999998,0.27,0.321 -2014-05-23 06:00:00,0.228,0.27,0.321 -2014-05-23 07:00:00,0.228,0.27,0.321 -2014-05-23 08:00:00,0.228,0.27,0.321 -2014-05-23 09:00:00,0.22699999999999998,0.27,0.322 -2014-05-23 10:00:00,0.22699999999999998,0.27,0.32299999999999995 -2014-05-23 11:00:00,0.22699999999999998,0.27,0.32299999999999995 -2014-05-23 12:00:00,0.228,0.27,0.322 -2014-05-23 13:00:00,0.22899999999999998,0.27,0.322 -2014-05-23 14:00:00,0.23,0.27,0.321 -2014-05-23 15:00:00,0.231,0.27,0.321 -2014-05-23 16:00:00,0.23199999999999998,0.27,0.319 -2014-05-23 17:00:00,0.23199999999999998,0.271,0.318 -2014-05-23 18:00:00,0.23199999999999998,0.271,0.317 -2014-05-23 19:00:00,0.23199999999999998,0.27399999999999997,0.317 -2014-05-23 20:00:00,0.23199999999999998,0.27899999999999997,0.317 -2014-05-23 21:00:00,0.23199999999999998,0.28,0.317 -2014-05-23 22:00:00,0.23199999999999998,0.28,0.316 -2014-05-23 23:00:00,0.231,0.28,0.316 -2014-05-24 00:00:00,0.231,0.28,0.316 -2014-05-24 01:00:00,0.231,0.28,0.316 -2014-05-24 02:00:00,0.231,0.28,0.316 -2014-05-24 03:00:00,0.231,0.28,0.316 -2014-05-24 04:00:00,0.23,0.28,0.316 -2014-05-24 05:00:00,0.23,0.28,0.317 -2014-05-24 06:00:00,0.23,0.28,0.317 -2014-05-24 07:00:00,0.23,0.28,0.317 -2014-05-24 08:00:00,0.23,0.28,0.317 -2014-05-24 09:00:00,0.23,0.28,0.317 -2014-05-24 10:00:00,0.23,0.28,0.317 -2014-05-24 11:00:00,0.23,0.28,0.316 -2014-05-24 12:00:00,0.23,0.27899999999999997,0.316 -2014-05-24 13:00:00,0.23,0.27899999999999997,0.316 -2014-05-24 14:00:00,0.231,0.27899999999999997,0.316 -2014-05-24 15:00:00,0.231,0.278,0.316 -2014-05-24 16:00:00,0.23,0.278,0.316 -2014-05-24 17:00:00,0.231,0.278,0.316 -2014-05-24 18:00:00,0.23,0.278,0.315 -2014-05-24 19:00:00,0.23,0.278,0.315 -2014-05-24 20:00:00,0.23,0.278,0.315 -2014-05-24 21:00:00,0.23,0.276,0.315 -2014-05-24 22:00:00,0.23,0.276,0.315 -2014-05-24 23:00:00,0.23,0.276,0.315 -2014-05-25 00:00:00,0.23,0.276,0.315 -2014-05-25 01:00:00,0.22899999999999998,0.27699999999999997,0.315 -2014-05-25 02:00:00,0.22899999999999998,0.276,0.315 -2014-05-25 03:00:00,0.22899999999999998,0.276,0.315 -2014-05-25 04:00:00,0.228,0.276,0.315 -2014-05-25 05:00:00,0.228,0.276,0.315 -2014-05-25 06:00:00,0.228,0.276,0.315 -2014-05-25 07:00:00,0.228,0.276,0.315 -2014-05-25 08:00:00,0.228,0.276,0.315 -2014-05-25 09:00:00,0.22699999999999998,0.276,0.315 -2014-05-25 10:00:00,0.22699999999999998,0.276,0.315 -2014-05-25 11:00:00,0.22699999999999998,0.276,0.315 -2014-05-25 12:00:00,0.228,0.276,0.315 -2014-05-25 13:00:00,0.228,0.276,0.314 -2014-05-25 14:00:00,0.228,0.276,0.314 -2014-05-25 15:00:00,0.228,0.276,0.313 -2014-05-25 16:00:00,0.228,0.276,0.313 -2014-05-25 17:00:00,0.22699999999999998,0.276,0.313 -2014-05-25 18:00:00,0.228,0.275,0.313 -2014-05-25 19:00:00,0.228,0.275,0.312 -2014-05-25 20:00:00,0.228,0.275,0.313 -2014-05-25 21:00:00,0.22699999999999998,0.275,0.312 -2014-05-25 22:00:00,0.22699999999999998,0.275,0.313 -2014-05-25 23:00:00,0.22699999999999998,0.275,0.312 -2014-05-26 00:00:00,0.22699999999999998,0.275,0.312 -2014-05-26 01:00:00,0.22699999999999998,0.275,0.312 -2014-05-26 02:00:00,0.226,0.275,0.312 -2014-05-26 03:00:00,0.226,0.275,0.313 -2014-05-26 04:00:00,0.226,0.275,0.313 -2014-05-26 05:00:00,0.226,0.275,0.313 -2014-05-26 06:00:00,0.226,0.276,0.313 -2014-05-26 07:00:00,0.226,0.276,0.314 -2014-05-26 08:00:00,0.226,0.275,0.314 -2014-05-26 09:00:00,0.22699999999999998,0.275,0.315 -2014-05-26 10:00:00,0.22699999999999998,0.275,0.316 -2014-05-26 11:00:00,0.22699999999999998,0.275,0.316 -2014-05-26 12:00:00,0.22699999999999998,0.275,0.316 -2014-05-26 13:00:00,0.22699999999999998,0.275,0.316 -2014-05-26 14:00:00,0.228,0.275,0.316 -2014-05-26 15:00:00,0.228,0.275,0.316 -2014-05-26 16:00:00,0.228,0.275,0.316 -2014-05-26 17:00:00,0.22899999999999998,0.275,0.315 -2014-05-26 18:00:00,0.228,0.275,0.315 -2014-05-26 19:00:00,0.22899999999999998,0.275,0.315 -2014-05-26 20:00:00,0.22899999999999998,0.275,0.315 -2014-05-26 21:00:00,0.22899999999999998,0.27399999999999997,0.315 -2014-05-26 22:00:00,0.22899999999999998,0.27399999999999997,0.315 -2014-05-26 23:00:00,0.22899999999999998,0.275,0.316 -2014-05-27 00:00:00,0.22899999999999998,0.275,0.316 -2014-05-27 01:00:00,0.22899999999999998,0.275,0.318 -2014-05-27 02:00:00,0.22899999999999998,0.275,0.318 -2014-05-27 03:00:00,0.22899999999999998,0.275,0.319 -2014-05-27 04:00:00,0.23,0.275,0.319 -2014-05-27 05:00:00,0.23199999999999998,0.275,0.319 -2014-05-27 06:00:00,0.237,0.275,0.319 -2014-05-27 07:00:00,0.239,0.275,0.319 -2014-05-27 08:00:00,0.239,0.275,0.319 -2014-05-27 09:00:00,0.239,0.275,0.319 -2014-05-27 10:00:00,0.239,0.275,0.319 -2014-05-27 11:00:00,0.239,0.275,0.319 -2014-05-27 12:00:00,0.239,0.275,0.319 -2014-05-27 13:00:00,0.23800000000000002,0.275,0.319 -2014-05-27 14:00:00,0.23800000000000002,0.273,0.319 -2014-05-27 15:00:00,0.239,0.273,0.319 -2014-05-27 16:00:00,0.239,0.273,0.318 -2014-05-27 17:00:00,0.239,0.273,0.318 -2014-05-27 18:00:00,0.239,0.272,0.318 -2014-05-27 19:00:00,0.239,0.271,0.318 -2014-05-27 20:00:00,0.239,0.271,0.318 -2014-05-27 21:00:00,0.239,0.271,0.318 -2014-05-27 22:00:00,0.239,0.271,0.318 -2014-05-27 23:00:00,0.23800000000000002,0.271,0.318 -2014-05-28 00:00:00,0.23800000000000002,0.271,0.318 -2014-05-28 01:00:00,0.23800000000000002,0.271,0.318 -2014-05-28 02:00:00,0.23800000000000002,0.271,0.318 -2014-05-28 03:00:00,0.23800000000000002,0.272,0.318 -2014-05-28 04:00:00,0.23800000000000002,0.272,0.318 -2014-05-28 05:00:00,0.23800000000000002,0.273,0.318 -2014-05-28 06:00:00,0.23800000000000002,0.272,0.318 -2014-05-28 07:00:00,0.23800000000000002,0.272,0.318 -2014-05-28 08:00:00,0.23800000000000002,0.272,0.318 -2014-05-28 09:00:00,0.23800000000000002,0.272,0.318 -2014-05-28 10:00:00,0.23800000000000002,0.271,0.317 -2014-05-28 11:00:00,0.23800000000000002,0.271,0.317 -2014-05-28 12:00:00,0.23800000000000002,0.271,0.317 -2014-05-28 13:00:00,0.23800000000000002,0.271,0.317 -2014-05-28 14:00:00,0.23800000000000002,0.27,0.316 -2014-05-28 15:00:00,0.23800000000000002,0.27,0.316 -2014-05-28 16:00:00,0.237,0.27,0.316 -2014-05-28 17:00:00,0.237,0.27,0.316 -2014-05-28 18:00:00,0.237,0.27,0.316 -2014-05-28 19:00:00,0.237,0.26899999999999996,0.316 -2014-05-28 20:00:00,0.237,0.26899999999999996,0.316 -2014-05-28 21:00:00,0.237,0.26899999999999996,0.316 -2014-05-28 22:00:00,0.237,0.27,0.316 -2014-05-28 23:00:00,0.237,0.27,0.316 -2014-05-29 00:00:00,0.237,0.27,0.316 -2014-05-29 01:00:00,0.237,0.27,0.316 -2014-05-29 02:00:00,0.237,0.27,0.316 -2014-05-29 03:00:00,0.237,0.27,0.316 -2014-05-29 04:00:00,0.237,0.27,0.316 -2014-05-29 05:00:00,0.237,0.27,0.316 -2014-05-29 06:00:00,0.237,0.27,0.316 -2014-05-29 07:00:00,0.237,0.27,0.316 -2014-05-29 08:00:00,0.23600000000000002,0.27,0.317 -2014-05-29 09:00:00,0.23600000000000002,0.27,0.317 -2014-05-29 10:00:00,0.237,0.27,0.317 -2014-05-29 11:00:00,0.237,0.27,0.317 -2014-05-29 12:00:00,0.237,0.27,0.317 -2014-05-29 13:00:00,0.237,0.26899999999999996,0.317 -2014-05-29 14:00:00,0.237,0.268,0.319 -2014-05-29 15:00:00,0.237,0.268,0.32 -2014-05-29 16:00:00,0.23600000000000002,0.268,0.321 -2014-05-29 17:00:00,0.237,0.266,0.321 -2014-05-29 18:00:00,0.245,0.266,0.321 -2014-05-29 19:00:00,0.25,0.266,0.32299999999999995 -2014-05-29 20:00:00,0.251,0.267,0.32299999999999995 -2014-05-29 21:00:00,0.252,0.267,0.32299999999999995 -2014-05-29 22:00:00,0.252,0.267,0.32299999999999995 -2014-05-29 23:00:00,0.252,0.268,0.32299999999999995 -2014-05-30 00:00:00,0.251,0.268,0.32299999999999995 -2014-05-30 01:00:00,0.251,0.268,0.322 -2014-05-30 02:00:00,0.251,0.268,0.322 -2014-05-30 03:00:00,0.251,0.268,0.322 -2014-05-30 04:00:00,0.251,0.268,0.322 -2014-05-30 05:00:00,0.25,0.268,0.322 -2014-05-30 06:00:00,0.249,0.268,0.322 -2014-05-30 07:00:00,0.249,0.268,0.322 -2014-05-30 08:00:00,0.249,0.268,0.322 -2014-05-30 09:00:00,0.249,0.26899999999999996,0.322 -2014-05-30 10:00:00,0.249,0.268,0.322 -2014-05-30 11:00:00,0.249,0.268,0.322 -2014-05-30 12:00:00,0.249,0.268,0.321 -2014-05-30 13:00:00,0.249,0.267,0.321 -2014-05-30 14:00:00,0.248,0.266,0.32 -2014-05-30 15:00:00,0.249,0.266,0.32 -2014-05-30 16:00:00,0.248,0.266,0.319 -2014-05-30 17:00:00,0.248,0.266,0.319 -2014-05-30 18:00:00,0.247,0.265,0.319 -2014-05-30 19:00:00,0.247,0.265,0.318 -2014-05-30 20:00:00,0.24600000000000002,0.265,0.318 -2014-05-30 21:00:00,0.24600000000000002,0.264,0.318 -2014-05-30 22:00:00,0.24600000000000002,0.264,0.318 -2014-05-30 23:00:00,0.24600000000000002,0.265,0.318 -2014-05-31 00:00:00,0.24600000000000002,0.265,0.318 -2014-05-31 01:00:00,0.245,0.266,0.318 -2014-05-31 02:00:00,0.245,0.266,0.318 -2014-05-31 03:00:00,0.245,0.266,0.318 -2014-05-31 04:00:00,0.244,0.266,0.318 -2014-05-31 05:00:00,0.244,0.266,0.318 -2014-05-31 06:00:00,0.244,0.266,0.318 -2014-05-31 07:00:00,0.244,0.266,0.318 -2014-05-31 08:00:00,0.244,0.266,0.318 -2014-05-31 09:00:00,0.244,0.266,0.318 -2014-05-31 10:00:00,0.244,0.266,0.318 -2014-05-31 11:00:00,0.243,0.266,0.318 -2014-05-31 12:00:00,0.243,0.265,0.318 -2014-05-31 13:00:00,0.243,0.264,0.317 -2014-05-31 14:00:00,0.243,0.264,0.317 -2014-05-31 15:00:00,0.243,0.264,0.317 -2014-05-31 16:00:00,0.243,0.263,0.317 -2014-05-31 17:00:00,0.243,0.263,0.317 -2014-05-31 18:00:00,0.243,0.263,0.317 -2014-05-31 19:00:00,0.243,0.263,0.316 -2014-05-31 20:00:00,0.243,0.262,0.316 -2014-05-31 21:00:00,0.243,0.261,0.316 -2014-05-31 22:00:00,0.242,0.261,0.316 -2014-05-31 23:00:00,0.242,0.261,0.316 -2014-06-01 00:00:00,0.242,0.262,0.316 -2014-06-01 01:00:00,0.242,0.262,0.316 -2014-06-01 02:00:00,0.242,0.263,0.316 -2014-06-01 03:00:00,0.24100000000000002,0.263,0.317 -2014-06-01 04:00:00,0.24100000000000002,0.263,0.317 -2014-06-01 05:00:00,0.24100000000000002,0.263,0.317 -2014-06-01 06:00:00,0.24100000000000002,0.263,0.317 -2014-06-01 07:00:00,0.24100000000000002,0.263,0.317 -2014-06-01 08:00:00,0.24100000000000002,0.263,0.318 -2014-06-01 09:00:00,0.24100000000000002,0.263,0.318 -2014-06-01 10:00:00,0.24100000000000002,0.263,0.318 -2014-06-01 11:00:00,0.24,0.262,0.318 -2014-06-01 12:00:00,0.24,0.261,0.317 -2014-06-01 13:00:00,0.24,0.261,0.316 -2014-06-01 14:00:00,0.24,0.261,0.316 -2014-06-01 15:00:00,0.24,0.26,0.316 -2014-06-01 16:00:00,0.24,0.259,0.315 -2014-06-01 17:00:00,0.239,0.259,0.315 -2014-06-01 18:00:00,0.239,0.259,0.315 -2014-06-01 19:00:00,0.239,0.262,0.315 -2014-06-01 20:00:00,0.239,0.258,0.315 -2014-06-01 21:00:00,0.239,0.258,0.315 -2014-06-01 22:00:00,0.239,0.258,0.315 -2014-06-01 23:00:00,0.23800000000000002,0.259,0.315 -2014-06-02 00:00:00,0.23800000000000002,0.259,0.315 -2014-06-02 01:00:00,0.23800000000000002,0.259,0.315 -2014-06-02 02:00:00,0.23800000000000002,0.259,0.315 -2014-06-02 03:00:00,0.23800000000000002,0.259,0.315 -2014-06-02 04:00:00,0.23800000000000002,0.259,0.315 -2014-06-02 05:00:00,0.237,0.259,0.315 -2014-06-02 06:00:00,0.237,0.259,0.315 -2014-06-02 07:00:00,0.237,0.259,0.315 -2014-06-02 08:00:00,0.237,0.259,0.316 -2014-06-02 09:00:00,0.237,0.259,0.316 -2014-06-02 10:00:00,0.237,0.259,0.316 -2014-06-02 11:00:00,0.237,0.259,0.315 -2014-06-02 12:00:00,0.23600000000000002,0.259,0.315 -2014-06-02 13:00:00,0.23600000000000002,0.259,0.315 -2014-06-02 14:00:00,0.23600000000000002,0.258,0.314 -2014-06-02 15:00:00,0.23600000000000002,0.258,0.314 -2014-06-02 16:00:00,0.23600000000000002,0.256,0.314 -2014-06-02 17:00:00,0.235,0.256,0.313 -2014-06-02 18:00:00,0.235,0.255,0.313 -2014-06-02 19:00:00,0.235,0.254,0.313 -2014-06-02 20:00:00,0.23399999999999999,0.254,0.313 -2014-06-02 21:00:00,0.23399999999999999,0.254,0.313 -2014-06-02 22:00:00,0.23399999999999999,0.254,0.313 -2014-06-02 23:00:00,0.23399999999999999,0.254,0.313 -2014-06-03 00:00:00,0.233,0.254,0.313 -2014-06-03 01:00:00,0.233,0.255,0.313 -2014-06-03 02:00:00,0.233,0.256,0.313 -2014-06-03 03:00:00,0.233,0.256,0.313 -2014-06-03 04:00:00,0.23199999999999998,0.256,0.313 -2014-06-03 05:00:00,0.233,0.256,0.313 -2014-06-03 06:00:00,0.23199999999999998,0.256,0.313 -2014-06-03 07:00:00,0.23199999999999998,0.256,0.313 -2014-06-03 08:00:00,0.23199999999999998,0.256,0.313 -2014-06-03 09:00:00,0.23199999999999998,0.256,0.313 -2014-06-03 10:00:00,0.23199999999999998,0.256,0.314 -2014-06-03 11:00:00,0.23199999999999998,0.256,0.314 -2014-06-03 12:00:00,0.231,0.256,0.314 -2014-06-03 13:00:00,0.231,0.255,0.314 -2014-06-03 14:00:00,0.231,0.254,0.313 -2014-06-03 15:00:00,0.231,0.254,0.313 -2014-06-03 16:00:00,0.231,0.253,0.313 -2014-06-03 17:00:00,0.231,0.253,0.312 -2014-06-03 18:00:00,0.231,0.252,0.312 -2014-06-03 19:00:00,0.231,0.251,0.311 -2014-06-03 20:00:00,0.231,0.251,0.311 -2014-06-03 21:00:00,0.231,0.251,0.311 -2014-06-03 22:00:00,0.23,0.251,0.311 -2014-06-03 23:00:00,0.23,0.251,0.311 -2014-06-04 00:00:00,0.23,0.251,0.311 -2014-06-04 01:00:00,0.23,0.251,0.311 -2014-06-04 02:00:00,0.23,0.251,0.311 -2014-06-04 03:00:00,0.22899999999999998,0.253,0.311 -2014-06-04 04:00:00,0.22899999999999998,0.254,0.311 -2014-06-04 05:00:00,0.22899999999999998,0.254,0.311 -2014-06-04 06:00:00,0.22899999999999998,0.254,0.311 -2014-06-04 07:00:00,0.22899999999999998,0.254,0.311 -2014-06-04 08:00:00,0.228,0.254,0.312 -2014-06-04 09:00:00,0.228,0.254,0.312 -2014-06-04 10:00:00,0.228,0.254,0.311 -2014-06-04 11:00:00,0.228,0.254,0.311 -2014-06-04 12:00:00,0.228,0.254,0.311 -2014-06-04 13:00:00,0.228,0.253,0.31 -2014-06-04 14:00:00,0.228,0.253,0.31 -2014-06-04 15:00:00,0.228,0.253,0.31 -2014-06-04 16:00:00,0.228,0.253,0.31 -2014-06-04 17:00:00,0.228,0.253,0.31 -2014-06-04 18:00:00,0.228,0.253,0.311 -2014-06-04 19:00:00,0.22899999999999998,0.253,0.311 -2014-06-04 20:00:00,0.22899999999999998,0.253,0.313 -2014-06-04 21:00:00,0.22899999999999998,0.253,0.313 -2014-06-04 22:00:00,0.22899999999999998,0.253,0.313 -2014-06-04 23:00:00,0.228,0.253,0.313 -2014-06-05 00:00:00,0.22899999999999998,0.253,0.313 -2014-06-05 01:00:00,0.228,0.253,0.313 -2014-06-05 02:00:00,0.228,0.253,0.313 -2014-06-05 03:00:00,0.228,0.254,0.314 -2014-06-05 04:00:00,0.228,0.254,0.314 -2014-06-05 05:00:00,0.228,0.254,0.314 -2014-06-05 06:00:00,0.228,0.254,0.313 -2014-06-05 07:00:00,0.228,0.254,0.313 -2014-06-05 08:00:00,0.228,0.254,0.313 -2014-06-05 09:00:00,0.228,0.254,0.312 -2014-06-05 10:00:00,0.22699999999999998,0.327,0.311 -2014-06-05 11:00:00,0.22699999999999998,0.46299999999999997,0.311 -2014-06-05 12:00:00,0.22699999999999998,0.45899999999999996,0.31 -2014-06-05 13:00:00,0.22699999999999998,0.45799999999999996,0.31 -2014-06-05 14:00:00,0.22699999999999998,0.455,0.31 -2014-06-05 15:00:00,0.226,0.45,0.309 -2014-06-05 16:00:00,0.226,0.449,0.309 -2014-06-05 17:00:00,0.226,0.45299999999999996,0.309 -2014-06-05 18:00:00,0.226,0.457,0.308 -2014-06-05 19:00:00,0.226,0.419,0.308 -2014-06-05 20:00:00,0.226,0.39,0.308 -2014-06-05 21:00:00,0.225,0.379,0.308 -2014-06-05 22:00:00,0.225,0.374,0.308 -2014-06-05 23:00:00,0.225,0.371,0.308 -2014-06-06 00:00:00,0.225,0.36700000000000005,0.308 -2014-06-06 01:00:00,0.22399999999999998,0.365,0.308 -2014-06-06 02:00:00,0.22399999999999998,0.365,0.308 -2014-06-06 03:00:00,0.22399999999999998,0.363,0.308 -2014-06-06 04:00:00,0.223,0.361,0.308 -2014-06-06 05:00:00,0.223,0.361,0.308 -2014-06-06 06:00:00,0.223,0.36,0.308 -2014-06-06 07:00:00,0.223,0.359,0.308 -2014-06-06 08:00:00,0.223,0.358,0.308 -2014-06-06 09:00:00,0.223,0.358,0.308 -2014-06-06 10:00:00,0.223,0.35700000000000004,0.308 -2014-06-06 11:00:00,0.223,0.355,0.308 -2014-06-06 12:00:00,0.222,0.355,0.308 -2014-06-06 13:00:00,0.222,0.354,0.307 -2014-06-06 14:00:00,0.222,0.35100000000000003,0.306 -2014-06-06 15:00:00,0.222,0.349,0.306 -2014-06-06 16:00:00,0.222,0.34700000000000003,0.305 -2014-06-06 17:00:00,0.222,0.345,0.305 -2014-06-06 18:00:00,0.222,0.34299999999999997,0.304 -2014-06-06 19:00:00,0.222,0.342,0.305 -2014-06-06 20:00:00,0.222,0.341,0.304 -2014-06-06 21:00:00,0.222,0.341,0.304 -2014-06-06 22:00:00,0.222,0.34,0.304 -2014-06-06 23:00:00,0.222,0.34,0.304 -2014-06-07 00:00:00,0.222,0.33899999999999997,0.304 -2014-06-07 01:00:00,0.221,0.33899999999999997,0.304 -2014-06-07 02:00:00,0.221,0.33899999999999997,0.304 -2014-06-07 03:00:00,0.221,0.33899999999999997,0.304 -2014-06-07 04:00:00,0.221,0.33899999999999997,0.304 -2014-06-07 05:00:00,0.221,0.33899999999999997,0.304 -2014-06-07 06:00:00,0.22,0.33899999999999997,0.304 -2014-06-07 07:00:00,0.22,0.33899999999999997,0.304 -2014-06-07 08:00:00,0.22,0.33899999999999997,0.305 -2014-06-07 09:00:00,0.22,0.33899999999999997,0.305 -2014-06-07 10:00:00,0.22,0.33899999999999997,0.304 -2014-06-07 11:00:00,0.22,0.33899999999999997,0.304 -2014-06-07 12:00:00,0.22,0.33799999999999997,0.303 -2014-06-07 13:00:00,0.22,0.33799999999999997,0.302 -2014-06-07 14:00:00,0.22,0.337,0.301 -2014-06-07 15:00:00,0.21899999999999997,0.335,0.301 -2014-06-07 16:00:00,0.21899999999999997,0.33399999999999996,0.3 -2014-06-07 17:00:00,0.22,0.332,0.3 -2014-06-07 18:00:00,0.21899999999999997,0.331,0.3 -2014-06-07 19:00:00,0.21899999999999997,0.33,0.3 -2014-06-07 20:00:00,0.22,0.32899999999999996,0.3 -2014-06-07 21:00:00,0.21899999999999997,0.32899999999999996,0.299 -2014-06-07 22:00:00,0.21899999999999997,0.327,0.299 -2014-06-07 23:00:00,0.21899999999999997,0.327,0.299 -2014-06-08 00:00:00,0.21899999999999997,0.327,0.299 -2014-06-08 01:00:00,0.218,0.327,0.299 -2014-06-08 02:00:00,0.218,0.327,0.299 -2014-06-08 03:00:00,0.218,0.327,0.299 -2014-06-08 04:00:00,0.218,0.327,0.299 -2014-06-08 05:00:00,0.218,0.327,0.299 -2014-06-08 06:00:00,0.218,0.327,0.299 -2014-06-08 07:00:00,0.218,0.327,0.3 -2014-06-08 08:00:00,0.218,0.327,0.3 -2014-06-08 09:00:00,0.218,0.327,0.3 -2014-06-08 10:00:00,0.217,0.327,0.299 -2014-06-08 11:00:00,0.217,0.327,0.298 -2014-06-08 12:00:00,0.217,0.327,0.298 -2014-06-08 13:00:00,0.217,0.327,0.297 -2014-06-08 14:00:00,0.217,0.326,0.29600000000000004 -2014-06-08 15:00:00,0.217,0.326,0.29600000000000004 -2014-06-08 16:00:00,0.217,0.326,0.295 -2014-06-08 17:00:00,0.217,0.324,0.295 -2014-06-08 18:00:00,0.21600000000000003,0.324,0.294 -2014-06-08 19:00:00,0.21600000000000003,0.324,0.294 -2014-06-08 20:00:00,0.21600000000000003,0.32299999999999995,0.293 -2014-06-08 21:00:00,0.21600000000000003,0.322,0.293 -2014-06-08 22:00:00,0.21600000000000003,0.322,0.293 -2014-06-08 23:00:00,0.21600000000000003,0.322,0.293 -2014-06-09 00:00:00,0.215,0.322,0.293 -2014-06-09 01:00:00,0.215,0.322,0.293 -2014-06-09 02:00:00,0.215,0.322,0.293 -2014-06-09 03:00:00,0.214,0.322,0.293 -2014-06-09 04:00:00,0.214,0.322,0.293 -2014-06-09 05:00:00,0.214,0.322,0.293 -2014-06-09 06:00:00,0.214,0.322,0.293 -2014-06-09 07:00:00,0.214,0.322,0.293 -2014-06-09 08:00:00,0.214,0.322,0.294 -2014-06-09 09:00:00,0.214,0.322,0.293 -2014-06-09 10:00:00,0.214,0.322,0.293 -2014-06-09 11:00:00,0.214,0.322,0.292 -2014-06-09 12:00:00,0.214,0.322,0.292 -2014-06-09 13:00:00,0.214,0.321,0.29100000000000004 -2014-06-09 14:00:00,0.214,0.321,0.29100000000000004 -2014-06-09 15:00:00,0.214,0.319,0.29 -2014-06-09 16:00:00,0.214,0.319,0.29 -2014-06-09 17:00:00,0.214,0.317,0.289 -2014-06-09 18:00:00,0.213,0.317,0.289 -2014-06-09 19:00:00,0.213,0.316,0.289 -2014-06-09 20:00:00,0.213,0.315,0.28800000000000003 -2014-06-09 21:00:00,0.213,0.315,0.28800000000000003 -2014-06-09 22:00:00,0.213,0.314,0.28800000000000003 -2014-06-09 23:00:00,0.231,0.314,0.294 -2014-06-10 00:00:00,0.24,0.314,0.297 -2014-06-10 01:00:00,0.23800000000000002,0.315,0.297 -2014-06-10 02:00:00,0.23600000000000002,0.315,0.297 -2014-06-10 03:00:00,0.235,0.315,0.297 -2014-06-10 04:00:00,0.23399999999999999,0.315,0.297 -2014-06-10 05:00:00,0.233,0.315,0.297 -2014-06-10 06:00:00,0.23199999999999998,0.315,0.297 -2014-06-10 07:00:00,0.231,0.315,0.29600000000000004 -2014-06-10 08:00:00,0.231,0.315,0.29600000000000004 -2014-06-10 09:00:00,0.231,0.314,0.29600000000000004 -2014-06-10 10:00:00,0.231,0.314,0.29600000000000004 -2014-06-10 11:00:00,0.23199999999999998,0.314,0.295 -2014-06-10 12:00:00,0.23199999999999998,0.314,0.295 -2014-06-10 13:00:00,0.23199999999999998,0.314,0.294 -2014-06-10 14:00:00,0.231,0.314,0.293 -2014-06-10 15:00:00,0.231,0.312,0.292 -2014-06-10 16:00:00,0.23,0.31,0.29100000000000004 -2014-06-10 17:00:00,0.22899999999999998,0.31,0.29100000000000004 -2014-06-10 18:00:00,0.228,0.309,0.29 -2014-06-10 19:00:00,0.228,0.309,0.29 -2014-06-10 20:00:00,0.228,0.307,0.29 -2014-06-10 21:00:00,0.22699999999999998,0.307,0.29 -2014-06-10 22:00:00,0.22699999999999998,0.307,0.29 -2014-06-10 23:00:00,0.226,0.307,0.29 -2014-06-11 00:00:00,0.226,0.307,0.29 -2014-06-11 01:00:00,0.226,0.307,0.29 -2014-06-11 02:00:00,0.226,0.307,0.29 -2014-06-11 03:00:00,0.225,0.307,0.29 -2014-06-11 04:00:00,0.225,0.307,0.29 -2014-06-11 05:00:00,0.225,0.307,0.29100000000000004 -2014-06-11 06:00:00,0.225,0.307,0.29100000000000004 -2014-06-11 07:00:00,0.306,0.307,0.35700000000000004 -2014-06-11 08:00:00,0.34,0.307,0.409 -2014-06-11 09:00:00,0.317,0.307,0.41 -2014-06-11 10:00:00,0.317,0.307,0.41100000000000003 -2014-06-11 11:00:00,0.314,0.307,0.41200000000000003 -2014-06-11 12:00:00,0.29100000000000004,0.307,0.41200000000000003 -2014-06-11 13:00:00,0.261,0.307,0.41200000000000003 -2014-06-11 14:00:00,0.254,0.305,0.413 -2014-06-11 15:00:00,0.252,0.304,0.41200000000000003 -2014-06-11 16:00:00,0.251,0.304,0.41200000000000003 -2014-06-11 17:00:00,0.251,0.303,0.41200000000000003 -2014-06-11 18:00:00,0.251,0.302,0.41100000000000003 -2014-06-11 19:00:00,0.251,0.302,0.41100000000000003 -2014-06-11 20:00:00,0.252,0.3,0.41100000000000003 -2014-06-11 21:00:00,0.251,0.3,0.41100000000000003 -2014-06-11 22:00:00,0.251,0.3,0.41100000000000003 -2014-06-11 23:00:00,0.251,0.3,0.41 -2014-06-12 00:00:00,0.251,0.3,0.41 -2014-06-12 01:00:00,0.251,0.3,0.41100000000000003 -2014-06-12 02:00:00,0.251,0.3,0.41100000000000003 -2014-06-12 03:00:00,0.25,0.3,0.41100000000000003 -2014-06-12 04:00:00,0.25,0.3,0.41100000000000003 -2014-06-12 05:00:00,0.25,0.3,0.41100000000000003 -2014-06-12 06:00:00,0.249,0.3,0.41100000000000003 -2014-06-12 07:00:00,0.249,0.3,0.408 -2014-06-12 08:00:00,0.249,0.3,0.40299999999999997 -2014-06-12 09:00:00,0.249,0.3,0.379 -2014-06-12 10:00:00,0.249,0.3,0.36700000000000005 -2014-06-12 11:00:00,0.249,0.3,0.36200000000000004 -2014-06-12 12:00:00,0.249,0.3,0.358 -2014-06-12 13:00:00,0.249,0.299,0.35600000000000004 -2014-06-12 14:00:00,0.248,0.298,0.35200000000000004 -2014-06-12 15:00:00,0.248,0.297,0.35 -2014-06-12 16:00:00,0.247,0.297,0.348 -2014-06-12 17:00:00,0.247,0.295,0.34600000000000003 -2014-06-12 18:00:00,0.247,0.295,0.344 -2014-06-12 19:00:00,0.24600000000000002,0.293,0.34299999999999997 -2014-06-12 20:00:00,0.24600000000000002,0.293,0.34299999999999997 -2014-06-12 21:00:00,0.24600000000000002,0.293,0.341 -2014-06-12 22:00:00,0.24600000000000002,0.292,0.33899999999999997 -2014-06-12 23:00:00,0.24600000000000002,0.292,0.33799999999999997 -2014-06-13 00:00:00,0.245,0.292,0.33799999999999997 -2014-06-13 01:00:00,0.245,0.292,0.337 -2014-06-13 02:00:00,0.245,0.292,0.337 -2014-06-13 03:00:00,0.245,0.292,0.336 -2014-06-13 04:00:00,0.244,0.293,0.336 -2014-06-13 05:00:00,0.244,0.293,0.335 -2014-06-13 06:00:00,0.244,0.293,0.335 -2014-06-13 07:00:00,0.244,0.293,0.335 -2014-06-13 08:00:00,0.243,0.293,0.33399999999999996 -2014-06-13 09:00:00,0.243,0.292,0.33399999999999996 -2014-06-13 10:00:00,0.243,0.292,0.33299999999999996 -2014-06-13 11:00:00,0.242,0.292,0.332 -2014-06-13 12:00:00,0.24100000000000002,0.292,0.332 -2014-06-13 13:00:00,0.24100000000000002,0.292,0.331 -2014-06-13 14:00:00,0.24,0.292,0.33 -2014-06-13 15:00:00,0.24,0.29,0.32899999999999996 -2014-06-13 16:00:00,0.239,0.29,0.32899999999999996 -2014-06-13 17:00:00,0.239,0.28800000000000003,0.32799999999999996 -2014-06-13 18:00:00,0.239,0.28800000000000003,0.327 -2014-06-13 19:00:00,0.23800000000000002,0.287,0.327 -2014-06-13 20:00:00,0.23800000000000002,0.287,0.326 -2014-06-13 21:00:00,0.23800000000000002,0.287,0.326 -2014-06-13 22:00:00,0.23800000000000002,0.287,0.326 -2014-06-13 23:00:00,0.237,0.287,0.326 -2014-06-14 00:00:00,0.237,0.287,0.326 -2014-06-14 01:00:00,0.237,0.287,0.326 -2014-06-14 02:00:00,0.237,0.287,0.326 -2014-06-14 03:00:00,0.23600000000000002,0.287,0.326 -2014-06-14 04:00:00,0.23600000000000002,0.287,0.326 -2014-06-14 05:00:00,0.23600000000000002,0.287,0.326 -2014-06-14 06:00:00,0.23600000000000002,0.287,0.326 -2014-06-14 07:00:00,0.23600000000000002,0.287,0.326 -2014-06-14 08:00:00,0.23600000000000002,0.287,0.326 -2014-06-14 09:00:00,0.23600000000000002,0.287,0.325 -2014-06-14 10:00:00,0.235,0.287,0.325 -2014-06-14 11:00:00,0.23399999999999999,0.287,0.325 -2014-06-14 12:00:00,0.23399999999999999,0.287,0.325 -2014-06-14 13:00:00,0.23399999999999999,0.287,0.325 -2014-06-14 14:00:00,0.233,0.287,0.324 -2014-06-14 15:00:00,0.233,0.28600000000000003,0.324 -2014-06-14 16:00:00,0.233,0.28600000000000003,0.324 -2014-06-14 17:00:00,0.233,0.285,0.324 -2014-06-14 18:00:00,0.233,0.285,0.324 -2014-06-14 19:00:00,0.23199999999999998,0.28300000000000003,0.322 -2014-06-14 20:00:00,0.23199999999999998,0.28300000000000003,0.322 -2014-06-14 21:00:00,0.23199999999999998,0.28300000000000003,0.322 -2014-06-14 22:00:00,0.23199999999999998,0.282,0.322 -2014-06-14 23:00:00,0.23199999999999998,0.282,0.322 -2014-06-15 00:00:00,0.23199999999999998,0.282,0.321 -2014-06-15 01:00:00,0.231,0.282,0.322 -2014-06-15 02:00:00,0.231,0.282,0.321 -2014-06-15 03:00:00,0.231,0.282,0.321 -2014-06-15 04:00:00,0.231,0.282,0.321 -2014-06-15 05:00:00,0.231,0.282,0.321 -2014-06-15 06:00:00,0.231,0.28300000000000003,0.322 -2014-06-15 07:00:00,0.23,0.282,0.322 -2014-06-15 08:00:00,0.23,0.282,0.322 -2014-06-15 09:00:00,0.23,0.28300000000000003,0.322 -2014-06-15 10:00:00,0.23,0.282,0.321 -2014-06-15 11:00:00,0.22899999999999998,0.282,0.321 -2014-06-15 12:00:00,0.22899999999999998,0.282,0.321 -2014-06-15 13:00:00,0.22899999999999998,0.281,0.32 -2014-06-15 14:00:00,0.22899999999999998,0.281,0.32 -2014-06-15 15:00:00,0.228,0.28,0.319 -2014-06-15 16:00:00,0.22699999999999998,0.28,0.319 -2014-06-15 17:00:00,0.228,0.28,0.319 -2014-06-15 18:00:00,0.22699999999999998,0.278,0.318 -2014-06-15 19:00:00,0.22699999999999998,0.278,0.318 -2014-06-15 20:00:00,0.22699999999999998,0.278,0.318 -2014-06-15 21:00:00,0.22699999999999998,0.27699999999999997,0.317 -2014-06-15 22:00:00,0.22699999999999998,0.276,0.317 -2014-06-15 23:00:00,0.22699999999999998,0.276,0.317 -2014-06-16 00:00:00,0.22699999999999998,0.27699999999999997,0.317 -2014-06-16 01:00:00,0.226,0.27699999999999997,0.317 -2014-06-16 02:00:00,0.226,0.278,0.317 -2014-06-16 03:00:00,0.226,0.278,0.317 -2014-06-16 04:00:00,0.226,0.278,0.317 -2014-06-16 05:00:00,0.225,0.278,0.317 -2014-06-16 06:00:00,0.225,0.278,0.318 -2014-06-16 07:00:00,0.225,0.278,0.317 -2014-06-16 08:00:00,0.225,0.278,0.318 -2014-06-16 09:00:00,0.225,0.27699999999999997,0.318 -2014-06-16 10:00:00,0.225,0.27699999999999997,0.317 -2014-06-16 11:00:00,0.225,0.276,0.316 -2014-06-16 12:00:00,0.225,0.276,0.316 -2014-06-16 13:00:00,0.22399999999999998,0.276,0.315 -2014-06-16 14:00:00,0.22399999999999998,0.276,0.315 -2014-06-16 15:00:00,0.223,0.275,0.314 -2014-06-16 16:00:00,0.223,0.27399999999999997,0.314 -2014-06-16 17:00:00,0.223,0.273,0.313 -2014-06-16 18:00:00,0.223,0.273,0.313 -2014-06-16 19:00:00,0.223,0.272,0.314 -2014-06-16 20:00:00,0.222,0.271,0.313 -2014-06-16 21:00:00,0.222,0.271,0.313 -2014-06-16 22:00:00,0.222,0.271,0.313 -2014-06-16 23:00:00,0.222,0.271,0.313 -2014-06-17 00:00:00,0.222,0.271,0.313 -2014-06-17 01:00:00,0.222,0.271,0.313 -2014-06-17 02:00:00,0.222,0.271,0.313 -2014-06-17 03:00:00,0.222,0.271,0.313 -2014-06-17 04:00:00,0.222,0.271,0.313 -2014-06-17 05:00:00,0.222,0.271,0.313 -2014-06-17 06:00:00,0.222,0.271,0.313 -2014-06-17 07:00:00,0.222,0.271,0.313 -2014-06-17 08:00:00,0.222,0.271,0.313 -2014-06-17 09:00:00,0.221,0.271,0.313 -2014-06-17 10:00:00,0.221,0.271,0.313 -2014-06-17 11:00:00,0.221,0.271,0.312 -2014-06-17 12:00:00,0.221,0.271,0.311 -2014-06-17 13:00:00,0.221,0.27,0.311 -2014-06-17 14:00:00,0.221,0.27,0.31 -2014-06-17 15:00:00,0.221,0.27,0.31 -2014-06-17 16:00:00,0.22,0.268,0.309 -2014-06-17 17:00:00,0.22,0.268,0.309 -2014-06-17 18:00:00,0.22,0.267,0.308 -2014-06-17 19:00:00,0.22,0.266,0.308 -2014-06-17 20:00:00,0.22,0.266,0.308 -2014-06-17 21:00:00,0.21899999999999997,0.266,0.308 -2014-06-17 22:00:00,0.21899999999999997,0.266,0.308 -2014-06-17 23:00:00,0.21899999999999997,0.266,0.308 -2014-06-18 00:00:00,0.218,0.266,0.308 -2014-06-18 01:00:00,0.218,0.266,0.308 -2014-06-18 02:00:00,0.218,0.266,0.308 -2014-06-18 03:00:00,0.218,0.266,0.308 -2014-06-18 04:00:00,0.218,0.266,0.308 -2014-06-18 05:00:00,0.218,0.266,0.308 -2014-06-18 06:00:00,0.217,0.266,0.308 -2014-06-18 07:00:00,0.218,0.266,0.308 -2014-06-18 08:00:00,0.217,0.266,0.309 -2014-06-18 09:00:00,0.218,0.266,0.308 -2014-06-18 10:00:00,0.217,0.266,0.308 -2014-06-18 11:00:00,0.217,0.266,0.308 -2014-06-18 12:00:00,0.217,0.266,0.307 -2014-06-18 13:00:00,0.217,0.266,0.307 -2014-06-18 14:00:00,0.21600000000000003,0.264,0.308 -2014-06-18 15:00:00,0.217,0.264,0.305 -2014-06-18 16:00:00,0.21600000000000003,0.264,0.304 -2014-06-18 17:00:00,0.21600000000000003,0.263,0.304 -2014-06-18 18:00:00,0.21600000000000003,0.263,0.304 -2014-06-18 19:00:00,0.21600000000000003,0.263,0.303 -2014-06-18 20:00:00,0.21600000000000003,0.263,0.303 -2014-06-18 21:00:00,0.21600000000000003,0.263,0.303 -2014-06-18 22:00:00,0.21600000000000003,0.263,0.303 -2014-06-18 23:00:00,0.21600000000000003,0.263,0.303 -2014-06-19 00:00:00,0.215,0.263,0.303 -2014-06-19 01:00:00,0.215,0.264,0.303 -2014-06-19 02:00:00,0.214,0.264,0.303 -2014-06-19 03:00:00,0.214,0.264,0.303 -2014-06-19 04:00:00,0.214,0.264,0.303 -2014-06-19 05:00:00,0.214,0.264,0.303 -2014-06-19 06:00:00,0.214,0.264,0.303 -2014-06-19 07:00:00,0.213,0.264,0.304 -2014-06-19 08:00:00,0.213,0.264,0.304 -2014-06-19 09:00:00,0.213,0.264,0.304 -2014-06-19 10:00:00,0.213,0.264,0.304 -2014-06-19 11:00:00,0.213,0.264,0.303 -2014-06-19 12:00:00,0.213,0.263,0.303 -2014-06-19 13:00:00,0.213,0.262,0.303 -2014-06-19 14:00:00,0.213,0.262,0.302 -2014-06-19 15:00:00,0.213,0.262,0.302 -2014-06-19 16:00:00,0.213,0.262,0.302 -2014-06-19 17:00:00,0.212,0.261,0.301 -2014-06-19 18:00:00,0.212,0.261,0.3 -2014-06-19 19:00:00,0.212,0.261,0.3 -2014-06-19 20:00:00,0.212,0.261,0.3 -2014-06-19 21:00:00,0.212,0.261,0.3 -2014-06-19 22:00:00,0.212,0.261,0.3 -2014-06-19 23:00:00,0.212,0.261,0.3 -2014-06-20 00:00:00,0.212,0.262,0.3 -2014-06-20 01:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 02:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 03:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 04:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 05:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 06:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 07:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 08:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 09:00:00,0.21100000000000002,0.262,0.3 -2014-06-20 10:00:00,0.21100000000000002,0.261,0.299 -2014-06-20 11:00:00,0.21100000000000002,0.261,0.299 -2014-06-20 12:00:00,0.21100000000000002,0.261,0.299 -2014-06-20 13:00:00,0.21100000000000002,0.261,0.299 -2014-06-20 14:00:00,0.21100000000000002,0.261,0.299 -2014-06-20 15:00:00,0.21100000000000002,0.261,0.298 -2014-06-20 16:00:00,0.21,0.259,0.298 -2014-06-20 17:00:00,0.21,0.259,0.298 -2014-06-20 18:00:00,0.21,0.259,0.298 -2014-06-20 19:00:00,0.21,0.259,0.297 -2014-06-20 20:00:00,0.21,0.259,0.297 -2014-06-20 21:00:00,0.21,0.259,0.297 -2014-06-20 22:00:00,0.21,0.259,0.297 -2014-06-20 23:00:00,0.21,0.259,0.297 -2014-06-21 00:00:00,0.21,0.259,0.297 -2014-06-21 01:00:00,0.21,0.259,0.297 -2014-06-21 02:00:00,0.21,0.259,0.297 -2014-06-21 03:00:00,0.21,0.259,0.297 -2014-06-21 04:00:00,0.209,0.259,0.297 -2014-06-21 05:00:00,0.209,0.259,0.297 -2014-06-21 06:00:00,0.209,0.259,0.297 -2014-06-21 07:00:00,0.209,0.259,0.297 -2014-06-21 08:00:00,0.209,0.259,0.297 -2014-06-21 09:00:00,0.209,0.259,0.297 -2014-06-21 10:00:00,0.21,0.259,0.297 -2014-06-21 11:00:00,0.209,0.259,0.29600000000000004 -2014-06-21 12:00:00,0.209,0.259,0.29600000000000004 -2014-06-21 13:00:00,0.209,0.258,0.29600000000000004 -2014-06-21 14:00:00,0.209,0.258,0.295 -2014-06-21 15:00:00,0.209,0.258,0.295 -2014-06-21 16:00:00,0.21,0.256,0.295 -2014-06-21 17:00:00,0.213,0.256,0.295 -2014-06-21 18:00:00,0.21100000000000002,0.256,0.294 -2014-06-21 19:00:00,0.209,0.256,0.294 -2014-06-21 20:00:00,0.20800000000000002,0.256,0.294 -2014-06-21 21:00:00,0.20800000000000002,0.256,0.294 -2014-06-21 22:00:00,0.20800000000000002,0.256,0.294 -2014-06-21 23:00:00,0.20800000000000002,0.256,0.294 -2014-06-22 00:00:00,0.20800000000000002,0.256,0.294 -2014-06-22 01:00:00,0.207,0.256,0.294 -2014-06-22 02:00:00,0.207,0.256,0.294 -2014-06-22 03:00:00,0.20800000000000002,0.256,0.294 -2014-06-22 04:00:00,0.207,0.256,0.294 -2014-06-22 05:00:00,0.207,0.256,0.294 -2014-06-22 06:00:00,0.207,0.256,0.294 -2014-06-22 07:00:00,0.207,0.256,0.294 -2014-06-22 08:00:00,0.207,0.256,0.294 -2014-06-22 09:00:00,0.207,0.256,0.294 -2014-06-22 10:00:00,0.207,0.256,0.294 -2014-06-22 11:00:00,0.207,0.256,0.294 -2014-06-22 12:00:00,0.207,0.256,0.293 -2014-06-22 13:00:00,0.207,0.256,0.293 -2014-06-22 14:00:00,0.207,0.256,0.292 -2014-06-22 15:00:00,0.207,0.255,0.292 -2014-06-22 16:00:00,0.20600000000000002,0.254,0.292 -2014-06-22 17:00:00,0.20600000000000002,0.254,0.29100000000000004 -2014-06-22 18:00:00,0.20600000000000002,0.254,0.29100000000000004 -2014-06-22 19:00:00,0.20600000000000002,0.254,0.29100000000000004 -2014-06-22 20:00:00,0.20600000000000002,0.254,0.29 -2014-06-22 21:00:00,0.20600000000000002,0.254,0.29 -2014-06-22 22:00:00,0.20600000000000002,0.254,0.29 -2014-06-22 23:00:00,0.20600000000000002,0.255,0.29 -2014-06-23 00:00:00,0.205,0.255,0.29 -2014-06-23 01:00:00,0.205,0.255,0.29 -2014-06-23 02:00:00,0.205,0.256,0.29 -2014-06-23 03:00:00,0.204,0.256,0.29 -2014-06-23 04:00:00,0.204,0.256,0.29 -2014-06-23 05:00:00,0.204,0.256,0.29 -2014-06-23 06:00:00,0.204,0.256,0.29 -2014-06-23 07:00:00,0.203,0.256,0.29100000000000004 -2014-06-23 08:00:00,0.203,0.256,0.29100000000000004 -2014-06-23 09:00:00,0.203,0.256,0.29100000000000004 -2014-06-23 10:00:00,0.203,0.256,0.29 -2014-06-23 11:00:00,0.204,0.256,0.29 -2014-06-23 12:00:00,0.204,0.256,0.29 -2014-06-23 13:00:00,0.203,0.256,0.29100000000000004 -2014-06-23 14:00:00,0.204,0.256,0.29 -2014-06-23 15:00:00,0.204,0.256,0.29 -2014-06-23 16:00:00,0.204,0.256,0.29 -2014-06-23 17:00:00,0.204,0.256,0.29 -2014-06-23 18:00:00,0.204,0.256,0.29 -2014-06-23 19:00:00,0.203,0.256,0.289 -2014-06-23 20:00:00,0.204,0.256,0.28800000000000003 -2014-06-23 21:00:00,0.203,0.256,0.28800000000000003 -2014-06-23 22:00:00,0.203,0.256,0.28800000000000003 -2014-06-23 23:00:00,0.203,0.256,0.28800000000000003 -2014-06-24 00:00:00,0.203,0.256,0.28800000000000003 -2014-06-24 01:00:00,0.20199999999999999,0.256,0.28800000000000003 -2014-06-24 02:00:00,0.20199999999999999,0.256,0.28800000000000003 -2014-06-24 03:00:00,0.20199999999999999,0.257,0.28800000000000003 -2014-06-24 04:00:00,0.20199999999999999,0.257,0.28800000000000003 -2014-06-24 05:00:00,0.201,0.257,0.28800000000000003 -2014-06-24 06:00:00,0.201,0.257,0.28800000000000003 -2014-06-24 07:00:00,0.201,0.257,0.28800000000000003 -2014-06-24 08:00:00,0.201,0.257,0.28800000000000003 -2014-06-24 09:00:00,0.201,0.257,0.28800000000000003 -2014-06-24 10:00:00,0.201,0.257,0.28800000000000003 -2014-06-24 11:00:00,0.201,0.257,0.28800000000000003 -2014-06-24 12:00:00,0.201,0.256,0.287 -2014-06-24 13:00:00,0.201,0.256,0.287 -2014-06-24 14:00:00,0.20199999999999999,0.256,0.287 -2014-06-24 15:00:00,0.201,0.256,0.28600000000000003 -2014-06-24 16:00:00,0.20199999999999999,0.256,0.28600000000000003 -2014-06-24 17:00:00,0.20199999999999999,0.256,0.28600000000000003 -2014-06-24 18:00:00,0.201,0.256,0.28600000000000003 -2014-06-24 19:00:00,0.20199999999999999,0.256,0.28600000000000003 -2014-06-24 20:00:00,0.20199999999999999,0.255,0.287 -2014-06-24 21:00:00,0.20199999999999999,0.255,0.287 -2014-06-24 22:00:00,0.20199999999999999,0.255,0.287 -2014-06-24 23:00:00,0.20199999999999999,0.255,0.29 -2014-06-25 00:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 01:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 02:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 03:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 04:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 05:00:00,0.201,0.256,0.29 -2014-06-25 06:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 07:00:00,0.201,0.256,0.29 -2014-06-25 08:00:00,0.201,0.256,0.29 -2014-06-25 09:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 10:00:00,0.20199999999999999,0.256,0.29 -2014-06-25 11:00:00,0.20199999999999999,0.256,0.289 -2014-06-25 12:00:00,0.20199999999999999,0.256,0.289 -2014-06-25 13:00:00,0.20199999999999999,0.255,0.289 -2014-06-25 14:00:00,0.20199999999999999,0.254,0.28800000000000003 -2014-06-25 15:00:00,0.20199999999999999,0.254,0.28800000000000003 -2014-06-25 16:00:00,0.20199999999999999,0.254,0.28800000000000003 -2014-06-25 17:00:00,0.201,0.254,0.287 -2014-06-25 18:00:00,0.201,0.254,0.28800000000000003 -2014-06-25 19:00:00,0.201,0.254,0.28800000000000003 -2014-06-25 20:00:00,0.201,0.254,0.287 -2014-06-25 21:00:00,0.20199999999999999,0.254,0.28600000000000003 -2014-06-25 22:00:00,0.20199999999999999,0.254,0.28600000000000003 -2014-06-25 23:00:00,0.201,0.254,0.28600000000000003 -2014-06-26 00:00:00,0.201,0.254,0.28600000000000003 -2014-06-26 01:00:00,0.201,0.254,0.28600000000000003 -2014-06-26 02:00:00,0.2,0.254,0.28600000000000003 -2014-06-26 03:00:00,0.2,0.254,0.28600000000000003 -2014-06-26 04:00:00,0.2,0.254,0.28600000000000003 -2014-06-26 05:00:00,0.2,0.254,0.28600000000000003 -2014-06-26 06:00:00,0.2,0.254,0.28600000000000003 -2014-06-26 07:00:00,0.19899999999999998,0.254,0.28600000000000003 -2014-06-26 08:00:00,0.19899999999999998,0.254,0.28600000000000003 -2014-06-26 09:00:00,0.19899999999999998,0.254,0.28600000000000003 -2014-06-26 10:00:00,0.19899999999999998,0.254,0.28600000000000003 -2014-06-26 11:00:00,0.19899999999999998,0.254,0.28600000000000003 -2014-06-26 12:00:00,0.19899999999999998,0.254,0.28600000000000003 -2014-06-26 13:00:00,0.2,0.253,0.285 -2014-06-26 14:00:00,0.2,0.253,0.285 -2014-06-26 15:00:00,0.2,0.253,0.285 -2014-06-26 16:00:00,0.2,0.253,0.285 -2014-06-26 17:00:00,0.2,0.252,0.284 -2014-06-26 18:00:00,0.2,0.252,0.284 -2014-06-26 19:00:00,0.2,0.252,0.284 -2014-06-26 20:00:00,0.19899999999999998,0.251,0.284 -2014-06-26 21:00:00,0.19899999999999998,0.251,0.284 -2014-06-26 22:00:00,0.19899999999999998,0.251,0.284 -2014-06-26 23:00:00,0.19899999999999998,0.252,0.28300000000000003 -2014-06-27 00:00:00,0.198,0.252,0.284 -2014-06-27 01:00:00,0.198,0.252,0.28300000000000003 -2014-06-27 02:00:00,0.198,0.253,0.28300000000000003 -2014-06-27 03:00:00,0.198,0.253,0.28300000000000003 -2014-06-27 04:00:00,0.19699999999999998,0.253,0.284 -2014-06-27 05:00:00,0.19699999999999998,0.253,0.284 -2014-06-27 06:00:00,0.19699999999999998,0.253,0.284 -2014-06-27 07:00:00,0.19699999999999998,0.253,0.284 -2014-06-27 08:00:00,0.19699999999999998,0.253,0.284 -2014-06-27 09:00:00,0.19699999999999998,0.252,0.284 -2014-06-27 10:00:00,0.198,0.252,0.284 -2014-06-27 11:00:00,0.198,0.252,0.284 -2014-06-27 12:00:00,0.19699999999999998,0.252,0.28300000000000003 -2014-06-27 13:00:00,0.198,0.251,0.28300000000000003 -2014-06-27 14:00:00,0.198,0.251,0.28300000000000003 -2014-06-27 15:00:00,0.198,0.249,0.28300000000000003 -2014-06-27 16:00:00,0.198,0.249,0.28300000000000003 -2014-06-27 17:00:00,0.198,0.249,0.282 -2014-06-27 18:00:00,0.198,0.248,0.282 -2014-06-27 19:00:00,0.198,0.247,0.282 -2014-06-27 20:00:00,0.198,0.247,0.282 -2014-06-27 21:00:00,0.198,0.247,0.282 -2014-06-27 22:00:00,0.198,0.247,0.282 -2014-06-27 23:00:00,0.198,0.247,0.282 -2014-06-28 00:00:00,0.198,0.248,0.282 -2014-06-28 01:00:00,0.198,0.248,0.282 -2014-06-28 02:00:00,0.198,0.248,0.282 -2014-06-28 03:00:00,0.198,0.249,0.282 -2014-06-28 04:00:00,0.19699999999999998,0.249,0.282 -2014-06-28 05:00:00,0.19699999999999998,0.249,0.282 -2014-06-28 06:00:00,0.19699999999999998,0.249,0.282 -2014-06-28 07:00:00,0.19699999999999998,0.249,0.28300000000000003 -2014-06-28 08:00:00,0.19699999999999998,0.249,0.28300000000000003 -2014-06-28 09:00:00,0.19699999999999998,0.249,0.282 -2014-06-28 10:00:00,0.19699999999999998,0.249,0.282 -2014-06-28 11:00:00,0.19699999999999998,0.248,0.282 -2014-06-28 12:00:00,0.19699999999999998,0.247,0.282 -2014-06-28 13:00:00,0.19699999999999998,0.247,0.282 -2014-06-28 14:00:00,0.198,0.247,0.282 -2014-06-28 15:00:00,0.19699999999999998,0.24600000000000002,0.281 -2014-06-28 16:00:00,0.19699999999999998,0.24600000000000002,0.281 -2014-06-28 17:00:00,0.198,0.245,0.282 -2014-06-28 18:00:00,0.198,0.244,0.282 -2014-06-28 19:00:00,0.198,0.244,0.28300000000000003 -2014-06-28 20:00:00,0.19699999999999998,0.244,0.28300000000000003 -2014-06-28 21:00:00,0.196,0.244,0.28300000000000003 -2014-06-28 22:00:00,0.19399999999999998,0.244,0.28300000000000003 -2014-06-28 23:00:00,0.19399999999999998,0.245,0.284 -2014-06-29 00:00:00,0.193,0.245,0.287 -2014-06-29 01:00:00,0.193,0.245,0.287 -2014-06-29 02:00:00,0.19399999999999998,0.24600000000000002,0.287 -2014-06-29 03:00:00,0.19399999999999998,0.24600000000000002,0.287 -2014-06-29 04:00:00,0.195,0.24600000000000002,0.287 -2014-06-29 05:00:00,0.195,0.24600000000000002,0.287 -2014-06-29 06:00:00,0.196,0.24600000000000002,0.287 -2014-06-29 07:00:00,0.196,0.24600000000000002,0.287 -2014-06-29 08:00:00,0.195,0.24600000000000002,0.287 -2014-06-29 09:00:00,0.196,0.24600000000000002,0.287 -2014-06-29 10:00:00,0.196,0.24600000000000002,0.287 -2014-06-29 11:00:00,0.196,0.24600000000000002,0.287 -2014-06-29 12:00:00,0.196,0.248,0.287 -2014-06-29 13:00:00,0.19699999999999998,0.249,0.287 -2014-06-29 14:00:00,0.19699999999999998,0.249,0.287 -2014-06-29 15:00:00,0.198,0.248,0.28600000000000003 -2014-06-29 16:00:00,0.198,0.247,0.28600000000000003 -2014-06-29 17:00:00,0.19899999999999998,0.247,0.285 -2014-06-29 18:00:00,0.19899999999999998,0.244,0.285 -2014-06-29 19:00:00,0.198,0.245,0.28600000000000003 -2014-06-29 20:00:00,0.198,0.24600000000000002,0.28600000000000003 -2014-06-29 21:00:00,0.198,0.24600000000000002,0.28600000000000003 -2014-06-29 22:00:00,0.198,0.24600000000000002,0.28600000000000003 -2014-06-29 23:00:00,0.198,0.24600000000000002,0.28600000000000003 -2014-06-30 00:00:00,0.19899999999999998,0.24600000000000002,0.28600000000000003 -2014-06-30 01:00:00,0.19899999999999998,0.24600000000000002,0.287 -2014-06-30 02:00:00,0.19899999999999998,0.24600000000000002,0.287 -2014-06-30 03:00:00,0.19899999999999998,0.24600000000000002,0.287 -2014-06-30 04:00:00,0.19899999999999998,0.247,0.287 -2014-06-30 05:00:00,0.19899999999999998,0.247,0.28600000000000003 -2014-06-30 06:00:00,0.19899999999999998,0.247,0.287 -2014-06-30 07:00:00,0.19899999999999998,0.247,0.287 -2014-06-30 08:00:00,0.198,0.247,0.287 -2014-06-30 09:00:00,0.19899999999999998,0.247,0.28600000000000003 -2014-06-30 10:00:00,0.19899999999999998,0.24600000000000002,0.28600000000000003 -2014-06-30 11:00:00,0.19899999999999998,0.24600000000000002,0.285 -2014-06-30 12:00:00,0.19899999999999998,0.24600000000000002,0.285 -2014-06-30 13:00:00,0.198,0.245,0.28600000000000003 -2014-06-30 14:00:00,0.198,0.244,0.287 -2014-06-30 15:00:00,0.2,0.244,0.28600000000000003 -2014-06-30 16:00:00,0.2,0.244,0.285 -2014-06-30 17:00:00,0.2,0.243,0.284 -2014-06-30 18:00:00,0.2,0.242,0.284 -2014-06-30 19:00:00,0.2,0.242,0.28300000000000003 -2014-06-30 20:00:00,0.2,0.242,0.28300000000000003 -2014-06-30 21:00:00,0.2,0.242,0.28300000000000003 -2014-06-30 22:00:00,0.2,0.242,0.28300000000000003 -2014-06-30 23:00:00,0.2,0.242,0.28300000000000003 -2014-07-01 00:00:00,0.19899999999999998,0.243,0.28300000000000003 -2014-07-01 01:00:00,0.19899999999999998,0.243,0.28300000000000003 -2014-07-01 02:00:00,0.19899999999999998,0.244,0.28300000000000003 -2014-07-01 03:00:00,0.19899999999999998,0.244,0.28300000000000003 -2014-07-01 04:00:00,0.19899999999999998,0.244,0.28300000000000003 -2014-07-01 05:00:00,0.19899999999999998,0.244,0.28300000000000003 -2014-07-01 06:00:00,0.198,0.244,0.28300000000000003 -2014-07-01 07:00:00,0.198,0.244,0.28300000000000003 -2014-07-01 08:00:00,0.198,0.244,0.28300000000000003 -2014-07-01 09:00:00,0.19899999999999998,0.244,0.28300000000000003 -2014-07-01 10:00:00,0.198,0.244,0.28300000000000003 -2014-07-01 11:00:00,0.198,0.244,0.28300000000000003 -2014-07-01 12:00:00,0.198,0.244,0.28300000000000003 -2014-07-01 13:00:00,0.198,0.244,0.282 -2014-07-01 14:00:00,0.19899999999999998,0.243,0.282 -2014-07-01 15:00:00,0.198,0.242,0.282 -2014-07-01 16:00:00,0.198,0.242,0.282 -2014-07-01 17:00:00,0.198,0.242,0.281 -2014-07-01 18:00:00,0.198,0.242,0.281 -2014-07-01 19:00:00,0.19899999999999998,0.242,0.281 -2014-07-01 20:00:00,0.198,0.242,0.281 -2014-07-01 21:00:00,0.198,0.242,0.281 -2014-07-01 22:00:00,0.198,0.242,0.281 -2014-07-01 23:00:00,0.198,0.242,0.281 -2014-07-02 00:00:00,0.198,0.242,0.281 -2014-07-02 01:00:00,0.198,0.242,0.281 -2014-07-02 02:00:00,0.198,0.242,0.28 -2014-07-02 03:00:00,0.19699999999999998,0.242,0.28 -2014-07-02 04:00:00,0.19699999999999998,0.242,0.28 -2014-07-02 05:00:00,0.19699999999999998,0.242,0.28 -2014-07-02 06:00:00,0.19699999999999998,0.242,0.281 -2014-07-02 07:00:00,0.19699999999999998,0.243,0.281 -2014-07-02 08:00:00,0.19699999999999998,0.243,0.281 -2014-07-02 09:00:00,0.19699999999999998,0.243,0.281 -2014-07-02 10:00:00,0.19699999999999998,0.243,0.281 -2014-07-02 11:00:00,0.19699999999999998,0.243,0.281 -2014-07-02 12:00:00,0.198,0.244,0.281 -2014-07-02 13:00:00,0.198,0.243,0.28 -2014-07-02 14:00:00,0.198,0.243,0.28 -2014-07-02 15:00:00,0.198,0.244,0.28 -2014-07-02 16:00:00,0.198,0.244,0.28 -2014-07-02 17:00:00,0.198,0.244,0.27899999999999997 -2014-07-02 18:00:00,0.198,0.244,0.27899999999999997 -2014-07-02 19:00:00,0.198,0.244,0.27899999999999997 -2014-07-02 20:00:00,0.198,0.244,0.27899999999999997 -2014-07-02 21:00:00,0.198,0.244,0.27899999999999997 -2014-07-02 22:00:00,0.198,0.244,0.27899999999999997 -2014-07-02 23:00:00,0.198,0.24600000000000002,0.27899999999999997 -2014-07-03 00:00:00,0.19699999999999998,0.24600000000000002,0.27899999999999997 -2014-07-03 01:00:00,0.19699999999999998,0.245,0.27899999999999997 -2014-07-03 02:00:00,0.19699999999999998,0.244,0.27899999999999997 -2014-07-03 03:00:00,0.196,0.244,0.27899999999999997 -2014-07-03 04:00:00,0.196,0.243,0.27899999999999997 -2014-07-03 05:00:00,0.196,0.242,0.27899999999999997 -2014-07-03 06:00:00,0.196,0.242,0.27899999999999997 -2014-07-03 07:00:00,0.196,0.235,0.27899999999999997 -2014-07-03 08:00:00,0.196,0.23399999999999999,0.27899999999999997 -2014-07-03 09:00:00,0.196,0.23600000000000002,0.27899999999999997 -2014-07-03 10:00:00,0.19699999999999998,0.244,0.27899999999999997 -2014-07-03 11:00:00,0.19699999999999998,0.258,0.27899999999999997 -2014-07-03 12:00:00,0.19699999999999998,0.271,0.27899999999999997 -2014-07-03 13:00:00,0.19699999999999998,0.32299999999999995,0.27899999999999997 -2014-07-03 14:00:00,0.19699999999999998,0.34299999999999997,0.278 -2014-07-03 15:00:00,0.19699999999999998,0.354,0.278 -2014-07-03 16:00:00,0.19699999999999998,0.355,0.278 -2014-07-03 17:00:00,0.19699999999999998,0.353,0.278 -2014-07-03 18:00:00,0.19699999999999998,0.35200000000000004,0.27699999999999997 -2014-07-03 19:00:00,0.19699999999999998,0.35100000000000003,0.27699999999999997 -2014-07-03 20:00:00,0.19699999999999998,0.35,0.27699999999999997 -2014-07-03 21:00:00,0.19699999999999998,0.349,0.27699999999999997 -2014-07-03 22:00:00,0.19699999999999998,0.348,0.27699999999999997 -2014-07-03 23:00:00,0.19699999999999998,0.34600000000000003,0.27699999999999997 -2014-07-04 00:00:00,0.196,0.344,0.27699999999999997 -2014-07-04 01:00:00,0.196,0.34299999999999997,0.27699999999999997 -2014-07-04 02:00:00,0.196,0.341,0.27699999999999997 -2014-07-04 03:00:00,0.196,0.341,0.27699999999999997 -2014-07-04 04:00:00,0.196,0.33899999999999997,0.27699999999999997 -2014-07-04 05:00:00,0.196,0.33799999999999997,0.27699999999999997 -2014-07-04 06:00:00,0.196,0.33799999999999997,0.27699999999999997 -2014-07-04 07:00:00,0.195,0.337,0.27699999999999997 -2014-07-04 08:00:00,0.196,0.336,0.27699999999999997 -2014-07-04 09:00:00,0.196,0.33399999999999996,0.27699999999999997 -2014-07-04 10:00:00,0.196,0.33399999999999996,0.27699999999999997 -2014-07-04 11:00:00,0.196,0.33299999999999996,0.27699999999999997 -2014-07-04 12:00:00,0.196,0.332,0.27699999999999997 -2014-07-04 13:00:00,0.196,0.332,0.276 -2014-07-04 14:00:00,0.196,0.332,0.276 -2014-07-04 15:00:00,0.196,0.331,0.276 -2014-07-04 16:00:00,0.196,0.33,0.275 -2014-07-04 17:00:00,0.196,0.32799999999999996,0.275 -2014-07-04 18:00:00,0.196,0.327,0.275 -2014-07-04 19:00:00,0.196,0.326,0.275 -2014-07-04 20:00:00,0.196,0.325,0.275 -2014-07-04 21:00:00,0.196,0.324,0.275 -2014-07-04 22:00:00,0.196,0.324,0.275 -2014-07-04 23:00:00,0.196,0.345,0.275 -2014-07-05 00:00:00,0.196,0.366,0.275 -2014-07-05 01:00:00,0.196,0.363,0.275 -2014-07-05 02:00:00,0.196,0.361,0.275 -2014-07-05 03:00:00,0.196,0.361,0.275 -2014-07-05 04:00:00,0.196,0.36,0.275 -2014-07-05 05:00:00,0.196,0.35700000000000004,0.275 -2014-07-05 06:00:00,0.196,0.355,0.275 -2014-07-05 07:00:00,0.196,0.354,0.275 -2014-07-05 08:00:00,0.196,0.353,0.275 -2014-07-05 09:00:00,0.195,0.35100000000000003,0.275 -2014-07-05 10:00:00,0.196,0.35100000000000003,0.275 -2014-07-05 11:00:00,0.195,0.349,0.275 -2014-07-05 12:00:00,0.195,0.348,0.275 -2014-07-05 13:00:00,0.196,0.34700000000000003,0.275 -2014-07-05 14:00:00,0.196,0.34700000000000003,0.275 -2014-07-05 15:00:00,0.196,0.345,0.275 -2014-07-05 16:00:00,0.196,0.342,0.27399999999999997 -2014-07-05 17:00:00,0.196,0.341,0.27399999999999997 -2014-07-05 18:00:00,0.196,0.341,0.27399999999999997 -2014-07-05 19:00:00,0.196,0.34,0.27399999999999997 -2014-07-05 20:00:00,0.196,0.33899999999999997,0.27399999999999997 -2014-07-05 21:00:00,0.196,0.33899999999999997,0.27399999999999997 -2014-07-05 22:00:00,0.196,0.33899999999999997,0.27399999999999997 -2014-07-05 23:00:00,0.196,0.33799999999999997,0.27399999999999997 -2014-07-06 00:00:00,0.196,0.33799999999999997,0.27399999999999997 -2014-07-06 01:00:00,0.196,0.33799999999999997,0.27399999999999997 -2014-07-06 02:00:00,0.196,0.337,0.27399999999999997 -2014-07-06 03:00:00,0.196,0.332,0.27399999999999997 -2014-07-06 04:00:00,0.196,0.331,0.27399999999999997 -2014-07-06 05:00:00,0.196,0.335,0.27399999999999997 -2014-07-06 06:00:00,0.196,0.34,0.275 -2014-07-06 07:00:00,0.196,0.344,0.275 -2014-07-06 08:00:00,0.196,0.34700000000000003,0.275 -2014-07-06 09:00:00,0.196,0.348,0.275 -2014-07-06 10:00:00,0.196,0.348,0.275 -2014-07-06 11:00:00,0.196,0.348,0.27399999999999997 -2014-07-06 12:00:00,0.196,0.348,0.27399999999999997 -2014-07-06 13:00:00,0.196,0.348,0.27399999999999997 -2014-07-06 14:00:00,0.196,0.348,0.27399999999999997 -2014-07-06 15:00:00,0.196,0.34700000000000003,0.27399999999999997 -2014-07-06 16:00:00,0.196,0.344,0.273 -2014-07-06 17:00:00,0.196,0.34299999999999997,0.273 -2014-07-06 18:00:00,0.196,0.341,0.273 -2014-07-06 19:00:00,0.196,0.33899999999999997,0.273 -2014-07-06 20:00:00,0.196,0.33799999999999997,0.273 -2014-07-06 21:00:00,0.196,0.33799999999999997,0.273 -2014-07-06 22:00:00,0.19699999999999998,0.337,0.275 -2014-07-06 23:00:00,0.19699999999999998,0.336,0.276 -2014-07-07 00:00:00,0.19699999999999998,0.336,0.276 -2014-07-07 01:00:00,0.196,0.336,0.27699999999999997 -2014-07-07 02:00:00,0.196,0.336,0.27699999999999997 -2014-07-07 03:00:00,0.196,0.335,0.27699999999999997 -2014-07-07 04:00:00,0.196,0.33399999999999996,0.27699999999999997 -2014-07-07 05:00:00,0.196,0.33399999999999996,0.27699999999999997 -2014-07-07 06:00:00,0.196,0.33399999999999996,0.27699999999999997 -2014-07-07 07:00:00,0.196,0.33399999999999996,0.27699999999999997 -2014-07-07 08:00:00,0.196,0.33399999999999996,0.27699999999999997 -2014-07-07 09:00:00,0.196,0.33299999999999996,0.276 -2014-07-07 10:00:00,0.196,0.332,0.276 -2014-07-07 11:00:00,0.196,0.331,0.276 -2014-07-07 12:00:00,0.19699999999999998,0.331,0.275 -2014-07-07 13:00:00,0.19699999999999998,0.33,0.275 -2014-07-07 14:00:00,0.196,0.32799999999999996,0.27399999999999997 -2014-07-07 15:00:00,0.196,0.32899999999999996,0.273 -2014-07-07 16:00:00,0.196,0.32899999999999996,0.273 -2014-07-07 17:00:00,0.196,0.33,0.273 -2014-07-07 18:00:00,0.196,0.32899999999999996,0.272 -2014-07-07 19:00:00,0.196,0.32899999999999996,0.272 -2014-07-07 20:00:00,0.196,0.32899999999999996,0.272 -2014-07-07 21:00:00,0.196,0.32899999999999996,0.272 -2014-07-07 22:00:00,0.196,0.32899999999999996,0.272 -2014-07-07 23:00:00,0.196,0.32899999999999996,0.272 -2014-07-08 00:00:00,0.196,0.32899999999999996,0.272 -2014-07-08 01:00:00,0.196,0.332,0.272 -2014-07-08 02:00:00,0.196,0.35100000000000003,0.273 -2014-07-08 03:00:00,0.19699999999999998,0.361,0.275 -2014-07-08 04:00:00,0.22,0.363,0.278 -2014-07-08 05:00:00,0.244,0.363,0.278 -2014-07-08 06:00:00,0.244,0.361,0.278 -2014-07-08 07:00:00,0.243,0.361,0.278 -2014-07-08 08:00:00,0.242,0.36,0.278 -2014-07-08 09:00:00,0.24,0.358,0.27899999999999997 -2014-07-08 10:00:00,0.239,0.35600000000000004,0.27899999999999997 -2014-07-08 11:00:00,0.237,0.355,0.27899999999999997 -2014-07-08 12:00:00,0.237,0.354,0.27899999999999997 -2014-07-08 13:00:00,0.235,0.35200000000000004,0.27899999999999997 -2014-07-08 14:00:00,0.23399999999999999,0.349,0.27899999999999997 -2014-07-08 15:00:00,0.233,0.34700000000000003,0.27899999999999997 -2014-07-08 16:00:00,0.233,0.344,0.27899999999999997 -2014-07-08 17:00:00,0.23199999999999998,0.342,0.27899999999999997 -2014-07-08 18:00:00,0.23199999999999998,0.34,0.278 -2014-07-08 19:00:00,0.23199999999999998,0.33799999999999997,0.278 -2014-07-08 20:00:00,0.231,0.33799999999999997,0.278 -2014-07-08 21:00:00,0.231,0.33799999999999997,0.278 -2014-07-08 22:00:00,0.23,0.337,0.27899999999999997 -2014-07-08 23:00:00,0.242,0.336,0.28 -2014-07-09 00:00:00,0.259,0.336,0.28 -2014-07-09 01:00:00,0.262,0.336,0.281 -2014-07-09 02:00:00,0.264,0.336,0.281 -2014-07-09 03:00:00,0.264,0.335,0.281 -2014-07-09 04:00:00,0.266,0.33399999999999996,0.282 -2014-07-09 05:00:00,0.268,0.33399999999999996,0.282 -2014-07-09 06:00:00,0.27,0.33399999999999996,0.282 -2014-07-09 07:00:00,0.27,0.33399999999999996,0.28300000000000003 -2014-07-09 08:00:00,0.26899999999999996,0.33299999999999996,0.28300000000000003 -2014-07-09 09:00:00,0.271,0.332,0.28300000000000003 -2014-07-09 10:00:00,0.275,0.332,0.285 -2014-07-09 11:00:00,0.273,0.332,0.302 -2014-07-09 12:00:00,0.273,0.331,0.316 -2014-07-09 13:00:00,0.26899999999999996,0.331,0.321 -2014-07-09 14:00:00,0.267,0.32899999999999996,0.32 -2014-07-09 15:00:00,0.266,0.327,0.316 -2014-07-09 16:00:00,0.264,0.326,0.314 -2014-07-09 17:00:00,0.262,0.326,0.313 -2014-07-09 18:00:00,0.261,0.324,0.312 -2014-07-09 19:00:00,0.26,0.324,0.311 -2014-07-09 20:00:00,0.259,0.324,0.308 -2014-07-09 21:00:00,0.258,0.324,0.306 -2014-07-09 22:00:00,0.258,0.32299999999999995,0.305 -2014-07-09 23:00:00,0.257,0.32299999999999995,0.304 -2014-07-10 00:00:00,0.256,0.32299999999999995,0.303 -2014-07-10 01:00:00,0.256,0.32299999999999995,0.303 -2014-07-10 02:00:00,0.255,0.32299999999999995,0.302 -2014-07-10 03:00:00,0.255,0.322,0.302 -2014-07-10 04:00:00,0.254,0.322,0.301 -2014-07-10 05:00:00,0.254,0.322,0.301 -2014-07-10 06:00:00,0.253,0.322,0.3 -2014-07-10 07:00:00,0.253,0.322,0.3 -2014-07-10 08:00:00,0.253,0.322,0.3 -2014-07-10 09:00:00,0.253,0.322,0.3 -2014-07-10 10:00:00,0.252,0.322,0.299 -2014-07-10 11:00:00,0.252,0.322,0.299 -2014-07-10 12:00:00,0.253,0.321,0.298 -2014-07-10 13:00:00,0.253,0.321,0.298 -2014-07-10 14:00:00,0.253,0.321,0.297 -2014-07-10 15:00:00,0.253,0.319,0.297 -2014-07-10 16:00:00,0.254,0.318,0.29600000000000004 -2014-07-10 17:00:00,0.254,0.317,0.29600000000000004 -2014-07-10 18:00:00,0.254,0.317,0.295 -2014-07-10 19:00:00,0.253,0.316,0.295 -2014-07-10 20:00:00,0.267,0.315,0.315 -2014-07-10 21:00:00,0.273,0.315,0.35200000000000004 -2014-07-10 22:00:00,0.268,0.315,0.349 -2014-07-10 23:00:00,0.265,0.315,0.34600000000000003 -2014-07-11 00:00:00,0.263,0.315,0.342 -2014-07-11 01:00:00,0.261,0.315,0.34 -2014-07-11 02:00:00,0.26,0.315,0.33799999999999997 -2014-07-11 03:00:00,0.259,0.315,0.337 -2014-07-11 04:00:00,0.258,0.315,0.335 -2014-07-11 05:00:00,0.258,0.315,0.332 -2014-07-11 06:00:00,0.257,0.315,0.32899999999999996 -2014-07-11 07:00:00,0.256,0.314,0.325 -2014-07-11 08:00:00,0.256,0.314,0.32299999999999995 -2014-07-11 09:00:00,0.256,0.314,0.32 -2014-07-11 10:00:00,0.255,0.314,0.318 -2014-07-11 11:00:00,0.255,0.314,0.316 -2014-07-11 12:00:00,0.257,0.314,0.314 -2014-07-11 13:00:00,0.258,0.313,0.312 -2014-07-11 14:00:00,0.258,0.312,0.31 -2014-07-11 15:00:00,0.257,0.31,0.31 -2014-07-11 16:00:00,0.257,0.31,0.31 -2014-07-11 17:00:00,0.257,0.309,0.309 -2014-07-11 18:00:00,0.257,0.308,0.309 -2014-07-11 19:00:00,0.256,0.307,0.309 -2014-07-11 20:00:00,0.257,0.307,0.309 -2014-07-11 21:00:00,0.254,0.307,0.309 -2014-07-11 22:00:00,0.253,0.306,0.31 -2014-07-11 23:00:00,0.253,0.306,0.31 -2014-07-12 00:00:00,0.26,0.307,0.31 -2014-07-12 01:00:00,0.267,0.307,0.31 -2014-07-12 02:00:00,0.266,0.307,0.31 -2014-07-12 03:00:00,0.265,0.307,0.31 -2014-07-12 04:00:00,0.263,0.307,0.31 -2014-07-12 05:00:00,0.263,0.307,0.31 -2014-07-12 06:00:00,0.262,0.307,0.31 -2014-07-12 07:00:00,0.261,0.306,0.31 -2014-07-12 08:00:00,0.26,0.306,0.31 -2014-07-12 09:00:00,0.26,0.306,0.31 -2014-07-12 10:00:00,0.259,0.305,0.309 -2014-07-12 11:00:00,0.258,0.305,0.309 -2014-07-12 12:00:00,0.258,0.305,0.308 -2014-07-12 13:00:00,0.259,0.304,0.307 -2014-07-12 14:00:00,0.26,0.303,0.306 -2014-07-12 15:00:00,0.26,0.302,0.306 -2014-07-12 16:00:00,0.259,0.3,0.305 -2014-07-12 17:00:00,0.259,0.299,0.304 -2014-07-12 18:00:00,0.258,0.298,0.304 -2014-07-12 19:00:00,0.258,0.297,0.304 -2014-07-12 20:00:00,0.258,0.297,0.304 -2014-07-12 21:00:00,0.258,0.297,0.304 -2014-07-12 22:00:00,0.258,0.297,0.304 -2014-07-12 23:00:00,0.257,0.297,0.304 -2014-07-13 00:00:00,0.257,0.297,0.304 -2014-07-13 01:00:00,0.256,0.297,0.303 -2014-07-13 02:00:00,0.256,0.297,0.303 -2014-07-13 03:00:00,0.256,0.297,0.304 -2014-07-13 04:00:00,0.255,0.297,0.304 -2014-07-13 05:00:00,0.255,0.297,0.304 -2014-07-13 06:00:00,0.255,0.297,0.304 -2014-07-13 07:00:00,0.252,0.297,0.305 -2014-07-13 08:00:00,0.25,0.297,0.307 -2014-07-13 09:00:00,0.251,0.297,0.307 -2014-07-13 10:00:00,0.253,0.297,0.307 -2014-07-13 11:00:00,0.255,0.29600000000000004,0.307 -2014-07-13 12:00:00,0.257,0.29600000000000004,0.307 -2014-07-13 13:00:00,0.258,0.295,0.307 -2014-07-13 14:00:00,0.258,0.293,0.306 -2014-07-13 15:00:00,0.258,0.292,0.306 -2014-07-13 16:00:00,0.261,0.29100000000000004,0.306 -2014-07-13 17:00:00,0.263,0.29,0.306 -2014-07-13 18:00:00,0.262,0.289,0.306 -2014-07-13 19:00:00,0.261,0.28800000000000003,0.306 -2014-07-13 20:00:00,0.261,0.287,0.307 -2014-07-13 21:00:00,0.264,0.287,0.307 -2014-07-13 22:00:00,0.26899999999999996,0.287,0.307 -2014-07-13 23:00:00,0.268,0.287,0.307 -2014-07-14 00:00:00,0.267,0.287,0.307 -2014-07-14 01:00:00,0.265,0.28800000000000003,0.307 -2014-07-14 02:00:00,0.264,0.28800000000000003,0.307 -2014-07-14 03:00:00,0.263,0.28800000000000003,0.308 -2014-07-14 04:00:00,0.262,0.28800000000000003,0.308 -2014-07-14 05:00:00,0.262,0.28800000000000003,0.308 -2014-07-14 06:00:00,0.261,0.28800000000000003,0.308 -2014-07-14 07:00:00,0.259,0.28800000000000003,0.308 -2014-07-14 08:00:00,0.259,0.287,0.308 -2014-07-14 09:00:00,0.258,0.287,0.308 -2014-07-14 10:00:00,0.258,0.287,0.308 -2014-07-14 11:00:00,0.259,0.287,0.307 -2014-07-14 12:00:00,0.26,0.287,0.306 -2014-07-14 13:00:00,0.26,0.287,0.306 -2014-07-14 14:00:00,0.259,0.287,0.305 -2014-07-14 15:00:00,0.258,0.287,0.305 -2014-07-14 16:00:00,0.257,0.287,0.305 -2014-07-14 17:00:00,0.257,0.28600000000000003,0.304 -2014-07-14 18:00:00,0.257,0.285,0.304 -2014-07-14 19:00:00,0.257,0.285,0.304 -2014-07-14 20:00:00,0.257,0.285,0.304 -2014-07-14 21:00:00,0.256,0.284,0.304 -2014-07-14 22:00:00,0.256,0.28300000000000003,0.304 -2014-07-14 23:00:00,0.256,0.28300000000000003,0.304 -2014-07-15 00:00:00,0.255,0.28300000000000003,0.304 -2014-07-15 01:00:00,0.255,0.28300000000000003,0.304 -2014-07-15 02:00:00,0.254,0.284,0.304 -2014-07-15 03:00:00,0.254,0.285,0.304 -2014-07-15 04:00:00,0.254,0.284,0.304 -2014-07-15 05:00:00,0.254,0.285,0.304 -2014-07-15 06:00:00,0.254,0.285,0.304 -2014-07-15 07:00:00,0.253,0.285,0.304 -2014-07-15 08:00:00,0.253,0.285,0.304 -2014-07-15 09:00:00,0.253,0.285,0.304 -2014-07-15 10:00:00,0.253,0.285,0.304 -2014-07-15 11:00:00,0.252,0.285,0.303 -2014-07-15 12:00:00,0.252,0.285,0.303 -2014-07-15 13:00:00,0.251,0.285,0.303 -2014-07-15 14:00:00,0.251,0.285,0.302 -2014-07-15 15:00:00,0.25,0.285,0.302 -2014-07-15 16:00:00,0.25,0.28300000000000003,0.302 -2014-07-15 17:00:00,0.249,0.28300000000000003,0.301 -2014-07-15 18:00:00,0.249,0.28300000000000003,0.301 -2014-07-15 19:00:00,0.249,0.28300000000000003,0.301 -2014-07-15 20:00:00,0.248,0.28300000000000003,0.301 -2014-07-15 21:00:00,0.248,0.28300000000000003,0.3 -2014-07-15 22:00:00,0.248,0.28300000000000003,0.3 -2014-07-15 23:00:00,0.248,0.28300000000000003,0.3 -2014-07-16 00:00:00,0.248,0.28300000000000003,0.3 -2014-07-16 01:00:00,0.247,0.28300000000000003,0.3 -2014-07-16 02:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 03:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 04:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 05:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 06:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 07:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 08:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 09:00:00,0.247,0.28300000000000003,0.301 -2014-07-16 10:00:00,0.24600000000000002,0.28300000000000003,0.3 -2014-07-16 11:00:00,0.24600000000000002,0.28300000000000003,0.3 -2014-07-16 12:00:00,0.245,0.28300000000000003,0.3 -2014-07-16 13:00:00,0.245,0.28300000000000003,0.299 -2014-07-16 14:00:00,0.244,0.28300000000000003,0.299 -2014-07-16 15:00:00,0.243,0.282,0.298 -2014-07-16 16:00:00,0.243,0.281,0.298 -2014-07-16 17:00:00,0.242,0.281,0.298 -2014-07-16 18:00:00,0.242,0.28,0.298 -2014-07-16 19:00:00,0.24100000000000002,0.28,0.298 -2014-07-16 20:00:00,0.24100000000000002,0.28,0.297 -2014-07-16 21:00:00,0.24100000000000002,0.28,0.297 -2014-07-16 22:00:00,0.24100000000000002,0.28,0.297 -2014-07-16 23:00:00,0.24100000000000002,0.28,0.297 -2014-07-17 00:00:00,0.24,0.28,0.297 -2014-07-17 01:00:00,0.24,0.28,0.297 -2014-07-17 02:00:00,0.24,0.28,0.297 -2014-07-17 03:00:00,0.24,0.28,0.297 -2014-07-17 04:00:00,0.24,0.28,0.297 -2014-07-17 05:00:00,0.24,0.28,0.297 -2014-07-17 06:00:00,0.239,0.28,0.297 -2014-07-17 07:00:00,0.239,0.28,0.297 -2014-07-17 08:00:00,0.239,0.28,0.297 -2014-07-17 09:00:00,0.239,0.28,0.298 -2014-07-17 10:00:00,0.239,0.28,0.297 -2014-07-17 11:00:00,0.23800000000000002,0.28,0.297 -2014-07-17 12:00:00,0.23800000000000002,0.28,0.29600000000000004 -2014-07-17 13:00:00,0.237,0.28,0.29600000000000004 -2014-07-17 14:00:00,0.23600000000000002,0.27899999999999997,0.295 -2014-07-17 15:00:00,0.23600000000000002,0.278,0.295 -2014-07-17 16:00:00,0.23600000000000002,0.276,0.294 -2014-07-17 17:00:00,0.235,0.276,0.294 -2014-07-17 18:00:00,0.23399999999999999,0.276,0.294 -2014-07-17 19:00:00,0.23399999999999999,0.275,0.294 -2014-07-17 20:00:00,0.23399999999999999,0.275,0.293 -2014-07-17 21:00:00,0.23399999999999999,0.275,0.293 -2014-07-17 22:00:00,0.23399999999999999,0.275,0.293 -2014-07-17 23:00:00,0.233,0.275,0.293 -2014-07-18 00:00:00,0.233,0.275,0.293 -2014-07-18 01:00:00,0.233,0.275,0.293 -2014-07-18 02:00:00,0.233,0.275,0.293 -2014-07-18 03:00:00,0.23199999999999998,0.275,0.293 -2014-07-18 04:00:00,0.23199999999999998,0.275,0.293 -2014-07-18 05:00:00,0.23199999999999998,0.275,0.293 -2014-07-18 06:00:00,0.23199999999999998,0.275,0.293 -2014-07-18 07:00:00,0.23199999999999998,0.275,0.294 -2014-07-18 08:00:00,0.23199999999999998,0.275,0.294 -2014-07-18 09:00:00,0.23199999999999998,0.275,0.294 -2014-07-18 10:00:00,0.231,0.275,0.294 -2014-07-18 11:00:00,0.231,0.275,0.293 -2014-07-18 12:00:00,0.23,0.275,0.293 -2014-07-18 13:00:00,0.23,0.27399999999999997,0.292 -2014-07-18 14:00:00,0.22899999999999998,0.273,0.292 -2014-07-18 15:00:00,0.22899999999999998,0.272,0.29100000000000004 -2014-07-18 16:00:00,0.228,0.271,0.29100000000000004 -2014-07-18 17:00:00,0.228,0.271,0.29 -2014-07-18 18:00:00,0.228,0.27,0.29 -2014-07-18 19:00:00,0.228,0.27,0.29 -2014-07-18 20:00:00,0.22699999999999998,0.27,0.29 -2014-07-18 21:00:00,0.22699999999999998,0.315,0.29 -2014-07-18 22:00:00,0.22699999999999998,0.455,0.29 -2014-07-18 23:00:00,0.22699999999999998,0.457,0.29 -2014-07-19 00:00:00,0.226,0.41100000000000003,0.29 -2014-07-19 01:00:00,0.226,0.35200000000000004,0.29 -2014-07-19 02:00:00,0.226,0.345,0.29 -2014-07-19 03:00:00,0.226,0.34299999999999997,0.29 -2014-07-19 04:00:00,0.225,0.341,0.29 -2014-07-19 05:00:00,0.225,0.34,0.29 -2014-07-19 06:00:00,0.225,0.33899999999999997,0.29 -2014-07-19 07:00:00,0.225,0.33799999999999997,0.29 -2014-07-19 08:00:00,0.225,0.337,0.29 -2014-07-19 09:00:00,0.225,0.335,0.29 -2014-07-19 10:00:00,0.225,0.33399999999999996,0.29 -2014-07-19 11:00:00,0.22399999999999998,0.33299999999999996,0.29 -2014-07-19 12:00:00,0.22399999999999998,0.33299999999999996,0.289 -2014-07-19 13:00:00,0.223,0.332,0.289 -2014-07-19 14:00:00,0.223,0.332,0.28800000000000003 -2014-07-19 15:00:00,0.222,0.331,0.28800000000000003 -2014-07-19 16:00:00,0.222,0.331,0.287 -2014-07-19 17:00:00,0.222,0.32899999999999996,0.287 -2014-07-19 18:00:00,0.222,0.327,0.287 -2014-07-19 19:00:00,0.222,0.326,0.287 -2014-07-19 20:00:00,0.221,0.326,0.28600000000000003 -2014-07-19 21:00:00,0.221,0.324,0.28600000000000003 -2014-07-19 22:00:00,0.221,0.324,0.28600000000000003 -2014-07-19 23:00:00,0.221,0.324,0.28600000000000003 -2014-07-20 00:00:00,0.221,0.324,0.28600000000000003 -2014-07-20 01:00:00,0.22,0.324,0.28600000000000003 -2014-07-20 02:00:00,0.22,0.324,0.28600000000000003 -2014-07-20 03:00:00,0.22,0.324,0.28600000000000003 -2014-07-20 04:00:00,0.22,0.324,0.28600000000000003 -2014-07-20 05:00:00,0.21899999999999997,0.324,0.28600000000000003 -2014-07-20 06:00:00,0.21899999999999997,0.324,0.287 -2014-07-20 07:00:00,0.21899999999999997,0.322,0.287 -2014-07-20 08:00:00,0.21899999999999997,0.322,0.287 -2014-07-20 09:00:00,0.21899999999999997,0.322,0.287 -2014-07-20 10:00:00,0.22,0.322,0.287 -2014-07-20 11:00:00,0.22,0.322,0.287 -2014-07-20 12:00:00,0.22,0.321,0.287 -2014-07-20 13:00:00,0.22,0.321,0.287 -2014-07-20 14:00:00,0.21899999999999997,0.32,0.28600000000000003 -2014-07-20 15:00:00,0.21899999999999997,0.319,0.28600000000000003 -2014-07-20 16:00:00,0.218,0.317,0.28600000000000003 -2014-07-20 17:00:00,0.218,0.317,0.28600000000000003 -2014-07-20 18:00:00,0.218,0.316,0.287 -2014-07-20 19:00:00,0.218,0.315,0.287 -2014-07-20 20:00:00,0.218,0.315,0.287 -2014-07-20 21:00:00,0.218,0.315,0.287 -2014-07-20 22:00:00,0.218,0.315,0.287 -2014-07-20 23:00:00,0.217,0.315,0.289 -2014-07-21 00:00:00,0.21600000000000003,0.315,0.29100000000000004 -2014-07-21 01:00:00,0.218,0.315,0.29100000000000004 -2014-07-21 02:00:00,0.22,0.315,0.29100000000000004 -2014-07-21 03:00:00,0.221,0.315,0.29100000000000004 -2014-07-21 04:00:00,0.221,0.315,0.29100000000000004 -2014-07-21 05:00:00,0.22,0.315,0.29100000000000004 -2014-07-21 06:00:00,0.22,0.315,0.29100000000000004 -2014-07-21 07:00:00,0.22,0.315,0.29100000000000004 -2014-07-21 08:00:00,0.22,0.314,0.29100000000000004 -2014-07-21 09:00:00,0.22,0.314,0.29100000000000004 -2014-07-21 10:00:00,0.22,0.314,0.29100000000000004 -2014-07-21 11:00:00,0.221,0.314,0.29100000000000004 -2014-07-21 12:00:00,0.221,0.314,0.29100000000000004 -2014-07-21 13:00:00,0.222,0.314,0.29 -2014-07-21 14:00:00,0.222,0.312,0.29 -2014-07-21 15:00:00,0.222,0.311,0.29 -2014-07-21 16:00:00,0.223,0.31,0.29 -2014-07-21 17:00:00,0.223,0.31,0.289 -2014-07-21 18:00:00,0.223,0.309,0.289 -2014-07-21 19:00:00,0.223,0.309,0.28800000000000003 -2014-07-21 20:00:00,0.223,0.307,0.28800000000000003 -2014-07-21 21:00:00,0.222,0.307,0.28800000000000003 -2014-07-21 22:00:00,0.223,0.307,0.28800000000000003 -2014-07-21 23:00:00,0.222,0.307,0.28800000000000003 -2014-07-22 00:00:00,0.222,0.307,0.28800000000000003 -2014-07-22 01:00:00,0.222,0.307,0.289 -2014-07-22 02:00:00,0.221,0.307,0.29 -2014-07-22 03:00:00,0.22,0.307,0.29100000000000004 -2014-07-22 04:00:00,0.22,0.307,0.292 -2014-07-22 05:00:00,0.22399999999999998,0.307,0.292 -2014-07-22 06:00:00,0.225,0.307,0.292 -2014-07-22 07:00:00,0.225,0.307,0.292 -2014-07-22 08:00:00,0.225,0.307,0.292 -2014-07-22 09:00:00,0.225,0.307,0.292 -2014-07-22 10:00:00,0.226,0.307,0.292 -2014-07-22 11:00:00,0.226,0.307,0.292 -2014-07-22 12:00:00,0.22699999999999998,0.307,0.29100000000000004 -2014-07-22 13:00:00,0.22699999999999998,0.307,0.29 -2014-07-22 14:00:00,0.228,0.305,0.289 -2014-07-22 15:00:00,0.22699999999999998,0.304,0.28800000000000003 -2014-07-22 16:00:00,0.22699999999999998,0.304,0.287 -2014-07-22 17:00:00,0.226,0.304,0.287 -2014-07-22 18:00:00,0.226,0.302,0.287 -2014-07-22 19:00:00,0.226,0.302,0.287 -2014-07-22 20:00:00,0.226,0.302,0.287 -2014-07-22 21:00:00,0.226,0.302,0.28600000000000003 -2014-07-22 22:00:00,0.226,0.303,0.28600000000000003 -2014-07-22 23:00:00,0.226,0.304,0.28600000000000003 -2014-07-23 00:00:00,0.225,0.303,0.287 -2014-07-23 01:00:00,0.226,0.303,0.28600000000000003 -2014-07-23 02:00:00,0.23,0.309,0.287 -2014-07-23 03:00:00,0.22899999999999998,0.344,0.287 -2014-07-23 04:00:00,0.23,0.349,0.287 -2014-07-23 05:00:00,0.23,0.35,0.287 -2014-07-23 06:00:00,0.23,0.349,0.287 -2014-07-23 07:00:00,0.23,0.348,0.287 -2014-07-23 08:00:00,0.231,0.34600000000000003,0.287 -2014-07-23 09:00:00,0.231,0.345,0.287 -2014-07-23 10:00:00,0.23,0.34600000000000003,0.287 -2014-07-23 11:00:00,0.23,0.34600000000000003,0.28600000000000003 -2014-07-23 12:00:00,0.23,0.34600000000000003,0.28600000000000003 -2014-07-23 13:00:00,0.23,0.345,0.28600000000000003 -2014-07-23 14:00:00,0.23,0.344,0.28600000000000003 -2014-07-23 15:00:00,0.23,0.344,0.285 -2014-07-23 16:00:00,0.228,0.34299999999999997,0.285 -2014-07-23 17:00:00,0.228,0.34299999999999997,0.285 -2014-07-23 18:00:00,0.22699999999999998,0.342,0.285 -2014-07-23 19:00:00,0.22699999999999998,0.341,0.284 -2014-07-23 20:00:00,0.22699999999999998,0.33799999999999997,0.284 -2014-07-23 21:00:00,0.22699999999999998,0.337,0.284 -2014-07-23 22:00:00,0.228,0.428,0.284 -2014-07-23 23:00:00,0.228,0.44299999999999995,0.284 -2014-07-24 00:00:00,0.22699999999999998,0.44,0.284 -2014-07-24 01:00:00,0.22699999999999998,0.43700000000000006,0.284 -2014-07-24 02:00:00,0.226,0.43700000000000006,0.284 -2014-07-24 03:00:00,0.226,0.39899999999999997,0.284 -2014-07-24 04:00:00,0.225,0.361,0.284 -2014-07-24 05:00:00,0.226,0.35100000000000003,0.284 -2014-07-24 06:00:00,0.225,0.35200000000000004,0.284 -2014-07-24 07:00:00,0.226,0.358,0.284 -2014-07-24 08:00:00,0.226,0.354,0.285 -2014-07-24 09:00:00,0.226,0.35,0.284 -2014-07-24 10:00:00,0.225,0.349,0.284 -2014-07-24 11:00:00,0.22399999999999998,0.34600000000000003,0.284 -2014-07-24 12:00:00,0.218,0.344,0.284 -2014-07-24 13:00:00,0.217,0.344,0.28300000000000003 -2014-07-24 14:00:00,0.217,0.344,0.28300000000000003 -2014-07-24 15:00:00,0.217,0.344,0.28300000000000003 -2014-07-24 16:00:00,0.217,0.34299999999999997,0.28300000000000003 -2014-07-24 17:00:00,0.21600000000000003,0.34299999999999997,0.28300000000000003 -2014-07-24 18:00:00,0.243,0.342,0.322 -2014-07-24 19:00:00,0.41700000000000004,0.341,0.39 -2014-07-24 20:00:00,0.312,0.341,0.391 -2014-07-24 21:00:00,0.256,0.341,0.39 -2014-07-24 22:00:00,0.253,0.341,0.391 -2014-07-24 23:00:00,0.251,0.341,0.392 -2014-07-25 00:00:00,0.25,0.34,0.392 -2014-07-25 01:00:00,0.25,0.33899999999999997,0.392 -2014-07-25 02:00:00,0.249,0.33899999999999997,0.392 -2014-07-25 03:00:00,0.249,0.33899999999999997,0.387 -2014-07-25 04:00:00,0.248,0.33799999999999997,0.376 -2014-07-25 05:00:00,0.248,0.33799999999999997,0.366 -2014-07-25 06:00:00,0.248,0.33799999999999997,0.35 -2014-07-25 07:00:00,0.247,0.33799999999999997,0.348 -2014-07-25 08:00:00,0.247,0.33799999999999997,0.34700000000000003 -2014-07-25 09:00:00,0.24600000000000002,0.33799999999999997,0.345 -2014-07-25 10:00:00,0.24600000000000002,0.33799999999999997,0.34299999999999997 -2014-07-25 11:00:00,0.247,0.336,0.341 -2014-07-25 12:00:00,0.248,0.335,0.336 -2014-07-25 13:00:00,0.249,0.33399999999999996,0.33399999999999996 -2014-07-25 14:00:00,0.249,0.332,0.332 -2014-07-25 15:00:00,0.249,0.331,0.32899999999999996 -2014-07-25 16:00:00,0.249,0.33,0.32799999999999996 -2014-07-25 17:00:00,0.248,0.32899999999999996,0.326 -2014-07-25 18:00:00,0.248,0.327,0.325 -2014-07-25 19:00:00,0.248,0.327,0.325 -2014-07-25 20:00:00,0.247,0.326,0.324 -2014-07-25 21:00:00,0.247,0.326,0.32299999999999995 -2014-07-25 22:00:00,0.247,0.326,0.322 -2014-07-25 23:00:00,0.247,0.326,0.322 -2014-07-26 00:00:00,0.24600000000000002,0.326,0.321 -2014-07-26 01:00:00,0.24600000000000002,0.326,0.321 -2014-07-26 02:00:00,0.24600000000000002,0.326,0.321 -2014-07-26 03:00:00,0.245,0.326,0.32 -2014-07-26 04:00:00,0.245,0.326,0.32 -2014-07-26 05:00:00,0.245,0.326,0.32 -2014-07-26 06:00:00,0.245,0.326,0.319 -2014-07-26 07:00:00,0.245,0.326,0.319 -2014-07-26 08:00:00,0.245,0.326,0.319 -2014-07-26 09:00:00,0.245,0.326,0.319 -2014-07-26 10:00:00,0.244,0.325,0.318 -2014-07-26 11:00:00,0.244,0.324,0.318 -2014-07-26 12:00:00,0.244,0.324,0.317 -2014-07-26 13:00:00,0.243,0.324,0.316 -2014-07-26 14:00:00,0.243,0.322,0.315 -2014-07-26 15:00:00,0.242,0.321,0.314 -2014-07-26 16:00:00,0.242,0.321,0.313 -2014-07-26 17:00:00,0.242,0.32,0.313 -2014-07-26 18:00:00,0.24100000000000002,0.319,0.313 -2014-07-26 19:00:00,0.24100000000000002,0.318,0.312 -2014-07-26 20:00:00,0.24100000000000002,0.317,0.312 -2014-07-26 21:00:00,0.24100000000000002,0.317,0.312 -2014-07-26 22:00:00,0.24100000000000002,0.317,0.312 -2014-07-26 23:00:00,0.24,0.317,0.312 -2014-07-27 00:00:00,0.24,0.317,0.312 -2014-07-27 01:00:00,0.24,0.317,0.312 -2014-07-27 02:00:00,0.24,0.317,0.311 -2014-07-27 03:00:00,0.24,0.317,0.311 -2014-07-27 04:00:00,0.24,0.317,0.311 -2014-07-27 05:00:00,0.24,0.317,0.311 -2014-07-27 06:00:00,0.24,0.317,0.311 -2014-07-27 07:00:00,0.239,0.317,0.311 -2014-07-27 08:00:00,0.239,0.317,0.312 -2014-07-27 09:00:00,0.239,0.317,0.312 -2014-07-27 10:00:00,0.239,0.317,0.311 -2014-07-27 11:00:00,0.23800000000000002,0.317,0.311 -2014-07-27 12:00:00,0.23800000000000002,0.317,0.31 -2014-07-27 13:00:00,0.237,0.317,0.309 -2014-07-27 14:00:00,0.237,0.315,0.309 -2014-07-27 15:00:00,0.23600000000000002,0.315,0.308 -2014-07-27 16:00:00,0.23600000000000002,0.315,0.308 -2014-07-27 17:00:00,0.23600000000000002,0.314,0.307 -2014-07-27 18:00:00,0.235,0.314,0.307 -2014-07-27 19:00:00,0.235,0.314,0.306 -2014-07-27 20:00:00,0.235,0.314,0.306 -2014-07-27 21:00:00,0.23399999999999999,0.314,0.306 -2014-07-27 22:00:00,0.23399999999999999,0.314,0.306 -2014-07-27 23:00:00,0.23399999999999999,0.314,0.306 -2014-07-28 00:00:00,0.23399999999999999,0.314,0.306 -2014-07-28 01:00:00,0.233,0.314,0.306 -2014-07-28 02:00:00,0.233,0.314,0.306 -2014-07-28 03:00:00,0.233,0.314,0.306 -2014-07-28 04:00:00,0.233,0.314,0.306 -2014-07-28 05:00:00,0.233,0.314,0.306 -2014-07-28 06:00:00,0.233,0.314,0.306 -2014-07-28 07:00:00,0.233,0.314,0.306 -2014-07-28 08:00:00,0.233,0.314,0.306 -2014-07-28 09:00:00,0.233,0.314,0.306 -2014-07-28 10:00:00,0.23199999999999998,0.314,0.306 -2014-07-28 11:00:00,0.23199999999999998,0.314,0.306 -2014-07-28 12:00:00,0.231,0.314,0.305 -2014-07-28 13:00:00,0.231,0.313,0.304 -2014-07-28 14:00:00,0.231,0.312,0.304 -2014-07-28 15:00:00,0.23,0.312,0.304 -2014-07-28 16:00:00,0.23,0.311,0.303 -2014-07-28 17:00:00,0.22699999999999998,0.31,0.308 -2014-07-28 18:00:00,0.22699999999999998,0.31,0.308 -2014-07-28 19:00:00,0.22699999999999998,0.31,0.308 -2014-07-28 20:00:00,0.228,0.31,0.308 -2014-07-28 21:00:00,0.22699999999999998,0.309,0.308 -2014-07-28 22:00:00,0.22699999999999998,0.309,0.308 -2014-07-28 23:00:00,0.23600000000000002,0.309,0.31 -2014-07-29 00:00:00,0.258,0.31,0.32 -2014-07-29 01:00:00,0.259,0.31,0.325 -2014-07-29 02:00:00,0.258,0.31,0.32799999999999996 -2014-07-29 03:00:00,0.256,0.31,0.326 -2014-07-29 04:00:00,0.256,0.31,0.325 -2014-07-29 05:00:00,0.256,0.31,0.324 -2014-07-29 06:00:00,0.257,0.31,0.32299999999999995 -2014-07-29 07:00:00,0.257,0.309,0.322 -2014-07-29 08:00:00,0.257,0.309,0.321 -2014-07-29 09:00:00,0.257,0.31,0.321 -2014-07-29 10:00:00,0.256,0.309,0.32 -2014-07-29 11:00:00,0.256,0.309,0.32 -2014-07-29 12:00:00,0.255,0.309,0.319 -2014-07-29 13:00:00,0.255,0.309,0.319 -2014-07-29 14:00:00,0.254,0.307,0.318 -2014-07-29 15:00:00,0.254,0.307,0.318 -2014-07-29 16:00:00,0.254,0.306,0.316 -2014-07-29 17:00:00,0.254,0.305,0.316 -2014-07-29 18:00:00,0.254,0.305,0.316 -2014-07-29 19:00:00,0.348,0.305,0.384 -2014-07-29 20:00:00,0.363,0.304,0.401 -2014-07-29 21:00:00,0.303,0.304,0.401 -2014-07-29 22:00:00,0.273,0.304,0.401 -2014-07-29 23:00:00,0.263,0.305,0.401 -2014-07-30 00:00:00,0.26,0.305,0.4 -2014-07-30 01:00:00,0.258,0.305,0.402 -2014-07-30 02:00:00,0.259,0.305,0.401 -2014-07-30 03:00:00,0.268,0.305,0.401 -2014-07-30 04:00:00,0.267,0.305,0.401 -2014-07-30 05:00:00,0.263,0.305,0.401 -2014-07-30 06:00:00,0.261,0.305,0.402 -2014-07-30 07:00:00,0.26,0.305,0.402 -2014-07-30 08:00:00,0.259,0.305,0.401 -2014-07-30 09:00:00,0.258,0.305,0.402 -2014-07-30 10:00:00,0.258,0.305,0.402 -2014-07-30 11:00:00,0.257,0.305,0.402 -2014-07-30 12:00:00,0.256,0.305,0.40299999999999997 -2014-07-30 13:00:00,0.256,0.305,0.40299999999999997 -2014-07-30 14:00:00,0.255,0.304,0.402 -2014-07-30 15:00:00,0.255,0.304,0.4 -2014-07-30 16:00:00,0.254,0.304,0.397 -2014-07-30 17:00:00,0.254,0.304,0.39 -2014-07-30 18:00:00,0.254,0.304,0.387 -2014-07-30 19:00:00,0.254,0.303,0.386 -2014-07-30 20:00:00,0.254,0.302,0.373 -2014-07-30 21:00:00,0.254,0.302,0.355 -2014-07-30 22:00:00,0.254,0.302,0.354 -2014-07-30 23:00:00,0.253,0.302,0.35200000000000004 -2014-07-31 00:00:00,0.253,0.302,0.35100000000000003 -2014-07-31 01:00:00,0.253,0.302,0.35 -2014-07-31 02:00:00,0.253,0.302,0.349 -2014-07-31 03:00:00,0.253,0.302,0.348 -2014-07-31 04:00:00,0.253,0.302,0.348 -2014-07-31 05:00:00,0.253,0.302,0.34700000000000003 -2014-07-31 06:00:00,0.253,0.302,0.34600000000000003 -2014-07-31 07:00:00,0.253,0.302,0.34600000000000003 -2014-07-31 08:00:00,0.253,0.302,0.34600000000000003 -2014-07-31 09:00:00,0.253,0.302,0.345 -2014-07-31 10:00:00,0.253,0.302,0.344 -2014-07-31 11:00:00,0.253,0.302,0.34299999999999997 -2014-07-31 12:00:00,0.253,0.302,0.33899999999999997 -2014-07-31 13:00:00,0.253,0.302,0.331 -2014-07-31 14:00:00,0.252,0.301,0.32899999999999996 -2014-07-31 15:00:00,0.252,0.3,0.32799999999999996 -2014-07-31 16:00:00,0.251,0.3,0.327 -2014-07-31 17:00:00,0.251,0.3,0.326 -2014-07-31 18:00:00,0.25,0.299,0.326 -2014-07-31 19:00:00,0.25,0.298,0.326 -2014-07-31 20:00:00,0.249,0.298,0.325 -2014-07-31 21:00:00,0.249,0.298,0.325 -2014-07-31 22:00:00,0.249,0.298,0.325 -2014-07-31 23:00:00,0.249,0.298,0.325 -2014-08-01 00:00:00,0.249,0.298,0.324 -2014-08-01 01:00:00,0.248,0.298,0.324 -2014-08-01 02:00:00,0.248,0.298,0.324 -2014-08-01 03:00:00,0.248,0.298,0.324 -2014-08-01 04:00:00,0.248,0.298,0.324 -2014-08-01 05:00:00,0.248,0.298,0.324 -2014-08-01 06:00:00,0.248,0.298,0.32299999999999995 -2014-08-01 07:00:00,0.248,0.298,0.32299999999999995 -2014-08-01 08:00:00,0.247,0.298,0.32299999999999995 -2014-08-01 09:00:00,0.247,0.298,0.32299999999999995 -2014-08-01 10:00:00,0.247,0.298,0.32299999999999995 -2014-08-01 11:00:00,0.24600000000000002,0.298,0.322 -2014-08-01 12:00:00,0.24600000000000002,0.298,0.322 -2014-08-01 13:00:00,0.245,0.298,0.321 -2014-08-01 14:00:00,0.245,0.298,0.321 -2014-08-01 15:00:00,0.244,0.298,0.32 -2014-08-01 16:00:00,0.244,0.297,0.319 -2014-08-01 17:00:00,0.243,0.297,0.319 -2014-08-01 18:00:00,0.243,0.297,0.319 -2014-08-01 19:00:00,0.243,0.295,0.319 -2014-08-01 20:00:00,0.242,0.295,0.319 -2014-08-01 21:00:00,0.242,0.295,0.319 -2014-08-01 22:00:00,0.242,0.295,0.319 -2014-08-01 23:00:00,0.242,0.295,0.318 -2014-08-02 00:00:00,0.24100000000000002,0.295,0.318 -2014-08-02 01:00:00,0.24100000000000002,0.295,0.318 -2014-08-02 02:00:00,0.24100000000000002,0.295,0.318 -2014-08-02 03:00:00,0.24100000000000002,0.295,0.318 -2014-08-02 04:00:00,0.24,0.295,0.318 -2014-08-02 05:00:00,0.24,0.295,0.318 -2014-08-02 06:00:00,0.24,0.295,0.318 -2014-08-02 07:00:00,0.24,0.295,0.318 -2014-08-02 08:00:00,0.24,0.295,0.318 -2014-08-02 09:00:00,0.24,0.295,0.318 -2014-08-02 10:00:00,0.24,0.294,0.318 -2014-08-02 11:00:00,0.24,0.293,0.318 -2014-08-02 12:00:00,0.239,0.293,0.317 -2014-08-02 13:00:00,0.239,0.293,0.317 -2014-08-02 14:00:00,0.239,0.293,0.317 -2014-08-02 15:00:00,0.23800000000000002,0.292,0.316 -2014-08-02 16:00:00,0.23800000000000002,0.292,0.316 -2014-08-02 17:00:00,0.23800000000000002,0.29,0.315 -2014-08-02 18:00:00,0.23800000000000002,0.29,0.315 -2014-08-02 19:00:00,0.237,0.29,0.315 -2014-08-02 20:00:00,0.237,0.29,0.315 -2014-08-02 21:00:00,0.237,0.29,0.315 -2014-08-02 22:00:00,0.237,0.29,0.315 -2014-08-02 23:00:00,0.237,0.29,0.315 -2014-08-03 00:00:00,0.237,0.29,0.315 -2014-08-03 01:00:00,0.237,0.29,0.315 -2014-08-03 02:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 03:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 04:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 05:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 06:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 07:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 08:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 09:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 10:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 11:00:00,0.23600000000000002,0.29,0.315 -2014-08-03 12:00:00,0.235,0.29,0.314 -2014-08-03 13:00:00,0.235,0.29,0.314 -2014-08-03 14:00:00,0.23399999999999999,0.29,0.314 -2014-08-03 15:00:00,0.23399999999999999,0.289,0.313 -2014-08-03 16:00:00,0.23399999999999999,0.28800000000000003,0.313 -2014-08-03 17:00:00,0.233,0.287,0.313 -2014-08-03 18:00:00,0.233,0.287,0.313 -2014-08-03 19:00:00,0.233,0.287,0.313 -2014-08-03 20:00:00,0.233,0.287,0.313 -2014-08-03 21:00:00,0.233,0.287,0.312 -2014-08-03 22:00:00,0.23199999999999998,0.287,0.312 -2014-08-03 23:00:00,0.23199999999999998,0.287,0.312 -2014-08-04 00:00:00,0.23199999999999998,0.287,0.312 -2014-08-04 01:00:00,0.23199999999999998,0.287,0.312 -2014-08-04 02:00:00,0.23199999999999998,0.287,0.312 -2014-08-04 03:00:00,0.23199999999999998,0.287,0.312 -2014-08-04 04:00:00,0.23199999999999998,0.287,0.312 -2014-08-04 05:00:00,0.23199999999999998,0.287,0.312 -2014-08-04 06:00:00,0.231,0.287,0.312 -2014-08-04 07:00:00,0.231,0.287,0.312 -2014-08-04 08:00:00,0.231,0.28600000000000003,0.313 -2014-08-04 09:00:00,0.231,0.28600000000000003,0.313 -2014-08-04 10:00:00,0.231,0.28600000000000003,0.312 -2014-08-04 11:00:00,0.231,0.28600000000000003,0.312 -2014-08-04 12:00:00,0.23,0.28600000000000003,0.311 -2014-08-04 13:00:00,0.23,0.285,0.311 -2014-08-04 14:00:00,0.23,0.285,0.31 -2014-08-04 15:00:00,0.22899999999999998,0.285,0.31 -2014-08-04 16:00:00,0.22899999999999998,0.284,0.31 -2014-08-04 17:00:00,0.22899999999999998,0.28300000000000003,0.31 -2014-08-04 18:00:00,0.22899999999999998,0.28300000000000003,0.31 -2014-08-04 19:00:00,0.22899999999999998,0.284,0.31 -2014-08-04 20:00:00,0.22899999999999998,0.284,0.31 -2014-08-04 21:00:00,0.22899999999999998,0.285,0.31 -2014-08-04 22:00:00,0.22899999999999998,0.28300000000000003,0.31 -2014-08-04 23:00:00,0.22899999999999998,0.28600000000000003,0.311 -2014-08-05 00:00:00,0.228,0.287,0.311 -2014-08-05 01:00:00,0.228,0.287,0.311 -2014-08-05 02:00:00,0.228,0.287,0.311 -2014-08-05 03:00:00,0.228,0.287,0.311 -2014-08-05 04:00:00,0.22699999999999998,0.28800000000000003,0.313 -2014-08-05 05:00:00,0.228,0.28800000000000003,0.313 -2014-08-05 06:00:00,0.228,0.28800000000000003,0.313 -2014-08-05 07:00:00,0.228,0.289,0.313 -2014-08-05 08:00:00,0.22699999999999998,0.29,0.313 -2014-08-05 09:00:00,0.228,0.29,0.313 -2014-08-05 10:00:00,0.228,0.29,0.312 -2014-08-05 11:00:00,0.228,0.29,0.312 -2014-08-05 12:00:00,0.228,0.29,0.311 -2014-08-05 13:00:00,0.228,0.29,0.311 -2014-08-05 14:00:00,0.228,0.29,0.31 -2014-08-05 15:00:00,0.228,0.29,0.31 -2014-08-05 16:00:00,0.228,0.29,0.31 -2014-08-05 17:00:00,0.228,0.289,0.309 -2014-08-05 18:00:00,0.22699999999999998,0.28800000000000003,0.309 -2014-08-05 19:00:00,0.22699999999999998,0.28800000000000003,0.309 -2014-08-05 20:00:00,0.22699999999999998,0.28800000000000003,0.309 -2014-08-05 21:00:00,0.22699999999999998,0.28800000000000003,0.309 -2014-08-05 22:00:00,0.22699999999999998,0.28800000000000003,0.309 -2014-08-05 23:00:00,0.22699999999999998,0.28800000000000003,0.309 -2014-08-06 00:00:00,0.22699999999999998,0.28800000000000003,0.309 -2014-08-06 01:00:00,0.22699999999999998,0.289,0.309 -2014-08-06 02:00:00,0.226,0.289,0.309 -2014-08-06 03:00:00,0.226,0.289,0.308 -2014-08-06 04:00:00,0.226,0.289,0.308 -2014-08-06 05:00:00,0.226,0.289,0.308 -2014-08-06 06:00:00,0.226,0.289,0.308 -2014-08-06 07:00:00,0.226,0.289,0.309 -2014-08-06 08:00:00,0.226,0.289,0.309 -2014-08-06 09:00:00,0.226,0.289,0.309 -2014-08-06 10:00:00,0.226,0.289,0.308 -2014-08-06 11:00:00,0.226,0.289,0.308 -2014-08-06 12:00:00,0.226,0.289,0.308 -2014-08-06 13:00:00,0.226,0.28800000000000003,0.307 -2014-08-06 14:00:00,0.226,0.28800000000000003,0.307 -2014-08-06 15:00:00,0.225,0.28800000000000003,0.307 -2014-08-06 16:00:00,0.225,0.287,0.306 -2014-08-06 17:00:00,0.225,0.287,0.306 -2014-08-06 18:00:00,0.225,0.287,0.306 -2014-08-06 19:00:00,0.225,0.287,0.306 -2014-08-06 20:00:00,0.225,0.287,0.306 -2014-08-06 21:00:00,0.225,0.287,0.306 -2014-08-06 22:00:00,0.225,0.287,0.306 -2014-08-06 23:00:00,0.225,0.287,0.306 -2014-08-07 00:00:00,0.225,0.287,0.306 -2014-08-07 01:00:00,0.225,0.287,0.306 -2014-08-07 02:00:00,0.225,0.287,0.306 -2014-08-07 03:00:00,0.225,0.287,0.306 -2014-08-07 04:00:00,0.225,0.287,0.306 -2014-08-07 05:00:00,0.225,0.287,0.307 -2014-08-07 06:00:00,0.225,0.287,0.307 -2014-08-07 07:00:00,0.225,0.287,0.307 -2014-08-07 08:00:00,0.22399999999999998,0.287,0.307 -2014-08-07 09:00:00,0.22399999999999998,0.287,0.307 -2014-08-07 10:00:00,0.22399999999999998,0.287,0.307 -2014-08-07 11:00:00,0.22399999999999998,0.287,0.307 -2014-08-07 12:00:00,0.22399999999999998,0.287,0.306 -2014-08-07 13:00:00,0.22399999999999998,0.287,0.306 -2014-08-07 14:00:00,0.22399999999999998,0.287,0.305 -2014-08-07 15:00:00,0.223,0.287,0.304 -2014-08-07 16:00:00,0.223,0.287,0.304 -2014-08-07 17:00:00,0.223,0.287,0.304 -2014-08-07 18:00:00,0.223,0.287,0.304 -2014-08-07 19:00:00,0.223,0.287,0.303 -2014-08-07 20:00:00,0.223,0.287,0.303 -2014-08-07 21:00:00,0.223,0.287,0.303 -2014-08-07 22:00:00,0.222,0.303,0.303 -2014-08-07 23:00:00,0.222,0.308,0.303 -2014-08-08 00:00:00,0.222,0.308,0.303 -2014-08-08 01:00:00,0.222,0.31,0.303 -2014-08-08 02:00:00,0.222,0.31,0.303 -2014-08-08 03:00:00,0.222,0.31,0.303 -2014-08-08 04:00:00,0.222,0.31,0.303 -2014-08-08 05:00:00,0.221,0.31,0.303 -2014-08-08 06:00:00,0.222,0.309,0.303 -2014-08-08 07:00:00,0.223,0.309,0.303 -2014-08-08 08:00:00,0.223,0.309,0.303 -2014-08-08 09:00:00,0.223,0.309,0.304 -2014-08-08 10:00:00,0.223,0.307,0.303 -2014-08-08 11:00:00,0.223,0.307,0.303 -2014-08-08 12:00:00,0.222,0.307,0.302 -2014-08-08 13:00:00,0.222,0.307,0.302 -2014-08-08 14:00:00,0.223,0.307,0.301 -2014-08-08 15:00:00,0.223,0.306,0.301 -2014-08-08 16:00:00,0.223,0.305,0.3 -2014-08-08 17:00:00,0.222,0.304,0.3 -2014-08-08 18:00:00,0.22,0.304,0.301 -2014-08-08 19:00:00,0.21899999999999997,0.304,0.302 -2014-08-08 20:00:00,0.22,0.304,0.302 -2014-08-08 21:00:00,0.22,0.303,0.302 -2014-08-08 22:00:00,0.21899999999999997,0.303,0.302 -2014-08-08 23:00:00,0.21899999999999997,0.302,0.302 -2014-08-09 00:00:00,0.21899999999999997,0.304,0.302 -2014-08-09 01:00:00,0.221,0.308,0.302 -2014-08-09 02:00:00,0.221,0.309,0.301 -2014-08-09 03:00:00,0.21899999999999997,0.309,0.302 -2014-08-09 04:00:00,0.21899999999999997,0.307,0.302 -2014-08-09 05:00:00,0.21899999999999997,0.307,0.303 -2014-08-09 06:00:00,0.21899999999999997,0.307,0.303 -2014-08-09 07:00:00,0.21899999999999997,0.307,0.303 -2014-08-09 08:00:00,0.21899999999999997,0.307,0.303 -2014-08-09 09:00:00,0.21899999999999997,0.307,0.302 -2014-08-09 10:00:00,0.22,0.306,0.302 -2014-08-09 11:00:00,0.22,0.305,0.302 -2014-08-09 12:00:00,0.21899999999999997,0.305,0.301 -2014-08-09 13:00:00,0.21899999999999997,0.305,0.3 -2014-08-09 14:00:00,0.22,0.306,0.299 -2014-08-09 15:00:00,0.221,0.309,0.299 -2014-08-09 16:00:00,0.221,0.315,0.298 -2014-08-09 17:00:00,0.22,0.322,0.298 -2014-08-09 18:00:00,0.218,0.326,0.298 -2014-08-09 19:00:00,0.218,0.32799999999999996,0.297 -2014-08-09 20:00:00,0.218,0.32899999999999996,0.297 -2014-08-09 21:00:00,0.218,0.33,0.297 -2014-08-09 22:00:00,0.218,0.331,0.297 -2014-08-09 23:00:00,0.217,0.331,0.297 -2014-08-10 00:00:00,0.21600000000000003,0.331,0.297 -2014-08-10 01:00:00,0.21600000000000003,0.331,0.297 -2014-08-10 02:00:00,0.21600000000000003,0.331,0.297 -2014-08-10 03:00:00,0.21600000000000003,0.331,0.297 -2014-08-10 04:00:00,0.214,0.331,0.297 -2014-08-10 05:00:00,0.212,0.33,0.298 -2014-08-10 06:00:00,0.21100000000000002,0.32899999999999996,0.298 -2014-08-10 07:00:00,0.21100000000000002,0.32899999999999996,0.298 -2014-08-10 08:00:00,0.212,0.32799999999999996,0.298 -2014-08-10 09:00:00,0.212,0.327,0.298 -2014-08-10 10:00:00,0.212,0.327,0.298 -2014-08-10 11:00:00,0.212,0.327,0.297 -2014-08-10 12:00:00,0.212,0.326,0.297 -2014-08-10 13:00:00,0.212,0.326,0.297 -2014-08-10 14:00:00,0.213,0.326,0.297 -2014-08-10 15:00:00,0.213,0.324,0.298 -2014-08-10 16:00:00,0.212,0.324,0.3 -2014-08-10 17:00:00,0.212,0.32299999999999995,0.301 -2014-08-10 18:00:00,0.212,0.322,0.301 -2014-08-10 19:00:00,0.22399999999999998,0.321,0.303 -2014-08-10 20:00:00,0.23800000000000002,0.321,0.306 -2014-08-10 21:00:00,0.23800000000000002,0.321,0.308 -2014-08-10 22:00:00,0.237,0.321,0.309 -2014-08-10 23:00:00,0.237,0.32,0.309 -2014-08-11 00:00:00,0.23800000000000002,0.32,0.309 -2014-08-11 01:00:00,0.23800000000000002,0.319,0.309 -2014-08-11 02:00:00,0.23800000000000002,0.319,0.309 -2014-08-11 03:00:00,0.23800000000000002,0.319,0.309 -2014-08-11 04:00:00,0.23800000000000002,0.319,0.309 -2014-08-11 05:00:00,0.237,0.319,0.309 -2014-08-11 06:00:00,0.237,0.319,0.309 -2014-08-11 07:00:00,0.237,0.318,0.309 -2014-08-11 08:00:00,0.237,0.317,0.309 -2014-08-11 09:00:00,0.237,0.317,0.309 -2014-08-11 10:00:00,0.237,0.317,0.309 -2014-08-11 11:00:00,0.237,0.317,0.308 -2014-08-11 12:00:00,0.23800000000000002,0.317,0.308 -2014-08-11 13:00:00,0.239,0.315,0.306 -2014-08-11 14:00:00,0.23800000000000002,0.315,0.306 -2014-08-11 15:00:00,0.23800000000000002,0.314,0.305 -2014-08-11 16:00:00,0.23800000000000002,0.314,0.304 -2014-08-11 17:00:00,0.237,0.314,0.304 -2014-08-11 18:00:00,0.237,0.313,0.303 -2014-08-11 19:00:00,0.23600000000000002,0.313,0.303 -2014-08-11 20:00:00,0.23600000000000002,0.312,0.303 -2014-08-11 21:00:00,0.23600000000000002,0.312,0.303 -2014-08-11 22:00:00,0.23600000000000002,0.312,0.303 -2014-08-11 23:00:00,0.235,0.312,0.303 -2014-08-12 00:00:00,0.23600000000000002,0.312,0.303 -2014-08-12 01:00:00,0.235,0.312,0.303 -2014-08-12 02:00:00,0.235,0.312,0.303 -2014-08-12 03:00:00,0.235,0.312,0.304 -2014-08-12 04:00:00,0.235,0.311,0.304 -2014-08-12 05:00:00,0.235,0.311,0.304 -2014-08-12 06:00:00,0.23399999999999999,0.31,0.304 -2014-08-12 07:00:00,0.23399999999999999,0.31,0.304 -2014-08-12 08:00:00,0.23399999999999999,0.31,0.304 -2014-08-12 09:00:00,0.23399999999999999,0.31,0.304 -2014-08-12 10:00:00,0.23399999999999999,0.31,0.304 -2014-08-12 11:00:00,0.23399999999999999,0.31,0.304 -2014-08-12 12:00:00,0.233,0.31,0.303 -2014-08-12 13:00:00,0.233,0.31,0.303 -2014-08-12 14:00:00,0.23199999999999998,0.31,0.302 -2014-08-12 15:00:00,0.23199999999999998,0.31,0.302 -2014-08-12 16:00:00,0.23199999999999998,0.309,0.301 -2014-08-12 17:00:00,0.231,0.309,0.301 -2014-08-12 18:00:00,0.231,0.309,0.301 -2014-08-12 19:00:00,0.23,0.309,0.3 -2014-08-12 20:00:00,0.23,0.309,0.3 -2014-08-12 21:00:00,0.23,0.307,0.3 -2014-08-12 22:00:00,0.23,0.307,0.3 -2014-08-12 23:00:00,0.23,0.307,0.3 -2014-08-13 00:00:00,0.23,0.307,0.3 -2014-08-13 01:00:00,0.23,0.307,0.301 -2014-08-13 02:00:00,0.23,0.308,0.301 -2014-08-13 03:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 04:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 05:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 06:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 07:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 08:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 09:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 10:00:00,0.22899999999999998,0.307,0.301 -2014-08-13 11:00:00,0.228,0.307,0.301 -2014-08-13 12:00:00,0.228,0.307,0.3 -2014-08-13 13:00:00,0.228,0.307,0.3 -2014-08-13 14:00:00,0.228,0.305,0.3 -2014-08-13 15:00:00,0.228,0.305,0.301 -2014-08-13 16:00:00,0.228,0.304,0.302 -2014-08-13 17:00:00,0.228,0.304,0.303 -2014-08-13 18:00:00,0.22899999999999998,0.304,0.305 -2014-08-13 19:00:00,0.254,0.304,0.325 -2014-08-13 20:00:00,0.258,0.304,0.33899999999999997 -2014-08-13 21:00:00,0.257,0.304,0.337 -2014-08-13 22:00:00,0.255,0.304,0.335 -2014-08-13 23:00:00,0.254,0.304,0.33299999999999996 -2014-08-14 00:00:00,0.253,0.304,0.331 -2014-08-14 01:00:00,0.252,0.304,0.33 -2014-08-14 02:00:00,0.252,0.304,0.32799999999999996 -2014-08-14 03:00:00,0.251,0.304,0.326 -2014-08-14 04:00:00,0.25,0.304,0.324 -2014-08-14 05:00:00,0.25,0.304,0.32299999999999995 -2014-08-14 06:00:00,0.25,0.304,0.321 -2014-08-14 07:00:00,0.249,0.304,0.321 -2014-08-14 08:00:00,0.249,0.304,0.32 -2014-08-14 09:00:00,0.249,0.304,0.32 -2014-08-14 10:00:00,0.249,0.304,0.319 -2014-08-14 11:00:00,0.249,0.304,0.318 -2014-08-14 12:00:00,0.25,0.304,0.316 -2014-08-14 13:00:00,0.251,0.303,0.315 -2014-08-14 14:00:00,0.251,0.302,0.314 -2014-08-14 15:00:00,0.251,0.302,0.313 -2014-08-14 16:00:00,0.25,0.3,0.312 -2014-08-14 17:00:00,0.25,0.3,0.311 -2014-08-14 18:00:00,0.25,0.3,0.311 -2014-08-14 19:00:00,0.249,0.3,0.311 -2014-08-14 20:00:00,0.251,0.3,0.314 -2014-08-14 21:00:00,0.254,0.3,0.315 -2014-08-14 22:00:00,0.255,0.3,0.315 -2014-08-14 23:00:00,0.254,0.3,0.315 -2014-08-15 00:00:00,0.254,0.3,0.315 -2014-08-15 01:00:00,0.256,0.3,0.315 -2014-08-15 02:00:00,0.255,0.3,0.315 -2014-08-15 03:00:00,0.253,0.3,0.315 -2014-08-15 04:00:00,0.253,0.3,0.315 -2014-08-15 05:00:00,0.253,0.3,0.315 -2014-08-15 06:00:00,0.252,0.3,0.315 -2014-08-15 07:00:00,0.252,0.3,0.315 -2014-08-15 08:00:00,0.252,0.3,0.315 -2014-08-15 09:00:00,0.251,0.3,0.315 -2014-08-15 10:00:00,0.253,0.3,0.315 -2014-08-15 11:00:00,0.257,0.3,0.315 -2014-08-15 12:00:00,0.258,0.3,0.316 -2014-08-15 13:00:00,0.261,0.299,0.316 -2014-08-15 14:00:00,0.261,0.298,0.316 -2014-08-15 15:00:00,0.261,0.298,0.316 -2014-08-15 16:00:00,0.261,0.298,0.316 -2014-08-15 17:00:00,0.261,0.297,0.315 -2014-08-15 18:00:00,0.261,0.297,0.315 -2014-08-15 19:00:00,0.26,0.297,0.315 -2014-08-15 20:00:00,0.26,0.297,0.315 -2014-08-15 21:00:00,0.259,0.297,0.316 -2014-08-15 22:00:00,0.259,0.297,0.316 -2014-08-15 23:00:00,0.258,0.297,0.316 -2014-08-16 00:00:00,0.258,0.297,0.316 -2014-08-16 01:00:00,0.258,0.297,0.316 -2014-08-16 02:00:00,0.257,0.297,0.316 -2014-08-16 03:00:00,0.257,0.297,0.316 -2014-08-16 04:00:00,0.256,0.297,0.316 -2014-08-16 05:00:00,0.256,0.297,0.316 -2014-08-16 06:00:00,0.256,0.297,0.316 -2014-08-16 07:00:00,0.256,0.297,0.316 -2014-08-16 08:00:00,0.255,0.297,0.316 -2014-08-16 09:00:00,0.255,0.297,0.316 -2014-08-16 10:00:00,0.255,0.297,0.315 -2014-08-16 11:00:00,0.255,0.297,0.316 -2014-08-16 12:00:00,0.255,0.297,0.315 -2014-08-16 13:00:00,0.255,0.297,0.315 -2014-08-16 14:00:00,0.255,0.29600000000000004,0.314 -2014-08-16 15:00:00,0.255,0.295,0.314 -2014-08-16 16:00:00,0.255,0.295,0.313 -2014-08-16 17:00:00,0.254,0.295,0.313 -2014-08-16 18:00:00,0.254,0.293,0.313 -2014-08-16 19:00:00,0.254,0.293,0.313 -2014-08-16 20:00:00,0.253,0.293,0.313 -2014-08-16 21:00:00,0.253,0.293,0.313 -2014-08-16 22:00:00,0.253,0.293,0.313 -2014-08-16 23:00:00,0.252,0.293,0.313 -2014-08-17 00:00:00,0.252,0.293,0.313 -2014-08-17 01:00:00,0.252,0.293,0.313 -2014-08-17 02:00:00,0.252,0.293,0.313 -2014-08-17 03:00:00,0.252,0.293,0.313 -2014-08-17 04:00:00,0.252,0.293,0.313 -2014-08-17 05:00:00,0.252,0.293,0.313 -2014-08-17 06:00:00,0.251,0.293,0.313 -2014-08-17 07:00:00,0.251,0.293,0.313 -2014-08-17 08:00:00,0.251,0.293,0.313 -2014-08-17 09:00:00,0.251,0.293,0.313 -2014-08-17 10:00:00,0.251,0.293,0.313 -2014-08-17 11:00:00,0.25,0.293,0.312 -2014-08-17 12:00:00,0.25,0.293,0.312 -2014-08-17 13:00:00,0.25,0.293,0.312 -2014-08-17 14:00:00,0.249,0.293,0.312 -2014-08-17 15:00:00,0.249,0.293,0.311 -2014-08-17 16:00:00,0.249,0.292,0.311 -2014-08-17 17:00:00,0.249,0.292,0.311 -2014-08-17 18:00:00,0.248,0.292,0.311 -2014-08-17 19:00:00,0.248,0.292,0.311 -2014-08-17 20:00:00,0.248,0.292,0.311 -2014-08-17 21:00:00,0.248,0.292,0.311 -2014-08-17 22:00:00,0.248,0.292,0.311 -2014-08-17 23:00:00,0.247,0.292,0.311 -2014-08-18 00:00:00,0.248,0.292,0.311 -2014-08-18 01:00:00,0.247,0.293,0.311 -2014-08-18 02:00:00,0.247,0.292,0.311 -2014-08-18 03:00:00,0.247,0.293,0.311 -2014-08-18 04:00:00,0.247,0.293,0.311 -2014-08-18 05:00:00,0.247,0.293,0.311 -2014-08-18 06:00:00,0.24600000000000002,0.293,0.311 -2014-08-18 07:00:00,0.24600000000000002,0.293,0.311 -2014-08-18 08:00:00,0.24600000000000002,0.293,0.311 -2014-08-18 09:00:00,0.24600000000000002,0.293,0.311 -2014-08-18 10:00:00,0.24600000000000002,0.292,0.311 -2014-08-18 11:00:00,0.24600000000000002,0.292,0.311 -2014-08-18 12:00:00,0.24600000000000002,0.292,0.31 -2014-08-18 13:00:00,0.245,0.292,0.31 -2014-08-18 14:00:00,0.245,0.292,0.31 -2014-08-18 15:00:00,0.245,0.29100000000000004,0.31 -2014-08-18 16:00:00,0.245,0.29,0.31 -2014-08-18 17:00:00,0.245,0.29,0.31 -2014-08-18 18:00:00,0.244,0.29,0.31 -2014-08-18 19:00:00,0.244,0.29,0.309 -2014-08-18 20:00:00,0.244,0.29,0.309 -2014-08-18 21:00:00,0.244,0.29,0.309 -2014-08-18 22:00:00,0.243,0.29,0.309 -2014-08-18 23:00:00,0.243,0.29,0.309 -2014-08-19 00:00:00,0.243,0.29,0.309 -2014-08-19 01:00:00,0.243,0.29,0.309 -2014-08-19 02:00:00,0.243,0.29,0.309 -2014-08-19 03:00:00,0.243,0.29,0.309 -2014-08-19 04:00:00,0.243,0.29,0.309 -2014-08-19 05:00:00,0.243,0.29,0.309 -2014-08-19 06:00:00,0.242,0.29,0.309 -2014-08-19 07:00:00,0.242,0.29,0.309 -2014-08-19 08:00:00,0.242,0.29,0.309 -2014-08-19 09:00:00,0.242,0.29,0.309 -2014-08-19 10:00:00,0.242,0.29,0.309 -2014-08-19 11:00:00,0.242,0.29,0.309 -2014-08-19 12:00:00,0.242,0.29,0.309 -2014-08-19 13:00:00,0.24100000000000002,0.29,0.308 -2014-08-19 14:00:00,0.24100000000000002,0.29,0.308 -2014-08-19 15:00:00,0.24,0.289,0.308 -2014-08-19 16:00:00,0.24,0.289,0.308 -2014-08-19 17:00:00,0.24,0.28800000000000003,0.308 -2014-08-19 18:00:00,0.24,0.28800000000000003,0.308 -2014-08-19 19:00:00,0.24,0.28800000000000003,0.308 -2014-08-19 20:00:00,0.24,0.28800000000000003,0.308 -2014-08-19 21:00:00,0.24,0.28800000000000003,0.308 -2014-08-19 22:00:00,0.24,0.28800000000000003,0.308 -2014-08-19 23:00:00,0.239,0.28800000000000003,0.308 -2014-08-20 00:00:00,0.24,0.28800000000000003,0.307 -2014-08-20 01:00:00,0.239,0.28800000000000003,0.308 -2014-08-20 02:00:00,0.239,0.28800000000000003,0.307 -2014-08-20 03:00:00,0.239,0.29,0.307 -2014-08-20 04:00:00,0.239,0.289,0.307 -2014-08-20 05:00:00,0.239,0.28800000000000003,0.307 -2014-08-20 06:00:00,0.239,0.287,0.307 -2014-08-20 07:00:00,0.23800000000000002,0.287,0.307 -2014-08-20 08:00:00,0.23800000000000002,0.299,0.308 -2014-08-20 09:00:00,0.23800000000000002,0.301,0.308 -2014-08-20 10:00:00,0.23800000000000002,0.302,0.307 -2014-08-20 11:00:00,0.23800000000000002,0.302,0.307 -2014-08-20 12:00:00,0.237,0.302,0.307 -2014-08-20 13:00:00,0.237,0.302,0.307 -2014-08-20 14:00:00,0.237,0.302,0.306 -2014-08-20 15:00:00,0.23600000000000002,0.303,0.306 -2014-08-20 16:00:00,0.23600000000000002,0.304,0.306 -2014-08-20 17:00:00,0.23600000000000002,0.302,0.306 -2014-08-20 18:00:00,0.23600000000000002,0.301,0.306 -2014-08-20 19:00:00,0.235,0.304,0.306 -2014-08-20 20:00:00,0.235,0.313,0.306 -2014-08-20 21:00:00,0.235,0.32799999999999996,0.306 -2014-08-20 22:00:00,0.235,0.33,0.306 -2014-08-20 23:00:00,0.23399999999999999,0.331,0.306 -2014-08-21 00:00:00,0.23399999999999999,0.332,0.306 -2014-08-21 01:00:00,0.23399999999999999,0.341,0.306 -2014-08-21 02:00:00,0.23399999999999999,0.34700000000000003,0.306 -2014-08-21 03:00:00,0.23399999999999999,0.34299999999999997,0.306 -2014-08-21 04:00:00,0.23399999999999999,0.341,0.306 -2014-08-21 05:00:00,0.23399999999999999,0.341,0.306 -2014-08-21 06:00:00,0.23399999999999999,0.33899999999999997,0.306 -2014-08-21 07:00:00,0.23399999999999999,0.33899999999999997,0.306 -2014-08-21 08:00:00,0.23399999999999999,0.33799999999999997,0.306 -2014-08-21 09:00:00,0.23399999999999999,0.33799999999999997,0.306 -2014-08-21 10:00:00,0.23399999999999999,0.337,0.306 -2014-08-21 11:00:00,0.233,0.335,0.305 -2014-08-21 12:00:00,0.233,0.33399999999999996,0.305 -2014-08-21 13:00:00,0.233,0.33399999999999996,0.305 -2014-08-21 14:00:00,0.23199999999999998,0.335,0.304 -2014-08-21 15:00:00,0.23199999999999998,0.336,0.304 -2014-08-21 16:00:00,0.23199999999999998,0.336,0.304 -2014-08-21 17:00:00,0.231,0.33399999999999996,0.304 -2014-08-21 18:00:00,0.231,0.33399999999999996,0.304 -2014-08-21 19:00:00,0.231,0.332,0.304 -2014-08-21 20:00:00,0.231,0.332,0.304 -2014-08-21 21:00:00,0.23,0.331,0.303 -2014-08-21 22:00:00,0.23,0.331,0.304 -2014-08-21 23:00:00,0.23,0.331,0.304 -2014-08-22 00:00:00,0.23,0.331,0.304 -2014-08-22 01:00:00,0.23,0.331,0.303 -2014-08-22 02:00:00,0.23,0.33,0.304 -2014-08-22 03:00:00,0.23,0.32899999999999996,0.303 -2014-08-22 04:00:00,0.22899999999999998,0.32899999999999996,0.303 -2014-08-22 05:00:00,0.22899999999999998,0.32799999999999996,0.303 -2014-08-22 06:00:00,0.22899999999999998,0.327,0.304 -2014-08-22 07:00:00,0.22899999999999998,0.327,0.304 -2014-08-22 08:00:00,0.22899999999999998,0.327,0.304 -2014-08-22 09:00:00,0.22899999999999998,0.326,0.304 -2014-08-22 10:00:00,0.22899999999999998,0.326,0.304 -2014-08-22 11:00:00,0.22899999999999998,0.326,0.304 -2014-08-22 12:00:00,0.228,0.324,0.303 -2014-08-22 13:00:00,0.228,0.324,0.303 -2014-08-22 14:00:00,0.228,0.322,0.303 -2014-08-22 15:00:00,0.228,0.321,0.302 -2014-08-22 16:00:00,0.22699999999999998,0.321,0.302 -2014-08-22 17:00:00,0.22699999999999998,0.32,0.302 -2014-08-22 18:00:00,0.22699999999999998,0.319,0.302 -2014-08-22 19:00:00,0.22699999999999998,0.319,0.302 -2014-08-22 20:00:00,0.22699999999999998,0.317,0.302 -2014-08-22 21:00:00,0.226,0.317,0.302 -2014-08-22 22:00:00,0.226,0.317,0.302 -2014-08-22 23:00:00,0.226,0.317,0.302 -2014-08-23 00:00:00,0.226,0.317,0.302 -2014-08-23 01:00:00,0.226,0.317,0.302 -2014-08-23 02:00:00,0.226,0.318,0.302 -2014-08-23 03:00:00,0.226,0.318,0.302 -2014-08-23 04:00:00,0.226,0.317,0.302 -2014-08-23 05:00:00,0.226,0.317,0.302 -2014-08-23 06:00:00,0.226,0.317,0.302 -2014-08-23 07:00:00,0.226,0.317,0.302 -2014-08-23 08:00:00,0.226,0.317,0.302 -2014-08-23 09:00:00,0.226,0.317,0.302 -2014-08-23 10:00:00,0.226,0.317,0.302 -2014-08-23 11:00:00,0.226,0.317,0.302 -2014-08-23 12:00:00,0.226,0.317,0.301 -2014-08-23 13:00:00,0.226,0.317,0.301 -2014-08-23 14:00:00,0.225,0.316,0.301 -2014-08-23 15:00:00,0.225,0.315,0.3 -2014-08-23 16:00:00,0.222,0.315,0.304 -2014-08-23 17:00:00,0.222,0.314,0.305 -2014-08-23 18:00:00,0.223,0.314,0.304 -2014-08-23 19:00:00,0.223,0.314,0.304 -2014-08-23 20:00:00,0.223,0.314,0.304 -2014-08-23 21:00:00,0.223,0.313,0.304 -2014-08-23 22:00:00,0.223,0.313,0.304 -2014-08-23 23:00:00,0.223,0.313,0.304 -2014-08-24 00:00:00,0.223,0.313,0.304 -2014-08-24 01:00:00,0.223,0.314,0.304 -2014-08-24 02:00:00,0.223,0.314,0.304 -2014-08-24 03:00:00,0.223,0.314,0.304 -2014-08-24 04:00:00,0.223,0.314,0.304 -2014-08-24 05:00:00,0.222,0.314,0.304 -2014-08-24 06:00:00,0.222,0.313,0.304 -2014-08-24 07:00:00,0.222,0.313,0.304 -2014-08-24 08:00:00,0.222,0.313,0.304 -2014-08-24 09:00:00,0.222,0.313,0.304 -2014-08-24 10:00:00,0.222,0.313,0.304 -2014-08-24 11:00:00,0.223,0.313,0.302 -2014-08-24 12:00:00,0.223,0.312,0.302 -2014-08-24 13:00:00,0.223,0.312,0.301 -2014-08-24 14:00:00,0.223,0.311,0.3 -2014-08-24 15:00:00,0.222,0.31,0.3 -2014-08-24 16:00:00,0.222,0.31,0.3 -2014-08-24 17:00:00,0.222,0.31,0.299 -2014-08-24 18:00:00,0.222,0.31,0.299 -2014-08-24 19:00:00,0.222,0.31,0.299 -2014-08-24 20:00:00,0.222,0.309,0.299 -2014-08-24 21:00:00,0.222,0.309,0.299 -2014-08-24 22:00:00,0.222,0.31,0.299 -2014-08-24 23:00:00,0.222,0.31,0.299 -2014-08-25 00:00:00,0.222,0.31,0.299 -2014-08-25 01:00:00,0.222,0.31,0.299 -2014-08-25 02:00:00,0.222,0.31,0.299 -2014-08-25 03:00:00,0.222,0.31,0.299 -2014-08-25 04:00:00,0.222,0.31,0.299 -2014-08-25 05:00:00,0.221,0.31,0.3 -2014-08-25 06:00:00,0.221,0.31,0.3 -2014-08-25 07:00:00,0.221,0.31,0.3 -2014-08-25 08:00:00,0.221,0.31,0.3 -2014-08-25 09:00:00,0.221,0.31,0.3 -2014-08-25 10:00:00,0.221,0.31,0.3 -2014-08-25 11:00:00,0.222,0.31,0.3 -2014-08-25 12:00:00,0.221,0.31,0.299 -2014-08-25 13:00:00,0.221,0.309,0.299 -2014-08-25 14:00:00,0.221,0.309,0.299 -2014-08-25 15:00:00,0.221,0.309,0.298 -2014-08-25 16:00:00,0.221,0.309,0.298 -2014-08-25 17:00:00,0.221,0.308,0.298 -2014-08-25 18:00:00,0.221,0.307,0.298 -2014-08-25 19:00:00,0.221,0.307,0.298 -2014-08-25 20:00:00,0.221,0.307,0.298 -2014-08-25 21:00:00,0.221,0.307,0.298 -2014-08-25 22:00:00,0.221,0.307,0.298 -2014-08-25 23:00:00,0.221,0.307,0.3 -2014-08-26 00:00:00,0.221,0.307,0.3 -2014-08-26 01:00:00,0.221,0.307,0.302 -2014-08-26 02:00:00,0.22,0.307,0.303 -2014-08-26 03:00:00,0.22,0.308,0.304 -2014-08-26 04:00:00,0.23800000000000002,0.308,0.306 -2014-08-26 05:00:00,0.249,0.307,0.307 -2014-08-26 06:00:00,0.25,0.307,0.313 -2014-08-26 07:00:00,0.251,0.307,0.325 -2014-08-26 08:00:00,0.251,0.307,0.325 -2014-08-26 09:00:00,0.251,0.307,0.32299999999999995 -2014-08-26 10:00:00,0.251,0.307,0.321 -2014-08-26 11:00:00,0.251,0.307,0.318 -2014-08-26 12:00:00,0.252,0.307,0.316 -2014-08-26 13:00:00,0.251,0.307,0.315 -2014-08-26 14:00:00,0.251,0.307,0.314 -2014-08-26 15:00:00,0.251,0.306,0.314 -2014-08-26 16:00:00,0.254,0.305,0.321 -2014-08-26 17:00:00,0.26,0.305,0.34600000000000003 -2014-08-26 18:00:00,0.26,0.305,0.34600000000000003 -2014-08-26 19:00:00,0.259,0.305,0.344 -2014-08-26 20:00:00,0.258,0.305,0.344 -2014-08-26 21:00:00,0.26,0.305,0.345 -2014-08-26 22:00:00,0.263,0.305,0.349 -2014-08-26 23:00:00,0.264,0.305,0.349 -2014-08-27 00:00:00,0.262,0.305,0.348 -2014-08-27 01:00:00,0.261,0.305,0.34700000000000003 -2014-08-27 02:00:00,0.26,0.305,0.34700000000000003 -2014-08-27 03:00:00,0.259,0.305,0.34600000000000003 -2014-08-27 04:00:00,0.258,0.305,0.345 -2014-08-27 05:00:00,0.258,0.305,0.344 -2014-08-27 06:00:00,0.257,0.305,0.342 -2014-08-27 07:00:00,0.256,0.305,0.34 -2014-08-27 08:00:00,0.256,0.305,0.33899999999999997 -2014-08-27 09:00:00,0.255,0.305,0.33899999999999997 -2014-08-27 10:00:00,0.255,0.305,0.33799999999999997 -2014-08-27 11:00:00,0.255,0.305,0.337 -2014-08-27 12:00:00,0.257,0.305,0.336 -2014-08-27 13:00:00,0.258,0.304,0.33399999999999996 -2014-08-27 14:00:00,0.258,0.304,0.33299999999999996 -2014-08-27 15:00:00,0.258,0.304,0.331 -2014-08-27 16:00:00,0.258,0.304,0.33 -2014-08-27 17:00:00,0.257,0.304,0.32799999999999996 -2014-08-27 18:00:00,0.257,0.304,0.327 -2014-08-27 19:00:00,0.256,0.303,0.327 -2014-08-27 20:00:00,0.256,0.303,0.326 -2014-08-27 21:00:00,0.256,0.303,0.326 -2014-08-27 22:00:00,0.255,0.303,0.326 -2014-08-27 23:00:00,0.255,0.303,0.326 -2014-08-28 00:00:00,0.255,0.303,0.325 -2014-08-28 01:00:00,0.254,0.304,0.325 -2014-08-28 02:00:00,0.254,0.303,0.325 -2014-08-28 03:00:00,0.254,0.303,0.324 -2014-08-28 04:00:00,0.254,0.303,0.324 -2014-08-28 05:00:00,0.253,0.304,0.324 -2014-08-28 06:00:00,0.253,0.304,0.324 -2014-08-28 07:00:00,0.253,0.304,0.32299999999999995 -2014-08-28 08:00:00,0.253,0.304,0.321 -2014-08-28 09:00:00,0.253,0.304,0.32 -2014-08-28 10:00:00,0.252,0.304,0.32 -2014-08-28 11:00:00,0.252,0.304,0.319 -2014-08-28 12:00:00,0.252,0.303,0.318 -2014-08-28 13:00:00,0.252,0.303,0.318 -2014-08-28 14:00:00,0.251,0.303,0.317 -2014-08-28 15:00:00,0.251,0.303,0.316 -2014-08-28 16:00:00,0.251,0.302,0.316 -2014-08-28 17:00:00,0.25,0.302,0.316 -2014-08-28 18:00:00,0.25,0.302,0.316 -2014-08-28 19:00:00,0.25,0.302,0.316 -2014-08-28 20:00:00,0.25,0.302,0.316 -2014-08-28 21:00:00,0.25,0.302,0.316 -2014-08-28 22:00:00,0.25,0.302,0.316 -2014-08-28 23:00:00,0.25,0.302,0.316 -2014-08-29 00:00:00,0.249,0.302,0.316 -2014-08-29 01:00:00,0.249,0.302,0.315 -2014-08-29 02:00:00,0.249,0.302,0.315 -2014-08-29 03:00:00,0.249,0.302,0.316 -2014-08-29 04:00:00,0.249,0.302,0.316 -2014-08-29 05:00:00,0.249,0.302,0.316 -2014-08-29 06:00:00,0.249,0.302,0.316 -2014-08-29 07:00:00,0.249,0.302,0.316 -2014-08-29 08:00:00,0.249,0.302,0.316 -2014-08-29 09:00:00,0.248,0.302,0.316 -2014-08-29 10:00:00,0.249,0.302,0.316 -2014-08-29 11:00:00,0.248,0.302,0.316 -2014-08-29 12:00:00,0.248,0.302,0.315 -2014-08-29 13:00:00,0.248,0.302,0.315 -2014-08-29 14:00:00,0.248,0.302,0.314 -2014-08-29 15:00:00,0.247,0.301,0.314 -2014-08-29 16:00:00,0.247,0.3,0.313 -2014-08-29 17:00:00,0.247,0.3,0.313 -2014-08-29 18:00:00,0.247,0.3,0.313 -2014-08-29 19:00:00,0.24600000000000002,0.3,0.313 -2014-08-29 20:00:00,0.24600000000000002,0.3,0.313 -2014-08-29 21:00:00,0.24600000000000002,0.3,0.313 -2014-08-29 22:00:00,0.24600000000000002,0.3,0.313 -2014-08-29 23:00:00,0.24600000000000002,0.3,0.313 -2014-08-30 00:00:00,0.245,0.3,0.313 -2014-08-30 01:00:00,0.245,0.3,0.313 -2014-08-30 02:00:00,0.245,0.3,0.313 -2014-08-30 03:00:00,0.245,0.3,0.313 -2014-08-30 04:00:00,0.245,0.3,0.313 -2014-08-30 05:00:00,0.245,0.3,0.313 -2014-08-30 06:00:00,0.245,0.3,0.313 -2014-08-30 07:00:00,0.245,0.3,0.313 -2014-08-30 08:00:00,0.245,0.3,0.313 -2014-08-30 09:00:00,0.244,0.3,0.313 -2014-08-30 10:00:00,0.244,0.3,0.313 -2014-08-30 11:00:00,0.244,0.3,0.312 -2014-08-30 12:00:00,0.244,0.3,0.312 -2014-08-30 13:00:00,0.244,0.3,0.311 -2014-08-30 14:00:00,0.244,0.3,0.311 -2014-08-30 15:00:00,0.244,0.3,0.311 -2014-08-30 16:00:00,0.243,0.3,0.311 -2014-08-30 17:00:00,0.243,0.3,0.311 -2014-08-30 18:00:00,0.243,0.3,0.311 -2014-08-30 19:00:00,0.243,0.3,0.311 -2014-08-30 20:00:00,0.243,0.3,0.311 -2014-08-30 21:00:00,0.243,0.3,0.311 -2014-08-30 22:00:00,0.243,0.3,0.311 -2014-08-30 23:00:00,0.242,0.3,0.311 -2014-08-31 00:00:00,0.242,0.3,0.311 -2014-08-31 01:00:00,0.242,0.3,0.312 -2014-08-31 02:00:00,0.242,0.3,0.312 -2014-08-31 03:00:00,0.242,0.3,0.312 -2014-08-31 04:00:00,0.242,0.3,0.312 -2014-08-31 05:00:00,0.242,0.3,0.312 -2014-08-31 06:00:00,0.242,0.3,0.312 -2014-08-31 07:00:00,0.24100000000000002,0.299,0.312 -2014-08-31 08:00:00,0.24100000000000002,0.299,0.312 -2014-08-31 09:00:00,0.24100000000000002,0.299,0.312 -2014-08-31 10:00:00,0.24100000000000002,0.299,0.312 -2014-08-31 11:00:00,0.242,0.299,0.312 -2014-08-31 12:00:00,0.242,0.299,0.311 -2014-08-31 13:00:00,0.24100000000000002,0.298,0.311 -2014-08-31 14:00:00,0.24100000000000002,0.298,0.31 -2014-08-31 15:00:00,0.24100000000000002,0.298,0.31 -2014-08-31 16:00:00,0.24100000000000002,0.298,0.31 -2014-08-31 17:00:00,0.24100000000000002,0.298,0.31 -2014-08-31 18:00:00,0.24100000000000002,0.298,0.31 -2014-08-31 19:00:00,0.24100000000000002,0.298,0.31 -2014-08-31 20:00:00,0.24100000000000002,0.298,0.31 -2014-08-31 21:00:00,0.24,0.298,0.31 -2014-08-31 22:00:00,0.24,0.298,0.31 -2014-08-31 23:00:00,0.24,0.298,0.31 -2014-09-01 00:00:00,0.24,0.298,0.31 -2014-09-01 01:00:00,0.24,0.299,0.31 -2014-09-01 02:00:00,0.24,0.299,0.31 -2014-09-01 03:00:00,0.24,0.299,0.31 -2014-09-01 04:00:00,0.239,0.299,0.31 -2014-09-01 05:00:00,0.24,0.298,0.31 -2014-09-01 06:00:00,0.239,0.298,0.31 -2014-09-01 07:00:00,0.239,0.298,0.31 -2014-09-01 08:00:00,0.239,0.298,0.31 -2014-09-01 09:00:00,0.239,0.298,0.31 -2014-09-01 10:00:00,0.239,0.298,0.31 -2014-09-01 11:00:00,0.239,0.298,0.31 -2014-09-01 12:00:00,0.239,0.298,0.31 -2014-09-01 13:00:00,0.239,0.298,0.309 -2014-09-01 14:00:00,0.239,0.298,0.309 -2014-09-01 15:00:00,0.239,0.298,0.309 -2014-09-01 16:00:00,0.23800000000000002,0.298,0.309 -2014-09-01 17:00:00,0.23800000000000002,0.298,0.309 -2014-09-01 18:00:00,0.23800000000000002,0.298,0.309 -2014-09-01 19:00:00,0.23800000000000002,0.297,0.308 -2014-09-01 20:00:00,0.23800000000000002,0.297,0.308 -2014-09-01 21:00:00,0.23800000000000002,0.297,0.309 -2014-09-01 22:00:00,0.23800000000000002,0.297,0.308 -2014-09-01 23:00:00,0.237,0.297,0.308 -2014-09-02 00:00:00,0.237,0.297,0.308 -2014-09-02 01:00:00,0.237,0.297,0.308 -2014-09-02 02:00:00,0.237,0.297,0.308 -2014-09-02 03:00:00,0.237,0.297,0.308 -2014-09-02 04:00:00,0.237,0.297,0.309 -2014-09-02 05:00:00,0.237,0.297,0.309 -2014-09-02 06:00:00,0.237,0.297,0.308 -2014-09-02 07:00:00,0.237,0.297,0.309 -2014-09-02 08:00:00,0.237,0.297,0.309 -2014-09-02 09:00:00,0.237,0.297,0.309 -2014-09-02 10:00:00,0.237,0.297,0.308 -2014-09-02 11:00:00,0.237,0.297,0.308 -2014-09-02 12:00:00,0.237,0.297,0.308 -2014-09-02 13:00:00,0.237,0.297,0.308 -2014-09-02 14:00:00,0.23600000000000002,0.297,0.308 -2014-09-02 15:00:00,0.23600000000000002,0.297,0.308 -2014-09-02 16:00:00,0.23600000000000002,0.29600000000000004,0.308 -2014-09-02 17:00:00,0.23600000000000002,0.295,0.308 -2014-09-02 18:00:00,0.235,0.295,0.307 -2014-09-02 19:00:00,0.23600000000000002,0.295,0.307 -2014-09-02 20:00:00,0.235,0.295,0.307 -2014-09-02 21:00:00,0.235,0.295,0.307 -2014-09-02 22:00:00,0.235,0.295,0.308 -2014-09-02 23:00:00,0.235,0.295,0.308 -2014-09-03 00:00:00,0.235,0.295,0.308 -2014-09-03 01:00:00,0.235,0.295,0.308 -2014-09-03 02:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 03:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 04:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 05:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 06:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 07:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 08:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 09:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 10:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 11:00:00,0.23399999999999999,0.295,0.308 -2014-09-03 12:00:00,0.23399999999999999,0.295,0.307 -2014-09-03 13:00:00,0.23399999999999999,0.295,0.307 -2014-09-03 14:00:00,0.23399999999999999,0.295,0.307 -2014-09-03 15:00:00,0.23399999999999999,0.293,0.307 -2014-09-03 16:00:00,0.233,0.293,0.307 -2014-09-03 17:00:00,0.233,0.293,0.307 -2014-09-03 18:00:00,0.233,0.293,0.307 -2014-09-03 19:00:00,0.233,0.293,0.307 -2014-09-03 20:00:00,0.233,0.293,0.307 -2014-09-03 21:00:00,0.233,0.293,0.307 -2014-09-03 22:00:00,0.233,0.293,0.307 -2014-09-03 23:00:00,0.233,0.293,0.307 -2014-09-04 00:00:00,0.233,0.293,0.307 -2014-09-04 01:00:00,0.233,0.293,0.307 -2014-09-04 02:00:00,0.233,0.293,0.307 -2014-09-04 03:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 04:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 05:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 06:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 07:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 08:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 09:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 10:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 11:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 12:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 13:00:00,0.23199999999999998,0.293,0.307 -2014-09-04 14:00:00,0.23199999999999998,0.292,0.306 -2014-09-04 15:00:00,0.23199999999999998,0.292,0.306 -2014-09-04 16:00:00,0.23199999999999998,0.292,0.306 -2014-09-04 17:00:00,0.231,0.292,0.306 -2014-09-04 18:00:00,0.23199999999999998,0.292,0.306 -2014-09-04 19:00:00,0.23199999999999998,0.292,0.306 -2014-09-04 20:00:00,0.231,0.292,0.306 -2014-09-04 21:00:00,0.231,0.292,0.306 -2014-09-04 22:00:00,0.231,0.292,0.306 -2014-09-04 23:00:00,0.231,0.292,0.306 -2014-09-05 00:00:00,0.231,0.292,0.306 -2014-09-05 01:00:00,0.231,0.292,0.306 -2014-09-05 02:00:00,0.231,0.292,0.306 -2014-09-05 03:00:00,0.231,0.292,0.306 -2014-09-05 04:00:00,0.231,0.292,0.306 -2014-09-05 05:00:00,0.231,0.292,0.306 -2014-09-05 06:00:00,0.23,0.292,0.306 -2014-09-05 07:00:00,0.23,0.292,0.306 -2014-09-05 08:00:00,0.23,0.292,0.307 -2014-09-05 09:00:00,0.23,0.292,0.307 -2014-09-05 10:00:00,0.23,0.292,0.306 -2014-09-05 11:00:00,0.23,0.292,0.306 -2014-09-05 12:00:00,0.23,0.29100000000000004,0.306 -2014-09-05 13:00:00,0.23,0.29100000000000004,0.306 -2014-09-05 14:00:00,0.23,0.29,0.306 -2014-09-05 15:00:00,0.23,0.29,0.306 -2014-09-05 16:00:00,0.23,0.29100000000000004,0.306 -2014-09-05 17:00:00,0.23,0.29100000000000004,0.306 -2014-09-05 18:00:00,0.23,0.29,0.306 -2014-09-05 19:00:00,0.23,0.29,0.305 -2014-09-05 20:00:00,0.23,0.29,0.305 -2014-09-05 21:00:00,0.23,0.29,0.305 -2014-09-05 22:00:00,0.23,0.29,0.305 -2014-09-05 23:00:00,0.22899999999999998,0.29,0.305 -2014-09-06 00:00:00,0.22899999999999998,0.29,0.305 -2014-09-06 01:00:00,0.22899999999999998,0.29,0.305 -2014-09-06 02:00:00,0.228,0.29,0.305 -2014-09-06 03:00:00,0.228,0.29,0.305 -2014-09-06 04:00:00,0.228,0.29,0.305 -2014-09-06 05:00:00,0.228,0.29100000000000004,0.306 -2014-09-06 06:00:00,0.228,0.29,0.306 -2014-09-06 07:00:00,0.228,0.29,0.306 -2014-09-06 08:00:00,0.228,0.29,0.306 -2014-09-06 09:00:00,0.228,0.29,0.306 -2014-09-06 10:00:00,0.228,0.29,0.306 -2014-09-06 11:00:00,0.228,0.29,0.306 -2014-09-06 12:00:00,0.228,0.29,0.305 -2014-09-06 13:00:00,0.228,0.29,0.305 -2014-09-06 14:00:00,0.228,0.29,0.305 -2014-09-06 15:00:00,0.228,0.289,0.305 -2014-09-06 16:00:00,0.228,0.289,0.305 -2014-09-06 17:00:00,0.228,0.289,0.305 -2014-09-06 18:00:00,0.228,0.28800000000000003,0.305 -2014-09-06 19:00:00,0.228,0.28800000000000003,0.304 -2014-09-06 20:00:00,0.228,0.289,0.305 -2014-09-06 21:00:00,0.228,0.289,0.307 -2014-09-06 22:00:00,0.228,0.289,0.307 -2014-09-06 23:00:00,0.228,0.289,0.307 -2014-09-07 00:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 01:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 02:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 03:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 04:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 05:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 06:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 07:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 08:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 09:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 10:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 11:00:00,0.22699999999999998,0.289,0.308 -2014-09-07 12:00:00,0.22699999999999998,0.289,0.307 -2014-09-07 13:00:00,0.22699999999999998,0.289,0.306 -2014-09-07 14:00:00,0.22699999999999998,0.289,0.306 -2014-09-07 15:00:00,0.22699999999999998,0.289,0.305 -2014-09-07 16:00:00,0.22699999999999998,0.289,0.304 -2014-09-07 17:00:00,0.22699999999999998,0.289,0.304 -2014-09-07 18:00:00,0.22699999999999998,0.289,0.304 -2014-09-07 19:00:00,0.22699999999999998,0.28800000000000003,0.304 -2014-09-07 20:00:00,0.22699999999999998,0.289,0.304 -2014-09-07 21:00:00,0.22699999999999998,0.28800000000000003,0.304 -2014-09-07 22:00:00,0.22699999999999998,0.289,0.304 -2014-09-07 23:00:00,0.226,0.289,0.304 -2014-09-08 00:00:00,0.226,0.289,0.304 -2014-09-08 01:00:00,0.226,0.289,0.304 -2014-09-08 02:00:00,0.226,0.289,0.304 -2014-09-08 03:00:00,0.226,0.289,0.304 -2014-09-08 04:00:00,0.225,0.289,0.304 -2014-09-08 05:00:00,0.225,0.289,0.304 -2014-09-08 06:00:00,0.225,0.289,0.304 -2014-09-08 07:00:00,0.225,0.28800000000000003,0.304 -2014-09-08 08:00:00,0.225,0.28800000000000003,0.304 -2014-09-08 09:00:00,0.225,0.28800000000000003,0.304 -2014-09-08 10:00:00,0.225,0.28800000000000003,0.304 -2014-09-08 11:00:00,0.225,0.28800000000000003,0.304 -2014-09-08 12:00:00,0.225,0.28800000000000003,0.304 -2014-09-08 13:00:00,0.225,0.28800000000000003,0.303 -2014-09-08 14:00:00,0.225,0.28800000000000003,0.303 -2014-09-08 15:00:00,0.225,0.28800000000000003,0.303 -2014-09-08 16:00:00,0.225,0.28800000000000003,0.303 -2014-09-08 17:00:00,0.225,0.28800000000000003,0.303 -2014-09-08 18:00:00,0.225,0.28800000000000003,0.303 -2014-09-08 19:00:00,0.225,0.28800000000000003,0.302 -2014-09-08 20:00:00,0.22399999999999998,0.28800000000000003,0.303 -2014-09-08 21:00:00,0.22399999999999998,0.28800000000000003,0.302 -2014-09-08 22:00:00,0.22399999999999998,0.28800000000000003,0.303 -2014-09-08 23:00:00,0.22399999999999998,0.28800000000000003,0.302 -2014-09-09 00:00:00,0.22399999999999998,0.28800000000000003,0.302 -2014-09-09 01:00:00,0.22399999999999998,0.28800000000000003,0.302 -2014-09-09 02:00:00,0.223,0.28800000000000003,0.302 -2014-09-09 03:00:00,0.223,0.28800000000000003,0.302 -2014-09-09 04:00:00,0.223,0.28800000000000003,0.302 -2014-09-09 05:00:00,0.223,0.28800000000000003,0.302 -2014-09-09 06:00:00,0.223,0.28800000000000003,0.302 -2014-09-09 07:00:00,0.223,0.28800000000000003,0.303 -2014-09-09 08:00:00,0.223,0.28800000000000003,0.303 -2014-09-09 09:00:00,0.223,0.28800000000000003,0.303 -2014-09-09 10:00:00,0.223,0.28800000000000003,0.303 -2014-09-09 11:00:00,0.223,0.28800000000000003,0.302 -2014-09-09 12:00:00,0.222,0.28800000000000003,0.302 -2014-09-09 13:00:00,0.223,0.28800000000000003,0.302 -2014-09-09 14:00:00,0.222,0.28800000000000003,0.302 -2014-09-09 15:00:00,0.222,0.28800000000000003,0.302 -2014-09-09 16:00:00,0.222,0.28800000000000003,0.302 -2014-09-09 17:00:00,0.222,0.28800000000000003,0.301 -2014-09-09 18:00:00,0.222,0.28800000000000003,0.301 -2014-09-09 19:00:00,0.222,0.28800000000000003,0.301 -2014-09-09 20:00:00,0.222,0.28800000000000003,0.301 -2014-09-09 21:00:00,0.222,0.28800000000000003,0.301 -2014-09-09 22:00:00,0.221,0.28800000000000003,0.301 -2014-09-09 23:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 00:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 01:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 02:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 03:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 04:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 05:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 06:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 07:00:00,0.221,0.28800000000000003,0.301 -2014-09-10 08:00:00,0.221,0.28800000000000003,0.302 -2014-09-10 09:00:00,0.221,0.287,0.301 -2014-09-10 10:00:00,0.221,0.287,0.301 -2014-09-10 11:00:00,0.22,0.287,0.301 -2014-09-10 12:00:00,0.22,0.287,0.301 -2014-09-10 13:00:00,0.22,0.287,0.301 -2014-09-10 14:00:00,0.22,0.287,0.3 -2014-09-10 15:00:00,0.22,0.287,0.3 -2014-09-10 16:00:00,0.22,0.287,0.3 -2014-09-10 17:00:00,0.22,0.287,0.3 -2014-09-10 18:00:00,0.22,0.287,0.3 -2014-09-10 19:00:00,0.22,0.287,0.3 -2014-09-10 20:00:00,0.22,0.287,0.3 -2014-09-10 21:00:00,0.22,0.287,0.3 -2014-09-10 22:00:00,0.21899999999999997,0.287,0.3 -2014-09-10 23:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 00:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 01:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 02:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 03:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 04:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 05:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 06:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 07:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 08:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 09:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 10:00:00,0.218,0.287,0.3 -2014-09-11 11:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 12:00:00,0.21899999999999997,0.287,0.3 -2014-09-11 13:00:00,0.218,0.287,0.301 -2014-09-11 14:00:00,0.217,0.28600000000000003,0.302 -2014-09-11 15:00:00,0.218,0.285,0.302 -2014-09-11 16:00:00,0.21899999999999997,0.285,0.301 -2014-09-11 17:00:00,0.21899999999999997,0.285,0.301 -2014-09-11 18:00:00,0.218,0.285,0.302 -2014-09-11 19:00:00,0.218,0.285,0.302 -2014-09-11 20:00:00,0.218,0.285,0.302 -2014-09-11 21:00:00,0.218,0.285,0.302 -2014-09-11 22:00:00,0.218,0.285,0.302 -2014-09-11 23:00:00,0.218,0.285,0.302 -2014-09-12 00:00:00,0.218,0.285,0.302 -2014-09-12 01:00:00,0.218,0.285,0.302 -2014-09-12 02:00:00,0.218,0.285,0.302 -2014-09-12 03:00:00,0.218,0.285,0.302 -2014-09-12 04:00:00,0.218,0.285,0.302 -2014-09-12 05:00:00,0.218,0.285,0.302 -2014-09-12 06:00:00,0.217,0.285,0.302 -2014-09-12 07:00:00,0.217,0.285,0.302 -2014-09-12 08:00:00,0.217,0.285,0.302 -2014-09-12 09:00:00,0.217,0.285,0.302 -2014-09-12 10:00:00,0.217,0.285,0.302 -2014-09-12 11:00:00,0.218,0.285,0.302 -2014-09-12 12:00:00,0.218,0.285,0.301 -2014-09-12 13:00:00,0.218,0.285,0.301 -2014-09-12 14:00:00,0.218,0.285,0.3 -2014-09-12 15:00:00,0.218,0.285,0.301 -2014-09-12 16:00:00,0.218,0.285,0.301 -2014-09-12 17:00:00,0.218,0.285,0.301 -2014-09-12 18:00:00,0.218,0.285,0.301 -2014-09-12 19:00:00,0.218,0.285,0.301 -2014-09-12 20:00:00,0.218,0.285,0.301 -2014-09-12 21:00:00,0.218,0.285,0.301 -2014-09-12 22:00:00,0.218,0.285,0.3 -2014-09-12 23:00:00,0.218,0.285,0.301 -2014-09-13 00:00:00,0.218,0.285,0.301 -2014-09-13 01:00:00,0.218,0.285,0.301 -2014-09-13 02:00:00,0.218,0.285,0.301 -2014-09-13 03:00:00,0.218,0.285,0.301 -2014-09-13 04:00:00,0.218,0.285,0.301 -2014-09-13 05:00:00,0.218,0.285,0.301 -2014-09-13 06:00:00,0.218,0.285,0.301 -2014-09-13 07:00:00,0.218,0.285,0.301 -2014-09-13 08:00:00,0.218,0.285,0.301 -2014-09-13 09:00:00,0.218,0.285,0.3 -2014-09-13 10:00:00,0.218,0.285,0.3 -2014-09-13 11:00:00,0.218,0.285,0.3 -2014-09-13 12:00:00,0.218,0.285,0.3 -2014-09-13 13:00:00,0.218,0.285,0.3 -2014-09-13 14:00:00,0.218,0.285,0.3 -2014-09-13 15:00:00,0.218,0.285,0.3 -2014-09-13 16:00:00,0.218,0.285,0.3 -2014-09-13 17:00:00,0.218,0.285,0.3 -2014-09-13 18:00:00,0.218,0.285,0.3 -2014-09-13 19:00:00,0.218,0.285,0.3 -2014-09-13 20:00:00,0.218,0.285,0.3 -2014-09-13 21:00:00,0.218,0.285,0.3 -2014-09-13 22:00:00,0.218,0.285,0.3 -2014-09-13 23:00:00,0.218,0.285,0.3 -2014-09-14 00:00:00,0.218,0.285,0.3 -2014-09-14 01:00:00,0.218,0.285,0.3 -2014-09-14 02:00:00,0.218,0.285,0.3 -2014-09-14 03:00:00,0.217,0.285,0.3 -2014-09-14 04:00:00,0.218,0.285,0.3 -2014-09-14 05:00:00,0.217,0.285,0.3 -2014-09-14 06:00:00,0.217,0.285,0.3 -2014-09-14 07:00:00,0.217,0.285,0.3 -2014-09-14 08:00:00,0.217,0.284,0.3 -2014-09-14 09:00:00,0.217,0.284,0.3 -2014-09-14 10:00:00,0.217,0.28300000000000003,0.3 -2014-09-14 11:00:00,0.217,0.28300000000000003,0.3 -2014-09-14 12:00:00,0.217,0.28300000000000003,0.3 -2014-09-14 13:00:00,0.218,0.28300000000000003,0.3 -2014-09-14 14:00:00,0.217,0.28300000000000003,0.3 -2014-09-14 15:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 16:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 17:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 18:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 19:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 20:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 21:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 22:00:00,0.217,0.28300000000000003,0.299 -2014-09-14 23:00:00,0.21600000000000003,0.284,0.299 -2014-09-15 00:00:00,0.21600000000000003,0.285,0.299 -2014-09-15 01:00:00,0.21600000000000003,0.285,0.299 -2014-09-15 02:00:00,0.21600000000000003,0.285,0.299 -2014-09-15 03:00:00,0.21600000000000003,0.285,0.299 -2014-09-15 04:00:00,0.21600000000000003,0.285,0.299 -2014-09-15 05:00:00,0.21600000000000003,0.285,0.299 -2014-09-15 06:00:00,0.21600000000000003,0.284,0.299 -2014-09-15 07:00:00,0.21600000000000003,0.284,0.299 -2014-09-15 08:00:00,0.21600000000000003,0.28300000000000003,0.299 -2014-09-15 09:00:00,0.21600000000000003,0.28300000000000003,0.299 -2014-09-15 10:00:00,0.21600000000000003,0.28300000000000003,0.299 -2014-09-15 11:00:00,0.21600000000000003,0.28300000000000003,0.299 -2014-09-15 12:00:00,0.21600000000000003,0.28300000000000003,0.299 -2014-09-15 13:00:00,0.21600000000000003,0.28300000000000003,0.299 -2014-09-15 14:00:00,0.21600000000000003,0.28300000000000003,0.299 -2014-09-15 15:00:00,0.217,0.282,0.299 -2014-09-15 16:00:00,0.217,0.28,0.299 -2014-09-15 17:00:00,0.217,0.278,0.299 -2014-09-15 18:00:00,0.21600000000000003,0.28300000000000003,0.298 -2014-09-15 19:00:00,0.217,0.28600000000000003,0.298 -2014-09-15 20:00:00,0.21600000000000003,0.287,0.298 -2014-09-15 21:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-15 22:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-15 23:00:00,0.21600000000000003,0.28800000000000003,0.299 -2014-09-16 00:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-16 01:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-16 02:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-16 03:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-16 04:00:00,0.215,0.28800000000000003,0.298 -2014-09-16 05:00:00,0.215,0.28800000000000003,0.298 -2014-09-16 06:00:00,0.215,0.28800000000000003,0.298 -2014-09-16 07:00:00,0.215,0.28800000000000003,0.299 -2014-09-16 08:00:00,0.215,0.28800000000000003,0.299 -2014-09-16 09:00:00,0.215,0.28800000000000003,0.299 -2014-09-16 10:00:00,0.215,0.28800000000000003,0.299 -2014-09-16 11:00:00,0.215,0.28800000000000003,0.299 -2014-09-16 12:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-16 13:00:00,0.215,0.28800000000000003,0.298 -2014-09-16 14:00:00,0.21600000000000003,0.28800000000000003,0.298 -2014-09-16 15:00:00,0.21600000000000003,0.289,0.298 -2014-09-16 16:00:00,0.215,0.287,0.298 -2014-09-16 17:00:00,0.215,0.281,0.298 -2014-09-16 18:00:00,0.215,0.282,0.298 -2014-09-16 19:00:00,0.215,0.285,0.297 -2014-09-16 20:00:00,0.215,0.287,0.297 -2014-09-16 21:00:00,0.215,0.28800000000000003,0.297 -2014-09-16 22:00:00,0.214,0.28800000000000003,0.297 -2014-09-16 23:00:00,0.214,0.289,0.297 -2014-09-17 00:00:00,0.214,0.289,0.297 -2014-09-17 01:00:00,0.214,0.29,0.298 -2014-09-17 02:00:00,0.214,0.29,0.298 -2014-09-17 03:00:00,0.214,0.29,0.297 -2014-09-17 04:00:00,0.214,0.29,0.298 -2014-09-17 05:00:00,0.214,0.29,0.298 -2014-09-17 06:00:00,0.213,0.29,0.297 -2014-09-17 07:00:00,0.213,0.29,0.298 -2014-09-17 08:00:00,0.213,0.29,0.298 -2014-09-17 09:00:00,0.213,0.29,0.298 -2014-09-17 10:00:00,0.214,0.29,0.298 -2014-09-17 11:00:00,0.214,0.29,0.298 -2014-09-17 12:00:00,0.214,0.29,0.297 -2014-09-17 13:00:00,0.214,0.29,0.297 -2014-09-17 14:00:00,0.214,0.29,0.297 -2014-09-17 15:00:00,0.214,0.29,0.297 -2014-09-17 16:00:00,0.214,0.293,0.29600000000000004 -2014-09-17 17:00:00,0.214,0.298,0.29600000000000004 -2014-09-17 18:00:00,0.214,0.298,0.29600000000000004 -2014-09-17 19:00:00,0.214,0.298,0.29600000000000004 -2014-09-17 20:00:00,0.213,0.298,0.29600000000000004 -2014-09-17 21:00:00,0.213,0.298,0.29600000000000004 -2014-09-17 22:00:00,0.213,0.298,0.29600000000000004 -2014-09-17 23:00:00,0.213,0.298,0.29600000000000004 -2014-09-18 00:00:00,0.213,0.298,0.29600000000000004 -2014-09-18 01:00:00,0.213,0.3,0.29600000000000004 -2014-09-18 02:00:00,0.213,0.297,0.29600000000000004 -2014-09-18 03:00:00,0.213,0.297,0.297 -2014-09-18 04:00:00,0.212,0.29600000000000004,0.297 -2014-09-18 05:00:00,0.212,0.297,0.297 -2014-09-18 06:00:00,0.212,0.29600000000000004,0.297 -2014-09-18 07:00:00,0.212,0.29100000000000004,0.297 -2014-09-18 08:00:00,0.212,0.29100000000000004,0.297 -2014-09-18 09:00:00,0.212,0.29100000000000004,0.297 -2014-09-18 10:00:00,0.212,0.292,0.297 -2014-09-18 11:00:00,0.213,0.29100000000000004,0.297 -2014-09-18 12:00:00,0.213,0.29,0.297 -2014-09-18 13:00:00,0.213,0.29,0.297 -2014-09-18 14:00:00,0.213,0.29,0.29600000000000004 -2014-09-18 15:00:00,0.213,0.29,0.29600000000000004 -2014-09-18 16:00:00,0.213,0.29,0.29600000000000004 -2014-09-18 17:00:00,0.213,0.29,0.29600000000000004 -2014-09-18 18:00:00,0.213,0.29,0.29600000000000004 -2014-09-18 19:00:00,0.213,0.29,0.29600000000000004 -2014-09-18 20:00:00,0.213,0.29,0.29600000000000004 -2014-09-18 21:00:00,0.213,0.29,0.297 -2014-09-18 22:00:00,0.213,0.29,0.297 -2014-09-18 23:00:00,0.213,0.29,0.297 -2014-09-19 00:00:00,0.213,0.29,0.297 -2014-09-19 01:00:00,0.213,0.29,0.297 -2014-09-19 02:00:00,0.213,0.29100000000000004,0.298 -2014-09-19 03:00:00,0.212,0.29100000000000004,0.297 -2014-09-19 04:00:00,0.212,0.292,0.297 -2014-09-19 05:00:00,0.212,0.292,0.297 -2014-09-19 06:00:00,0.212,0.292,0.298 -2014-09-19 07:00:00,0.212,0.292,0.298 -2014-09-19 08:00:00,0.212,0.292,0.298 -2014-09-19 09:00:00,0.212,0.292,0.298 -2014-09-19 10:00:00,0.212,0.292,0.298 -2014-09-19 11:00:00,0.213,0.292,0.298 -2014-09-19 12:00:00,0.213,0.292,0.298 -2014-09-19 13:00:00,0.213,0.292,0.297 -2014-09-19 14:00:00,0.213,0.292,0.297 -2014-09-19 15:00:00,0.213,0.292,0.29600000000000004 -2014-09-19 16:00:00,0.213,0.292,0.29600000000000004 -2014-09-19 17:00:00,0.213,0.292,0.29600000000000004 -2014-09-19 18:00:00,0.213,0.292,0.29600000000000004 -2014-09-19 19:00:00,0.213,0.292,0.29600000000000004 -2014-09-19 20:00:00,0.213,0.292,0.295 -2014-09-19 21:00:00,0.213,0.292,0.295 -2014-09-19 22:00:00,0.213,0.292,0.29600000000000004 -2014-09-19 23:00:00,0.213,0.292,0.29600000000000004 -2014-09-20 00:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 01:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 02:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 03:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 04:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 05:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 06:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 07:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 08:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 09:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 10:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 11:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 12:00:00,0.213,0.292,0.29600000000000004 -2014-09-20 13:00:00,0.212,0.292,0.29600000000000004 -2014-09-20 14:00:00,0.213,0.292,0.295 -2014-09-20 15:00:00,0.213,0.292,0.29600000000000004 -2014-09-20 16:00:00,0.213,0.292,0.299 -2014-09-20 17:00:00,0.213,0.292,0.299 -2014-09-20 18:00:00,0.213,0.292,0.299 -2014-09-20 19:00:00,0.213,0.292,0.299 -2014-09-20 20:00:00,0.212,0.292,0.301 -2014-09-20 21:00:00,0.212,0.292,0.301 -2014-09-20 22:00:00,0.212,0.292,0.301 -2014-09-20 23:00:00,0.212,0.292,0.301 -2014-09-21 00:00:00,0.212,0.292,0.301 -2014-09-21 01:00:00,0.21100000000000002,0.292,0.301 -2014-09-21 02:00:00,0.21100000000000002,0.292,0.301 -2014-09-21 03:00:00,0.21100000000000002,0.292,0.301 -2014-09-21 04:00:00,0.21100000000000002,0.292,0.301 -2014-09-21 05:00:00,0.21100000000000002,0.292,0.301 -2014-09-21 06:00:00,0.21100000000000002,0.292,0.302 -2014-09-21 07:00:00,0.21100000000000002,0.292,0.302 -2014-09-21 08:00:00,0.21100000000000002,0.292,0.302 -2014-09-21 09:00:00,0.21,0.292,0.302 -2014-09-21 10:00:00,0.21,0.292,0.302 -2014-09-21 11:00:00,0.21100000000000002,0.292,0.303 -2014-09-21 12:00:00,0.21100000000000002,0.292,0.303 -2014-09-21 13:00:00,0.214,0.292,0.309 -2014-09-21 14:00:00,0.222,0.292,0.325 -2014-09-21 15:00:00,0.223,0.292,0.326 -2014-09-21 16:00:00,0.223,0.292,0.325 -2014-09-21 17:00:00,0.222,0.292,0.324 -2014-09-21 18:00:00,0.222,0.292,0.322 -2014-09-21 19:00:00,0.222,0.292,0.319 -2014-09-21 20:00:00,0.222,0.292,0.315 -2014-09-21 21:00:00,0.221,0.292,0.313 -2014-09-21 22:00:00,0.221,0.292,0.312 -2014-09-21 23:00:00,0.221,0.292,0.312 -2014-09-22 00:00:00,0.221,0.292,0.311 -2014-09-22 01:00:00,0.221,0.292,0.311 -2014-09-22 02:00:00,0.221,0.292,0.311 -2014-09-22 03:00:00,0.221,0.292,0.311 -2014-09-22 04:00:00,0.221,0.292,0.311 -2014-09-22 05:00:00,0.221,0.292,0.311 -2014-09-22 06:00:00,0.221,0.292,0.311 -2014-09-22 07:00:00,0.221,0.292,0.311 -2014-09-22 08:00:00,0.221,0.292,0.311 -2014-09-22 09:00:00,0.221,0.292,0.311 -2014-09-22 10:00:00,0.222,0.292,0.311 -2014-09-22 11:00:00,0.222,0.292,0.311 -2014-09-22 12:00:00,0.223,0.292,0.31 -2014-09-22 13:00:00,0.223,0.292,0.311 -2014-09-22 14:00:00,0.223,0.292,0.312 -2014-09-22 15:00:00,0.22399999999999998,0.292,0.312 -2014-09-22 16:00:00,0.22399999999999998,0.29100000000000004,0.312 -2014-09-22 17:00:00,0.22399999999999998,0.29100000000000004,0.312 -2014-09-22 18:00:00,0.225,0.29,0.311 -2014-09-22 19:00:00,0.225,0.29,0.311 -2014-09-22 20:00:00,0.225,0.29,0.311 -2014-09-22 21:00:00,0.225,0.29,0.311 -2014-09-22 22:00:00,0.226,0.29100000000000004,0.311 -2014-09-22 23:00:00,0.226,0.29100000000000004,0.311 -2014-09-23 00:00:00,0.226,0.29100000000000004,0.311 -2014-09-23 01:00:00,0.226,0.292,0.311 -2014-09-23 02:00:00,0.22699999999999998,0.292,0.311 -2014-09-23 03:00:00,0.22699999999999998,0.292,0.311 -2014-09-23 04:00:00,0.22699999999999998,0.292,0.311 -2014-09-23 05:00:00,0.22699999999999998,0.292,0.311 -2014-09-23 06:00:00,0.22699999999999998,0.292,0.311 -2014-09-23 07:00:00,0.22699999999999998,0.292,0.311 -2014-09-23 08:00:00,0.22699999999999998,0.29100000000000004,0.311 -2014-09-23 09:00:00,0.22699999999999998,0.29100000000000004,0.311 -2014-09-23 10:00:00,0.228,0.29100000000000004,0.31 -2014-09-23 11:00:00,0.22899999999999998,0.29100000000000004,0.31 -2014-09-23 12:00:00,0.23,0.29100000000000004,0.31 -2014-09-23 13:00:00,0.23,0.29,0.309 -2014-09-23 14:00:00,0.231,0.29,0.308 -2014-09-23 15:00:00,0.231,0.29,0.308 -2014-09-23 16:00:00,0.231,0.29,0.307 -2014-09-23 17:00:00,0.231,0.29,0.307 -2014-09-23 18:00:00,0.231,0.29,0.307 -2014-09-23 19:00:00,0.231,0.29,0.307 -2014-09-23 20:00:00,0.231,0.29,0.307 -2014-09-23 21:00:00,0.231,0.29,0.307 -2014-09-23 22:00:00,0.231,0.29100000000000004,0.307 -2014-09-23 23:00:00,0.231,0.292,0.307 -2014-09-24 00:00:00,0.231,0.292,0.307 -2014-09-24 01:00:00,0.231,0.292,0.307 -2014-09-24 02:00:00,0.231,0.292,0.307 -2014-09-24 03:00:00,0.231,0.292,0.307 -2014-09-24 04:00:00,0.231,0.292,0.307 -2014-09-24 05:00:00,0.231,0.292,0.307 -2014-09-24 06:00:00,0.231,0.292,0.307 -2014-09-24 07:00:00,0.231,0.292,0.307 -2014-09-24 08:00:00,0.23,0.292,0.307 -2014-09-24 09:00:00,0.23,0.292,0.307 -2014-09-24 10:00:00,0.23,0.292,0.307 -2014-09-24 11:00:00,0.231,0.292,0.307 -2014-09-24 12:00:00,0.231,0.292,0.307 -2014-09-24 13:00:00,0.231,0.292,0.307 -2014-09-24 14:00:00,0.231,0.292,0.306 -2014-09-24 15:00:00,0.231,0.292,0.306 -2014-09-24 16:00:00,0.231,0.292,0.306 -2014-09-24 17:00:00,0.23,0.292,0.306 -2014-09-24 18:00:00,0.23,0.292,0.306 -2014-09-24 19:00:00,0.23,0.292,0.306 -2014-09-24 20:00:00,0.23,0.292,0.306 -2014-09-24 21:00:00,0.23,0.292,0.306 -2014-09-24 22:00:00,0.23,0.292,0.306 -2014-09-24 23:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 00:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 01:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 02:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 03:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 04:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 05:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 06:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 07:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 08:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 09:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 10:00:00,0.22899999999999998,0.292,0.308 -2014-09-25 11:00:00,0.23,0.292,0.308 -2014-09-25 12:00:00,0.23,0.292,0.307 -2014-09-25 13:00:00,0.23,0.292,0.307 -2014-09-25 14:00:00,0.23,0.292,0.306 -2014-09-25 15:00:00,0.23,0.292,0.306 -2014-09-25 16:00:00,0.23,0.292,0.306 -2014-09-25 17:00:00,0.23,0.292,0.306 -2014-09-25 18:00:00,0.23,0.292,0.305 -2014-09-25 19:00:00,0.23,0.292,0.305 -2014-09-25 20:00:00,0.23,0.292,0.305 -2014-09-25 21:00:00,0.23,0.292,0.305 -2014-09-25 22:00:00,0.22899999999999998,0.292,0.305 -2014-09-25 23:00:00,0.22899999999999998,0.292,0.306 -2014-09-26 00:00:00,0.22899999999999998,0.292,0.306 -2014-09-26 01:00:00,0.23,0.292,0.305 -2014-09-26 02:00:00,0.23,0.292,0.306 -2014-09-26 03:00:00,0.23,0.292,0.306 -2014-09-26 04:00:00,0.23,0.292,0.306 -2014-09-26 05:00:00,0.23,0.292,0.306 -2014-09-26 06:00:00,0.23,0.292,0.305 -2014-09-26 07:00:00,0.23,0.292,0.305 -2014-09-26 08:00:00,0.23,0.292,0.306 -2014-09-26 09:00:00,0.23,0.292,0.305 -2014-09-26 10:00:00,0.23,0.292,0.305 -2014-09-26 11:00:00,0.23,0.292,0.305 -2014-09-26 12:00:00,0.22899999999999998,0.292,0.305 -2014-09-26 13:00:00,0.22899999999999998,0.29100000000000004,0.305 -2014-09-26 14:00:00,0.22899999999999998,0.29100000000000004,0.305 -2014-09-26 15:00:00,0.23,0.29,0.305 -2014-09-26 16:00:00,0.22899999999999998,0.29,0.305 -2014-09-26 17:00:00,0.22899999999999998,0.29,0.305 -2014-09-26 18:00:00,0.22899999999999998,0.29,0.304 -2014-09-26 19:00:00,0.22899999999999998,0.29,0.305 -2014-09-26 20:00:00,0.22899999999999998,0.29,0.305 -2014-09-26 21:00:00,0.22899999999999998,0.29,0.305 -2014-09-26 22:00:00,0.22899999999999998,0.29,0.305 -2014-09-26 23:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 00:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 01:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 02:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 03:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 04:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 05:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 06:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 07:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 08:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 09:00:00,0.228,0.29,0.305 -2014-09-27 10:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 11:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 12:00:00,0.22899999999999998,0.29,0.305 -2014-09-27 13:00:00,0.22899999999999998,0.29,0.304 -2014-09-27 14:00:00,0.22899999999999998,0.29,0.304 -2014-09-27 15:00:00,0.22899999999999998,0.29,0.304 -2014-09-27 16:00:00,0.22899999999999998,0.29,0.304 -2014-09-27 17:00:00,0.228,0.29,0.304 -2014-09-27 18:00:00,0.22899999999999998,0.29,0.304 -2014-09-27 19:00:00,0.228,0.29,0.304 -2014-09-27 20:00:00,0.228,0.29,0.304 -2014-09-27 21:00:00,0.228,0.29,0.304 -2014-09-27 22:00:00,0.228,0.29,0.304 -2014-09-27 23:00:00,0.233,0.29,0.304 -2014-09-28 00:00:00,0.233,0.29,0.304 -2014-09-28 01:00:00,0.23,0.29,0.304 -2014-09-28 02:00:00,0.228,0.29,0.304 -2014-09-28 03:00:00,0.22899999999999998,0.29,0.304 -2014-09-28 04:00:00,0.228,0.29,0.304 -2014-09-28 05:00:00,0.228,0.29,0.304 -2014-09-28 06:00:00,0.228,0.29,0.304 -2014-09-28 07:00:00,0.228,0.29,0.304 -2014-09-28 08:00:00,0.228,0.29,0.304 -2014-09-28 09:00:00,0.228,0.29,0.304 -2014-09-28 10:00:00,0.22899999999999998,0.29,0.304 -2014-09-28 11:00:00,0.22899999999999998,0.29,0.304 -2014-09-28 12:00:00,0.228,0.29,0.304 -2014-09-28 13:00:00,0.228,0.29,0.304 -2014-09-28 14:00:00,0.228,0.29,0.304 -2014-09-28 15:00:00,0.22699999999999998,0.29,0.304 -2014-09-28 16:00:00,0.228,0.29,0.304 -2014-09-28 17:00:00,0.22699999999999998,0.29,0.303 -2014-09-28 18:00:00,0.228,0.29,0.303 -2014-09-28 19:00:00,0.22699999999999998,0.29,0.303 -2014-09-28 20:00:00,0.22699999999999998,0.29,0.303 -2014-09-28 21:00:00,0.22699999999999998,0.29,0.303 -2014-09-28 22:00:00,0.22699999999999998,0.29,0.303 -2014-09-28 23:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 00:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 01:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 02:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 03:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 04:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 05:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 06:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 07:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 08:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 09:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 10:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 11:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 12:00:00,0.22699999999999998,0.29,0.304 -2014-09-29 13:00:00,0.22699999999999998,0.289,0.304 -2014-09-29 14:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 15:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 16:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 17:00:00,0.22699999999999998,0.29,0.303 -2014-09-29 18:00:00,0.22699999999999998,0.289,0.303 -2014-09-29 19:00:00,0.22699999999999998,0.289,0.303 -2014-09-29 20:00:00,0.22699999999999998,0.289,0.303 -2014-09-29 21:00:00,0.22699999999999998,0.289,0.303 -2014-09-29 22:00:00,0.22699999999999998,0.289,0.303 -2014-09-29 23:00:00,0.22699999999999998,0.289,0.304 -2014-09-30 00:00:00,0.22699999999999998,0.29,0.304 -2014-09-30 01:00:00,0.226,0.29,0.304 -2014-09-30 02:00:00,0.22699999999999998,0.29,0.304 -2014-09-30 03:00:00,0.226,0.29,0.304 -2014-09-30 04:00:00,0.22699999999999998,0.29,0.304 -2014-09-30 05:00:00,0.226,0.29,0.304 -2014-09-30 06:00:00,0.226,0.29,0.304 -2014-09-30 07:00:00,0.226,0.29,0.304 -2014-09-30 08:00:00,0.226,0.29,0.304 -2014-09-30 09:00:00,0.226,0.29,0.304 -2014-09-30 10:00:00,0.226,0.29,0.304 -2014-09-30 11:00:00,0.226,0.289,0.304 -2014-09-30 12:00:00,0.22699999999999998,0.289,0.303 -2014-09-30 13:00:00,0.226,0.289,0.303 -2014-09-30 14:00:00,0.22699999999999998,0.289,0.303 -2014-09-30 15:00:00,0.22699999999999998,0.289,0.303 -2014-09-30 16:00:00,0.22699999999999998,0.289,0.303 -2014-09-30 17:00:00,0.22699999999999998,0.289,0.303 -2014-09-30 18:00:00,0.22699999999999998,0.289,0.303 -2014-09-30 19:00:00,0.226,0.289,0.303 -2014-09-30 20:00:00,0.226,0.289,0.303 -2014-09-30 21:00:00,0.226,0.289,0.303 -2014-09-30 22:00:00,0.226,0.289,0.303 -2014-09-30 23:00:00,0.226,0.289,0.303 -2014-10-01 00:00:00,0.226,0.289,0.303 -2014-10-01 01:00:00,0.226,0.289,0.303 -2014-10-01 02:00:00,0.226,0.289,0.303 -2014-10-01 03:00:00,0.226,0.289,0.303 -2014-10-01 04:00:00,0.226,0.289,0.303 -2014-10-01 05:00:00,0.225,0.289,0.303 -2014-10-01 06:00:00,0.225,0.289,0.303 -2014-10-01 07:00:00,0.225,0.289,0.303 -2014-10-01 08:00:00,0.225,0.287,0.303 -2014-10-01 09:00:00,0.225,0.287,0.303 -2014-10-01 10:00:00,0.225,0.287,0.304 -2014-10-01 11:00:00,0.225,0.28800000000000003,0.303 -2014-10-01 12:00:00,0.225,0.28800000000000003,0.303 -2014-10-01 13:00:00,0.225,0.28800000000000003,0.303 -2014-10-01 14:00:00,0.225,0.28800000000000003,0.303 -2014-10-01 15:00:00,0.225,0.289,0.302 -2014-10-01 16:00:00,0.225,0.289,0.302 -2014-10-01 17:00:00,0.225,0.292,0.302 -2014-10-01 18:00:00,0.225,0.292,0.302 -2014-10-01 19:00:00,0.225,0.292,0.302 -2014-10-01 20:00:00,0.225,0.292,0.302 -2014-10-01 21:00:00,0.225,0.292,0.302 -2014-10-01 22:00:00,0.225,0.287,0.302 -2014-10-01 23:00:00,0.225,0.289,0.302 -2014-10-02 00:00:00,0.225,0.293,0.302 -2014-10-02 01:00:00,0.22399999999999998,0.297,0.302 -2014-10-02 02:00:00,0.22399999999999998,0.297,0.302 -2014-10-02 03:00:00,0.22399999999999998,0.298,0.302 -2014-10-02 04:00:00,0.225,0.299,0.302 -2014-10-02 05:00:00,0.22399999999999998,0.299,0.302 -2014-10-02 06:00:00,0.225,0.3,0.302 -2014-10-02 07:00:00,0.22399999999999998,0.3,0.302 -2014-10-02 08:00:00,0.22399999999999998,0.299,0.302 -2014-10-02 09:00:00,0.22399999999999998,0.299,0.302 -2014-10-02 10:00:00,0.22399999999999998,0.299,0.302 -2014-10-02 11:00:00,0.22399999999999998,0.299,0.302 -2014-10-02 12:00:00,0.22399999999999998,0.298,0.302 -2014-10-02 13:00:00,0.22399999999999998,0.298,0.302 -2014-10-02 14:00:00,0.22399999999999998,0.298,0.302 -2014-10-02 15:00:00,0.22399999999999998,0.298,0.302 -2014-10-02 16:00:00,0.22399999999999998,0.294,0.302 -2014-10-02 17:00:00,0.22399999999999998,0.302,0.302 -2014-10-02 18:00:00,0.22399999999999998,0.315,0.301 -2014-10-02 19:00:00,0.223,0.321,0.301 -2014-10-02 20:00:00,0.223,0.32299999999999995,0.301 -2014-10-02 21:00:00,0.223,0.324,0.301 -2014-10-02 22:00:00,0.223,0.324,0.301 -2014-10-02 23:00:00,0.223,0.324,0.301 -2014-10-03 00:00:00,0.223,0.324,0.301 -2014-10-03 01:00:00,0.223,0.324,0.301 -2014-10-03 02:00:00,0.223,0.32299999999999995,0.301 -2014-10-03 03:00:00,0.223,0.321,0.301 -2014-10-03 04:00:00,0.223,0.321,0.301 -2014-10-03 05:00:00,0.223,0.318,0.301 -2014-10-03 06:00:00,0.223,0.318,0.302 -2014-10-03 07:00:00,0.223,0.318,0.302 -2014-10-03 08:00:00,0.223,0.321,0.302 -2014-10-03 09:00:00,0.223,0.32299999999999995,0.302 -2014-10-03 10:00:00,0.223,0.326,0.302 -2014-10-03 11:00:00,0.223,0.331,0.302 -2014-10-03 12:00:00,0.223,0.331,0.302 -2014-10-03 13:00:00,0.223,0.331,0.302 -2014-10-03 14:00:00,0.223,0.32899999999999996,0.301 -2014-10-03 15:00:00,0.223,0.32799999999999996,0.301 -2014-10-03 16:00:00,0.223,0.33,0.301 -2014-10-03 17:00:00,0.223,0.332,0.301 -2014-10-03 18:00:00,0.223,0.331,0.301 -2014-10-03 19:00:00,0.222,0.33,0.301 -2014-10-03 20:00:00,0.222,0.33399999999999996,0.301 -2014-10-03 21:00:00,0.222,0.33299999999999996,0.301 -2014-10-03 22:00:00,0.222,0.33899999999999997,0.301 -2014-10-03 23:00:00,0.222,0.341,0.301 -2014-10-04 00:00:00,0.222,0.33899999999999997,0.301 -2014-10-04 01:00:00,0.222,0.33799999999999997,0.301 -2014-10-04 02:00:00,0.222,0.336,0.301 -2014-10-04 03:00:00,0.222,0.33399999999999996,0.301 -2014-10-04 04:00:00,0.222,0.33399999999999996,0.301 -2014-10-04 05:00:00,0.222,0.332,0.301 -2014-10-04 06:00:00,0.222,0.332,0.301 -2014-10-04 07:00:00,0.222,0.331,0.301 -2014-10-04 08:00:00,0.222,0.331,0.301 -2014-10-04 09:00:00,0.222,0.33,0.301 -2014-10-04 10:00:00,0.222,0.32899999999999996,0.301 -2014-10-04 11:00:00,0.222,0.32799999999999996,0.301 -2014-10-04 12:00:00,0.222,0.327,0.301 -2014-10-04 13:00:00,0.222,0.327,0.301 -2014-10-04 14:00:00,0.222,0.32799999999999996,0.301 -2014-10-04 15:00:00,0.222,0.32899999999999996,0.301 -2014-10-04 16:00:00,0.222,0.331,0.3 -2014-10-04 17:00:00,0.221,0.332,0.3 -2014-10-04 18:00:00,0.221,0.332,0.3 -2014-10-04 19:00:00,0.221,0.332,0.3 -2014-10-04 20:00:00,0.221,0.332,0.3 -2014-10-04 21:00:00,0.221,0.332,0.3 -2014-10-04 22:00:00,0.221,0.332,0.3 -2014-10-04 23:00:00,0.221,0.332,0.3 -2014-10-05 00:00:00,0.221,0.332,0.3 -2014-10-05 01:00:00,0.221,0.332,0.3 -2014-10-05 02:00:00,0.221,0.331,0.3 -2014-10-05 03:00:00,0.221,0.331,0.3 -2014-10-05 04:00:00,0.22,0.331,0.3 -2014-10-05 05:00:00,0.221,0.33,0.3 -2014-10-05 06:00:00,0.221,0.32299999999999995,0.3 -2014-10-05 07:00:00,0.221,0.322,0.3 -2014-10-05 08:00:00,0.221,0.324,0.301 -2014-10-05 09:00:00,0.221,0.325,0.301 -2014-10-05 10:00:00,0.221,0.327,0.301 -2014-10-05 11:00:00,0.221,0.327,0.301 -2014-10-05 12:00:00,0.221,0.32799999999999996,0.3 -2014-10-05 13:00:00,0.221,0.32899999999999996,0.3 -2014-10-05 14:00:00,0.221,0.33,0.3 -2014-10-05 15:00:00,0.221,0.331,0.3 -2014-10-05 16:00:00,0.22,0.332,0.3 -2014-10-05 17:00:00,0.221,0.332,0.3 -2014-10-05 18:00:00,0.22,0.332,0.3 -2014-10-05 19:00:00,0.22,0.33299999999999996,0.3 -2014-10-05 20:00:00,0.22,0.33399999999999996,0.3 -2014-10-05 21:00:00,0.22,0.33399999999999996,0.3 -2014-10-05 22:00:00,0.22,0.33399999999999996,0.3 -2014-10-05 23:00:00,0.22,0.33399999999999996,0.3 -2014-10-06 00:00:00,0.22,0.33299999999999996,0.3 -2014-10-06 01:00:00,0.22,0.332,0.3 -2014-10-06 02:00:00,0.22,0.332,0.3 -2014-10-06 03:00:00,0.22,0.332,0.3 -2014-10-06 04:00:00,0.22,0.332,0.3 -2014-10-06 05:00:00,0.22,0.331,0.3 -2014-10-06 06:00:00,0.22,0.331,0.3 -2014-10-06 07:00:00,0.22,0.331,0.3 -2014-10-06 08:00:00,0.22,0.331,0.3 -2014-10-06 09:00:00,0.22,0.331,0.3 -2014-10-06 10:00:00,0.22,0.331,0.3 -2014-10-06 11:00:00,0.225,0.33,0.3 -2014-10-06 12:00:00,0.222,0.32899999999999996,0.3 -2014-10-06 13:00:00,0.221,0.327,0.3 -2014-10-06 14:00:00,0.221,0.327,0.3 -2014-10-06 15:00:00,0.221,0.327,0.3 -2014-10-06 16:00:00,0.221,0.327,0.3 -2014-10-06 17:00:00,0.221,0.327,0.3 -2014-10-06 18:00:00,0.221,0.327,0.3 -2014-10-06 19:00:00,0.22,0.327,0.299 -2014-10-06 20:00:00,0.221,0.327,0.3 -2014-10-06 21:00:00,0.22,0.327,0.3 -2014-10-06 22:00:00,0.22,0.327,0.3 -2014-10-06 23:00:00,0.22,0.327,0.3 -2014-10-07 00:00:00,0.22,0.325,0.3 -2014-10-07 01:00:00,0.22,0.324,0.3 -2014-10-07 02:00:00,0.22,0.326,0.3 -2014-10-07 03:00:00,0.22,0.33,0.3 -2014-10-07 04:00:00,0.22,0.332,0.302 -2014-10-07 05:00:00,0.218,0.33399999999999996,0.305 -2014-10-07 06:00:00,0.218,0.336,0.305 -2014-10-07 07:00:00,0.218,0.33799999999999997,0.305 -2014-10-07 08:00:00,0.218,0.33799999999999997,0.305 -2014-10-07 09:00:00,0.218,0.33799999999999997,0.305 -2014-10-07 10:00:00,0.21899999999999997,0.336,0.305 -2014-10-07 11:00:00,0.22,0.336,0.305 -2014-10-07 12:00:00,0.22,0.33799999999999997,0.305 -2014-10-07 13:00:00,0.22,0.33799999999999997,0.305 -2014-10-07 14:00:00,0.222,0.33899999999999997,0.304 -2014-10-07 15:00:00,0.222,0.33899999999999997,0.303 -2014-10-07 16:00:00,0.223,0.34,0.303 -2014-10-07 17:00:00,0.223,0.341,0.302 -2014-10-07 18:00:00,0.223,0.341,0.303 -2014-10-07 19:00:00,0.221,0.341,0.307 -2014-10-07 20:00:00,0.22699999999999998,0.341,0.307 -2014-10-07 21:00:00,0.228,0.341,0.308 -2014-10-07 22:00:00,0.22899999999999998,0.341,0.308 -2014-10-07 23:00:00,0.22899999999999998,0.34,0.308 -2014-10-08 00:00:00,0.22899999999999998,0.33899999999999997,0.308 -2014-10-08 01:00:00,0.22899999999999998,0.33899999999999997,0.308 -2014-10-08 02:00:00,0.23,0.33899999999999997,0.308 -2014-10-08 03:00:00,0.23,0.33799999999999997,0.308 -2014-10-08 04:00:00,0.23,0.33799999999999997,0.308 -2014-10-08 05:00:00,0.23,0.33799999999999997,0.308 -2014-10-08 06:00:00,0.23,0.336,0.308 -2014-10-08 07:00:00,0.23,0.336,0.308 -2014-10-08 08:00:00,0.23,0.33399999999999996,0.308 -2014-10-08 09:00:00,0.23,0.33399999999999996,0.308 -2014-10-08 10:00:00,0.23,0.33399999999999996,0.308 -2014-10-08 11:00:00,0.231,0.33399999999999996,0.308 -2014-10-08 12:00:00,0.231,0.332,0.308 -2014-10-08 13:00:00,0.231,0.332,0.309 -2014-10-08 14:00:00,0.239,0.332,0.312 -2014-10-08 15:00:00,0.242,0.331,0.332 -2014-10-08 16:00:00,0.243,0.331,0.33299999999999996 -2014-10-08 17:00:00,0.243,0.331,0.332 -2014-10-08 18:00:00,0.243,0.331,0.332 -2014-10-08 19:00:00,0.243,0.331,0.331 -2014-10-08 20:00:00,0.243,0.331,0.33 -2014-10-08 21:00:00,0.243,0.331,0.32899999999999996 -2014-10-08 22:00:00,0.242,0.331,0.32799999999999996 -2014-10-08 23:00:00,0.242,0.331,0.327 -2014-10-09 00:00:00,0.243,0.331,0.327 -2014-10-09 01:00:00,0.243,0.33,0.326 -2014-10-09 02:00:00,0.244,0.32899999999999996,0.325 -2014-10-09 03:00:00,0.245,0.32899999999999996,0.324 -2014-10-09 04:00:00,0.247,0.32899999999999996,0.32299999999999995 -2014-10-09 05:00:00,0.248,0.32899999999999996,0.32299999999999995 -2014-10-09 06:00:00,0.25,0.327,0.32899999999999996 -2014-10-09 07:00:00,0.252,0.327,0.337 -2014-10-09 08:00:00,0.252,0.327,0.34 -2014-10-09 09:00:00,0.251,0.327,0.33899999999999997 -2014-10-09 10:00:00,0.25,0.327,0.33799999999999997 -2014-10-09 11:00:00,0.25,0.327,0.33799999999999997 -2014-10-09 12:00:00,0.251,0.326,0.337 -2014-10-09 13:00:00,0.252,0.326,0.33799999999999997 -2014-10-09 14:00:00,0.252,0.326,0.33899999999999997 -2014-10-09 15:00:00,0.251,0.326,0.33899999999999997 -2014-10-09 16:00:00,0.254,0.326,0.34 -2014-10-09 17:00:00,0.254,0.325,0.342 -2014-10-09 18:00:00,0.254,0.324,0.342 -2014-10-09 19:00:00,0.258,0.324,0.34600000000000003 -2014-10-09 20:00:00,0.257,0.324,0.349 -2014-10-09 21:00:00,0.255,0.324,0.349 -2014-10-09 22:00:00,0.253,0.324,0.348 -2014-10-09 23:00:00,0.252,0.324,0.34700000000000003 -2014-10-10 00:00:00,0.25,0.324,0.34600000000000003 -2014-10-10 01:00:00,0.25,0.324,0.34600000000000003 -2014-10-10 02:00:00,0.249,0.324,0.345 -2014-10-10 03:00:00,0.248,0.324,0.344 -2014-10-10 04:00:00,0.247,0.32299999999999995,0.344 -2014-10-10 05:00:00,0.24600000000000002,0.322,0.344 -2014-10-10 06:00:00,0.24600000000000002,0.324,0.34299999999999997 -2014-10-10 07:00:00,0.245,0.324,0.34299999999999997 -2014-10-10 08:00:00,0.245,0.326,0.342 -2014-10-10 09:00:00,0.245,0.326,0.342 -2014-10-10 10:00:00,0.244,0.326,0.341 -2014-10-10 11:00:00,0.244,0.326,0.341 -2014-10-10 12:00:00,0.244,0.326,0.34 -2014-10-10 13:00:00,0.244,0.327,0.33899999999999997 -2014-10-10 14:00:00,0.245,0.32899999999999996,0.33799999999999997 -2014-10-10 15:00:00,0.24600000000000002,0.331,0.337 -2014-10-10 16:00:00,0.247,0.326,0.337 -2014-10-10 17:00:00,0.248,0.327,0.336 -2014-10-10 18:00:00,0.248,0.33299999999999996,0.336 -2014-10-10 19:00:00,0.248,0.33799999999999997,0.335 -2014-10-10 20:00:00,0.247,0.33899999999999997,0.335 -2014-10-10 21:00:00,0.247,0.341,0.335 -2014-10-10 22:00:00,0.247,0.341,0.33 -2014-10-10 23:00:00,0.247,0.341,0.32899999999999996 -2014-10-11 00:00:00,0.247,0.34,0.32799999999999996 -2014-10-11 01:00:00,0.24600000000000002,0.33899999999999997,0.32799999999999996 -2014-10-11 02:00:00,0.245,0.33799999999999997,0.32799999999999996 -2014-10-11 03:00:00,0.244,0.33799999999999997,0.32899999999999996 -2014-10-11 04:00:00,0.244,0.33799999999999997,0.32899999999999996 -2014-10-11 05:00:00,0.245,0.337,0.32799999999999996 -2014-10-11 06:00:00,0.245,0.336,0.32799999999999996 -2014-10-11 07:00:00,0.245,0.335,0.32799999999999996 -2014-10-11 08:00:00,0.245,0.33399999999999996,0.32799999999999996 -2014-10-11 09:00:00,0.245,0.33399999999999996,0.32799999999999996 -2014-10-11 10:00:00,0.245,0.33299999999999996,0.32799999999999996 -2014-10-11 11:00:00,0.245,0.33299999999999996,0.327 -2014-10-11 12:00:00,0.245,0.332,0.327 -2014-10-11 13:00:00,0.245,0.331,0.327 -2014-10-11 14:00:00,0.24600000000000002,0.331,0.327 -2014-10-11 15:00:00,0.24600000000000002,0.332,0.326 -2014-10-11 16:00:00,0.247,0.332,0.326 -2014-10-11 17:00:00,0.247,0.332,0.326 -2014-10-11 18:00:00,0.248,0.33299999999999996,0.325 -2014-10-11 19:00:00,0.248,0.33399999999999996,0.325 -2014-10-11 20:00:00,0.248,0.33399999999999996,0.325 -2014-10-11 21:00:00,0.247,0.33399999999999996,0.325 -2014-10-11 22:00:00,0.247,0.33399999999999996,0.324 -2014-10-11 23:00:00,0.247,0.33399999999999996,0.324 -2014-10-12 00:00:00,0.247,0.33299999999999996,0.32299999999999995 -2014-10-12 01:00:00,0.24600000000000002,0.332,0.32299999999999995 -2014-10-12 02:00:00,0.24600000000000002,0.332,0.32299999999999995 -2014-10-12 03:00:00,0.24600000000000002,0.332,0.32299999999999995 -2014-10-12 04:00:00,0.24600000000000002,0.332,0.322 -2014-10-12 05:00:00,0.24600000000000002,0.331,0.322 -2014-10-12 06:00:00,0.24600000000000002,0.331,0.322 -2014-10-12 07:00:00,0.24600000000000002,0.33,0.322 -2014-10-12 08:00:00,0.245,0.32899999999999996,0.322 -2014-10-12 09:00:00,0.245,0.32899999999999996,0.321 -2014-10-12 10:00:00,0.245,0.32899999999999996,0.321 -2014-10-12 11:00:00,0.245,0.327,0.321 -2014-10-12 12:00:00,0.245,0.327,0.32 -2014-10-12 13:00:00,0.245,0.327,0.32 -2014-10-12 14:00:00,0.24600000000000002,0.327,0.319 -2014-10-12 15:00:00,0.24600000000000002,0.327,0.319 -2014-10-12 16:00:00,0.24600000000000002,0.327,0.319 -2014-10-12 17:00:00,0.245,0.327,0.319 -2014-10-12 18:00:00,0.245,0.327,0.318 -2014-10-12 19:00:00,0.245,0.327,0.319 -2014-10-12 20:00:00,0.245,0.327,0.32 -2014-10-12 21:00:00,0.245,0.327,0.321 -2014-10-12 22:00:00,0.248,0.327,0.322 -2014-10-12 23:00:00,0.25,0.326,0.322 -2014-10-13 00:00:00,0.25,0.326,0.322 -2014-10-13 01:00:00,0.25,0.326,0.322 -2014-10-13 02:00:00,0.25,0.326,0.322 -2014-10-13 03:00:00,0.25,0.326,0.32299999999999995 -2014-10-13 04:00:00,0.25,0.326,0.32299999999999995 -2014-10-13 05:00:00,0.249,0.326,0.32299999999999995 -2014-10-13 06:00:00,0.249,0.326,0.324 -2014-10-13 07:00:00,0.248,0.326,0.324 -2014-10-13 08:00:00,0.249,0.325,0.324 -2014-10-13 09:00:00,0.249,0.324,0.325 -2014-10-13 10:00:00,0.249,0.324,0.325 -2014-10-13 11:00:00,0.249,0.324,0.325 -2014-10-13 12:00:00,0.249,0.324,0.326 -2014-10-13 13:00:00,0.249,0.324,0.326 -2014-10-13 14:00:00,0.249,0.324,0.327 -2014-10-13 15:00:00,0.249,0.324,0.327 -2014-10-13 16:00:00,0.249,0.324,0.327 -2014-10-13 17:00:00,0.248,0.324,0.327 -2014-10-13 18:00:00,0.248,0.324,0.327 -2014-10-13 19:00:00,0.248,0.324,0.327 -2014-10-13 20:00:00,0.248,0.324,0.327 -2014-10-13 21:00:00,0.248,0.324,0.326 -2014-10-13 22:00:00,0.247,0.324,0.326 -2014-10-13 23:00:00,0.247,0.324,0.326 -2014-10-14 00:00:00,0.247,0.324,0.326 -2014-10-14 01:00:00,0.247,0.324,0.325 -2014-10-14 02:00:00,0.24600000000000002,0.324,0.325 -2014-10-14 03:00:00,0.24600000000000002,0.317,0.325 -2014-10-14 04:00:00,0.24600000000000002,0.314,0.325 -2014-10-14 05:00:00,0.24600000000000002,0.316,0.324 -2014-10-14 06:00:00,0.24600000000000002,0.318,0.324 -2014-10-14 07:00:00,0.24600000000000002,0.32,0.324 -2014-10-14 08:00:00,0.245,0.321,0.324 -2014-10-14 09:00:00,0.245,0.322,0.32299999999999995 -2014-10-14 10:00:00,0.245,0.322,0.32299999999999995 -2014-10-14 11:00:00,0.245,0.32299999999999995,0.32299999999999995 -2014-10-14 12:00:00,0.245,0.32299999999999995,0.322 -2014-10-14 13:00:00,0.245,0.324,0.322 -2014-10-14 14:00:00,0.24600000000000002,0.326,0.321 -2014-10-14 15:00:00,0.24600000000000002,0.327,0.321 -2014-10-14 16:00:00,0.24600000000000002,0.32899999999999996,0.32 -2014-10-14 17:00:00,0.24600000000000002,0.331,0.32 -2014-10-14 18:00:00,0.24600000000000002,0.331,0.32 -2014-10-14 19:00:00,0.245,0.331,0.319 -2014-10-14 20:00:00,0.245,0.331,0.319 -2014-10-14 21:00:00,0.245,0.331,0.319 -2014-10-14 22:00:00,0.245,0.331,0.319 -2014-10-14 23:00:00,0.245,0.331,0.319 -2014-10-15 00:00:00,0.245,0.331,0.319 -2014-10-15 01:00:00,0.245,0.331,0.319 -2014-10-15 02:00:00,0.245,0.331,0.319 -2014-10-15 03:00:00,0.245,0.33,0.318 -2014-10-15 04:00:00,0.244,0.32899999999999996,0.318 -2014-10-15 05:00:00,0.244,0.32899999999999996,0.318 -2014-10-15 06:00:00,0.244,0.32899999999999996,0.318 -2014-10-15 07:00:00,0.244,0.32799999999999996,0.318 -2014-10-15 08:00:00,0.244,0.327,0.318 -2014-10-15 09:00:00,0.244,0.327,0.318 -2014-10-15 10:00:00,0.244,0.327,0.318 -2014-10-15 11:00:00,0.244,0.327,0.318 -2014-10-15 12:00:00,0.244,0.327,0.318 -2014-10-15 13:00:00,0.243,0.327,0.318 -2014-10-15 14:00:00,0.243,0.326,0.317 -2014-10-15 15:00:00,0.244,0.326,0.317 -2014-10-15 16:00:00,0.244,0.326,0.316 -2014-10-15 17:00:00,0.243,0.326,0.316 -2014-10-15 18:00:00,0.244,0.326,0.316 -2014-10-15 19:00:00,0.243,0.326,0.316 -2014-10-15 20:00:00,0.243,0.324,0.316 -2014-10-15 21:00:00,0.243,0.319,0.316 -2014-10-15 22:00:00,0.243,0.32,0.316 -2014-10-15 23:00:00,0.243,0.321,0.316 -2014-10-16 00:00:00,0.243,0.322,0.317 -2014-10-16 01:00:00,0.242,0.318,0.319 -2014-10-16 02:00:00,0.243,0.319,0.32 -2014-10-16 03:00:00,0.244,0.316,0.32 -2014-10-16 04:00:00,0.244,0.313,0.32 -2014-10-16 05:00:00,0.245,0.315,0.32 -2014-10-16 06:00:00,0.245,0.316,0.32 -2014-10-16 07:00:00,0.245,0.319,0.32 -2014-10-16 08:00:00,0.244,0.321,0.32 -2014-10-16 09:00:00,0.244,0.322,0.32 -2014-10-16 10:00:00,0.245,0.324,0.32 -2014-10-16 11:00:00,0.245,0.324,0.32 -2014-10-16 12:00:00,0.24600000000000002,0.324,0.32 -2014-10-16 13:00:00,0.245,0.324,0.321 -2014-10-16 14:00:00,0.24600000000000002,0.319,0.322 -2014-10-16 15:00:00,0.248,0.321,0.324 -2014-10-16 16:00:00,0.248,0.322,0.326 -2014-10-16 17:00:00,0.247,0.32299999999999995,0.327 -2014-10-16 18:00:00,0.247,0.327,0.32799999999999996 -2014-10-16 19:00:00,0.24600000000000002,0.331,0.32799999999999996 -2014-10-16 20:00:00,0.24600000000000002,0.33299999999999996,0.32799999999999996 -2014-10-16 21:00:00,0.24600000000000002,0.33399999999999996,0.32899999999999996 -2014-10-16 22:00:00,0.245,0.33399999999999996,0.32899999999999996 -2014-10-16 23:00:00,0.245,0.33399999999999996,0.32899999999999996 -2014-10-17 00:00:00,0.245,0.33399999999999996,0.32899999999999996 -2014-10-17 01:00:00,0.245,0.33399999999999996,0.32799999999999996 -2014-10-17 02:00:00,0.245,0.33299999999999996,0.32799999999999996 -2014-10-17 03:00:00,0.245,0.33299999999999996,0.32799999999999996 -2014-10-17 04:00:00,0.244,0.332,0.327 -2014-10-17 05:00:00,0.244,0.332,0.327 -2014-10-17 06:00:00,0.244,0.332,0.327 -2014-10-17 07:00:00,0.244,0.332,0.327 -2014-10-17 08:00:00,0.244,0.331,0.326 -2014-10-17 09:00:00,0.244,0.331,0.326 -2014-10-17 10:00:00,0.244,0.331,0.326 -2014-10-17 11:00:00,0.244,0.331,0.325 -2014-10-17 12:00:00,0.244,0.331,0.325 -2014-10-17 13:00:00,0.244,0.33,0.325 -2014-10-17 14:00:00,0.245,0.32899999999999996,0.324 -2014-10-17 15:00:00,0.245,0.32899999999999996,0.324 -2014-10-17 16:00:00,0.245,0.32899999999999996,0.32299999999999995 -2014-10-17 17:00:00,0.24600000000000002,0.32899999999999996,0.32299999999999995 -2014-10-17 18:00:00,0.24600000000000002,0.32899999999999996,0.322 -2014-10-17 19:00:00,0.24600000000000002,0.32799999999999996,0.322 -2014-10-17 20:00:00,0.24600000000000002,0.327,0.322 -2014-10-17 21:00:00,0.24600000000000002,0.327,0.322 -2014-10-17 22:00:00,0.245,0.327,0.322 -2014-10-17 23:00:00,0.245,0.327,0.321 -2014-10-18 00:00:00,0.245,0.327,0.321 -2014-10-18 01:00:00,0.245,0.327,0.321 -2014-10-18 02:00:00,0.245,0.327,0.321 -2014-10-18 03:00:00,0.244,0.327,0.321 -2014-10-18 04:00:00,0.244,0.327,0.321 -2014-10-18 05:00:00,0.244,0.327,0.321 -2014-10-18 06:00:00,0.243,0.326,0.321 -2014-10-18 07:00:00,0.243,0.326,0.321 -2014-10-18 08:00:00,0.243,0.326,0.321 -2014-10-18 09:00:00,0.243,0.326,0.321 -2014-10-18 10:00:00,0.242,0.326,0.321 -2014-10-18 11:00:00,0.242,0.326,0.321 -2014-10-18 12:00:00,0.243,0.325,0.32 -2014-10-18 13:00:00,0.243,0.324,0.32 -2014-10-18 14:00:00,0.243,0.324,0.319 -2014-10-18 15:00:00,0.243,0.324,0.319 -2014-10-18 16:00:00,0.244,0.324,0.319 -2014-10-18 17:00:00,0.243,0.324,0.318 -2014-10-18 18:00:00,0.243,0.324,0.318 -2014-10-18 19:00:00,0.243,0.324,0.318 -2014-10-18 20:00:00,0.243,0.324,0.318 -2014-10-18 21:00:00,0.243,0.324,0.318 -2014-10-18 22:00:00,0.243,0.324,0.318 -2014-10-18 23:00:00,0.243,0.324,0.318 -2014-10-19 00:00:00,0.243,0.324,0.318 -2014-10-19 01:00:00,0.243,0.324,0.318 -2014-10-19 02:00:00,0.242,0.324,0.318 -2014-10-19 03:00:00,0.242,0.32299999999999995,0.318 -2014-10-19 04:00:00,0.242,0.32299999999999995,0.318 -2014-10-19 05:00:00,0.242,0.32299999999999995,0.318 -2014-10-19 06:00:00,0.242,0.32299999999999995,0.318 -2014-10-19 07:00:00,0.242,0.322,0.318 -2014-10-19 08:00:00,0.242,0.322,0.318 -2014-10-19 09:00:00,0.24100000000000002,0.322,0.318 -2014-10-19 10:00:00,0.24100000000000002,0.322,0.318 -2014-10-19 11:00:00,0.24100000000000002,0.322,0.318 -2014-10-19 12:00:00,0.24100000000000002,0.322,0.318 -2014-10-19 13:00:00,0.242,0.324,0.317 -2014-10-19 14:00:00,0.242,0.324,0.317 -2014-10-19 15:00:00,0.242,0.324,0.317 -2014-10-19 16:00:00,0.242,0.326,0.317 -2014-10-19 17:00:00,0.242,0.326,0.317 -2014-10-19 18:00:00,0.242,0.326,0.317 -2014-10-19 19:00:00,0.242,0.326,0.317 -2014-10-19 20:00:00,0.24100000000000002,0.326,0.317 -2014-10-19 21:00:00,0.24100000000000002,0.326,0.317 -2014-10-19 22:00:00,0.24100000000000002,0.326,0.317 -2014-10-19 23:00:00,0.24100000000000002,0.327,0.317 -2014-10-20 00:00:00,0.239,0.327,0.319 -2014-10-20 01:00:00,0.23800000000000002,0.327,0.321 -2014-10-20 02:00:00,0.239,0.327,0.321 -2014-10-20 03:00:00,0.24,0.327,0.321 -2014-10-20 04:00:00,0.24,0.326,0.321 -2014-10-20 05:00:00,0.239,0.326,0.321 -2014-10-20 06:00:00,0.239,0.326,0.321 -2014-10-20 07:00:00,0.239,0.326,0.321 -2014-10-20 08:00:00,0.239,0.326,0.321 -2014-10-20 09:00:00,0.239,0.326,0.321 -2014-10-20 10:00:00,0.239,0.326,0.321 -2014-10-20 11:00:00,0.24,0.326,0.32 -2014-10-20 12:00:00,0.242,0.326,0.32 -2014-10-20 13:00:00,0.243,0.326,0.319 -2014-10-20 14:00:00,0.244,0.326,0.318 -2014-10-20 15:00:00,0.244,0.326,0.318 -2014-10-20 16:00:00,0.244,0.326,0.317 -2014-10-20 17:00:00,0.244,0.326,0.317 -2014-10-20 18:00:00,0.244,0.325,0.317 -2014-10-20 19:00:00,0.244,0.325,0.317 -2014-10-20 20:00:00,0.244,0.326,0.317 -2014-10-20 21:00:00,0.244,0.325,0.317 -2014-10-20 22:00:00,0.244,0.324,0.317 -2014-10-20 23:00:00,0.244,0.324,0.317 -2014-10-21 00:00:00,0.243,0.324,0.317 -2014-10-21 01:00:00,0.243,0.324,0.317 -2014-10-21 02:00:00,0.243,0.324,0.317 -2014-10-21 03:00:00,0.243,0.324,0.317 -2014-10-21 04:00:00,0.243,0.324,0.317 -2014-10-21 05:00:00,0.243,0.324,0.317 -2014-10-21 06:00:00,0.243,0.324,0.317 -2014-10-21 07:00:00,0.243,0.324,0.317 -2014-10-21 08:00:00,0.243,0.324,0.317 -2014-10-21 09:00:00,0.243,0.324,0.317 -2014-10-21 10:00:00,0.243,0.32299999999999995,0.317 -2014-10-21 11:00:00,0.243,0.32299999999999995,0.317 -2014-10-21 12:00:00,0.243,0.32299999999999995,0.317 -2014-10-21 13:00:00,0.243,0.32299999999999995,0.317 -2014-10-21 14:00:00,0.243,0.322,0.316 -2014-10-21 15:00:00,0.242,0.322,0.318 -2014-10-21 16:00:00,0.24,0.322,0.319 -2014-10-21 17:00:00,0.24,0.322,0.32 -2014-10-21 18:00:00,0.239,0.322,0.321 -2014-10-21 19:00:00,0.239,0.322,0.321 -2014-10-21 20:00:00,0.239,0.322,0.321 -2014-10-21 21:00:00,0.239,0.322,0.32 -2014-10-21 22:00:00,0.239,0.322,0.321 -2014-10-21 23:00:00,0.239,0.322,0.321 -2014-10-22 00:00:00,0.24,0.322,0.321 -2014-10-22 01:00:00,0.24,0.322,0.322 -2014-10-22 02:00:00,0.24,0.322,0.322 -2014-10-22 03:00:00,0.24,0.322,0.321 -2014-10-22 04:00:00,0.24,0.321,0.321 -2014-10-22 05:00:00,0.24,0.321,0.321 -2014-10-22 06:00:00,0.24,0.321,0.321 -2014-10-22 07:00:00,0.239,0.321,0.321 -2014-10-22 08:00:00,0.24,0.321,0.321 -2014-10-22 09:00:00,0.24,0.321,0.321 -2014-10-22 10:00:00,0.24,0.321,0.321 -2014-10-22 11:00:00,0.24100000000000002,0.321,0.322 -2014-10-22 12:00:00,0.24100000000000002,0.321,0.321 -2014-10-22 13:00:00,0.24,0.321,0.321 -2014-10-22 14:00:00,0.24100000000000002,0.321,0.321 -2014-10-22 15:00:00,0.24,0.321,0.321 -2014-10-22 16:00:00,0.24100000000000002,0.321,0.32 -2014-10-22 17:00:00,0.243,0.32,0.32 -2014-10-22 18:00:00,0.244,0.32,0.319 -2014-10-22 19:00:00,0.245,0.32,0.319 -2014-10-22 20:00:00,0.245,0.32,0.319 -2014-10-22 21:00:00,0.245,0.32,0.318 -2014-10-22 22:00:00,0.245,0.32,0.318 -2014-10-22 23:00:00,0.245,0.32,0.318 -2014-10-23 00:00:00,0.245,0.319,0.318 -2014-10-23 01:00:00,0.245,0.319,0.318 -2014-10-23 02:00:00,0.245,0.319,0.318 -2014-10-23 03:00:00,0.245,0.319,0.318 -2014-10-23 04:00:00,0.245,0.319,0.318 -2014-10-23 05:00:00,0.245,0.319,0.318 -2014-10-23 06:00:00,0.245,0.319,0.318 -2014-10-23 07:00:00,0.245,0.319,0.318 -2014-10-23 08:00:00,0.245,0.319,0.317 -2014-10-23 09:00:00,0.244,0.319,0.317 -2014-10-23 10:00:00,0.244,0.319,0.317 -2014-10-23 11:00:00,0.244,0.319,0.317 -2014-10-23 12:00:00,0.244,0.319,0.317 -2014-10-23 13:00:00,0.244,0.319,0.317 -2014-10-23 14:00:00,0.244,0.319,0.317 -2014-10-23 15:00:00,0.244,0.319,0.317 -2014-10-23 16:00:00,0.244,0.319,0.316 -2014-10-23 17:00:00,0.244,0.319,0.316 -2014-10-23 18:00:00,0.244,0.319,0.316 -2014-10-23 19:00:00,0.244,0.319,0.316 -2014-10-23 20:00:00,0.244,0.318,0.316 -2014-10-23 21:00:00,0.244,0.318,0.316 -2014-10-23 22:00:00,0.244,0.317,0.316 -2014-10-23 23:00:00,0.244,0.317,0.316 -2014-10-24 00:00:00,0.244,0.317,0.316 -2014-10-24 01:00:00,0.244,0.317,0.316 -2014-10-24 02:00:00,0.243,0.317,0.316 -2014-10-24 03:00:00,0.243,0.317,0.316 -2014-10-24 04:00:00,0.243,0.317,0.316 -2014-10-24 05:00:00,0.243,0.317,0.316 -2014-10-24 06:00:00,0.243,0.317,0.316 -2014-10-24 07:00:00,0.243,0.317,0.316 -2014-10-24 08:00:00,0.243,0.317,0.316 -2014-10-24 09:00:00,0.243,0.317,0.316 -2014-10-24 10:00:00,0.243,0.317,0.316 -2014-10-24 11:00:00,0.243,0.317,0.316 -2014-10-24 12:00:00,0.243,0.317,0.316 -2014-10-24 13:00:00,0.243,0.317,0.316 -2014-10-24 14:00:00,0.243,0.317,0.316 -2014-10-24 15:00:00,0.243,0.317,0.315 -2014-10-24 16:00:00,0.243,0.318,0.315 -2014-10-24 17:00:00,0.243,0.317,0.315 -2014-10-24 18:00:00,0.243,0.317,0.315 -2014-10-24 19:00:00,0.243,0.317,0.315 -2014-10-24 20:00:00,0.242,0.317,0.315 -2014-10-24 21:00:00,0.243,0.317,0.315 -2014-10-24 22:00:00,0.242,0.317,0.315 -2014-10-24 23:00:00,0.242,0.317,0.315 -2014-10-25 00:00:00,0.242,0.317,0.315 -2014-10-25 01:00:00,0.242,0.317,0.315 -2014-10-25 02:00:00,0.242,0.317,0.315 -2014-10-25 03:00:00,0.242,0.317,0.315 -2014-10-25 04:00:00,0.242,0.317,0.315 -2014-10-25 05:00:00,0.242,0.317,0.315 -2014-10-25 06:00:00,0.242,0.318,0.315 -2014-10-25 07:00:00,0.242,0.319,0.317 -2014-10-25 08:00:00,0.244,0.319,0.319 -2014-10-25 09:00:00,0.245,0.319,0.319 -2014-10-25 10:00:00,0.245,0.319,0.318 -2014-10-25 11:00:00,0.245,0.319,0.318 -2014-10-25 12:00:00,0.24600000000000002,0.319,0.318 -2014-10-25 13:00:00,0.24600000000000002,0.319,0.318 -2014-10-25 14:00:00,0.24600000000000002,0.318,0.317 -2014-10-25 15:00:00,0.24600000000000002,0.319,0.317 -2014-10-25 16:00:00,0.24600000000000002,0.319,0.317 -2014-10-25 17:00:00,0.24600000000000002,0.319,0.317 -2014-10-25 18:00:00,0.24600000000000002,0.319,0.317 -2014-10-25 19:00:00,0.24600000000000002,0.319,0.317 -2014-10-25 20:00:00,0.24600000000000002,0.319,0.317 -2014-10-25 21:00:00,0.245,0.319,0.317 -2014-10-25 22:00:00,0.245,0.319,0.317 -2014-10-25 23:00:00,0.245,0.319,0.317 -2014-10-26 00:00:00,0.245,0.318,0.317 -2014-10-26 01:00:00,0.245,0.318,0.317 -2014-10-26 02:00:00,0.245,0.317,0.317 -2014-10-26 03:00:00,0.245,0.317,0.317 -2014-10-26 04:00:00,0.245,0.317,0.317 -2014-10-26 05:00:00,0.245,0.317,0.317 -2014-10-26 06:00:00,0.245,0.317,0.316 -2014-10-26 07:00:00,0.245,0.317,0.316 -2014-10-26 08:00:00,0.245,0.317,0.316 -2014-10-26 09:00:00,0.244,0.317,0.316 -2014-10-26 10:00:00,0.244,0.317,0.316 -2014-10-26 11:00:00,0.244,0.317,0.316 -2014-10-26 12:00:00,0.244,0.318,0.316 -2014-10-26 13:00:00,0.244,0.318,0.316 -2014-10-26 14:00:00,0.244,0.317,0.316 -2014-10-26 15:00:00,0.244,0.317,0.315 -2014-10-26 16:00:00,0.244,0.317,0.315 -2014-10-26 17:00:00,0.244,0.317,0.315 -2014-10-26 18:00:00,0.244,0.317,0.315 -2014-10-26 19:00:00,0.244,0.317,0.315 -2014-10-26 20:00:00,0.244,0.317,0.315 -2014-10-26 21:00:00,0.244,0.317,0.315 -2014-10-26 22:00:00,0.244,0.317,0.315 -2014-10-26 23:00:00,0.243,0.317,0.315 -2014-10-27 00:00:00,0.243,0.317,0.315 -2014-10-27 01:00:00,0.243,0.326,0.315 -2014-10-27 02:00:00,0.243,0.33399999999999996,0.315 -2014-10-27 03:00:00,0.243,0.33399999999999996,0.315 -2014-10-27 04:00:00,0.243,0.33399999999999996,0.315 -2014-10-27 05:00:00,0.243,0.33399999999999996,0.315 -2014-10-27 06:00:00,0.243,0.33299999999999996,0.315 -2014-10-27 07:00:00,0.243,0.33299999999999996,0.315 -2014-10-27 08:00:00,0.243,0.33399999999999996,0.315 -2014-10-27 09:00:00,0.243,0.33399999999999996,0.315 -2014-10-27 10:00:00,0.243,0.332,0.315 -2014-10-27 11:00:00,0.243,0.318,0.315 -2014-10-27 12:00:00,0.243,0.317,0.315 -2014-10-27 13:00:00,0.243,0.317,0.314 -2014-10-27 14:00:00,0.243,0.317,0.314 -2014-10-27 15:00:00,0.243,0.317,0.314 -2014-10-27 16:00:00,0.243,0.317,0.314 -2014-10-27 17:00:00,0.243,0.317,0.314 -2014-10-27 18:00:00,0.243,0.317,0.314 -2014-10-27 19:00:00,0.242,0.317,0.314 -2014-10-27 20:00:00,0.242,0.317,0.314 -2014-10-27 21:00:00,0.242,0.317,0.314 -2014-10-27 22:00:00,0.242,0.317,0.314 -2014-10-27 23:00:00,0.242,0.317,0.314 -2014-10-28 00:00:00,0.242,0.317,0.314 -2014-10-28 01:00:00,0.242,0.317,0.314 -2014-10-28 02:00:00,0.242,0.317,0.314 -2014-10-28 03:00:00,0.242,0.317,0.313 -2014-10-28 04:00:00,0.242,0.317,0.313 -2014-10-28 05:00:00,0.242,0.317,0.313 -2014-10-28 06:00:00,0.242,0.317,0.313 -2014-10-28 07:00:00,0.242,0.317,0.313 -2014-10-28 08:00:00,0.242,0.316,0.313 -2014-10-28 09:00:00,0.242,0.316,0.313 -2014-10-28 10:00:00,0.242,0.316,0.313 -2014-10-28 11:00:00,0.242,0.316,0.313 -2014-10-28 12:00:00,0.242,0.316,0.313 -2014-10-28 13:00:00,0.242,0.316,0.313 -2014-10-28 14:00:00,0.242,0.316,0.313 -2014-10-28 15:00:00,0.242,0.316,0.313 -2014-10-28 16:00:00,0.24100000000000002,0.316,0.313 -2014-10-28 17:00:00,0.24100000000000002,0.316,0.313 -2014-10-28 18:00:00,0.24100000000000002,0.316,0.313 -2014-10-28 19:00:00,0.24100000000000002,0.317,0.313 -2014-10-28 20:00:00,0.24100000000000002,0.316,0.313 -2014-10-28 21:00:00,0.24100000000000002,0.316,0.313 -2014-10-28 22:00:00,0.24100000000000002,0.316,0.313 -2014-10-28 23:00:00,0.24100000000000002,0.316,0.313 -2014-10-29 00:00:00,0.24100000000000002,0.316,0.313 -2014-10-29 01:00:00,0.24100000000000002,0.315,0.313 -2014-10-29 02:00:00,0.24100000000000002,0.315,0.313 -2014-10-29 03:00:00,0.24100000000000002,0.314,0.313 -2014-10-29 04:00:00,0.24100000000000002,0.314,0.313 -2014-10-29 05:00:00,0.24100000000000002,0.314,0.313 -2014-10-29 06:00:00,0.24100000000000002,0.314,0.313 -2014-10-29 07:00:00,0.24100000000000002,0.314,0.313 -2014-10-29 08:00:00,0.24100000000000002,0.314,0.313 -2014-10-29 09:00:00,0.24100000000000002,0.314,0.313 -2014-10-29 10:00:00,0.24100000000000002,0.315,0.313 -2014-10-29 11:00:00,0.24100000000000002,0.315,0.313 -2014-10-29 12:00:00,0.24100000000000002,0.315,0.313 -2014-10-29 13:00:00,0.24100000000000002,0.316,0.313 -2014-10-29 14:00:00,0.24100000000000002,0.317,0.313 -2014-10-29 15:00:00,0.24100000000000002,0.317,0.312 -2014-10-29 16:00:00,0.24100000000000002,0.317,0.312 -2014-10-29 17:00:00,0.24100000000000002,0.319,0.312 -2014-10-29 18:00:00,0.24100000000000002,0.319,0.312 -2014-10-29 19:00:00,0.24100000000000002,0.32,0.313 -2014-10-29 20:00:00,0.24100000000000002,0.321,0.313 -2014-10-29 21:00:00,0.24100000000000002,0.321,0.313 -2014-10-29 22:00:00,0.24100000000000002,0.321,0.313 -2014-10-29 23:00:00,0.24100000000000002,0.321,0.313 -2014-10-30 00:00:00,0.24100000000000002,0.322,0.313 -2014-10-30 01:00:00,0.24100000000000002,0.322,0.313 -2014-10-30 02:00:00,0.24100000000000002,0.322,0.313 -2014-10-30 03:00:00,0.24100000000000002,0.322,0.313 -2014-10-30 04:00:00,0.24100000000000002,0.32299999999999995,0.313 -2014-10-30 05:00:00,0.24100000000000002,0.324,0.313 -2014-10-30 06:00:00,0.24100000000000002,0.324,0.313 -2014-10-30 07:00:00,0.24100000000000002,0.322,0.313 -2014-10-30 08:00:00,0.24100000000000002,0.326,0.313 -2014-10-30 09:00:00,0.24100000000000002,0.331,0.313 -2014-10-30 10:00:00,0.24100000000000002,0.336,0.313 -2014-10-30 11:00:00,0.24100000000000002,0.33899999999999997,0.313 -2014-10-30 12:00:00,0.24100000000000002,0.341,0.313 -2014-10-30 13:00:00,0.24100000000000002,0.341,0.313 -2014-10-30 14:00:00,0.24100000000000002,0.341,0.313 -2014-10-30 15:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-30 16:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-30 17:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-30 18:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-30 19:00:00,0.24100000000000002,0.344,0.313 -2014-10-30 20:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-30 21:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-30 22:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-30 23:00:00,0.24100000000000002,0.34299999999999997,0.313 -2014-10-31 00:00:00,0.24100000000000002,0.342,0.313 -2014-10-31 01:00:00,0.24100000000000002,0.341,0.313 -2014-10-31 02:00:00,0.24100000000000002,0.341,0.313 -2014-10-31 03:00:00,0.24100000000000002,0.341,0.313 -2014-10-31 04:00:00,0.24100000000000002,0.341,0.313 -2014-10-31 05:00:00,0.24100000000000002,0.341,0.313 -2014-10-31 06:00:00,0.24100000000000002,0.34,0.313 -2014-10-31 07:00:00,0.24100000000000002,0.33899999999999997,0.313 -2014-10-31 08:00:00,0.24100000000000002,0.33899999999999997,0.313 -2014-10-31 09:00:00,0.24100000000000002,0.33899999999999997,0.313 -2014-10-31 10:00:00,0.24100000000000002,0.33799999999999997,0.313 -2014-10-31 11:00:00,0.24100000000000002,0.33799999999999997,0.313 -2014-10-31 12:00:00,0.24100000000000002,0.33799999999999997,0.313 -2014-10-31 13:00:00,0.24100000000000002,0.33799999999999997,0.313 -2014-10-31 14:00:00,0.24100000000000002,0.337,0.312 -2014-10-31 15:00:00,0.24100000000000002,0.336,0.312 -2014-10-31 16:00:00,0.24100000000000002,0.336,0.312 -2014-10-31 17:00:00,0.24100000000000002,0.336,0.312 -2014-10-31 18:00:00,0.24100000000000002,0.33399999999999996,0.312 -2014-10-31 19:00:00,0.24100000000000002,0.33399999999999996,0.312 -2014-10-31 20:00:00,0.24100000000000002,0.33399999999999996,0.312 -2014-10-31 21:00:00,0.24100000000000002,0.33399999999999996,0.312 -2014-10-31 22:00:00,0.24100000000000002,0.33399999999999996,0.312 -2014-10-31 23:00:00,0.24100000000000002,0.33399999999999996,0.312 -2014-11-01 00:00:00,0.24,0.33399999999999996,0.312 -2014-11-01 01:00:00,0.24,0.33399999999999996,0.312 -2014-11-01 02:00:00,0.24,0.33399999999999996,0.312 -2014-11-01 03:00:00,0.24,0.33399999999999996,0.312 -2014-11-01 04:00:00,0.24,0.33299999999999996,0.312 -2014-11-01 05:00:00,0.24,0.332,0.312 -2014-11-01 06:00:00,0.24,0.332,0.312 -2014-11-01 07:00:00,0.24,0.332,0.312 -2014-11-01 08:00:00,0.24,0.332,0.312 -2014-11-01 09:00:00,0.24,0.332,0.312 -2014-11-01 10:00:00,0.24,0.331,0.312 -2014-11-01 11:00:00,0.24,0.331,0.312 -2014-11-01 12:00:00,0.24,0.33,0.312 -2014-11-01 13:00:00,0.24,0.32899999999999996,0.312 -2014-11-01 14:00:00,0.24,0.32899999999999996,0.312 -2014-11-01 15:00:00,0.24,0.32899999999999996,0.311 -2014-11-01 16:00:00,0.24,0.32899999999999996,0.311 -2014-11-01 17:00:00,0.24,0.32899999999999996,0.311 -2014-11-01 18:00:00,0.24,0.32899999999999996,0.311 -2014-11-01 19:00:00,0.24,0.32899999999999996,0.311 -2014-11-01 20:00:00,0.24,0.32799999999999996,0.311 -2014-11-01 21:00:00,0.24,0.327,0.311 -2014-11-01 22:00:00,0.24,0.32799999999999996,0.311 -2014-11-01 23:00:00,0.24,0.327,0.311 -2014-11-02 00:00:00,0.24,0.327,0.311 -2014-11-02 01:00:00,0.24,0.327,0.312 -2014-11-02 02:00:00,0.24,0.327,0.312 -2014-11-02 03:00:00,0.24,0.327,0.312 -2014-11-02 04:00:00,0.24,0.327,0.312 -2014-11-02 05:00:00,0.24,0.327,0.312 -2014-11-02 06:00:00,0.24,0.327,0.312 -2014-11-02 07:00:00,0.24,0.327,0.312 -2014-11-02 08:00:00,0.24,0.327,0.312 -2014-11-02 09:00:00,0.24,0.327,0.312 -2014-11-02 10:00:00,0.24,0.327,0.312 -2014-11-02 11:00:00,0.24,0.327,0.312 -2014-11-02 12:00:00,0.24,0.327,0.312 -2014-11-02 13:00:00,0.24,0.327,0.312 -2014-11-02 14:00:00,0.24,0.327,0.311 -2014-11-02 15:00:00,0.24,0.327,0.311 -2014-11-02 16:00:00,0.24,0.327,0.311 -2014-11-02 17:00:00,0.24,0.327,0.311 -2014-11-02 18:00:00,0.24,0.327,0.311 -2014-11-02 19:00:00,0.24,0.327,0.311 -2014-11-02 20:00:00,0.24,0.327,0.311 -2014-11-02 21:00:00,0.24,0.327,0.311 -2014-11-02 22:00:00,0.24,0.327,0.311 -2014-11-02 23:00:00,0.24,0.327,0.311 -2014-11-03 00:00:00,0.24,0.327,0.311 -2014-11-03 01:00:00,0.24,0.327,0.311 -2014-11-03 02:00:00,0.24,0.327,0.311 -2014-11-03 03:00:00,0.24,0.327,0.311 -2014-11-03 04:00:00,0.24,0.327,0.311 -2014-11-03 05:00:00,0.24,0.326,0.312 -2014-11-03 06:00:00,0.24,0.326,0.312 -2014-11-03 07:00:00,0.24,0.326,0.311 -2014-11-03 08:00:00,0.24,0.326,0.311 -2014-11-03 09:00:00,0.24,0.326,0.311 -2014-11-03 10:00:00,0.24,0.326,0.311 -2014-11-03 11:00:00,0.24,0.326,0.311 -2014-11-03 12:00:00,0.24,0.326,0.312 -2014-11-03 13:00:00,0.24,0.326,0.312 -2014-11-03 14:00:00,0.24,0.325,0.312 -2014-11-03 15:00:00,0.24,0.325,0.311 -2014-11-03 16:00:00,0.24,0.325,0.313 -2014-11-03 17:00:00,0.23800000000000002,0.325,0.315 -2014-11-03 18:00:00,0.239,0.325,0.315 -2014-11-03 19:00:00,0.239,0.325,0.315 -2014-11-03 20:00:00,0.239,0.325,0.315 -2014-11-03 21:00:00,0.239,0.326,0.315 -2014-11-03 22:00:00,0.239,0.326,0.315 -2014-11-03 23:00:00,0.237,0.326,0.316 -2014-11-04 00:00:00,0.237,0.326,0.316 -2014-11-04 01:00:00,0.23800000000000002,0.326,0.316 -2014-11-04 02:00:00,0.239,0.326,0.316 -2014-11-04 03:00:00,0.24,0.325,0.316 -2014-11-04 04:00:00,0.24100000000000002,0.325,0.316 -2014-11-04 05:00:00,0.24100000000000002,0.325,0.317 -2014-11-04 06:00:00,0.242,0.324,0.316 -2014-11-04 07:00:00,0.242,0.324,0.316 -2014-11-04 08:00:00,0.242,0.324,0.316 -2014-11-04 09:00:00,0.243,0.324,0.316 -2014-11-04 10:00:00,0.243,0.324,0.316 -2014-11-04 11:00:00,0.244,0.324,0.316 -2014-11-04 12:00:00,0.245,0.324,0.315 -2014-11-04 13:00:00,0.245,0.324,0.315 -2014-11-04 14:00:00,0.24600000000000002,0.324,0.315 -2014-11-04 15:00:00,0.24600000000000002,0.324,0.315 -2014-11-04 16:00:00,0.24600000000000002,0.324,0.315 -2014-11-04 17:00:00,0.24600000000000002,0.324,0.314 -2014-11-04 18:00:00,0.24600000000000002,0.325,0.314 -2014-11-04 19:00:00,0.24600000000000002,0.325,0.314 -2014-11-04 20:00:00,0.24600000000000002,0.326,0.314 -2014-11-04 21:00:00,0.24600000000000002,0.326,0.314 -2014-11-04 22:00:00,0.24600000000000002,0.326,0.314 -2014-11-04 23:00:00,0.245,0.326,0.315 -2014-11-05 00:00:00,0.245,0.326,0.315 -2014-11-05 01:00:00,0.245,0.326,0.316 -2014-11-05 02:00:00,0.245,0.326,0.316 -2014-11-05 03:00:00,0.24600000000000002,0.326,0.316 -2014-11-05 04:00:00,0.247,0.326,0.316 -2014-11-05 05:00:00,0.249,0.326,0.316 -2014-11-05 06:00:00,0.25,0.325,0.316 -2014-11-05 07:00:00,0.25,0.324,0.316 -2014-11-05 08:00:00,0.25,0.324,0.316 -2014-11-05 09:00:00,0.249,0.324,0.316 -2014-11-05 10:00:00,0.249,0.324,0.316 -2014-11-05 11:00:00,0.249,0.324,0.316 -2014-11-05 12:00:00,0.249,0.324,0.316 -2014-11-05 13:00:00,0.249,0.324,0.316 -2014-11-05 14:00:00,0.249,0.324,0.316 -2014-11-05 15:00:00,0.249,0.324,0.316 -2014-11-05 16:00:00,0.249,0.324,0.315 -2014-11-05 17:00:00,0.249,0.324,0.315 -2014-11-05 18:00:00,0.249,0.324,0.315 -2014-11-05 19:00:00,0.249,0.324,0.315 -2014-11-05 20:00:00,0.249,0.324,0.315 -2014-11-05 21:00:00,0.248,0.324,0.315 -2014-11-05 22:00:00,0.248,0.324,0.315 -2014-11-05 23:00:00,0.248,0.324,0.315 -2014-11-06 00:00:00,0.248,0.324,0.315 -2014-11-06 01:00:00,0.248,0.324,0.315 -2014-11-06 02:00:00,0.248,0.324,0.315 -2014-11-06 03:00:00,0.248,0.32299999999999995,0.315 -2014-11-06 04:00:00,0.247,0.32299999999999995,0.315 -2014-11-06 05:00:00,0.247,0.32299999999999995,0.315 -2014-11-06 06:00:00,0.247,0.32299999999999995,0.315 -2014-11-06 07:00:00,0.247,0.32299999999999995,0.315 -2014-11-06 08:00:00,0.247,0.322,0.315 -2014-11-06 09:00:00,0.24600000000000002,0.322,0.315 -2014-11-06 10:00:00,0.24600000000000002,0.322,0.315 -2014-11-06 11:00:00,0.24600000000000002,0.322,0.315 -2014-11-06 12:00:00,0.24600000000000002,0.322,0.315 -2014-11-06 13:00:00,0.24600000000000002,0.322,0.315 -2014-11-06 14:00:00,0.24600000000000002,0.32299999999999995,0.315 -2014-11-06 15:00:00,0.24600000000000002,0.32299999999999995,0.315 -2014-11-06 16:00:00,0.24600000000000002,0.32299999999999995,0.314 -2014-11-06 17:00:00,0.24600000000000002,0.32299999999999995,0.314 -2014-11-06 18:00:00,0.24600000000000002,0.32299999999999995,0.314 -2014-11-06 19:00:00,0.24600000000000002,0.32299999999999995,0.314 -2014-11-06 20:00:00,0.24600000000000002,0.32299999999999995,0.314 -2014-11-06 21:00:00,0.24600000000000002,0.32299999999999995,0.314 -2014-11-06 22:00:00,0.245,0.32299999999999995,0.314 -2014-11-06 23:00:00,0.245,0.322,0.314 -2014-11-07 00:00:00,0.245,0.322,0.313 -2014-11-07 01:00:00,0.245,0.322,0.313 -2014-11-07 02:00:00,0.245,0.322,0.313 -2014-11-07 03:00:00,0.245,0.322,0.313 -2014-11-07 04:00:00,0.244,0.322,0.313 -2014-11-07 05:00:00,0.245,0.322,0.313 -2014-11-07 06:00:00,0.244,0.322,0.313 -2014-11-07 07:00:00,0.244,0.322,0.313 -2014-11-07 08:00:00,0.244,0.322,0.314 -2014-11-07 09:00:00,0.244,0.321,0.314 -2014-11-07 10:00:00,0.244,0.321,0.314 -2014-11-07 11:00:00,0.244,0.321,0.314 -2014-11-07 12:00:00,0.244,0.321,0.314 -2014-11-07 13:00:00,0.244,0.321,0.314 -2014-11-07 14:00:00,0.244,0.321,0.314 -2014-11-07 15:00:00,0.244,0.321,0.314 -2014-11-07 16:00:00,0.244,0.321,0.314 -2014-11-07 17:00:00,0.244,0.321,0.314 -2014-11-07 18:00:00,0.243,0.322,0.314 -2014-11-07 19:00:00,0.243,0.322,0.314 -2014-11-07 20:00:00,0.243,0.322,0.314 -2014-11-07 21:00:00,0.243,0.322,0.314 -2014-11-07 22:00:00,0.243,0.322,0.314 -2014-11-07 23:00:00,0.244,0.322,0.314 -2014-11-08 00:00:00,0.243,0.322,0.314 -2014-11-08 01:00:00,0.243,0.322,0.314 -2014-11-08 02:00:00,0.243,0.322,0.314 -2014-11-08 03:00:00,0.243,0.322,0.314 -2014-11-08 04:00:00,0.243,0.322,0.314 -2014-11-08 05:00:00,0.243,0.322,0.314 -2014-11-08 06:00:00,0.243,0.322,0.314 -2014-11-08 07:00:00,0.243,0.322,0.314 -2014-11-08 08:00:00,0.243,0.322,0.314 -2014-11-08 09:00:00,0.243,0.32299999999999995,0.313 -2014-11-08 10:00:00,0.243,0.322,0.314 -2014-11-08 11:00:00,0.243,0.32299999999999995,0.313 -2014-11-08 12:00:00,0.243,0.322,0.313 -2014-11-08 13:00:00,0.243,0.322,0.313 -2014-11-08 14:00:00,0.244,0.322,0.313 -2014-11-08 15:00:00,0.244,0.322,0.313 -2014-11-08 16:00:00,0.243,0.322,0.313 -2014-11-08 17:00:00,0.244,0.32299999999999995,0.313 -2014-11-08 18:00:00,0.243,0.32299999999999995,0.312 -2014-11-08 19:00:00,0.243,0.32299999999999995,0.312 -2014-11-08 20:00:00,0.244,0.322,0.312 -2014-11-08 21:00:00,0.243,0.322,0.312 -2014-11-08 22:00:00,0.243,0.322,0.312 -2014-11-08 23:00:00,0.243,0.322,0.312 -2014-11-09 00:00:00,0.243,0.322,0.312 -2014-11-09 01:00:00,0.243,0.322,0.312 -2014-11-09 02:00:00,0.243,0.322,0.312 -2014-11-09 03:00:00,0.243,0.322,0.312 -2014-11-09 04:00:00,0.243,0.322,0.312 -2014-11-09 05:00:00,0.243,0.322,0.312 -2014-11-09 06:00:00,0.243,0.322,0.312 -2014-11-09 07:00:00,0.243,0.322,0.312 -2014-11-09 08:00:00,0.242,0.322,0.312 -2014-11-09 09:00:00,0.242,0.322,0.312 -2014-11-09 10:00:00,0.242,0.322,0.312 -2014-11-09 11:00:00,0.242,0.322,0.312 -2014-11-09 12:00:00,0.242,0.322,0.312 -2014-11-09 13:00:00,0.242,0.322,0.312 -2014-11-09 14:00:00,0.242,0.322,0.312 -2014-11-09 15:00:00,0.242,0.322,0.312 -2014-11-09 16:00:00,0.242,0.322,0.312 -2014-11-09 17:00:00,0.242,0.322,0.312 -2014-11-09 18:00:00,0.242,0.322,0.311 -2014-11-09 19:00:00,0.242,0.322,0.311 -2014-11-09 20:00:00,0.242,0.322,0.311 -2014-11-09 21:00:00,0.242,0.322,0.311 -2014-11-09 22:00:00,0.242,0.322,0.312 -2014-11-09 23:00:00,0.242,0.321,0.312 -2014-11-10 00:00:00,0.242,0.321,0.312 -2014-11-10 01:00:00,0.242,0.321,0.312 -2014-11-10 02:00:00,0.242,0.321,0.312 -2014-11-10 03:00:00,0.242,0.32299999999999995,0.312 -2014-11-10 04:00:00,0.242,0.354,0.312 -2014-11-10 05:00:00,0.242,0.363,0.312 -2014-11-10 06:00:00,0.242,0.365,0.312 -2014-11-10 07:00:00,0.242,0.364,0.312 -2014-11-10 08:00:00,0.242,0.36200000000000004,0.312 -2014-11-10 09:00:00,0.242,0.361,0.312 -2014-11-10 10:00:00,0.242,0.358,0.312 -2014-11-10 11:00:00,0.242,0.358,0.312 -2014-11-10 12:00:00,0.242,0.355,0.312 -2014-11-10 13:00:00,0.242,0.354,0.312 -2014-11-10 14:00:00,0.242,0.353,0.312 -2014-11-10 15:00:00,0.242,0.35200000000000004,0.312 -2014-11-10 16:00:00,0.242,0.35100000000000003,0.312 -2014-11-10 17:00:00,0.242,0.35100000000000003,0.312 -2014-11-10 18:00:00,0.242,0.35100000000000003,0.311 -2014-11-10 19:00:00,0.242,0.35100000000000003,0.311 -2014-11-10 20:00:00,0.242,0.35,0.311 -2014-11-10 21:00:00,0.242,0.349,0.311 -2014-11-10 22:00:00,0.242,0.349,0.311 -2014-11-10 23:00:00,0.242,0.349,0.311 -2014-11-11 00:00:00,0.242,0.34700000000000003,0.311 -2014-11-11 01:00:00,0.242,0.34600000000000003,0.311 -2014-11-11 02:00:00,0.242,0.345,0.312 -2014-11-11 03:00:00,0.242,0.344,0.312 -2014-11-11 04:00:00,0.242,0.344,0.312 -2014-11-11 05:00:00,0.242,0.344,0.312 -2014-11-11 06:00:00,0.242,0.34299999999999997,0.312 -2014-11-11 07:00:00,0.242,0.34299999999999997,0.312 -2014-11-11 08:00:00,0.242,0.34299999999999997,0.311 -2014-11-11 09:00:00,0.242,0.342,0.311 -2014-11-11 10:00:00,0.242,0.341,0.311 -2014-11-11 11:00:00,0.242,0.34,0.311 -2014-11-11 12:00:00,0.242,0.33899999999999997,0.311 -2014-11-11 13:00:00,0.242,0.34,0.311 -2014-11-11 14:00:00,0.242,0.341,0.311 -2014-11-11 15:00:00,0.242,0.342,0.311 -2014-11-11 16:00:00,0.242,0.34299999999999997,0.311 -2014-11-11 17:00:00,0.242,0.344,0.311 -2014-11-11 18:00:00,0.242,0.344,0.311 -2014-11-11 19:00:00,0.242,0.344,0.311 -2014-11-11 20:00:00,0.242,0.344,0.311 -2014-11-11 21:00:00,0.242,0.344,0.311 -2014-11-11 22:00:00,0.24100000000000002,0.344,0.311 -2014-11-11 23:00:00,0.24100000000000002,0.344,0.311 -2014-11-12 00:00:00,0.24100000000000002,0.34299999999999997,0.311 -2014-11-12 01:00:00,0.24100000000000002,0.34299999999999997,0.311 -2014-11-12 02:00:00,0.242,0.34299999999999997,0.311 -2014-11-12 03:00:00,0.242,0.34299999999999997,0.311 -2014-11-12 04:00:00,0.242,0.34600000000000003,0.311 -2014-11-12 05:00:00,0.242,0.34600000000000003,0.311 -2014-11-12 06:00:00,0.24100000000000002,0.345,0.311 -2014-11-12 07:00:00,0.242,0.34600000000000003,0.311 -2014-11-12 08:00:00,0.24100000000000002,0.345,0.311 -2014-11-12 09:00:00,0.242,0.344,0.311 -2014-11-12 10:00:00,0.24100000000000002,0.344,0.311 -2014-11-12 11:00:00,0.242,0.344,0.311 -2014-11-12 12:00:00,0.24100000000000002,0.344,0.311 -2014-11-12 13:00:00,0.24100000000000002,0.344,0.311 -2014-11-12 14:00:00,0.242,0.34299999999999997,0.311 -2014-11-12 15:00:00,0.24100000000000002,0.341,0.311 -2014-11-12 16:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-12 17:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-12 18:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-12 19:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-12 20:00:00,0.24100000000000002,0.337,0.311 -2014-11-12 21:00:00,0.24100000000000002,0.342,0.311 -2014-11-12 22:00:00,0.242,0.35200000000000004,0.311 -2014-11-12 23:00:00,0.242,0.361,0.311 -2014-11-13 00:00:00,0.24100000000000002,0.36,0.312 -2014-11-13 01:00:00,0.24100000000000002,0.359,0.312 -2014-11-13 02:00:00,0.24100000000000002,0.35700000000000004,0.313 -2014-11-13 03:00:00,0.242,0.354,0.313 -2014-11-13 04:00:00,0.242,0.353,0.313 -2014-11-13 05:00:00,0.24100000000000002,0.354,0.313 -2014-11-13 06:00:00,0.242,0.353,0.313 -2014-11-13 07:00:00,0.242,0.35200000000000004,0.313 -2014-11-13 08:00:00,0.242,0.35100000000000003,0.313 -2014-11-13 09:00:00,0.242,0.349,0.313 -2014-11-13 10:00:00,0.242,0.348,0.313 -2014-11-13 11:00:00,0.242,0.348,0.313 -2014-11-13 12:00:00,0.242,0.34700000000000003,0.312 -2014-11-13 13:00:00,0.242,0.34600000000000003,0.312 -2014-11-13 14:00:00,0.242,0.34600000000000003,0.312 -2014-11-13 15:00:00,0.242,0.34600000000000003,0.312 -2014-11-13 16:00:00,0.242,0.34600000000000003,0.312 -2014-11-13 17:00:00,0.242,0.34600000000000003,0.312 -2014-11-13 18:00:00,0.242,0.345,0.312 -2014-11-13 19:00:00,0.242,0.344,0.312 -2014-11-13 20:00:00,0.242,0.344,0.312 -2014-11-13 21:00:00,0.242,0.344,0.312 -2014-11-13 22:00:00,0.242,0.34299999999999997,0.312 -2014-11-13 23:00:00,0.242,0.34299999999999997,0.312 -2014-11-14 00:00:00,0.242,0.34299999999999997,0.312 -2014-11-14 01:00:00,0.242,0.34299999999999997,0.312 -2014-11-14 02:00:00,0.242,0.341,0.311 -2014-11-14 03:00:00,0.242,0.341,0.312 -2014-11-14 04:00:00,0.242,0.341,0.311 -2014-11-14 05:00:00,0.24100000000000002,0.341,0.311 -2014-11-14 06:00:00,0.24100000000000002,0.34,0.311 -2014-11-14 07:00:00,0.24100000000000002,0.33899999999999997,0.311 -2014-11-14 08:00:00,0.24100000000000002,0.33899999999999997,0.311 -2014-11-14 09:00:00,0.24100000000000002,0.33899999999999997,0.311 -2014-11-14 10:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 11:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 12:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 13:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 14:00:00,0.24100000000000002,0.337,0.311 -2014-11-14 15:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 16:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 17:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 18:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 19:00:00,0.24100000000000002,0.33799999999999997,0.311 -2014-11-14 20:00:00,0.24100000000000002,0.337,0.311 -2014-11-14 21:00:00,0.24100000000000002,0.336,0.311 -2014-11-14 22:00:00,0.24100000000000002,0.336,0.311 -2014-11-14 23:00:00,0.24100000000000002,0.336,0.311 -2014-11-15 00:00:00,0.24100000000000002,0.336,0.311 -2014-11-15 01:00:00,0.24100000000000002,0.336,0.311 -2014-11-15 02:00:00,0.24100000000000002,0.335,0.311 -2014-11-15 03:00:00,0.24100000000000002,0.335,0.311 -2014-11-15 04:00:00,0.24100000000000002,0.335,0.311 -2014-11-15 05:00:00,0.24100000000000002,0.33399999999999996,0.311 -2014-11-15 06:00:00,0.24100000000000002,0.33399999999999996,0.311 -2014-11-15 07:00:00,0.24100000000000002,0.33399999999999996,0.311 -2014-11-15 08:00:00,0.24100000000000002,0.33399999999999996,0.311 -2014-11-15 09:00:00,0.24100000000000002,0.33399999999999996,0.311 -2014-11-15 10:00:00,0.24100000000000002,0.33299999999999996,0.311 -2014-11-15 11:00:00,0.24100000000000002,0.33299999999999996,0.311 -2014-11-15 12:00:00,0.24100000000000002,0.332,0.311 -2014-11-15 13:00:00,0.24100000000000002,0.332,0.311 -2014-11-15 14:00:00,0.24100000000000002,0.332,0.311 -2014-11-15 15:00:00,0.24100000000000002,0.332,0.31 -2014-11-15 16:00:00,0.24100000000000002,0.331,0.31 -2014-11-15 17:00:00,0.24100000000000002,0.331,0.31 -2014-11-15 18:00:00,0.24100000000000002,0.331,0.31 -2014-11-15 19:00:00,0.24100000000000002,0.331,0.31 -2014-11-15 20:00:00,0.24100000000000002,0.331,0.31 -2014-11-15 21:00:00,0.24100000000000002,0.331,0.311 -2014-11-15 22:00:00,0.24100000000000002,0.331,0.311 -2014-11-15 23:00:00,0.256,0.331,0.313 -2014-11-16 00:00:00,0.261,0.331,0.313 -2014-11-16 01:00:00,0.261,0.331,0.316 -2014-11-16 02:00:00,0.26,0.331,0.345 -2014-11-16 03:00:00,0.261,0.331,0.35600000000000004 -2014-11-16 04:00:00,0.261,0.33,0.358 -2014-11-16 05:00:00,0.261,0.33,0.35700000000000004 -2014-11-16 06:00:00,0.26,0.32899999999999996,0.35600000000000004 -2014-11-16 07:00:00,0.258,0.32899999999999996,0.35200000000000004 -2014-11-16 08:00:00,0.26,0.32899999999999996,0.358 -2014-11-16 09:00:00,0.258,0.32899999999999996,0.405 -2014-11-16 10:00:00,0.257,0.32899999999999996,0.406 -2014-11-16 11:00:00,0.255,0.32899999999999996,0.41 -2014-11-16 12:00:00,0.254,0.32899999999999996,0.413 -2014-11-16 13:00:00,0.253,0.327,0.413 -2014-11-16 14:00:00,0.252,0.327,0.413 -2014-11-16 15:00:00,0.252,0.327,0.413 -2014-11-16 16:00:00,0.251,0.327,0.413 -2014-11-16 17:00:00,0.251,0.327,0.413 -2014-11-16 18:00:00,0.25,0.327,0.413 -2014-11-16 19:00:00,0.25,0.327,0.413 -2014-11-16 20:00:00,0.249,0.327,0.413 -2014-11-16 21:00:00,0.248,0.327,0.413 -2014-11-16 22:00:00,0.248,0.327,0.413 -2014-11-16 23:00:00,0.248,0.327,0.413 -2014-11-17 00:00:00,0.247,0.327,0.413 -2014-11-17 01:00:00,0.247,0.327,0.413 -2014-11-17 02:00:00,0.247,0.327,0.413 -2014-11-17 03:00:00,0.24600000000000002,0.327,0.413 -2014-11-17 04:00:00,0.24600000000000002,0.326,0.414 -2014-11-17 05:00:00,0.24600000000000002,0.326,0.414 -2014-11-17 06:00:00,0.24600000000000002,0.326,0.413 -2014-11-17 07:00:00,0.24600000000000002,0.326,0.413 -2014-11-17 08:00:00,0.245,0.326,0.41200000000000003 -2014-11-17 09:00:00,0.245,0.326,0.41100000000000003 -2014-11-17 10:00:00,0.24600000000000002,0.326,0.41100000000000003 -2014-11-17 11:00:00,0.24600000000000002,0.326,0.409 -2014-11-17 12:00:00,0.24600000000000002,0.326,0.408 -2014-11-17 13:00:00,0.247,0.326,0.401 -2014-11-17 14:00:00,0.248,0.326,0.39799999999999996 -2014-11-17 15:00:00,0.248,0.326,0.397 -2014-11-17 16:00:00,0.248,0.326,0.396 -2014-11-17 17:00:00,0.248,0.326,0.395 -2014-11-17 18:00:00,0.248,0.326,0.39399999999999996 -2014-11-17 19:00:00,0.248,0.326,0.39399999999999996 -2014-11-17 20:00:00,0.247,0.326,0.39299999999999996 -2014-11-17 21:00:00,0.247,0.326,0.39299999999999996 -2014-11-17 22:00:00,0.247,0.326,0.39299999999999996 -2014-11-17 23:00:00,0.247,0.326,0.39 -2014-11-18 00:00:00,0.247,0.326,0.342 -2014-11-18 01:00:00,0.24600000000000002,0.326,0.341 -2014-11-18 02:00:00,0.24600000000000002,0.326,0.34 -2014-11-18 03:00:00,0.24600000000000002,0.326,0.34 -2014-11-18 04:00:00,0.24600000000000002,0.326,0.33899999999999997 -2014-11-18 05:00:00,0.24600000000000002,0.326,0.33899999999999997 -2014-11-18 06:00:00,0.24600000000000002,0.326,0.33799999999999997 -2014-11-18 07:00:00,0.24600000000000002,0.326,0.33799999999999997 -2014-11-18 08:00:00,0.24600000000000002,0.326,0.33799999999999997 -2014-11-18 09:00:00,0.24600000000000002,0.326,0.33799999999999997 -2014-11-18 10:00:00,0.24600000000000002,0.326,0.337 -2014-11-18 11:00:00,0.245,0.326,0.337 -2014-11-18 12:00:00,0.245,0.326,0.336 -2014-11-18 13:00:00,0.245,0.326,0.336 -2014-11-18 14:00:00,0.245,0.324,0.335 -2014-11-18 15:00:00,0.245,0.324,0.335 -2014-11-18 16:00:00,0.245,0.326,0.335 -2014-11-18 17:00:00,0.247,0.326,0.336 -2014-11-18 18:00:00,0.256,0.326,0.336 -2014-11-18 19:00:00,0.258,0.326,0.34299999999999997 -2014-11-18 20:00:00,0.259,0.326,0.354 -2014-11-18 21:00:00,0.259,0.326,0.355 -2014-11-18 22:00:00,0.257,0.326,0.35600000000000004 -2014-11-18 23:00:00,0.255,0.327,0.363 -2014-11-19 00:00:00,0.254,0.326,0.36700000000000005 -2014-11-19 01:00:00,0.254,0.326,0.366 -2014-11-19 02:00:00,0.254,0.326,0.366 -2014-11-19 03:00:00,0.252,0.32799999999999996,0.366 -2014-11-19 04:00:00,0.251,0.327,0.366 -2014-11-19 05:00:00,0.25,0.327,0.366 -2014-11-19 06:00:00,0.249,0.326,0.36700000000000005 -2014-11-19 07:00:00,0.249,0.327,0.36700000000000005 -2014-11-19 08:00:00,0.248,0.326,0.36700000000000005 -2014-11-19 09:00:00,0.248,0.326,0.36700000000000005 -2014-11-19 10:00:00,0.247,0.326,0.36700000000000005 -2014-11-19 11:00:00,0.247,0.326,0.368 -2014-11-19 12:00:00,0.24600000000000002,0.326,0.368 -2014-11-19 13:00:00,0.24600000000000002,0.326,0.368 -2014-11-19 14:00:00,0.24600000000000002,0.326,0.368 -2014-11-19 15:00:00,0.24600000000000002,0.325,0.369 -2014-11-19 16:00:00,0.24600000000000002,0.325,0.369 -2014-11-19 17:00:00,0.24600000000000002,0.325,0.369 -2014-11-19 18:00:00,0.24600000000000002,0.324,0.369 -2014-11-19 19:00:00,0.24600000000000002,0.324,0.369 -2014-11-19 20:00:00,0.24600000000000002,0.325,0.369 -2014-11-19 21:00:00,0.24600000000000002,0.326,0.366 -2014-11-19 22:00:00,0.245,0.326,0.36200000000000004 -2014-11-19 23:00:00,0.245,0.326,0.36 -2014-11-20 00:00:00,0.245,0.326,0.36 -2014-11-20 01:00:00,0.245,0.326,0.359 -2014-11-20 02:00:00,0.245,0.326,0.358 -2014-11-20 03:00:00,0.245,0.326,0.358 -2014-11-20 04:00:00,0.244,0.326,0.35700000000000004 -2014-11-20 05:00:00,0.244,0.326,0.35700000000000004 -2014-11-20 06:00:00,0.244,0.326,0.35700000000000004 -2014-11-20 07:00:00,0.244,0.326,0.355 -2014-11-20 08:00:00,0.244,0.326,0.344 -2014-11-20 09:00:00,0.244,0.326,0.34299999999999997 -2014-11-20 10:00:00,0.244,0.326,0.34299999999999997 -2014-11-20 11:00:00,0.244,0.326,0.342 -2014-11-20 12:00:00,0.244,0.326,0.342 -2014-11-20 13:00:00,0.245,0.324,0.341 -2014-11-20 14:00:00,0.24600000000000002,0.324,0.341 -2014-11-20 15:00:00,0.24600000000000002,0.324,0.34 -2014-11-20 16:00:00,0.24600000000000002,0.324,0.34 -2014-11-20 17:00:00,0.24600000000000002,0.324,0.34 -2014-11-20 18:00:00,0.24600000000000002,0.324,0.33899999999999997 -2014-11-20 19:00:00,0.24600000000000002,0.324,0.33799999999999997 -2014-11-20 20:00:00,0.24600000000000002,0.324,0.33799999999999997 -2014-11-20 21:00:00,0.24600000000000002,0.324,0.33799999999999997 -2014-11-20 22:00:00,0.24600000000000002,0.324,0.337 -2014-11-20 23:00:00,0.24600000000000002,0.324,0.337 -2014-11-21 00:00:00,0.24600000000000002,0.324,0.337 -2014-11-21 01:00:00,0.24600000000000002,0.324,0.336 -2014-11-21 02:00:00,0.24600000000000002,0.325,0.336 -2014-11-21 03:00:00,0.245,0.325,0.336 -2014-11-21 04:00:00,0.245,0.326,0.336 -2014-11-21 05:00:00,0.24600000000000002,0.326,0.336 -2014-11-21 06:00:00,0.245,0.326,0.335 -2014-11-21 07:00:00,0.245,0.326,0.335 -2014-11-21 08:00:00,0.245,0.326,0.335 -2014-11-21 09:00:00,0.245,0.326,0.335 -2014-11-21 10:00:00,0.245,0.326,0.33399999999999996 -2014-11-21 11:00:00,0.245,0.326,0.33399999999999996 -2014-11-21 12:00:00,0.245,0.326,0.33399999999999996 -2014-11-21 13:00:00,0.245,0.326,0.33399999999999996 -2014-11-21 14:00:00,0.245,0.326,0.33399999999999996 -2014-11-21 15:00:00,0.245,0.326,0.33299999999999996 -2014-11-21 16:00:00,0.245,0.326,0.33299999999999996 -2014-11-21 17:00:00,0.245,0.326,0.332 -2014-11-21 18:00:00,0.245,0.326,0.332 -2014-11-21 19:00:00,0.245,0.326,0.332 -2014-11-21 20:00:00,0.245,0.326,0.332 -2014-11-21 21:00:00,0.244,0.326,0.332 -2014-11-21 22:00:00,0.245,0.326,0.332 -2014-11-21 23:00:00,0.245,0.326,0.332 -2014-11-22 00:00:00,0.244,0.326,0.332 -2014-11-22 01:00:00,0.244,0.326,0.331 -2014-11-22 02:00:00,0.244,0.326,0.331 -2014-11-22 03:00:00,0.244,0.326,0.331 -2014-11-22 04:00:00,0.244,0.326,0.331 -2014-11-22 05:00:00,0.244,0.326,0.331 -2014-11-22 06:00:00,0.244,0.326,0.331 -2014-11-22 07:00:00,0.244,0.326,0.331 -2014-11-22 08:00:00,0.244,0.326,0.331 -2014-11-22 09:00:00,0.244,0.326,0.33 -2014-11-22 10:00:00,0.243,0.326,0.331 -2014-11-22 11:00:00,0.243,0.326,0.332 -2014-11-22 12:00:00,0.243,0.326,0.332 -2014-11-22 13:00:00,0.243,0.326,0.332 -2014-11-22 14:00:00,0.243,0.326,0.331 -2014-11-22 15:00:00,0.243,0.326,0.331 -2014-11-22 16:00:00,0.243,0.326,0.331 -2014-11-22 17:00:00,0.243,0.326,0.331 -2014-11-22 18:00:00,0.243,0.326,0.331 -2014-11-22 19:00:00,0.243,0.327,0.331 -2014-11-22 20:00:00,0.243,0.327,0.331 -2014-11-22 21:00:00,0.243,0.327,0.331 -2014-11-22 22:00:00,0.243,0.327,0.331 -2014-11-22 23:00:00,0.243,0.327,0.331 -2014-11-23 00:00:00,0.243,0.327,0.331 -2014-11-23 01:00:00,0.243,0.327,0.331 -2014-11-23 02:00:00,0.243,0.327,0.331 -2014-11-23 03:00:00,0.243,0.327,0.33 -2014-11-23 04:00:00,0.243,0.327,0.33 -2014-11-23 05:00:00,0.243,0.327,0.33 -2014-11-23 06:00:00,0.243,0.327,0.33 -2014-11-23 07:00:00,0.243,0.327,0.33 -2014-11-23 08:00:00,0.243,0.327,0.33 -2014-11-23 09:00:00,0.243,0.327,0.33 -2014-11-23 10:00:00,0.243,0.327,0.33 -2014-11-23 11:00:00,0.243,0.327,0.33 -2014-11-23 12:00:00,0.243,0.327,0.33 -2014-11-23 13:00:00,0.243,0.327,0.33 -2014-11-23 14:00:00,0.243,0.327,0.32899999999999996 -2014-11-23 15:00:00,0.243,0.327,0.32799999999999996 -2014-11-23 16:00:00,0.243,0.327,0.32799999999999996 -2014-11-23 17:00:00,0.243,0.327,0.32799999999999996 -2014-11-23 18:00:00,0.243,0.327,0.327 -2014-11-23 19:00:00,0.244,0.327,0.327 -2014-11-23 20:00:00,0.244,0.327,0.327 -2014-11-23 21:00:00,0.243,0.327,0.327 -2014-11-23 22:00:00,0.243,0.327,0.327 -2014-11-23 23:00:00,0.243,0.327,0.327 -2014-11-24 00:00:00,0.243,0.327,0.327 -2014-11-24 01:00:00,0.243,0.327,0.327 -2014-11-24 02:00:00,0.243,0.327,0.327 -2014-11-24 03:00:00,0.243,0.327,0.327 -2014-11-24 04:00:00,0.243,0.327,0.327 -2014-11-24 05:00:00,0.243,0.327,0.327 -2014-11-24 06:00:00,0.243,0.327,0.327 -2014-11-24 07:00:00,0.243,0.327,0.327 -2014-11-24 08:00:00,0.243,0.327,0.327 -2014-11-24 09:00:00,0.243,0.327,0.327 -2014-11-24 10:00:00,0.243,0.327,0.32799999999999996 -2014-11-24 11:00:00,0.243,0.326,0.32799999999999996 -2014-11-24 12:00:00,0.243,0.327,0.32799999999999996 -2014-11-24 13:00:00,0.243,0.327,0.327 -2014-11-24 14:00:00,0.243,0.327,0.327 -2014-11-24 15:00:00,0.244,0.327,0.327 -2014-11-24 16:00:00,0.244,0.327,0.327 -2014-11-24 17:00:00,0.244,0.327,0.326 -2014-11-24 18:00:00,0.244,0.327,0.326 -2014-11-24 19:00:00,0.244,0.327,0.326 -2014-11-24 20:00:00,0.244,0.327,0.326 -2014-11-24 21:00:00,0.243,0.327,0.326 -2014-11-24 22:00:00,0.243,0.327,0.326 -2014-11-24 23:00:00,0.244,0.327,0.326 -2014-11-25 00:00:00,0.243,0.327,0.326 -2014-11-25 01:00:00,0.243,0.327,0.324 -2014-11-25 02:00:00,0.243,0.327,0.324 -2014-11-25 03:00:00,0.243,0.327,0.324 -2014-11-25 04:00:00,0.243,0.327,0.32299999999999995 -2014-11-25 05:00:00,0.243,0.327,0.322 -2014-11-25 06:00:00,0.243,0.327,0.321 -2014-11-25 07:00:00,0.243,0.327,0.321 -2014-11-25 08:00:00,0.243,0.327,0.321 -2014-11-25 09:00:00,0.243,0.327,0.321 -2014-11-25 10:00:00,0.243,0.327,0.321 -2014-11-25 11:00:00,0.243,0.327,0.322 -2014-11-25 12:00:00,0.243,0.327,0.322 -2014-11-25 13:00:00,0.243,0.327,0.322 -2014-11-25 14:00:00,0.243,0.327,0.322 -2014-11-25 15:00:00,0.243,0.327,0.322 -2014-11-25 16:00:00,0.243,0.327,0.322 -2014-11-25 17:00:00,0.243,0.327,0.322 -2014-11-25 18:00:00,0.243,0.327,0.322 -2014-11-25 19:00:00,0.243,0.327,0.322 -2014-11-25 20:00:00,0.243,0.327,0.322 -2014-11-25 21:00:00,0.243,0.327,0.321 -2014-11-25 22:00:00,0.243,0.327,0.321 -2014-11-25 23:00:00,0.243,0.327,0.321 -2014-11-26 00:00:00,0.243,0.327,0.321 -2014-11-26 01:00:00,0.243,0.327,0.321 -2014-11-26 02:00:00,0.243,0.327,0.321 -2014-11-26 03:00:00,0.243,0.327,0.321 -2014-11-26 04:00:00,0.243,0.327,0.321 -2014-11-26 05:00:00,0.243,0.327,0.321 -2014-11-26 06:00:00,0.243,0.327,0.321 -2014-11-26 07:00:00,0.243,0.327,0.321 -2014-11-26 08:00:00,0.243,0.327,0.321 -2014-11-26 09:00:00,0.243,0.327,0.321 -2014-11-26 10:00:00,0.242,0.327,0.322 -2014-11-26 11:00:00,0.242,0.327,0.322 -2014-11-26 12:00:00,0.242,0.327,0.322 -2014-11-26 13:00:00,0.242,0.327,0.32299999999999995 -2014-11-26 14:00:00,0.242,0.327,0.32299999999999995 -2014-11-26 15:00:00,0.242,0.326,0.322 -2014-11-26 16:00:00,0.242,0.327,0.322 -2014-11-26 17:00:00,0.243,0.327,0.322 -2014-11-26 18:00:00,0.243,0.327,0.322 -2014-11-26 19:00:00,0.243,0.327,0.322 -2014-11-26 20:00:00,0.243,0.327,0.322 -2014-11-26 21:00:00,0.243,0.327,0.322 -2014-11-26 22:00:00,0.243,0.327,0.322 -2014-11-26 23:00:00,0.243,0.327,0.322 -2014-11-27 00:00:00,0.243,0.327,0.322 -2014-11-27 01:00:00,0.243,0.327,0.322 -2014-11-27 02:00:00,0.243,0.327,0.322 -2014-11-27 03:00:00,0.242,0.327,0.322 -2014-11-27 04:00:00,0.243,0.327,0.322 -2014-11-27 05:00:00,0.243,0.327,0.322 -2014-11-27 06:00:00,0.243,0.327,0.321 -2014-11-27 07:00:00,0.242,0.327,0.321 -2014-11-27 08:00:00,0.243,0.327,0.321 -2014-11-27 09:00:00,0.243,0.327,0.321 -2014-11-27 10:00:00,0.242,0.327,0.321 -2014-11-27 11:00:00,0.243,0.327,0.321 -2014-11-27 12:00:00,0.243,0.327,0.321 -2014-11-27 13:00:00,0.243,0.327,0.32 -2014-11-27 14:00:00,0.242,0.327,0.32 -2014-11-27 15:00:00,0.242,0.327,0.32 -2014-11-27 16:00:00,0.242,0.327,0.319 -2014-11-27 17:00:00,0.242,0.327,0.319 -2014-11-27 18:00:00,0.242,0.327,0.32 -2014-11-27 19:00:00,0.242,0.327,0.32 -2014-11-27 20:00:00,0.242,0.327,0.321 -2014-11-27 21:00:00,0.242,0.327,0.321 -2014-11-27 22:00:00,0.242,0.327,0.321 -2014-11-27 23:00:00,0.242,0.327,0.321 -2014-11-28 00:00:00,0.243,0.327,0.321 -2014-11-28 01:00:00,0.243,0.327,0.32 -2014-11-28 02:00:00,0.243,0.327,0.32 -2014-11-28 03:00:00,0.243,0.327,0.32 -2014-11-28 04:00:00,0.243,0.327,0.32 -2014-11-28 05:00:00,0.243,0.327,0.32 -2014-11-28 06:00:00,0.243,0.327,0.321 -2014-11-28 07:00:00,0.242,0.327,0.322 -2014-11-28 08:00:00,0.242,0.327,0.322 -2014-11-28 09:00:00,0.242,0.327,0.322 -2014-11-28 10:00:00,0.242,0.327,0.322 -2014-11-28 11:00:00,0.242,0.327,0.322 -2014-11-28 12:00:00,0.242,0.327,0.322 -2014-11-28 13:00:00,0.242,0.327,0.321 -2014-11-28 14:00:00,0.243,0.327,0.321 -2014-11-28 15:00:00,0.243,0.327,0.321 -2014-11-28 16:00:00,0.243,0.327,0.321 -2014-11-28 17:00:00,0.243,0.327,0.321 -2014-11-28 18:00:00,0.243,0.327,0.321 -2014-11-28 19:00:00,0.243,0.327,0.321 -2014-11-28 20:00:00,0.243,0.327,0.321 -2014-11-28 21:00:00,0.243,0.327,0.321 -2014-11-28 22:00:00,0.243,0.327,0.321 -2014-11-28 23:00:00,0.243,0.327,0.321 -2014-11-29 00:00:00,0.243,0.327,0.32 -2014-11-29 01:00:00,0.243,0.327,0.32 -2014-11-29 02:00:00,0.243,0.327,0.32 -2014-11-29 03:00:00,0.243,0.327,0.32 -2014-11-29 04:00:00,0.243,0.327,0.32 -2014-11-29 05:00:00,0.243,0.327,0.32 -2014-11-29 06:00:00,0.243,0.327,0.32 -2014-11-29 07:00:00,0.243,0.327,0.32 -2014-11-29 08:00:00,0.243,0.327,0.32 -2014-11-29 09:00:00,0.243,0.327,0.319 -2014-11-29 10:00:00,0.243,0.327,0.319 -2014-11-29 11:00:00,0.243,0.327,0.319 -2014-11-29 12:00:00,0.243,0.327,0.319 -2014-11-29 13:00:00,0.243,0.327,0.319 -2014-11-29 14:00:00,0.243,0.327,0.319 -2014-11-29 15:00:00,0.243,0.327,0.319 -2014-11-29 16:00:00,0.243,0.327,0.319 -2014-11-29 17:00:00,0.243,0.327,0.319 -2014-11-29 18:00:00,0.243,0.327,0.319 -2014-11-29 19:00:00,0.243,0.327,0.319 -2014-11-29 20:00:00,0.243,0.327,0.319 -2014-11-29 21:00:00,0.243,0.327,0.318 -2014-11-29 22:00:00,0.243,0.327,0.318 -2014-11-29 23:00:00,0.243,0.327,0.318 -2014-11-30 00:00:00,0.243,0.327,0.318 -2014-11-30 01:00:00,0.243,0.327,0.318 -2014-11-30 02:00:00,0.243,0.327,0.318 -2014-11-30 03:00:00,0.243,0.327,0.318 -2014-11-30 04:00:00,0.243,0.327,0.318 -2014-11-30 05:00:00,0.243,0.327,0.318 -2014-11-30 06:00:00,0.243,0.327,0.318 -2014-11-30 07:00:00,0.243,0.327,0.318 -2014-11-30 08:00:00,0.242,0.327,0.318 -2014-11-30 09:00:00,0.242,0.327,0.318 -2014-11-30 10:00:00,0.242,0.32799999999999996,0.318 -2014-11-30 11:00:00,0.242,0.32899999999999996,0.318 -2014-11-30 12:00:00,0.242,0.32899999999999996,0.318 -2014-11-30 13:00:00,0.242,0.32799999999999996,0.318 -2014-11-30 14:00:00,0.242,0.327,0.318 -2014-11-30 15:00:00,0.242,0.32799999999999996,0.318 -2014-11-30 16:00:00,0.242,0.32799999999999996,0.318 -2014-11-30 17:00:00,0.242,0.327,0.318 -2014-11-30 18:00:00,0.242,0.32799999999999996,0.318 -2014-11-30 19:00:00,0.242,0.32799999999999996,0.318 -2014-11-30 20:00:00,0.242,0.32799999999999996,0.318 -2014-11-30 21:00:00,0.242,0.32899999999999996,0.318 -2014-11-30 22:00:00,0.242,0.32899999999999996,0.318 -2014-11-30 23:00:00,0.242,0.32899999999999996,0.318 -2014-12-01 00:00:00,0.242,0.32899999999999996,0.318 -2014-12-01 01:00:00,0.242,0.32899999999999996,0.318 -2014-12-01 02:00:00,0.242,0.32899999999999996,0.318 -2014-12-01 03:00:00,0.242,0.32799999999999996,0.318 -2014-12-01 04:00:00,0.242,0.32799999999999996,0.318 -2014-12-01 05:00:00,0.242,0.327,0.318 -2014-12-01 06:00:00,0.242,0.32799999999999996,0.318 -2014-12-01 07:00:00,0.242,0.32799999999999996,0.318 -2014-12-01 08:00:00,0.242,0.32799999999999996,0.318 -2014-12-01 09:00:00,0.242,0.32899999999999996,0.318 -2014-12-01 10:00:00,0.242,0.32899999999999996,0.317 -2014-12-01 11:00:00,0.242,0.32799999999999996,0.317 -2014-12-01 12:00:00,0.242,0.32799999999999996,0.317 -2014-12-01 13:00:00,0.242,0.327,0.317 -2014-12-01 14:00:00,0.242,0.327,0.317 -2014-12-01 15:00:00,0.242,0.327,0.317 -2014-12-01 16:00:00,0.242,0.327,0.317 -2014-12-01 17:00:00,0.242,0.32799999999999996,0.317 -2014-12-01 18:00:00,0.242,0.32899999999999996,0.317 -2014-12-01 19:00:00,0.242,0.32899999999999996,0.317 -2014-12-01 20:00:00,0.242,0.32899999999999996,0.317 -2014-12-01 21:00:00,0.242,0.32899999999999996,0.317 -2014-12-01 22:00:00,0.242,0.32799999999999996,0.317 -2014-12-01 23:00:00,0.242,0.32799999999999996,0.317 -2014-12-02 00:00:00,0.242,0.32899999999999996,0.317 -2014-12-02 01:00:00,0.242,0.32899999999999996,0.317 -2014-12-02 02:00:00,0.242,0.32899999999999996,0.316 -2014-12-02 03:00:00,0.242,0.32899999999999996,0.316 -2014-12-02 04:00:00,0.242,0.32899999999999996,0.316 -2014-12-02 05:00:00,0.242,0.32799999999999996,0.316 -2014-12-02 06:00:00,0.242,0.32799999999999996,0.316 -2014-12-02 07:00:00,0.242,0.32899999999999996,0.316 -2014-12-02 08:00:00,0.242,0.32899999999999996,0.316 -2014-12-02 09:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-02 10:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-02 11:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-02 12:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-02 13:00:00,0.243,0.32899999999999996,0.316 -2014-12-02 14:00:00,0.244,0.32899999999999996,0.316 -2014-12-02 15:00:00,0.244,0.32799999999999996,0.316 -2014-12-02 16:00:00,0.244,0.327,0.316 -2014-12-02 17:00:00,0.244,0.327,0.316 -2014-12-02 18:00:00,0.244,0.327,0.316 -2014-12-02 19:00:00,0.244,0.32799999999999996,0.316 -2014-12-02 20:00:00,0.244,0.32899999999999996,0.316 -2014-12-02 21:00:00,0.244,0.32899999999999996,0.316 -2014-12-02 22:00:00,0.244,0.32899999999999996,0.316 -2014-12-02 23:00:00,0.244,0.32899999999999996,0.316 -2014-12-03 00:00:00,0.244,0.32899999999999996,0.316 -2014-12-03 01:00:00,0.244,0.32899999999999996,0.316 -2014-12-03 02:00:00,0.244,0.32899999999999996,0.316 -2014-12-03 03:00:00,0.243,0.32899999999999996,0.316 -2014-12-03 04:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 05:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 06:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 07:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 08:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 09:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 10:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 11:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-03 12:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-03 13:00:00,0.24100000000000002,0.32799999999999996,0.317 -2014-12-03 14:00:00,0.24100000000000002,0.32799999999999996,0.317 -2014-12-03 15:00:00,0.242,0.327,0.317 -2014-12-03 16:00:00,0.24100000000000002,0.327,0.316 -2014-12-03 17:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 18:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 19:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 20:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 21:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 22:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-03 23:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-04 00:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-04 01:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-04 02:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-04 03:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-04 04:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-04 05:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-04 06:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-04 07:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-04 08:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-04 09:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-04 10:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-04 11:00:00,0.24100000000000002,0.33,0.317 -2014-12-04 12:00:00,0.24100000000000002,0.33,0.317 -2014-12-04 13:00:00,0.24100000000000002,0.327,0.317 -2014-12-04 14:00:00,0.24100000000000002,0.327,0.317 -2014-12-04 15:00:00,0.24100000000000002,0.326,0.317 -2014-12-04 16:00:00,0.24100000000000002,0.326,0.317 -2014-12-04 17:00:00,0.24100000000000002,0.326,0.317 -2014-12-04 18:00:00,0.24100000000000002,0.327,0.317 -2014-12-04 19:00:00,0.24100000000000002,0.327,0.317 -2014-12-04 20:00:00,0.24100000000000002,0.327,0.317 -2014-12-04 21:00:00,0.24100000000000002,0.327,0.317 -2014-12-04 22:00:00,0.24100000000000002,0.327,0.317 -2014-12-04 23:00:00,0.24100000000000002,0.327,0.317 -2014-12-05 00:00:00,0.24100000000000002,0.32799999999999996,0.317 -2014-12-05 01:00:00,0.24100000000000002,0.33,0.317 -2014-12-05 02:00:00,0.24100000000000002,0.33,0.317 -2014-12-05 03:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-05 04:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-05 05:00:00,0.24100000000000002,0.32899999999999996,0.317 -2014-12-05 06:00:00,0.24100000000000002,0.325,0.317 -2014-12-05 07:00:00,0.24100000000000002,0.324,0.317 -2014-12-05 08:00:00,0.24100000000000002,0.324,0.317 -2014-12-05 09:00:00,0.24100000000000002,0.324,0.317 -2014-12-05 10:00:00,0.24100000000000002,0.324,0.317 -2014-12-05 11:00:00,0.24100000000000002,0.324,0.316 -2014-12-05 12:00:00,0.24100000000000002,0.324,0.316 -2014-12-05 13:00:00,0.24100000000000002,0.32299999999999995,0.316 -2014-12-05 14:00:00,0.24100000000000002,0.32,0.316 -2014-12-05 15:00:00,0.24100000000000002,0.321,0.316 -2014-12-05 16:00:00,0.24100000000000002,0.319,0.316 -2014-12-05 17:00:00,0.24100000000000002,0.322,0.316 -2014-12-05 18:00:00,0.24100000000000002,0.32899999999999996,0.316 -2014-12-05 19:00:00,0.24100000000000002,0.33,0.316 -2014-12-05 20:00:00,0.24100000000000002,0.33399999999999996,0.316 -2014-12-05 21:00:00,0.24100000000000002,0.337,0.316 -2014-12-05 22:00:00,0.24100000000000002,0.34600000000000003,0.316 -2014-12-05 23:00:00,0.24100000000000002,0.354,0.316 -2014-12-06 00:00:00,0.24100000000000002,0.353,0.316 -2014-12-06 01:00:00,0.24100000000000002,0.353,0.316 -2014-12-06 02:00:00,0.24100000000000002,0.353,0.316 -2014-12-06 03:00:00,0.24100000000000002,0.353,0.316 -2014-12-06 04:00:00,0.24100000000000002,0.353,0.316 -2014-12-06 05:00:00,0.24100000000000002,0.349,0.316 -2014-12-06 06:00:00,0.24100000000000002,0.35,0.316 -2014-12-06 07:00:00,0.24100000000000002,0.35200000000000004,0.316 -2014-12-06 08:00:00,0.24100000000000002,0.354,0.316 -2014-12-06 09:00:00,0.24100000000000002,0.355,0.316 -2014-12-06 10:00:00,0.24100000000000002,0.35700000000000004,0.316 -2014-12-06 11:00:00,0.24100000000000002,0.359,0.316 -2014-12-06 12:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 13:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 14:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 15:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 16:00:00,0.24100000000000002,0.36200000000000004,0.316 -2014-12-06 17:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 18:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 19:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 20:00:00,0.24100000000000002,0.361,0.315 -2014-12-06 21:00:00,0.24100000000000002,0.361,0.315 -2014-12-06 22:00:00,0.24100000000000002,0.361,0.316 -2014-12-06 23:00:00,0.24100000000000002,0.361,0.316 -2014-12-07 00:00:00,0.24100000000000002,0.35700000000000004,0.316 -2014-12-07 01:00:00,0.24100000000000002,0.349,0.316 -2014-12-07 02:00:00,0.24100000000000002,0.36,0.316 -2014-12-07 03:00:00,0.24100000000000002,0.359,0.316 -2014-12-07 04:00:00,0.24100000000000002,0.358,0.316 -2014-12-07 05:00:00,0.24100000000000002,0.358,0.316 -2014-12-07 06:00:00,0.24100000000000002,0.35700000000000004,0.315 -2014-12-07 07:00:00,0.24100000000000002,0.35600000000000004,0.315 -2014-12-07 08:00:00,0.24,0.35700000000000004,0.315 -2014-12-07 09:00:00,0.24100000000000002,0.358,0.315 -2014-12-07 10:00:00,0.24100000000000002,0.358,0.315 -2014-12-07 11:00:00,0.24,0.358,0.315 -2014-12-07 12:00:00,0.24,0.359,0.315 -2014-12-07 13:00:00,0.24,0.359,0.315 -2014-12-07 14:00:00,0.24100000000000002,0.359,0.315 -2014-12-07 15:00:00,0.24100000000000002,0.36,0.314 -2014-12-07 16:00:00,0.24100000000000002,0.368,0.314 -2014-12-07 17:00:00,0.24,0.377,0.314 -2014-12-07 18:00:00,0.24100000000000002,0.392,0.314 -2014-12-07 19:00:00,0.24,0.40700000000000003,0.314 -2014-12-07 20:00:00,0.24100000000000002,0.41200000000000003,0.315 -2014-12-07 21:00:00,0.24100000000000002,0.406,0.315 -2014-12-07 22:00:00,0.239,0.406,0.318 -2014-12-07 23:00:00,0.23800000000000002,0.426,0.319 -2014-12-08 00:00:00,0.23800000000000002,0.451,0.319 -2014-12-08 01:00:00,0.23800000000000002,0.45299999999999996,0.319 -2014-12-08 02:00:00,0.23800000000000002,0.452,0.319 -2014-12-08 03:00:00,0.23800000000000002,0.452,0.319 -2014-12-08 04:00:00,0.23800000000000002,0.452,0.319 -2014-12-08 05:00:00,0.23800000000000002,0.452,0.319 -2014-12-08 06:00:00,0.23800000000000002,0.45299999999999996,0.319 -2014-12-08 07:00:00,0.239,0.45299999999999996,0.319 -2014-12-08 08:00:00,0.24,0.45299999999999996,0.318 -2014-12-08 09:00:00,0.24100000000000002,0.45299999999999996,0.316 -2014-12-08 10:00:00,0.24100000000000002,0.45299999999999996,0.316 -2014-12-08 11:00:00,0.239,0.45299999999999996,0.319 -2014-12-08 12:00:00,0.23800000000000002,0.45299999999999996,0.319 -2014-12-08 13:00:00,0.23800000000000002,0.45299999999999996,0.319 -2014-12-08 14:00:00,0.23800000000000002,0.45299999999999996,0.319 -2014-12-08 15:00:00,0.239,0.45299999999999996,0.319 -2014-12-08 16:00:00,0.239,0.45299999999999996,0.319 -2014-12-08 17:00:00,0.24100000000000002,0.445,0.317 -2014-12-08 18:00:00,0.24100000000000002,0.41700000000000004,0.316 -2014-12-08 19:00:00,0.24100000000000002,0.408,0.316 -2014-12-08 20:00:00,0.24100000000000002,0.39899999999999997,0.316 -2014-12-08 21:00:00,0.24100000000000002,0.39399999999999996,0.316 -2014-12-08 22:00:00,0.24100000000000002,0.389,0.316 -2014-12-08 23:00:00,0.24100000000000002,0.38299999999999995,0.315 -2014-12-09 00:00:00,0.24100000000000002,0.382,0.316 -2014-12-09 01:00:00,0.24100000000000002,0.379,0.315 -2014-12-09 02:00:00,0.24100000000000002,0.368,0.315 -2014-12-09 03:00:00,0.24100000000000002,0.366,0.315 -2014-12-09 04:00:00,0.24100000000000002,0.363,0.315 -2014-12-09 05:00:00,0.24100000000000002,0.36,0.315 -2014-12-09 06:00:00,0.24100000000000002,0.36,0.315 -2014-12-09 07:00:00,0.24100000000000002,0.361,0.315 -2014-12-09 08:00:00,0.24100000000000002,0.363,0.316 -2014-12-09 09:00:00,0.24100000000000002,0.361,0.316 -2014-12-09 10:00:00,0.24,0.361,0.318 -2014-12-09 11:00:00,0.23800000000000002,0.361,0.319 -2014-12-09 12:00:00,0.23800000000000002,0.361,0.319 -2014-12-09 13:00:00,0.239,0.359,0.318 -2014-12-09 14:00:00,0.239,0.355,0.318 -2014-12-09 15:00:00,0.24,0.355,0.318 -2014-12-09 16:00:00,0.24,0.355,0.318 -2014-12-09 17:00:00,0.24100000000000002,0.355,0.317 -2014-12-09 18:00:00,0.24100000000000002,0.353,0.317 -2014-12-09 19:00:00,0.24,0.353,0.317 -2014-12-09 20:00:00,0.24,0.353,0.317 -2014-12-09 21:00:00,0.24,0.353,0.317 -2014-12-09 22:00:00,0.24,0.353,0.317 -2014-12-09 23:00:00,0.24100000000000002,0.35200000000000004,0.315 -2014-12-10 00:00:00,0.24100000000000002,0.35100000000000003,0.315 -2014-12-10 01:00:00,0.24100000000000002,0.35100000000000003,0.315 -2014-12-10 02:00:00,0.24100000000000002,0.35100000000000003,0.315 -2014-12-10 03:00:00,0.24100000000000002,0.35100000000000003,0.316 -2014-12-10 04:00:00,0.24100000000000002,0.35100000000000003,0.316 -2014-12-10 05:00:00,0.24100000000000002,0.35100000000000003,0.317 -2014-12-10 06:00:00,0.24100000000000002,0.35100000000000003,0.317 -2014-12-10 07:00:00,0.24100000000000002,0.35100000000000003,0.316 -2014-12-10 08:00:00,0.24100000000000002,0.35100000000000003,0.316 -2014-12-10 09:00:00,0.24100000000000002,0.35100000000000003,0.316 -2014-12-10 10:00:00,0.237,0.35100000000000003,0.319 -2014-12-10 11:00:00,0.23600000000000002,0.35,0.32 -2014-12-10 12:00:00,0.23600000000000002,0.349,0.32 -2014-12-10 13:00:00,0.23600000000000002,0.349,0.32 -2014-12-10 14:00:00,0.23600000000000002,0.349,0.32 -2014-12-10 15:00:00,0.23600000000000002,0.35100000000000003,0.319 -2014-12-10 16:00:00,0.237,0.35100000000000003,0.319 -2014-12-10 17:00:00,0.237,0.35,0.319 -2014-12-10 18:00:00,0.237,0.349,0.319 -2014-12-10 19:00:00,0.237,0.349,0.319 -2014-12-10 20:00:00,0.237,0.349,0.319 -2014-12-10 21:00:00,0.23800000000000002,0.349,0.318 -2014-12-10 22:00:00,0.24,0.349,0.318 -2014-12-10 23:00:00,0.239,0.349,0.318 -2014-12-11 00:00:00,0.237,0.349,0.319 -2014-12-11 01:00:00,0.237,0.348,0.319 -2014-12-11 02:00:00,0.237,0.341,0.319 -2014-12-11 03:00:00,0.237,0.341,0.32 -2014-12-11 04:00:00,0.237,0.342,0.32 -2014-12-11 05:00:00,0.23600000000000002,0.34299999999999997,0.32 -2014-12-11 06:00:00,0.23600000000000002,0.34299999999999997,0.32 -2014-12-11 07:00:00,0.23600000000000002,0.345,0.32 -2014-12-11 08:00:00,0.23600000000000002,0.35200000000000004,0.32 -2014-12-11 09:00:00,0.23600000000000002,0.35200000000000004,0.32 -2014-12-11 10:00:00,0.237,0.349,0.32 -2014-12-11 11:00:00,0.23800000000000002,0.344,0.321 -2014-12-11 12:00:00,0.23800000000000002,0.345,0.321 -2014-12-11 13:00:00,0.239,0.345,0.321 -2014-12-11 14:00:00,0.249,0.34299999999999997,0.322 -2014-12-11 15:00:00,0.251,0.342,0.32299999999999995 -2014-12-11 16:00:00,0.25,0.34299999999999997,0.326 -2014-12-11 17:00:00,0.25,0.34299999999999997,0.326 -2014-12-11 18:00:00,0.251,0.344,0.326 -2014-12-11 19:00:00,0.255,0.34600000000000003,0.336 -2014-12-11 20:00:00,0.253,0.348,0.342 -2014-12-11 21:00:00,0.252,0.349,0.34 -2014-12-11 22:00:00,0.251,0.35,0.33799999999999997 -2014-12-11 23:00:00,0.25,0.35100000000000003,0.337 -2014-12-12 00:00:00,0.25,0.35100000000000003,0.336 -2014-12-12 01:00:00,0.249,0.35100000000000003,0.335 -2014-12-12 02:00:00,0.25,0.35100000000000003,0.335 -2014-12-12 03:00:00,0.25,0.35100000000000003,0.337 -2014-12-12 04:00:00,0.251,0.35100000000000003,0.33799999999999997 -2014-12-12 05:00:00,0.251,0.35100000000000003,0.33899999999999997 -2014-12-12 06:00:00,0.25,0.35200000000000004,0.33899999999999997 -2014-12-12 07:00:00,0.249,0.353,0.33899999999999997 -2014-12-12 08:00:00,0.248,0.353,0.33899999999999997 -2014-12-12 09:00:00,0.249,0.353,0.33799999999999997 -2014-12-12 10:00:00,0.25,0.353,0.337 -2014-12-12 11:00:00,0.251,0.353,0.336 -2014-12-12 12:00:00,0.252,0.353,0.335 -2014-12-12 13:00:00,0.253,0.353,0.33399999999999996 -2014-12-12 14:00:00,0.253,0.353,0.33299999999999996 -2014-12-12 15:00:00,0.253,0.355,0.332 -2014-12-12 16:00:00,0.253,0.355,0.331 -2014-12-12 17:00:00,0.253,0.35600000000000004,0.331 -2014-12-12 18:00:00,0.253,0.35700000000000004,0.33 -2014-12-12 19:00:00,0.253,0.35700000000000004,0.33 -2014-12-12 20:00:00,0.251,0.35700000000000004,0.33 -2014-12-12 21:00:00,0.248,0.35600000000000004,0.33299999999999996 -2014-12-12 22:00:00,0.25,0.35600000000000004,0.33899999999999997 -2014-12-12 23:00:00,0.258,0.355,0.35700000000000004 -2014-12-13 00:00:00,0.256,0.35600000000000004,0.35700000000000004 -2014-12-13 01:00:00,0.255,0.35600000000000004,0.35700000000000004 -2014-12-13 02:00:00,0.255,0.35600000000000004,0.364 -2014-12-13 03:00:00,0.254,0.35600000000000004,0.368 -2014-12-13 04:00:00,0.255,0.355,0.368 -2014-12-13 05:00:00,0.256,0.355,0.36700000000000005 -2014-12-13 06:00:00,0.256,0.355,0.366 -2014-12-13 07:00:00,0.256,0.355,0.36700000000000005 -2014-12-13 08:00:00,0.256,0.355,0.368 -2014-12-13 09:00:00,0.257,0.355,0.37200000000000005 -2014-12-13 10:00:00,0.257,0.355,0.374 -2014-12-13 11:00:00,0.257,0.355,0.375 -2014-12-13 12:00:00,0.256,0.355,0.375 -2014-12-13 13:00:00,0.255,0.35200000000000004,0.375 -2014-12-13 14:00:00,0.256,0.349,0.375 -2014-12-13 15:00:00,0.255,0.342,0.376 -2014-12-13 16:00:00,0.254,0.342,0.376 -2014-12-13 17:00:00,0.253,0.34600000000000003,0.376 -2014-12-13 18:00:00,0.253,0.355,0.376 -2014-12-13 19:00:00,0.255,0.361,0.376 -2014-12-13 20:00:00,0.256,0.366,0.376 -2014-12-13 21:00:00,0.255,0.366,0.376 -2014-12-13 22:00:00,0.255,0.365,0.377 -2014-12-13 23:00:00,0.255,0.363,0.377 -2014-12-14 00:00:00,0.254,0.363,0.377 -2014-12-14 01:00:00,0.253,0.363,0.377 -2014-12-14 02:00:00,0.253,0.363,0.377 -2014-12-14 03:00:00,0.253,0.363,0.377 -2014-12-14 04:00:00,0.254,0.363,0.377 -2014-12-14 05:00:00,0.254,0.36200000000000004,0.377 -2014-12-14 06:00:00,0.254,0.361,0.377 -2014-12-14 07:00:00,0.254,0.361,0.377 -2014-12-14 08:00:00,0.254,0.361,0.377 -2014-12-14 09:00:00,0.253,0.361,0.377 -2014-12-14 10:00:00,0.253,0.36,0.37799999999999995 -2014-12-14 11:00:00,0.252,0.36,0.37799999999999995 -2014-12-14 12:00:00,0.251,0.358,0.37799999999999995 -2014-12-14 13:00:00,0.25,0.358,0.37799999999999995 -2014-12-14 14:00:00,0.25,0.358,0.37799999999999995 -2014-12-14 15:00:00,0.249,0.358,0.37799999999999995 -2014-12-14 16:00:00,0.249,0.358,0.37799999999999995 -2014-12-14 17:00:00,0.248,0.358,0.37799999999999995 -2014-12-14 18:00:00,0.248,0.358,0.37799999999999995 -2014-12-14 19:00:00,0.248,0.35700000000000004,0.379 -2014-12-14 20:00:00,0.248,0.35600000000000004,0.379 -2014-12-14 21:00:00,0.249,0.35600000000000004,0.379 -2014-12-14 22:00:00,0.247,0.353,0.37799999999999995 -2014-12-14 23:00:00,0.247,0.348,0.37799999999999995 -2014-12-15 00:00:00,0.247,0.344,0.37799999999999995 -2014-12-15 01:00:00,0.24600000000000002,0.344,0.37799999999999995 -2014-12-15 02:00:00,0.24600000000000002,0.345,0.37799999999999995 -2014-12-15 03:00:00,0.24600000000000002,0.34700000000000003,0.37799999999999995 -2014-12-15 04:00:00,0.24600000000000002,0.34700000000000003,0.37799999999999995 -2014-12-15 05:00:00,0.249,0.34700000000000003,0.37799999999999995 -2014-12-15 06:00:00,0.252,0.348,0.37799999999999995 -2014-12-15 07:00:00,0.252,0.348,0.37799999999999995 -2014-12-15 08:00:00,0.252,0.348,0.37799999999999995 -2014-12-15 09:00:00,0.251,0.34700000000000003,0.37799999999999995 -2014-12-15 10:00:00,0.249,0.34600000000000003,0.37799999999999995 -2014-12-15 11:00:00,0.245,0.34299999999999997,0.37799999999999995 -2014-12-15 12:00:00,0.245,0.34299999999999997,0.37799999999999995 -2014-12-15 13:00:00,0.245,0.34299999999999997,0.37799999999999995 -2014-12-15 14:00:00,0.24600000000000002,0.344,0.37799999999999995 -2014-12-15 15:00:00,0.244,0.34700000000000003,0.37799999999999995 -2014-12-15 16:00:00,0.244,0.349,0.37799999999999995 -2014-12-15 17:00:00,0.244,0.35100000000000003,0.37799999999999995 -2014-12-15 18:00:00,0.244,0.35200000000000004,0.37799999999999995 -2014-12-15 19:00:00,0.244,0.353,0.37799999999999995 -2014-12-15 20:00:00,0.244,0.353,0.37799999999999995 -2014-12-15 21:00:00,0.244,0.353,0.37799999999999995 -2014-12-15 22:00:00,0.244,0.353,0.37799999999999995 -2014-12-15 23:00:00,0.244,0.353,0.37799999999999995 -2014-12-16 00:00:00,0.244,0.35200000000000004,0.379 -2014-12-16 01:00:00,0.244,0.35100000000000003,0.379 -2014-12-16 02:00:00,0.244,0.35200000000000004,0.379 -2014-12-16 03:00:00,0.244,0.35100000000000003,0.379 -2014-12-16 04:00:00,0.244,0.35100000000000003,0.379 -2014-12-16 05:00:00,0.244,0.35100000000000003,0.379 -2014-12-16 06:00:00,0.244,0.35100000000000003,0.379 -2014-12-16 07:00:00,0.244,0.35100000000000003,0.379 -2014-12-16 08:00:00,0.244,0.35100000000000003,0.38 -2014-12-16 09:00:00,0.243,0.35100000000000003,0.38 -2014-12-16 10:00:00,0.243,0.35100000000000003,0.38 -2014-12-16 11:00:00,0.243,0.35100000000000003,0.38 -2014-12-16 12:00:00,0.244,0.348,0.38 -2014-12-16 13:00:00,0.244,0.348,0.38 -2014-12-16 14:00:00,0.244,0.348,0.38 -2014-12-16 15:00:00,0.244,0.348,0.38 -2014-12-16 16:00:00,0.244,0.348,0.38 -2014-12-16 17:00:00,0.244,0.349,0.38 -2014-12-16 18:00:00,0.244,0.349,0.38 -2014-12-16 19:00:00,0.244,0.349,0.38 -2014-12-16 20:00:00,0.244,0.349,0.38 -2014-12-16 21:00:00,0.244,0.349,0.38 -2014-12-16 22:00:00,0.244,0.349,0.38 -2014-12-16 23:00:00,0.244,0.349,0.381 -2014-12-17 00:00:00,0.243,0.348,0.381 -2014-12-17 01:00:00,0.243,0.348,0.381 -2014-12-17 02:00:00,0.243,0.348,0.38 -2014-12-17 03:00:00,0.243,0.348,0.38 -2014-12-17 04:00:00,0.243,0.348,0.38 -2014-12-17 05:00:00,0.242,0.348,0.376 -2014-12-17 06:00:00,0.242,0.348,0.375 -2014-12-17 07:00:00,0.242,0.348,0.374 -2014-12-17 08:00:00,0.243,0.348,0.373 -2014-12-17 09:00:00,0.243,0.348,0.373 -2014-12-17 10:00:00,0.243,0.348,0.373 -2014-12-17 11:00:00,0.243,0.348,0.373 -2014-12-17 12:00:00,0.244,0.348,0.37200000000000005 -2014-12-17 13:00:00,0.244,0.348,0.373 -2014-12-17 14:00:00,0.245,0.348,0.374 -2014-12-17 15:00:00,0.245,0.34700000000000003,0.377 -2014-12-17 16:00:00,0.24600000000000002,0.34700000000000003,0.37799999999999995 -2014-12-17 17:00:00,0.24600000000000002,0.34700000000000003,0.38 -2014-12-17 18:00:00,0.24600000000000002,0.34600000000000003,0.38 -2014-12-17 19:00:00,0.24600000000000002,0.34600000000000003,0.38 -2014-12-17 20:00:00,0.24600000000000002,0.34600000000000003,0.38 -2014-12-17 21:00:00,0.24600000000000002,0.34600000000000003,0.38 -2014-12-17 22:00:00,0.24600000000000002,0.34600000000000003,0.381 -2014-12-17 23:00:00,0.24600000000000002,0.34600000000000003,0.381 -2014-12-18 00:00:00,0.24600000000000002,0.34600000000000003,0.381 -2014-12-18 01:00:00,0.245,0.34600000000000003,0.381 -2014-12-18 02:00:00,0.245,0.34600000000000003,0.381 -2014-12-18 03:00:00,0.245,0.34600000000000003,0.381 -2014-12-18 04:00:00,0.245,0.345,0.381 -2014-12-18 05:00:00,0.245,0.344,0.381 -2014-12-18 06:00:00,0.245,0.344,0.381 -2014-12-18 07:00:00,0.245,0.344,0.38 -2014-12-18 08:00:00,0.245,0.344,0.377 -2014-12-18 09:00:00,0.244,0.344,0.375 -2014-12-18 10:00:00,0.244,0.344,0.375 -2014-12-18 11:00:00,0.244,0.344,0.373 -2014-12-18 12:00:00,0.244,0.344,0.373 -2014-12-18 13:00:00,0.245,0.344,0.37200000000000005 -2014-12-18 14:00:00,0.24600000000000002,0.344,0.371 -2014-12-18 15:00:00,0.247,0.344,0.37 -2014-12-18 16:00:00,0.248,0.344,0.37 -2014-12-18 17:00:00,0.248,0.344,0.369 -2014-12-18 18:00:00,0.248,0.34299999999999997,0.369 -2014-12-18 19:00:00,0.247,0.341,0.369 -2014-12-18 20:00:00,0.247,0.34,0.369 -2014-12-18 21:00:00,0.248,0.335,0.369 -2014-12-18 22:00:00,0.249,0.335,0.368 -2014-12-18 23:00:00,0.249,0.336,0.368 -2014-12-19 00:00:00,0.25,0.33799999999999997,0.36700000000000005 -2014-12-19 01:00:00,0.25,0.337,0.36700000000000005 -2014-12-19 02:00:00,0.25,0.33399999999999996,0.36700000000000005 -2014-12-19 03:00:00,0.25,0.33399999999999996,0.366 -2014-12-19 04:00:00,0.25,0.336,0.366 -2014-12-19 05:00:00,0.25,0.33799999999999997,0.366 -2014-12-19 06:00:00,0.249,0.33899999999999997,0.36700000000000005 -2014-12-19 07:00:00,0.249,0.33899999999999997,0.36700000000000005 -2014-12-19 08:00:00,0.249,0.34,0.366 -2014-12-19 09:00:00,0.249,0.341,0.366 -2014-12-19 10:00:00,0.248,0.341,0.36700000000000005 -2014-12-19 11:00:00,0.245,0.341,0.36200000000000004 -2014-12-19 12:00:00,0.245,0.341,0.361 -2014-12-19 13:00:00,0.24600000000000002,0.341,0.36200000000000004 -2014-12-19 14:00:00,0.25,0.341,0.36200000000000004 -2014-12-19 15:00:00,0.256,0.341,0.369 -2014-12-19 16:00:00,0.256,0.341,0.377 -2014-12-19 17:00:00,0.258,0.341,0.376 -2014-12-19 18:00:00,0.258,0.341,0.375 -2014-12-19 19:00:00,0.255,0.341,0.37799999999999995 -2014-12-19 20:00:00,0.253,0.341,0.37799999999999995 -2014-12-19 21:00:00,0.252,0.341,0.379 -2014-12-19 22:00:00,0.25,0.341,0.379 -2014-12-19 23:00:00,0.249,0.341,0.379 -2014-12-20 00:00:00,0.248,0.341,0.379 -2014-12-20 01:00:00,0.248,0.341,0.38 -2014-12-20 02:00:00,0.248,0.341,0.38 -2014-12-20 03:00:00,0.248,0.341,0.38 -2014-12-20 04:00:00,0.248,0.34,0.38 -2014-12-20 05:00:00,0.249,0.341,0.38 -2014-12-20 06:00:00,0.249,0.341,0.38 -2014-12-20 07:00:00,0.249,0.33899999999999997,0.38 -2014-12-20 08:00:00,0.249,0.33899999999999997,0.379 -2014-12-20 09:00:00,0.249,0.34,0.379 -2014-12-20 10:00:00,0.249,0.34,0.379 -2014-12-20 11:00:00,0.25,0.33899999999999997,0.379 -2014-12-20 12:00:00,0.251,0.33899999999999997,0.379 -2014-12-20 13:00:00,0.251,0.33899999999999997,0.379 -2014-12-20 14:00:00,0.251,0.33799999999999997,0.379 -2014-12-20 15:00:00,0.251,0.33799999999999997,0.37799999999999995 -2014-12-20 16:00:00,0.251,0.33799999999999997,0.37799999999999995 -2014-12-20 17:00:00,0.251,0.33799999999999997,0.37799999999999995 -2014-12-20 18:00:00,0.251,0.33799999999999997,0.379 -2014-12-20 19:00:00,0.249,0.33899999999999997,0.38 -2014-12-20 20:00:00,0.247,0.33899999999999997,0.38 -2014-12-20 21:00:00,0.24600000000000002,0.33899999999999997,0.38 -2014-12-20 22:00:00,0.24600000000000002,0.33899999999999997,0.38 -2014-12-20 23:00:00,0.24600000000000002,0.33899999999999997,0.381 -2014-12-21 00:00:00,0.245,0.33899999999999997,0.381 -2014-12-21 01:00:00,0.245,0.33899999999999997,0.381 -2014-12-21 02:00:00,0.245,0.33899999999999997,0.381 -2014-12-21 03:00:00,0.245,0.33899999999999997,0.381 -2014-12-21 04:00:00,0.245,0.33899999999999997,0.382 -2014-12-21 05:00:00,0.244,0.33899999999999997,0.382 -2014-12-21 06:00:00,0.244,0.33899999999999997,0.382 -2014-12-21 07:00:00,0.244,0.33899999999999997,0.382 -2014-12-21 08:00:00,0.245,0.33899999999999997,0.382 -2014-12-21 09:00:00,0.245,0.33899999999999997,0.382 -2014-12-21 10:00:00,0.244,0.33899999999999997,0.382 -2014-12-21 11:00:00,0.244,0.33899999999999997,0.382 -2014-12-21 12:00:00,0.244,0.33899999999999997,0.382 -2014-12-21 13:00:00,0.244,0.33899999999999997,0.382 -2014-12-21 14:00:00,0.24600000000000002,0.33899999999999997,0.381 -2014-12-21 15:00:00,0.248,0.33899999999999997,0.381 -2014-12-21 16:00:00,0.249,0.33799999999999997,0.381 -2014-12-21 17:00:00,0.249,0.33799999999999997,0.381 -2014-12-21 18:00:00,0.249,0.33799999999999997,0.38 -2014-12-21 19:00:00,0.249,0.33899999999999997,0.38 -2014-12-21 20:00:00,0.25,0.33899999999999997,0.38 -2014-12-21 21:00:00,0.25,0.33899999999999997,0.38 -2014-12-21 22:00:00,0.25,0.33899999999999997,0.38 -2014-12-21 23:00:00,0.25,0.33899999999999997,0.38 -2014-12-22 00:00:00,0.25,0.33899999999999997,0.379 -2014-12-22 01:00:00,0.249,0.33899999999999997,0.377 -2014-12-22 02:00:00,0.25,0.33899999999999997,0.376 -2014-12-22 03:00:00,0.249,0.34,0.376 -2014-12-22 04:00:00,0.249,0.34,0.375 -2014-12-22 05:00:00,0.249,0.34,0.375 -2014-12-22 06:00:00,0.249,0.34,0.375 -2014-12-22 07:00:00,0.249,0.34,0.375 -2014-12-22 08:00:00,0.249,0.34,0.375 -2014-12-22 09:00:00,0.247,0.34,0.37200000000000005 -2014-12-22 10:00:00,0.24600000000000002,0.34,0.37 -2014-12-22 11:00:00,0.247,0.341,0.369 -2014-12-22 12:00:00,0.247,0.342,0.369 -2014-12-22 13:00:00,0.248,0.34299999999999997,0.368 -2014-12-22 14:00:00,0.249,0.342,0.366 -2014-12-22 15:00:00,0.249,0.341,0.365 -2014-12-22 16:00:00,0.249,0.341,0.366 -2014-12-22 17:00:00,0.249,0.341,0.365 -2014-12-22 18:00:00,0.249,0.341,0.364 -2014-12-22 19:00:00,0.249,0.341,0.364 -2014-12-22 20:00:00,0.249,0.34,0.364 -2014-12-22 21:00:00,0.249,0.341,0.363 -2014-12-22 22:00:00,0.249,0.341,0.36200000000000004 -2014-12-22 23:00:00,0.249,0.34,0.36200000000000004 -2014-12-23 00:00:00,0.249,0.34,0.36200000000000004 -2014-12-23 01:00:00,0.249,0.34,0.36200000000000004 -2014-12-23 02:00:00,0.249,0.34,0.36200000000000004 -2014-12-23 03:00:00,0.249,0.34,0.36200000000000004 -2014-12-23 04:00:00,0.249,0.33899999999999997,0.36200000000000004 -2014-12-23 05:00:00,0.249,0.33899999999999997,0.361 -2014-12-23 06:00:00,0.249,0.33899999999999997,0.361 -2014-12-23 07:00:00,0.249,0.33899999999999997,0.361 -2014-12-23 08:00:00,0.249,0.33899999999999997,0.361 -2014-12-23 09:00:00,0.249,0.33899999999999997,0.361 -2014-12-23 10:00:00,0.249,0.33899999999999997,0.361 -2014-12-23 11:00:00,0.249,0.33899999999999997,0.36 -2014-12-23 12:00:00,0.248,0.33899999999999997,0.36 -2014-12-23 13:00:00,0.249,0.33899999999999997,0.36 -2014-12-23 14:00:00,0.249,0.33899999999999997,0.36 -2014-12-23 15:00:00,0.249,0.337,0.36 -2014-12-23 16:00:00,0.249,0.336,0.36 -2014-12-23 17:00:00,0.249,0.336,0.36 -2014-12-23 18:00:00,0.248,0.337,0.36 -2014-12-23 19:00:00,0.249,0.33799999999999997,0.36 -2014-12-23 20:00:00,0.249,0.33899999999999997,0.36 -2014-12-23 21:00:00,0.248,0.33899999999999997,0.36 -2014-12-23 22:00:00,0.249,0.33899999999999997,0.359 -2014-12-23 23:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 00:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 01:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 02:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 03:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 04:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 05:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 06:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 07:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 08:00:00,0.248,0.33899999999999997,0.359 -2014-12-24 09:00:00,0.248,0.33899999999999997,0.358 -2014-12-24 10:00:00,0.248,0.33899999999999997,0.358 -2014-12-24 11:00:00,0.248,0.33899999999999997,0.35600000000000004 -2014-12-24 12:00:00,0.248,0.33899999999999997,0.342 -2014-12-24 13:00:00,0.248,0.33799999999999997,0.341 -2014-12-24 14:00:00,0.248,0.33799999999999997,0.342 -2014-12-24 15:00:00,0.247,0.33799999999999997,0.344 -2014-12-24 16:00:00,0.247,0.33799999999999997,0.344 -2014-12-24 17:00:00,0.245,0.33899999999999997,0.344 -2014-12-24 18:00:00,0.243,0.34,0.345 -2014-12-24 19:00:00,0.243,0.34,0.345 -2014-12-24 20:00:00,0.243,0.341,0.345 -2014-12-24 21:00:00,0.243,0.341,0.345 -2014-12-24 22:00:00,0.243,0.341,0.345 -2014-12-24 23:00:00,0.243,0.341,0.345 -2014-12-25 00:00:00,0.243,0.341,0.345 -2014-12-25 01:00:00,0.243,0.341,0.344 -2014-12-25 02:00:00,0.244,0.341,0.344 -2014-12-25 03:00:00,0.245,0.342,0.344 -2014-12-25 04:00:00,0.245,0.34299999999999997,0.344 -2014-12-25 05:00:00,0.24600000000000002,0.34299999999999997,0.34299999999999997 -2014-12-25 06:00:00,0.24600000000000002,0.34299999999999997,0.34299999999999997 -2014-12-25 07:00:00,0.247,0.34299999999999997,0.34299999999999997 -2014-12-25 08:00:00,0.247,0.34299999999999997,0.342 -2014-12-25 09:00:00,0.248,0.344,0.342 -2014-12-25 10:00:00,0.248,0.344,0.342 -2014-12-25 11:00:00,0.248,0.344,0.342 -2014-12-25 12:00:00,0.248,0.344,0.341 -2014-12-25 13:00:00,0.248,0.345,0.341 -2014-12-25 14:00:00,0.248,0.34600000000000003,0.341 -2014-12-25 15:00:00,0.248,0.34600000000000003,0.341 -2014-12-25 16:00:00,0.248,0.348,0.341 -2014-12-25 17:00:00,0.247,0.349,0.341 -2014-12-25 18:00:00,0.248,0.35100000000000003,0.341 -2014-12-25 19:00:00,0.247,0.353,0.341 -2014-12-25 20:00:00,0.247,0.354,0.34 -2014-12-25 21:00:00,0.247,0.355,0.34 -2014-12-25 22:00:00,0.247,0.355,0.34 -2014-12-25 23:00:00,0.247,0.355,0.33899999999999997 -2014-12-26 00:00:00,0.247,0.355,0.33899999999999997 -2014-12-26 01:00:00,0.247,0.355,0.34 -2014-12-26 02:00:00,0.247,0.355,0.33899999999999997 -2014-12-26 03:00:00,0.247,0.35600000000000004,0.33899999999999997 -2014-12-26 04:00:00,0.247,0.35700000000000004,0.33899999999999997 -2014-12-26 05:00:00,0.24600000000000002,0.35600000000000004,0.33899999999999997 -2014-12-26 06:00:00,0.247,0.35700000000000004,0.33799999999999997 -2014-12-26 07:00:00,0.247,0.35700000000000004,0.33799999999999997 -2014-12-26 08:00:00,0.24600000000000002,0.35600000000000004,0.33799999999999997 -2014-12-26 09:00:00,0.247,0.35600000000000004,0.33799999999999997 -2014-12-26 10:00:00,0.24600000000000002,0.35600000000000004,0.33799999999999997 -2014-12-26 11:00:00,0.245,0.35600000000000004,0.33899999999999997 -2014-12-26 12:00:00,0.245,0.358,0.33899999999999997 -2014-12-26 13:00:00,0.245,0.358,0.33899999999999997 -2014-12-26 14:00:00,0.24600000000000002,0.36,0.33899999999999997 -2014-12-26 15:00:00,0.24600000000000002,0.361,0.33799999999999997 -2014-12-26 16:00:00,0.247,0.36200000000000004,0.33799999999999997 -2014-12-26 17:00:00,0.247,0.364,0.33799999999999997 -2014-12-26 18:00:00,0.247,0.365,0.337 -2014-12-26 19:00:00,0.24600000000000002,0.366,0.337 -2014-12-26 20:00:00,0.24600000000000002,0.36700000000000005,0.336 -2014-12-26 21:00:00,0.24600000000000002,0.366,0.336 -2014-12-26 22:00:00,0.24600000000000002,0.366,0.337 -2014-12-26 23:00:00,0.24600000000000002,0.366,0.336 -2014-12-27 00:00:00,0.24600000000000002,0.365,0.336 -2014-12-27 01:00:00,0.24600000000000002,0.365,0.336 -2014-12-27 02:00:00,0.24600000000000002,0.365,0.336 -2014-12-27 03:00:00,0.24600000000000002,0.365,0.337 -2014-12-27 04:00:00,0.24600000000000002,0.364,0.337 -2014-12-27 05:00:00,0.24600000000000002,0.363,0.336 -2014-12-27 06:00:00,0.24600000000000002,0.36200000000000004,0.337 -2014-12-27 07:00:00,0.24600000000000002,0.361,0.337 -2014-12-27 08:00:00,0.24600000000000002,0.359,0.337 -2014-12-27 09:00:00,0.24600000000000002,0.355,0.337 -2014-12-27 10:00:00,0.24600000000000002,0.355,0.337 -2014-12-27 11:00:00,0.24600000000000002,0.36,0.33799999999999997 -2014-12-27 12:00:00,0.244,0.361,0.33899999999999997 -2014-12-27 13:00:00,0.24100000000000002,0.36200000000000004,0.33899999999999997 -2014-12-27 14:00:00,0.24,0.366,0.34 -2014-12-27 15:00:00,0.24,0.37,0.34 -2014-12-27 16:00:00,0.243,0.369,0.33899999999999997 -2014-12-27 17:00:00,0.24600000000000002,0.369,0.33799999999999997 -2014-12-27 18:00:00,0.24600000000000002,0.37,0.33799999999999997 -2014-12-27 19:00:00,0.24600000000000002,0.37,0.33799999999999997 -2014-12-27 20:00:00,0.24600000000000002,0.37,0.33799999999999997 -2014-12-27 21:00:00,0.24600000000000002,0.369,0.33799999999999997 -2014-12-27 22:00:00,0.24600000000000002,0.368,0.33799999999999997 -2014-12-27 23:00:00,0.247,0.368,0.33799999999999997 -2014-12-28 00:00:00,0.247,0.368,0.33799999999999997 -2014-12-28 01:00:00,0.247,0.366,0.33799999999999997 -2014-12-28 02:00:00,0.247,0.366,0.33799999999999997 -2014-12-28 03:00:00,0.247,0.365,0.33799999999999997 -2014-12-28 04:00:00,0.247,0.365,0.33799999999999997 -2014-12-28 05:00:00,0.247,0.365,0.33799999999999997 -2014-12-28 06:00:00,0.247,0.364,0.33799999999999997 -2014-12-28 07:00:00,0.247,0.363,0.33799999999999997 -2014-12-28 08:00:00,0.247,0.363,0.33799999999999997 -2014-12-28 09:00:00,0.248,0.36200000000000004,0.33799999999999997 -2014-12-28 10:00:00,0.247,0.361,0.337 -2014-12-28 11:00:00,0.247,0.361,0.337 -2014-12-28 12:00:00,0.247,0.361,0.337 -2014-12-28 13:00:00,0.247,0.361,0.337 -2014-12-28 14:00:00,0.247,0.361,0.337 -2014-12-28 15:00:00,0.247,0.359,0.337 -2014-12-28 16:00:00,0.24600000000000002,0.355,0.337 -2014-12-28 17:00:00,0.247,0.35600000000000004,0.337 -2014-12-28 18:00:00,0.24600000000000002,0.358,0.337 -2014-12-28 19:00:00,0.24600000000000002,0.36,0.337 -2014-12-28 20:00:00,0.24600000000000002,0.36,0.337 -2014-12-28 21:00:00,0.24600000000000002,0.36,0.337 -2014-12-28 22:00:00,0.24600000000000002,0.359,0.336 -2014-12-28 23:00:00,0.24600000000000002,0.358,0.337 -2014-12-29 00:00:00,0.24600000000000002,0.35700000000000004,0.337 -2014-12-29 01:00:00,0.24600000000000002,0.355,0.336 -2014-12-29 02:00:00,0.24600000000000002,0.35600000000000004,0.337 -2014-12-29 03:00:00,0.24600000000000002,0.358,0.337 -2014-12-29 04:00:00,0.245,0.358,0.337 -2014-12-29 05:00:00,0.245,0.36,0.337 -2014-12-29 06:00:00,0.245,0.36,0.336 -2014-12-29 07:00:00,0.245,0.361,0.337 -2014-12-29 08:00:00,0.245,0.36200000000000004,0.337 -2014-12-29 09:00:00,0.245,0.363,0.337 -2014-12-29 10:00:00,0.245,0.365,0.337 -2014-12-29 11:00:00,0.244,0.361,0.33799999999999997 -2014-12-29 12:00:00,0.24,0.361,0.33899999999999997 -2014-12-29 13:00:00,0.239,0.361,0.33899999999999997 -2014-12-29 14:00:00,0.239,0.361,0.34 -2014-12-29 15:00:00,0.239,0.361,0.33899999999999997 -2014-12-29 16:00:00,0.24,0.36200000000000004,0.33899999999999997 -2014-12-29 17:00:00,0.244,0.365,0.337 -2014-12-29 18:00:00,0.245,0.365,0.337 -2014-12-29 19:00:00,0.245,0.366,0.337 -2014-12-29 20:00:00,0.245,0.366,0.337 -2014-12-29 21:00:00,0.245,0.366,0.337 -2014-12-29 22:00:00,0.245,0.366,0.336 -2014-12-29 23:00:00,0.245,0.365,0.336 -2014-12-30 00:00:00,0.24600000000000002,0.365,0.336 -2014-12-30 01:00:00,0.245,0.365,0.336 -2014-12-30 02:00:00,0.245,0.365,0.336 -2014-12-30 03:00:00,0.245,0.365,0.337 -2014-12-30 04:00:00,0.24600000000000002,0.364,0.337 -2014-12-30 05:00:00,0.245,0.363,0.337 -2014-12-30 06:00:00,0.245,0.363,0.337 -2014-12-30 07:00:00,0.245,0.363,0.337 -2014-12-30 08:00:00,0.245,0.363,0.337 -2014-12-30 09:00:00,0.24100000000000002,0.361,0.33899999999999997 -2014-12-30 10:00:00,0.24,0.361,0.33899999999999997 -2014-12-30 11:00:00,0.24,0.361,0.33899999999999997 -2014-12-30 12:00:00,0.24,0.361,0.33899999999999997 -2014-12-30 13:00:00,0.242,0.361,0.33899999999999997 -2014-12-30 14:00:00,0.243,0.36,0.33899999999999997 -2014-12-30 15:00:00,0.243,0.36,0.33899999999999997 -2014-12-30 16:00:00,0.243,0.36,0.33899999999999997 -2014-12-30 17:00:00,0.243,0.36,0.33899999999999997 -2014-12-30 18:00:00,0.244,0.36,0.33899999999999997 -2014-12-30 19:00:00,0.244,0.36,0.33899999999999997 -2014-12-30 20:00:00,0.244,0.358,0.33899999999999997 -2014-12-30 21:00:00,0.244,0.358,0.33899999999999997 -2014-12-30 22:00:00,0.244,0.358,0.33899999999999997 -2014-12-30 23:00:00,0.245,0.358,0.33899999999999997 -2014-12-31 00:00:00,0.245,0.358,0.33899999999999997 -2014-12-31 01:00:00,0.245,0.358,0.33899999999999997 -2014-12-31 02:00:00,0.24600000000000002,0.358,0.33899999999999997 -2014-12-31 03:00:00,0.24600000000000002,0.358,0.33899999999999997 -2014-12-31 04:00:00,0.24600000000000002,0.35700000000000004,0.33899999999999997 -2014-12-31 05:00:00,0.247,0.35700000000000004,0.33899999999999997 -2014-12-31 06:00:00,0.247,0.35600000000000004,0.34 -2014-12-31 07:00:00,0.247,0.35600000000000004,0.34 -2014-12-31 08:00:00,0.248,0.35600000000000004,0.34 -2014-12-31 09:00:00,0.248,0.35600000000000004,0.34 -2014-12-31 10:00:00,0.248,0.355,0.34 -2014-12-31 11:00:00,0.248,0.355,0.34 -2014-12-31 12:00:00,0.249,0.355,0.34 -2014-12-31 13:00:00,0.25,0.355,0.341 -2014-12-31 14:00:00,0.25,0.355,0.344 -2014-12-31 15:00:00,0.251,0.355,0.34700000000000003 -2014-12-31 16:00:00,0.251,0.355,0.35200000000000004 -2014-12-31 17:00:00,0.251,0.355,0.359 -2014-12-31 18:00:00,0.25,0.354,0.369 -2014-12-31 19:00:00,0.25,0.353,0.373 -2014-12-31 20:00:00,0.25,0.353,0.374 -2014-12-31 21:00:00,0.251,0.353,0.375 -2014-12-31 22:00:00,0.251,0.353,0.375 -2014-12-31 23:00:00,0.251,0.35200000000000004,0.375 -2015-01-01 00:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 01:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 02:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 03:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 04:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 05:00:00,0.252,0.35200000000000004,0.375 -2015-01-01 06:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 07:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 08:00:00,0.252,0.35100000000000003,0.375 -2015-01-01 09:00:00,0.253,0.35,0.375 -2015-01-01 10:00:00,0.253,0.35,0.375 -2015-01-01 11:00:00,0.254,0.349,0.375 -2015-01-01 12:00:00,0.255,0.349,0.375 -2015-01-01 13:00:00,0.255,0.349,0.375 -2015-01-01 14:00:00,0.256,0.349,0.375 -2015-01-01 15:00:00,0.256,0.349,0.376 -2015-01-01 16:00:00,0.256,0.349,0.376 -2015-01-01 17:00:00,0.257,0.349,0.376 -2015-01-01 18:00:00,0.256,0.349,0.376 -2015-01-01 19:00:00,0.256,0.349,0.376 -2015-01-01 20:00:00,0.256,0.349,0.376 -2015-01-01 21:00:00,0.256,0.349,0.376 -2015-01-01 22:00:00,0.256,0.349,0.376 -2015-01-01 23:00:00,0.256,0.349,0.376 -2015-01-02 00:00:00,0.255,0.349,0.376 -2015-01-02 01:00:00,0.255,0.349,0.376 -2015-01-02 02:00:00,0.255,0.349,0.375 -2015-01-02 03:00:00,0.255,0.349,0.375 -2015-01-02 04:00:00,0.254,0.349,0.376 -2015-01-02 05:00:00,0.252,0.349,0.376 -2015-01-02 06:00:00,0.248,0.349,0.376 -2015-01-02 07:00:00,0.247,0.349,0.376 -2015-01-02 08:00:00,0.248,0.349,0.376 -2015-01-02 09:00:00,0.248,0.349,0.376 -2015-01-02 10:00:00,0.248,0.349,0.376 -2015-01-02 11:00:00,0.249,0.34700000000000003,0.377 -2015-01-02 12:00:00,0.25,0.34700000000000003,0.377 -2015-01-02 13:00:00,0.251,0.349,0.377 -2015-01-02 14:00:00,0.251,0.349,0.377 -2015-01-02 15:00:00,0.251,0.35100000000000003,0.37799999999999995 -2015-01-02 16:00:00,0.252,0.344,0.37799999999999995 -2015-01-02 17:00:00,0.252,0.34700000000000003,0.37799999999999995 -2015-01-02 18:00:00,0.252,0.349,0.37799999999999995 -2015-01-02 19:00:00,0.252,0.349,0.37799999999999995 -2015-01-02 20:00:00,0.253,0.359,0.37799999999999995 -2015-01-02 21:00:00,0.253,0.369,0.37799999999999995 -2015-01-02 22:00:00,0.254,0.37200000000000005,0.37799999999999995 -2015-01-02 23:00:00,0.255,0.37200000000000005,0.37799999999999995 -2015-01-03 00:00:00,0.255,0.377,0.37799999999999995 -2015-01-03 01:00:00,0.255,0.37799999999999995,0.37799999999999995 -2015-01-03 02:00:00,0.255,0.374,0.37799999999999995 -2015-01-03 03:00:00,0.255,0.366,0.37799999999999995 -2015-01-03 04:00:00,0.255,0.366,0.37799999999999995 -2015-01-03 05:00:00,0.255,0.366,0.37799999999999995 -2015-01-03 06:00:00,0.255,0.366,0.377 -2015-01-03 07:00:00,0.254,0.368,0.377 -2015-01-03 08:00:00,0.254,0.368,0.377 -2015-01-03 09:00:00,0.254,0.368,0.377 -2015-01-03 10:00:00,0.254,0.368,0.377 -2015-01-03 11:00:00,0.253,0.368,0.377 -2015-01-03 12:00:00,0.251,0.368,0.377 -2015-01-03 13:00:00,0.25,0.36700000000000005,0.377 -2015-01-03 14:00:00,0.252,0.366,0.377 -2015-01-03 15:00:00,0.253,0.366,0.377 -2015-01-03 16:00:00,0.253,0.366,0.377 -2015-01-03 17:00:00,0.253,0.365,0.377 -2015-01-03 18:00:00,0.253,0.365,0.377 -2015-01-03 19:00:00,0.252,0.365,0.377 -2015-01-03 20:00:00,0.252,0.365,0.377 -2015-01-03 21:00:00,0.252,0.364,0.377 -2015-01-03 22:00:00,0.252,0.361,0.377 -2015-01-03 23:00:00,0.252,0.355,0.37799999999999995 -2015-01-04 00:00:00,0.251,0.35200000000000004,0.37799999999999995 -2015-01-04 01:00:00,0.251,0.35100000000000003,0.37799999999999995 -2015-01-04 02:00:00,0.251,0.36,0.37799999999999995 -2015-01-04 03:00:00,0.251,0.366,0.37799999999999995 -2015-01-04 04:00:00,0.251,0.39,0.37799999999999995 -2015-01-04 05:00:00,0.252,0.43799999999999994,0.37799999999999995 -2015-01-04 06:00:00,0.252,0.451,0.379 -2015-01-04 07:00:00,0.255,0.451,0.379 -2015-01-04 08:00:00,0.252,0.45299999999999996,0.379 -2015-01-04 09:00:00,0.252,0.456,0.379 -2015-01-04 10:00:00,0.252,0.457,0.379 -2015-01-04 11:00:00,0.252,0.45799999999999996,0.379 -2015-01-04 12:00:00,0.253,0.44299999999999995,0.379 -2015-01-04 13:00:00,0.254,0.424,0.379 -2015-01-04 14:00:00,0.256,0.428,0.379 -2015-01-04 15:00:00,0.257,0.426,0.379 -2015-01-04 16:00:00,0.257,0.414,0.379 -2015-01-04 17:00:00,0.257,0.406,0.379 -2015-01-04 18:00:00,0.257,0.401,0.379 -2015-01-04 19:00:00,0.257,0.392,0.38 -2015-01-04 20:00:00,0.257,0.396,0.38 -2015-01-04 21:00:00,0.256,0.452,0.38 -2015-01-04 22:00:00,0.256,0.45399999999999996,0.38 -2015-01-04 23:00:00,0.256,0.456,0.38 -2015-01-05 00:00:00,0.256,0.457,0.38 -2015-01-05 01:00:00,0.255,0.45799999999999996,0.38 -2015-01-05 02:00:00,0.255,0.45899999999999996,0.38 -2015-01-05 03:00:00,0.255,0.46,0.38 -2015-01-05 04:00:00,0.255,0.461,0.38 -2015-01-05 05:00:00,0.255,0.46,0.38 -2015-01-05 06:00:00,0.255,0.435,0.38 -2015-01-05 07:00:00,0.255,0.42100000000000004,0.38 -2015-01-05 08:00:00,0.255,0.415,0.38 -2015-01-05 09:00:00,0.254,0.408,0.38 -2015-01-05 10:00:00,0.254,0.40399999999999997,0.38 -2015-01-05 11:00:00,0.253,0.4,0.38 -2015-01-05 12:00:00,0.253,0.389,0.38 -2015-01-05 13:00:00,0.253,0.387,0.38 -2015-01-05 14:00:00,0.253,0.38299999999999995,0.38 -2015-01-05 15:00:00,0.253,0.382,0.38 -2015-01-05 16:00:00,0.253,0.382,0.38 -2015-01-05 17:00:00,0.253,0.376,0.38 -2015-01-05 18:00:00,0.253,0.37200000000000005,0.38 -2015-01-05 19:00:00,0.253,0.37200000000000005,0.38 -2015-01-05 20:00:00,0.253,0.371,0.38 -2015-01-05 21:00:00,0.253,0.37,0.38 -2015-01-05 22:00:00,0.253,0.37,0.38 -2015-01-05 23:00:00,0.252,0.368,0.38 -2015-01-06 00:00:00,0.252,0.368,0.379 -2015-01-06 01:00:00,0.252,0.36700000000000005,0.379 -2015-01-06 02:00:00,0.252,0.366,0.379 -2015-01-06 03:00:00,0.252,0.365,0.379 -2015-01-06 04:00:00,0.252,0.365,0.379 -2015-01-06 05:00:00,0.251,0.36,0.379 -2015-01-06 06:00:00,0.251,0.36,0.379 -2015-01-06 07:00:00,0.251,0.361,0.379 -2015-01-06 08:00:00,0.251,0.361,0.379 -2015-01-06 09:00:00,0.251,0.36200000000000004,0.379 -2015-01-06 10:00:00,0.25,0.363,0.379 -2015-01-06 11:00:00,0.25,0.363,0.379 -2015-01-06 12:00:00,0.25,0.363,0.379 -2015-01-06 13:00:00,0.25,0.363,0.379 -2015-01-06 14:00:00,0.25,0.363,0.379 -2015-01-06 15:00:00,0.25,0.363,0.379 -2015-01-06 16:00:00,0.25,0.363,0.379 -2015-01-06 17:00:00,0.25,0.363,0.379 -2015-01-06 18:00:00,0.25,0.363,0.379 -2015-01-06 19:00:00,0.25,0.36200000000000004,0.379 -2015-01-06 20:00:00,0.25,0.361,0.379 -2015-01-06 21:00:00,0.25,0.361,0.379 -2015-01-06 22:00:00,0.25,0.361,0.379 -2015-01-06 23:00:00,0.25,0.361,0.379 -2015-01-07 00:00:00,0.25,0.361,0.38 -2015-01-07 01:00:00,0.25,0.361,0.38 -2015-01-07 02:00:00,0.25,0.361,0.38 -2015-01-07 03:00:00,0.249,0.361,0.38 -2015-01-07 04:00:00,0.249,0.361,0.38 -2015-01-07 05:00:00,0.249,0.36,0.38 -2015-01-07 06:00:00,0.249,0.36,0.38 -2015-01-07 07:00:00,0.249,0.36,0.38 -2015-01-07 08:00:00,0.248,0.36,0.38 -2015-01-07 09:00:00,0.248,0.36,0.38 -2015-01-07 10:00:00,0.248,0.36,0.38 -2015-01-07 11:00:00,0.248,0.36,0.379 -2015-01-07 12:00:00,0.249,0.36,0.379 -2015-01-07 13:00:00,0.249,0.36,0.379 -2015-01-07 14:00:00,0.25,0.359,0.379 -2015-01-07 15:00:00,0.25,0.359,0.37799999999999995 -2015-01-07 16:00:00,0.25,0.359,0.37799999999999995 -2015-01-07 17:00:00,0.25,0.358,0.37799999999999995 -2015-01-07 18:00:00,0.25,0.358,0.37799999999999995 -2015-01-07 19:00:00,0.25,0.358,0.37799999999999995 -2015-01-07 20:00:00,0.251,0.358,0.377 -2015-01-07 21:00:00,0.251,0.355,0.377 -2015-01-07 22:00:00,0.251,0.349,0.377 -2015-01-07 23:00:00,0.251,0.35,0.377 -2015-01-08 00:00:00,0.251,0.354,0.377 -2015-01-08 01:00:00,0.251,0.35600000000000004,0.377 -2015-01-08 02:00:00,0.251,0.35700000000000004,0.377 -2015-01-08 03:00:00,0.251,0.358,0.377 -2015-01-08 04:00:00,0.251,0.358,0.377 -2015-01-08 05:00:00,0.25,0.355,0.377 -2015-01-08 06:00:00,0.249,0.35600000000000004,0.37799999999999995 -2015-01-08 07:00:00,0.247,0.358,0.37799999999999995 -2015-01-08 08:00:00,0.245,0.349,0.37799999999999995 -2015-01-08 09:00:00,0.245,0.35200000000000004,0.379 -2015-01-08 10:00:00,0.24600000000000002,0.355,0.379 -2015-01-08 11:00:00,0.248,0.359,0.379 -2015-01-08 12:00:00,0.249,0.361,0.379 -2015-01-08 13:00:00,0.24600000000000002,0.361,0.381 -2015-01-08 14:00:00,0.247,0.361,0.381 -2015-01-08 15:00:00,0.248,0.361,0.382 -2015-01-08 16:00:00,0.249,0.35,0.382 -2015-01-08 17:00:00,0.252,0.355,0.381 -2015-01-08 18:00:00,0.258,0.35600000000000004,0.38 -2015-01-08 19:00:00,0.259,0.35600000000000004,0.381 -2015-01-08 20:00:00,0.256,0.36200000000000004,0.382 -2015-01-08 21:00:00,0.253,0.364,0.38299999999999995 -2015-01-08 22:00:00,0.252,0.365,0.38299999999999995 -2015-01-08 23:00:00,0.252,0.365,0.38299999999999995 -2015-01-09 00:00:00,0.253,0.366,0.382 -2015-01-09 01:00:00,0.253,0.366,0.382 -2015-01-09 02:00:00,0.252,0.366,0.382 -2015-01-09 03:00:00,0.252,0.366,0.38299999999999995 -2015-01-09 04:00:00,0.252,0.366,0.38299999999999995 -2015-01-09 05:00:00,0.253,0.365,0.38299999999999995 -2015-01-09 06:00:00,0.255,0.365,0.382 -2015-01-09 07:00:00,0.257,0.365,0.382 -2015-01-09 08:00:00,0.258,0.365,0.382 -2015-01-09 09:00:00,0.258,0.365,0.382 -2015-01-09 10:00:00,0.258,0.365,0.382 -2015-01-09 11:00:00,0.258,0.365,0.382 -2015-01-09 12:00:00,0.258,0.365,0.382 -2015-01-09 13:00:00,0.258,0.363,0.382 -2015-01-09 14:00:00,0.258,0.363,0.381 -2015-01-09 15:00:00,0.258,0.363,0.381 -2015-01-09 16:00:00,0.258,0.363,0.381 -2015-01-09 17:00:00,0.257,0.363,0.381 -2015-01-09 18:00:00,0.256,0.363,0.382 -2015-01-09 19:00:00,0.252,0.36200000000000004,0.382 -2015-01-09 20:00:00,0.251,0.361,0.381 -2015-01-09 21:00:00,0.251,0.361,0.381 -2015-01-09 22:00:00,0.252,0.361,0.381 -2015-01-09 23:00:00,0.257,0.361,0.381 -2015-01-10 00:00:00,0.261,0.361,0.381 -2015-01-10 01:00:00,0.26,0.36,0.381 -2015-01-10 02:00:00,0.259,0.36,0.382 -2015-01-10 03:00:00,0.258,0.36,0.382 -2015-01-10 04:00:00,0.256,0.36,0.38299999999999995 -2015-01-10 05:00:00,0.256,0.354,0.38299999999999995 -2015-01-10 06:00:00,0.257,0.355,0.38299999999999995 -2015-01-10 07:00:00,0.259,0.35700000000000004,0.38299999999999995 -2015-01-10 08:00:00,0.261,0.358,0.38299999999999995 -2015-01-10 09:00:00,0.261,0.358,0.38299999999999995 -2015-01-10 10:00:00,0.261,0.358,0.38299999999999995 -2015-01-10 11:00:00,0.261,0.358,0.38299999999999995 -2015-01-10 12:00:00,0.261,0.358,0.38299999999999995 -2015-01-10 13:00:00,0.261,0.358,0.38299999999999995 -2015-01-10 14:00:00,0.261,0.358,0.38299999999999995 -2015-01-10 15:00:00,0.26,0.358,0.38299999999999995 -2015-01-10 16:00:00,0.257,0.35700000000000004,0.382 -2015-01-10 17:00:00,0.257,0.35700000000000004,0.381 -2015-01-10 18:00:00,0.261,0.35700000000000004,0.382 -2015-01-10 19:00:00,0.258,0.35700000000000004,0.38299999999999995 -2015-01-10 20:00:00,0.262,0.35700000000000004,0.38299999999999995 -2015-01-10 21:00:00,0.264,0.35600000000000004,0.38299999999999995 -2015-01-10 22:00:00,0.264,0.35600000000000004,0.38299999999999995 -2015-01-10 23:00:00,0.263,0.35600000000000004,0.38299999999999995 -2015-01-11 00:00:00,0.263,0.355,0.38299999999999995 -2015-01-11 01:00:00,0.262,0.355,0.38299999999999995 -2015-01-11 02:00:00,0.262,0.355,0.38299999999999995 -2015-01-11 03:00:00,0.261,0.355,0.38299999999999995 -2015-01-11 04:00:00,0.261,0.355,0.38299999999999995 -2015-01-11 05:00:00,0.26,0.355,0.38299999999999995 -2015-01-11 06:00:00,0.26,0.355,0.38299999999999995 -2015-01-11 07:00:00,0.26,0.355,0.38299999999999995 -2015-01-11 08:00:00,0.259,0.355,0.38299999999999995 -2015-01-11 09:00:00,0.259,0.355,0.38299999999999995 -2015-01-11 10:00:00,0.259,0.355,0.38299999999999995 -2015-01-11 11:00:00,0.258,0.355,0.38299999999999995 -2015-01-11 12:00:00,0.257,0.355,0.38299999999999995 -2015-01-11 13:00:00,0.257,0.355,0.38299999999999995 -2015-01-11 14:00:00,0.257,0.355,0.38299999999999995 -2015-01-11 15:00:00,0.257,0.355,0.38299999999999995 -2015-01-11 16:00:00,0.258,0.355,0.38299999999999995 -2015-01-11 17:00:00,0.258,0.355,0.38299999999999995 -2015-01-11 18:00:00,0.258,0.355,0.38299999999999995 -2015-01-11 19:00:00,0.257,0.355,0.38299999999999995 -2015-01-11 20:00:00,0.257,0.355,0.38299999999999995 -2015-01-11 21:00:00,0.256,0.355,0.38299999999999995 -2015-01-11 22:00:00,0.256,0.355,0.38299999999999995 -2015-01-11 23:00:00,0.255,0.355,0.38299999999999995 -2015-01-12 00:00:00,0.256,0.355,0.38299999999999995 -2015-01-12 01:00:00,0.256,0.355,0.38299999999999995 -2015-01-12 02:00:00,0.251,0.355,0.38299999999999995 -2015-01-12 03:00:00,0.251,0.354,0.38299999999999995 -2015-01-12 04:00:00,0.252,0.354,0.38299999999999995 -2015-01-12 05:00:00,0.253,0.353,0.38299999999999995 -2015-01-12 06:00:00,0.254,0.353,0.38299999999999995 -2015-01-12 07:00:00,0.254,0.353,0.38299999999999995 -2015-01-12 08:00:00,0.255,0.353,0.38299999999999995 -2015-01-12 09:00:00,0.255,0.355,0.38299999999999995 -2015-01-12 10:00:00,0.256,0.353,0.38299999999999995 -2015-01-12 11:00:00,0.256,0.35200000000000004,0.38299999999999995 -2015-01-12 12:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 13:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 14:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 15:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 16:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 17:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 18:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 19:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 20:00:00,0.255,0.35100000000000003,0.38299999999999995 -2015-01-12 21:00:00,0.255,0.35100000000000003,0.382 -2015-01-12 22:00:00,0.255,0.35100000000000003,0.382 -2015-01-12 23:00:00,0.255,0.35100000000000003,0.382 -2015-01-13 00:00:00,0.255,0.35100000000000003,0.382 -2015-01-13 01:00:00,0.255,0.35100000000000003,0.382 -2015-01-13 02:00:00,0.255,0.35100000000000003,0.382 -2015-01-13 03:00:00,0.255,0.35100000000000003,0.382 -2015-01-13 04:00:00,0.255,0.35,0.382 -2015-01-13 05:00:00,0.254,0.35,0.382 -2015-01-13 06:00:00,0.254,0.35,0.382 -2015-01-13 07:00:00,0.254,0.35,0.382 -2015-01-13 08:00:00,0.254,0.349,0.382 -2015-01-13 09:00:00,0.254,0.349,0.382 -2015-01-13 10:00:00,0.254,0.349,0.382 -2015-01-13 11:00:00,0.254,0.349,0.382 -2015-01-13 12:00:00,0.254,0.349,0.382 -2015-01-13 13:00:00,0.254,0.349,0.382 -2015-01-13 14:00:00,0.254,0.349,0.382 -2015-01-13 15:00:00,0.254,0.349,0.382 -2015-01-13 16:00:00,0.254,0.349,0.382 -2015-01-13 17:00:00,0.254,0.349,0.382 -2015-01-13 18:00:00,0.251,0.349,0.38299999999999995 -2015-01-13 19:00:00,0.249,0.349,0.382 -2015-01-13 20:00:00,0.248,0.349,0.382 -2015-01-13 21:00:00,0.248,0.349,0.38299999999999995 -2015-01-13 22:00:00,0.249,0.348,0.38299999999999995 -2015-01-13 23:00:00,0.25,0.348,0.38299999999999995 -2015-01-14 00:00:00,0.252,0.348,0.38299999999999995 -2015-01-14 01:00:00,0.252,0.348,0.38299999999999995 -2015-01-14 02:00:00,0.251,0.348,0.38299999999999995 -2015-01-14 03:00:00,0.251,0.348,0.38299999999999995 -2015-01-14 04:00:00,0.253,0.348,0.38299999999999995 -2015-01-14 05:00:00,0.251,0.348,0.382 -2015-01-14 06:00:00,0.25,0.348,0.38299999999999995 -2015-01-14 07:00:00,0.25,0.348,0.38299999999999995 -2015-01-14 08:00:00,0.25,0.348,0.38299999999999995 -2015-01-14 09:00:00,0.253,0.348,0.38299999999999995 -2015-01-14 10:00:00,0.255,0.348,0.38299999999999995 -2015-01-14 11:00:00,0.257,0.348,0.38299999999999995 -2015-01-14 12:00:00,0.256,0.348,0.38299999999999995 -2015-01-14 13:00:00,0.252,0.348,0.38299999999999995 -2015-01-14 14:00:00,0.252,0.348,0.38299999999999995 -2015-01-14 15:00:00,0.253,0.348,0.38299999999999995 -2015-01-14 16:00:00,0.256,0.348,0.38299999999999995 -2015-01-14 17:00:00,0.256,0.348,0.38299999999999995 -2015-01-14 18:00:00,0.256,0.348,0.38299999999999995 -2015-01-14 19:00:00,0.255,0.348,0.384 -2015-01-14 20:00:00,0.254,0.348,0.384 -2015-01-14 21:00:00,0.253,0.348,0.384 -2015-01-14 22:00:00,0.253,0.348,0.384 -2015-01-14 23:00:00,0.254,0.348,0.384 -2015-01-15 00:00:00,0.254,0.348,0.384 -2015-01-15 01:00:00,0.254,0.348,0.384 -2015-01-15 02:00:00,0.255,0.348,0.384 -2015-01-15 03:00:00,0.255,0.348,0.38299999999999995 -2015-01-15 04:00:00,0.256,0.348,0.38299999999999995 -2015-01-15 05:00:00,0.257,0.348,0.38299999999999995 -2015-01-15 06:00:00,0.257,0.348,0.38299999999999995 -2015-01-15 07:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 08:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 09:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 10:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 11:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 12:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 13:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 14:00:00,0.258,0.348,0.38299999999999995 -2015-01-15 15:00:00,0.258,0.348,0.382 -2015-01-15 16:00:00,0.258,0.348,0.382 -2015-01-15 17:00:00,0.257,0.348,0.382 -2015-01-15 18:00:00,0.257,0.34700000000000003,0.382 -2015-01-15 19:00:00,0.257,0.34700000000000003,0.382 -2015-01-15 20:00:00,0.257,0.34700000000000003,0.382 -2015-01-15 21:00:00,0.257,0.34700000000000003,0.382 -2015-01-15 22:00:00,0.257,0.34700000000000003,0.382 -2015-01-15 23:00:00,0.256,0.34600000000000003,0.382 -2015-01-16 00:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 01:00:00,0.255,0.34600000000000003,0.38299999999999995 -2015-01-16 02:00:00,0.251,0.34600000000000003,0.38299999999999995 -2015-01-16 03:00:00,0.251,0.34600000000000003,0.38299999999999995 -2015-01-16 04:00:00,0.253,0.34600000000000003,0.38299999999999995 -2015-01-16 05:00:00,0.253,0.34600000000000003,0.38299999999999995 -2015-01-16 06:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 07:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 08:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 09:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 10:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 11:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 12:00:00,0.255,0.34600000000000003,0.38299999999999995 -2015-01-16 13:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 14:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 15:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 16:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 17:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 18:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 19:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 20:00:00,0.254,0.34600000000000003,0.38299999999999995 -2015-01-16 21:00:00,0.253,0.34600000000000003,0.38299999999999995 -2015-01-16 22:00:00,0.253,0.345,0.38299999999999995 -2015-01-16 23:00:00,0.253,0.345,0.38299999999999995 -2015-01-17 00:00:00,0.253,0.345,0.38299999999999995 -2015-01-17 01:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 02:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 03:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 04:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 05:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 06:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 07:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 08:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 09:00:00,0.253,0.344,0.38299999999999995 -2015-01-17 10:00:00,0.254,0.344,0.38299999999999995 -2015-01-17 11:00:00,0.254,0.344,0.38299999999999995 -2015-01-17 12:00:00,0.254,0.344,0.38299999999999995 -2015-01-17 13:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 14:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 15:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 16:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 17:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 18:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 19:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 20:00:00,0.255,0.344,0.38299999999999995 -2015-01-17 21:00:00,0.254,0.344,0.38299999999999995 -2015-01-17 22:00:00,0.254,0.344,0.38299999999999995 -2015-01-17 23:00:00,0.254,0.344,0.38299999999999995 -2015-01-18 00:00:00,0.254,0.344,0.38299999999999995 -2015-01-18 01:00:00,0.254,0.344,0.38299999999999995 -2015-01-18 02:00:00,0.254,0.344,0.38299999999999995 -2015-01-18 03:00:00,0.254,0.344,0.382 -2015-01-18 04:00:00,0.254,0.344,0.382 -2015-01-18 05:00:00,0.253,0.344,0.382 -2015-01-18 06:00:00,0.253,0.344,0.382 -2015-01-18 07:00:00,0.253,0.344,0.382 -2015-01-18 08:00:00,0.253,0.344,0.382 -2015-01-18 09:00:00,0.253,0.344,0.382 -2015-01-18 10:00:00,0.253,0.344,0.382 -2015-01-18 11:00:00,0.253,0.344,0.381 -2015-01-18 12:00:00,0.253,0.344,0.381 -2015-01-18 13:00:00,0.253,0.344,0.381 -2015-01-18 14:00:00,0.253,0.34299999999999997,0.381 -2015-01-18 15:00:00,0.253,0.34299999999999997,0.381 -2015-01-18 16:00:00,0.253,0.344,0.381 -2015-01-18 17:00:00,0.253,0.344,0.381 -2015-01-18 18:00:00,0.253,0.344,0.381 -2015-01-18 19:00:00,0.253,0.344,0.381 -2015-01-18 20:00:00,0.253,0.344,0.381 -2015-01-18 21:00:00,0.253,0.344,0.381 -2015-01-18 22:00:00,0.253,0.34299999999999997,0.381 -2015-01-18 23:00:00,0.252,0.34299999999999997,0.381 -2015-01-19 00:00:00,0.253,0.34299999999999997,0.381 -2015-01-19 01:00:00,0.253,0.34299999999999997,0.381 -2015-01-19 02:00:00,0.252,0.34299999999999997,0.381 -2015-01-19 03:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 04:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 05:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 06:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 07:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 08:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 09:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 10:00:00,0.252,0.34299999999999997,0.381 -2015-01-19 11:00:00,0.251,0.34299999999999997,0.381 -2015-01-19 12:00:00,0.251,0.34299999999999997,0.381 -2015-01-19 13:00:00,0.252,0.342,0.38 -2015-01-19 14:00:00,0.252,0.33799999999999997,0.38 -2015-01-19 15:00:00,0.252,0.34,0.38 -2015-01-19 16:00:00,0.252,0.34299999999999997,0.38 -2015-01-19 17:00:00,0.252,0.344,0.38 -2015-01-19 18:00:00,0.252,0.344,0.38 -2015-01-19 19:00:00,0.252,0.34600000000000003,0.38 -2015-01-19 20:00:00,0.252,0.34600000000000003,0.38 -2015-01-19 21:00:00,0.252,0.34600000000000003,0.38 -2015-01-19 22:00:00,0.252,0.34600000000000003,0.38 -2015-01-19 23:00:00,0.252,0.34600000000000003,0.38 -2015-01-20 00:00:00,0.252,0.34600000000000003,0.38 -2015-01-20 01:00:00,0.252,0.34600000000000003,0.38 -2015-01-20 02:00:00,0.252,0.34600000000000003,0.379 -2015-01-20 03:00:00,0.252,0.344,0.379 -2015-01-20 04:00:00,0.252,0.342,0.379 -2015-01-20 05:00:00,0.252,0.341,0.379 -2015-01-20 06:00:00,0.252,0.341,0.379 -2015-01-20 07:00:00,0.252,0.341,0.379 -2015-01-20 08:00:00,0.252,0.342,0.379 -2015-01-20 09:00:00,0.252,0.34299999999999997,0.37799999999999995 -2015-01-20 10:00:00,0.252,0.344,0.37799999999999995 -2015-01-20 11:00:00,0.252,0.344,0.37799999999999995 -2015-01-20 12:00:00,0.252,0.345,0.37799999999999995 -2015-01-20 13:00:00,0.252,0.344,0.37799999999999995 -2015-01-20 14:00:00,0.251,0.34299999999999997,0.37799999999999995 -2015-01-20 15:00:00,0.251,0.33899999999999997,0.377 -2015-01-20 16:00:00,0.252,0.33899999999999997,0.377 -2015-01-20 17:00:00,0.252,0.36,0.377 -2015-01-20 18:00:00,0.252,0.366,0.377 -2015-01-20 19:00:00,0.252,0.368,0.377 -2015-01-20 20:00:00,0.252,0.368,0.377 -2015-01-20 21:00:00,0.252,0.366,0.376 -2015-01-20 22:00:00,0.251,0.361,0.376 -2015-01-20 23:00:00,0.251,0.361,0.376 -2015-01-21 00:00:00,0.251,0.361,0.376 -2015-01-21 01:00:00,0.251,0.361,0.374 -2015-01-21 02:00:00,0.251,0.361,0.37200000000000005 -2015-01-21 03:00:00,0.251,0.361,0.371 -2015-01-21 04:00:00,0.251,0.36,0.37 -2015-01-21 05:00:00,0.251,0.359,0.369 -2015-01-21 06:00:00,0.251,0.359,0.369 -2015-01-21 07:00:00,0.251,0.358,0.368 -2015-01-21 08:00:00,0.251,0.359,0.368 -2015-01-21 09:00:00,0.251,0.36,0.368 -2015-01-21 10:00:00,0.25,0.359,0.36700000000000005 -2015-01-21 11:00:00,0.25,0.355,0.36700000000000005 -2015-01-21 12:00:00,0.25,0.353,0.366 -2015-01-21 13:00:00,0.25,0.353,0.366 -2015-01-21 14:00:00,0.25,0.355,0.366 -2015-01-21 15:00:00,0.25,0.355,0.366 -2015-01-21 16:00:00,0.25,0.35600000000000004,0.366 -2015-01-21 17:00:00,0.25,0.35600000000000004,0.366 -2015-01-21 18:00:00,0.25,0.35600000000000004,0.365 -2015-01-21 19:00:00,0.25,0.35600000000000004,0.365 -2015-01-21 20:00:00,0.25,0.35600000000000004,0.365 -2015-01-21 21:00:00,0.25,0.35600000000000004,0.365 -2015-01-21 22:00:00,0.25,0.355,0.365 -2015-01-21 23:00:00,0.25,0.355,0.365 -2015-01-22 00:00:00,0.25,0.355,0.365 -2015-01-22 01:00:00,0.25,0.355,0.365 -2015-01-22 02:00:00,0.25,0.355,0.365 -2015-01-22 03:00:00,0.25,0.355,0.365 -2015-01-22 04:00:00,0.25,0.354,0.365 -2015-01-22 05:00:00,0.25,0.353,0.365 -2015-01-22 06:00:00,0.25,0.354,0.365 -2015-01-22 07:00:00,0.25,0.353,0.364 -2015-01-22 08:00:00,0.25,0.353,0.364 -2015-01-22 09:00:00,0.25,0.353,0.364 -2015-01-22 10:00:00,0.25,0.353,0.364 -2015-01-22 11:00:00,0.25,0.353,0.364 -2015-01-22 12:00:00,0.25,0.353,0.364 -2015-01-22 13:00:00,0.25,0.353,0.364 -2015-01-22 14:00:00,0.25,0.35100000000000003,0.364 -2015-01-22 15:00:00,0.25,0.35100000000000003,0.364 -2015-01-22 16:00:00,0.25,0.35100000000000003,0.364 -2015-01-22 17:00:00,0.25,0.35100000000000003,0.364 -2015-01-22 18:00:00,0.25,0.35100000000000003,0.364 -2015-01-22 19:00:00,0.25,0.35100000000000003,0.364 -2015-01-22 20:00:00,0.25,0.35200000000000004,0.364 -2015-01-22 21:00:00,0.25,0.345,0.364 -2015-01-22 22:00:00,0.25,0.34600000000000003,0.364 -2015-01-22 23:00:00,0.25,0.34299999999999997,0.364 -2015-01-23 00:00:00,0.25,0.355,0.363 -2015-01-23 01:00:00,0.25,0.36200000000000004,0.363 -2015-01-23 02:00:00,0.25,0.365,0.363 -2015-01-23 03:00:00,0.25,0.366,0.363 -2015-01-23 04:00:00,0.25,0.366,0.363 -2015-01-23 05:00:00,0.25,0.366,0.363 -2015-01-23 06:00:00,0.25,0.365,0.363 -2015-01-23 07:00:00,0.25,0.365,0.363 -2015-01-23 08:00:00,0.25,0.365,0.363 -2015-01-23 09:00:00,0.25,0.364,0.363 -2015-01-23 10:00:00,0.25,0.363,0.363 -2015-01-23 11:00:00,0.25,0.363,0.363 -2015-01-23 12:00:00,0.25,0.361,0.363 -2015-01-23 13:00:00,0.25,0.361,0.363 -2015-01-23 14:00:00,0.25,0.361,0.363 -2015-01-23 15:00:00,0.25,0.361,0.363 -2015-01-23 16:00:00,0.25,0.361,0.36200000000000004 -2015-01-23 17:00:00,0.25,0.361,0.36200000000000004 -2015-01-23 18:00:00,0.25,0.36,0.36200000000000004 -2015-01-23 19:00:00,0.25,0.359,0.36200000000000004 -2015-01-23 20:00:00,0.25,0.354,0.36200000000000004 -2015-01-23 21:00:00,0.25,0.353,0.36200000000000004 -2015-01-23 22:00:00,0.25,0.35,0.36200000000000004 -2015-01-23 23:00:00,0.25,0.35100000000000003,0.36200000000000004 -2015-01-24 00:00:00,0.25,0.358,0.36200000000000004 -2015-01-24 01:00:00,0.25,0.364,0.36200000000000004 -2015-01-24 02:00:00,0.25,0.361,0.36200000000000004 -2015-01-24 03:00:00,0.25,0.365,0.36200000000000004 -2015-01-24 04:00:00,0.25,0.368,0.36200000000000004 -2015-01-24 05:00:00,0.25,0.368,0.36200000000000004 -2015-01-24 06:00:00,0.25,0.368,0.36200000000000004 -2015-01-24 07:00:00,0.25,0.366,0.36200000000000004 -2015-01-24 08:00:00,0.249,0.374,0.36200000000000004 -2015-01-24 09:00:00,0.249,0.375,0.36200000000000004 -2015-01-24 10:00:00,0.249,0.375,0.36200000000000004 -2015-01-24 11:00:00,0.25,0.373,0.36200000000000004 -2015-01-24 12:00:00,0.25,0.37,0.36200000000000004 -2015-01-24 13:00:00,0.249,0.368,0.363 -2015-01-24 14:00:00,0.249,0.36700000000000005,0.364 -2015-01-24 15:00:00,0.249,0.366,0.364 -2015-01-24 16:00:00,0.249,0.368,0.364 -2015-01-24 17:00:00,0.25,0.368,0.363 -2015-01-24 18:00:00,0.249,0.368,0.363 -2015-01-24 19:00:00,0.25,0.368,0.363 -2015-01-24 20:00:00,0.249,0.366,0.363 -2015-01-24 21:00:00,0.25,0.366,0.36200000000000004 -2015-01-24 22:00:00,0.25,0.366,0.363 -2015-01-24 23:00:00,0.25,0.366,0.36200000000000004 -2015-01-25 00:00:00,0.25,0.365,0.36200000000000004 -2015-01-25 01:00:00,0.25,0.365,0.363 -2015-01-25 02:00:00,0.25,0.365,0.358 -2015-01-25 03:00:00,0.25,0.363,0.35 -2015-01-25 04:00:00,0.25,0.363,0.35 -2015-01-25 05:00:00,0.25,0.363,0.35 -2015-01-25 06:00:00,0.249,0.361,0.35 -2015-01-25 07:00:00,0.249,0.361,0.35 -2015-01-25 08:00:00,0.249,0.361,0.35 -2015-01-25 09:00:00,0.24600000000000002,0.361,0.35200000000000004 -2015-01-25 10:00:00,0.24600000000000002,0.361,0.35200000000000004 -2015-01-25 11:00:00,0.24600000000000002,0.36,0.35200000000000004 -2015-01-25 12:00:00,0.247,0.359,0.35100000000000003 -2015-01-25 13:00:00,0.248,0.358,0.35100000000000003 -2015-01-25 14:00:00,0.249,0.358,0.35100000000000003 -2015-01-25 15:00:00,0.249,0.358,0.35100000000000003 -2015-01-25 16:00:00,0.25,0.358,0.35100000000000003 -2015-01-25 17:00:00,0.251,0.358,0.35100000000000003 -2015-01-25 18:00:00,0.252,0.35700000000000004,0.35100000000000003 -2015-01-25 19:00:00,0.252,0.35600000000000004,0.35200000000000004 -2015-01-25 20:00:00,0.252,0.35600000000000004,0.35200000000000004 -2015-01-25 21:00:00,0.252,0.35600000000000004,0.35200000000000004 -2015-01-25 22:00:00,0.253,0.35600000000000004,0.35200000000000004 -2015-01-25 23:00:00,0.253,0.35600000000000004,0.35200000000000004 -2015-01-26 00:00:00,0.25,0.355,0.354 -2015-01-26 01:00:00,0.249,0.355,0.354 -2015-01-26 02:00:00,0.249,0.355,0.355 -2015-01-26 03:00:00,0.249,0.355,0.355 -2015-01-26 04:00:00,0.25,0.355,0.355 -2015-01-26 05:00:00,0.25,0.355,0.355 -2015-01-26 06:00:00,0.251,0.355,0.355 -2015-01-26 07:00:00,0.252,0.355,0.355 -2015-01-26 08:00:00,0.252,0.354,0.355 -2015-01-26 09:00:00,0.253,0.353,0.355 -2015-01-26 10:00:00,0.252,0.353,0.35600000000000004 -2015-01-26 11:00:00,0.251,0.353,0.35700000000000004 -2015-01-26 12:00:00,0.251,0.353,0.35700000000000004 -2015-01-26 13:00:00,0.252,0.35100000000000003,0.36 -2015-01-26 14:00:00,0.256,0.35100000000000003,0.365 -2015-01-26 15:00:00,0.258,0.35100000000000003,0.371 -2015-01-26 16:00:00,0.258,0.35100000000000003,0.37200000000000005 -2015-01-26 17:00:00,0.257,0.35100000000000003,0.37200000000000005 -2015-01-26 18:00:00,0.257,0.35100000000000003,0.37200000000000005 -2015-01-26 19:00:00,0.257,0.35100000000000003,0.37200000000000005 -2015-01-26 20:00:00,0.256,0.35,0.37200000000000005 -2015-01-26 21:00:00,0.256,0.35,0.37200000000000005 -2015-01-26 22:00:00,0.255,0.35,0.37200000000000005 -2015-01-26 23:00:00,0.255,0.349,0.373 -2015-01-27 00:00:00,0.255,0.349,0.373 -2015-01-27 01:00:00,0.255,0.349,0.376 -2015-01-27 02:00:00,0.255,0.349,0.379 -2015-01-27 03:00:00,0.255,0.349,0.379 -2015-01-27 04:00:00,0.255,0.349,0.379 -2015-01-27 05:00:00,0.256,0.349,0.37799999999999995 -2015-01-27 06:00:00,0.258,0.349,0.37799999999999995 -2015-01-27 07:00:00,0.257,0.348,0.37799999999999995 -2015-01-27 08:00:00,0.254,0.348,0.37799999999999995 -2015-01-27 09:00:00,0.253,0.348,0.379 -2015-01-27 10:00:00,0.253,0.348,0.379 -2015-01-27 11:00:00,0.254,0.348,0.37799999999999995 -2015-01-27 12:00:00,0.255,0.348,0.37799999999999995 -2015-01-27 13:00:00,0.257,0.348,0.377 -2015-01-27 14:00:00,0.258,0.34600000000000003,0.377 -2015-01-27 15:00:00,0.258,0.348,0.377 -2015-01-27 16:00:00,0.258,0.348,0.377 -2015-01-27 17:00:00,0.258,0.348,0.377 -2015-01-27 18:00:00,0.258,0.348,0.376 -2015-01-27 19:00:00,0.258,0.348,0.376 -2015-01-27 20:00:00,0.258,0.348,0.376 -2015-01-27 21:00:00,0.258,0.348,0.376 -2015-01-27 22:00:00,0.257,0.348,0.376 -2015-01-27 23:00:00,0.257,0.348,0.376 -2015-01-28 00:00:00,0.257,0.348,0.376 -2015-01-28 01:00:00,0.257,0.348,0.375 -2015-01-28 02:00:00,0.257,0.348,0.375 -2015-01-28 03:00:00,0.257,0.348,0.375 -2015-01-28 04:00:00,0.257,0.348,0.375 -2015-01-28 05:00:00,0.257,0.34700000000000003,0.375 -2015-01-28 06:00:00,0.257,0.34700000000000003,0.374 -2015-01-28 07:00:00,0.256,0.34700000000000003,0.374 -2015-01-28 08:00:00,0.257,0.34700000000000003,0.374 -2015-01-28 09:00:00,0.257,0.34700000000000003,0.373 -2015-01-28 10:00:00,0.257,0.34700000000000003,0.373 -2015-01-28 11:00:00,0.257,0.34600000000000003,0.373 -2015-01-28 12:00:00,0.257,0.34700000000000003,0.373 -2015-01-28 13:00:00,0.257,0.34600000000000003,0.373 -2015-01-28 14:00:00,0.257,0.34600000000000003,0.373 -2015-01-28 15:00:00,0.257,0.34600000000000003,0.373 -2015-01-28 16:00:00,0.256,0.34600000000000003,0.373 -2015-01-28 17:00:00,0.254,0.34600000000000003,0.375 -2015-01-28 18:00:00,0.251,0.34600000000000003,0.376 -2015-01-28 19:00:00,0.251,0.34600000000000003,0.376 -2015-01-28 20:00:00,0.253,0.34600000000000003,0.37799999999999995 -2015-01-28 21:00:00,0.253,0.34600000000000003,0.379 -2015-01-28 22:00:00,0.254,0.34600000000000003,0.38 -2015-01-28 23:00:00,0.255,0.34600000000000003,0.379 -2015-01-29 00:00:00,0.257,0.34600000000000003,0.379 -2015-01-29 01:00:00,0.258,0.34600000000000003,0.379 -2015-01-29 02:00:00,0.259,0.34600000000000003,0.37799999999999995 -2015-01-29 03:00:00,0.261,0.345,0.37799999999999995 -2015-01-29 04:00:00,0.261,0.344,0.37799999999999995 -2015-01-29 05:00:00,0.26,0.344,0.37799999999999995 -2015-01-29 06:00:00,0.26,0.344,0.37799999999999995 -2015-01-29 07:00:00,0.26,0.344,0.37799999999999995 -2015-01-29 08:00:00,0.259,0.344,0.37799999999999995 -2015-01-29 09:00:00,0.259,0.344,0.37799999999999995 -2015-01-29 10:00:00,0.259,0.344,0.37799999999999995 -2015-01-29 11:00:00,0.259,0.344,0.37799999999999995 -2015-01-29 12:00:00,0.259,0.344,0.37799999999999995 -2015-01-29 13:00:00,0.259,0.344,0.37799999999999995 -2015-01-29 14:00:00,0.259,0.344,0.377 -2015-01-29 15:00:00,0.259,0.344,0.377 -2015-01-29 16:00:00,0.258,0.344,0.377 -2015-01-29 17:00:00,0.254,0.344,0.37799999999999995 -2015-01-29 18:00:00,0.253,0.344,0.379 -2015-01-29 19:00:00,0.254,0.344,0.379 -2015-01-29 20:00:00,0.255,0.344,0.37799999999999995 -2015-01-29 21:00:00,0.256,0.34299999999999997,0.37799999999999995 -2015-01-29 22:00:00,0.256,0.34299999999999997,0.37799999999999995 -2015-01-29 23:00:00,0.258,0.34299999999999997,0.37799999999999995 -2015-01-30 00:00:00,0.259,0.34299999999999997,0.37799999999999995 -2015-01-30 01:00:00,0.259,0.34299999999999997,0.37799999999999995 -2015-01-30 02:00:00,0.259,0.34299999999999997,0.37799999999999995 -2015-01-30 03:00:00,0.258,0.349,0.37799999999999995 -2015-01-30 04:00:00,0.258,0.35,0.37799999999999995 -2015-01-30 05:00:00,0.258,0.35100000000000003,0.379 -2015-01-30 06:00:00,0.262,0.348,0.379 -2015-01-30 07:00:00,0.262,0.349,0.379 -2015-01-30 08:00:00,0.261,0.349,0.379 -2015-01-30 09:00:00,0.256,0.349,0.379 -2015-01-30 10:00:00,0.255,0.349,0.379 -2015-01-30 11:00:00,0.255,0.349,0.379 -2015-01-30 12:00:00,0.256,0.35,0.379 -2015-01-30 13:00:00,0.259,0.35100000000000003,0.379 -2015-01-30 14:00:00,0.261,0.35,0.379 -2015-01-30 15:00:00,0.261,0.35,0.379 -2015-01-30 16:00:00,0.261,0.35,0.379 -2015-01-30 17:00:00,0.261,0.35,0.379 -2015-01-30 18:00:00,0.261,0.35100000000000003,0.379 -2015-01-30 19:00:00,0.261,0.35100000000000003,0.379 -2015-01-30 20:00:00,0.26,0.35200000000000004,0.379 -2015-01-30 21:00:00,0.26,0.35100000000000003,0.379 -2015-01-30 22:00:00,0.26,0.35100000000000003,0.379 -2015-01-30 23:00:00,0.26,0.35,0.379 -2015-01-31 00:00:00,0.26,0.35,0.379 -2015-01-31 01:00:00,0.259,0.35100000000000003,0.379 -2015-01-31 02:00:00,0.259,0.35,0.379 -2015-01-31 03:00:00,0.259,0.35100000000000003,0.379 -2015-01-31 04:00:00,0.259,0.35100000000000003,0.379 -2015-01-31 05:00:00,0.259,0.35,0.379 -2015-01-31 06:00:00,0.258,0.35,0.379 -2015-01-31 07:00:00,0.258,0.35,0.379 -2015-01-31 08:00:00,0.258,0.349,0.379 -2015-01-31 09:00:00,0.258,0.344,0.379 -2015-01-31 10:00:00,0.258,0.34299999999999997,0.379 -2015-01-31 11:00:00,0.258,0.345,0.379 -2015-01-31 12:00:00,0.258,0.34700000000000003,0.379 -2015-01-31 13:00:00,0.258,0.34700000000000003,0.379 -2015-01-31 14:00:00,0.258,0.348,0.379 -2015-01-31 15:00:00,0.258,0.348,0.379 -2015-01-31 16:00:00,0.258,0.348,0.379 -2015-01-31 17:00:00,0.257,0.345,0.379 -2015-01-31 18:00:00,0.257,0.341,0.379 -2015-01-31 19:00:00,0.257,0.341,0.379 -2015-01-31 20:00:00,0.257,0.33899999999999997,0.379 -2015-01-31 21:00:00,0.257,0.34,0.379 -2015-01-31 22:00:00,0.257,0.34,0.379 -2015-01-31 23:00:00,0.256,0.34,0.379 -2015-02-01 00:00:00,0.256,0.33899999999999997,0.379 -2015-02-01 01:00:00,0.256,0.33899999999999997,0.379 -2015-02-01 02:00:00,0.256,0.33899999999999997,0.379 -2015-02-01 03:00:00,0.256,0.33899999999999997,0.379 -2015-02-01 04:00:00,0.255,0.33899999999999997,0.379 -2015-02-01 05:00:00,0.255,0.33899999999999997,0.379 -2015-02-01 06:00:00,0.255,0.33899999999999997,0.379 -2015-02-01 07:00:00,0.255,0.33899999999999997,0.38 -2015-02-01 08:00:00,0.255,0.33899999999999997,0.379 -2015-02-01 09:00:00,0.254,0.33899999999999997,0.38 -2015-02-01 10:00:00,0.253,0.33899999999999997,0.38 -2015-02-01 11:00:00,0.254,0.33899999999999997,0.38 -2015-02-01 12:00:00,0.254,0.33899999999999997,0.379 -2015-02-01 13:00:00,0.254,0.33899999999999997,0.379 -2015-02-01 14:00:00,0.254,0.33799999999999997,0.379 -2015-02-01 15:00:00,0.254,0.33799999999999997,0.379 -2015-02-01 16:00:00,0.254,0.33899999999999997,0.379 -2015-02-01 17:00:00,0.254,0.33899999999999997,0.379 -2015-02-01 18:00:00,0.254,0.33799999999999997,0.379 -2015-02-01 19:00:00,0.254,0.33799999999999997,0.37799999999999995 -2015-02-01 20:00:00,0.254,0.33799999999999997,0.37799999999999995 -2015-02-01 21:00:00,0.254,0.33799999999999997,0.37799999999999995 -2015-02-01 22:00:00,0.254,0.33799999999999997,0.37799999999999995 -2015-02-01 23:00:00,0.254,0.33799999999999997,0.37799999999999995 -2015-02-02 00:00:00,0.254,0.33799999999999997,0.37799999999999995 -2015-02-02 01:00:00,0.254,0.33799999999999997,0.377 -2015-02-02 02:00:00,0.254,0.33799999999999997,0.377 -2015-02-02 03:00:00,0.254,0.33799999999999997,0.377 -2015-02-02 04:00:00,0.254,0.33799999999999997,0.377 -2015-02-02 05:00:00,0.254,0.33799999999999997,0.377 -2015-02-02 06:00:00,0.254,0.33799999999999997,0.377 -2015-02-02 07:00:00,0.254,0.33799999999999997,0.377 -2015-02-02 08:00:00,0.253,0.33799999999999997,0.377 -2015-02-02 09:00:00,0.252,0.33799999999999997,0.377 -2015-02-02 10:00:00,0.252,0.33799999999999997,0.377 -2015-02-02 11:00:00,0.252,0.33799999999999997,0.377 -2015-02-02 12:00:00,0.253,0.33799999999999997,0.376 -2015-02-02 13:00:00,0.253,0.337,0.375 -2015-02-02 14:00:00,0.254,0.337,0.375 -2015-02-02 15:00:00,0.254,0.337,0.375 -2015-02-02 16:00:00,0.254,0.337,0.375 -2015-02-02 17:00:00,0.254,0.337,0.375 -2015-02-02 18:00:00,0.254,0.337,0.375 -2015-02-02 19:00:00,0.254,0.336,0.375 -2015-02-02 20:00:00,0.254,0.336,0.375 -2015-02-02 21:00:00,0.254,0.336,0.374 -2015-02-02 22:00:00,0.254,0.337,0.374 -2015-02-02 23:00:00,0.254,0.337,0.374 -2015-02-03 00:00:00,0.254,0.337,0.374 -2015-02-03 01:00:00,0.254,0.336,0.373 -2015-02-03 02:00:00,0.254,0.336,0.371 -2015-02-03 03:00:00,0.254,0.336,0.37 -2015-02-03 04:00:00,0.254,0.336,0.369 -2015-02-03 05:00:00,0.254,0.336,0.368 -2015-02-03 06:00:00,0.254,0.336,0.36700000000000005 -2015-02-03 07:00:00,0.254,0.336,0.36700000000000005 -2015-02-03 08:00:00,0.254,0.336,0.366 -2015-02-03 09:00:00,0.253,0.336,0.366 -2015-02-03 10:00:00,0.254,0.336,0.365 -2015-02-03 11:00:00,0.253,0.336,0.365 -2015-02-03 12:00:00,0.253,0.336,0.365 -2015-02-03 13:00:00,0.253,0.336,0.365 -2015-02-03 14:00:00,0.253,0.336,0.365 -2015-02-03 15:00:00,0.253,0.336,0.365 -2015-02-03 16:00:00,0.253,0.336,0.365 -2015-02-03 17:00:00,0.253,0.336,0.365 -2015-02-03 18:00:00,0.253,0.336,0.364 -2015-02-03 19:00:00,0.253,0.336,0.364 -2015-02-03 20:00:00,0.253,0.336,0.364 -2015-02-03 21:00:00,0.253,0.335,0.364 -2015-02-03 22:00:00,0.253,0.335,0.363 -2015-02-03 23:00:00,0.253,0.335,0.363 -2015-02-04 00:00:00,0.253,0.336,0.363 -2015-02-04 01:00:00,0.253,0.336,0.363 -2015-02-04 02:00:00,0.253,0.336,0.363 -2015-02-04 03:00:00,0.253,0.336,0.363 -2015-02-04 04:00:00,0.253,0.336,0.36200000000000004 -2015-02-04 05:00:00,0.253,0.336,0.36200000000000004 -2015-02-04 06:00:00,0.253,0.336,0.36200000000000004 -2015-02-04 07:00:00,0.252,0.336,0.36200000000000004 -2015-02-04 08:00:00,0.252,0.335,0.36200000000000004 -2015-02-04 09:00:00,0.252,0.336,0.36200000000000004 -2015-02-04 10:00:00,0.252,0.335,0.36200000000000004 -2015-02-04 11:00:00,0.252,0.33399999999999996,0.36200000000000004 -2015-02-04 12:00:00,0.252,0.33399999999999996,0.361 -2015-02-04 13:00:00,0.252,0.335,0.361 -2015-02-04 14:00:00,0.252,0.33399999999999996,0.361 -2015-02-04 15:00:00,0.252,0.33399999999999996,0.361 -2015-02-04 16:00:00,0.252,0.33399999999999996,0.361 -2015-02-04 17:00:00,0.252,0.33399999999999996,0.361 -2015-02-04 18:00:00,0.251,0.33399999999999996,0.361 -2015-02-04 19:00:00,0.251,0.33399999999999996,0.361 -2015-02-04 20:00:00,0.251,0.33399999999999996,0.361 -2015-02-04 21:00:00,0.251,0.33399999999999996,0.361 -2015-02-04 22:00:00,0.251,0.33399999999999996,0.361 -2015-02-04 23:00:00,0.251,0.33399999999999996,0.361 -2015-02-05 00:00:00,0.251,0.33399999999999996,0.36 -2015-02-05 01:00:00,0.251,0.33399999999999996,0.36 -2015-02-05 02:00:00,0.251,0.33399999999999996,0.36 -2015-02-05 03:00:00,0.251,0.33399999999999996,0.361 -2015-02-05 04:00:00,0.251,0.33399999999999996,0.36 -2015-02-05 05:00:00,0.251,0.33399999999999996,0.361 -2015-02-05 06:00:00,0.251,0.33399999999999996,0.361 -2015-02-05 07:00:00,0.251,0.33399999999999996,0.36 -2015-02-05 08:00:00,0.25,0.33399999999999996,0.36 -2015-02-05 09:00:00,0.25,0.33399999999999996,0.36 -2015-02-05 10:00:00,0.25,0.33399999999999996,0.36 -2015-02-05 11:00:00,0.25,0.33399999999999996,0.36 -2015-02-05 12:00:00,0.25,0.33399999999999996,0.36 -2015-02-05 13:00:00,0.25,0.33399999999999996,0.36 -2015-02-05 14:00:00,0.25,0.33399999999999996,0.36 -2015-02-05 15:00:00,0.25,0.336,0.36 -2015-02-05 16:00:00,0.25,0.33799999999999997,0.36 -2015-02-05 17:00:00,0.25,0.33799999999999997,0.36 -2015-02-05 18:00:00,0.25,0.33799999999999997,0.36 -2015-02-05 19:00:00,0.25,0.33799999999999997,0.36 -2015-02-05 20:00:00,0.25,0.33799999999999997,0.36 -2015-02-05 21:00:00,0.25,0.33799999999999997,0.36 -2015-02-05 22:00:00,0.25,0.33799999999999997,0.36 -2015-02-05 23:00:00,0.249,0.33799999999999997,0.353 -2015-02-06 00:00:00,0.249,0.33799999999999997,0.35200000000000004 -2015-02-06 01:00:00,0.249,0.33799999999999997,0.35200000000000004 -2015-02-06 02:00:00,0.249,0.33799999999999997,0.35200000000000004 -2015-02-06 03:00:00,0.249,0.33799999999999997,0.35200000000000004 -2015-02-06 04:00:00,0.249,0.33799999999999997,0.35200000000000004 -2015-02-06 05:00:00,0.249,0.33799999999999997,0.35200000000000004 -2015-02-06 06:00:00,0.249,0.33799999999999997,0.35200000000000004 -2015-02-06 07:00:00,0.249,0.33799999999999997,0.35100000000000003 -2015-02-06 08:00:00,0.249,0.33799999999999997,0.35100000000000003 -2015-02-06 09:00:00,0.249,0.33799999999999997,0.35100000000000003 -2015-02-06 10:00:00,0.249,0.33799999999999997,0.35100000000000003 -2015-02-06 11:00:00,0.249,0.33799999999999997,0.35100000000000003 -2015-02-06 12:00:00,0.249,0.33799999999999997,0.35100000000000003 -2015-02-06 13:00:00,0.248,0.33799999999999997,0.35100000000000003 -2015-02-06 14:00:00,0.248,0.33799999999999997,0.35100000000000003 -2015-02-06 15:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 16:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 17:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 18:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 19:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 20:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 21:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 22:00:00,0.248,0.33799999999999997,0.35 -2015-02-06 23:00:00,0.248,0.33799999999999997,0.35 -2015-02-07 00:00:00,0.248,0.33799999999999997,0.35 -2015-02-07 01:00:00,0.248,0.33799999999999997,0.35 -2015-02-07 02:00:00,0.248,0.33799999999999997,0.349 -2015-02-07 03:00:00,0.247,0.33799999999999997,0.349 -2015-02-07 04:00:00,0.247,0.33799999999999997,0.349 -2015-02-07 05:00:00,0.247,0.33799999999999997,0.349 -2015-02-07 06:00:00,0.247,0.33799999999999997,0.349 -2015-02-07 07:00:00,0.247,0.33799999999999997,0.348 -2015-02-07 08:00:00,0.247,0.33799999999999997,0.348 -2015-02-07 09:00:00,0.247,0.33799999999999997,0.348 -2015-02-07 10:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 11:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 12:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-07 13:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-07 14:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 15:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 16:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 17:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 18:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 19:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 20:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 21:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 22:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-07 23:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 00:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 01:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-08 02:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-08 03:00:00,0.244,0.33799999999999997,0.35100000000000003 -2015-02-08 04:00:00,0.244,0.33799999999999997,0.35100000000000003 -2015-02-08 05:00:00,0.245,0.33799999999999997,0.35100000000000003 -2015-02-08 06:00:00,0.24600000000000002,0.33799999999999997,0.35100000000000003 -2015-02-08 07:00:00,0.24600000000000002,0.33799999999999997,0.35 -2015-02-08 08:00:00,0.24600000000000002,0.33799999999999997,0.35 -2015-02-08 09:00:00,0.24600000000000002,0.33799999999999997,0.35 -2015-02-08 10:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-08 11:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-08 12:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-08 13:00:00,0.24600000000000002,0.33799999999999997,0.349 -2015-02-08 14:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 15:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 16:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 17:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 18:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 19:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 20:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 21:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 22:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-08 23:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 00:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 01:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 02:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 03:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 04:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 05:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 06:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 07:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 08:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 09:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 10:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 11:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 12:00:00,0.24600000000000002,0.337,0.348 -2015-02-09 13:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 14:00:00,0.24600000000000002,0.33799999999999997,0.348 -2015-02-09 15:00:00,0.24600000000000002,0.336,0.348 -2015-02-09 16:00:00,0.24600000000000002,0.337,0.349 -2015-02-09 17:00:00,0.24600000000000002,0.336,0.349 -2015-02-09 18:00:00,0.24600000000000002,0.336,0.349 -2015-02-09 19:00:00,0.24600000000000002,0.336,0.349 -2015-02-09 20:00:00,0.24600000000000002,0.337,0.349 -2015-02-09 21:00:00,0.247,0.336,0.349 -2015-02-09 22:00:00,0.24600000000000002,0.336,0.35 -2015-02-09 23:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 00:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 01:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 02:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 03:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 04:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 05:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 06:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 07:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 08:00:00,0.24600000000000002,0.336,0.35100000000000003 -2015-02-10 09:00:00,0.24600000000000002,0.336,0.35 -2015-02-10 10:00:00,0.24600000000000002,0.336,0.35 -2015-02-10 11:00:00,0.247,0.336,0.35 -2015-02-10 12:00:00,0.248,0.336,0.35 -2015-02-10 13:00:00,0.248,0.336,0.349 -2015-02-10 14:00:00,0.248,0.336,0.349 -2015-02-10 15:00:00,0.248,0.336,0.349 -2015-02-10 16:00:00,0.248,0.336,0.349 -2015-02-10 17:00:00,0.248,0.336,0.349 -2015-02-10 18:00:00,0.248,0.336,0.349 -2015-02-10 19:00:00,0.248,0.336,0.349 -2015-02-10 20:00:00,0.248,0.336,0.349 -2015-02-10 21:00:00,0.248,0.335,0.349 -2015-02-10 22:00:00,0.248,0.335,0.349 -2015-02-10 23:00:00,0.248,0.33399999999999996,0.349 -2015-02-11 00:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 01:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 02:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 03:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 04:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 05:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 06:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 07:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 08:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 09:00:00,0.248,0.33399999999999996,0.348 -2015-02-11 10:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 11:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 12:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 13:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 14:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 15:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 16:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 17:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 18:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 19:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 20:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 21:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 22:00:00,0.249,0.33399999999999996,0.348 -2015-02-11 23:00:00,0.249,0.335,0.348 -2015-02-12 00:00:00,0.249,0.336,0.348 -2015-02-12 01:00:00,0.249,0.336,0.348 -2015-02-12 02:00:00,0.249,0.33399999999999996,0.348 -2015-02-12 03:00:00,0.249,0.336,0.348 -2015-02-12 04:00:00,0.249,0.335,0.348 -2015-02-12 05:00:00,0.249,0.335,0.348 -2015-02-12 06:00:00,0.249,0.335,0.348 -2015-02-12 07:00:00,0.249,0.335,0.348 -2015-02-12 08:00:00,0.249,0.33399999999999996,0.348 -2015-02-12 09:00:00,0.249,0.335,0.348 -2015-02-12 10:00:00,0.249,0.335,0.348 -2015-02-12 11:00:00,0.249,0.335,0.348 -2015-02-12 12:00:00,0.249,0.335,0.348 -2015-02-12 13:00:00,0.249,0.335,0.348 -2015-02-12 14:00:00,0.249,0.335,0.348 -2015-02-12 15:00:00,0.249,0.335,0.348 -2015-02-12 16:00:00,0.249,0.335,0.348 -2015-02-12 17:00:00,0.249,0.33399999999999996,0.348 -2015-02-12 18:00:00,0.249,0.33399999999999996,0.348 -2015-02-12 19:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-12 20:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-12 21:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-12 22:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-12 23:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 00:00:00,0.249,0.335,0.34700000000000003 -2015-02-13 01:00:00,0.249,0.335,0.34700000000000003 -2015-02-13 02:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 03:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 04:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 05:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 06:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 07:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 08:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 09:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 10:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 11:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 12:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 13:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 14:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 15:00:00,0.249,0.335,0.34700000000000003 -2015-02-13 16:00:00,0.249,0.335,0.34700000000000003 -2015-02-13 17:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 18:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 19:00:00,0.249,0.33399999999999996,0.34700000000000003 -2015-02-13 20:00:00,0.249,0.335,0.34700000000000003 -2015-02-13 21:00:00,0.249,0.335,0.34700000000000003 -2015-02-13 22:00:00,0.249,0.335,0.34700000000000003 -2015-02-13 23:00:00,0.249,0.335,0.34700000000000003 -2015-02-14 00:00:00,0.249,0.335,0.34700000000000003 -2015-02-14 01:00:00,0.249,0.335,0.34700000000000003 -2015-02-14 02:00:00,0.249,0.335,0.34700000000000003 -2015-02-14 03:00:00,0.249,0.336,0.34700000000000003 -2015-02-14 04:00:00,0.249,0.336,0.34700000000000003 -2015-02-14 05:00:00,0.249,0.336,0.34600000000000003 -2015-02-14 06:00:00,0.249,0.336,0.34600000000000003 -2015-02-14 07:00:00,0.249,0.336,0.34600000000000003 -2015-02-14 08:00:00,0.248,0.336,0.34600000000000003 -2015-02-14 09:00:00,0.249,0.336,0.34600000000000003 -2015-02-14 10:00:00,0.248,0.336,0.34600000000000003 -2015-02-14 11:00:00,0.248,0.336,0.34600000000000003 -2015-02-14 12:00:00,0.248,0.335,0.34600000000000003 -2015-02-14 13:00:00,0.248,0.335,0.34600000000000003 -2015-02-14 14:00:00,0.248,0.335,0.34600000000000003 -2015-02-14 15:00:00,0.248,0.33399999999999996,0.34600000000000003 -2015-02-14 16:00:00,0.248,0.33399999999999996,0.34600000000000003 -2015-02-14 17:00:00,0.248,0.335,0.34600000000000003 -2015-02-14 18:00:00,0.248,0.336,0.34600000000000003 -2015-02-14 19:00:00,0.248,0.335,0.34600000000000003 -2015-02-14 20:00:00,0.248,0.335,0.34600000000000003 -2015-02-14 21:00:00,0.248,0.336,0.34600000000000003 -2015-02-14 22:00:00,0.248,0.336,0.34600000000000003 -2015-02-14 23:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 00:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 01:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 02:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 03:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 04:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 05:00:00,0.248,0.336,0.345 -2015-02-15 06:00:00,0.248,0.336,0.345 -2015-02-15 07:00:00,0.248,0.336,0.345 -2015-02-15 08:00:00,0.248,0.336,0.345 -2015-02-15 09:00:00,0.248,0.336,0.345 -2015-02-15 10:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 11:00:00,0.248,0.336,0.348 -2015-02-15 12:00:00,0.248,0.336,0.34700000000000003 -2015-02-15 13:00:00,0.248,0.336,0.34700000000000003 -2015-02-15 14:00:00,0.248,0.336,0.34600000000000003 -2015-02-15 15:00:00,0.248,0.336,0.345 -2015-02-15 16:00:00,0.247,0.336,0.345 -2015-02-15 17:00:00,0.247,0.336,0.345 -2015-02-15 18:00:00,0.247,0.336,0.345 -2015-02-15 19:00:00,0.248,0.336,0.345 -2015-02-15 20:00:00,0.247,0.336,0.345 -2015-02-15 21:00:00,0.248,0.336,0.345 -2015-02-15 22:00:00,0.248,0.336,0.345 -2015-02-15 23:00:00,0.247,0.336,0.344 -2015-02-16 00:00:00,0.247,0.336,0.344 -2015-02-16 01:00:00,0.247,0.336,0.344 -2015-02-16 02:00:00,0.247,0.336,0.344 -2015-02-16 03:00:00,0.247,0.337,0.344 -2015-02-16 04:00:00,0.247,0.337,0.344 -2015-02-16 05:00:00,0.247,0.337,0.344 -2015-02-16 06:00:00,0.247,0.337,0.344 -2015-02-16 07:00:00,0.247,0.337,0.344 -2015-02-16 08:00:00,0.247,0.337,0.344 -2015-02-16 09:00:00,0.247,0.337,0.344 -2015-02-16 10:00:00,0.247,0.337,0.344 -2015-02-16 11:00:00,0.248,0.337,0.345 -2015-02-16 12:00:00,0.248,0.337,0.345 -2015-02-16 13:00:00,0.248,0.336,0.345 -2015-02-16 14:00:00,0.247,0.336,0.345 -2015-02-16 15:00:00,0.247,0.336,0.344 -2015-02-16 16:00:00,0.247,0.336,0.344 -2015-02-16 17:00:00,0.247,0.336,0.344 -2015-02-16 18:00:00,0.247,0.336,0.344 -2015-02-16 19:00:00,0.247,0.336,0.344 -2015-02-16 20:00:00,0.247,0.336,0.344 -2015-02-16 21:00:00,0.247,0.336,0.344 -2015-02-16 22:00:00,0.247,0.336,0.344 -2015-02-16 23:00:00,0.247,0.336,0.344 -2015-02-17 00:00:00,0.247,0.336,0.344 -2015-02-17 01:00:00,0.247,0.336,0.344 -2015-02-17 02:00:00,0.247,0.336,0.344 -2015-02-17 03:00:00,0.247,0.336,0.344 -2015-02-17 04:00:00,0.247,0.336,0.344 -2015-02-17 05:00:00,0.247,0.336,0.344 -2015-02-17 06:00:00,0.247,0.336,0.344 -2015-02-17 07:00:00,0.247,0.336,0.344 -2015-02-17 08:00:00,0.247,0.336,0.344 -2015-02-17 09:00:00,0.247,0.336,0.344 -2015-02-17 10:00:00,0.247,0.337,0.34299999999999997 -2015-02-17 11:00:00,0.24600000000000002,0.336,0.34299999999999997 -2015-02-17 12:00:00,0.24600000000000002,0.332,0.34299999999999997 -2015-02-17 13:00:00,0.24600000000000002,0.32899999999999996,0.34299999999999997 -2015-02-17 14:00:00,0.247,0.326,0.34299999999999997 -2015-02-17 15:00:00,0.247,0.332,0.34299999999999997 -2015-02-17 16:00:00,0.247,0.332,0.34299999999999997 -2015-02-17 17:00:00,0.247,0.34,0.34299999999999997 -2015-02-17 18:00:00,0.247,0.34299999999999997,0.34299999999999997 -2015-02-17 19:00:00,0.247,0.34700000000000003,0.34299999999999997 -2015-02-17 20:00:00,0.247,0.349,0.34299999999999997 -2015-02-17 21:00:00,0.247,0.35,0.34299999999999997 -2015-02-17 22:00:00,0.247,0.35200000000000004,0.34299999999999997 -2015-02-17 23:00:00,0.247,0.353,0.342 -2015-02-18 00:00:00,0.247,0.353,0.342 -2015-02-18 01:00:00,0.247,0.35,0.342 -2015-02-18 02:00:00,0.247,0.349,0.342 -2015-02-18 03:00:00,0.247,0.349,0.342 -2015-02-18 04:00:00,0.247,0.349,0.342 -2015-02-18 05:00:00,0.247,0.349,0.342 -2015-02-18 06:00:00,0.247,0.349,0.342 -2015-02-18 07:00:00,0.247,0.349,0.342 -2015-02-18 08:00:00,0.247,0.349,0.342 -2015-02-18 09:00:00,0.247,0.349,0.342 -2015-02-18 10:00:00,0.247,0.349,0.342 -2015-02-18 11:00:00,0.247,0.349,0.342 -2015-02-18 12:00:00,0.247,0.349,0.342 -2015-02-18 13:00:00,0.247,0.348,0.342 -2015-02-18 14:00:00,0.247,0.348,0.342 -2015-02-18 15:00:00,0.247,0.348,0.342 -2015-02-18 16:00:00,0.247,0.35,0.342 -2015-02-18 17:00:00,0.247,0.374,0.342 -2015-02-18 18:00:00,0.247,0.377,0.342 -2015-02-18 19:00:00,0.247,0.375,0.342 -2015-02-18 20:00:00,0.247,0.374,0.342 -2015-02-18 21:00:00,0.247,0.37200000000000005,0.342 -2015-02-18 22:00:00,0.247,0.371,0.341 -2015-02-18 23:00:00,0.247,0.369,0.341 -2015-02-19 00:00:00,0.247,0.36700000000000005,0.341 -2015-02-19 01:00:00,0.247,0.366,0.341 -2015-02-19 02:00:00,0.247,0.365,0.342 -2015-02-19 03:00:00,0.247,0.363,0.342 -2015-02-19 04:00:00,0.247,0.36200000000000004,0.342 -2015-02-19 05:00:00,0.24600000000000002,0.361,0.342 -2015-02-19 06:00:00,0.24600000000000002,0.361,0.342 -2015-02-19 07:00:00,0.24600000000000002,0.36,0.342 -2015-02-19 08:00:00,0.24600000000000002,0.358,0.342 -2015-02-19 09:00:00,0.24600000000000002,0.35700000000000004,0.342 -2015-02-19 10:00:00,0.24600000000000002,0.35600000000000004,0.342 -2015-02-19 11:00:00,0.24600000000000002,0.355,0.342 -2015-02-19 12:00:00,0.24600000000000002,0.355,0.342 -2015-02-19 13:00:00,0.24600000000000002,0.355,0.342 -2015-02-19 14:00:00,0.24600000000000002,0.354,0.342 -2015-02-19 15:00:00,0.24600000000000002,0.353,0.342 -2015-02-19 16:00:00,0.24600000000000002,0.353,0.342 -2015-02-19 17:00:00,0.247,0.35100000000000003,0.342 -2015-02-19 18:00:00,0.24600000000000002,0.35100000000000003,0.341 -2015-02-19 19:00:00,0.24600000000000002,0.35100000000000003,0.341 -2015-02-19 20:00:00,0.24600000000000002,0.35100000000000003,0.341 -2015-02-19 21:00:00,0.24600000000000002,0.35,0.342 -2015-02-19 22:00:00,0.247,0.349,0.341 -2015-02-19 23:00:00,0.24600000000000002,0.349,0.341 -2015-02-20 00:00:00,0.24600000000000002,0.349,0.341 -2015-02-20 01:00:00,0.24600000000000002,0.349,0.341 -2015-02-20 02:00:00,0.24600000000000002,0.348,0.341 -2015-02-20 03:00:00,0.24600000000000002,0.349,0.341 -2015-02-20 04:00:00,0.247,0.349,0.342 -2015-02-20 05:00:00,0.24600000000000002,0.348,0.342 -2015-02-20 06:00:00,0.24600000000000002,0.348,0.342 -2015-02-20 07:00:00,0.24600000000000002,0.348,0.342 -2015-02-20 08:00:00,0.24600000000000002,0.348,0.342 -2015-02-20 09:00:00,0.24600000000000002,0.348,0.342 -2015-02-20 10:00:00,0.24600000000000002,0.348,0.342 -2015-02-20 11:00:00,0.24600000000000002,0.34700000000000003,0.342 -2015-02-20 12:00:00,0.24600000000000002,0.34700000000000003,0.342 -2015-02-20 13:00:00,0.24600000000000002,0.34600000000000003,0.342 -2015-02-20 14:00:00,0.247,0.34600000000000003,0.342 -2015-02-20 15:00:00,0.247,0.34600000000000003,0.342 -2015-02-20 16:00:00,0.247,0.34600000000000003,0.342 -2015-02-20 17:00:00,0.247,0.34600000000000003,0.342 -2015-02-20 18:00:00,0.247,0.34600000000000003,0.342 -2015-02-20 19:00:00,0.247,0.345,0.342 -2015-02-20 20:00:00,0.247,0.345,0.342 -2015-02-20 21:00:00,0.247,0.345,0.342 -2015-02-20 22:00:00,0.247,0.345,0.342 -2015-02-20 23:00:00,0.247,0.344,0.342 -2015-02-21 00:00:00,0.247,0.344,0.342 -2015-02-21 01:00:00,0.247,0.344,0.342 -2015-02-21 02:00:00,0.247,0.344,0.342 -2015-02-21 03:00:00,0.24600000000000002,0.344,0.342 -2015-02-21 04:00:00,0.247,0.344,0.342 -2015-02-21 05:00:00,0.247,0.344,0.342 -2015-02-21 06:00:00,0.247,0.344,0.342 -2015-02-21 07:00:00,0.247,0.344,0.342 -2015-02-21 08:00:00,0.247,0.344,0.342 -2015-02-21 09:00:00,0.247,0.344,0.342 -2015-02-21 10:00:00,0.247,0.344,0.345 -2015-02-21 11:00:00,0.247,0.344,0.34600000000000003 -2015-02-21 12:00:00,0.248,0.34600000000000003,0.345 -2015-02-21 13:00:00,0.248,0.373,0.344 -2015-02-21 14:00:00,0.248,0.374,0.34299999999999997 -2015-02-21 15:00:00,0.247,0.374,0.342 -2015-02-21 16:00:00,0.247,0.375,0.342 -2015-02-21 17:00:00,0.247,0.37,0.342 -2015-02-21 18:00:00,0.247,0.366,0.342 -2015-02-21 19:00:00,0.247,0.369,0.342 -2015-02-21 20:00:00,0.247,0.366,0.342 -2015-02-21 21:00:00,0.247,0.368,0.342 -2015-02-21 22:00:00,0.247,0.37200000000000005,0.342 -2015-02-21 23:00:00,0.247,0.373,0.342 -2015-02-22 00:00:00,0.247,0.374,0.342 -2015-02-22 01:00:00,0.247,0.373,0.342 -2015-02-22 02:00:00,0.247,0.373,0.342 -2015-02-22 03:00:00,0.247,0.37200000000000005,0.342 -2015-02-22 04:00:00,0.247,0.37200000000000005,0.342 -2015-02-22 05:00:00,0.247,0.37200000000000005,0.342 -2015-02-22 06:00:00,0.24600000000000002,0.371,0.342 -2015-02-22 07:00:00,0.24600000000000002,0.37,0.342 -2015-02-22 08:00:00,0.24600000000000002,0.368,0.342 -2015-02-22 09:00:00,0.24600000000000002,0.368,0.342 -2015-02-22 10:00:00,0.247,0.366,0.342 -2015-02-22 11:00:00,0.24600000000000002,0.366,0.341 -2015-02-22 12:00:00,0.24600000000000002,0.365,0.341 -2015-02-22 13:00:00,0.24600000000000002,0.364,0.341 -2015-02-22 14:00:00,0.24600000000000002,0.361,0.341 -2015-02-22 15:00:00,0.24600000000000002,0.361,0.341 -2015-02-22 16:00:00,0.24600000000000002,0.361,0.341 -2015-02-22 17:00:00,0.24600000000000002,0.361,0.341 -2015-02-22 18:00:00,0.24600000000000002,0.36,0.341 -2015-02-22 19:00:00,0.24600000000000002,0.36,0.34 -2015-02-22 20:00:00,0.24600000000000002,0.359,0.34 -2015-02-22 21:00:00,0.24600000000000002,0.358,0.34 -2015-02-22 22:00:00,0.24600000000000002,0.358,0.34 -2015-02-22 23:00:00,0.24600000000000002,0.358,0.34 -2015-02-23 00:00:00,0.24600000000000002,0.358,0.34 -2015-02-23 01:00:00,0.24600000000000002,0.35700000000000004,0.34 -2015-02-23 02:00:00,0.24600000000000002,0.35600000000000004,0.34 -2015-02-23 03:00:00,0.24600000000000002,0.35600000000000004,0.34 -2015-02-23 04:00:00,0.24600000000000002,0.35600000000000004,0.34 -2015-02-23 05:00:00,0.24600000000000002,0.355,0.34 -2015-02-23 06:00:00,0.24600000000000002,0.355,0.34 -2015-02-23 07:00:00,0.247,0.355,0.34299999999999997 -2015-02-23 08:00:00,0.245,0.355,0.34600000000000003 -2015-02-23 09:00:00,0.242,0.354,0.34700000000000003 -2015-02-23 10:00:00,0.242,0.35200000000000004,0.34700000000000003 -2015-02-23 11:00:00,0.242,0.348,0.34700000000000003 -2015-02-23 12:00:00,0.242,0.349,0.34700000000000003 -2015-02-23 13:00:00,0.242,0.353,0.34700000000000003 -2015-02-23 14:00:00,0.242,0.355,0.34700000000000003 -2015-02-23 15:00:00,0.242,0.359,0.34700000000000003 -2015-02-23 16:00:00,0.242,0.361,0.34700000000000003 -2015-02-23 17:00:00,0.243,0.361,0.34700000000000003 -2015-02-23 18:00:00,0.244,0.363,0.34700000000000003 -2015-02-23 19:00:00,0.245,0.365,0.348 -2015-02-23 20:00:00,0.245,0.365,0.348 -2015-02-23 21:00:00,0.24600000000000002,0.366,0.348 -2015-02-23 22:00:00,0.245,0.365,0.349 -2015-02-23 23:00:00,0.245,0.365,0.349 -2015-02-24 00:00:00,0.245,0.365,0.349 -2015-02-24 01:00:00,0.24600000000000002,0.365,0.349 -2015-02-24 02:00:00,0.247,0.365,0.349 -2015-02-24 03:00:00,0.248,0.365,0.348 -2015-02-24 04:00:00,0.249,0.365,0.348 -2015-02-24 05:00:00,0.249,0.364,0.348 -2015-02-24 06:00:00,0.25,0.363,0.348 -2015-02-24 07:00:00,0.251,0.35200000000000004,0.348 -2015-02-24 08:00:00,0.251,0.35600000000000004,0.34700000000000003 -2015-02-24 09:00:00,0.251,0.365,0.34700000000000003 -2015-02-24 10:00:00,0.252,0.37,0.34600000000000003 -2015-02-24 11:00:00,0.252,0.36700000000000005,0.34600000000000003 -2015-02-24 12:00:00,0.252,0.361,0.34600000000000003 -2015-02-24 13:00:00,0.258,0.368,0.349 -2015-02-24 14:00:00,0.262,0.375,0.35200000000000004 -2015-02-24 15:00:00,0.261,0.376,0.35 -2015-02-24 16:00:00,0.261,0.375,0.35 -2015-02-24 17:00:00,0.26,0.375,0.349 -2015-02-24 18:00:00,0.259,0.373,0.349 -2015-02-24 19:00:00,0.259,0.373,0.349 -2015-02-24 20:00:00,0.259,0.37200000000000005,0.349 -2015-02-24 21:00:00,0.259,0.361,0.348 -2015-02-24 22:00:00,0.258,0.364,0.348 -2015-02-24 23:00:00,0.258,0.376,0.348 -2015-02-25 00:00:00,0.258,0.377,0.348 -2015-02-25 01:00:00,0.258,0.376,0.348 -2015-02-25 02:00:00,0.257,0.375,0.34700000000000003 -2015-02-25 03:00:00,0.257,0.374,0.34700000000000003 -2015-02-25 04:00:00,0.257,0.373,0.34700000000000003 -2015-02-25 05:00:00,0.257,0.373,0.34700000000000003 -2015-02-25 06:00:00,0.256,0.373,0.34700000000000003 -2015-02-25 07:00:00,0.256,0.373,0.34700000000000003 -2015-02-25 08:00:00,0.256,0.37200000000000005,0.34600000000000003 -2015-02-25 09:00:00,0.256,0.371,0.34600000000000003 -2015-02-25 10:00:00,0.256,0.37,0.34600000000000003 -2015-02-25 11:00:00,0.256,0.368,0.34600000000000003 -2015-02-25 12:00:00,0.255,0.36700000000000005,0.34600000000000003 -2015-02-25 13:00:00,0.255,0.366,0.34600000000000003 -2015-02-25 14:00:00,0.255,0.365,0.34600000000000003 -2015-02-25 15:00:00,0.255,0.365,0.345 -2015-02-25 16:00:00,0.255,0.365,0.345 -2015-02-25 17:00:00,0.255,0.364,0.345 -2015-02-25 18:00:00,0.255,0.364,0.345 -2015-02-25 19:00:00,0.255,0.363,0.345 -2015-02-25 20:00:00,0.255,0.363,0.345 -2015-02-25 21:00:00,0.255,0.363,0.345 -2015-02-25 22:00:00,0.255,0.363,0.345 -2015-02-25 23:00:00,0.255,0.35600000000000004,0.345 -2015-02-26 00:00:00,0.255,0.355,0.34600000000000003 -2015-02-26 01:00:00,0.255,0.361,0.34700000000000003 -2015-02-26 02:00:00,0.255,0.365,0.34700000000000003 -2015-02-26 03:00:00,0.255,0.368,0.34700000000000003 -2015-02-26 04:00:00,0.254,0.37,0.34700000000000003 -2015-02-26 05:00:00,0.254,0.37,0.34700000000000003 -2015-02-26 06:00:00,0.254,0.368,0.34700000000000003 -2015-02-26 07:00:00,0.254,0.368,0.34700000000000003 -2015-02-26 08:00:00,0.254,0.366,0.34700000000000003 -2015-02-26 09:00:00,0.254,0.366,0.34700000000000003 -2015-02-26 10:00:00,0.254,0.365,0.34700000000000003 -2015-02-26 11:00:00,0.254,0.363,0.34600000000000003 -2015-02-26 12:00:00,0.255,0.363,0.345 -2015-02-26 13:00:00,0.255,0.361,0.345 -2015-02-26 14:00:00,0.254,0.361,0.344 -2015-02-26 15:00:00,0.254,0.361,0.344 -2015-02-26 16:00:00,0.254,0.361,0.344 -2015-02-26 17:00:00,0.254,0.36,0.344 -2015-02-26 18:00:00,0.254,0.36,0.344 -2015-02-26 19:00:00,0.254,0.359,0.344 -2015-02-26 20:00:00,0.254,0.358,0.344 -2015-02-26 21:00:00,0.254,0.35600000000000004,0.344 -2015-02-26 22:00:00,0.254,0.34299999999999997,0.344 -2015-02-26 23:00:00,0.254,0.345,0.344 -2015-02-27 00:00:00,0.254,0.349,0.344 -2015-02-27 01:00:00,0.253,0.35100000000000003,0.344 -2015-02-27 02:00:00,0.253,0.354,0.344 -2015-02-27 03:00:00,0.253,0.355,0.344 -2015-02-27 04:00:00,0.254,0.35700000000000004,0.344 -2015-02-27 05:00:00,0.253,0.358,0.34700000000000003 -2015-02-27 06:00:00,0.252,0.358,0.34700000000000003 -2015-02-27 07:00:00,0.251,0.358,0.348 -2015-02-27 08:00:00,0.251,0.358,0.349 -2015-02-27 09:00:00,0.258,0.358,0.35100000000000003 -2015-02-27 10:00:00,0.26,0.358,0.35600000000000004 -2015-02-27 11:00:00,0.259,0.35700000000000004,0.358 -2015-02-27 12:00:00,0.259,0.35600000000000004,0.36 -2015-02-27 13:00:00,0.259,0.35600000000000004,0.361 -2015-02-27 14:00:00,0.258,0.355,0.363 -2015-02-27 15:00:00,0.258,0.355,0.369 -2015-02-27 16:00:00,0.259,0.355,0.37200000000000005 -2015-02-27 17:00:00,0.259,0.355,0.37200000000000005 -2015-02-27 18:00:00,0.258,0.355,0.375 -2015-02-27 19:00:00,0.257,0.355,0.376 -2015-02-27 20:00:00,0.256,0.355,0.376 -2015-02-27 21:00:00,0.256,0.355,0.376 -2015-02-27 22:00:00,0.256,0.354,0.376 -2015-02-27 23:00:00,0.256,0.354,0.376 -2015-02-28 00:00:00,0.257,0.353,0.376 -2015-02-28 01:00:00,0.257,0.353,0.376 -2015-02-28 02:00:00,0.258,0.353,0.376 -2015-02-28 03:00:00,0.26,0.353,0.375 -2015-02-28 04:00:00,0.259,0.35200000000000004,0.375 -2015-02-28 05:00:00,0.259,0.35100000000000003,0.375 -2015-02-28 06:00:00,0.259,0.35100000000000003,0.375 -2015-02-28 07:00:00,0.259,0.35100000000000003,0.375 -2015-02-28 08:00:00,0.258,0.35100000000000003,0.373 -2015-02-28 09:00:00,0.258,0.35,0.37200000000000005 -2015-02-28 10:00:00,0.256,0.35,0.369 -2015-02-28 11:00:00,0.252,0.349,0.366 -2015-02-28 12:00:00,0.253,0.349,0.364 -2015-02-28 13:00:00,0.255,0.349,0.363 -2015-02-28 14:00:00,0.257,0.349,0.36200000000000004 -2015-02-28 15:00:00,0.257,0.349,0.361 -2015-02-28 16:00:00,0.257,0.348,0.36 -2015-02-28 17:00:00,0.257,0.348,0.36 -2015-02-28 18:00:00,0.257,0.348,0.359 -2015-02-28 19:00:00,0.257,0.348,0.359 -2015-02-28 20:00:00,0.256,0.348,0.359 -2015-02-28 21:00:00,0.256,0.348,0.359 -2015-02-28 22:00:00,0.256,0.348,0.358 -2015-02-28 23:00:00,0.256,0.348,0.358 -2015-03-01 00:00:00,0.256,0.348,0.358 -2015-03-01 01:00:00,0.255,0.348,0.358 -2015-03-01 02:00:00,0.255,0.348,0.358 -2015-03-01 03:00:00,0.255,0.348,0.358 -2015-03-01 04:00:00,0.255,0.348,0.358 -2015-03-01 05:00:00,0.255,0.348,0.359 -2015-03-01 06:00:00,0.252,0.348,0.361 -2015-03-01 07:00:00,0.251,0.348,0.361 -2015-03-01 08:00:00,0.251,0.34700000000000003,0.361 -2015-03-01 09:00:00,0.252,0.34700000000000003,0.361 -2015-03-01 10:00:00,0.254,0.34700000000000003,0.361 -2015-03-01 11:00:00,0.256,0.34700000000000003,0.36 -2015-03-01 12:00:00,0.258,0.34600000000000003,0.36 -2015-03-01 13:00:00,0.259,0.34600000000000003,0.36 -2015-03-01 14:00:00,0.26,0.34600000000000003,0.359 -2015-03-01 15:00:00,0.26,0.34600000000000003,0.358 -2015-03-01 16:00:00,0.26,0.34600000000000003,0.358 -2015-03-01 17:00:00,0.259,0.34600000000000003,0.358 -2015-03-01 18:00:00,0.258,0.34600000000000003,0.359 -2015-03-01 19:00:00,0.254,0.34600000000000003,0.361 -2015-03-01 20:00:00,0.254,0.34600000000000003,0.361 -2015-03-01 21:00:00,0.254,0.34600000000000003,0.361 -2015-03-01 22:00:00,0.254,0.34600000000000003,0.361 -2015-03-01 23:00:00,0.257,0.345,0.36 -2015-03-02 00:00:00,0.258,0.345,0.359 -2015-03-02 01:00:00,0.258,0.345,0.359 -2015-03-02 02:00:00,0.258,0.344,0.359 -2015-03-02 03:00:00,0.256,0.344,0.361 -2015-03-02 04:00:00,0.255,0.344,0.36200000000000004 -2015-03-02 05:00:00,0.254,0.344,0.361 -2015-03-02 06:00:00,0.257,0.344,0.361 -2015-03-02 07:00:00,0.259,0.344,0.36 -2015-03-02 08:00:00,0.259,0.344,0.361 -2015-03-02 09:00:00,0.259,0.344,0.36200000000000004 -2015-03-02 10:00:00,0.259,0.344,0.36200000000000004 -2015-03-02 11:00:00,0.261,0.344,0.36200000000000004 -2015-03-02 12:00:00,0.264,0.344,0.361 -2015-03-02 13:00:00,0.263,0.344,0.361 -2015-03-02 14:00:00,0.263,0.344,0.361 -2015-03-02 15:00:00,0.262,0.344,0.361 -2015-03-02 16:00:00,0.262,0.344,0.36200000000000004 -2015-03-02 17:00:00,0.261,0.344,0.36200000000000004 -2015-03-02 18:00:00,0.256,0.344,0.365 -2015-03-02 19:00:00,0.261,0.344,0.37200000000000005 -2015-03-02 20:00:00,0.26,0.344,0.375 -2015-03-02 21:00:00,0.258,0.344,0.375 -2015-03-02 22:00:00,0.257,0.344,0.375 -2015-03-02 23:00:00,0.257,0.344,0.375 -2015-03-03 00:00:00,0.257,0.344,0.376 -2015-03-03 01:00:00,0.257,0.344,0.376 -2015-03-03 02:00:00,0.261,0.344,0.375 -2015-03-03 03:00:00,0.261,0.344,0.375 -2015-03-03 04:00:00,0.261,0.344,0.375 -2015-03-03 05:00:00,0.261,0.344,0.375 -2015-03-03 06:00:00,0.26,0.344,0.375 -2015-03-03 07:00:00,0.26,0.344,0.375 -2015-03-03 08:00:00,0.26,0.344,0.375 -2015-03-03 09:00:00,0.258,0.344,0.375 -2015-03-03 10:00:00,0.257,0.34299999999999997,0.376 -2015-03-03 11:00:00,0.258,0.34299999999999997,0.375 -2015-03-03 12:00:00,0.259,0.344,0.375 -2015-03-03 13:00:00,0.259,0.344,0.375 -2015-03-03 14:00:00,0.259,0.34299999999999997,0.374 -2015-03-03 15:00:00,0.259,0.34299999999999997,0.374 -2015-03-03 16:00:00,0.259,0.34299999999999997,0.374 -2015-03-03 17:00:00,0.259,0.34299999999999997,0.373 -2015-03-03 18:00:00,0.258,0.34299999999999997,0.373 -2015-03-03 19:00:00,0.258,0.34299999999999997,0.373 -2015-03-03 20:00:00,0.256,0.34299999999999997,0.374 -2015-03-03 21:00:00,0.255,0.344,0.375 -2015-03-03 22:00:00,0.255,0.344,0.375 -2015-03-03 23:00:00,0.256,0.344,0.375 -2015-03-04 00:00:00,0.256,0.344,0.375 -2015-03-04 01:00:00,0.258,0.344,0.374 -2015-03-04 02:00:00,0.259,0.344,0.373 -2015-03-04 03:00:00,0.259,0.344,0.371 -2015-03-04 04:00:00,0.26,0.344,0.368 -2015-03-04 05:00:00,0.26,0.344,0.36700000000000005 -2015-03-04 06:00:00,0.259,0.344,0.366 -2015-03-04 07:00:00,0.259,0.344,0.365 -2015-03-04 08:00:00,0.259,0.344,0.365 -2015-03-04 09:00:00,0.259,0.344,0.365 -2015-03-04 10:00:00,0.258,0.344,0.364 -2015-03-04 11:00:00,0.258,0.344,0.364 -2015-03-04 12:00:00,0.258,0.344,0.363 -2015-03-04 13:00:00,0.258,0.344,0.363 -2015-03-04 14:00:00,0.258,0.34299999999999997,0.363 -2015-03-04 15:00:00,0.258,0.34299999999999997,0.36200000000000004 -2015-03-04 16:00:00,0.258,0.344,0.36200000000000004 -2015-03-04 17:00:00,0.258,0.34299999999999997,0.36200000000000004 -2015-03-04 18:00:00,0.256,0.34299999999999997,0.363 -2015-03-04 19:00:00,0.253,0.34299999999999997,0.366 -2015-03-04 20:00:00,0.253,0.34299999999999997,0.365 -2015-03-04 21:00:00,0.252,0.34299999999999997,0.365 -2015-03-04 22:00:00,0.252,0.34299999999999997,0.365 -2015-03-04 23:00:00,0.252,0.34299999999999997,0.364 -2015-03-05 00:00:00,0.253,0.34299999999999997,0.364 -2015-03-05 01:00:00,0.254,0.34299999999999997,0.364 -2015-03-05 02:00:00,0.256,0.34299999999999997,0.364 -2015-03-05 03:00:00,0.257,0.34299999999999997,0.364 -2015-03-05 04:00:00,0.257,0.34299999999999997,0.363 -2015-03-05 05:00:00,0.257,0.34299999999999997,0.363 -2015-03-05 06:00:00,0.257,0.34299999999999997,0.363 -2015-03-05 07:00:00,0.257,0.34299999999999997,0.363 -2015-03-05 08:00:00,0.257,0.34299999999999997,0.363 -2015-03-05 09:00:00,0.256,0.34299999999999997,0.36200000000000004 -2015-03-05 10:00:00,0.256,0.344,0.36200000000000004 -2015-03-05 11:00:00,0.256,0.344,0.36200000000000004 -2015-03-05 12:00:00,0.256,0.34299999999999997,0.36200000000000004 -2015-03-05 13:00:00,0.256,0.34299999999999997,0.361 -2015-03-05 14:00:00,0.256,0.34299999999999997,0.361 -2015-03-05 15:00:00,0.256,0.342,0.361 -2015-03-05 16:00:00,0.256,0.341,0.361 -2015-03-05 17:00:00,0.256,0.34299999999999997,0.361 -2015-03-05 18:00:00,0.256,0.34299999999999997,0.361 -2015-03-05 19:00:00,0.256,0.34299999999999997,0.361 -2015-03-05 20:00:00,0.256,0.34299999999999997,0.361 -2015-03-05 21:00:00,0.256,0.34299999999999997,0.361 -2015-03-05 22:00:00,0.255,0.34299999999999997,0.361 -2015-03-05 23:00:00,0.255,0.34299999999999997,0.361 -2015-03-06 00:00:00,0.255,0.34299999999999997,0.361 -2015-03-06 01:00:00,0.255,0.34299999999999997,0.361 -2015-03-06 02:00:00,0.255,0.34299999999999997,0.361 -2015-03-06 03:00:00,0.254,0.34299999999999997,0.361 -2015-03-06 04:00:00,0.254,0.34299999999999997,0.36 -2015-03-06 05:00:00,0.254,0.34299999999999997,0.36 -2015-03-06 06:00:00,0.254,0.34299999999999997,0.361 -2015-03-06 07:00:00,0.254,0.34299999999999997,0.35600000000000004 -2015-03-06 08:00:00,0.254,0.34299999999999997,0.35200000000000004 -2015-03-06 09:00:00,0.254,0.34299999999999997,0.35200000000000004 -2015-03-06 10:00:00,0.254,0.34299999999999997,0.353 -2015-03-06 11:00:00,0.254,0.34299999999999997,0.353 -2015-03-06 12:00:00,0.254,0.34299999999999997,0.35200000000000004 -2015-03-06 13:00:00,0.254,0.342,0.35200000000000004 -2015-03-06 14:00:00,0.254,0.341,0.35200000000000004 -2015-03-06 15:00:00,0.254,0.341,0.35200000000000004 -2015-03-06 16:00:00,0.254,0.341,0.35100000000000003 -2015-03-06 17:00:00,0.254,0.341,0.35100000000000003 -2015-03-06 18:00:00,0.254,0.34299999999999997,0.35100000000000003 -2015-03-06 19:00:00,0.254,0.35,0.35100000000000003 -2015-03-06 20:00:00,0.254,0.35,0.35100000000000003 -2015-03-06 21:00:00,0.253,0.35,0.35100000000000003 -2015-03-06 22:00:00,0.253,0.35,0.35100000000000003 -2015-03-06 23:00:00,0.253,0.35,0.35100000000000003 -2015-03-07 00:00:00,0.253,0.349,0.35100000000000003 -2015-03-07 01:00:00,0.253,0.349,0.35100000000000003 -2015-03-07 02:00:00,0.253,0.35100000000000003,0.35100000000000003 -2015-03-07 03:00:00,0.253,0.349,0.35100000000000003 -2015-03-07 04:00:00,0.253,0.349,0.35100000000000003 -2015-03-07 05:00:00,0.253,0.348,0.35100000000000003 -2015-03-07 06:00:00,0.252,0.34700000000000003,0.35100000000000003 -2015-03-07 07:00:00,0.252,0.34600000000000003,0.35100000000000003 -2015-03-07 08:00:00,0.252,0.345,0.35100000000000003 -2015-03-07 09:00:00,0.252,0.345,0.35100000000000003 -2015-03-07 10:00:00,0.253,0.345,0.35200000000000004 -2015-03-07 11:00:00,0.252,0.344,0.35200000000000004 -2015-03-07 12:00:00,0.252,0.344,0.35100000000000003 -2015-03-07 13:00:00,0.252,0.344,0.35 -2015-03-07 14:00:00,0.252,0.344,0.35 -2015-03-07 15:00:00,0.252,0.344,0.35 -2015-03-07 16:00:00,0.252,0.344,0.35 -2015-03-07 17:00:00,0.252,0.344,0.35 -2015-03-07 18:00:00,0.252,0.344,0.349 -2015-03-07 19:00:00,0.252,0.344,0.349 -2015-03-07 20:00:00,0.252,0.344,0.349 -2015-03-07 21:00:00,0.252,0.344,0.349 -2015-03-07 22:00:00,0.252,0.344,0.349 -2015-03-07 23:00:00,0.252,0.345,0.349 -2015-03-08 00:00:00,0.252,0.345,0.349 -2015-03-08 01:00:00,0.252,0.344,0.349 -2015-03-08 02:00:00,0.252,0.344,0.349 -2015-03-08 03:00:00,0.252,0.344,0.349 -2015-03-08 04:00:00,0.251,0.344,0.349 -2015-03-08 05:00:00,0.251,0.344,0.349 -2015-03-08 06:00:00,0.251,0.34600000000000003,0.349 -2015-03-08 07:00:00,0.251,0.345,0.349 -2015-03-08 08:00:00,0.251,0.344,0.349 -2015-03-08 09:00:00,0.251,0.344,0.349 -2015-03-08 10:00:00,0.251,0.344,0.35100000000000003 -2015-03-08 11:00:00,0.252,0.344,0.35 -2015-03-08 12:00:00,0.251,0.344,0.349 -2015-03-08 13:00:00,0.251,0.344,0.349 -2015-03-08 14:00:00,0.251,0.344,0.349 -2015-03-08 15:00:00,0.251,0.344,0.349 -2015-03-08 16:00:00,0.251,0.344,0.349 -2015-03-08 17:00:00,0.251,0.344,0.349 -2015-03-08 18:00:00,0.252,0.344,0.349 -2015-03-08 19:00:00,0.252,0.344,0.349 -2015-03-08 20:00:00,0.252,0.344,0.349 -2015-03-08 21:00:00,0.252,0.344,0.349 -2015-03-08 22:00:00,0.251,0.344,0.349 -2015-03-08 23:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 00:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 01:00:00,0.251,0.344,0.349 -2015-03-09 02:00:00,0.251,0.344,0.349 -2015-03-09 03:00:00,0.251,0.344,0.349 -2015-03-09 04:00:00,0.251,0.344,0.349 -2015-03-09 05:00:00,0.251,0.344,0.349 -2015-03-09 06:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 07:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 08:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 09:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 10:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 11:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 12:00:00,0.251,0.34299999999999997,0.349 -2015-03-09 13:00:00,0.251,0.341,0.349 -2015-03-09 14:00:00,0.251,0.341,0.349 -2015-03-09 15:00:00,0.251,0.342,0.349 -2015-03-09 16:00:00,0.251,0.344,0.348 -2015-03-09 17:00:00,0.251,0.344,0.348 -2015-03-09 18:00:00,0.251,0.344,0.348 -2015-03-09 19:00:00,0.251,0.344,0.348 -2015-03-09 20:00:00,0.251,0.344,0.348 -2015-03-09 21:00:00,0.251,0.344,0.348 -2015-03-09 22:00:00,0.251,0.344,0.348 -2015-03-09 23:00:00,0.251,0.344,0.348 -2015-03-10 00:00:00,0.251,0.344,0.348 -2015-03-10 01:00:00,0.251,0.344,0.348 -2015-03-10 02:00:00,0.251,0.344,0.348 -2015-03-10 03:00:00,0.25,0.344,0.348 -2015-03-10 04:00:00,0.25,0.344,0.348 -2015-03-10 05:00:00,0.25,0.344,0.34700000000000003 -2015-03-10 06:00:00,0.25,0.344,0.34700000000000003 -2015-03-10 07:00:00,0.25,0.344,0.34700000000000003 -2015-03-10 08:00:00,0.25,0.344,0.349 -2015-03-10 09:00:00,0.25,0.344,0.35 -2015-03-10 10:00:00,0.249,0.344,0.35 -2015-03-10 11:00:00,0.249,0.344,0.35 -2015-03-10 12:00:00,0.25,0.344,0.349 -2015-03-10 13:00:00,0.25,0.34299999999999997,0.349 -2015-03-10 14:00:00,0.25,0.34600000000000003,0.349 -2015-03-10 15:00:00,0.251,0.348,0.348 -2015-03-10 16:00:00,0.251,0.348,0.348 -2015-03-10 17:00:00,0.251,0.34700000000000003,0.348 -2015-03-10 18:00:00,0.251,0.34700000000000003,0.348 -2015-03-10 19:00:00,0.251,0.348,0.348 -2015-03-10 20:00:00,0.251,0.34600000000000003,0.34700000000000003 -2015-03-10 21:00:00,0.251,0.34700000000000003,0.34700000000000003 -2015-03-10 22:00:00,0.25,0.348,0.34700000000000003 -2015-03-10 23:00:00,0.251,0.348,0.34700000000000003 -2015-03-11 00:00:00,0.25,0.348,0.34700000000000003 -2015-03-11 01:00:00,0.25,0.348,0.34700000000000003 -2015-03-11 02:00:00,0.25,0.348,0.34700000000000003 -2015-03-11 03:00:00,0.25,0.34700000000000003,0.34700000000000003 -2015-03-11 04:00:00,0.25,0.34700000000000003,0.34700000000000003 -2015-03-11 05:00:00,0.25,0.34700000000000003,0.34700000000000003 -2015-03-11 06:00:00,0.25,0.34700000000000003,0.34700000000000003 -2015-03-11 07:00:00,0.25,0.348,0.34700000000000003 -2015-03-11 08:00:00,0.25,0.34700000000000003,0.34700000000000003 -2015-03-11 09:00:00,0.25,0.34700000000000003,0.34700000000000003 -2015-03-11 10:00:00,0.249,0.34600000000000003,0.349 -2015-03-11 11:00:00,0.25,0.34600000000000003,0.348 -2015-03-11 12:00:00,0.25,0.345,0.34700000000000003 -2015-03-11 13:00:00,0.25,0.344,0.34700000000000003 -2015-03-11 14:00:00,0.25,0.345,0.34600000000000003 -2015-03-11 15:00:00,0.25,0.34600000000000003,0.34600000000000003 -2015-03-11 16:00:00,0.25,0.34600000000000003,0.34600000000000003 -2015-03-11 17:00:00,0.25,0.34600000000000003,0.34600000000000003 -2015-03-11 18:00:00,0.25,0.34700000000000003,0.34600000000000003 -2015-03-11 19:00:00,0.25,0.34700000000000003,0.34600000000000003 -2015-03-11 20:00:00,0.25,0.34700000000000003,0.34600000000000003 -2015-03-11 21:00:00,0.249,0.348,0.345 -2015-03-11 22:00:00,0.249,0.34700000000000003,0.345 -2015-03-11 23:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 00:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 01:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 02:00:00,0.249,0.345,0.345 -2015-03-12 03:00:00,0.249,0.345,0.345 -2015-03-12 04:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 05:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 06:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 07:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 08:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 09:00:00,0.249,0.34600000000000003,0.345 -2015-03-12 10:00:00,0.249,0.34600000000000003,0.34700000000000003 -2015-03-12 11:00:00,0.249,0.344,0.34600000000000003 -2015-03-12 12:00:00,0.249,0.344,0.34600000000000003 -2015-03-12 13:00:00,0.249,0.344,0.345 -2015-03-12 14:00:00,0.249,0.34700000000000003,0.345 -2015-03-12 15:00:00,0.249,0.348,0.345 -2015-03-12 16:00:00,0.25,0.348,0.344 -2015-03-12 17:00:00,0.25,0.348,0.344 -2015-03-12 18:00:00,0.25,0.34700000000000003,0.344 -2015-03-12 19:00:00,0.25,0.34600000000000003,0.344 -2015-03-12 20:00:00,0.25,0.348,0.344 -2015-03-12 21:00:00,0.249,0.348,0.344 -2015-03-12 22:00:00,0.249,0.348,0.344 -2015-03-12 23:00:00,0.249,0.34700000000000003,0.344 -2015-03-13 00:00:00,0.249,0.34700000000000003,0.344 -2015-03-13 01:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 02:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 03:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 04:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 05:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 06:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 07:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 08:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 09:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 10:00:00,0.25,0.34600000000000003,0.345 -2015-03-13 11:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 12:00:00,0.249,0.344,0.344 -2015-03-13 13:00:00,0.249,0.344,0.344 -2015-03-13 14:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 15:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 16:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 17:00:00,0.249,0.34700000000000003,0.344 -2015-03-13 18:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 19:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 20:00:00,0.249,0.34600000000000003,0.344 -2015-03-13 21:00:00,0.249,0.34700000000000003,0.344 -2015-03-13 22:00:00,0.249,0.345,0.344 -2015-03-13 23:00:00,0.249,0.344,0.344 -2015-03-14 00:00:00,0.249,0.344,0.344 -2015-03-14 01:00:00,0.249,0.344,0.344 -2015-03-14 02:00:00,0.249,0.344,0.344 -2015-03-14 03:00:00,0.249,0.344,0.34299999999999997 -2015-03-14 04:00:00,0.249,0.344,0.34299999999999997 -2015-03-14 05:00:00,0.249,0.344,0.344 -2015-03-14 06:00:00,0.249,0.344,0.344 -2015-03-14 07:00:00,0.249,0.344,0.344 -2015-03-14 08:00:00,0.248,0.344,0.34299999999999997 -2015-03-14 09:00:00,0.249,0.344,0.34299999999999997 -2015-03-14 10:00:00,0.249,0.344,0.34299999999999997 -2015-03-14 11:00:00,0.249,0.344,0.34299999999999997 -2015-03-14 12:00:00,0.249,0.34299999999999997,0.344 -2015-03-14 13:00:00,0.249,0.34299999999999997,0.344 -2015-03-14 14:00:00,0.249,0.34299999999999997,0.344 -2015-03-14 15:00:00,0.249,0.34299999999999997,0.344 -2015-03-14 16:00:00,0.249,0.34600000000000003,0.344 -2015-03-14 17:00:00,0.249,0.34700000000000003,0.344 -2015-03-14 18:00:00,0.249,0.348,0.344 -2015-03-14 19:00:00,0.25,0.348,0.345 -2015-03-14 20:00:00,0.249,0.348,0.34600000000000003 -2015-03-14 21:00:00,0.25,0.348,0.34600000000000003 -2015-03-14 22:00:00,0.249,0.34600000000000003,0.34600000000000003 -2015-03-14 23:00:00,0.249,0.344,0.34600000000000003 -2015-03-15 00:00:00,0.249,0.344,0.34600000000000003 -2015-03-15 01:00:00,0.249,0.344,0.345 -2015-03-15 02:00:00,0.249,0.344,0.345 -2015-03-15 03:00:00,0.249,0.344,0.34600000000000003 -2015-03-15 04:00:00,0.249,0.344,0.34600000000000003 -2015-03-15 05:00:00,0.249,0.344,0.34700000000000003 -2015-03-15 06:00:00,0.249,0.344,0.34700000000000003 -2015-03-15 07:00:00,0.249,0.34299999999999997,0.348 -2015-03-15 08:00:00,0.247,0.34299999999999997,0.348 -2015-03-15 09:00:00,0.247,0.34299999999999997,0.348 -2015-03-15 10:00:00,0.248,0.34299999999999997,0.348 -2015-03-15 11:00:00,0.249,0.34299999999999997,0.348 -2015-03-15 12:00:00,0.249,0.34299999999999997,0.34700000000000003 -2015-03-15 13:00:00,0.25,0.34299999999999997,0.34600000000000003 -2015-03-15 14:00:00,0.25,0.34299999999999997,0.34600000000000003 -2015-03-15 15:00:00,0.25,0.34299999999999997,0.345 -2015-03-15 16:00:00,0.25,0.34299999999999997,0.345 -2015-03-15 17:00:00,0.25,0.34299999999999997,0.345 -2015-03-15 18:00:00,0.25,0.344,0.344 -2015-03-15 19:00:00,0.25,0.34299999999999997,0.344 -2015-03-15 20:00:00,0.25,0.34299999999999997,0.344 -2015-03-15 21:00:00,0.25,0.34299999999999997,0.344 -2015-03-15 22:00:00,0.25,0.34299999999999997,0.344 -2015-03-15 23:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 00:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 01:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 02:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 03:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 04:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 05:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 06:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 07:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 08:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 09:00:00,0.251,0.34299999999999997,0.34600000000000003 -2015-03-16 10:00:00,0.25,0.34299999999999997,0.34600000000000003 -2015-03-16 11:00:00,0.25,0.34299999999999997,0.34600000000000003 -2015-03-16 12:00:00,0.25,0.34299999999999997,0.345 -2015-03-16 13:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 14:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 15:00:00,0.25,0.34299999999999997,0.344 -2015-03-16 16:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-16 17:00:00,0.251,0.34299999999999997,0.34299999999999997 -2015-03-16 18:00:00,0.251,0.34299999999999997,0.34299999999999997 -2015-03-16 19:00:00,0.251,0.34299999999999997,0.34299999999999997 -2015-03-16 20:00:00,0.251,0.34299999999999997,0.34299999999999997 -2015-03-16 21:00:00,0.251,0.34299999999999997,0.34299999999999997 -2015-03-16 22:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-16 23:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 00:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 01:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 02:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 03:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 04:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 05:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 06:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 07:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 08:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 09:00:00,0.251,0.34299999999999997,0.345 -2015-03-17 10:00:00,0.25,0.34299999999999997,0.345 -2015-03-17 11:00:00,0.25,0.34299999999999997,0.344 -2015-03-17 12:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 13:00:00,0.25,0.341,0.34299999999999997 -2015-03-17 14:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 15:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-17 16:00:00,0.25,0.344,0.34299999999999997 -2015-03-17 17:00:00,0.25,0.344,0.342 -2015-03-17 18:00:00,0.251,0.344,0.342 -2015-03-17 19:00:00,0.251,0.34299999999999997,0.342 -2015-03-17 20:00:00,0.251,0.34299999999999997,0.342 -2015-03-17 21:00:00,0.25,0.344,0.342 -2015-03-17 22:00:00,0.25,0.344,0.342 -2015-03-17 23:00:00,0.25,0.344,0.342 -2015-03-18 00:00:00,0.25,0.344,0.342 -2015-03-18 01:00:00,0.25,0.344,0.342 -2015-03-18 02:00:00,0.25,0.344,0.342 -2015-03-18 03:00:00,0.25,0.344,0.342 -2015-03-18 04:00:00,0.25,0.344,0.342 -2015-03-18 05:00:00,0.25,0.344,0.342 -2015-03-18 06:00:00,0.25,0.344,0.342 -2015-03-18 07:00:00,0.25,0.344,0.342 -2015-03-18 08:00:00,0.249,0.34299999999999997,0.342 -2015-03-18 09:00:00,0.251,0.34299999999999997,0.344 -2015-03-18 10:00:00,0.25,0.34299999999999997,0.344 -2015-03-18 11:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-18 12:00:00,0.25,0.34299999999999997,0.342 -2015-03-18 13:00:00,0.25,0.34299999999999997,0.342 -2015-03-18 14:00:00,0.25,0.34299999999999997,0.342 -2015-03-18 15:00:00,0.25,0.344,0.342 -2015-03-18 16:00:00,0.25,0.34299999999999997,0.342 -2015-03-18 17:00:00,0.25,0.34299999999999997,0.342 -2015-03-18 18:00:00,0.251,0.34299999999999997,0.341 -2015-03-18 19:00:00,0.251,0.34299999999999997,0.341 -2015-03-18 20:00:00,0.251,0.34299999999999997,0.341 -2015-03-18 21:00:00,0.25,0.34299999999999997,0.341 -2015-03-18 22:00:00,0.25,0.34299999999999997,0.341 -2015-03-18 23:00:00,0.25,0.344,0.341 -2015-03-19 00:00:00,0.25,0.344,0.341 -2015-03-19 01:00:00,0.25,0.344,0.341 -2015-03-19 02:00:00,0.25,0.344,0.341 -2015-03-19 03:00:00,0.25,0.344,0.341 -2015-03-19 04:00:00,0.25,0.344,0.342 -2015-03-19 05:00:00,0.25,0.344,0.342 -2015-03-19 06:00:00,0.25,0.344,0.342 -2015-03-19 07:00:00,0.25,0.344,0.342 -2015-03-19 08:00:00,0.25,0.344,0.342 -2015-03-19 09:00:00,0.25,0.344,0.342 -2015-03-19 10:00:00,0.25,0.344,0.342 -2015-03-19 11:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 12:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 13:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 14:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 15:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 16:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 17:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 18:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 19:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 20:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 21:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 22:00:00,0.25,0.34299999999999997,0.341 -2015-03-19 23:00:00,0.25,0.34299999999999997,0.341 -2015-03-20 00:00:00,0.25,0.34299999999999997,0.341 -2015-03-20 01:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 02:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 03:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 04:00:00,0.249,0.34299999999999997,0.34 -2015-03-20 05:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 06:00:00,0.249,0.34299999999999997,0.34 -2015-03-20 07:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 08:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 09:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-20 10:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-20 11:00:00,0.25,0.34299999999999997,0.34299999999999997 -2015-03-20 12:00:00,0.25,0.34299999999999997,0.342 -2015-03-20 13:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 14:00:00,0.249,0.34299999999999997,0.341 -2015-03-20 15:00:00,0.249,0.34299999999999997,0.34 -2015-03-20 16:00:00,0.249,0.34299999999999997,0.34 -2015-03-20 17:00:00,0.25,0.34299999999999997,0.34 -2015-03-20 18:00:00,0.25,0.34299999999999997,0.34 -2015-03-20 19:00:00,0.25,0.34299999999999997,0.34 -2015-03-20 20:00:00,0.249,0.34299999999999997,0.34 -2015-03-20 21:00:00,0.249,0.34299999999999997,0.34 -2015-03-20 22:00:00,0.249,0.34299999999999997,0.34 -2015-03-20 23:00:00,0.249,0.344,0.34 -2015-03-21 00:00:00,0.249,0.344,0.34 -2015-03-21 01:00:00,0.249,0.344,0.34 -2015-03-21 02:00:00,0.249,0.344,0.34 -2015-03-21 03:00:00,0.249,0.344,0.341 -2015-03-21 04:00:00,0.249,0.34299999999999997,0.342 -2015-03-21 05:00:00,0.249,0.34299999999999997,0.342 -2015-03-21 06:00:00,0.249,0.344,0.342 -2015-03-21 07:00:00,0.249,0.34299999999999997,0.342 -2015-03-21 08:00:00,0.249,0.34299999999999997,0.342 -2015-03-21 09:00:00,0.249,0.34299999999999997,0.341 -2015-03-21 10:00:00,0.249,0.34299999999999997,0.341 -2015-03-21 11:00:00,0.249,0.34299999999999997,0.341 -2015-03-21 12:00:00,0.248,0.34299999999999997,0.34 -2015-03-21 13:00:00,0.248,0.34299999999999997,0.34 -2015-03-21 14:00:00,0.248,0.34299999999999997,0.34 -2015-03-21 15:00:00,0.248,0.34299999999999997,0.34 -2015-03-21 16:00:00,0.248,0.34299999999999997,0.34 -2015-03-21 17:00:00,0.249,0.34299999999999997,0.341 -2015-03-21 18:00:00,0.249,0.34299999999999997,0.341 -2015-03-21 19:00:00,0.249,0.34299999999999997,0.341 -2015-03-21 20:00:00,0.249,0.34299999999999997,0.34 -2015-03-21 21:00:00,0.249,0.34299999999999997,0.34 -2015-03-21 22:00:00,0.249,0.34299999999999997,0.34 -2015-03-21 23:00:00,0.248,0.34299999999999997,0.34 -2015-03-22 00:00:00,0.248,0.34299999999999997,0.34 -2015-03-22 01:00:00,0.248,0.34299999999999997,0.34 -2015-03-22 02:00:00,0.249,0.34299999999999997,0.34 -2015-03-22 03:00:00,0.249,0.34299999999999997,0.341 -2015-03-22 04:00:00,0.249,0.34299999999999997,0.341 -2015-03-22 05:00:00,0.249,0.34299999999999997,0.341 -2015-03-22 06:00:00,0.249,0.34299999999999997,0.341 -2015-03-22 07:00:00,0.249,0.34299999999999997,0.34 -2015-03-22 08:00:00,0.248,0.34299999999999997,0.34 -2015-03-22 09:00:00,0.248,0.34299999999999997,0.34 -2015-03-22 10:00:00,0.248,0.344,0.33899999999999997 -2015-03-22 11:00:00,0.248,0.34299999999999997,0.33899999999999997 -2015-03-22 12:00:00,0.248,0.34299999999999997,0.33899999999999997 -2015-03-22 13:00:00,0.248,0.342,0.33899999999999997 -2015-03-22 14:00:00,0.248,0.342,0.33899999999999997 -2015-03-22 15:00:00,0.248,0.34299999999999997,0.33899999999999997 -2015-03-22 16:00:00,0.248,0.34299999999999997,0.33899999999999997 -2015-03-22 17:00:00,0.248,0.34299999999999997,0.33899999999999997 -2015-03-22 18:00:00,0.248,0.34299999999999997,0.33799999999999997 -2015-03-22 19:00:00,0.248,0.34299999999999997,0.33799999999999997 -2015-03-22 20:00:00,0.248,0.34299999999999997,0.33799999999999997 -2015-03-22 21:00:00,0.248,0.34299999999999997,0.33799999999999997 -2015-03-22 22:00:00,0.248,0.34299999999999997,0.33799999999999997 -2015-03-22 23:00:00,0.248,0.34299999999999997,0.33799999999999997 -2015-03-23 00:00:00,0.247,0.34299999999999997,0.33799999999999997 -2015-03-23 01:00:00,0.248,0.34299999999999997,0.33799999999999997 -2015-03-23 02:00:00,0.247,0.34299999999999997,0.33799999999999997 -2015-03-23 03:00:00,0.247,0.34299999999999997,0.33799999999999997 -2015-03-23 04:00:00,0.247,0.34299999999999997,0.33799999999999997 -2015-03-23 05:00:00,0.247,0.34,0.33799999999999997 -2015-03-23 06:00:00,0.247,0.341,0.33799999999999997 -2015-03-23 07:00:00,0.247,0.341,0.33799999999999997 -2015-03-23 08:00:00,0.247,0.341,0.33799999999999997 -2015-03-23 09:00:00,0.247,0.341,0.33899999999999997 -2015-03-23 10:00:00,0.248,0.341,0.34 -2015-03-23 11:00:00,0.248,0.341,0.33899999999999997 -2015-03-23 12:00:00,0.247,0.342,0.33799999999999997 -2015-03-23 13:00:00,0.247,0.34299999999999997,0.33799999999999997 -2015-03-23 14:00:00,0.247,0.34299999999999997,0.33799999999999997 -2015-03-23 15:00:00,0.247,0.342,0.33799999999999997 -2015-03-23 16:00:00,0.248,0.34,0.33799999999999997 -2015-03-23 17:00:00,0.248,0.33799999999999997,0.33799999999999997 -2015-03-23 18:00:00,0.248,0.337,0.33799999999999997 -2015-03-23 19:00:00,0.248,0.337,0.33799999999999997 -2015-03-23 20:00:00,0.248,0.336,0.33799999999999997 -2015-03-23 21:00:00,0.247,0.35200000000000004,0.33799999999999997 -2015-03-23 22:00:00,0.247,0.38,0.33799999999999997 -2015-03-23 23:00:00,0.248,0.38,0.33799999999999997 -2015-03-24 00:00:00,0.247,0.373,0.33799999999999997 -2015-03-24 01:00:00,0.247,0.382,0.33799999999999997 -2015-03-24 02:00:00,0.247,0.381,0.33799999999999997 -2015-03-24 03:00:00,0.247,0.385,0.33799999999999997 -2015-03-24 04:00:00,0.247,0.38299999999999995,0.33799999999999997 -2015-03-24 05:00:00,0.247,0.382,0.33799999999999997 -2015-03-24 06:00:00,0.247,0.382,0.33799999999999997 -2015-03-24 07:00:00,0.247,0.38,0.33799999999999997 -2015-03-24 08:00:00,0.248,0.37799999999999995,0.33899999999999997 -2015-03-24 09:00:00,0.248,0.37799999999999995,0.34 -2015-03-24 10:00:00,0.248,0.377,0.34 -2015-03-24 11:00:00,0.248,0.377,0.33899999999999997 -2015-03-24 12:00:00,0.247,0.375,0.33799999999999997 -2015-03-24 13:00:00,0.247,0.373,0.33799999999999997 -2015-03-24 14:00:00,0.247,0.373,0.33799999999999997 -2015-03-24 15:00:00,0.247,0.373,0.33799999999999997 -2015-03-24 16:00:00,0.247,0.37200000000000005,0.33799999999999997 -2015-03-24 17:00:00,0.248,0.37,0.33799999999999997 -2015-03-24 18:00:00,0.248,0.36700000000000005,0.33799999999999997 -2015-03-24 19:00:00,0.248,0.37,0.337 -2015-03-24 20:00:00,0.247,0.369,0.337 -2015-03-24 21:00:00,0.247,0.37,0.33799999999999997 -2015-03-24 22:00:00,0.247,0.37,0.33799999999999997 -2015-03-24 23:00:00,0.247,0.37,0.33799999999999997 -2015-03-25 00:00:00,0.247,0.37,0.33799999999999997 -2015-03-25 01:00:00,0.247,0.37,0.33799999999999997 -2015-03-25 02:00:00,0.247,0.37,0.33799999999999997 -2015-03-25 03:00:00,0.247,0.368,0.33799999999999997 -2015-03-25 04:00:00,0.247,0.36700000000000005,0.33799999999999997 -2015-03-25 05:00:00,0.247,0.366,0.33799999999999997 -2015-03-25 06:00:00,0.247,0.365,0.33899999999999997 -2015-03-25 07:00:00,0.247,0.365,0.33899999999999997 -2015-03-25 08:00:00,0.248,0.361,0.33899999999999997 -2015-03-25 09:00:00,0.248,0.366,0.33899999999999997 -2015-03-25 10:00:00,0.247,0.358,0.33799999999999997 -2015-03-25 11:00:00,0.247,0.379,0.33799999999999997 -2015-03-25 12:00:00,0.247,0.381,0.33799999999999997 -2015-03-25 13:00:00,0.247,0.377,0.33799999999999997 -2015-03-25 14:00:00,0.248,0.42100000000000004,0.33799999999999997 -2015-03-25 15:00:00,0.248,0.45,0.33799999999999997 -2015-03-25 16:00:00,0.248,0.449,0.33799999999999997 -2015-03-25 17:00:00,0.248,0.452,0.337 -2015-03-25 18:00:00,0.248,0.456,0.337 -2015-03-25 19:00:00,0.248,0.457,0.337 -2015-03-25 20:00:00,0.248,0.45899999999999996,0.337 -2015-03-25 21:00:00,0.248,0.451,0.337 -2015-03-25 22:00:00,0.248,0.418,0.337 -2015-03-25 23:00:00,0.248,0.405,0.337 -2015-03-26 00:00:00,0.247,0.384,0.337 -2015-03-26 01:00:00,0.247,0.37799999999999995,0.337 -2015-03-26 02:00:00,0.247,0.381,0.337 -2015-03-26 03:00:00,0.247,0.382,0.337 -2015-03-26 04:00:00,0.247,0.381,0.337 -2015-03-26 05:00:00,0.247,0.379,0.337 -2015-03-26 06:00:00,0.247,0.376,0.337 -2015-03-26 07:00:00,0.247,0.364,0.337 -2015-03-26 08:00:00,0.247,0.369,0.337 -2015-03-26 09:00:00,0.247,0.373,0.337 -2015-03-26 10:00:00,0.247,0.376,0.337 -2015-03-26 11:00:00,0.247,0.37799999999999995,0.337 -2015-03-26 12:00:00,0.247,0.37799999999999995,0.337 -2015-03-26 13:00:00,0.247,0.37799999999999995,0.337 -2015-03-26 14:00:00,0.247,0.377,0.337 -2015-03-26 15:00:00,0.247,0.376,0.337 -2015-03-26 16:00:00,0.247,0.375,0.337 -2015-03-26 17:00:00,0.247,0.369,0.337 -2015-03-26 18:00:00,0.247,0.37200000000000005,0.337 -2015-03-26 19:00:00,0.247,0.375,0.337 -2015-03-26 20:00:00,0.248,0.374,0.33799999999999997 -2015-03-26 21:00:00,0.248,0.361,0.33899999999999997 -2015-03-26 22:00:00,0.248,0.366,0.33799999999999997 -2015-03-26 23:00:00,0.248,0.373,0.33799999999999997 -2015-03-27 00:00:00,0.248,0.375,0.33799999999999997 -2015-03-27 01:00:00,0.249,0.377,0.337 -2015-03-27 02:00:00,0.251,0.377,0.337 -2015-03-27 03:00:00,0.251,0.375,0.33899999999999997 -2015-03-27 04:00:00,0.252,0.375,0.33899999999999997 -2015-03-27 05:00:00,0.25,0.374,0.33899999999999997 -2015-03-27 06:00:00,0.251,0.373,0.33799999999999997 -2015-03-27 07:00:00,0.25,0.373,0.33799999999999997 -2015-03-27 08:00:00,0.25,0.37200000000000005,0.33799999999999997 -2015-03-27 09:00:00,0.248,0.37,0.337 -2015-03-27 10:00:00,0.248,0.366,0.337 -2015-03-27 11:00:00,0.248,0.37200000000000005,0.337 -2015-03-27 12:00:00,0.248,0.374,0.337 -2015-03-27 13:00:00,0.248,0.374,0.337 -2015-03-27 14:00:00,0.249,0.376,0.337 -2015-03-27 15:00:00,0.249,0.377,0.337 -2015-03-27 16:00:00,0.248,0.375,0.337 -2015-03-27 17:00:00,0.248,0.377,0.336 -2015-03-27 18:00:00,0.248,0.377,0.336 -2015-03-27 19:00:00,0.248,0.375,0.336 -2015-03-27 20:00:00,0.248,0.375,0.336 -2015-03-27 21:00:00,0.248,0.373,0.336 -2015-03-27 22:00:00,0.248,0.373,0.336 -2015-03-27 23:00:00,0.248,0.37200000000000005,0.336 -2015-03-28 00:00:00,0.248,0.37200000000000005,0.336 -2015-03-28 01:00:00,0.248,0.37200000000000005,0.336 -2015-03-28 02:00:00,0.248,0.37200000000000005,0.336 -2015-03-28 03:00:00,0.248,0.37200000000000005,0.336 -2015-03-28 04:00:00,0.248,0.37200000000000005,0.336 -2015-03-28 05:00:00,0.248,0.371,0.336 -2015-03-28 06:00:00,0.247,0.37,0.336 -2015-03-28 07:00:00,0.248,0.369,0.336 -2015-03-28 08:00:00,0.247,0.368,0.336 -2015-03-28 09:00:00,0.247,0.368,0.336 -2015-03-28 10:00:00,0.247,0.36700000000000005,0.336 -2015-03-28 11:00:00,0.247,0.366,0.336 -2015-03-28 12:00:00,0.247,0.366,0.336 -2015-03-28 13:00:00,0.248,0.366,0.336 -2015-03-28 14:00:00,0.248,0.366,0.336 -2015-03-28 15:00:00,0.248,0.365,0.336 -2015-03-28 16:00:00,0.248,0.365,0.336 -2015-03-28 17:00:00,0.248,0.365,0.336 -2015-03-28 18:00:00,0.248,0.365,0.336 -2015-03-28 19:00:00,0.248,0.365,0.336 -2015-03-28 20:00:00,0.248,0.365,0.336 -2015-03-28 21:00:00,0.248,0.366,0.337 -2015-03-28 22:00:00,0.248,0.365,0.336 -2015-03-28 23:00:00,0.248,0.365,0.336 -2015-03-29 00:00:00,0.249,0.365,0.33799999999999997 -2015-03-29 01:00:00,0.249,0.365,0.341 -2015-03-29 02:00:00,0.248,0.365,0.342 -2015-03-29 03:00:00,0.249,0.365,0.341 -2015-03-29 04:00:00,0.249,0.365,0.34 -2015-03-29 05:00:00,0.249,0.364,0.34 -2015-03-29 06:00:00,0.249,0.363,0.34 -2015-03-29 07:00:00,0.249,0.363,0.33799999999999997 -2015-03-29 08:00:00,0.248,0.363,0.33799999999999997 -2015-03-29 09:00:00,0.248,0.36200000000000004,0.337 -2015-03-29 10:00:00,0.248,0.361,0.337 -2015-03-29 11:00:00,0.249,0.361,0.33799999999999997 -2015-03-29 12:00:00,0.25,0.361,0.341 -2015-03-29 13:00:00,0.248,0.36,0.344 -2015-03-29 14:00:00,0.245,0.36,0.345 -2015-03-29 15:00:00,0.245,0.36,0.345 -2015-03-29 16:00:00,0.245,0.358,0.34600000000000003 -2015-03-29 17:00:00,0.249,0.358,0.34700000000000003 -2015-03-29 18:00:00,0.26,0.358,0.35100000000000003 -2015-03-29 19:00:00,0.262,0.358,0.35200000000000004 -2015-03-29 20:00:00,0.265,0.358,0.349 -2015-03-29 21:00:00,0.259,0.358,0.353 -2015-03-29 22:00:00,0.263,0.358,0.365 -2015-03-29 23:00:00,0.261,0.359,0.379 -2015-03-30 00:00:00,0.264,0.358,0.38299999999999995 -2015-03-30 01:00:00,0.267,0.358,0.38299999999999995 -2015-03-30 02:00:00,0.266,0.358,0.38299999999999995 -2015-03-30 03:00:00,0.265,0.358,0.38299999999999995 -2015-03-30 04:00:00,0.265,0.35700000000000004,0.38299999999999995 -2015-03-30 05:00:00,0.264,0.35600000000000004,0.38299999999999995 -2015-03-30 06:00:00,0.264,0.35600000000000004,0.382 -2015-03-30 07:00:00,0.263,0.35600000000000004,0.382 -2015-03-30 08:00:00,0.263,0.355,0.382 -2015-03-30 09:00:00,0.263,0.355,0.382 -2015-03-30 10:00:00,0.26,0.355,0.38299999999999995 -2015-03-30 11:00:00,0.262,0.355,0.384 -2015-03-30 12:00:00,0.262,0.354,0.382 -2015-03-30 13:00:00,0.262,0.353,0.382 -2015-03-30 14:00:00,0.259,0.353,0.384 -2015-03-30 15:00:00,0.258,0.353,0.385 -2015-03-30 16:00:00,0.261,0.353,0.38299999999999995 -2015-03-30 17:00:00,0.261,0.353,0.38299999999999995 -2015-03-30 18:00:00,0.261,0.353,0.382 -2015-03-30 19:00:00,0.26,0.353,0.37799999999999995 -2015-03-30 20:00:00,0.26,0.353,0.373 -2015-03-30 21:00:00,0.259,0.353,0.369 -2015-03-30 22:00:00,0.259,0.353,0.364 -2015-03-30 23:00:00,0.259,0.353,0.364 -2015-03-31 00:00:00,0.259,0.353,0.363 -2015-03-31 01:00:00,0.258,0.353,0.366 -2015-03-31 02:00:00,0.254,0.353,0.36700000000000005 -2015-03-31 03:00:00,0.254,0.353,0.366 -2015-03-31 04:00:00,0.255,0.353,0.366 -2015-03-31 05:00:00,0.254,0.353,0.366 -2015-03-31 06:00:00,0.259,0.35100000000000003,0.366 -2015-03-31 07:00:00,0.26,0.35100000000000003,0.368 -2015-03-31 08:00:00,0.263,0.35100000000000003,0.373 -2015-03-31 09:00:00,0.267,0.35100000000000003,0.377 -2015-03-31 10:00:00,0.266,0.35100000000000003,0.37799999999999995 -2015-03-31 11:00:00,0.26899999999999996,0.35100000000000003,0.384 -2015-03-31 12:00:00,0.26899999999999996,0.35,0.386 -2015-03-31 13:00:00,0.268,0.349,0.386 -2015-03-31 14:00:00,0.26899999999999996,0.349,0.387 -2015-03-31 15:00:00,0.26899999999999996,0.349,0.387 -2015-03-31 16:00:00,0.268,0.349,0.387 -2015-03-31 17:00:00,0.267,0.349,0.387 -2015-03-31 18:00:00,0.267,0.349,0.391 -2015-03-31 19:00:00,0.266,0.348,0.391 -2015-03-31 20:00:00,0.264,0.348,0.391 -2015-03-31 21:00:00,0.257,0.349,0.391 -2015-03-31 22:00:00,0.257,0.349,0.391 -2015-03-31 23:00:00,0.261,0.349,0.391 -2015-04-01 00:00:00,0.265,0.349,0.391 -2015-04-01 01:00:00,0.265,0.349,0.391 -2015-04-01 02:00:00,0.265,0.349,0.391 -2015-04-01 03:00:00,0.261,0.349,0.391 -2015-04-01 04:00:00,0.256,0.349,0.391 -2015-04-01 05:00:00,0.255,0.349,0.391 -2015-04-01 06:00:00,0.256,0.349,0.391 -2015-04-01 07:00:00,0.259,0.349,0.391 -2015-04-01 08:00:00,0.264,0.349,0.391 -2015-04-01 09:00:00,0.266,0.349,0.391 -2015-04-01 10:00:00,0.265,0.349,0.391 -2015-04-01 11:00:00,0.265,0.348,0.391 -2015-04-01 12:00:00,0.265,0.34700000000000003,0.391 -2015-04-01 13:00:00,0.266,0.34600000000000003,0.39 -2015-04-01 14:00:00,0.259,0.348,0.391 -2015-04-01 15:00:00,0.262,0.348,0.391 -2015-04-01 16:00:00,0.266,0.348,0.39 -2015-04-01 17:00:00,0.264,0.348,0.391 -2015-04-01 18:00:00,0.258,0.348,0.391 -2015-04-01 19:00:00,0.26,0.349,0.391 -2015-04-01 20:00:00,0.259,0.349,0.391 -2015-04-01 21:00:00,0.261,0.349,0.391 -2015-04-01 22:00:00,0.264,0.349,0.391 -2015-04-01 23:00:00,0.265,0.348,0.391 -2015-04-02 00:00:00,0.265,0.349,0.39 -2015-04-02 01:00:00,0.264,0.348,0.39 -2015-04-02 02:00:00,0.264,0.348,0.39 -2015-04-02 03:00:00,0.263,0.348,0.39 -2015-04-02 04:00:00,0.263,0.348,0.39 -2015-04-02 05:00:00,0.262,0.348,0.391 -2015-04-02 06:00:00,0.261,0.348,0.391 -2015-04-02 07:00:00,0.258,0.348,0.392 -2015-04-02 08:00:00,0.263,0.348,0.391 -2015-04-02 09:00:00,0.264,0.348,0.391 -2015-04-02 10:00:00,0.264,0.348,0.391 -2015-04-02 11:00:00,0.265,0.348,0.392 -2015-04-02 12:00:00,0.265,0.348,0.391 -2015-04-02 13:00:00,0.264,0.34600000000000003,0.391 -2015-04-02 14:00:00,0.267,0.34600000000000003,0.391 -2015-04-02 15:00:00,0.266,0.34600000000000003,0.391 -2015-04-02 16:00:00,0.265,0.34600000000000003,0.391 -2015-04-02 17:00:00,0.265,0.34600000000000003,0.391 -2015-04-02 18:00:00,0.264,0.34600000000000003,0.391 -2015-04-02 19:00:00,0.264,0.34600000000000003,0.391 -2015-04-02 20:00:00,0.263,0.34600000000000003,0.391 -2015-04-02 21:00:00,0.262,0.34600000000000003,0.391 -2015-04-02 22:00:00,0.262,0.34600000000000003,0.391 -2015-04-02 23:00:00,0.261,0.34600000000000003,0.391 -2015-04-03 00:00:00,0.261,0.34700000000000003,0.391 -2015-04-03 01:00:00,0.261,0.34700000000000003,0.391 -2015-04-03 02:00:00,0.26,0.34700000000000003,0.391 -2015-04-03 03:00:00,0.26,0.34700000000000003,0.391 -2015-04-03 04:00:00,0.26,0.34600000000000003,0.391 -2015-04-03 05:00:00,0.259,0.34600000000000003,0.391 -2015-04-03 06:00:00,0.259,0.34600000000000003,0.391 -2015-04-03 07:00:00,0.261,0.34600000000000003,0.391 -2015-04-03 08:00:00,0.262,0.34600000000000003,0.391 -2015-04-03 09:00:00,0.262,0.34600000000000003,0.391 -2015-04-03 10:00:00,0.259,0.34600000000000003,0.391 -2015-04-03 11:00:00,0.258,0.34600000000000003,0.391 -2015-04-03 12:00:00,0.258,0.344,0.391 -2015-04-03 13:00:00,0.258,0.344,0.391 -2015-04-03 14:00:00,0.259,0.344,0.389 -2015-04-03 15:00:00,0.259,0.344,0.38799999999999996 -2015-04-03 16:00:00,0.259,0.344,0.38799999999999996 -2015-04-03 17:00:00,0.259,0.344,0.38799999999999996 -2015-04-03 18:00:00,0.259,0.344,0.387 -2015-04-03 19:00:00,0.259,0.344,0.387 -2015-04-03 20:00:00,0.259,0.344,0.387 -2015-04-03 21:00:00,0.258,0.344,0.386 -2015-04-03 22:00:00,0.258,0.345,0.385 -2015-04-03 23:00:00,0.258,0.34600000000000003,0.385 -2015-04-04 00:00:00,0.258,0.34600000000000003,0.385 -2015-04-04 01:00:00,0.258,0.34600000000000003,0.385 -2015-04-04 02:00:00,0.258,0.34600000000000003,0.384 -2015-04-04 03:00:00,0.258,0.34600000000000003,0.384 -2015-04-04 04:00:00,0.258,0.34600000000000003,0.38 -2015-04-04 05:00:00,0.257,0.34600000000000003,0.37799999999999995 -2015-04-04 06:00:00,0.257,0.34600000000000003,0.37799999999999995 -2015-04-04 07:00:00,0.257,0.34600000000000003,0.377 -2015-04-04 08:00:00,0.257,0.34600000000000003,0.376 -2015-04-04 09:00:00,0.257,0.345,0.376 -2015-04-04 10:00:00,0.257,0.344,0.375 -2015-04-04 11:00:00,0.257,0.344,0.375 -2015-04-04 12:00:00,0.257,0.344,0.375 -2015-04-04 13:00:00,0.257,0.34299999999999997,0.374 -2015-04-04 14:00:00,0.257,0.34299999999999997,0.374 -2015-04-04 15:00:00,0.257,0.34299999999999997,0.374 -2015-04-04 16:00:00,0.257,0.34299999999999997,0.373 -2015-04-04 17:00:00,0.257,0.34299999999999997,0.373 -2015-04-04 18:00:00,0.257,0.34299999999999997,0.373 -2015-04-04 19:00:00,0.257,0.34299999999999997,0.373 -2015-04-04 20:00:00,0.257,0.34299999999999997,0.373 -2015-04-04 21:00:00,0.256,0.34299999999999997,0.37200000000000005 -2015-04-04 22:00:00,0.256,0.34299999999999997,0.37200000000000005 -2015-04-04 23:00:00,0.256,0.344,0.37200000000000005 -2015-04-05 00:00:00,0.255,0.344,0.37200000000000005 -2015-04-05 01:00:00,0.255,0.344,0.37200000000000005 -2015-04-05 02:00:00,0.255,0.344,0.37200000000000005 -2015-04-05 03:00:00,0.255,0.344,0.37200000000000005 -2015-04-05 04:00:00,0.255,0.34299999999999997,0.37200000000000005 -2015-04-05 05:00:00,0.255,0.34299999999999997,0.37200000000000005 -2015-04-05 06:00:00,0.255,0.344,0.371 -2015-04-05 07:00:00,0.254,0.344,0.371 -2015-04-05 08:00:00,0.254,0.344,0.371 -2015-04-05 09:00:00,0.255,0.34299999999999997,0.37200000000000005 -2015-04-05 10:00:00,0.254,0.34299999999999997,0.371 -2015-04-05 11:00:00,0.254,0.34299999999999997,0.371 -2015-04-05 12:00:00,0.254,0.34299999999999997,0.371 -2015-04-05 13:00:00,0.255,0.342,0.371 -2015-04-05 14:00:00,0.255,0.341,0.371 -2015-04-05 15:00:00,0.255,0.341,0.371 -2015-04-05 16:00:00,0.255,0.341,0.371 -2015-04-05 17:00:00,0.255,0.341,0.371 -2015-04-05 18:00:00,0.255,0.341,0.369 -2015-04-05 19:00:00,0.255,0.341,0.361 -2015-04-05 20:00:00,0.255,0.341,0.358 -2015-04-05 21:00:00,0.255,0.341,0.358 -2015-04-05 22:00:00,0.254,0.341,0.358 -2015-04-05 23:00:00,0.254,0.341,0.35700000000000004 -2015-04-06 00:00:00,0.254,0.341,0.35700000000000004 -2015-04-06 01:00:00,0.254,0.341,0.35700000000000004 -2015-04-06 02:00:00,0.254,0.341,0.35700000000000004 -2015-04-06 03:00:00,0.254,0.341,0.35700000000000004 -2015-04-06 04:00:00,0.253,0.341,0.35700000000000004 -2015-04-06 05:00:00,0.253,0.341,0.35700000000000004 -2015-04-06 06:00:00,0.253,0.341,0.35700000000000004 -2015-04-06 07:00:00,0.253,0.341,0.35700000000000004 -2015-04-06 08:00:00,0.253,0.341,0.35700000000000004 -2015-04-06 09:00:00,0.253,0.341,0.35700000000000004 -2015-04-06 10:00:00,0.253,0.341,0.35700000000000004 -2015-04-06 11:00:00,0.253,0.341,0.35600000000000004 -2015-04-06 12:00:00,0.253,0.341,0.35600000000000004 -2015-04-06 13:00:00,0.253,0.341,0.35600000000000004 -2015-04-06 14:00:00,0.253,0.341,0.35600000000000004 -2015-04-06 15:00:00,0.253,0.34,0.35600000000000004 -2015-04-06 16:00:00,0.253,0.34,0.35600000000000004 -2015-04-06 17:00:00,0.254,0.34,0.35600000000000004 -2015-04-06 18:00:00,0.254,0.34,0.35600000000000004 -2015-04-06 19:00:00,0.254,0.34,0.35600000000000004 -2015-04-06 20:00:00,0.253,0.34,0.35600000000000004 -2015-04-06 21:00:00,0.253,0.34,0.35600000000000004 -2015-04-06 22:00:00,0.253,0.34,0.35600000000000004 -2015-04-06 23:00:00,0.253,0.341,0.35600000000000004 -2015-04-07 00:00:00,0.253,0.341,0.355 -2015-04-07 01:00:00,0.253,0.341,0.355 -2015-04-07 02:00:00,0.253,0.341,0.355 -2015-04-07 03:00:00,0.252,0.341,0.355 -2015-04-07 04:00:00,0.252,0.341,0.355 -2015-04-07 05:00:00,0.252,0.34,0.355 -2015-04-07 06:00:00,0.252,0.34,0.355 -2015-04-07 07:00:00,0.252,0.33899999999999997,0.355 -2015-04-07 08:00:00,0.252,0.33899999999999997,0.355 -2015-04-07 09:00:00,0.252,0.33899999999999997,0.35700000000000004 -2015-04-07 10:00:00,0.252,0.33899999999999997,0.35600000000000004 -2015-04-07 11:00:00,0.252,0.33899999999999997,0.355 -2015-04-07 12:00:00,0.252,0.33899999999999997,0.355 -2015-04-07 13:00:00,0.252,0.33899999999999997,0.355 -2015-04-07 14:00:00,0.252,0.33799999999999997,0.355 -2015-04-07 15:00:00,0.253,0.33799999999999997,0.354 -2015-04-07 16:00:00,0.253,0.33799999999999997,0.354 -2015-04-07 17:00:00,0.253,0.33799999999999997,0.354 -2015-04-07 18:00:00,0.253,0.33799999999999997,0.354 -2015-04-07 19:00:00,0.253,0.33799999999999997,0.354 -2015-04-07 20:00:00,0.253,0.33799999999999997,0.354 -2015-04-07 21:00:00,0.252,0.33799999999999997,0.354 -2015-04-07 22:00:00,0.252,0.33799999999999997,0.354 -2015-04-07 23:00:00,0.252,0.33899999999999997,0.354 -2015-04-08 00:00:00,0.252,0.33899999999999997,0.354 -2015-04-08 01:00:00,0.252,0.33899999999999997,0.354 -2015-04-08 02:00:00,0.251,0.33899999999999997,0.354 -2015-04-08 03:00:00,0.252,0.33899999999999997,0.354 -2015-04-08 04:00:00,0.251,0.33899999999999997,0.354 -2015-04-08 05:00:00,0.251,0.33799999999999997,0.354 -2015-04-08 06:00:00,0.251,0.33799999999999997,0.354 -2015-04-08 07:00:00,0.251,0.33799999999999997,0.354 -2015-04-08 08:00:00,0.251,0.33799999999999997,0.354 -2015-04-08 09:00:00,0.251,0.33799999999999997,0.353 -2015-04-08 10:00:00,0.251,0.33799999999999997,0.353 -2015-04-08 11:00:00,0.251,0.33799999999999997,0.353 -2015-04-08 12:00:00,0.251,0.33799999999999997,0.353 -2015-04-08 13:00:00,0.251,0.33799999999999997,0.353 -2015-04-08 14:00:00,0.252,0.33799999999999997,0.353 -2015-04-08 15:00:00,0.252,0.33799999999999997,0.353 -2015-04-08 16:00:00,0.252,0.337,0.353 -2015-04-08 17:00:00,0.252,0.336,0.353 -2015-04-08 18:00:00,0.252,0.336,0.353 -2015-04-08 19:00:00,0.252,0.336,0.353 -2015-04-08 20:00:00,0.252,0.336,0.353 -2015-04-08 21:00:00,0.252,0.336,0.353 -2015-04-08 22:00:00,0.252,0.337,0.353 -2015-04-08 23:00:00,0.251,0.33799999999999997,0.353 -2015-04-09 00:00:00,0.251,0.33799999999999997,0.35 -2015-04-09 01:00:00,0.251,0.33799999999999997,0.348 -2015-04-09 02:00:00,0.251,0.33799999999999997,0.348 -2015-04-09 03:00:00,0.251,0.337,0.348 -2015-04-09 04:00:00,0.251,0.337,0.348 -2015-04-09 05:00:00,0.251,0.337,0.34700000000000003 -2015-04-09 06:00:00,0.251,0.336,0.34700000000000003 -2015-04-09 07:00:00,0.25,0.336,0.34700000000000003 -2015-04-09 08:00:00,0.251,0.336,0.348 -2015-04-09 09:00:00,0.251,0.336,0.348 -2015-04-09 10:00:00,0.251,0.336,0.348 -2015-04-09 11:00:00,0.25,0.336,0.34700000000000003 -2015-04-09 12:00:00,0.251,0.336,0.34700000000000003 -2015-04-09 13:00:00,0.251,0.336,0.34700000000000003 -2015-04-09 14:00:00,0.251,0.33399999999999996,0.34700000000000003 -2015-04-09 15:00:00,0.251,0.33399999999999996,0.34700000000000003 -2015-04-09 16:00:00,0.252,0.33399999999999996,0.34700000000000003 -2015-04-09 17:00:00,0.252,0.33399999999999996,0.34700000000000003 -2015-04-09 18:00:00,0.252,0.33399999999999996,0.34700000000000003 -2015-04-09 19:00:00,0.252,0.33399999999999996,0.34600000000000003 -2015-04-09 20:00:00,0.252,0.33399999999999996,0.34600000000000003 -2015-04-09 21:00:00,0.252,0.33399999999999996,0.34600000000000003 -2015-04-09 22:00:00,0.251,0.33399999999999996,0.34600000000000003 -2015-04-09 23:00:00,0.251,0.336,0.34600000000000003 -2015-04-10 00:00:00,0.251,0.336,0.34600000000000003 -2015-04-10 01:00:00,0.251,0.336,0.34600000000000003 -2015-04-10 02:00:00,0.251,0.336,0.34600000000000003 -2015-04-10 03:00:00,0.251,0.336,0.34600000000000003 -2015-04-10 04:00:00,0.251,0.336,0.34600000000000003 -2015-04-10 05:00:00,0.25,0.335,0.34600000000000003 -2015-04-10 06:00:00,0.25,0.335,0.34600000000000003 -2015-04-10 07:00:00,0.25,0.33399999999999996,0.34600000000000003 -2015-04-10 08:00:00,0.25,0.33399999999999996,0.34700000000000003 -2015-04-10 09:00:00,0.25,0.33399999999999996,0.34600000000000003 -2015-04-10 10:00:00,0.25,0.33399999999999996,0.34600000000000003 -2015-04-10 11:00:00,0.25,0.33399999999999996,0.34600000000000003 -2015-04-10 12:00:00,0.25,0.33399999999999996,0.34600000000000003 -2015-04-10 13:00:00,0.251,0.33399999999999996,0.34600000000000003 -2015-04-10 14:00:00,0.251,0.33399999999999996,0.34600000000000003 -2015-04-10 15:00:00,0.251,0.33299999999999996,0.34600000000000003 -2015-04-10 16:00:00,0.251,0.332,0.34600000000000003 -2015-04-10 17:00:00,0.251,0.332,0.34600000000000003 -2015-04-10 18:00:00,0.252,0.332,0.345 -2015-04-10 19:00:00,0.251,0.332,0.345 -2015-04-10 20:00:00,0.251,0.332,0.345 -2015-04-10 21:00:00,0.251,0.332,0.345 -2015-04-10 22:00:00,0.251,0.33399999999999996,0.345 -2015-04-10 23:00:00,0.251,0.33299999999999996,0.344 -2015-04-11 00:00:00,0.25,0.33399999999999996,0.344 -2015-04-11 01:00:00,0.25,0.33299999999999996,0.344 -2015-04-11 02:00:00,0.25,0.33299999999999996,0.344 -2015-04-11 03:00:00,0.25,0.33299999999999996,0.344 -2015-04-11 04:00:00,0.25,0.332,0.344 -2015-04-11 05:00:00,0.25,0.331,0.344 -2015-04-11 06:00:00,0.25,0.331,0.344 -2015-04-11 07:00:00,0.249,0.331,0.344 -2015-04-11 08:00:00,0.249,0.331,0.344 -2015-04-11 09:00:00,0.249,0.331,0.344 -2015-04-11 10:00:00,0.249,0.331,0.344 -2015-04-11 11:00:00,0.25,0.331,0.344 -2015-04-11 12:00:00,0.25,0.331,0.344 -2015-04-11 13:00:00,0.25,0.331,0.344 -2015-04-11 14:00:00,0.25,0.331,0.344 -2015-04-11 15:00:00,0.25,0.331,0.344 -2015-04-11 16:00:00,0.25,0.331,0.344 -2015-04-11 17:00:00,0.25,0.331,0.344 -2015-04-11 18:00:00,0.25,0.331,0.344 -2015-04-11 19:00:00,0.25,0.331,0.344 -2015-04-11 20:00:00,0.25,0.331,0.344 -2015-04-11 21:00:00,0.25,0.331,0.344 -2015-04-11 22:00:00,0.249,0.331,0.34700000000000003 -2015-04-11 23:00:00,0.249,0.331,0.348 -2015-04-12 00:00:00,0.25,0.331,0.34700000000000003 -2015-04-12 01:00:00,0.251,0.331,0.345 -2015-04-12 02:00:00,0.25,0.331,0.345 -2015-04-12 03:00:00,0.25,0.331,0.344 -2015-04-12 04:00:00,0.25,0.331,0.344 -2015-04-12 05:00:00,0.249,0.331,0.344 -2015-04-12 06:00:00,0.249,0.331,0.344 -2015-04-12 07:00:00,0.249,0.33,0.344 -2015-04-12 08:00:00,0.249,0.33,0.344 -2015-04-12 09:00:00,0.249,0.32899999999999996,0.344 -2015-04-12 10:00:00,0.249,0.32899999999999996,0.34299999999999997 -2015-04-12 11:00:00,0.249,0.32899999999999996,0.34299999999999997 -2015-04-12 12:00:00,0.249,0.32899999999999996,0.34299999999999997 -2015-04-12 13:00:00,0.249,0.32899999999999996,0.34299999999999997 -2015-04-12 14:00:00,0.249,0.33,0.34299999999999997 -2015-04-12 15:00:00,0.25,0.32899999999999996,0.34299999999999997 -2015-04-12 16:00:00,0.25,0.32899999999999996,0.34299999999999997 -2015-04-12 17:00:00,0.25,0.32899999999999996,0.34299999999999997 -2015-04-12 18:00:00,0.25,0.32899999999999996,0.34299999999999997 -2015-04-12 19:00:00,0.25,0.32899999999999996,0.34299999999999997 -2015-04-12 20:00:00,0.249,0.32899999999999996,0.342 -2015-04-12 21:00:00,0.249,0.32899999999999996,0.342 -2015-04-12 22:00:00,0.249,0.32899999999999996,0.342 -2015-04-12 23:00:00,0.249,0.32899999999999996,0.342 -2015-04-13 00:00:00,0.249,0.32899999999999996,0.342 -2015-04-13 01:00:00,0.249,0.32899999999999996,0.342 -2015-04-13 02:00:00,0.248,0.32899999999999996,0.342 -2015-04-13 03:00:00,0.248,0.32899999999999996,0.342 -2015-04-13 04:00:00,0.248,0.32899999999999996,0.342 -2015-04-13 05:00:00,0.248,0.32899999999999996,0.342 -2015-04-13 06:00:00,0.248,0.32899999999999996,0.342 -2015-04-13 07:00:00,0.248,0.32799999999999996,0.342 -2015-04-13 08:00:00,0.248,0.327,0.342 -2015-04-13 09:00:00,0.248,0.327,0.342 -2015-04-13 10:00:00,0.248,0.327,0.342 -2015-04-13 11:00:00,0.248,0.327,0.342 -2015-04-13 12:00:00,0.248,0.327,0.342 -2015-04-13 13:00:00,0.248,0.327,0.342 -2015-04-13 14:00:00,0.248,0.327,0.342 -2015-04-13 15:00:00,0.248,0.327,0.342 -2015-04-13 16:00:00,0.249,0.327,0.342 -2015-04-13 17:00:00,0.249,0.327,0.342 -2015-04-13 18:00:00,0.248,0.327,0.342 -2015-04-13 19:00:00,0.248,0.326,0.342 -2015-04-13 20:00:00,0.248,0.326,0.341 -2015-04-13 21:00:00,0.248,0.327,0.341 -2015-04-13 22:00:00,0.248,0.327,0.341 -2015-04-13 23:00:00,0.248,0.32799999999999996,0.341 -2015-04-14 00:00:00,0.247,0.327,0.341 -2015-04-14 01:00:00,0.247,0.327,0.341 -2015-04-14 02:00:00,0.247,0.327,0.341 -2015-04-14 03:00:00,0.24600000000000002,0.327,0.341 -2015-04-14 04:00:00,0.24600000000000002,0.327,0.341 -2015-04-14 05:00:00,0.24600000000000002,0.327,0.341 -2015-04-14 06:00:00,0.24600000000000002,0.327,0.341 -2015-04-14 07:00:00,0.24600000000000002,0.327,0.341 -2015-04-14 08:00:00,0.24600000000000002,0.327,0.341 -2015-04-14 09:00:00,0.24600000000000002,0.326,0.341 -2015-04-14 10:00:00,0.24600000000000002,0.326,0.341 -2015-04-14 11:00:00,0.24600000000000002,0.326,0.341 -2015-04-14 12:00:00,0.24600000000000002,0.326,0.341 -2015-04-14 13:00:00,0.24600000000000002,0.326,0.341 -2015-04-14 14:00:00,0.247,0.326,0.341 -2015-04-14 15:00:00,0.247,0.326,0.341 -2015-04-14 16:00:00,0.248,0.326,0.341 -2015-04-14 17:00:00,0.247,0.326,0.341 -2015-04-14 18:00:00,0.248,0.326,0.341 -2015-04-14 19:00:00,0.247,0.326,0.341 -2015-04-14 20:00:00,0.247,0.326,0.341 -2015-04-14 21:00:00,0.251,0.326,0.341 -2015-04-14 22:00:00,0.252,0.326,0.341 -2015-04-14 23:00:00,0.251,0.327,0.341 -2015-04-15 00:00:00,0.25,0.327,0.341 -2015-04-15 01:00:00,0.252,0.327,0.341 -2015-04-15 02:00:00,0.251,0.327,0.341 -2015-04-15 03:00:00,0.25,0.327,0.341 -2015-04-15 04:00:00,0.248,0.327,0.341 -2015-04-15 05:00:00,0.24600000000000002,0.326,0.341 -2015-04-15 06:00:00,0.245,0.326,0.341 -2015-04-15 07:00:00,0.245,0.326,0.341 -2015-04-15 08:00:00,0.245,0.326,0.341 -2015-04-15 09:00:00,0.245,0.326,0.341 -2015-04-15 10:00:00,0.245,0.326,0.341 -2015-04-15 11:00:00,0.245,0.326,0.341 -2015-04-15 12:00:00,0.24600000000000002,0.326,0.341 -2015-04-15 13:00:00,0.24600000000000002,0.326,0.341 -2015-04-15 14:00:00,0.24600000000000002,0.325,0.341 -2015-04-15 15:00:00,0.24600000000000002,0.324,0.341 -2015-04-15 16:00:00,0.24600000000000002,0.324,0.341 -2015-04-15 17:00:00,0.24600000000000002,0.324,0.341 -2015-04-15 18:00:00,0.24600000000000002,0.324,0.341 -2015-04-15 19:00:00,0.24600000000000002,0.324,0.341 -2015-04-15 20:00:00,0.24600000000000002,0.324,0.34 -2015-04-15 21:00:00,0.245,0.324,0.34 -2015-04-15 22:00:00,0.245,0.324,0.34 -2015-04-15 23:00:00,0.245,0.326,0.34 -2015-04-16 00:00:00,0.245,0.327,0.34 -2015-04-16 01:00:00,0.245,0.327,0.34 -2015-04-16 02:00:00,0.245,0.326,0.34 -2015-04-16 03:00:00,0.244,0.326,0.34 -2015-04-16 04:00:00,0.244,0.326,0.341 -2015-04-16 05:00:00,0.244,0.326,0.341 -2015-04-16 06:00:00,0.244,0.326,0.34 -2015-04-16 07:00:00,0.244,0.326,0.341 -2015-04-16 08:00:00,0.244,0.326,0.34 -2015-04-16 09:00:00,0.244,0.326,0.34 -2015-04-16 10:00:00,0.244,0.326,0.34 -2015-04-16 11:00:00,0.244,0.326,0.34 -2015-04-16 12:00:00,0.244,0.324,0.34 -2015-04-16 13:00:00,0.244,0.324,0.34 -2015-04-16 14:00:00,0.244,0.324,0.34 -2015-04-16 15:00:00,0.244,0.32299999999999995,0.34 -2015-04-16 16:00:00,0.244,0.32299999999999995,0.34 -2015-04-16 17:00:00,0.245,0.322,0.34 -2015-04-16 18:00:00,0.244,0.322,0.34 -2015-04-16 19:00:00,0.244,0.322,0.34 -2015-04-16 20:00:00,0.244,0.322,0.34 -2015-04-16 21:00:00,0.244,0.322,0.34 -2015-04-16 22:00:00,0.244,0.324,0.33899999999999997 -2015-04-16 23:00:00,0.243,0.324,0.33899999999999997 -2015-04-17 00:00:00,0.243,0.324,0.33899999999999997 -2015-04-17 01:00:00,0.242,0.324,0.344 -2015-04-17 02:00:00,0.24,0.324,0.34600000000000003 -2015-04-17 03:00:00,0.24100000000000002,0.324,0.345 -2015-04-17 04:00:00,0.242,0.324,0.345 -2015-04-17 05:00:00,0.242,0.324,0.345 -2015-04-17 06:00:00,0.242,0.324,0.345 -2015-04-17 07:00:00,0.243,0.324,0.345 -2015-04-17 08:00:00,0.244,0.324,0.344 -2015-04-17 09:00:00,0.244,0.324,0.342 -2015-04-17 10:00:00,0.244,0.324,0.341 -2015-04-17 11:00:00,0.243,0.324,0.341 -2015-04-17 12:00:00,0.244,0.322,0.34 -2015-04-17 13:00:00,0.243,0.321,0.34 -2015-04-17 14:00:00,0.244,0.321,0.34 -2015-04-17 15:00:00,0.244,0.321,0.34 -2015-04-17 16:00:00,0.244,0.321,0.34 -2015-04-17 17:00:00,0.244,0.321,0.34 -2015-04-17 18:00:00,0.244,0.321,0.34 -2015-04-17 19:00:00,0.243,0.321,0.34 -2015-04-17 20:00:00,0.243,0.321,0.33899999999999997 -2015-04-17 21:00:00,0.243,0.321,0.34 -2015-04-17 22:00:00,0.243,0.321,0.34 -2015-04-17 23:00:00,0.243,0.321,0.33899999999999997 -2015-04-18 00:00:00,0.243,0.322,0.33899999999999997 -2015-04-18 01:00:00,0.243,0.322,0.33899999999999997 -2015-04-18 02:00:00,0.243,0.322,0.33899999999999997 -2015-04-18 03:00:00,0.242,0.322,0.33899999999999997 -2015-04-18 04:00:00,0.242,0.322,0.33899999999999997 -2015-04-18 05:00:00,0.242,0.322,0.33899999999999997 -2015-04-18 06:00:00,0.242,0.321,0.33899999999999997 -2015-04-18 07:00:00,0.242,0.321,0.33899999999999997 -2015-04-18 08:00:00,0.242,0.321,0.34 -2015-04-18 09:00:00,0.242,0.321,0.34 -2015-04-18 10:00:00,0.242,0.321,0.33899999999999997 -2015-04-18 11:00:00,0.242,0.321,0.33899999999999997 -2015-04-18 12:00:00,0.242,0.321,0.33899999999999997 -2015-04-18 13:00:00,0.242,0.321,0.33899999999999997 -2015-04-18 14:00:00,0.242,0.32,0.33899999999999997 -2015-04-18 15:00:00,0.242,0.319,0.33899999999999997 -2015-04-18 16:00:00,0.242,0.319,0.33899999999999997 -2015-04-18 17:00:00,0.242,0.319,0.33899999999999997 -2015-04-18 18:00:00,0.242,0.318,0.33899999999999997 -2015-04-18 19:00:00,0.242,0.317,0.33899999999999997 -2015-04-18 20:00:00,0.242,0.317,0.33799999999999997 -2015-04-18 21:00:00,0.242,0.318,0.33799999999999997 -2015-04-18 22:00:00,0.24100000000000002,0.319,0.33799999999999997 -2015-04-18 23:00:00,0.24100000000000002,0.32,0.33799999999999997 -2015-04-19 00:00:00,0.24100000000000002,0.321,0.33799999999999997 -2015-04-19 01:00:00,0.24100000000000002,0.321,0.33899999999999997 -2015-04-19 02:00:00,0.24100000000000002,0.321,0.33799999999999997 -2015-04-19 03:00:00,0.24,0.321,0.33799999999999997 -2015-04-19 04:00:00,0.24,0.321,0.33799999999999997 -2015-04-19 05:00:00,0.24,0.321,0.33799999999999997 -2015-04-19 06:00:00,0.24,0.321,0.33799999999999997 -2015-04-19 07:00:00,0.24,0.321,0.33799999999999997 -2015-04-19 08:00:00,0.24,0.321,0.33899999999999997 -2015-04-19 09:00:00,0.24100000000000002,0.321,0.34 -2015-04-19 10:00:00,0.242,0.32,0.33899999999999997 -2015-04-19 11:00:00,0.243,0.319,0.33799999999999997 -2015-04-19 12:00:00,0.243,0.319,0.33799999999999997 -2015-04-19 13:00:00,0.243,0.319,0.33799999999999997 -2015-04-19 14:00:00,0.243,0.318,0.33899999999999997 -2015-04-19 15:00:00,0.244,0.317,0.33899999999999997 -2015-04-19 16:00:00,0.244,0.319,0.33899999999999997 -2015-04-19 17:00:00,0.244,0.319,0.33899999999999997 -2015-04-19 18:00:00,0.244,0.319,0.33899999999999997 -2015-04-19 19:00:00,0.243,0.319,0.33799999999999997 -2015-04-19 20:00:00,0.243,0.319,0.33799999999999997 -2015-04-19 21:00:00,0.243,0.319,0.33799999999999997 -2015-04-19 22:00:00,0.243,0.319,0.33799999999999997 -2015-04-19 23:00:00,0.243,0.319,0.33799999999999997 -2015-04-20 00:00:00,0.243,0.319,0.33799999999999997 -2015-04-20 01:00:00,0.243,0.319,0.33799999999999997 -2015-04-20 02:00:00,0.243,0.319,0.33799999999999997 -2015-04-20 03:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 04:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 05:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 06:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 07:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 08:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 09:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 10:00:00,0.242,0.319,0.33799999999999997 -2015-04-20 11:00:00,0.242,0.318,0.33799999999999997 -2015-04-20 12:00:00,0.242,0.317,0.33799999999999997 -2015-04-20 13:00:00,0.242,0.317,0.33799999999999997 -2015-04-20 14:00:00,0.242,0.317,0.33799999999999997 -2015-04-20 15:00:00,0.242,0.317,0.33799999999999997 -2015-04-20 16:00:00,0.242,0.317,0.33799999999999997 -2015-04-20 17:00:00,0.242,0.317,0.33799999999999997 -2015-04-20 18:00:00,0.24100000000000002,0.317,0.33799999999999997 -2015-04-20 19:00:00,0.24100000000000002,0.316,0.33799999999999997 -2015-04-20 20:00:00,0.242,0.316,0.33799999999999997 -2015-04-20 21:00:00,0.24100000000000002,0.316,0.33799999999999997 -2015-04-20 22:00:00,0.24100000000000002,0.316,0.33799999999999997 -2015-04-20 23:00:00,0.24100000000000002,0.317,0.33799999999999997 -2015-04-21 00:00:00,0.24100000000000002,0.317,0.33799999999999997 -2015-04-21 01:00:00,0.24100000000000002,0.317,0.33799999999999997 -2015-04-21 02:00:00,0.24,0.317,0.33799999999999997 -2015-04-21 03:00:00,0.24,0.317,0.33799999999999997 -2015-04-21 04:00:00,0.24,0.317,0.33799999999999997 -2015-04-21 05:00:00,0.24,0.315,0.33799999999999997 -2015-04-21 06:00:00,0.24,0.314,0.33799999999999997 -2015-04-21 07:00:00,0.24,0.315,0.33799999999999997 -2015-04-21 08:00:00,0.24,0.317,0.33799999999999997 -2015-04-21 09:00:00,0.24,0.317,0.33799999999999997 -2015-04-21 10:00:00,0.24,0.315,0.33799999999999997 -2015-04-21 11:00:00,0.24,0.313,0.33799999999999997 -2015-04-21 12:00:00,0.24,0.315,0.33799999999999997 -2015-04-21 13:00:00,0.24,0.317,0.33799999999999997 -2015-04-21 14:00:00,0.24,0.316,0.33799999999999997 -2015-04-21 15:00:00,0.24,0.317,0.33799999999999997 -2015-04-21 16:00:00,0.24,0.313,0.33799999999999997 -2015-04-21 17:00:00,0.24,0.309,0.33799999999999997 -2015-04-21 18:00:00,0.24,0.309,0.33799999999999997 -2015-04-21 19:00:00,0.239,0.325,0.33799999999999997 -2015-04-21 20:00:00,0.239,0.349,0.337 -2015-04-21 21:00:00,0.239,0.35700000000000004,0.337 -2015-04-21 22:00:00,0.239,0.355,0.337 -2015-04-21 23:00:00,0.23800000000000002,0.358,0.337 -2015-04-22 00:00:00,0.23800000000000002,0.361,0.337 -2015-04-22 01:00:00,0.23800000000000002,0.363,0.337 -2015-04-22 02:00:00,0.23800000000000002,0.365,0.337 -2015-04-22 03:00:00,0.23800000000000002,0.364,0.337 -2015-04-22 04:00:00,0.23800000000000002,0.363,0.337 -2015-04-22 05:00:00,0.23800000000000002,0.361,0.337 -2015-04-22 06:00:00,0.23800000000000002,0.361,0.337 -2015-04-22 07:00:00,0.237,0.36,0.337 -2015-04-22 08:00:00,0.237,0.358,0.337 -2015-04-22 09:00:00,0.237,0.358,0.337 -2015-04-22 10:00:00,0.237,0.35600000000000004,0.337 -2015-04-22 11:00:00,0.237,0.355,0.337 -2015-04-22 12:00:00,0.237,0.353,0.337 -2015-04-22 13:00:00,0.237,0.35100000000000003,0.337 -2015-04-22 14:00:00,0.237,0.35100000000000003,0.337 -2015-04-22 15:00:00,0.237,0.349,0.337 -2015-04-22 16:00:00,0.237,0.348,0.337 -2015-04-22 17:00:00,0.237,0.348,0.337 -2015-04-22 18:00:00,0.237,0.348,0.337 -2015-04-22 19:00:00,0.23600000000000002,0.34700000000000003,0.337 -2015-04-22 20:00:00,0.23600000000000002,0.34600000000000003,0.337 -2015-04-22 21:00:00,0.23600000000000002,0.344,0.337 -2015-04-22 22:00:00,0.23600000000000002,0.344,0.337 -2015-04-22 23:00:00,0.23600000000000002,0.344,0.337 -2015-04-23 00:00:00,0.23600000000000002,0.34299999999999997,0.337 -2015-04-23 01:00:00,0.23600000000000002,0.34299999999999997,0.337 -2015-04-23 02:00:00,0.235,0.34299999999999997,0.337 -2015-04-23 03:00:00,0.23600000000000002,0.34299999999999997,0.337 -2015-04-23 04:00:00,0.235,0.34299999999999997,0.337 -2015-04-23 05:00:00,0.235,0.34299999999999997,0.337 -2015-04-23 06:00:00,0.235,0.341,0.337 -2015-04-23 07:00:00,0.235,0.341,0.337 -2015-04-23 08:00:00,0.23600000000000002,0.341,0.33799999999999997 -2015-04-23 09:00:00,0.23600000000000002,0.341,0.33799999999999997 -2015-04-23 10:00:00,0.235,0.34,0.337 -2015-04-23 11:00:00,0.23399999999999999,0.33799999999999997,0.337 -2015-04-23 12:00:00,0.23399999999999999,0.33799999999999997,0.337 -2015-04-23 13:00:00,0.23399999999999999,0.33799999999999997,0.337 -2015-04-23 14:00:00,0.23399999999999999,0.337,0.337 -2015-04-23 15:00:00,0.23399999999999999,0.336,0.337 -2015-04-23 16:00:00,0.23399999999999999,0.33399999999999996,0.337 -2015-04-23 17:00:00,0.23399999999999999,0.33299999999999996,0.337 -2015-04-23 18:00:00,0.23399999999999999,0.332,0.337 -2015-04-23 19:00:00,0.23399999999999999,0.332,0.337 -2015-04-23 20:00:00,0.23399999999999999,0.331,0.336 -2015-04-23 21:00:00,0.23399999999999999,0.331,0.336 -2015-04-23 22:00:00,0.23399999999999999,0.331,0.336 -2015-04-23 23:00:00,0.23399999999999999,0.332,0.336 -2015-04-24 00:00:00,0.233,0.332,0.336 -2015-04-24 01:00:00,0.233,0.332,0.336 -2015-04-24 02:00:00,0.233,0.332,0.336 -2015-04-24 03:00:00,0.233,0.332,0.336 -2015-04-24 04:00:00,0.233,0.332,0.336 -2015-04-24 05:00:00,0.233,0.332,0.336 -2015-04-24 06:00:00,0.233,0.332,0.336 -2015-04-24 07:00:00,0.23199999999999998,0.332,0.336 -2015-04-24 08:00:00,0.23199999999999998,0.332,0.337 -2015-04-24 09:00:00,0.233,0.331,0.337 -2015-04-24 10:00:00,0.23199999999999998,0.331,0.336 -2015-04-24 11:00:00,0.23199999999999998,0.331,0.336 -2015-04-24 12:00:00,0.23199999999999998,0.331,0.336 -2015-04-24 13:00:00,0.23199999999999998,0.33,0.336 -2015-04-24 14:00:00,0.23199999999999998,0.32799999999999996,0.336 -2015-04-24 15:00:00,0.23199999999999998,0.327,0.336 -2015-04-24 16:00:00,0.23199999999999998,0.327,0.337 -2015-04-24 17:00:00,0.23199999999999998,0.327,0.336 -2015-04-24 18:00:00,0.23199999999999998,0.326,0.336 -2015-04-24 19:00:00,0.23199999999999998,0.32299999999999995,0.336 -2015-04-24 20:00:00,0.23199999999999998,0.326,0.336 -2015-04-24 21:00:00,0.231,0.326,0.336 -2015-04-24 22:00:00,0.231,0.324,0.336 -2015-04-24 23:00:00,0.231,0.326,0.336 -2015-04-25 00:00:00,0.231,0.327,0.336 -2015-04-25 01:00:00,0.231,0.326,0.336 -2015-04-25 02:00:00,0.231,0.325,0.336 -2015-04-25 03:00:00,0.23,0.324,0.336 -2015-04-25 04:00:00,0.23,0.326,0.336 -2015-04-25 05:00:00,0.23,0.326,0.336 -2015-04-25 06:00:00,0.23,0.326,0.336 -2015-04-25 07:00:00,0.23,0.326,0.336 -2015-04-25 08:00:00,0.23,0.326,0.336 -2015-04-25 09:00:00,0.23,0.327,0.336 -2015-04-25 10:00:00,0.23,0.327,0.336 -2015-04-25 11:00:00,0.23,0.327,0.336 -2015-04-25 12:00:00,0.231,0.327,0.337 -2015-04-25 13:00:00,0.23,0.327,0.336 -2015-04-25 14:00:00,0.231,0.327,0.336 -2015-04-25 15:00:00,0.231,0.327,0.336 -2015-04-25 16:00:00,0.231,0.327,0.336 -2015-04-25 17:00:00,0.231,0.327,0.336 -2015-04-25 18:00:00,0.231,0.327,0.336 -2015-04-25 19:00:00,0.23199999999999998,0.327,0.341 -2015-04-25 20:00:00,0.23199999999999998,0.327,0.341 -2015-04-25 21:00:00,0.23199999999999998,0.327,0.341 -2015-04-25 22:00:00,0.23199999999999998,0.327,0.341 -2015-04-25 23:00:00,0.23199999999999998,0.327,0.341 -2015-04-26 00:00:00,0.23199999999999998,0.327,0.341 -2015-04-26 01:00:00,0.23199999999999998,0.327,0.341 -2015-04-26 02:00:00,0.231,0.327,0.341 -2015-04-26 03:00:00,0.231,0.327,0.341 -2015-04-26 04:00:00,0.231,0.327,0.342 -2015-04-26 05:00:00,0.23,0.327,0.342 -2015-04-26 06:00:00,0.23,0.327,0.342 -2015-04-26 07:00:00,0.23,0.327,0.342 -2015-04-26 08:00:00,0.231,0.327,0.341 -2015-04-26 09:00:00,0.231,0.327,0.33899999999999997 -2015-04-26 10:00:00,0.231,0.326,0.33799999999999997 -2015-04-26 11:00:00,0.23,0.326,0.337 -2015-04-26 12:00:00,0.231,0.326,0.337 -2015-04-26 13:00:00,0.231,0.32899999999999996,0.337 -2015-04-26 14:00:00,0.231,0.326,0.337 -2015-04-26 15:00:00,0.231,0.326,0.337 -2015-04-26 16:00:00,0.231,0.326,0.337 -2015-04-26 17:00:00,0.231,0.326,0.337 -2015-04-26 18:00:00,0.231,0.326,0.337 -2015-04-26 19:00:00,0.231,0.325,0.336 -2015-04-26 20:00:00,0.231,0.325,0.336 -2015-04-26 21:00:00,0.231,0.326,0.336 -2015-04-26 22:00:00,0.23,0.326,0.336 -2015-04-26 23:00:00,0.23,0.326,0.337 -2015-04-27 00:00:00,0.23,0.327,0.341 -2015-04-27 01:00:00,0.23,0.327,0.342 -2015-04-27 02:00:00,0.231,0.327,0.344 -2015-04-27 03:00:00,0.237,0.327,0.345 -2015-04-27 04:00:00,0.23600000000000002,0.327,0.344 -2015-04-27 05:00:00,0.23600000000000002,0.327,0.344 -2015-04-27 06:00:00,0.23600000000000002,0.327,0.344 -2015-04-27 07:00:00,0.235,0.327,0.345 -2015-04-27 08:00:00,0.23399999999999999,0.327,0.34600000000000003 -2015-04-27 09:00:00,0.233,0.327,0.345 -2015-04-27 10:00:00,0.235,0.327,0.344 -2015-04-27 11:00:00,0.23399999999999999,0.327,0.345 -2015-04-27 12:00:00,0.23399999999999999,0.326,0.344 -2015-04-27 13:00:00,0.23600000000000002,0.326,0.345 -2015-04-27 14:00:00,0.258,0.326,0.34700000000000003 -2015-04-27 15:00:00,0.262,0.324,0.35100000000000003 -2015-04-27 16:00:00,0.265,0.324,0.355 -2015-04-27 17:00:00,0.265,0.326,0.35600000000000004 -2015-04-27 18:00:00,0.262,0.326,0.35600000000000004 -2015-04-27 19:00:00,0.261,0.326,0.35600000000000004 -2015-04-27 20:00:00,0.26,0.321,0.35700000000000004 -2015-04-27 21:00:00,0.259,0.321,0.35700000000000004 -2015-04-27 22:00:00,0.259,0.322,0.35700000000000004 -2015-04-27 23:00:00,0.261,0.321,0.35700000000000004 -2015-04-28 00:00:00,0.262,0.321,0.35600000000000004 -2015-04-28 01:00:00,0.263,0.322,0.354 -2015-04-28 02:00:00,0.263,0.322,0.354 -2015-04-28 03:00:00,0.263,0.32299999999999995,0.354 -2015-04-28 04:00:00,0.263,0.32299999999999995,0.353 -2015-04-28 05:00:00,0.263,0.32299999999999995,0.353 -2015-04-28 06:00:00,0.262,0.322,0.35200000000000004 -2015-04-28 07:00:00,0.262,0.322,0.35200000000000004 -2015-04-28 08:00:00,0.262,0.322,0.35100000000000003 -2015-04-28 09:00:00,0.261,0.322,0.35100000000000003 -2015-04-28 10:00:00,0.261,0.32299999999999995,0.35 -2015-04-28 11:00:00,0.26,0.324,0.349 -2015-04-28 12:00:00,0.26,0.324,0.349 -2015-04-28 13:00:00,0.259,0.324,0.348 -2015-04-28 14:00:00,0.259,0.324,0.34700000000000003 -2015-04-28 15:00:00,0.258,0.324,0.34700000000000003 -2015-04-28 16:00:00,0.258,0.324,0.34600000000000003 -2015-04-28 17:00:00,0.258,0.324,0.34600000000000003 -2015-04-28 18:00:00,0.258,0.324,0.34600000000000003 -2015-04-28 19:00:00,0.257,0.324,0.345 -2015-04-28 20:00:00,0.257,0.324,0.345 -2015-04-28 21:00:00,0.257,0.324,0.345 -2015-04-28 22:00:00,0.257,0.324,0.345 -2015-04-28 23:00:00,0.256,0.326,0.345 -2015-04-29 00:00:00,0.256,0.326,0.344 -2015-04-29 01:00:00,0.256,0.326,0.344 -2015-04-29 02:00:00,0.256,0.326,0.344 -2015-04-29 03:00:00,0.256,0.326,0.344 -2015-04-29 04:00:00,0.255,0.326,0.34299999999999997 -2015-04-29 05:00:00,0.255,0.326,0.34299999999999997 -2015-04-29 06:00:00,0.255,0.326,0.34299999999999997 -2015-04-29 07:00:00,0.255,0.326,0.34299999999999997 -2015-04-29 08:00:00,0.255,0.326,0.344 -2015-04-29 09:00:00,0.255,0.326,0.344 -2015-04-29 10:00:00,0.255,0.326,0.34299999999999997 -2015-04-29 11:00:00,0.254,0.326,0.34299999999999997 -2015-04-29 12:00:00,0.254,0.326,0.342 -2015-04-29 13:00:00,0.254,0.326,0.342 -2015-04-29 14:00:00,0.254,0.326,0.342 -2015-04-29 15:00:00,0.254,0.326,0.342 -2015-04-29 16:00:00,0.254,0.324,0.342 -2015-04-29 17:00:00,0.254,0.324,0.342 -2015-04-29 18:00:00,0.254,0.324,0.342 -2015-04-29 19:00:00,0.254,0.324,0.342 -2015-04-29 20:00:00,0.254,0.324,0.342 -2015-04-29 21:00:00,0.254,0.324,0.342 -2015-04-29 22:00:00,0.254,0.324,0.341 -2015-04-29 23:00:00,0.254,0.326,0.341 -2015-04-30 00:00:00,0.254,0.326,0.341 -2015-04-30 01:00:00,0.253,0.326,0.341 -2015-04-30 02:00:00,0.253,0.326,0.341 -2015-04-30 03:00:00,0.253,0.327,0.341 -2015-04-30 04:00:00,0.253,0.327,0.341 -2015-04-30 05:00:00,0.253,0.326,0.341 -2015-04-30 06:00:00,0.253,0.326,0.341 -2015-04-30 07:00:00,0.253,0.327,0.341 -2015-04-30 08:00:00,0.252,0.327,0.341 -2015-04-30 09:00:00,0.252,0.326,0.341 -2015-04-30 10:00:00,0.252,0.326,0.341 -2015-04-30 11:00:00,0.252,0.325,0.341 -2015-04-30 12:00:00,0.252,0.324,0.341 -2015-04-30 13:00:00,0.253,0.325,0.344 -2015-04-30 14:00:00,0.253,0.325,0.342 -2015-04-30 15:00:00,0.252,0.324,0.344 -2015-04-30 16:00:00,0.248,0.324,0.34600000000000003 -2015-04-30 17:00:00,0.249,0.324,0.34600000000000003 -2015-04-30 18:00:00,0.249,0.324,0.34600000000000003 -2015-04-30 19:00:00,0.248,0.324,0.34600000000000003 -2015-04-30 20:00:00,0.249,0.324,0.34600000000000003 -2015-04-30 21:00:00,0.25,0.324,0.345 -2015-04-30 22:00:00,0.249,0.326,0.34600000000000003 -2015-04-30 23:00:00,0.248,0.326,0.34600000000000003 -2015-05-01 00:00:00,0.248,0.326,0.34600000000000003 -2015-05-01 01:00:00,0.248,0.326,0.34600000000000003 -2015-05-01 02:00:00,0.248,0.326,0.34600000000000003 -2015-05-01 03:00:00,0.248,0.326,0.34600000000000003 -2015-05-01 04:00:00,0.248,0.326,0.34600000000000003 -2015-05-01 05:00:00,0.249,0.326,0.34600000000000003 -2015-05-01 06:00:00,0.249,0.326,0.34600000000000003 -2015-05-01 07:00:00,0.25,0.326,0.34600000000000003 -2015-05-01 08:00:00,0.251,0.326,0.345 -2015-05-01 09:00:00,0.252,0.326,0.344 -2015-05-01 10:00:00,0.253,0.326,0.344 -2015-05-01 11:00:00,0.253,0.325,0.34299999999999997 -2015-05-01 12:00:00,0.253,0.325,0.342 -2015-05-01 13:00:00,0.253,0.326,0.342 -2015-05-01 14:00:00,0.253,0.325,0.342 -2015-05-01 15:00:00,0.253,0.324,0.342 -2015-05-01 16:00:00,0.253,0.324,0.342 -2015-05-01 17:00:00,0.253,0.324,0.341 -2015-05-01 18:00:00,0.253,0.32299999999999995,0.341 -2015-05-01 19:00:00,0.253,0.322,0.342 -2015-05-01 20:00:00,0.253,0.322,0.341 -2015-05-01 21:00:00,0.253,0.322,0.341 -2015-05-01 22:00:00,0.253,0.322,0.341 -2015-05-01 23:00:00,0.253,0.324,0.341 -2015-05-02 00:00:00,0.253,0.324,0.342 -2015-05-02 01:00:00,0.252,0.324,0.342 -2015-05-02 02:00:00,0.252,0.324,0.342 -2015-05-02 03:00:00,0.252,0.324,0.342 -2015-05-02 04:00:00,0.252,0.324,0.342 -2015-05-02 05:00:00,0.252,0.324,0.342 -2015-05-02 06:00:00,0.252,0.324,0.342 -2015-05-02 07:00:00,0.252,0.324,0.342 -2015-05-02 08:00:00,0.252,0.324,0.34299999999999997 -2015-05-02 09:00:00,0.252,0.324,0.342 -2015-05-02 10:00:00,0.252,0.324,0.342 -2015-05-02 11:00:00,0.252,0.324,0.341 -2015-05-02 12:00:00,0.252,0.324,0.341 -2015-05-02 13:00:00,0.252,0.324,0.341 -2015-05-02 14:00:00,0.252,0.32299999999999995,0.341 -2015-05-02 15:00:00,0.252,0.321,0.341 -2015-05-02 16:00:00,0.252,0.321,0.341 -2015-05-02 17:00:00,0.252,0.321,0.341 -2015-05-02 18:00:00,0.252,0.321,0.341 -2015-05-02 19:00:00,0.252,0.32,0.341 -2015-05-02 20:00:00,0.252,0.319,0.341 -2015-05-02 21:00:00,0.252,0.32,0.341 -2015-05-02 22:00:00,0.252,0.321,0.341 -2015-05-02 23:00:00,0.252,0.321,0.341 -2015-05-03 00:00:00,0.252,0.321,0.341 -2015-05-03 01:00:00,0.252,0.32299999999999995,0.341 -2015-05-03 02:00:00,0.252,0.324,0.341 -2015-05-03 03:00:00,0.251,0.324,0.341 -2015-05-03 04:00:00,0.251,0.32299999999999995,0.341 -2015-05-03 05:00:00,0.251,0.324,0.341 -2015-05-03 06:00:00,0.251,0.324,0.341 -2015-05-03 07:00:00,0.251,0.324,0.341 -2015-05-03 08:00:00,0.251,0.324,0.341 -2015-05-03 09:00:00,0.251,0.324,0.341 -2015-05-03 10:00:00,0.251,0.324,0.341 -2015-05-03 11:00:00,0.251,0.324,0.341 -2015-05-03 12:00:00,0.251,0.322,0.341 -2015-05-03 13:00:00,0.251,0.322,0.341 -2015-05-03 14:00:00,0.251,0.322,0.341 -2015-05-03 15:00:00,0.252,0.322,0.341 -2015-05-03 16:00:00,0.251,0.322,0.34299999999999997 -2015-05-03 17:00:00,0.248,0.321,0.34600000000000003 -2015-05-03 18:00:00,0.247,0.321,0.34600000000000003 -2015-05-03 19:00:00,0.248,0.321,0.345 -2015-05-03 20:00:00,0.248,0.32,0.34600000000000003 -2015-05-03 21:00:00,0.248,0.315,0.34600000000000003 -2015-05-03 22:00:00,0.248,0.317,0.34600000000000003 -2015-05-03 23:00:00,0.249,0.318,0.345 -2015-05-04 00:00:00,0.249,0.319,0.345 -2015-05-04 01:00:00,0.249,0.321,0.345 -2015-05-04 02:00:00,0.249,0.321,0.345 -2015-05-04 03:00:00,0.249,0.322,0.345 -2015-05-04 04:00:00,0.25,0.321,0.345 -2015-05-04 05:00:00,0.25,0.321,0.345 -2015-05-04 06:00:00,0.25,0.321,0.345 -2015-05-04 07:00:00,0.251,0.321,0.345 -2015-05-04 08:00:00,0.252,0.321,0.344 -2015-05-04 09:00:00,0.253,0.321,0.34299999999999997 -2015-05-04 10:00:00,0.253,0.321,0.342 -2015-05-04 11:00:00,0.253,0.321,0.342 -2015-05-04 12:00:00,0.253,0.322,0.342 -2015-05-04 13:00:00,0.253,0.322,0.342 -2015-05-04 14:00:00,0.253,0.321,0.342 -2015-05-04 15:00:00,0.253,0.321,0.342 -2015-05-04 16:00:00,0.253,0.322,0.341 -2015-05-04 17:00:00,0.253,0.321,0.341 -2015-05-04 18:00:00,0.254,0.321,0.341 -2015-05-04 19:00:00,0.254,0.321,0.341 -2015-05-04 20:00:00,0.254,0.321,0.341 -2015-05-04 21:00:00,0.254,0.321,0.341 -2015-05-04 22:00:00,0.254,0.321,0.341 -2015-05-04 23:00:00,0.254,0.321,0.34299999999999997 -2015-05-05 00:00:00,0.254,0.324,0.344 -2015-05-05 01:00:00,0.254,0.322,0.344 -2015-05-05 02:00:00,0.254,0.322,0.344 -2015-05-05 03:00:00,0.254,0.322,0.344 -2015-05-05 04:00:00,0.254,0.322,0.344 -2015-05-05 05:00:00,0.254,0.322,0.344 -2015-05-05 06:00:00,0.255,0.322,0.344 -2015-05-05 07:00:00,0.255,0.322,0.344 -2015-05-05 08:00:00,0.255,0.322,0.344 -2015-05-05 09:00:00,0.255,0.322,0.344 -2015-05-05 10:00:00,0.255,0.322,0.344 -2015-05-05 11:00:00,0.255,0.322,0.34299999999999997 -2015-05-05 12:00:00,0.255,0.321,0.34299999999999997 -2015-05-05 13:00:00,0.255,0.321,0.342 -2015-05-05 14:00:00,0.255,0.321,0.342 -2015-05-05 15:00:00,0.255,0.32,0.342 -2015-05-05 16:00:00,0.255,0.319,0.342 -2015-05-05 17:00:00,0.255,0.318,0.341 -2015-05-05 18:00:00,0.255,0.317,0.341 -2015-05-05 19:00:00,0.254,0.317,0.341 -2015-05-05 20:00:00,0.254,0.317,0.341 -2015-05-05 21:00:00,0.254,0.317,0.341 -2015-05-05 22:00:00,0.254,0.317,0.341 -2015-05-05 23:00:00,0.254,0.319,0.341 -2015-05-06 00:00:00,0.254,0.32,0.341 -2015-05-06 01:00:00,0.254,0.32,0.341 -2015-05-06 02:00:00,0.253,0.321,0.341 -2015-05-06 03:00:00,0.253,0.321,0.341 -2015-05-06 04:00:00,0.253,0.321,0.341 -2015-05-06 05:00:00,0.253,0.321,0.341 -2015-05-06 06:00:00,0.253,0.321,0.341 -2015-05-06 07:00:00,0.253,0.321,0.341 -2015-05-06 08:00:00,0.253,0.321,0.341 -2015-05-06 09:00:00,0.252,0.321,0.341 -2015-05-06 10:00:00,0.252,0.321,0.341 -2015-05-06 11:00:00,0.252,0.321,0.341 -2015-05-06 12:00:00,0.252,0.319,0.341 -2015-05-06 13:00:00,0.252,0.319,0.341 -2015-05-06 14:00:00,0.252,0.317,0.34 -2015-05-06 15:00:00,0.252,0.317,0.34 -2015-05-06 16:00:00,0.252,0.315,0.34 -2015-05-06 17:00:00,0.251,0.315,0.34 -2015-05-06 18:00:00,0.252,0.315,0.34 -2015-05-06 19:00:00,0.252,0.315,0.34 -2015-05-06 20:00:00,0.251,0.315,0.34 -2015-05-06 21:00:00,0.251,0.315,0.34 -2015-05-06 22:00:00,0.251,0.315,0.34 -2015-05-06 23:00:00,0.251,0.316,0.34 -2015-05-07 00:00:00,0.251,0.318,0.34 -2015-05-07 01:00:00,0.251,0.319,0.34 -2015-05-07 02:00:00,0.251,0.32,0.34 -2015-05-07 03:00:00,0.25,0.321,0.34 -2015-05-07 04:00:00,0.25,0.321,0.34 -2015-05-07 05:00:00,0.25,0.321,0.34 -2015-05-07 06:00:00,0.25,0.321,0.34 -2015-05-07 07:00:00,0.25,0.321,0.34 -2015-05-07 08:00:00,0.25,0.321,0.34 -2015-05-07 09:00:00,0.25,0.321,0.34 -2015-05-07 10:00:00,0.25,0.321,0.34 -2015-05-07 11:00:00,0.25,0.32,0.34 -2015-05-07 12:00:00,0.249,0.317,0.34 -2015-05-07 13:00:00,0.249,0.315,0.34 -2015-05-07 14:00:00,0.249,0.315,0.34 -2015-05-07 15:00:00,0.249,0.314,0.34 -2015-05-07 16:00:00,0.248,0.314,0.33899999999999997 -2015-05-07 17:00:00,0.248,0.314,0.33899999999999997 -2015-05-07 18:00:00,0.248,0.313,0.33899999999999997 -2015-05-07 19:00:00,0.248,0.312,0.33899999999999997 -2015-05-07 20:00:00,0.248,0.312,0.33899999999999997 -2015-05-07 21:00:00,0.248,0.312,0.33899999999999997 -2015-05-07 22:00:00,0.248,0.313,0.33899999999999997 -2015-05-07 23:00:00,0.248,0.314,0.33899999999999997 -2015-05-08 00:00:00,0.247,0.315,0.33899999999999997 -2015-05-08 01:00:00,0.247,0.315,0.33899999999999997 -2015-05-08 02:00:00,0.247,0.316,0.33899999999999997 -2015-05-08 03:00:00,0.247,0.316,0.33899999999999997 -2015-05-08 04:00:00,0.247,0.316,0.33899999999999997 -2015-05-08 05:00:00,0.247,0.315,0.33899999999999997 -2015-05-08 06:00:00,0.24600000000000002,0.315,0.33899999999999997 -2015-05-08 07:00:00,0.24600000000000002,0.315,0.33899999999999997 -2015-05-08 08:00:00,0.24600000000000002,0.315,0.33899999999999997 -2015-05-08 09:00:00,0.24600000000000002,0.315,0.33899999999999997 -2015-05-08 10:00:00,0.24600000000000002,0.315,0.33899999999999997 -2015-05-08 11:00:00,0.24600000000000002,0.315,0.33899999999999997 -2015-05-08 12:00:00,0.24600000000000002,0.314,0.33899999999999997 -2015-05-08 13:00:00,0.245,0.314,0.33899999999999997 -2015-05-08 14:00:00,0.245,0.313,0.33899999999999997 -2015-05-08 15:00:00,0.244,0.312,0.33899999999999997 -2015-05-08 16:00:00,0.244,0.312,0.33899999999999997 -2015-05-08 17:00:00,0.244,0.311,0.33899999999999997 -2015-05-08 18:00:00,0.244,0.31,0.33799999999999997 -2015-05-08 19:00:00,0.244,0.31,0.33799999999999997 -2015-05-08 20:00:00,0.244,0.31,0.33799999999999997 -2015-05-08 21:00:00,0.244,0.31,0.33799999999999997 -2015-05-08 22:00:00,0.244,0.31,0.33799999999999997 -2015-05-08 23:00:00,0.244,0.31,0.33799999999999997 -2015-05-09 00:00:00,0.243,0.31,0.33799999999999997 -2015-05-09 01:00:00,0.243,0.311,0.33799999999999997 -2015-05-09 02:00:00,0.243,0.311,0.33799999999999997 -2015-05-09 03:00:00,0.243,0.31,0.33799999999999997 -2015-05-09 04:00:00,0.243,0.31,0.33799999999999997 -2015-05-09 05:00:00,0.243,0.311,0.33799999999999997 -2015-05-09 06:00:00,0.243,0.311,0.33799999999999997 -2015-05-09 07:00:00,0.243,0.311,0.33799999999999997 -2015-05-09 08:00:00,0.243,0.312,0.33799999999999997 -2015-05-09 09:00:00,0.243,0.312,0.33799999999999997 -2015-05-09 10:00:00,0.242,0.312,0.33799999999999997 -2015-05-09 11:00:00,0.242,0.312,0.33799999999999997 -2015-05-09 12:00:00,0.242,0.311,0.33799999999999997 -2015-05-09 13:00:00,0.24100000000000002,0.31,0.33799999999999997 -2015-05-09 14:00:00,0.24100000000000002,0.31,0.33799999999999997 -2015-05-09 15:00:00,0.24100000000000002,0.309,0.33799999999999997 -2015-05-09 16:00:00,0.24,0.309,0.33799999999999997 -2015-05-09 17:00:00,0.24,0.307,0.337 -2015-05-09 18:00:00,0.242,0.307,0.34 -2015-05-09 19:00:00,0.245,0.307,0.34299999999999997 -2015-05-09 20:00:00,0.244,0.307,0.34299999999999997 -2015-05-09 21:00:00,0.243,0.307,0.34299999999999997 -2015-05-09 22:00:00,0.243,0.307,0.34299999999999997 -2015-05-09 23:00:00,0.242,0.307,0.34299999999999997 -2015-05-10 00:00:00,0.242,0.308,0.342 -2015-05-10 01:00:00,0.242,0.31,0.342 -2015-05-10 02:00:00,0.242,0.31,0.342 -2015-05-10 03:00:00,0.242,0.31,0.342 -2015-05-10 04:00:00,0.242,0.31,0.342 -2015-05-10 05:00:00,0.242,0.31,0.342 -2015-05-10 06:00:00,0.24100000000000002,0.31,0.342 -2015-05-10 07:00:00,0.242,0.31,0.342 -2015-05-10 08:00:00,0.242,0.31,0.342 -2015-05-10 09:00:00,0.243,0.31,0.341 -2015-05-10 10:00:00,0.24600000000000002,0.31,0.34 -2015-05-10 11:00:00,0.247,0.31,0.33899999999999997 -2015-05-10 12:00:00,0.24600000000000002,0.308,0.33799999999999997 -2015-05-10 13:00:00,0.24600000000000002,0.307,0.33799999999999997 -2015-05-10 14:00:00,0.245,0.307,0.33799999999999997 -2015-05-10 15:00:00,0.245,0.306,0.33799999999999997 -2015-05-10 16:00:00,0.245,0.305,0.337 -2015-05-10 17:00:00,0.244,0.305,0.337 -2015-05-10 18:00:00,0.244,0.305,0.337 -2015-05-10 19:00:00,0.244,0.305,0.337 -2015-05-10 20:00:00,0.244,0.305,0.337 -2015-05-10 21:00:00,0.244,0.305,0.337 -2015-05-10 22:00:00,0.244,0.305,0.336 -2015-05-10 23:00:00,0.244,0.305,0.336 -2015-05-11 00:00:00,0.244,0.305,0.336 -2015-05-11 01:00:00,0.243,0.305,0.336 -2015-05-11 02:00:00,0.243,0.305,0.336 -2015-05-11 03:00:00,0.243,0.305,0.336 -2015-05-11 04:00:00,0.243,0.305,0.336 -2015-05-11 05:00:00,0.243,0.306,0.336 -2015-05-11 06:00:00,0.243,0.306,0.336 -2015-05-11 07:00:00,0.243,0.307,0.337 -2015-05-11 08:00:00,0.243,0.307,0.337 -2015-05-11 09:00:00,0.243,0.308,0.337 -2015-05-11 10:00:00,0.243,0.308,0.336 -2015-05-11 11:00:00,0.242,0.307,0.336 -2015-05-11 12:00:00,0.242,0.306,0.336 -2015-05-11 13:00:00,0.243,0.305,0.336 -2015-05-11 14:00:00,0.243,0.305,0.336 -2015-05-11 15:00:00,0.242,0.305,0.336 -2015-05-11 16:00:00,0.243,0.304,0.336 -2015-05-11 17:00:00,0.242,0.304,0.336 -2015-05-11 18:00:00,0.24100000000000002,0.304,0.336 -2015-05-11 19:00:00,0.24100000000000002,0.303,0.335 -2015-05-11 20:00:00,0.24100000000000002,0.303,0.335 -2015-05-11 21:00:00,0.24,0.302,0.335 -2015-05-11 22:00:00,0.24,0.303,0.335 -2015-05-11 23:00:00,0.239,0.304,0.335 -2015-05-12 00:00:00,0.239,0.304,0.335 -2015-05-12 01:00:00,0.239,0.304,0.335 -2015-05-12 02:00:00,0.239,0.304,0.335 -2015-05-12 03:00:00,0.239,0.304,0.335 -2015-05-12 04:00:00,0.239,0.304,0.335 -2015-05-12 05:00:00,0.24,0.304,0.335 -2015-05-12 06:00:00,0.24100000000000002,0.304,0.335 -2015-05-12 07:00:00,0.243,0.305,0.335 -2015-05-12 08:00:00,0.244,0.305,0.336 -2015-05-12 09:00:00,0.24600000000000002,0.305,0.336 -2015-05-12 10:00:00,0.24600000000000002,0.304,0.335 -2015-05-12 11:00:00,0.24600000000000002,0.304,0.335 -2015-05-12 12:00:00,0.24600000000000002,0.303,0.335 -2015-05-12 13:00:00,0.245,0.304,0.335 -2015-05-12 14:00:00,0.244,0.302,0.335 -2015-05-12 15:00:00,0.243,0.301,0.335 -2015-05-12 16:00:00,0.243,0.3,0.337 -2015-05-12 17:00:00,0.244,0.299,0.336 -2015-05-12 18:00:00,0.243,0.298,0.336 -2015-05-12 19:00:00,0.244,0.298,0.336 -2015-05-12 20:00:00,0.244,0.297,0.335 -2015-05-12 21:00:00,0.243,0.297,0.335 -2015-05-12 22:00:00,0.243,0.297,0.335 -2015-05-12 23:00:00,0.243,0.298,0.335 -2015-05-13 00:00:00,0.243,0.3,0.335 -2015-05-13 01:00:00,0.243,0.299,0.335 -2015-05-13 02:00:00,0.243,0.298,0.335 -2015-05-13 03:00:00,0.24100000000000002,0.299,0.335 -2015-05-13 04:00:00,0.242,0.298,0.335 -2015-05-13 05:00:00,0.24100000000000002,0.298,0.335 -2015-05-13 06:00:00,0.24100000000000002,0.298,0.335 -2015-05-13 07:00:00,0.24100000000000002,0.298,0.335 -2015-05-13 08:00:00,0.24,0.298,0.335 -2015-05-13 09:00:00,0.24,0.298,0.33399999999999996 -2015-05-13 10:00:00,0.24,0.298,0.33399999999999996 -2015-05-13 11:00:00,0.239,0.298,0.33399999999999996 -2015-05-13 12:00:00,0.239,0.298,0.33399999999999996 -2015-05-13 13:00:00,0.23800000000000002,0.297,0.33399999999999996 -2015-05-13 14:00:00,0.237,0.297,0.33399999999999996 -2015-05-13 15:00:00,0.237,0.297,0.33299999999999996 -2015-05-13 16:00:00,0.23600000000000002,0.305,0.33299999999999996 -2015-05-13 17:00:00,0.23600000000000002,0.302,0.33299999999999996 -2015-05-13 18:00:00,0.237,0.302,0.33299999999999996 -2015-05-13 19:00:00,0.237,0.302,0.33299999999999996 -2015-05-13 20:00:00,0.237,0.302,0.33299999999999996 -2015-05-13 21:00:00,0.237,0.301,0.33299999999999996 -2015-05-13 22:00:00,0.237,0.301,0.33299999999999996 -2015-05-13 23:00:00,0.237,0.301,0.33299999999999996 -2015-05-14 00:00:00,0.23800000000000002,0.298,0.33299999999999996 -2015-05-14 01:00:00,0.237,0.297,0.33299999999999996 -2015-05-14 02:00:00,0.237,0.297,0.33299999999999996 -2015-05-14 03:00:00,0.237,0.298,0.33299999999999996 -2015-05-14 04:00:00,0.237,0.298,0.33299999999999996 -2015-05-14 05:00:00,0.237,0.298,0.33299999999999996 -2015-05-14 06:00:00,0.23800000000000002,0.298,0.33299999999999996 -2015-05-14 07:00:00,0.23800000000000002,0.298,0.33299999999999996 -2015-05-14 08:00:00,0.23800000000000002,0.297,0.33299999999999996 -2015-05-14 09:00:00,0.23800000000000002,0.297,0.33299999999999996 -2015-05-14 10:00:00,0.23800000000000002,0.295,0.33299999999999996 -2015-05-14 11:00:00,0.237,0.293,0.33299999999999996 -2015-05-14 12:00:00,0.23600000000000002,0.294,0.33299999999999996 -2015-05-14 13:00:00,0.23600000000000002,0.29600000000000004,0.332 -2015-05-14 14:00:00,0.23399999999999999,0.293,0.332 -2015-05-14 15:00:00,0.23399999999999999,0.293,0.332 -2015-05-14 16:00:00,0.235,0.29600000000000004,0.332 -2015-05-14 17:00:00,0.23399999999999999,0.298,0.332 -2015-05-14 18:00:00,0.23399999999999999,0.3,0.332 -2015-05-14 19:00:00,0.23399999999999999,0.298,0.332 -2015-05-14 20:00:00,0.235,0.298,0.332 -2015-05-14 21:00:00,0.235,0.3,0.332 -2015-05-14 22:00:00,0.23600000000000002,0.3,0.332 -2015-05-14 23:00:00,0.237,0.3,0.332 -2015-05-15 00:00:00,0.237,0.302,0.332 -2015-05-15 01:00:00,0.237,0.3,0.332 -2015-05-15 02:00:00,0.237,0.298,0.332 -2015-05-15 03:00:00,0.239,0.298,0.332 -2015-05-15 04:00:00,0.23800000000000002,0.298,0.332 -2015-05-15 05:00:00,0.23800000000000002,0.298,0.332 -2015-05-15 06:00:00,0.23800000000000002,0.298,0.332 -2015-05-15 07:00:00,0.23800000000000002,0.298,0.332 -2015-05-15 08:00:00,0.23800000000000002,0.298,0.332 -2015-05-15 09:00:00,0.237,0.298,0.33299999999999996 -2015-05-15 10:00:00,0.23800000000000002,0.298,0.33299999999999996 -2015-05-15 11:00:00,0.239,0.297,0.332 -2015-05-15 12:00:00,0.239,0.298,0.331 -2015-05-15 13:00:00,0.23800000000000002,0.297,0.331 -2015-05-15 14:00:00,0.23800000000000002,0.297,0.331 -2015-05-15 15:00:00,0.237,0.29600000000000004,0.331 -2015-05-15 16:00:00,0.237,0.294,0.331 -2015-05-15 17:00:00,0.237,0.293,0.331 -2015-05-15 18:00:00,0.23600000000000002,0.293,0.331 -2015-05-15 19:00:00,0.23600000000000002,0.293,0.331 -2015-05-15 20:00:00,0.237,0.295,0.33 -2015-05-15 21:00:00,0.23600000000000002,0.295,0.33 -2015-05-15 22:00:00,0.237,0.295,0.33 -2015-05-15 23:00:00,0.237,0.29600000000000004,0.33 -2015-05-16 00:00:00,0.237,0.29600000000000004,0.33 -2015-05-16 01:00:00,0.237,0.29600000000000004,0.33 -2015-05-16 02:00:00,0.237,0.29600000000000004,0.33 -2015-05-16 03:00:00,0.237,0.297,0.33 -2015-05-16 04:00:00,0.23600000000000002,0.298,0.33 -2015-05-16 05:00:00,0.23600000000000002,0.298,0.33 -2015-05-16 06:00:00,0.23600000000000002,0.298,0.33 -2015-05-16 07:00:00,0.23600000000000002,0.297,0.33 -2015-05-16 08:00:00,0.23600000000000002,0.298,0.33 -2015-05-16 09:00:00,0.23600000000000002,0.298,0.33 -2015-05-16 10:00:00,0.23600000000000002,0.297,0.33 -2015-05-16 11:00:00,0.235,0.297,0.33 -2015-05-16 12:00:00,0.235,0.29600000000000004,0.32899999999999996 -2015-05-16 13:00:00,0.235,0.293,0.32899999999999996 -2015-05-16 14:00:00,0.235,0.292,0.32899999999999996 -2015-05-16 15:00:00,0.23399999999999999,0.29100000000000004,0.32899999999999996 -2015-05-16 16:00:00,0.23399999999999999,0.28800000000000003,0.32899999999999996 -2015-05-16 17:00:00,0.23399999999999999,0.287,0.32899999999999996 -2015-05-16 18:00:00,0.23399999999999999,0.287,0.32899999999999996 -2015-05-16 19:00:00,0.233,0.287,0.32899999999999996 -2015-05-16 20:00:00,0.23399999999999999,0.287,0.32899999999999996 -2015-05-16 21:00:00,0.23399999999999999,0.287,0.32899999999999996 -2015-05-16 22:00:00,0.23399999999999999,0.287,0.32899999999999996 -2015-05-16 23:00:00,0.235,0.287,0.332 -2015-05-17 00:00:00,0.235,0.287,0.332 -2015-05-17 01:00:00,0.235,0.287,0.332 -2015-05-17 02:00:00,0.235,0.287,0.332 -2015-05-17 03:00:00,0.235,0.287,0.331 -2015-05-17 04:00:00,0.23600000000000002,0.287,0.331 -2015-05-17 05:00:00,0.23600000000000002,0.287,0.331 -2015-05-17 06:00:00,0.235,0.287,0.331 -2015-05-17 07:00:00,0.235,0.287,0.331 -2015-05-17 08:00:00,0.235,0.287,0.331 -2015-05-17 09:00:00,0.235,0.287,0.331 -2015-05-17 10:00:00,0.23399999999999999,0.287,0.33 -2015-05-17 11:00:00,0.23399999999999999,0.287,0.32899999999999996 -2015-05-17 12:00:00,0.23399999999999999,0.287,0.32799999999999996 -2015-05-17 13:00:00,0.233,0.28600000000000003,0.32799999999999996 -2015-05-17 14:00:00,0.233,0.285,0.32799999999999996 -2015-05-17 15:00:00,0.23199999999999998,0.285,0.32799999999999996 -2015-05-17 16:00:00,0.23199999999999998,0.285,0.32799999999999996 -2015-05-17 17:00:00,0.23199999999999998,0.285,0.32799999999999996 -2015-05-17 18:00:00,0.23199999999999998,0.284,0.32799999999999996 -2015-05-17 19:00:00,0.23199999999999998,0.28300000000000003,0.32799999999999996 -2015-05-17 20:00:00,0.23199999999999998,0.28300000000000003,0.32799999999999996 -2015-05-17 21:00:00,0.23199999999999998,0.28300000000000003,0.327 -2015-05-17 22:00:00,0.23199999999999998,0.28300000000000003,0.327 -2015-05-17 23:00:00,0.23199999999999998,0.28300000000000003,0.327 -2015-05-18 00:00:00,0.23199999999999998,0.28300000000000003,0.327 -2015-05-18 01:00:00,0.23199999999999998,0.28300000000000003,0.327 -2015-05-18 02:00:00,0.231,0.28300000000000003,0.32799999999999996 -2015-05-18 03:00:00,0.231,0.28300000000000003,0.327 -2015-05-18 04:00:00,0.231,0.28300000000000003,0.327 -2015-05-18 05:00:00,0.231,0.28300000000000003,0.32799999999999996 -2015-05-18 06:00:00,0.231,0.28300000000000003,0.32799999999999996 -2015-05-18 07:00:00,0.231,0.28300000000000003,0.32799999999999996 -2015-05-18 08:00:00,0.231,0.28300000000000003,0.32799999999999996 -2015-05-18 09:00:00,0.231,0.28300000000000003,0.32799999999999996 -2015-05-18 10:00:00,0.231,0.28300000000000003,0.327 -2015-05-18 11:00:00,0.23,0.28300000000000003,0.327 -2015-05-18 12:00:00,0.23,0.28300000000000003,0.327 -2015-05-18 13:00:00,0.23,0.28300000000000003,0.327 -2015-05-18 14:00:00,0.23,0.28300000000000003,0.326 -2015-05-18 15:00:00,0.23,0.282,0.325 -2015-05-18 16:00:00,0.23,0.281,0.325 -2015-05-18 17:00:00,0.23,0.281,0.325 -2015-05-18 18:00:00,0.23,0.281,0.325 -2015-05-18 19:00:00,0.23,0.28,0.324 -2015-05-18 20:00:00,0.23,0.281,0.324 -2015-05-18 21:00:00,0.23,0.281,0.324 -2015-05-18 22:00:00,0.23,0.281,0.324 -2015-05-18 23:00:00,0.23,0.281,0.324 -2015-05-19 00:00:00,0.23,0.281,0.324 -2015-05-19 01:00:00,0.23,0.281,0.324 -2015-05-19 02:00:00,0.23,0.281,0.324 -2015-05-19 03:00:00,0.23,0.281,0.324 -2015-05-19 04:00:00,0.23,0.28,0.324 -2015-05-19 05:00:00,0.22899999999999998,0.28,0.324 -2015-05-19 06:00:00,0.23,0.28,0.325 -2015-05-19 07:00:00,0.23,0.28,0.325 -2015-05-19 08:00:00,0.23,0.28,0.324 -2015-05-19 09:00:00,0.22899999999999998,0.28,0.324 -2015-05-19 10:00:00,0.22899999999999998,0.28,0.324 -2015-05-19 11:00:00,0.22899999999999998,0.28,0.324 -2015-05-19 12:00:00,0.228,0.28,0.324 -2015-05-19 13:00:00,0.22899999999999998,0.28,0.322 -2015-05-19 14:00:00,0.231,0.28,0.322 -2015-05-19 15:00:00,0.231,0.28,0.322 -2015-05-19 16:00:00,0.23,0.28,0.321 -2015-05-19 17:00:00,0.23,0.28,0.321 -2015-05-19 18:00:00,0.228,0.28,0.321 -2015-05-19 19:00:00,0.228,0.28,0.32 -2015-05-19 20:00:00,0.228,0.28,0.32 -2015-05-19 21:00:00,0.228,0.28,0.321 -2015-05-19 22:00:00,0.228,0.28,0.321 -2015-05-19 23:00:00,0.228,0.28,0.321 -2015-05-20 00:00:00,0.228,0.28,0.321 -2015-05-20 01:00:00,0.228,0.28,0.321 -2015-05-20 02:00:00,0.228,0.28,0.321 -2015-05-20 03:00:00,0.22699999999999998,0.28,0.321 -2015-05-20 04:00:00,0.22699999999999998,0.28,0.321 -2015-05-20 05:00:00,0.22699999999999998,0.28,0.321 -2015-05-20 06:00:00,0.228,0.28,0.322 -2015-05-20 07:00:00,0.228,0.28,0.32299999999999995 -2015-05-20 08:00:00,0.228,0.28,0.322 -2015-05-20 09:00:00,0.228,0.28,0.322 -2015-05-20 10:00:00,0.226,0.28,0.321 -2015-05-20 11:00:00,0.226,0.28,0.321 -2015-05-20 12:00:00,0.226,0.28,0.321 -2015-05-20 13:00:00,0.226,0.28,0.32 -2015-05-20 14:00:00,0.225,0.27899999999999997,0.321 -2015-05-20 15:00:00,0.225,0.278,0.32 -2015-05-20 16:00:00,0.225,0.27699999999999997,0.322 -2015-05-20 17:00:00,0.226,0.276,0.322 -2015-05-20 18:00:00,0.225,0.276,0.321 -2015-05-20 19:00:00,0.225,0.276,0.32 -2015-05-20 20:00:00,0.225,0.276,0.32 -2015-05-20 21:00:00,0.225,0.275,0.319 -2015-05-20 22:00:00,0.225,0.275,0.319 -2015-05-20 23:00:00,0.22399999999999998,0.275,0.319 -2015-05-21 00:00:00,0.22399999999999998,0.276,0.319 -2015-05-21 01:00:00,0.223,0.276,0.319 -2015-05-21 02:00:00,0.223,0.276,0.319 -2015-05-21 03:00:00,0.223,0.276,0.32 -2015-05-21 04:00:00,0.223,0.276,0.319 -2015-05-21 05:00:00,0.223,0.276,0.319 -2015-05-21 06:00:00,0.223,0.278,0.319 -2015-05-21 07:00:00,0.223,0.27899999999999997,0.32 -2015-05-21 08:00:00,0.223,0.278,0.32 -2015-05-21 09:00:00,0.223,0.27699999999999997,0.32 -2015-05-21 10:00:00,0.223,0.276,0.32 -2015-05-21 11:00:00,0.223,0.276,0.319 -2015-05-21 12:00:00,0.222,0.275,0.319 -2015-05-21 13:00:00,0.222,0.273,0.319 -2015-05-21 14:00:00,0.222,0.273,0.319 -2015-05-21 15:00:00,0.222,0.273,0.319 -2015-05-21 16:00:00,0.222,0.273,0.319 -2015-05-21 17:00:00,0.222,0.271,0.318 -2015-05-21 18:00:00,0.222,0.271,0.318 -2015-05-21 19:00:00,0.222,0.27,0.318 -2015-05-21 20:00:00,0.222,0.27,0.318 -2015-05-21 21:00:00,0.222,0.27,0.318 -2015-05-21 22:00:00,0.222,0.27,0.318 -2015-05-21 23:00:00,0.222,0.27,0.319 -2015-05-22 00:00:00,0.221,0.271,0.318 -2015-05-22 01:00:00,0.221,0.271,0.318 -2015-05-22 02:00:00,0.221,0.271,0.318 -2015-05-22 03:00:00,0.221,0.271,0.318 -2015-05-22 04:00:00,0.221,0.271,0.318 -2015-05-22 05:00:00,0.221,0.271,0.318 -2015-05-22 06:00:00,0.221,0.271,0.318 -2015-05-22 07:00:00,0.221,0.27,0.318 -2015-05-22 08:00:00,0.221,0.271,0.318 -2015-05-22 09:00:00,0.221,0.27,0.318 -2015-05-22 10:00:00,0.221,0.27,0.318 -2015-05-22 11:00:00,0.22,0.27,0.318 -2015-05-22 12:00:00,0.22,0.27,0.318 -2015-05-22 13:00:00,0.22,0.27,0.317 -2015-05-22 14:00:00,0.22,0.27,0.317 -2015-05-22 15:00:00,0.22,0.27,0.317 -2015-05-22 16:00:00,0.22,0.268,0.316 -2015-05-22 17:00:00,0.22,0.268,0.316 -2015-05-22 18:00:00,0.22,0.268,0.316 -2015-05-22 19:00:00,0.22,0.268,0.315 -2015-05-22 20:00:00,0.22,0.268,0.315 -2015-05-22 21:00:00,0.22,0.268,0.315 -2015-05-22 22:00:00,0.22,0.26899999999999996,0.316 -2015-05-22 23:00:00,0.22,0.26899999999999996,0.316 -2015-05-23 00:00:00,0.22,0.26899999999999996,0.316 -2015-05-23 01:00:00,0.22,0.26899999999999996,0.316 -2015-05-23 02:00:00,0.22,0.26899999999999996,0.316 -2015-05-23 03:00:00,0.22,0.26899999999999996,0.316 -2015-05-23 04:00:00,0.22,0.268,0.316 -2015-05-23 05:00:00,0.22,0.268,0.316 -2015-05-23 06:00:00,0.22,0.268,0.316 -2015-05-23 07:00:00,0.22,0.268,0.316 -2015-05-23 08:00:00,0.22,0.268,0.316 -2015-05-23 09:00:00,0.22,0.268,0.316 -2015-05-23 10:00:00,0.22,0.268,0.316 -2015-05-23 11:00:00,0.22,0.26899999999999996,0.315 -2015-05-23 12:00:00,0.22,0.267,0.315 -2015-05-23 13:00:00,0.22,0.266,0.315 -2015-05-23 14:00:00,0.21899999999999997,0.266,0.315 -2015-05-23 15:00:00,0.21899999999999997,0.266,0.315 -2015-05-23 16:00:00,0.21899999999999997,0.266,0.315 -2015-05-23 17:00:00,0.21899999999999997,0.266,0.314 -2015-05-23 18:00:00,0.21899999999999997,0.265,0.314 -2015-05-23 19:00:00,0.21899999999999997,0.262,0.314 -2015-05-23 20:00:00,0.21899999999999997,0.262,0.314 -2015-05-23 21:00:00,0.21899999999999997,0.263,0.314 -2015-05-23 22:00:00,0.21899999999999997,0.264,0.314 -2015-05-23 23:00:00,0.21899999999999997,0.264,0.314 -2015-05-24 00:00:00,0.21899999999999997,0.264,0.314 -2015-05-24 01:00:00,0.21899999999999997,0.264,0.314 -2015-05-24 02:00:00,0.21899999999999997,0.264,0.314 -2015-05-24 03:00:00,0.21899999999999997,0.264,0.315 -2015-05-24 04:00:00,0.21899999999999997,0.265,0.315 -2015-05-24 05:00:00,0.218,0.264,0.315 -2015-05-24 06:00:00,0.218,0.262,0.314 -2015-05-24 07:00:00,0.218,0.263,0.314 -2015-05-24 08:00:00,0.218,0.263,0.314 -2015-05-24 09:00:00,0.218,0.263,0.314 -2015-05-24 10:00:00,0.218,0.262,0.314 -2015-05-24 11:00:00,0.218,0.263,0.314 -2015-05-24 12:00:00,0.218,0.264,0.314 -2015-05-24 13:00:00,0.218,0.264,0.314 -2015-05-24 14:00:00,0.218,0.264,0.313 -2015-05-24 15:00:00,0.218,0.265,0.313 -2015-05-24 16:00:00,0.218,0.265,0.313 -2015-05-24 17:00:00,0.218,0.265,0.313 -2015-05-24 18:00:00,0.218,0.265,0.312 -2015-05-24 19:00:00,0.218,0.265,0.313 -2015-05-24 20:00:00,0.218,0.265,0.313 -2015-05-24 21:00:00,0.218,0.265,0.313 -2015-05-24 22:00:00,0.218,0.266,0.313 -2015-05-24 23:00:00,0.218,0.266,0.313 -2015-05-25 00:00:00,0.218,0.266,0.314 -2015-05-25 01:00:00,0.22,0.266,0.317 -2015-05-25 02:00:00,0.22,0.266,0.317 -2015-05-25 03:00:00,0.22,0.266,0.317 -2015-05-25 04:00:00,0.22,0.266,0.318 -2015-05-25 05:00:00,0.22,0.266,0.318 -2015-05-25 06:00:00,0.22,0.266,0.318 -2015-05-25 07:00:00,0.21899999999999997,0.266,0.318 -2015-05-25 08:00:00,0.21899999999999997,0.266,0.318 -2015-05-25 09:00:00,0.21899999999999997,0.266,0.316 -2015-05-25 10:00:00,0.21899999999999997,0.266,0.315 -2015-05-25 11:00:00,0.218,0.265,0.313 -2015-05-25 12:00:00,0.218,0.265,0.313 -2015-05-25 13:00:00,0.218,0.265,0.313 -2015-05-25 14:00:00,0.218,0.264,0.312 -2015-05-25 15:00:00,0.218,0.264,0.312 -2015-05-25 16:00:00,0.218,0.264,0.312 -2015-05-25 17:00:00,0.218,0.264,0.312 -2015-05-25 18:00:00,0.218,0.264,0.312 -2015-05-25 19:00:00,0.218,0.264,0.312 -2015-05-25 20:00:00,0.218,0.264,0.312 -2015-05-25 21:00:00,0.218,0.264,0.312 -2015-05-25 22:00:00,0.218,0.264,0.312 -2015-05-25 23:00:00,0.218,0.264,0.312 -2015-05-26 00:00:00,0.218,0.264,0.312 -2015-05-26 01:00:00,0.218,0.264,0.312 -2015-05-26 02:00:00,0.217,0.264,0.312 -2015-05-26 03:00:00,0.217,0.265,0.312 -2015-05-26 04:00:00,0.217,0.265,0.312 -2015-05-26 05:00:00,0.217,0.264,0.312 -2015-05-26 06:00:00,0.217,0.263,0.312 -2015-05-26 07:00:00,0.217,0.262,0.312 -2015-05-26 08:00:00,0.217,0.261,0.311 -2015-05-26 09:00:00,0.217,0.261,0.311 -2015-05-26 10:00:00,0.217,0.261,0.311 -2015-05-26 11:00:00,0.217,0.261,0.311 -2015-05-26 12:00:00,0.217,0.261,0.311 -2015-05-26 13:00:00,0.21600000000000003,0.263,0.311 -2015-05-26 14:00:00,0.21600000000000003,0.263,0.311 -2015-05-26 15:00:00,0.21600000000000003,0.263,0.31 -2015-05-26 16:00:00,0.21600000000000003,0.263,0.31 -2015-05-26 17:00:00,0.21600000000000003,0.263,0.31 -2015-05-26 18:00:00,0.21600000000000003,0.264,0.31 -2015-05-26 19:00:00,0.21600000000000003,0.264,0.31 -2015-05-26 20:00:00,0.21600000000000003,0.264,0.31 -2015-05-26 21:00:00,0.21600000000000003,0.264,0.31 -2015-05-26 22:00:00,0.21600000000000003,0.265,0.31 -2015-05-26 23:00:00,0.215,0.265,0.31 -2015-05-27 00:00:00,0.215,0.266,0.31 -2015-05-27 01:00:00,0.215,0.266,0.309 -2015-05-27 02:00:00,0.214,0.266,0.309 -2015-05-27 03:00:00,0.214,0.266,0.309 -2015-05-27 04:00:00,0.214,0.266,0.309 -2015-05-27 05:00:00,0.214,0.266,0.309 -2015-05-27 06:00:00,0.214,0.265,0.31 -2015-05-27 07:00:00,0.214,0.266,0.31 -2015-05-27 08:00:00,0.214,0.265,0.31 -2015-05-27 09:00:00,0.214,0.264,0.31 -2015-05-27 10:00:00,0.214,0.264,0.31 -2015-05-27 11:00:00,0.214,0.264,0.309 -2015-05-27 12:00:00,0.214,0.264,0.309 -2015-05-27 13:00:00,0.214,0.265,0.309 -2015-05-27 14:00:00,0.214,0.265,0.308 -2015-05-27 15:00:00,0.214,0.265,0.308 -2015-05-27 16:00:00,0.214,0.265,0.308 -2015-05-27 17:00:00,0.214,0.265,0.308 -2015-05-27 18:00:00,0.214,0.264,0.308 -2015-05-27 19:00:00,0.213,0.264,0.307 -2015-05-27 20:00:00,0.213,0.264,0.307 -2015-05-27 21:00:00,0.213,0.264,0.307 -2015-05-27 22:00:00,0.213,0.264,0.307 -2015-05-27 23:00:00,0.213,0.266,0.307 -2015-05-28 00:00:00,0.213,0.266,0.307 -2015-05-28 01:00:00,0.213,0.266,0.307 -2015-05-28 02:00:00,0.213,0.266,0.307 -2015-05-28 03:00:00,0.212,0.266,0.307 -2015-05-28 04:00:00,0.212,0.265,0.308 -2015-05-28 05:00:00,0.212,0.265,0.307 -2015-05-28 06:00:00,0.212,0.265,0.308 -2015-05-28 07:00:00,0.212,0.265,0.308 -2015-05-28 08:00:00,0.212,0.264,0.308 -2015-05-28 09:00:00,0.212,0.264,0.307 -2015-05-28 10:00:00,0.212,0.264,0.307 -2015-05-28 11:00:00,0.212,0.264,0.307 -2015-05-28 12:00:00,0.212,0.264,0.307 -2015-05-28 13:00:00,0.212,0.264,0.306 -2015-05-28 14:00:00,0.21100000000000002,0.264,0.305 -2015-05-28 15:00:00,0.21100000000000002,0.264,0.305 -2015-05-28 16:00:00,0.212,0.264,0.305 -2015-05-28 17:00:00,0.212,0.264,0.306 -2015-05-28 18:00:00,0.21100000000000002,0.264,0.306 -2015-05-28 19:00:00,0.21100000000000002,0.264,0.306 -2015-05-28 20:00:00,0.212,0.263,0.306 -2015-05-28 21:00:00,0.21100000000000002,0.263,0.305 -2015-05-28 22:00:00,0.21100000000000002,0.263,0.305 -2015-05-28 23:00:00,0.21100000000000002,0.264,0.304 -2015-05-29 00:00:00,0.21100000000000002,0.264,0.305 -2015-05-29 01:00:00,0.21100000000000002,0.264,0.305 -2015-05-29 02:00:00,0.21100000000000002,0.264,0.305 -2015-05-29 03:00:00,0.21100000000000002,0.264,0.305 -2015-05-29 04:00:00,0.21,0.264,0.305 -2015-05-29 05:00:00,0.21,0.264,0.305 -2015-05-29 06:00:00,0.21,0.264,0.305 -2015-05-29 07:00:00,0.21,0.264,0.305 -2015-05-29 08:00:00,0.21,0.264,0.305 -2015-05-29 09:00:00,0.21,0.264,0.305 -2015-05-29 10:00:00,0.21,0.264,0.305 -2015-05-29 11:00:00,0.21,0.264,0.304 -2015-05-29 12:00:00,0.21,0.263,0.304 -2015-05-29 13:00:00,0.21,0.263,0.304 -2015-05-29 14:00:00,0.21,0.263,0.304 -2015-05-29 15:00:00,0.21100000000000002,0.262,0.304 -2015-05-29 16:00:00,0.21100000000000002,0.261,0.308 -2015-05-29 17:00:00,0.212,0.26,0.308 -2015-05-29 18:00:00,0.212,0.259,0.307 -2015-05-29 19:00:00,0.212,0.259,0.306 -2015-05-29 20:00:00,0.212,0.259,0.306 -2015-05-29 21:00:00,0.21100000000000002,0.259,0.305 -2015-05-29 22:00:00,0.21100000000000002,0.259,0.305 -2015-05-29 23:00:00,0.21100000000000002,0.26,0.305 -2015-05-30 00:00:00,0.21100000000000002,0.259,0.305 -2015-05-30 01:00:00,0.21100000000000002,0.261,0.305 -2015-05-30 02:00:00,0.217,0.261,0.31 -2015-05-30 03:00:00,0.21899999999999997,0.259,0.313 -2015-05-30 04:00:00,0.217,0.259,0.313 -2015-05-30 05:00:00,0.21600000000000003,0.259,0.313 -2015-05-30 06:00:00,0.215,0.259,0.313 -2015-05-30 07:00:00,0.214,0.259,0.313 -2015-05-30 08:00:00,0.214,0.259,0.312 -2015-05-30 09:00:00,0.21600000000000003,0.259,0.309 -2015-05-30 10:00:00,0.21600000000000003,0.258,0.306 -2015-05-30 11:00:00,0.215,0.258,0.306 -2015-05-30 12:00:00,0.215,0.259,0.305 -2015-05-30 13:00:00,0.214,0.258,0.304 -2015-05-30 14:00:00,0.214,0.258,0.304 -2015-05-30 15:00:00,0.213,0.257,0.304 -2015-05-30 16:00:00,0.213,0.256,0.304 -2015-05-30 17:00:00,0.213,0.256,0.303 -2015-05-30 18:00:00,0.213,0.255,0.303 -2015-05-30 19:00:00,0.213,0.254,0.303 -2015-05-30 20:00:00,0.213,0.254,0.303 -2015-05-30 21:00:00,0.213,0.254,0.304 -2015-05-30 22:00:00,0.212,0.254,0.303 -2015-05-30 23:00:00,0.212,0.256,0.304 -2015-05-31 00:00:00,0.21100000000000002,0.256,0.303 -2015-05-31 01:00:00,0.21100000000000002,0.256,0.303 -2015-05-31 02:00:00,0.21100000000000002,0.256,0.303 -2015-05-31 03:00:00,0.21100000000000002,0.256,0.303 -2015-05-31 04:00:00,0.21,0.256,0.303 -2015-05-31 05:00:00,0.21,0.256,0.303 -2015-05-31 06:00:00,0.21,0.256,0.303 -2015-05-31 07:00:00,0.21,0.256,0.304 -2015-05-31 08:00:00,0.21,0.255,0.304 -2015-05-31 09:00:00,0.21,0.253,0.304 -2015-05-31 10:00:00,0.21,0.253,0.304 -2015-05-31 11:00:00,0.21,0.253,0.304 -2015-05-31 12:00:00,0.21,0.253,0.303 -2015-05-31 13:00:00,0.21,0.254,0.303 -2015-05-31 14:00:00,0.21,0.254,0.303 -2015-05-31 15:00:00,0.21,0.255,0.302 -2015-05-31 16:00:00,0.21,0.256,0.302 -2015-05-31 17:00:00,0.21,0.256,0.303 -2015-05-31 18:00:00,0.21,0.256,0.303 -2015-05-31 19:00:00,0.21,0.256,0.303 -2015-05-31 20:00:00,0.21,0.256,0.303 -2015-05-31 21:00:00,0.21,0.256,0.303 -2015-05-31 22:00:00,0.21,0.256,0.303 -2015-05-31 23:00:00,0.21,0.256,0.303 -2015-06-01 00:00:00,0.21,0.256,0.303 -2015-06-01 01:00:00,0.21,0.256,0.303 -2015-06-01 02:00:00,0.21,0.256,0.304 -2015-06-01 03:00:00,0.21100000000000002,0.256,0.306 -2015-06-01 04:00:00,0.21,0.256,0.308 -2015-06-01 05:00:00,0.209,0.256,0.31 -2015-06-01 06:00:00,0.209,0.256,0.31 -2015-06-01 07:00:00,0.209,0.256,0.31 -2015-06-01 08:00:00,0.21,0.256,0.31 -2015-06-01 09:00:00,0.21100000000000002,0.257,0.309 -2015-06-01 10:00:00,0.212,0.256,0.308 -2015-06-01 11:00:00,0.212,0.256,0.308 -2015-06-01 12:00:00,0.212,0.256,0.307 -2015-06-01 13:00:00,0.212,0.254,0.307 -2015-06-01 14:00:00,0.212,0.254,0.306 -2015-06-01 15:00:00,0.21100000000000002,0.254,0.304 -2015-06-01 16:00:00,0.21100000000000002,0.254,0.304 -2015-06-01 17:00:00,0.21100000000000002,0.253,0.303 -2015-06-01 18:00:00,0.21100000000000002,0.253,0.303 -2015-06-01 19:00:00,0.21100000000000002,0.253,0.303 -2015-06-01 20:00:00,0.21100000000000002,0.253,0.303 -2015-06-01 21:00:00,0.21100000000000002,0.253,0.302 -2015-06-01 22:00:00,0.21100000000000002,0.253,0.302 -2015-06-01 23:00:00,0.21,0.253,0.302 -2015-06-02 00:00:00,0.21,0.253,0.303 -2015-06-02 01:00:00,0.21,0.253,0.302 -2015-06-02 02:00:00,0.21,0.253,0.303 -2015-06-02 03:00:00,0.21,0.253,0.303 -2015-06-02 04:00:00,0.21,0.253,0.303 -2015-06-02 05:00:00,0.21,0.253,0.303 -2015-06-02 06:00:00,0.21,0.253,0.304 -2015-06-02 07:00:00,0.21,0.253,0.305 -2015-06-02 08:00:00,0.21,0.253,0.305 -2015-06-02 09:00:00,0.21,0.253,0.305 -2015-06-02 10:00:00,0.21,0.253,0.305 -2015-06-02 11:00:00,0.21,0.253,0.304 -2015-06-02 12:00:00,0.21,0.252,0.304 -2015-06-02 13:00:00,0.21,0.251,0.304 -2015-06-02 14:00:00,0.21,0.251,0.304 -2015-06-02 15:00:00,0.21,0.251,0.302 -2015-06-02 16:00:00,0.21,0.251,0.302 -2015-06-02 17:00:00,0.21,0.249,0.301 -2015-06-02 18:00:00,0.21,0.249,0.301 -2015-06-02 19:00:00,0.21,0.249,0.301 -2015-06-02 20:00:00,0.21,0.249,0.301 -2015-06-02 21:00:00,0.21,0.249,0.301 -2015-06-02 22:00:00,0.21,0.249,0.3 -2015-06-02 23:00:00,0.21,0.249,0.301 -2015-06-03 00:00:00,0.21,0.249,0.301 -2015-06-03 01:00:00,0.21,0.249,0.301 -2015-06-03 02:00:00,0.21,0.249,0.301 -2015-06-03 03:00:00,0.21,0.249,0.301 -2015-06-03 04:00:00,0.21,0.249,0.301 -2015-06-03 05:00:00,0.21,0.249,0.301 -2015-06-03 06:00:00,0.21,0.249,0.302 -2015-06-03 07:00:00,0.21,0.249,0.303 -2015-06-03 08:00:00,0.21,0.249,0.302 -2015-06-03 09:00:00,0.21,0.249,0.301 -2015-06-03 10:00:00,0.21,0.249,0.3 -2015-06-03 11:00:00,0.21,0.249,0.3 -2015-06-03 12:00:00,0.21,0.249,0.3 -2015-06-03 13:00:00,0.21,0.248,0.3 -2015-06-03 14:00:00,0.21,0.247,0.3 -2015-06-03 15:00:00,0.21,0.247,0.299 -2015-06-03 16:00:00,0.21,0.247,0.299 -2015-06-03 17:00:00,0.21,0.24600000000000002,0.298 -2015-06-03 18:00:00,0.21,0.24600000000000002,0.298 -2015-06-03 19:00:00,0.209,0.24600000000000002,0.298 -2015-06-03 20:00:00,0.21,0.24600000000000002,0.298 -2015-06-03 21:00:00,0.21,0.24600000000000002,0.298 -2015-06-03 22:00:00,0.209,0.24600000000000002,0.298 -2015-06-03 23:00:00,0.209,0.24600000000000002,0.298 -2015-06-04 00:00:00,0.209,0.24600000000000002,0.298 -2015-06-04 01:00:00,0.20800000000000002,0.247,0.298 -2015-06-04 02:00:00,0.20800000000000002,0.247,0.298 -2015-06-04 03:00:00,0.20800000000000002,0.247,0.298 -2015-06-04 04:00:00,0.20800000000000002,0.247,0.298 -2015-06-04 05:00:00,0.20800000000000002,0.247,0.298 -2015-06-04 06:00:00,0.20800000000000002,0.247,0.298 -2015-06-04 07:00:00,0.20800000000000002,0.24600000000000002,0.298 -2015-06-04 08:00:00,0.20800000000000002,0.24600000000000002,0.298 -2015-06-04 09:00:00,0.20800000000000002,0.24600000000000002,0.298 -2015-06-04 10:00:00,0.207,0.24600000000000002,0.298 -2015-06-04 11:00:00,0.207,0.24600000000000002,0.297 -2015-06-04 12:00:00,0.207,0.24600000000000002,0.29600000000000004 -2015-06-04 13:00:00,0.207,0.24600000000000002,0.29600000000000004 -2015-06-04 14:00:00,0.207,0.245,0.295 -2015-06-04 15:00:00,0.207,0.245,0.295 -2015-06-04 16:00:00,0.207,0.244,0.294 -2015-06-04 17:00:00,0.207,0.244,0.294 -2015-06-04 18:00:00,0.207,0.244,0.293 -2015-06-04 19:00:00,0.207,0.244,0.293 -2015-06-04 20:00:00,0.207,0.244,0.293 -2015-06-04 21:00:00,0.207,0.244,0.293 -2015-06-04 22:00:00,0.207,0.244,0.293 -2015-06-04 23:00:00,0.207,0.244,0.293 -2015-06-05 00:00:00,0.207,0.244,0.293 -2015-06-05 01:00:00,0.20600000000000002,0.244,0.293 -2015-06-05 02:00:00,0.20600000000000002,0.244,0.293 -2015-06-05 03:00:00,0.20600000000000002,0.244,0.293 -2015-06-05 04:00:00,0.20600000000000002,0.245,0.293 -2015-06-05 05:00:00,0.205,0.245,0.293 -2015-06-05 06:00:00,0.205,0.245,0.293 -2015-06-05 07:00:00,0.20600000000000002,0.245,0.293 -2015-06-05 08:00:00,0.20600000000000002,0.245,0.294 -2015-06-05 09:00:00,0.205,0.245,0.293 -2015-06-05 10:00:00,0.205,0.245,0.293 -2015-06-05 11:00:00,0.205,0.245,0.292 -2015-06-05 12:00:00,0.205,0.244,0.292 -2015-06-05 13:00:00,0.205,0.244,0.29100000000000004 -2015-06-05 14:00:00,0.20600000000000002,0.243,0.29100000000000004 -2015-06-05 15:00:00,0.20600000000000002,0.242,0.29 -2015-06-05 16:00:00,0.20600000000000002,0.242,0.29 -2015-06-05 17:00:00,0.20600000000000002,0.242,0.289 -2015-06-05 18:00:00,0.20600000000000002,0.242,0.289 -2015-06-05 19:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-05 20:00:00,0.20600000000000002,0.242,0.289 -2015-06-05 21:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-05 22:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-05 23:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-06 00:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-06 01:00:00,0.20600000000000002,0.242,0.289 -2015-06-06 02:00:00,0.20600000000000002,0.242,0.289 -2015-06-06 03:00:00,0.20600000000000002,0.242,0.289 -2015-06-06 04:00:00,0.20600000000000002,0.242,0.289 -2015-06-06 05:00:00,0.20600000000000002,0.242,0.29 -2015-06-06 06:00:00,0.21600000000000003,0.242,0.292 -2015-06-06 07:00:00,0.217,0.242,0.293 -2015-06-06 08:00:00,0.215,0.242,0.292 -2015-06-06 09:00:00,0.214,0.242,0.292 -2015-06-06 10:00:00,0.213,0.242,0.29 -2015-06-06 11:00:00,0.21100000000000002,0.242,0.29 -2015-06-06 12:00:00,0.21100000000000002,0.242,0.29 -2015-06-06 13:00:00,0.21100000000000002,0.24100000000000002,0.289 -2015-06-06 14:00:00,0.21,0.24100000000000002,0.289 -2015-06-06 15:00:00,0.21,0.24100000000000002,0.28800000000000003 -2015-06-06 16:00:00,0.209,0.239,0.28800000000000003 -2015-06-06 17:00:00,0.209,0.239,0.28800000000000003 -2015-06-06 18:00:00,0.209,0.239,0.28800000000000003 -2015-06-06 19:00:00,0.20800000000000002,0.239,0.287 -2015-06-06 20:00:00,0.20800000000000002,0.239,0.287 -2015-06-06 21:00:00,0.20800000000000002,0.239,0.287 -2015-06-06 22:00:00,0.20800000000000002,0.239,0.287 -2015-06-06 23:00:00,0.20800000000000002,0.239,0.287 -2015-06-07 00:00:00,0.207,0.239,0.287 -2015-06-07 01:00:00,0.207,0.24100000000000002,0.287 -2015-06-07 02:00:00,0.207,0.24100000000000002,0.287 -2015-06-07 03:00:00,0.207,0.24100000000000002,0.287 -2015-06-07 04:00:00,0.207,0.24100000000000002,0.287 -2015-06-07 05:00:00,0.20600000000000002,0.24100000000000002,0.287 -2015-06-07 06:00:00,0.20600000000000002,0.242,0.287 -2015-06-07 07:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-07 08:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-07 09:00:00,0.20600000000000002,0.242,0.28800000000000003 -2015-06-07 10:00:00,0.20600000000000002,0.242,0.287 -2015-06-07 11:00:00,0.20600000000000002,0.24,0.287 -2015-06-07 12:00:00,0.205,0.24100000000000002,0.28600000000000003 -2015-06-07 13:00:00,0.205,0.24100000000000002,0.28600000000000003 -2015-06-07 14:00:00,0.205,0.24100000000000002,0.285 -2015-06-07 15:00:00,0.205,0.24100000000000002,0.285 -2015-06-07 16:00:00,0.205,0.24,0.284 -2015-06-07 17:00:00,0.205,0.239,0.284 -2015-06-07 18:00:00,0.205,0.239,0.28300000000000003 -2015-06-07 19:00:00,0.204,0.239,0.28300000000000003 -2015-06-07 20:00:00,0.204,0.239,0.28300000000000003 -2015-06-07 21:00:00,0.204,0.239,0.28300000000000003 -2015-06-07 22:00:00,0.204,0.239,0.28300000000000003 -2015-06-07 23:00:00,0.204,0.239,0.28300000000000003 -2015-06-08 00:00:00,0.203,0.24,0.28300000000000003 -2015-06-08 01:00:00,0.203,0.24100000000000002,0.28300000000000003 -2015-06-08 02:00:00,0.203,0.24100000000000002,0.28300000000000003 -2015-06-08 03:00:00,0.203,0.24100000000000002,0.28300000000000003 -2015-06-08 04:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 -2015-06-08 05:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 -2015-06-08 06:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 -2015-06-08 07:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 -2015-06-08 08:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 -2015-06-08 09:00:00,0.20199999999999999,0.24,0.28300000000000003 -2015-06-08 10:00:00,0.20199999999999999,0.239,0.28300000000000003 -2015-06-08 11:00:00,0.20199999999999999,0.239,0.282 -2015-06-08 12:00:00,0.20199999999999999,0.239,0.282 -2015-06-08 13:00:00,0.20199999999999999,0.239,0.282 -2015-06-08 14:00:00,0.20199999999999999,0.23800000000000002,0.281 -2015-06-08 15:00:00,0.20199999999999999,0.237,0.281 -2015-06-08 16:00:00,0.20199999999999999,0.237,0.28 -2015-06-08 17:00:00,0.20199999999999999,0.237,0.28 -2015-06-08 18:00:00,0.20199999999999999,0.23600000000000002,0.28 -2015-06-08 19:00:00,0.20199999999999999,0.23600000000000002,0.28 -2015-06-08 20:00:00,0.20199999999999999,0.23600000000000002,0.28 -2015-06-08 21:00:00,0.20199999999999999,0.23600000000000002,0.27899999999999997 -2015-06-08 22:00:00,0.20199999999999999,0.23600000000000002,0.27899999999999997 -2015-06-08 23:00:00,0.20199999999999999,0.237,0.27899999999999997 -2015-06-09 00:00:00,0.201,0.237,0.27899999999999997 -2015-06-09 01:00:00,0.201,0.237,0.27899999999999997 -2015-06-09 02:00:00,0.201,0.23800000000000002,0.27899999999999997 -2015-06-09 03:00:00,0.201,0.23800000000000002,0.27899999999999997 -2015-06-09 04:00:00,0.201,0.23800000000000002,0.27899999999999997 -2015-06-09 05:00:00,0.201,0.23800000000000002,0.27899999999999997 -2015-06-09 06:00:00,0.201,0.23800000000000002,0.27899999999999997 -2015-06-09 07:00:00,0.201,0.23800000000000002,0.27899999999999997 -2015-06-09 08:00:00,0.201,0.23800000000000002,0.27899999999999997 -2015-06-09 09:00:00,0.201,0.237,0.27899999999999997 -2015-06-09 10:00:00,0.201,0.237,0.27899999999999997 -2015-06-09 11:00:00,0.201,0.237,0.27899999999999997 -2015-06-09 12:00:00,0.201,0.237,0.278 -2015-06-09 13:00:00,0.2,0.237,0.278 -2015-06-09 14:00:00,0.19899999999999998,0.237,0.278 -2015-06-09 15:00:00,0.19899999999999998,0.23600000000000002,0.278 -2015-06-09 16:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-09 17:00:00,0.19699999999999998,0.23600000000000002,0.27699999999999997 -2015-06-09 18:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-09 19:00:00,0.19899999999999998,0.23600000000000002,0.27699999999999997 -2015-06-09 20:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-09 21:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-09 22:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-09 23:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-10 00:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-10 01:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-10 02:00:00,0.198,0.23600000000000002,0.276 -2015-06-10 03:00:00,0.198,0.23600000000000002,0.276 -2015-06-10 04:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-10 05:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-10 06:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-10 07:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-10 08:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-10 09:00:00,0.198,0.23600000000000002,0.27699999999999997 -2015-06-10 10:00:00,0.198,0.23600000000000002,0.276 -2015-06-10 11:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-10 12:00:00,0.19899999999999998,0.23600000000000002,0.276 -2015-06-10 13:00:00,0.19899999999999998,0.235,0.276 -2015-06-10 14:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-10 15:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-10 16:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-10 17:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-10 18:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-10 19:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-10 20:00:00,0.19899999999999998,0.23399999999999999,0.27399999999999997 -2015-06-10 21:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-10 22:00:00,0.19899999999999998,0.23399999999999999,0.27399999999999997 -2015-06-10 23:00:00,0.19899999999999998,0.23399999999999999,0.27399999999999997 -2015-06-11 00:00:00,0.19899999999999998,0.235,0.275 -2015-06-11 01:00:00,0.19899999999999998,0.23600000000000002,0.275 -2015-06-11 02:00:00,0.19899999999999998,0.23600000000000002,0.275 -2015-06-11 03:00:00,0.198,0.23600000000000002,0.275 -2015-06-11 04:00:00,0.19899999999999998,0.23600000000000002,0.275 -2015-06-11 05:00:00,0.198,0.23600000000000002,0.275 -2015-06-11 06:00:00,0.19899999999999998,0.235,0.275 -2015-06-11 07:00:00,0.198,0.235,0.275 -2015-06-11 08:00:00,0.19899999999999998,0.235,0.275 -2015-06-11 09:00:00,0.19899999999999998,0.23399999999999999,0.275 -2015-06-11 10:00:00,0.198,0.23399999999999999,0.275 -2015-06-11 11:00:00,0.198,0.233,0.27399999999999997 -2015-06-11 12:00:00,0.198,0.23199999999999998,0.27399999999999997 -2015-06-11 13:00:00,0.198,0.23199999999999998,0.27399999999999997 -2015-06-11 14:00:00,0.19899999999999998,0.23199999999999998,0.273 -2015-06-11 15:00:00,0.19899999999999998,0.23199999999999998,0.273 -2015-06-11 16:00:00,0.19899999999999998,0.231,0.273 -2015-06-11 17:00:00,0.19899999999999998,0.231,0.272 -2015-06-11 18:00:00,0.19899999999999998,0.231,0.272 -2015-06-11 19:00:00,0.19899999999999998,0.231,0.272 -2015-06-11 20:00:00,0.19899999999999998,0.231,0.272 -2015-06-11 21:00:00,0.19899999999999998,0.231,0.272 -2015-06-11 22:00:00,0.198,0.23199999999999998,0.272 -2015-06-11 23:00:00,0.198,0.23199999999999998,0.272 -2015-06-12 00:00:00,0.198,0.23199999999999998,0.272 -2015-06-12 01:00:00,0.198,0.23199999999999998,0.272 -2015-06-12 02:00:00,0.19699999999999998,0.23199999999999998,0.272 -2015-06-12 03:00:00,0.19699999999999998,0.23199999999999998,0.272 -2015-06-12 04:00:00,0.19699999999999998,0.23199999999999998,0.272 -2015-06-12 05:00:00,0.19699999999999998,0.23199999999999998,0.272 -2015-06-12 06:00:00,0.19699999999999998,0.23199999999999998,0.272 -2015-06-12 07:00:00,0.19699999999999998,0.23199999999999998,0.272 -2015-06-12 08:00:00,0.19699999999999998,0.231,0.272 -2015-06-12 09:00:00,0.19699999999999998,0.23,0.272 -2015-06-12 10:00:00,0.19699999999999998,0.23,0.272 -2015-06-12 11:00:00,0.19699999999999998,0.23,0.272 -2015-06-12 12:00:00,0.19699999999999998,0.23,0.272 -2015-06-12 13:00:00,0.198,0.23,0.271 -2015-06-12 14:00:00,0.198,0.23,0.271 -2015-06-12 15:00:00,0.198,0.23,0.27 -2015-06-12 16:00:00,0.198,0.231,0.27 -2015-06-12 17:00:00,0.198,0.23199999999999998,0.27 -2015-06-12 18:00:00,0.198,0.23199999999999998,0.27 -2015-06-12 19:00:00,0.198,0.233,0.27 -2015-06-12 20:00:00,0.198,0.23399999999999999,0.27 -2015-06-12 21:00:00,0.19899999999999998,0.23399999999999999,0.27 -2015-06-12 22:00:00,0.198,0.23399999999999999,0.27 -2015-06-12 23:00:00,0.198,0.23399999999999999,0.27 -2015-06-13 00:00:00,0.198,0.23399999999999999,0.27 -2015-06-13 01:00:00,0.198,0.235,0.27 -2015-06-13 02:00:00,0.198,0.235,0.27 -2015-06-13 03:00:00,0.198,0.23600000000000002,0.27 -2015-06-13 04:00:00,0.198,0.23600000000000002,0.27 -2015-06-13 05:00:00,0.198,0.23600000000000002,0.271 -2015-06-13 06:00:00,0.19699999999999998,0.23600000000000002,0.271 -2015-06-13 07:00:00,0.198,0.23600000000000002,0.271 -2015-06-13 08:00:00,0.198,0.23600000000000002,0.271 -2015-06-13 09:00:00,0.198,0.23600000000000002,0.271 -2015-06-13 10:00:00,0.198,0.23600000000000002,0.271 -2015-06-13 11:00:00,0.198,0.235,0.27 -2015-06-13 12:00:00,0.198,0.235,0.27 -2015-06-13 13:00:00,0.198,0.23399999999999999,0.27 -2015-06-13 14:00:00,0.198,0.23399999999999999,0.27 -2015-06-13 15:00:00,0.198,0.23399999999999999,0.27 -2015-06-13 16:00:00,0.198,0.23399999999999999,0.27 -2015-06-13 17:00:00,0.198,0.23399999999999999,0.26899999999999996 -2015-06-13 18:00:00,0.198,0.23199999999999998,0.26899999999999996 -2015-06-13 19:00:00,0.198,0.23199999999999998,0.26899999999999996 -2015-06-13 20:00:00,0.198,0.23199999999999998,0.26899999999999996 -2015-06-13 21:00:00,0.198,0.233,0.26899999999999996 -2015-06-13 22:00:00,0.198,0.23399999999999999,0.26899999999999996 -2015-06-13 23:00:00,0.19699999999999998,0.23399999999999999,0.26899999999999996 -2015-06-14 00:00:00,0.19699999999999998,0.23399999999999999,0.26899999999999996 -2015-06-14 01:00:00,0.19699999999999998,0.23399999999999999,0.26899999999999996 -2015-06-14 02:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 03:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 04:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 05:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 06:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 07:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 08:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 09:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 10:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 11:00:00,0.196,0.23399999999999999,0.26899999999999996 -2015-06-14 12:00:00,0.196,0.23399999999999999,0.268 -2015-06-14 13:00:00,0.196,0.23399999999999999,0.268 -2015-06-14 14:00:00,0.196,0.23399999999999999,0.268 -2015-06-14 15:00:00,0.196,0.235,0.267 -2015-06-14 16:00:00,0.196,0.235,0.267 -2015-06-14 17:00:00,0.196,0.235,0.267 -2015-06-14 18:00:00,0.196,0.235,0.267 -2015-06-14 19:00:00,0.196,0.235,0.266 -2015-06-14 20:00:00,0.196,0.235,0.266 -2015-06-14 21:00:00,0.196,0.235,0.266 -2015-06-14 22:00:00,0.196,0.23600000000000002,0.266 -2015-06-14 23:00:00,0.196,0.23600000000000002,0.266 -2015-06-15 00:00:00,0.196,0.23600000000000002,0.266 -2015-06-15 01:00:00,0.196,0.23600000000000002,0.267 -2015-06-15 02:00:00,0.195,0.23600000000000002,0.266 -2015-06-15 03:00:00,0.195,0.23600000000000002,0.266 -2015-06-15 04:00:00,0.195,0.23600000000000002,0.266 -2015-06-15 05:00:00,0.195,0.23600000000000002,0.267 -2015-06-15 06:00:00,0.195,0.23600000000000002,0.267 -2015-06-15 07:00:00,0.195,0.235,0.267 -2015-06-15 08:00:00,0.195,0.23600000000000002,0.267 -2015-06-15 09:00:00,0.195,0.235,0.267 -2015-06-15 10:00:00,0.195,0.235,0.266 -2015-06-15 11:00:00,0.195,0.23399999999999999,0.266 -2015-06-15 12:00:00,0.195,0.23399999999999999,0.266 -2015-06-15 13:00:00,0.195,0.23399999999999999,0.266 -2015-06-15 14:00:00,0.195,0.23399999999999999,0.266 -2015-06-15 15:00:00,0.195,0.23399999999999999,0.265 -2015-06-15 16:00:00,0.195,0.23399999999999999,0.265 -2015-06-15 17:00:00,0.195,0.23399999999999999,0.265 -2015-06-15 18:00:00,0.195,0.235,0.265 -2015-06-15 19:00:00,0.195,0.23600000000000002,0.265 -2015-06-15 20:00:00,0.195,0.23399999999999999,0.265 -2015-06-15 21:00:00,0.195,0.235,0.265 -2015-06-15 22:00:00,0.19399999999999998,0.23199999999999998,0.265 -2015-06-15 23:00:00,0.19399999999999998,0.23199999999999998,0.265 -2015-06-16 00:00:00,0.19399999999999998,0.233,0.265 -2015-06-16 01:00:00,0.19399999999999998,0.23399999999999999,0.265 -2015-06-16 02:00:00,0.19399999999999998,0.23399999999999999,0.265 -2015-06-16 03:00:00,0.19399999999999998,0.23399999999999999,0.265 -2015-06-16 04:00:00,0.19399999999999998,0.23399999999999999,0.265 -2015-06-16 05:00:00,0.193,0.23399999999999999,0.265 -2015-06-16 06:00:00,0.193,0.23399999999999999,0.265 -2015-06-16 07:00:00,0.193,0.235,0.265 -2015-06-16 08:00:00,0.193,0.235,0.265 -2015-06-16 09:00:00,0.193,0.23600000000000002,0.265 -2015-06-16 10:00:00,0.193,0.23399999999999999,0.265 -2015-06-16 11:00:00,0.193,0.233,0.264 -2015-06-16 12:00:00,0.193,0.23199999999999998,0.264 -2015-06-16 13:00:00,0.193,0.233,0.264 -2015-06-16 14:00:00,0.193,0.233,0.263 -2015-06-16 15:00:00,0.19399999999999998,0.23399999999999999,0.263 -2015-06-16 16:00:00,0.19399999999999998,0.23399999999999999,0.263 -2015-06-16 17:00:00,0.19399999999999998,0.23399999999999999,0.263 -2015-06-16 18:00:00,0.19399999999999998,0.23399999999999999,0.263 -2015-06-16 19:00:00,0.19399999999999998,0.23600000000000002,0.263 -2015-06-16 20:00:00,0.193,0.24600000000000002,0.263 -2015-06-16 21:00:00,0.193,0.243,0.263 -2015-06-16 22:00:00,0.193,0.242,0.263 -2015-06-16 23:00:00,0.193,0.242,0.263 -2015-06-17 00:00:00,0.192,0.247,0.263 -2015-06-17 01:00:00,0.192,0.258,0.263 -2015-06-17 02:00:00,0.191,0.257,0.262 -2015-06-17 03:00:00,0.191,0.258,0.262 -2015-06-17 04:00:00,0.191,0.261,0.262 -2015-06-17 05:00:00,0.191,0.261,0.262 -2015-06-17 06:00:00,0.191,0.261,0.262 -2015-06-17 07:00:00,0.191,0.259,0.262 -2015-06-17 08:00:00,0.191,0.259,0.262 -2015-06-17 09:00:00,0.191,0.259,0.262 -2015-06-17 10:00:00,0.191,0.259,0.262 -2015-06-17 11:00:00,0.191,0.259,0.262 -2015-06-17 12:00:00,0.191,0.259,0.262 -2015-06-17 13:00:00,0.192,0.259,0.261 -2015-06-17 14:00:00,0.192,0.256,0.261 -2015-06-17 15:00:00,0.192,0.261,0.261 -2015-06-17 16:00:00,0.192,0.266,0.26 -2015-06-17 17:00:00,0.192,0.267,0.26 -2015-06-17 18:00:00,0.192,0.266,0.26 -2015-06-17 19:00:00,0.192,0.266,0.26 -2015-06-17 20:00:00,0.192,0.266,0.26 -2015-06-17 21:00:00,0.192,0.266,0.26 -2015-06-17 22:00:00,0.192,0.265,0.26 -2015-06-17 23:00:00,0.192,0.264,0.26 -2015-06-18 00:00:00,0.192,0.264,0.26 -2015-06-18 01:00:00,0.191,0.264,0.26 -2015-06-18 02:00:00,0.192,0.264,0.26 -2015-06-18 03:00:00,0.192,0.264,0.26 -2015-06-18 04:00:00,0.192,0.264,0.26 -2015-06-18 05:00:00,0.193,0.264,0.26 -2015-06-18 06:00:00,0.193,0.264,0.262 -2015-06-18 07:00:00,0.193,0.264,0.264 -2015-06-18 08:00:00,0.204,0.263,0.264 -2015-06-18 09:00:00,0.201,0.263,0.264 -2015-06-18 10:00:00,0.201,0.263,0.264 -2015-06-18 11:00:00,0.2,0.263,0.264 -2015-06-18 12:00:00,0.2,0.263,0.263 -2015-06-18 13:00:00,0.2,0.263,0.262 -2015-06-18 14:00:00,0.19899999999999998,0.263,0.262 -2015-06-18 15:00:00,0.19899999999999998,0.263,0.261 -2015-06-18 16:00:00,0.19899999999999998,0.264,0.261 -2015-06-18 17:00:00,0.19899999999999998,0.264,0.261 -2015-06-18 18:00:00,0.198,0.264,0.261 -2015-06-18 19:00:00,0.198,0.264,0.261 -2015-06-18 20:00:00,0.198,0.264,0.261 -2015-06-18 21:00:00,0.198,0.264,0.261 -2015-06-18 22:00:00,0.198,0.264,0.261 -2015-06-18 23:00:00,0.198,0.264,0.261 -2015-06-19 00:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 01:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 02:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 03:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 04:00:00,0.196,0.264,0.261 -2015-06-19 05:00:00,0.196,0.264,0.261 -2015-06-19 06:00:00,0.196,0.264,0.261 -2015-06-19 07:00:00,0.196,0.264,0.261 -2015-06-19 08:00:00,0.196,0.264,0.261 -2015-06-19 09:00:00,0.196,0.264,0.261 -2015-06-19 10:00:00,0.196,0.264,0.261 -2015-06-19 11:00:00,0.196,0.264,0.261 -2015-06-19 12:00:00,0.196,0.264,0.261 -2015-06-19 13:00:00,0.196,0.264,0.261 -2015-06-19 14:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 15:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 16:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 17:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 18:00:00,0.19699999999999998,0.263,0.261 -2015-06-19 19:00:00,0.19699999999999998,0.263,0.261 -2015-06-19 20:00:00,0.19699999999999998,0.263,0.261 -2015-06-19 21:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 22:00:00,0.19699999999999998,0.264,0.261 -2015-06-19 23:00:00,0.19699999999999998,0.264,0.261 -2015-06-20 00:00:00,0.19699999999999998,0.264,0.261 -2015-06-20 01:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 02:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 03:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 04:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 05:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 06:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 07:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 08:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 09:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 10:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 11:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 12:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 13:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 14:00:00,0.19699999999999998,0.264,0.262 -2015-06-20 15:00:00,0.19699999999999998,0.263,0.262 -2015-06-20 16:00:00,0.19699999999999998,0.263,0.262 -2015-06-20 17:00:00,0.19699999999999998,0.262,0.262 -2015-06-20 18:00:00,0.19699999999999998,0.262,0.261 -2015-06-20 19:00:00,0.19699999999999998,0.263,0.261 -2015-06-20 20:00:00,0.19699999999999998,0.263,0.261 -2015-06-20 21:00:00,0.19699999999999998,0.263,0.261 -2015-06-20 22:00:00,0.19699999999999998,0.263,0.261 -2015-06-20 23:00:00,0.19699999999999998,0.263,0.261 -2015-06-21 00:00:00,0.196,0.263,0.261 -2015-06-21 01:00:00,0.196,0.263,0.261 -2015-06-21 02:00:00,0.196,0.263,0.261 -2015-06-21 03:00:00,0.196,0.263,0.262 -2015-06-21 04:00:00,0.196,0.263,0.262 -2015-06-21 05:00:00,0.196,0.263,0.262 -2015-06-21 06:00:00,0.196,0.263,0.262 -2015-06-21 07:00:00,0.196,0.263,0.262 -2015-06-21 08:00:00,0.196,0.263,0.263 -2015-06-21 09:00:00,0.19699999999999998,0.263,0.263 -2015-06-21 10:00:00,0.19699999999999998,0.263,0.262 -2015-06-21 11:00:00,0.19699999999999998,0.262,0.262 -2015-06-21 12:00:00,0.19699999999999998,0.259,0.262 -2015-06-21 13:00:00,0.19699999999999998,0.259,0.262 -2015-06-21 14:00:00,0.19699999999999998,0.261,0.262 -2015-06-21 15:00:00,0.19699999999999998,0.262,0.262 -2015-06-21 16:00:00,0.19699999999999998,0.263,0.262 -2015-06-21 17:00:00,0.198,0.263,0.262 -2015-06-21 18:00:00,0.198,0.263,0.262 -2015-06-21 19:00:00,0.214,0.263,0.265 -2015-06-21 20:00:00,0.213,0.263,0.266 -2015-06-21 21:00:00,0.21100000000000002,0.263,0.266 -2015-06-21 22:00:00,0.21,0.263,0.266 -2015-06-21 23:00:00,0.209,0.263,0.266 -2015-06-22 00:00:00,0.20800000000000002,0.263,0.266 -2015-06-22 01:00:00,0.207,0.264,0.266 -2015-06-22 02:00:00,0.207,0.264,0.266 -2015-06-22 03:00:00,0.207,0.264,0.266 -2015-06-22 04:00:00,0.20600000000000002,0.264,0.266 -2015-06-22 05:00:00,0.20600000000000002,0.264,0.267 -2015-06-22 06:00:00,0.205,0.264,0.267 -2015-06-22 07:00:00,0.205,0.263,0.267 -2015-06-22 08:00:00,0.20600000000000002,0.263,0.267 -2015-06-22 09:00:00,0.20600000000000002,0.263,0.266 -2015-06-22 10:00:00,0.20600000000000002,0.263,0.266 -2015-06-22 11:00:00,0.20600000000000002,0.263,0.267 -2015-06-22 12:00:00,0.207,0.263,0.266 -2015-06-22 13:00:00,0.207,0.263,0.265 -2015-06-22 14:00:00,0.207,0.262,0.265 -2015-06-22 15:00:00,0.207,0.261,0.265 -2015-06-22 16:00:00,0.231,0.261,0.287 -2015-06-22 17:00:00,0.243,0.261,0.287 -2015-06-22 18:00:00,0.24,0.261,0.27699999999999997 -2015-06-22 19:00:00,0.23800000000000002,0.261,0.275 -2015-06-22 20:00:00,0.23600000000000002,0.261,0.275 -2015-06-22 21:00:00,0.254,0.261,0.29 -2015-06-22 22:00:00,0.266,0.261,0.294 -2015-06-22 23:00:00,0.266,0.261,0.285 -2015-06-23 00:00:00,0.278,0.261,0.302 -2015-06-23 01:00:00,0.275,0.261,0.309 -2015-06-23 02:00:00,0.26899999999999996,0.262,0.301 -2015-06-23 03:00:00,0.266,0.262,0.293 -2015-06-23 04:00:00,0.263,0.262,0.289 -2015-06-23 05:00:00,0.262,0.262,0.287 -2015-06-23 06:00:00,0.26,0.262,0.285 -2015-06-23 07:00:00,0.259,0.262,0.284 -2015-06-23 08:00:00,0.258,0.262,0.28300000000000003 -2015-06-23 09:00:00,0.259,0.261,0.282 -2015-06-23 10:00:00,0.26,0.261,0.281 -2015-06-23 11:00:00,0.264,0.262,0.28300000000000003 -2015-06-23 12:00:00,0.275,0.262,0.282 -2015-06-23 13:00:00,0.275,0.261,0.281 -2015-06-23 14:00:00,0.278,0.261,0.28 -2015-06-23 15:00:00,0.27699999999999997,0.261,0.27899999999999997 -2015-06-23 16:00:00,0.275,0.261,0.27899999999999997 -2015-06-23 17:00:00,0.275,0.259,0.27899999999999997 -2015-06-23 18:00:00,0.27399999999999997,0.259,0.27899999999999997 -2015-06-23 19:00:00,0.273,0.259,0.278 -2015-06-23 20:00:00,0.272,0.259,0.278 -2015-06-23 21:00:00,0.271,0.259,0.278 -2015-06-23 22:00:00,0.27,0.259,0.278 -2015-06-23 23:00:00,0.26899999999999996,0.259,0.278 -2015-06-24 00:00:00,0.26899999999999996,0.259,0.278 -2015-06-24 01:00:00,0.268,0.261,0.278 -2015-06-24 02:00:00,0.268,0.261,0.278 -2015-06-24 03:00:00,0.267,0.26,0.278 -2015-06-24 04:00:00,0.266,0.259,0.278 -2015-06-24 05:00:00,0.265,0.259,0.278 -2015-06-24 06:00:00,0.265,0.259,0.278 -2015-06-24 07:00:00,0.264,0.259,0.278 -2015-06-24 08:00:00,0.264,0.259,0.278 -2015-06-24 09:00:00,0.264,0.259,0.27699999999999997 -2015-06-24 10:00:00,0.264,0.259,0.27699999999999997 -2015-06-24 11:00:00,0.263,0.259,0.27699999999999997 -2015-06-24 12:00:00,0.263,0.259,0.27699999999999997 -2015-06-24 13:00:00,0.263,0.259,0.27699999999999997 -2015-06-24 14:00:00,0.262,0.259,0.276 -2015-06-24 15:00:00,0.262,0.258,0.276 -2015-06-24 16:00:00,0.261,0.258,0.276 -2015-06-24 17:00:00,0.26,0.256,0.275 -2015-06-24 18:00:00,0.259,0.256,0.275 -2015-06-24 19:00:00,0.259,0.256,0.275 -2015-06-24 20:00:00,0.259,0.256,0.275 -2015-06-24 21:00:00,0.258,0.256,0.275 -2015-06-24 22:00:00,0.258,0.256,0.275 -2015-06-24 23:00:00,0.258,0.256,0.275 -2015-06-25 00:00:00,0.258,0.256,0.275 -2015-06-25 01:00:00,0.258,0.257,0.275 -2015-06-25 02:00:00,0.257,0.258,0.275 -2015-06-25 03:00:00,0.257,0.258,0.275 -2015-06-25 04:00:00,0.257,0.258,0.275 -2015-06-25 05:00:00,0.257,0.257,0.275 -2015-06-25 06:00:00,0.257,0.257,0.275 -2015-06-25 07:00:00,0.256,0.256,0.275 -2015-06-25 08:00:00,0.256,0.256,0.276 -2015-06-25 09:00:00,0.255,0.256,0.276 -2015-06-25 10:00:00,0.255,0.256,0.276 -2015-06-25 11:00:00,0.254,0.256,0.275 -2015-06-25 12:00:00,0.253,0.256,0.275 -2015-06-25 13:00:00,0.252,0.256,0.275 -2015-06-25 14:00:00,0.25,0.254,0.27399999999999997 -2015-06-25 15:00:00,0.249,0.254,0.27399999999999997 -2015-06-25 16:00:00,0.248,0.253,0.27399999999999997 -2015-06-25 17:00:00,0.248,0.253,0.27399999999999997 -2015-06-25 18:00:00,0.247,0.253,0.27399999999999997 -2015-06-25 19:00:00,0.24600000000000002,0.253,0.27399999999999997 -2015-06-25 20:00:00,0.24600000000000002,0.253,0.273 -2015-06-25 21:00:00,0.24600000000000002,0.253,0.273 -2015-06-25 22:00:00,0.24600000000000002,0.253,0.273 -2015-06-25 23:00:00,0.24600000000000002,0.253,0.273 -2015-06-26 00:00:00,0.24600000000000002,0.253,0.273 -2015-06-26 01:00:00,0.24600000000000002,0.253,0.27399999999999997 -2015-06-26 02:00:00,0.245,0.253,0.273 -2015-06-26 03:00:00,0.245,0.253,0.27399999999999997 -2015-06-26 04:00:00,0.245,0.253,0.27399999999999997 -2015-06-26 05:00:00,0.245,0.253,0.27399999999999997 -2015-06-26 06:00:00,0.245,0.253,0.27399999999999997 -2015-06-26 07:00:00,0.245,0.253,0.27399999999999997 -2015-06-26 08:00:00,0.245,0.253,0.27399999999999997 -2015-06-26 09:00:00,0.244,0.253,0.27399999999999997 -2015-06-26 10:00:00,0.244,0.253,0.27399999999999997 -2015-06-26 11:00:00,0.242,0.253,0.27399999999999997 -2015-06-26 12:00:00,0.24100000000000002,0.253,0.273 -2015-06-26 13:00:00,0.239,0.253,0.273 -2015-06-26 14:00:00,0.23800000000000002,0.251,0.273 -2015-06-26 15:00:00,0.237,0.251,0.272 -2015-06-26 16:00:00,0.23600000000000002,0.249,0.272 -2015-06-26 17:00:00,0.23600000000000002,0.249,0.272 -2015-06-26 18:00:00,0.23600000000000002,0.249,0.272 -2015-06-26 19:00:00,0.23600000000000002,0.249,0.272 -2015-06-26 20:00:00,0.23600000000000002,0.249,0.272 -2015-06-26 21:00:00,0.23600000000000002,0.249,0.272 -2015-06-26 22:00:00,0.23600000000000002,0.249,0.272 -2015-06-26 23:00:00,0.23600000000000002,0.249,0.273 -2015-06-27 00:00:00,0.23600000000000002,0.249,0.273 -2015-06-27 01:00:00,0.23600000000000002,0.249,0.273 -2015-06-27 02:00:00,0.23600000000000002,0.249,0.273 -2015-06-27 03:00:00,0.23600000000000002,0.249,0.273 -2015-06-27 04:00:00,0.23600000000000002,0.249,0.273 -2015-06-27 05:00:00,0.23600000000000002,0.249,0.273 -2015-06-27 06:00:00,0.23600000000000002,0.249,0.27399999999999997 -2015-06-27 07:00:00,0.235,0.249,0.275 -2015-06-27 08:00:00,0.23600000000000002,0.249,0.27699999999999997 -2015-06-27 09:00:00,0.245,0.249,0.278 -2015-06-27 10:00:00,0.248,0.249,0.27699999999999997 -2015-06-27 11:00:00,0.25,0.249,0.27699999999999997 -2015-06-27 12:00:00,0.252,0.249,0.276 -2015-06-27 13:00:00,0.252,0.249,0.275 -2015-06-27 14:00:00,0.251,0.247,0.275 -2015-06-27 15:00:00,0.25,0.247,0.27399999999999997 -2015-06-27 16:00:00,0.248,0.247,0.27399999999999997 -2015-06-27 17:00:00,0.247,0.247,0.27399999999999997 -2015-06-27 18:00:00,0.24600000000000002,0.247,0.27399999999999997 -2015-06-27 19:00:00,0.245,0.247,0.27399999999999997 -2015-06-27 20:00:00,0.245,0.247,0.27399999999999997 -2015-06-27 21:00:00,0.245,0.247,0.27399999999999997 -2015-06-27 22:00:00,0.245,0.247,0.27399999999999997 -2015-06-27 23:00:00,0.245,0.247,0.27399999999999997 -2015-06-28 00:00:00,0.245,0.247,0.27399999999999997 -2015-06-28 01:00:00,0.244,0.248,0.27399999999999997 -2015-06-28 02:00:00,0.244,0.248,0.27399999999999997 -2015-06-28 03:00:00,0.244,0.248,0.27399999999999997 -2015-06-28 04:00:00,0.244,0.248,0.27399999999999997 -2015-06-28 05:00:00,0.244,0.248,0.27399999999999997 -2015-06-28 06:00:00,0.244,0.248,0.27399999999999997 -2015-06-28 07:00:00,0.244,0.248,0.27399999999999997 -2015-06-28 08:00:00,0.243,0.247,0.275 -2015-06-28 09:00:00,0.243,0.247,0.27399999999999997 -2015-06-28 10:00:00,0.242,0.247,0.27399999999999997 -2015-06-28 11:00:00,0.24100000000000002,0.247,0.273 -2015-06-28 12:00:00,0.239,0.247,0.273 -2015-06-28 13:00:00,0.23800000000000002,0.247,0.273 -2015-06-28 14:00:00,0.237,0.24600000000000002,0.272 -2015-06-28 15:00:00,0.23600000000000002,0.24600000000000002,0.272 -2015-06-28 16:00:00,0.23600000000000002,0.24600000000000002,0.272 -2015-06-28 17:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-28 18:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-28 19:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-28 20:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-28 21:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-28 22:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-28 23:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 00:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 01:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 02:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 03:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 04:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 05:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 06:00:00,0.23399999999999999,0.24600000000000002,0.273 -2015-06-29 07:00:00,0.23399999999999999,0.24600000000000002,0.273 -2015-06-29 08:00:00,0.23399999999999999,0.24600000000000002,0.273 -2015-06-29 09:00:00,0.23399999999999999,0.24600000000000002,0.272 -2015-06-29 10:00:00,0.233,0.24600000000000002,0.272 -2015-06-29 11:00:00,0.23199999999999998,0.24600000000000002,0.272 -2015-06-29 12:00:00,0.231,0.245,0.272 -2015-06-29 13:00:00,0.23,0.244,0.272 -2015-06-29 14:00:00,0.22899999999999998,0.244,0.271 -2015-06-29 15:00:00,0.228,0.242,0.272 -2015-06-29 16:00:00,0.228,0.242,0.271 -2015-06-29 17:00:00,0.22699999999999998,0.242,0.271 -2015-06-29 18:00:00,0.22699999999999998,0.242,0.271 -2015-06-29 19:00:00,0.226,0.242,0.271 -2015-06-29 20:00:00,0.226,0.242,0.271 -2015-06-29 21:00:00,0.22699999999999998,0.242,0.271 -2015-06-29 22:00:00,0.226,0.242,0.271 -2015-06-29 23:00:00,0.226,0.242,0.271 -2015-06-30 00:00:00,0.226,0.242,0.271 -2015-06-30 01:00:00,0.226,0.242,0.271 -2015-06-30 02:00:00,0.226,0.242,0.271 -2015-06-30 03:00:00,0.226,0.242,0.271 -2015-06-30 04:00:00,0.226,0.242,0.271 -2015-06-30 05:00:00,0.226,0.242,0.272 -2015-06-30 06:00:00,0.225,0.242,0.272 -2015-06-30 07:00:00,0.225,0.242,0.272 -2015-06-30 08:00:00,0.226,0.242,0.272 -2015-06-30 09:00:00,0.225,0.242,0.272 -2015-06-30 10:00:00,0.223,0.242,0.271 -2015-06-30 11:00:00,0.222,0.242,0.271 -2015-06-30 12:00:00,0.221,0.242,0.271 -2015-06-30 13:00:00,0.221,0.242,0.271 -2015-06-30 14:00:00,0.22,0.24100000000000002,0.27 -2015-06-30 15:00:00,0.21899999999999997,0.24100000000000002,0.27 -2015-06-30 16:00:00,0.21899999999999997,0.24100000000000002,0.27 -2015-06-30 17:00:00,0.218,0.24100000000000002,0.27 -2015-06-30 18:00:00,0.218,0.24100000000000002,0.26899999999999996 -2015-06-30 19:00:00,0.217,0.24100000000000002,0.26899999999999996 -2015-06-30 20:00:00,0.217,0.24100000000000002,0.26899999999999996 -2015-06-30 21:00:00,0.218,0.24100000000000002,0.26899999999999996 -2015-06-30 22:00:00,0.218,0.24100000000000002,0.26899999999999996 -2015-06-30 23:00:00,0.217,0.24100000000000002,0.26899999999999996 -2015-07-01 00:00:00,0.217,0.24100000000000002,0.26899999999999996 -2015-07-01 01:00:00,0.217,0.24100000000000002,0.26899999999999996 -2015-07-01 02:00:00,0.217,0.24100000000000002,0.26899999999999996 -2015-07-01 03:00:00,0.217,0.24100000000000002,0.26899999999999996 -2015-07-01 04:00:00,0.217,0.24100000000000002,0.27 -2015-07-01 05:00:00,0.217,0.24,0.27 -2015-07-01 06:00:00,0.217,0.239,0.27 -2015-07-01 07:00:00,0.217,0.239,0.27 -2015-07-01 08:00:00,0.217,0.239,0.27 -2015-07-01 09:00:00,0.21600000000000003,0.239,0.27 -2015-07-01 10:00:00,0.21600000000000003,0.239,0.27 -2015-07-01 11:00:00,0.214,0.239,0.26899999999999996 -2015-07-01 12:00:00,0.214,0.239,0.26899999999999996 -2015-07-01 13:00:00,0.213,0.23800000000000002,0.26899999999999996 -2015-07-01 14:00:00,0.213,0.237,0.26899999999999996 -2015-07-01 15:00:00,0.212,0.237,0.268 -2015-07-01 16:00:00,0.212,0.237,0.268 -2015-07-01 17:00:00,0.21100000000000002,0.23600000000000002,0.268 -2015-07-01 18:00:00,0.21100000000000002,0.23600000000000002,0.268 -2015-07-01 19:00:00,0.21100000000000002,0.23600000000000002,0.268 -2015-07-01 20:00:00,0.21100000000000002,0.237,0.268 -2015-07-01 21:00:00,0.21100000000000002,0.237,0.268 -2015-07-01 22:00:00,0.21100000000000002,0.237,0.268 -2015-07-01 23:00:00,0.21100000000000002,0.237,0.268 -2015-07-02 00:00:00,0.21100000000000002,0.237,0.268 -2015-07-02 01:00:00,0.21100000000000002,0.237,0.268 -2015-07-02 02:00:00,0.21100000000000002,0.237,0.268 -2015-07-02 03:00:00,0.21100000000000002,0.237,0.268 -2015-07-02 04:00:00,0.21100000000000002,0.237,0.268 -2015-07-02 05:00:00,0.21100000000000002,0.23600000000000002,0.268 -2015-07-02 06:00:00,0.21100000000000002,0.23600000000000002,0.268 -2015-07-02 07:00:00,0.21,0.23600000000000002,0.268 -2015-07-02 08:00:00,0.21,0.23600000000000002,0.26899999999999996 -2015-07-02 09:00:00,0.21,0.23600000000000002,0.268 -2015-07-02 10:00:00,0.21,0.23600000000000002,0.268 -2015-07-02 11:00:00,0.209,0.23600000000000002,0.268 -2015-07-02 12:00:00,0.20800000000000002,0.23600000000000002,0.267 -2015-07-02 13:00:00,0.20800000000000002,0.23600000000000002,0.268 -2015-07-02 14:00:00,0.207,0.23600000000000002,0.268 -2015-07-02 15:00:00,0.207,0.23600000000000002,0.268 -2015-07-02 16:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-02 17:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-02 18:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-02 19:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-02 20:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-02 21:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-02 22:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-02 23:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-03 00:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-03 01:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-03 02:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-03 03:00:00,0.20600000000000002,0.23600000000000002,0.267 -2015-07-03 04:00:00,0.20600000000000002,0.23600000000000002,0.268 -2015-07-03 05:00:00,0.20600000000000002,0.23600000000000002,0.268 -2015-07-03 06:00:00,0.20600000000000002,0.23600000000000002,0.268 -2015-07-03 07:00:00,0.20600000000000002,0.235,0.268 -2015-07-03 08:00:00,0.20600000000000002,0.235,0.268 -2015-07-03 09:00:00,0.205,0.235,0.268 -2015-07-03 10:00:00,0.204,0.235,0.267 -2015-07-03 11:00:00,0.204,0.235,0.267 -2015-07-03 12:00:00,0.204,0.235,0.267 -2015-07-03 13:00:00,0.204,0.235,0.267 -2015-07-03 14:00:00,0.204,0.235,0.266 -2015-07-03 15:00:00,0.204,0.235,0.266 -2015-07-03 16:00:00,0.203,0.235,0.266 -2015-07-03 17:00:00,0.203,0.23399999999999999,0.266 -2015-07-03 18:00:00,0.203,0.23399999999999999,0.266 -2015-07-03 19:00:00,0.203,0.23399999999999999,0.266 -2015-07-03 20:00:00,0.203,0.23399999999999999,0.266 -2015-07-03 21:00:00,0.203,0.23399999999999999,0.266 -2015-07-03 22:00:00,0.203,0.23399999999999999,0.266 -2015-07-03 23:00:00,0.203,0.235,0.266 -2015-07-04 00:00:00,0.203,0.235,0.266 -2015-07-04 01:00:00,0.203,0.235,0.266 -2015-07-04 02:00:00,0.203,0.23399999999999999,0.266 -2015-07-04 03:00:00,0.20199999999999999,0.23399999999999999,0.266 -2015-07-04 04:00:00,0.20199999999999999,0.23399999999999999,0.266 -2015-07-04 05:00:00,0.20199999999999999,0.23399999999999999,0.266 -2015-07-04 06:00:00,0.20199999999999999,0.23399999999999999,0.266 -2015-07-04 07:00:00,0.20199999999999999,0.23399999999999999,0.266 -2015-07-04 08:00:00,0.20199999999999999,0.23399999999999999,0.267 -2015-07-04 09:00:00,0.20199999999999999,0.23399999999999999,0.266 -2015-07-04 10:00:00,0.201,0.233,0.266 -2015-07-04 11:00:00,0.201,0.23199999999999998,0.266 -2015-07-04 12:00:00,0.201,0.23199999999999998,0.266 -2015-07-04 13:00:00,0.201,0.23199999999999998,0.265 -2015-07-04 14:00:00,0.201,0.23199999999999998,0.265 -2015-07-04 15:00:00,0.201,0.23199999999999998,0.265 -2015-07-04 16:00:00,0.201,0.23199999999999998,0.264 -2015-07-04 17:00:00,0.2,0.23199999999999998,0.264 -2015-07-04 18:00:00,0.2,0.23199999999999998,0.264 -2015-07-04 19:00:00,0.2,0.23199999999999998,0.264 -2015-07-04 20:00:00,0.2,0.23199999999999998,0.264 -2015-07-04 21:00:00,0.2,0.23199999999999998,0.264 -2015-07-04 22:00:00,0.2,0.23199999999999998,0.264 -2015-07-04 23:00:00,0.2,0.23199999999999998,0.264 -2015-07-05 00:00:00,0.2,0.23199999999999998,0.264 -2015-07-05 01:00:00,0.2,0.23199999999999998,0.265 -2015-07-05 02:00:00,0.2,0.23199999999999998,0.265 -2015-07-05 03:00:00,0.19899999999999998,0.23199999999999998,0.265 -2015-07-05 04:00:00,0.19899999999999998,0.23199999999999998,0.265 -2015-07-05 05:00:00,0.19899999999999998,0.23199999999999998,0.265 -2015-07-05 06:00:00,0.19899999999999998,0.23199999999999998,0.265 -2015-07-05 07:00:00,0.19899999999999998,0.23199999999999998,0.265 -2015-07-05 08:00:00,0.19899999999999998,0.23199999999999998,0.265 -2015-07-05 09:00:00,0.19899999999999998,0.23199999999999998,0.265 -2015-07-05 10:00:00,0.19899999999999998,0.231,0.264 -2015-07-05 11:00:00,0.19899999999999998,0.231,0.264 -2015-07-05 12:00:00,0.19899999999999998,0.231,0.264 -2015-07-05 13:00:00,0.19899999999999998,0.23,0.263 -2015-07-05 14:00:00,0.198,0.23,0.263 -2015-07-05 15:00:00,0.198,0.23,0.263 -2015-07-05 16:00:00,0.198,0.23,0.263 -2015-07-05 17:00:00,0.19899999999999998,0.23,0.264 -2015-07-05 18:00:00,0.19899999999999998,0.23,0.264 -2015-07-05 19:00:00,0.19899999999999998,0.23,0.263 -2015-07-05 20:00:00,0.19899999999999998,0.23,0.263 -2015-07-05 21:00:00,0.19899999999999998,0.23,0.263 -2015-07-05 22:00:00,0.19899999999999998,0.23,0.263 -2015-07-05 23:00:00,0.19899999999999998,0.23,0.264 -2015-07-06 00:00:00,0.19899999999999998,0.23,0.265 -2015-07-06 01:00:00,0.198,0.23,0.266 -2015-07-06 02:00:00,0.198,0.23,0.266 -2015-07-06 03:00:00,0.198,0.23,0.266 -2015-07-06 04:00:00,0.198,0.23,0.265 -2015-07-06 05:00:00,0.198,0.23,0.265 -2015-07-06 06:00:00,0.198,0.23,0.266 -2015-07-06 07:00:00,0.19699999999999998,0.23,0.266 -2015-07-06 08:00:00,0.198,0.23,0.265 -2015-07-06 09:00:00,0.198,0.23,0.264 -2015-07-06 10:00:00,0.198,0.23,0.263 -2015-07-06 11:00:00,0.19699999999999998,0.23,0.263 -2015-07-06 12:00:00,0.19699999999999998,0.23,0.263 -2015-07-06 13:00:00,0.19699999999999998,0.23,0.262 -2015-07-06 14:00:00,0.19699999999999998,0.23,0.262 -2015-07-06 15:00:00,0.19699999999999998,0.23,0.262 -2015-07-06 16:00:00,0.196,0.23,0.262 -2015-07-06 17:00:00,0.196,0.23,0.262 -2015-07-06 18:00:00,0.196,0.23,0.262 -2015-07-06 19:00:00,0.196,0.23,0.262 -2015-07-06 20:00:00,0.196,0.23,0.262 -2015-07-06 21:00:00,0.196,0.23,0.262 -2015-07-06 22:00:00,0.196,0.23,0.262 -2015-07-06 23:00:00,0.196,0.23,0.262 -2015-07-07 00:00:00,0.196,0.23,0.262 -2015-07-07 01:00:00,0.195,0.23,0.262 -2015-07-07 02:00:00,0.195,0.23,0.262 -2015-07-07 03:00:00,0.195,0.23,0.262 -2015-07-07 04:00:00,0.195,0.23,0.262 -2015-07-07 05:00:00,0.19399999999999998,0.23,0.262 -2015-07-07 06:00:00,0.196,0.23,0.262 -2015-07-07 07:00:00,0.196,0.23,0.262 -2015-07-07 08:00:00,0.196,0.23,0.262 -2015-07-07 09:00:00,0.196,0.23,0.262 -2015-07-07 10:00:00,0.196,0.23,0.262 -2015-07-07 11:00:00,0.196,0.23,0.261 -2015-07-07 12:00:00,0.196,0.23,0.261 -2015-07-07 13:00:00,0.196,0.23,0.261 -2015-07-07 14:00:00,0.196,0.23,0.26 -2015-07-07 15:00:00,0.196,0.23,0.26 -2015-07-07 16:00:00,0.19399999999999998,0.23600000000000002,0.26 -2015-07-07 17:00:00,0.19399999999999998,0.243,0.26 -2015-07-07 18:00:00,0.195,0.242,0.26 -2015-07-07 19:00:00,0.19399999999999998,0.242,0.26 -2015-07-07 20:00:00,0.195,0.242,0.26 -2015-07-07 21:00:00,0.196,0.242,0.26 -2015-07-07 22:00:00,0.19699999999999998,0.242,0.261 -2015-07-07 23:00:00,0.196,0.242,0.261 -2015-07-08 00:00:00,0.196,0.242,0.261 -2015-07-08 01:00:00,0.196,0.242,0.261 -2015-07-08 02:00:00,0.196,0.242,0.262 -2015-07-08 03:00:00,0.196,0.242,0.262 -2015-07-08 04:00:00,0.196,0.242,0.262 -2015-07-08 05:00:00,0.196,0.242,0.262 -2015-07-08 06:00:00,0.195,0.242,0.262 -2015-07-08 07:00:00,0.195,0.242,0.262 -2015-07-08 08:00:00,0.195,0.242,0.262 -2015-07-08 09:00:00,0.195,0.242,0.261 -2015-07-08 10:00:00,0.19399999999999998,0.242,0.26 -2015-07-08 11:00:00,0.19399999999999998,0.242,0.26 -2015-07-08 12:00:00,0.193,0.242,0.26 -2015-07-08 13:00:00,0.193,0.242,0.26 -2015-07-08 14:00:00,0.193,0.242,0.26 -2015-07-08 15:00:00,0.193,0.24100000000000002,0.26 -2015-07-08 16:00:00,0.193,0.24100000000000002,0.259 -2015-07-08 17:00:00,0.193,0.24100000000000002,0.259 -2015-07-08 18:00:00,0.193,0.24100000000000002,0.259 -2015-07-08 19:00:00,0.193,0.24100000000000002,0.259 -2015-07-08 20:00:00,0.193,0.24100000000000002,0.259 -2015-07-08 21:00:00,0.193,0.242,0.259 -2015-07-08 22:00:00,0.193,0.242,0.259 -2015-07-08 23:00:00,0.19399999999999998,0.243,0.259 -2015-07-09 00:00:00,0.195,0.244,0.261 -2015-07-09 01:00:00,0.195,0.244,0.261 -2015-07-09 02:00:00,0.19399999999999998,0.244,0.261 -2015-07-09 03:00:00,0.19399999999999998,0.244,0.261 -2015-07-09 04:00:00,0.19399999999999998,0.245,0.261 -2015-07-09 05:00:00,0.19399999999999998,0.244,0.261 -2015-07-09 06:00:00,0.19399999999999998,0.244,0.261 -2015-07-09 07:00:00,0.19399999999999998,0.244,0.26 -2015-07-09 08:00:00,0.193,0.244,0.26 -2015-07-09 09:00:00,0.193,0.244,0.259 -2015-07-09 10:00:00,0.192,0.244,0.259 -2015-07-09 11:00:00,0.192,0.243,0.259 -2015-07-09 12:00:00,0.192,0.242,0.259 -2015-07-09 13:00:00,0.192,0.242,0.259 -2015-07-09 14:00:00,0.192,0.242,0.259 -2015-07-09 15:00:00,0.192,0.23600000000000002,0.259 -2015-07-09 16:00:00,0.192,0.23600000000000002,0.259 -2015-07-09 17:00:00,0.192,0.23600000000000002,0.259 -2015-07-09 18:00:00,0.192,0.23600000000000002,0.258 -2015-07-09 19:00:00,0.192,0.235,0.258 -2015-07-09 20:00:00,0.192,0.235,0.258 -2015-07-09 21:00:00,0.191,0.23600000000000002,0.258 -2015-07-09 22:00:00,0.191,0.23600000000000002,0.258 -2015-07-09 23:00:00,0.191,0.23600000000000002,0.258 -2015-07-10 00:00:00,0.191,0.23600000000000002,0.259 -2015-07-10 01:00:00,0.191,0.23600000000000002,0.258 -2015-07-10 02:00:00,0.19,0.23600000000000002,0.259 -2015-07-10 03:00:00,0.19,0.237,0.259 -2015-07-10 04:00:00,0.19,0.237,0.259 -2015-07-10 05:00:00,0.18899999999999997,0.237,0.258 -2015-07-10 06:00:00,0.18899999999999997,0.237,0.258 -2015-07-10 07:00:00,0.18899999999999997,0.237,0.258 -2015-07-10 08:00:00,0.18899999999999997,0.237,0.259 -2015-07-10 09:00:00,0.18899999999999997,0.237,0.258 -2015-07-10 10:00:00,0.18899999999999997,0.237,0.258 -2015-07-10 11:00:00,0.18899999999999997,0.23600000000000002,0.258 -2015-07-10 12:00:00,0.18899999999999997,0.235,0.258 -2015-07-10 13:00:00,0.18899999999999997,0.23399999999999999,0.258 -2015-07-10 14:00:00,0.18899999999999997,0.235,0.257 -2015-07-10 15:00:00,0.18899999999999997,0.23399999999999999,0.257 -2015-07-10 16:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-10 17:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-10 18:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-10 19:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-10 20:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-10 21:00:00,0.18899999999999997,0.23199999999999998,0.256 -2015-07-10 22:00:00,0.18899999999999997,0.23199999999999998,0.256 -2015-07-10 23:00:00,0.18899999999999997,0.23199999999999998,0.256 -2015-07-11 00:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-11 01:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-11 02:00:00,0.18899999999999997,0.23199999999999998,0.257 -2015-07-11 03:00:00,0.188,0.231,0.257 -2015-07-11 04:00:00,0.188,0.231,0.257 -2015-07-11 05:00:00,0.188,0.23,0.257 -2015-07-11 06:00:00,0.188,0.23,0.257 -2015-07-11 07:00:00,0.188,0.23,0.257 -2015-07-11 08:00:00,0.188,0.23,0.257 -2015-07-11 09:00:00,0.188,0.23,0.257 -2015-07-11 10:00:00,0.188,0.23,0.256 -2015-07-11 11:00:00,0.188,0.22899999999999998,0.256 -2015-07-11 12:00:00,0.188,0.22899999999999998,0.256 -2015-07-11 13:00:00,0.18899999999999997,0.23,0.256 -2015-07-11 14:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-11 15:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-11 16:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-11 17:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-11 18:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-11 19:00:00,0.18899999999999997,0.22899999999999998,0.254 -2015-07-11 20:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-11 21:00:00,0.18899999999999997,0.22899999999999998,0.254 -2015-07-11 22:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-11 23:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-12 00:00:00,0.18899999999999997,0.22899999999999998,0.255 -2015-07-12 01:00:00,0.188,0.22899999999999998,0.255 -2015-07-12 02:00:00,0.188,0.22899999999999998,0.255 -2015-07-12 03:00:00,0.188,0.22899999999999998,0.255 -2015-07-12 04:00:00,0.188,0.22899999999999998,0.255 -2015-07-12 05:00:00,0.188,0.228,0.255 -2015-07-12 06:00:00,0.188,0.22899999999999998,0.255 -2015-07-12 07:00:00,0.188,0.22899999999999998,0.255 -2015-07-12 08:00:00,0.188,0.228,0.255 -2015-07-12 09:00:00,0.188,0.228,0.255 -2015-07-12 10:00:00,0.188,0.228,0.255 -2015-07-12 11:00:00,0.188,0.22699999999999998,0.254 -2015-07-12 12:00:00,0.188,0.22699999999999998,0.254 -2015-07-12 13:00:00,0.188,0.228,0.254 -2015-07-12 14:00:00,0.188,0.22899999999999998,0.254 -2015-07-12 15:00:00,0.18899999999999997,0.22899999999999998,0.253 -2015-07-12 16:00:00,0.18899999999999997,0.22899999999999998,0.253 -2015-07-12 17:00:00,0.18899999999999997,0.228,0.253 -2015-07-12 18:00:00,0.18899999999999997,0.228,0.253 -2015-07-12 19:00:00,0.191,0.228,0.253 -2015-07-12 20:00:00,0.191,0.228,0.254 -2015-07-12 21:00:00,0.191,0.228,0.254 -2015-07-12 22:00:00,0.191,0.228,0.254 -2015-07-12 23:00:00,0.191,0.228,0.254 -2015-07-13 00:00:00,0.19,0.22899999999999998,0.254 -2015-07-13 01:00:00,0.19,0.22699999999999998,0.254 -2015-07-13 02:00:00,0.19,0.22699999999999998,0.254 -2015-07-13 03:00:00,0.19,0.22699999999999998,0.254 -2015-07-13 04:00:00,0.19,0.22699999999999998,0.254 -2015-07-13 05:00:00,0.19,0.22699999999999998,0.254 -2015-07-13 06:00:00,0.19,0.228,0.254 -2015-07-13 07:00:00,0.19,0.22699999999999998,0.254 -2015-07-13 08:00:00,0.18899999999999997,0.22699999999999998,0.254 -2015-07-13 09:00:00,0.18899999999999997,0.225,0.254 -2015-07-13 10:00:00,0.18899999999999997,0.22899999999999998,0.254 -2015-07-13 11:00:00,0.18899999999999997,0.228,0.254 -2015-07-13 12:00:00,0.18899999999999997,0.22899999999999998,0.254 -2015-07-13 13:00:00,0.18899999999999997,0.23,0.254 -2015-07-13 14:00:00,0.18899999999999997,0.23,0.254 -2015-07-13 15:00:00,0.18899999999999997,0.23199999999999998,0.254 -2015-07-13 16:00:00,0.18899999999999997,0.23199999999999998,0.254 -2015-07-13 17:00:00,0.18899999999999997,0.23199999999999998,0.254 -2015-07-13 18:00:00,0.18899999999999997,0.23199999999999998,0.254 -2015-07-13 19:00:00,0.19,0.23199999999999998,0.254 -2015-07-13 20:00:00,0.191,0.233,0.255 -2015-07-13 21:00:00,0.192,0.233,0.256 -2015-07-13 22:00:00,0.191,0.233,0.256 -2015-07-13 23:00:00,0.191,0.23399999999999999,0.256 -2015-07-14 00:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 01:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 02:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 03:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 04:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 05:00:00,0.19,0.23399999999999999,0.257 -2015-07-14 06:00:00,0.19,0.23399999999999999,0.257 -2015-07-14 07:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 08:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 09:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 10:00:00,0.191,0.23399999999999999,0.257 -2015-07-14 11:00:00,0.191,0.233,0.256 -2015-07-14 12:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 13:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 14:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 15:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 16:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 17:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 18:00:00,0.191,0.233,0.255 -2015-07-14 19:00:00,0.191,0.231,0.255 -2015-07-14 20:00:00,0.191,0.231,0.255 -2015-07-14 21:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 22:00:00,0.191,0.23199999999999998,0.255 -2015-07-14 23:00:00,0.191,0.23199999999999998,0.255 -2015-07-15 00:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 01:00:00,0.19,0.23199999999999998,0.255 -2015-07-15 02:00:00,0.19,0.233,0.255 -2015-07-15 03:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 04:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 05:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 06:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 07:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 08:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 09:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 10:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 11:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 12:00:00,0.19,0.23399999999999999,0.255 -2015-07-15 13:00:00,0.19,0.235,0.254 -2015-07-15 14:00:00,0.19,0.235,0.254 -2015-07-15 15:00:00,0.19,0.235,0.254 -2015-07-15 16:00:00,0.191,0.23600000000000002,0.254 -2015-07-15 17:00:00,0.191,0.23600000000000002,0.254 -2015-07-15 18:00:00,0.191,0.23600000000000002,0.254 -2015-07-15 19:00:00,0.191,0.23600000000000002,0.254 -2015-07-15 20:00:00,0.191,0.23600000000000002,0.254 -2015-07-15 21:00:00,0.191,0.23600000000000002,0.254 -2015-07-15 22:00:00,0.191,0.23600000000000002,0.254 -2015-07-15 23:00:00,0.191,0.23600000000000002,0.254 -2015-07-16 00:00:00,0.191,0.237,0.254 -2015-07-16 01:00:00,0.19,0.237,0.254 -2015-07-16 02:00:00,0.19,0.237,0.254 -2015-07-16 03:00:00,0.19,0.237,0.254 -2015-07-16 04:00:00,0.19,0.237,0.254 -2015-07-16 05:00:00,0.18899999999999997,0.237,0.255 -2015-07-16 06:00:00,0.18899999999999997,0.237,0.255 -2015-07-16 07:00:00,0.18899999999999997,0.237,0.255 -2015-07-16 08:00:00,0.18899999999999997,0.237,0.255 -2015-07-16 09:00:00,0.18899999999999997,0.23600000000000002,0.255 -2015-07-16 10:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-16 11:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-16 12:00:00,0.19,0.23600000000000002,0.254 -2015-07-16 13:00:00,0.19,0.23600000000000002,0.253 -2015-07-16 14:00:00,0.19,0.23600000000000002,0.253 -2015-07-16 15:00:00,0.19,0.235,0.253 -2015-07-16 16:00:00,0.19,0.23600000000000002,0.253 -2015-07-16 17:00:00,0.19,0.235,0.253 -2015-07-16 18:00:00,0.19,0.235,0.253 -2015-07-16 19:00:00,0.19,0.23600000000000002,0.253 -2015-07-16 20:00:00,0.191,0.23600000000000002,0.253 -2015-07-16 21:00:00,0.191,0.23600000000000002,0.253 -2015-07-16 22:00:00,0.19,0.23600000000000002,0.253 -2015-07-16 23:00:00,0.19,0.23600000000000002,0.253 -2015-07-17 00:00:00,0.19,0.23600000000000002,0.253 -2015-07-17 01:00:00,0.19,0.23600000000000002,0.253 -2015-07-17 02:00:00,0.19,0.23600000000000002,0.254 -2015-07-17 03:00:00,0.19,0.23600000000000002,0.254 -2015-07-17 04:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-17 05:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-17 06:00:00,0.18899999999999997,0.237,0.254 -2015-07-17 07:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-17 08:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-17 09:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-17 10:00:00,0.18899999999999997,0.23600000000000002,0.254 -2015-07-17 11:00:00,0.18899999999999997,0.23600000000000002,0.253 -2015-07-17 12:00:00,0.18899999999999997,0.23600000000000002,0.253 -2015-07-17 13:00:00,0.18899999999999997,0.23399999999999999,0.253 -2015-07-17 14:00:00,0.19,0.23399999999999999,0.252 -2015-07-17 15:00:00,0.19,0.23399999999999999,0.252 -2015-07-17 16:00:00,0.19,0.233,0.252 -2015-07-17 17:00:00,0.19,0.23199999999999998,0.252 -2015-07-17 18:00:00,0.19,0.23199999999999998,0.252 -2015-07-17 19:00:00,0.19,0.23199999999999998,0.252 -2015-07-17 20:00:00,0.19,0.23199999999999998,0.252 -2015-07-17 21:00:00,0.191,0.23199999999999998,0.252 -2015-07-17 22:00:00,0.191,0.23399999999999999,0.252 -2015-07-17 23:00:00,0.191,0.235,0.252 -2015-07-18 00:00:00,0.191,0.23600000000000002,0.252 -2015-07-18 01:00:00,0.19,0.23399999999999999,0.252 -2015-07-18 02:00:00,0.18899999999999997,0.23399999999999999,0.252 -2015-07-18 03:00:00,0.18899999999999997,0.23399999999999999,0.252 -2015-07-18 04:00:00,0.18899999999999997,0.23399999999999999,0.252 -2015-07-18 05:00:00,0.18899999999999997,0.23399999999999999,0.252 -2015-07-18 06:00:00,0.18899999999999997,0.23399999999999999,0.253 -2015-07-18 07:00:00,0.18899999999999997,0.23399999999999999,0.253 -2015-07-18 08:00:00,0.18899999999999997,0.233,0.253 -2015-07-18 09:00:00,0.18899999999999997,0.23199999999999998,0.253 -2015-07-18 10:00:00,0.18899999999999997,0.23199999999999998,0.252 -2015-07-18 11:00:00,0.18899999999999997,0.23199999999999998,0.252 -2015-07-18 12:00:00,0.18899999999999997,0.23199999999999998,0.252 -2015-07-18 13:00:00,0.18899999999999997,0.23199999999999998,0.252 -2015-07-18 14:00:00,0.18899999999999997,0.23,0.251 -2015-07-18 15:00:00,0.18899999999999997,0.23,0.251 -2015-07-18 16:00:00,0.18899999999999997,0.23,0.251 -2015-07-18 17:00:00,0.18899999999999997,0.22899999999999998,0.251 -2015-07-18 18:00:00,0.19,0.22899999999999998,0.251 -2015-07-18 19:00:00,0.18899999999999997,0.22899999999999998,0.251 -2015-07-18 20:00:00,0.19,0.22899999999999998,0.251 -2015-07-18 21:00:00,0.18899999999999997,0.23,0.251 -2015-07-18 22:00:00,0.18899999999999997,0.23,0.251 -2015-07-18 23:00:00,0.18899999999999997,0.23199999999999998,0.251 -2015-07-19 00:00:00,0.18899999999999997,0.233,0.251 -2015-07-19 01:00:00,0.18899999999999997,0.23199999999999998,0.251 -2015-07-19 02:00:00,0.18899999999999997,0.23199999999999998,0.251 -2015-07-19 03:00:00,0.18899999999999997,0.231,0.251 -2015-07-19 04:00:00,0.18899999999999997,0.23,0.251 -2015-07-19 05:00:00,0.18899999999999997,0.23,0.251 -2015-07-19 06:00:00,0.20600000000000002,0.23,0.28300000000000003 -2015-07-19 07:00:00,0.21100000000000002,0.23,0.27899999999999997 -2015-07-19 08:00:00,0.20800000000000002,0.23,0.27399999999999997 -2015-07-19 09:00:00,0.207,0.23,0.272 -2015-07-19 10:00:00,0.20800000000000002,0.23,0.27 -2015-07-19 11:00:00,0.209,0.23,0.26899999999999996 -2015-07-19 12:00:00,0.20800000000000002,0.23,0.267 -2015-07-19 13:00:00,0.20800000000000002,0.23,0.266 -2015-07-19 14:00:00,0.207,0.23,0.265 -2015-07-19 15:00:00,0.207,0.22899999999999998,0.265 -2015-07-19 16:00:00,0.207,0.22899999999999998,0.264 -2015-07-19 17:00:00,0.20600000000000002,0.22899999999999998,0.264 -2015-07-19 18:00:00,0.207,0.22899999999999998,0.265 -2015-07-19 19:00:00,0.20600000000000002,0.22899999999999998,0.266 -2015-07-19 20:00:00,0.207,0.23,0.265 -2015-07-19 21:00:00,0.207,0.23,0.265 -2015-07-19 22:00:00,0.207,0.23,0.265 -2015-07-19 23:00:00,0.20600000000000002,0.23,0.265 -2015-07-20 00:00:00,0.20600000000000002,0.23,0.265 -2015-07-20 01:00:00,0.20600000000000002,0.23,0.265 -2015-07-20 02:00:00,0.20600000000000002,0.23,0.265 -2015-07-20 03:00:00,0.20600000000000002,0.23,0.264 -2015-07-20 04:00:00,0.205,0.23,0.264 -2015-07-20 05:00:00,0.205,0.23,0.264 -2015-07-20 06:00:00,0.205,0.231,0.264 -2015-07-20 07:00:00,0.205,0.23,0.265 -2015-07-20 08:00:00,0.204,0.23,0.265 -2015-07-20 09:00:00,0.204,0.23,0.265 -2015-07-20 10:00:00,0.204,0.22899999999999998,0.265 -2015-07-20 11:00:00,0.205,0.22899999999999998,0.265 -2015-07-20 12:00:00,0.205,0.22899999999999998,0.265 -2015-07-20 13:00:00,0.205,0.22899999999999998,0.264 -2015-07-20 14:00:00,0.205,0.228,0.264 -2015-07-20 15:00:00,0.205,0.228,0.263 -2015-07-20 16:00:00,0.20600000000000002,0.22699999999999998,0.265 -2015-07-20 17:00:00,0.20600000000000002,0.22699999999999998,0.265 -2015-07-20 18:00:00,0.20600000000000002,0.22699999999999998,0.265 -2015-07-20 19:00:00,0.207,0.22699999999999998,0.265 -2015-07-20 20:00:00,0.207,0.22699999999999998,0.264 -2015-07-20 21:00:00,0.207,0.22699999999999998,0.264 -2015-07-20 22:00:00,0.207,0.22899999999999998,0.265 -2015-07-20 23:00:00,0.207,0.22899999999999998,0.265 -2015-07-21 00:00:00,0.207,0.22899999999999998,0.265 -2015-07-21 01:00:00,0.207,0.22899999999999998,0.265 -2015-07-21 02:00:00,0.207,0.23,0.265 -2015-07-21 03:00:00,0.207,0.23,0.265 -2015-07-21 04:00:00,0.207,0.22899999999999998,0.266 -2015-07-21 05:00:00,0.20600000000000002,0.22899999999999998,0.266 -2015-07-21 06:00:00,0.20600000000000002,0.22899999999999998,0.266 -2015-07-21 07:00:00,0.20600000000000002,0.22899999999999998,0.266 -2015-07-21 08:00:00,0.20600000000000002,0.22899999999999998,0.266 -2015-07-21 09:00:00,0.20600000000000002,0.22899999999999998,0.266 -2015-07-21 10:00:00,0.207,0.22899999999999998,0.264 -2015-07-21 11:00:00,0.20600000000000002,0.22899999999999998,0.264 -2015-07-21 12:00:00,0.20600000000000002,0.228,0.263 -2015-07-21 13:00:00,0.20600000000000002,0.22699999999999998,0.263 -2015-07-21 14:00:00,0.205,0.22699999999999998,0.262 -2015-07-21 15:00:00,0.205,0.22699999999999998,0.262 -2015-07-21 16:00:00,0.205,0.22699999999999998,0.262 -2015-07-21 17:00:00,0.205,0.22699999999999998,0.262 -2015-07-21 18:00:00,0.205,0.22699999999999998,0.262 -2015-07-21 19:00:00,0.205,0.22699999999999998,0.262 -2015-07-21 20:00:00,0.20600000000000002,0.22699999999999998,0.262 -2015-07-21 21:00:00,0.20600000000000002,0.22699999999999998,0.262 -2015-07-21 22:00:00,0.205,0.22699999999999998,0.262 -2015-07-21 23:00:00,0.205,0.22699999999999998,0.262 -2015-07-22 00:00:00,0.205,0.22699999999999998,0.262 -2015-07-22 01:00:00,0.205,0.22699999999999998,0.262 -2015-07-22 02:00:00,0.205,0.22899999999999998,0.262 -2015-07-22 03:00:00,0.205,0.22899999999999998,0.262 -2015-07-22 04:00:00,0.204,0.22899999999999998,0.262 -2015-07-22 05:00:00,0.205,0.22899999999999998,0.263 -2015-07-22 06:00:00,0.204,0.22899999999999998,0.263 -2015-07-22 07:00:00,0.204,0.22899999999999998,0.263 -2015-07-22 08:00:00,0.204,0.22899999999999998,0.263 -2015-07-22 09:00:00,0.204,0.22899999999999998,0.262 -2015-07-22 10:00:00,0.204,0.22899999999999998,0.262 -2015-07-22 11:00:00,0.204,0.228,0.262 -2015-07-22 12:00:00,0.204,0.22699999999999998,0.262 -2015-07-22 13:00:00,0.204,0.22699999999999998,0.262 -2015-07-22 14:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 15:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 16:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 17:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 18:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 19:00:00,0.204,0.22699999999999998,0.261 -2015-07-22 20:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 21:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 22:00:00,0.203,0.22699999999999998,0.261 -2015-07-22 23:00:00,0.203,0.228,0.261 -2015-07-23 00:00:00,0.203,0.22899999999999998,0.261 -2015-07-23 01:00:00,0.20199999999999999,0.22899999999999998,0.261 -2015-07-23 02:00:00,0.203,0.22899999999999998,0.261 -2015-07-23 03:00:00,0.203,0.22899999999999998,0.261 -2015-07-23 04:00:00,0.20199999999999999,0.228,0.261 -2015-07-23 05:00:00,0.20199999999999999,0.22699999999999998,0.261 -2015-07-23 06:00:00,0.20199999999999999,0.22699999999999998,0.261 -2015-07-23 07:00:00,0.20199999999999999,0.22699999999999998,0.261 -2015-07-23 08:00:00,0.201,0.22699999999999998,0.261 -2015-07-23 09:00:00,0.201,0.22699999999999998,0.261 -2015-07-23 10:00:00,0.201,0.22699999999999998,0.261 -2015-07-23 11:00:00,0.2,0.22699999999999998,0.26 -2015-07-23 12:00:00,0.2,0.225,0.26 -2015-07-23 13:00:00,0.2,0.22699999999999998,0.26 -2015-07-23 14:00:00,0.19899999999999998,0.22699999999999998,0.259 -2015-07-23 15:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 16:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 17:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 18:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 19:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 20:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 21:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 22:00:00,0.19899999999999998,0.225,0.259 -2015-07-23 23:00:00,0.19899999999999998,0.226,0.259 -2015-07-24 00:00:00,0.198,0.22699999999999998,0.259 -2015-07-24 01:00:00,0.198,0.228,0.259 -2015-07-24 02:00:00,0.198,0.228,0.259 -2015-07-24 03:00:00,0.198,0.228,0.259 -2015-07-24 04:00:00,0.198,0.22899999999999998,0.259 -2015-07-24 05:00:00,0.198,0.22899999999999998,0.259 -2015-07-24 06:00:00,0.198,0.22899999999999998,0.259 -2015-07-24 07:00:00,0.198,0.22899999999999998,0.259 -2015-07-24 08:00:00,0.198,0.22899999999999998,0.259 -2015-07-24 09:00:00,0.19699999999999998,0.22899999999999998,0.259 -2015-07-24 10:00:00,0.19699999999999998,0.228,0.258 -2015-07-24 11:00:00,0.196,0.22699999999999998,0.258 -2015-07-24 12:00:00,0.196,0.225,0.258 -2015-07-24 13:00:00,0.196,0.225,0.258 -2015-07-24 14:00:00,0.196,0.22399999999999998,0.258 -2015-07-24 15:00:00,0.196,0.22399999999999998,0.257 -2015-07-24 16:00:00,0.196,0.22399999999999998,0.257 -2015-07-24 17:00:00,0.196,0.223,0.257 -2015-07-24 18:00:00,0.19699999999999998,0.22399999999999998,0.257 -2015-07-24 19:00:00,0.19699999999999998,0.22399999999999998,0.257 -2015-07-24 20:00:00,0.19699999999999998,0.22399999999999998,0.257 -2015-07-24 21:00:00,0.19699999999999998,0.22399999999999998,0.257 -2015-07-24 22:00:00,0.19699999999999998,0.22399999999999998,0.257 -2015-07-24 23:00:00,0.19699999999999998,0.22399999999999998,0.257 -2015-07-25 00:00:00,0.19699999999999998,0.22399999999999998,0.258 -2015-07-25 01:00:00,0.19399999999999998,0.22399999999999998,0.26 -2015-07-25 02:00:00,0.195,0.225,0.26 -2015-07-25 03:00:00,0.195,0.225,0.26 -2015-07-25 04:00:00,0.196,0.225,0.26 -2015-07-25 05:00:00,0.196,0.225,0.26 -2015-07-25 06:00:00,0.195,0.225,0.26 -2015-07-25 07:00:00,0.195,0.225,0.26 -2015-07-25 08:00:00,0.196,0.225,0.26 -2015-07-25 09:00:00,0.19699999999999998,0.225,0.26 -2015-07-25 10:00:00,0.198,0.225,0.259 -2015-07-25 11:00:00,0.19699999999999998,0.225,0.258 -2015-07-25 12:00:00,0.198,0.225,0.258 -2015-07-25 13:00:00,0.198,0.22399999999999998,0.258 -2015-07-25 14:00:00,0.198,0.223,0.258 -2015-07-25 15:00:00,0.198,0.222,0.258 -2015-07-25 16:00:00,0.198,0.222,0.258 -2015-07-25 17:00:00,0.198,0.222,0.258 -2015-07-25 18:00:00,0.198,0.222,0.258 -2015-07-25 19:00:00,0.198,0.222,0.258 -2015-07-25 20:00:00,0.196,0.222,0.259 -2015-07-25 21:00:00,0.196,0.222,0.259 -2015-07-25 22:00:00,0.196,0.222,0.259 -2015-07-25 23:00:00,0.196,0.222,0.259 -2015-07-26 00:00:00,0.196,0.22399999999999998,0.259 -2015-07-26 01:00:00,0.196,0.22399999999999998,0.259 -2015-07-26 02:00:00,0.196,0.22399999999999998,0.259 -2015-07-26 03:00:00,0.196,0.225,0.259 -2015-07-26 04:00:00,0.196,0.225,0.259 -2015-07-26 05:00:00,0.196,0.225,0.259 -2015-07-26 06:00:00,0.195,0.225,0.259 -2015-07-26 07:00:00,0.195,0.22399999999999998,0.259 -2015-07-26 08:00:00,0.195,0.22399999999999998,0.259 -2015-07-26 09:00:00,0.196,0.22399999999999998,0.259 -2015-07-26 10:00:00,0.196,0.22399999999999998,0.258 -2015-07-26 11:00:00,0.195,0.22399999999999998,0.257 -2015-07-26 12:00:00,0.19399999999999998,0.22399999999999998,0.257 -2015-07-26 13:00:00,0.19399999999999998,0.222,0.256 -2015-07-26 14:00:00,0.19399999999999998,0.222,0.256 -2015-07-26 15:00:00,0.19399999999999998,0.22,0.256 -2015-07-26 16:00:00,0.19399999999999998,0.22,0.256 -2015-07-26 17:00:00,0.19399999999999998,0.22,0.256 -2015-07-26 18:00:00,0.19399999999999998,0.22,0.256 -2015-07-26 19:00:00,0.19399999999999998,0.22,0.256 -2015-07-26 20:00:00,0.195,0.22,0.256 -2015-07-26 21:00:00,0.196,0.22,0.257 -2015-07-26 22:00:00,0.196,0.22,0.258 -2015-07-26 23:00:00,0.195,0.221,0.258 -2015-07-27 00:00:00,0.195,0.221,0.258 -2015-07-27 01:00:00,0.195,0.221,0.258 -2015-07-27 02:00:00,0.195,0.221,0.258 -2015-07-27 03:00:00,0.195,0.221,0.258 -2015-07-27 04:00:00,0.195,0.221,0.258 -2015-07-27 05:00:00,0.19399999999999998,0.221,0.258 -2015-07-27 06:00:00,0.191,0.221,0.26 -2015-07-27 07:00:00,0.192,0.222,0.26 -2015-07-27 08:00:00,0.193,0.222,0.259 -2015-07-27 09:00:00,0.192,0.222,0.26 -2015-07-27 10:00:00,0.192,0.222,0.26 -2015-07-27 11:00:00,0.19399999999999998,0.221,0.259 -2015-07-27 12:00:00,0.19699999999999998,0.221,0.258 -2015-07-27 13:00:00,0.19699999999999998,0.22,0.258 -2015-07-27 14:00:00,0.19699999999999998,0.22,0.257 -2015-07-27 15:00:00,0.19699999999999998,0.22,0.257 -2015-07-27 16:00:00,0.198,0.21899999999999997,0.257 -2015-07-27 17:00:00,0.198,0.21899999999999997,0.258 -2015-07-27 18:00:00,0.198,0.21899999999999997,0.258 -2015-07-27 19:00:00,0.198,0.21899999999999997,0.258 -2015-07-27 20:00:00,0.198,0.22,0.257 -2015-07-27 21:00:00,0.198,0.22,0.257 -2015-07-27 22:00:00,0.198,0.22,0.258 -2015-07-27 23:00:00,0.198,0.22,0.259 -2015-07-28 00:00:00,0.198,0.22,0.259 -2015-07-28 01:00:00,0.19699999999999998,0.22,0.259 -2015-07-28 02:00:00,0.19699999999999998,0.22,0.259 -2015-07-28 03:00:00,0.19699999999999998,0.22,0.259 -2015-07-28 04:00:00,0.19699999999999998,0.22,0.259 -2015-07-28 05:00:00,0.198,0.22,0.259 -2015-07-28 06:00:00,0.198,0.22,0.259 -2015-07-28 07:00:00,0.19699999999999998,0.22,0.259 -2015-07-28 08:00:00,0.19699999999999998,0.22,0.259 -2015-07-28 09:00:00,0.198,0.22,0.259 -2015-07-28 10:00:00,0.198,0.22,0.258 -2015-07-28 11:00:00,0.19699999999999998,0.22,0.258 -2015-07-28 12:00:00,0.196,0.22,0.257 -2015-07-28 13:00:00,0.196,0.21899999999999997,0.257 -2015-07-28 14:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 15:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 16:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 17:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 18:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 19:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 20:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 21:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 22:00:00,0.196,0.21899999999999997,0.256 -2015-07-28 23:00:00,0.196,0.21899999999999997,0.256 -2015-07-29 00:00:00,0.196,0.22,0.256 -2015-07-29 01:00:00,0.196,0.22,0.256 -2015-07-29 02:00:00,0.196,0.22,0.256 -2015-07-29 03:00:00,0.195,0.22,0.256 -2015-07-29 04:00:00,0.196,0.22,0.256 -2015-07-29 05:00:00,0.195,0.22,0.256 -2015-07-29 06:00:00,0.195,0.22,0.256 -2015-07-29 07:00:00,0.195,0.22,0.256 -2015-07-29 08:00:00,0.195,0.22,0.256 -2015-07-29 09:00:00,0.195,0.22,0.256 -2015-07-29 10:00:00,0.195,0.21899999999999997,0.256 -2015-07-29 11:00:00,0.195,0.21899999999999997,0.256 -2015-07-29 12:00:00,0.195,0.21899999999999997,0.256 -2015-07-29 13:00:00,0.195,0.21899999999999997,0.255 -2015-07-29 14:00:00,0.195,0.21899999999999997,0.255 -2015-07-29 15:00:00,0.195,0.21899999999999997,0.255 -2015-07-29 16:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-29 17:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-29 18:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-29 19:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-29 20:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-29 21:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-29 22:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-29 23:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-30 00:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-30 01:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-30 02:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-30 03:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 04:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 05:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 06:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 07:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 08:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 09:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 10:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 11:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 12:00:00,0.193,0.21899999999999997,0.255 -2015-07-30 13:00:00,0.193,0.21899999999999997,0.254 -2015-07-30 14:00:00,0.193,0.21899999999999997,0.254 -2015-07-30 15:00:00,0.193,0.21899999999999997,0.254 -2015-07-30 16:00:00,0.193,0.21899999999999997,0.254 -2015-07-30 17:00:00,0.193,0.21899999999999997,0.254 -2015-07-30 18:00:00,0.193,0.21899999999999997,0.254 -2015-07-30 19:00:00,0.19399999999999998,0.21899999999999997,0.254 -2015-07-30 20:00:00,0.19399999999999998,0.21899999999999997,0.254 -2015-07-30 21:00:00,0.19399999999999998,0.21899999999999997,0.254 -2015-07-30 22:00:00,0.19399999999999998,0.21899999999999997,0.254 -2015-07-30 23:00:00,0.19399999999999998,0.21899999999999997,0.254 -2015-07-31 00:00:00,0.19399999999999998,0.21899999999999997,0.254 -2015-07-31 01:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-31 02:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-31 03:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-31 04:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-31 05:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-31 06:00:00,0.19399999999999998,0.21899999999999997,0.255 -2015-07-31 07:00:00,0.193,0.21899999999999997,0.255 -2015-07-31 08:00:00,0.193,0.21899999999999997,0.255 -2015-07-31 09:00:00,0.193,0.21899999999999997,0.255 -2015-07-31 10:00:00,0.193,0.21899999999999997,0.254 -2015-07-31 11:00:00,0.192,0.21899999999999997,0.254 -2015-07-31 12:00:00,0.192,0.21899999999999997,0.254 -2015-07-31 13:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 14:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 15:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 16:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 17:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 18:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 19:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 20:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 21:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 22:00:00,0.191,0.21899999999999997,0.253 -2015-07-31 23:00:00,0.191,0.21899999999999997,0.253 -2015-08-01 00:00:00,0.191,0.21899999999999997,0.253 -2015-08-01 01:00:00,0.191,0.21899999999999997,0.253 -2015-08-01 02:00:00,0.191,0.22,0.253 -2015-08-01 03:00:00,0.191,0.22,0.253 -2015-08-01 04:00:00,0.19,0.22,0.253 -2015-08-01 05:00:00,0.19,0.22,0.253 -2015-08-01 06:00:00,0.19,0.22,0.253 -2015-08-01 07:00:00,0.191,0.22,0.253 -2015-08-01 08:00:00,0.19,0.22,0.253 -2015-08-01 09:00:00,0.19,0.22,0.253 -2015-08-01 10:00:00,0.19,0.22,0.253 -2015-08-01 11:00:00,0.19,0.22,0.253 -2015-08-01 12:00:00,0.19,0.22,0.253 -2015-08-01 13:00:00,0.19,0.21899999999999997,0.252 -2015-08-01 14:00:00,0.19,0.21899999999999997,0.252 -2015-08-01 15:00:00,0.19,0.21899999999999997,0.252 -2015-08-01 16:00:00,0.19,0.21899999999999997,0.252 -2015-08-01 17:00:00,0.19,0.21899999999999997,0.252 -2015-08-01 18:00:00,0.191,0.21899999999999997,0.252 -2015-08-01 19:00:00,0.191,0.21899999999999997,0.251 -2015-08-01 20:00:00,0.191,0.21899999999999997,0.252 -2015-08-01 21:00:00,0.191,0.21899999999999997,0.252 -2015-08-01 22:00:00,0.191,0.22,0.252 -2015-08-01 23:00:00,0.191,0.22,0.252 -2015-08-02 00:00:00,0.19,0.22,0.252 -2015-08-02 01:00:00,0.19,0.22,0.252 -2015-08-02 02:00:00,0.19,0.22,0.252 -2015-08-02 03:00:00,0.19,0.22,0.252 -2015-08-02 04:00:00,0.19,0.22,0.252 -2015-08-02 05:00:00,0.19,0.22,0.252 -2015-08-02 06:00:00,0.18899999999999997,0.22,0.252 -2015-08-02 07:00:00,0.18899999999999997,0.22,0.252 -2015-08-02 08:00:00,0.18899999999999997,0.22,0.252 -2015-08-02 09:00:00,0.18899999999999997,0.22,0.252 -2015-08-02 10:00:00,0.18899999999999997,0.22,0.252 -2015-08-02 11:00:00,0.18899999999999997,0.22,0.252 -2015-08-02 12:00:00,0.18899999999999997,0.22,0.251 -2015-08-02 13:00:00,0.18899999999999997,0.22,0.251 -2015-08-02 14:00:00,0.18899999999999997,0.22,0.251 -2015-08-02 15:00:00,0.18899999999999997,0.22,0.251 -2015-08-02 16:00:00,0.18899999999999997,0.22,0.25 -2015-08-02 17:00:00,0.18899999999999997,0.22,0.25 -2015-08-02 18:00:00,0.18899999999999997,0.22,0.25 -2015-08-02 19:00:00,0.19,0.22,0.25 -2015-08-02 20:00:00,0.19,0.22,0.25 -2015-08-02 21:00:00,0.19,0.22,0.25 -2015-08-02 22:00:00,0.19,0.22,0.25 -2015-08-02 23:00:00,0.19,0.22,0.25 -2015-08-03 00:00:00,0.18899999999999997,0.22,0.251 -2015-08-03 01:00:00,0.18899999999999997,0.22,0.251 -2015-08-03 02:00:00,0.18899999999999997,0.22,0.251 -2015-08-03 03:00:00,0.18899999999999997,0.221,0.251 -2015-08-03 04:00:00,0.18899999999999997,0.221,0.251 -2015-08-03 05:00:00,0.18899999999999997,0.221,0.251 -2015-08-03 06:00:00,0.18899999999999997,0.22,0.251 -2015-08-03 07:00:00,0.188,0.22,0.251 -2015-08-03 08:00:00,0.18899999999999997,0.22,0.251 -2015-08-03 09:00:00,0.188,0.22,0.251 -2015-08-03 10:00:00,0.188,0.22,0.251 -2015-08-03 11:00:00,0.188,0.22,0.25 -2015-08-03 12:00:00,0.188,0.22,0.25 -2015-08-03 13:00:00,0.18899999999999997,0.22,0.25 -2015-08-03 14:00:00,0.18899999999999997,0.22,0.25 -2015-08-03 15:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 16:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 17:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 18:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 19:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 20:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 21:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 22:00:00,0.18899999999999997,0.22,0.249 -2015-08-03 23:00:00,0.18899999999999997,0.22,0.249 -2015-08-04 00:00:00,0.18899999999999997,0.22,0.249 -2015-08-04 01:00:00,0.18899999999999997,0.22,0.25 -2015-08-04 02:00:00,0.188,0.22,0.25 -2015-08-04 03:00:00,0.188,0.22,0.25 -2015-08-04 04:00:00,0.188,0.22,0.25 -2015-08-04 05:00:00,0.188,0.22,0.25 -2015-08-04 06:00:00,0.188,0.22,0.25 -2015-08-04 07:00:00,0.188,0.22,0.25 -2015-08-04 08:00:00,0.188,0.22,0.25 -2015-08-04 09:00:00,0.188,0.22,0.25 -2015-08-04 10:00:00,0.188,0.22,0.25 -2015-08-04 11:00:00,0.188,0.22,0.25 -2015-08-04 12:00:00,0.188,0.22,0.249 -2015-08-04 13:00:00,0.188,0.22,0.249 -2015-08-04 14:00:00,0.188,0.22,0.251 -2015-08-04 15:00:00,0.187,0.22,0.253 -2015-08-04 16:00:00,0.188,0.22,0.252 -2015-08-04 17:00:00,0.18899999999999997,0.22,0.252 -2015-08-04 18:00:00,0.188,0.22,0.252 -2015-08-04 19:00:00,0.188,0.22,0.253 -2015-08-04 20:00:00,0.18899999999999997,0.22,0.253 -2015-08-04 21:00:00,0.18899999999999997,0.22,0.253 -2015-08-04 22:00:00,0.18899999999999997,0.22,0.253 -2015-08-04 23:00:00,0.18899999999999997,0.222,0.253 -2015-08-05 00:00:00,0.18899999999999997,0.222,0.253 -2015-08-05 01:00:00,0.18899999999999997,0.222,0.253 -2015-08-05 02:00:00,0.18899999999999997,0.223,0.253 -2015-08-05 03:00:00,0.18899999999999997,0.22399999999999998,0.253 -2015-08-05 04:00:00,0.18899999999999997,0.22399999999999998,0.253 -2015-08-05 05:00:00,0.18899999999999997,0.22399999999999998,0.253 -2015-08-05 06:00:00,0.188,0.22399999999999998,0.253 -2015-08-05 07:00:00,0.188,0.22399999999999998,0.253 -2015-08-05 08:00:00,0.188,0.225,0.253 -2015-08-05 09:00:00,0.18899999999999997,0.225,0.253 -2015-08-05 10:00:00,0.18899999999999997,0.225,0.252 -2015-08-05 11:00:00,0.18899999999999997,0.225,0.251 -2015-08-05 12:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 13:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 14:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 15:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 16:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 17:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 18:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 19:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 20:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 21:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 22:00:00,0.18899999999999997,0.225,0.25 -2015-08-05 23:00:00,0.18899999999999997,0.225,0.25 -2015-08-06 00:00:00,0.18899999999999997,0.225,0.25 -2015-08-06 01:00:00,0.18899999999999997,0.225,0.25 -2015-08-06 02:00:00,0.18899999999999997,0.226,0.25 -2015-08-06 03:00:00,0.18899999999999997,0.226,0.25 -2015-08-06 04:00:00,0.188,0.22699999999999998,0.25 -2015-08-06 05:00:00,0.188,0.22699999999999998,0.25 -2015-08-06 06:00:00,0.188,0.22699999999999998,0.25 -2015-08-06 07:00:00,0.188,0.22699999999999998,0.25 -2015-08-06 08:00:00,0.188,0.22699999999999998,0.25 -2015-08-06 09:00:00,0.188,0.22699999999999998,0.25 -2015-08-06 10:00:00,0.188,0.22699999999999998,0.25 -2015-08-06 11:00:00,0.188,0.226,0.25 -2015-08-06 12:00:00,0.188,0.226,0.25 -2015-08-06 13:00:00,0.18899999999999997,0.225,0.25 -2015-08-06 14:00:00,0.18899999999999997,0.225,0.249 -2015-08-06 15:00:00,0.18899999999999997,0.225,0.249 -2015-08-06 16:00:00,0.18899999999999997,0.225,0.249 -2015-08-06 17:00:00,0.18899999999999997,0.225,0.249 -2015-08-06 18:00:00,0.18899999999999997,0.225,0.249 -2015-08-06 19:00:00,0.19,0.225,0.249 -2015-08-06 20:00:00,0.19,0.225,0.249 -2015-08-06 21:00:00,0.19,0.225,0.249 -2015-08-06 22:00:00,0.19,0.225,0.249 -2015-08-06 23:00:00,0.19,0.225,0.249 -2015-08-07 00:00:00,0.18899999999999997,0.226,0.249 -2015-08-07 01:00:00,0.18899999999999997,0.22699999999999998,0.249 -2015-08-07 02:00:00,0.18899999999999997,0.22699999999999998,0.249 -2015-08-07 03:00:00,0.18899999999999997,0.22699999999999998,0.25 -2015-08-07 04:00:00,0.18899999999999997,0.22699999999999998,0.25 -2015-08-07 05:00:00,0.18899999999999997,0.22699999999999998,0.25 -2015-08-07 06:00:00,0.18899999999999997,0.22699999999999998,0.25 -2015-08-07 07:00:00,0.18899999999999997,0.22699999999999998,0.25 -2015-08-07 08:00:00,0.18899999999999997,0.226,0.25 -2015-08-07 09:00:00,0.18899999999999997,0.226,0.25 -2015-08-07 10:00:00,0.18899999999999997,0.225,0.25 -2015-08-07 11:00:00,0.18899999999999997,0.225,0.249 -2015-08-07 12:00:00,0.18899999999999997,0.225,0.249 -2015-08-07 13:00:00,0.18899999999999997,0.225,0.249 -2015-08-07 14:00:00,0.18899999999999997,0.225,0.249 -2015-08-07 15:00:00,0.18899999999999997,0.225,0.249 -2015-08-07 16:00:00,0.19,0.225,0.249 -2015-08-07 17:00:00,0.19,0.225,0.248 -2015-08-07 18:00:00,0.19,0.225,0.248 -2015-08-07 19:00:00,0.19,0.225,0.248 -2015-08-07 20:00:00,0.19,0.225,0.249 -2015-08-07 21:00:00,0.19,0.225,0.249 -2015-08-07 22:00:00,0.19,0.225,0.249 -2015-08-07 23:00:00,0.19,0.225,0.249 -2015-08-08 00:00:00,0.19,0.225,0.249 -2015-08-08 01:00:00,0.19,0.225,0.249 -2015-08-08 02:00:00,0.19,0.225,0.249 -2015-08-08 03:00:00,0.19,0.225,0.249 -2015-08-08 04:00:00,0.19,0.225,0.249 -2015-08-08 05:00:00,0.19,0.225,0.249 -2015-08-08 06:00:00,0.19,0.225,0.249 -2015-08-08 07:00:00,0.192,0.225,0.251 -2015-08-08 08:00:00,0.192,0.225,0.251 -2015-08-08 09:00:00,0.192,0.225,0.251 -2015-08-08 10:00:00,0.191,0.225,0.25 -2015-08-08 11:00:00,0.191,0.225,0.249 -2015-08-08 12:00:00,0.19,0.225,0.249 -2015-08-08 13:00:00,0.19,0.225,0.249 -2015-08-08 14:00:00,0.19,0.225,0.249 -2015-08-08 15:00:00,0.19,0.225,0.249 -2015-08-08 16:00:00,0.19,0.225,0.249 -2015-08-08 17:00:00,0.191,0.225,0.248 -2015-08-08 18:00:00,0.191,0.225,0.248 -2015-08-08 19:00:00,0.191,0.225,0.248 -2015-08-08 20:00:00,0.191,0.225,0.248 -2015-08-08 21:00:00,0.191,0.225,0.249 -2015-08-08 22:00:00,0.191,0.225,0.249 -2015-08-08 23:00:00,0.191,0.225,0.249 -2015-08-09 00:00:00,0.191,0.225,0.249 -2015-08-09 01:00:00,0.19,0.225,0.249 -2015-08-09 02:00:00,0.19,0.225,0.249 -2015-08-09 03:00:00,0.19,0.225,0.249 -2015-08-09 04:00:00,0.19,0.225,0.249 -2015-08-09 05:00:00,0.19,0.225,0.249 -2015-08-09 06:00:00,0.19,0.225,0.249 -2015-08-09 07:00:00,0.19,0.225,0.249 -2015-08-09 08:00:00,0.19,0.225,0.249 -2015-08-09 09:00:00,0.19,0.225,0.249 -2015-08-09 10:00:00,0.19,0.225,0.249 -2015-08-09 11:00:00,0.19,0.225,0.249 -2015-08-09 12:00:00,0.19,0.225,0.249 -2015-08-09 13:00:00,0.19,0.225,0.249 -2015-08-09 14:00:00,0.19,0.225,0.248 -2015-08-09 15:00:00,0.19,0.225,0.248 -2015-08-09 16:00:00,0.19,0.225,0.248 -2015-08-09 17:00:00,0.19,0.225,0.248 -2015-08-09 18:00:00,0.191,0.225,0.248 -2015-08-09 19:00:00,0.191,0.225,0.248 -2015-08-09 20:00:00,0.191,0.225,0.248 -2015-08-09 21:00:00,0.191,0.225,0.248 -2015-08-09 22:00:00,0.19,0.225,0.248 -2015-08-09 23:00:00,0.19,0.225,0.248 -2015-08-10 00:00:00,0.19,0.225,0.248 -2015-08-10 01:00:00,0.19,0.225,0.249 -2015-08-10 02:00:00,0.19,0.225,0.249 -2015-08-10 03:00:00,0.19,0.225,0.249 -2015-08-10 04:00:00,0.19,0.225,0.249 -2015-08-10 05:00:00,0.19,0.225,0.249 -2015-08-10 06:00:00,0.19,0.225,0.249 -2015-08-10 07:00:00,0.19,0.225,0.249 -2015-08-10 08:00:00,0.19,0.225,0.249 -2015-08-10 09:00:00,0.18899999999999997,0.225,0.249 -2015-08-10 10:00:00,0.19,0.22399999999999998,0.249 -2015-08-10 11:00:00,0.19,0.22399999999999998,0.248 -2015-08-10 12:00:00,0.18899999999999997,0.222,0.248 -2015-08-10 13:00:00,0.19,0.222,0.248 -2015-08-10 14:00:00,0.19,0.222,0.248 -2015-08-10 15:00:00,0.19,0.222,0.248 -2015-08-10 16:00:00,0.19,0.222,0.248 -2015-08-10 17:00:00,0.19,0.221,0.248 -2015-08-10 18:00:00,0.19,0.221,0.247 -2015-08-10 19:00:00,0.188,0.22,0.252 -2015-08-10 20:00:00,0.191,0.222,0.252 -2015-08-10 21:00:00,0.192,0.223,0.253 -2015-08-10 22:00:00,0.193,0.225,0.253 -2015-08-10 23:00:00,0.19399999999999998,0.225,0.253 -2015-08-11 00:00:00,0.19399999999999998,0.225,0.253 -2015-08-11 01:00:00,0.19399999999999998,0.225,0.253 -2015-08-11 02:00:00,0.193,0.225,0.253 -2015-08-11 03:00:00,0.193,0.225,0.253 -2015-08-11 04:00:00,0.19399999999999998,0.225,0.253 -2015-08-11 05:00:00,0.193,0.225,0.253 -2015-08-11 06:00:00,0.193,0.225,0.253 -2015-08-11 07:00:00,0.193,0.225,0.253 -2015-08-11 08:00:00,0.19399999999999998,0.225,0.253 -2015-08-11 09:00:00,0.19399999999999998,0.225,0.253 -2015-08-11 10:00:00,0.196,0.225,0.253 -2015-08-11 11:00:00,0.196,0.225,0.253 -2015-08-11 12:00:00,0.19699999999999998,0.225,0.252 -2015-08-11 13:00:00,0.19699999999999998,0.225,0.252 -2015-08-11 14:00:00,0.19699999999999998,0.226,0.251 -2015-08-11 15:00:00,0.19699999999999998,0.22699999999999998,0.251 -2015-08-11 16:00:00,0.198,0.22699999999999998,0.251 -2015-08-11 17:00:00,0.198,0.225,0.251 -2015-08-11 18:00:00,0.198,0.22,0.251 -2015-08-11 19:00:00,0.198,0.22699999999999998,0.251 -2015-08-11 20:00:00,0.198,0.244,0.251 -2015-08-11 21:00:00,0.198,0.264,0.251 -2015-08-11 22:00:00,0.198,0.27899999999999997,0.251 -2015-08-11 23:00:00,0.198,0.28600000000000003,0.251 -2015-08-12 00:00:00,0.198,0.287,0.251 -2015-08-12 01:00:00,0.198,0.287,0.251 -2015-08-12 02:00:00,0.198,0.287,0.251 -2015-08-12 03:00:00,0.198,0.285,0.251 -2015-08-12 04:00:00,0.19699999999999998,0.284,0.251 -2015-08-12 05:00:00,0.19699999999999998,0.282,0.251 -2015-08-12 06:00:00,0.19699999999999998,0.281,0.251 -2015-08-12 07:00:00,0.19699999999999998,0.28,0.251 -2015-08-12 08:00:00,0.19699999999999998,0.278,0.252 -2015-08-12 09:00:00,0.19699999999999998,0.276,0.251 -2015-08-12 10:00:00,0.19699999999999998,0.275,0.251 -2015-08-12 11:00:00,0.19699999999999998,0.275,0.251 -2015-08-12 12:00:00,0.19699999999999998,0.27399999999999997,0.251 -2015-08-12 13:00:00,0.19699999999999998,0.273,0.251 -2015-08-12 14:00:00,0.19699999999999998,0.272,0.251 -2015-08-12 15:00:00,0.198,0.272,0.251 -2015-08-12 16:00:00,0.198,0.271,0.251 -2015-08-12 17:00:00,0.198,0.271,0.251 -2015-08-12 18:00:00,0.198,0.27,0.25 -2015-08-12 19:00:00,0.198,0.27,0.25 -2015-08-12 20:00:00,0.198,0.27,0.25 -2015-08-12 21:00:00,0.198,0.27,0.251 -2015-08-12 22:00:00,0.198,0.26899999999999996,0.251 -2015-08-12 23:00:00,0.198,0.268,0.251 -2015-08-13 00:00:00,0.19699999999999998,0.268,0.251 -2015-08-13 01:00:00,0.19699999999999998,0.268,0.251 -2015-08-13 02:00:00,0.19699999999999998,0.268,0.251 -2015-08-13 03:00:00,0.19699999999999998,0.267,0.251 -2015-08-13 04:00:00,0.19699999999999998,0.266,0.251 -2015-08-13 05:00:00,0.19699999999999998,0.266,0.251 -2015-08-13 06:00:00,0.196,0.266,0.251 -2015-08-13 07:00:00,0.196,0.266,0.251 -2015-08-13 08:00:00,0.19699999999999998,0.266,0.251 -2015-08-13 09:00:00,0.196,0.266,0.251 -2015-08-13 10:00:00,0.196,0.266,0.251 -2015-08-13 11:00:00,0.196,0.265,0.251 -2015-08-13 12:00:00,0.196,0.264,0.251 -2015-08-13 13:00:00,0.196,0.264,0.25 -2015-08-13 14:00:00,0.196,0.264,0.25 -2015-08-13 15:00:00,0.196,0.263,0.25 -2015-08-13 16:00:00,0.196,0.263,0.25 -2015-08-13 17:00:00,0.196,0.263,0.25 -2015-08-13 18:00:00,0.196,0.262,0.25 -2015-08-13 19:00:00,0.196,0.261,0.25 -2015-08-13 20:00:00,0.196,0.261,0.25 -2015-08-13 21:00:00,0.196,0.261,0.25 -2015-08-13 22:00:00,0.196,0.261,0.25 -2015-08-13 23:00:00,0.196,0.261,0.25 -2015-08-14 00:00:00,0.196,0.261,0.25 -2015-08-14 01:00:00,0.196,0.261,0.25 -2015-08-14 02:00:00,0.196,0.261,0.25 -2015-08-14 03:00:00,0.196,0.261,0.25 -2015-08-14 04:00:00,0.196,0.261,0.25 -2015-08-14 05:00:00,0.196,0.26,0.25 -2015-08-14 06:00:00,0.196,0.26,0.25 -2015-08-14 07:00:00,0.196,0.259,0.251 -2015-08-14 08:00:00,0.196,0.259,0.251 -2015-08-14 09:00:00,0.196,0.259,0.25 -2015-08-14 10:00:00,0.196,0.259,0.25 -2015-08-14 11:00:00,0.196,0.259,0.25 -2015-08-14 12:00:00,0.196,0.259,0.25 -2015-08-14 13:00:00,0.196,0.259,0.25 -2015-08-14 14:00:00,0.196,0.259,0.25 -2015-08-14 15:00:00,0.196,0.259,0.25 -2015-08-14 16:00:00,0.196,0.259,0.25 -2015-08-14 17:00:00,0.196,0.259,0.25 -2015-08-14 18:00:00,0.196,0.258,0.25 -2015-08-14 19:00:00,0.196,0.258,0.25 -2015-08-14 20:00:00,0.196,0.258,0.25 -2015-08-14 21:00:00,0.196,0.258,0.25 -2015-08-14 22:00:00,0.19699999999999998,0.258,0.251 -2015-08-14 23:00:00,0.19699999999999998,0.258,0.251 -2015-08-15 00:00:00,0.19699999999999998,0.258,0.251 -2015-08-15 01:00:00,0.19699999999999998,0.258,0.251 -2015-08-15 02:00:00,0.19699999999999998,0.258,0.251 -2015-08-15 03:00:00,0.19699999999999998,0.258,0.251 -2015-08-15 04:00:00,0.196,0.258,0.251 -2015-08-15 05:00:00,0.196,0.258,0.251 -2015-08-15 06:00:00,0.196,0.257,0.251 -2015-08-15 07:00:00,0.196,0.256,0.251 -2015-08-15 08:00:00,0.196,0.256,0.251 -2015-08-15 09:00:00,0.196,0.256,0.251 -2015-08-15 10:00:00,0.196,0.256,0.251 -2015-08-15 11:00:00,0.196,0.256,0.251 -2015-08-15 12:00:00,0.195,0.256,0.25 -2015-08-15 13:00:00,0.195,0.256,0.25 -2015-08-15 14:00:00,0.195,0.256,0.25 -2015-08-15 15:00:00,0.195,0.254,0.25 -2015-08-15 16:00:00,0.195,0.254,0.25 -2015-08-15 17:00:00,0.195,0.253,0.25 -2015-08-15 18:00:00,0.195,0.253,0.25 -2015-08-15 19:00:00,0.195,0.253,0.25 -2015-08-15 20:00:00,0.195,0.253,0.25 -2015-08-15 21:00:00,0.19399999999999998,0.253,0.25 -2015-08-15 22:00:00,0.19399999999999998,0.253,0.25 -2015-08-15 23:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 00:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 01:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 02:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 03:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 04:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 05:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 06:00:00,0.19399999999999998,0.253,0.25 -2015-08-16 07:00:00,0.195,0.253,0.252 -2015-08-16 08:00:00,0.195,0.253,0.253 -2015-08-16 09:00:00,0.195,0.253,0.253 -2015-08-16 10:00:00,0.19399999999999998,0.253,0.254 -2015-08-16 11:00:00,0.19399999999999998,0.252,0.254 -2015-08-16 12:00:00,0.196,0.252,0.254 -2015-08-16 13:00:00,0.19899999999999998,0.251,0.254 -2015-08-16 14:00:00,0.21600000000000003,0.251,0.254 -2015-08-16 15:00:00,0.22699999999999998,0.251,0.255 -2015-08-16 16:00:00,0.23199999999999998,0.249,0.255 -2015-08-16 17:00:00,0.237,0.249,0.255 -2015-08-16 18:00:00,0.237,0.249,0.255 -2015-08-16 19:00:00,0.237,0.249,0.255 -2015-08-16 20:00:00,0.237,0.249,0.255 -2015-08-16 21:00:00,0.237,0.249,0.254 -2015-08-16 22:00:00,0.23600000000000002,0.249,0.255 -2015-08-16 23:00:00,0.237,0.248,0.254 -2015-08-17 00:00:00,0.23600000000000002,0.248,0.254 -2015-08-17 01:00:00,0.23399999999999999,0.248,0.255 -2015-08-17 02:00:00,0.23199999999999998,0.248,0.255 -2015-08-17 03:00:00,0.231,0.248,0.255 -2015-08-17 04:00:00,0.23,0.248,0.255 -2015-08-17 05:00:00,0.23,0.248,0.255 -2015-08-17 06:00:00,0.22899999999999998,0.248,0.255 -2015-08-17 07:00:00,0.228,0.247,0.255 -2015-08-17 08:00:00,0.22899999999999998,0.247,0.255 -2015-08-17 09:00:00,0.22899999999999998,0.247,0.255 -2015-08-17 10:00:00,0.23,0.247,0.255 -2015-08-17 11:00:00,0.233,0.247,0.255 -2015-08-17 12:00:00,0.23399999999999999,0.247,0.255 -2015-08-17 13:00:00,0.235,0.247,0.255 -2015-08-17 14:00:00,0.23600000000000002,0.24600000000000002,0.255 -2015-08-17 15:00:00,0.24,0.24600000000000002,0.256 -2015-08-17 16:00:00,0.263,0.245,0.256 -2015-08-17 17:00:00,0.26899999999999996,0.244,0.256 -2015-08-17 18:00:00,0.27,0.244,0.256 -2015-08-17 19:00:00,0.27,0.244,0.256 -2015-08-17 20:00:00,0.26899999999999996,0.244,0.256 -2015-08-17 21:00:00,0.267,0.244,0.256 -2015-08-17 22:00:00,0.266,0.244,0.256 -2015-08-17 23:00:00,0.265,0.244,0.256 -2015-08-18 00:00:00,0.263,0.244,0.256 -2015-08-18 01:00:00,0.262,0.244,0.256 -2015-08-18 02:00:00,0.261,0.244,0.256 -2015-08-18 03:00:00,0.26,0.244,0.255 -2015-08-18 04:00:00,0.259,0.244,0.255 -2015-08-18 05:00:00,0.259,0.244,0.256 -2015-08-18 06:00:00,0.258,0.244,0.255 -2015-08-18 07:00:00,0.258,0.244,0.255 -2015-08-18 08:00:00,0.257,0.244,0.255 -2015-08-18 09:00:00,0.257,0.244,0.255 -2015-08-18 10:00:00,0.257,0.244,0.255 -2015-08-18 11:00:00,0.256,0.244,0.255 -2015-08-18 12:00:00,0.258,0.244,0.255 -2015-08-18 13:00:00,0.26,0.244,0.255 -2015-08-18 14:00:00,0.261,0.244,0.254 -2015-08-18 15:00:00,0.26,0.244,0.254 -2015-08-18 16:00:00,0.259,0.244,0.254 -2015-08-18 17:00:00,0.258,0.244,0.253 -2015-08-18 18:00:00,0.258,0.244,0.253 -2015-08-18 19:00:00,0.258,0.244,0.253 -2015-08-18 20:00:00,0.257,0.244,0.253 -2015-08-18 21:00:00,0.257,0.244,0.253 -2015-08-18 22:00:00,0.257,0.244,0.254 -2015-08-18 23:00:00,0.257,0.244,0.254 -2015-08-19 00:00:00,0.257,0.244,0.254 -2015-08-19 01:00:00,0.256,0.244,0.254 -2015-08-19 02:00:00,0.256,0.244,0.254 -2015-08-19 03:00:00,0.256,0.242,0.254 -2015-08-19 04:00:00,0.256,0.243,0.253 -2015-08-19 05:00:00,0.255,0.243,0.254 -2015-08-19 06:00:00,0.255,0.244,0.254 -2015-08-19 07:00:00,0.255,0.244,0.254 -2015-08-19 08:00:00,0.255,0.244,0.254 -2015-08-19 09:00:00,0.255,0.243,0.254 -2015-08-19 10:00:00,0.254,0.242,0.253 -2015-08-19 11:00:00,0.254,0.242,0.253 -2015-08-19 12:00:00,0.252,0.242,0.253 -2015-08-19 13:00:00,0.251,0.242,0.253 -2015-08-19 14:00:00,0.25,0.242,0.253 -2015-08-19 15:00:00,0.249,0.242,0.253 -2015-08-19 16:00:00,0.248,0.242,0.253 -2015-08-19 17:00:00,0.248,0.242,0.253 -2015-08-19 18:00:00,0.248,0.242,0.253 -2015-08-19 19:00:00,0.247,0.242,0.253 -2015-08-19 20:00:00,0.247,0.242,0.253 -2015-08-19 21:00:00,0.247,0.242,0.253 -2015-08-19 22:00:00,0.247,0.242,0.253 -2015-08-19 23:00:00,0.247,0.242,0.253 -2015-08-20 00:00:00,0.247,0.242,0.253 -2015-08-20 01:00:00,0.247,0.242,0.253 -2015-08-20 02:00:00,0.247,0.242,0.253 -2015-08-20 03:00:00,0.247,0.242,0.253 -2015-08-20 04:00:00,0.248,0.242,0.253 -2015-08-20 05:00:00,0.249,0.242,0.253 -2015-08-20 06:00:00,0.249,0.242,0.253 -2015-08-20 07:00:00,0.247,0.242,0.253 -2015-08-20 08:00:00,0.24600000000000002,0.242,0.253 -2015-08-20 09:00:00,0.247,0.242,0.253 -2015-08-20 10:00:00,0.248,0.242,0.253 -2015-08-20 11:00:00,0.248,0.242,0.253 -2015-08-20 12:00:00,0.247,0.242,0.253 -2015-08-20 13:00:00,0.245,0.242,0.253 -2015-08-20 14:00:00,0.244,0.242,0.253 -2015-08-20 15:00:00,0.243,0.242,0.253 -2015-08-20 16:00:00,0.242,0.242,0.253 -2015-08-20 17:00:00,0.242,0.24100000000000002,0.253 -2015-08-20 18:00:00,0.243,0.24100000000000002,0.253 -2015-08-20 19:00:00,0.244,0.24100000000000002,0.253 -2015-08-20 20:00:00,0.248,0.24100000000000002,0.253 -2015-08-20 21:00:00,0.248,0.24100000000000002,0.253 -2015-08-20 22:00:00,0.248,0.24100000000000002,0.253 -2015-08-20 23:00:00,0.248,0.24100000000000002,0.253 -2015-08-21 00:00:00,0.248,0.24100000000000002,0.253 -2015-08-21 01:00:00,0.247,0.24100000000000002,0.253 -2015-08-21 02:00:00,0.248,0.24100000000000002,0.253 -2015-08-21 03:00:00,0.247,0.24100000000000002,0.253 -2015-08-21 04:00:00,0.247,0.24100000000000002,0.253 -2015-08-21 05:00:00,0.247,0.24100000000000002,0.253 -2015-08-21 06:00:00,0.247,0.24100000000000002,0.253 -2015-08-21 07:00:00,0.248,0.24100000000000002,0.253 -2015-08-21 08:00:00,0.247,0.24100000000000002,0.253 -2015-08-21 09:00:00,0.24600000000000002,0.24100000000000002,0.253 -2015-08-21 10:00:00,0.24600000000000002,0.24100000000000002,0.253 -2015-08-21 11:00:00,0.245,0.24100000000000002,0.253 -2015-08-21 12:00:00,0.244,0.24100000000000002,0.253 -2015-08-21 13:00:00,0.243,0.24100000000000002,0.253 -2015-08-21 14:00:00,0.242,0.24100000000000002,0.253 -2015-08-21 15:00:00,0.24100000000000002,0.24100000000000002,0.253 -2015-08-21 16:00:00,0.24,0.24100000000000002,0.253 -2015-08-21 17:00:00,0.24,0.24100000000000002,0.252 -2015-08-21 18:00:00,0.239,0.24,0.252 -2015-08-21 19:00:00,0.239,0.24,0.253 -2015-08-21 20:00:00,0.239,0.24,0.252 -2015-08-21 21:00:00,0.239,0.24,0.252 -2015-08-21 22:00:00,0.239,0.24,0.253 -2015-08-21 23:00:00,0.239,0.239,0.253 -2015-08-22 00:00:00,0.239,0.239,0.253 -2015-08-22 01:00:00,0.23800000000000002,0.239,0.253 -2015-08-22 02:00:00,0.23800000000000002,0.239,0.253 -2015-08-22 03:00:00,0.23800000000000002,0.239,0.253 -2015-08-22 04:00:00,0.23800000000000002,0.255,0.253 -2015-08-22 05:00:00,0.23800000000000002,0.27,0.253 -2015-08-22 06:00:00,0.23800000000000002,0.263,0.253 -2015-08-22 07:00:00,0.23800000000000002,0.262,0.253 -2015-08-22 08:00:00,0.23800000000000002,0.263,0.253 -2015-08-22 09:00:00,0.23800000000000002,0.263,0.253 -2015-08-22 10:00:00,0.239,0.262,0.253 -2015-08-22 11:00:00,0.23800000000000002,0.261,0.253 -2015-08-22 12:00:00,0.237,0.261,0.253 -2015-08-22 13:00:00,0.237,0.261,0.252 -2015-08-22 14:00:00,0.23600000000000002,0.261,0.252 -2015-08-22 15:00:00,0.237,0.261,0.252 -2015-08-22 16:00:00,0.23600000000000002,0.261,0.252 -2015-08-22 17:00:00,0.23600000000000002,0.261,0.252 -2015-08-22 18:00:00,0.23600000000000002,0.261,0.252 -2015-08-22 19:00:00,0.23600000000000002,0.261,0.252 -2015-08-22 20:00:00,0.23600000000000002,0.26,0.252 -2015-08-22 21:00:00,0.235,0.259,0.252 -2015-08-22 22:00:00,0.235,0.259,0.252 -2015-08-22 23:00:00,0.235,0.259,0.252 -2015-08-23 00:00:00,0.235,0.259,0.252 -2015-08-23 01:00:00,0.235,0.259,0.252 -2015-08-23 02:00:00,0.235,0.259,0.252 -2015-08-23 03:00:00,0.235,0.259,0.252 -2015-08-23 04:00:00,0.235,0.259,0.252 -2015-08-23 05:00:00,0.23399999999999999,0.259,0.252 -2015-08-23 06:00:00,0.23399999999999999,0.259,0.252 -2015-08-23 07:00:00,0.23399999999999999,0.259,0.252 -2015-08-23 08:00:00,0.23399999999999999,0.259,0.252 -2015-08-23 09:00:00,0.23600000000000002,0.259,0.252 -2015-08-23 10:00:00,0.235,0.259,0.252 -2015-08-23 11:00:00,0.23399999999999999,0.258,0.252 -2015-08-23 12:00:00,0.233,0.258,0.252 -2015-08-23 13:00:00,0.23199999999999998,0.258,0.252 -2015-08-23 14:00:00,0.23199999999999998,0.258,0.252 -2015-08-23 15:00:00,0.231,0.258,0.252 -2015-08-23 16:00:00,0.231,0.256,0.251 -2015-08-23 17:00:00,0.23,0.256,0.251 -2015-08-23 18:00:00,0.23,0.256,0.251 -2015-08-23 19:00:00,0.23,0.256,0.251 -2015-08-23 20:00:00,0.23,0.256,0.251 -2015-08-23 21:00:00,0.23,0.256,0.251 -2015-08-23 22:00:00,0.231,0.256,0.253 -2015-08-23 23:00:00,0.23,0.256,0.254 -2015-08-24 00:00:00,0.23,0.256,0.254 -2015-08-24 01:00:00,0.23,0.256,0.254 -2015-08-24 02:00:00,0.23,0.256,0.255 -2015-08-24 03:00:00,0.23,0.256,0.255 -2015-08-24 04:00:00,0.231,0.256,0.254 -2015-08-24 05:00:00,0.231,0.256,0.255 -2015-08-24 06:00:00,0.231,0.256,0.255 -2015-08-24 07:00:00,0.231,0.256,0.255 -2015-08-24 08:00:00,0.231,0.256,0.255 -2015-08-24 09:00:00,0.231,0.256,0.255 -2015-08-24 10:00:00,0.231,0.256,0.254 -2015-08-24 11:00:00,0.23199999999999998,0.256,0.254 -2015-08-24 12:00:00,0.23199999999999998,0.256,0.254 -2015-08-24 13:00:00,0.23199999999999998,0.256,0.253 -2015-08-24 14:00:00,0.23199999999999998,0.256,0.253 -2015-08-24 15:00:00,0.23199999999999998,0.256,0.253 -2015-08-24 16:00:00,0.23199999999999998,0.255,0.253 -2015-08-24 17:00:00,0.231,0.254,0.254 -2015-08-24 18:00:00,0.23,0.254,0.255 -2015-08-24 19:00:00,0.231,0.254,0.255 -2015-08-24 20:00:00,0.231,0.254,0.255 -2015-08-24 21:00:00,0.231,0.254,0.255 -2015-08-24 22:00:00,0.231,0.254,0.255 -2015-08-24 23:00:00,0.231,0.254,0.255 -2015-08-25 00:00:00,0.226,0.254,0.256 -2015-08-25 01:00:00,0.226,0.255,0.256 -2015-08-25 02:00:00,0.226,0.255,0.256 -2015-08-25 03:00:00,0.226,0.255,0.256 -2015-08-25 04:00:00,0.226,0.255,0.256 -2015-08-25 05:00:00,0.22699999999999998,0.255,0.256 -2015-08-25 06:00:00,0.22699999999999998,0.255,0.256 -2015-08-25 07:00:00,0.22699999999999998,0.254,0.255 -2015-08-25 08:00:00,0.22699999999999998,0.254,0.255 -2015-08-25 09:00:00,0.228,0.254,0.255 -2015-08-25 10:00:00,0.23,0.254,0.255 -2015-08-25 11:00:00,0.231,0.254,0.255 -2015-08-25 12:00:00,0.231,0.254,0.254 -2015-08-25 13:00:00,0.231,0.254,0.254 -2015-08-25 14:00:00,0.231,0.254,0.253 -2015-08-25 15:00:00,0.231,0.253,0.253 -2015-08-25 16:00:00,0.231,0.253,0.253 -2015-08-25 17:00:00,0.23,0.253,0.253 -2015-08-25 18:00:00,0.23,0.252,0.253 -2015-08-25 19:00:00,0.23,0.251,0.252 -2015-08-25 20:00:00,0.23,0.251,0.253 -2015-08-25 21:00:00,0.23,0.251,0.253 -2015-08-25 22:00:00,0.23,0.252,0.253 -2015-08-25 23:00:00,0.23,0.253,0.253 -2015-08-26 00:00:00,0.23,0.254,0.253 -2015-08-26 01:00:00,0.23,0.254,0.253 -2015-08-26 02:00:00,0.23,0.254,0.253 -2015-08-26 03:00:00,0.23,0.256,0.253 -2015-08-26 04:00:00,0.23,0.259,0.253 -2015-08-26 05:00:00,0.23,0.259,0.253 -2015-08-26 06:00:00,0.23,0.258,0.253 -2015-08-26 07:00:00,0.23,0.258,0.253 -2015-08-26 08:00:00,0.23,0.258,0.253 -2015-08-26 09:00:00,0.23,0.256,0.253 -2015-08-26 10:00:00,0.22899999999999998,0.254,0.253 -2015-08-26 11:00:00,0.228,0.252,0.253 -2015-08-26 12:00:00,0.228,0.251,0.252 -2015-08-26 13:00:00,0.228,0.251,0.252 -2015-08-26 14:00:00,0.228,0.25,0.252 -2015-08-26 15:00:00,0.22699999999999998,0.25,0.252 -2015-08-26 16:00:00,0.22699999999999998,0.249,0.252 -2015-08-26 17:00:00,0.22699999999999998,0.252,0.252 -2015-08-26 18:00:00,0.22699999999999998,0.257,0.252 -2015-08-26 19:00:00,0.22699999999999998,0.264,0.252 -2015-08-26 20:00:00,0.22699999999999998,0.265,0.252 -2015-08-26 21:00:00,0.22699999999999998,0.265,0.252 -2015-08-26 22:00:00,0.22699999999999998,0.264,0.252 -2015-08-26 23:00:00,0.22699999999999998,0.266,0.252 -2015-08-27 00:00:00,0.22699999999999998,0.266,0.252 -2015-08-27 01:00:00,0.22699999999999998,0.268,0.252 -2015-08-27 02:00:00,0.226,0.27,0.252 -2015-08-27 03:00:00,0.22699999999999998,0.268,0.252 -2015-08-27 04:00:00,0.226,0.26899999999999996,0.252 -2015-08-27 05:00:00,0.226,0.268,0.253 -2015-08-27 06:00:00,0.226,0.266,0.252 -2015-08-27 07:00:00,0.226,0.266,0.252 -2015-08-27 08:00:00,0.226,0.266,0.252 -2015-08-27 09:00:00,0.226,0.266,0.252 -2015-08-27 10:00:00,0.226,0.265,0.252 -2015-08-27 11:00:00,0.226,0.262,0.252 -2015-08-27 12:00:00,0.226,0.261,0.252 -2015-08-27 13:00:00,0.226,0.259,0.252 -2015-08-27 14:00:00,0.226,0.259,0.252 -2015-08-27 15:00:00,0.226,0.259,0.252 -2015-08-27 16:00:00,0.226,0.259,0.252 -2015-08-27 17:00:00,0.226,0.259,0.252 -2015-08-27 18:00:00,0.226,0.259,0.252 -2015-08-27 19:00:00,0.226,0.259,0.253 -2015-08-27 20:00:00,0.225,0.259,0.254 -2015-08-27 21:00:00,0.225,0.259,0.255 -2015-08-27 22:00:00,0.223,0.259,0.256 -2015-08-27 23:00:00,0.222,0.259,0.256 -2015-08-28 00:00:00,0.222,0.259,0.256 -2015-08-28 01:00:00,0.231,0.259,0.256 -2015-08-28 02:00:00,0.245,0.259,0.256 -2015-08-28 03:00:00,0.248,0.259,0.256 -2015-08-28 04:00:00,0.249,0.259,0.256 -2015-08-28 05:00:00,0.249,0.259,0.256 -2015-08-28 06:00:00,0.249,0.259,0.256 -2015-08-28 07:00:00,0.249,0.259,0.256 -2015-08-28 08:00:00,0.249,0.259,0.256 -2015-08-28 09:00:00,0.249,0.259,0.256 -2015-08-28 10:00:00,0.25,0.259,0.256 -2015-08-28 11:00:00,0.251,0.259,0.256 -2015-08-28 12:00:00,0.253,0.259,0.255 -2015-08-28 13:00:00,0.254,0.258,0.255 -2015-08-28 14:00:00,0.254,0.258,0.255 -2015-08-28 15:00:00,0.254,0.258,0.254 -2015-08-28 16:00:00,0.254,0.258,0.254 -2015-08-28 17:00:00,0.253,0.257,0.254 -2015-08-28 18:00:00,0.253,0.256,0.254 -2015-08-28 19:00:00,0.252,0.256,0.254 -2015-08-28 20:00:00,0.252,0.256,0.254 -2015-08-28 21:00:00,0.252,0.256,0.254 -2015-08-28 22:00:00,0.252,0.256,0.254 -2015-08-28 23:00:00,0.252,0.257,0.254 -2015-08-29 00:00:00,0.251,0.258,0.254 -2015-08-29 01:00:00,0.251,0.258,0.254 -2015-08-29 02:00:00,0.251,0.258,0.254 -2015-08-29 03:00:00,0.251,0.258,0.254 -2015-08-29 04:00:00,0.251,0.258,0.254 -2015-08-29 05:00:00,0.251,0.257,0.254 -2015-08-29 06:00:00,0.251,0.257,0.254 -2015-08-29 07:00:00,0.251,0.256,0.254 -2015-08-29 08:00:00,0.251,0.256,0.254 -2015-08-29 09:00:00,0.251,0.256,0.254 -2015-08-29 10:00:00,0.25,0.256,0.254 -2015-08-29 11:00:00,0.25,0.256,0.254 -2015-08-29 12:00:00,0.249,0.256,0.254 -2015-08-29 13:00:00,0.248,0.256,0.253 -2015-08-29 14:00:00,0.247,0.256,0.253 -2015-08-29 15:00:00,0.24600000000000002,0.256,0.253 -2015-08-29 16:00:00,0.24600000000000002,0.255,0.253 -2015-08-29 17:00:00,0.245,0.255,0.253 -2015-08-29 18:00:00,0.245,0.255,0.253 -2015-08-29 19:00:00,0.245,0.254,0.253 -2015-08-29 20:00:00,0.245,0.254,0.253 -2015-08-29 21:00:00,0.245,0.254,0.253 -2015-08-29 22:00:00,0.245,0.254,0.253 -2015-08-29 23:00:00,0.245,0.255,0.253 -2015-08-30 00:00:00,0.245,0.255,0.254 -2015-08-30 01:00:00,0.245,0.255,0.254 -2015-08-30 02:00:00,0.245,0.255,0.254 -2015-08-30 03:00:00,0.245,0.255,0.254 -2015-08-30 04:00:00,0.245,0.255,0.254 -2015-08-30 05:00:00,0.245,0.255,0.254 -2015-08-30 06:00:00,0.245,0.254,0.254 -2015-08-30 07:00:00,0.245,0.254,0.254 -2015-08-30 08:00:00,0.245,0.254,0.254 -2015-08-30 09:00:00,0.245,0.254,0.254 -2015-08-30 10:00:00,0.245,0.255,0.254 -2015-08-30 11:00:00,0.244,0.254,0.254 -2015-08-30 12:00:00,0.243,0.254,0.254 -2015-08-30 13:00:00,0.243,0.254,0.254 -2015-08-30 14:00:00,0.242,0.254,0.254 -2015-08-30 15:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 16:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 17:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 18:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 19:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 20:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 21:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 22:00:00,0.24100000000000002,0.253,0.254 -2015-08-30 23:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 00:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 01:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 02:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 03:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 04:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 05:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 06:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 07:00:00,0.24100000000000002,0.253,0.254 -2015-08-31 08:00:00,0.24100000000000002,0.253,0.255 -2015-08-31 09:00:00,0.24,0.253,0.255 -2015-08-31 10:00:00,0.24,0.253,0.255 -2015-08-31 11:00:00,0.239,0.253,0.254 -2015-08-31 12:00:00,0.24,0.253,0.254 -2015-08-31 13:00:00,0.24,0.253,0.254 -2015-08-31 14:00:00,0.239,0.253,0.254 -2015-08-31 15:00:00,0.23800000000000002,0.253,0.254 -2015-08-31 16:00:00,0.237,0.253,0.254 -2015-08-31 17:00:00,0.237,0.253,0.254 -2015-08-31 18:00:00,0.237,0.252,0.254 -2015-08-31 19:00:00,0.237,0.252,0.254 -2015-08-31 20:00:00,0.237,0.252,0.254 -2015-08-31 21:00:00,0.237,0.252,0.254 -2015-08-31 22:00:00,0.237,0.252,0.254 -2015-08-31 23:00:00,0.237,0.252,0.254 -2015-09-01 00:00:00,0.237,0.252,0.254 -2015-09-01 01:00:00,0.23600000000000002,0.252,0.254 -2015-09-01 02:00:00,0.237,0.252,0.254 -2015-09-01 03:00:00,0.23600000000000002,0.252,0.254 -2015-09-01 04:00:00,0.23600000000000002,0.252,0.254 -2015-09-01 05:00:00,0.23600000000000002,0.252,0.255 -2015-09-01 06:00:00,0.23600000000000002,0.252,0.255 -2015-09-01 07:00:00,0.23600000000000002,0.252,0.255 -2015-09-01 08:00:00,0.23600000000000002,0.252,0.257 -2015-09-01 09:00:00,0.23600000000000002,0.251,0.257 -2015-09-01 10:00:00,0.237,0.251,0.256 -2015-09-01 11:00:00,0.23600000000000002,0.251,0.257 -2015-09-01 12:00:00,0.231,0.251,0.258 -2015-09-01 13:00:00,0.231,0.251,0.258 -2015-09-01 14:00:00,0.231,0.251,0.258 -2015-09-01 15:00:00,0.23399999999999999,0.251,0.258 -2015-09-01 16:00:00,0.237,0.251,0.259 -2015-09-01 17:00:00,0.239,0.251,0.26 -2015-09-01 18:00:00,0.24100000000000002,0.251,0.26 -2015-09-01 19:00:00,0.24100000000000002,0.251,0.26 -2015-09-01 20:00:00,0.242,0.251,0.26 -2015-09-01 21:00:00,0.243,0.25,0.26 -2015-09-01 22:00:00,0.244,0.25,0.26 -2015-09-01 23:00:00,0.245,0.25,0.26 -2015-09-02 00:00:00,0.245,0.251,0.261 -2015-09-02 01:00:00,0.24600000000000002,0.251,0.261 -2015-09-02 02:00:00,0.24600000000000002,0.251,0.261 -2015-09-02 03:00:00,0.247,0.251,0.261 -2015-09-02 04:00:00,0.247,0.251,0.261 -2015-09-02 05:00:00,0.248,0.251,0.261 -2015-09-02 06:00:00,0.248,0.251,0.26 -2015-09-02 07:00:00,0.24600000000000002,0.251,0.261 -2015-09-02 08:00:00,0.24600000000000002,0.251,0.261 -2015-09-02 09:00:00,0.248,0.251,0.26 -2015-09-02 10:00:00,0.249,0.25,0.26 -2015-09-02 11:00:00,0.252,0.251,0.26 -2015-09-02 12:00:00,0.253,0.25,0.259 -2015-09-02 13:00:00,0.253,0.251,0.259 -2015-09-02 14:00:00,0.252,0.251,0.258 -2015-09-02 15:00:00,0.252,0.251,0.258 -2015-09-02 16:00:00,0.252,0.25,0.258 -2015-09-02 17:00:00,0.252,0.25,0.258 -2015-09-02 18:00:00,0.252,0.249,0.258 -2015-09-02 19:00:00,0.252,0.249,0.258 -2015-09-02 20:00:00,0.252,0.249,0.258 -2015-09-02 21:00:00,0.252,0.249,0.258 -2015-09-02 22:00:00,0.252,0.249,0.258 -2015-09-02 23:00:00,0.252,0.25,0.258 -2015-09-03 00:00:00,0.252,0.25,0.258 -2015-09-03 01:00:00,0.252,0.251,0.258 -2015-09-03 02:00:00,0.252,0.251,0.258 -2015-09-03 03:00:00,0.252,0.251,0.258 -2015-09-03 04:00:00,0.252,0.251,0.258 -2015-09-03 05:00:00,0.252,0.251,0.258 -2015-09-03 06:00:00,0.252,0.251,0.258 -2015-09-03 07:00:00,0.252,0.251,0.258 -2015-09-03 08:00:00,0.252,0.25,0.258 -2015-09-03 09:00:00,0.252,0.25,0.258 -2015-09-03 10:00:00,0.252,0.25,0.258 -2015-09-03 11:00:00,0.251,0.25,0.258 -2015-09-03 12:00:00,0.251,0.249,0.258 -2015-09-03 13:00:00,0.25,0.249,0.258 -2015-09-03 14:00:00,0.249,0.249,0.257 -2015-09-03 15:00:00,0.249,0.249,0.257 -2015-09-03 16:00:00,0.249,0.249,0.257 -2015-09-03 17:00:00,0.248,0.249,0.257 -2015-09-03 18:00:00,0.248,0.249,0.257 -2015-09-03 19:00:00,0.248,0.249,0.257 -2015-09-03 20:00:00,0.248,0.249,0.257 -2015-09-03 21:00:00,0.248,0.248,0.257 -2015-09-03 22:00:00,0.248,0.249,0.257 -2015-09-03 23:00:00,0.248,0.249,0.257 -2015-09-04 00:00:00,0.248,0.249,0.257 -2015-09-04 01:00:00,0.248,0.249,0.257 -2015-09-04 02:00:00,0.248,0.249,0.257 -2015-09-04 03:00:00,0.248,0.249,0.257 -2015-09-04 04:00:00,0.248,0.249,0.257 -2015-09-04 05:00:00,0.248,0.249,0.257 -2015-09-04 06:00:00,0.248,0.249,0.257 -2015-09-04 07:00:00,0.248,0.248,0.257 -2015-09-04 08:00:00,0.248,0.248,0.257 -2015-09-04 09:00:00,0.248,0.248,0.257 -2015-09-04 10:00:00,0.248,0.247,0.257 -2015-09-04 11:00:00,0.248,0.247,0.257 -2015-09-04 12:00:00,0.247,0.247,0.257 -2015-09-04 13:00:00,0.24600000000000002,0.247,0.257 -2015-09-04 14:00:00,0.24600000000000002,0.247,0.257 -2015-09-04 15:00:00,0.245,0.247,0.257 -2015-09-04 16:00:00,0.245,0.24600000000000002,0.257 -2015-09-04 17:00:00,0.244,0.24600000000000002,0.257 -2015-09-04 18:00:00,0.244,0.24600000000000002,0.257 -2015-09-04 19:00:00,0.244,0.24600000000000002,0.257 -2015-09-04 20:00:00,0.244,0.24600000000000002,0.257 -2015-09-04 21:00:00,0.244,0.24600000000000002,0.257 -2015-09-04 22:00:00,0.244,0.24600000000000002,0.257 -2015-09-04 23:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 00:00:00,0.245,0.24600000000000002,0.257 -2015-09-05 01:00:00,0.245,0.24600000000000002,0.257 -2015-09-05 02:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 03:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 04:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 05:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 06:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 07:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 08:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 09:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 10:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 11:00:00,0.244,0.24600000000000002,0.257 -2015-09-05 12:00:00,0.243,0.24600000000000002,0.256 -2015-09-05 13:00:00,0.243,0.245,0.256 -2015-09-05 14:00:00,0.243,0.245,0.256 -2015-09-05 15:00:00,0.242,0.244,0.256 -2015-09-05 16:00:00,0.242,0.244,0.256 -2015-09-05 17:00:00,0.24100000000000002,0.244,0.257 -2015-09-05 18:00:00,0.24100000000000002,0.243,0.258 -2015-09-05 19:00:00,0.24100000000000002,0.242,0.258 -2015-09-05 20:00:00,0.24100000000000002,0.242,0.258 -2015-09-05 21:00:00,0.24,0.242,0.258 -2015-09-05 22:00:00,0.24,0.242,0.258 -2015-09-05 23:00:00,0.24100000000000002,0.243,0.258 -2015-09-06 00:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 01:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 02:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 03:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 04:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 05:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 06:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 07:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 08:00:00,0.24100000000000002,0.244,0.258 -2015-09-06 09:00:00,0.242,0.243,0.258 -2015-09-06 10:00:00,0.242,0.243,0.258 -2015-09-06 11:00:00,0.242,0.242,0.258 -2015-09-06 12:00:00,0.242,0.242,0.257 -2015-09-06 13:00:00,0.242,0.242,0.257 -2015-09-06 14:00:00,0.24100000000000002,0.242,0.256 -2015-09-06 15:00:00,0.24100000000000002,0.242,0.256 -2015-09-06 16:00:00,0.24,0.242,0.256 -2015-09-06 17:00:00,0.24,0.242,0.256 -2015-09-06 18:00:00,0.24,0.242,0.256 -2015-09-06 19:00:00,0.24,0.242,0.256 -2015-09-06 20:00:00,0.24,0.242,0.256 -2015-09-06 21:00:00,0.24,0.242,0.256 -2015-09-06 22:00:00,0.24,0.242,0.256 -2015-09-06 23:00:00,0.24,0.242,0.256 -2015-09-07 00:00:00,0.24,0.242,0.256 -2015-09-07 01:00:00,0.24,0.242,0.256 -2015-09-07 02:00:00,0.24,0.242,0.256 -2015-09-07 03:00:00,0.24,0.242,0.256 -2015-09-07 04:00:00,0.24,0.242,0.256 -2015-09-07 05:00:00,0.24,0.242,0.256 -2015-09-07 06:00:00,0.24,0.242,0.256 -2015-09-07 07:00:00,0.24,0.242,0.256 -2015-09-07 08:00:00,0.24,0.242,0.256 -2015-09-07 09:00:00,0.24,0.242,0.256 -2015-09-07 10:00:00,0.24,0.242,0.256 -2015-09-07 11:00:00,0.24,0.242,0.256 -2015-09-07 12:00:00,0.239,0.242,0.256 -2015-09-07 13:00:00,0.239,0.242,0.256 -2015-09-07 14:00:00,0.239,0.242,0.256 -2015-09-07 15:00:00,0.239,0.242,0.256 -2015-09-07 16:00:00,0.239,0.242,0.256 -2015-09-07 17:00:00,0.23800000000000002,0.242,0.256 -2015-09-07 18:00:00,0.23399999999999999,0.242,0.258 -2015-09-07 19:00:00,0.23399999999999999,0.242,0.258 -2015-09-07 20:00:00,0.235,0.242,0.258 -2015-09-07 21:00:00,0.235,0.242,0.258 -2015-09-07 22:00:00,0.235,0.242,0.258 -2015-09-07 23:00:00,0.23600000000000002,0.243,0.258 -2015-09-08 00:00:00,0.23600000000000002,0.244,0.258 -2015-09-08 01:00:00,0.23600000000000002,0.244,0.258 -2015-09-08 02:00:00,0.23600000000000002,0.244,0.258 -2015-09-08 03:00:00,0.23600000000000002,0.244,0.258 -2015-09-08 04:00:00,0.237,0.244,0.258 -2015-09-08 05:00:00,0.237,0.244,0.258 -2015-09-08 06:00:00,0.237,0.244,0.258 -2015-09-08 07:00:00,0.237,0.244,0.258 -2015-09-08 08:00:00,0.237,0.242,0.258 -2015-09-08 09:00:00,0.237,0.242,0.258 -2015-09-08 10:00:00,0.23800000000000002,0.242,0.258 -2015-09-08 11:00:00,0.239,0.242,0.258 -2015-09-08 12:00:00,0.239,0.242,0.257 -2015-09-08 13:00:00,0.239,0.242,0.257 -2015-09-08 14:00:00,0.239,0.242,0.257 -2015-09-08 15:00:00,0.23800000000000002,0.242,0.256 -2015-09-08 16:00:00,0.23800000000000002,0.242,0.256 -2015-09-08 17:00:00,0.23800000000000002,0.242,0.256 -2015-09-08 18:00:00,0.23800000000000002,0.242,0.256 -2015-09-08 19:00:00,0.23800000000000002,0.242,0.256 -2015-09-08 20:00:00,0.23800000000000002,0.242,0.256 -2015-09-08 21:00:00,0.23800000000000002,0.243,0.256 -2015-09-08 22:00:00,0.237,0.243,0.256 -2015-09-08 23:00:00,0.23800000000000002,0.243,0.256 -2015-09-09 00:00:00,0.23800000000000002,0.244,0.256 -2015-09-09 01:00:00,0.23800000000000002,0.244,0.256 -2015-09-09 02:00:00,0.23800000000000002,0.244,0.256 -2015-09-09 03:00:00,0.23800000000000002,0.244,0.257 -2015-09-09 04:00:00,0.23800000000000002,0.244,0.257 -2015-09-09 05:00:00,0.23800000000000002,0.244,0.257 -2015-09-09 06:00:00,0.237,0.243,0.256 -2015-09-09 07:00:00,0.23800000000000002,0.243,0.256 -2015-09-09 08:00:00,0.237,0.243,0.257 -2015-09-09 09:00:00,0.237,0.242,0.257 -2015-09-09 10:00:00,0.237,0.242,0.257 -2015-09-09 11:00:00,0.237,0.242,0.256 -2015-09-09 12:00:00,0.237,0.242,0.256 -2015-09-09 13:00:00,0.23600000000000002,0.242,0.256 -2015-09-09 14:00:00,0.23600000000000002,0.242,0.256 -2015-09-09 15:00:00,0.235,0.242,0.256 -2015-09-09 16:00:00,0.235,0.242,0.256 -2015-09-09 17:00:00,0.235,0.242,0.256 -2015-09-09 18:00:00,0.235,0.242,0.256 -2015-09-09 19:00:00,0.23399999999999999,0.242,0.256 -2015-09-09 20:00:00,0.23399999999999999,0.242,0.256 -2015-09-09 21:00:00,0.23399999999999999,0.242,0.256 -2015-09-09 22:00:00,0.23399999999999999,0.242,0.256 -2015-09-09 23:00:00,0.23399999999999999,0.242,0.256 -2015-09-10 00:00:00,0.23399999999999999,0.242,0.256 -2015-09-10 01:00:00,0.23399999999999999,0.242,0.256 -2015-09-10 02:00:00,0.23399999999999999,0.242,0.256 -2015-09-10 03:00:00,0.23399999999999999,0.242,0.256 -2015-09-10 04:00:00,0.23399999999999999,0.242,0.256 -2015-09-10 05:00:00,0.233,0.242,0.256 -2015-09-10 06:00:00,0.233,0.242,0.256 -2015-09-10 07:00:00,0.233,0.242,0.256 -2015-09-10 08:00:00,0.233,0.242,0.256 -2015-09-10 09:00:00,0.233,0.242,0.256 -2015-09-10 10:00:00,0.23399999999999999,0.242,0.256 -2015-09-10 11:00:00,0.233,0.242,0.256 -2015-09-10 12:00:00,0.233,0.242,0.256 -2015-09-10 13:00:00,0.233,0.242,0.255 -2015-09-10 14:00:00,0.23199999999999998,0.242,0.255 -2015-09-10 15:00:00,0.23199999999999998,0.242,0.255 -2015-09-10 16:00:00,0.231,0.242,0.255 -2015-09-10 17:00:00,0.231,0.242,0.255 -2015-09-10 18:00:00,0.231,0.242,0.255 -2015-09-10 19:00:00,0.231,0.244,0.255 -2015-09-10 20:00:00,0.231,0.244,0.255 -2015-09-10 21:00:00,0.231,0.244,0.255 -2015-09-10 22:00:00,0.231,0.244,0.255 -2015-09-10 23:00:00,0.231,0.242,0.255 -2015-09-11 00:00:00,0.231,0.244,0.255 -2015-09-11 01:00:00,0.231,0.244,0.255 -2015-09-11 02:00:00,0.231,0.245,0.255 -2015-09-11 03:00:00,0.231,0.244,0.255 -2015-09-11 04:00:00,0.231,0.244,0.255 -2015-09-11 05:00:00,0.231,0.245,0.255 -2015-09-11 06:00:00,0.231,0.24600000000000002,0.255 -2015-09-11 07:00:00,0.231,0.24600000000000002,0.255 -2015-09-11 08:00:00,0.231,0.24600000000000002,0.255 -2015-09-11 09:00:00,0.231,0.24600000000000002,0.255 -2015-09-11 10:00:00,0.231,0.24600000000000002,0.255 -2015-09-11 11:00:00,0.231,0.247,0.255 -2015-09-11 12:00:00,0.23,0.247,0.255 -2015-09-11 13:00:00,0.23,0.24600000000000002,0.255 -2015-09-11 14:00:00,0.23,0.24600000000000002,0.255 -2015-09-11 15:00:00,0.22899999999999998,0.24600000000000002,0.255 -2015-09-11 16:00:00,0.22899999999999998,0.247,0.255 -2015-09-11 17:00:00,0.22899999999999998,0.247,0.255 -2015-09-11 18:00:00,0.22899999999999998,0.247,0.254 -2015-09-11 19:00:00,0.22899999999999998,0.248,0.254 -2015-09-11 20:00:00,0.22899999999999998,0.248,0.254 -2015-09-11 21:00:00,0.22899999999999998,0.248,0.254 -2015-09-11 22:00:00,0.22899999999999998,0.248,0.254 -2015-09-11 23:00:00,0.22899999999999998,0.248,0.254 -2015-09-12 00:00:00,0.22899999999999998,0.249,0.254 -2015-09-12 01:00:00,0.22899999999999998,0.249,0.254 -2015-09-12 02:00:00,0.22899999999999998,0.249,0.254 -2015-09-12 03:00:00,0.22899999999999998,0.249,0.254 -2015-09-12 04:00:00,0.228,0.249,0.255 -2015-09-12 05:00:00,0.228,0.249,0.255 -2015-09-12 06:00:00,0.228,0.25,0.255 -2015-09-12 07:00:00,0.228,0.25,0.255 -2015-09-12 08:00:00,0.228,0.25,0.255 -2015-09-12 09:00:00,0.228,0.25,0.255 -2015-09-12 10:00:00,0.228,0.251,0.255 -2015-09-12 11:00:00,0.228,0.251,0.254 -2015-09-12 12:00:00,0.228,0.25,0.254 -2015-09-12 13:00:00,0.228,0.25,0.254 -2015-09-12 14:00:00,0.22699999999999998,0.251,0.254 -2015-09-12 15:00:00,0.22699999999999998,0.251,0.254 -2015-09-12 16:00:00,0.22699999999999998,0.251,0.254 -2015-09-12 17:00:00,0.22699999999999998,0.251,0.254 -2015-09-12 18:00:00,0.22699999999999998,0.25,0.254 -2015-09-12 19:00:00,0.22699999999999998,0.251,0.254 -2015-09-12 20:00:00,0.22699999999999998,0.252,0.254 -2015-09-12 21:00:00,0.22699999999999998,0.253,0.254 -2015-09-12 22:00:00,0.22699999999999998,0.253,0.254 -2015-09-12 23:00:00,0.22699999999999998,0.253,0.255 -2015-09-13 00:00:00,0.22699999999999998,0.253,0.255 -2015-09-13 01:00:00,0.22699999999999998,0.253,0.255 -2015-09-13 02:00:00,0.22699999999999998,0.253,0.255 -2015-09-13 03:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 04:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 05:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 06:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 07:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 08:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 09:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 10:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 11:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 12:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 13:00:00,0.22699999999999998,0.254,0.255 -2015-09-13 14:00:00,0.228,0.254,0.255 -2015-09-13 15:00:00,0.228,0.255,0.256 -2015-09-13 16:00:00,0.228,0.255,0.256 -2015-09-13 17:00:00,0.228,0.255,0.256 -2015-09-13 18:00:00,0.22899999999999998,0.256,0.256 -2015-09-13 19:00:00,0.22899999999999998,0.256,0.256 -2015-09-13 20:00:00,0.22899999999999998,0.256,0.255 -2015-09-13 21:00:00,0.22899999999999998,0.256,0.256 -2015-09-13 22:00:00,0.22899999999999998,0.256,0.256 -2015-09-13 23:00:00,0.228,0.256,0.256 -2015-09-14 00:00:00,0.228,0.256,0.256 -2015-09-14 01:00:00,0.228,0.256,0.256 -2015-09-14 02:00:00,0.228,0.256,0.256 -2015-09-14 03:00:00,0.228,0.256,0.257 -2015-09-14 04:00:00,0.228,0.256,0.257 -2015-09-14 05:00:00,0.228,0.256,0.257 -2015-09-14 06:00:00,0.228,0.257,0.257 -2015-09-14 07:00:00,0.22699999999999998,0.257,0.257 -2015-09-14 08:00:00,0.22699999999999998,0.258,0.257 -2015-09-14 09:00:00,0.226,0.258,0.257 -2015-09-14 10:00:00,0.226,0.258,0.257 -2015-09-14 11:00:00,0.22699999999999998,0.258,0.257 -2015-09-14 12:00:00,0.22699999999999998,0.258,0.257 -2015-09-14 13:00:00,0.228,0.258,0.256 -2015-09-14 14:00:00,0.228,0.258,0.256 -2015-09-14 15:00:00,0.228,0.258,0.256 -2015-09-14 16:00:00,0.228,0.258,0.256 -2015-09-14 17:00:00,0.228,0.258,0.256 -2015-09-14 18:00:00,0.228,0.257,0.256 -2015-09-14 19:00:00,0.228,0.257,0.256 -2015-09-14 20:00:00,0.228,0.257,0.256 -2015-09-14 21:00:00,0.22899999999999998,0.258,0.256 -2015-09-14 22:00:00,0.228,0.258,0.256 -2015-09-14 23:00:00,0.228,0.258,0.256 -2015-09-15 00:00:00,0.228,0.258,0.256 -2015-09-15 01:00:00,0.228,0.258,0.256 -2015-09-15 02:00:00,0.228,0.258,0.256 -2015-09-15 03:00:00,0.228,0.258,0.256 -2015-09-15 04:00:00,0.228,0.258,0.256 -2015-09-15 05:00:00,0.228,0.258,0.256 -2015-09-15 06:00:00,0.228,0.258,0.256 -2015-09-15 07:00:00,0.228,0.258,0.256 -2015-09-15 08:00:00,0.228,0.258,0.256 -2015-09-15 09:00:00,0.228,0.258,0.256 -2015-09-15 10:00:00,0.228,0.258,0.256 -2015-09-15 11:00:00,0.228,0.258,0.256 -2015-09-15 12:00:00,0.228,0.258,0.256 -2015-09-15 13:00:00,0.228,0.258,0.256 -2015-09-15 14:00:00,0.228,0.258,0.256 -2015-09-15 15:00:00,0.22699999999999998,0.258,0.256 -2015-09-15 16:00:00,0.22699999999999998,0.258,0.256 -2015-09-15 17:00:00,0.22699999999999998,0.258,0.255 -2015-09-15 18:00:00,0.22699999999999998,0.258,0.255 -2015-09-15 19:00:00,0.228,0.258,0.255 -2015-09-15 20:00:00,0.22699999999999998,0.258,0.255 -2015-09-15 21:00:00,0.22699999999999998,0.258,0.255 -2015-09-15 22:00:00,0.22699999999999998,0.258,0.255 -2015-09-15 23:00:00,0.22699999999999998,0.258,0.255 -2015-09-16 00:00:00,0.22699999999999998,0.258,0.255 -2015-09-16 01:00:00,0.22699999999999998,0.258,0.256 -2015-09-16 02:00:00,0.22699999999999998,0.258,0.256 -2015-09-16 03:00:00,0.225,0.258,0.257 -2015-09-16 04:00:00,0.222,0.258,0.258 -2015-09-16 05:00:00,0.22,0.258,0.258 -2015-09-16 06:00:00,0.221,0.258,0.258 -2015-09-16 07:00:00,0.222,0.258,0.258 -2015-09-16 08:00:00,0.222,0.258,0.258 -2015-09-16 09:00:00,0.222,0.258,0.258 -2015-09-16 10:00:00,0.223,0.258,0.258 -2015-09-16 11:00:00,0.223,0.258,0.258 -2015-09-16 12:00:00,0.22399999999999998,0.258,0.259 -2015-09-16 13:00:00,0.233,0.258,0.259 -2015-09-16 14:00:00,0.254,0.258,0.259 -2015-09-16 15:00:00,0.258,0.258,0.258 -2015-09-16 16:00:00,0.26,0.258,0.258 -2015-09-16 17:00:00,0.261,0.258,0.258 -2015-09-16 18:00:00,0.262,0.258,0.258 -2015-09-16 19:00:00,0.261,0.258,0.259 -2015-09-16 20:00:00,0.265,0.258,0.259 -2015-09-16 21:00:00,0.27,0.258,0.259 -2015-09-16 22:00:00,0.27,0.258,0.259 -2015-09-16 23:00:00,0.27,0.257,0.259 -2015-09-17 00:00:00,0.27,0.256,0.259 -2015-09-17 01:00:00,0.272,0.256,0.259 -2015-09-17 02:00:00,0.273,0.256,0.259 -2015-09-17 03:00:00,0.272,0.257,0.259 -2015-09-17 04:00:00,0.272,0.258,0.259 -2015-09-17 05:00:00,0.271,0.258,0.259 -2015-09-17 06:00:00,0.27,0.258,0.259 -2015-09-17 07:00:00,0.26899999999999996,0.258,0.259 -2015-09-17 08:00:00,0.26899999999999996,0.259,0.259 -2015-09-17 09:00:00,0.268,0.259,0.26 -2015-09-17 10:00:00,0.268,0.259,0.26 -2015-09-17 11:00:00,0.26899999999999996,0.258,0.26 -2015-09-17 12:00:00,0.271,0.259,0.26 -2015-09-17 13:00:00,0.273,0.259,0.26 -2015-09-17 14:00:00,0.273,0.259,0.26 -2015-09-17 15:00:00,0.272,0.259,0.26 -2015-09-17 16:00:00,0.272,0.259,0.26 -2015-09-17 17:00:00,0.271,0.26,0.26 -2015-09-17 18:00:00,0.271,0.261,0.26 -2015-09-17 19:00:00,0.27399999999999997,0.261,0.261 -2015-09-17 20:00:00,0.275,0.261,0.261 -2015-09-17 21:00:00,0.275,0.261,0.261 -2015-09-17 22:00:00,0.273,0.261,0.261 -2015-09-17 23:00:00,0.272,0.261,0.261 -2015-09-18 00:00:00,0.271,0.261,0.261 -2015-09-18 01:00:00,0.27,0.261,0.262 -2015-09-18 02:00:00,0.26899999999999996,0.261,0.262 -2015-09-18 03:00:00,0.268,0.262,0.262 -2015-09-18 04:00:00,0.267,0.262,0.262 -2015-09-18 05:00:00,0.266,0.262,0.262 -2015-09-18 06:00:00,0.265,0.262,0.262 -2015-09-18 07:00:00,0.265,0.263,0.262 -2015-09-18 08:00:00,0.265,0.263,0.263 -2015-09-18 09:00:00,0.264,0.263,0.263 -2015-09-18 10:00:00,0.264,0.263,0.263 -2015-09-18 11:00:00,0.265,0.263,0.263 -2015-09-18 12:00:00,0.267,0.263,0.263 -2015-09-18 13:00:00,0.268,0.263,0.262 -2015-09-18 14:00:00,0.266,0.263,0.263 -2015-09-18 15:00:00,0.265,0.263,0.263 -2015-09-18 16:00:00,0.26899999999999996,0.263,0.263 -2015-09-18 17:00:00,0.27,0.263,0.263 -2015-09-18 18:00:00,0.271,0.263,0.263 -2015-09-18 19:00:00,0.271,0.263,0.263 -2015-09-18 20:00:00,0.271,0.264,0.263 -2015-09-18 21:00:00,0.27,0.264,0.263 -2015-09-18 22:00:00,0.27,0.264,0.263 -2015-09-18 23:00:00,0.26899999999999996,0.264,0.264 -2015-09-19 00:00:00,0.26899999999999996,0.264,0.264 -2015-09-19 01:00:00,0.26899999999999996,0.264,0.264 -2015-09-19 02:00:00,0.26899999999999996,0.264,0.264 -2015-09-19 03:00:00,0.268,0.264,0.264 -2015-09-19 04:00:00,0.268,0.265,0.264 -2015-09-19 05:00:00,0.268,0.265,0.264 -2015-09-19 06:00:00,0.267,0.265,0.264 -2015-09-19 07:00:00,0.266,0.265,0.264 -2015-09-19 08:00:00,0.265,0.265,0.264 -2015-09-19 09:00:00,0.265,0.265,0.264 -2015-09-19 10:00:00,0.266,0.265,0.264 -2015-09-19 11:00:00,0.267,0.265,0.264 -2015-09-19 12:00:00,0.268,0.265,0.264 -2015-09-19 13:00:00,0.26899999999999996,0.265,0.264 -2015-09-19 14:00:00,0.26899999999999996,0.265,0.264 -2015-09-19 15:00:00,0.26899999999999996,0.265,0.263 -2015-09-19 16:00:00,0.26899999999999996,0.265,0.263 -2015-09-19 17:00:00,0.26899999999999996,0.264,0.263 -2015-09-19 18:00:00,0.268,0.264,0.263 -2015-09-19 19:00:00,0.268,0.264,0.263 -2015-09-19 20:00:00,0.268,0.264,0.263 -2015-09-19 21:00:00,0.268,0.264,0.263 -2015-09-19 22:00:00,0.267,0.264,0.263 -2015-09-19 23:00:00,0.267,0.264,0.264 -2015-09-20 00:00:00,0.267,0.264,0.264 -2015-09-20 01:00:00,0.267,0.265,0.264 -2015-09-20 02:00:00,0.267,0.265,0.264 -2015-09-20 03:00:00,0.267,0.265,0.264 -2015-09-20 04:00:00,0.267,0.265,0.264 -2015-09-20 05:00:00,0.267,0.265,0.264 -2015-09-20 06:00:00,0.266,0.265,0.264 -2015-09-20 07:00:00,0.266,0.265,0.264 -2015-09-20 08:00:00,0.266,0.265,0.264 -2015-09-20 09:00:00,0.266,0.266,0.264 -2015-09-20 10:00:00,0.266,0.266,0.264 -2015-09-20 11:00:00,0.266,0.266,0.264 -2015-09-20 12:00:00,0.266,0.266,0.264 -2015-09-20 13:00:00,0.265,0.266,0.264 -2015-09-20 14:00:00,0.264,0.266,0.263 -2015-09-20 15:00:00,0.264,0.266,0.263 -2015-09-20 16:00:00,0.263,0.265,0.263 -2015-09-20 17:00:00,0.263,0.264,0.263 -2015-09-20 18:00:00,0.263,0.264,0.263 -2015-09-20 19:00:00,0.263,0.264,0.263 -2015-09-20 20:00:00,0.263,0.264,0.263 -2015-09-20 21:00:00,0.262,0.264,0.263 -2015-09-20 22:00:00,0.263,0.264,0.263 -2015-09-20 23:00:00,0.263,0.264,0.264 -2015-09-21 00:00:00,0.263,0.264,0.264 -2015-09-21 01:00:00,0.262,0.265,0.264 -2015-09-21 02:00:00,0.263,0.265,0.264 -2015-09-21 03:00:00,0.263,0.265,0.263 -2015-09-21 04:00:00,0.263,0.265,0.263 -2015-09-21 05:00:00,0.263,0.265,0.264 -2015-09-21 06:00:00,0.262,0.265,0.264 -2015-09-21 07:00:00,0.262,0.265,0.264 -2015-09-21 08:00:00,0.262,0.265,0.264 -2015-09-21 09:00:00,0.262,0.266,0.264 -2015-09-21 10:00:00,0.262,0.265,0.264 -2015-09-21 11:00:00,0.262,0.265,0.264 -2015-09-21 12:00:00,0.262,0.265,0.264 -2015-09-21 13:00:00,0.261,0.264,0.263 -2015-09-21 14:00:00,0.261,0.264,0.263 -2015-09-21 15:00:00,0.261,0.264,0.263 -2015-09-21 16:00:00,0.26,0.264,0.263 -2015-09-21 17:00:00,0.26,0.264,0.263 -2015-09-21 18:00:00,0.26,0.263,0.263 -2015-09-21 19:00:00,0.26,0.263,0.263 -2015-09-21 20:00:00,0.26,0.263,0.263 -2015-09-21 21:00:00,0.26,0.263,0.263 -2015-09-21 22:00:00,0.26,0.263,0.263 -2015-09-21 23:00:00,0.26,0.263,0.263 -2015-09-22 00:00:00,0.26,0.263,0.264 -2015-09-22 01:00:00,0.26,0.264,0.264 -2015-09-22 02:00:00,0.26,0.264,0.264 -2015-09-22 03:00:00,0.26,0.264,0.264 -2015-09-22 04:00:00,0.26,0.264,0.264 -2015-09-22 05:00:00,0.26,0.264,0.264 -2015-09-22 06:00:00,0.26,0.264,0.264 -2015-09-22 07:00:00,0.26,0.264,0.264 -2015-09-22 08:00:00,0.26,0.264,0.264 -2015-09-22 09:00:00,0.26,0.264,0.264 -2015-09-22 10:00:00,0.26,0.264,0.264 -2015-09-22 11:00:00,0.26,0.263,0.264 -2015-09-22 12:00:00,0.259,0.263,0.264 -2015-09-22 13:00:00,0.259,0.263,0.265 -2015-09-22 14:00:00,0.259,0.263,0.265 -2015-09-22 15:00:00,0.254,0.263,0.266 -2015-09-22 16:00:00,0.25,0.263,0.266 -2015-09-22 17:00:00,0.251,0.263,0.266 -2015-09-22 18:00:00,0.252,0.262,0.266 -2015-09-22 19:00:00,0.253,0.262,0.266 -2015-09-22 20:00:00,0.254,0.262,0.266 -2015-09-22 21:00:00,0.268,0.262,0.267 -2015-09-22 22:00:00,0.271,0.262,0.268 -2015-09-22 23:00:00,0.27,0.262,0.268 -2015-09-23 00:00:00,0.26899999999999996,0.262,0.268 -2015-09-23 01:00:00,0.268,0.263,0.26899999999999996 -2015-09-23 02:00:00,0.267,0.263,0.26899999999999996 -2015-09-23 03:00:00,0.267,0.263,0.26899999999999996 -2015-09-23 04:00:00,0.267,0.263,0.26899999999999996 -2015-09-23 05:00:00,0.266,0.263,0.26899999999999996 -2015-09-23 06:00:00,0.266,0.263,0.26899999999999996 -2015-09-23 07:00:00,0.265,0.263,0.26899999999999996 -2015-09-23 08:00:00,0.265,0.263,0.26899999999999996 -2015-09-23 09:00:00,0.265,0.263,0.26899999999999996 -2015-09-23 10:00:00,0.265,0.262,0.26899999999999996 -2015-09-23 11:00:00,0.265,0.262,0.26899999999999996 -2015-09-23 12:00:00,0.266,0.262,0.26899999999999996 -2015-09-23 13:00:00,0.268,0.262,0.26899999999999996 -2015-09-23 14:00:00,0.27,0.262,0.268 -2015-09-23 15:00:00,0.27,0.261,0.268 -2015-09-23 16:00:00,0.266,0.261,0.26899999999999996 -2015-09-23 17:00:00,0.267,0.261,0.26899999999999996 -2015-09-23 18:00:00,0.268,0.261,0.26899999999999996 -2015-09-23 19:00:00,0.268,0.26,0.26899999999999996 -2015-09-23 20:00:00,0.265,0.26,0.26899999999999996 -2015-09-23 21:00:00,0.265,0.259,0.26899999999999996 -2015-09-23 22:00:00,0.263,0.26,0.26899999999999996 -2015-09-23 23:00:00,0.263,0.261,0.26899999999999996 -2015-09-24 00:00:00,0.263,0.261,0.26899999999999996 -2015-09-24 01:00:00,0.263,0.261,0.26899999999999996 -2015-09-24 02:00:00,0.263,0.261,0.26899999999999996 -2015-09-24 03:00:00,0.264,0.261,0.26899999999999996 -2015-09-24 04:00:00,0.265,0.261,0.26899999999999996 -2015-09-24 05:00:00,0.265,0.261,0.26899999999999996 -2015-09-24 06:00:00,0.265,0.261,0.26899999999999996 -2015-09-24 07:00:00,0.265,0.261,0.26899999999999996 -2015-09-24 08:00:00,0.265,0.261,0.26899999999999996 -2015-09-24 09:00:00,0.265,0.261,0.26899999999999996 -2015-09-24 10:00:00,0.266,0.261,0.26899999999999996 -2015-09-24 11:00:00,0.268,0.261,0.26899999999999996 -2015-09-24 12:00:00,0.27,0.261,0.26899999999999996 -2015-09-24 13:00:00,0.27,0.261,0.26899999999999996 -2015-09-24 14:00:00,0.27,0.261,0.268 -2015-09-24 15:00:00,0.27,0.26,0.268 -2015-09-24 16:00:00,0.27,0.259,0.268 -2015-09-24 17:00:00,0.26899999999999996,0.259,0.268 -2015-09-24 18:00:00,0.26899999999999996,0.259,0.268 -2015-09-24 19:00:00,0.26899999999999996,0.259,0.268 -2015-09-24 20:00:00,0.26899999999999996,0.259,0.268 -2015-09-24 21:00:00,0.26899999999999996,0.259,0.268 -2015-09-24 22:00:00,0.26899999999999996,0.259,0.268 -2015-09-24 23:00:00,0.26899999999999996,0.259,0.268 -2015-09-25 00:00:00,0.26899999999999996,0.259,0.268 -2015-09-25 01:00:00,0.26899999999999996,0.259,0.268 -2015-09-25 02:00:00,0.26899999999999996,0.259,0.268 -2015-09-25 03:00:00,0.26899999999999996,0.259,0.268 -2015-09-25 04:00:00,0.268,0.259,0.268 -2015-09-25 05:00:00,0.268,0.259,0.268 -2015-09-25 06:00:00,0.268,0.259,0.268 -2015-09-25 07:00:00,0.268,0.259,0.268 -2015-09-25 08:00:00,0.268,0.259,0.26899999999999996 -2015-09-25 09:00:00,0.267,0.259,0.268 -2015-09-25 10:00:00,0.267,0.259,0.26899999999999996 -2015-09-25 11:00:00,0.267,0.259,0.268 -2015-09-25 12:00:00,0.267,0.259,0.268 -2015-09-25 13:00:00,0.267,0.259,0.268 -2015-09-25 14:00:00,0.266,0.259,0.268 -2015-09-25 15:00:00,0.266,0.259,0.268 -2015-09-25 16:00:00,0.265,0.259,0.268 -2015-09-25 17:00:00,0.265,0.259,0.268 -2015-09-25 18:00:00,0.265,0.258,0.268 -2015-09-25 19:00:00,0.265,0.258,0.268 -2015-09-25 20:00:00,0.265,0.258,0.268 -2015-09-25 21:00:00,0.265,0.258,0.268 -2015-09-25 22:00:00,0.265,0.258,0.268 -2015-09-25 23:00:00,0.264,0.258,0.268 -2015-09-26 00:00:00,0.265,0.258,0.268 -2015-09-26 01:00:00,0.265,0.259,0.268 -2015-09-26 02:00:00,0.264,0.259,0.268 -2015-09-26 03:00:00,0.264,0.259,0.268 -2015-09-26 04:00:00,0.265,0.259,0.268 -2015-09-26 05:00:00,0.265,0.259,0.268 -2015-09-26 06:00:00,0.264,0.259,0.268 -2015-09-26 07:00:00,0.264,0.259,0.268 -2015-09-26 08:00:00,0.264,0.259,0.268 -2015-09-26 09:00:00,0.264,0.259,0.268 -2015-09-26 10:00:00,0.264,0.259,0.268 -2015-09-26 11:00:00,0.264,0.259,0.268 -2015-09-26 12:00:00,0.263,0.259,0.268 -2015-09-26 13:00:00,0.263,0.259,0.268 -2015-09-26 14:00:00,0.262,0.258,0.268 -2015-09-26 15:00:00,0.262,0.258,0.268 -2015-09-26 16:00:00,0.262,0.258,0.268 -2015-09-26 17:00:00,0.262,0.258,0.268 -2015-09-26 18:00:00,0.261,0.257,0.268 -2015-09-26 19:00:00,0.262,0.256,0.268 -2015-09-26 20:00:00,0.261,0.256,0.268 -2015-09-26 21:00:00,0.261,0.256,0.268 -2015-09-26 22:00:00,0.261,0.256,0.268 -2015-09-26 23:00:00,0.261,0.257,0.268 -2015-09-27 00:00:00,0.261,0.258,0.268 -2015-09-27 01:00:00,0.261,0.258,0.268 -2015-09-27 02:00:00,0.261,0.258,0.268 -2015-09-27 03:00:00,0.262,0.258,0.268 -2015-09-27 04:00:00,0.262,0.258,0.268 -2015-09-27 05:00:00,0.262,0.258,0.268 -2015-09-27 06:00:00,0.262,0.258,0.268 -2015-09-27 07:00:00,0.262,0.258,0.268 -2015-09-27 08:00:00,0.262,0.258,0.268 -2015-09-27 09:00:00,0.262,0.258,0.268 -2015-09-27 10:00:00,0.261,0.258,0.268 -2015-09-27 11:00:00,0.261,0.258,0.268 -2015-09-27 12:00:00,0.261,0.258,0.268 -2015-09-27 13:00:00,0.261,0.258,0.268 -2015-09-27 14:00:00,0.26,0.258,0.268 -2015-09-27 15:00:00,0.26,0.258,0.267 -2015-09-27 16:00:00,0.26,0.258,0.267 -2015-09-27 17:00:00,0.26,0.256,0.267 -2015-09-27 18:00:00,0.26,0.256,0.267 -2015-09-27 19:00:00,0.26,0.256,0.267 -2015-09-27 20:00:00,0.26,0.256,0.267 -2015-09-27 21:00:00,0.26,0.256,0.267 -2015-09-27 22:00:00,0.26,0.256,0.267 -2015-09-27 23:00:00,0.26,0.256,0.267 -2015-09-28 00:00:00,0.26,0.256,0.267 -2015-09-28 01:00:00,0.26,0.257,0.267 -2015-09-28 02:00:00,0.26,0.257,0.267 -2015-09-28 03:00:00,0.26,0.258,0.267 -2015-09-28 04:00:00,0.26,0.258,0.267 -2015-09-28 05:00:00,0.26,0.258,0.267 -2015-09-28 06:00:00,0.26,0.258,0.267 -2015-09-28 07:00:00,0.26,0.258,0.267 -2015-09-28 08:00:00,0.259,0.258,0.267 -2015-09-28 09:00:00,0.259,0.258,0.267 -2015-09-28 10:00:00,0.259,0.258,0.267 -2015-09-28 11:00:00,0.259,0.258,0.267 -2015-09-28 12:00:00,0.259,0.258,0.267 -2015-09-28 13:00:00,0.259,0.258,0.267 -2015-09-28 14:00:00,0.258,0.258,0.267 -2015-09-28 15:00:00,0.258,0.258,0.267 -2015-09-28 16:00:00,0.258,0.258,0.266 -2015-09-28 17:00:00,0.257,0.256,0.266 -2015-09-28 18:00:00,0.257,0.256,0.266 -2015-09-28 19:00:00,0.257,0.256,0.266 -2015-09-28 20:00:00,0.257,0.256,0.266 -2015-09-28 21:00:00,0.258,0.256,0.266 -2015-09-28 22:00:00,0.258,0.257,0.266 -2015-09-28 23:00:00,0.258,0.257,0.266 -2015-09-29 00:00:00,0.258,0.258,0.266 -2015-09-29 01:00:00,0.258,0.258,0.266 -2015-09-29 02:00:00,0.258,0.258,0.266 -2015-09-29 03:00:00,0.258,0.258,0.266 -2015-09-29 04:00:00,0.258,0.258,0.266 -2015-09-29 05:00:00,0.258,0.258,0.266 -2015-09-29 06:00:00,0.258,0.258,0.266 -2015-09-29 07:00:00,0.258,0.258,0.266 -2015-09-29 08:00:00,0.258,0.258,0.266 -2015-09-29 09:00:00,0.258,0.258,0.266 -2015-09-29 10:00:00,0.258,0.258,0.266 -2015-09-29 11:00:00,0.257,0.258,0.266 -2015-09-29 12:00:00,0.257,0.258,0.266 -2015-09-29 13:00:00,0.257,0.258,0.266 -2015-09-29 14:00:00,0.257,0.258,0.266 -2015-09-29 15:00:00,0.256,0.258,0.266 -2015-09-29 16:00:00,0.256,0.258,0.266 -2015-09-29 17:00:00,0.256,0.257,0.266 -2015-09-29 18:00:00,0.256,0.256,0.266 -2015-09-29 19:00:00,0.256,0.256,0.266 -2015-09-29 20:00:00,0.256,0.256,0.265 -2015-09-29 21:00:00,0.256,0.256,0.266 -2015-09-29 22:00:00,0.256,0.256,0.266 -2015-09-29 23:00:00,0.256,0.256,0.266 -2015-09-30 00:00:00,0.256,0.257,0.266 -2015-09-30 01:00:00,0.256,0.257,0.266 -2015-09-30 02:00:00,0.256,0.258,0.266 -2015-09-30 03:00:00,0.256,0.258,0.266 -2015-09-30 04:00:00,0.256,0.258,0.266 -2015-09-30 05:00:00,0.256,0.258,0.266 -2015-09-30 06:00:00,0.256,0.258,0.266 -2015-09-30 07:00:00,0.256,0.257,0.266 -2015-09-30 08:00:00,0.256,0.257,0.266 -2015-09-30 09:00:00,0.256,0.256,0.266 -2015-09-30 10:00:00,0.256,0.256,0.266 -2015-09-30 11:00:00,0.256,0.256,0.266 -2015-09-30 12:00:00,0.255,0.256,0.266 -2015-09-30 13:00:00,0.255,0.256,0.266 -2015-09-30 14:00:00,0.254,0.257,0.265 -2015-09-30 15:00:00,0.254,0.258,0.265 -2015-09-30 16:00:00,0.254,0.258,0.265 -2015-09-30 17:00:00,0.254,0.258,0.265 -2015-09-30 18:00:00,0.253,0.258,0.265 -2015-09-30 19:00:00,0.254,0.258,0.265 -2015-09-30 20:00:00,0.253,0.258,0.265 -2015-09-30 21:00:00,0.254,0.258,0.265 -2015-09-30 22:00:00,0.254,0.258,0.265 -2015-09-30 23:00:00,0.254,0.258,0.265 -2015-10-01 00:00:00,0.254,0.259,0.265 -2015-10-01 01:00:00,0.254,0.259,0.265 -2015-10-01 02:00:00,0.254,0.259,0.265 -2015-10-01 03:00:00,0.254,0.259,0.265 -2015-10-01 04:00:00,0.254,0.259,0.265 -2015-10-01 05:00:00,0.254,0.259,0.265 -2015-10-01 06:00:00,0.253,0.259,0.265 -2015-10-01 07:00:00,0.254,0.259,0.265 -2015-10-01 08:00:00,0.253,0.259,0.265 -2015-10-01 09:00:00,0.254,0.259,0.265 -2015-10-01 10:00:00,0.254,0.259,0.265 -2015-10-01 11:00:00,0.253,0.259,0.265 -2015-10-01 12:00:00,0.253,0.258,0.265 -2015-10-01 13:00:00,0.253,0.259,0.265 -2015-10-01 14:00:00,0.252,0.259,0.265 -2015-10-01 15:00:00,0.252,0.259,0.265 -2015-10-01 16:00:00,0.251,0.259,0.264 -2015-10-01 17:00:00,0.251,0.259,0.264 -2015-10-01 18:00:00,0.251,0.259,0.264 -2015-10-01 19:00:00,0.251,0.259,0.264 -2015-10-01 20:00:00,0.251,0.259,0.264 -2015-10-01 21:00:00,0.251,0.259,0.264 -2015-10-01 22:00:00,0.251,0.259,0.264 -2015-10-01 23:00:00,0.251,0.259,0.264 -2015-10-02 00:00:00,0.251,0.259,0.264 -2015-10-02 01:00:00,0.251,0.259,0.264 -2015-10-02 02:00:00,0.251,0.259,0.264 -2015-10-02 03:00:00,0.251,0.259,0.264 -2015-10-02 04:00:00,0.251,0.259,0.264 -2015-10-02 05:00:00,0.251,0.259,0.264 -2015-10-02 06:00:00,0.251,0.259,0.264 -2015-10-02 07:00:00,0.251,0.259,0.264 -2015-10-02 08:00:00,0.251,0.259,0.264 -2015-10-02 09:00:00,0.251,0.259,0.264 -2015-10-02 10:00:00,0.251,0.259,0.264 -2015-10-02 11:00:00,0.251,0.259,0.264 -2015-10-02 12:00:00,0.251,0.259,0.264 -2015-10-02 13:00:00,0.25,0.259,0.264 -2015-10-02 14:00:00,0.25,0.259,0.264 -2015-10-02 15:00:00,0.25,0.259,0.264 -2015-10-02 16:00:00,0.249,0.259,0.264 -2015-10-02 17:00:00,0.249,0.259,0.264 -2015-10-02 18:00:00,0.249,0.259,0.264 -2015-10-02 19:00:00,0.249,0.259,0.264 -2015-10-02 20:00:00,0.249,0.259,0.264 -2015-10-02 21:00:00,0.249,0.259,0.264 -2015-10-02 22:00:00,0.249,0.259,0.264 -2015-10-02 23:00:00,0.249,0.259,0.264 -2015-10-03 00:00:00,0.249,0.259,0.264 -2015-10-03 01:00:00,0.249,0.259,0.264 -2015-10-03 02:00:00,0.249,0.259,0.264 -2015-10-03 03:00:00,0.249,0.259,0.264 -2015-10-03 04:00:00,0.249,0.259,0.264 -2015-10-03 05:00:00,0.249,0.258,0.264 -2015-10-03 06:00:00,0.249,0.258,0.264 -2015-10-03 07:00:00,0.249,0.258,0.264 -2015-10-03 08:00:00,0.249,0.258,0.264 -2015-10-03 09:00:00,0.249,0.258,0.264 -2015-10-03 10:00:00,0.249,0.258,0.264 -2015-10-03 11:00:00,0.249,0.258,0.264 -2015-10-03 12:00:00,0.249,0.258,0.264 -2015-10-03 13:00:00,0.249,0.259,0.264 -2015-10-03 14:00:00,0.248,0.261,0.264 -2015-10-03 15:00:00,0.248,0.263,0.264 -2015-10-03 16:00:00,0.248,0.263,0.264 -2015-10-03 17:00:00,0.248,0.264,0.264 -2015-10-03 18:00:00,0.248,0.264,0.264 -2015-10-03 19:00:00,0.248,0.265,0.264 -2015-10-03 20:00:00,0.248,0.266,0.264 -2015-10-03 21:00:00,0.248,0.266,0.264 -2015-10-03 22:00:00,0.248,0.266,0.264 -2015-10-03 23:00:00,0.248,0.266,0.264 -2015-10-04 00:00:00,0.248,0.266,0.264 -2015-10-04 01:00:00,0.248,0.266,0.264 -2015-10-04 02:00:00,0.248,0.266,0.264 -2015-10-04 03:00:00,0.248,0.266,0.264 -2015-10-04 04:00:00,0.248,0.266,0.264 -2015-10-04 05:00:00,0.248,0.266,0.264 -2015-10-04 06:00:00,0.248,0.266,0.264 -2015-10-04 07:00:00,0.248,0.266,0.264 -2015-10-04 08:00:00,0.248,0.266,0.264 -2015-10-04 09:00:00,0.248,0.266,0.264 -2015-10-04 10:00:00,0.248,0.267,0.264 -2015-10-04 11:00:00,0.248,0.268,0.264 -2015-10-04 12:00:00,0.248,0.268,0.264 -2015-10-04 13:00:00,0.248,0.268,0.264 -2015-10-04 14:00:00,0.247,0.268,0.264 -2015-10-04 15:00:00,0.247,0.268,0.264 -2015-10-04 16:00:00,0.247,0.268,0.264 -2015-10-04 17:00:00,0.247,0.268,0.264 -2015-10-04 18:00:00,0.247,0.268,0.263 -2015-10-04 19:00:00,0.247,0.268,0.263 -2015-10-04 20:00:00,0.247,0.268,0.264 -2015-10-04 21:00:00,0.24600000000000002,0.268,0.264 -2015-10-04 22:00:00,0.247,0.268,0.264 -2015-10-04 23:00:00,0.24600000000000002,0.268,0.264 -2015-10-05 00:00:00,0.24600000000000002,0.26899999999999996,0.264 -2015-10-05 01:00:00,0.24600000000000002,0.26899999999999996,0.264 -2015-10-05 02:00:00,0.247,0.26899999999999996,0.264 -2015-10-05 03:00:00,0.247,0.26899999999999996,0.264 -2015-10-05 04:00:00,0.247,0.26899999999999996,0.264 -2015-10-05 05:00:00,0.247,0.26899999999999996,0.264 -2015-10-05 06:00:00,0.247,0.26899999999999996,0.264 -2015-10-05 07:00:00,0.247,0.26899999999999996,0.264 -2015-10-05 08:00:00,0.247,0.27,0.264 -2015-10-05 09:00:00,0.24600000000000002,0.27,0.264 -2015-10-05 10:00:00,0.24600000000000002,0.27,0.264 -2015-10-05 11:00:00,0.24600000000000002,0.27,0.264 -2015-10-05 12:00:00,0.24600000000000002,0.26899999999999996,0.264 -2015-10-05 13:00:00,0.24600000000000002,0.26899999999999996,0.264 -2015-10-05 14:00:00,0.24600000000000002,0.26899999999999996,0.264 -2015-10-05 15:00:00,0.245,0.268,0.264 -2015-10-05 16:00:00,0.245,0.268,0.264 -2015-10-05 17:00:00,0.245,0.268,0.264 -2015-10-05 18:00:00,0.245,0.268,0.264 -2015-10-05 19:00:00,0.245,0.268,0.263 -2015-10-05 20:00:00,0.245,0.268,0.264 -2015-10-05 21:00:00,0.245,0.268,0.264 -2015-10-05 22:00:00,0.245,0.268,0.264 -2015-10-05 23:00:00,0.245,0.268,0.265 -2015-10-06 00:00:00,0.245,0.268,0.265 -2015-10-06 01:00:00,0.243,0.268,0.266 -2015-10-06 02:00:00,0.243,0.268,0.266 -2015-10-06 03:00:00,0.242,0.268,0.266 -2015-10-06 04:00:00,0.242,0.268,0.267 -2015-10-06 05:00:00,0.242,0.268,0.267 -2015-10-06 06:00:00,0.242,0.268,0.267 -2015-10-06 07:00:00,0.242,0.268,0.267 -2015-10-06 08:00:00,0.24100000000000002,0.268,0.267 -2015-10-06 09:00:00,0.24100000000000002,0.268,0.267 -2015-10-06 10:00:00,0.24100000000000002,0.268,0.267 -2015-10-06 11:00:00,0.242,0.268,0.267 -2015-10-06 12:00:00,0.243,0.267,0.266 -2015-10-06 13:00:00,0.244,0.266,0.266 -2015-10-06 14:00:00,0.245,0.266,0.266 -2015-10-06 15:00:00,0.245,0.266,0.266 -2015-10-06 16:00:00,0.244,0.266,0.267 -2015-10-06 17:00:00,0.244,0.266,0.267 -2015-10-06 18:00:00,0.244,0.266,0.267 -2015-10-06 19:00:00,0.245,0.266,0.266 -2015-10-06 20:00:00,0.245,0.266,0.266 -2015-10-06 21:00:00,0.245,0.266,0.267 -2015-10-06 22:00:00,0.245,0.266,0.267 -2015-10-06 23:00:00,0.245,0.266,0.267 -2015-10-07 00:00:00,0.245,0.266,0.267 -2015-10-07 01:00:00,0.245,0.266,0.267 -2015-10-07 02:00:00,0.245,0.266,0.267 -2015-10-07 03:00:00,0.245,0.266,0.267 -2015-10-07 04:00:00,0.245,0.266,0.267 -2015-10-07 05:00:00,0.245,0.266,0.267 -2015-10-07 06:00:00,0.245,0.266,0.267 -2015-10-07 07:00:00,0.245,0.266,0.267 -2015-10-07 08:00:00,0.244,0.266,0.267 -2015-10-07 09:00:00,0.244,0.266,0.267 -2015-10-07 10:00:00,0.244,0.266,0.267 -2015-10-07 11:00:00,0.245,0.266,0.267 -2015-10-07 12:00:00,0.245,0.266,0.266 -2015-10-07 13:00:00,0.245,0.266,0.266 -2015-10-07 14:00:00,0.24600000000000002,0.266,0.266 -2015-10-07 15:00:00,0.24600000000000002,0.266,0.266 -2015-10-07 16:00:00,0.24600000000000002,0.266,0.265 -2015-10-07 17:00:00,0.24600000000000002,0.266,0.265 -2015-10-07 18:00:00,0.24600000000000002,0.266,0.265 -2015-10-07 19:00:00,0.24600000000000002,0.265,0.265 -2015-10-07 20:00:00,0.24600000000000002,0.266,0.265 -2015-10-07 21:00:00,0.24600000000000002,0.266,0.265 -2015-10-07 22:00:00,0.24600000000000002,0.266,0.265 -2015-10-07 23:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 00:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 01:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 02:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 03:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 04:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 05:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 06:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 07:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 08:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 09:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 10:00:00,0.24600000000000002,0.266,0.266 -2015-10-08 11:00:00,0.24600000000000002,0.266,0.265 -2015-10-08 12:00:00,0.24600000000000002,0.266,0.265 -2015-10-08 13:00:00,0.24600000000000002,0.266,0.265 -2015-10-08 14:00:00,0.24600000000000002,0.267,0.265 -2015-10-08 15:00:00,0.245,0.266,0.265 -2015-10-08 16:00:00,0.245,0.266,0.265 -2015-10-08 17:00:00,0.245,0.266,0.265 -2015-10-08 18:00:00,0.245,0.266,0.265 -2015-10-08 19:00:00,0.245,0.265,0.265 -2015-10-08 20:00:00,0.245,0.265,0.265 -2015-10-08 21:00:00,0.245,0.265,0.265 -2015-10-08 22:00:00,0.245,0.265,0.266 -2015-10-08 23:00:00,0.245,0.265,0.266 -2015-10-09 00:00:00,0.245,0.265,0.266 -2015-10-09 01:00:00,0.245,0.265,0.267 -2015-10-09 02:00:00,0.243,0.265,0.267 -2015-10-09 03:00:00,0.242,0.265,0.268 -2015-10-09 04:00:00,0.24100000000000002,0.265,0.268 -2015-10-09 05:00:00,0.23800000000000002,0.265,0.268 -2015-10-09 06:00:00,0.237,0.265,0.268 -2015-10-09 07:00:00,0.23800000000000002,0.265,0.268 -2015-10-09 08:00:00,0.252,0.265,0.26899999999999996 -2015-10-09 09:00:00,0.261,0.265,0.26899999999999996 -2015-10-09 10:00:00,0.262,0.264,0.26899999999999996 -2015-10-09 11:00:00,0.262,0.264,0.26899999999999996 -2015-10-09 12:00:00,0.263,0.264,0.26899999999999996 -2015-10-09 13:00:00,0.263,0.264,0.27 -2015-10-09 14:00:00,0.263,0.272,0.27 -2015-10-09 15:00:00,0.263,0.301,0.27 -2015-10-09 16:00:00,0.264,0.316,0.27 -2015-10-09 17:00:00,0.264,0.315,0.27 -2015-10-09 18:00:00,0.264,0.315,0.271 -2015-10-09 19:00:00,0.262,0.314,0.271 -2015-10-09 20:00:00,0.262,0.313,0.271 -2015-10-09 21:00:00,0.262,0.312,0.271 -2015-10-09 22:00:00,0.263,0.312,0.271 -2015-10-09 23:00:00,0.263,0.321,0.272 -2015-10-10 00:00:00,0.263,0.32,0.272 -2015-10-10 01:00:00,0.263,0.321,0.272 -2015-10-10 02:00:00,0.263,0.318,0.272 -2015-10-10 03:00:00,0.262,0.317,0.272 -2015-10-10 04:00:00,0.262,0.315,0.272 -2015-10-10 05:00:00,0.262,0.314,0.272 -2015-10-10 06:00:00,0.263,0.313,0.272 -2015-10-10 07:00:00,0.263,0.311,0.272 -2015-10-10 08:00:00,0.263,0.31,0.272 -2015-10-10 09:00:00,0.263,0.309,0.272 -2015-10-10 10:00:00,0.264,0.308,0.272 -2015-10-10 11:00:00,0.265,0.307,0.272 -2015-10-10 12:00:00,0.266,0.306,0.272 -2015-10-10 13:00:00,0.267,0.306,0.272 -2015-10-10 14:00:00,0.26899999999999996,0.305,0.272 -2015-10-10 15:00:00,0.26899999999999996,0.305,0.271 -2015-10-10 16:00:00,0.26899999999999996,0.305,0.271 -2015-10-10 17:00:00,0.26899999999999996,0.305,0.271 -2015-10-10 18:00:00,0.26899999999999996,0.305,0.271 -2015-10-10 19:00:00,0.26899999999999996,0.304,0.271 -2015-10-10 20:00:00,0.268,0.304,0.271 -2015-10-10 21:00:00,0.268,0.304,0.271 -2015-10-10 22:00:00,0.268,0.304,0.271 -2015-10-10 23:00:00,0.268,0.304,0.271 -2015-10-11 00:00:00,0.268,0.304,0.271 -2015-10-11 01:00:00,0.268,0.303,0.271 -2015-10-11 02:00:00,0.268,0.303,0.271 -2015-10-11 03:00:00,0.268,0.302,0.271 -2015-10-11 04:00:00,0.268,0.302,0.271 -2015-10-11 05:00:00,0.268,0.302,0.271 -2015-10-11 06:00:00,0.268,0.302,0.271 -2015-10-11 07:00:00,0.268,0.302,0.271 -2015-10-11 08:00:00,0.267,0.3,0.271 -2015-10-11 09:00:00,0.267,0.3,0.271 -2015-10-11 10:00:00,0.267,0.3,0.271 -2015-10-11 11:00:00,0.267,0.3,0.271 -2015-10-11 12:00:00,0.267,0.299,0.271 -2015-10-11 13:00:00,0.266,0.298,0.271 -2015-10-11 14:00:00,0.266,0.298,0.271 -2015-10-11 15:00:00,0.266,0.298,0.27 -2015-10-11 16:00:00,0.265,0.298,0.27 -2015-10-11 17:00:00,0.265,0.298,0.27 -2015-10-11 18:00:00,0.265,0.298,0.27 -2015-10-11 19:00:00,0.265,0.298,0.27 -2015-10-11 20:00:00,0.265,0.298,0.27 -2015-10-11 21:00:00,0.265,0.298,0.27 -2015-10-11 22:00:00,0.265,0.298,0.27 -2015-10-11 23:00:00,0.265,0.298,0.27 -2015-10-12 00:00:00,0.265,0.298,0.27 -2015-10-12 01:00:00,0.265,0.297,0.27 -2015-10-12 02:00:00,0.265,0.297,0.27 -2015-10-12 03:00:00,0.265,0.297,0.27 -2015-10-12 04:00:00,0.265,0.297,0.27 -2015-10-12 05:00:00,0.265,0.297,0.27 -2015-10-12 06:00:00,0.265,0.297,0.27 -2015-10-12 07:00:00,0.265,0.297,0.26899999999999996 -2015-10-12 08:00:00,0.265,0.297,0.26899999999999996 -2015-10-12 09:00:00,0.265,0.297,0.26899999999999996 -2015-10-12 10:00:00,0.264,0.297,0.27 -2015-10-12 11:00:00,0.264,0.297,0.27 -2015-10-12 12:00:00,0.264,0.297,0.27 -2015-10-12 13:00:00,0.264,0.297,0.27 -2015-10-12 14:00:00,0.264,0.29600000000000004,0.27 -2015-10-12 15:00:00,0.264,0.29600000000000004,0.26899999999999996 -2015-10-12 16:00:00,0.263,0.29600000000000004,0.26899999999999996 -2015-10-12 17:00:00,0.263,0.29600000000000004,0.26899999999999996 -2015-10-12 18:00:00,0.264,0.29600000000000004,0.26899999999999996 -2015-10-12 19:00:00,0.264,0.295,0.26899999999999996 -2015-10-12 20:00:00,0.263,0.295,0.26899999999999996 -2015-10-12 21:00:00,0.264,0.295,0.26899999999999996 -2015-10-12 22:00:00,0.264,0.295,0.26899999999999996 -2015-10-12 23:00:00,0.264,0.295,0.26899999999999996 -2015-10-13 00:00:00,0.264,0.295,0.26899999999999996 -2015-10-13 01:00:00,0.264,0.295,0.26899999999999996 -2015-10-13 02:00:00,0.264,0.295,0.26899999999999996 -2015-10-13 03:00:00,0.264,0.295,0.26899999999999996 -2015-10-13 04:00:00,0.264,0.295,0.26899999999999996 -2015-10-13 05:00:00,0.264,0.295,0.26899999999999996 -2015-10-13 06:00:00,0.264,0.294,0.26899999999999996 -2015-10-13 07:00:00,0.264,0.293,0.26899999999999996 -2015-10-13 08:00:00,0.264,0.293,0.26899999999999996 -2015-10-13 09:00:00,0.264,0.293,0.26899999999999996 -2015-10-13 10:00:00,0.263,0.293,0.26899999999999996 -2015-10-13 11:00:00,0.263,0.293,0.26899999999999996 -2015-10-13 12:00:00,0.263,0.293,0.26899999999999996 -2015-10-13 13:00:00,0.263,0.293,0.26899999999999996 -2015-10-13 14:00:00,0.263,0.293,0.26899999999999996 -2015-10-13 15:00:00,0.263,0.293,0.26899999999999996 -2015-10-13 16:00:00,0.263,0.292,0.26899999999999996 -2015-10-13 17:00:00,0.263,0.292,0.26899999999999996 -2015-10-13 18:00:00,0.262,0.292,0.26899999999999996 -2015-10-13 19:00:00,0.263,0.292,0.26899999999999996 -2015-10-13 20:00:00,0.263,0.292,0.26899999999999996 -2015-10-13 21:00:00,0.263,0.292,0.26899999999999996 -2015-10-13 22:00:00,0.263,0.292,0.26899999999999996 -2015-10-13 23:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 00:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 01:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 02:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 03:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 04:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 05:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 06:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 07:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 08:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 09:00:00,0.262,0.292,0.26899999999999996 -2015-10-14 10:00:00,0.262,0.292,0.27 -2015-10-14 11:00:00,0.261,0.292,0.27 -2015-10-14 12:00:00,0.26,0.292,0.271 -2015-10-14 13:00:00,0.259,0.292,0.271 -2015-10-14 14:00:00,0.259,0.292,0.271 -2015-10-14 15:00:00,0.26,0.292,0.271 -2015-10-14 16:00:00,0.26,0.292,0.271 -2015-10-14 17:00:00,0.261,0.292,0.271 -2015-10-14 18:00:00,0.261,0.292,0.27 -2015-10-14 19:00:00,0.261,0.292,0.27 -2015-10-14 20:00:00,0.261,0.292,0.27 -2015-10-14 21:00:00,0.261,0.292,0.27 -2015-10-14 22:00:00,0.261,0.292,0.27 -2015-10-14 23:00:00,0.261,0.29100000000000004,0.27 -2015-10-15 00:00:00,0.261,0.29100000000000004,0.271 -2015-10-15 01:00:00,0.261,0.29100000000000004,0.27 -2015-10-15 02:00:00,0.261,0.29100000000000004,0.27 -2015-10-15 03:00:00,0.262,0.29,0.27 -2015-10-15 04:00:00,0.262,0.29,0.27 -2015-10-15 05:00:00,0.262,0.29,0.27 -2015-10-15 06:00:00,0.261,0.29,0.27 -2015-10-15 07:00:00,0.259,0.29,0.271 -2015-10-15 08:00:00,0.26,0.29,0.271 -2015-10-15 09:00:00,0.263,0.29,0.271 -2015-10-15 10:00:00,0.265,0.29,0.271 -2015-10-15 11:00:00,0.278,0.29,0.273 -2015-10-15 12:00:00,0.285,0.29,0.304 -2015-10-15 13:00:00,0.284,0.29,0.312 -2015-10-15 14:00:00,0.281,0.29,0.312 -2015-10-15 15:00:00,0.278,0.29,0.312 -2015-10-15 16:00:00,0.276,0.29,0.311 -2015-10-15 17:00:00,0.27399999999999997,0.29,0.311 -2015-10-15 18:00:00,0.273,0.29,0.311 -2015-10-15 19:00:00,0.281,0.29,0.313 -2015-10-15 20:00:00,0.295,0.29,0.32 -2015-10-15 21:00:00,0.299,0.29,0.322 -2015-10-15 22:00:00,0.294,0.29,0.321 -2015-10-15 23:00:00,0.28800000000000003,0.29,0.32 -2015-10-16 00:00:00,0.281,0.29,0.318 -2015-10-16 01:00:00,0.27699999999999997,0.29,0.316 -2015-10-16 02:00:00,0.275,0.29,0.315 -2015-10-16 03:00:00,0.273,0.29,0.314 -2015-10-16 04:00:00,0.271,0.29,0.313 -2015-10-16 05:00:00,0.27,0.29,0.313 -2015-10-16 06:00:00,0.26899999999999996,0.29,0.312 -2015-10-16 07:00:00,0.268,0.29,0.312 -2015-10-16 08:00:00,0.268,0.289,0.311 -2015-10-16 09:00:00,0.267,0.289,0.31 -2015-10-16 10:00:00,0.267,0.289,0.31 -2015-10-16 11:00:00,0.267,0.289,0.309 -2015-10-16 12:00:00,0.267,0.289,0.308 -2015-10-16 13:00:00,0.26899999999999996,0.289,0.307 -2015-10-16 14:00:00,0.27,0.289,0.306 -2015-10-16 15:00:00,0.271,0.289,0.306 -2015-10-16 16:00:00,0.272,0.28800000000000003,0.305 -2015-10-16 17:00:00,0.272,0.28800000000000003,0.304 -2015-10-16 18:00:00,0.272,0.28800000000000003,0.304 -2015-10-16 19:00:00,0.272,0.28800000000000003,0.303 -2015-10-16 20:00:00,0.272,0.28800000000000003,0.302 -2015-10-16 21:00:00,0.272,0.28800000000000003,0.302 -2015-10-16 22:00:00,0.271,0.28800000000000003,0.302 -2015-10-16 23:00:00,0.271,0.28800000000000003,0.301 -2015-10-17 00:00:00,0.271,0.28800000000000003,0.301 -2015-10-17 01:00:00,0.271,0.28800000000000003,0.3 -2015-10-17 02:00:00,0.271,0.28800000000000003,0.299 -2015-10-17 03:00:00,0.27,0.28800000000000003,0.299 -2015-10-17 04:00:00,0.27,0.28800000000000003,0.298 -2015-10-17 05:00:00,0.26899999999999996,0.28800000000000003,0.298 -2015-10-17 06:00:00,0.26899999999999996,0.28800000000000003,0.298 -2015-10-17 07:00:00,0.26899999999999996,0.28800000000000003,0.297 -2015-10-17 08:00:00,0.26899999999999996,0.28800000000000003,0.297 -2015-10-17 09:00:00,0.26899999999999996,0.28800000000000003,0.297 -2015-10-17 10:00:00,0.26899999999999996,0.28800000000000003,0.29600000000000004 -2015-10-17 11:00:00,0.27,0.28800000000000003,0.29600000000000004 -2015-10-17 12:00:00,0.27,0.287,0.295 -2015-10-17 13:00:00,0.271,0.287,0.295 -2015-10-17 14:00:00,0.271,0.28800000000000003,0.295 -2015-10-17 15:00:00,0.271,0.28800000000000003,0.294 -2015-10-17 16:00:00,0.272,0.28800000000000003,0.294 -2015-10-17 17:00:00,0.272,0.28800000000000003,0.293 -2015-10-17 18:00:00,0.272,0.28800000000000003,0.293 -2015-10-17 19:00:00,0.271,0.28800000000000003,0.293 -2015-10-17 20:00:00,0.271,0.28800000000000003,0.293 -2015-10-17 21:00:00,0.271,0.28800000000000003,0.292 -2015-10-17 22:00:00,0.271,0.28800000000000003,0.292 -2015-10-17 23:00:00,0.271,0.28800000000000003,0.292 -2015-10-18 00:00:00,0.271,0.28800000000000003,0.292 -2015-10-18 01:00:00,0.271,0.28800000000000003,0.292 -2015-10-18 02:00:00,0.271,0.28800000000000003,0.292 -2015-10-18 03:00:00,0.27,0.28800000000000003,0.29100000000000004 -2015-10-18 04:00:00,0.27,0.287,0.29100000000000004 -2015-10-18 05:00:00,0.27,0.287,0.29100000000000004 -2015-10-18 06:00:00,0.27,0.287,0.29100000000000004 -2015-10-18 07:00:00,0.27,0.287,0.29100000000000004 -2015-10-18 08:00:00,0.27,0.287,0.29 -2015-10-18 09:00:00,0.26899999999999996,0.287,0.29 -2015-10-18 10:00:00,0.27,0.287,0.29 -2015-10-18 11:00:00,0.26899999999999996,0.287,0.29 -2015-10-18 12:00:00,0.26899999999999996,0.287,0.29 -2015-10-18 13:00:00,0.26899999999999996,0.287,0.29 -2015-10-18 14:00:00,0.26899999999999996,0.287,0.29 -2015-10-18 15:00:00,0.26899999999999996,0.287,0.29 -2015-10-18 16:00:00,0.26899999999999996,0.287,0.289 -2015-10-18 17:00:00,0.26899999999999996,0.287,0.289 -2015-10-18 18:00:00,0.26899999999999996,0.287,0.289 -2015-10-18 19:00:00,0.26899999999999996,0.287,0.289 -2015-10-18 20:00:00,0.26899999999999996,0.287,0.289 -2015-10-18 21:00:00,0.26899999999999996,0.28600000000000003,0.289 -2015-10-18 22:00:00,0.26899999999999996,0.28600000000000003,0.289 -2015-10-18 23:00:00,0.26899999999999996,0.28600000000000003,0.28800000000000003 -2015-10-19 00:00:00,0.26899999999999996,0.28600000000000003,0.28800000000000003 -2015-10-19 01:00:00,0.268,0.28600000000000003,0.28800000000000003 -2015-10-19 02:00:00,0.26899999999999996,0.28600000000000003,0.28800000000000003 -2015-10-19 03:00:00,0.268,0.28600000000000003,0.28800000000000003 -2015-10-19 04:00:00,0.268,0.28600000000000003,0.28800000000000003 -2015-10-19 05:00:00,0.268,0.28600000000000003,0.28800000000000003 -2015-10-19 06:00:00,0.268,0.285,0.28800000000000003 -2015-10-19 07:00:00,0.268,0.285,0.28800000000000003 -2015-10-19 08:00:00,0.268,0.285,0.28800000000000003 -2015-10-19 09:00:00,0.268,0.285,0.28800000000000003 -2015-10-19 10:00:00,0.268,0.285,0.28800000000000003 -2015-10-19 11:00:00,0.268,0.285,0.287 -2015-10-19 12:00:00,0.268,0.285,0.287 -2015-10-19 13:00:00,0.267,0.285,0.287 -2015-10-19 14:00:00,0.267,0.285,0.287 -2015-10-19 15:00:00,0.267,0.285,0.287 -2015-10-19 16:00:00,0.267,0.285,0.287 -2015-10-19 17:00:00,0.267,0.285,0.287 -2015-10-19 18:00:00,0.267,0.285,0.287 -2015-10-19 19:00:00,0.267,0.285,0.287 -2015-10-19 20:00:00,0.267,0.285,0.287 -2015-10-19 21:00:00,0.267,0.285,0.287 -2015-10-19 22:00:00,0.267,0.285,0.287 -2015-10-19 23:00:00,0.267,0.285,0.287 -2015-10-20 00:00:00,0.266,0.285,0.287 -2015-10-20 01:00:00,0.266,0.285,0.287 -2015-10-20 02:00:00,0.266,0.285,0.287 -2015-10-20 03:00:00,0.266,0.285,0.287 -2015-10-20 04:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 05:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 06:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 07:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 08:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 09:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 10:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 11:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 12:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 13:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 14:00:00,0.266,0.285,0.28600000000000003 -2015-10-20 15:00:00,0.265,0.285,0.285 -2015-10-20 16:00:00,0.265,0.285,0.285 -2015-10-20 17:00:00,0.265,0.285,0.285 -2015-10-20 18:00:00,0.265,0.285,0.285 -2015-10-20 19:00:00,0.265,0.285,0.285 -2015-10-20 20:00:00,0.265,0.285,0.285 -2015-10-20 21:00:00,0.265,0.285,0.285 -2015-10-20 22:00:00,0.265,0.285,0.285 -2015-10-20 23:00:00,0.265,0.285,0.285 -2015-10-21 00:00:00,0.265,0.285,0.285 -2015-10-21 01:00:00,0.265,0.285,0.285 -2015-10-21 02:00:00,0.264,0.285,0.285 -2015-10-21 03:00:00,0.264,0.285,0.285 -2015-10-21 04:00:00,0.264,0.285,0.285 -2015-10-21 05:00:00,0.265,0.285,0.285 -2015-10-21 06:00:00,0.264,0.285,0.285 -2015-10-21 07:00:00,0.264,0.285,0.285 -2015-10-21 08:00:00,0.264,0.284,0.285 -2015-10-21 09:00:00,0.264,0.28300000000000003,0.285 -2015-10-21 10:00:00,0.264,0.28300000000000003,0.285 -2015-10-21 11:00:00,0.264,0.28300000000000003,0.285 -2015-10-21 12:00:00,0.264,0.28300000000000003,0.285 -2015-10-21 13:00:00,0.264,0.28300000000000003,0.285 -2015-10-21 14:00:00,0.264,0.28300000000000003,0.284 -2015-10-21 15:00:00,0.264,0.28300000000000003,0.284 -2015-10-21 16:00:00,0.263,0.28300000000000003,0.284 -2015-10-21 17:00:00,0.264,0.28300000000000003,0.284 -2015-10-21 18:00:00,0.263,0.28300000000000003,0.284 -2015-10-21 19:00:00,0.263,0.28300000000000003,0.284 -2015-10-21 20:00:00,0.263,0.28300000000000003,0.284 -2015-10-21 21:00:00,0.263,0.28300000000000003,0.284 -2015-10-21 22:00:00,0.263,0.28300000000000003,0.284 -2015-10-21 23:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 00:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 01:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 02:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 03:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 04:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 05:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 06:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 07:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 08:00:00,0.263,0.28300000000000003,0.284 -2015-10-22 09:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 10:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 11:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 12:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 13:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 14:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 15:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 16:00:00,0.262,0.28300000000000003,0.28300000000000003 -2015-10-22 17:00:00,0.262,0.28300000000000003,0.28300000000000003 -2015-10-22 18:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 19:00:00,0.262,0.28300000000000003,0.284 -2015-10-22 20:00:00,0.261,0.28300000000000003,0.284 -2015-10-22 21:00:00,0.261,0.28300000000000003,0.284 -2015-10-22 22:00:00,0.261,0.28300000000000003,0.284 -2015-10-22 23:00:00,0.261,0.28300000000000003,0.284 -2015-10-23 00:00:00,0.261,0.28300000000000003,0.284 -2015-10-23 01:00:00,0.261,0.28300000000000003,0.284 -2015-10-23 02:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 03:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 04:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 05:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 06:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 07:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 08:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 09:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 10:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 11:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 12:00:00,0.26,0.28300000000000003,0.284 -2015-10-23 13:00:00,0.259,0.28300000000000003,0.284 -2015-10-23 14:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 15:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 16:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 17:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 18:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 19:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 20:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 21:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 22:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-23 23:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 00:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 01:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 02:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 03:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 04:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 05:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 06:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 07:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 08:00:00,0.259,0.28300000000000003,0.28300000000000003 -2015-10-24 09:00:00,0.258,0.28300000000000003,0.28300000000000003 -2015-10-24 10:00:00,0.258,0.282,0.28300000000000003 -2015-10-24 11:00:00,0.258,0.282,0.28300000000000003 -2015-10-24 12:00:00,0.258,0.282,0.28300000000000003 -2015-10-24 13:00:00,0.258,0.282,0.28300000000000003 -2015-10-24 14:00:00,0.258,0.282,0.28300000000000003 -2015-10-24 15:00:00,0.258,0.282,0.28300000000000003 -2015-10-24 16:00:00,0.258,0.28300000000000003,0.282 -2015-10-24 17:00:00,0.258,0.28300000000000003,0.282 -2015-10-24 18:00:00,0.258,0.282,0.282 -2015-10-24 19:00:00,0.258,0.282,0.282 -2015-10-24 20:00:00,0.258,0.282,0.282 -2015-10-24 21:00:00,0.258,0.282,0.282 -2015-10-24 22:00:00,0.258,0.282,0.282 -2015-10-24 23:00:00,0.258,0.282,0.282 -2015-10-25 00:00:00,0.258,0.282,0.282 -2015-10-25 01:00:00,0.258,0.282,0.282 -2015-10-25 02:00:00,0.258,0.282,0.282 -2015-10-25 03:00:00,0.258,0.282,0.282 -2015-10-25 04:00:00,0.258,0.282,0.282 -2015-10-25 05:00:00,0.257,0.282,0.282 -2015-10-25 06:00:00,0.258,0.281,0.282 -2015-10-25 07:00:00,0.258,0.281,0.28300000000000003 -2015-10-25 08:00:00,0.257,0.281,0.28300000000000003 -2015-10-25 09:00:00,0.257,0.281,0.28300000000000003 -2015-10-25 10:00:00,0.257,0.281,0.28300000000000003 -2015-10-25 11:00:00,0.257,0.281,0.28300000000000003 -2015-10-25 12:00:00,0.257,0.281,0.28300000000000003 -2015-10-25 13:00:00,0.257,0.281,0.282 -2015-10-25 14:00:00,0.257,0.281,0.282 -2015-10-25 15:00:00,0.257,0.281,0.282 -2015-10-25 16:00:00,0.257,0.281,0.282 -2015-10-25 17:00:00,0.257,0.281,0.282 -2015-10-25 18:00:00,0.257,0.281,0.282 -2015-10-25 19:00:00,0.257,0.281,0.282 -2015-10-25 20:00:00,0.257,0.281,0.282 -2015-10-25 21:00:00,0.257,0.281,0.282 -2015-10-25 22:00:00,0.257,0.281,0.282 -2015-10-25 23:00:00,0.257,0.281,0.282 -2015-10-26 00:00:00,0.257,0.281,0.282 -2015-10-26 01:00:00,0.257,0.281,0.282 -2015-10-26 02:00:00,0.257,0.281,0.282 -2015-10-26 03:00:00,0.257,0.281,0.282 -2015-10-26 04:00:00,0.257,0.281,0.282 -2015-10-26 05:00:00,0.257,0.281,0.282 -2015-10-26 06:00:00,0.257,0.281,0.282 -2015-10-26 07:00:00,0.257,0.281,0.282 -2015-10-26 08:00:00,0.257,0.281,0.282 -2015-10-26 09:00:00,0.256,0.28,0.282 -2015-10-26 10:00:00,0.257,0.28,0.282 -2015-10-26 11:00:00,0.257,0.28,0.282 -2015-10-26 12:00:00,0.257,0.28,0.282 -2015-10-26 13:00:00,0.256,0.28,0.282 -2015-10-26 14:00:00,0.257,0.28,0.282 -2015-10-26 15:00:00,0.256,0.28,0.282 -2015-10-26 16:00:00,0.257,0.28,0.282 -2015-10-26 17:00:00,0.256,0.28,0.282 -2015-10-26 18:00:00,0.257,0.28,0.281 -2015-10-26 19:00:00,0.256,0.28,0.281 -2015-10-26 20:00:00,0.256,0.28,0.281 -2015-10-26 21:00:00,0.257,0.28,0.281 -2015-10-26 22:00:00,0.256,0.28,0.281 -2015-10-26 23:00:00,0.256,0.28,0.281 -2015-10-27 00:00:00,0.256,0.28,0.281 -2015-10-27 01:00:00,0.256,0.28,0.281 -2015-10-27 02:00:00,0.256,0.28,0.282 -2015-10-27 03:00:00,0.256,0.28,0.282 -2015-10-27 04:00:00,0.256,0.28,0.282 -2015-10-27 05:00:00,0.256,0.28,0.282 -2015-10-27 06:00:00,0.256,0.28,0.282 -2015-10-27 07:00:00,0.256,0.28,0.282 -2015-10-27 08:00:00,0.256,0.28,0.282 -2015-10-27 09:00:00,0.256,0.28,0.282 -2015-10-27 10:00:00,0.256,0.28,0.282 -2015-10-27 11:00:00,0.256,0.28,0.281 -2015-10-27 12:00:00,0.256,0.28,0.281 -2015-10-27 13:00:00,0.256,0.28,0.281 -2015-10-27 14:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 15:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 16:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 17:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 18:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 19:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 20:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 21:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 22:00:00,0.256,0.27899999999999997,0.281 -2015-10-27 23:00:00,0.256,0.27899999999999997,0.281 -2015-10-28 00:00:00,0.256,0.27899999999999997,0.281 -2015-10-28 01:00:00,0.256,0.27899999999999997,0.281 -2015-10-28 02:00:00,0.256,0.27899999999999997,0.281 -2015-10-28 03:00:00,0.256,0.27899999999999997,0.281 -2015-10-28 04:00:00,0.256,0.27899999999999997,0.281 -2015-10-28 05:00:00,0.256,0.278,0.281 -2015-10-28 06:00:00,0.256,0.278,0.281 -2015-10-28 07:00:00,0.255,0.278,0.281 -2015-10-28 08:00:00,0.256,0.278,0.281 -2015-10-28 09:00:00,0.256,0.278,0.281 -2015-10-28 10:00:00,0.256,0.278,0.281 -2015-10-28 11:00:00,0.256,0.278,0.281 -2015-10-28 12:00:00,0.256,0.278,0.281 -2015-10-28 13:00:00,0.256,0.278,0.281 -2015-10-28 14:00:00,0.255,0.278,0.281 -2015-10-28 15:00:00,0.255,0.278,0.281 -2015-10-28 16:00:00,0.256,0.278,0.281 -2015-10-28 17:00:00,0.256,0.278,0.281 -2015-10-28 18:00:00,0.256,0.278,0.281 -2015-10-28 19:00:00,0.255,0.278,0.281 -2015-10-28 20:00:00,0.256,0.278,0.281 -2015-10-28 21:00:00,0.255,0.278,0.281 -2015-10-28 22:00:00,0.255,0.278,0.281 -2015-10-28 23:00:00,0.255,0.278,0.281 -2015-10-29 00:00:00,0.255,0.278,0.281 -2015-10-29 01:00:00,0.255,0.278,0.281 -2015-10-29 02:00:00,0.255,0.278,0.281 -2015-10-29 03:00:00,0.255,0.278,0.281 -2015-10-29 04:00:00,0.255,0.278,0.281 -2015-10-29 05:00:00,0.255,0.278,0.281 -2015-10-29 06:00:00,0.255,0.278,0.281 -2015-10-29 07:00:00,0.255,0.278,0.281 -2015-10-29 08:00:00,0.255,0.278,0.281 -2015-10-29 09:00:00,0.255,0.278,0.281 -2015-10-29 10:00:00,0.255,0.278,0.281 -2015-10-29 11:00:00,0.255,0.278,0.281 -2015-10-29 12:00:00,0.255,0.278,0.28 -2015-10-29 13:00:00,0.255,0.278,0.28 -2015-10-29 14:00:00,0.255,0.278,0.28 -2015-10-29 15:00:00,0.255,0.278,0.28 -2015-10-29 16:00:00,0.255,0.278,0.28 -2015-10-29 17:00:00,0.255,0.278,0.28 -2015-10-29 18:00:00,0.255,0.278,0.28 -2015-10-29 19:00:00,0.255,0.278,0.28 -2015-10-29 20:00:00,0.255,0.278,0.28 -2015-10-29 21:00:00,0.255,0.278,0.28 -2015-10-29 22:00:00,0.255,0.278,0.28 -2015-10-29 23:00:00,0.255,0.278,0.28 -2015-10-30 00:00:00,0.255,0.278,0.28 -2015-10-30 01:00:00,0.255,0.278,0.28 -2015-10-30 02:00:00,0.255,0.278,0.28 -2015-10-30 03:00:00,0.255,0.278,0.28 -2015-10-30 04:00:00,0.255,0.278,0.28 -2015-10-30 05:00:00,0.255,0.278,0.28 -2015-10-30 06:00:00,0.255,0.278,0.281 -2015-10-30 07:00:00,0.254,0.278,0.281 -2015-10-30 08:00:00,0.254,0.278,0.281 -2015-10-30 09:00:00,0.254,0.278,0.281 -2015-10-30 10:00:00,0.254,0.278,0.281 -2015-10-30 11:00:00,0.254,0.278,0.281 -2015-10-30 12:00:00,0.254,0.278,0.28 -2015-10-30 13:00:00,0.254,0.278,0.28 -2015-10-30 14:00:00,0.254,0.278,0.28 -2015-10-30 15:00:00,0.254,0.278,0.28 -2015-10-30 16:00:00,0.254,0.278,0.28 -2015-10-30 17:00:00,0.254,0.278,0.28 -2015-10-30 18:00:00,0.254,0.278,0.28 -2015-10-30 19:00:00,0.254,0.278,0.28 -2015-10-30 20:00:00,0.254,0.278,0.28 -2015-10-30 21:00:00,0.254,0.278,0.28 -2015-10-30 22:00:00,0.254,0.278,0.28 -2015-10-30 23:00:00,0.254,0.278,0.28 -2015-10-31 00:00:00,0.254,0.278,0.28 -2015-10-31 01:00:00,0.254,0.278,0.28 -2015-10-31 02:00:00,0.254,0.278,0.28 -2015-10-31 03:00:00,0.254,0.278,0.28 -2015-10-31 04:00:00,0.254,0.278,0.28 -2015-10-31 05:00:00,0.254,0.278,0.28 -2015-10-31 06:00:00,0.254,0.278,0.28 -2015-10-31 07:00:00,0.254,0.278,0.28 -2015-10-31 08:00:00,0.254,0.278,0.28 -2015-10-31 09:00:00,0.254,0.278,0.28 -2015-10-31 10:00:00,0.254,0.278,0.28 -2015-10-31 11:00:00,0.254,0.278,0.28 -2015-10-31 12:00:00,0.254,0.278,0.28 -2015-10-31 13:00:00,0.254,0.278,0.28 -2015-10-31 14:00:00,0.254,0.278,0.28 -2015-10-31 15:00:00,0.254,0.278,0.28 -2015-10-31 16:00:00,0.254,0.278,0.28 -2015-10-31 17:00:00,0.254,0.278,0.27899999999999997 -2015-10-31 18:00:00,0.253,0.278,0.27899999999999997 -2015-10-31 19:00:00,0.253,0.278,0.27899999999999997 -2015-10-31 20:00:00,0.254,0.278,0.27899999999999997 -2015-10-31 21:00:00,0.254,0.278,0.27899999999999997 -2015-10-31 22:00:00,0.254,0.278,0.27899999999999997 -2015-10-31 23:00:00,0.254,0.278,0.27899999999999997 -2015-11-01 00:00:00,0.254,0.278,0.27899999999999997 -2015-11-01 01:00:00,0.254,0.278,0.27899999999999997 -2015-11-01 02:00:00,0.254,0.278,0.27899999999999997 -2015-11-01 03:00:00,0.253,0.278,0.27899999999999997 -2015-11-01 04:00:00,0.254,0.278,0.28 -2015-11-01 05:00:00,0.254,0.278,0.28 -2015-11-01 06:00:00,0.254,0.278,0.28 -2015-11-01 07:00:00,0.253,0.278,0.27899999999999997 -2015-11-01 08:00:00,0.254,0.278,0.27899999999999997 -2015-11-01 09:00:00,0.254,0.278,0.28 -2015-11-01 10:00:00,0.254,0.278,0.28 -2015-11-01 11:00:00,0.254,0.278,0.28 -2015-11-01 12:00:00,0.254,0.278,0.28 -2015-11-01 13:00:00,0.253,0.278,0.28 -2015-11-01 14:00:00,0.253,0.278,0.28 -2015-11-01 15:00:00,0.253,0.278,0.27899999999999997 -2015-11-01 16:00:00,0.253,0.278,0.27899999999999997 -2015-11-01 17:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-01 18:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-01 19:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-01 20:00:00,0.253,0.28,0.27899999999999997 -2015-11-01 21:00:00,0.253,0.28,0.27899999999999997 -2015-11-01 22:00:00,0.253,0.28,0.27899999999999997 -2015-11-01 23:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 00:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 01:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 02:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 03:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 04:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 05:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 06:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 07:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 08:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 09:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 10:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 11:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 12:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 13:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 14:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-02 15:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-02 16:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-02 17:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 18:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 19:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 20:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 21:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 22:00:00,0.253,0.28,0.27899999999999997 -2015-11-02 23:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 00:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 01:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 02:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 03:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 04:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 05:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 06:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-03 07:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-03 08:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-03 09:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-03 10:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 11:00:00,0.252,0.281,0.27899999999999997 -2015-11-03 12:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-03 13:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-03 14:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-03 15:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-03 16:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 17:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 18:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 19:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 20:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 21:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 22:00:00,0.253,0.28,0.27899999999999997 -2015-11-03 23:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 00:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 01:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 02:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 03:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 04:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 05:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 06:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 07:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 08:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 09:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 10:00:00,0.253,0.28,0.27899999999999997 -2015-11-04 11:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 12:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 13:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 14:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 15:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 16:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 17:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 18:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 19:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 20:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 21:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-04 22:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-04 23:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 00:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 01:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 02:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 03:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 04:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 05:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 06:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 07:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 08:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 09:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 10:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 11:00:00,0.253,0.27899999999999997,0.27899999999999997 -2015-11-05 12:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 13:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 14:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 15:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 16:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 17:00:00,0.252,0.27899999999999997,0.278 -2015-11-05 18:00:00,0.252,0.27899999999999997,0.278 -2015-11-05 19:00:00,0.252,0.27899999999999997,0.278 -2015-11-05 20:00:00,0.252,0.27899999999999997,0.278 -2015-11-05 21:00:00,0.252,0.27899999999999997,0.278 -2015-11-05 22:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-05 23:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-06 00:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-06 01:00:00,0.252,0.27899999999999997,0.27899999999999997 -2015-11-06 02:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 03:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 04:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 05:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 06:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 07:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 08:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 09:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 10:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 11:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 12:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 13:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 14:00:00,0.252,0.278,0.278 -2015-11-06 15:00:00,0.252,0.278,0.278 -2015-11-06 16:00:00,0.252,0.278,0.278 -2015-11-06 17:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 18:00:00,0.252,0.278,0.278 -2015-11-06 19:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 20:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 21:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 22:00:00,0.252,0.278,0.27899999999999997 -2015-11-06 23:00:00,0.252,0.278,0.27899999999999997 -2015-11-07 00:00:00,0.251,0.278,0.27899999999999997 -2015-11-07 01:00:00,0.248,0.278,0.281 -2015-11-07 02:00:00,0.248,0.278,0.281 -2015-11-07 03:00:00,0.248,0.278,0.281 -2015-11-07 04:00:00,0.248,0.278,0.281 -2015-11-07 05:00:00,0.248,0.278,0.281 -2015-11-07 06:00:00,0.248,0.278,0.281 -2015-11-07 07:00:00,0.248,0.278,0.281 -2015-11-07 08:00:00,0.248,0.278,0.281 -2015-11-07 09:00:00,0.247,0.278,0.281 -2015-11-07 10:00:00,0.247,0.278,0.281 -2015-11-07 11:00:00,0.248,0.278,0.281 -2015-11-07 12:00:00,0.248,0.278,0.281 -2015-11-07 13:00:00,0.25,0.278,0.281 -2015-11-07 14:00:00,0.251,0.278,0.28 -2015-11-07 15:00:00,0.251,0.278,0.28 -2015-11-07 16:00:00,0.252,0.278,0.28 -2015-11-07 17:00:00,0.252,0.278,0.28 -2015-11-07 18:00:00,0.252,0.278,0.28 -2015-11-07 19:00:00,0.252,0.278,0.28 -2015-11-07 20:00:00,0.251,0.278,0.28 -2015-11-07 21:00:00,0.252,0.276,0.28 -2015-11-07 22:00:00,0.251,0.276,0.28 -2015-11-07 23:00:00,0.252,0.276,0.28 -2015-11-08 00:00:00,0.252,0.276,0.28 -2015-11-08 01:00:00,0.252,0.276,0.28 -2015-11-08 02:00:00,0.252,0.276,0.28 -2015-11-08 03:00:00,0.251,0.276,0.28 -2015-11-08 04:00:00,0.251,0.276,0.28 -2015-11-08 05:00:00,0.251,0.276,0.28 -2015-11-08 06:00:00,0.251,0.276,0.28 -2015-11-08 07:00:00,0.251,0.276,0.28 -2015-11-08 08:00:00,0.251,0.276,0.28 -2015-11-08 09:00:00,0.251,0.276,0.28 -2015-11-08 10:00:00,0.251,0.276,0.28 -2015-11-08 11:00:00,0.251,0.276,0.28 -2015-11-08 12:00:00,0.251,0.276,0.28 -2015-11-08 13:00:00,0.251,0.276,0.28 -2015-11-08 14:00:00,0.252,0.276,0.28 -2015-11-08 15:00:00,0.252,0.276,0.28 -2015-11-08 16:00:00,0.252,0.276,0.27899999999999997 -2015-11-08 17:00:00,0.252,0.276,0.27899999999999997 -2015-11-08 18:00:00,0.253,0.276,0.27899999999999997 -2015-11-08 19:00:00,0.252,0.276,0.27899999999999997 -2015-11-08 20:00:00,0.252,0.276,0.27899999999999997 -2015-11-08 21:00:00,0.252,0.276,0.27899999999999997 -2015-11-08 22:00:00,0.252,0.276,0.27899999999999997 -2015-11-08 23:00:00,0.252,0.276,0.27899999999999997 -2015-11-09 00:00:00,0.252,0.276,0.27899999999999997 -2015-11-09 01:00:00,0.252,0.275,0.27899999999999997 -2015-11-09 02:00:00,0.252,0.275,0.28 -2015-11-09 03:00:00,0.252,0.275,0.28 -2015-11-09 04:00:00,0.252,0.275,0.28 -2015-11-09 05:00:00,0.252,0.275,0.28 -2015-11-09 06:00:00,0.252,0.275,0.28 -2015-11-09 07:00:00,0.252,0.275,0.28 -2015-11-09 08:00:00,0.252,0.275,0.28 -2015-11-09 09:00:00,0.252,0.275,0.28 -2015-11-09 10:00:00,0.252,0.275,0.28 -2015-11-09 11:00:00,0.252,0.275,0.28 -2015-11-09 12:00:00,0.253,0.275,0.27899999999999997 -2015-11-09 13:00:00,0.253,0.276,0.27899999999999997 -2015-11-09 14:00:00,0.253,0.276,0.27899999999999997 -2015-11-09 15:00:00,0.253,0.276,0.27899999999999997 -2015-11-09 16:00:00,0.253,0.276,0.27899999999999997 -2015-11-09 17:00:00,0.253,0.276,0.27899999999999997 -2015-11-09 18:00:00,0.253,0.27699999999999997,0.27899999999999997 -2015-11-09 19:00:00,0.253,0.278,0.27899999999999997 -2015-11-09 20:00:00,0.253,0.278,0.27899999999999997 -2015-11-09 21:00:00,0.253,0.278,0.27899999999999997 -2015-11-09 22:00:00,0.253,0.278,0.27899999999999997 -2015-11-09 23:00:00,0.253,0.278,0.27899999999999997 -2015-11-10 00:00:00,0.253,0.278,0.27899999999999997 -2015-11-10 01:00:00,0.253,0.278,0.27899999999999997 -2015-11-10 02:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 03:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 04:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 05:00:00,0.253,0.278,0.27899999999999997 -2015-11-10 06:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 07:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 08:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 09:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 10:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 11:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 12:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 13:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 14:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 15:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 16:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 17:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 18:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 19:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 20:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 21:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 22:00:00,0.252,0.278,0.27899999999999997 -2015-11-10 23:00:00,0.252,0.278,0.27899999999999997 -2015-11-11 00:00:00,0.252,0.278,0.27899999999999997 -2015-11-11 01:00:00,0.252,0.278,0.27899999999999997 -2015-11-11 02:00:00,0.252,0.278,0.27899999999999997 -2015-11-11 03:00:00,0.252,0.276,0.27899999999999997 -2015-11-11 04:00:00,0.252,0.275,0.27899999999999997 -2015-11-11 05:00:00,0.252,0.275,0.27899999999999997 -2015-11-11 06:00:00,0.252,0.275,0.27899999999999997 -2015-11-11 07:00:00,0.252,0.275,0.27899999999999997 -2015-11-11 08:00:00,0.252,0.275,0.27899999999999997 -2015-11-11 09:00:00,0.252,0.272,0.27899999999999997 -2015-11-11 10:00:00,0.252,0.281,0.27899999999999997 -2015-11-11 11:00:00,0.252,0.287,0.27899999999999997 -2015-11-11 12:00:00,0.252,0.287,0.27899999999999997 -2015-11-11 13:00:00,0.252,0.29600000000000004,0.27899999999999997 -2015-11-11 14:00:00,0.252,0.303,0.27899999999999997 -2015-11-11 15:00:00,0.252,0.305,0.278 -2015-11-11 16:00:00,0.252,0.314,0.278 -2015-11-11 17:00:00,0.252,0.312,0.278 -2015-11-11 18:00:00,0.252,0.319,0.278 -2015-11-11 19:00:00,0.252,0.317,0.278 -2015-11-11 20:00:00,0.252,0.316,0.278 -2015-11-11 21:00:00,0.252,0.315,0.27899999999999997 -2015-11-11 22:00:00,0.252,0.31,0.27899999999999997 -2015-11-11 23:00:00,0.252,0.31,0.27899999999999997 -2015-11-12 00:00:00,0.252,0.308,0.27899999999999997 -2015-11-12 01:00:00,0.252,0.305,0.27899999999999997 -2015-11-12 02:00:00,0.252,0.308,0.27899999999999997 -2015-11-12 03:00:00,0.252,0.309,0.27899999999999997 -2015-11-12 04:00:00,0.252,0.31,0.27899999999999997 -2015-11-12 05:00:00,0.251,0.315,0.27899999999999997 -2015-11-12 06:00:00,0.252,0.317,0.27899999999999997 -2015-11-12 07:00:00,0.252,0.317,0.27899999999999997 -2015-11-12 08:00:00,0.251,0.317,0.278 -2015-11-12 09:00:00,0.252,0.317,0.27899999999999997 -2015-11-12 10:00:00,0.252,0.316,0.27899999999999997 -2015-11-12 11:00:00,0.252,0.315,0.27899999999999997 -2015-11-12 12:00:00,0.252,0.315,0.278 -2015-11-12 13:00:00,0.252,0.314,0.278 -2015-11-12 14:00:00,0.252,0.314,0.278 -2015-11-12 15:00:00,0.252,0.313,0.278 -2015-11-12 16:00:00,0.252,0.312,0.278 -2015-11-12 17:00:00,0.252,0.312,0.278 -2015-11-12 18:00:00,0.252,0.312,0.278 -2015-11-12 19:00:00,0.252,0.31,0.278 -2015-11-12 20:00:00,0.252,0.31,0.278 -2015-11-12 21:00:00,0.252,0.31,0.278 -2015-11-12 22:00:00,0.252,0.31,0.278 -2015-11-12 23:00:00,0.252,0.31,0.27899999999999997 -2015-11-13 00:00:00,0.252,0.31,0.278 -2015-11-13 01:00:00,0.252,0.309,0.278 -2015-11-13 02:00:00,0.252,0.309,0.278 -2015-11-13 03:00:00,0.252,0.309,0.278 -2015-11-13 04:00:00,0.252,0.309,0.27899999999999997 -2015-11-13 05:00:00,0.252,0.308,0.27899999999999997 -2015-11-13 06:00:00,0.252,0.305,0.278 -2015-11-13 07:00:00,0.252,0.304,0.27899999999999997 -2015-11-13 08:00:00,0.252,0.305,0.27899999999999997 -2015-11-13 09:00:00,0.252,0.305,0.27899999999999997 -2015-11-13 10:00:00,0.252,0.305,0.27899999999999997 -2015-11-13 11:00:00,0.252,0.302,0.27899999999999997 -2015-11-13 12:00:00,0.252,0.301,0.278 -2015-11-13 13:00:00,0.252,0.302,0.278 -2015-11-13 14:00:00,0.252,0.304,0.278 -2015-11-13 15:00:00,0.252,0.305,0.278 -2015-11-13 16:00:00,0.252,0.304,0.278 -2015-11-13 17:00:00,0.252,0.303,0.278 -2015-11-13 18:00:00,0.251,0.304,0.28 -2015-11-13 19:00:00,0.25,0.299,0.28 -2015-11-13 20:00:00,0.247,0.322,0.281 -2015-11-13 21:00:00,0.24600000000000002,0.32,0.281 -2015-11-13 22:00:00,0.243,0.321,0.282 -2015-11-13 23:00:00,0.243,0.321,0.282 -2015-11-14 00:00:00,0.243,0.321,0.282 -2015-11-14 01:00:00,0.243,0.324,0.282 -2015-11-14 02:00:00,0.244,0.324,0.281 -2015-11-14 03:00:00,0.245,0.32299999999999995,0.281 -2015-11-14 04:00:00,0.245,0.321,0.281 -2015-11-14 05:00:00,0.24600000000000002,0.32,0.281 -2015-11-14 06:00:00,0.24600000000000002,0.318,0.281 -2015-11-14 07:00:00,0.24600000000000002,0.317,0.281 -2015-11-14 08:00:00,0.247,0.317,0.281 -2015-11-14 09:00:00,0.248,0.315,0.281 -2015-11-14 10:00:00,0.249,0.315,0.281 -2015-11-14 11:00:00,0.251,0.315,0.28 -2015-11-14 12:00:00,0.252,0.315,0.28 -2015-11-14 13:00:00,0.252,0.314,0.27899999999999997 -2015-11-14 14:00:00,0.252,0.314,0.27899999999999997 -2015-11-14 15:00:00,0.252,0.314,0.27899999999999997 -2015-11-14 16:00:00,0.252,0.307,0.27899999999999997 -2015-11-14 17:00:00,0.252,0.308,0.27899999999999997 -2015-11-14 18:00:00,0.252,0.312,0.27899999999999997 -2015-11-14 19:00:00,0.252,0.319,0.27899999999999997 -2015-11-14 20:00:00,0.252,0.321,0.28 -2015-11-14 21:00:00,0.25,0.321,0.281 -2015-11-14 22:00:00,0.25,0.32,0.281 -2015-11-14 23:00:00,0.25,0.319,0.281 -2015-11-15 00:00:00,0.248,0.318,0.281 -2015-11-15 01:00:00,0.245,0.316,0.282 -2015-11-15 02:00:00,0.244,0.316,0.282 -2015-11-15 03:00:00,0.244,0.316,0.282 -2015-11-15 04:00:00,0.245,0.315,0.282 -2015-11-15 05:00:00,0.244,0.315,0.282 -2015-11-15 06:00:00,0.245,0.315,0.282 -2015-11-15 07:00:00,0.245,0.314,0.282 -2015-11-15 08:00:00,0.245,0.314,0.282 -2015-11-15 09:00:00,0.245,0.314,0.282 -2015-11-15 10:00:00,0.24600000000000002,0.313,0.282 -2015-11-15 11:00:00,0.248,0.313,0.281 -2015-11-15 12:00:00,0.25,0.312,0.281 -2015-11-15 13:00:00,0.252,0.312,0.28 -2015-11-15 14:00:00,0.253,0.312,0.27899999999999997 -2015-11-15 15:00:00,0.253,0.312,0.27899999999999997 -2015-11-15 16:00:00,0.253,0.312,0.27899999999999997 -2015-11-15 17:00:00,0.253,0.312,0.27899999999999997 -2015-11-15 18:00:00,0.253,0.312,0.27899999999999997 -2015-11-15 19:00:00,0.253,0.311,0.27899999999999997 -2015-11-15 20:00:00,0.253,0.31,0.27899999999999997 -2015-11-15 21:00:00,0.253,0.31,0.27899999999999997 -2015-11-15 22:00:00,0.253,0.31,0.27899999999999997 -2015-11-15 23:00:00,0.253,0.311,0.27899999999999997 -2015-11-16 00:00:00,0.253,0.312,0.27899999999999997 -2015-11-16 01:00:00,0.253,0.312,0.27899999999999997 -2015-11-16 02:00:00,0.253,0.313,0.27899999999999997 -2015-11-16 03:00:00,0.253,0.313,0.27899999999999997 -2015-11-16 04:00:00,0.254,0.312,0.27899999999999997 -2015-11-16 05:00:00,0.253,0.311,0.27899999999999997 -2015-11-16 06:00:00,0.254,0.31,0.27899999999999997 -2015-11-16 07:00:00,0.254,0.312,0.27899999999999997 -2015-11-16 08:00:00,0.253,0.312,0.27899999999999997 -2015-11-16 09:00:00,0.254,0.312,0.27899999999999997 -2015-11-16 10:00:00,0.254,0.311,0.27899999999999997 -2015-11-16 11:00:00,0.254,0.31,0.27899999999999997 -2015-11-16 12:00:00,0.254,0.31,0.27899999999999997 -2015-11-16 13:00:00,0.253,0.31,0.27899999999999997 -2015-11-16 14:00:00,0.254,0.31,0.27899999999999997 -2015-11-16 15:00:00,0.253,0.31,0.27899999999999997 -2015-11-16 16:00:00,0.254,0.31,0.278 -2015-11-16 17:00:00,0.253,0.31,0.27899999999999997 -2015-11-16 18:00:00,0.253,0.31,0.278 -2015-11-16 19:00:00,0.253,0.31,0.27899999999999997 -2015-11-16 20:00:00,0.253,0.31,0.27899999999999997 -2015-11-16 21:00:00,0.253,0.309,0.27899999999999997 -2015-11-16 22:00:00,0.253,0.31,0.27899999999999997 -2015-11-16 23:00:00,0.253,0.31,0.27899999999999997 -2015-11-17 00:00:00,0.252,0.31,0.281 -2015-11-17 01:00:00,0.25,0.31,0.281 -2015-11-17 02:00:00,0.249,0.309,0.281 -2015-11-17 03:00:00,0.249,0.309,0.281 -2015-11-17 04:00:00,0.248,0.309,0.282 -2015-11-17 05:00:00,0.247,0.309,0.282 -2015-11-17 06:00:00,0.261,0.308,0.285 -2015-11-17 07:00:00,0.27,0.307,0.29 -2015-11-17 08:00:00,0.26899999999999996,0.307,0.292 -2015-11-17 09:00:00,0.271,0.305,0.293 -2015-11-17 10:00:00,0.272,0.305,0.303 -2015-11-17 11:00:00,0.272,0.307,0.306 -2015-11-17 12:00:00,0.275,0.307,0.312 -2015-11-17 13:00:00,0.27399999999999997,0.307,0.315 -2015-11-17 14:00:00,0.275,0.307,0.315 -2015-11-17 15:00:00,0.273,0.307,0.317 -2015-11-17 16:00:00,0.27,0.307,0.316 -2015-11-17 17:00:00,0.268,0.309,0.315 -2015-11-17 18:00:00,0.267,0.31,0.313 -2015-11-17 19:00:00,0.268,0.31,0.312 -2015-11-17 20:00:00,0.26899999999999996,0.31,0.311 -2015-11-17 21:00:00,0.26899999999999996,0.311,0.311 -2015-11-17 22:00:00,0.272,0.312,0.313 -2015-11-17 23:00:00,0.273,0.312,0.315 -2015-11-18 00:00:00,0.275,0.312,0.316 -2015-11-18 01:00:00,0.275,0.312,0.316 -2015-11-18 02:00:00,0.272,0.312,0.316 -2015-11-18 03:00:00,0.26899999999999996,0.311,0.315 -2015-11-18 04:00:00,0.271,0.31,0.314 -2015-11-18 05:00:00,0.275,0.31,0.313 -2015-11-18 06:00:00,0.278,0.31,0.311 -2015-11-18 07:00:00,0.278,0.31,0.311 -2015-11-18 08:00:00,0.278,0.31,0.31 -2015-11-18 09:00:00,0.278,0.31,0.309 -2015-11-18 10:00:00,0.27699999999999997,0.31,0.308 -2015-11-18 11:00:00,0.276,0.31,0.307 -2015-11-18 12:00:00,0.276,0.309,0.306 -2015-11-18 13:00:00,0.275,0.309,0.306 -2015-11-18 14:00:00,0.275,0.308,0.305 -2015-11-18 15:00:00,0.275,0.307,0.304 -2015-11-18 16:00:00,0.27399999999999997,0.307,0.303 -2015-11-18 17:00:00,0.27399999999999997,0.307,0.302 -2015-11-18 18:00:00,0.27399999999999997,0.307,0.302 -2015-11-18 19:00:00,0.273,0.307,0.301 -2015-11-18 20:00:00,0.273,0.307,0.301 -2015-11-18 21:00:00,0.27399999999999997,0.307,0.3 -2015-11-18 22:00:00,0.273,0.307,0.3 -2015-11-18 23:00:00,0.273,0.307,0.299 -2015-11-19 00:00:00,0.273,0.307,0.298 -2015-11-19 01:00:00,0.272,0.307,0.298 -2015-11-19 02:00:00,0.272,0.306,0.297 -2015-11-19 03:00:00,0.27,0.306,0.298 -2015-11-19 04:00:00,0.27,0.306,0.298 -2015-11-19 05:00:00,0.27,0.306,0.298 -2015-11-19 06:00:00,0.271,0.307,0.297 -2015-11-19 07:00:00,0.271,0.307,0.297 -2015-11-19 08:00:00,0.266,0.307,0.298 -2015-11-19 09:00:00,0.264,0.307,0.298 -2015-11-19 10:00:00,0.265,0.306,0.297 -2015-11-19 11:00:00,0.268,0.306,0.297 -2015-11-19 12:00:00,0.272,0.307,0.29600000000000004 -2015-11-19 13:00:00,0.273,0.308,0.295 -2015-11-19 14:00:00,0.26899999999999996,0.31,0.29600000000000004 -2015-11-19 15:00:00,0.268,0.312,0.29600000000000004 -2015-11-19 16:00:00,0.266,0.316,0.297 -2015-11-19 17:00:00,0.293,0.318,0.341 -2015-11-19 18:00:00,0.287,0.319,0.335 -2015-11-19 19:00:00,0.28800000000000003,0.319,0.336 -2015-11-19 20:00:00,0.28600000000000003,0.317,0.33299999999999996 -2015-11-19 21:00:00,0.287,0.315,0.33399999999999996 -2015-11-19 22:00:00,0.29100000000000004,0.317,0.33799999999999997 -2015-11-19 23:00:00,0.28300000000000003,0.319,0.332 -2015-11-20 00:00:00,0.27699999999999997,0.319,0.32799999999999996 -2015-11-20 01:00:00,0.273,0.319,0.325 -2015-11-20 02:00:00,0.271,0.319,0.324 -2015-11-20 03:00:00,0.26899999999999996,0.319,0.321 -2015-11-20 04:00:00,0.268,0.319,0.319 -2015-11-20 05:00:00,0.267,0.317,0.318 -2015-11-20 06:00:00,0.267,0.317,0.317 -2015-11-20 07:00:00,0.266,0.317,0.316 -2015-11-20 08:00:00,0.265,0.317,0.316 -2015-11-20 09:00:00,0.265,0.316,0.315 -2015-11-20 10:00:00,0.265,0.315,0.315 -2015-11-20 11:00:00,0.265,0.315,0.314 -2015-11-20 12:00:00,0.267,0.315,0.313 -2015-11-20 13:00:00,0.266,0.314,0.313 -2015-11-20 14:00:00,0.26899999999999996,0.314,0.313 -2015-11-20 15:00:00,0.28600000000000003,0.314,0.325 -2015-11-20 16:00:00,0.28800000000000003,0.314,0.331 -2015-11-20 17:00:00,0.287,0.314,0.33299999999999996 -2015-11-20 18:00:00,0.27899999999999997,0.314,0.32799999999999996 -2015-11-20 19:00:00,0.275,0.314,0.325 -2015-11-20 20:00:00,0.272,0.314,0.322 -2015-11-20 21:00:00,0.27,0.314,0.321 -2015-11-20 22:00:00,0.26899999999999996,0.314,0.319 -2015-11-20 23:00:00,0.268,0.313,0.318 -2015-11-21 00:00:00,0.266,0.312,0.317 -2015-11-21 01:00:00,0.266,0.312,0.316 -2015-11-21 02:00:00,0.265,0.312,0.316 -2015-11-21 03:00:00,0.264,0.312,0.316 -2015-11-21 04:00:00,0.264,0.312,0.315 -2015-11-21 05:00:00,0.264,0.312,0.315 -2015-11-21 06:00:00,0.265,0.31,0.315 -2015-11-21 07:00:00,0.264,0.31,0.314 -2015-11-21 08:00:00,0.264,0.31,0.313 -2015-11-21 09:00:00,0.264,0.31,0.313 -2015-11-21 10:00:00,0.264,0.31,0.313 -2015-11-21 11:00:00,0.264,0.309,0.312 -2015-11-21 12:00:00,0.265,0.309,0.311 -2015-11-21 13:00:00,0.267,0.309,0.311 -2015-11-21 14:00:00,0.27,0.307,0.31 -2015-11-21 15:00:00,0.271,0.307,0.31 -2015-11-21 16:00:00,0.27,0.307,0.309 -2015-11-21 17:00:00,0.265,0.307,0.31 -2015-11-21 18:00:00,0.264,0.307,0.31 -2015-11-21 19:00:00,0.265,0.307,0.309 -2015-11-21 20:00:00,0.265,0.307,0.309 -2015-11-21 21:00:00,0.273,0.308,0.308 -2015-11-21 22:00:00,0.275,0.309,0.307 -2015-11-21 23:00:00,0.275,0.309,0.307 -2015-11-22 00:00:00,0.273,0.308,0.308 -2015-11-22 01:00:00,0.268,0.308,0.308 -2015-11-22 02:00:00,0.265,0.308,0.308 -2015-11-22 03:00:00,0.265,0.308,0.308 -2015-11-22 04:00:00,0.26899999999999996,0.309,0.308 -2015-11-22 05:00:00,0.27399999999999997,0.308,0.306 -2015-11-22 06:00:00,0.275,0.307,0.306 -2015-11-22 07:00:00,0.27399999999999997,0.307,0.306 -2015-11-22 08:00:00,0.272,0.307,0.305 -2015-11-22 09:00:00,0.267,0.307,0.305 -2015-11-22 10:00:00,0.263,0.306,0.305 -2015-11-22 11:00:00,0.264,0.305,0.305 -2015-11-22 12:00:00,0.264,0.304,0.305 -2015-11-22 13:00:00,0.266,0.304,0.304 -2015-11-22 14:00:00,0.268,0.304,0.304 -2015-11-22 15:00:00,0.27,0.304,0.303 -2015-11-22 16:00:00,0.271,0.304,0.303 -2015-11-22 17:00:00,0.27,0.304,0.303 -2015-11-22 18:00:00,0.264,0.305,0.303 -2015-11-22 19:00:00,0.267,0.305,0.303 -2015-11-22 20:00:00,0.271,0.305,0.302 -2015-11-22 21:00:00,0.26899999999999996,0.307,0.302 -2015-11-22 22:00:00,0.271,0.307,0.302 -2015-11-22 23:00:00,0.271,0.307,0.302 -2015-11-23 00:00:00,0.271,0.306,0.302 -2015-11-23 01:00:00,0.26899999999999996,0.306,0.302 -2015-11-23 02:00:00,0.267,0.306,0.302 -2015-11-23 03:00:00,0.265,0.306,0.302 -2015-11-23 04:00:00,0.263,0.307,0.302 -2015-11-23 05:00:00,0.261,0.306,0.302 -2015-11-23 06:00:00,0.262,0.301,0.302 -2015-11-23 07:00:00,0.262,0.295,0.302 -2015-11-23 08:00:00,0.262,0.308,0.302 -2015-11-23 09:00:00,0.261,0.324,0.302 -2015-11-23 10:00:00,0.262,0.326,0.302 -2015-11-23 11:00:00,0.262,0.326,0.302 -2015-11-23 12:00:00,0.262,0.32299999999999995,0.302 -2015-11-23 13:00:00,0.263,0.32,0.302 -2015-11-23 14:00:00,0.265,0.317,0.301 -2015-11-23 15:00:00,0.267,0.324,0.301 -2015-11-23 16:00:00,0.26899999999999996,0.325,0.301 -2015-11-23 17:00:00,0.271,0.325,0.3 -2015-11-23 18:00:00,0.275,0.319,0.3 -2015-11-23 19:00:00,0.275,0.322,0.299 -2015-11-23 20:00:00,0.275,0.326,0.299 -2015-11-23 21:00:00,0.27399999999999997,0.327,0.299 -2015-11-23 22:00:00,0.275,0.322,0.299 -2015-11-23 23:00:00,0.275,0.319,0.299 -2015-11-24 00:00:00,0.27399999999999997,0.317,0.299 -2015-11-24 01:00:00,0.27399999999999997,0.318,0.299 -2015-11-24 02:00:00,0.273,0.324,0.299 -2015-11-24 03:00:00,0.273,0.322,0.299 -2015-11-24 04:00:00,0.273,0.321,0.299 -2015-11-24 05:00:00,0.273,0.319,0.299 -2015-11-24 06:00:00,0.273,0.331,0.299 -2015-11-24 07:00:00,0.273,0.336,0.299 -2015-11-24 08:00:00,0.273,0.332,0.298 -2015-11-24 09:00:00,0.273,0.32899999999999996,0.298 -2015-11-24 10:00:00,0.272,0.32899999999999996,0.299 -2015-11-24 11:00:00,0.26899999999999996,0.33,0.3 -2015-11-24 12:00:00,0.266,0.32799999999999996,0.3 -2015-11-24 13:00:00,0.266,0.327,0.3 -2015-11-24 14:00:00,0.267,0.326,0.3 -2015-11-24 15:00:00,0.26899999999999996,0.322,0.3 -2015-11-24 16:00:00,0.26899999999999996,0.319,0.299 -2015-11-24 17:00:00,0.27,0.317,0.299 -2015-11-24 18:00:00,0.26899999999999996,0.32299999999999995,0.299 -2015-11-24 19:00:00,0.26899999999999996,0.32299999999999995,0.299 -2015-11-24 20:00:00,0.268,0.32799999999999996,0.299 -2015-11-24 21:00:00,0.266,0.326,0.299 -2015-11-24 22:00:00,0.263,0.32299999999999995,0.3 -2015-11-24 23:00:00,0.261,0.321,0.3 -2015-11-25 00:00:00,0.26,0.33299999999999996,0.3 -2015-11-25 01:00:00,0.26,0.33299999999999996,0.3 -2015-11-25 02:00:00,0.26,0.33,0.3 -2015-11-25 03:00:00,0.261,0.327,0.3 -2015-11-25 04:00:00,0.261,0.326,0.3 -2015-11-25 05:00:00,0.261,0.326,0.3 -2015-11-25 06:00:00,0.261,0.325,0.3 -2015-11-25 07:00:00,0.262,0.325,0.3 -2015-11-25 08:00:00,0.262,0.324,0.3 -2015-11-25 09:00:00,0.262,0.32299999999999995,0.3 -2015-11-25 10:00:00,0.263,0.317,0.3 -2015-11-25 11:00:00,0.263,0.324,0.3 -2015-11-25 12:00:00,0.266,0.32899999999999996,0.301 -2015-11-25 13:00:00,0.268,0.32799999999999996,0.303 -2015-11-25 14:00:00,0.26899999999999996,0.326,0.306 -2015-11-25 15:00:00,0.26899999999999996,0.324,0.307 -2015-11-25 16:00:00,0.26899999999999996,0.324,0.309 -2015-11-25 17:00:00,0.26899999999999996,0.326,0.31 -2015-11-25 18:00:00,0.26899999999999996,0.327,0.311 -2015-11-25 19:00:00,0.26899999999999996,0.32899999999999996,0.313 -2015-11-25 20:00:00,0.26899999999999996,0.33,0.315 -2015-11-25 21:00:00,0.26899999999999996,0.33,0.316 -2015-11-25 22:00:00,0.268,0.326,0.316 -2015-11-25 23:00:00,0.268,0.324,0.316 -2015-11-26 00:00:00,0.268,0.324,0.316 -2015-11-26 01:00:00,0.267,0.32299999999999995,0.315 -2015-11-26 02:00:00,0.267,0.321,0.315 -2015-11-26 03:00:00,0.266,0.321,0.314 -2015-11-26 04:00:00,0.266,0.321,0.314 -2015-11-26 05:00:00,0.266,0.321,0.313 -2015-11-26 06:00:00,0.266,0.321,0.313 -2015-11-26 07:00:00,0.265,0.321,0.312 -2015-11-26 08:00:00,0.265,0.322,0.311 -2015-11-26 09:00:00,0.265,0.322,0.311 -2015-11-26 10:00:00,0.265,0.322,0.311 -2015-11-26 11:00:00,0.266,0.322,0.31 -2015-11-26 12:00:00,0.267,0.321,0.31 -2015-11-26 13:00:00,0.26899999999999996,0.321,0.309 -2015-11-26 14:00:00,0.271,0.321,0.308 -2015-11-26 15:00:00,0.272,0.321,0.306 -2015-11-26 16:00:00,0.273,0.321,0.306 -2015-11-26 17:00:00,0.273,0.321,0.305 -2015-11-26 18:00:00,0.273,0.321,0.305 -2015-11-26 19:00:00,0.273,0.321,0.305 -2015-11-26 20:00:00,0.272,0.321,0.304 -2015-11-26 21:00:00,0.272,0.321,0.304 -2015-11-26 22:00:00,0.272,0.32,0.304 -2015-11-26 23:00:00,0.272,0.319,0.303 -2015-11-27 00:00:00,0.273,0.319,0.302 -2015-11-27 01:00:00,0.273,0.319,0.302 -2015-11-27 02:00:00,0.273,0.319,0.302 -2015-11-27 03:00:00,0.272,0.319,0.302 -2015-11-27 04:00:00,0.27,0.317,0.302 -2015-11-27 05:00:00,0.26899999999999996,0.317,0.302 -2015-11-27 06:00:00,0.26899999999999996,0.317,0.302 -2015-11-27 07:00:00,0.26899999999999996,0.317,0.302 -2015-11-27 08:00:00,0.268,0.317,0.302 -2015-11-27 09:00:00,0.268,0.317,0.302 -2015-11-27 10:00:00,0.268,0.316,0.302 -2015-11-27 11:00:00,0.268,0.315,0.301 -2015-11-27 12:00:00,0.268,0.315,0.301 -2015-11-27 13:00:00,0.26899999999999996,0.315,0.301 -2015-11-27 14:00:00,0.26899999999999996,0.315,0.301 -2015-11-27 15:00:00,0.26899999999999996,0.315,0.301 -2015-11-27 16:00:00,0.26899999999999996,0.315,0.3 -2015-11-27 17:00:00,0.26899999999999996,0.315,0.3 -2015-11-27 18:00:00,0.27,0.315,0.3 -2015-11-27 19:00:00,0.271,0.315,0.299 -2015-11-27 20:00:00,0.271,0.315,0.299 -2015-11-27 21:00:00,0.27,0.315,0.299 -2015-11-27 22:00:00,0.27,0.315,0.299 -2015-11-27 23:00:00,0.27,0.314,0.299 -2015-11-28 00:00:00,0.27,0.314,0.299 -2015-11-28 01:00:00,0.271,0.314,0.298 -2015-11-28 02:00:00,0.27,0.314,0.298 -2015-11-28 03:00:00,0.27,0.314,0.298 -2015-11-28 04:00:00,0.27,0.314,0.299 -2015-11-28 05:00:00,0.26899999999999996,0.314,0.299 -2015-11-28 06:00:00,0.26899999999999996,0.314,0.299 -2015-11-28 07:00:00,0.267,0.313,0.3 -2015-11-28 08:00:00,0.263,0.313,0.3 -2015-11-28 09:00:00,0.262,0.312,0.3 -2015-11-28 10:00:00,0.262,0.312,0.3 -2015-11-28 11:00:00,0.262,0.31,0.3 -2015-11-28 12:00:00,0.262,0.309,0.3 -2015-11-28 13:00:00,0.262,0.307,0.3 -2015-11-28 14:00:00,0.263,0.305,0.299 -2015-11-28 15:00:00,0.265,0.306,0.299 -2015-11-28 16:00:00,0.266,0.307,0.299 -2015-11-28 17:00:00,0.267,0.309,0.299 -2015-11-28 18:00:00,0.26899999999999996,0.31,0.298 -2015-11-28 19:00:00,0.27,0.311,0.298 -2015-11-28 20:00:00,0.26899999999999996,0.313,0.298 -2015-11-28 21:00:00,0.267,0.314,0.298 -2015-11-28 22:00:00,0.268,0.315,0.298 -2015-11-28 23:00:00,0.268,0.315,0.298 -2015-11-29 00:00:00,0.268,0.316,0.298 -2015-11-29 01:00:00,0.26899999999999996,0.316,0.298 -2015-11-29 02:00:00,0.268,0.316,0.298 -2015-11-29 03:00:00,0.261,0.315,0.299 -2015-11-29 04:00:00,0.263,0.315,0.3 -2015-11-29 05:00:00,0.29,0.315,0.321 -2015-11-29 06:00:00,0.293,0.315,0.33799999999999997 -2015-11-29 07:00:00,0.29,0.314,0.336 -2015-11-29 08:00:00,0.28300000000000003,0.314,0.331 -2015-11-29 09:00:00,0.27899999999999997,0.315,0.32899999999999996 -2015-11-29 10:00:00,0.27899999999999997,0.315,0.32799999999999996 -2015-11-29 11:00:00,0.282,0.314,0.327 -2015-11-29 12:00:00,0.28300000000000003,0.314,0.33 -2015-11-29 13:00:00,0.28,0.312,0.32899999999999996 -2015-11-29 14:00:00,0.278,0.31,0.32799999999999996 -2015-11-29 15:00:00,0.27899999999999997,0.31,0.327 -2015-11-29 16:00:00,0.28300000000000003,0.311,0.33 -2015-11-29 17:00:00,0.281,0.312,0.33 -2015-11-29 18:00:00,0.276,0.312,0.32899999999999996 -2015-11-29 19:00:00,0.276,0.312,0.32799999999999996 -2015-11-29 20:00:00,0.27699999999999997,0.312,0.327 -2015-11-29 21:00:00,0.27899999999999997,0.312,0.326 -2015-11-29 22:00:00,0.282,0.314,0.32799999999999996 -2015-11-29 23:00:00,0.284,0.314,0.332 -2015-11-30 00:00:00,0.281,0.314,0.33 -2015-11-30 01:00:00,0.281,0.314,0.32899999999999996 -2015-11-30 02:00:00,0.28,0.313,0.32799999999999996 -2015-11-30 03:00:00,0.297,0.313,0.349 -2015-11-30 04:00:00,0.301,0.313,0.35 -2015-11-30 05:00:00,0.294,0.312,0.348 -2015-11-30 06:00:00,0.287,0.312,0.361 -2015-11-30 07:00:00,0.282,0.312,0.36200000000000004 -2015-11-30 08:00:00,0.278,0.312,0.35100000000000003 -2015-11-30 09:00:00,0.275,0.312,0.34299999999999997 -2015-11-30 10:00:00,0.272,0.312,0.34 -2015-11-30 11:00:00,0.27,0.311,0.337 -2015-11-30 12:00:00,0.271,0.309,0.33399999999999996 -2015-11-30 13:00:00,0.273,0.309,0.332 -2015-11-30 14:00:00,0.278,0.309,0.331 -2015-11-30 15:00:00,0.282,0.309,0.33 -2015-11-30 16:00:00,0.28600000000000003,0.309,0.33 -2015-11-30 17:00:00,0.28600000000000003,0.309,0.331 -2015-11-30 18:00:00,0.28300000000000003,0.31,0.332 -2015-11-30 19:00:00,0.282,0.31,0.33299999999999996 -2015-11-30 20:00:00,0.287,0.31,0.33399999999999996 -2015-11-30 21:00:00,0.298,0.31,0.34700000000000003 -2015-11-30 22:00:00,0.29600000000000004,0.31,0.406 -2015-11-30 23:00:00,0.29100000000000004,0.31,0.418 -2015-12-01 00:00:00,0.289,0.31,0.419 -2015-12-01 01:00:00,0.287,0.31,0.419 -2015-12-01 02:00:00,0.28600000000000003,0.31,0.42 -2015-12-01 03:00:00,0.28300000000000003,0.31,0.42 -2015-12-01 04:00:00,0.281,0.31,0.42100000000000004 -2015-12-01 05:00:00,0.27899999999999997,0.31,0.42100000000000004 -2015-12-01 06:00:00,0.278,0.31,0.42200000000000004 -2015-12-01 07:00:00,0.28,0.31,0.42200000000000004 -2015-12-01 08:00:00,0.29,0.31,0.42200000000000004 -2015-12-01 09:00:00,0.29,0.31,0.42100000000000004 -2015-12-01 10:00:00,0.287,0.309,0.42 -2015-12-01 11:00:00,0.285,0.309,0.42 -2015-12-01 12:00:00,0.284,0.309,0.42 -2015-12-01 13:00:00,0.285,0.309,0.42 -2015-12-01 14:00:00,0.28600000000000003,0.309,0.42 -2015-12-01 15:00:00,0.287,0.309,0.419 -2015-12-01 16:00:00,0.289,0.309,0.419 -2015-12-01 17:00:00,0.28600000000000003,0.309,0.419 -2015-12-01 18:00:00,0.28300000000000003,0.309,0.42 -2015-12-01 19:00:00,0.28,0.309,0.419 -2015-12-01 20:00:00,0.27899999999999997,0.309,0.42 -2015-12-01 21:00:00,0.27699999999999997,0.309,0.42 -2015-12-01 22:00:00,0.275,0.309,0.42 -2015-12-01 23:00:00,0.275,0.309,0.42 -2015-12-02 00:00:00,0.27399999999999997,0.309,0.42100000000000004 -2015-12-02 01:00:00,0.273,0.309,0.42100000000000004 -2015-12-02 02:00:00,0.272,0.309,0.42200000000000004 -2015-12-02 03:00:00,0.271,0.309,0.42200000000000004 -2015-12-02 04:00:00,0.27,0.309,0.423 -2015-12-02 05:00:00,0.26899999999999996,0.309,0.42200000000000004 -2015-12-02 06:00:00,0.268,0.309,0.42200000000000004 -2015-12-02 07:00:00,0.267,0.308,0.42100000000000004 -2015-12-02 08:00:00,0.267,0.307,0.42 -2015-12-02 09:00:00,0.267,0.307,0.418 -2015-12-02 10:00:00,0.267,0.307,0.41700000000000004 -2015-12-02 11:00:00,0.267,0.307,0.409 -2015-12-02 12:00:00,0.268,0.307,0.40700000000000003 -2015-12-02 13:00:00,0.26899999999999996,0.306,0.40399999999999997 -2015-12-02 14:00:00,0.27,0.306,0.40299999999999997 -2015-12-02 15:00:00,0.271,0.306,0.402 -2015-12-02 16:00:00,0.271,0.306,0.401 -2015-12-02 17:00:00,0.271,0.306,0.4 -2015-12-02 18:00:00,0.271,0.306,0.392 -2015-12-02 19:00:00,0.271,0.306,0.34 -2015-12-02 20:00:00,0.272,0.306,0.337 -2015-12-02 21:00:00,0.272,0.306,0.336 -2015-12-02 22:00:00,0.272,0.306,0.335 -2015-12-02 23:00:00,0.272,0.306,0.33299999999999996 -2015-12-03 00:00:00,0.272,0.306,0.33 -2015-12-03 01:00:00,0.272,0.306,0.32899999999999996 -2015-12-03 02:00:00,0.272,0.306,0.32799999999999996 -2015-12-03 03:00:00,0.271,0.306,0.326 -2015-12-03 04:00:00,0.271,0.304,0.325 -2015-12-03 05:00:00,0.271,0.304,0.324 -2015-12-03 06:00:00,0.271,0.304,0.32299999999999995 -2015-12-03 07:00:00,0.271,0.304,0.322 -2015-12-03 08:00:00,0.271,0.304,0.321 -2015-12-03 09:00:00,0.271,0.302,0.32 -2015-12-03 10:00:00,0.271,0.304,0.319 -2015-12-03 11:00:00,0.272,0.304,0.319 -2015-12-03 12:00:00,0.272,0.305,0.318 -2015-12-03 13:00:00,0.273,0.307,0.318 -2015-12-03 14:00:00,0.273,0.308,0.317 -2015-12-03 15:00:00,0.273,0.31,0.316 -2015-12-03 16:00:00,0.273,0.311,0.316 -2015-12-03 17:00:00,0.27399999999999997,0.313,0.315 -2015-12-03 18:00:00,0.27399999999999997,0.315,0.315 -2015-12-03 19:00:00,0.273,0.315,0.315 -2015-12-03 20:00:00,0.273,0.316,0.315 -2015-12-03 21:00:00,0.273,0.317,0.315 -2015-12-03 22:00:00,0.273,0.318,0.315 -2015-12-03 23:00:00,0.273,0.319,0.314 -2015-12-04 00:00:00,0.273,0.319,0.314 -2015-12-04 01:00:00,0.273,0.319,0.314 -2015-12-04 02:00:00,0.273,0.319,0.313 -2015-12-04 03:00:00,0.273,0.319,0.313 -2015-12-04 04:00:00,0.273,0.317,0.313 -2015-12-04 05:00:00,0.272,0.317,0.313 -2015-12-04 06:00:00,0.272,0.315,0.312 -2015-12-04 07:00:00,0.272,0.315,0.312 -2015-12-04 08:00:00,0.271,0.315,0.313 -2015-12-04 09:00:00,0.26899999999999996,0.315,0.313 -2015-12-04 10:00:00,0.265,0.315,0.314 -2015-12-04 11:00:00,0.262,0.315,0.315 -2015-12-04 12:00:00,0.262,0.315,0.314 -2015-12-04 13:00:00,0.264,0.314,0.314 -2015-12-04 14:00:00,0.265,0.314,0.314 -2015-12-04 15:00:00,0.266,0.314,0.313 -2015-12-04 16:00:00,0.267,0.314,0.313 -2015-12-04 17:00:00,0.268,0.314,0.313 -2015-12-04 18:00:00,0.26899999999999996,0.314,0.313 -2015-12-04 19:00:00,0.27,0.314,0.313 -2015-12-04 20:00:00,0.27399999999999997,0.314,0.312 -2015-12-04 21:00:00,0.275,0.314,0.312 -2015-12-04 22:00:00,0.275,0.314,0.312 -2015-12-04 23:00:00,0.275,0.314,0.312 -2015-12-05 00:00:00,0.271,0.314,0.313 -2015-12-05 01:00:00,0.272,0.314,0.313 -2015-12-05 02:00:00,0.27399999999999997,0.314,0.312 -2015-12-05 03:00:00,0.271,0.314,0.312 -2015-12-05 04:00:00,0.266,0.314,0.313 -2015-12-05 05:00:00,0.267,0.314,0.313 -2015-12-05 06:00:00,0.271,0.314,0.312 -2015-12-05 07:00:00,0.27399999999999997,0.314,0.311 -2015-12-05 08:00:00,0.27399999999999997,0.313,0.311 -2015-12-05 09:00:00,0.273,0.312,0.311 -2015-12-05 10:00:00,0.265,0.312,0.313 -2015-12-05 11:00:00,0.263,0.312,0.312 -2015-12-05 12:00:00,0.264,0.312,0.311 -2015-12-05 13:00:00,0.265,0.311,0.31 -2015-12-05 14:00:00,0.267,0.31,0.31 -2015-12-05 15:00:00,0.26899999999999996,0.31,0.31 -2015-12-05 16:00:00,0.26899999999999996,0.31,0.309 -2015-12-05 17:00:00,0.27,0.31,0.309 -2015-12-05 18:00:00,0.27,0.309,0.309 -2015-12-05 19:00:00,0.272,0.308,0.308 -2015-12-05 20:00:00,0.273,0.315,0.308 -2015-12-05 21:00:00,0.273,0.319,0.308 -2015-12-05 22:00:00,0.273,0.32,0.308 -2015-12-05 23:00:00,0.273,0.322,0.308 -2015-12-06 00:00:00,0.273,0.322,0.308 -2015-12-06 01:00:00,0.273,0.326,0.308 -2015-12-06 02:00:00,0.273,0.337,0.308 -2015-12-06 03:00:00,0.273,0.33399999999999996,0.308 -2015-12-06 04:00:00,0.273,0.331,0.307 -2015-12-06 05:00:00,0.273,0.331,0.308 -2015-12-06 06:00:00,0.273,0.327,0.307 -2015-12-06 07:00:00,0.273,0.32899999999999996,0.307 -2015-12-06 08:00:00,0.271,0.33,0.308 -2015-12-06 09:00:00,0.263,0.32899999999999996,0.309 -2015-12-06 10:00:00,0.262,0.326,0.309 -2015-12-06 11:00:00,0.263,0.326,0.309 -2015-12-06 12:00:00,0.264,0.32799999999999996,0.309 -2015-12-06 13:00:00,0.265,0.32899999999999996,0.308 -2015-12-06 14:00:00,0.266,0.32899999999999996,0.308 -2015-12-06 15:00:00,0.268,0.32899999999999996,0.308 -2015-12-06 16:00:00,0.26899999999999996,0.32899999999999996,0.308 -2015-12-06 17:00:00,0.26899999999999996,0.32899999999999996,0.308 -2015-12-06 18:00:00,0.26899999999999996,0.32799999999999996,0.308 -2015-12-06 19:00:00,0.26899999999999996,0.327,0.307 -2015-12-06 20:00:00,0.27,0.327,0.307 -2015-12-06 21:00:00,0.27,0.327,0.307 -2015-12-06 22:00:00,0.27,0.326,0.307 -2015-12-06 23:00:00,0.27,0.326,0.307 -2015-12-07 00:00:00,0.27,0.326,0.307 -2015-12-07 01:00:00,0.271,0.326,0.307 -2015-12-07 02:00:00,0.271,0.324,0.307 -2015-12-07 03:00:00,0.27,0.324,0.307 -2015-12-07 04:00:00,0.27,0.324,0.306 -2015-12-07 05:00:00,0.27,0.324,0.306 -2015-12-07 06:00:00,0.27,0.324,0.306 -2015-12-07 07:00:00,0.27,0.324,0.306 -2015-12-07 08:00:00,0.27,0.32299999999999995,0.306 -2015-12-07 09:00:00,0.27,0.322,0.306 -2015-12-07 10:00:00,0.27,0.322,0.306 -2015-12-07 11:00:00,0.27,0.322,0.306 -2015-12-07 12:00:00,0.27,0.322,0.306 -2015-12-07 13:00:00,0.27,0.321,0.306 -2015-12-07 14:00:00,0.271,0.321,0.306 -2015-12-07 15:00:00,0.271,0.321,0.305 -2015-12-07 16:00:00,0.271,0.321,0.305 -2015-12-07 17:00:00,0.271,0.321,0.305 -2015-12-07 18:00:00,0.271,0.32,0.305 -2015-12-07 19:00:00,0.271,0.319,0.305 -2015-12-07 20:00:00,0.271,0.317,0.305 -2015-12-07 21:00:00,0.271,0.317,0.305 -2015-12-07 22:00:00,0.271,0.317,0.304 -2015-12-07 23:00:00,0.271,0.317,0.304 -2015-12-08 00:00:00,0.271,0.317,0.304 -2015-12-08 01:00:00,0.271,0.317,0.304 -2015-12-08 02:00:00,0.271,0.317,0.304 -2015-12-08 03:00:00,0.271,0.317,0.304 -2015-12-08 04:00:00,0.271,0.317,0.304 -2015-12-08 05:00:00,0.271,0.317,0.304 -2015-12-08 06:00:00,0.271,0.317,0.304 -2015-12-08 07:00:00,0.27,0.317,0.304 -2015-12-08 08:00:00,0.27,0.317,0.304 -2015-12-08 09:00:00,0.27,0.317,0.304 -2015-12-08 10:00:00,0.27,0.317,0.305 -2015-12-08 11:00:00,0.26899999999999996,0.317,0.305 -2015-12-08 12:00:00,0.26899999999999996,0.317,0.305 -2015-12-08 13:00:00,0.26899999999999996,0.317,0.305 -2015-12-08 14:00:00,0.27,0.317,0.305 -2015-12-08 15:00:00,0.27,0.317,0.304 -2015-12-08 16:00:00,0.27,0.317,0.304 -2015-12-08 17:00:00,0.27,0.317,0.304 -2015-12-08 18:00:00,0.27,0.317,0.304 -2015-12-08 19:00:00,0.27,0.318,0.304 -2015-12-08 20:00:00,0.27,0.318,0.304 -2015-12-08 21:00:00,0.27,0.317,0.304 -2015-12-08 22:00:00,0.27,0.317,0.304 -2015-12-08 23:00:00,0.26899999999999996,0.317,0.304 -2015-12-09 00:00:00,0.26899999999999996,0.317,0.304 -2015-12-09 01:00:00,0.267,0.317,0.305 -2015-12-09 02:00:00,0.264,0.317,0.306 -2015-12-09 03:00:00,0.262,0.317,0.306 -2015-12-09 04:00:00,0.261,0.317,0.306 -2015-12-09 05:00:00,0.26,0.317,0.306 -2015-12-09 06:00:00,0.261,0.316,0.307 -2015-12-09 07:00:00,0.261,0.315,0.307 -2015-12-09 08:00:00,0.262,0.315,0.307 -2015-12-09 09:00:00,0.263,0.315,0.307 -2015-12-09 10:00:00,0.264,0.315,0.307 -2015-12-09 11:00:00,0.265,0.314,0.307 -2015-12-09 12:00:00,0.265,0.314,0.307 -2015-12-09 13:00:00,0.265,0.313,0.307 -2015-12-09 14:00:00,0.267,0.312,0.306 -2015-12-09 15:00:00,0.26899999999999996,0.312,0.306 -2015-12-09 16:00:00,0.27,0.312,0.306 -2015-12-09 17:00:00,0.271,0.312,0.306 -2015-12-09 18:00:00,0.275,0.312,0.305 -2015-12-09 19:00:00,0.276,0.312,0.305 -2015-12-09 20:00:00,0.276,0.312,0.305 -2015-12-09 21:00:00,0.276,0.312,0.305 -2015-12-09 22:00:00,0.276,0.312,0.305 -2015-12-09 23:00:00,0.276,0.312,0.304 -2015-12-10 00:00:00,0.276,0.311,0.304 -2015-12-10 01:00:00,0.276,0.312,0.304 -2015-12-10 02:00:00,0.27399999999999997,0.312,0.305 -2015-12-10 03:00:00,0.267,0.312,0.306 -2015-12-10 04:00:00,0.266,0.312,0.306 -2015-12-10 05:00:00,0.266,0.311,0.306 -2015-12-10 06:00:00,0.266,0.311,0.306 -2015-12-10 07:00:00,0.266,0.31,0.306 -2015-12-10 08:00:00,0.266,0.31,0.306 -2015-12-10 09:00:00,0.267,0.31,0.306 -2015-12-10 10:00:00,0.266,0.309,0.306 -2015-12-10 11:00:00,0.266,0.307,0.306 -2015-12-10 12:00:00,0.267,0.31,0.306 -2015-12-10 13:00:00,0.268,0.319,0.306 -2015-12-10 14:00:00,0.268,0.332,0.306 -2015-12-10 15:00:00,0.26899999999999996,0.336,0.306 -2015-12-10 16:00:00,0.27,0.336,0.306 -2015-12-10 17:00:00,0.27,0.33399999999999996,0.305 -2015-12-10 18:00:00,0.27,0.332,0.305 -2015-12-10 19:00:00,0.273,0.332,0.304 -2015-12-10 20:00:00,0.273,0.331,0.304 -2015-12-10 21:00:00,0.273,0.331,0.304 -2015-12-10 22:00:00,0.273,0.33,0.304 -2015-12-10 23:00:00,0.273,0.32799999999999996,0.304 -2015-12-11 00:00:00,0.273,0.327,0.304 -2015-12-11 01:00:00,0.273,0.327,0.304 -2015-12-11 02:00:00,0.273,0.326,0.304 -2015-12-11 03:00:00,0.273,0.326,0.304 -2015-12-11 04:00:00,0.273,0.325,0.304 -2015-12-11 05:00:00,0.272,0.324,0.304 -2015-12-11 06:00:00,0.272,0.324,0.304 -2015-12-11 07:00:00,0.272,0.324,0.304 -2015-12-11 08:00:00,0.272,0.32299999999999995,0.304 -2015-12-11 09:00:00,0.271,0.324,0.304 -2015-12-11 10:00:00,0.26899999999999996,0.324,0.305 -2015-12-11 11:00:00,0.264,0.324,0.306 -2015-12-11 12:00:00,0.264,0.324,0.306 -2015-12-11 13:00:00,0.264,0.32299999999999995,0.306 -2015-12-11 14:00:00,0.263,0.32299999999999995,0.306 -2015-12-11 15:00:00,0.262,0.324,0.306 -2015-12-11 16:00:00,0.262,0.324,0.306 -2015-12-11 17:00:00,0.263,0.324,0.307 -2015-12-11 18:00:00,0.264,0.324,0.307 -2015-12-11 19:00:00,0.268,0.324,0.307 -2015-12-11 20:00:00,0.27,0.324,0.308 -2015-12-11 21:00:00,0.272,0.324,0.309 -2015-12-11 22:00:00,0.27699999999999997,0.324,0.315 -2015-12-11 23:00:00,0.28600000000000003,0.324,0.341 -2015-12-12 00:00:00,0.281,0.32299999999999995,0.34 -2015-12-12 01:00:00,0.27899999999999997,0.322,0.34 -2015-12-12 02:00:00,0.278,0.322,0.34 -2015-12-12 03:00:00,0.27899999999999997,0.322,0.34 -2015-12-12 04:00:00,0.27899999999999997,0.32,0.33399999999999996 -2015-12-12 05:00:00,0.278,0.32,0.33399999999999996 -2015-12-12 06:00:00,0.27699999999999997,0.319,0.33299999999999996 -2015-12-12 07:00:00,0.27699999999999997,0.319,0.332 -2015-12-12 08:00:00,0.276,0.317,0.331 -2015-12-12 09:00:00,0.275,0.317,0.33 -2015-12-12 10:00:00,0.27399999999999997,0.316,0.32899999999999996 -2015-12-12 11:00:00,0.273,0.314,0.32799999999999996 -2015-12-12 12:00:00,0.271,0.314,0.32799999999999996 -2015-12-12 13:00:00,0.27,0.314,0.327 -2015-12-12 14:00:00,0.26899999999999996,0.315,0.326 -2015-12-12 15:00:00,0.26899999999999996,0.315,0.326 -2015-12-12 16:00:00,0.26899999999999996,0.315,0.325 -2015-12-12 17:00:00,0.26899999999999996,0.316,0.325 -2015-12-12 18:00:00,0.268,0.317,0.324 -2015-12-12 19:00:00,0.268,0.317,0.324 -2015-12-12 20:00:00,0.268,0.317,0.324 -2015-12-12 21:00:00,0.26899999999999996,0.317,0.32299999999999995 -2015-12-12 22:00:00,0.26899999999999996,0.317,0.32299999999999995 -2015-12-12 23:00:00,0.27,0.317,0.322 -2015-12-13 00:00:00,0.271,0.317,0.321 -2015-12-13 01:00:00,0.272,0.317,0.321 -2015-12-13 02:00:00,0.273,0.316,0.32 -2015-12-13 03:00:00,0.27399999999999997,0.316,0.32 -2015-12-13 04:00:00,0.27399999999999997,0.316,0.319 -2015-12-13 05:00:00,0.27399999999999997,0.315,0.319 -2015-12-13 06:00:00,0.27399999999999997,0.315,0.319 -2015-12-13 07:00:00,0.275,0.315,0.319 -2015-12-13 08:00:00,0.275,0.315,0.318 -2015-12-13 09:00:00,0.275,0.315,0.318 -2015-12-13 10:00:00,0.275,0.315,0.318 -2015-12-13 11:00:00,0.27399999999999997,0.315,0.317 -2015-12-13 12:00:00,0.27399999999999997,0.314,0.317 -2015-12-13 13:00:00,0.27399999999999997,0.314,0.317 -2015-12-13 14:00:00,0.27399999999999997,0.314,0.317 -2015-12-13 15:00:00,0.27399999999999997,0.315,0.316 -2015-12-13 16:00:00,0.272,0.315,0.316 -2015-12-13 17:00:00,0.268,0.315,0.317 -2015-12-13 18:00:00,0.267,0.315,0.317 -2015-12-13 19:00:00,0.267,0.315,0.317 -2015-12-13 20:00:00,0.267,0.315,0.317 -2015-12-13 21:00:00,0.267,0.315,0.317 -2015-12-13 22:00:00,0.267,0.315,0.317 -2015-12-13 23:00:00,0.267,0.315,0.317 -2015-12-14 00:00:00,0.267,0.315,0.317 -2015-12-14 01:00:00,0.267,0.315,0.317 -2015-12-14 02:00:00,0.267,0.315,0.317 -2015-12-14 03:00:00,0.267,0.314,0.317 -2015-12-14 04:00:00,0.266,0.314,0.316 -2015-12-14 05:00:00,0.266,0.314,0.316 -2015-12-14 06:00:00,0.266,0.314,0.315 -2015-12-14 07:00:00,0.266,0.313,0.314 -2015-12-14 08:00:00,0.266,0.312,0.314 -2015-12-14 09:00:00,0.266,0.312,0.314 -2015-12-14 10:00:00,0.266,0.311,0.314 -2015-12-14 11:00:00,0.266,0.31,0.314 -2015-12-14 12:00:00,0.267,0.31,0.314 -2015-12-14 13:00:00,0.268,0.31,0.314 -2015-12-14 14:00:00,0.27,0.31,0.313 -2015-12-14 15:00:00,0.271,0.31,0.313 -2015-12-14 16:00:00,0.272,0.31,0.313 -2015-12-14 17:00:00,0.272,0.31,0.313 -2015-12-14 18:00:00,0.272,0.31,0.313 -2015-12-14 19:00:00,0.272,0.31,0.312 -2015-12-14 20:00:00,0.273,0.31,0.312 -2015-12-14 21:00:00,0.273,0.31,0.311 -2015-12-14 22:00:00,0.27399999999999997,0.31,0.311 -2015-12-14 23:00:00,0.27399999999999997,0.31,0.311 -2015-12-15 00:00:00,0.27399999999999997,0.31,0.311 -2015-12-15 01:00:00,0.27399999999999997,0.31,0.311 -2015-12-15 02:00:00,0.27399999999999997,0.31,0.31 -2015-12-15 03:00:00,0.27399999999999997,0.31,0.31 -2015-12-15 04:00:00,0.273,0.31,0.31 -2015-12-15 05:00:00,0.273,0.31,0.311 -2015-12-15 06:00:00,0.272,0.31,0.311 -2015-12-15 07:00:00,0.272,0.31,0.311 -2015-12-15 08:00:00,0.271,0.309,0.311 -2015-12-15 09:00:00,0.271,0.307,0.311 -2015-12-15 10:00:00,0.27,0.304,0.311 -2015-12-15 11:00:00,0.27,0.304,0.311 -2015-12-15 12:00:00,0.27,0.306,0.311 -2015-12-15 13:00:00,0.27,0.308,0.311 -2015-12-15 14:00:00,0.27,0.31,0.311 -2015-12-15 15:00:00,0.271,0.311,0.31 -2015-12-15 16:00:00,0.271,0.313,0.31 -2015-12-15 17:00:00,0.271,0.314,0.31 -2015-12-15 18:00:00,0.271,0.315,0.31 -2015-12-15 19:00:00,0.271,0.316,0.31 -2015-12-15 20:00:00,0.27,0.317,0.31 -2015-12-15 21:00:00,0.26899999999999996,0.317,0.31 -2015-12-15 22:00:00,0.26899999999999996,0.318,0.31 -2015-12-15 23:00:00,0.26899999999999996,0.319,0.31 -2015-12-16 00:00:00,0.26899999999999996,0.319,0.31 -2015-12-16 01:00:00,0.26899999999999996,0.319,0.31 -2015-12-16 02:00:00,0.26899999999999996,0.319,0.31 -2015-12-16 03:00:00,0.26899999999999996,0.319,0.31 -2015-12-16 04:00:00,0.26899999999999996,0.319,0.31 -2015-12-16 05:00:00,0.26899999999999996,0.319,0.31 -2015-12-16 06:00:00,0.267,0.319,0.31 -2015-12-16 07:00:00,0.264,0.319,0.311 -2015-12-16 08:00:00,0.262,0.319,0.31 -2015-12-16 09:00:00,0.264,0.319,0.312 -2015-12-16 10:00:00,0.27,0.318,0.33 -2015-12-16 11:00:00,0.27899999999999997,0.312,0.336 -2015-12-16 12:00:00,0.278,0.316,0.33399999999999996 -2015-12-16 13:00:00,0.276,0.32299999999999995,0.331 -2015-12-16 14:00:00,0.275,0.32899999999999996,0.33 -2015-12-16 15:00:00,0.27399999999999997,0.331,0.32899999999999996 -2015-12-16 16:00:00,0.273,0.331,0.32799999999999996 -2015-12-16 17:00:00,0.273,0.331,0.327 -2015-12-16 18:00:00,0.272,0.331,0.325 -2015-12-16 19:00:00,0.272,0.331,0.324 -2015-12-16 20:00:00,0.271,0.331,0.32299999999999995 -2015-12-16 21:00:00,0.271,0.331,0.322 -2015-12-16 22:00:00,0.27,0.33,0.321 -2015-12-16 23:00:00,0.27,0.32899999999999996,0.321 -2015-12-17 00:00:00,0.27,0.32899999999999996,0.32 -2015-12-17 01:00:00,0.27,0.32799999999999996,0.319 -2015-12-17 02:00:00,0.26899999999999996,0.327,0.319 -2015-12-17 03:00:00,0.26899999999999996,0.327,0.319 -2015-12-17 04:00:00,0.26899999999999996,0.327,0.318 -2015-12-17 05:00:00,0.26899999999999996,0.327,0.318 -2015-12-17 06:00:00,0.26899999999999996,0.326,0.318 -2015-12-17 07:00:00,0.26899999999999996,0.326,0.318 -2015-12-17 08:00:00,0.268,0.325,0.317 -2015-12-17 09:00:00,0.268,0.324,0.317 -2015-12-17 10:00:00,0.268,0.324,0.317 -2015-12-17 11:00:00,0.268,0.32299999999999995,0.317 -2015-12-17 12:00:00,0.268,0.322,0.316 -2015-12-17 13:00:00,0.268,0.322,0.316 -2015-12-17 14:00:00,0.27,0.322,0.316 -2015-12-17 15:00:00,0.271,0.321,0.315 -2015-12-17 16:00:00,0.271,0.321,0.315 -2015-12-17 17:00:00,0.272,0.321,0.315 -2015-12-17 18:00:00,0.272,0.321,0.315 -2015-12-17 19:00:00,0.272,0.321,0.315 -2015-12-17 20:00:00,0.272,0.321,0.315 -2015-12-17 21:00:00,0.272,0.321,0.315 -2015-12-17 22:00:00,0.271,0.32,0.314 -2015-12-17 23:00:00,0.271,0.32,0.314 -2015-12-18 00:00:00,0.271,0.319,0.314 -2015-12-18 01:00:00,0.26899999999999996,0.319,0.314 -2015-12-18 02:00:00,0.26899999999999996,0.319,0.314 -2015-12-18 03:00:00,0.26899999999999996,0.317,0.314 -2015-12-18 04:00:00,0.26899999999999996,0.317,0.313 -2015-12-18 05:00:00,0.267,0.317,0.312 -2015-12-18 06:00:00,0.266,0.317,0.312 -2015-12-18 07:00:00,0.266,0.317,0.312 -2015-12-18 08:00:00,0.265,0.317,0.312 -2015-12-18 09:00:00,0.265,0.316,0.312 -2015-12-18 10:00:00,0.265,0.315,0.312 -2015-12-18 11:00:00,0.265,0.315,0.311 -2015-12-18 12:00:00,0.265,0.315,0.311 -2015-12-18 13:00:00,0.265,0.314,0.311 -2015-12-18 14:00:00,0.266,0.314,0.311 -2015-12-18 15:00:00,0.267,0.314,0.311 -2015-12-18 16:00:00,0.268,0.314,0.311 -2015-12-18 17:00:00,0.268,0.314,0.31 -2015-12-18 18:00:00,0.268,0.314,0.31 -2015-12-18 19:00:00,0.268,0.314,0.31 -2015-12-18 20:00:00,0.268,0.314,0.31 -2015-12-18 21:00:00,0.268,0.314,0.31 -2015-12-18 22:00:00,0.268,0.314,0.31 -2015-12-18 23:00:00,0.268,0.314,0.31 -2015-12-19 00:00:00,0.268,0.314,0.31 -2015-12-19 01:00:00,0.268,0.314,0.31 -2015-12-19 02:00:00,0.268,0.314,0.31 -2015-12-19 03:00:00,0.268,0.314,0.31 -2015-12-19 04:00:00,0.268,0.314,0.31 -2015-12-19 05:00:00,0.268,0.314,0.31 -2015-12-19 06:00:00,0.268,0.314,0.31 -2015-12-19 07:00:00,0.268,0.312,0.309 -2015-12-19 08:00:00,0.268,0.31,0.309 -2015-12-19 09:00:00,0.268,0.31,0.309 -2015-12-19 10:00:00,0.268,0.31,0.309 -2015-12-19 11:00:00,0.268,0.31,0.309 -2015-12-19 12:00:00,0.26899999999999996,0.31,0.309 -2015-12-19 13:00:00,0.271,0.31,0.309 -2015-12-19 14:00:00,0.272,0.31,0.308 -2015-12-19 15:00:00,0.272,0.311,0.308 -2015-12-19 16:00:00,0.272,0.31,0.308 -2015-12-19 17:00:00,0.272,0.309,0.308 -2015-12-19 18:00:00,0.272,0.318,0.308 -2015-12-19 19:00:00,0.272,0.32899999999999996,0.308 -2015-12-19 20:00:00,0.272,0.33299999999999996,0.308 -2015-12-19 21:00:00,0.272,0.33399999999999996,0.308 -2015-12-19 22:00:00,0.272,0.33399999999999996,0.308 -2015-12-19 23:00:00,0.272,0.33299999999999996,0.308 -2015-12-20 00:00:00,0.272,0.332,0.308 -2015-12-20 01:00:00,0.272,0.332,0.308 -2015-12-20 02:00:00,0.272,0.331,0.308 -2015-12-20 03:00:00,0.271,0.331,0.308 -2015-12-20 04:00:00,0.271,0.33,0.308 -2015-12-20 05:00:00,0.27,0.32899999999999996,0.308 -2015-12-20 06:00:00,0.26899999999999996,0.32899999999999996,0.308 -2015-12-20 07:00:00,0.26899999999999996,0.327,0.308 -2015-12-20 08:00:00,0.26899999999999996,0.327,0.308 -2015-12-20 09:00:00,0.26899999999999996,0.327,0.308 -2015-12-20 10:00:00,0.268,0.326,0.308 -2015-12-20 11:00:00,0.268,0.326,0.308 -2015-12-20 12:00:00,0.268,0.326,0.308 -2015-12-20 13:00:00,0.26899999999999996,0.325,0.308 -2015-12-20 14:00:00,0.26899999999999996,0.324,0.307 -2015-12-20 15:00:00,0.26899999999999996,0.324,0.307 -2015-12-20 16:00:00,0.26899999999999996,0.324,0.307 -2015-12-20 17:00:00,0.26899999999999996,0.324,0.307 -2015-12-20 18:00:00,0.27,0.324,0.307 -2015-12-20 19:00:00,0.27,0.324,0.307 -2015-12-20 20:00:00,0.27,0.324,0.307 -2015-12-20 21:00:00,0.26899999999999996,0.324,0.307 -2015-12-20 22:00:00,0.26899999999999996,0.322,0.307 -2015-12-20 23:00:00,0.26899999999999996,0.322,0.307 -2015-12-21 00:00:00,0.26899999999999996,0.322,0.307 -2015-12-21 01:00:00,0.26899999999999996,0.322,0.307 -2015-12-21 02:00:00,0.26899999999999996,0.321,0.307 -2015-12-21 03:00:00,0.26899999999999996,0.321,0.307 -2015-12-21 04:00:00,0.268,0.321,0.307 -2015-12-21 05:00:00,0.267,0.321,0.307 -2015-12-21 06:00:00,0.264,0.32,0.308 -2015-12-21 07:00:00,0.264,0.32,0.308 -2015-12-21 08:00:00,0.263,0.319,0.308 -2015-12-21 09:00:00,0.263,0.319,0.308 -2015-12-21 10:00:00,0.264,0.319,0.308 -2015-12-21 11:00:00,0.264,0.317,0.308 -2015-12-21 12:00:00,0.265,0.317,0.308 -2015-12-21 13:00:00,0.267,0.317,0.308 -2015-12-21 14:00:00,0.27,0.315,0.307 -2015-12-21 15:00:00,0.272,0.314,0.307 -2015-12-21 16:00:00,0.27399999999999997,0.314,0.307 -2015-12-21 17:00:00,0.275,0.314,0.307 -2015-12-21 18:00:00,0.275,0.314,0.306 -2015-12-21 19:00:00,0.276,0.314,0.306 -2015-12-21 20:00:00,0.276,0.314,0.306 -2015-12-21 21:00:00,0.276,0.314,0.306 -2015-12-21 22:00:00,0.276,0.314,0.306 -2015-12-21 23:00:00,0.276,0.314,0.306 -2015-12-22 00:00:00,0.276,0.314,0.306 -2015-12-22 01:00:00,0.275,0.314,0.306 -2015-12-22 02:00:00,0.275,0.314,0.306 -2015-12-22 03:00:00,0.275,0.314,0.306 -2015-12-22 04:00:00,0.275,0.314,0.306 -2015-12-22 05:00:00,0.276,0.314,0.306 -2015-12-22 06:00:00,0.275,0.314,0.306 -2015-12-22 07:00:00,0.272,0.314,0.308 -2015-12-22 08:00:00,0.268,0.313,0.309 -2015-12-22 09:00:00,0.271,0.313,0.309 -2015-12-22 10:00:00,0.27399999999999997,0.312,0.309 -2015-12-22 11:00:00,0.27399999999999997,0.31,0.31 -2015-12-22 12:00:00,0.27399999999999997,0.31,0.31 -2015-12-22 13:00:00,0.27399999999999997,0.31,0.311 -2015-12-22 14:00:00,0.27399999999999997,0.31,0.311 -2015-12-22 15:00:00,0.275,0.31,0.311 -2015-12-22 16:00:00,0.278,0.31,0.311 -2015-12-22 17:00:00,0.27899999999999997,0.31,0.31 -2015-12-22 18:00:00,0.28,0.31,0.31 -2015-12-22 19:00:00,0.28,0.31,0.31 -2015-12-22 20:00:00,0.281,0.31,0.31 -2015-12-22 21:00:00,0.281,0.31,0.309 -2015-12-22 22:00:00,0.281,0.31,0.309 -2015-12-22 23:00:00,0.281,0.31,0.309 -2015-12-23 00:00:00,0.281,0.31,0.308 -2015-12-23 01:00:00,0.281,0.31,0.308 -2015-12-23 02:00:00,0.281,0.31,0.308 -2015-12-23 03:00:00,0.28,0.31,0.308 -2015-12-23 04:00:00,0.28,0.31,0.308 -2015-12-23 05:00:00,0.28,0.31,0.308 -2015-12-23 06:00:00,0.28,0.31,0.308 -2015-12-23 07:00:00,0.27899999999999997,0.31,0.307 -2015-12-23 08:00:00,0.27899999999999997,0.31,0.307 -2015-12-23 09:00:00,0.27899999999999997,0.31,0.307 -2015-12-23 10:00:00,0.27899999999999997,0.31,0.307 -2015-12-23 11:00:00,0.278,0.31,0.307 -2015-12-23 12:00:00,0.278,0.31,0.307 -2015-12-23 13:00:00,0.278,0.31,0.307 -2015-12-23 14:00:00,0.278,0.308,0.307 -2015-12-23 15:00:00,0.278,0.307,0.306 -2015-12-23 16:00:00,0.278,0.307,0.306 -2015-12-23 17:00:00,0.278,0.307,0.306 -2015-12-23 18:00:00,0.278,0.307,0.306 -2015-12-23 19:00:00,0.278,0.307,0.306 -2015-12-23 20:00:00,0.27699999999999997,0.307,0.306 -2015-12-23 21:00:00,0.27699999999999997,0.307,0.306 -2015-12-23 22:00:00,0.27699999999999997,0.307,0.306 -2015-12-23 23:00:00,0.27699999999999997,0.307,0.306 -2015-12-24 00:00:00,0.276,0.307,0.306 -2015-12-24 01:00:00,0.276,0.307,0.306 -2015-12-24 02:00:00,0.276,0.307,0.306 -2015-12-24 03:00:00,0.276,0.307,0.306 -2015-12-24 04:00:00,0.276,0.307,0.306 -2015-12-24 05:00:00,0.275,0.307,0.306 -2015-12-24 06:00:00,0.275,0.307,0.306 -2015-12-24 07:00:00,0.275,0.307,0.306 -2015-12-24 08:00:00,0.275,0.307,0.306 -2015-12-24 09:00:00,0.275,0.307,0.306 -2015-12-24 10:00:00,0.275,0.307,0.306 -2015-12-24 11:00:00,0.27399999999999997,0.307,0.306 -2015-12-24 12:00:00,0.27399999999999997,0.307,0.306 -2015-12-24 13:00:00,0.27399999999999997,0.307,0.306 -2015-12-24 14:00:00,0.27399999999999997,0.307,0.306 -2015-12-24 15:00:00,0.27399999999999997,0.307,0.306 -2015-12-24 16:00:00,0.27399999999999997,0.307,0.306 -2015-12-24 17:00:00,0.27399999999999997,0.307,0.306 -2015-12-24 18:00:00,0.275,0.307,0.305 -2015-12-24 19:00:00,0.275,0.308,0.305 -2015-12-24 20:00:00,0.275,0.308,0.305 -2015-12-24 21:00:00,0.275,0.309,0.305 -2015-12-24 22:00:00,0.27399999999999997,0.309,0.305 -2015-12-24 23:00:00,0.27399999999999997,0.309,0.305 -2015-12-25 00:00:00,0.27399999999999997,0.309,0.305 -2015-12-25 01:00:00,0.27399999999999997,0.309,0.305 -2015-12-25 02:00:00,0.27399999999999997,0.309,0.305 -2015-12-25 03:00:00,0.27399999999999997,0.309,0.305 -2015-12-25 04:00:00,0.27,0.309,0.306 -2015-12-25 05:00:00,0.266,0.309,0.307 -2015-12-25 06:00:00,0.266,0.309,0.308 -2015-12-25 07:00:00,0.265,0.309,0.308 -2015-12-25 08:00:00,0.265,0.308,0.307 -2015-12-25 09:00:00,0.265,0.308,0.307 -2015-12-25 10:00:00,0.264,0.307,0.308 -2015-12-25 11:00:00,0.264,0.307,0.308 -2015-12-25 12:00:00,0.264,0.307,0.308 -2015-12-25 13:00:00,0.265,0.307,0.308 -2015-12-25 14:00:00,0.273,0.305,0.308 -2015-12-25 15:00:00,0.282,0.304,0.311 -2015-12-25 16:00:00,0.28300000000000003,0.305,0.324 -2015-12-25 17:00:00,0.28,0.306,0.32899999999999996 -2015-12-25 18:00:00,0.27899999999999997,0.307,0.32799999999999996 -2015-12-25 19:00:00,0.27699999999999997,0.307,0.327 -2015-12-25 20:00:00,0.276,0.307,0.325 -2015-12-25 21:00:00,0.275,0.308,0.322 -2015-12-25 22:00:00,0.27399999999999997,0.309,0.321 -2015-12-25 23:00:00,0.27399999999999997,0.309,0.319 -2015-12-26 00:00:00,0.273,0.309,0.318 -2015-12-26 01:00:00,0.273,0.309,0.316 -2015-12-26 02:00:00,0.273,0.31,0.315 -2015-12-26 03:00:00,0.272,0.31,0.315 -2015-12-26 04:00:00,0.272,0.31,0.314 -2015-12-26 05:00:00,0.272,0.31,0.314 -2015-12-26 06:00:00,0.272,0.31,0.313 -2015-12-26 07:00:00,0.272,0.31,0.313 -2015-12-26 08:00:00,0.273,0.31,0.312 -2015-12-26 09:00:00,0.273,0.31,0.312 -2015-12-26 10:00:00,0.273,0.31,0.311 -2015-12-26 11:00:00,0.273,0.31,0.311 -2015-12-26 12:00:00,0.275,0.31,0.311 -2015-12-26 13:00:00,0.27699999999999997,0.31,0.31 -2015-12-26 14:00:00,0.278,0.31,0.31 -2015-12-26 15:00:00,0.278,0.31,0.31 -2015-12-26 16:00:00,0.27899999999999997,0.31,0.309 -2015-12-26 17:00:00,0.27899999999999997,0.311,0.309 -2015-12-26 18:00:00,0.27899999999999997,0.312,0.309 -2015-12-26 19:00:00,0.278,0.312,0.309 -2015-12-26 20:00:00,0.278,0.312,0.309 -2015-12-26 21:00:00,0.278,0.312,0.309 -2015-12-26 22:00:00,0.278,0.312,0.308 -2015-12-26 23:00:00,0.278,0.312,0.308 -2015-12-27 00:00:00,0.278,0.312,0.308 -2015-12-27 01:00:00,0.278,0.312,0.308 -2015-12-27 02:00:00,0.27699999999999997,0.312,0.308 -2015-12-27 03:00:00,0.27699999999999997,0.312,0.308 -2015-12-27 04:00:00,0.27699999999999997,0.312,0.308 -2015-12-27 05:00:00,0.27699999999999997,0.312,0.308 -2015-12-27 06:00:00,0.27699999999999997,0.312,0.308 -2015-12-27 07:00:00,0.27699999999999997,0.312,0.308 -2015-12-27 08:00:00,0.27699999999999997,0.312,0.307 -2015-12-27 09:00:00,0.276,0.312,0.307 -2015-12-27 10:00:00,0.276,0.312,0.307 -2015-12-27 11:00:00,0.275,0.312,0.308 -2015-12-27 12:00:00,0.27399999999999997,0.312,0.308 -2015-12-27 13:00:00,0.27399999999999997,0.311,0.308 -2015-12-27 14:00:00,0.275,0.308,0.308 -2015-12-27 15:00:00,0.275,0.306,0.307 -2015-12-27 16:00:00,0.275,0.305,0.307 -2015-12-27 17:00:00,0.276,0.317,0.307 -2015-12-27 18:00:00,0.276,0.332,0.306 -2015-12-27 19:00:00,0.276,0.332,0.306 -2015-12-27 20:00:00,0.276,0.337,0.306 -2015-12-27 21:00:00,0.276,0.337,0.306 -2015-12-27 22:00:00,0.275,0.33799999999999997,0.306 -2015-12-27 23:00:00,0.275,0.33899999999999997,0.306 -2015-12-28 00:00:00,0.275,0.33899999999999997,0.306 -2015-12-28 01:00:00,0.275,0.33799999999999997,0.306 -2015-12-28 02:00:00,0.275,0.336,0.306 -2015-12-28 03:00:00,0.275,0.33399999999999996,0.306 -2015-12-28 04:00:00,0.275,0.332,0.306 -2015-12-28 05:00:00,0.275,0.33,0.306 -2015-12-28 06:00:00,0.275,0.332,0.306 -2015-12-28 07:00:00,0.275,0.33399999999999996,0.306 -2015-12-28 08:00:00,0.273,0.33399999999999996,0.306 -2015-12-28 09:00:00,0.272,0.335,0.307 -2015-12-28 10:00:00,0.272,0.33399999999999996,0.307 -2015-12-28 11:00:00,0.272,0.332,0.307 -2015-12-28 12:00:00,0.272,0.331,0.307 -2015-12-28 13:00:00,0.272,0.331,0.307 -2015-12-28 14:00:00,0.272,0.332,0.306 -2015-12-28 15:00:00,0.273,0.332,0.306 -2015-12-28 16:00:00,0.273,0.332,0.306 -2015-12-28 17:00:00,0.273,0.33299999999999996,0.306 -2015-12-28 18:00:00,0.273,0.33399999999999996,0.306 -2015-12-28 19:00:00,0.273,0.33399999999999996,0.306 -2015-12-28 20:00:00,0.273,0.33299999999999996,0.306 -2015-12-28 21:00:00,0.273,0.332,0.306 -2015-12-28 22:00:00,0.27399999999999997,0.332,0.306 -2015-12-28 23:00:00,0.27399999999999997,0.332,0.306 -2015-12-29 00:00:00,0.27399999999999997,0.332,0.305 -2015-12-29 01:00:00,0.27399999999999997,0.331,0.305 -2015-12-29 02:00:00,0.27399999999999997,0.331,0.305 -2015-12-29 03:00:00,0.27399999999999997,0.331,0.305 -2015-12-29 04:00:00,0.27399999999999997,0.331,0.305 -2015-12-29 05:00:00,0.27399999999999997,0.32899999999999996,0.305 -2015-12-29 06:00:00,0.27399999999999997,0.32799999999999996,0.305 -2015-12-29 07:00:00,0.27399999999999997,0.327,0.305 -2015-12-29 08:00:00,0.27399999999999997,0.327,0.305 -2015-12-29 09:00:00,0.27399999999999997,0.327,0.304 -2015-12-29 10:00:00,0.273,0.327,0.304 -2015-12-29 11:00:00,0.273,0.327,0.305 -2015-12-29 12:00:00,0.271,0.326,0.306 -2015-12-29 13:00:00,0.27,0.326,0.306 -2015-12-29 14:00:00,0.27,0.322,0.306 -2015-12-29 15:00:00,0.27,0.32,0.306 -2015-12-29 16:00:00,0.271,0.32299999999999995,0.306 -2015-12-29 17:00:00,0.271,0.326,0.306 -2015-12-29 18:00:00,0.27,0.33799999999999997,0.306 -2015-12-29 19:00:00,0.27,0.345,0.306 -2015-12-29 20:00:00,0.27,0.34299999999999997,0.306 -2015-12-29 21:00:00,0.271,0.341,0.306 -2015-12-29 22:00:00,0.27,0.341,0.306 -2015-12-29 23:00:00,0.27,0.341,0.306 -2015-12-30 00:00:00,0.27,0.34,0.306 -2015-12-30 01:00:00,0.27,0.33799999999999997,0.306 -2015-12-30 02:00:00,0.271,0.337,0.305 -2015-12-30 03:00:00,0.27,0.336,0.305 -2015-12-30 04:00:00,0.27,0.336,0.305 -2015-12-30 05:00:00,0.27,0.336,0.305 -2015-12-30 06:00:00,0.27,0.335,0.305 -2015-12-30 07:00:00,0.27,0.33399999999999996,0.305 -2015-12-30 08:00:00,0.271,0.33399999999999996,0.305 -2015-12-30 09:00:00,0.271,0.33299999999999996,0.305 -2015-12-30 10:00:00,0.271,0.332,0.305 -2015-12-30 11:00:00,0.271,0.332,0.305 -2015-12-30 12:00:00,0.271,0.332,0.305 -2015-12-30 13:00:00,0.272,0.331,0.304 -2015-12-30 14:00:00,0.272,0.33,0.304 -2015-12-30 15:00:00,0.272,0.32899999999999996,0.304 -2015-12-30 16:00:00,0.272,0.32899999999999996,0.304 -2015-12-30 17:00:00,0.272,0.32899999999999996,0.304 -2015-12-30 18:00:00,0.272,0.32899999999999996,0.304 -2015-12-30 19:00:00,0.272,0.32899999999999996,0.304 -2015-12-30 20:00:00,0.273,0.32799999999999996,0.304 -2015-12-30 21:00:00,0.273,0.327,0.304 -2015-12-30 22:00:00,0.273,0.327,0.303 -2015-12-30 23:00:00,0.273,0.327,0.303 -2015-12-31 00:00:00,0.273,0.326,0.303 -2015-12-31 01:00:00,0.273,0.326,0.303 -2015-12-31 02:00:00,0.273,0.326,0.303 -2015-12-31 03:00:00,0.273,0.326,0.303 -2015-12-31 04:00:00,0.273,0.324,0.303 -2015-12-31 05:00:00,0.273,0.32299999999999995,0.303 -2015-12-31 06:00:00,0.273,0.322,0.303 -2015-12-31 07:00:00,0.272,0.321,0.303 -2015-12-31 08:00:00,0.271,0.321,0.304 -2015-12-31 09:00:00,0.27,0.321,0.304 -2015-12-31 10:00:00,0.266,0.322,0.305 -2015-12-31 11:00:00,0.263,0.321,0.305 -2015-12-31 12:00:00,0.262,0.322,0.306 -2015-12-31 13:00:00,0.262,0.322,0.306 -2015-12-31 14:00:00,0.263,0.322,0.306 -2015-12-31 15:00:00,0.265,0.32299999999999995,0.306 -2015-12-31 16:00:00,0.266,0.324,0.305 -2015-12-31 17:00:00,0.266,0.324,0.305 -2015-12-31 18:00:00,0.267,0.324,0.305 -2015-12-31 19:00:00,0.267,0.324,0.305 -2015-12-31 20:00:00,0.267,0.324,0.305 -2015-12-31 21:00:00,0.267,0.324,0.305 -2015-12-31 22:00:00,0.267,0.324,0.305 -2015-12-31 23:00:00,0.267,0.324,0.305 -2016-01-01 00:00:00,0.267,0.324,0.305 -2016-01-01 01:00:00,0.267,0.324,0.305 -2016-01-01 02:00:00,0.266,0.324,0.305 -2016-01-01 03:00:00,0.266,0.32299999999999995,0.305 -2016-01-01 04:00:00,0.266,0.32299999999999995,0.305 -2016-01-01 05:00:00,0.266,0.322,0.305 -2016-01-01 06:00:00,0.266,0.322,0.305 -2016-01-01 07:00:00,0.266,0.322,0.305 -2016-01-01 08:00:00,0.266,0.322,0.305 -2016-01-01 09:00:00,0.266,0.321,0.305 -2016-01-01 10:00:00,0.266,0.321,0.305 -2016-01-01 11:00:00,0.266,0.321,0.305 -2016-01-01 12:00:00,0.266,0.321,0.305 -2016-01-01 13:00:00,0.266,0.321,0.305 -2016-01-01 14:00:00,0.267,0.321,0.305 -2016-01-01 15:00:00,0.268,0.321,0.305 -2016-01-01 16:00:00,0.268,0.321,0.305 -2016-01-01 17:00:00,0.26899999999999996,0.321,0.305 -2016-01-01 18:00:00,0.26899999999999996,0.321,0.305 -2016-01-01 19:00:00,0.26899999999999996,0.314,0.305 -2016-01-01 20:00:00,0.26899999999999996,0.312,0.305 -2016-01-01 21:00:00,0.26899999999999996,0.32799999999999996,0.305 -2016-01-01 22:00:00,0.26899999999999996,0.332,0.305 -2016-01-01 23:00:00,0.27,0.33399999999999996,0.304 -2016-01-02 00:00:00,0.27,0.33299999999999996,0.304 -2016-01-02 01:00:00,0.271,0.331,0.304 -2016-01-02 02:00:00,0.271,0.33399999999999996,0.304 -2016-01-02 03:00:00,0.271,0.336,0.304 -2016-01-02 04:00:00,0.272,0.336,0.304 -2016-01-02 05:00:00,0.272,0.336,0.304 -2016-01-02 06:00:00,0.273,0.33399999999999996,0.304 -2016-01-02 07:00:00,0.273,0.33399999999999996,0.304 -2016-01-02 08:00:00,0.273,0.33399999999999996,0.304 -2016-01-02 09:00:00,0.27399999999999997,0.33299999999999996,0.304 -2016-01-02 10:00:00,0.271,0.332,0.304 -2016-01-02 11:00:00,0.266,0.331,0.306 -2016-01-02 12:00:00,0.268,0.331,0.306 -2016-01-02 13:00:00,0.278,0.33,0.306 -2016-01-02 14:00:00,0.284,0.32899999999999996,0.307 -2016-01-02 15:00:00,0.284,0.32899999999999996,0.315 -2016-01-02 16:00:00,0.287,0.32799999999999996,0.32799999999999996 -2016-01-02 17:00:00,0.28800000000000003,0.32899999999999996,0.337 -2016-01-02 18:00:00,0.289,0.32799999999999996,0.337 -2016-01-02 19:00:00,0.292,0.327,0.341 -2016-01-02 20:00:00,0.29100000000000004,0.327,0.341 -2016-01-02 21:00:00,0.287,0.327,0.33799999999999997 -2016-01-02 22:00:00,0.28300000000000003,0.327,0.336 -2016-01-02 23:00:00,0.282,0.327,0.335 -2016-01-03 00:00:00,0.281,0.327,0.33399999999999996 -2016-01-03 01:00:00,0.28,0.326,0.33299999999999996 -2016-01-03 02:00:00,0.281,0.32799999999999996,0.33299999999999996 -2016-01-03 03:00:00,0.282,0.332,0.33299999999999996 -2016-01-03 04:00:00,0.282,0.332,0.33299999999999996 -2016-01-03 05:00:00,0.28,0.331,0.33299999999999996 -2016-01-03 06:00:00,0.27899999999999997,0.331,0.33299999999999996 -2016-01-03 07:00:00,0.278,0.331,0.33299999999999996 -2016-01-03 08:00:00,0.27899999999999997,0.33,0.33299999999999996 -2016-01-03 09:00:00,0.278,0.32899999999999996,0.332 -2016-01-03 10:00:00,0.27699999999999997,0.32899999999999996,0.331 -2016-01-03 11:00:00,0.27699999999999997,0.32799999999999996,0.33 -2016-01-03 12:00:00,0.275,0.327,0.33 -2016-01-03 13:00:00,0.27399999999999997,0.327,0.32899999999999996 -2016-01-03 14:00:00,0.27399999999999997,0.327,0.32899999999999996 -2016-01-03 15:00:00,0.273,0.326,0.32799999999999996 -2016-01-03 16:00:00,0.273,0.324,0.32799999999999996 -2016-01-03 17:00:00,0.273,0.324,0.327 -2016-01-03 18:00:00,0.272,0.324,0.326 -2016-01-03 19:00:00,0.272,0.324,0.325 -2016-01-03 20:00:00,0.272,0.32299999999999995,0.325 -2016-01-03 21:00:00,0.272,0.32299999999999995,0.324 -2016-01-03 22:00:00,0.272,0.32299999999999995,0.324 -2016-01-03 23:00:00,0.273,0.32299999999999995,0.324 -2016-01-04 00:00:00,0.273,0.32299999999999995,0.32299999999999995 -2016-01-04 01:00:00,0.273,0.32299999999999995,0.32299999999999995 -2016-01-04 02:00:00,0.271,0.32299999999999995,0.32299999999999995 -2016-01-04 03:00:00,0.27,0.322,0.32299999999999995 -2016-01-04 04:00:00,0.27,0.322,0.32299999999999995 -2016-01-04 05:00:00,0.26899999999999996,0.322,0.32299999999999995 -2016-01-04 06:00:00,0.26899999999999996,0.322,0.322 -2016-01-04 07:00:00,0.26899999999999996,0.322,0.322 -2016-01-04 08:00:00,0.26899999999999996,0.322,0.322 -2016-01-04 09:00:00,0.26899999999999996,0.322,0.322 -2016-01-04 10:00:00,0.27,0.32,0.322 -2016-01-04 11:00:00,0.272,0.32,0.322 -2016-01-04 12:00:00,0.273,0.321,0.322 -2016-01-04 13:00:00,0.272,0.321,0.322 -2016-01-04 14:00:00,0.276,0.321,0.322 -2016-01-04 15:00:00,0.287,0.322,0.32799999999999996 -2016-01-04 16:00:00,0.29,0.324,0.33799999999999997 -2016-01-04 17:00:00,0.287,0.324,0.337 -2016-01-04 18:00:00,0.28600000000000003,0.324,0.335 -2016-01-04 19:00:00,0.284,0.325,0.33399999999999996 -2016-01-04 20:00:00,0.28300000000000003,0.326,0.33299999999999996 -2016-01-04 21:00:00,0.28,0.327,0.332 -2016-01-04 22:00:00,0.27899999999999997,0.324,0.331 -2016-01-04 23:00:00,0.278,0.32,0.331 -2016-01-05 00:00:00,0.278,0.348,0.331 -2016-01-05 01:00:00,0.27699999999999997,0.353,0.331 -2016-01-05 02:00:00,0.276,0.355,0.33 -2016-01-05 03:00:00,0.275,0.355,0.33 -2016-01-05 04:00:00,0.27399999999999997,0.355,0.33 -2016-01-05 05:00:00,0.27399999999999997,0.355,0.33 -2016-01-05 06:00:00,0.273,0.355,0.32899999999999996 -2016-01-05 07:00:00,0.273,0.355,0.32899999999999996 -2016-01-05 08:00:00,0.272,0.35700000000000004,0.32799999999999996 -2016-01-05 09:00:00,0.271,0.35700000000000004,0.32799999999999996 -2016-01-05 10:00:00,0.272,0.35600000000000004,0.32799999999999996 -2016-01-05 11:00:00,0.272,0.355,0.327 -2016-01-05 12:00:00,0.271,0.35200000000000004,0.327 -2016-01-05 13:00:00,0.271,0.35,0.326 -2016-01-05 14:00:00,0.271,0.349,0.326 -2016-01-05 15:00:00,0.271,0.34700000000000003,0.326 -2016-01-05 16:00:00,0.272,0.34299999999999997,0.325 -2016-01-05 17:00:00,0.271,0.345,0.325 -2016-01-05 18:00:00,0.27,0.348,0.325 -2016-01-05 19:00:00,0.27,0.34700000000000003,0.324 -2016-01-05 20:00:00,0.27,0.34,0.324 -2016-01-05 21:00:00,0.27,0.353,0.324 -2016-01-05 22:00:00,0.27,0.355,0.324 -2016-01-05 23:00:00,0.26899999999999996,0.353,0.324 -2016-01-06 00:00:00,0.26899999999999996,0.354,0.324 -2016-01-06 01:00:00,0.26899999999999996,0.349,0.32299999999999995 -2016-01-06 02:00:00,0.26899999999999996,0.349,0.32299999999999995 -2016-01-06 03:00:00,0.26899999999999996,0.35100000000000003,0.32299999999999995 -2016-01-06 04:00:00,0.27,0.355,0.32299999999999995 -2016-01-06 05:00:00,0.27,0.35600000000000004,0.32299999999999995 -2016-01-06 06:00:00,0.27,0.35600000000000004,0.32299999999999995 -2016-01-06 07:00:00,0.27,0.35100000000000003,0.32299999999999995 -2016-01-06 08:00:00,0.27,0.35100000000000003,0.32299999999999995 -2016-01-06 09:00:00,0.27,0.353,0.322 -2016-01-06 10:00:00,0.27,0.35,0.322 -2016-01-06 11:00:00,0.27,0.349,0.322 -2016-01-06 12:00:00,0.27,0.34700000000000003,0.322 -2016-01-06 13:00:00,0.26899999999999996,0.349,0.322 -2016-01-06 14:00:00,0.27,0.353,0.322 -2016-01-06 15:00:00,0.27,0.355,0.322 -2016-01-06 16:00:00,0.27,0.35600000000000004,0.321 -2016-01-06 17:00:00,0.27,0.35600000000000004,0.321 -2016-01-06 18:00:00,0.27,0.35600000000000004,0.321 -2016-01-06 19:00:00,0.27,0.35600000000000004,0.321 -2016-01-06 20:00:00,0.27,0.342,0.321 -2016-01-06 21:00:00,0.27,0.341,0.321 -2016-01-06 22:00:00,0.27,0.34,0.321 -2016-01-06 23:00:00,0.27,0.33899999999999997,0.321 -2016-01-07 00:00:00,0.27,0.33899999999999997,0.32 -2016-01-07 01:00:00,0.27,0.33799999999999997,0.32 -2016-01-07 02:00:00,0.27,0.33799999999999997,0.32 -2016-01-07 03:00:00,0.26899999999999996,0.33799999999999997,0.32 -2016-01-07 04:00:00,0.26899999999999996,0.337,0.32 -2016-01-07 05:00:00,0.26899999999999996,0.336,0.32 -2016-01-07 06:00:00,0.26899999999999996,0.336,0.32 -2016-01-07 07:00:00,0.26899999999999996,0.33399999999999996,0.32 -2016-01-07 08:00:00,0.26899999999999996,0.326,0.32 -2016-01-07 09:00:00,0.26899999999999996,0.324,0.32 -2016-01-07 10:00:00,0.26899999999999996,0.332,0.32 -2016-01-07 11:00:00,0.27,0.34,0.319 -2016-01-07 12:00:00,0.272,0.341,0.319 -2016-01-07 13:00:00,0.273,0.341,0.319 -2016-01-07 14:00:00,0.27399999999999997,0.34299999999999997,0.319 -2016-01-07 15:00:00,0.275,0.34299999999999997,0.319 -2016-01-07 16:00:00,0.271,0.34299999999999997,0.32 -2016-01-07 17:00:00,0.276,0.34299999999999997,0.32 -2016-01-07 18:00:00,0.28600000000000003,0.33399999999999996,0.321 -2016-01-07 19:00:00,0.28800000000000003,0.336,0.326 -2016-01-07 20:00:00,0.287,0.33899999999999997,0.332 -2016-01-07 21:00:00,0.285,0.34,0.332 -2016-01-07 22:00:00,0.285,0.341,0.331 -2016-01-07 23:00:00,0.28300000000000003,0.341,0.33 -2016-01-08 00:00:00,0.28,0.341,0.33 -2016-01-08 01:00:00,0.27899999999999997,0.341,0.33 -2016-01-08 02:00:00,0.27699999999999997,0.33899999999999997,0.32899999999999996 -2016-01-08 03:00:00,0.276,0.33899999999999997,0.32799999999999996 -2016-01-08 04:00:00,0.275,0.341,0.32799999999999996 -2016-01-08 05:00:00,0.275,0.341,0.327 -2016-01-08 06:00:00,0.27399999999999997,0.34,0.327 -2016-01-08 07:00:00,0.27399999999999997,0.33899999999999997,0.326 -2016-01-08 08:00:00,0.27399999999999997,0.33899999999999997,0.326 -2016-01-08 09:00:00,0.27399999999999997,0.33799999999999997,0.326 -2016-01-08 10:00:00,0.27399999999999997,0.33799999999999997,0.325 -2016-01-08 11:00:00,0.27399999999999997,0.337,0.325 -2016-01-08 12:00:00,0.275,0.337,0.324 -2016-01-08 13:00:00,0.276,0.34,0.324 -2016-01-08 14:00:00,0.27899999999999997,0.331,0.32299999999999995 -2016-01-08 15:00:00,0.281,0.33,0.32299999999999995 -2016-01-08 16:00:00,0.282,0.331,0.322 -2016-01-08 17:00:00,0.28300000000000003,0.331,0.322 -2016-01-08 18:00:00,0.284,0.331,0.322 -2016-01-08 19:00:00,0.284,0.331,0.321 -2016-01-08 20:00:00,0.284,0.331,0.321 -2016-01-08 21:00:00,0.284,0.324,0.321 -2016-01-08 22:00:00,0.28300000000000003,0.325,0.321 -2016-01-08 23:00:00,0.28300000000000003,0.32299999999999995,0.321 -2016-01-09 00:00:00,0.28300000000000003,0.33,0.32 -2016-01-09 01:00:00,0.28300000000000003,0.32899999999999996,0.32 -2016-01-09 02:00:00,0.282,0.326,0.32 -2016-01-09 03:00:00,0.282,0.327,0.32 -2016-01-09 04:00:00,0.282,0.32799999999999996,0.32 -2016-01-09 05:00:00,0.281,0.33,0.32 -2016-01-09 06:00:00,0.281,0.332,0.32 -2016-01-09 07:00:00,0.281,0.332,0.32 -2016-01-09 08:00:00,0.281,0.332,0.319 -2016-01-09 09:00:00,0.281,0.32799999999999996,0.319 -2016-01-09 10:00:00,0.281,0.326,0.319 -2016-01-09 11:00:00,0.28,0.327,0.319 -2016-01-09 12:00:00,0.27899999999999997,0.326,0.32 -2016-01-09 13:00:00,0.276,0.326,0.321 -2016-01-09 14:00:00,0.275,0.322,0.321 -2016-01-09 15:00:00,0.275,0.326,0.321 -2016-01-09 16:00:00,0.275,0.33,0.321 -2016-01-09 17:00:00,0.276,0.335,0.32 -2016-01-09 18:00:00,0.276,0.33899999999999997,0.32 -2016-01-09 19:00:00,0.276,0.33799999999999997,0.32 -2016-01-09 20:00:00,0.275,0.33899999999999997,0.32 -2016-01-09 21:00:00,0.275,0.341,0.32 -2016-01-09 22:00:00,0.275,0.341,0.32 -2016-01-09 23:00:00,0.275,0.34,0.32 -2016-01-10 00:00:00,0.275,0.33899999999999997,0.32 -2016-01-10 01:00:00,0.275,0.33899999999999997,0.32 -2016-01-10 02:00:00,0.27399999999999997,0.33899999999999997,0.32 -2016-01-10 03:00:00,0.27399999999999997,0.34299999999999997,0.319 -2016-01-10 04:00:00,0.27399999999999997,0.34,0.319 -2016-01-10 05:00:00,0.27399999999999997,0.33899999999999997,0.319 -2016-01-10 06:00:00,0.273,0.33899999999999997,0.319 -2016-01-10 07:00:00,0.26899999999999996,0.33799999999999997,0.32 -2016-01-10 08:00:00,0.268,0.337,0.32 -2016-01-10 09:00:00,0.268,0.336,0.32 -2016-01-10 10:00:00,0.268,0.336,0.32 -2016-01-10 11:00:00,0.267,0.33399999999999996,0.32 -2016-01-10 12:00:00,0.268,0.33399999999999996,0.319 -2016-01-10 13:00:00,0.27,0.33299999999999996,0.319 -2016-01-10 14:00:00,0.27399999999999997,0.332,0.319 -2016-01-10 15:00:00,0.276,0.331,0.319 -2016-01-10 16:00:00,0.27699999999999997,0.331,0.318 -2016-01-10 17:00:00,0.278,0.32899999999999996,0.318 -2016-01-10 18:00:00,0.278,0.32799999999999996,0.318 -2016-01-10 19:00:00,0.271,0.32299999999999995,0.32 -2016-01-10 20:00:00,0.275,0.326,0.321 -2016-01-10 21:00:00,0.29,0.326,0.335 -2016-01-10 22:00:00,0.289,0.326,0.33899999999999997 -2016-01-10 23:00:00,0.287,0.32799999999999996,0.337 -2016-01-11 00:00:00,0.284,0.331,0.336 -2016-01-11 01:00:00,0.282,0.332,0.335 -2016-01-11 02:00:00,0.28,0.332,0.33399999999999996 -2016-01-11 03:00:00,0.27899999999999997,0.332,0.332 -2016-01-11 04:00:00,0.278,0.332,0.331 -2016-01-11 05:00:00,0.275,0.331,0.33 -2016-01-11 06:00:00,0.281,0.332,0.32899999999999996 -2016-01-11 07:00:00,0.285,0.332,0.32799999999999996 -2016-01-11 08:00:00,0.28300000000000003,0.332,0.32799999999999996 -2016-01-11 09:00:00,0.275,0.331,0.32799999999999996 -2016-01-11 10:00:00,0.275,0.331,0.32799999999999996 -2016-01-11 11:00:00,0.27399999999999997,0.331,0.32799999999999996 -2016-01-11 12:00:00,0.275,0.331,0.327 -2016-01-11 13:00:00,0.27699999999999997,0.33,0.327 -2016-01-11 14:00:00,0.276,0.32899999999999996,0.327 -2016-01-11 15:00:00,0.275,0.327,0.327 -2016-01-11 16:00:00,0.275,0.326,0.327 -2016-01-11 17:00:00,0.28,0.326,0.327 -2016-01-11 18:00:00,0.28800000000000003,0.327,0.337 -2016-01-11 19:00:00,0.287,0.327,0.33799999999999997 -2016-01-11 20:00:00,0.28600000000000003,0.327,0.336 -2016-01-11 21:00:00,0.285,0.327,0.335 -2016-01-11 22:00:00,0.28600000000000003,0.327,0.335 -2016-01-11 23:00:00,0.287,0.327,0.33399999999999996 -2016-01-12 00:00:00,0.29,0.327,0.337 -2016-01-12 01:00:00,0.29100000000000004,0.327,0.33899999999999997 -2016-01-12 02:00:00,0.287,0.327,0.33799999999999997 -2016-01-12 03:00:00,0.285,0.327,0.336 -2016-01-12 04:00:00,0.285,0.327,0.335 -2016-01-12 05:00:00,0.284,0.327,0.335 -2016-01-12 06:00:00,0.28300000000000003,0.327,0.33399999999999996 -2016-01-12 07:00:00,0.28300000000000003,0.327,0.33399999999999996 -2016-01-12 08:00:00,0.282,0.324,0.33399999999999996 -2016-01-12 09:00:00,0.28300000000000003,0.322,0.33399999999999996 -2016-01-12 10:00:00,0.28300000000000003,0.322,0.33399999999999996 -2016-01-12 11:00:00,0.282,0.322,0.33399999999999996 -2016-01-12 12:00:00,0.28,0.322,0.33399999999999996 -2016-01-12 13:00:00,0.278,0.321,0.33399999999999996 -2016-01-12 14:00:00,0.27699999999999997,0.321,0.33299999999999996 -2016-01-12 15:00:00,0.276,0.321,0.33299999999999996 -2016-01-12 16:00:00,0.27699999999999997,0.321,0.332 -2016-01-12 17:00:00,0.278,0.321,0.332 -2016-01-12 18:00:00,0.27899999999999997,0.321,0.332 -2016-01-12 19:00:00,0.28,0.321,0.331 -2016-01-12 20:00:00,0.281,0.321,0.33 -2016-01-12 21:00:00,0.282,0.32,0.33 -2016-01-12 22:00:00,0.282,0.32,0.33 -2016-01-12 23:00:00,0.282,0.32,0.33 -2016-01-13 00:00:00,0.282,0.32,0.32899999999999996 -2016-01-13 01:00:00,0.282,0.319,0.32899999999999996 -2016-01-13 02:00:00,0.282,0.319,0.32899999999999996 -2016-01-13 03:00:00,0.282,0.319,0.32799999999999996 -2016-01-13 04:00:00,0.28,0.319,0.32799999999999996 -2016-01-13 05:00:00,0.275,0.319,0.32899999999999996 -2016-01-13 06:00:00,0.27899999999999997,0.319,0.32899999999999996 -2016-01-13 07:00:00,0.28600000000000003,0.319,0.33299999999999996 -2016-01-13 08:00:00,0.28600000000000003,0.318,0.335 -2016-01-13 09:00:00,0.285,0.317,0.33399999999999996 -2016-01-13 10:00:00,0.28300000000000003,0.317,0.33299999999999996 -2016-01-13 11:00:00,0.28,0.317,0.332 -2016-01-13 12:00:00,0.27899999999999997,0.317,0.332 -2016-01-13 13:00:00,0.27899999999999997,0.317,0.331 -2016-01-13 14:00:00,0.28300000000000003,0.317,0.331 -2016-01-13 15:00:00,0.28300000000000003,0.317,0.331 -2016-01-13 16:00:00,0.289,0.317,0.33399999999999996 -2016-01-13 17:00:00,0.287,0.317,0.335 -2016-01-13 18:00:00,0.285,0.317,0.335 -2016-01-13 19:00:00,0.28300000000000003,0.317,0.33399999999999996 -2016-01-13 20:00:00,0.281,0.316,0.33399999999999996 -2016-01-13 21:00:00,0.27899999999999997,0.316,0.33299999999999996 -2016-01-13 22:00:00,0.278,0.316,0.33299999999999996 -2016-01-13 23:00:00,0.276,0.316,0.33299999999999996 -2016-01-14 00:00:00,0.275,0.316,0.332 -2016-01-14 01:00:00,0.278,0.315,0.332 -2016-01-14 02:00:00,0.284,0.315,0.331 -2016-01-14 03:00:00,0.28600000000000003,0.315,0.331 -2016-01-14 04:00:00,0.28600000000000003,0.315,0.331 -2016-01-14 05:00:00,0.285,0.315,0.331 -2016-01-14 06:00:00,0.285,0.315,0.331 -2016-01-14 07:00:00,0.284,0.315,0.33 -2016-01-14 08:00:00,0.284,0.315,0.33 -2016-01-14 09:00:00,0.284,0.315,0.33 -2016-01-14 10:00:00,0.281,0.315,0.33 -2016-01-14 11:00:00,0.272,0.315,0.33 -2016-01-14 12:00:00,0.272,0.314,0.33 -2016-01-14 13:00:00,0.272,0.314,0.33 -2016-01-14 14:00:00,0.273,0.314,0.33 -2016-01-14 15:00:00,0.275,0.314,0.32899999999999996 -2016-01-14 16:00:00,0.276,0.314,0.32899999999999996 -2016-01-14 17:00:00,0.276,0.314,0.32899999999999996 -2016-01-14 18:00:00,0.272,0.314,0.33 -2016-01-14 19:00:00,0.271,0.314,0.32899999999999996 -2016-01-14 20:00:00,0.273,0.314,0.32899999999999996 -2016-01-14 21:00:00,0.27,0.314,0.32899999999999996 -2016-01-14 22:00:00,0.272,0.314,0.32899999999999996 -2016-01-14 23:00:00,0.273,0.314,0.32899999999999996 -2016-01-15 00:00:00,0.273,0.314,0.32899999999999996 -2016-01-15 01:00:00,0.273,0.314,0.32899999999999996 -2016-01-15 02:00:00,0.273,0.314,0.32899999999999996 -2016-01-15 03:00:00,0.272,0.314,0.32899999999999996 -2016-01-15 04:00:00,0.272,0.314,0.32899999999999996 -2016-01-15 05:00:00,0.272,0.314,0.32899999999999996 -2016-01-15 06:00:00,0.27399999999999997,0.314,0.32899999999999996 -2016-01-15 07:00:00,0.275,0.314,0.32899999999999996 -2016-01-15 08:00:00,0.275,0.314,0.32899999999999996 -2016-01-15 09:00:00,0.276,0.314,0.32899999999999996 -2016-01-15 10:00:00,0.27699999999999997,0.314,0.33 -2016-01-15 11:00:00,0.27899999999999997,0.314,0.33 -2016-01-15 12:00:00,0.28,0.314,0.33 -2016-01-15 13:00:00,0.281,0.314,0.331 -2016-01-15 14:00:00,0.28300000000000003,0.314,0.33299999999999996 -2016-01-15 15:00:00,0.285,0.314,0.33399999999999996 -2016-01-15 16:00:00,0.28600000000000003,0.314,0.335 -2016-01-15 17:00:00,0.285,0.313,0.335 -2016-01-15 18:00:00,0.28300000000000003,0.314,0.33399999999999996 -2016-01-15 19:00:00,0.282,0.314,0.33399999999999996 -2016-01-15 20:00:00,0.28,0.314,0.33399999999999996 -2016-01-15 21:00:00,0.27899999999999997,0.314,0.33399999999999996 -2016-01-15 22:00:00,0.278,0.314,0.33299999999999996 -2016-01-15 23:00:00,0.27699999999999997,0.314,0.33299999999999996 -2016-01-16 00:00:00,0.275,0.314,0.33299999999999996 -2016-01-16 01:00:00,0.275,0.314,0.33299999999999996 -2016-01-16 02:00:00,0.27399999999999997,0.315,0.332 -2016-01-16 03:00:00,0.273,0.314,0.332 -2016-01-16 04:00:00,0.276,0.313,0.331 -2016-01-16 05:00:00,0.27899999999999997,0.315,0.331 -2016-01-16 06:00:00,0.27899999999999997,0.314,0.331 -2016-01-16 07:00:00,0.27899999999999997,0.314,0.33 -2016-01-16 08:00:00,0.27899999999999997,0.314,0.33 -2016-01-16 09:00:00,0.27899999999999997,0.314,0.33 -2016-01-16 10:00:00,0.27399999999999997,0.314,0.33 -2016-01-16 11:00:00,0.271,0.314,0.33 -2016-01-16 12:00:00,0.271,0.314,0.33 -2016-01-16 13:00:00,0.271,0.314,0.33 -2016-01-16 14:00:00,0.272,0.314,0.33 -2016-01-16 15:00:00,0.272,0.314,0.33 -2016-01-16 16:00:00,0.273,0.314,0.33 -2016-01-16 17:00:00,0.272,0.314,0.33 -2016-01-16 18:00:00,0.272,0.314,0.33 -2016-01-16 19:00:00,0.272,0.314,0.33 -2016-01-16 20:00:00,0.271,0.314,0.33 -2016-01-16 21:00:00,0.27899999999999997,0.314,0.32899999999999996 -2016-01-16 22:00:00,0.282,0.314,0.32799999999999996 -2016-01-16 23:00:00,0.282,0.314,0.32799999999999996 -2016-01-17 00:00:00,0.282,0.314,0.32799999999999996 -2016-01-17 01:00:00,0.28300000000000003,0.314,0.32799999999999996 -2016-01-17 02:00:00,0.282,0.314,0.32799999999999996 -2016-01-17 03:00:00,0.282,0.314,0.32799999999999996 -2016-01-17 04:00:00,0.282,0.314,0.327 -2016-01-17 05:00:00,0.282,0.314,0.327 -2016-01-17 06:00:00,0.282,0.314,0.327 -2016-01-17 07:00:00,0.282,0.314,0.327 -2016-01-17 08:00:00,0.282,0.314,0.327 -2016-01-17 09:00:00,0.282,0.314,0.327 -2016-01-17 10:00:00,0.282,0.314,0.326 -2016-01-17 11:00:00,0.28,0.313,0.326 -2016-01-17 12:00:00,0.271,0.312,0.32799999999999996 -2016-01-17 13:00:00,0.272,0.312,0.327 -2016-01-17 14:00:00,0.273,0.312,0.327 -2016-01-17 15:00:00,0.27699999999999997,0.312,0.326 -2016-01-17 16:00:00,0.282,0.312,0.326 -2016-01-17 17:00:00,0.282,0.312,0.325 -2016-01-17 18:00:00,0.282,0.34,0.325 -2016-01-17 19:00:00,0.282,0.355,0.325 -2016-01-17 20:00:00,0.282,0.355,0.325 -2016-01-17 21:00:00,0.282,0.354,0.325 -2016-01-17 22:00:00,0.282,0.353,0.325 -2016-01-17 23:00:00,0.282,0.355,0.325 -2016-01-18 00:00:00,0.282,0.353,0.324 -2016-01-18 01:00:00,0.282,0.35600000000000004,0.324 -2016-01-18 02:00:00,0.282,0.348,0.324 -2016-01-18 03:00:00,0.282,0.348,0.32299999999999995 -2016-01-18 04:00:00,0.282,0.348,0.32299999999999995 -2016-01-18 05:00:00,0.282,0.348,0.32299999999999995 -2016-01-18 06:00:00,0.282,0.349,0.32299999999999995 -2016-01-18 07:00:00,0.282,0.349,0.32299999999999995 -2016-01-18 08:00:00,0.281,0.349,0.322 -2016-01-18 09:00:00,0.281,0.349,0.322 -2016-01-18 10:00:00,0.281,0.349,0.322 -2016-01-18 11:00:00,0.28,0.349,0.322 -2016-01-18 12:00:00,0.28,0.348,0.322 -2016-01-18 13:00:00,0.27899999999999997,0.34700000000000003,0.322 -2016-01-18 14:00:00,0.27899999999999997,0.34600000000000003,0.322 -2016-01-18 15:00:00,0.27899999999999997,0.34600000000000003,0.322 -2016-01-18 16:00:00,0.27899999999999997,0.35,0.322 -2016-01-18 17:00:00,0.27899999999999997,0.354,0.321 -2016-01-18 18:00:00,0.27899999999999997,0.354,0.321 -2016-01-18 19:00:00,0.27899999999999997,0.353,0.321 -2016-01-18 20:00:00,0.27899999999999997,0.353,0.321 -2016-01-18 21:00:00,0.27899999999999997,0.35200000000000004,0.321 -2016-01-18 22:00:00,0.278,0.35100000000000003,0.321 -2016-01-18 23:00:00,0.278,0.35100000000000003,0.32 -2016-01-19 00:00:00,0.278,0.35100000000000003,0.32 -2016-01-19 01:00:00,0.278,0.35100000000000003,0.32 -2016-01-19 02:00:00,0.278,0.349,0.32 -2016-01-19 03:00:00,0.278,0.349,0.32 -2016-01-19 04:00:00,0.27699999999999997,0.349,0.32 -2016-01-19 05:00:00,0.27699999999999997,0.348,0.319 -2016-01-19 06:00:00,0.27699999999999997,0.348,0.319 -2016-01-19 07:00:00,0.27699999999999997,0.34700000000000003,0.319 -2016-01-19 08:00:00,0.276,0.34600000000000003,0.319 -2016-01-19 09:00:00,0.276,0.34600000000000003,0.319 -2016-01-19 10:00:00,0.276,0.34600000000000003,0.319 -2016-01-19 11:00:00,0.275,0.345,0.318 -2016-01-19 12:00:00,0.275,0.344,0.317 -2016-01-19 13:00:00,0.275,0.344,0.317 -2016-01-19 14:00:00,0.275,0.34299999999999997,0.317 -2016-01-19 15:00:00,0.275,0.34299999999999997,0.317 -2016-01-19 16:00:00,0.275,0.34299999999999997,0.317 -2016-01-19 17:00:00,0.275,0.34299999999999997,0.317 -2016-01-19 18:00:00,0.275,0.34299999999999997,0.317 -2016-01-19 19:00:00,0.27399999999999997,0.34299999999999997,0.316 -2016-01-19 20:00:00,0.27399999999999997,0.34299999999999997,0.316 -2016-01-19 21:00:00,0.27399999999999997,0.34299999999999997,0.316 -2016-01-19 22:00:00,0.27399999999999997,0.34299999999999997,0.316 -2016-01-19 23:00:00,0.27399999999999997,0.342,0.316 -2016-01-20 00:00:00,0.27399999999999997,0.341,0.316 -2016-01-20 01:00:00,0.273,0.341,0.315 -2016-01-20 02:00:00,0.273,0.34,0.314 -2016-01-20 03:00:00,0.273,0.33899999999999997,0.314 -2016-01-20 04:00:00,0.273,0.33899999999999997,0.314 -2016-01-20 05:00:00,0.273,0.33899999999999997,0.314 -2016-01-20 06:00:00,0.273,0.33799999999999997,0.314 -2016-01-20 07:00:00,0.273,0.33799999999999997,0.313 -2016-01-20 08:00:00,0.272,0.337,0.313 -2016-01-20 09:00:00,0.272,0.336,0.313 -2016-01-20 10:00:00,0.272,0.336,0.313 -2016-01-20 11:00:00,0.272,0.335,0.313 -2016-01-20 12:00:00,0.272,0.33399999999999996,0.313 -2016-01-20 13:00:00,0.272,0.332,0.313 -2016-01-20 14:00:00,0.272,0.332,0.313 -2016-01-20 15:00:00,0.272,0.332,0.313 -2016-01-20 16:00:00,0.272,0.332,0.313 -2016-01-20 17:00:00,0.272,0.331,0.313 -2016-01-20 18:00:00,0.272,0.331,0.313 -2016-01-20 19:00:00,0.272,0.331,0.313 -2016-01-20 20:00:00,0.272,0.331,0.312 -2016-01-20 21:00:00,0.272,0.331,0.312 -2016-01-20 22:00:00,0.272,0.331,0.312 -2016-01-20 23:00:00,0.272,0.331,0.312 -2016-01-21 00:00:00,0.272,0.331,0.312 -2016-01-21 01:00:00,0.272,0.331,0.312 -2016-01-21 02:00:00,0.272,0.331,0.312 -2016-01-21 03:00:00,0.272,0.331,0.312 -2016-01-21 04:00:00,0.272,0.331,0.312 -2016-01-21 05:00:00,0.272,0.331,0.312 -2016-01-21 06:00:00,0.272,0.331,0.311 -2016-01-21 07:00:00,0.273,0.331,0.311 -2016-01-21 08:00:00,0.273,0.331,0.311 -2016-01-21 09:00:00,0.273,0.33,0.311 -2016-01-21 10:00:00,0.272,0.33,0.311 -2016-01-21 11:00:00,0.272,0.33,0.311 -2016-01-21 12:00:00,0.272,0.32899999999999996,0.311 -2016-01-21 13:00:00,0.272,0.32899999999999996,0.312 -2016-01-21 14:00:00,0.272,0.32899999999999996,0.312 -2016-01-21 15:00:00,0.273,0.32899999999999996,0.312 -2016-01-21 16:00:00,0.273,0.32899999999999996,0.312 -2016-01-21 17:00:00,0.273,0.32899999999999996,0.311 -2016-01-21 18:00:00,0.273,0.32899999999999996,0.311 -2016-01-21 19:00:00,0.273,0.32899999999999996,0.311 -2016-01-21 20:00:00,0.273,0.32899999999999996,0.311 -2016-01-21 21:00:00,0.273,0.32899999999999996,0.311 -2016-01-21 22:00:00,0.273,0.32899999999999996,0.311 -2016-01-21 23:00:00,0.273,0.32899999999999996,0.311 -2016-01-22 00:00:00,0.273,0.33,0.311 -2016-01-22 01:00:00,0.273,0.331,0.311 -2016-01-22 02:00:00,0.273,0.331,0.311 -2016-01-22 03:00:00,0.273,0.33,0.311 -2016-01-22 04:00:00,0.273,0.33,0.311 -2016-01-22 05:00:00,0.273,0.32899999999999996,0.311 -2016-01-22 06:00:00,0.273,0.32899999999999996,0.311 -2016-01-22 07:00:00,0.273,0.32899999999999996,0.311 -2016-01-22 08:00:00,0.273,0.327,0.311 -2016-01-22 09:00:00,0.273,0.326,0.311 -2016-01-22 10:00:00,0.273,0.322,0.311 -2016-01-22 11:00:00,0.273,0.32299999999999995,0.311 -2016-01-22 12:00:00,0.273,0.324,0.311 -2016-01-22 13:00:00,0.272,0.326,0.311 -2016-01-22 14:00:00,0.273,0.326,0.311 -2016-01-22 15:00:00,0.272,0.326,0.311 -2016-01-22 16:00:00,0.273,0.327,0.311 -2016-01-22 17:00:00,0.272,0.32799999999999996,0.31 -2016-01-22 18:00:00,0.272,0.32899999999999996,0.31 -2016-01-22 19:00:00,0.272,0.33,0.31 -2016-01-22 20:00:00,0.272,0.331,0.31 -2016-01-22 21:00:00,0.272,0.331,0.31 -2016-01-22 22:00:00,0.272,0.331,0.31 -2016-01-22 23:00:00,0.272,0.332,0.31 -2016-01-23 00:00:00,0.271,0.332,0.311 -2016-01-23 01:00:00,0.271,0.332,0.311 -2016-01-23 02:00:00,0.271,0.332,0.311 -2016-01-23 03:00:00,0.271,0.332,0.311 -2016-01-23 04:00:00,0.271,0.332,0.311 -2016-01-23 05:00:00,0.271,0.332,0.311 -2016-01-23 06:00:00,0.271,0.331,0.311 -2016-01-23 07:00:00,0.27,0.331,0.312 -2016-01-23 08:00:00,0.264,0.331,0.314 -2016-01-23 09:00:00,0.262,0.331,0.314 -2016-01-23 10:00:00,0.262,0.33,0.314 -2016-01-23 11:00:00,0.262,0.32899999999999996,0.314 -2016-01-23 12:00:00,0.262,0.331,0.314 -2016-01-23 13:00:00,0.263,0.331,0.314 -2016-01-23 14:00:00,0.267,0.326,0.314 -2016-01-23 15:00:00,0.278,0.326,0.314 -2016-01-23 16:00:00,0.285,0.326,0.32799999999999996 -2016-01-23 17:00:00,0.287,0.326,0.33399999999999996 -2016-01-23 18:00:00,0.287,0.326,0.32899999999999996 -2016-01-23 19:00:00,0.287,0.32799999999999996,0.326 -2016-01-23 20:00:00,0.28600000000000003,0.325,0.324 -2016-01-23 21:00:00,0.285,0.32299999999999995,0.322 -2016-01-23 22:00:00,0.285,0.322,0.322 -2016-01-23 23:00:00,0.285,0.322,0.321 -2016-01-24 00:00:00,0.285,0.322,0.321 -2016-01-24 01:00:00,0.285,0.322,0.321 -2016-01-24 02:00:00,0.285,0.322,0.321 -2016-01-24 03:00:00,0.285,0.322,0.321 -2016-01-24 04:00:00,0.285,0.322,0.321 -2016-01-24 05:00:00,0.285,0.322,0.321 -2016-01-24 06:00:00,0.285,0.322,0.321 -2016-01-24 07:00:00,0.29100000000000004,0.322,0.32 -2016-01-24 08:00:00,0.293,0.32299999999999995,0.319 -2016-01-24 09:00:00,0.292,0.32299999999999995,0.319 -2016-01-24 10:00:00,0.28600000000000003,0.32299999999999995,0.32 -2016-01-24 11:00:00,0.284,0.32299999999999995,0.319 -2016-01-24 12:00:00,0.28600000000000003,0.322,0.318 -2016-01-24 13:00:00,0.29100000000000004,0.322,0.318 -2016-01-24 14:00:00,0.294,0.322,0.32299999999999995 -2016-01-24 15:00:00,0.295,0.322,0.327 -2016-01-24 16:00:00,0.295,0.322,0.327 -2016-01-24 17:00:00,0.295,0.322,0.326 -2016-01-24 18:00:00,0.294,0.322,0.324 -2016-01-24 19:00:00,0.292,0.315,0.32299999999999995 -2016-01-24 20:00:00,0.287,0.311,0.32299999999999995 -2016-01-24 21:00:00,0.287,0.326,0.32299999999999995 -2016-01-24 22:00:00,0.28600000000000003,0.33899999999999997,0.324 -2016-01-24 23:00:00,0.285,0.34,0.32299999999999995 -2016-01-25 00:00:00,0.284,0.344,0.322 -2016-01-25 01:00:00,0.284,0.337,0.322 -2016-01-25 02:00:00,0.28300000000000003,0.341,0.321 -2016-01-25 03:00:00,0.282,0.34299999999999997,0.321 -2016-01-25 04:00:00,0.28300000000000003,0.344,0.321 -2016-01-25 05:00:00,0.28300000000000003,0.348,0.321 -2016-01-25 06:00:00,0.28300000000000003,0.34700000000000003,0.321 -2016-01-25 07:00:00,0.282,0.344,0.32 -2016-01-25 08:00:00,0.282,0.342,0.32 -2016-01-25 09:00:00,0.282,0.341,0.32 -2016-01-25 10:00:00,0.281,0.341,0.319 -2016-01-25 11:00:00,0.282,0.342,0.319 -2016-01-25 12:00:00,0.282,0.34,0.319 -2016-01-25 13:00:00,0.28300000000000003,0.33899999999999997,0.319 -2016-01-25 14:00:00,0.284,0.33899999999999997,0.318 -2016-01-25 15:00:00,0.285,0.33899999999999997,0.318 -2016-01-25 16:00:00,0.28600000000000003,0.34,0.318 -2016-01-25 17:00:00,0.287,0.341,0.318 -2016-01-25 18:00:00,0.287,0.341,0.317 -2016-01-25 19:00:00,0.287,0.34,0.317 -2016-01-25 20:00:00,0.28800000000000003,0.34,0.316 -2016-01-25 21:00:00,0.28800000000000003,0.33899999999999997,0.316 -2016-01-25 22:00:00,0.28800000000000003,0.33899999999999997,0.316 -2016-01-25 23:00:00,0.287,0.33799999999999997,0.316 -2016-01-26 00:00:00,0.287,0.33799999999999997,0.316 -2016-01-26 01:00:00,0.287,0.337,0.316 -2016-01-26 02:00:00,0.28600000000000003,0.33399999999999996,0.316 -2016-01-26 03:00:00,0.28600000000000003,0.33299999999999996,0.316 -2016-01-26 04:00:00,0.28600000000000003,0.33299999999999996,0.316 -2016-01-26 05:00:00,0.28600000000000003,0.335,0.316 -2016-01-26 06:00:00,0.28600000000000003,0.337,0.316 -2016-01-26 07:00:00,0.285,0.337,0.315 -2016-01-26 08:00:00,0.285,0.337,0.315 -2016-01-26 09:00:00,0.28300000000000003,0.33799999999999997,0.316 -2016-01-26 10:00:00,0.28,0.337,0.316 -2016-01-26 11:00:00,0.27899999999999997,0.33799999999999997,0.316 -2016-01-26 12:00:00,0.28,0.33799999999999997,0.316 -2016-01-26 13:00:00,0.28,0.33799999999999997,0.316 -2016-01-26 14:00:00,0.28,0.33799999999999997,0.316 -2016-01-26 15:00:00,0.281,0.341,0.316 -2016-01-26 16:00:00,0.282,0.34299999999999997,0.316 -2016-01-26 17:00:00,0.282,0.344,0.315 -2016-01-26 18:00:00,0.28300000000000003,0.344,0.315 -2016-01-26 19:00:00,0.28300000000000003,0.344,0.315 -2016-01-26 20:00:00,0.282,0.344,0.315 -2016-01-26 21:00:00,0.28300000000000003,0.344,0.315 -2016-01-26 22:00:00,0.282,0.344,0.315 -2016-01-26 23:00:00,0.282,0.344,0.315 -2016-01-27 00:00:00,0.282,0.34299999999999997,0.315 -2016-01-27 01:00:00,0.282,0.34299999999999997,0.315 -2016-01-27 02:00:00,0.282,0.34299999999999997,0.315 -2016-01-27 03:00:00,0.282,0.34299999999999997,0.315 -2016-01-27 04:00:00,0.282,0.341,0.314 -2016-01-27 05:00:00,0.282,0.341,0.314 -2016-01-27 06:00:00,0.28300000000000003,0.34,0.314 -2016-01-27 07:00:00,0.28300000000000003,0.33899999999999997,0.314 -2016-01-27 08:00:00,0.28300000000000003,0.33899999999999997,0.314 -2016-01-27 09:00:00,0.282,0.33799999999999997,0.313 -2016-01-27 10:00:00,0.282,0.33799999999999997,0.313 -2016-01-27 11:00:00,0.282,0.33799999999999997,0.313 -2016-01-27 12:00:00,0.282,0.33799999999999997,0.313 -2016-01-27 13:00:00,0.282,0.337,0.314 -2016-01-27 14:00:00,0.282,0.336,0.315 -2016-01-27 15:00:00,0.282,0.336,0.315 -2016-01-27 16:00:00,0.282,0.336,0.314 -2016-01-27 17:00:00,0.28300000000000003,0.336,0.313 -2016-01-27 18:00:00,0.28300000000000003,0.336,0.313 -2016-01-27 19:00:00,0.28300000000000003,0.336,0.313 -2016-01-27 20:00:00,0.28300000000000003,0.33399999999999996,0.313 -2016-01-27 21:00:00,0.28300000000000003,0.322,0.313 -2016-01-27 22:00:00,0.282,0.33,0.313 -2016-01-27 23:00:00,0.282,0.342,0.313 -2016-01-28 00:00:00,0.282,0.345,0.313 -2016-01-28 01:00:00,0.282,0.34600000000000003,0.313 -2016-01-28 02:00:00,0.282,0.34700000000000003,0.313 -2016-01-28 03:00:00,0.282,0.34700000000000003,0.313 -2016-01-28 04:00:00,0.282,0.34600000000000003,0.313 -2016-01-28 05:00:00,0.281,0.34600000000000003,0.314 -2016-01-28 06:00:00,0.27699999999999997,0.345,0.316 -2016-01-28 07:00:00,0.273,0.344,0.316 -2016-01-28 08:00:00,0.273,0.342,0.316 -2016-01-28 09:00:00,0.273,0.341,0.316 -2016-01-28 10:00:00,0.27399999999999997,0.341,0.316 -2016-01-28 11:00:00,0.275,0.341,0.315 -2016-01-28 12:00:00,0.27699999999999997,0.341,0.315 -2016-01-28 13:00:00,0.28300000000000003,0.34,0.314 -2016-01-28 14:00:00,0.28600000000000003,0.33899999999999997,0.313 -2016-01-28 15:00:00,0.287,0.33899999999999997,0.313 -2016-01-28 16:00:00,0.287,0.332,0.313 -2016-01-28 17:00:00,0.287,0.336,0.313 -2016-01-28 18:00:00,0.287,0.33799999999999997,0.313 -2016-01-28 19:00:00,0.287,0.33899999999999997,0.313 -2016-01-28 20:00:00,0.287,0.33899999999999997,0.313 -2016-01-28 21:00:00,0.287,0.33799999999999997,0.313 -2016-01-28 22:00:00,0.287,0.33299999999999996,0.313 -2016-01-28 23:00:00,0.28600000000000003,0.335,0.313 -2016-01-29 00:00:00,0.28600000000000003,0.335,0.312 -2016-01-29 01:00:00,0.28600000000000003,0.33399999999999996,0.312 -2016-01-29 02:00:00,0.28600000000000003,0.336,0.312 -2016-01-29 03:00:00,0.285,0.336,0.312 -2016-01-29 04:00:00,0.285,0.335,0.312 -2016-01-29 05:00:00,0.284,0.33399999999999996,0.312 -2016-01-29 06:00:00,0.284,0.33299999999999996,0.312 -2016-01-29 07:00:00,0.284,0.332,0.312 -2016-01-29 08:00:00,0.284,0.33,0.312 -2016-01-29 09:00:00,0.284,0.33,0.312 -2016-01-29 10:00:00,0.282,0.327,0.313 -2016-01-29 11:00:00,0.27899999999999997,0.331,0.313 -2016-01-29 12:00:00,0.27899999999999997,0.33299999999999996,0.313 -2016-01-29 13:00:00,0.281,0.33399999999999996,0.313 -2016-01-29 14:00:00,0.282,0.336,0.312 -2016-01-29 15:00:00,0.282,0.332,0.312 -2016-01-29 16:00:00,0.28300000000000003,0.327,0.312 -2016-01-29 17:00:00,0.28300000000000003,0.33,0.312 -2016-01-29 18:00:00,0.28300000000000003,0.337,0.312 -2016-01-29 19:00:00,0.28300000000000003,0.34,0.312 -2016-01-29 20:00:00,0.28300000000000003,0.33899999999999997,0.312 -2016-01-29 21:00:00,0.28300000000000003,0.341,0.312 -2016-01-29 22:00:00,0.282,0.342,0.312 -2016-01-29 23:00:00,0.282,0.341,0.312 -2016-01-30 00:00:00,0.282,0.341,0.312 -2016-01-30 01:00:00,0.282,0.341,0.312 -2016-01-30 02:00:00,0.282,0.341,0.312 -2016-01-30 03:00:00,0.282,0.341,0.312 -2016-01-30 04:00:00,0.282,0.342,0.312 -2016-01-30 05:00:00,0.282,0.34,0.312 -2016-01-30 06:00:00,0.282,0.33799999999999997,0.311 -2016-01-30 07:00:00,0.282,0.33799999999999997,0.311 -2016-01-30 08:00:00,0.282,0.33799999999999997,0.311 -2016-01-30 09:00:00,0.282,0.337,0.311 -2016-01-30 10:00:00,0.282,0.336,0.311 -2016-01-30 11:00:00,0.282,0.336,0.311 -2016-01-30 12:00:00,0.282,0.335,0.311 -2016-01-30 13:00:00,0.282,0.33399999999999996,0.311 -2016-01-30 14:00:00,0.282,0.33399999999999996,0.312 -2016-01-30 15:00:00,0.27899999999999997,0.33399999999999996,0.313 -2016-01-30 16:00:00,0.272,0.33399999999999996,0.316 -2016-01-30 17:00:00,0.27699999999999997,0.33399999999999996,0.316 -2016-01-30 18:00:00,0.29,0.33399999999999996,0.317 -2016-01-30 19:00:00,0.28800000000000003,0.33399999999999996,0.321 -2016-01-30 20:00:00,0.287,0.33399999999999996,0.32799999999999996 -2016-01-30 21:00:00,0.284,0.33399999999999996,0.32899999999999996 -2016-01-30 22:00:00,0.29,0.33399999999999996,0.32899999999999996 -2016-01-30 23:00:00,0.29100000000000004,0.33399999999999996,0.335 -2016-01-31 00:00:00,0.287,0.33399999999999996,0.33399999999999996 -2016-01-31 01:00:00,0.284,0.33399999999999996,0.332 -2016-01-31 02:00:00,0.28,0.33299999999999996,0.32899999999999996 -2016-01-31 03:00:00,0.28,0.332,0.32799999999999996 -2016-01-31 04:00:00,0.27899999999999997,0.332,0.32799999999999996 -2016-01-31 05:00:00,0.27899999999999997,0.332,0.327 -2016-01-31 06:00:00,0.27899999999999997,0.332,0.326 -2016-01-31 07:00:00,0.278,0.332,0.326 -2016-01-31 08:00:00,0.27699999999999997,0.332,0.326 -2016-01-31 09:00:00,0.27699999999999997,0.332,0.325 -2016-01-31 10:00:00,0.27699999999999997,0.332,0.325 -2016-01-31 11:00:00,0.27699999999999997,0.331,0.325 -2016-01-31 12:00:00,0.27699999999999997,0.331,0.324 -2016-01-31 13:00:00,0.27899999999999997,0.331,0.324 -2016-01-31 14:00:00,0.28300000000000003,0.33,0.32299999999999995 -2016-01-31 15:00:00,0.28600000000000003,0.33,0.322 -2016-01-31 16:00:00,0.28600000000000003,0.33,0.322 -2016-01-31 17:00:00,0.28600000000000003,0.33,0.322 -2016-01-31 18:00:00,0.284,0.331,0.322 -2016-01-31 19:00:00,0.28300000000000003,0.331,0.322 -2016-01-31 20:00:00,0.282,0.331,0.322 -2016-01-31 21:00:00,0.28,0.33,0.32299999999999995 -2016-01-31 22:00:00,0.278,0.33,0.32299999999999995 -2016-01-31 23:00:00,0.27699999999999997,0.33,0.324 -2016-02-01 00:00:00,0.278,0.33,0.324 -2016-02-01 01:00:00,0.27899999999999997,0.32899999999999996,0.324 -2016-02-01 02:00:00,0.27899999999999997,0.32899999999999996,0.32299999999999995 -2016-02-01 03:00:00,0.28,0.32899999999999996,0.32299999999999995 -2016-02-01 04:00:00,0.282,0.32899999999999996,0.324 -2016-02-01 05:00:00,0.28300000000000003,0.32899999999999996,0.324 -2016-02-01 06:00:00,0.28300000000000003,0.32799999999999996,0.324 -2016-02-01 07:00:00,0.284,0.327,0.325 -2016-02-01 08:00:00,0.284,0.327,0.325 -2016-02-01 09:00:00,0.284,0.327,0.325 -2016-02-01 10:00:00,0.284,0.327,0.326 -2016-02-01 11:00:00,0.28300000000000003,0.327,0.326 -2016-02-01 12:00:00,0.28300000000000003,0.327,0.326 -2016-02-01 13:00:00,0.281,0.327,0.325 -2016-02-01 14:00:00,0.281,0.326,0.325 -2016-02-01 15:00:00,0.28300000000000003,0.326,0.325 -2016-02-01 16:00:00,0.287,0.32299999999999995,0.324 -2016-02-01 17:00:00,0.289,0.321,0.32299999999999995 -2016-02-01 18:00:00,0.289,0.322,0.32299999999999995 -2016-02-01 19:00:00,0.29,0.32299999999999995,0.322 -2016-02-01 20:00:00,0.289,0.324,0.322 -2016-02-01 21:00:00,0.289,0.324,0.322 -2016-02-01 22:00:00,0.289,0.326,0.322 -2016-02-01 23:00:00,0.28800000000000003,0.326,0.322 -2016-02-02 00:00:00,0.28800000000000003,0.326,0.321 -2016-02-02 01:00:00,0.287,0.326,0.321 -2016-02-02 02:00:00,0.287,0.326,0.321 -2016-02-02 03:00:00,0.287,0.326,0.321 -2016-02-02 04:00:00,0.287,0.326,0.321 -2016-02-02 05:00:00,0.28600000000000003,0.326,0.321 -2016-02-02 06:00:00,0.28600000000000003,0.326,0.321 -2016-02-02 07:00:00,0.28600000000000003,0.326,0.321 -2016-02-02 08:00:00,0.285,0.326,0.321 -2016-02-02 09:00:00,0.285,0.326,0.32 -2016-02-02 10:00:00,0.285,0.326,0.32 -2016-02-02 11:00:00,0.285,0.326,0.32 -2016-02-02 12:00:00,0.284,0.326,0.32 -2016-02-02 13:00:00,0.284,0.326,0.32 -2016-02-02 14:00:00,0.284,0.325,0.32 -2016-02-02 15:00:00,0.284,0.319,0.32 -2016-02-02 16:00:00,0.284,0.313,0.319 -2016-02-02 17:00:00,0.28300000000000003,0.33399999999999996,0.32 -2016-02-02 18:00:00,0.27899999999999997,0.35200000000000004,0.324 -2016-02-02 19:00:00,0.29100000000000004,0.354,0.325 -2016-02-02 20:00:00,0.297,0.355,0.33899999999999997 -2016-02-02 21:00:00,0.29100000000000004,0.355,0.337 -2016-02-02 22:00:00,0.28600000000000003,0.353,0.335 -2016-02-02 23:00:00,0.28300000000000003,0.35100000000000003,0.33399999999999996 -2016-02-03 00:00:00,0.281,0.35100000000000003,0.33299999999999996 -2016-02-03 01:00:00,0.28,0.349,0.33299999999999996 -2016-02-03 02:00:00,0.28,0.348,0.332 -2016-02-03 03:00:00,0.28,0.34600000000000003,0.332 -2016-02-03 04:00:00,0.28,0.345,0.332 -2016-02-03 05:00:00,0.27899999999999997,0.344,0.332 -2016-02-03 06:00:00,0.27899999999999997,0.344,0.332 -2016-02-03 07:00:00,0.27899999999999997,0.34299999999999997,0.331 -2016-02-03 08:00:00,0.27899999999999997,0.34299999999999997,0.331 -2016-02-03 09:00:00,0.27899999999999997,0.341,0.331 -2016-02-03 10:00:00,0.27899999999999997,0.341,0.33 -2016-02-03 11:00:00,0.28,0.341,0.33 -2016-02-03 12:00:00,0.28300000000000003,0.34,0.32899999999999996 -2016-02-03 13:00:00,0.28,0.34,0.33 -2016-02-03 14:00:00,0.27699999999999997,0.33899999999999997,0.33 -2016-02-03 15:00:00,0.276,0.33399999999999996,0.33 -2016-02-03 16:00:00,0.278,0.332,0.32899999999999996 -2016-02-03 17:00:00,0.281,0.336,0.32799999999999996 -2016-02-03 18:00:00,0.282,0.33799999999999997,0.32799999999999996 -2016-02-03 19:00:00,0.27699999999999997,0.332,0.32899999999999996 -2016-02-03 20:00:00,0.276,0.344,0.32899999999999996 -2016-02-03 21:00:00,0.276,0.349,0.32799999999999996 -2016-02-03 22:00:00,0.276,0.35100000000000003,0.32799999999999996 -2016-02-03 23:00:00,0.275,0.35200000000000004,0.32799999999999996 -2016-02-04 00:00:00,0.275,0.349,0.32799999999999996 -2016-02-04 01:00:00,0.27399999999999997,0.349,0.32799999999999996 -2016-02-04 02:00:00,0.27399999999999997,0.348,0.32799999999999996 -2016-02-04 03:00:00,0.275,0.34700000000000003,0.32799999999999996 -2016-02-04 04:00:00,0.27399999999999997,0.344,0.32799999999999996 -2016-02-04 05:00:00,0.275,0.345,0.32799999999999996 -2016-02-04 06:00:00,0.275,0.344,0.32799999999999996 -2016-02-04 07:00:00,0.276,0.34299999999999997,0.32799999999999996 -2016-02-04 08:00:00,0.275,0.344,0.32799999999999996 -2016-02-04 09:00:00,0.275,0.344,0.32799999999999996 -2016-02-04 10:00:00,0.275,0.34299999999999997,0.32799999999999996 -2016-02-04 11:00:00,0.275,0.341,0.32799999999999996 -2016-02-04 12:00:00,0.275,0.34,0.32799999999999996 -2016-02-04 13:00:00,0.278,0.337,0.32799999999999996 -2016-02-04 14:00:00,0.284,0.33399999999999996,0.32899999999999996 -2016-02-04 15:00:00,0.29100000000000004,0.337,0.33299999999999996 -2016-02-04 16:00:00,0.29,0.336,0.33799999999999997 -2016-02-04 17:00:00,0.289,0.332,0.337 -2016-02-04 18:00:00,0.287,0.33299999999999996,0.337 -2016-02-04 19:00:00,0.285,0.336,0.336 -2016-02-04 20:00:00,0.28300000000000003,0.33799999999999997,0.336 -2016-02-04 21:00:00,0.282,0.33899999999999997,0.336 -2016-02-04 22:00:00,0.28,0.336,0.336 -2016-02-04 23:00:00,0.27899999999999997,0.336,0.336 -2016-02-05 00:00:00,0.27699999999999997,0.33799999999999997,0.336 -2016-02-05 01:00:00,0.276,0.341,0.336 -2016-02-05 02:00:00,0.275,0.341,0.336 -2016-02-05 03:00:00,0.275,0.341,0.336 -2016-02-05 04:00:00,0.275,0.341,0.336 -2016-02-05 05:00:00,0.275,0.341,0.335 -2016-02-05 06:00:00,0.27399999999999997,0.33799999999999997,0.335 -2016-02-05 07:00:00,0.27399999999999997,0.33799999999999997,0.335 -2016-02-05 08:00:00,0.273,0.33799999999999997,0.33399999999999996 -2016-02-05 09:00:00,0.273,0.33799999999999997,0.33399999999999996 -2016-02-05 10:00:00,0.273,0.336,0.33399999999999996 -2016-02-05 11:00:00,0.273,0.335,0.33299999999999996 -2016-02-05 12:00:00,0.273,0.33299999999999996,0.33299999999999996 -2016-02-05 13:00:00,0.273,0.33399999999999996,0.33299999999999996 -2016-02-05 14:00:00,0.27399999999999997,0.335,0.332 -2016-02-05 15:00:00,0.275,0.336,0.332 -2016-02-05 16:00:00,0.276,0.337,0.332 -2016-02-05 17:00:00,0.276,0.337,0.331 -2016-02-05 18:00:00,0.27699999999999997,0.33799999999999997,0.331 -2016-02-05 19:00:00,0.27699999999999997,0.33799999999999997,0.331 -2016-02-05 20:00:00,0.27699999999999997,0.33799999999999997,0.331 -2016-02-05 21:00:00,0.278,0.336,0.331 -2016-02-05 22:00:00,0.278,0.336,0.33 -2016-02-05 23:00:00,0.27899999999999997,0.336,0.33 -2016-02-06 00:00:00,0.27899999999999997,0.335,0.33 -2016-02-06 01:00:00,0.27899999999999997,0.33399999999999996,0.33 -2016-02-06 02:00:00,0.28,0.33399999999999996,0.33 -2016-02-06 03:00:00,0.28,0.33399999999999996,0.32899999999999996 -2016-02-06 04:00:00,0.281,0.33399999999999996,0.32899999999999996 -2016-02-06 05:00:00,0.281,0.33399999999999996,0.32899999999999996 -2016-02-06 06:00:00,0.281,0.332,0.32899999999999996 -2016-02-06 07:00:00,0.282,0.332,0.32799999999999996 -2016-02-06 08:00:00,0.28,0.332,0.32899999999999996 -2016-02-06 09:00:00,0.28,0.332,0.32799999999999996 -2016-02-06 10:00:00,0.27899999999999997,0.332,0.32799999999999996 -2016-02-06 11:00:00,0.27899999999999997,0.332,0.32799999999999996 -2016-02-06 12:00:00,0.28,0.332,0.32799999999999996 -2016-02-06 13:00:00,0.28,0.331,0.327 -2016-02-06 14:00:00,0.281,0.331,0.327 -2016-02-06 15:00:00,0.281,0.331,0.327 -2016-02-06 16:00:00,0.281,0.331,0.326 -2016-02-06 17:00:00,0.281,0.331,0.326 -2016-02-06 18:00:00,0.281,0.33,0.326 -2016-02-06 19:00:00,0.281,0.33,0.326 -2016-02-06 20:00:00,0.281,0.331,0.326 -2016-02-06 21:00:00,0.281,0.33,0.326 -2016-02-06 22:00:00,0.281,0.33,0.326 -2016-02-06 23:00:00,0.281,0.32899999999999996,0.326 -2016-02-07 00:00:00,0.281,0.32899999999999996,0.326 -2016-02-07 01:00:00,0.281,0.32899999999999996,0.326 -2016-02-07 02:00:00,0.281,0.32899999999999996,0.326 -2016-02-07 03:00:00,0.28,0.32899999999999996,0.326 -2016-02-07 04:00:00,0.28,0.32899999999999996,0.326 -2016-02-07 05:00:00,0.28,0.32899999999999996,0.326 -2016-02-07 06:00:00,0.28,0.327,0.326 -2016-02-07 07:00:00,0.28,0.327,0.326 -2016-02-07 08:00:00,0.28,0.327,0.325 -2016-02-07 09:00:00,0.28,0.327,0.325 -2016-02-07 10:00:00,0.28,0.327,0.325 -2016-02-07 11:00:00,0.28,0.326,0.325 -2016-02-07 12:00:00,0.28,0.326,0.325 -2016-02-07 13:00:00,0.276,0.326,0.327 -2016-02-07 14:00:00,0.26899999999999996,0.325,0.32799999999999996 -2016-02-07 15:00:00,0.27,0.324,0.32799999999999996 -2016-02-07 16:00:00,0.272,0.32299999999999995,0.327 -2016-02-07 17:00:00,0.27399999999999997,0.32299999999999995,0.327 -2016-02-07 18:00:00,0.27699999999999997,0.324,0.326 -2016-02-07 19:00:00,0.278,0.32299999999999995,0.326 -2016-02-07 20:00:00,0.28,0.321,0.325 -2016-02-07 21:00:00,0.28,0.319,0.325 -2016-02-07 22:00:00,0.281,0.318,0.325 -2016-02-07 23:00:00,0.281,0.32299999999999995,0.325 -2016-02-08 00:00:00,0.281,0.326,0.324 -2016-02-08 01:00:00,0.281,0.327,0.324 -2016-02-08 02:00:00,0.281,0.327,0.324 -2016-02-08 03:00:00,0.281,0.32799999999999996,0.324 -2016-02-08 04:00:00,0.281,0.332,0.324 -2016-02-08 05:00:00,0.281,0.345,0.324 -2016-02-08 06:00:00,0.281,0.344,0.324 -2016-02-08 07:00:00,0.281,0.344,0.324 -2016-02-08 08:00:00,0.281,0.34299999999999997,0.324 -2016-02-08 09:00:00,0.28,0.341,0.324 -2016-02-08 10:00:00,0.28,0.342,0.324 -2016-02-08 11:00:00,0.27899999999999997,0.34,0.325 -2016-02-08 12:00:00,0.27,0.34,0.327 -2016-02-08 13:00:00,0.272,0.34299999999999997,0.327 -2016-02-08 14:00:00,0.295,0.344,0.33299999999999996 -2016-02-08 15:00:00,0.3,0.344,0.348 -2016-02-08 16:00:00,0.29100000000000004,0.344,0.35100000000000003 -2016-02-08 17:00:00,0.285,0.33799999999999997,0.359 -2016-02-08 18:00:00,0.287,0.33799999999999997,0.359 -2016-02-08 19:00:00,0.29,0.33799999999999997,0.359 -2016-02-08 20:00:00,0.292,0.33799999999999997,0.359 -2016-02-08 21:00:00,0.293,0.34,0.359 -2016-02-08 22:00:00,0.293,0.341,0.359 -2016-02-08 23:00:00,0.293,0.341,0.359 -2016-02-09 00:00:00,0.292,0.34,0.36 -2016-02-09 01:00:00,0.292,0.33899999999999997,0.36 -2016-02-09 02:00:00,0.29100000000000004,0.33799999999999997,0.36 -2016-02-09 03:00:00,0.29100000000000004,0.33799999999999997,0.36 -2016-02-09 04:00:00,0.29,0.337,0.36 -2016-02-09 05:00:00,0.29,0.33299999999999996,0.36 -2016-02-09 06:00:00,0.289,0.332,0.36 -2016-02-09 07:00:00,0.289,0.33299999999999996,0.35600000000000004 -2016-02-09 08:00:00,0.28800000000000003,0.33399999999999996,0.354 -2016-02-09 09:00:00,0.287,0.335,0.35200000000000004 -2016-02-09 10:00:00,0.287,0.336,0.35100000000000003 -2016-02-09 11:00:00,0.287,0.336,0.35 -2016-02-09 12:00:00,0.27899999999999997,0.336,0.35100000000000003 -2016-02-09 13:00:00,0.276,0.335,0.35100000000000003 -2016-02-09 14:00:00,0.278,0.33399999999999996,0.35100000000000003 -2016-02-09 15:00:00,0.27899999999999997,0.33399999999999996,0.35100000000000003 -2016-02-09 16:00:00,0.28800000000000003,0.335,0.353 -2016-02-09 17:00:00,0.295,0.336,0.358 -2016-02-09 18:00:00,0.29600000000000004,0.336,0.358 -2016-02-09 19:00:00,0.289,0.336,0.361 -2016-02-09 20:00:00,0.284,0.335,0.365 -2016-02-09 21:00:00,0.284,0.33399999999999996,0.366 -2016-02-09 22:00:00,0.28300000000000003,0.33299999999999996,0.366 -2016-02-09 23:00:00,0.28300000000000003,0.332,0.366 -2016-02-10 00:00:00,0.28300000000000003,0.332,0.366 -2016-02-10 01:00:00,0.282,0.332,0.36700000000000005 -2016-02-10 02:00:00,0.281,0.332,0.36700000000000005 -2016-02-10 03:00:00,0.281,0.332,0.36700000000000005 -2016-02-10 04:00:00,0.281,0.332,0.368 -2016-02-10 05:00:00,0.287,0.332,0.368 -2016-02-10 06:00:00,0.29,0.331,0.368 -2016-02-10 07:00:00,0.287,0.331,0.368 -2016-02-10 08:00:00,0.28300000000000003,0.331,0.368 -2016-02-10 09:00:00,0.282,0.331,0.368 -2016-02-10 10:00:00,0.27899999999999997,0.331,0.368 -2016-02-10 11:00:00,0.278,0.331,0.368 -2016-02-10 12:00:00,0.278,0.32899999999999996,0.369 -2016-02-10 13:00:00,0.278,0.32899999999999996,0.369 -2016-02-10 14:00:00,0.27899999999999997,0.32899999999999996,0.369 -2016-02-10 15:00:00,0.27899999999999997,0.327,0.37 -2016-02-10 16:00:00,0.28,0.327,0.37 -2016-02-10 17:00:00,0.281,0.327,0.37 -2016-02-10 18:00:00,0.281,0.327,0.37 -2016-02-10 19:00:00,0.282,0.327,0.37 -2016-02-10 20:00:00,0.282,0.327,0.37 -2016-02-10 21:00:00,0.282,0.327,0.37 -2016-02-10 22:00:00,0.281,0.327,0.371 -2016-02-10 23:00:00,0.28,0.326,0.371 -2016-02-11 00:00:00,0.28,0.326,0.371 -2016-02-11 01:00:00,0.27899999999999997,0.326,0.371 -2016-02-11 02:00:00,0.27899999999999997,0.326,0.371 -2016-02-11 03:00:00,0.27899999999999997,0.326,0.371 -2016-02-11 04:00:00,0.278,0.326,0.371 -2016-02-11 05:00:00,0.27699999999999997,0.326,0.37200000000000005 -2016-02-11 06:00:00,0.27699999999999997,0.324,0.37200000000000005 -2016-02-11 07:00:00,0.276,0.324,0.37200000000000005 -2016-02-11 08:00:00,0.276,0.324,0.37200000000000005 -2016-02-11 09:00:00,0.276,0.324,0.37200000000000005 -2016-02-11 10:00:00,0.275,0.324,0.37200000000000005 -2016-02-11 11:00:00,0.276,0.324,0.37200000000000005 -2016-02-11 12:00:00,0.278,0.324,0.37200000000000005 -2016-02-11 13:00:00,0.281,0.324,0.37200000000000005 -2016-02-11 14:00:00,0.28300000000000003,0.32299999999999995,0.37200000000000005 -2016-02-11 15:00:00,0.285,0.32299999999999995,0.37200000000000005 -2016-02-11 16:00:00,0.28600000000000003,0.32299999999999995,0.37200000000000005 -2016-02-11 17:00:00,0.28600000000000003,0.32299999999999995,0.371 -2016-02-11 18:00:00,0.285,0.322,0.37200000000000005 -2016-02-11 19:00:00,0.28300000000000003,0.322,0.37200000000000005 -2016-02-11 20:00:00,0.28300000000000003,0.322,0.37200000000000005 -2016-02-11 21:00:00,0.28300000000000003,0.322,0.37200000000000005 -2016-02-11 22:00:00,0.28300000000000003,0.322,0.37200000000000005 -2016-02-11 23:00:00,0.28300000000000003,0.322,0.369 -2016-02-12 00:00:00,0.28300000000000003,0.322,0.366 -2016-02-12 01:00:00,0.28300000000000003,0.322,0.366 -2016-02-12 02:00:00,0.28300000000000003,0.322,0.366 -2016-02-12 03:00:00,0.28300000000000003,0.322,0.366 -2016-02-12 04:00:00,0.282,0.322,0.364 -2016-02-12 05:00:00,0.28300000000000003,0.322,0.361 -2016-02-12 06:00:00,0.28300000000000003,0.322,0.36 -2016-02-12 07:00:00,0.28300000000000003,0.322,0.358 -2016-02-12 08:00:00,0.28300000000000003,0.321,0.35700000000000004 -2016-02-12 09:00:00,0.28300000000000003,0.321,0.35600000000000004 -2016-02-12 10:00:00,0.28300000000000003,0.321,0.35600000000000004 -2016-02-12 11:00:00,0.281,0.321,0.35600000000000004 -2016-02-12 12:00:00,0.281,0.321,0.355 -2016-02-12 13:00:00,0.281,0.321,0.355 -2016-02-12 14:00:00,0.282,0.321,0.354 -2016-02-12 15:00:00,0.282,0.321,0.354 -2016-02-12 16:00:00,0.282,0.321,0.353 -2016-02-12 17:00:00,0.28300000000000003,0.321,0.353 -2016-02-12 18:00:00,0.28300000000000003,0.321,0.353 -2016-02-12 19:00:00,0.282,0.321,0.353 -2016-02-12 20:00:00,0.282,0.321,0.353 -2016-02-12 21:00:00,0.282,0.321,0.35200000000000004 -2016-02-12 22:00:00,0.282,0.321,0.35200000000000004 -2016-02-12 23:00:00,0.282,0.321,0.35200000000000004 -2016-02-13 00:00:00,0.282,0.321,0.35200000000000004 -2016-02-13 01:00:00,0.282,0.321,0.35200000000000004 -2016-02-13 02:00:00,0.282,0.321,0.35200000000000004 -2016-02-13 03:00:00,0.282,0.321,0.35200000000000004 -2016-02-13 04:00:00,0.282,0.321,0.35100000000000003 -2016-02-13 05:00:00,0.281,0.321,0.35100000000000003 -2016-02-13 06:00:00,0.281,0.321,0.35100000000000003 -2016-02-13 07:00:00,0.281,0.32,0.35100000000000003 -2016-02-13 08:00:00,0.281,0.32,0.35100000000000003 -2016-02-13 09:00:00,0.28,0.32,0.35 -2016-02-13 10:00:00,0.28,0.319,0.35100000000000003 -2016-02-13 11:00:00,0.28,0.319,0.35100000000000003 -2016-02-13 12:00:00,0.27899999999999997,0.319,0.35100000000000003 -2016-02-13 13:00:00,0.27899999999999997,0.319,0.35100000000000003 -2016-02-13 14:00:00,0.28,0.319,0.35100000000000003 -2016-02-13 15:00:00,0.27899999999999997,0.319,0.35 -2016-02-13 16:00:00,0.27899999999999997,0.319,0.35100000000000003 -2016-02-13 17:00:00,0.275,0.319,0.35100000000000003 -2016-02-13 18:00:00,0.271,0.319,0.35100000000000003 -2016-02-13 19:00:00,0.27,0.319,0.35100000000000003 -2016-02-13 20:00:00,0.273,0.319,0.35100000000000003 -2016-02-13 21:00:00,0.275,0.319,0.35100000000000003 -2016-02-13 22:00:00,0.27699999999999997,0.319,0.35100000000000003 -2016-02-13 23:00:00,0.278,0.319,0.35100000000000003 -2016-02-14 00:00:00,0.28,0.319,0.35100000000000003 -2016-02-14 01:00:00,0.28600000000000003,0.319,0.35100000000000003 -2016-02-14 02:00:00,0.28800000000000003,0.319,0.35100000000000003 -2016-02-14 03:00:00,0.28600000000000003,0.319,0.35200000000000004 -2016-02-14 04:00:00,0.285,0.319,0.353 -2016-02-14 05:00:00,0.285,0.319,0.354 -2016-02-14 06:00:00,0.285,0.319,0.358 -2016-02-14 07:00:00,0.28600000000000003,0.318,0.363 -2016-02-14 08:00:00,0.28600000000000003,0.317,0.364 -2016-02-14 09:00:00,0.28600000000000003,0.317,0.364 -2016-02-14 10:00:00,0.285,0.317,0.364 -2016-02-14 11:00:00,0.284,0.313,0.364 -2016-02-14 12:00:00,0.28300000000000003,0.31,0.365 -2016-02-14 13:00:00,0.282,0.31,0.365 -2016-02-14 14:00:00,0.28300000000000003,0.313,0.365 -2016-02-14 15:00:00,0.28300000000000003,0.315,0.364 -2016-02-14 16:00:00,0.28300000000000003,0.314,0.364 -2016-02-14 17:00:00,0.284,0.31,0.364 -2016-02-14 18:00:00,0.28300000000000003,0.313,0.364 -2016-02-14 19:00:00,0.28300000000000003,0.313,0.365 -2016-02-14 20:00:00,0.282,0.31,0.365 -2016-02-14 21:00:00,0.281,0.307,0.366 -2016-02-14 22:00:00,0.281,0.309,0.366 -2016-02-14 23:00:00,0.281,0.327,0.366 -2016-02-15 00:00:00,0.28,0.33899999999999997,0.36700000000000005 -2016-02-15 01:00:00,0.27899999999999997,0.341,0.36700000000000005 -2016-02-15 02:00:00,0.28,0.34,0.368 -2016-02-15 03:00:00,0.28,0.341,0.368 -2016-02-15 04:00:00,0.28,0.341,0.368 -2016-02-15 05:00:00,0.28,0.341,0.369 -2016-02-15 06:00:00,0.27899999999999997,0.341,0.369 -2016-02-15 07:00:00,0.27899999999999997,0.34299999999999997,0.369 -2016-02-15 08:00:00,0.27899999999999997,0.34299999999999997,0.369 -2016-02-15 09:00:00,0.278,0.34299999999999997,0.369 -2016-02-15 10:00:00,0.278,0.344,0.37 -2016-02-15 11:00:00,0.278,0.34299999999999997,0.37 -2016-02-15 12:00:00,0.27699999999999997,0.34299999999999997,0.37 -2016-02-15 13:00:00,0.278,0.33899999999999997,0.37 -2016-02-15 14:00:00,0.28,0.33299999999999996,0.371 -2016-02-15 15:00:00,0.282,0.33299999999999996,0.371 -2016-02-15 16:00:00,0.28300000000000003,0.335,0.371 -2016-02-15 17:00:00,0.284,0.33399999999999996,0.371 -2016-02-15 18:00:00,0.28300000000000003,0.34,0.371 -2016-02-15 19:00:00,0.28,0.344,0.369 -2016-02-15 20:00:00,0.27899999999999997,0.34600000000000003,0.366 -2016-02-15 21:00:00,0.27899999999999997,0.34600000000000003,0.364 -2016-02-15 22:00:00,0.28,0.345,0.363 -2016-02-15 23:00:00,0.281,0.344,0.36200000000000004 -2016-02-16 00:00:00,0.282,0.344,0.36200000000000004 -2016-02-16 01:00:00,0.284,0.344,0.36200000000000004 -2016-02-16 02:00:00,0.284,0.34299999999999997,0.361 -2016-02-16 03:00:00,0.284,0.34299999999999997,0.361 -2016-02-16 04:00:00,0.284,0.34299999999999997,0.361 -2016-02-16 05:00:00,0.284,0.34299999999999997,0.361 -2016-02-16 06:00:00,0.284,0.342,0.361 -2016-02-16 07:00:00,0.284,0.341,0.36 -2016-02-16 08:00:00,0.28300000000000003,0.341,0.36 -2016-02-16 09:00:00,0.28300000000000003,0.341,0.36 -2016-02-16 10:00:00,0.28300000000000003,0.34,0.36 -2016-02-16 11:00:00,0.282,0.33899999999999997,0.36 -2016-02-16 12:00:00,0.282,0.33899999999999997,0.354 -2016-02-16 13:00:00,0.282,0.33799999999999997,0.349 -2016-02-16 14:00:00,0.282,0.33799999999999997,0.349 -2016-02-16 15:00:00,0.282,0.33799999999999997,0.348 -2016-02-16 16:00:00,0.282,0.33799999999999997,0.348 -2016-02-16 17:00:00,0.282,0.33799999999999997,0.34700000000000003 -2016-02-16 18:00:00,0.282,0.33799999999999997,0.34700000000000003 -2016-02-16 19:00:00,0.282,0.336,0.34600000000000003 -2016-02-16 20:00:00,0.281,0.332,0.34600000000000003 -2016-02-16 21:00:00,0.281,0.332,0.34600000000000003 -2016-02-16 22:00:00,0.281,0.332,0.345 -2016-02-16 23:00:00,0.281,0.33399999999999996,0.345 -2016-02-17 00:00:00,0.28,0.32899999999999996,0.345 -2016-02-17 01:00:00,0.28,0.32799999999999996,0.345 -2016-02-17 02:00:00,0.28,0.34,0.344 -2016-02-17 03:00:00,0.28,0.341,0.344 -2016-02-17 04:00:00,0.28,0.344,0.344 -2016-02-17 05:00:00,0.28,0.34700000000000003,0.344 -2016-02-17 06:00:00,0.28,0.34600000000000003,0.344 -2016-02-17 07:00:00,0.28,0.345,0.34299999999999997 -2016-02-17 08:00:00,0.27899999999999997,0.344,0.34299999999999997 -2016-02-17 09:00:00,0.27899999999999997,0.34600000000000003,0.342 -2016-02-17 10:00:00,0.27899999999999997,0.344,0.342 -2016-02-17 11:00:00,0.27899999999999997,0.344,0.342 -2016-02-17 12:00:00,0.27899999999999997,0.344,0.342 -2016-02-17 13:00:00,0.27899999999999997,0.34299999999999997,0.342 -2016-02-17 14:00:00,0.27899999999999997,0.345,0.341 -2016-02-17 15:00:00,0.27899999999999997,0.35200000000000004,0.341 -2016-02-17 16:00:00,0.27899999999999997,0.359,0.341 -2016-02-17 17:00:00,0.27899999999999997,0.36200000000000004,0.341 -2016-02-17 18:00:00,0.27899999999999997,0.365,0.341 -2016-02-17 19:00:00,0.27899999999999997,0.365,0.341 -2016-02-17 20:00:00,0.27899999999999997,0.365,0.341 -2016-02-17 21:00:00,0.27899999999999997,0.363,0.341 -2016-02-17 22:00:00,0.27899999999999997,0.36,0.34 -2016-02-17 23:00:00,0.27899999999999997,0.354,0.34 -2016-02-18 00:00:00,0.27899999999999997,0.35,0.34 -2016-02-18 01:00:00,0.27899999999999997,0.348,0.34 -2016-02-18 02:00:00,0.27899999999999997,0.34700000000000003,0.34 -2016-02-18 03:00:00,0.27899999999999997,0.34600000000000003,0.34 -2016-02-18 04:00:00,0.27899999999999997,0.345,0.33899999999999997 -2016-02-18 05:00:00,0.27899999999999997,0.34700000000000003,0.33899999999999997 -2016-02-18 06:00:00,0.278,0.34700000000000003,0.33899999999999997 -2016-02-18 07:00:00,0.278,0.344,0.33899999999999997 -2016-02-18 08:00:00,0.278,0.34700000000000003,0.33799999999999997 -2016-02-18 09:00:00,0.278,0.348,0.33799999999999997 -2016-02-18 10:00:00,0.278,0.34700000000000003,0.33799999999999997 -2016-02-18 11:00:00,0.278,0.34600000000000003,0.337 -2016-02-18 12:00:00,0.278,0.34299999999999997,0.337 -2016-02-18 13:00:00,0.278,0.33899999999999997,0.337 -2016-02-18 14:00:00,0.278,0.33899999999999997,0.337 -2016-02-18 15:00:00,0.278,0.33899999999999997,0.337 -2016-02-18 16:00:00,0.278,0.341,0.337 -2016-02-18 17:00:00,0.278,0.33799999999999997,0.337 -2016-02-18 18:00:00,0.278,0.33799999999999997,0.336 -2016-02-18 19:00:00,0.278,0.341,0.336 -2016-02-18 20:00:00,0.278,0.34299999999999997,0.336 -2016-02-18 21:00:00,0.278,0.344,0.336 -2016-02-18 22:00:00,0.278,0.344,0.336 -2016-02-18 23:00:00,0.278,0.345,0.336 -2016-02-19 00:00:00,0.278,0.344,0.336 -2016-02-19 01:00:00,0.278,0.344,0.336 -2016-02-19 02:00:00,0.27699999999999997,0.344,0.336 -2016-02-19 03:00:00,0.278,0.344,0.336 -2016-02-19 04:00:00,0.27699999999999997,0.344,0.335 -2016-02-19 05:00:00,0.27699999999999997,0.344,0.335 -2016-02-19 06:00:00,0.27699999999999997,0.34299999999999997,0.335 -2016-02-19 07:00:00,0.27699999999999997,0.34299999999999997,0.335 -2016-02-19 08:00:00,0.27699999999999997,0.34299999999999997,0.335 -2016-02-19 09:00:00,0.27699999999999997,0.34299999999999997,0.335 -2016-02-19 10:00:00,0.27699999999999997,0.342,0.335 -2016-02-19 11:00:00,0.27699999999999997,0.341,0.335 -2016-02-19 12:00:00,0.27699999999999997,0.341,0.335 -2016-02-19 13:00:00,0.27699999999999997,0.33799999999999997,0.335 -2016-02-19 14:00:00,0.27699999999999997,0.336,0.33399999999999996 -2016-02-19 15:00:00,0.27699999999999997,0.33799999999999997,0.33299999999999996 -2016-02-19 16:00:00,0.27699999999999997,0.33799999999999997,0.33299999999999996 -2016-02-19 17:00:00,0.27699999999999997,0.33799999999999997,0.33299999999999996 -2016-02-19 18:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 -2016-02-19 19:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 -2016-02-19 20:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 -2016-02-19 21:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 -2016-02-19 22:00:00,0.27699999999999997,0.33899999999999997,0.332 -2016-02-19 23:00:00,0.27699999999999997,0.33899999999999997,0.332 -2016-02-20 00:00:00,0.27699999999999997,0.33899999999999997,0.332 -2016-02-20 01:00:00,0.27699999999999997,0.33799999999999997,0.332 -2016-02-20 02:00:00,0.276,0.33799999999999997,0.332 -2016-02-20 03:00:00,0.276,0.33799999999999997,0.332 -2016-02-20 04:00:00,0.276,0.33799999999999997,0.332 -2016-02-20 05:00:00,0.276,0.33799999999999997,0.332 -2016-02-20 06:00:00,0.276,0.33799999999999997,0.332 -2016-02-20 07:00:00,0.27399999999999997,0.33799999999999997,0.33299999999999996 -2016-02-20 08:00:00,0.266,0.33799999999999997,0.335 -2016-02-20 09:00:00,0.265,0.33799999999999997,0.336 -2016-02-20 10:00:00,0.265,0.337,0.336 -2016-02-20 11:00:00,0.264,0.337,0.336 -2016-02-20 12:00:00,0.264,0.336,0.335 -2016-02-20 13:00:00,0.265,0.336,0.336 -2016-02-20 14:00:00,0.267,0.336,0.336 -2016-02-20 15:00:00,0.267,0.336,0.336 -2016-02-20 16:00:00,0.268,0.336,0.336 -2016-02-20 17:00:00,0.27,0.336,0.336 -2016-02-20 18:00:00,0.275,0.336,0.336 -2016-02-20 19:00:00,0.285,0.336,0.336 -2016-02-20 20:00:00,0.289,0.336,0.336 -2016-02-20 21:00:00,0.29,0.335,0.337 -2016-02-20 22:00:00,0.29100000000000004,0.33399999999999996,0.33899999999999997 -2016-02-20 23:00:00,0.29100000000000004,0.33399999999999996,0.342 -2016-02-21 00:00:00,0.292,0.33399999999999996,0.35200000000000004 -2016-02-21 01:00:00,0.29,0.33399999999999996,0.36200000000000004 -2016-02-21 02:00:00,0.289,0.33399999999999996,0.363 -2016-02-21 03:00:00,0.287,0.33399999999999996,0.363 -2016-02-21 04:00:00,0.28600000000000003,0.33399999999999996,0.363 -2016-02-21 05:00:00,0.284,0.33399999999999996,0.363 -2016-02-21 06:00:00,0.282,0.33399999999999996,0.364 -2016-02-21 07:00:00,0.27899999999999997,0.33299999999999996,0.364 -2016-02-21 08:00:00,0.27899999999999997,0.33299999999999996,0.364 -2016-02-21 09:00:00,0.27899999999999997,0.33299999999999996,0.364 -2016-02-21 10:00:00,0.28,0.332,0.364 -2016-02-21 11:00:00,0.282,0.332,0.364 -2016-02-21 12:00:00,0.281,0.332,0.365 -2016-02-21 13:00:00,0.282,0.332,0.365 -2016-02-21 14:00:00,0.284,0.332,0.364 -2016-02-21 15:00:00,0.282,0.332,0.364 -2016-02-21 16:00:00,0.281,0.332,0.364 -2016-02-21 17:00:00,0.28600000000000003,0.331,0.365 -2016-02-21 18:00:00,0.29,0.331,0.365 -2016-02-21 19:00:00,0.29100000000000004,0.331,0.365 -2016-02-21 20:00:00,0.292,0.331,0.365 -2016-02-21 21:00:00,0.292,0.331,0.365 -2016-02-21 22:00:00,0.292,0.331,0.365 -2016-02-21 23:00:00,0.292,0.331,0.365 -2016-02-22 00:00:00,0.29100000000000004,0.331,0.365 -2016-02-22 01:00:00,0.29100000000000004,0.331,0.365 -2016-02-22 02:00:00,0.29100000000000004,0.331,0.365 -2016-02-22 03:00:00,0.29,0.331,0.365 -2016-02-22 04:00:00,0.29,0.331,0.365 -2016-02-22 05:00:00,0.29,0.33,0.365 -2016-02-22 06:00:00,0.289,0.33,0.365 -2016-02-22 07:00:00,0.289,0.33,0.365 -2016-02-22 08:00:00,0.28800000000000003,0.32899999999999996,0.365 -2016-02-22 09:00:00,0.28800000000000003,0.32899999999999996,0.365 -2016-02-22 10:00:00,0.28800000000000003,0.32899999999999996,0.365 -2016-02-22 11:00:00,0.287,0.32899999999999996,0.365 -2016-02-22 12:00:00,0.287,0.32899999999999996,0.365 -2016-02-22 13:00:00,0.287,0.32899999999999996,0.365 -2016-02-22 14:00:00,0.287,0.32899999999999996,0.365 -2016-02-22 15:00:00,0.287,0.32799999999999996,0.365 -2016-02-22 16:00:00,0.285,0.327,0.365 -2016-02-22 17:00:00,0.27699999999999997,0.327,0.366 -2016-02-22 18:00:00,0.276,0.327,0.366 -2016-02-22 19:00:00,0.276,0.327,0.364 -2016-02-22 20:00:00,0.27699999999999997,0.327,0.364 -2016-02-22 21:00:00,0.278,0.327,0.364 -2016-02-22 22:00:00,0.285,0.327,0.363 -2016-02-22 23:00:00,0.28800000000000003,0.327,0.363 -2016-02-23 00:00:00,0.29,0.327,0.363 -2016-02-23 01:00:00,0.29100000000000004,0.327,0.363 -2016-02-23 02:00:00,0.29,0.327,0.364 -2016-02-23 03:00:00,0.289,0.327,0.364 -2016-02-23 04:00:00,0.287,0.327,0.364 -2016-02-23 05:00:00,0.287,0.327,0.365 -2016-02-23 06:00:00,0.287,0.327,0.365 -2016-02-23 07:00:00,0.287,0.327,0.365 -2016-02-23 08:00:00,0.287,0.327,0.366 -2016-02-23 09:00:00,0.287,0.327,0.37200000000000005 -2016-02-23 10:00:00,0.287,0.327,0.375 -2016-02-23 11:00:00,0.287,0.327,0.375 -2016-02-23 12:00:00,0.284,0.327,0.376 -2016-02-23 13:00:00,0.282,0.326,0.376 -2016-02-23 14:00:00,0.281,0.326,0.377 -2016-02-23 15:00:00,0.282,0.326,0.377 -2016-02-23 16:00:00,0.28600000000000003,0.326,0.37799999999999995 -2016-02-23 17:00:00,0.28800000000000003,0.326,0.37799999999999995 -2016-02-23 18:00:00,0.289,0.326,0.37799999999999995 -2016-02-23 19:00:00,0.28600000000000003,0.326,0.37799999999999995 -2016-02-23 20:00:00,0.278,0.326,0.377 -2016-02-23 21:00:00,0.278,0.326,0.377 -2016-02-23 22:00:00,0.27699999999999997,0.326,0.37799999999999995 -2016-02-23 23:00:00,0.27699999999999997,0.326,0.37799999999999995 -2016-02-24 00:00:00,0.276,0.326,0.37799999999999995 -2016-02-24 01:00:00,0.276,0.326,0.37799999999999995 -2016-02-24 02:00:00,0.276,0.326,0.37799999999999995 -2016-02-24 03:00:00,0.27899999999999997,0.326,0.379 -2016-02-24 04:00:00,0.275,0.326,0.37799999999999995 -2016-02-24 05:00:00,0.28,0.326,0.379 -2016-02-24 06:00:00,0.284,0.326,0.379 -2016-02-24 07:00:00,0.284,0.326,0.38 -2016-02-24 08:00:00,0.284,0.326,0.38 -2016-02-24 09:00:00,0.278,0.326,0.379 -2016-02-24 10:00:00,0.27399999999999997,0.326,0.37799999999999995 -2016-02-24 11:00:00,0.27399999999999997,0.326,0.37799999999999995 -2016-02-24 12:00:00,0.27399999999999997,0.326,0.379 -2016-02-24 13:00:00,0.275,0.326,0.379 -2016-02-24 14:00:00,0.276,0.326,0.379 -2016-02-24 15:00:00,0.27399999999999997,0.326,0.379 -2016-02-24 16:00:00,0.27899999999999997,0.326,0.379 -2016-02-24 17:00:00,0.28600000000000003,0.326,0.379 -2016-02-24 18:00:00,0.28800000000000003,0.326,0.38 -2016-02-24 19:00:00,0.28800000000000003,0.326,0.38 -2016-02-24 20:00:00,0.289,0.326,0.38 -2016-02-24 21:00:00,0.29,0.326,0.38 -2016-02-24 22:00:00,0.29,0.326,0.38 -2016-02-24 23:00:00,0.29,0.326,0.38 -2016-02-25 00:00:00,0.289,0.325,0.38 -2016-02-25 01:00:00,0.28800000000000003,0.32299999999999995,0.38 -2016-02-25 02:00:00,0.28800000000000003,0.322,0.38 -2016-02-25 03:00:00,0.287,0.322,0.381 -2016-02-25 04:00:00,0.287,0.322,0.381 -2016-02-25 05:00:00,0.287,0.322,0.381 -2016-02-25 06:00:00,0.287,0.322,0.381 -2016-02-25 07:00:00,0.287,0.32299999999999995,0.381 -2016-02-25 08:00:00,0.28600000000000003,0.32299999999999995,0.381 -2016-02-25 09:00:00,0.28600000000000003,0.32299999999999995,0.381 -2016-02-25 10:00:00,0.27899999999999997,0.324,0.381 -2016-02-25 11:00:00,0.275,0.324,0.381 -2016-02-25 12:00:00,0.278,0.324,0.381 -2016-02-25 13:00:00,0.27899999999999997,0.324,0.381 -2016-02-25 14:00:00,0.282,0.32299999999999995,0.381 -2016-02-25 15:00:00,0.28300000000000003,0.321,0.381 -2016-02-25 16:00:00,0.28300000000000003,0.318,0.381 -2016-02-25 17:00:00,0.284,0.32,0.381 -2016-02-25 18:00:00,0.284,0.32299999999999995,0.381 -2016-02-25 19:00:00,0.284,0.324,0.382 -2016-02-25 20:00:00,0.284,0.324,0.382 -2016-02-25 21:00:00,0.284,0.326,0.382 -2016-02-25 22:00:00,0.284,0.326,0.382 -2016-02-25 23:00:00,0.28300000000000003,0.326,0.382 -2016-02-26 00:00:00,0.28300000000000003,0.326,0.382 -2016-02-26 01:00:00,0.28300000000000003,0.326,0.382 -2016-02-26 02:00:00,0.28300000000000003,0.326,0.382 -2016-02-26 03:00:00,0.28300000000000003,0.324,0.382 -2016-02-26 04:00:00,0.28300000000000003,0.324,0.382 -2016-02-26 05:00:00,0.28300000000000003,0.324,0.382 -2016-02-26 06:00:00,0.28300000000000003,0.324,0.382 -2016-02-26 07:00:00,0.28300000000000003,0.324,0.382 -2016-02-26 08:00:00,0.28300000000000003,0.325,0.382 -2016-02-26 09:00:00,0.282,0.326,0.382 -2016-02-26 10:00:00,0.282,0.326,0.382 -2016-02-26 11:00:00,0.282,0.326,0.382 -2016-02-26 12:00:00,0.282,0.326,0.382 -2016-02-26 13:00:00,0.282,0.326,0.382 -2016-02-26 14:00:00,0.281,0.326,0.382 -2016-02-26 15:00:00,0.282,0.326,0.382 -2016-02-26 16:00:00,0.282,0.326,0.382 -2016-02-26 17:00:00,0.282,0.326,0.382 -2016-02-26 18:00:00,0.282,0.326,0.382 -2016-02-26 19:00:00,0.282,0.326,0.382 -2016-02-26 20:00:00,0.282,0.326,0.382 -2016-02-26 21:00:00,0.282,0.326,0.382 -2016-02-26 22:00:00,0.281,0.326,0.382 -2016-02-26 23:00:00,0.281,0.326,0.382 -2016-02-27 00:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 01:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 02:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 03:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 04:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 05:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 06:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 07:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 08:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 09:00:00,0.281,0.326,0.38299999999999995 -2016-02-27 10:00:00,0.28,0.326,0.38299999999999995 -2016-02-27 11:00:00,0.28,0.326,0.38299999999999995 -2016-02-27 12:00:00,0.28,0.325,0.38299999999999995 -2016-02-27 13:00:00,0.28,0.324,0.38299999999999995 -2016-02-27 14:00:00,0.28,0.324,0.38299999999999995 -2016-02-27 15:00:00,0.27899999999999997,0.324,0.38299999999999995 -2016-02-27 16:00:00,0.27899999999999997,0.324,0.38299999999999995 -2016-02-27 17:00:00,0.28,0.324,0.38299999999999995 -2016-02-27 18:00:00,0.27899999999999997,0.325,0.38299999999999995 -2016-02-27 19:00:00,0.28,0.325,0.38299999999999995 -2016-02-27 20:00:00,0.28,0.32299999999999995,0.38299999999999995 -2016-02-27 21:00:00,0.28,0.32,0.38299999999999995 -2016-02-27 22:00:00,0.28,0.32,0.38299999999999995 -2016-02-27 23:00:00,0.28,0.321,0.38299999999999995 -2016-02-28 00:00:00,0.28,0.322,0.38299999999999995 -2016-02-28 01:00:00,0.27899999999999997,0.325,0.38299999999999995 -2016-02-28 02:00:00,0.27899999999999997,0.32799999999999996,0.38299999999999995 -2016-02-28 03:00:00,0.27899999999999997,0.327,0.38299999999999995 -2016-02-28 04:00:00,0.27899999999999997,0.32799999999999996,0.38299999999999995 -2016-02-28 05:00:00,0.27899999999999997,0.332,0.38299999999999995 -2016-02-28 06:00:00,0.27899999999999997,0.33799999999999997,0.384 -2016-02-28 07:00:00,0.27899999999999997,0.33799999999999997,0.384 -2016-02-28 08:00:00,0.27899999999999997,0.337,0.384 -2016-02-28 09:00:00,0.27899999999999997,0.335,0.384 -2016-02-28 10:00:00,0.278,0.33799999999999997,0.384 -2016-02-28 11:00:00,0.278,0.34,0.384 -2016-02-28 12:00:00,0.278,0.33899999999999997,0.384 -2016-02-28 13:00:00,0.278,0.34,0.384 -2016-02-28 14:00:00,0.278,0.341,0.384 -2016-02-28 15:00:00,0.278,0.34299999999999997,0.384 -2016-02-28 16:00:00,0.278,0.342,0.384 -2016-02-28 17:00:00,0.278,0.341,0.384 -2016-02-28 18:00:00,0.278,0.341,0.384 -2016-02-28 19:00:00,0.278,0.341,0.384 -2016-02-28 20:00:00,0.278,0.341,0.384 -2016-02-28 21:00:00,0.278,0.341,0.384 -2016-02-28 22:00:00,0.278,0.34,0.384 -2016-02-28 23:00:00,0.278,0.33899999999999997,0.384 -2016-02-29 00:00:00,0.278,0.33899999999999997,0.384 -2016-02-29 01:00:00,0.278,0.33799999999999997,0.384 -2016-02-29 02:00:00,0.278,0.33799999999999997,0.384 -2016-02-29 03:00:00,0.278,0.33799999999999997,0.385 -2016-02-29 04:00:00,0.278,0.33799999999999997,0.385 -2016-02-29 05:00:00,0.27699999999999997,0.33799999999999997,0.385 -2016-02-29 06:00:00,0.278,0.337,0.385 -2016-02-29 07:00:00,0.278,0.336,0.385 -2016-02-29 08:00:00,0.27699999999999997,0.336,0.385 -2016-02-29 09:00:00,0.27699999999999997,0.33399999999999996,0.385 -2016-02-29 10:00:00,0.27699999999999997,0.33399999999999996,0.385 -2016-02-29 11:00:00,0.27699999999999997,0.33399999999999996,0.385 -2016-02-29 12:00:00,0.27699999999999997,0.33299999999999996,0.385 -2016-02-29 13:00:00,0.27699999999999997,0.332,0.385 -2016-02-29 14:00:00,0.27699999999999997,0.332,0.385 -2016-02-29 15:00:00,0.27699999999999997,0.332,0.385 -2016-02-29 16:00:00,0.27699999999999997,0.332,0.385 -2016-02-29 17:00:00,0.27699999999999997,0.332,0.385 -2016-02-29 18:00:00,0.27699999999999997,0.325,0.385 -2016-02-29 19:00:00,0.27699999999999997,0.327,0.385 -2016-02-29 20:00:00,0.27699999999999997,0.32899999999999996,0.385 -2016-02-29 21:00:00,0.27699999999999997,0.32799999999999996,0.385 -2016-02-29 22:00:00,0.27699999999999997,0.32799999999999996,0.385 -2016-02-29 23:00:00,0.27699999999999997,0.32899999999999996,0.385 -2016-03-01 00:00:00,0.27699999999999997,0.32899999999999996,0.385 -2016-03-01 01:00:00,0.27699999999999997,0.32899999999999996,0.385 -2016-03-01 02:00:00,0.27699999999999997,0.32899999999999996,0.385 -2016-03-01 03:00:00,0.27699999999999997,0.32899999999999996,0.385 -2016-03-01 04:00:00,0.27699999999999997,0.33,0.385 -2016-03-01 05:00:00,0.27699999999999997,0.332,0.385 -2016-03-01 06:00:00,0.27699999999999997,0.33299999999999996,0.385 -2016-03-01 07:00:00,0.27699999999999997,0.33299999999999996,0.385 -2016-03-01 08:00:00,0.27699999999999997,0.33299999999999996,0.385 -2016-03-01 09:00:00,0.276,0.332,0.385 -2016-03-01 10:00:00,0.276,0.332,0.385 -2016-03-01 11:00:00,0.276,0.332,0.385 -2016-03-01 12:00:00,0.276,0.33,0.385 -2016-03-01 13:00:00,0.276,0.327,0.385 -2016-03-01 14:00:00,0.276,0.327,0.385 -2016-03-01 15:00:00,0.276,0.32899999999999996,0.385 -2016-03-01 16:00:00,0.276,0.32899999999999996,0.385 -2016-03-01 17:00:00,0.276,0.33,0.385 -2016-03-01 18:00:00,0.276,0.327,0.385 -2016-03-01 19:00:00,0.276,0.327,0.385 -2016-03-01 20:00:00,0.276,0.33,0.385 -2016-03-01 21:00:00,0.275,0.331,0.385 -2016-03-01 22:00:00,0.273,0.332,0.385 -2016-03-01 23:00:00,0.27,0.332,0.385 -2016-03-02 00:00:00,0.26899999999999996,0.332,0.385 -2016-03-02 01:00:00,0.26899999999999996,0.332,0.385 -2016-03-02 02:00:00,0.26899999999999996,0.332,0.385 -2016-03-02 03:00:00,0.26899999999999996,0.332,0.385 -2016-03-02 04:00:00,0.27,0.331,0.385 -2016-03-02 05:00:00,0.271,0.331,0.385 -2016-03-02 06:00:00,0.272,0.331,0.384 -2016-03-02 07:00:00,0.272,0.331,0.384 -2016-03-02 08:00:00,0.273,0.331,0.384 -2016-03-02 09:00:00,0.27399999999999997,0.331,0.384 -2016-03-02 10:00:00,0.275,0.331,0.384 -2016-03-02 11:00:00,0.271,0.331,0.384 -2016-03-02 12:00:00,0.268,0.33,0.38299999999999995 -2016-03-02 13:00:00,0.267,0.327,0.38299999999999995 -2016-03-02 14:00:00,0.265,0.327,0.38299999999999995 -2016-03-02 15:00:00,0.267,0.327,0.384 -2016-03-02 16:00:00,0.271,0.327,0.384 -2016-03-02 17:00:00,0.27399999999999997,0.327,0.384 -2016-03-02 18:00:00,0.275,0.32899999999999996,0.384 -2016-03-02 19:00:00,0.276,0.32899999999999996,0.384 -2016-03-02 20:00:00,0.27699999999999997,0.32899999999999996,0.384 -2016-03-02 21:00:00,0.27699999999999997,0.32899999999999996,0.384 -2016-03-02 22:00:00,0.27699999999999997,0.32899999999999996,0.384 -2016-03-02 23:00:00,0.27699999999999997,0.32899999999999996,0.384 -2016-03-03 00:00:00,0.272,0.32899999999999996,0.384 -2016-03-03 01:00:00,0.272,0.32899999999999996,0.384 -2016-03-03 02:00:00,0.273,0.32899999999999996,0.384 -2016-03-03 03:00:00,0.275,0.32899999999999996,0.384 -2016-03-03 04:00:00,0.276,0.32899999999999996,0.384 -2016-03-03 05:00:00,0.27699999999999997,0.32899999999999996,0.384 -2016-03-03 06:00:00,0.27699999999999997,0.32799999999999996,0.384 -2016-03-03 07:00:00,0.278,0.327,0.384 -2016-03-03 08:00:00,0.278,0.327,0.384 -2016-03-03 09:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 10:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 11:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 12:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 13:00:00,0.27899999999999997,0.326,0.384 -2016-03-03 14:00:00,0.27899999999999997,0.326,0.384 -2016-03-03 15:00:00,0.27899999999999997,0.326,0.384 -2016-03-03 16:00:00,0.27899999999999997,0.326,0.384 -2016-03-03 17:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 18:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 19:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 20:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 21:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 22:00:00,0.27899999999999997,0.327,0.384 -2016-03-03 23:00:00,0.27899999999999997,0.327,0.385 -2016-03-04 00:00:00,0.27899999999999997,0.327,0.385 -2016-03-04 01:00:00,0.27899999999999997,0.327,0.385 -2016-03-04 02:00:00,0.27899999999999997,0.326,0.385 -2016-03-04 03:00:00,0.27899999999999997,0.326,0.385 -2016-03-04 04:00:00,0.27899999999999997,0.326,0.385 -2016-03-04 05:00:00,0.27899999999999997,0.326,0.385 -2016-03-04 06:00:00,0.27899999999999997,0.326,0.384 -2016-03-04 07:00:00,0.27899999999999997,0.326,0.384 -2016-03-04 08:00:00,0.27899999999999997,0.326,0.384 -2016-03-04 09:00:00,0.27699999999999997,0.326,0.385 -2016-03-04 10:00:00,0.275,0.326,0.385 -2016-03-04 11:00:00,0.276,0.326,0.385 -2016-03-04 12:00:00,0.27699999999999997,0.326,0.385 -2016-03-04 13:00:00,0.278,0.326,0.384 -2016-03-04 14:00:00,0.278,0.326,0.384 -2016-03-04 15:00:00,0.278,0.326,0.384 -2016-03-04 16:00:00,0.276,0.326,0.384 -2016-03-04 17:00:00,0.267,0.326,0.384 -2016-03-04 18:00:00,0.267,0.326,0.384 -2016-03-04 19:00:00,0.268,0.326,0.384 -2016-03-04 20:00:00,0.26899999999999996,0.326,0.384 -2016-03-04 21:00:00,0.272,0.326,0.38299999999999995 -2016-03-04 22:00:00,0.276,0.326,0.38299999999999995 -2016-03-04 23:00:00,0.278,0.326,0.38299999999999995 -2016-03-05 00:00:00,0.278,0.326,0.38299999999999995 -2016-03-05 01:00:00,0.281,0.325,0.38299999999999995 -2016-03-05 02:00:00,0.28300000000000003,0.324,0.38299999999999995 -2016-03-05 03:00:00,0.28300000000000003,0.324,0.38299999999999995 -2016-03-05 04:00:00,0.281,0.324,0.38299999999999995 -2016-03-05 05:00:00,0.281,0.324,0.382 -2016-03-05 06:00:00,0.281,0.324,0.382 -2016-03-05 07:00:00,0.282,0.324,0.382 -2016-03-05 08:00:00,0.28300000000000003,0.324,0.382 -2016-03-05 09:00:00,0.28300000000000003,0.324,0.38299999999999995 -2016-03-05 10:00:00,0.282,0.324,0.38299999999999995 -2016-03-05 11:00:00,0.28,0.324,0.38299999999999995 -2016-03-05 12:00:00,0.28,0.324,0.384 -2016-03-05 13:00:00,0.28300000000000003,0.324,0.384 -2016-03-05 14:00:00,0.28600000000000003,0.324,0.384 -2016-03-05 15:00:00,0.28800000000000003,0.324,0.384 -2016-03-05 16:00:00,0.289,0.324,0.384 -2016-03-05 17:00:00,0.29,0.324,0.384 -2016-03-05 18:00:00,0.29,0.324,0.384 -2016-03-05 19:00:00,0.29,0.324,0.385 -2016-03-05 20:00:00,0.289,0.324,0.385 -2016-03-05 21:00:00,0.289,0.324,0.385 -2016-03-05 22:00:00,0.28800000000000003,0.324,0.385 -2016-03-05 23:00:00,0.28800000000000003,0.324,0.385 -2016-03-06 00:00:00,0.28800000000000003,0.324,0.385 -2016-03-06 01:00:00,0.287,0.324,0.385 -2016-03-06 02:00:00,0.287,0.324,0.385 -2016-03-06 03:00:00,0.287,0.324,0.385 -2016-03-06 04:00:00,0.287,0.324,0.385 -2016-03-06 05:00:00,0.28600000000000003,0.324,0.385 -2016-03-06 06:00:00,0.285,0.324,0.385 -2016-03-06 07:00:00,0.285,0.324,0.385 -2016-03-06 08:00:00,0.285,0.324,0.385 -2016-03-06 09:00:00,0.284,0.324,0.385 -2016-03-06 10:00:00,0.284,0.324,0.385 -2016-03-06 11:00:00,0.284,0.324,0.385 -2016-03-06 12:00:00,0.284,0.324,0.385 -2016-03-06 13:00:00,0.284,0.324,0.385 -2016-03-06 14:00:00,0.282,0.324,0.385 -2016-03-06 15:00:00,0.27399999999999997,0.324,0.384 -2016-03-06 16:00:00,0.275,0.324,0.384 -2016-03-06 17:00:00,0.27699999999999997,0.324,0.384 -2016-03-06 18:00:00,0.276,0.32299999999999995,0.384 -2016-03-06 19:00:00,0.27699999999999997,0.32299999999999995,0.384 -2016-03-06 20:00:00,0.27699999999999997,0.32299999999999995,0.385 -2016-03-06 21:00:00,0.278,0.32299999999999995,0.385 -2016-03-06 22:00:00,0.27699999999999997,0.32299999999999995,0.385 -2016-03-06 23:00:00,0.27699999999999997,0.32299999999999995,0.385 -2016-03-07 00:00:00,0.27699999999999997,0.32299999999999995,0.385 -2016-03-07 01:00:00,0.278,0.32299999999999995,0.385 -2016-03-07 02:00:00,0.281,0.32299999999999995,0.385 -2016-03-07 03:00:00,0.285,0.32299999999999995,0.385 -2016-03-07 04:00:00,0.28600000000000003,0.32299999999999995,0.385 -2016-03-07 05:00:00,0.285,0.32299999999999995,0.385 -2016-03-07 06:00:00,0.285,0.32299999999999995,0.386 -2016-03-07 07:00:00,0.284,0.322,0.386 -2016-03-07 08:00:00,0.28300000000000003,0.322,0.386 -2016-03-07 09:00:00,0.278,0.322,0.385 -2016-03-07 10:00:00,0.275,0.322,0.385 -2016-03-07 11:00:00,0.276,0.322,0.385 -2016-03-07 12:00:00,0.27899999999999997,0.322,0.386 -2016-03-07 13:00:00,0.282,0.322,0.386 -2016-03-07 14:00:00,0.282,0.322,0.386 -2016-03-07 15:00:00,0.278,0.322,0.386 -2016-03-07 16:00:00,0.278,0.322,0.386 -2016-03-07 17:00:00,0.282,0.322,0.386 -2016-03-07 18:00:00,0.284,0.322,0.386 -2016-03-07 19:00:00,0.285,0.322,0.386 -2016-03-07 20:00:00,0.28600000000000003,0.322,0.386 -2016-03-07 21:00:00,0.28600000000000003,0.322,0.386 -2016-03-07 22:00:00,0.28600000000000003,0.322,0.386 -2016-03-07 23:00:00,0.285,0.322,0.386 -2016-03-08 00:00:00,0.285,0.322,0.387 -2016-03-08 01:00:00,0.284,0.322,0.387 -2016-03-08 02:00:00,0.284,0.322,0.387 -2016-03-08 03:00:00,0.284,0.322,0.387 -2016-03-08 04:00:00,0.284,0.322,0.387 -2016-03-08 05:00:00,0.284,0.322,0.387 -2016-03-08 06:00:00,0.28300000000000003,0.322,0.387 -2016-03-08 07:00:00,0.28300000000000003,0.322,0.387 -2016-03-08 08:00:00,0.282,0.322,0.387 -2016-03-08 09:00:00,0.281,0.322,0.387 -2016-03-08 10:00:00,0.27699999999999997,0.322,0.387 -2016-03-08 11:00:00,0.276,0.322,0.387 -2016-03-08 12:00:00,0.27699999999999997,0.322,0.387 -2016-03-08 13:00:00,0.27899999999999997,0.322,0.387 -2016-03-08 14:00:00,0.28,0.322,0.387 -2016-03-08 15:00:00,0.281,0.322,0.387 -2016-03-08 16:00:00,0.281,0.322,0.387 -2016-03-08 17:00:00,0.282,0.322,0.387 -2016-03-08 18:00:00,0.282,0.322,0.387 -2016-03-08 19:00:00,0.282,0.322,0.387 -2016-03-08 20:00:00,0.282,0.322,0.38799999999999996 -2016-03-08 21:00:00,0.281,0.322,0.38799999999999996 -2016-03-08 22:00:00,0.281,0.322,0.38799999999999996 -2016-03-08 23:00:00,0.281,0.322,0.38799999999999996 -2016-03-09 00:00:00,0.281,0.321,0.38799999999999996 -2016-03-09 01:00:00,0.281,0.321,0.38799999999999996 -2016-03-09 02:00:00,0.281,0.321,0.38799999999999996 -2016-03-09 03:00:00,0.28,0.321,0.387 -2016-03-09 04:00:00,0.28,0.321,0.387 -2016-03-09 05:00:00,0.28,0.321,0.387 -2016-03-09 06:00:00,0.28,0.321,0.387 -2016-03-09 07:00:00,0.28,0.321,0.387 -2016-03-09 08:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 09:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 10:00:00,0.27899999999999997,0.321,0.38799999999999996 -2016-03-09 11:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 12:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 13:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 14:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 15:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 16:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 17:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 18:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 19:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 20:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 21:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 22:00:00,0.27899999999999997,0.321,0.387 -2016-03-09 23:00:00,0.27899999999999997,0.321,0.387 -2016-03-10 00:00:00,0.27899999999999997,0.321,0.387 -2016-03-10 01:00:00,0.27899999999999997,0.321,0.387 -2016-03-10 02:00:00,0.27899999999999997,0.321,0.387 -2016-03-10 03:00:00,0.27899999999999997,0.321,0.387 -2016-03-10 04:00:00,0.27899999999999997,0.321,0.387 -2016-03-10 05:00:00,0.27899999999999997,0.321,0.387 -2016-03-10 06:00:00,0.27899999999999997,0.321,0.38799999999999996 -2016-03-10 07:00:00,0.278,0.321,0.387 -2016-03-10 08:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 09:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 10:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 11:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 12:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 13:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-10 14:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-10 15:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-10 16:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 17:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 18:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 19:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 20:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 21:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 22:00:00,0.278,0.321,0.38799999999999996 -2016-03-10 23:00:00,0.278,0.321,0.38799999999999996 -2016-03-11 00:00:00,0.278,0.321,0.38799999999999996 -2016-03-11 01:00:00,0.278,0.321,0.38799999999999996 -2016-03-11 02:00:00,0.278,0.321,0.38799999999999996 -2016-03-11 03:00:00,0.278,0.321,0.38799999999999996 -2016-03-11 04:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 05:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 06:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 07:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 08:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 09:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 10:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 11:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 12:00:00,0.27699999999999997,0.32,0.38799999999999996 -2016-03-11 13:00:00,0.27699999999999997,0.319,0.38799999999999996 -2016-03-11 14:00:00,0.276,0.32,0.38799999999999996 -2016-03-11 15:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 16:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 17:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 18:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 19:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 20:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 21:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 22:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-11 23:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-12 00:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-12 01:00:00,0.27699999999999997,0.321,0.38799999999999996 -2016-03-12 02:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 03:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 04:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 05:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 06:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 07:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 08:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 09:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 10:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 11:00:00,0.276,0.321,0.38799999999999996 -2016-03-12 12:00:00,0.276,0.32,0.387 -2016-03-12 13:00:00,0.276,0.319,0.387 -2016-03-12 14:00:00,0.276,0.32,0.387 -2016-03-12 15:00:00,0.276,0.32,0.387 -2016-03-12 16:00:00,0.276,0.32,0.387 -2016-03-12 17:00:00,0.276,0.32,0.387 -2016-03-12 18:00:00,0.276,0.32,0.387 -2016-03-12 19:00:00,0.276,0.32,0.387 -2016-03-12 20:00:00,0.276,0.321,0.385 -2016-03-12 21:00:00,0.276,0.321,0.384 -2016-03-12 22:00:00,0.276,0.321,0.38299999999999995 -2016-03-12 23:00:00,0.275,0.321,0.38299999999999995 -2016-03-13 00:00:00,0.275,0.321,0.38299999999999995 -2016-03-13 01:00:00,0.275,0.321,0.38299999999999995 -2016-03-13 02:00:00,0.275,0.321,0.382 -2016-03-13 03:00:00,0.275,0.321,0.382 -2016-03-13 04:00:00,0.275,0.321,0.381 -2016-03-13 05:00:00,0.275,0.321,0.381 -2016-03-13 06:00:00,0.275,0.321,0.381 -2016-03-13 07:00:00,0.275,0.321,0.381 -2016-03-13 08:00:00,0.275,0.321,0.38 -2016-03-13 09:00:00,0.275,0.321,0.38 -2016-03-13 10:00:00,0.275,0.321,0.379 -2016-03-13 11:00:00,0.275,0.321,0.379 -2016-03-13 12:00:00,0.275,0.321,0.379 -2016-03-13 13:00:00,0.275,0.321,0.379 -2016-03-13 14:00:00,0.275,0.32,0.379 -2016-03-13 15:00:00,0.275,0.321,0.379 -2016-03-13 16:00:00,0.275,0.321,0.379 -2016-03-13 17:00:00,0.275,0.321,0.379 -2016-03-13 18:00:00,0.275,0.321,0.379 -2016-03-13 19:00:00,0.275,0.321,0.37799999999999995 -2016-03-13 20:00:00,0.275,0.321,0.37799999999999995 -2016-03-13 21:00:00,0.275,0.321,0.37799999999999995 -2016-03-13 22:00:00,0.275,0.321,0.37799999999999995 -2016-03-13 23:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 00:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 01:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 02:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 03:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 04:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 05:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 06:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 07:00:00,0.27399999999999997,0.321,0.37799999999999995 -2016-03-14 08:00:00,0.275,0.321,0.37799999999999995 -2016-03-14 09:00:00,0.275,0.32,0.37799999999999995 -2016-03-14 10:00:00,0.27399999999999997,0.32,0.37799999999999995 -2016-03-14 11:00:00,0.27399999999999997,0.32,0.37799999999999995 -2016-03-14 12:00:00,0.27399999999999997,0.32,0.37799999999999995 -2016-03-14 13:00:00,0.27399999999999997,0.32,0.37799999999999995 -2016-03-14 14:00:00,0.27399999999999997,0.32,0.377 -2016-03-14 15:00:00,0.27399999999999997,0.32,0.377 -2016-03-14 16:00:00,0.27399999999999997,0.32,0.377 -2016-03-14 17:00:00,0.27399999999999997,0.32,0.376 -2016-03-14 18:00:00,0.27399999999999997,0.32,0.376 -2016-03-14 19:00:00,0.27399999999999997,0.32,0.376 -2016-03-14 20:00:00,0.27399999999999997,0.32,0.376 -2016-03-14 21:00:00,0.27399999999999997,0.32,0.376 -2016-03-14 22:00:00,0.27399999999999997,0.32,0.376 -2016-03-14 23:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 00:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 01:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 02:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 03:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 04:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 05:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 06:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 07:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 08:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 09:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 10:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 11:00:00,0.27399999999999997,0.319,0.376 -2016-03-15 12:00:00,0.273,0.32,0.376 -2016-03-15 13:00:00,0.273,0.32,0.376 -2016-03-15 14:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 15:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 16:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 17:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 18:00:00,0.273,0.32,0.376 -2016-03-15 19:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 20:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 21:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 22:00:00,0.27399999999999997,0.32,0.376 -2016-03-15 23:00:00,0.27399999999999997,0.32,0.376 -2016-03-16 00:00:00,0.27399999999999997,0.32,0.375 -2016-03-16 01:00:00,0.273,0.32,0.375 -2016-03-16 02:00:00,0.273,0.32,0.375 -2016-03-16 03:00:00,0.27399999999999997,0.32,0.375 -2016-03-16 04:00:00,0.27399999999999997,0.32,0.375 -2016-03-16 05:00:00,0.27399999999999997,0.32,0.375 -2016-03-16 06:00:00,0.273,0.32,0.375 -2016-03-16 07:00:00,0.27399999999999997,0.32,0.375 -2016-03-16 08:00:00,0.273,0.319,0.375 -2016-03-16 09:00:00,0.273,0.319,0.375 -2016-03-16 10:00:00,0.273,0.319,0.375 -2016-03-16 11:00:00,0.273,0.319,0.375 -2016-03-16 12:00:00,0.273,0.319,0.375 -2016-03-16 13:00:00,0.273,0.319,0.375 -2016-03-16 14:00:00,0.273,0.319,0.375 -2016-03-16 15:00:00,0.273,0.319,0.375 -2016-03-16 16:00:00,0.273,0.319,0.375 -2016-03-16 17:00:00,0.273,0.319,0.375 -2016-03-16 18:00:00,0.273,0.319,0.375 -2016-03-16 19:00:00,0.273,0.319,0.375 -2016-03-16 20:00:00,0.273,0.319,0.375 -2016-03-16 21:00:00,0.273,0.319,0.375 -2016-03-16 22:00:00,0.273,0.319,0.375 -2016-03-16 23:00:00,0.273,0.319,0.375 -2016-03-17 00:00:00,0.273,0.319,0.375 -2016-03-17 01:00:00,0.273,0.319,0.375 -2016-03-17 02:00:00,0.273,0.319,0.374 -2016-03-17 03:00:00,0.273,0.319,0.374 -2016-03-17 04:00:00,0.273,0.319,0.374 -2016-03-17 05:00:00,0.273,0.319,0.374 -2016-03-17 06:00:00,0.273,0.319,0.374 -2016-03-17 07:00:00,0.273,0.319,0.374 -2016-03-17 08:00:00,0.273,0.319,0.374 -2016-03-17 09:00:00,0.273,0.319,0.374 -2016-03-17 10:00:00,0.273,0.319,0.375 -2016-03-17 11:00:00,0.273,0.319,0.375 -2016-03-17 12:00:00,0.272,0.319,0.374 -2016-03-17 13:00:00,0.272,0.319,0.374 -2016-03-17 14:00:00,0.272,0.319,0.374 -2016-03-17 15:00:00,0.272,0.319,0.374 -2016-03-17 16:00:00,0.272,0.319,0.374 -2016-03-17 17:00:00,0.272,0.319,0.374 -2016-03-17 18:00:00,0.272,0.319,0.374 -2016-03-17 19:00:00,0.273,0.319,0.374 -2016-03-17 20:00:00,0.273,0.319,0.374 -2016-03-17 21:00:00,0.273,0.319,0.374 -2016-03-17 22:00:00,0.273,0.319,0.374 -2016-03-17 23:00:00,0.273,0.319,0.374 -2016-03-18 00:00:00,0.273,0.319,0.374 -2016-03-18 01:00:00,0.273,0.319,0.374 -2016-03-18 02:00:00,0.272,0.319,0.374 -2016-03-18 03:00:00,0.273,0.319,0.374 -2016-03-18 04:00:00,0.272,0.319,0.374 -2016-03-18 05:00:00,0.272,0.319,0.374 -2016-03-18 06:00:00,0.272,0.319,0.374 -2016-03-18 07:00:00,0.272,0.319,0.374 -2016-03-18 08:00:00,0.272,0.319,0.374 -2016-03-18 09:00:00,0.272,0.319,0.374 -2016-03-18 10:00:00,0.272,0.319,0.375 -2016-03-18 11:00:00,0.272,0.319,0.374 -2016-03-18 12:00:00,0.272,0.319,0.374 -2016-03-18 13:00:00,0.272,0.319,0.374 -2016-03-18 14:00:00,0.272,0.319,0.374 -2016-03-18 15:00:00,0.272,0.319,0.374 -2016-03-18 16:00:00,0.272,0.319,0.373 -2016-03-18 17:00:00,0.272,0.319,0.373 -2016-03-18 18:00:00,0.272,0.319,0.373 -2016-03-18 19:00:00,0.272,0.319,0.373 -2016-03-18 20:00:00,0.272,0.319,0.373 -2016-03-18 21:00:00,0.272,0.319,0.373 -2016-03-18 22:00:00,0.272,0.319,0.373 -2016-03-18 23:00:00,0.272,0.319,0.373 -2016-03-19 00:00:00,0.272,0.319,0.373 -2016-03-19 01:00:00,0.272,0.319,0.373 -2016-03-19 02:00:00,0.272,0.319,0.373 -2016-03-19 03:00:00,0.272,0.319,0.373 -2016-03-19 04:00:00,0.272,0.319,0.373 -2016-03-19 05:00:00,0.272,0.319,0.373 -2016-03-19 06:00:00,0.272,0.319,0.373 -2016-03-19 07:00:00,0.272,0.319,0.373 -2016-03-19 08:00:00,0.272,0.319,0.373 -2016-03-19 09:00:00,0.272,0.319,0.373 -2016-03-19 10:00:00,0.272,0.319,0.373 -2016-03-19 11:00:00,0.272,0.318,0.373 -2016-03-19 12:00:00,0.272,0.316,0.373 -2016-03-19 13:00:00,0.272,0.317,0.373 -2016-03-19 14:00:00,0.272,0.316,0.373 -2016-03-19 15:00:00,0.272,0.315,0.373 -2016-03-19 16:00:00,0.272,0.315,0.373 -2016-03-19 17:00:00,0.272,0.315,0.373 -2016-03-19 18:00:00,0.272,0.314,0.373 -2016-03-19 19:00:00,0.272,0.314,0.373 -2016-03-19 20:00:00,0.272,0.313,0.373 -2016-03-19 21:00:00,0.272,0.315,0.373 -2016-03-19 22:00:00,0.272,0.315,0.373 -2016-03-19 23:00:00,0.272,0.317,0.373 -2016-03-20 00:00:00,0.272,0.317,0.373 -2016-03-20 01:00:00,0.272,0.317,0.373 -2016-03-20 02:00:00,0.272,0.317,0.373 -2016-03-20 03:00:00,0.272,0.317,0.37200000000000005 -2016-03-20 04:00:00,0.272,0.317,0.373 -2016-03-20 05:00:00,0.272,0.317,0.37200000000000005 -2016-03-20 06:00:00,0.272,0.317,0.37200000000000005 -2016-03-20 07:00:00,0.272,0.317,0.37200000000000005 -2016-03-20 08:00:00,0.272,0.318,0.37200000000000005 -2016-03-20 09:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 10:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 11:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 12:00:00,0.272,0.318,0.37200000000000005 -2016-03-20 13:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 14:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 15:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 16:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 17:00:00,0.272,0.319,0.37200000000000005 -2016-03-20 18:00:00,0.272,0.32,0.37200000000000005 -2016-03-20 19:00:00,0.272,0.32,0.37200000000000005 -2016-03-20 20:00:00,0.272,0.32,0.37200000000000005 -2016-03-20 21:00:00,0.272,0.321,0.37200000000000005 -2016-03-20 22:00:00,0.272,0.321,0.37200000000000005 -2016-03-20 23:00:00,0.272,0.321,0.37200000000000005 -2016-03-21 00:00:00,0.271,0.321,0.37200000000000005 -2016-03-21 01:00:00,0.272,0.321,0.37200000000000005 -2016-03-21 02:00:00,0.272,0.321,0.37200000000000005 -2016-03-21 03:00:00,0.271,0.321,0.371 -2016-03-21 04:00:00,0.271,0.321,0.37200000000000005 -2016-03-21 05:00:00,0.272,0.321,0.371 -2016-03-21 06:00:00,0.272,0.32,0.371 -2016-03-21 07:00:00,0.272,0.32,0.371 -2016-03-21 08:00:00,0.271,0.32,0.371 -2016-03-21 09:00:00,0.271,0.32,0.371 -2016-03-21 10:00:00,0.271,0.32,0.371 -2016-03-21 11:00:00,0.271,0.319,0.36700000000000005 -2016-03-21 12:00:00,0.271,0.319,0.36700000000000005 -2016-03-21 13:00:00,0.271,0.316,0.36700000000000005 -2016-03-21 14:00:00,0.272,0.312,0.368 -2016-03-21 15:00:00,0.272,0.316,0.368 -2016-03-21 16:00:00,0.271,0.318,0.36700000000000005 -2016-03-21 17:00:00,0.271,0.319,0.36700000000000005 -2016-03-21 18:00:00,0.272,0.319,0.36700000000000005 -2016-03-21 19:00:00,0.272,0.319,0.36700000000000005 -2016-03-21 20:00:00,0.271,0.32,0.36700000000000005 -2016-03-21 21:00:00,0.271,0.32,0.36700000000000005 -2016-03-21 22:00:00,0.271,0.32,0.36700000000000005 -2016-03-21 23:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 00:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 01:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 02:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 03:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 04:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 05:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 06:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 07:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 08:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 09:00:00,0.271,0.32,0.36700000000000005 -2016-03-22 10:00:00,0.271,0.319,0.36700000000000005 -2016-03-22 11:00:00,0.271,0.319,0.366 -2016-03-22 12:00:00,0.271,0.319,0.366 -2016-03-22 13:00:00,0.271,0.319,0.366 -2016-03-22 14:00:00,0.271,0.319,0.366 -2016-03-22 15:00:00,0.271,0.319,0.366 -2016-03-22 16:00:00,0.271,0.32,0.366 -2016-03-22 17:00:00,0.271,0.319,0.366 -2016-03-22 18:00:00,0.271,0.32,0.366 -2016-03-22 19:00:00,0.271,0.319,0.366 -2016-03-22 20:00:00,0.271,0.315,0.366 -2016-03-22 21:00:00,0.271,0.34299999999999997,0.36700000000000005 -2016-03-22 22:00:00,0.271,0.344,0.368 -2016-03-22 23:00:00,0.27,0.373,0.368 -2016-03-23 00:00:00,0.26899999999999996,0.447,0.368 -2016-03-23 01:00:00,0.26899999999999996,0.45399999999999996,0.368 -2016-03-23 02:00:00,0.26899999999999996,0.41700000000000004,0.368 -2016-03-23 03:00:00,0.26899999999999996,0.36200000000000004,0.368 -2016-03-23 04:00:00,0.26899999999999996,0.363,0.368 -2016-03-23 05:00:00,0.26899999999999996,0.396,0.368 -2016-03-23 06:00:00,0.26899999999999996,0.396,0.368 -2016-03-23 07:00:00,0.26899999999999996,0.381,0.368 -2016-03-23 08:00:00,0.26899999999999996,0.37,0.368 -2016-03-23 09:00:00,0.26899999999999996,0.36700000000000005,0.368 -2016-03-23 10:00:00,0.27,0.366,0.36700000000000005 -2016-03-23 11:00:00,0.27,0.365,0.36700000000000005 -2016-03-23 12:00:00,0.27,0.35600000000000004,0.36700000000000005 -2016-03-23 13:00:00,0.271,0.355,0.36700000000000005 -2016-03-23 14:00:00,0.271,0.353,0.366 -2016-03-23 15:00:00,0.271,0.35200000000000004,0.366 -2016-03-23 16:00:00,0.271,0.35,0.366 -2016-03-23 17:00:00,0.271,0.349,0.366 -2016-03-23 18:00:00,0.271,0.348,0.366 -2016-03-23 19:00:00,0.271,0.348,0.366 -2016-03-23 20:00:00,0.271,0.34700000000000003,0.366 -2016-03-23 21:00:00,0.271,0.345,0.366 -2016-03-23 22:00:00,0.271,0.344,0.366 -2016-03-23 23:00:00,0.271,0.34299999999999997,0.366 -2016-03-24 00:00:00,0.271,0.34299999999999997,0.366 -2016-03-24 01:00:00,0.271,0.341,0.36 -2016-03-24 02:00:00,0.271,0.341,0.354 -2016-03-24 03:00:00,0.271,0.33899999999999997,0.354 -2016-03-24 04:00:00,0.271,0.33899999999999997,0.353 -2016-03-24 05:00:00,0.271,0.336,0.353 -2016-03-24 06:00:00,0.271,0.33399999999999996,0.353 -2016-03-24 07:00:00,0.271,0.33399999999999996,0.353 -2016-03-24 08:00:00,0.271,0.33399999999999996,0.353 -2016-03-24 09:00:00,0.271,0.33399999999999996,0.353 -2016-03-24 10:00:00,0.271,0.33399999999999996,0.353 -2016-03-24 11:00:00,0.271,0.33399999999999996,0.353 -2016-03-24 12:00:00,0.271,0.33399999999999996,0.353 -2016-03-24 13:00:00,0.271,0.327,0.353 -2016-03-24 14:00:00,0.271,0.325,0.353 -2016-03-24 15:00:00,0.271,0.332,0.353 -2016-03-24 16:00:00,0.271,0.341,0.353 -2016-03-24 17:00:00,0.271,0.349,0.353 -2016-03-24 18:00:00,0.271,0.35100000000000003,0.353 -2016-03-24 19:00:00,0.271,0.35100000000000003,0.353 -2016-03-24 20:00:00,0.271,0.349,0.353 -2016-03-24 21:00:00,0.271,0.348,0.353 -2016-03-24 22:00:00,0.271,0.34700000000000003,0.353 -2016-03-24 23:00:00,0.271,0.344,0.35200000000000004 -2016-03-25 00:00:00,0.271,0.344,0.353 -2016-03-25 01:00:00,0.271,0.34299999999999997,0.35200000000000004 -2016-03-25 02:00:00,0.271,0.341,0.35200000000000004 -2016-03-25 03:00:00,0.271,0.341,0.353 -2016-03-25 04:00:00,0.271,0.33899999999999997,0.353 -2016-03-25 05:00:00,0.27,0.33899999999999997,0.353 -2016-03-25 06:00:00,0.27,0.33899999999999997,0.35200000000000004 -2016-03-25 07:00:00,0.27,0.33799999999999997,0.35200000000000004 -2016-03-25 08:00:00,0.27,0.33799999999999997,0.353 -2016-03-25 09:00:00,0.26899999999999996,0.33799999999999997,0.354 -2016-03-25 10:00:00,0.26899999999999996,0.337,0.354 -2016-03-25 11:00:00,0.264,0.336,0.354 -2016-03-25 12:00:00,0.261,0.336,0.355 -2016-03-25 13:00:00,0.26,0.336,0.355 -2016-03-25 14:00:00,0.26,0.335,0.35600000000000004 -2016-03-25 15:00:00,0.26,0.32899999999999996,0.35600000000000004 -2016-03-25 16:00:00,0.26,0.326,0.35600000000000004 -2016-03-25 17:00:00,0.261,0.32899999999999996,0.35700000000000004 -2016-03-25 18:00:00,0.26,0.341,0.35700000000000004 -2016-03-25 19:00:00,0.261,0.342,0.35700000000000004 -2016-03-25 20:00:00,0.261,0.34600000000000003,0.35700000000000004 -2016-03-25 21:00:00,0.262,0.349,0.35700000000000004 -2016-03-25 22:00:00,0.264,0.35100000000000003,0.35700000000000004 -2016-03-25 23:00:00,0.265,0.354,0.35700000000000004 -2016-03-26 00:00:00,0.266,0.355,0.35700000000000004 -2016-03-26 01:00:00,0.267,0.348,0.35700000000000004 -2016-03-26 02:00:00,0.267,0.436,0.35700000000000004 -2016-03-26 03:00:00,0.268,0.457,0.35700000000000004 -2016-03-26 04:00:00,0.268,0.461,0.35700000000000004 -2016-03-26 05:00:00,0.26899999999999996,0.46299999999999997,0.35700000000000004 -2016-03-26 06:00:00,0.26899999999999996,0.46299999999999997,0.35700000000000004 -2016-03-26 07:00:00,0.273,0.46299999999999997,0.35600000000000004 -2016-03-26 08:00:00,0.271,0.46299999999999997,0.35600000000000004 -2016-03-26 09:00:00,0.26899999999999996,0.46299999999999997,0.35700000000000004 -2016-03-26 10:00:00,0.273,0.46299999999999997,0.35600000000000004 -2016-03-26 11:00:00,0.275,0.46299999999999997,0.355 -2016-03-26 12:00:00,0.275,0.462,0.355 -2016-03-26 13:00:00,0.275,0.462,0.354 -2016-03-26 14:00:00,0.275,0.46,0.354 -2016-03-26 15:00:00,0.275,0.46,0.354 -2016-03-26 16:00:00,0.276,0.46,0.354 -2016-03-26 17:00:00,0.276,0.46,0.354 -2016-03-26 18:00:00,0.276,0.45899999999999996,0.354 -2016-03-26 19:00:00,0.276,0.45899999999999996,0.354 -2016-03-26 20:00:00,0.276,0.45799999999999996,0.354 -2016-03-26 21:00:00,0.276,0.45799999999999996,0.354 -2016-03-26 22:00:00,0.276,0.45799999999999996,0.354 -2016-03-26 23:00:00,0.276,0.457,0.354 -2016-03-27 00:00:00,0.275,0.457,0.354 -2016-03-27 01:00:00,0.275,0.456,0.354 -2016-03-27 02:00:00,0.275,0.456,0.354 -2016-03-27 03:00:00,0.275,0.457,0.354 -2016-03-27 04:00:00,0.275,0.45799999999999996,0.354 -2016-03-27 05:00:00,0.275,0.45799999999999996,0.354 -2016-03-27 06:00:00,0.275,0.46,0.354 -2016-03-27 07:00:00,0.275,0.46,0.354 -2016-03-27 08:00:00,0.275,0.461,0.354 -2016-03-27 09:00:00,0.275,0.462,0.354 -2016-03-27 10:00:00,0.272,0.46299999999999997,0.355 -2016-03-27 11:00:00,0.266,0.46299999999999997,0.35600000000000004 -2016-03-27 12:00:00,0.267,0.462,0.35600000000000004 -2016-03-27 13:00:00,0.272,0.462,0.35600000000000004 -2016-03-27 14:00:00,0.275,0.46299999999999997,0.355 -2016-03-27 15:00:00,0.276,0.465,0.354 -2016-03-27 16:00:00,0.276,0.467,0.354 -2016-03-27 17:00:00,0.276,0.467,0.354 -2016-03-27 18:00:00,0.276,0.467,0.353 -2016-03-27 19:00:00,0.27699999999999997,0.46799999999999997,0.353 -2016-03-27 20:00:00,0.276,0.46799999999999997,0.353 -2016-03-27 21:00:00,0.276,0.46799999999999997,0.353 -2016-03-27 22:00:00,0.276,0.47,0.353 -2016-03-27 23:00:00,0.27699999999999997,0.47,0.353 -2016-03-28 00:00:00,0.276,0.47,0.353 -2016-03-28 01:00:00,0.276,0.47,0.353 -2016-03-28 02:00:00,0.276,0.45299999999999996,0.353 -2016-03-28 03:00:00,0.276,0.43700000000000006,0.353 -2016-03-28 04:00:00,0.276,0.42700000000000005,0.353 -2016-03-28 05:00:00,0.276,0.42100000000000004,0.353 -2016-03-28 06:00:00,0.276,0.413,0.353 -2016-03-28 07:00:00,0.276,0.40399999999999997,0.353 -2016-03-28 08:00:00,0.276,0.397,0.353 -2016-03-28 09:00:00,0.276,0.39299999999999996,0.353 -2016-03-28 10:00:00,0.276,0.386,0.353 -2016-03-28 11:00:00,0.276,0.381,0.353 -2016-03-28 12:00:00,0.276,0.37799999999999995,0.353 -2016-03-28 13:00:00,0.276,0.377,0.353 -2016-03-28 14:00:00,0.276,0.375,0.353 -2016-03-28 15:00:00,0.276,0.375,0.353 -2016-03-28 16:00:00,0.276,0.373,0.353 -2016-03-28 17:00:00,0.282,0.373,0.366 -2016-03-28 18:00:00,0.27899999999999997,0.373,0.375 -2016-03-28 19:00:00,0.282,0.36700000000000005,0.374 -2016-03-28 20:00:00,0.29100000000000004,0.358,0.375 -2016-03-28 21:00:00,0.292,0.35600000000000004,0.377 -2016-03-28 22:00:00,0.29100000000000004,0.355,0.37799999999999995 -2016-03-28 23:00:00,0.28600000000000003,0.355,0.37799999999999995 -2016-03-29 00:00:00,0.28800000000000003,0.355,0.37799999999999995 -2016-03-29 01:00:00,0.29,0.353,0.37799999999999995 -2016-03-29 02:00:00,0.287,0.35200000000000004,0.379 -2016-03-29 03:00:00,0.28300000000000003,0.35,0.379 -2016-03-29 04:00:00,0.27899999999999997,0.34600000000000003,0.38 -2016-03-29 05:00:00,0.27899999999999997,0.34600000000000003,0.38 -2016-03-29 06:00:00,0.284,0.345,0.381 -2016-03-29 07:00:00,0.28800000000000003,0.34299999999999997,0.381 -2016-03-29 08:00:00,0.29,0.341,0.381 -2016-03-29 09:00:00,0.29100000000000004,0.34,0.381 -2016-03-29 10:00:00,0.292,0.341,0.382 -2016-03-29 11:00:00,0.292,0.342,0.382 -2016-03-29 12:00:00,0.292,0.34299999999999997,0.382 -2016-03-29 13:00:00,0.29100000000000004,0.344,0.382 -2016-03-29 14:00:00,0.29100000000000004,0.34600000000000003,0.382 -2016-03-29 15:00:00,0.29,0.345,0.382 -2016-03-29 16:00:00,0.29,0.342,0.382 -2016-03-29 17:00:00,0.289,0.344,0.382 -2016-03-29 18:00:00,0.289,0.344,0.382 -2016-03-29 19:00:00,0.289,0.344,0.382 -2016-03-29 20:00:00,0.28800000000000003,0.344,0.382 -2016-03-29 21:00:00,0.28800000000000003,0.344,0.382 -2016-03-29 22:00:00,0.287,0.344,0.382 -2016-03-29 23:00:00,0.28600000000000003,0.344,0.382 -2016-03-30 00:00:00,0.28600000000000003,0.344,0.382 -2016-03-30 01:00:00,0.285,0.34299999999999997,0.382 -2016-03-30 02:00:00,0.28,0.34299999999999997,0.381 -2016-03-30 03:00:00,0.275,0.34299999999999997,0.381 -2016-03-30 04:00:00,0.275,0.34299999999999997,0.381 -2016-03-30 05:00:00,0.27699999999999997,0.341,0.381 -2016-03-30 06:00:00,0.27899999999999997,0.341,0.382 -2016-03-30 07:00:00,0.281,0.33399999999999996,0.382 -2016-03-30 08:00:00,0.28300000000000003,0.337,0.382 -2016-03-30 09:00:00,0.284,0.336,0.382 -2016-03-30 10:00:00,0.27899999999999997,0.33799999999999997,0.382 -2016-03-30 11:00:00,0.278,0.33799999999999997,0.381 -2016-03-30 12:00:00,0.282,0.33899999999999997,0.381 -2016-03-30 13:00:00,0.28300000000000003,0.342,0.381 -2016-03-30 14:00:00,0.28300000000000003,0.342,0.382 -2016-03-30 15:00:00,0.29,0.34299999999999997,0.38299999999999995 -2016-03-30 16:00:00,0.293,0.344,0.38299999999999995 -2016-03-30 17:00:00,0.293,0.344,0.38299999999999995 -2016-03-30 18:00:00,0.292,0.344,0.38299999999999995 -2016-03-30 19:00:00,0.292,0.34299999999999997,0.38299999999999995 -2016-03-30 20:00:00,0.29100000000000004,0.337,0.38299999999999995 -2016-03-30 21:00:00,0.29,0.341,0.38299999999999995 -2016-03-30 22:00:00,0.289,0.344,0.38299999999999995 -2016-03-30 23:00:00,0.28800000000000003,0.34600000000000003,0.38299999999999995 -2016-03-31 00:00:00,0.28800000000000003,0.34700000000000003,0.38299999999999995 -2016-03-31 01:00:00,0.287,0.34700000000000003,0.38299999999999995 -2016-03-31 02:00:00,0.287,0.34700000000000003,0.38299999999999995 -2016-03-31 03:00:00,0.28600000000000003,0.34700000000000003,0.38299999999999995 -2016-03-31 04:00:00,0.28600000000000003,0.34600000000000003,0.38299999999999995 -2016-03-31 05:00:00,0.28600000000000003,0.34600000000000003,0.38299999999999995 -2016-03-31 06:00:00,0.28600000000000003,0.345,0.384 -2016-03-31 07:00:00,0.285,0.344,0.384 -2016-03-31 08:00:00,0.285,0.34299999999999997,0.384 -2016-03-31 09:00:00,0.285,0.341,0.384 -2016-03-31 10:00:00,0.285,0.341,0.384 -2016-03-31 11:00:00,0.284,0.341,0.384 -2016-03-31 12:00:00,0.278,0.342,0.384 -2016-03-31 13:00:00,0.27899999999999997,0.344,0.38299999999999995 -2016-03-31 14:00:00,0.28300000000000003,0.344,0.38299999999999995 -2016-03-31 15:00:00,0.28300000000000003,0.344,0.38299999999999995 -2016-03-31 16:00:00,0.284,0.344,0.38299999999999995 -2016-03-31 17:00:00,0.287,0.344,0.38299999999999995 -2016-03-31 18:00:00,0.29,0.344,0.38299999999999995 -2016-03-31 19:00:00,0.28800000000000003,0.344,0.384 -2016-03-31 20:00:00,0.28300000000000003,0.34299999999999997,0.385 -2016-03-31 21:00:00,0.28,0.34299999999999997,0.385 -2016-03-31 22:00:00,0.285,0.34299999999999997,0.384 -2016-03-31 23:00:00,0.297,0.34299999999999997,0.385 -2016-04-01 00:00:00,0.298,0.34299999999999997,0.386 -2016-04-01 01:00:00,0.395,0.341,0.386 -2016-04-01 02:00:00,0.43,0.341,0.386 -2016-04-01 03:00:00,0.429,0.341,0.386 -2016-04-01 04:00:00,0.429,0.336,0.386 -2016-04-01 05:00:00,0.429,0.33299999999999996,0.386 -2016-04-01 06:00:00,0.428,0.33399999999999996,0.387 -2016-04-01 07:00:00,0.426,0.335,0.387 -2016-04-01 08:00:00,0.42200000000000004,0.336,0.387 -2016-04-01 09:00:00,0.414,0.33299999999999996,0.387 -2016-04-01 10:00:00,0.40299999999999997,0.326,0.38799999999999996 -2016-04-01 11:00:00,0.40299999999999997,0.331,0.38799999999999996 -2016-04-01 12:00:00,0.414,0.335,0.38799999999999996 -2016-04-01 13:00:00,0.42100000000000004,0.33799999999999997,0.389 -2016-04-01 14:00:00,0.424,0.33799999999999997,0.389 -2016-04-01 15:00:00,0.426,0.33799999999999997,0.389 -2016-04-01 16:00:00,0.428,0.33799999999999997,0.389 -2016-04-01 17:00:00,0.43,0.33799999999999997,0.39 -2016-04-01 18:00:00,0.43200000000000005,0.33799999999999997,0.39 -2016-04-01 19:00:00,0.434,0.33799999999999997,0.39 -2016-04-01 20:00:00,0.436,0.33799999999999997,0.39 -2016-04-01 21:00:00,0.43799999999999994,0.33799999999999997,0.391 -2016-04-01 22:00:00,0.43799999999999994,0.33799999999999997,0.391 -2016-04-01 23:00:00,0.425,0.33799999999999997,0.391 -2016-04-02 00:00:00,0.40399999999999997,0.33799999999999997,0.391 -2016-04-02 01:00:00,0.369,0.337,0.391 -2016-04-02 02:00:00,0.34,0.337,0.391 -2016-04-02 03:00:00,0.322,0.337,0.391 -2016-04-02 04:00:00,0.31,0.336,0.392 -2016-04-02 05:00:00,0.306,0.336,0.392 -2016-04-02 06:00:00,0.301,0.336,0.392 -2016-04-02 07:00:00,0.29600000000000004,0.33399999999999996,0.392 -2016-04-02 08:00:00,0.295,0.33399999999999996,0.392 -2016-04-02 09:00:00,0.29100000000000004,0.33399999999999996,0.391 -2016-04-02 10:00:00,0.29,0.33399999999999996,0.392 -2016-04-02 11:00:00,0.29,0.33399999999999996,0.392 -2016-04-02 12:00:00,0.29,0.33299999999999996,0.392 -2016-04-02 13:00:00,0.289,0.33399999999999996,0.392 -2016-04-02 14:00:00,0.289,0.33399999999999996,0.392 -2016-04-02 15:00:00,0.289,0.33399999999999996,0.392 -2016-04-02 16:00:00,0.28800000000000003,0.33399999999999996,0.392 -2016-04-02 17:00:00,0.28800000000000003,0.33299999999999996,0.392 -2016-04-02 18:00:00,0.287,0.33299999999999996,0.392 -2016-04-02 19:00:00,0.287,0.33299999999999996,0.392 -2016-04-02 20:00:00,0.287,0.33299999999999996,0.392 -2016-04-02 21:00:00,0.28600000000000003,0.33299999999999996,0.392 -2016-04-02 22:00:00,0.28600000000000003,0.33299999999999996,0.392 -2016-04-02 23:00:00,0.285,0.332,0.392 -2016-04-03 00:00:00,0.285,0.332,0.39299999999999996 -2016-04-03 01:00:00,0.285,0.332,0.39299999999999996 -2016-04-03 02:00:00,0.284,0.332,0.39299999999999996 -2016-04-03 03:00:00,0.284,0.332,0.39299999999999996 -2016-04-03 04:00:00,0.284,0.332,0.39299999999999996 -2016-04-03 05:00:00,0.284,0.332,0.39299999999999996 -2016-04-03 06:00:00,0.28300000000000003,0.332,0.39299999999999996 -2016-04-03 07:00:00,0.28300000000000003,0.332,0.39299999999999996 -2016-04-03 08:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 09:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 10:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 11:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 12:00:00,0.28300000000000003,0.33,0.39299999999999996 -2016-04-03 13:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 14:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 15:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 16:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 17:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 18:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 19:00:00,0.28300000000000003,0.331,0.39299999999999996 -2016-04-03 20:00:00,0.282,0.331,0.39299999999999996 -2016-04-03 21:00:00,0.282,0.331,0.39299999999999996 -2016-04-03 22:00:00,0.282,0.331,0.39299999999999996 -2016-04-03 23:00:00,0.282,0.331,0.39299999999999996 -2016-04-04 00:00:00,0.281,0.331,0.39299999999999996 -2016-04-04 01:00:00,0.28,0.331,0.392 -2016-04-04 02:00:00,0.27899999999999997,0.331,0.392 -2016-04-04 03:00:00,0.27899999999999997,0.331,0.392 -2016-04-04 04:00:00,0.278,0.331,0.392 -2016-04-04 05:00:00,0.27399999999999997,0.331,0.391 -2016-04-04 06:00:00,0.27,0.331,0.391 -2016-04-04 07:00:00,0.271,0.331,0.391 -2016-04-04 08:00:00,0.272,0.331,0.391 -2016-04-04 09:00:00,0.273,0.331,0.392 -2016-04-04 10:00:00,0.27899999999999997,0.331,0.392 -2016-04-04 11:00:00,0.282,0.33,0.392 -2016-04-04 12:00:00,0.282,0.33,0.392 -2016-04-04 13:00:00,0.28,0.33,0.392 -2016-04-04 14:00:00,0.282,0.33,0.392 -2016-04-04 15:00:00,0.28300000000000003,0.33,0.39299999999999996 -2016-04-04 16:00:00,0.28300000000000003,0.33,0.39299999999999996 -2016-04-04 17:00:00,0.282,0.33,0.39299999999999996 -2016-04-04 18:00:00,0.28300000000000003,0.33,0.39299999999999996 -2016-04-04 19:00:00,0.282,0.33,0.39299999999999996 -2016-04-04 20:00:00,0.282,0.33,0.39299999999999996 -2016-04-04 21:00:00,0.282,0.33,0.39299999999999996 -2016-04-04 22:00:00,0.282,0.33,0.39299999999999996 -2016-04-04 23:00:00,0.281,0.33,0.39299999999999996 -2016-04-05 00:00:00,0.281,0.33,0.392 -2016-04-05 01:00:00,0.281,0.33,0.392 -2016-04-05 02:00:00,0.28,0.33,0.392 -2016-04-05 03:00:00,0.27899999999999997,0.33,0.392 -2016-04-05 04:00:00,0.272,0.33,0.391 -2016-04-05 05:00:00,0.273,0.32899999999999996,0.391 -2016-04-05 06:00:00,0.275,0.32899999999999996,0.391 -2016-04-05 07:00:00,0.278,0.32899999999999996,0.391 -2016-04-05 08:00:00,0.27899999999999997,0.32899999999999996,0.392 -2016-04-05 09:00:00,0.27899999999999997,0.32899999999999996,0.392 -2016-04-05 10:00:00,0.27899999999999997,0.32899999999999996,0.392 -2016-04-05 11:00:00,0.27899999999999997,0.32899999999999996,0.392 -2016-04-05 12:00:00,0.28,0.32899999999999996,0.392 -2016-04-05 13:00:00,0.284,0.32899999999999996,0.392 -2016-04-05 14:00:00,0.28300000000000003,0.32899999999999996,0.392 -2016-04-05 15:00:00,0.285,0.32799999999999996,0.39299999999999996 -2016-04-05 16:00:00,0.284,0.32799999999999996,0.39299999999999996 -2016-04-05 17:00:00,0.275,0.327,0.391 -2016-04-05 18:00:00,0.278,0.327,0.392 -2016-04-05 19:00:00,0.27899999999999997,0.32799999999999996,0.392 -2016-04-05 20:00:00,0.278,0.32799999999999996,0.392 -2016-04-05 21:00:00,0.278,0.32799999999999996,0.39299999999999996 -2016-04-05 22:00:00,0.27699999999999997,0.32899999999999996,0.39299999999999996 -2016-04-05 23:00:00,0.27699999999999997,0.32899999999999996,0.39299999999999996 -2016-04-06 00:00:00,0.276,0.32799999999999996,0.39299999999999996 -2016-04-06 01:00:00,0.276,0.32799999999999996,0.39299999999999996 -2016-04-06 02:00:00,0.275,0.327,0.39299999999999996 -2016-04-06 03:00:00,0.275,0.327,0.39299999999999996 -2016-04-06 04:00:00,0.27399999999999997,0.327,0.39299999999999996 -2016-04-06 05:00:00,0.273,0.327,0.39299999999999996 -2016-04-06 06:00:00,0.273,0.327,0.39299999999999996 -2016-04-06 07:00:00,0.272,0.327,0.39299999999999996 -2016-04-06 08:00:00,0.272,0.327,0.39299999999999996 -2016-04-06 09:00:00,0.275,0.327,0.39299999999999996 -2016-04-06 10:00:00,0.281,0.327,0.39399999999999996 -2016-04-06 11:00:00,0.282,0.327,0.39399999999999996 -2016-04-06 12:00:00,0.28300000000000003,0.327,0.39399999999999996 -2016-04-06 13:00:00,0.28300000000000003,0.327,0.39399999999999996 -2016-04-06 14:00:00,0.28300000000000003,0.327,0.39399999999999996 -2016-04-06 15:00:00,0.28300000000000003,0.327,0.39399999999999996 -2016-04-06 16:00:00,0.28300000000000003,0.327,0.39399999999999996 -2016-04-06 17:00:00,0.28300000000000003,0.327,0.39399999999999996 -2016-04-06 18:00:00,0.282,0.327,0.39399999999999996 -2016-04-06 19:00:00,0.282,0.327,0.39399999999999996 -2016-04-06 20:00:00,0.282,0.327,0.39399999999999996 -2016-04-06 21:00:00,0.282,0.327,0.39399999999999996 -2016-04-06 22:00:00,0.281,0.327,0.39399999999999996 -2016-04-06 23:00:00,0.281,0.324,0.39399999999999996 -2016-04-07 00:00:00,0.281,0.324,0.39399999999999996 -2016-04-07 01:00:00,0.27699999999999997,0.324,0.39399999999999996 -2016-04-07 02:00:00,0.272,0.324,0.39299999999999996 -2016-04-07 03:00:00,0.272,0.324,0.39299999999999996 -2016-04-07 04:00:00,0.272,0.324,0.39299999999999996 -2016-04-07 05:00:00,0.273,0.324,0.39299999999999996 -2016-04-07 06:00:00,0.272,0.324,0.39299999999999996 -2016-04-07 07:00:00,0.26899999999999996,0.324,0.392 -2016-04-07 08:00:00,0.267,0.325,0.39299999999999996 -2016-04-07 09:00:00,0.271,0.325,0.39299999999999996 -2016-04-07 10:00:00,0.27899999999999997,0.324,0.39399999999999996 -2016-04-07 11:00:00,0.28,0.324,0.39399999999999996 -2016-04-07 12:00:00,0.281,0.324,0.39399999999999996 -2016-04-07 13:00:00,0.281,0.324,0.39399999999999996 -2016-04-07 14:00:00,0.281,0.326,0.39399999999999996 -2016-04-07 15:00:00,0.281,0.326,0.39399999999999996 -2016-04-07 16:00:00,0.281,0.326,0.39399999999999996 -2016-04-07 17:00:00,0.281,0.326,0.39399999999999996 -2016-04-07 18:00:00,0.281,0.326,0.39399999999999996 -2016-04-07 19:00:00,0.281,0.326,0.39399999999999996 -2016-04-07 20:00:00,0.28,0.326,0.39399999999999996 -2016-04-07 21:00:00,0.28,0.326,0.39399999999999996 -2016-04-07 22:00:00,0.28,0.326,0.39399999999999996 -2016-04-07 23:00:00,0.28,0.326,0.39399999999999996 -2016-04-08 00:00:00,0.28,0.326,0.39399999999999996 -2016-04-08 01:00:00,0.28,0.326,0.39399999999999996 -2016-04-08 02:00:00,0.27899999999999997,0.326,0.39399999999999996 -2016-04-08 03:00:00,0.27899999999999997,0.326,0.39399999999999996 -2016-04-08 04:00:00,0.27899999999999997,0.326,0.39399999999999996 -2016-04-08 05:00:00,0.27899999999999997,0.326,0.39399999999999996 -2016-04-08 06:00:00,0.27899999999999997,0.326,0.39399999999999996 -2016-04-08 07:00:00,0.27899999999999997,0.326,0.39399999999999996 -2016-04-08 08:00:00,0.27899999999999997,0.326,0.39399999999999996 -2016-04-08 09:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 10:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 11:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 12:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 13:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 14:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 15:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 16:00:00,0.278,0.326,0.39299999999999996 -2016-04-08 17:00:00,0.278,0.326,0.39299999999999996 -2016-04-08 18:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 19:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 20:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 21:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 22:00:00,0.278,0.326,0.39399999999999996 -2016-04-08 23:00:00,0.278,0.326,0.39399999999999996 -2016-04-09 00:00:00,0.278,0.326,0.39399999999999996 -2016-04-09 01:00:00,0.278,0.326,0.39399999999999996 -2016-04-09 02:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 03:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 04:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 05:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 06:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 07:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 08:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 09:00:00,0.276,0.326,0.39399999999999996 -2016-04-09 10:00:00,0.276,0.326,0.39399999999999996 -2016-04-09 11:00:00,0.276,0.325,0.39399999999999996 -2016-04-09 12:00:00,0.276,0.324,0.39299999999999996 -2016-04-09 13:00:00,0.276,0.326,0.39299999999999996 -2016-04-09 14:00:00,0.276,0.326,0.39299999999999996 -2016-04-09 15:00:00,0.27699999999999997,0.326,0.39299999999999996 -2016-04-09 16:00:00,0.276,0.326,0.39299999999999996 -2016-04-09 17:00:00,0.27699999999999997,0.326,0.39299999999999996 -2016-04-09 18:00:00,0.27699999999999997,0.326,0.39299999999999996 -2016-04-09 19:00:00,0.27699999999999997,0.326,0.39299999999999996 -2016-04-09 20:00:00,0.27699999999999997,0.326,0.39299999999999996 -2016-04-09 21:00:00,0.27699999999999997,0.326,0.39399999999999996 -2016-04-09 22:00:00,0.276,0.326,0.39399999999999996 -2016-04-09 23:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 00:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 01:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 02:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 03:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 04:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 05:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 06:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 07:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 08:00:00,0.275,0.326,0.39399999999999996 -2016-04-10 09:00:00,0.275,0.326,0.39399999999999996 -2016-04-10 10:00:00,0.275,0.321,0.39399999999999996 -2016-04-10 11:00:00,0.275,0.319,0.39399999999999996 -2016-04-10 12:00:00,0.275,0.322,0.39399999999999996 -2016-04-10 13:00:00,0.275,0.324,0.39399999999999996 -2016-04-10 14:00:00,0.275,0.32299999999999995,0.39399999999999996 -2016-04-10 15:00:00,0.275,0.324,0.39399999999999996 -2016-04-10 16:00:00,0.276,0.325,0.39399999999999996 -2016-04-10 17:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 18:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 19:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 20:00:00,0.276,0.326,0.39399999999999996 -2016-04-10 21:00:00,0.275,0.326,0.39399999999999996 -2016-04-10 22:00:00,0.275,0.326,0.39399999999999996 -2016-04-10 23:00:00,0.275,0.326,0.39399999999999996 -2016-04-11 00:00:00,0.275,0.326,0.39399999999999996 -2016-04-11 01:00:00,0.275,0.326,0.39399999999999996 -2016-04-11 02:00:00,0.275,0.32299999999999995,0.39399999999999996 -2016-04-11 03:00:00,0.275,0.319,0.39399999999999996 -2016-04-11 04:00:00,0.275,0.316,0.39399999999999996 -2016-04-11 05:00:00,0.275,0.317,0.39399999999999996 -2016-04-11 06:00:00,0.27399999999999997,0.325,0.39399999999999996 -2016-04-11 07:00:00,0.27399999999999997,0.32799999999999996,0.39399999999999996 -2016-04-11 08:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 09:00:00,0.27399999999999997,0.332,0.39399999999999996 -2016-04-11 10:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 11:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 12:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 13:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 14:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 15:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 16:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 17:00:00,0.27399999999999997,0.331,0.39399999999999996 -2016-04-11 18:00:00,0.27399999999999997,0.33,0.39399999999999996 -2016-04-11 19:00:00,0.27399999999999997,0.33,0.39399999999999996 -2016-04-11 20:00:00,0.27399999999999997,0.33,0.39399999999999996 -2016-04-11 21:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 -2016-04-11 22:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 -2016-04-11 23:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 -2016-04-12 00:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 -2016-04-12 01:00:00,0.273,0.32899999999999996,0.39399999999999996 -2016-04-12 02:00:00,0.273,0.32899999999999996,0.39399999999999996 -2016-04-12 03:00:00,0.273,0.32899999999999996,0.39399999999999996 -2016-04-12 04:00:00,0.273,0.32799999999999996,0.39399999999999996 -2016-04-12 05:00:00,0.273,0.327,0.39399999999999996 -2016-04-12 06:00:00,0.273,0.327,0.39399999999999996 -2016-04-12 07:00:00,0.273,0.327,0.39399999999999996 -2016-04-12 08:00:00,0.273,0.327,0.39399999999999996 -2016-04-12 09:00:00,0.272,0.327,0.39399999999999996 -2016-04-12 10:00:00,0.273,0.327,0.39399999999999996 -2016-04-12 11:00:00,0.272,0.327,0.39399999999999996 -2016-04-12 12:00:00,0.272,0.326,0.39399999999999996 -2016-04-12 13:00:00,0.273,0.327,0.39399999999999996 -2016-04-12 14:00:00,0.273,0.327,0.39399999999999996 -2016-04-12 15:00:00,0.273,0.326,0.39399999999999996 -2016-04-12 16:00:00,0.272,0.326,0.39399999999999996 -2016-04-12 17:00:00,0.273,0.326,0.39299999999999996 -2016-04-12 18:00:00,0.273,0.326,0.39299999999999996 -2016-04-12 19:00:00,0.273,0.326,0.39299999999999996 -2016-04-12 20:00:00,0.265,0.326,0.396 -2016-04-12 21:00:00,0.266,0.326,0.396 -2016-04-12 22:00:00,0.267,0.326,0.395 -2016-04-12 23:00:00,0.267,0.326,0.396 -2016-04-13 00:00:00,0.266,0.326,0.396 -2016-04-13 01:00:00,0.267,0.326,0.396 -2016-04-13 02:00:00,0.267,0.326,0.396 -2016-04-13 03:00:00,0.266,0.326,0.396 -2016-04-13 04:00:00,0.266,0.326,0.396 -2016-04-13 05:00:00,0.267,0.326,0.396 -2016-04-13 06:00:00,0.268,0.326,0.396 -2016-04-13 07:00:00,0.265,0.326,0.396 -2016-04-13 08:00:00,0.265,0.326,0.396 -2016-04-13 09:00:00,0.267,0.326,0.396 -2016-04-13 10:00:00,0.26899999999999996,0.326,0.396 -2016-04-13 11:00:00,0.27,0.325,0.395 -2016-04-13 12:00:00,0.271,0.325,0.395 -2016-04-13 13:00:00,0.272,0.325,0.395 -2016-04-13 14:00:00,0.272,0.324,0.395 -2016-04-13 15:00:00,0.273,0.324,0.395 -2016-04-13 16:00:00,0.273,0.325,0.395 -2016-04-13 17:00:00,0.273,0.324,0.395 -2016-04-13 18:00:00,0.273,0.324,0.395 -2016-04-13 19:00:00,0.273,0.324,0.395 -2016-04-13 20:00:00,0.273,0.324,0.395 -2016-04-13 21:00:00,0.273,0.324,0.395 -2016-04-13 22:00:00,0.273,0.324,0.395 -2016-04-13 23:00:00,0.273,0.324,0.395 -2016-04-14 00:00:00,0.273,0.326,0.395 -2016-04-14 01:00:00,0.273,0.327,0.395 -2016-04-14 02:00:00,0.273,0.327,0.395 -2016-04-14 03:00:00,0.273,0.327,0.395 -2016-04-14 04:00:00,0.273,0.32799999999999996,0.39399999999999996 -2016-04-14 05:00:00,0.273,0.32899999999999996,0.391 -2016-04-14 06:00:00,0.273,0.32899999999999996,0.391 -2016-04-14 07:00:00,0.272,0.32799999999999996,0.391 -2016-04-14 08:00:00,0.272,0.326,0.391 -2016-04-14 09:00:00,0.272,0.326,0.39 -2016-04-14 10:00:00,0.272,0.326,0.39 -2016-04-14 11:00:00,0.272,0.326,0.389 -2016-04-14 12:00:00,0.272,0.324,0.389 -2016-04-14 13:00:00,0.272,0.322,0.38799999999999996 -2016-04-14 14:00:00,0.272,0.321,0.38799999999999996 -2016-04-14 15:00:00,0.272,0.321,0.38799999999999996 -2016-04-14 16:00:00,0.272,0.321,0.38799999999999996 -2016-04-14 17:00:00,0.272,0.321,0.38799999999999996 -2016-04-14 18:00:00,0.272,0.321,0.38799999999999996 -2016-04-14 19:00:00,0.272,0.321,0.387 -2016-04-14 20:00:00,0.273,0.321,0.387 -2016-04-14 21:00:00,0.273,0.321,0.387 -2016-04-14 22:00:00,0.272,0.321,0.387 -2016-04-14 23:00:00,0.272,0.321,0.387 -2016-04-15 00:00:00,0.272,0.32299999999999995,0.387 -2016-04-15 01:00:00,0.272,0.324,0.387 -2016-04-15 02:00:00,0.272,0.325,0.387 -2016-04-15 03:00:00,0.272,0.326,0.387 -2016-04-15 04:00:00,0.272,0.324,0.387 -2016-04-15 05:00:00,0.272,0.324,0.387 -2016-04-15 06:00:00,0.272,0.324,0.387 -2016-04-15 07:00:00,0.272,0.324,0.387 -2016-04-15 08:00:00,0.272,0.324,0.387 -2016-04-15 09:00:00,0.272,0.324,0.387 -2016-04-15 10:00:00,0.272,0.324,0.387 -2016-04-15 11:00:00,0.272,0.32299999999999995,0.386 -2016-04-15 12:00:00,0.272,0.321,0.386 -2016-04-15 13:00:00,0.272,0.321,0.386 -2016-04-15 14:00:00,0.272,0.321,0.386 -2016-04-15 15:00:00,0.272,0.321,0.386 -2016-04-15 16:00:00,0.272,0.321,0.386 -2016-04-15 17:00:00,0.272,0.32,0.386 -2016-04-15 18:00:00,0.272,0.32,0.386 -2016-04-15 19:00:00,0.272,0.321,0.386 -2016-04-15 20:00:00,0.272,0.321,0.385 -2016-04-15 21:00:00,0.271,0.321,0.385 -2016-04-15 22:00:00,0.271,0.321,0.385 -2016-04-15 23:00:00,0.271,0.321,0.385 -2016-04-16 00:00:00,0.271,0.321,0.385 -2016-04-16 01:00:00,0.271,0.321,0.385 -2016-04-16 02:00:00,0.271,0.321,0.385 -2016-04-16 03:00:00,0.271,0.321,0.385 -2016-04-16 04:00:00,0.271,0.321,0.385 -2016-04-16 05:00:00,0.271,0.321,0.385 -2016-04-16 06:00:00,0.271,0.321,0.385 -2016-04-16 07:00:00,0.264,0.321,0.38799999999999996 -2016-04-16 08:00:00,0.262,0.321,0.38799999999999996 -2016-04-16 09:00:00,0.262,0.321,0.38799999999999996 -2016-04-16 10:00:00,0.266,0.321,0.38799999999999996 -2016-04-16 11:00:00,0.266,0.321,0.38799999999999996 -2016-04-16 12:00:00,0.27,0.321,0.387 -2016-04-16 13:00:00,0.271,0.321,0.387 -2016-04-16 14:00:00,0.272,0.32,0.386 -2016-04-16 15:00:00,0.272,0.32,0.386 -2016-04-16 16:00:00,0.272,0.32,0.386 -2016-04-16 17:00:00,0.272,0.319,0.386 -2016-04-16 18:00:00,0.272,0.319,0.386 -2016-04-16 19:00:00,0.272,0.319,0.386 -2016-04-16 20:00:00,0.272,0.319,0.386 -2016-04-16 21:00:00,0.272,0.32,0.387 -2016-04-16 22:00:00,0.272,0.32,0.387 -2016-04-16 23:00:00,0.26899999999999996,0.32,0.38799999999999996 -2016-04-17 00:00:00,0.266,0.32,0.38799999999999996 -2016-04-17 01:00:00,0.27699999999999997,0.32,0.391 -2016-04-17 02:00:00,0.284,0.32,0.397 -2016-04-17 03:00:00,0.284,0.32,0.39799999999999996 -2016-04-17 04:00:00,0.284,0.32,0.39799999999999996 -2016-04-17 05:00:00,0.281,0.32,0.39799999999999996 -2016-04-17 06:00:00,0.27899999999999997,0.32,0.39799999999999996 -2016-04-17 07:00:00,0.278,0.32,0.39899999999999997 -2016-04-17 08:00:00,0.27899999999999997,0.32,0.39899999999999997 -2016-04-17 09:00:00,0.282,0.32,0.39899999999999997 -2016-04-17 10:00:00,0.285,0.32,0.39899999999999997 -2016-04-17 11:00:00,0.287,0.319,0.39899999999999997 -2016-04-17 12:00:00,0.287,0.317,0.39899999999999997 -2016-04-17 13:00:00,0.287,0.317,0.39899999999999997 -2016-04-17 14:00:00,0.28600000000000003,0.317,0.39899999999999997 -2016-04-17 15:00:00,0.285,0.319,0.39899999999999997 -2016-04-17 16:00:00,0.284,0.319,0.39899999999999997 -2016-04-17 17:00:00,0.284,0.319,0.39899999999999997 -2016-04-17 18:00:00,0.28300000000000003,0.319,0.39899999999999997 -2016-04-17 19:00:00,0.28300000000000003,0.32,0.39899999999999997 -2016-04-17 20:00:00,0.282,0.32,0.4 -2016-04-17 21:00:00,0.282,0.32,0.4 -2016-04-17 22:00:00,0.282,0.32,0.4 -2016-04-17 23:00:00,0.281,0.32,0.4 -2016-04-18 00:00:00,0.281,0.32,0.4 -2016-04-18 01:00:00,0.28,0.32,0.4 -2016-04-18 02:00:00,0.28,0.32,0.4 -2016-04-18 03:00:00,0.28,0.32,0.401 -2016-04-18 04:00:00,0.27899999999999997,0.319,0.401 -2016-04-18 05:00:00,0.27899999999999997,0.319,0.401 -2016-04-18 06:00:00,0.27899999999999997,0.319,0.401 -2016-04-18 07:00:00,0.27899999999999997,0.319,0.401 -2016-04-18 08:00:00,0.278,0.319,0.401 -2016-04-18 09:00:00,0.278,0.319,0.402 -2016-04-18 10:00:00,0.27699999999999997,0.319,0.39899999999999997 -2016-04-18 11:00:00,0.27699999999999997,0.319,0.397 -2016-04-18 12:00:00,0.27699999999999997,0.319,0.395 -2016-04-18 13:00:00,0.27699999999999997,0.319,0.39399999999999996 -2016-04-18 14:00:00,0.276,0.319,0.39299999999999996 -2016-04-18 15:00:00,0.27699999999999997,0.319,0.39299999999999996 -2016-04-18 16:00:00,0.276,0.318,0.39299999999999996 -2016-04-18 17:00:00,0.276,0.318,0.39299999999999996 -2016-04-18 18:00:00,0.276,0.319,0.392 -2016-04-18 19:00:00,0.276,0.319,0.392 -2016-04-18 20:00:00,0.276,0.319,0.392 -2016-04-18 21:00:00,0.276,0.319,0.392 -2016-04-18 22:00:00,0.276,0.319,0.392 -2016-04-18 23:00:00,0.276,0.319,0.392 -2016-04-19 00:00:00,0.275,0.319,0.391 -2016-04-19 01:00:00,0.275,0.319,0.391 -2016-04-19 02:00:00,0.275,0.319,0.391 -2016-04-19 03:00:00,0.275,0.319,0.391 -2016-04-19 04:00:00,0.275,0.319,0.39 -2016-04-19 05:00:00,0.275,0.319,0.39 -2016-04-19 06:00:00,0.275,0.319,0.39 -2016-04-19 07:00:00,0.275,0.319,0.39 -2016-04-19 08:00:00,0.275,0.318,0.39 -2016-04-19 09:00:00,0.275,0.318,0.39 -2016-04-19 10:00:00,0.275,0.318,0.39 -2016-04-19 11:00:00,0.27399999999999997,0.318,0.39 -2016-04-19 12:00:00,0.27399999999999997,0.318,0.39 -2016-04-19 13:00:00,0.275,0.318,0.39 -2016-04-19 14:00:00,0.27399999999999997,0.318,0.39 -2016-04-19 15:00:00,0.27399999999999997,0.317,0.39 -2016-04-19 16:00:00,0.27399999999999997,0.317,0.39 -2016-04-19 17:00:00,0.27399999999999997,0.317,0.39 -2016-04-19 18:00:00,0.27399999999999997,0.317,0.39 -2016-04-19 19:00:00,0.27399999999999997,0.317,0.39 -2016-04-19 20:00:00,0.27399999999999997,0.317,0.39 -2016-04-19 21:00:00,0.27399999999999997,0.316,0.389 -2016-04-19 22:00:00,0.27399999999999997,0.315,0.389 -2016-04-19 23:00:00,0.27399999999999997,0.314,0.389 -2016-04-20 00:00:00,0.27399999999999997,0.313,0.389 -2016-04-20 01:00:00,0.27399999999999997,0.31,0.389 -2016-04-20 02:00:00,0.273,0.31,0.389 -2016-04-20 03:00:00,0.273,0.31,0.389 -2016-04-20 04:00:00,0.273,0.311,0.389 -2016-04-20 05:00:00,0.273,0.315,0.389 -2016-04-20 06:00:00,0.273,0.315,0.389 -2016-04-20 07:00:00,0.273,0.317,0.389 -2016-04-20 08:00:00,0.273,0.317,0.377 -2016-04-20 09:00:00,0.273,0.317,0.366 -2016-04-20 10:00:00,0.272,0.317,0.365 -2016-04-20 11:00:00,0.272,0.317,0.364 -2016-04-20 12:00:00,0.272,0.318,0.364 -2016-04-20 13:00:00,0.272,0.319,0.363 -2016-04-20 14:00:00,0.271,0.319,0.363 -2016-04-20 15:00:00,0.271,0.319,0.363 -2016-04-20 16:00:00,0.271,0.319,0.363 -2016-04-20 17:00:00,0.271,0.319,0.363 -2016-04-20 18:00:00,0.271,0.319,0.363 -2016-04-20 19:00:00,0.271,0.317,0.36200000000000004 -2016-04-20 20:00:00,0.271,0.316,0.36200000000000004 -2016-04-20 21:00:00,0.271,0.315,0.36200000000000004 -2016-04-20 22:00:00,0.271,0.316,0.36200000000000004 -2016-04-20 23:00:00,0.271,0.317,0.36200000000000004 -2016-04-21 00:00:00,0.271,0.317,0.36200000000000004 -2016-04-21 01:00:00,0.271,0.317,0.36200000000000004 -2016-04-21 02:00:00,0.271,0.317,0.36200000000000004 -2016-04-21 03:00:00,0.271,0.317,0.36200000000000004 -2016-04-21 04:00:00,0.27,0.317,0.36200000000000004 -2016-04-21 05:00:00,0.27,0.317,0.36200000000000004 -2016-04-21 06:00:00,0.27,0.317,0.36200000000000004 -2016-04-21 07:00:00,0.27,0.317,0.36200000000000004 -2016-04-21 08:00:00,0.27,0.318,0.36200000000000004 -2016-04-21 09:00:00,0.27,0.317,0.363 -2016-04-21 10:00:00,0.27,0.318,0.36200000000000004 -2016-04-21 11:00:00,0.26899999999999996,0.319,0.36200000000000004 -2016-04-21 12:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 13:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 14:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 15:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 16:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 17:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 18:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 19:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 20:00:00,0.26899999999999996,0.319,0.361 -2016-04-21 21:00:00,0.26899999999999996,0.318,0.361 -2016-04-21 22:00:00,0.26899999999999996,0.316,0.361 -2016-04-21 23:00:00,0.26899999999999996,0.317,0.361 -2016-04-22 00:00:00,0.26899999999999996,0.317,0.358 -2016-04-22 01:00:00,0.26899999999999996,0.317,0.35600000000000004 -2016-04-22 02:00:00,0.26899999999999996,0.317,0.35600000000000004 -2016-04-22 03:00:00,0.26899999999999996,0.317,0.35600000000000004 -2016-04-22 04:00:00,0.268,0.317,0.35100000000000003 -2016-04-22 05:00:00,0.268,0.317,0.353 -2016-04-22 06:00:00,0.268,0.317,0.353 -2016-04-22 07:00:00,0.268,0.317,0.353 -2016-04-22 08:00:00,0.268,0.317,0.353 -2016-04-22 09:00:00,0.268,0.317,0.353 -2016-04-22 10:00:00,0.268,0.317,0.35200000000000004 -2016-04-22 11:00:00,0.268,0.317,0.35100000000000003 -2016-04-22 12:00:00,0.267,0.317,0.34700000000000003 -2016-04-22 13:00:00,0.267,0.317,0.34700000000000003 -2016-04-22 14:00:00,0.267,0.317,0.34600000000000003 -2016-04-22 15:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 16:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 17:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 18:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 19:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 20:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 21:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 22:00:00,0.266,0.317,0.34600000000000003 -2016-04-22 23:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 00:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 01:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 02:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 03:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 04:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 05:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 06:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 07:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 08:00:00,0.264,0.317,0.34700000000000003 -2016-04-23 09:00:00,0.259,0.317,0.348 -2016-04-23 10:00:00,0.259,0.317,0.348 -2016-04-23 11:00:00,0.262,0.317,0.348 -2016-04-23 12:00:00,0.264,0.317,0.348 -2016-04-23 13:00:00,0.266,0.317,0.348 -2016-04-23 14:00:00,0.266,0.317,0.34700000000000003 -2016-04-23 15:00:00,0.266,0.317,0.34700000000000003 -2016-04-23 16:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 17:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 18:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 19:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 20:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 21:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 22:00:00,0.266,0.317,0.34600000000000003 -2016-04-23 23:00:00,0.266,0.317,0.34600000000000003 -2016-04-24 00:00:00,0.266,0.317,0.34600000000000003 -2016-04-24 01:00:00,0.266,0.317,0.34600000000000003 -2016-04-24 02:00:00,0.266,0.317,0.34600000000000003 -2016-04-24 03:00:00,0.266,0.317,0.34600000000000003 -2016-04-24 04:00:00,0.266,0.317,0.34600000000000003 -2016-04-24 05:00:00,0.266,0.317,0.34600000000000003 -2016-04-24 06:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 07:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 08:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 09:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 10:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 11:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 12:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 13:00:00,0.264,0.317,0.34700000000000003 -2016-04-24 14:00:00,0.264,0.317,0.34700000000000003 -2016-04-24 15:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 16:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 17:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 18:00:00,0.265,0.317,0.34600000000000003 -2016-04-24 19:00:00,0.265,0.317,0.345 -2016-04-24 20:00:00,0.265,0.317,0.345 -2016-04-24 21:00:00,0.265,0.317,0.345 -2016-04-24 22:00:00,0.265,0.317,0.345 -2016-04-24 23:00:00,0.265,0.317,0.345 -2016-04-25 00:00:00,0.265,0.317,0.345 -2016-04-25 01:00:00,0.265,0.317,0.345 -2016-04-25 02:00:00,0.265,0.314,0.345 -2016-04-25 03:00:00,0.265,0.305,0.345 -2016-04-25 04:00:00,0.265,0.312,0.345 -2016-04-25 05:00:00,0.265,0.315,0.345 -2016-04-25 06:00:00,0.265,0.316,0.345 -2016-04-25 07:00:00,0.265,0.317,0.345 -2016-04-25 08:00:00,0.265,0.317,0.345 -2016-04-25 09:00:00,0.265,0.317,0.345 -2016-04-25 10:00:00,0.265,0.317,0.345 -2016-04-25 11:00:00,0.265,0.317,0.345 -2016-04-25 12:00:00,0.265,0.317,0.345 -2016-04-25 13:00:00,0.265,0.317,0.345 -2016-04-25 14:00:00,0.265,0.317,0.345 -2016-04-25 15:00:00,0.265,0.317,0.345 -2016-04-25 16:00:00,0.265,0.317,0.345 -2016-04-25 17:00:00,0.265,0.317,0.34600000000000003 -2016-04-25 18:00:00,0.263,0.317,0.348 -2016-04-25 19:00:00,0.262,0.317,0.348 -2016-04-25 20:00:00,0.258,0.317,0.349 -2016-04-25 21:00:00,0.258,0.317,0.349 -2016-04-25 22:00:00,0.258,0.317,0.35 -2016-04-25 23:00:00,0.258,0.317,0.35 -2016-04-26 00:00:00,0.262,0.317,0.35100000000000003 -2016-04-26 01:00:00,0.271,0.317,0.35200000000000004 -2016-04-26 02:00:00,0.27,0.317,0.35200000000000004 -2016-04-26 03:00:00,0.26899999999999996,0.317,0.353 -2016-04-26 04:00:00,0.26899999999999996,0.317,0.353 -2016-04-26 05:00:00,0.26899999999999996,0.317,0.353 -2016-04-26 06:00:00,0.26899999999999996,0.317,0.353 -2016-04-26 07:00:00,0.27,0.317,0.354 -2016-04-26 08:00:00,0.273,0.317,0.353 -2016-04-26 09:00:00,0.276,0.317,0.353 -2016-04-26 10:00:00,0.276,0.317,0.35200000000000004 -2016-04-26 11:00:00,0.276,0.317,0.35200000000000004 -2016-04-26 12:00:00,0.275,0.317,0.35100000000000003 -2016-04-26 13:00:00,0.275,0.317,0.35100000000000003 -2016-04-26 14:00:00,0.275,0.317,0.35100000000000003 -2016-04-26 15:00:00,0.27399999999999997,0.317,0.35100000000000003 -2016-04-26 16:00:00,0.271,0.316,0.35200000000000004 -2016-04-26 17:00:00,0.264,0.316,0.353 -2016-04-26 18:00:00,0.264,0.316,0.354 -2016-04-26 19:00:00,0.264,0.316,0.353 -2016-04-26 20:00:00,0.266,0.316,0.353 -2016-04-26 21:00:00,0.267,0.316,0.353 -2016-04-26 22:00:00,0.268,0.316,0.353 -2016-04-26 23:00:00,0.27,0.317,0.353 -2016-04-27 00:00:00,0.271,0.317,0.353 -2016-04-27 01:00:00,0.273,0.317,0.35200000000000004 -2016-04-27 02:00:00,0.273,0.317,0.35200000000000004 -2016-04-27 03:00:00,0.27399999999999997,0.317,0.35200000000000004 -2016-04-27 04:00:00,0.27399999999999997,0.317,0.35200000000000004 -2016-04-27 05:00:00,0.27399999999999997,0.317,0.35100000000000003 -2016-04-27 06:00:00,0.27399999999999997,0.317,0.35100000000000003 -2016-04-27 07:00:00,0.27399999999999997,0.317,0.35100000000000003 -2016-04-27 08:00:00,0.27399999999999997,0.317,0.35 -2016-04-27 09:00:00,0.27399999999999997,0.316,0.35 -2016-04-27 10:00:00,0.27399999999999997,0.316,0.35 -2016-04-27 11:00:00,0.27399999999999997,0.316,0.35 -2016-04-27 12:00:00,0.27399999999999997,0.316,0.35 -2016-04-27 13:00:00,0.27399999999999997,0.316,0.35 -2016-04-27 14:00:00,0.27399999999999997,0.315,0.349 -2016-04-27 15:00:00,0.27399999999999997,0.315,0.349 -2016-04-27 16:00:00,0.27399999999999997,0.316,0.348 -2016-04-27 17:00:00,0.27399999999999997,0.316,0.349 -2016-04-27 18:00:00,0.271,0.316,0.35 -2016-04-27 19:00:00,0.268,0.315,0.35 -2016-04-27 20:00:00,0.27,0.315,0.35 -2016-04-27 21:00:00,0.271,0.315,0.349 -2016-04-27 22:00:00,0.272,0.315,0.349 -2016-04-27 23:00:00,0.272,0.316,0.349 -2016-04-28 00:00:00,0.272,0.316,0.349 -2016-04-28 01:00:00,0.272,0.316,0.349 -2016-04-28 02:00:00,0.272,0.316,0.349 -2016-04-28 03:00:00,0.272,0.316,0.348 -2016-04-28 04:00:00,0.272,0.316,0.348 -2016-04-28 05:00:00,0.273,0.315,0.348 -2016-04-28 06:00:00,0.273,0.315,0.348 -2016-04-28 07:00:00,0.272,0.315,0.348 -2016-04-28 08:00:00,0.272,0.315,0.348 -2016-04-28 09:00:00,0.273,0.315,0.34700000000000003 -2016-04-28 10:00:00,0.273,0.315,0.34700000000000003 -2016-04-28 11:00:00,0.273,0.315,0.34700000000000003 -2016-04-28 12:00:00,0.272,0.315,0.34600000000000003 -2016-04-28 13:00:00,0.272,0.315,0.34600000000000003 -2016-04-28 14:00:00,0.272,0.315,0.34600000000000003 -2016-04-28 15:00:00,0.272,0.315,0.34600000000000003 -2016-04-28 16:00:00,0.272,0.315,0.34600000000000003 -2016-04-28 17:00:00,0.271,0.314,0.34600000000000003 -2016-04-28 18:00:00,0.271,0.314,0.34600000000000003 -2016-04-28 19:00:00,0.271,0.314,0.345 -2016-04-28 20:00:00,0.271,0.314,0.345 -2016-04-28 21:00:00,0.271,0.314,0.345 -2016-04-28 22:00:00,0.271,0.314,0.345 -2016-04-28 23:00:00,0.271,0.315,0.345 -2016-04-29 00:00:00,0.271,0.314,0.345 -2016-04-29 01:00:00,0.271,0.315,0.345 -2016-04-29 02:00:00,0.271,0.315,0.345 -2016-04-29 03:00:00,0.271,0.315,0.345 -2016-04-29 04:00:00,0.271,0.315,0.344 -2016-04-29 05:00:00,0.271,0.315,0.344 -2016-04-29 06:00:00,0.271,0.315,0.344 -2016-04-29 07:00:00,0.271,0.314,0.344 -2016-04-29 08:00:00,0.271,0.314,0.344 -2016-04-29 09:00:00,0.271,0.314,0.344 -2016-04-29 10:00:00,0.271,0.314,0.344 -2016-04-29 11:00:00,0.271,0.314,0.344 -2016-04-29 12:00:00,0.27,0.314,0.344 -2016-04-29 13:00:00,0.27,0.314,0.344 -2016-04-29 14:00:00,0.27,0.314,0.34299999999999997 -2016-04-29 15:00:00,0.27,0.314,0.34299999999999997 -2016-04-29 16:00:00,0.27,0.314,0.341 -2016-04-29 17:00:00,0.26899999999999996,0.314,0.341 -2016-04-29 18:00:00,0.26899999999999996,0.313,0.34 -2016-04-29 19:00:00,0.26899999999999996,0.313,0.34 -2016-04-29 20:00:00,0.27,0.313,0.34 -2016-04-29 21:00:00,0.27,0.314,0.34 -2016-04-29 22:00:00,0.27,0.314,0.34 -2016-04-29 23:00:00,0.27,0.314,0.34 -2016-04-30 00:00:00,0.27,0.314,0.34 -2016-04-30 01:00:00,0.27,0.314,0.34 -2016-04-30 02:00:00,0.26899999999999996,0.314,0.34 -2016-04-30 03:00:00,0.27,0.314,0.34 -2016-04-30 04:00:00,0.27,0.314,0.34 -2016-04-30 05:00:00,0.26899999999999996,0.314,0.34 -2016-04-30 06:00:00,0.26899999999999996,0.314,0.34 -2016-04-30 07:00:00,0.26899999999999996,0.314,0.34 -2016-04-30 08:00:00,0.26899999999999996,0.314,0.34 -2016-04-30 09:00:00,0.26899999999999996,0.314,0.34 -2016-04-30 10:00:00,0.26899999999999996,0.314,0.34 -2016-04-30 11:00:00,0.26899999999999996,0.314,0.33899999999999997 -2016-04-30 12:00:00,0.26899999999999996,0.314,0.33899999999999997 -2016-04-30 13:00:00,0.26899999999999996,0.313,0.33799999999999997 -2016-04-30 14:00:00,0.26899999999999996,0.312,0.33799999999999997 -2016-04-30 15:00:00,0.26899999999999996,0.312,0.33799999999999997 -2016-04-30 16:00:00,0.268,0.312,0.33799999999999997 -2016-04-30 17:00:00,0.268,0.312,0.33799999999999997 -2016-04-30 18:00:00,0.268,0.31,0.337 -2016-04-30 19:00:00,0.268,0.31,0.337 -2016-04-30 20:00:00,0.268,0.31,0.337 -2016-04-30 21:00:00,0.268,0.31,0.337 -2016-04-30 22:00:00,0.268,0.312,0.337 -2016-04-30 23:00:00,0.262,0.312,0.34 -2016-05-01 00:00:00,0.285,0.312,0.341 -2016-05-01 01:00:00,0.281,0.312,0.341 -2016-05-01 02:00:00,0.27699999999999997,0.312,0.341 -2016-05-01 03:00:00,0.28,0.312,0.341 -2016-05-01 04:00:00,0.282,0.312,0.341 -2016-05-01 05:00:00,0.28300000000000003,0.312,0.341 -2016-05-01 06:00:00,0.28300000000000003,0.312,0.341 -2016-05-01 07:00:00,0.282,0.312,0.34 -2016-05-01 08:00:00,0.281,0.312,0.34 -2016-05-01 09:00:00,0.281,0.312,0.34 -2016-05-01 10:00:00,0.28,0.312,0.33899999999999997 -2016-05-01 11:00:00,0.27899999999999997,0.312,0.33899999999999997 -2016-05-01 12:00:00,0.27899999999999997,0.312,0.33899999999999997 -2016-05-01 13:00:00,0.278,0.311,0.33899999999999997 -2016-05-01 14:00:00,0.27699999999999997,0.31,0.33899999999999997 -2016-05-01 15:00:00,0.276,0.31,0.33899999999999997 -2016-05-01 16:00:00,0.275,0.31,0.33799999999999997 -2016-05-01 17:00:00,0.275,0.31,0.33799999999999997 -2016-05-01 18:00:00,0.27399999999999997,0.309,0.33799999999999997 -2016-05-01 19:00:00,0.27399999999999997,0.309,0.33799999999999997 -2016-05-01 20:00:00,0.27399999999999997,0.309,0.33799999999999997 -2016-05-01 21:00:00,0.27399999999999997,0.309,0.33799999999999997 -2016-05-01 22:00:00,0.27399999999999997,0.31,0.33799999999999997 -2016-05-01 23:00:00,0.273,0.31,0.33799999999999997 -2016-05-02 00:00:00,0.273,0.31,0.33799999999999997 -2016-05-02 01:00:00,0.273,0.31,0.33799999999999997 -2016-05-02 02:00:00,0.273,0.31,0.33799999999999997 -2016-05-02 03:00:00,0.273,0.31,0.33799999999999997 -2016-05-02 04:00:00,0.273,0.31,0.33799999999999997 -2016-05-02 05:00:00,0.273,0.31,0.33799999999999997 -2016-05-02 06:00:00,0.272,0.31,0.337 -2016-05-02 07:00:00,0.272,0.31,0.33799999999999997 -2016-05-02 08:00:00,0.272,0.31,0.33799999999999997 -2016-05-02 09:00:00,0.272,0.31,0.337 -2016-05-02 10:00:00,0.271,0.31,0.337 -2016-05-02 11:00:00,0.271,0.31,0.337 -2016-05-02 12:00:00,0.271,0.31,0.337 -2016-05-02 13:00:00,0.27,0.309,0.336 -2016-05-02 14:00:00,0.27,0.309,0.336 -2016-05-02 15:00:00,0.26899999999999996,0.308,0.336 -2016-05-02 16:00:00,0.26899999999999996,0.307,0.336 -2016-05-02 17:00:00,0.26899999999999996,0.307,0.336 -2016-05-02 18:00:00,0.26899999999999996,0.307,0.336 -2016-05-02 19:00:00,0.26899999999999996,0.307,0.336 -2016-05-02 20:00:00,0.26899999999999996,0.307,0.336 -2016-05-02 21:00:00,0.26899999999999996,0.307,0.336 -2016-05-02 22:00:00,0.26899999999999996,0.307,0.336 -2016-05-02 23:00:00,0.26899999999999996,0.307,0.336 -2016-05-03 00:00:00,0.268,0.307,0.336 -2016-05-03 01:00:00,0.268,0.307,0.336 -2016-05-03 02:00:00,0.268,0.307,0.336 -2016-05-03 03:00:00,0.268,0.307,0.336 -2016-05-03 04:00:00,0.268,0.308,0.336 -2016-05-03 05:00:00,0.268,0.308,0.336 -2016-05-03 06:00:00,0.268,0.308,0.336 -2016-05-03 07:00:00,0.268,0.307,0.335 -2016-05-03 08:00:00,0.268,0.307,0.335 -2016-05-03 09:00:00,0.268,0.307,0.335 -2016-05-03 10:00:00,0.266,0.307,0.336 -2016-05-03 11:00:00,0.263,0.307,0.33799999999999997 -2016-05-03 12:00:00,0.266,0.307,0.337 -2016-05-03 13:00:00,0.268,0.307,0.336 -2016-05-03 14:00:00,0.268,0.306,0.335 -2016-05-03 15:00:00,0.267,0.305,0.335 -2016-05-03 16:00:00,0.265,0.305,0.336 -2016-05-03 17:00:00,0.266,0.304,0.336 -2016-05-03 18:00:00,0.267,0.304,0.336 -2016-05-03 19:00:00,0.267,0.304,0.335 -2016-05-03 20:00:00,0.267,0.304,0.33399999999999996 -2016-05-03 21:00:00,0.267,0.304,0.33399999999999996 -2016-05-03 22:00:00,0.267,0.304,0.33399999999999996 -2016-05-03 23:00:00,0.267,0.304,0.33399999999999996 -2016-05-04 00:00:00,0.266,0.304,0.33399999999999996 -2016-05-04 01:00:00,0.266,0.305,0.33399999999999996 -2016-05-04 02:00:00,0.266,0.305,0.33399999999999996 -2016-05-04 03:00:00,0.266,0.305,0.33399999999999996 -2016-05-04 04:00:00,0.266,0.305,0.33399999999999996 -2016-05-04 05:00:00,0.266,0.305,0.33399999999999996 -2016-05-04 06:00:00,0.266,0.305,0.33399999999999996 -2016-05-04 07:00:00,0.266,0.305,0.33399999999999996 -2016-05-04 08:00:00,0.266,0.304,0.335 -2016-05-04 09:00:00,0.265,0.305,0.33399999999999996 -2016-05-04 10:00:00,0.265,0.305,0.33399999999999996 -2016-05-04 11:00:00,0.265,0.305,0.33399999999999996 -2016-05-04 12:00:00,0.264,0.304,0.33299999999999996 -2016-05-04 13:00:00,0.264,0.304,0.33299999999999996 -2016-05-04 14:00:00,0.263,0.304,0.33299999999999996 -2016-05-04 15:00:00,0.263,0.302,0.33299999999999996 -2016-05-04 16:00:00,0.262,0.302,0.33299999999999996 -2016-05-04 17:00:00,0.262,0.302,0.332 -2016-05-04 18:00:00,0.262,0.302,0.332 -2016-05-04 19:00:00,0.262,0.301,0.332 -2016-05-04 20:00:00,0.262,0.302,0.332 -2016-05-04 21:00:00,0.262,0.302,0.332 -2016-05-04 22:00:00,0.262,0.302,0.332 -2016-05-04 23:00:00,0.262,0.302,0.332 -2016-05-05 00:00:00,0.262,0.302,0.332 -2016-05-05 01:00:00,0.262,0.302,0.332 -2016-05-05 02:00:00,0.261,0.303,0.332 -2016-05-05 03:00:00,0.261,0.303,0.332 -2016-05-05 04:00:00,0.261,0.303,0.332 -2016-05-05 05:00:00,0.261,0.303,0.332 -2016-05-05 06:00:00,0.261,0.303,0.332 -2016-05-05 07:00:00,0.261,0.303,0.332 -2016-05-05 08:00:00,0.261,0.303,0.33299999999999996 -2016-05-05 09:00:00,0.261,0.303,0.33299999999999996 -2016-05-05 10:00:00,0.261,0.303,0.332 -2016-05-05 11:00:00,0.26,0.302,0.332 -2016-05-05 12:00:00,0.26,0.302,0.332 -2016-05-05 13:00:00,0.259,0.302,0.332 -2016-05-05 14:00:00,0.259,0.301,0.332 -2016-05-05 15:00:00,0.258,0.3,0.331 -2016-05-05 16:00:00,0.258,0.3,0.331 -2016-05-05 17:00:00,0.258,0.298,0.331 -2016-05-05 18:00:00,0.258,0.298,0.331 -2016-05-05 19:00:00,0.258,0.298,0.331 -2016-05-05 20:00:00,0.258,0.298,0.331 -2016-05-05 21:00:00,0.258,0.298,0.331 -2016-05-05 22:00:00,0.258,0.298,0.331 -2016-05-05 23:00:00,0.258,0.298,0.331 -2016-05-06 00:00:00,0.258,0.299,0.331 -2016-05-06 01:00:00,0.258,0.3,0.331 -2016-05-06 02:00:00,0.258,0.3,0.331 -2016-05-06 03:00:00,0.258,0.3,0.331 -2016-05-06 04:00:00,0.258,0.3,0.331 -2016-05-06 05:00:00,0.257,0.3,0.331 -2016-05-06 06:00:00,0.258,0.3,0.331 -2016-05-06 07:00:00,0.257,0.3,0.332 -2016-05-06 08:00:00,0.257,0.3,0.332 -2016-05-06 09:00:00,0.257,0.3,0.331 -2016-05-06 10:00:00,0.256,0.3,0.331 -2016-05-06 11:00:00,0.256,0.3,0.331 -2016-05-06 12:00:00,0.256,0.3,0.331 -2016-05-06 13:00:00,0.255,0.298,0.331 -2016-05-06 14:00:00,0.254,0.298,0.331 -2016-05-06 15:00:00,0.254,0.298,0.331 -2016-05-06 16:00:00,0.254,0.297,0.33 -2016-05-06 17:00:00,0.253,0.297,0.33 -2016-05-06 18:00:00,0.253,0.297,0.33 -2016-05-06 19:00:00,0.253,0.297,0.33 -2016-05-06 20:00:00,0.253,0.297,0.33 -2016-05-06 21:00:00,0.253,0.297,0.33 -2016-05-06 22:00:00,0.253,0.297,0.33 -2016-05-06 23:00:00,0.253,0.297,0.33 -2016-05-07 00:00:00,0.253,0.297,0.33 -2016-05-07 01:00:00,0.253,0.297,0.33 -2016-05-07 02:00:00,0.253,0.297,0.33 -2016-05-07 03:00:00,0.253,0.297,0.33 -2016-05-07 04:00:00,0.252,0.297,0.33 -2016-05-07 05:00:00,0.253,0.297,0.33 -2016-05-07 06:00:00,0.252,0.298,0.331 -2016-05-07 07:00:00,0.253,0.298,0.331 -2016-05-07 08:00:00,0.252,0.297,0.331 -2016-05-07 09:00:00,0.252,0.297,0.331 -2016-05-07 10:00:00,0.251,0.297,0.33 -2016-05-07 11:00:00,0.251,0.297,0.33 -2016-05-07 12:00:00,0.25,0.297,0.33 -2016-05-07 13:00:00,0.25,0.297,0.33 -2016-05-07 14:00:00,0.249,0.29600000000000004,0.32899999999999996 -2016-05-07 15:00:00,0.248,0.295,0.32899999999999996 -2016-05-07 16:00:00,0.248,0.293,0.32899999999999996 -2016-05-07 17:00:00,0.248,0.293,0.32899999999999996 -2016-05-07 18:00:00,0.248,0.293,0.32899999999999996 -2016-05-07 19:00:00,0.248,0.293,0.32899999999999996 -2016-05-07 20:00:00,0.248,0.292,0.32899999999999996 -2016-05-07 21:00:00,0.248,0.292,0.32899999999999996 -2016-05-07 22:00:00,0.248,0.292,0.32899999999999996 -2016-05-07 23:00:00,0.247,0.293,0.32899999999999996 -2016-05-08 00:00:00,0.248,0.293,0.32899999999999996 -2016-05-08 01:00:00,0.248,0.293,0.32899999999999996 -2016-05-08 02:00:00,0.247,0.293,0.32899999999999996 -2016-05-08 03:00:00,0.247,0.293,0.32899999999999996 -2016-05-08 04:00:00,0.247,0.293,0.32899999999999996 -2016-05-08 05:00:00,0.247,0.293,0.32899999999999996 -2016-05-08 06:00:00,0.247,0.294,0.32899999999999996 -2016-05-08 07:00:00,0.24600000000000002,0.294,0.32899999999999996 -2016-05-08 08:00:00,0.24600000000000002,0.293,0.32899999999999996 -2016-05-08 09:00:00,0.24600000000000002,0.293,0.32899999999999996 -2016-05-08 10:00:00,0.24600000000000002,0.293,0.32899999999999996 -2016-05-08 11:00:00,0.245,0.293,0.32899999999999996 -2016-05-08 12:00:00,0.245,0.293,0.32799999999999996 -2016-05-08 13:00:00,0.244,0.293,0.32799999999999996 -2016-05-08 14:00:00,0.243,0.293,0.327 -2016-05-08 15:00:00,0.243,0.293,0.326 -2016-05-08 16:00:00,0.242,0.293,0.325 -2016-05-08 17:00:00,0.242,0.292,0.325 -2016-05-08 18:00:00,0.242,0.292,0.325 -2016-05-08 19:00:00,0.242,0.292,0.325 -2016-05-08 20:00:00,0.242,0.292,0.325 -2016-05-08 21:00:00,0.242,0.292,0.325 -2016-05-08 22:00:00,0.242,0.292,0.325 -2016-05-08 23:00:00,0.242,0.292,0.325 -2016-05-09 00:00:00,0.242,0.292,0.325 -2016-05-09 01:00:00,0.242,0.292,0.325 -2016-05-09 02:00:00,0.24100000000000002,0.292,0.325 -2016-05-09 03:00:00,0.24100000000000002,0.292,0.325 -2016-05-09 04:00:00,0.24100000000000002,0.292,0.325 -2016-05-09 05:00:00,0.24100000000000002,0.292,0.325 -2016-05-09 06:00:00,0.24100000000000002,0.292,0.325 -2016-05-09 07:00:00,0.24100000000000002,0.292,0.325 -2016-05-09 08:00:00,0.24100000000000002,0.292,0.326 -2016-05-09 09:00:00,0.24,0.292,0.325 -2016-05-09 10:00:00,0.24,0.292,0.325 -2016-05-09 11:00:00,0.24,0.292,0.325 -2016-05-09 12:00:00,0.239,0.292,0.325 -2016-05-09 13:00:00,0.239,0.29100000000000004,0.324 -2016-05-09 14:00:00,0.23800000000000002,0.29,0.324 -2016-05-09 15:00:00,0.23800000000000002,0.29,0.324 -2016-05-09 16:00:00,0.23800000000000002,0.29,0.324 -2016-05-09 17:00:00,0.23800000000000002,0.28800000000000003,0.324 -2016-05-09 18:00:00,0.237,0.28800000000000003,0.324 -2016-05-09 19:00:00,0.237,0.28800000000000003,0.324 -2016-05-09 20:00:00,0.237,0.28800000000000003,0.324 -2016-05-09 21:00:00,0.23800000000000002,0.28800000000000003,0.324 -2016-05-09 22:00:00,0.23800000000000002,0.28800000000000003,0.324 -2016-05-09 23:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 00:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 01:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 02:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 03:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 04:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 05:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 06:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 07:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 08:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 09:00:00,0.237,0.28800000000000003,0.324 -2016-05-10 10:00:00,0.23600000000000002,0.28800000000000003,0.324 -2016-05-10 11:00:00,0.23600000000000002,0.28800000000000003,0.324 -2016-05-10 12:00:00,0.235,0.28800000000000003,0.324 -2016-05-10 13:00:00,0.235,0.28800000000000003,0.32299999999999995 -2016-05-10 14:00:00,0.23399999999999999,0.287,0.32299999999999995 -2016-05-10 15:00:00,0.23399999999999999,0.287,0.32299999999999995 -2016-05-10 16:00:00,0.23399999999999999,0.287,0.32299999999999995 -2016-05-10 17:00:00,0.23399999999999999,0.28600000000000003,0.32299999999999995 -2016-05-10 18:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-10 19:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-10 20:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-10 21:00:00,0.235,0.285,0.32299999999999995 -2016-05-10 22:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-10 23:00:00,0.235,0.285,0.32299999999999995 -2016-05-11 00:00:00,0.235,0.285,0.32299999999999995 -2016-05-11 01:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-11 02:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-11 03:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-11 04:00:00,0.23399999999999999,0.285,0.32299999999999995 -2016-05-11 05:00:00,0.23399999999999999,0.28600000000000003,0.32299999999999995 -2016-05-11 06:00:00,0.233,0.28600000000000003,0.32299999999999995 -2016-05-11 07:00:00,0.23399999999999999,0.28600000000000003,0.324 -2016-05-11 08:00:00,0.233,0.28600000000000003,0.324 -2016-05-11 09:00:00,0.233,0.28600000000000003,0.32299999999999995 -2016-05-11 10:00:00,0.233,0.28600000000000003,0.32299999999999995 -2016-05-11 11:00:00,0.233,0.28600000000000003,0.32299999999999995 -2016-05-11 12:00:00,0.233,0.285,0.32299999999999995 -2016-05-11 13:00:00,0.233,0.285,0.32299999999999995 -2016-05-11 14:00:00,0.23199999999999998,0.285,0.32299999999999995 -2016-05-11 15:00:00,0.23199999999999998,0.285,0.322 -2016-05-11 16:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-11 17:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-11 18:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-11 19:00:00,0.23199999999999998,0.282,0.322 -2016-05-11 20:00:00,0.23199999999999998,0.282,0.322 -2016-05-11 21:00:00,0.23199999999999998,0.281,0.322 -2016-05-11 22:00:00,0.23199999999999998,0.282,0.322 -2016-05-11 23:00:00,0.23199999999999998,0.282,0.322 -2016-05-12 00:00:00,0.23199999999999998,0.282,0.322 -2016-05-12 01:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-12 02:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-12 03:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-12 04:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-12 05:00:00,0.23199999999999998,0.28300000000000003,0.322 -2016-05-12 06:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 07:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 08:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 09:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 10:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 11:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 12:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 13:00:00,0.231,0.28300000000000003,0.322 -2016-05-12 14:00:00,0.23,0.28300000000000003,0.322 -2016-05-12 15:00:00,0.23,0.281,0.322 -2016-05-12 16:00:00,0.23,0.281,0.322 -2016-05-12 17:00:00,0.23,0.28,0.321 -2016-05-12 18:00:00,0.23,0.28,0.321 -2016-05-12 19:00:00,0.23,0.28,0.321 -2016-05-12 20:00:00,0.23,0.28,0.321 -2016-05-12 21:00:00,0.23,0.28,0.321 -2016-05-12 22:00:00,0.23,0.28,0.321 -2016-05-12 23:00:00,0.23,0.28,0.321 -2016-05-13 00:00:00,0.23,0.28,0.321 -2016-05-13 01:00:00,0.23,0.28,0.321 -2016-05-13 02:00:00,0.23,0.281,0.321 -2016-05-13 03:00:00,0.23,0.28,0.321 -2016-05-13 04:00:00,0.23,0.28,0.322 -2016-05-13 05:00:00,0.22899999999999998,0.28,0.322 -2016-05-13 06:00:00,0.22899999999999998,0.28,0.322 -2016-05-13 07:00:00,0.22899999999999998,0.28,0.322 -2016-05-13 08:00:00,0.22899999999999998,0.28,0.322 -2016-05-13 09:00:00,0.22899999999999998,0.28,0.322 -2016-05-13 10:00:00,0.22899999999999998,0.28,0.322 -2016-05-13 11:00:00,0.228,0.28,0.322 -2016-05-13 12:00:00,0.228,0.28,0.321 -2016-05-13 13:00:00,0.228,0.28,0.321 -2016-05-13 14:00:00,0.228,0.28,0.321 -2016-05-13 15:00:00,0.228,0.28,0.321 -2016-05-13 16:00:00,0.228,0.27899999999999997,0.321 -2016-05-13 17:00:00,0.22699999999999998,0.278,0.32299999999999995 -2016-05-13 18:00:00,0.225,0.278,0.325 -2016-05-13 19:00:00,0.225,0.278,0.325 -2016-05-13 20:00:00,0.226,0.278,0.325 -2016-05-13 21:00:00,0.226,0.278,0.325 -2016-05-13 22:00:00,0.226,0.278,0.325 -2016-05-13 23:00:00,0.226,0.278,0.325 -2016-05-14 00:00:00,0.226,0.278,0.325 -2016-05-14 01:00:00,0.22699999999999998,0.278,0.325 -2016-05-14 02:00:00,0.226,0.278,0.325 -2016-05-14 03:00:00,0.226,0.27899999999999997,0.325 -2016-05-14 04:00:00,0.226,0.27899999999999997,0.325 -2016-05-14 05:00:00,0.226,0.27899999999999997,0.325 -2016-05-14 06:00:00,0.225,0.27899999999999997,0.325 -2016-05-14 07:00:00,0.225,0.27899999999999997,0.326 -2016-05-14 08:00:00,0.226,0.28,0.325 -2016-05-14 09:00:00,0.22699999999999998,0.28,0.325 -2016-05-14 10:00:00,0.22699999999999998,0.28,0.324 -2016-05-14 11:00:00,0.22699999999999998,0.28,0.322 -2016-05-14 12:00:00,0.22699999999999998,0.27899999999999997,0.321 -2016-05-14 13:00:00,0.226,0.278,0.321 -2016-05-14 14:00:00,0.226,0.27699999999999997,0.321 -2016-05-14 15:00:00,0.226,0.276,0.32 -2016-05-14 16:00:00,0.226,0.276,0.32 -2016-05-14 17:00:00,0.225,0.275,0.32 -2016-05-14 18:00:00,0.226,0.275,0.32 -2016-05-14 19:00:00,0.226,0.275,0.319 -2016-05-14 20:00:00,0.225,0.275,0.319 -2016-05-14 21:00:00,0.225,0.275,0.319 -2016-05-14 22:00:00,0.225,0.275,0.319 -2016-05-14 23:00:00,0.225,0.275,0.319 -2016-05-15 00:00:00,0.225,0.276,0.319 -2016-05-15 01:00:00,0.225,0.276,0.319 -2016-05-15 02:00:00,0.225,0.276,0.319 -2016-05-15 03:00:00,0.225,0.276,0.32 -2016-05-15 04:00:00,0.225,0.276,0.32 -2016-05-15 05:00:00,0.225,0.276,0.32 -2016-05-15 06:00:00,0.225,0.276,0.32 -2016-05-15 07:00:00,0.225,0.276,0.32 -2016-05-15 08:00:00,0.225,0.276,0.32 -2016-05-15 09:00:00,0.225,0.276,0.32 -2016-05-15 10:00:00,0.22399999999999998,0.276,0.32 -2016-05-15 11:00:00,0.22399999999999998,0.276,0.32 -2016-05-15 12:00:00,0.22399999999999998,0.276,0.32 -2016-05-15 13:00:00,0.22399999999999998,0.276,0.319 -2016-05-15 14:00:00,0.22399999999999998,0.275,0.319 -2016-05-15 15:00:00,0.22399999999999998,0.275,0.319 -2016-05-15 16:00:00,0.223,0.275,0.319 -2016-05-15 17:00:00,0.223,0.27399999999999997,0.319 -2016-05-15 18:00:00,0.223,0.273,0.319 -2016-05-15 19:00:00,0.223,0.272,0.319 -2016-05-15 20:00:00,0.223,0.271,0.319 -2016-05-15 21:00:00,0.223,0.271,0.319 -2016-05-15 22:00:00,0.223,0.271,0.319 -2016-05-15 23:00:00,0.223,0.272,0.319 -2016-05-16 00:00:00,0.223,0.273,0.319 -2016-05-16 01:00:00,0.223,0.273,0.319 -2016-05-16 02:00:00,0.223,0.273,0.319 -2016-05-16 03:00:00,0.223,0.273,0.319 -2016-05-16 04:00:00,0.223,0.273,0.319 -2016-05-16 05:00:00,0.223,0.273,0.319 -2016-05-16 06:00:00,0.223,0.273,0.319 -2016-05-16 07:00:00,0.223,0.273,0.319 -2016-05-16 08:00:00,0.223,0.273,0.319 -2016-05-16 09:00:00,0.22399999999999998,0.273,0.319 -2016-05-16 10:00:00,0.225,0.273,0.319 -2016-05-16 11:00:00,0.225,0.273,0.319 -2016-05-16 12:00:00,0.225,0.273,0.319 -2016-05-16 13:00:00,0.225,0.273,0.319 -2016-05-16 14:00:00,0.225,0.271,0.319 -2016-05-16 15:00:00,0.225,0.27,0.319 -2016-05-16 16:00:00,0.225,0.26899999999999996,0.319 -2016-05-16 17:00:00,0.22399999999999998,0.268,0.318 -2016-05-16 18:00:00,0.22399999999999998,0.268,0.318 -2016-05-16 19:00:00,0.22399999999999998,0.266,0.318 -2016-05-16 20:00:00,0.22399999999999998,0.267,0.318 -2016-05-16 21:00:00,0.22399999999999998,0.268,0.318 -2016-05-16 22:00:00,0.22399999999999998,0.268,0.318 -2016-05-16 23:00:00,0.225,0.268,0.318 -2016-05-17 00:00:00,0.22399999999999998,0.26899999999999996,0.318 -2016-05-17 01:00:00,0.22399999999999998,0.26899999999999996,0.318 -2016-05-17 02:00:00,0.22399999999999998,0.27,0.318 -2016-05-17 03:00:00,0.22399999999999998,0.268,0.319 -2016-05-17 04:00:00,0.22399999999999998,0.268,0.319 -2016-05-17 05:00:00,0.22399999999999998,0.268,0.319 -2016-05-17 06:00:00,0.22399999999999998,0.268,0.319 -2016-05-17 07:00:00,0.22399999999999998,0.26899999999999996,0.319 -2016-05-17 08:00:00,0.22399999999999998,0.26899999999999996,0.319 -2016-05-17 09:00:00,0.22399999999999998,0.268,0.319 -2016-05-17 10:00:00,0.22399999999999998,0.268,0.319 -2016-05-17 11:00:00,0.22399999999999998,0.268,0.319 -2016-05-17 12:00:00,0.22399999999999998,0.26899999999999996,0.319 -2016-05-17 13:00:00,0.22399999999999998,0.27,0.319 -2016-05-17 14:00:00,0.22399999999999998,0.27,0.318 -2016-05-17 15:00:00,0.223,0.27,0.318 -2016-05-17 16:00:00,0.223,0.27,0.318 -2016-05-17 17:00:00,0.223,0.27,0.318 -2016-05-17 18:00:00,0.223,0.27,0.318 -2016-05-17 19:00:00,0.22399999999999998,0.27,0.318 -2016-05-17 20:00:00,0.22399999999999998,0.27,0.318 -2016-05-17 21:00:00,0.22399999999999998,0.27,0.318 -2016-05-17 22:00:00,0.223,0.27,0.318 -2016-05-17 23:00:00,0.223,0.27,0.318 -2016-05-18 00:00:00,0.223,0.27,0.318 -2016-05-18 01:00:00,0.223,0.27,0.318 -2016-05-18 02:00:00,0.223,0.27,0.318 -2016-05-18 03:00:00,0.223,0.27,0.318 -2016-05-18 04:00:00,0.223,0.27,0.318 -2016-05-18 05:00:00,0.223,0.27,0.318 -2016-05-18 06:00:00,0.223,0.27,0.318 -2016-05-18 07:00:00,0.223,0.27,0.319 -2016-05-18 08:00:00,0.223,0.27,0.318 -2016-05-18 09:00:00,0.223,0.27,0.318 -2016-05-18 10:00:00,0.223,0.27,0.318 -2016-05-18 11:00:00,0.223,0.27,0.318 -2016-05-18 12:00:00,0.223,0.27,0.318 -2016-05-18 13:00:00,0.223,0.27,0.318 -2016-05-18 14:00:00,0.223,0.268,0.318 -2016-05-18 15:00:00,0.223,0.268,0.318 -2016-05-18 16:00:00,0.223,0.268,0.318 -2016-05-18 17:00:00,0.223,0.268,0.318 -2016-05-18 18:00:00,0.223,0.268,0.318 -2016-05-18 19:00:00,0.223,0.26899999999999996,0.318 -2016-05-18 20:00:00,0.223,0.26899999999999996,0.318 -2016-05-18 21:00:00,0.223,0.27,0.318 -2016-05-18 22:00:00,0.223,0.27,0.318 -2016-05-18 23:00:00,0.223,0.27,0.319 -2016-05-19 00:00:00,0.223,0.27,0.319 -2016-05-19 01:00:00,0.223,0.27,0.319 -2016-05-19 02:00:00,0.223,0.27,0.319 -2016-05-19 03:00:00,0.223,0.27,0.319 -2016-05-19 04:00:00,0.223,0.27,0.319 -2016-05-19 05:00:00,0.223,0.27,0.322 -2016-05-19 06:00:00,0.222,0.27,0.32299999999999995 -2016-05-19 07:00:00,0.222,0.27,0.32299999999999995 -2016-05-19 08:00:00,0.222,0.27,0.32299999999999995 -2016-05-19 09:00:00,0.222,0.27,0.32299999999999995 -2016-05-19 10:00:00,0.223,0.27,0.32299999999999995 -2016-05-19 11:00:00,0.223,0.27,0.322 -2016-05-19 12:00:00,0.223,0.27,0.321 -2016-05-19 13:00:00,0.223,0.27,0.32 -2016-05-19 14:00:00,0.223,0.27,0.319 -2016-05-19 15:00:00,0.223,0.27,0.319 -2016-05-19 16:00:00,0.223,0.27,0.319 -2016-05-19 17:00:00,0.223,0.27,0.319 -2016-05-19 18:00:00,0.223,0.27,0.319 -2016-05-19 19:00:00,0.223,0.27,0.319 -2016-05-19 20:00:00,0.223,0.27,0.319 -2016-05-19 21:00:00,0.223,0.27,0.319 -2016-05-19 22:00:00,0.223,0.27,0.318 -2016-05-19 23:00:00,0.222,0.27,0.318 -2016-05-20 00:00:00,0.222,0.27,0.318 -2016-05-20 01:00:00,0.222,0.27,0.319 -2016-05-20 02:00:00,0.222,0.271,0.319 -2016-05-20 03:00:00,0.222,0.271,0.319 -2016-05-20 04:00:00,0.222,0.271,0.319 -2016-05-20 05:00:00,0.222,0.271,0.319 -2016-05-20 06:00:00,0.222,0.271,0.318 -2016-05-20 07:00:00,0.221,0.271,0.319 -2016-05-20 08:00:00,0.221,0.271,0.319 -2016-05-20 09:00:00,0.221,0.271,0.319 -2016-05-20 10:00:00,0.221,0.271,0.319 -2016-05-20 11:00:00,0.221,0.271,0.319 -2016-05-20 12:00:00,0.221,0.271,0.318 -2016-05-20 13:00:00,0.221,0.27,0.318 -2016-05-20 14:00:00,0.221,0.27,0.318 -2016-05-20 15:00:00,0.221,0.26899999999999996,0.318 -2016-05-20 16:00:00,0.221,0.268,0.318 -2016-05-20 17:00:00,0.221,0.266,0.318 -2016-05-20 18:00:00,0.221,0.266,0.318 -2016-05-20 19:00:00,0.221,0.266,0.318 -2016-05-20 20:00:00,0.222,0.266,0.317 -2016-05-20 21:00:00,0.222,0.266,0.318 -2016-05-20 22:00:00,0.222,0.266,0.318 -2016-05-20 23:00:00,0.221,0.266,0.318 -2016-05-21 00:00:00,0.221,0.266,0.317 -2016-05-21 01:00:00,0.221,0.266,0.318 -2016-05-21 02:00:00,0.221,0.267,0.318 -2016-05-21 03:00:00,0.221,0.268,0.318 -2016-05-21 04:00:00,0.221,0.268,0.318 -2016-05-21 05:00:00,0.221,0.268,0.318 -2016-05-21 06:00:00,0.221,0.268,0.318 -2016-05-21 07:00:00,0.221,0.267,0.318 -2016-05-21 08:00:00,0.221,0.266,0.318 -2016-05-21 09:00:00,0.221,0.265,0.318 -2016-05-21 10:00:00,0.221,0.266,0.318 -2016-05-21 11:00:00,0.221,0.266,0.318 -2016-05-21 12:00:00,0.221,0.265,0.318 -2016-05-21 13:00:00,0.221,0.266,0.317 -2016-05-21 14:00:00,0.221,0.266,0.317 -2016-05-21 15:00:00,0.22,0.267,0.317 -2016-05-21 16:00:00,0.22,0.268,0.316 -2016-05-21 17:00:00,0.22,0.268,0.316 -2016-05-21 18:00:00,0.221,0.268,0.316 -2016-05-21 19:00:00,0.221,0.268,0.316 -2016-05-21 20:00:00,0.221,0.268,0.316 -2016-05-21 21:00:00,0.221,0.268,0.316 -2016-05-21 22:00:00,0.221,0.268,0.316 -2016-05-21 23:00:00,0.22,0.26899999999999996,0.316 -2016-05-22 00:00:00,0.22,0.26899999999999996,0.316 -2016-05-22 01:00:00,0.22,0.26899999999999996,0.316 -2016-05-22 02:00:00,0.22,0.27,0.316 -2016-05-22 03:00:00,0.22,0.27,0.316 -2016-05-22 04:00:00,0.22,0.27,0.316 -2016-05-22 05:00:00,0.21899999999999997,0.27,0.316 -2016-05-22 06:00:00,0.21899999999999997,0.27,0.316 -2016-05-22 07:00:00,0.21899999999999997,0.27,0.317 -2016-05-22 08:00:00,0.21899999999999997,0.27,0.317 -2016-05-22 09:00:00,0.21899999999999997,0.26899999999999996,0.317 -2016-05-22 10:00:00,0.21899999999999997,0.26899999999999996,0.317 -2016-05-22 11:00:00,0.21899999999999997,0.26899999999999996,0.317 -2016-05-22 12:00:00,0.21899999999999997,0.26899999999999996,0.316 -2016-05-22 13:00:00,0.218,0.26899999999999996,0.316 -2016-05-22 14:00:00,0.21899999999999997,0.27,0.316 -2016-05-22 15:00:00,0.21899999999999997,0.27,0.316 -2016-05-22 16:00:00,0.218,0.26899999999999996,0.316 -2016-05-22 17:00:00,0.21899999999999997,0.268,0.315 -2016-05-22 18:00:00,0.21899999999999997,0.268,0.315 -2016-05-22 19:00:00,0.21899999999999997,0.268,0.315 -2016-05-22 20:00:00,0.21899999999999997,0.26899999999999996,0.316 -2016-05-22 21:00:00,0.21899999999999997,0.26899999999999996,0.316 -2016-05-22 22:00:00,0.21899999999999997,0.27,0.316 -2016-05-22 23:00:00,0.21899999999999997,0.27,0.317 -2016-05-23 00:00:00,0.21899999999999997,0.27,0.319 -2016-05-23 01:00:00,0.217,0.27,0.321 -2016-05-23 02:00:00,0.217,0.27,0.322 -2016-05-23 03:00:00,0.217,0.27,0.322 -2016-05-23 04:00:00,0.217,0.27,0.322 -2016-05-23 05:00:00,0.217,0.27,0.322 -2016-05-23 06:00:00,0.215,0.27,0.322 -2016-05-23 07:00:00,0.215,0.27,0.322 -2016-05-23 08:00:00,0.215,0.27,0.322 -2016-05-23 09:00:00,0.21600000000000003,0.27,0.322 -2016-05-23 10:00:00,0.217,0.27,0.321 -2016-05-23 11:00:00,0.218,0.27,0.321 -2016-05-23 12:00:00,0.21899999999999997,0.27,0.321 -2016-05-23 13:00:00,0.21899999999999997,0.27,0.32 -2016-05-23 14:00:00,0.21899999999999997,0.27,0.319 -2016-05-23 15:00:00,0.21899999999999997,0.27,0.319 -2016-05-23 16:00:00,0.21899999999999997,0.27,0.318 -2016-05-23 17:00:00,0.21899999999999997,0.27,0.318 -2016-05-23 18:00:00,0.21899999999999997,0.27,0.317 -2016-05-23 19:00:00,0.21899999999999997,0.27,0.317 -2016-05-23 20:00:00,0.21899999999999997,0.27,0.317 -2016-05-23 21:00:00,0.21899999999999997,0.27,0.317 -2016-05-23 22:00:00,0.21899999999999997,0.27,0.317 -2016-05-23 23:00:00,0.21899999999999997,0.27,0.317 -2016-05-24 00:00:00,0.21899999999999997,0.27,0.317 -2016-05-24 01:00:00,0.21899999999999997,0.27,0.317 -2016-05-24 02:00:00,0.218,0.27,0.317 -2016-05-24 03:00:00,0.218,0.26899999999999996,0.317 -2016-05-24 04:00:00,0.218,0.268,0.317 -2016-05-24 05:00:00,0.218,0.267,0.317 -2016-05-24 06:00:00,0.218,0.297,0.317 -2016-05-24 07:00:00,0.218,0.305,0.317 -2016-05-24 08:00:00,0.218,0.304,0.317 -2016-05-24 09:00:00,0.218,0.301,0.317 -2016-05-24 10:00:00,0.218,0.3,0.32 -2016-05-24 11:00:00,0.21600000000000003,0.299,0.322 -2016-05-24 12:00:00,0.21600000000000003,0.298,0.32299999999999995 -2016-05-24 13:00:00,0.215,0.297,0.32299999999999995 -2016-05-24 14:00:00,0.215,0.298,0.324 -2016-05-24 15:00:00,0.215,0.298,0.324 -2016-05-24 16:00:00,0.21600000000000003,0.298,0.32299999999999995 -2016-05-24 17:00:00,0.21600000000000003,0.297,0.32299999999999995 -2016-05-24 18:00:00,0.217,0.297,0.32299999999999995 -2016-05-24 19:00:00,0.217,0.29600000000000004,0.32299999999999995 -2016-05-24 20:00:00,0.218,0.295,0.32299999999999995 -2016-05-24 21:00:00,0.218,0.295,0.32299999999999995 -2016-05-24 22:00:00,0.218,0.294,0.322 -2016-05-24 23:00:00,0.218,0.293,0.322 -2016-05-25 00:00:00,0.218,0.293,0.322 -2016-05-25 01:00:00,0.218,0.293,0.322 -2016-05-25 02:00:00,0.218,0.293,0.322 -2016-05-25 03:00:00,0.218,0.293,0.322 -2016-05-25 04:00:00,0.218,0.293,0.322 -2016-05-25 05:00:00,0.218,0.293,0.322 -2016-05-25 06:00:00,0.218,0.293,0.322 -2016-05-25 07:00:00,0.218,0.293,0.322 -2016-05-25 08:00:00,0.218,0.293,0.322 -2016-05-25 09:00:00,0.218,0.293,0.322 -2016-05-25 10:00:00,0.218,0.293,0.322 -2016-05-25 11:00:00,0.218,0.292,0.321 -2016-05-25 12:00:00,0.21899999999999997,0.292,0.321 -2016-05-25 13:00:00,0.21899999999999997,0.292,0.32 -2016-05-25 14:00:00,0.21899999999999997,0.292,0.32 -2016-05-25 15:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 16:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 17:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 18:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 19:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 20:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 21:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 22:00:00,0.21899999999999997,0.292,0.319 -2016-05-25 23:00:00,0.21899999999999997,0.292,0.319 -2016-05-26 00:00:00,0.21899999999999997,0.292,0.319 -2016-05-26 01:00:00,0.21899999999999997,0.292,0.319 -2016-05-26 02:00:00,0.218,0.292,0.319 -2016-05-26 03:00:00,0.218,0.292,0.319 -2016-05-26 04:00:00,0.218,0.292,0.319 -2016-05-26 05:00:00,0.218,0.292,0.319 -2016-05-26 06:00:00,0.218,0.292,0.319 -2016-05-26 07:00:00,0.218,0.292,0.319 -2016-05-26 08:00:00,0.218,0.292,0.319 -2016-05-26 09:00:00,0.218,0.29100000000000004,0.319 -2016-05-26 10:00:00,0.218,0.28800000000000003,0.319 -2016-05-26 11:00:00,0.217,0.28800000000000003,0.319 -2016-05-26 12:00:00,0.217,0.28800000000000003,0.318 -2016-05-26 13:00:00,0.217,0.28800000000000003,0.318 -2016-05-26 14:00:00,0.218,0.28800000000000003,0.318 -2016-05-26 15:00:00,0.217,0.289,0.318 -2016-05-26 16:00:00,0.218,0.289,0.318 -2016-05-26 17:00:00,0.218,0.29,0.317 -2016-05-26 18:00:00,0.218,0.29,0.317 -2016-05-26 19:00:00,0.218,0.28600000000000003,0.317 -2016-05-26 20:00:00,0.218,0.284,0.317 -2016-05-26 21:00:00,0.218,0.285,0.317 -2016-05-26 22:00:00,0.218,0.28300000000000003,0.317 -2016-05-26 23:00:00,0.218,0.285,0.317 -2016-05-27 00:00:00,0.218,0.285,0.317 -2016-05-27 01:00:00,0.218,0.285,0.317 -2016-05-27 02:00:00,0.218,0.285,0.317 -2016-05-27 03:00:00,0.217,0.28600000000000003,0.318 -2016-05-27 04:00:00,0.218,0.28600000000000003,0.321 -2016-05-27 05:00:00,0.21600000000000003,0.287,0.32299999999999995 -2016-05-27 06:00:00,0.21600000000000003,0.287,0.324 -2016-05-27 07:00:00,0.215,0.287,0.324 -2016-05-27 08:00:00,0.215,0.287,0.324 -2016-05-27 09:00:00,0.215,0.287,0.324 -2016-05-27 10:00:00,0.21600000000000003,0.287,0.324 -2016-05-27 11:00:00,0.21600000000000003,0.287,0.324 -2016-05-27 12:00:00,0.217,0.287,0.324 -2016-05-27 13:00:00,0.21899999999999997,0.287,0.32299999999999995 -2016-05-27 14:00:00,0.22,0.28800000000000003,0.32299999999999995 -2016-05-27 15:00:00,0.22,0.289,0.322 -2016-05-27 16:00:00,0.22,0.29,0.322 -2016-05-27 17:00:00,0.221,0.29,0.321 -2016-05-27 18:00:00,0.221,0.29,0.321 -2016-05-27 19:00:00,0.221,0.29,0.321 -2016-05-27 20:00:00,0.221,0.29,0.322 -2016-05-27 21:00:00,0.221,0.29,0.32299999999999995 -2016-05-27 22:00:00,0.221,0.28600000000000003,0.32299999999999995 -2016-05-27 23:00:00,0.221,0.285,0.32299999999999995 -2016-05-28 00:00:00,0.221,0.28600000000000003,0.32299999999999995 -2016-05-28 01:00:00,0.221,0.287,0.32299999999999995 -2016-05-28 02:00:00,0.221,0.287,0.32299999999999995 -2016-05-28 03:00:00,0.221,0.287,0.32299999999999995 -2016-05-28 04:00:00,0.221,0.287,0.32299999999999995 -2016-05-28 05:00:00,0.221,0.287,0.32299999999999995 -2016-05-28 06:00:00,0.22,0.287,0.32299999999999995 -2016-05-28 07:00:00,0.22,0.287,0.32299999999999995 -2016-05-28 08:00:00,0.22,0.287,0.32299999999999995 -2016-05-28 09:00:00,0.22,0.287,0.32299999999999995 -2016-05-28 10:00:00,0.22,0.287,0.32299999999999995 -2016-05-28 11:00:00,0.22,0.28600000000000003,0.32299999999999995 -2016-05-28 12:00:00,0.22,0.287,0.32299999999999995 -2016-05-28 13:00:00,0.221,0.287,0.322 -2016-05-28 14:00:00,0.221,0.28600000000000003,0.321 -2016-05-28 15:00:00,0.221,0.284,0.321 -2016-05-28 16:00:00,0.221,0.284,0.321 -2016-05-28 17:00:00,0.221,0.284,0.32 -2016-05-28 18:00:00,0.221,0.285,0.32 -2016-05-28 19:00:00,0.221,0.28600000000000003,0.32 -2016-05-28 20:00:00,0.221,0.28300000000000003,0.32 -2016-05-28 21:00:00,0.222,0.28300000000000003,0.321 -2016-05-28 22:00:00,0.222,0.28300000000000003,0.321 -2016-05-28 23:00:00,0.222,0.284,0.321 -2016-05-29 00:00:00,0.222,0.285,0.321 -2016-05-29 01:00:00,0.222,0.285,0.321 -2016-05-29 02:00:00,0.222,0.285,0.321 -2016-05-29 03:00:00,0.222,0.28600000000000003,0.321 -2016-05-29 04:00:00,0.222,0.287,0.321 -2016-05-29 05:00:00,0.221,0.287,0.321 -2016-05-29 06:00:00,0.221,0.287,0.321 -2016-05-29 07:00:00,0.221,0.287,0.321 -2016-05-29 08:00:00,0.221,0.287,0.322 -2016-05-29 09:00:00,0.221,0.287,0.322 -2016-05-29 10:00:00,0.221,0.287,0.322 -2016-05-29 11:00:00,0.221,0.287,0.321 -2016-05-29 12:00:00,0.221,0.287,0.321 -2016-05-29 13:00:00,0.221,0.287,0.321 -2016-05-29 14:00:00,0.221,0.28800000000000003,0.321 -2016-05-29 15:00:00,0.221,0.28800000000000003,0.321 -2016-05-29 16:00:00,0.221,0.289,0.32 -2016-05-29 17:00:00,0.221,0.29,0.32 -2016-05-29 18:00:00,0.221,0.29,0.32 -2016-05-29 19:00:00,0.221,0.29,0.32 -2016-05-29 20:00:00,0.222,0.29,0.32 -2016-05-29 21:00:00,0.222,0.29,0.32 -2016-05-29 22:00:00,0.222,0.29,0.32 -2016-05-29 23:00:00,0.221,0.29,0.322 -2016-05-30 00:00:00,0.22,0.29,0.324 -2016-05-30 01:00:00,0.218,0.292,0.325 -2016-05-30 02:00:00,0.23600000000000002,0.292,0.326 -2016-05-30 03:00:00,0.27899999999999997,0.292,0.342 -2016-05-30 04:00:00,0.272,0.292,0.354 -2016-05-30 05:00:00,0.267,0.292,0.353 -2016-05-30 06:00:00,0.265,0.292,0.349 -2016-05-30 07:00:00,0.264,0.292,0.34600000000000003 -2016-05-30 08:00:00,0.262,0.292,0.34299999999999997 -2016-05-30 09:00:00,0.261,0.292,0.34 -2016-05-30 10:00:00,0.26,0.292,0.33899999999999997 -2016-05-30 11:00:00,0.26,0.292,0.33799999999999997 -2016-05-30 12:00:00,0.259,0.292,0.336 -2016-05-30 13:00:00,0.259,0.292,0.335 -2016-05-30 14:00:00,0.26,0.29100000000000004,0.33399999999999996 -2016-05-30 15:00:00,0.26,0.29,0.33299999999999996 -2016-05-30 16:00:00,0.26,0.29,0.33299999999999996 -2016-05-30 17:00:00,0.26,0.289,0.332 -2016-05-30 18:00:00,0.26,0.28800000000000003,0.332 -2016-05-30 19:00:00,0.259,0.28800000000000003,0.332 -2016-05-30 20:00:00,0.258,0.28800000000000003,0.33299999999999996 -2016-05-30 21:00:00,0.258,0.287,0.33299999999999996 -2016-05-30 22:00:00,0.257,0.28800000000000003,0.332 -2016-05-30 23:00:00,0.257,0.28800000000000003,0.332 -2016-05-31 00:00:00,0.257,0.28800000000000003,0.332 -2016-05-31 01:00:00,0.257,0.28800000000000003,0.332 -2016-05-31 02:00:00,0.257,0.289,0.332 -2016-05-31 03:00:00,0.256,0.289,0.332 -2016-05-31 04:00:00,0.256,0.29,0.332 -2016-05-31 05:00:00,0.255,0.29,0.332 -2016-05-31 06:00:00,0.255,0.29,0.332 -2016-05-31 07:00:00,0.255,0.29,0.332 -2016-05-31 08:00:00,0.255,0.29,0.332 -2016-05-31 09:00:00,0.254,0.29,0.332 -2016-05-31 10:00:00,0.255,0.29,0.331 -2016-05-31 11:00:00,0.255,0.29,0.331 -2016-05-31 12:00:00,0.255,0.29,0.33 -2016-05-31 13:00:00,0.255,0.28800000000000003,0.33 -2016-05-31 14:00:00,0.255,0.287,0.33 -2016-05-31 15:00:00,0.255,0.287,0.32799999999999996 -2016-05-31 16:00:00,0.254,0.28600000000000003,0.327 -2016-05-31 17:00:00,0.254,0.285,0.327 -2016-05-31 18:00:00,0.254,0.28300000000000003,0.327 -2016-05-31 19:00:00,0.254,0.28300000000000003,0.327 -2016-05-31 20:00:00,0.254,0.28300000000000003,0.327 -2016-05-31 21:00:00,0.254,0.28300000000000003,0.327 -2016-05-31 22:00:00,0.254,0.28300000000000003,0.327 -2016-05-31 23:00:00,0.254,0.28300000000000003,0.327 -2016-06-01 00:00:00,0.253,0.284,0.327 -2016-06-01 01:00:00,0.253,0.285,0.326 -2016-06-01 02:00:00,0.253,0.285,0.326 -2016-06-01 03:00:00,0.253,0.285,0.326 -2016-06-01 04:00:00,0.253,0.285,0.326 -2016-06-01 05:00:00,0.252,0.28600000000000003,0.326 -2016-06-01 06:00:00,0.252,0.28600000000000003,0.327 -2016-06-01 07:00:00,0.248,0.28600000000000003,0.32899999999999996 -2016-06-01 08:00:00,0.248,0.287,0.32899999999999996 -2016-06-01 09:00:00,0.248,0.28600000000000003,0.32899999999999996 -2016-06-01 10:00:00,0.248,0.28600000000000003,0.32899999999999996 -2016-06-01 11:00:00,0.249,0.28600000000000003,0.32899999999999996 -2016-06-01 12:00:00,0.249,0.285,0.32899999999999996 -2016-06-01 13:00:00,0.25,0.284,0.32899999999999996 -2016-06-01 14:00:00,0.25,0.28300000000000003,0.32799999999999996 -2016-06-01 15:00:00,0.25,0.281,0.32799999999999996 -2016-06-01 16:00:00,0.248,0.28,0.32899999999999996 -2016-06-01 17:00:00,0.251,0.28,0.32899999999999996 -2016-06-01 18:00:00,0.259,0.278,0.33 -2016-06-01 19:00:00,0.26899999999999996,0.278,0.33 -2016-06-01 20:00:00,0.272,0.27699999999999997,0.331 -2016-06-01 21:00:00,0.272,0.27699999999999997,0.331 -2016-06-01 22:00:00,0.271,0.278,0.331 -2016-06-01 23:00:00,0.271,0.278,0.331 -2016-06-02 00:00:00,0.27,0.278,0.331 -2016-06-02 01:00:00,0.27,0.27899999999999997,0.331 -2016-06-02 02:00:00,0.26899999999999996,0.28,0.331 -2016-06-02 03:00:00,0.268,0.28,0.331 -2016-06-02 04:00:00,0.268,0.28,0.331 -2016-06-02 05:00:00,0.268,0.28,0.331 -2016-06-02 06:00:00,0.268,0.28,0.331 -2016-06-02 07:00:00,0.267,0.28,0.331 -2016-06-02 08:00:00,0.267,0.28,0.331 -2016-06-02 09:00:00,0.266,0.281,0.33 -2016-06-02 10:00:00,0.266,0.281,0.33 -2016-06-02 11:00:00,0.266,0.28,0.33 -2016-06-02 12:00:00,0.266,0.28,0.33 -2016-06-02 13:00:00,0.265,0.28,0.33 -2016-06-02 14:00:00,0.265,0.28,0.32899999999999996 -2016-06-02 15:00:00,0.265,0.27899999999999997,0.32899999999999996 -2016-06-02 16:00:00,0.265,0.278,0.32899999999999996 -2016-06-02 17:00:00,0.265,0.278,0.32899999999999996 -2016-06-02 18:00:00,0.264,0.278,0.32899999999999996 -2016-06-02 19:00:00,0.261,0.278,0.33 -2016-06-02 20:00:00,0.261,0.278,0.33 -2016-06-02 21:00:00,0.261,0.27899999999999997,0.33 -2016-06-02 22:00:00,0.261,0.27899999999999997,0.33 -2016-06-02 23:00:00,0.261,0.28,0.33 -2016-06-03 00:00:00,0.261,0.28,0.33 -2016-06-03 01:00:00,0.261,0.28,0.33 -2016-06-03 02:00:00,0.261,0.28,0.32899999999999996 -2016-06-03 03:00:00,0.261,0.28,0.33 -2016-06-03 04:00:00,0.261,0.28,0.33 -2016-06-03 05:00:00,0.261,0.28,0.33 -2016-06-03 06:00:00,0.261,0.28,0.33 -2016-06-03 07:00:00,0.261,0.28,0.33 -2016-06-03 08:00:00,0.26,0.281,0.33 -2016-06-03 09:00:00,0.26,0.28,0.33 -2016-06-03 10:00:00,0.26,0.28,0.32899999999999996 -2016-06-03 11:00:00,0.26,0.28,0.32899999999999996 -2016-06-03 12:00:00,0.26,0.28,0.33 -2016-06-03 13:00:00,0.26,0.27899999999999997,0.33 -2016-06-03 14:00:00,0.26,0.27699999999999997,0.33 -2016-06-03 15:00:00,0.261,0.276,0.32899999999999996 -2016-06-03 16:00:00,0.26,0.275,0.32899999999999996 -2016-06-03 17:00:00,0.268,0.275,0.33 -2016-06-03 18:00:00,0.27899999999999997,0.275,0.33 -2016-06-03 19:00:00,0.278,0.27399999999999997,0.331 -2016-06-03 20:00:00,0.27699999999999997,0.273,0.33 -2016-06-03 21:00:00,0.276,0.273,0.331 -2016-06-03 22:00:00,0.276,0.27399999999999997,0.33 -2016-06-03 23:00:00,0.275,0.275,0.33 -2016-06-04 00:00:00,0.275,0.275,0.33 -2016-06-04 01:00:00,0.275,0.275,0.33 -2016-06-04 02:00:00,0.27399999999999997,0.275,0.33 -2016-06-04 03:00:00,0.27399999999999997,0.276,0.33 -2016-06-04 04:00:00,0.273,0.276,0.33 -2016-06-04 05:00:00,0.273,0.276,0.33 -2016-06-04 06:00:00,0.272,0.276,0.33 -2016-06-04 07:00:00,0.272,0.276,0.33 -2016-06-04 08:00:00,0.272,0.276,0.33 -2016-06-04 09:00:00,0.272,0.276,0.33 -2016-06-04 10:00:00,0.271,0.276,0.33 -2016-06-04 11:00:00,0.271,0.276,0.33 -2016-06-04 12:00:00,0.27,0.276,0.33 -2016-06-04 13:00:00,0.26899999999999996,0.275,0.33 -2016-06-04 14:00:00,0.26899999999999996,0.273,0.32899999999999996 -2016-06-04 15:00:00,0.26899999999999996,0.271,0.32899999999999996 -2016-06-04 16:00:00,0.26899999999999996,0.27,0.32899999999999996 -2016-06-04 17:00:00,0.26899999999999996,0.27,0.32899999999999996 -2016-06-04 18:00:00,0.268,0.26899999999999996,0.32899999999999996 -2016-06-04 19:00:00,0.268,0.268,0.32899999999999996 -2016-06-04 20:00:00,0.268,0.268,0.32899999999999996 -2016-06-04 21:00:00,0.268,0.268,0.32899999999999996 -2016-06-04 22:00:00,0.268,0.268,0.32899999999999996 -2016-06-04 23:00:00,0.268,0.268,0.32899999999999996 -2016-06-05 00:00:00,0.267,0.26899999999999996,0.32799999999999996 -2016-06-05 01:00:00,0.267,0.27,0.32899999999999996 -2016-06-05 02:00:00,0.267,0.27,0.32899999999999996 -2016-06-05 03:00:00,0.266,0.27,0.32899999999999996 -2016-06-05 04:00:00,0.266,0.27,0.32899999999999996 -2016-06-05 05:00:00,0.266,0.27,0.32899999999999996 -2016-06-05 06:00:00,0.266,0.271,0.32899999999999996 -2016-06-05 07:00:00,0.264,0.271,0.32899999999999996 -2016-06-05 08:00:00,0.264,0.271,0.32899999999999996 -2016-06-05 09:00:00,0.264,0.271,0.32899999999999996 -2016-06-05 10:00:00,0.264,0.271,0.32899999999999996 -2016-06-05 11:00:00,0.264,0.271,0.32799999999999996 -2016-06-05 12:00:00,0.264,0.271,0.32799999999999996 -2016-06-05 13:00:00,0.264,0.27,0.327 -2016-06-05 14:00:00,0.263,0.27,0.327 -2016-06-05 15:00:00,0.262,0.26899999999999996,0.326 -2016-06-05 16:00:00,0.262,0.268,0.326 -2016-06-05 17:00:00,0.261,0.266,0.326 -2016-06-05 18:00:00,0.261,0.266,0.326 -2016-06-05 19:00:00,0.26,0.266,0.325 -2016-06-05 20:00:00,0.26,0.266,0.325 -2016-06-05 21:00:00,0.261,0.266,0.325 -2016-06-05 22:00:00,0.261,0.266,0.325 -2016-06-05 23:00:00,0.26,0.266,0.325 -2016-06-06 00:00:00,0.26,0.266,0.325 -2016-06-06 01:00:00,0.26,0.266,0.325 -2016-06-06 02:00:00,0.26,0.267,0.325 -2016-06-06 03:00:00,0.26,0.268,0.325 -2016-06-06 04:00:00,0.26,0.268,0.325 -2016-06-06 05:00:00,0.259,0.268,0.325 -2016-06-06 06:00:00,0.259,0.268,0.325 -2016-06-06 07:00:00,0.259,0.268,0.325 -2016-06-06 08:00:00,0.259,0.26899999999999996,0.325 -2016-06-06 09:00:00,0.258,0.26899999999999996,0.325 -2016-06-06 10:00:00,0.258,0.26899999999999996,0.325 -2016-06-06 11:00:00,0.257,0.26899999999999996,0.325 -2016-06-06 12:00:00,0.257,0.268,0.325 -2016-06-06 13:00:00,0.256,0.268,0.324 -2016-06-06 14:00:00,0.255,0.268,0.324 -2016-06-06 15:00:00,0.254,0.268,0.324 -2016-06-06 16:00:00,0.254,0.268,0.324 -2016-06-06 17:00:00,0.253,0.266,0.32299999999999995 -2016-06-06 18:00:00,0.253,0.267,0.32299999999999995 -2016-06-06 19:00:00,0.253,0.268,0.32299999999999995 -2016-06-06 20:00:00,0.253,0.268,0.32299999999999995 -2016-06-06 21:00:00,0.253,0.26899999999999996,0.32299999999999995 -2016-06-06 22:00:00,0.253,0.27,0.32299999999999995 -2016-06-06 23:00:00,0.253,0.27,0.32299999999999995 -2016-06-07 00:00:00,0.253,0.27,0.32299999999999995 -2016-06-07 01:00:00,0.253,0.271,0.32299999999999995 -2016-06-07 02:00:00,0.253,0.271,0.32299999999999995 -2016-06-07 03:00:00,0.252,0.271,0.32299999999999995 -2016-06-07 04:00:00,0.252,0.271,0.32299999999999995 -2016-06-07 05:00:00,0.252,0.272,0.32299999999999995 -2016-06-07 06:00:00,0.252,0.272,0.32299999999999995 -2016-06-07 07:00:00,0.252,0.273,0.324 -2016-06-07 08:00:00,0.252,0.273,0.324 -2016-06-07 09:00:00,0.251,0.273,0.324 -2016-06-07 10:00:00,0.251,0.273,0.32299999999999995 -2016-06-07 11:00:00,0.25,0.273,0.32299999999999995 -2016-06-07 12:00:00,0.249,0.273,0.32299999999999995 -2016-06-07 13:00:00,0.248,0.273,0.322 -2016-06-07 14:00:00,0.248,0.273,0.322 -2016-06-07 15:00:00,0.24600000000000002,0.273,0.322 -2016-06-07 16:00:00,0.24600000000000002,0.273,0.322 -2016-06-07 17:00:00,0.245,0.273,0.322 -2016-06-07 18:00:00,0.245,0.273,0.321 -2016-06-07 19:00:00,0.245,0.273,0.321 -2016-06-07 20:00:00,0.245,0.273,0.322 -2016-06-07 21:00:00,0.245,0.273,0.322 -2016-06-07 22:00:00,0.245,0.27399999999999997,0.322 -2016-06-07 23:00:00,0.244,0.275,0.322 -2016-06-08 00:00:00,0.244,0.275,0.322 -2016-06-08 01:00:00,0.244,0.275,0.322 -2016-06-08 02:00:00,0.245,0.275,0.322 -2016-06-08 03:00:00,0.245,0.275,0.322 -2016-06-08 04:00:00,0.245,0.275,0.322 -2016-06-08 05:00:00,0.245,0.275,0.322 -2016-06-08 06:00:00,0.245,0.275,0.322 -2016-06-08 07:00:00,0.244,0.275,0.322 -2016-06-08 08:00:00,0.244,0.275,0.322 -2016-06-08 09:00:00,0.243,0.275,0.32299999999999995 -2016-06-08 10:00:00,0.243,0.275,0.32299999999999995 -2016-06-08 11:00:00,0.244,0.275,0.32299999999999995 -2016-06-08 12:00:00,0.243,0.275,0.322 -2016-06-08 13:00:00,0.243,0.275,0.322 -2016-06-08 14:00:00,0.242,0.275,0.322 -2016-06-08 15:00:00,0.242,0.275,0.322 -2016-06-08 16:00:00,0.242,0.275,0.322 -2016-06-08 17:00:00,0.242,0.275,0.322 -2016-06-08 18:00:00,0.242,0.275,0.322 -2016-06-08 19:00:00,0.242,0.275,0.322 -2016-06-08 20:00:00,0.242,0.275,0.322 -2016-06-08 21:00:00,0.242,0.275,0.322 -2016-06-08 22:00:00,0.242,0.275,0.322 -2016-06-08 23:00:00,0.242,0.276,0.322 -2016-06-09 00:00:00,0.242,0.276,0.322 -2016-06-09 01:00:00,0.24100000000000002,0.276,0.322 -2016-06-09 02:00:00,0.24100000000000002,0.276,0.322 -2016-06-09 03:00:00,0.24100000000000002,0.276,0.322 -2016-06-09 04:00:00,0.24100000000000002,0.276,0.322 -2016-06-09 05:00:00,0.24100000000000002,0.27699999999999997,0.322 -2016-06-09 06:00:00,0.24100000000000002,0.276,0.322 -2016-06-09 07:00:00,0.24,0.276,0.322 -2016-06-09 08:00:00,0.24100000000000002,0.276,0.322 -2016-06-09 09:00:00,0.24100000000000002,0.276,0.322 -2016-06-09 10:00:00,0.24,0.276,0.321 -2016-06-09 11:00:00,0.24,0.276,0.321 -2016-06-09 12:00:00,0.24,0.276,0.321 -2016-06-09 13:00:00,0.239,0.275,0.321 -2016-06-09 14:00:00,0.239,0.273,0.32 -2016-06-09 15:00:00,0.23800000000000002,0.272,0.32 -2016-06-09 16:00:00,0.23800000000000002,0.273,0.32 -2016-06-09 17:00:00,0.23800000000000002,0.271,0.32 -2016-06-09 18:00:00,0.237,0.271,0.32 -2016-06-09 19:00:00,0.237,0.27,0.32 -2016-06-09 20:00:00,0.237,0.27,0.32 -2016-06-09 21:00:00,0.237,0.271,0.32 -2016-06-09 22:00:00,0.23800000000000002,0.272,0.32 -2016-06-09 23:00:00,0.23800000000000002,0.273,0.32 -2016-06-10 00:00:00,0.23800000000000002,0.273,0.32 -2016-06-10 01:00:00,0.23800000000000002,0.275,0.32 -2016-06-10 02:00:00,0.23800000000000002,0.275,0.32 -2016-06-10 03:00:00,0.23800000000000002,0.275,0.32 -2016-06-10 04:00:00,0.23800000000000002,0.275,0.32 -2016-06-10 05:00:00,0.23800000000000002,0.276,0.32 -2016-06-10 06:00:00,0.23800000000000002,0.276,0.32 -2016-06-10 07:00:00,0.23800000000000002,0.276,0.32 -2016-06-10 08:00:00,0.23800000000000002,0.276,0.32 -2016-06-10 09:00:00,0.237,0.276,0.32 -2016-06-10 10:00:00,0.23600000000000002,0.276,0.32 -2016-06-10 11:00:00,0.235,0.276,0.32 -2016-06-10 12:00:00,0.23399999999999999,0.276,0.319 -2016-06-10 13:00:00,0.23399999999999999,0.276,0.319 -2016-06-10 14:00:00,0.233,0.276,0.319 -2016-06-10 15:00:00,0.233,0.276,0.319 -2016-06-10 16:00:00,0.233,0.276,0.318 -2016-06-10 17:00:00,0.233,0.276,0.318 -2016-06-10 18:00:00,0.233,0.28,0.318 -2016-06-10 19:00:00,0.23199999999999998,0.28,0.318 -2016-06-10 20:00:00,0.233,0.28,0.318 -2016-06-10 21:00:00,0.23199999999999998,0.28,0.318 -2016-06-10 22:00:00,0.23199999999999998,0.28,0.318 -2016-06-10 23:00:00,0.23199999999999998,0.28,0.318 -2016-06-11 00:00:00,0.23199999999999998,0.281,0.318 -2016-06-11 01:00:00,0.23199999999999998,0.281,0.318 -2016-06-11 02:00:00,0.23199999999999998,0.281,0.318 -2016-06-11 03:00:00,0.23199999999999998,0.281,0.318 -2016-06-11 04:00:00,0.231,0.281,0.318 -2016-06-11 05:00:00,0.231,0.281,0.318 -2016-06-11 06:00:00,0.231,0.281,0.318 -2016-06-11 07:00:00,0.231,0.281,0.319 -2016-06-11 08:00:00,0.231,0.281,0.319 -2016-06-11 09:00:00,0.231,0.281,0.319 -2016-06-11 10:00:00,0.231,0.281,0.318 -2016-06-11 11:00:00,0.231,0.281,0.318 -2016-06-11 12:00:00,0.23,0.281,0.318 -2016-06-11 13:00:00,0.23,0.281,0.318 -2016-06-11 14:00:00,0.23,0.282,0.318 -2016-06-11 15:00:00,0.22899999999999998,0.281,0.318 -2016-06-11 16:00:00,0.22899999999999998,0.281,0.318 -2016-06-11 17:00:00,0.22699999999999998,0.281,0.318 -2016-06-11 18:00:00,0.22699999999999998,0.28,0.317 -2016-06-11 19:00:00,0.226,0.27699999999999997,0.318 -2016-06-11 20:00:00,0.226,0.27899999999999997,0.318 -2016-06-11 21:00:00,0.226,0.28,0.318 -2016-06-11 22:00:00,0.226,0.281,0.318 -2016-06-11 23:00:00,0.226,0.281,0.318 -2016-06-12 00:00:00,0.226,0.281,0.318 -2016-06-12 01:00:00,0.226,0.282,0.318 -2016-06-12 02:00:00,0.226,0.282,0.318 -2016-06-12 03:00:00,0.226,0.28300000000000003,0.318 -2016-06-12 04:00:00,0.226,0.28300000000000003,0.318 -2016-06-12 05:00:00,0.225,0.28300000000000003,0.318 -2016-06-12 06:00:00,0.225,0.28300000000000003,0.318 -2016-06-12 07:00:00,0.225,0.28300000000000003,0.318 -2016-06-12 08:00:00,0.225,0.282,0.319 -2016-06-12 09:00:00,0.225,0.282,0.319 -2016-06-12 10:00:00,0.225,0.281,0.319 -2016-06-12 11:00:00,0.225,0.281,0.319 -2016-06-12 12:00:00,0.225,0.281,0.319 -2016-06-12 13:00:00,0.225,0.282,0.319 -2016-06-12 14:00:00,0.23199999999999998,0.281,0.32 -2016-06-12 15:00:00,0.257,0.281,0.324 -2016-06-12 16:00:00,0.254,0.281,0.324 -2016-06-12 17:00:00,0.254,0.281,0.324 -2016-06-12 18:00:00,0.253,0.281,0.324 -2016-06-12 19:00:00,0.252,0.281,0.324 -2016-06-12 20:00:00,0.25,0.281,0.325 -2016-06-12 21:00:00,0.25,0.281,0.325 -2016-06-12 22:00:00,0.249,0.281,0.325 -2016-06-12 23:00:00,0.249,0.281,0.325 -2016-06-13 00:00:00,0.249,0.281,0.325 -2016-06-13 01:00:00,0.248,0.282,0.325 -2016-06-13 02:00:00,0.248,0.282,0.325 -2016-06-13 03:00:00,0.248,0.28300000000000003,0.325 -2016-06-13 04:00:00,0.248,0.28300000000000003,0.325 -2016-06-13 05:00:00,0.247,0.28300000000000003,0.325 -2016-06-13 06:00:00,0.247,0.28300000000000003,0.325 -2016-06-13 07:00:00,0.247,0.28300000000000003,0.325 -2016-06-13 08:00:00,0.24600000000000002,0.28300000000000003,0.325 -2016-06-13 09:00:00,0.251,0.28300000000000003,0.325 -2016-06-13 10:00:00,0.256,0.28300000000000003,0.325 -2016-06-13 11:00:00,0.256,0.281,0.325 -2016-06-13 12:00:00,0.256,0.281,0.325 -2016-06-13 13:00:00,0.257,0.27899999999999997,0.325 -2016-06-13 14:00:00,0.257,0.28,0.325 -2016-06-13 15:00:00,0.262,0.281,0.325 -2016-06-13 16:00:00,0.264,0.281,0.325 -2016-06-13 17:00:00,0.264,0.281,0.325 -2016-06-13 18:00:00,0.266,0.281,0.325 -2016-06-13 19:00:00,0.267,0.281,0.325 -2016-06-13 20:00:00,0.268,0.28,0.325 -2016-06-13 21:00:00,0.268,0.281,0.325 -2016-06-13 22:00:00,0.267,0.281,0.326 -2016-06-13 23:00:00,0.267,0.281,0.326 -2016-06-14 00:00:00,0.267,0.281,0.326 -2016-06-14 01:00:00,0.267,0.281,0.326 -2016-06-14 02:00:00,0.267,0.282,0.326 -2016-06-14 03:00:00,0.267,0.282,0.326 -2016-06-14 04:00:00,0.267,0.282,0.326 -2016-06-14 05:00:00,0.267,0.28300000000000003,0.326 -2016-06-14 06:00:00,0.267,0.28300000000000003,0.326 -2016-06-14 07:00:00,0.266,0.28300000000000003,0.326 -2016-06-14 08:00:00,0.27,0.28300000000000003,0.326 -2016-06-14 09:00:00,0.273,0.282,0.326 -2016-06-14 10:00:00,0.273,0.282,0.326 -2016-06-14 11:00:00,0.273,0.281,0.326 -2016-06-14 12:00:00,0.273,0.281,0.325 -2016-06-14 13:00:00,0.273,0.28,0.325 -2016-06-14 14:00:00,0.272,0.28,0.325 -2016-06-14 15:00:00,0.272,0.27899999999999997,0.325 -2016-06-14 16:00:00,0.271,0.278,0.324 -2016-06-14 17:00:00,0.27,0.278,0.324 -2016-06-14 18:00:00,0.27,0.278,0.324 -2016-06-14 19:00:00,0.26899999999999996,0.278,0.324 -2016-06-14 20:00:00,0.26899999999999996,0.278,0.324 -2016-06-14 21:00:00,0.268,0.278,0.324 -2016-06-14 22:00:00,0.267,0.278,0.324 -2016-06-14 23:00:00,0.267,0.275,0.324 -2016-06-15 00:00:00,0.266,0.273,0.324 -2016-06-15 01:00:00,0.266,0.273,0.324 -2016-06-15 02:00:00,0.266,0.273,0.324 -2016-06-15 03:00:00,0.266,0.273,0.324 -2016-06-15 04:00:00,0.265,0.273,0.324 -2016-06-15 05:00:00,0.265,0.273,0.324 -2016-06-15 06:00:00,0.265,0.27399999999999997,0.324 -2016-06-15 07:00:00,0.264,0.275,0.324 -2016-06-15 08:00:00,0.264,0.275,0.324 -2016-06-15 09:00:00,0.263,0.27399999999999997,0.324 -2016-06-15 10:00:00,0.262,0.275,0.324 -2016-06-15 11:00:00,0.262,0.275,0.324 -2016-06-15 12:00:00,0.262,0.27699999999999997,0.324 -2016-06-15 13:00:00,0.262,0.27899999999999997,0.324 -2016-06-15 14:00:00,0.261,0.28,0.324 -2016-06-15 15:00:00,0.261,0.28,0.324 -2016-06-15 16:00:00,0.261,0.28,0.325 -2016-06-15 17:00:00,0.273,0.28,0.32799999999999996 -2016-06-15 18:00:00,0.273,0.28,0.32899999999999996 -2016-06-15 19:00:00,0.273,0.28,0.32799999999999996 -2016-06-15 20:00:00,0.273,0.28,0.32799999999999996 -2016-06-15 21:00:00,0.273,0.28,0.32799999999999996 -2016-06-15 22:00:00,0.272,0.278,0.32799999999999996 -2016-06-15 23:00:00,0.271,0.278,0.327 -2016-06-16 00:00:00,0.271,0.278,0.327 -2016-06-16 01:00:00,0.271,0.278,0.327 -2016-06-16 02:00:00,0.27,0.278,0.327 -2016-06-16 03:00:00,0.26899999999999996,0.278,0.327 -2016-06-16 04:00:00,0.26899999999999996,0.278,0.327 -2016-06-16 05:00:00,0.26899999999999996,0.278,0.327 -2016-06-16 06:00:00,0.26899999999999996,0.278,0.327 -2016-06-16 07:00:00,0.26899999999999996,0.278,0.327 -2016-06-16 08:00:00,0.26899999999999996,0.278,0.327 -2016-06-16 09:00:00,0.268,0.278,0.326 -2016-06-16 10:00:00,0.268,0.278,0.326 -2016-06-16 11:00:00,0.26899999999999996,0.27899999999999997,0.326 -2016-06-16 12:00:00,0.26899999999999996,0.28,0.326 -2016-06-16 13:00:00,0.26899999999999996,0.28,0.326 -2016-06-16 14:00:00,0.26899999999999996,0.28,0.326 -2016-06-16 15:00:00,0.26899999999999996,0.28,0.326 -2016-06-16 16:00:00,0.272,0.28,0.325 -2016-06-16 17:00:00,0.272,0.28,0.324 -2016-06-16 18:00:00,0.272,0.28,0.324 -2016-06-16 19:00:00,0.272,0.28,0.324 -2016-06-16 20:00:00,0.272,0.28,0.324 -2016-06-16 21:00:00,0.272,0.28,0.324 -2016-06-16 22:00:00,0.272,0.28,0.324 -2016-06-16 23:00:00,0.271,0.28,0.324 -2016-06-17 00:00:00,0.271,0.281,0.324 -2016-06-17 01:00:00,0.271,0.281,0.324 -2016-06-17 02:00:00,0.27,0.281,0.324 -2016-06-17 03:00:00,0.27,0.281,0.324 -2016-06-17 04:00:00,0.27,0.281,0.324 -2016-06-17 05:00:00,0.27,0.282,0.324 -2016-06-17 06:00:00,0.27,0.282,0.324 -2016-06-17 07:00:00,0.26899999999999996,0.282,0.324 -2016-06-17 08:00:00,0.26899999999999996,0.282,0.324 -2016-06-17 09:00:00,0.26899999999999996,0.282,0.324 -2016-06-17 10:00:00,0.26899999999999996,0.282,0.324 -2016-06-17 11:00:00,0.268,0.281,0.32299999999999995 -2016-06-17 12:00:00,0.268,0.281,0.322 -2016-06-17 13:00:00,0.267,0.281,0.322 -2016-06-17 14:00:00,0.266,0.28,0.322 -2016-06-17 15:00:00,0.266,0.278,0.321 -2016-06-17 16:00:00,0.265,0.276,0.322 -2016-06-17 17:00:00,0.266,0.276,0.324 -2016-06-17 18:00:00,0.266,0.276,0.32299999999999995 -2016-06-17 19:00:00,0.266,0.276,0.322 -2016-06-17 20:00:00,0.266,0.276,0.322 -2016-06-17 21:00:00,0.266,0.276,0.322 -2016-06-17 22:00:00,0.265,0.276,0.322 -2016-06-17 23:00:00,0.265,0.276,0.322 -2016-06-18 00:00:00,0.265,0.276,0.322 -2016-06-18 01:00:00,0.265,0.278,0.322 -2016-06-18 02:00:00,0.264,0.278,0.322 -2016-06-18 03:00:00,0.264,0.27899999999999997,0.322 -2016-06-18 04:00:00,0.264,0.27899999999999997,0.322 -2016-06-18 05:00:00,0.264,0.28,0.322 -2016-06-18 06:00:00,0.264,0.28,0.322 -2016-06-18 07:00:00,0.264,0.28,0.322 -2016-06-18 08:00:00,0.263,0.28,0.322 -2016-06-18 09:00:00,0.263,0.28,0.322 -2016-06-18 10:00:00,0.263,0.28,0.322 -2016-06-18 11:00:00,0.262,0.28,0.321 -2016-06-18 12:00:00,0.261,0.28,0.321 -2016-06-18 13:00:00,0.261,0.278,0.321 -2016-06-18 14:00:00,0.26,0.276,0.321 -2016-06-18 15:00:00,0.26,0.275,0.32 -2016-06-18 16:00:00,0.259,0.273,0.32 -2016-06-18 17:00:00,0.259,0.273,0.32 -2016-06-18 18:00:00,0.259,0.366,0.32 -2016-06-18 19:00:00,0.258,0.46299999999999997,0.319 -2016-06-18 20:00:00,0.258,0.46,0.319 -2016-06-18 21:00:00,0.258,0.45899999999999996,0.319 -2016-06-18 22:00:00,0.258,0.45799999999999996,0.319 -2016-06-18 23:00:00,0.258,0.45799999999999996,0.319 -2016-06-19 00:00:00,0.258,0.45799999999999996,0.319 -2016-06-19 01:00:00,0.258,0.45799999999999996,0.32 -2016-06-19 02:00:00,0.258,0.45799999999999996,0.32 -2016-06-19 03:00:00,0.258,0.457,0.32 -2016-06-19 04:00:00,0.257,0.455,0.32 -2016-06-19 05:00:00,0.257,0.45299999999999996,0.32 -2016-06-19 06:00:00,0.257,0.451,0.32 -2016-06-19 07:00:00,0.257,0.451,0.32 -2016-06-19 08:00:00,0.257,0.45299999999999996,0.32 -2016-06-19 09:00:00,0.257,0.45299999999999996,0.32 -2016-06-19 10:00:00,0.257,0.45399999999999996,0.32 -2016-06-19 11:00:00,0.257,0.456,0.321 -2016-06-19 12:00:00,0.257,0.457,0.32 -2016-06-19 13:00:00,0.257,0.456,0.32 -2016-06-19 14:00:00,0.256,0.426,0.32 -2016-06-19 15:00:00,0.256,0.4,0.319 -2016-06-19 16:00:00,0.255,0.375,0.319 -2016-06-19 17:00:00,0.255,0.359,0.319 -2016-06-19 18:00:00,0.255,0.353,0.319 -2016-06-19 19:00:00,0.254,0.34299999999999997,0.319 -2016-06-19 20:00:00,0.254,0.34,0.319 -2016-06-19 21:00:00,0.254,0.33799999999999997,0.319 -2016-06-19 22:00:00,0.254,0.335,0.319 -2016-06-19 23:00:00,0.254,0.332,0.319 -2016-06-20 00:00:00,0.253,0.331,0.319 -2016-06-20 01:00:00,0.254,0.32899999999999996,0.319 -2016-06-20 02:00:00,0.253,0.32799999999999996,0.319 -2016-06-20 03:00:00,0.253,0.327,0.319 -2016-06-20 04:00:00,0.253,0.327,0.319 -2016-06-20 05:00:00,0.253,0.326,0.319 -2016-06-20 06:00:00,0.253,0.326,0.319 -2016-06-20 07:00:00,0.253,0.326,0.319 -2016-06-20 08:00:00,0.252,0.324,0.319 -2016-06-20 09:00:00,0.252,0.324,0.319 -2016-06-20 10:00:00,0.252,0.324,0.319 -2016-06-20 11:00:00,0.251,0.322,0.319 -2016-06-20 12:00:00,0.25,0.322,0.319 -2016-06-20 13:00:00,0.25,0.322,0.319 -2016-06-20 14:00:00,0.249,0.322,0.318 -2016-06-20 15:00:00,0.249,0.322,0.318 -2016-06-20 16:00:00,0.248,0.321,0.318 -2016-06-20 17:00:00,0.248,0.321,0.318 -2016-06-20 18:00:00,0.248,0.321,0.318 -2016-06-20 19:00:00,0.248,0.321,0.318 -2016-06-20 20:00:00,0.249,0.319,0.319 -2016-06-20 21:00:00,0.25,0.319,0.321 -2016-06-20 22:00:00,0.248,0.319,0.322 -2016-06-20 23:00:00,0.24600000000000002,0.319,0.32299999999999995 -2016-06-21 00:00:00,0.245,0.318,0.322 -2016-06-21 01:00:00,0.24600000000000002,0.318,0.322 -2016-06-21 02:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 03:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 04:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 05:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 06:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 07:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 08:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 09:00:00,0.24600000000000002,0.317,0.322 -2016-06-21 10:00:00,0.248,0.316,0.322 -2016-06-21 11:00:00,0.249,0.315,0.321 -2016-06-21 12:00:00,0.249,0.315,0.321 -2016-06-21 13:00:00,0.249,0.315,0.32 -2016-06-21 14:00:00,0.248,0.315,0.32 -2016-06-21 15:00:00,0.248,0.314,0.319 -2016-06-21 16:00:00,0.248,0.314,0.319 -2016-06-21 17:00:00,0.248,0.314,0.319 -2016-06-21 18:00:00,0.248,0.314,0.319 -2016-06-21 19:00:00,0.248,0.313,0.319 -2016-06-21 20:00:00,0.248,0.312,0.32 -2016-06-21 21:00:00,0.248,0.312,0.322 -2016-06-21 22:00:00,0.248,0.312,0.322 -2016-06-21 23:00:00,0.248,0.312,0.322 -2016-06-22 00:00:00,0.248,0.312,0.322 -2016-06-22 01:00:00,0.248,0.312,0.322 -2016-06-22 02:00:00,0.248,0.312,0.322 -2016-06-22 03:00:00,0.248,0.311,0.322 -2016-06-22 04:00:00,0.248,0.307,0.322 -2016-06-22 05:00:00,0.248,0.307,0.322 -2016-06-22 06:00:00,0.248,0.307,0.322 -2016-06-22 07:00:00,0.248,0.307,0.322 -2016-06-22 08:00:00,0.248,0.307,0.322 -2016-06-22 09:00:00,0.248,0.307,0.321 -2016-06-22 10:00:00,0.248,0.307,0.321 -2016-06-22 11:00:00,0.248,0.307,0.32 -2016-06-22 12:00:00,0.247,0.308,0.319 -2016-06-22 13:00:00,0.247,0.309,0.319 -2016-06-22 14:00:00,0.24600000000000002,0.31,0.319 -2016-06-22 15:00:00,0.24600000000000002,0.31,0.319 -2016-06-22 16:00:00,0.24600000000000002,0.31,0.318 -2016-06-22 17:00:00,0.24600000000000002,0.31,0.318 -2016-06-22 18:00:00,0.24600000000000002,0.31,0.318 -2016-06-22 19:00:00,0.24600000000000002,0.31,0.318 -2016-06-22 20:00:00,0.24600000000000002,0.31,0.318 -2016-06-22 21:00:00,0.245,0.31,0.318 -2016-06-22 22:00:00,0.245,0.31,0.318 -2016-06-22 23:00:00,0.245,0.31,0.318 -2016-06-23 00:00:00,0.245,0.31,0.318 -2016-06-23 01:00:00,0.245,0.31,0.318 -2016-06-23 02:00:00,0.245,0.309,0.318 -2016-06-23 03:00:00,0.245,0.309,0.318 -2016-06-23 04:00:00,0.244,0.309,0.318 -2016-06-23 05:00:00,0.244,0.309,0.319 -2016-06-23 06:00:00,0.244,0.31,0.319 -2016-06-23 07:00:00,0.244,0.309,0.319 -2016-06-23 08:00:00,0.244,0.309,0.319 -2016-06-23 09:00:00,0.244,0.309,0.319 -2016-06-23 10:00:00,0.243,0.309,0.319 -2016-06-23 11:00:00,0.242,0.309,0.318 -2016-06-23 12:00:00,0.24100000000000002,0.309,0.318 -2016-06-23 13:00:00,0.24100000000000002,0.309,0.318 -2016-06-23 14:00:00,0.24,0.309,0.318 -2016-06-23 15:00:00,0.24,0.308,0.318 -2016-06-23 16:00:00,0.24,0.307,0.317 -2016-06-23 17:00:00,0.24,0.307,0.317 -2016-06-23 18:00:00,0.24,0.305,0.317 -2016-06-23 19:00:00,0.239,0.305,0.317 -2016-06-23 20:00:00,0.239,0.305,0.317 -2016-06-23 21:00:00,0.239,0.305,0.317 -2016-06-23 22:00:00,0.239,0.304,0.317 -2016-06-23 23:00:00,0.239,0.305,0.317 -2016-06-24 00:00:00,0.239,0.305,0.317 -2016-06-24 01:00:00,0.239,0.305,0.317 -2016-06-24 02:00:00,0.239,0.305,0.317 -2016-06-24 03:00:00,0.239,0.305,0.317 -2016-06-24 04:00:00,0.239,0.305,0.317 -2016-06-24 05:00:00,0.23800000000000002,0.305,0.317 -2016-06-24 06:00:00,0.23800000000000002,0.305,0.317 -2016-06-24 07:00:00,0.23800000000000002,0.305,0.318 -2016-06-24 08:00:00,0.23800000000000002,0.305,0.318 -2016-06-24 09:00:00,0.23800000000000002,0.305,0.318 -2016-06-24 10:00:00,0.237,0.304,0.317 -2016-06-24 11:00:00,0.237,0.304,0.317 -2016-06-24 12:00:00,0.23600000000000002,0.302,0.317 -2016-06-24 13:00:00,0.235,0.302,0.316 -2016-06-24 14:00:00,0.235,0.303,0.316 -2016-06-24 15:00:00,0.33399999999999996,0.304,0.349 -2016-06-24 16:00:00,0.41700000000000004,0.304,0.375 -2016-06-24 17:00:00,0.4,0.304,0.377 -2016-06-24 18:00:00,0.39399999999999996,0.304,0.37799999999999995 -2016-06-24 19:00:00,0.39299999999999996,0.304,0.37799999999999995 -2016-06-24 20:00:00,0.396,0.304,0.379 -2016-06-24 21:00:00,0.397,0.304,0.379 -2016-06-24 22:00:00,0.39899999999999997,0.304,0.38 -2016-06-24 23:00:00,0.40299999999999997,0.304,0.38 -2016-06-25 00:00:00,0.40700000000000003,0.304,0.381 -2016-06-25 01:00:00,0.41100000000000003,0.304,0.381 -2016-06-25 02:00:00,0.40399999999999997,0.304,0.381 -2016-06-25 03:00:00,0.35100000000000003,0.304,0.381 -2016-06-25 04:00:00,0.305,0.304,0.381 -2016-06-25 05:00:00,0.29,0.304,0.382 -2016-06-25 06:00:00,0.28300000000000003,0.304,0.382 -2016-06-25 07:00:00,0.27899999999999997,0.304,0.382 -2016-06-25 08:00:00,0.278,0.304,0.382 -2016-06-25 09:00:00,0.27399999999999997,0.304,0.382 -2016-06-25 10:00:00,0.27399999999999997,0.304,0.382 -2016-06-25 11:00:00,0.275,0.304,0.382 -2016-06-25 12:00:00,0.276,0.304,0.382 -2016-06-25 13:00:00,0.276,0.304,0.382 -2016-06-25 14:00:00,0.276,0.304,0.38299999999999995 -2016-06-25 15:00:00,0.27699999999999997,0.304,0.38299999999999995 -2016-06-25 16:00:00,0.273,0.304,0.382 -2016-06-25 17:00:00,0.27399999999999997,0.303,0.382 -2016-06-25 18:00:00,0.27399999999999997,0.303,0.38299999999999995 -2016-06-25 19:00:00,0.27399999999999997,0.302,0.38299999999999995 -2016-06-25 20:00:00,0.27399999999999997,0.302,0.38299999999999995 -2016-06-25 21:00:00,0.27399999999999997,0.302,0.38299999999999995 -2016-06-25 22:00:00,0.27399999999999997,0.302,0.38299999999999995 -2016-06-25 23:00:00,0.27399999999999997,0.302,0.38299999999999995 -2016-06-26 00:00:00,0.27399999999999997,0.302,0.38299999999999995 -2016-06-26 01:00:00,0.27399999999999997,0.302,0.38299999999999995 -2016-06-26 02:00:00,0.273,0.302,0.38299999999999995 -2016-06-26 03:00:00,0.273,0.302,0.384 -2016-06-26 04:00:00,0.273,0.302,0.384 -2016-06-26 05:00:00,0.273,0.302,0.385 -2016-06-26 06:00:00,0.272,0.302,0.385 -2016-06-26 07:00:00,0.272,0.302,0.387 -2016-06-26 08:00:00,0.271,0.302,0.387 -2016-06-26 09:00:00,0.271,0.302,0.387 -2016-06-26 10:00:00,0.271,0.302,0.387 -2016-06-26 11:00:00,0.272,0.302,0.386 -2016-06-26 12:00:00,0.271,0.302,0.37799999999999995 -2016-06-26 13:00:00,0.271,0.302,0.376 -2016-06-26 14:00:00,0.271,0.302,0.375 -2016-06-26 15:00:00,0.27,0.3,0.374 -2016-06-26 16:00:00,0.27,0.3,0.368 -2016-06-26 17:00:00,0.26899999999999996,0.298,0.35700000000000004 -2016-06-26 18:00:00,0.26899999999999996,0.299,0.35600000000000004 -2016-06-26 19:00:00,0.26899999999999996,0.3,0.354 -2016-06-26 20:00:00,0.26899999999999996,0.3,0.35 -2016-06-26 21:00:00,0.268,0.3,0.34700000000000003 -2016-06-26 22:00:00,0.268,0.3,0.345 -2016-06-26 23:00:00,0.268,0.3,0.33899999999999997 -2016-06-27 00:00:00,0.268,0.3,0.337 -2016-06-27 01:00:00,0.267,0.301,0.336 -2016-06-27 02:00:00,0.267,0.301,0.336 -2016-06-27 03:00:00,0.267,0.301,0.335 -2016-06-27 04:00:00,0.267,0.301,0.335 -2016-06-27 05:00:00,0.267,0.302,0.33399999999999996 -2016-06-27 06:00:00,0.267,0.301,0.33399999999999996 -2016-06-27 07:00:00,0.266,0.301,0.33299999999999996 -2016-06-27 08:00:00,0.266,0.301,0.332 -2016-06-27 09:00:00,0.266,0.3,0.332 -2016-06-27 10:00:00,0.265,0.3,0.332 -2016-06-27 11:00:00,0.265,0.3,0.331 -2016-06-27 12:00:00,0.265,0.3,0.331 -2016-06-27 13:00:00,0.264,0.3,0.331 -2016-06-27 14:00:00,0.264,0.3,0.331 -2016-06-27 15:00:00,0.264,0.3,0.33 -2016-06-27 16:00:00,0.264,0.297,0.33 -2016-06-27 17:00:00,0.264,0.29600000000000004,0.33 -2016-06-27 18:00:00,0.264,0.297,0.33 -2016-06-27 19:00:00,0.264,0.298,0.33 -2016-06-27 20:00:00,0.263,0.298,0.33 -2016-06-27 21:00:00,0.263,0.298,0.33 -2016-06-27 22:00:00,0.263,0.295,0.33 -2016-06-27 23:00:00,0.263,0.295,0.33 -2016-06-28 00:00:00,0.263,0.295,0.33 -2016-06-28 01:00:00,0.263,0.29600000000000004,0.332 -2016-06-28 02:00:00,0.263,0.29600000000000004,0.332 -2016-06-28 03:00:00,0.263,0.297,0.332 -2016-06-28 04:00:00,0.263,0.297,0.332 -2016-06-28 05:00:00,0.263,0.297,0.332 -2016-06-28 06:00:00,0.263,0.297,0.332 -2016-06-28 07:00:00,0.263,0.297,0.332 -2016-06-28 08:00:00,0.263,0.297,0.331 -2016-06-28 09:00:00,0.263,0.297,0.331 -2016-06-28 10:00:00,0.263,0.297,0.331 -2016-06-28 11:00:00,0.264,0.297,0.331 -2016-06-28 12:00:00,0.263,0.297,0.33 -2016-06-28 13:00:00,0.263,0.298,0.33 -2016-06-28 14:00:00,0.263,0.298,0.33 -2016-06-28 15:00:00,0.263,0.299,0.32899999999999996 -2016-06-28 16:00:00,0.263,0.3,0.32899999999999996 -2016-06-28 17:00:00,0.262,0.3,0.32899999999999996 -2016-06-28 18:00:00,0.262,0.3,0.32899999999999996 -2016-06-28 19:00:00,0.262,0.3,0.327 -2016-06-28 20:00:00,0.262,0.3,0.327 -2016-06-28 21:00:00,0.262,0.3,0.327 -2016-06-28 22:00:00,0.262,0.3,0.327 -2016-06-28 23:00:00,0.262,0.3,0.327 -2016-06-29 00:00:00,0.262,0.3,0.327 -2016-06-29 01:00:00,0.262,0.3,0.327 -2016-06-29 02:00:00,0.262,0.3,0.327 -2016-06-29 03:00:00,0.262,0.3,0.327 -2016-06-29 04:00:00,0.262,0.3,0.327 -2016-06-29 05:00:00,0.262,0.3,0.327 -2016-06-29 06:00:00,0.262,0.3,0.327 -2016-06-29 07:00:00,0.262,0.3,0.327 -2016-06-29 08:00:00,0.262,0.3,0.327 -2016-06-29 09:00:00,0.262,0.3,0.327 -2016-06-29 10:00:00,0.261,0.3,0.326 -2016-06-29 11:00:00,0.261,0.3,0.326 -2016-06-29 12:00:00,0.26,0.3,0.326 -2016-06-29 13:00:00,0.26,0.3,0.326 -2016-06-29 14:00:00,0.259,0.3,0.325 -2016-06-29 15:00:00,0.259,0.3,0.325 -2016-06-29 16:00:00,0.259,0.3,0.325 -2016-06-29 17:00:00,0.258,0.299,0.325 -2016-06-29 18:00:00,0.258,0.299,0.324 -2016-06-29 19:00:00,0.258,0.298,0.324 -2016-06-29 20:00:00,0.258,0.298,0.324 -2016-06-29 21:00:00,0.258,0.298,0.324 -2016-06-29 22:00:00,0.258,0.298,0.324 -2016-06-29 23:00:00,0.258,0.298,0.324 -2016-06-30 00:00:00,0.258,0.298,0.324 -2016-06-30 01:00:00,0.258,0.298,0.324 -2016-06-30 02:00:00,0.258,0.298,0.324 -2016-06-30 03:00:00,0.258,0.298,0.324 -2016-06-30 04:00:00,0.258,0.299,0.324 -2016-06-30 05:00:00,0.258,0.299,0.324 -2016-06-30 06:00:00,0.258,0.299,0.325 -2016-06-30 07:00:00,0.258,0.299,0.325 -2016-06-30 08:00:00,0.258,0.299,0.325 -2016-06-30 09:00:00,0.258,0.299,0.326 -2016-06-30 10:00:00,0.258,0.298,0.325 -2016-06-30 11:00:00,0.258,0.298,0.325 -2016-06-30 12:00:00,0.258,0.298,0.325 -2016-06-30 13:00:00,0.257,0.298,0.324 -2016-06-30 14:00:00,0.258,0.298,0.324 -2016-06-30 15:00:00,0.257,0.298,0.324 -2016-06-30 16:00:00,0.257,0.297,0.324 -2016-06-30 17:00:00,0.257,0.297,0.324 -2016-06-30 18:00:00,0.257,0.29600000000000004,0.324 -2016-06-30 19:00:00,0.257,0.295,0.324 -2016-06-30 20:00:00,0.257,0.295,0.32299999999999995 -2016-06-30 21:00:00,0.257,0.295,0.32299999999999995 -2016-06-30 22:00:00,0.257,0.295,0.32299999999999995 -2016-06-30 23:00:00,0.257,0.295,0.32299999999999995 -2016-07-01 00:00:00,0.257,0.295,0.324 -2016-07-01 01:00:00,0.257,0.295,0.324 -2016-07-01 02:00:00,0.257,0.295,0.32299999999999995 -2016-07-01 03:00:00,0.257,0.295,0.324 -2016-07-01 04:00:00,0.257,0.295,0.324 -2016-07-01 05:00:00,0.257,0.295,0.324 -2016-07-01 06:00:00,0.257,0.295,0.324 -2016-07-01 07:00:00,0.256,0.295,0.324 -2016-07-01 08:00:00,0.256,0.295,0.324 -2016-07-01 09:00:00,0.257,0.295,0.324 -2016-07-01 10:00:00,0.256,0.295,0.324 -2016-07-01 11:00:00,0.256,0.295,0.32299999999999995 -2016-07-01 12:00:00,0.256,0.295,0.32299999999999995 -2016-07-01 13:00:00,0.256,0.295,0.32299999999999995 -2016-07-01 14:00:00,0.256,0.294,0.32299999999999995 -2016-07-01 15:00:00,0.256,0.293,0.32299999999999995 -2016-07-01 16:00:00,0.256,0.293,0.32299999999999995 -2016-07-01 17:00:00,0.256,0.292,0.322 -2016-07-01 18:00:00,0.255,0.292,0.322 -2016-07-01 19:00:00,0.255,0.292,0.322 -2016-07-01 20:00:00,0.255,0.292,0.322 -2016-07-01 21:00:00,0.255,0.29100000000000004,0.322 -2016-07-01 22:00:00,0.255,0.292,0.322 -2016-07-01 23:00:00,0.255,0.292,0.322 -2016-07-02 00:00:00,0.255,0.292,0.322 -2016-07-02 01:00:00,0.255,0.292,0.322 -2016-07-02 02:00:00,0.255,0.292,0.322 -2016-07-02 03:00:00,0.255,0.292,0.322 -2016-07-02 04:00:00,0.255,0.292,0.322 -2016-07-02 05:00:00,0.255,0.292,0.322 -2016-07-02 06:00:00,0.255,0.292,0.322 -2016-07-02 07:00:00,0.255,0.292,0.322 -2016-07-02 08:00:00,0.255,0.293,0.32299999999999995 -2016-07-02 09:00:00,0.255,0.293,0.324 -2016-07-02 10:00:00,0.256,0.293,0.324 -2016-07-02 11:00:00,0.255,0.293,0.324 -2016-07-02 12:00:00,0.255,0.293,0.324 -2016-07-02 13:00:00,0.255,0.292,0.324 -2016-07-02 14:00:00,0.255,0.292,0.325 -2016-07-02 15:00:00,0.255,0.292,0.324 -2016-07-02 16:00:00,0.256,0.29,0.324 -2016-07-02 17:00:00,0.256,0.29,0.32299999999999995 -2016-07-02 18:00:00,0.256,0.29,0.32299999999999995 -2016-07-02 19:00:00,0.256,0.29,0.32299999999999995 -2016-07-02 20:00:00,0.255,0.29,0.322 -2016-07-02 21:00:00,0.255,0.29,0.322 -2016-07-02 22:00:00,0.255,0.29,0.322 -2016-07-02 23:00:00,0.255,0.29,0.322 -2016-07-03 00:00:00,0.255,0.29,0.322 -2016-07-03 01:00:00,0.255,0.29,0.322 -2016-07-03 02:00:00,0.255,0.29,0.322 -2016-07-03 03:00:00,0.255,0.29,0.322 -2016-07-03 04:00:00,0.255,0.29,0.322 -2016-07-03 05:00:00,0.254,0.29,0.322 -2016-07-03 06:00:00,0.254,0.29,0.322 -2016-07-03 07:00:00,0.255,0.29,0.32299999999999995 -2016-07-03 08:00:00,0.254,0.29,0.32299999999999995 -2016-07-03 09:00:00,0.254,0.29,0.32299999999999995 -2016-07-03 10:00:00,0.254,0.29,0.322 -2016-07-03 11:00:00,0.254,0.29,0.322 -2016-07-03 12:00:00,0.254,0.29,0.322 -2016-07-03 13:00:00,0.252,0.29,0.324 -2016-07-03 14:00:00,0.253,0.29,0.325 -2016-07-03 15:00:00,0.254,0.29,0.325 -2016-07-03 16:00:00,0.255,0.29,0.324 -2016-07-03 17:00:00,0.255,0.29,0.32299999999999995 -2016-07-03 18:00:00,0.255,0.289,0.32299999999999995 -2016-07-03 19:00:00,0.253,0.28800000000000003,0.325 -2016-07-03 20:00:00,0.254,0.28800000000000003,0.325 -2016-07-03 21:00:00,0.254,0.28800000000000003,0.325 -2016-07-03 22:00:00,0.254,0.28800000000000003,0.325 -2016-07-03 23:00:00,0.255,0.28800000000000003,0.325 -2016-07-04 00:00:00,0.255,0.28800000000000003,0.325 -2016-07-04 01:00:00,0.255,0.28800000000000003,0.325 -2016-07-04 02:00:00,0.255,0.28800000000000003,0.325 -2016-07-04 03:00:00,0.255,0.289,0.325 -2016-07-04 04:00:00,0.255,0.289,0.325 -2016-07-04 05:00:00,0.255,0.289,0.325 -2016-07-04 06:00:00,0.255,0.289,0.325 -2016-07-04 07:00:00,0.255,0.29,0.325 -2016-07-04 08:00:00,0.255,0.29,0.325 -2016-07-04 09:00:00,0.255,0.29,0.325 -2016-07-04 10:00:00,0.256,0.29,0.324 -2016-07-04 11:00:00,0.256,0.29,0.324 -2016-07-04 12:00:00,0.255,0.29,0.32299999999999995 -2016-07-04 13:00:00,0.255,0.289,0.32299999999999995 -2016-07-04 14:00:00,0.255,0.28800000000000003,0.322 -2016-07-04 15:00:00,0.255,0.28800000000000003,0.322 -2016-07-04 16:00:00,0.255,0.287,0.322 -2016-07-04 17:00:00,0.255,0.287,0.322 -2016-07-04 18:00:00,0.255,0.287,0.322 -2016-07-04 19:00:00,0.255,0.28600000000000003,0.322 -2016-07-04 20:00:00,0.255,0.285,0.322 -2016-07-04 21:00:00,0.255,0.285,0.322 -2016-07-04 22:00:00,0.255,0.285,0.322 -2016-07-04 23:00:00,0.255,0.285,0.322 -2016-07-05 00:00:00,0.255,0.28600000000000003,0.322 -2016-07-05 01:00:00,0.255,0.287,0.322 -2016-07-05 02:00:00,0.255,0.287,0.322 -2016-07-05 03:00:00,0.255,0.287,0.322 -2016-07-05 04:00:00,0.255,0.287,0.322 -2016-07-05 05:00:00,0.255,0.287,0.322 -2016-07-05 06:00:00,0.255,0.287,0.32299999999999995 -2016-07-05 07:00:00,0.255,0.287,0.32299999999999995 -2016-07-05 08:00:00,0.255,0.287,0.32299999999999995 -2016-07-05 09:00:00,0.255,0.287,0.32299999999999995 -2016-07-05 10:00:00,0.255,0.287,0.322 -2016-07-05 11:00:00,0.255,0.287,0.322 -2016-07-05 12:00:00,0.255,0.287,0.322 -2016-07-05 13:00:00,0.255,0.287,0.322 -2016-07-05 14:00:00,0.255,0.287,0.322 -2016-07-05 15:00:00,0.255,0.28600000000000003,0.322 -2016-07-05 16:00:00,0.255,0.285,0.322 -2016-07-05 17:00:00,0.255,0.285,0.322 -2016-07-05 18:00:00,0.255,0.28300000000000003,0.322 -2016-07-05 19:00:00,0.255,0.28300000000000003,0.322 -2016-07-05 20:00:00,0.255,0.28300000000000003,0.322 -2016-07-05 21:00:00,0.255,0.28300000000000003,0.322 -2016-07-05 22:00:00,0.254,0.28300000000000003,0.322 -2016-07-05 23:00:00,0.254,0.28300000000000003,0.322 -2016-07-06 00:00:00,0.254,0.28300000000000003,0.322 -2016-07-06 01:00:00,0.254,0.28300000000000003,0.321 -2016-07-06 02:00:00,0.254,0.28300000000000003,0.321 -2016-07-06 03:00:00,0.254,0.28300000000000003,0.321 -2016-07-06 04:00:00,0.254,0.28300000000000003,0.322 -2016-07-06 05:00:00,0.254,0.284,0.322 -2016-07-06 06:00:00,0.254,0.285,0.322 -2016-07-06 07:00:00,0.254,0.285,0.322 -2016-07-06 08:00:00,0.254,0.285,0.322 -2016-07-06 09:00:00,0.254,0.285,0.322 -2016-07-06 10:00:00,0.253,0.285,0.322 -2016-07-06 11:00:00,0.253,0.285,0.322 -2016-07-06 12:00:00,0.253,0.285,0.321 -2016-07-06 13:00:00,0.253,0.28300000000000003,0.321 -2016-07-06 14:00:00,0.253,0.28300000000000003,0.321 -2016-07-06 15:00:00,0.252,0.282,0.321 -2016-07-06 16:00:00,0.252,0.281,0.321 -2016-07-06 17:00:00,0.252,0.281,0.32 -2016-07-06 18:00:00,0.252,0.28,0.32 -2016-07-06 19:00:00,0.252,0.28,0.32 -2016-07-06 20:00:00,0.252,0.28,0.32 -2016-07-06 21:00:00,0.251,0.28,0.32 -2016-07-06 22:00:00,0.251,0.28,0.32 -2016-07-06 23:00:00,0.251,0.28,0.32 -2016-07-07 00:00:00,0.251,0.28,0.32 -2016-07-07 01:00:00,0.251,0.28,0.32 -2016-07-07 02:00:00,0.251,0.28,0.32 -2016-07-07 03:00:00,0.251,0.28,0.32 -2016-07-07 04:00:00,0.251,0.28,0.32 -2016-07-07 05:00:00,0.251,0.28,0.32 -2016-07-07 06:00:00,0.251,0.28,0.32 -2016-07-07 07:00:00,0.25,0.28,0.32 -2016-07-07 08:00:00,0.251,0.28,0.32 -2016-07-07 09:00:00,0.25,0.28,0.321 -2016-07-07 10:00:00,0.25,0.28,0.32 -2016-07-07 11:00:00,0.25,0.28,0.32 -2016-07-07 12:00:00,0.25,0.28,0.32 -2016-07-07 13:00:00,0.249,0.28,0.32 -2016-07-07 14:00:00,0.249,0.28,0.319 -2016-07-07 15:00:00,0.249,0.28,0.319 -2016-07-07 16:00:00,0.249,0.278,0.319 -2016-07-07 17:00:00,0.248,0.278,0.319 -2016-07-07 18:00:00,0.248,0.278,0.319 -2016-07-07 19:00:00,0.248,0.27899999999999997,0.319 -2016-07-07 20:00:00,0.248,0.28,0.319 -2016-07-07 21:00:00,0.248,0.28,0.319 -2016-07-07 22:00:00,0.248,0.28,0.319 -2016-07-07 23:00:00,0.248,0.281,0.319 -2016-07-08 00:00:00,0.248,0.281,0.319 -2016-07-08 01:00:00,0.248,0.281,0.319 -2016-07-08 02:00:00,0.248,0.281,0.319 -2016-07-08 03:00:00,0.248,0.281,0.319 -2016-07-08 04:00:00,0.248,0.281,0.319 -2016-07-08 05:00:00,0.247,0.281,0.319 -2016-07-08 06:00:00,0.247,0.281,0.319 -2016-07-08 07:00:00,0.247,0.281,0.319 -2016-07-08 08:00:00,0.247,0.281,0.319 -2016-07-08 09:00:00,0.247,0.281,0.319 -2016-07-08 10:00:00,0.247,0.281,0.319 -2016-07-08 11:00:00,0.247,0.281,0.319 -2016-07-08 12:00:00,0.24600000000000002,0.281,0.319 -2016-07-08 13:00:00,0.24600000000000002,0.281,0.319 -2016-07-08 14:00:00,0.24600000000000002,0.281,0.317 -2016-07-08 15:00:00,0.245,0.281,0.314 -2016-07-08 16:00:00,0.245,0.281,0.314 -2016-07-08 17:00:00,0.245,0.281,0.314 -2016-07-08 18:00:00,0.245,0.281,0.314 -2016-07-08 19:00:00,0.245,0.281,0.314 -2016-07-08 20:00:00,0.245,0.28,0.314 -2016-07-08 21:00:00,0.245,0.28,0.314 -2016-07-08 22:00:00,0.245,0.28,0.314 -2016-07-08 23:00:00,0.245,0.28,0.314 -2016-07-09 00:00:00,0.245,0.28,0.314 -2016-07-09 01:00:00,0.245,0.28,0.314 -2016-07-09 02:00:00,0.245,0.281,0.315 -2016-07-09 03:00:00,0.245,0.281,0.315 -2016-07-09 04:00:00,0.245,0.281,0.315 -2016-07-09 05:00:00,0.245,0.281,0.315 -2016-07-09 06:00:00,0.245,0.281,0.315 -2016-07-09 07:00:00,0.245,0.281,0.315 -2016-07-09 08:00:00,0.245,0.281,0.315 -2016-07-09 09:00:00,0.245,0.281,0.315 -2016-07-09 10:00:00,0.245,0.281,0.314 -2016-07-09 11:00:00,0.244,0.281,0.314 -2016-07-09 12:00:00,0.244,0.281,0.314 -2016-07-09 13:00:00,0.244,0.281,0.314 -2016-07-09 14:00:00,0.244,0.28,0.314 -2016-07-09 15:00:00,0.243,0.28,0.313 -2016-07-09 16:00:00,0.243,0.28,0.313 -2016-07-09 17:00:00,0.243,0.27899999999999997,0.313 -2016-07-09 18:00:00,0.243,0.27899999999999997,0.313 -2016-07-09 19:00:00,0.243,0.278,0.313 -2016-07-09 20:00:00,0.243,0.278,0.313 -2016-07-09 21:00:00,0.243,0.278,0.313 -2016-07-09 22:00:00,0.243,0.278,0.313 -2016-07-09 23:00:00,0.243,0.278,0.313 -2016-07-10 00:00:00,0.243,0.278,0.313 -2016-07-10 01:00:00,0.242,0.278,0.313 -2016-07-10 02:00:00,0.242,0.27899999999999997,0.313 -2016-07-10 03:00:00,0.242,0.27899999999999997,0.313 -2016-07-10 04:00:00,0.242,0.28,0.313 -2016-07-10 05:00:00,0.242,0.28,0.313 -2016-07-10 06:00:00,0.242,0.28,0.313 -2016-07-10 07:00:00,0.242,0.28,0.313 -2016-07-10 08:00:00,0.242,0.28,0.313 -2016-07-10 09:00:00,0.24100000000000002,0.28,0.313 -2016-07-10 10:00:00,0.242,0.28,0.313 -2016-07-10 11:00:00,0.24100000000000002,0.28,0.313 -2016-07-10 12:00:00,0.24100000000000002,0.28,0.313 -2016-07-10 13:00:00,0.24100000000000002,0.28,0.313 -2016-07-10 14:00:00,0.24100000000000002,0.27899999999999997,0.313 -2016-07-10 15:00:00,0.24,0.278,0.312 -2016-07-10 16:00:00,0.24,0.278,0.312 -2016-07-10 17:00:00,0.24,0.278,0.312 -2016-07-10 18:00:00,0.24,0.27699999999999997,0.312 -2016-07-10 19:00:00,0.24,0.276,0.312 -2016-07-10 20:00:00,0.24,0.276,0.312 -2016-07-10 21:00:00,0.24,0.276,0.312 -2016-07-10 22:00:00,0.24,0.276,0.312 -2016-07-10 23:00:00,0.24,0.276,0.312 -2016-07-11 00:00:00,0.24,0.27699999999999997,0.312 -2016-07-11 01:00:00,0.24,0.278,0.312 -2016-07-11 02:00:00,0.24,0.278,0.312 -2016-07-11 03:00:00,0.24,0.278,0.312 -2016-07-11 04:00:00,0.24,0.278,0.312 -2016-07-11 05:00:00,0.24,0.278,0.312 -2016-07-11 06:00:00,0.24,0.278,0.312 -2016-07-11 07:00:00,0.24,0.278,0.312 -2016-07-11 08:00:00,0.24,0.278,0.312 -2016-07-11 09:00:00,0.239,0.278,0.312 -2016-07-11 10:00:00,0.24,0.278,0.312 -2016-07-11 11:00:00,0.239,0.278,0.312 -2016-07-11 12:00:00,0.239,0.278,0.311 -2016-07-11 13:00:00,0.23800000000000002,0.278,0.311 -2016-07-11 14:00:00,0.23800000000000002,0.278,0.311 -2016-07-11 15:00:00,0.23800000000000002,0.278,0.311 -2016-07-11 16:00:00,0.23800000000000002,0.276,0.311 -2016-07-11 17:00:00,0.23800000000000002,0.276,0.311 -2016-07-11 18:00:00,0.23800000000000002,0.276,0.31 -2016-07-11 19:00:00,0.23800000000000002,0.276,0.31 -2016-07-11 20:00:00,0.237,0.276,0.31 -2016-07-11 21:00:00,0.237,0.276,0.31 -2016-07-11 22:00:00,0.237,0.276,0.31 -2016-07-11 23:00:00,0.237,0.276,0.31 -2016-07-12 00:00:00,0.237,0.276,0.31 -2016-07-12 01:00:00,0.237,0.276,0.31 -2016-07-12 02:00:00,0.237,0.276,0.31 -2016-07-12 03:00:00,0.237,0.276,0.31 -2016-07-12 04:00:00,0.23600000000000002,0.27699999999999997,0.31 -2016-07-12 05:00:00,0.237,0.278,0.31 -2016-07-12 06:00:00,0.23600000000000002,0.278,0.31 -2016-07-12 07:00:00,0.23600000000000002,0.278,0.311 -2016-07-12 08:00:00,0.23600000000000002,0.278,0.311 -2016-07-12 09:00:00,0.23600000000000002,0.278,0.31 -2016-07-12 10:00:00,0.23600000000000002,0.278,0.31 -2016-07-12 11:00:00,0.23600000000000002,0.278,0.31 -2016-07-12 12:00:00,0.235,0.278,0.31 -2016-07-12 13:00:00,0.235,0.278,0.31 -2016-07-12 14:00:00,0.23399999999999999,0.276,0.31 -2016-07-12 15:00:00,0.23399999999999999,0.276,0.31 -2016-07-12 16:00:00,0.23399999999999999,0.275,0.309 -2016-07-12 17:00:00,0.23399999999999999,0.275,0.309 -2016-07-12 18:00:00,0.23399999999999999,0.275,0.309 -2016-07-12 19:00:00,0.23399999999999999,0.275,0.309 -2016-07-12 20:00:00,0.23399999999999999,0.27399999999999997,0.31 -2016-07-12 21:00:00,0.235,0.27399999999999997,0.311 -2016-07-12 22:00:00,0.235,0.275,0.311 -2016-07-12 23:00:00,0.235,0.275,0.311 -2016-07-13 00:00:00,0.23399999999999999,0.275,0.311 -2016-07-13 01:00:00,0.23399999999999999,0.275,0.311 -2016-07-13 02:00:00,0.23399999999999999,0.275,0.311 -2016-07-13 03:00:00,0.23399999999999999,0.275,0.311 -2016-07-13 04:00:00,0.23399999999999999,0.275,0.311 -2016-07-13 05:00:00,0.23399999999999999,0.275,0.311 -2016-07-13 06:00:00,0.23399999999999999,0.276,0.311 -2016-07-13 07:00:00,0.23399999999999999,0.276,0.311 -2016-07-13 08:00:00,0.23399999999999999,0.276,0.311 -2016-07-13 09:00:00,0.233,0.276,0.311 -2016-07-13 10:00:00,0.233,0.276,0.311 -2016-07-13 11:00:00,0.233,0.276,0.311 -2016-07-13 12:00:00,0.233,0.276,0.31 -2016-07-13 13:00:00,0.23199999999999998,0.275,0.313 -2016-07-13 14:00:00,0.233,0.275,0.314 -2016-07-13 15:00:00,0.23399999999999999,0.27399999999999997,0.314 -2016-07-13 16:00:00,0.235,0.273,0.314 -2016-07-13 17:00:00,0.23600000000000002,0.273,0.313 -2016-07-13 18:00:00,0.23600000000000002,0.272,0.313 -2016-07-13 19:00:00,0.23600000000000002,0.271,0.313 -2016-07-13 20:00:00,0.23600000000000002,0.271,0.313 -2016-07-13 21:00:00,0.23600000000000002,0.271,0.313 -2016-07-13 22:00:00,0.23600000000000002,0.271,0.313 -2016-07-13 23:00:00,0.23600000000000002,0.271,0.313 -2016-07-14 00:00:00,0.23600000000000002,0.271,0.313 -2016-07-14 01:00:00,0.23600000000000002,0.272,0.313 -2016-07-14 02:00:00,0.23600000000000002,0.273,0.313 -2016-07-14 03:00:00,0.23600000000000002,0.273,0.313 -2016-07-14 04:00:00,0.23600000000000002,0.273,0.313 -2016-07-14 05:00:00,0.23600000000000002,0.273,0.313 -2016-07-14 06:00:00,0.23600000000000002,0.273,0.314 -2016-07-14 07:00:00,0.23600000000000002,0.273,0.314 -2016-07-14 08:00:00,0.23600000000000002,0.273,0.314 -2016-07-14 09:00:00,0.23600000000000002,0.273,0.314 -2016-07-14 10:00:00,0.23600000000000002,0.273,0.313 -2016-07-14 11:00:00,0.23600000000000002,0.273,0.313 -2016-07-14 12:00:00,0.23600000000000002,0.273,0.313 -2016-07-14 13:00:00,0.235,0.273,0.312 -2016-07-14 14:00:00,0.235,0.272,0.312 -2016-07-14 15:00:00,0.235,0.271,0.311 -2016-07-14 16:00:00,0.235,0.27,0.311 -2016-07-14 17:00:00,0.23399999999999999,0.27,0.311 -2016-07-14 18:00:00,0.23399999999999999,0.26899999999999996,0.311 -2016-07-14 19:00:00,0.23399999999999999,0.268,0.311 -2016-07-14 20:00:00,0.23399999999999999,0.268,0.311 -2016-07-14 21:00:00,0.23399999999999999,0.267,0.311 -2016-07-14 22:00:00,0.23399999999999999,0.267,0.311 -2016-07-14 23:00:00,0.23399999999999999,0.268,0.311 -2016-07-15 00:00:00,0.23399999999999999,0.268,0.311 -2016-07-15 01:00:00,0.23399999999999999,0.268,0.311 -2016-07-15 02:00:00,0.23399999999999999,0.26899999999999996,0.311 -2016-07-15 03:00:00,0.23399999999999999,0.26899999999999996,0.311 -2016-07-15 04:00:00,0.23399999999999999,0.27,0.311 -2016-07-15 05:00:00,0.23399999999999999,0.27,0.311 -2016-07-15 06:00:00,0.23399999999999999,0.27,0.311 -2016-07-15 07:00:00,0.233,0.27,0.311 -2016-07-15 08:00:00,0.23399999999999999,0.27,0.311 -2016-07-15 09:00:00,0.23399999999999999,0.27,0.311 -2016-07-15 10:00:00,0.233,0.27,0.311 -2016-07-15 11:00:00,0.233,0.27,0.311 -2016-07-15 12:00:00,0.233,0.27,0.311 -2016-07-15 13:00:00,0.233,0.27,0.31 -2016-07-15 14:00:00,0.233,0.27,0.31 -2016-07-15 15:00:00,0.233,0.27,0.31 -2016-07-15 16:00:00,0.233,0.27,0.31 -2016-07-15 17:00:00,0.233,0.27,0.31 -2016-07-15 18:00:00,0.233,0.27,0.31 -2016-07-15 19:00:00,0.233,0.27,0.31 -2016-07-15 20:00:00,0.233,0.27,0.31 -2016-07-15 21:00:00,0.233,0.27,0.31 -2016-07-15 22:00:00,0.233,0.27,0.31 -2016-07-15 23:00:00,0.233,0.27,0.31 -2016-07-16 00:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 01:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 02:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 03:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 04:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 05:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 06:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 07:00:00,0.23199999999999998,0.271,0.31 -2016-07-16 08:00:00,0.23199999999999998,0.272,0.31 -2016-07-16 09:00:00,0.23199999999999998,0.272,0.31 -2016-07-16 10:00:00,0.23199999999999998,0.272,0.31 -2016-07-16 11:00:00,0.23199999999999998,0.272,0.31 -2016-07-16 12:00:00,0.231,0.272,0.31 -2016-07-16 13:00:00,0.231,0.272,0.31 -2016-07-16 14:00:00,0.231,0.272,0.31 -2016-07-16 15:00:00,0.231,0.271,0.31 -2016-07-16 16:00:00,0.231,0.27,0.31 -2016-07-16 17:00:00,0.231,0.27,0.31 -2016-07-16 18:00:00,0.231,0.27,0.309 -2016-07-16 19:00:00,0.231,0.27,0.309 -2016-07-16 20:00:00,0.231,0.27,0.309 -2016-07-16 21:00:00,0.231,0.27,0.309 -2016-07-16 22:00:00,0.231,0.27,0.309 -2016-07-16 23:00:00,0.231,0.27,0.309 -2016-07-17 00:00:00,0.231,0.27,0.309 -2016-07-17 01:00:00,0.231,0.27,0.309 -2016-07-17 02:00:00,0.231,0.27,0.31 -2016-07-17 03:00:00,0.231,0.27,0.31 -2016-07-17 04:00:00,0.231,0.27,0.31 -2016-07-17 05:00:00,0.231,0.271,0.31 -2016-07-17 06:00:00,0.231,0.271,0.31 -2016-07-17 07:00:00,0.231,0.26899999999999996,0.31 -2016-07-17 08:00:00,0.231,0.268,0.31 -2016-07-17 09:00:00,0.231,0.26899999999999996,0.31 -2016-07-17 10:00:00,0.231,0.26899999999999996,0.31 -2016-07-17 11:00:00,0.231,0.26899999999999996,0.31 -2016-07-17 12:00:00,0.231,0.27,0.31 -2016-07-17 13:00:00,0.231,0.27,0.309 -2016-07-17 14:00:00,0.231,0.27,0.309 -2016-07-17 15:00:00,0.231,0.27,0.309 -2016-07-17 16:00:00,0.231,0.27,0.309 -2016-07-17 17:00:00,0.231,0.27,0.309 -2016-07-17 18:00:00,0.231,0.271,0.309 -2016-07-17 19:00:00,0.231,0.271,0.309 -2016-07-17 20:00:00,0.231,0.271,0.309 -2016-07-17 21:00:00,0.231,0.271,0.309 -2016-07-17 22:00:00,0.231,0.271,0.309 -2016-07-17 23:00:00,0.231,0.272,0.308 -2016-07-18 00:00:00,0.231,0.272,0.309 -2016-07-18 01:00:00,0.231,0.273,0.309 -2016-07-18 02:00:00,0.231,0.273,0.309 -2016-07-18 03:00:00,0.231,0.273,0.309 -2016-07-18 04:00:00,0.231,0.273,0.309 -2016-07-18 05:00:00,0.231,0.273,0.309 -2016-07-18 06:00:00,0.23,0.273,0.309 -2016-07-18 07:00:00,0.23,0.273,0.309 -2016-07-18 08:00:00,0.23,0.273,0.309 -2016-07-18 09:00:00,0.23,0.273,0.309 -2016-07-18 10:00:00,0.23,0.273,0.309 -2016-07-18 11:00:00,0.23,0.273,0.309 -2016-07-18 12:00:00,0.23,0.273,0.309 -2016-07-18 13:00:00,0.22899999999999998,0.273,0.308 -2016-07-18 14:00:00,0.22899999999999998,0.273,0.308 -2016-07-18 15:00:00,0.22899999999999998,0.273,0.308 -2016-07-18 16:00:00,0.22899999999999998,0.273,0.308 -2016-07-18 17:00:00,0.22899999999999998,0.273,0.308 -2016-07-18 18:00:00,0.22899999999999998,0.273,0.308 -2016-07-18 19:00:00,0.22899999999999998,0.272,0.308 -2016-07-18 20:00:00,0.22899999999999998,0.273,0.307 -2016-07-18 21:00:00,0.22899999999999998,0.273,0.307 -2016-07-18 22:00:00,0.22899999999999998,0.273,0.307 -2016-07-18 23:00:00,0.22899999999999998,0.273,0.307 -2016-07-19 00:00:00,0.22899999999999998,0.273,0.307 -2016-07-19 01:00:00,0.228,0.273,0.307 -2016-07-19 02:00:00,0.228,0.273,0.308 -2016-07-19 03:00:00,0.228,0.273,0.308 -2016-07-19 04:00:00,0.228,0.273,0.308 -2016-07-19 05:00:00,0.228,0.27399999999999997,0.308 -2016-07-19 06:00:00,0.22699999999999998,0.27399999999999997,0.308 -2016-07-19 07:00:00,0.22699999999999998,0.275,0.308 -2016-07-19 08:00:00,0.226,0.275,0.308 -2016-07-19 09:00:00,0.226,0.275,0.308 -2016-07-19 10:00:00,0.226,0.275,0.308 -2016-07-19 11:00:00,0.225,0.275,0.308 -2016-07-19 12:00:00,0.225,0.275,0.308 -2016-07-19 13:00:00,0.22399999999999998,0.275,0.307 -2016-07-19 14:00:00,0.22399999999999998,0.275,0.307 -2016-07-19 15:00:00,0.223,0.27399999999999997,0.307 -2016-07-19 16:00:00,0.223,0.273,0.306 -2016-07-19 17:00:00,0.22399999999999998,0.273,0.306 -2016-07-19 18:00:00,0.225,0.273,0.306 -2016-07-19 19:00:00,0.225,0.273,0.306 -2016-07-19 20:00:00,0.226,0.273,0.306 -2016-07-19 21:00:00,0.226,0.273,0.306 -2016-07-19 22:00:00,0.22699999999999998,0.273,0.306 -2016-07-19 23:00:00,0.22699999999999998,0.273,0.306 -2016-07-20 00:00:00,0.22699999999999998,0.273,0.306 -2016-07-20 01:00:00,0.22699999999999998,0.273,0.306 -2016-07-20 02:00:00,0.22699999999999998,0.273,0.306 -2016-07-20 03:00:00,0.22699999999999998,0.273,0.306 -2016-07-20 04:00:00,0.22699999999999998,0.273,0.306 -2016-07-20 05:00:00,0.22699999999999998,0.273,0.306 -2016-07-20 06:00:00,0.22699999999999998,0.27399999999999997,0.306 -2016-07-20 07:00:00,0.22699999999999998,0.27399999999999997,0.306 -2016-07-20 08:00:00,0.226,0.27399999999999997,0.306 -2016-07-20 09:00:00,0.22699999999999998,0.27399999999999997,0.307 -2016-07-20 10:00:00,0.226,0.27399999999999997,0.307 -2016-07-20 11:00:00,0.226,0.27399999999999997,0.306 -2016-07-20 12:00:00,0.226,0.27399999999999997,0.306 -2016-07-20 13:00:00,0.226,0.273,0.306 -2016-07-20 14:00:00,0.226,0.273,0.306 -2016-07-20 15:00:00,0.225,0.273,0.305 -2016-07-20 16:00:00,0.226,0.273,0.305 -2016-07-20 17:00:00,0.225,0.272,0.305 -2016-07-20 18:00:00,0.225,0.272,0.304 -2016-07-20 19:00:00,0.226,0.272,0.304 -2016-07-20 20:00:00,0.226,0.272,0.304 -2016-07-20 21:00:00,0.226,0.272,0.304 -2016-07-20 22:00:00,0.226,0.272,0.304 -2016-07-20 23:00:00,0.226,0.273,0.305 -2016-07-21 00:00:00,0.226,0.273,0.305 -2016-07-21 01:00:00,0.226,0.273,0.305 -2016-07-21 02:00:00,0.226,0.273,0.305 -2016-07-21 03:00:00,0.226,0.273,0.305 -2016-07-21 04:00:00,0.226,0.273,0.305 -2016-07-21 05:00:00,0.226,0.273,0.305 -2016-07-21 06:00:00,0.226,0.273,0.305 -2016-07-21 07:00:00,0.226,0.273,0.305 -2016-07-21 08:00:00,0.226,0.273,0.305 -2016-07-21 09:00:00,0.226,0.273,0.305 -2016-07-21 10:00:00,0.226,0.273,0.306 -2016-07-21 11:00:00,0.226,0.271,0.306 -2016-07-21 12:00:00,0.22699999999999998,0.271,0.307 -2016-07-21 13:00:00,0.22699999999999998,0.271,0.307 -2016-07-21 14:00:00,0.22699999999999998,0.272,0.307 -2016-07-21 15:00:00,0.22699999999999998,0.272,0.306 -2016-07-21 16:00:00,0.22699999999999998,0.272,0.306 -2016-07-21 17:00:00,0.22699999999999998,0.271,0.306 -2016-07-21 18:00:00,0.22699999999999998,0.271,0.306 -2016-07-21 19:00:00,0.22699999999999998,0.271,0.306 -2016-07-21 20:00:00,0.22699999999999998,0.271,0.306 -2016-07-21 21:00:00,0.22699999999999998,0.271,0.306 -2016-07-21 22:00:00,0.22699999999999998,0.271,0.306 -2016-07-21 23:00:00,0.22699999999999998,0.271,0.306 -2016-07-22 00:00:00,0.22699999999999998,0.271,0.306 -2016-07-22 01:00:00,0.22699999999999998,0.272,0.306 -2016-07-22 02:00:00,0.22699999999999998,0.272,0.306 -2016-07-22 03:00:00,0.22699999999999998,0.272,0.306 -2016-07-22 04:00:00,0.22699999999999998,0.272,0.306 -2016-07-22 05:00:00,0.22699999999999998,0.273,0.306 -2016-07-22 06:00:00,0.22699999999999998,0.273,0.306 -2016-07-22 07:00:00,0.22699999999999998,0.273,0.306 -2016-07-22 08:00:00,0.22699999999999998,0.273,0.306 -2016-07-22 09:00:00,0.22699999999999998,0.273,0.307 -2016-07-22 10:00:00,0.22699999999999998,0.273,0.307 -2016-07-22 11:00:00,0.22699999999999998,0.273,0.306 -2016-07-22 12:00:00,0.22699999999999998,0.273,0.306 -2016-07-22 13:00:00,0.22699999999999998,0.273,0.306 -2016-07-22 14:00:00,0.22699999999999998,0.272,0.306 -2016-07-22 15:00:00,0.22699999999999998,0.271,0.306 -2016-07-22 16:00:00,0.22699999999999998,0.271,0.305 -2016-07-22 17:00:00,0.22699999999999998,0.271,0.305 -2016-07-22 18:00:00,0.22699999999999998,0.271,0.305 -2016-07-22 19:00:00,0.22699999999999998,0.271,0.305 -2016-07-22 20:00:00,0.22699999999999998,0.27,0.305 -2016-07-22 21:00:00,0.22699999999999998,0.27,0.305 -2016-07-22 22:00:00,0.22699999999999998,0.271,0.305 -2016-07-22 23:00:00,0.22699999999999998,0.271,0.305 -2016-07-23 00:00:00,0.22699999999999998,0.271,0.306 -2016-07-23 01:00:00,0.22699999999999998,0.271,0.306 -2016-07-23 02:00:00,0.22699999999999998,0.271,0.306 -2016-07-23 03:00:00,0.22699999999999998,0.271,0.306 -2016-07-23 04:00:00,0.235,0.271,0.308 -2016-07-23 05:00:00,0.252,0.272,0.311 -2016-07-23 06:00:00,0.256,0.272,0.311 -2016-07-23 07:00:00,0.255,0.272,0.311 -2016-07-23 08:00:00,0.254,0.272,0.311 -2016-07-23 09:00:00,0.253,0.272,0.311 -2016-07-23 10:00:00,0.252,0.271,0.311 -2016-07-23 11:00:00,0.251,0.271,0.311 -2016-07-23 12:00:00,0.25,0.271,0.311 -2016-07-23 13:00:00,0.25,0.271,0.311 -2016-07-23 14:00:00,0.25,0.271,0.311 -2016-07-23 15:00:00,0.249,0.271,0.311 -2016-07-23 16:00:00,0.249,0.271,0.31 -2016-07-23 17:00:00,0.249,0.271,0.31 -2016-07-23 18:00:00,0.248,0.271,0.31 -2016-07-23 19:00:00,0.248,0.271,0.31 -2016-07-23 20:00:00,0.248,0.271,0.31 -2016-07-23 21:00:00,0.248,0.271,0.31 -2016-07-23 22:00:00,0.248,0.271,0.31 -2016-07-23 23:00:00,0.247,0.271,0.31 -2016-07-24 00:00:00,0.247,0.271,0.31 -2016-07-24 01:00:00,0.247,0.271,0.31 -2016-07-24 02:00:00,0.24600000000000002,0.271,0.31 -2016-07-24 03:00:00,0.24600000000000002,0.272,0.31 -2016-07-24 04:00:00,0.24600000000000002,0.272,0.31 -2016-07-24 05:00:00,0.24600000000000002,0.272,0.31 -2016-07-24 06:00:00,0.24600000000000002,0.272,0.31 -2016-07-24 07:00:00,0.24600000000000002,0.272,0.31 -2016-07-24 08:00:00,0.24600000000000002,0.272,0.31 -2016-07-24 09:00:00,0.24600000000000002,0.272,0.31 -2016-07-24 10:00:00,0.245,0.271,0.31 -2016-07-24 11:00:00,0.245,0.271,0.31 -2016-07-24 12:00:00,0.245,0.271,0.31 -2016-07-24 13:00:00,0.244,0.271,0.309 -2016-07-24 14:00:00,0.244,0.271,0.309 -2016-07-24 15:00:00,0.243,0.271,0.309 -2016-07-24 16:00:00,0.243,0.271,0.308 -2016-07-24 17:00:00,0.243,0.271,0.308 -2016-07-24 18:00:00,0.242,0.27,0.308 -2016-07-24 19:00:00,0.242,0.27,0.308 -2016-07-24 20:00:00,0.242,0.27,0.308 -2016-07-24 21:00:00,0.242,0.27,0.308 -2016-07-24 22:00:00,0.242,0.27,0.308 -2016-07-24 23:00:00,0.242,0.27,0.309 -2016-07-25 00:00:00,0.242,0.27,0.309 -2016-07-25 01:00:00,0.242,0.27,0.309 -2016-07-25 02:00:00,0.242,0.271,0.309 -2016-07-25 03:00:00,0.242,0.271,0.309 -2016-07-25 04:00:00,0.242,0.271,0.309 -2016-07-25 05:00:00,0.242,0.271,0.309 -2016-07-25 06:00:00,0.242,0.271,0.309 -2016-07-25 07:00:00,0.242,0.271,0.309 -2016-07-25 08:00:00,0.242,0.271,0.309 -2016-07-25 09:00:00,0.242,0.271,0.309 -2016-07-25 10:00:00,0.242,0.271,0.309 -2016-07-25 11:00:00,0.242,0.271,0.309 -2016-07-25 12:00:00,0.24100000000000002,0.271,0.308 -2016-07-25 13:00:00,0.24100000000000002,0.271,0.308 -2016-07-25 14:00:00,0.24100000000000002,0.271,0.308 -2016-07-25 15:00:00,0.24,0.27,0.308 -2016-07-25 16:00:00,0.24,0.27,0.308 -2016-07-25 17:00:00,0.24,0.27,0.308 -2016-07-25 18:00:00,0.24,0.27,0.308 -2016-07-25 19:00:00,0.239,0.27,0.308 -2016-07-25 20:00:00,0.239,0.26899999999999996,0.308 -2016-07-25 21:00:00,0.239,0.27,0.307 -2016-07-25 22:00:00,0.239,0.27,0.307 -2016-07-25 23:00:00,0.239,0.27,0.307 -2016-07-26 00:00:00,0.239,0.27,0.307 -2016-07-26 01:00:00,0.239,0.27,0.307 -2016-07-26 02:00:00,0.239,0.27,0.308 -2016-07-26 03:00:00,0.239,0.27,0.308 -2016-07-26 04:00:00,0.239,0.27,0.308 -2016-07-26 05:00:00,0.23800000000000002,0.27,0.308 -2016-07-26 06:00:00,0.23800000000000002,0.27,0.308 -2016-07-26 07:00:00,0.23800000000000002,0.27,0.308 -2016-07-26 08:00:00,0.23800000000000002,0.27,0.308 -2016-07-26 09:00:00,0.23800000000000002,0.27,0.308 -2016-07-26 10:00:00,0.23800000000000002,0.27,0.308 -2016-07-26 11:00:00,0.23800000000000002,0.27,0.308 -2016-07-26 12:00:00,0.237,0.27,0.307 -2016-07-26 13:00:00,0.237,0.27,0.307 -2016-07-26 14:00:00,0.237,0.27,0.307 -2016-07-26 15:00:00,0.237,0.268,0.307 -2016-07-26 16:00:00,0.237,0.268,0.307 -2016-07-26 17:00:00,0.23600000000000002,0.267,0.307 -2016-07-26 18:00:00,0.23600000000000002,0.266,0.307 -2016-07-26 19:00:00,0.237,0.266,0.307 -2016-07-26 20:00:00,0.23600000000000002,0.266,0.307 -2016-07-26 21:00:00,0.23600000000000002,0.266,0.307 -2016-07-26 22:00:00,0.23600000000000002,0.266,0.307 -2016-07-26 23:00:00,0.23600000000000002,0.267,0.307 -2016-07-27 00:00:00,0.23600000000000002,0.267,0.307 -2016-07-27 01:00:00,0.23600000000000002,0.268,0.307 -2016-07-27 02:00:00,0.23600000000000002,0.268,0.307 -2016-07-27 03:00:00,0.23600000000000002,0.268,0.307 -2016-07-27 04:00:00,0.23600000000000002,0.268,0.307 -2016-07-27 05:00:00,0.23600000000000002,0.268,0.307 -2016-07-27 06:00:00,0.235,0.268,0.307 -2016-07-27 07:00:00,0.23600000000000002,0.268,0.307 -2016-07-27 08:00:00,0.23600000000000002,0.268,0.309 -2016-07-27 09:00:00,0.23600000000000002,0.268,0.309 -2016-07-27 10:00:00,0.23600000000000002,0.268,0.309 -2016-07-27 11:00:00,0.23600000000000002,0.268,0.309 -2016-07-27 12:00:00,0.23600000000000002,0.268,0.309 -2016-07-27 13:00:00,0.23600000000000002,0.268,0.308 -2016-07-27 14:00:00,0.23600000000000002,0.268,0.308 -2016-07-27 15:00:00,0.235,0.268,0.307 -2016-07-27 16:00:00,0.235,0.268,0.307 -2016-07-27 17:00:00,0.235,0.268,0.307 -2016-07-27 18:00:00,0.23399999999999999,0.268,0.306 -2016-07-27 19:00:00,0.23399999999999999,0.268,0.306 -2016-07-27 20:00:00,0.23399999999999999,0.268,0.306 -2016-07-27 21:00:00,0.23399999999999999,0.268,0.306 -2016-07-27 22:00:00,0.23399999999999999,0.268,0.306 -2016-07-27 23:00:00,0.23399999999999999,0.268,0.306 -2016-07-28 00:00:00,0.23399999999999999,0.268,0.306 -2016-07-28 01:00:00,0.23399999999999999,0.268,0.306 -2016-07-28 02:00:00,0.23399999999999999,0.26899999999999996,0.306 -2016-07-28 03:00:00,0.23399999999999999,0.26899999999999996,0.306 -2016-07-28 04:00:00,0.233,0.26899999999999996,0.306 -2016-07-28 05:00:00,0.233,0.268,0.306 -2016-07-28 06:00:00,0.233,0.268,0.306 -2016-07-28 07:00:00,0.233,0.26899999999999996,0.306 -2016-07-28 08:00:00,0.233,0.26899999999999996,0.306 -2016-07-28 09:00:00,0.233,0.26899999999999996,0.307 -2016-07-28 10:00:00,0.233,0.26899999999999996,0.307 -2016-07-28 11:00:00,0.233,0.26899999999999996,0.306 -2016-07-28 12:00:00,0.233,0.26899999999999996,0.306 -2016-07-28 13:00:00,0.233,0.26899999999999996,0.306 -2016-07-28 14:00:00,0.233,0.26899999999999996,0.306 -2016-07-28 15:00:00,0.233,0.27,0.306 -2016-07-28 16:00:00,0.233,0.27,0.306 -2016-07-28 17:00:00,0.23199999999999998,0.27,0.306 -2016-07-28 18:00:00,0.23199999999999998,0.27,0.306 -2016-07-28 19:00:00,0.23199999999999998,0.267,0.306 -2016-07-28 20:00:00,0.23199999999999998,0.268,0.306 -2016-07-28 21:00:00,0.23199999999999998,0.268,0.306 -2016-07-28 22:00:00,0.233,0.268,0.306 -2016-07-28 23:00:00,0.23199999999999998,0.26899999999999996,0.306 -2016-07-29 00:00:00,0.233,0.26899999999999996,0.306 -2016-07-29 01:00:00,0.23199999999999998,0.26899999999999996,0.306 -2016-07-29 02:00:00,0.23199999999999998,0.26899999999999996,0.306 -2016-07-29 03:00:00,0.23199999999999998,0.26899999999999996,0.306 -2016-07-29 04:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 05:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 06:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 07:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 08:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 09:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 10:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 11:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 12:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 13:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 14:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 15:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 16:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 17:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 18:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 19:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 20:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 21:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 22:00:00,0.23199999999999998,0.27,0.306 -2016-07-29 23:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 00:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 01:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 02:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 03:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 04:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 05:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 06:00:00,0.23199999999999998,0.27,0.306 -2016-07-30 07:00:00,0.23199999999999998,0.271,0.307 -2016-07-30 08:00:00,0.23199999999999998,0.271,0.307 -2016-07-30 09:00:00,0.23199999999999998,0.271,0.307 -2016-07-30 10:00:00,0.23199999999999998,0.271,0.307 -2016-07-30 11:00:00,0.23199999999999998,0.271,0.307 -2016-07-30 12:00:00,0.231,0.271,0.306 -2016-07-30 13:00:00,0.231,0.271,0.306 -2016-07-30 14:00:00,0.231,0.271,0.306 -2016-07-30 15:00:00,0.231,0.271,0.306 -2016-07-30 16:00:00,0.231,0.271,0.306 -2016-07-30 17:00:00,0.231,0.271,0.306 -2016-07-30 18:00:00,0.231,0.271,0.305 -2016-07-30 19:00:00,0.231,0.271,0.305 -2016-07-30 20:00:00,0.231,0.271,0.305 -2016-07-30 21:00:00,0.231,0.271,0.305 -2016-07-30 22:00:00,0.231,0.271,0.305 -2016-07-30 23:00:00,0.231,0.271,0.305 -2016-07-31 00:00:00,0.23,0.271,0.305 -2016-07-31 01:00:00,0.23,0.272,0.305 -2016-07-31 02:00:00,0.23,0.272,0.305 -2016-07-31 03:00:00,0.23,0.273,0.305 -2016-07-31 04:00:00,0.23,0.273,0.305 -2016-07-31 05:00:00,0.23,0.273,0.305 -2016-07-31 06:00:00,0.23,0.273,0.305 -2016-07-31 07:00:00,0.23,0.273,0.305 -2016-07-31 08:00:00,0.23,0.273,0.306 -2016-07-31 09:00:00,0.23,0.273,0.306 -2016-07-31 10:00:00,0.23,0.273,0.306 -2016-07-31 11:00:00,0.23,0.273,0.306 -2016-07-31 12:00:00,0.22899999999999998,0.273,0.305 -2016-07-31 13:00:00,0.22899999999999998,0.273,0.305 -2016-07-31 14:00:00,0.22899999999999998,0.273,0.305 -2016-07-31 15:00:00,0.22899999999999998,0.273,0.305 -2016-07-31 16:00:00,0.22899999999999998,0.272,0.304 -2016-07-31 17:00:00,0.22899999999999998,0.272,0.304 -2016-07-31 18:00:00,0.22899999999999998,0.271,0.304 -2016-07-31 19:00:00,0.22899999999999998,0.271,0.304 -2016-07-31 20:00:00,0.22899999999999998,0.271,0.304 -2016-07-31 21:00:00,0.228,0.271,0.304 -2016-07-31 22:00:00,0.228,0.271,0.304 -2016-07-31 23:00:00,0.228,0.272,0.304 -2016-08-01 00:00:00,0.228,0.272,0.304 -2016-08-01 01:00:00,0.228,0.273,0.304 -2016-08-01 02:00:00,0.228,0.273,0.304 -2016-08-01 03:00:00,0.228,0.273,0.304 -2016-08-01 04:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 05:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 06:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 07:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 08:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 09:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 10:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 11:00:00,0.22699999999999998,0.273,0.304 -2016-08-01 12:00:00,0.226,0.272,0.304 -2016-08-01 13:00:00,0.226,0.272,0.304 -2016-08-01 14:00:00,0.226,0.272,0.304 -2016-08-01 15:00:00,0.226,0.271,0.303 -2016-08-01 16:00:00,0.226,0.271,0.303 -2016-08-01 17:00:00,0.226,0.27,0.303 -2016-08-01 18:00:00,0.226,0.27,0.303 -2016-08-01 19:00:00,0.226,0.27,0.303 -2016-08-01 20:00:00,0.226,0.27,0.303 -2016-08-01 21:00:00,0.226,0.27,0.303 -2016-08-01 22:00:00,0.226,0.27,0.303 -2016-08-01 23:00:00,0.226,0.27,0.303 -2016-08-02 00:00:00,0.226,0.271,0.303 -2016-08-02 01:00:00,0.226,0.271,0.303 -2016-08-02 02:00:00,0.226,0.271,0.303 -2016-08-02 03:00:00,0.226,0.271,0.303 -2016-08-02 04:00:00,0.226,0.271,0.303 -2016-08-02 05:00:00,0.226,0.272,0.303 -2016-08-02 06:00:00,0.226,0.272,0.303 -2016-08-02 07:00:00,0.226,0.272,0.303 -2016-08-02 08:00:00,0.226,0.272,0.303 -2016-08-02 09:00:00,0.226,0.272,0.303 -2016-08-02 10:00:00,0.226,0.272,0.303 -2016-08-02 11:00:00,0.226,0.271,0.303 -2016-08-02 12:00:00,0.226,0.271,0.303 -2016-08-02 13:00:00,0.226,0.271,0.303 -2016-08-02 14:00:00,0.226,0.271,0.304 -2016-08-02 15:00:00,0.226,0.271,0.304 -2016-08-02 16:00:00,0.226,0.27,0.304 -2016-08-02 17:00:00,0.226,0.27,0.304 -2016-08-02 18:00:00,0.226,0.27,0.304 -2016-08-02 19:00:00,0.226,0.27,0.304 -2016-08-02 20:00:00,0.226,0.27,0.304 -2016-08-02 21:00:00,0.226,0.27,0.304 -2016-08-02 22:00:00,0.226,0.27,0.304 -2016-08-02 23:00:00,0.226,0.27,0.304 -2016-08-03 00:00:00,0.226,0.27,0.304 -2016-08-03 01:00:00,0.226,0.27,0.304 -2016-08-03 02:00:00,0.226,0.27,0.304 -2016-08-03 03:00:00,0.226,0.271,0.304 -2016-08-03 04:00:00,0.226,0.271,0.304 -2016-08-03 05:00:00,0.226,0.271,0.304 -2016-08-03 06:00:00,0.226,0.271,0.304 -2016-08-03 07:00:00,0.226,0.271,0.304 -2016-08-03 08:00:00,0.22699999999999998,0.271,0.306 -2016-08-03 09:00:00,0.22699999999999998,0.271,0.306 -2016-08-03 10:00:00,0.228,0.271,0.306 -2016-08-03 11:00:00,0.228,0.271,0.306 -2016-08-03 12:00:00,0.228,0.271,0.306 -2016-08-03 13:00:00,0.228,0.271,0.306 -2016-08-03 14:00:00,0.228,0.271,0.306 -2016-08-03 15:00:00,0.228,0.271,0.306 -2016-08-03 16:00:00,0.22899999999999998,0.271,0.307 -2016-08-03 17:00:00,0.22899999999999998,0.27,0.307 -2016-08-03 18:00:00,0.22899999999999998,0.27,0.307 -2016-08-03 19:00:00,0.22899999999999998,0.27,0.307 -2016-08-03 20:00:00,0.22899999999999998,0.27,0.307 -2016-08-03 21:00:00,0.22899999999999998,0.27,0.307 -2016-08-03 22:00:00,0.23,0.27,0.307 -2016-08-03 23:00:00,0.23,0.27,0.307 -2016-08-04 00:00:00,0.23,0.27,0.307 -2016-08-04 01:00:00,0.23,0.27,0.307 -2016-08-04 02:00:00,0.23,0.27,0.307 -2016-08-04 03:00:00,0.23,0.27,0.307 -2016-08-04 04:00:00,0.23,0.27,0.307 -2016-08-04 05:00:00,0.23,0.27,0.307 -2016-08-04 06:00:00,0.23,0.27,0.307 -2016-08-04 07:00:00,0.23,0.27,0.307 -2016-08-04 08:00:00,0.23,0.27,0.307 -2016-08-04 09:00:00,0.23,0.27,0.307 -2016-08-04 10:00:00,0.23,0.27,0.307 -2016-08-04 11:00:00,0.23,0.27,0.307 -2016-08-04 12:00:00,0.23,0.27,0.308 -2016-08-04 13:00:00,0.231,0.27,0.308 -2016-08-04 14:00:00,0.231,0.27,0.308 -2016-08-04 15:00:00,0.231,0.27,0.308 -2016-08-04 16:00:00,0.231,0.27,0.308 -2016-08-04 17:00:00,0.231,0.27,0.308 -2016-08-04 18:00:00,0.23199999999999998,0.27,0.308 -2016-08-04 19:00:00,0.23199999999999998,0.26899999999999996,0.308 -2016-08-04 20:00:00,0.23199999999999998,0.26899999999999996,0.308 -2016-08-04 21:00:00,0.23199999999999998,0.26899999999999996,0.309 -2016-08-04 22:00:00,0.23199999999999998,0.26899999999999996,0.309 -2016-08-04 23:00:00,0.23199999999999998,0.26899999999999996,0.309 -2016-08-05 00:00:00,0.233,0.27,0.309 -2016-08-05 01:00:00,0.233,0.27,0.309 -2016-08-05 02:00:00,0.233,0.27,0.309 -2016-08-05 03:00:00,0.233,0.27,0.309 -2016-08-05 04:00:00,0.233,0.27,0.309 -2016-08-05 05:00:00,0.233,0.27,0.309 -2016-08-05 06:00:00,0.233,0.27,0.309 -2016-08-05 07:00:00,0.233,0.27,0.309 -2016-08-05 08:00:00,0.233,0.27,0.309 -2016-08-05 09:00:00,0.233,0.27,0.309 -2016-08-05 10:00:00,0.233,0.27,0.309 -2016-08-05 11:00:00,0.23399999999999999,0.27,0.309 -2016-08-05 12:00:00,0.23399999999999999,0.26899999999999996,0.309 -2016-08-05 13:00:00,0.23399999999999999,0.26899999999999996,0.308 -2016-08-05 14:00:00,0.23399999999999999,0.26899999999999996,0.308 -2016-08-05 15:00:00,0.23399999999999999,0.268,0.308 -2016-08-05 16:00:00,0.23399999999999999,0.268,0.308 -2016-08-05 17:00:00,0.23399999999999999,0.268,0.307 -2016-08-05 18:00:00,0.23399999999999999,0.267,0.307 -2016-08-05 19:00:00,0.233,0.266,0.307 -2016-08-05 20:00:00,0.233,0.266,0.307 -2016-08-05 21:00:00,0.23399999999999999,0.266,0.307 -2016-08-05 22:00:00,0.23399999999999999,0.266,0.307 -2016-08-05 23:00:00,0.23399999999999999,0.266,0.307 -2016-08-06 00:00:00,0.23399999999999999,0.266,0.307 -2016-08-06 01:00:00,0.23399999999999999,0.267,0.307 -2016-08-06 02:00:00,0.23399999999999999,0.267,0.307 -2016-08-06 03:00:00,0.23399999999999999,0.267,0.307 -2016-08-06 04:00:00,0.23399999999999999,0.267,0.307 -2016-08-06 05:00:00,0.23399999999999999,0.267,0.307 -2016-08-06 06:00:00,0.23399999999999999,0.268,0.307 -2016-08-06 07:00:00,0.23399999999999999,0.268,0.307 -2016-08-06 08:00:00,0.23399999999999999,0.268,0.307 -2016-08-06 09:00:00,0.23399999999999999,0.268,0.307 -2016-08-06 10:00:00,0.23399999999999999,0.268,0.307 -2016-08-06 11:00:00,0.23399999999999999,0.268,0.307 -2016-08-06 12:00:00,0.23399999999999999,0.268,0.307 -2016-08-06 13:00:00,0.233,0.268,0.307 -2016-08-06 14:00:00,0.233,0.268,0.306 -2016-08-06 15:00:00,0.233,0.268,0.306 -2016-08-06 16:00:00,0.233,0.268,0.306 -2016-08-06 17:00:00,0.233,0.268,0.306 -2016-08-06 18:00:00,0.233,0.268,0.306 -2016-08-06 19:00:00,0.233,0.268,0.306 -2016-08-06 20:00:00,0.233,0.268,0.306 -2016-08-06 21:00:00,0.233,0.268,0.306 -2016-08-06 22:00:00,0.233,0.268,0.306 -2016-08-06 23:00:00,0.23399999999999999,0.268,0.306 -2016-08-07 00:00:00,0.233,0.268,0.306 -2016-08-07 01:00:00,0.233,0.268,0.306 -2016-08-07 02:00:00,0.233,0.268,0.306 -2016-08-07 03:00:00,0.233,0.268,0.306 -2016-08-07 04:00:00,0.233,0.268,0.306 -2016-08-07 05:00:00,0.233,0.268,0.306 -2016-08-07 06:00:00,0.233,0.268,0.306 -2016-08-07 07:00:00,0.233,0.26899999999999996,0.306 -2016-08-07 08:00:00,0.233,0.26899999999999996,0.306 -2016-08-07 09:00:00,0.233,0.26899999999999996,0.306 -2016-08-07 10:00:00,0.233,0.26899999999999996,0.306 -2016-08-07 11:00:00,0.233,0.26899999999999996,0.306 -2016-08-07 12:00:00,0.233,0.26899999999999996,0.306 -2016-08-07 13:00:00,0.23199999999999998,0.26899999999999996,0.306 -2016-08-07 14:00:00,0.23199999999999998,0.268,0.306 -2016-08-07 15:00:00,0.23199999999999998,0.268,0.306 -2016-08-07 16:00:00,0.23199999999999998,0.266,0.305 -2016-08-07 17:00:00,0.23199999999999998,0.266,0.305 -2016-08-07 18:00:00,0.23199999999999998,0.266,0.305 -2016-08-07 19:00:00,0.23199999999999998,0.266,0.305 -2016-08-07 20:00:00,0.23199999999999998,0.266,0.305 -2016-08-07 21:00:00,0.23199999999999998,0.266,0.305 -2016-08-07 22:00:00,0.23199999999999998,0.266,0.305 -2016-08-07 23:00:00,0.23199999999999998,0.266,0.305 -2016-08-08 00:00:00,0.23199999999999998,0.266,0.305 -2016-08-08 01:00:00,0.23199999999999998,0.266,0.305 -2016-08-08 02:00:00,0.23199999999999998,0.266,0.305 -2016-08-08 03:00:00,0.23199999999999998,0.267,0.305 -2016-08-08 04:00:00,0.23199999999999998,0.268,0.305 -2016-08-08 05:00:00,0.23199999999999998,0.268,0.305 -2016-08-08 06:00:00,0.23199999999999998,0.268,0.305 -2016-08-08 07:00:00,0.23199999999999998,0.268,0.306 -2016-08-08 08:00:00,0.23199999999999998,0.268,0.306 -2016-08-08 09:00:00,0.23199999999999998,0.268,0.306 -2016-08-08 10:00:00,0.23199999999999998,0.268,0.306 -2016-08-08 11:00:00,0.23199999999999998,0.268,0.305 -2016-08-08 12:00:00,0.231,0.268,0.305 -2016-08-08 13:00:00,0.231,0.268,0.305 -2016-08-08 14:00:00,0.231,0.268,0.305 -2016-08-08 15:00:00,0.231,0.266,0.304 -2016-08-08 16:00:00,0.231,0.266,0.304 -2016-08-08 17:00:00,0.231,0.266,0.304 -2016-08-08 18:00:00,0.231,0.266,0.304 -2016-08-08 19:00:00,0.231,0.266,0.304 -2016-08-08 20:00:00,0.231,0.265,0.304 -2016-08-08 21:00:00,0.231,0.264,0.304 -2016-08-08 22:00:00,0.231,0.265,0.304 -2016-08-08 23:00:00,0.231,0.265,0.304 -2016-08-09 00:00:00,0.231,0.265,0.304 -2016-08-09 01:00:00,0.231,0.266,0.304 -2016-08-09 02:00:00,0.231,0.266,0.304 -2016-08-09 03:00:00,0.231,0.266,0.304 -2016-08-09 04:00:00,0.231,0.266,0.304 -2016-08-09 05:00:00,0.23,0.266,0.304 -2016-08-09 06:00:00,0.231,0.266,0.304 -2016-08-09 07:00:00,0.231,0.266,0.304 -2016-08-09 08:00:00,0.23,0.266,0.304 -2016-08-09 09:00:00,0.231,0.266,0.304 -2016-08-09 10:00:00,0.231,0.266,0.304 -2016-08-09 11:00:00,0.23,0.266,0.304 -2016-08-09 12:00:00,0.23,0.266,0.304 -2016-08-09 13:00:00,0.23,0.266,0.304 -2016-08-09 14:00:00,0.23,0.266,0.304 -2016-08-09 15:00:00,0.23,0.265,0.304 -2016-08-09 16:00:00,0.23,0.264,0.304 -2016-08-09 17:00:00,0.22899999999999998,0.264,0.304 -2016-08-09 18:00:00,0.23,0.263,0.304 -2016-08-09 19:00:00,0.22899999999999998,0.263,0.303 -2016-08-09 20:00:00,0.22899999999999998,0.263,0.303 -2016-08-09 21:00:00,0.22899999999999998,0.263,0.303 -2016-08-09 22:00:00,0.22899999999999998,0.263,0.303 -2016-08-09 23:00:00,0.22899999999999998,0.263,0.303 -2016-08-10 00:00:00,0.22899999999999998,0.263,0.303 -2016-08-10 01:00:00,0.22899999999999998,0.264,0.303 -2016-08-10 02:00:00,0.22899999999999998,0.264,0.303 -2016-08-10 03:00:00,0.22899999999999998,0.264,0.303 -2016-08-10 04:00:00,0.22899999999999998,0.264,0.303 -2016-08-10 05:00:00,0.22899999999999998,0.264,0.303 -2016-08-10 06:00:00,0.228,0.264,0.303 -2016-08-10 07:00:00,0.228,0.264,0.303 -2016-08-10 08:00:00,0.228,0.264,0.303 -2016-08-10 09:00:00,0.228,0.264,0.304 -2016-08-10 10:00:00,0.228,0.264,0.304 -2016-08-10 11:00:00,0.228,0.264,0.303 -2016-08-10 12:00:00,0.228,0.264,0.303 -2016-08-10 13:00:00,0.228,0.264,0.303 -2016-08-10 14:00:00,0.228,0.264,0.303 -2016-08-10 15:00:00,0.228,0.263,0.303 -2016-08-10 16:00:00,0.228,0.263,0.303 -2016-08-10 17:00:00,0.228,0.262,0.304 -2016-08-10 18:00:00,0.228,0.261,0.303 -2016-08-10 19:00:00,0.228,0.261,0.303 -2016-08-10 20:00:00,0.228,0.26,0.303 -2016-08-10 21:00:00,0.228,0.26,0.303 -2016-08-10 22:00:00,0.228,0.261,0.303 -2016-08-10 23:00:00,0.228,0.261,0.303 -2016-08-11 00:00:00,0.228,0.261,0.303 -2016-08-11 01:00:00,0.228,0.261,0.303 -2016-08-11 02:00:00,0.228,0.262,0.303 -2016-08-11 03:00:00,0.228,0.262,0.303 -2016-08-11 04:00:00,0.22699999999999998,0.262,0.303 -2016-08-11 05:00:00,0.22699999999999998,0.263,0.303 -2016-08-11 06:00:00,0.22699999999999998,0.263,0.303 -2016-08-11 07:00:00,0.22699999999999998,0.263,0.303 -2016-08-11 08:00:00,0.22699999999999998,0.263,0.303 -2016-08-11 09:00:00,0.22699999999999998,0.263,0.303 -2016-08-11 10:00:00,0.22699999999999998,0.263,0.304 -2016-08-11 11:00:00,0.22699999999999998,0.263,0.304 -2016-08-11 12:00:00,0.22699999999999998,0.263,0.303 -2016-08-11 13:00:00,0.22699999999999998,0.263,0.303 -2016-08-11 14:00:00,0.226,0.261,0.303 -2016-08-11 15:00:00,0.226,0.261,0.303 -2016-08-11 16:00:00,0.226,0.259,0.303 -2016-08-11 17:00:00,0.226,0.259,0.303 -2016-08-11 18:00:00,0.226,0.259,0.302 -2016-08-11 19:00:00,0.226,0.259,0.302 -2016-08-11 20:00:00,0.226,0.259,0.302 -2016-08-11 21:00:00,0.226,0.259,0.303 -2016-08-11 22:00:00,0.22699999999999998,0.259,0.303 -2016-08-11 23:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 00:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 01:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 02:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 03:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 04:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 05:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 06:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 07:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 08:00:00,0.22699999999999998,0.26,0.304 -2016-08-12 09:00:00,0.22699999999999998,0.259,0.304 -2016-08-12 10:00:00,0.228,0.259,0.304 -2016-08-12 11:00:00,0.228,0.259,0.304 -2016-08-12 12:00:00,0.228,0.259,0.304 -2016-08-12 13:00:00,0.228,0.259,0.304 -2016-08-12 14:00:00,0.228,0.259,0.305 -2016-08-12 15:00:00,0.228,0.259,0.305 -2016-08-12 16:00:00,0.228,0.258,0.305 -2016-08-12 17:00:00,0.228,0.257,0.304 -2016-08-12 18:00:00,0.228,0.256,0.304 -2016-08-12 19:00:00,0.228,0.256,0.304 -2016-08-12 20:00:00,0.228,0.256,0.304 -2016-08-12 21:00:00,0.228,0.256,0.304 -2016-08-12 22:00:00,0.228,0.256,0.304 -2016-08-12 23:00:00,0.228,0.256,0.304 -2016-08-13 00:00:00,0.228,0.257,0.304 -2016-08-13 01:00:00,0.228,0.258,0.304 -2016-08-13 02:00:00,0.228,0.258,0.304 -2016-08-13 03:00:00,0.228,0.258,0.304 -2016-08-13 04:00:00,0.228,0.258,0.304 -2016-08-13 05:00:00,0.228,0.258,0.304 -2016-08-13 06:00:00,0.228,0.258,0.304 -2016-08-13 07:00:00,0.228,0.259,0.304 -2016-08-13 08:00:00,0.228,0.259,0.304 -2016-08-13 09:00:00,0.228,0.259,0.304 -2016-08-13 10:00:00,0.228,0.259,0.304 -2016-08-13 11:00:00,0.228,0.259,0.304 -2016-08-13 12:00:00,0.228,0.259,0.304 -2016-08-13 13:00:00,0.22699999999999998,0.259,0.304 -2016-08-13 14:00:00,0.22699999999999998,0.258,0.304 -2016-08-13 15:00:00,0.22699999999999998,0.258,0.303 -2016-08-13 16:00:00,0.22699999999999998,0.256,0.303 -2016-08-13 17:00:00,0.22699999999999998,0.256,0.303 -2016-08-13 18:00:00,0.22699999999999998,0.256,0.303 -2016-08-13 19:00:00,0.22699999999999998,0.256,0.303 -2016-08-13 20:00:00,0.22699999999999998,0.256,0.303 -2016-08-13 21:00:00,0.228,0.256,0.303 -2016-08-13 22:00:00,0.22699999999999998,0.256,0.303 -2016-08-13 23:00:00,0.228,0.256,0.303 -2016-08-14 00:00:00,0.22699999999999998,0.256,0.303 -2016-08-14 01:00:00,0.22699999999999998,0.257,0.303 -2016-08-14 02:00:00,0.22699999999999998,0.257,0.303 -2016-08-14 03:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 04:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 05:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 06:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 07:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 08:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 09:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 10:00:00,0.22699999999999998,0.258,0.303 -2016-08-14 11:00:00,0.226,0.258,0.303 -2016-08-14 12:00:00,0.226,0.258,0.303 -2016-08-14 13:00:00,0.226,0.258,0.303 -2016-08-14 14:00:00,0.226,0.258,0.303 -2016-08-14 15:00:00,0.226,0.258,0.302 -2016-08-14 16:00:00,0.226,0.258,0.302 -2016-08-14 17:00:00,0.226,0.258,0.302 -2016-08-14 18:00:00,0.226,0.258,0.302 -2016-08-14 19:00:00,0.226,0.258,0.302 -2016-08-14 20:00:00,0.226,0.257,0.302 -2016-08-14 21:00:00,0.226,0.258,0.302 -2016-08-14 22:00:00,0.226,0.258,0.302 -2016-08-14 23:00:00,0.226,0.258,0.302 -2016-08-15 00:00:00,0.226,0.258,0.302 -2016-08-15 01:00:00,0.226,0.258,0.302 -2016-08-15 02:00:00,0.226,0.258,0.302 -2016-08-15 03:00:00,0.226,0.258,0.302 -2016-08-15 04:00:00,0.226,0.259,0.302 -2016-08-15 05:00:00,0.226,0.259,0.302 -2016-08-15 06:00:00,0.226,0.258,0.302 -2016-08-15 07:00:00,0.225,0.258,0.302 -2016-08-15 08:00:00,0.225,0.258,0.302 -2016-08-15 09:00:00,0.225,0.258,0.302 -2016-08-15 10:00:00,0.225,0.258,0.302 -2016-08-15 11:00:00,0.225,0.258,0.302 -2016-08-15 12:00:00,0.225,0.258,0.302 -2016-08-15 13:00:00,0.22399999999999998,0.258,0.302 -2016-08-15 14:00:00,0.22399999999999998,0.258,0.301 -2016-08-15 15:00:00,0.22399999999999998,0.258,0.301 -2016-08-15 16:00:00,0.22399999999999998,0.258,0.301 -2016-08-15 17:00:00,0.22399999999999998,0.257,0.301 -2016-08-15 18:00:00,0.22399999999999998,0.257,0.301 -2016-08-15 19:00:00,0.22399999999999998,0.257,0.301 -2016-08-15 20:00:00,0.22399999999999998,0.256,0.3 -2016-08-15 21:00:00,0.22399999999999998,0.256,0.3 -2016-08-15 22:00:00,0.22399999999999998,0.256,0.3 -2016-08-15 23:00:00,0.22399999999999998,0.257,0.3 -2016-08-16 00:00:00,0.22399999999999998,0.258,0.3 -2016-08-16 01:00:00,0.22399999999999998,0.258,0.3 -2016-08-16 02:00:00,0.223,0.258,0.3 -2016-08-16 03:00:00,0.223,0.258,0.3 -2016-08-16 04:00:00,0.223,0.258,0.3 -2016-08-16 05:00:00,0.223,0.258,0.3 -2016-08-16 06:00:00,0.223,0.258,0.3 -2016-08-16 07:00:00,0.223,0.258,0.3 -2016-08-16 08:00:00,0.222,0.258,0.3 -2016-08-16 09:00:00,0.223,0.258,0.301 -2016-08-16 10:00:00,0.222,0.258,0.301 -2016-08-16 11:00:00,0.222,0.258,0.301 -2016-08-16 12:00:00,0.222,0.258,0.3 -2016-08-16 13:00:00,0.222,0.258,0.3 -2016-08-16 14:00:00,0.222,0.258,0.3 -2016-08-16 15:00:00,0.222,0.259,0.3 -2016-08-16 16:00:00,0.222,0.259,0.3 -2016-08-16 17:00:00,0.222,0.258,0.3 -2016-08-16 18:00:00,0.222,0.258,0.299 -2016-08-16 19:00:00,0.222,0.258,0.299 -2016-08-16 20:00:00,0.222,0.258,0.299 -2016-08-16 21:00:00,0.222,0.258,0.299 -2016-08-16 22:00:00,0.222,0.258,0.299 -2016-08-16 23:00:00,0.222,0.258,0.299 -2016-08-17 00:00:00,0.221,0.258,0.299 -2016-08-17 01:00:00,0.221,0.258,0.299 -2016-08-17 02:00:00,0.221,0.259,0.299 -2016-08-17 03:00:00,0.221,0.259,0.299 -2016-08-17 04:00:00,0.221,0.259,0.299 -2016-08-17 05:00:00,0.221,0.259,0.299 -2016-08-17 06:00:00,0.221,0.259,0.299 -2016-08-17 07:00:00,0.221,0.259,0.299 -2016-08-17 08:00:00,0.221,0.259,0.3 -2016-08-17 09:00:00,0.221,0.259,0.3 -2016-08-17 10:00:00,0.221,0.259,0.3 -2016-08-17 11:00:00,0.22,0.259,0.3 -2016-08-17 12:00:00,0.22,0.259,0.299 -2016-08-17 13:00:00,0.22,0.259,0.299 -2016-08-17 14:00:00,0.22,0.259,0.299 -2016-08-17 15:00:00,0.22,0.258,0.299 -2016-08-17 16:00:00,0.22,0.258,0.299 -2016-08-17 17:00:00,0.22,0.258,0.298 -2016-08-17 18:00:00,0.22,0.258,0.298 -2016-08-17 19:00:00,0.22,0.257,0.298 -2016-08-17 20:00:00,0.22,0.256,0.298 -2016-08-17 21:00:00,0.22,0.256,0.298 -2016-08-17 22:00:00,0.22,0.257,0.298 -2016-08-17 23:00:00,0.22,0.258,0.298 -2016-08-18 00:00:00,0.21899999999999997,0.259,0.298 -2016-08-18 01:00:00,0.21899999999999997,0.257,0.298 -2016-08-18 02:00:00,0.21899999999999997,0.257,0.298 -2016-08-18 03:00:00,0.218,0.258,0.298 -2016-08-18 04:00:00,0.218,0.258,0.298 -2016-08-18 05:00:00,0.218,0.258,0.298 -2016-08-18 06:00:00,0.218,0.258,0.298 -2016-08-18 07:00:00,0.218,0.258,0.298 -2016-08-18 08:00:00,0.217,0.258,0.298 -2016-08-18 09:00:00,0.217,0.258,0.298 -2016-08-18 10:00:00,0.217,0.258,0.298 -2016-08-18 11:00:00,0.21600000000000003,0.258,0.298 -2016-08-18 12:00:00,0.21600000000000003,0.258,0.298 -2016-08-18 13:00:00,0.21600000000000003,0.258,0.298 -2016-08-18 14:00:00,0.21600000000000003,0.257,0.298 -2016-08-18 15:00:00,0.21600000000000003,0.256,0.298 -2016-08-18 16:00:00,0.21600000000000003,0.256,0.297 -2016-08-18 17:00:00,0.21600000000000003,0.255,0.297 -2016-08-18 18:00:00,0.217,0.254,0.297 -2016-08-18 19:00:00,0.217,0.254,0.297 -2016-08-18 20:00:00,0.217,0.254,0.297 -2016-08-18 21:00:00,0.217,0.254,0.297 -2016-08-18 22:00:00,0.217,0.254,0.297 -2016-08-18 23:00:00,0.217,0.254,0.297 -2016-08-19 00:00:00,0.217,0.254,0.297 -2016-08-19 01:00:00,0.217,0.255,0.297 -2016-08-19 02:00:00,0.217,0.256,0.297 -2016-08-19 03:00:00,0.217,0.256,0.297 -2016-08-19 04:00:00,0.217,0.256,0.297 -2016-08-19 05:00:00,0.217,0.256,0.297 -2016-08-19 06:00:00,0.21600000000000003,0.256,0.297 -2016-08-19 07:00:00,0.21600000000000003,0.256,0.297 -2016-08-19 08:00:00,0.21600000000000003,0.256,0.297 -2016-08-19 09:00:00,0.21600000000000003,0.256,0.298 -2016-08-19 10:00:00,0.21600000000000003,0.256,0.298 -2016-08-19 11:00:00,0.21600000000000003,0.256,0.297 -2016-08-19 12:00:00,0.21600000000000003,0.256,0.297 -2016-08-19 13:00:00,0.21600000000000003,0.256,0.297 -2016-08-19 14:00:00,0.21600000000000003,0.256,0.297 -2016-08-19 15:00:00,0.21600000000000003,0.254,0.297 -2016-08-19 16:00:00,0.21600000000000003,0.254,0.297 -2016-08-19 17:00:00,0.217,0.253,0.29600000000000004 -2016-08-19 18:00:00,0.217,0.253,0.29600000000000004 -2016-08-19 19:00:00,0.217,0.253,0.29600000000000004 -2016-08-19 20:00:00,0.217,0.252,0.29600000000000004 -2016-08-19 21:00:00,0.217,0.252,0.29600000000000004 -2016-08-19 22:00:00,0.217,0.252,0.29600000000000004 -2016-08-19 23:00:00,0.217,0.253,0.29600000000000004 -2016-08-20 00:00:00,0.217,0.253,0.297 -2016-08-20 01:00:00,0.217,0.253,0.297 -2016-08-20 02:00:00,0.217,0.253,0.297 -2016-08-20 03:00:00,0.217,0.253,0.297 -2016-08-20 04:00:00,0.217,0.253,0.297 -2016-08-20 05:00:00,0.217,0.254,0.297 -2016-08-20 06:00:00,0.217,0.254,0.297 -2016-08-20 07:00:00,0.217,0.254,0.297 -2016-08-20 08:00:00,0.217,0.254,0.297 -2016-08-20 09:00:00,0.217,0.254,0.297 -2016-08-20 10:00:00,0.218,0.254,0.298 -2016-08-20 11:00:00,0.217,0.254,0.298 -2016-08-20 12:00:00,0.217,0.254,0.297 -2016-08-20 13:00:00,0.217,0.254,0.297 -2016-08-20 14:00:00,0.217,0.253,0.297 -2016-08-20 15:00:00,0.217,0.253,0.297 -2016-08-20 16:00:00,0.218,0.252,0.297 -2016-08-20 17:00:00,0.218,0.251,0.297 -2016-08-20 18:00:00,0.218,0.25,0.297 -2016-08-20 19:00:00,0.218,0.249,0.297 -2016-08-20 20:00:00,0.218,0.249,0.298 -2016-08-20 21:00:00,0.218,0.249,0.297 -2016-08-20 22:00:00,0.218,0.249,0.297 -2016-08-20 23:00:00,0.218,0.249,0.297 -2016-08-21 00:00:00,0.218,0.25,0.297 -2016-08-21 01:00:00,0.218,0.251,0.297 -2016-08-21 02:00:00,0.217,0.251,0.297 -2016-08-21 03:00:00,0.217,0.251,0.298 -2016-08-21 04:00:00,0.217,0.252,0.298 -2016-08-21 05:00:00,0.217,0.252,0.298 -2016-08-21 06:00:00,0.217,0.252,0.298 -2016-08-21 07:00:00,0.217,0.253,0.298 -2016-08-21 08:00:00,0.217,0.253,0.298 -2016-08-21 09:00:00,0.217,0.253,0.298 -2016-08-21 10:00:00,0.218,0.253,0.298 -2016-08-21 11:00:00,0.218,0.253,0.298 -2016-08-21 12:00:00,0.218,0.253,0.298 -2016-08-21 13:00:00,0.218,0.252,0.298 -2016-08-21 14:00:00,0.218,0.251,0.298 -2016-08-21 15:00:00,0.218,0.25,0.298 -2016-08-21 16:00:00,0.218,0.249,0.298 -2016-08-21 17:00:00,0.218,0.249,0.298 -2016-08-21 18:00:00,0.218,0.248,0.299 -2016-08-21 19:00:00,0.218,0.247,0.298 -2016-08-21 20:00:00,0.218,0.247,0.298 -2016-08-21 21:00:00,0.218,0.247,0.298 -2016-08-21 22:00:00,0.218,0.247,0.298 -2016-08-21 23:00:00,0.218,0.247,0.298 -2016-08-22 00:00:00,0.218,0.248,0.298 -2016-08-22 01:00:00,0.218,0.249,0.298 -2016-08-22 02:00:00,0.218,0.249,0.298 -2016-08-22 03:00:00,0.218,0.249,0.298 -2016-08-22 04:00:00,0.218,0.249,0.298 -2016-08-22 05:00:00,0.218,0.249,0.298 -2016-08-22 06:00:00,0.218,0.249,0.298 -2016-08-22 07:00:00,0.218,0.249,0.298 -2016-08-22 08:00:00,0.218,0.249,0.298 -2016-08-22 09:00:00,0.218,0.249,0.298 -2016-08-22 10:00:00,0.218,0.249,0.298 -2016-08-22 11:00:00,0.218,0.249,0.298 -2016-08-22 12:00:00,0.218,0.249,0.297 -2016-08-22 13:00:00,0.218,0.249,0.29600000000000004 -2016-08-22 14:00:00,0.217,0.249,0.29600000000000004 -2016-08-22 15:00:00,0.218,0.248,0.29600000000000004 -2016-08-22 16:00:00,0.218,0.247,0.29600000000000004 -2016-08-22 17:00:00,0.218,0.247,0.29600000000000004 -2016-08-22 18:00:00,0.218,0.24600000000000002,0.29600000000000004 -2016-08-22 19:00:00,0.218,0.24600000000000002,0.295 -2016-08-22 20:00:00,0.218,0.248,0.295 -2016-08-22 21:00:00,0.218,0.249,0.295 -2016-08-22 22:00:00,0.218,0.25,0.295 -2016-08-22 23:00:00,0.218,0.251,0.29600000000000004 -2016-08-23 00:00:00,0.218,0.252,0.29600000000000004 -2016-08-23 01:00:00,0.217,0.253,0.29600000000000004 -2016-08-23 02:00:00,0.217,0.253,0.29600000000000004 -2016-08-23 03:00:00,0.217,0.253,0.29600000000000004 -2016-08-23 04:00:00,0.217,0.254,0.29600000000000004 -2016-08-23 05:00:00,0.217,0.254,0.29600000000000004 -2016-08-23 06:00:00,0.21600000000000003,0.255,0.29600000000000004 -2016-08-23 07:00:00,0.21600000000000003,0.256,0.29600000000000004 -2016-08-23 08:00:00,0.21600000000000003,0.256,0.29600000000000004 -2016-08-23 09:00:00,0.21600000000000003,0.256,0.29600000000000004 -2016-08-23 10:00:00,0.21600000000000003,0.256,0.297 -2016-08-23 11:00:00,0.21600000000000003,0.256,0.29600000000000004 -2016-08-23 12:00:00,0.215,0.256,0.29600000000000004 -2016-08-23 13:00:00,0.215,0.256,0.29600000000000004 -2016-08-23 14:00:00,0.215,0.256,0.29600000000000004 -2016-08-23 15:00:00,0.215,0.256,0.29600000000000004 -2016-08-23 16:00:00,0.215,0.256,0.295 -2016-08-23 17:00:00,0.21600000000000003,0.256,0.295 -2016-08-23 18:00:00,0.21600000000000003,0.256,0.295 -2016-08-23 19:00:00,0.21600000000000003,0.256,0.295 -2016-08-23 20:00:00,0.21600000000000003,0.256,0.295 -2016-08-23 21:00:00,0.21600000000000003,0.256,0.295 -2016-08-23 22:00:00,0.21600000000000003,0.256,0.295 -2016-08-23 23:00:00,0.21600000000000003,0.257,0.295 -2016-08-24 00:00:00,0.21600000000000003,0.258,0.295 -2016-08-24 01:00:00,0.21600000000000003,0.258,0.295 -2016-08-24 02:00:00,0.21600000000000003,0.258,0.295 -2016-08-24 03:00:00,0.21600000000000003,0.259,0.295 -2016-08-24 04:00:00,0.215,0.259,0.295 -2016-08-24 05:00:00,0.215,0.259,0.295 -2016-08-24 06:00:00,0.215,0.259,0.295 -2016-08-24 07:00:00,0.215,0.259,0.295 -2016-08-24 08:00:00,0.214,0.259,0.295 -2016-08-24 09:00:00,0.214,0.259,0.295 -2016-08-24 10:00:00,0.214,0.259,0.29600000000000004 -2016-08-24 11:00:00,0.214,0.259,0.295 -2016-08-24 12:00:00,0.214,0.259,0.295 -2016-08-24 13:00:00,0.214,0.259,0.295 -2016-08-24 14:00:00,0.214,0.259,0.295 -2016-08-24 15:00:00,0.214,0.259,0.295 -2016-08-24 16:00:00,0.214,0.258,0.295 -2016-08-24 17:00:00,0.214,0.258,0.294 -2016-08-24 18:00:00,0.214,0.256,0.294 -2016-08-24 19:00:00,0.214,0.256,0.294 -2016-08-24 20:00:00,0.215,0.256,0.294 -2016-08-24 21:00:00,0.215,0.256,0.294 -2016-08-24 22:00:00,0.215,0.256,0.294 -2016-08-24 23:00:00,0.215,0.256,0.294 -2016-08-25 00:00:00,0.215,0.257,0.294 -2016-08-25 01:00:00,0.215,0.258,0.294 -2016-08-25 02:00:00,0.214,0.258,0.294 -2016-08-25 03:00:00,0.214,0.258,0.294 -2016-08-25 04:00:00,0.214,0.259,0.294 -2016-08-25 05:00:00,0.214,0.259,0.294 -2016-08-25 06:00:00,0.214,0.259,0.294 -2016-08-25 07:00:00,0.214,0.259,0.294 -2016-08-25 08:00:00,0.213,0.259,0.294 -2016-08-25 09:00:00,0.213,0.259,0.295 -2016-08-25 10:00:00,0.213,0.259,0.295 -2016-08-25 11:00:00,0.213,0.259,0.295 -2016-08-25 12:00:00,0.213,0.259,0.294 -2016-08-25 13:00:00,0.213,0.259,0.294 -2016-08-25 14:00:00,0.213,0.258,0.294 -2016-08-25 15:00:00,0.213,0.258,0.294 -2016-08-25 16:00:00,0.213,0.256,0.294 -2016-08-25 17:00:00,0.213,0.256,0.293 -2016-08-25 18:00:00,0.213,0.255,0.293 -2016-08-25 19:00:00,0.213,0.254,0.293 -2016-08-25 20:00:00,0.213,0.254,0.293 -2016-08-25 21:00:00,0.213,0.254,0.293 -2016-08-25 22:00:00,0.213,0.254,0.293 -2016-08-25 23:00:00,0.213,0.255,0.293 -2016-08-26 00:00:00,0.213,0.256,0.293 -2016-08-26 01:00:00,0.213,0.256,0.293 -2016-08-26 02:00:00,0.213,0.256,0.293 -2016-08-26 03:00:00,0.213,0.256,0.293 -2016-08-26 04:00:00,0.213,0.256,0.293 -2016-08-26 05:00:00,0.212,0.257,0.293 -2016-08-26 06:00:00,0.212,0.257,0.293 -2016-08-26 07:00:00,0.212,0.258,0.293 -2016-08-26 08:00:00,0.21100000000000002,0.258,0.293 -2016-08-26 09:00:00,0.21100000000000002,0.258,0.293 -2016-08-26 10:00:00,0.21100000000000002,0.258,0.294 -2016-08-26 11:00:00,0.21100000000000002,0.258,0.294 -2016-08-26 12:00:00,0.21100000000000002,0.258,0.293 -2016-08-26 13:00:00,0.21100000000000002,0.258,0.293 -2016-08-26 14:00:00,0.21100000000000002,0.258,0.293 -2016-08-26 15:00:00,0.21100000000000002,0.256,0.293 -2016-08-26 16:00:00,0.21100000000000002,0.256,0.292 -2016-08-26 17:00:00,0.21100000000000002,0.255,0.292 -2016-08-26 18:00:00,0.212,0.254,0.292 -2016-08-26 19:00:00,0.212,0.254,0.292 -2016-08-26 20:00:00,0.212,0.254,0.292 -2016-08-26 21:00:00,0.212,0.254,0.292 -2016-08-26 22:00:00,0.212,0.254,0.292 -2016-08-26 23:00:00,0.212,0.254,0.292 -2016-08-27 00:00:00,0.213,0.254,0.292 -2016-08-27 01:00:00,0.213,0.255,0.292 -2016-08-27 02:00:00,0.212,0.256,0.292 -2016-08-27 03:00:00,0.212,0.256,0.292 -2016-08-27 04:00:00,0.212,0.256,0.292 -2016-08-27 05:00:00,0.212,0.256,0.292 -2016-08-27 06:00:00,0.212,0.256,0.292 -2016-08-27 07:00:00,0.212,0.256,0.292 -2016-08-27 08:00:00,0.212,0.256,0.292 -2016-08-27 09:00:00,0.212,0.256,0.293 -2016-08-27 10:00:00,0.212,0.256,0.293 -2016-08-27 11:00:00,0.21100000000000002,0.256,0.293 -2016-08-27 12:00:00,0.21100000000000002,0.256,0.293 -2016-08-27 13:00:00,0.21100000000000002,0.256,0.292 -2016-08-27 14:00:00,0.21100000000000002,0.256,0.292 -2016-08-27 15:00:00,0.21100000000000002,0.255,0.292 -2016-08-27 16:00:00,0.21100000000000002,0.254,0.292 -2016-08-27 17:00:00,0.21100000000000002,0.253,0.29100000000000004 -2016-08-27 18:00:00,0.21100000000000002,0.253,0.29100000000000004 -2016-08-27 19:00:00,0.21100000000000002,0.253,0.29100000000000004 -2016-08-27 20:00:00,0.212,0.253,0.29100000000000004 -2016-08-27 21:00:00,0.212,0.253,0.29100000000000004 -2016-08-27 22:00:00,0.212,0.253,0.29100000000000004 -2016-08-27 23:00:00,0.212,0.253,0.29100000000000004 -2016-08-28 00:00:00,0.213,0.253,0.29100000000000004 -2016-08-28 01:00:00,0.212,0.253,0.29100000000000004 -2016-08-28 02:00:00,0.212,0.254,0.29100000000000004 -2016-08-28 03:00:00,0.212,0.254,0.29100000000000004 -2016-08-28 04:00:00,0.212,0.254,0.292 -2016-08-28 05:00:00,0.212,0.254,0.292 -2016-08-28 06:00:00,0.21100000000000002,0.254,0.292 -2016-08-28 07:00:00,0.21100000000000002,0.255,0.292 -2016-08-28 08:00:00,0.21100000000000002,0.255,0.292 -2016-08-28 09:00:00,0.21100000000000002,0.255,0.292 -2016-08-28 10:00:00,0.21100000000000002,0.256,0.292 -2016-08-28 11:00:00,0.21100000000000002,0.256,0.292 -2016-08-28 12:00:00,0.21100000000000002,0.256,0.292 -2016-08-28 13:00:00,0.21,0.256,0.29100000000000004 -2016-08-28 14:00:00,0.21,0.254,0.29100000000000004 -2016-08-28 15:00:00,0.21,0.253,0.29100000000000004 -2016-08-28 16:00:00,0.268,0.253,0.3 -2016-08-28 17:00:00,0.266,0.253,0.304 -2016-08-28 18:00:00,0.262,0.253,0.303 -2016-08-28 19:00:00,0.26,0.252,0.303 -2016-08-28 20:00:00,0.258,0.252,0.303 -2016-08-28 21:00:00,0.257,0.252,0.303 -2016-08-28 22:00:00,0.256,0.252,0.303 -2016-08-28 23:00:00,0.255,0.253,0.302 -2016-08-29 00:00:00,0.254,0.253,0.302 -2016-08-29 01:00:00,0.253,0.253,0.302 -2016-08-29 02:00:00,0.252,0.253,0.302 -2016-08-29 03:00:00,0.252,0.253,0.302 -2016-08-29 04:00:00,0.251,0.253,0.302 -2016-08-29 05:00:00,0.251,0.253,0.302 -2016-08-29 06:00:00,0.25,0.254,0.302 -2016-08-29 07:00:00,0.25,0.254,0.302 -2016-08-29 08:00:00,0.249,0.254,0.302 -2016-08-29 09:00:00,0.248,0.254,0.302 -2016-08-29 10:00:00,0.247,0.254,0.302 -2016-08-29 11:00:00,0.248,0.254,0.302 -2016-08-29 12:00:00,0.248,0.254,0.302 -2016-08-29 13:00:00,0.247,0.254,0.301 -2016-08-29 14:00:00,0.247,0.254,0.301 -2016-08-29 15:00:00,0.24600000000000002,0.254,0.3 -2016-08-29 16:00:00,0.24600000000000002,0.253,0.3 -2016-08-29 17:00:00,0.245,0.253,0.3 -2016-08-29 18:00:00,0.245,0.253,0.3 -2016-08-29 19:00:00,0.244,0.253,0.3 -2016-08-29 20:00:00,0.244,0.253,0.3 -2016-08-29 21:00:00,0.244,0.253,0.299 -2016-08-29 22:00:00,0.244,0.253,0.3 -2016-08-29 23:00:00,0.244,0.253,0.299 -2016-08-30 00:00:00,0.243,0.253,0.299 -2016-08-30 01:00:00,0.243,0.254,0.299 -2016-08-30 02:00:00,0.243,0.254,0.299 -2016-08-30 03:00:00,0.243,0.254,0.299 -2016-08-30 04:00:00,0.242,0.254,0.299 -2016-08-30 05:00:00,0.242,0.254,0.299 -2016-08-30 06:00:00,0.242,0.254,0.299 -2016-08-30 07:00:00,0.242,0.254,0.299 -2016-08-30 08:00:00,0.24100000000000002,0.254,0.299 -2016-08-30 09:00:00,0.24100000000000002,0.254,0.299 -2016-08-30 10:00:00,0.24100000000000002,0.254,0.299 -2016-08-30 11:00:00,0.24100000000000002,0.253,0.299 -2016-08-30 12:00:00,0.24,0.253,0.299 -2016-08-30 13:00:00,0.24,0.253,0.298 -2016-08-30 14:00:00,0.239,0.253,0.298 -2016-08-30 15:00:00,0.23800000000000002,0.253,0.298 -2016-08-30 16:00:00,0.23800000000000002,0.253,0.298 -2016-08-30 17:00:00,0.237,0.253,0.298 -2016-08-30 18:00:00,0.237,0.253,0.298 -2016-08-30 19:00:00,0.237,0.253,0.298 -2016-08-30 20:00:00,0.23600000000000002,0.253,0.298 -2016-08-30 21:00:00,0.23600000000000002,0.253,0.297 -2016-08-30 22:00:00,0.23600000000000002,0.253,0.297 -2016-08-30 23:00:00,0.23600000000000002,0.253,0.297 -2016-08-31 00:00:00,0.23600000000000002,0.253,0.297 -2016-08-31 01:00:00,0.23600000000000002,0.253,0.297 -2016-08-31 02:00:00,0.23600000000000002,0.253,0.297 -2016-08-31 03:00:00,0.235,0.254,0.297 -2016-08-31 04:00:00,0.235,0.254,0.297 -2016-08-31 05:00:00,0.235,0.254,0.297 -2016-08-31 06:00:00,0.235,0.254,0.297 -2016-08-31 07:00:00,0.23399999999999999,0.254,0.297 -2016-08-31 08:00:00,0.23399999999999999,0.254,0.297 -2016-08-31 09:00:00,0.23399999999999999,0.254,0.298 -2016-08-31 10:00:00,0.233,0.254,0.298 -2016-08-31 11:00:00,0.233,0.254,0.298 -2016-08-31 12:00:00,0.23199999999999998,0.254,0.297 -2016-08-31 13:00:00,0.23199999999999998,0.254,0.297 -2016-08-31 14:00:00,0.231,0.254,0.297 -2016-08-31 15:00:00,0.231,0.253,0.297 -2016-08-31 16:00:00,0.231,0.253,0.297 -2016-08-31 17:00:00,0.231,0.253,0.29600000000000004 -2016-08-31 18:00:00,0.231,0.253,0.29600000000000004 -2016-08-31 19:00:00,0.231,0.252,0.29600000000000004 -2016-08-31 20:00:00,0.231,0.252,0.29600000000000004 -2016-08-31 21:00:00,0.231,0.252,0.29600000000000004 -2016-08-31 22:00:00,0.231,0.252,0.29600000000000004 -2016-08-31 23:00:00,0.231,0.253,0.297 -2016-09-01 00:00:00,0.231,0.253,0.297 -2016-09-01 01:00:00,0.231,0.253,0.297 -2016-09-01 02:00:00,0.231,0.253,0.297 -2016-09-01 03:00:00,0.231,0.253,0.297 -2016-09-01 04:00:00,0.231,0.253,0.297 -2016-09-01 05:00:00,0.231,0.253,0.297 -2016-09-01 06:00:00,0.231,0.253,0.297 -2016-09-01 07:00:00,0.231,0.254,0.297 -2016-09-01 08:00:00,0.23,0.254,0.297 -2016-09-01 09:00:00,0.23,0.253,0.297 -2016-09-01 10:00:00,0.23,0.253,0.297 -2016-09-01 11:00:00,0.23,0.253,0.297 -2016-09-01 12:00:00,0.23,0.253,0.297 -2016-09-01 13:00:00,0.22899999999999998,0.253,0.29600000000000004 -2016-09-01 14:00:00,0.228,0.253,0.29600000000000004 -2016-09-01 15:00:00,0.228,0.253,0.29600000000000004 -2016-09-01 16:00:00,0.22699999999999998,0.252,0.29600000000000004 -2016-09-01 17:00:00,0.22699999999999998,0.251,0.29600000000000004 -2016-09-01 18:00:00,0.22699999999999998,0.251,0.29600000000000004 -2016-09-01 19:00:00,0.22699999999999998,0.251,0.29600000000000004 -2016-09-01 20:00:00,0.22699999999999998,0.251,0.29600000000000004 -2016-09-01 21:00:00,0.22699999999999998,0.251,0.295 -2016-09-01 22:00:00,0.22699999999999998,0.251,0.295 -2016-09-01 23:00:00,0.22699999999999998,0.253,0.29600000000000004 -2016-09-02 00:00:00,0.22699999999999998,0.253,0.29600000000000004 -2016-09-02 01:00:00,0.22699999999999998,0.253,0.29600000000000004 -2016-09-02 02:00:00,0.22699999999999998,0.253,0.29600000000000004 -2016-09-02 03:00:00,0.226,0.253,0.29600000000000004 -2016-09-02 04:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 05:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 06:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 07:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 08:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 09:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 10:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 11:00:00,0.226,0.254,0.29600000000000004 -2016-09-02 12:00:00,0.225,0.254,0.29600000000000004 -2016-09-02 13:00:00,0.225,0.253,0.29600000000000004 -2016-09-02 14:00:00,0.22399999999999998,0.253,0.295 -2016-09-02 15:00:00,0.22399999999999998,0.253,0.295 -2016-09-02 16:00:00,0.22399999999999998,0.252,0.295 -2016-09-02 17:00:00,0.223,0.251,0.295 -2016-09-02 18:00:00,0.223,0.251,0.295 -2016-09-02 19:00:00,0.223,0.251,0.295 -2016-09-02 20:00:00,0.223,0.251,0.295 -2016-09-02 21:00:00,0.223,0.251,0.295 -2016-09-02 22:00:00,0.223,0.251,0.295 -2016-09-02 23:00:00,0.223,0.253,0.295 -2016-09-03 00:00:00,0.223,0.253,0.295 -2016-09-03 01:00:00,0.223,0.253,0.295 -2016-09-03 02:00:00,0.223,0.253,0.295 -2016-09-03 03:00:00,0.223,0.253,0.295 -2016-09-03 04:00:00,0.223,0.253,0.295 -2016-09-03 05:00:00,0.223,0.253,0.295 -2016-09-03 06:00:00,0.223,0.253,0.295 -2016-09-03 07:00:00,0.223,0.253,0.295 -2016-09-03 08:00:00,0.223,0.254,0.295 -2016-09-03 09:00:00,0.223,0.254,0.295 -2016-09-03 10:00:00,0.223,0.254,0.295 -2016-09-03 11:00:00,0.222,0.254,0.295 -2016-09-03 12:00:00,0.222,0.254,0.295 -2016-09-03 13:00:00,0.222,0.254,0.295 -2016-09-03 14:00:00,0.221,0.254,0.295 -2016-09-03 15:00:00,0.221,0.253,0.295 -2016-09-03 16:00:00,0.221,0.253,0.295 -2016-09-03 17:00:00,0.221,0.253,0.294 -2016-09-03 18:00:00,0.221,0.253,0.294 -2016-09-03 19:00:00,0.221,0.252,0.294 -2016-09-03 20:00:00,0.221,0.252,0.294 -2016-09-03 21:00:00,0.221,0.252,0.294 -2016-09-03 22:00:00,0.221,0.252,0.294 -2016-09-03 23:00:00,0.221,0.253,0.294 -2016-09-04 00:00:00,0.221,0.253,0.294 -2016-09-04 01:00:00,0.221,0.253,0.294 -2016-09-04 02:00:00,0.221,0.253,0.294 -2016-09-04 03:00:00,0.221,0.253,0.294 -2016-09-04 04:00:00,0.221,0.253,0.294 -2016-09-04 05:00:00,0.221,0.254,0.294 -2016-09-04 06:00:00,0.22,0.254,0.294 -2016-09-04 07:00:00,0.22,0.254,0.294 -2016-09-04 08:00:00,0.221,0.254,0.295 -2016-09-04 09:00:00,0.221,0.254,0.295 -2016-09-04 10:00:00,0.221,0.254,0.295 -2016-09-04 11:00:00,0.221,0.254,0.29600000000000004 -2016-09-04 12:00:00,0.221,0.254,0.29600000000000004 -2016-09-04 13:00:00,0.221,0.253,0.29600000000000004 -2016-09-04 14:00:00,0.221,0.253,0.295 -2016-09-04 15:00:00,0.221,0.253,0.295 -2016-09-04 16:00:00,0.221,0.253,0.295 -2016-09-04 17:00:00,0.221,0.252,0.29600000000000004 -2016-09-04 18:00:00,0.222,0.251,0.297 -2016-09-04 19:00:00,0.222,0.251,0.29600000000000004 -2016-09-04 20:00:00,0.222,0.251,0.29600000000000004 -2016-09-04 21:00:00,0.222,0.251,0.29600000000000004 -2016-09-04 22:00:00,0.222,0.251,0.29600000000000004 -2016-09-04 23:00:00,0.222,0.252,0.29600000000000004 -2016-09-05 00:00:00,0.222,0.253,0.29600000000000004 -2016-09-05 01:00:00,0.222,0.253,0.29600000000000004 -2016-09-05 02:00:00,0.222,0.253,0.29600000000000004 -2016-09-05 03:00:00,0.222,0.253,0.29600000000000004 -2016-09-05 04:00:00,0.222,0.253,0.29600000000000004 -2016-09-05 05:00:00,0.222,0.253,0.29600000000000004 -2016-09-05 06:00:00,0.222,0.253,0.29600000000000004 -2016-09-05 07:00:00,0.222,0.253,0.297 -2016-09-05 08:00:00,0.221,0.253,0.298 -2016-09-05 09:00:00,0.221,0.253,0.298 -2016-09-05 10:00:00,0.222,0.253,0.298 -2016-09-05 11:00:00,0.222,0.253,0.298 -2016-09-05 12:00:00,0.222,0.253,0.298 -2016-09-05 13:00:00,0.222,0.253,0.297 -2016-09-05 14:00:00,0.222,0.253,0.297 -2016-09-05 15:00:00,0.223,0.253,0.297 -2016-09-05 16:00:00,0.223,0.251,0.29600000000000004 -2016-09-05 17:00:00,0.222,0.251,0.29600000000000004 -2016-09-05 18:00:00,0.223,0.251,0.29600000000000004 -2016-09-05 19:00:00,0.223,0.25,0.29600000000000004 -2016-09-05 20:00:00,0.223,0.25,0.29600000000000004 -2016-09-05 21:00:00,0.223,0.251,0.29600000000000004 -2016-09-05 22:00:00,0.223,0.251,0.29600000000000004 -2016-09-05 23:00:00,0.223,0.251,0.29600000000000004 -2016-09-06 00:00:00,0.223,0.251,0.29600000000000004 -2016-09-06 01:00:00,0.223,0.252,0.29600000000000004 -2016-09-06 02:00:00,0.223,0.252,0.29600000000000004 -2016-09-06 03:00:00,0.223,0.253,0.29600000000000004 -2016-09-06 04:00:00,0.223,0.253,0.29600000000000004 -2016-09-06 05:00:00,0.223,0.253,0.29600000000000004 -2016-09-06 06:00:00,0.223,0.253,0.29600000000000004 -2016-09-06 07:00:00,0.222,0.253,0.29600000000000004 -2016-09-06 08:00:00,0.222,0.253,0.29600000000000004 -2016-09-06 09:00:00,0.222,0.253,0.29600000000000004 -2016-09-06 10:00:00,0.222,0.253,0.29600000000000004 -2016-09-06 11:00:00,0.223,0.253,0.29600000000000004 -2016-09-06 12:00:00,0.222,0.253,0.29600000000000004 -2016-09-06 13:00:00,0.222,0.253,0.295 -2016-09-06 14:00:00,0.222,0.252,0.295 -2016-09-06 15:00:00,0.222,0.251,0.295 -2016-09-06 16:00:00,0.222,0.25,0.295 -2016-09-06 17:00:00,0.222,0.249,0.295 -2016-09-06 18:00:00,0.222,0.249,0.295 -2016-09-06 19:00:00,0.222,0.249,0.295 -2016-09-06 20:00:00,0.222,0.249,0.295 -2016-09-06 21:00:00,0.222,0.249,0.295 -2016-09-06 22:00:00,0.222,0.249,0.295 -2016-09-06 23:00:00,0.222,0.249,0.295 -2016-09-07 00:00:00,0.222,0.25,0.295 -2016-09-07 01:00:00,0.222,0.251,0.295 -2016-09-07 02:00:00,0.222,0.251,0.295 -2016-09-07 03:00:00,0.222,0.251,0.295 -2016-09-07 04:00:00,0.222,0.251,0.295 -2016-09-07 05:00:00,0.221,0.251,0.295 -2016-09-07 06:00:00,0.221,0.251,0.295 -2016-09-07 07:00:00,0.221,0.251,0.295 -2016-09-07 08:00:00,0.22,0.251,0.295 -2016-09-07 09:00:00,0.22,0.251,0.295 -2016-09-07 10:00:00,0.22,0.251,0.295 -2016-09-07 11:00:00,0.22,0.251,0.295 -2016-09-07 12:00:00,0.22,0.251,0.295 -2016-09-07 13:00:00,0.21899999999999997,0.251,0.295 -2016-09-07 14:00:00,0.21899999999999997,0.251,0.294 -2016-09-07 15:00:00,0.21899999999999997,0.25,0.294 -2016-09-07 16:00:00,0.22,0.249,0.294 -2016-09-07 17:00:00,0.22,0.249,0.294 -2016-09-07 18:00:00,0.22,0.249,0.294 -2016-09-07 19:00:00,0.22,0.249,0.293 -2016-09-07 20:00:00,0.22,0.248,0.294 -2016-09-07 21:00:00,0.221,0.249,0.294 -2016-09-07 22:00:00,0.221,0.249,0.294 -2016-09-07 23:00:00,0.221,0.249,0.294 -2016-09-08 00:00:00,0.221,0.249,0.294 -2016-09-08 01:00:00,0.22,0.249,0.294 -2016-09-08 02:00:00,0.22,0.249,0.294 -2016-09-08 03:00:00,0.22,0.249,0.294 -2016-09-08 04:00:00,0.22,0.25,0.294 -2016-09-08 05:00:00,0.22,0.25,0.294 -2016-09-08 06:00:00,0.22,0.25,0.294 -2016-09-08 07:00:00,0.21899999999999997,0.25,0.294 -2016-09-08 08:00:00,0.21899999999999997,0.251,0.294 -2016-09-08 09:00:00,0.21899999999999997,0.25,0.294 -2016-09-08 10:00:00,0.21899999999999997,0.25,0.295 -2016-09-08 11:00:00,0.21899999999999997,0.25,0.294 -2016-09-08 12:00:00,0.21899999999999997,0.25,0.294 -2016-09-08 13:00:00,0.21899999999999997,0.25,0.294 -2016-09-08 14:00:00,0.21899999999999997,0.249,0.294 -2016-09-08 15:00:00,0.21899999999999997,0.249,0.294 -2016-09-08 16:00:00,0.21899999999999997,0.249,0.294 -2016-09-08 17:00:00,0.22,0.248,0.293 -2016-09-08 18:00:00,0.22,0.247,0.293 -2016-09-08 19:00:00,0.22,0.247,0.293 -2016-09-08 20:00:00,0.22,0.247,0.293 -2016-09-08 21:00:00,0.221,0.247,0.293 -2016-09-08 22:00:00,0.221,0.247,0.293 -2016-09-08 23:00:00,0.221,0.247,0.293 -2016-09-09 00:00:00,0.221,0.248,0.294 -2016-09-09 01:00:00,0.22,0.248,0.293 -2016-09-09 02:00:00,0.22,0.249,0.294 -2016-09-09 03:00:00,0.22,0.249,0.294 -2016-09-09 04:00:00,0.22,0.249,0.294 -2016-09-09 05:00:00,0.22,0.249,0.294 -2016-09-09 06:00:00,0.22,0.249,0.294 -2016-09-09 07:00:00,0.22,0.249,0.294 -2016-09-09 08:00:00,0.22,0.249,0.294 -2016-09-09 09:00:00,0.22,0.249,0.294 -2016-09-09 10:00:00,0.22,0.249,0.294 -2016-09-09 11:00:00,0.22,0.249,0.294 -2016-09-09 12:00:00,0.22,0.249,0.294 -2016-09-09 13:00:00,0.22,0.249,0.294 -2016-09-09 14:00:00,0.22,0.249,0.294 -2016-09-09 15:00:00,0.22,0.248,0.293 -2016-09-09 16:00:00,0.22,0.247,0.293 -2016-09-09 17:00:00,0.22,0.247,0.293 -2016-09-09 18:00:00,0.22,0.247,0.293 -2016-09-09 19:00:00,0.22,0.24600000000000002,0.293 -2016-09-09 20:00:00,0.22,0.24600000000000002,0.293 -2016-09-09 21:00:00,0.221,0.247,0.293 -2016-09-09 22:00:00,0.221,0.247,0.293 -2016-09-09 23:00:00,0.22,0.247,0.293 -2016-09-10 00:00:00,0.22,0.247,0.293 -2016-09-10 01:00:00,0.22,0.247,0.293 -2016-09-10 02:00:00,0.22,0.247,0.293 -2016-09-10 03:00:00,0.22,0.247,0.293 -2016-09-10 04:00:00,0.22,0.247,0.293 -2016-09-10 05:00:00,0.22,0.248,0.293 -2016-09-10 06:00:00,0.22,0.248,0.293 -2016-09-10 07:00:00,0.21899999999999997,0.248,0.293 -2016-09-10 08:00:00,0.21899999999999997,0.248,0.293 -2016-09-10 09:00:00,0.21899999999999997,0.249,0.294 -2016-09-10 10:00:00,0.21899999999999997,0.249,0.294 -2016-09-10 11:00:00,0.218,0.249,0.293 -2016-09-10 12:00:00,0.218,0.249,0.293 -2016-09-10 13:00:00,0.218,0.249,0.293 -2016-09-10 14:00:00,0.218,0.248,0.293 -2016-09-10 15:00:00,0.218,0.248,0.293 -2016-09-10 16:00:00,0.218,0.247,0.293 -2016-09-10 17:00:00,0.21899999999999997,0.247,0.293 -2016-09-10 18:00:00,0.21899999999999997,0.247,0.293 -2016-09-10 19:00:00,0.21899999999999997,0.247,0.293 -2016-09-10 20:00:00,0.21899999999999997,0.247,0.293 -2016-09-10 21:00:00,0.21899999999999997,0.247,0.293 -2016-09-10 22:00:00,0.21899999999999997,0.247,0.293 -2016-09-10 23:00:00,0.21899999999999997,0.247,0.293 -2016-09-11 00:00:00,0.21899999999999997,0.247,0.293 -2016-09-11 01:00:00,0.21899999999999997,0.247,0.293 -2016-09-11 02:00:00,0.21899999999999997,0.247,0.293 -2016-09-11 03:00:00,0.21899999999999997,0.247,0.293 -2016-09-11 04:00:00,0.21899999999999997,0.247,0.293 -2016-09-11 05:00:00,0.218,0.247,0.293 -2016-09-11 06:00:00,0.218,0.248,0.293 -2016-09-11 07:00:00,0.218,0.248,0.293 -2016-09-11 08:00:00,0.218,0.248,0.293 -2016-09-11 09:00:00,0.217,0.248,0.293 -2016-09-11 10:00:00,0.217,0.248,0.293 -2016-09-11 11:00:00,0.217,0.247,0.293 -2016-09-11 12:00:00,0.217,0.247,0.293 -2016-09-11 13:00:00,0.217,0.247,0.293 -2016-09-11 14:00:00,0.217,0.247,0.292 -2016-09-11 15:00:00,0.21600000000000003,0.247,0.292 -2016-09-11 16:00:00,0.217,0.247,0.292 -2016-09-11 17:00:00,0.217,0.247,0.292 -2016-09-11 18:00:00,0.217,0.247,0.292 -2016-09-11 19:00:00,0.217,0.247,0.292 -2016-09-11 20:00:00,0.217,0.247,0.292 -2016-09-11 21:00:00,0.217,0.247,0.292 -2016-09-11 22:00:00,0.217,0.24600000000000002,0.292 -2016-09-11 23:00:00,0.217,0.24600000000000002,0.292 -2016-09-12 00:00:00,0.21600000000000003,0.24600000000000002,0.292 -2016-09-12 01:00:00,0.21600000000000003,0.24600000000000002,0.292 -2016-09-12 02:00:00,0.21600000000000003,0.24600000000000002,0.292 -2016-09-12 03:00:00,0.21600000000000003,0.24600000000000002,0.292 -2016-09-12 04:00:00,0.21600000000000003,0.247,0.292 -2016-09-12 05:00:00,0.21600000000000003,0.247,0.292 -2016-09-12 06:00:00,0.215,0.248,0.292 -2016-09-12 07:00:00,0.215,0.248,0.292 -2016-09-12 08:00:00,0.215,0.249,0.292 -2016-09-12 09:00:00,0.215,0.249,0.292 -2016-09-12 10:00:00,0.215,0.249,0.292 -2016-09-12 11:00:00,0.215,0.249,0.292 -2016-09-12 12:00:00,0.215,0.249,0.292 -2016-09-12 13:00:00,0.214,0.249,0.292 -2016-09-12 14:00:00,0.215,0.249,0.292 -2016-09-12 15:00:00,0.215,0.251,0.292 -2016-09-12 16:00:00,0.215,0.251,0.292 -2016-09-12 17:00:00,0.215,0.251,0.292 -2016-09-12 18:00:00,0.215,0.252,0.292 -2016-09-12 19:00:00,0.215,0.253,0.292 -2016-09-12 20:00:00,0.21600000000000003,0.253,0.292 -2016-09-12 21:00:00,0.21600000000000003,0.253,0.292 -2016-09-12 22:00:00,0.21600000000000003,0.253,0.292 -2016-09-12 23:00:00,0.21600000000000003,0.253,0.292 -2016-09-13 00:00:00,0.215,0.253,0.292 -2016-09-13 01:00:00,0.215,0.253,0.292 -2016-09-13 02:00:00,0.215,0.253,0.292 -2016-09-13 03:00:00,0.215,0.253,0.292 -2016-09-13 04:00:00,0.215,0.254,0.292 -2016-09-13 05:00:00,0.215,0.254,0.292 -2016-09-13 06:00:00,0.215,0.254,0.292 -2016-09-13 07:00:00,0.214,0.254,0.292 -2016-09-13 08:00:00,0.214,0.254,0.292 -2016-09-13 09:00:00,0.214,0.254,0.292 -2016-09-13 10:00:00,0.214,0.254,0.292 -2016-09-13 11:00:00,0.214,0.254,0.292 -2016-09-13 12:00:00,0.214,0.254,0.292 -2016-09-13 13:00:00,0.214,0.254,0.292 -2016-09-13 14:00:00,0.214,0.254,0.292 -2016-09-13 15:00:00,0.214,0.254,0.292 -2016-09-13 16:00:00,0.214,0.254,0.29100000000000004 -2016-09-13 17:00:00,0.214,0.254,0.29100000000000004 -2016-09-13 18:00:00,0.214,0.254,0.29100000000000004 -2016-09-13 19:00:00,0.214,0.254,0.29100000000000004 -2016-09-13 20:00:00,0.214,0.254,0.29100000000000004 -2016-09-13 21:00:00,0.214,0.254,0.29100000000000004 -2016-09-13 22:00:00,0.214,0.255,0.29100000000000004 -2016-09-13 23:00:00,0.214,0.255,0.29100000000000004 -2016-09-14 00:00:00,0.214,0.255,0.29100000000000004 -2016-09-14 01:00:00,0.214,0.255,0.29100000000000004 -2016-09-14 02:00:00,0.214,0.255,0.29100000000000004 -2016-09-14 03:00:00,0.214,0.255,0.29100000000000004 -2016-09-14 04:00:00,0.213,0.255,0.29100000000000004 -2016-09-14 05:00:00,0.213,0.255,0.29100000000000004 -2016-09-14 06:00:00,0.213,0.255,0.29100000000000004 -2016-09-14 07:00:00,0.213,0.256,0.29100000000000004 -2016-09-14 08:00:00,0.213,0.256,0.29100000000000004 -2016-09-14 09:00:00,0.213,0.256,0.29100000000000004 -2016-09-14 10:00:00,0.213,0.256,0.292 -2016-09-14 11:00:00,0.213,0.256,0.29100000000000004 -2016-09-14 12:00:00,0.213,0.256,0.29100000000000004 -2016-09-14 13:00:00,0.212,0.256,0.29100000000000004 -2016-09-14 14:00:00,0.213,0.256,0.29100000000000004 -2016-09-14 15:00:00,0.212,0.256,0.29100000000000004 -2016-09-14 16:00:00,0.212,0.256,0.29100000000000004 -2016-09-14 17:00:00,0.213,0.256,0.29 -2016-09-14 18:00:00,0.213,0.256,0.29 -2016-09-14 19:00:00,0.213,0.255,0.29 -2016-09-14 20:00:00,0.213,0.255,0.29 -2016-09-14 21:00:00,0.213,0.255,0.29 -2016-09-14 22:00:00,0.213,0.256,0.29 -2016-09-14 23:00:00,0.213,0.256,0.29 -2016-09-15 00:00:00,0.213,0.256,0.29 -2016-09-15 01:00:00,0.212,0.256,0.29 -2016-09-15 02:00:00,0.212,0.256,0.29 -2016-09-15 03:00:00,0.212,0.256,0.29 -2016-09-15 04:00:00,0.212,0.256,0.29100000000000004 -2016-09-15 05:00:00,0.212,0.256,0.29100000000000004 -2016-09-15 06:00:00,0.212,0.256,0.29100000000000004 -2016-09-15 07:00:00,0.212,0.256,0.29100000000000004 -2016-09-15 08:00:00,0.21100000000000002,0.256,0.29100000000000004 -2016-09-15 09:00:00,0.21100000000000002,0.256,0.29100000000000004 -2016-09-15 10:00:00,0.21100000000000002,0.256,0.29100000000000004 -2016-09-15 11:00:00,0.21100000000000002,0.256,0.29100000000000004 -2016-09-15 12:00:00,0.21100000000000002,0.256,0.29 -2016-09-15 13:00:00,0.21100000000000002,0.256,0.29 -2016-09-15 14:00:00,0.21100000000000002,0.256,0.29 -2016-09-15 15:00:00,0.21100000000000002,0.256,0.29 -2016-09-15 16:00:00,0.21100000000000002,0.256,0.29 -2016-09-15 17:00:00,0.21100000000000002,0.255,0.29 -2016-09-15 18:00:00,0.21100000000000002,0.255,0.29 -2016-09-15 19:00:00,0.21100000000000002,0.254,0.29 -2016-09-15 20:00:00,0.21100000000000002,0.254,0.29 -2016-09-15 21:00:00,0.212,0.254,0.29 -2016-09-15 22:00:00,0.212,0.255,0.29 -2016-09-15 23:00:00,0.212,0.255,0.29 -2016-09-16 00:00:00,0.212,0.255,0.29 -2016-09-16 01:00:00,0.212,0.256,0.29 -2016-09-16 02:00:00,0.212,0.256,0.29 -2016-09-16 03:00:00,0.212,0.256,0.29 -2016-09-16 04:00:00,0.212,0.256,0.29 -2016-09-16 05:00:00,0.21100000000000002,0.256,0.29 -2016-09-16 06:00:00,0.21100000000000002,0.256,0.29 -2016-09-16 07:00:00,0.21100000000000002,0.256,0.29 -2016-09-16 08:00:00,0.21100000000000002,0.256,0.29 -2016-09-16 09:00:00,0.21100000000000002,0.256,0.29 -2016-09-16 10:00:00,0.21100000000000002,0.256,0.29 -2016-09-16 11:00:00,0.21100000000000002,0.256,0.29 -2016-09-16 12:00:00,0.21100000000000002,0.255,0.29 -2016-09-16 13:00:00,0.21100000000000002,0.255,0.29 -2016-09-16 14:00:00,0.21100000000000002,0.255,0.29 -2016-09-16 15:00:00,0.21100000000000002,0.255,0.29 -2016-09-16 16:00:00,0.21100000000000002,0.255,0.29 -2016-09-16 17:00:00,0.21100000000000002,0.254,0.29 -2016-09-16 18:00:00,0.21100000000000002,0.254,0.29 -2016-09-16 19:00:00,0.21100000000000002,0.254,0.29 -2016-09-16 20:00:00,0.21100000000000002,0.254,0.29 -2016-09-16 21:00:00,0.21100000000000002,0.254,0.29 -2016-09-16 22:00:00,0.21100000000000002,0.254,0.29 -2016-09-16 23:00:00,0.21100000000000002,0.254,0.29 -2016-09-17 00:00:00,0.21100000000000002,0.254,0.29 -2016-09-17 01:00:00,0.21100000000000002,0.254,0.29 -2016-09-17 02:00:00,0.21100000000000002,0.254,0.29 -2016-09-17 03:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 04:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 05:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 06:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 07:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 08:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 09:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 10:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 11:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 12:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 13:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 14:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 15:00:00,0.21100000000000002,0.255,0.29 -2016-09-17 16:00:00,0.21100000000000002,0.254,0.29 -2016-09-17 17:00:00,0.21100000000000002,0.254,0.29 -2016-09-17 18:00:00,0.21100000000000002,0.254,0.29 -2016-09-17 19:00:00,0.212,0.254,0.293 -2016-09-17 20:00:00,0.212,0.254,0.295 -2016-09-17 21:00:00,0.21100000000000002,0.254,0.295 -2016-09-17 22:00:00,0.212,0.254,0.29600000000000004 -2016-09-17 23:00:00,0.226,0.254,0.297 -2016-09-18 00:00:00,0.23399999999999999,0.254,0.3 -2016-09-18 01:00:00,0.243,0.254,0.32299999999999995 -2016-09-18 02:00:00,0.24600000000000002,0.255,0.31 -2016-09-18 03:00:00,0.24600000000000002,0.255,0.304 -2016-09-18 04:00:00,0.24600000000000002,0.255,0.302 -2016-09-18 05:00:00,0.245,0.255,0.301 -2016-09-18 06:00:00,0.245,0.255,0.301 -2016-09-18 07:00:00,0.245,0.255,0.3 -2016-09-18 08:00:00,0.244,0.255,0.3 -2016-09-18 09:00:00,0.243,0.255,0.3 -2016-09-18 10:00:00,0.243,0.255,0.3 -2016-09-18 11:00:00,0.243,0.255,0.3 -2016-09-18 12:00:00,0.243,0.255,0.3 -2016-09-18 13:00:00,0.244,0.255,0.299 -2016-09-18 14:00:00,0.244,0.255,0.299 -2016-09-18 15:00:00,0.244,0.255,0.298 -2016-09-18 16:00:00,0.244,0.255,0.298 -2016-09-18 17:00:00,0.243,0.254,0.297 -2016-09-18 18:00:00,0.243,0.254,0.297 -2016-09-18 19:00:00,0.243,0.254,0.29600000000000004 -2016-09-18 20:00:00,0.242,0.254,0.29600000000000004 -2016-09-18 21:00:00,0.242,0.254,0.29600000000000004 -2016-09-18 22:00:00,0.242,0.254,0.29600000000000004 -2016-09-18 23:00:00,0.242,0.254,0.29600000000000004 -2016-09-19 00:00:00,0.24100000000000002,0.254,0.29600000000000004 -2016-09-19 01:00:00,0.24100000000000002,0.254,0.29600000000000004 -2016-09-19 02:00:00,0.24,0.254,0.29600000000000004 -2016-09-19 03:00:00,0.24,0.254,0.29600000000000004 -2016-09-19 04:00:00,0.24,0.255,0.29600000000000004 -2016-09-19 05:00:00,0.24,0.255,0.29600000000000004 -2016-09-19 06:00:00,0.239,0.255,0.29600000000000004 -2016-09-19 07:00:00,0.239,0.255,0.29600000000000004 -2016-09-19 08:00:00,0.239,0.255,0.29600000000000004 -2016-09-19 09:00:00,0.239,0.255,0.29600000000000004 -2016-09-19 10:00:00,0.239,0.255,0.29600000000000004 -2016-09-19 11:00:00,0.23800000000000002,0.255,0.29600000000000004 -2016-09-19 12:00:00,0.23800000000000002,0.255,0.29600000000000004 -2016-09-19 13:00:00,0.23800000000000002,0.255,0.29600000000000004 -2016-09-19 14:00:00,0.23800000000000002,0.255,0.295 -2016-09-19 15:00:00,0.237,0.254,0.295 -2016-09-19 16:00:00,0.237,0.254,0.29600000000000004 -2016-09-19 17:00:00,0.237,0.254,0.29600000000000004 -2016-09-19 18:00:00,0.23800000000000002,0.253,0.29600000000000004 -2016-09-19 19:00:00,0.237,0.253,0.29600000000000004 -2016-09-19 20:00:00,0.237,0.253,0.29600000000000004 -2016-09-19 21:00:00,0.237,0.253,0.29600000000000004 -2016-09-19 22:00:00,0.237,0.253,0.29600000000000004 -2016-09-19 23:00:00,0.237,0.254,0.29600000000000004 -2016-09-20 00:00:00,0.237,0.254,0.297 -2016-09-20 01:00:00,0.237,0.254,0.297 -2016-09-20 02:00:00,0.237,0.254,0.297 -2016-09-20 03:00:00,0.237,0.254,0.297 -2016-09-20 04:00:00,0.237,0.254,0.297 -2016-09-20 05:00:00,0.237,0.254,0.297 -2016-09-20 06:00:00,0.237,0.254,0.297 -2016-09-20 07:00:00,0.237,0.254,0.297 -2016-09-20 08:00:00,0.237,0.254,0.297 -2016-09-20 09:00:00,0.237,0.254,0.297 -2016-09-20 10:00:00,0.237,0.254,0.297 -2016-09-20 11:00:00,0.237,0.254,0.297 -2016-09-20 12:00:00,0.237,0.254,0.297 -2016-09-20 13:00:00,0.23600000000000002,0.255,0.297 -2016-09-20 14:00:00,0.23600000000000002,0.255,0.29600000000000004 -2016-09-20 15:00:00,0.23600000000000002,0.254,0.29600000000000004 -2016-09-20 16:00:00,0.235,0.254,0.295 -2016-09-20 17:00:00,0.235,0.254,0.295 -2016-09-20 18:00:00,0.235,0.254,0.295 -2016-09-20 19:00:00,0.23600000000000002,0.254,0.295 -2016-09-20 20:00:00,0.23600000000000002,0.254,0.295 -2016-09-20 21:00:00,0.23600000000000002,0.254,0.295 -2016-09-20 22:00:00,0.23600000000000002,0.254,0.295 -2016-09-20 23:00:00,0.23600000000000002,0.254,0.295 -2016-09-21 00:00:00,0.23600000000000002,0.254,0.295 -2016-09-21 01:00:00,0.23600000000000002,0.254,0.295 -2016-09-21 02:00:00,0.23600000000000002,0.254,0.295 -2016-09-21 03:00:00,0.235,0.255,0.295 -2016-09-21 04:00:00,0.23399999999999999,0.255,0.295 -2016-09-21 05:00:00,0.23399999999999999,0.255,0.295 -2016-09-21 06:00:00,0.23399999999999999,0.255,0.295 -2016-09-21 07:00:00,0.233,0.255,0.295 -2016-09-21 08:00:00,0.23199999999999998,0.255,0.295 -2016-09-21 09:00:00,0.23199999999999998,0.255,0.295 -2016-09-21 10:00:00,0.23199999999999998,0.255,0.295 -2016-09-21 11:00:00,0.231,0.256,0.295 -2016-09-21 12:00:00,0.231,0.256,0.295 -2016-09-21 13:00:00,0.231,0.256,0.295 -2016-09-21 14:00:00,0.231,0.256,0.295 -2016-09-21 15:00:00,0.231,0.256,0.295 -2016-09-21 16:00:00,0.231,0.256,0.294 -2016-09-21 17:00:00,0.23,0.255,0.294 -2016-09-21 18:00:00,0.23,0.255,0.294 -2016-09-21 19:00:00,0.231,0.254,0.294 -2016-09-21 20:00:00,0.231,0.254,0.294 -2016-09-21 21:00:00,0.231,0.255,0.294 -2016-09-21 22:00:00,0.231,0.255,0.294 -2016-09-21 23:00:00,0.23,0.255,0.294 -2016-09-22 00:00:00,0.23,0.256,0.294 -2016-09-22 01:00:00,0.23,0.256,0.294 -2016-09-22 02:00:00,0.23,0.256,0.294 -2016-09-22 03:00:00,0.22899999999999998,0.256,0.294 -2016-09-22 04:00:00,0.22899999999999998,0.256,0.294 -2016-09-22 05:00:00,0.22899999999999998,0.256,0.294 -2016-09-22 06:00:00,0.22899999999999998,0.256,0.294 -2016-09-22 07:00:00,0.228,0.256,0.294 -2016-09-22 08:00:00,0.228,0.256,0.294 -2016-09-22 09:00:00,0.228,0.256,0.295 -2016-09-22 10:00:00,0.228,0.256,0.295 -2016-09-22 11:00:00,0.228,0.256,0.295 -2016-09-22 12:00:00,0.228,0.256,0.295 -2016-09-22 13:00:00,0.228,0.256,0.294 -2016-09-22 14:00:00,0.228,0.256,0.294 -2016-09-22 15:00:00,0.228,0.255,0.294 -2016-09-22 16:00:00,0.22699999999999998,0.254,0.294 -2016-09-22 17:00:00,0.22699999999999998,0.254,0.294 -2016-09-22 18:00:00,0.22699999999999998,0.253,0.294 -2016-09-22 19:00:00,0.228,0.253,0.294 -2016-09-22 20:00:00,0.228,0.253,0.294 -2016-09-22 21:00:00,0.228,0.253,0.294 -2016-09-22 22:00:00,0.228,0.253,0.294 -2016-09-22 23:00:00,0.228,0.253,0.294 -2016-09-23 00:00:00,0.228,0.253,0.294 -2016-09-23 01:00:00,0.228,0.254,0.294 -2016-09-23 02:00:00,0.228,0.254,0.294 -2016-09-23 03:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 04:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 05:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 06:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 07:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 08:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 09:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 10:00:00,0.22699999999999998,0.254,0.295 -2016-09-23 11:00:00,0.22699999999999998,0.254,0.295 -2016-09-23 12:00:00,0.22699999999999998,0.254,0.294 -2016-09-23 13:00:00,0.226,0.254,0.294 -2016-09-23 14:00:00,0.226,0.254,0.294 -2016-09-23 15:00:00,0.226,0.254,0.294 -2016-09-23 16:00:00,0.226,0.254,0.294 -2016-09-23 17:00:00,0.226,0.253,0.294 -2016-09-23 18:00:00,0.226,0.253,0.294 -2016-09-23 19:00:00,0.22699999999999998,0.253,0.294 -2016-09-23 20:00:00,0.22699999999999998,0.253,0.293 -2016-09-23 21:00:00,0.22699999999999998,0.253,0.293 -2016-09-23 22:00:00,0.22699999999999998,0.253,0.293 -2016-09-23 23:00:00,0.22699999999999998,0.253,0.293 -2016-09-24 00:00:00,0.22699999999999998,0.253,0.294 -2016-09-24 01:00:00,0.226,0.253,0.294 -2016-09-24 02:00:00,0.226,0.253,0.294 -2016-09-24 03:00:00,0.226,0.253,0.294 -2016-09-24 04:00:00,0.226,0.254,0.294 -2016-09-24 05:00:00,0.226,0.254,0.294 -2016-09-24 06:00:00,0.225,0.254,0.294 -2016-09-24 07:00:00,0.225,0.254,0.294 -2016-09-24 08:00:00,0.225,0.254,0.294 -2016-09-24 09:00:00,0.225,0.254,0.294 -2016-09-24 10:00:00,0.225,0.254,0.294 -2016-09-24 11:00:00,0.225,0.254,0.294 -2016-09-24 12:00:00,0.225,0.254,0.294 -2016-09-24 13:00:00,0.225,0.254,0.294 -2016-09-24 14:00:00,0.225,0.254,0.294 -2016-09-24 15:00:00,0.225,0.254,0.294 -2016-09-24 16:00:00,0.225,0.254,0.294 -2016-09-24 17:00:00,0.22399999999999998,0.254,0.293 -2016-09-24 18:00:00,0.22399999999999998,0.254,0.293 -2016-09-24 19:00:00,0.225,0.254,0.293 -2016-09-24 20:00:00,0.225,0.254,0.293 -2016-09-24 21:00:00,0.225,0.254,0.293 -2016-09-24 22:00:00,0.225,0.254,0.293 -2016-09-24 23:00:00,0.225,0.254,0.293 -2016-09-25 00:00:00,0.225,0.254,0.293 -2016-09-25 01:00:00,0.22399999999999998,0.254,0.293 -2016-09-25 02:00:00,0.22399999999999998,0.254,0.293 -2016-09-25 03:00:00,0.223,0.254,0.293 -2016-09-25 04:00:00,0.223,0.254,0.293 -2016-09-25 05:00:00,0.223,0.254,0.293 -2016-09-25 06:00:00,0.223,0.254,0.293 -2016-09-25 07:00:00,0.223,0.254,0.293 -2016-09-25 08:00:00,0.223,0.254,0.293 -2016-09-25 09:00:00,0.223,0.253,0.293 -2016-09-25 10:00:00,0.223,0.253,0.294 -2016-09-25 11:00:00,0.223,0.253,0.294 -2016-09-25 12:00:00,0.223,0.253,0.293 -2016-09-25 13:00:00,0.222,0.253,0.293 -2016-09-25 14:00:00,0.222,0.252,0.293 -2016-09-25 15:00:00,0.222,0.252,0.293 -2016-09-25 16:00:00,0.222,0.251,0.293 -2016-09-25 17:00:00,0.222,0.25,0.293 -2016-09-25 18:00:00,0.222,0.251,0.293 -2016-09-25 19:00:00,0.222,0.25,0.293 -2016-09-25 20:00:00,0.222,0.25,0.293 -2016-09-25 21:00:00,0.222,0.251,0.293 -2016-09-25 22:00:00,0.222,0.251,0.293 -2016-09-25 23:00:00,0.222,0.252,0.293 -2016-09-26 00:00:00,0.223,0.252,0.293 -2016-09-26 01:00:00,0.223,0.253,0.293 -2016-09-26 02:00:00,0.223,0.253,0.293 -2016-09-26 03:00:00,0.223,0.253,0.293 -2016-09-26 04:00:00,0.223,0.253,0.293 -2016-09-26 05:00:00,0.223,0.253,0.294 -2016-09-26 06:00:00,0.223,0.253,0.294 -2016-09-26 07:00:00,0.223,0.253,0.294 -2016-09-26 08:00:00,0.223,0.253,0.294 -2016-09-26 09:00:00,0.223,0.253,0.294 -2016-09-26 10:00:00,0.223,0.253,0.294 -2016-09-26 11:00:00,0.223,0.253,0.294 -2016-09-26 12:00:00,0.222,0.253,0.293 -2016-09-26 13:00:00,0.222,0.253,0.293 -2016-09-26 14:00:00,0.222,0.254,0.293 -2016-09-26 15:00:00,0.223,0.254,0.293 -2016-09-26 16:00:00,0.223,0.255,0.293 -2016-09-26 17:00:00,0.223,0.256,0.293 -2016-09-26 18:00:00,0.223,0.256,0.293 -2016-09-26 19:00:00,0.223,0.255,0.293 -2016-09-26 20:00:00,0.223,0.254,0.293 -2016-09-26 21:00:00,0.223,0.254,0.293 -2016-09-26 22:00:00,0.223,0.255,0.293 -2016-09-26 23:00:00,0.223,0.255,0.293 -2016-09-27 00:00:00,0.223,0.256,0.293 -2016-09-27 01:00:00,0.223,0.256,0.293 -2016-09-27 02:00:00,0.223,0.255,0.293 -2016-09-27 03:00:00,0.223,0.254,0.293 -2016-09-27 04:00:00,0.223,0.254,0.293 -2016-09-27 05:00:00,0.223,0.254,0.294 -2016-09-27 06:00:00,0.223,0.254,0.294 -2016-09-27 07:00:00,0.223,0.254,0.294 -2016-09-27 08:00:00,0.223,0.255,0.294 -2016-09-27 09:00:00,0.223,0.255,0.294 -2016-09-27 10:00:00,0.223,0.255,0.294 -2016-09-27 11:00:00,0.223,0.255,0.294 -2016-09-27 12:00:00,0.223,0.255,0.294 -2016-09-27 13:00:00,0.222,0.255,0.294 -2016-09-27 14:00:00,0.222,0.256,0.294 -2016-09-27 15:00:00,0.222,0.256,0.293 -2016-09-27 16:00:00,0.222,0.256,0.293 -2016-09-27 17:00:00,0.222,0.256,0.293 -2016-09-27 18:00:00,0.223,0.256,0.293 -2016-09-27 19:00:00,0.223,0.256,0.293 -2016-09-27 20:00:00,0.223,0.256,0.293 -2016-09-27 21:00:00,0.223,0.257,0.293 -2016-09-27 22:00:00,0.222,0.257,0.293 -2016-09-27 23:00:00,0.222,0.258,0.293 -2016-09-28 00:00:00,0.222,0.258,0.293 -2016-09-28 01:00:00,0.222,0.258,0.293 -2016-09-28 02:00:00,0.222,0.258,0.293 -2016-09-28 03:00:00,0.222,0.258,0.293 -2016-09-28 04:00:00,0.222,0.258,0.293 -2016-09-28 05:00:00,0.222,0.258,0.293 -2016-09-28 06:00:00,0.221,0.258,0.293 -2016-09-28 07:00:00,0.221,0.258,0.293 -2016-09-28 08:00:00,0.221,0.258,0.293 -2016-09-28 09:00:00,0.221,0.258,0.293 -2016-09-28 10:00:00,0.221,0.258,0.294 -2016-09-28 11:00:00,0.22,0.258,0.294 -2016-09-28 12:00:00,0.22,0.257,0.293 -2016-09-28 13:00:00,0.22,0.257,0.293 -2016-09-28 14:00:00,0.22,0.257,0.293 -2016-09-28 15:00:00,0.22,0.256,0.293 -2016-09-28 16:00:00,0.22,0.256,0.293 -2016-09-28 17:00:00,0.22,0.256,0.293 -2016-09-28 18:00:00,0.22,0.257,0.293 -2016-09-28 19:00:00,0.221,0.257,0.293 -2016-09-28 20:00:00,0.221,0.257,0.293 -2016-09-28 21:00:00,0.221,0.258,0.293 -2016-09-28 22:00:00,0.221,0.258,0.293 -2016-09-28 23:00:00,0.221,0.258,0.293 -2016-09-29 00:00:00,0.221,0.258,0.293 -2016-09-29 01:00:00,0.221,0.258,0.293 -2016-09-29 02:00:00,0.22,0.258,0.293 -2016-09-29 03:00:00,0.22,0.258,0.293 -2016-09-29 04:00:00,0.22,0.258,0.293 -2016-09-29 05:00:00,0.22,0.258,0.293 -2016-09-29 06:00:00,0.22,0.258,0.293 -2016-09-29 07:00:00,0.22,0.258,0.293 -2016-09-29 08:00:00,0.22,0.258,0.293 -2016-09-29 09:00:00,0.22,0.258,0.293 -2016-09-29 10:00:00,0.22,0.258,0.294 -2016-09-29 11:00:00,0.22,0.258,0.293 -2016-09-29 12:00:00,0.22,0.258,0.293 -2016-09-29 13:00:00,0.22,0.259,0.293 -2016-09-29 14:00:00,0.22,0.259,0.293 -2016-09-29 15:00:00,0.22,0.259,0.293 -2016-09-29 16:00:00,0.22,0.259,0.293 -2016-09-29 17:00:00,0.22,0.259,0.293 -2016-09-29 18:00:00,0.22,0.259,0.292 -2016-09-29 19:00:00,0.22,0.259,0.292 -2016-09-29 20:00:00,0.22,0.259,0.292 -2016-09-29 21:00:00,0.22,0.259,0.292 -2016-09-29 22:00:00,0.22,0.259,0.292 -2016-09-29 23:00:00,0.22,0.259,0.292 -2016-09-30 00:00:00,0.22,0.259,0.292 -2016-09-30 01:00:00,0.22,0.262,0.293 -2016-09-30 02:00:00,0.22,0.263,0.293 -2016-09-30 03:00:00,0.22,0.263,0.293 -2016-09-30 04:00:00,0.22,0.264,0.293 -2016-09-30 05:00:00,0.22,0.264,0.293 -2016-09-30 06:00:00,0.22,0.264,0.293 -2016-09-30 07:00:00,0.22,0.264,0.293 -2016-09-30 08:00:00,0.22,0.265,0.293 -2016-09-30 09:00:00,0.22,0.265,0.293 -2016-09-30 10:00:00,0.22,0.265,0.293 -2016-09-30 11:00:00,0.22,0.266,0.293 -2016-09-30 12:00:00,0.22,0.266,0.293 -2016-09-30 13:00:00,0.22,0.266,0.293 -2016-09-30 14:00:00,0.221,0.266,0.295 -2016-09-30 15:00:00,0.221,0.266,0.29600000000000004 -2016-09-30 16:00:00,0.221,0.265,0.29600000000000004 -2016-09-30 17:00:00,0.221,0.264,0.295 -2016-09-30 18:00:00,0.221,0.264,0.295 -2016-09-30 19:00:00,0.221,0.264,0.295 -2016-09-30 20:00:00,0.221,0.263,0.295 -2016-09-30 21:00:00,0.221,0.263,0.295 -2016-09-30 22:00:00,0.221,0.263,0.295 -2016-09-30 23:00:00,0.221,0.263,0.295 -2016-10-01 00:00:00,0.221,0.263,0.295 -2016-10-01 01:00:00,0.221,0.263,0.295 -2016-10-01 02:00:00,0.221,0.263,0.295 -2016-10-01 03:00:00,0.221,0.263,0.29600000000000004 -2016-10-01 04:00:00,0.221,0.263,0.29600000000000004 -2016-10-01 05:00:00,0.221,0.263,0.297 -2016-10-01 06:00:00,0.221,0.263,0.297 -2016-10-01 07:00:00,0.221,0.263,0.298 -2016-10-01 08:00:00,0.221,0.263,0.298 -2016-10-01 09:00:00,0.221,0.263,0.298 -2016-10-01 10:00:00,0.221,0.263,0.298 -2016-10-01 11:00:00,0.221,0.263,0.298 -2016-10-01 12:00:00,0.21899999999999997,0.263,0.299 -2016-10-01 13:00:00,0.218,0.263,0.299 -2016-10-01 14:00:00,0.218,0.263,0.299 -2016-10-01 15:00:00,0.218,0.263,0.299 -2016-10-01 16:00:00,0.218,0.263,0.299 -2016-10-01 17:00:00,0.218,0.263,0.3 -2016-10-01 18:00:00,0.218,0.263,0.3 -2016-10-01 19:00:00,0.21899999999999997,0.263,0.3 -2016-10-01 20:00:00,0.22,0.264,0.3 -2016-10-01 21:00:00,0.221,0.264,0.3 -2016-10-01 22:00:00,0.221,0.264,0.3 -2016-10-01 23:00:00,0.222,0.263,0.3 -2016-10-02 00:00:00,0.222,0.264,0.3 -2016-10-02 01:00:00,0.222,0.264,0.3 -2016-10-02 02:00:00,0.222,0.264,0.3 -2016-10-02 03:00:00,0.223,0.263,0.3 -2016-10-02 04:00:00,0.223,0.264,0.3 -2016-10-02 05:00:00,0.223,0.264,0.3 -2016-10-02 06:00:00,0.223,0.263,0.3 -2016-10-02 07:00:00,0.223,0.263,0.3 -2016-10-02 08:00:00,0.22399999999999998,0.263,0.3 -2016-10-02 09:00:00,0.22399999999999998,0.263,0.3 -2016-10-02 10:00:00,0.22399999999999998,0.263,0.3 -2016-10-02 11:00:00,0.225,0.263,0.3 -2016-10-02 12:00:00,0.226,0.263,0.3 -2016-10-02 13:00:00,0.226,0.262,0.299 -2016-10-02 14:00:00,0.22699999999999998,0.262,0.299 -2016-10-02 15:00:00,0.22699999999999998,0.263,0.298 -2016-10-02 16:00:00,0.22699999999999998,0.263,0.299 -2016-10-02 17:00:00,0.22699999999999998,0.263,0.299 -2016-10-02 18:00:00,0.22699999999999998,0.263,0.299 -2016-10-02 19:00:00,0.22699999999999998,0.263,0.299 -2016-10-02 20:00:00,0.22699999999999998,0.263,0.298 -2016-10-02 21:00:00,0.228,0.263,0.298 -2016-10-02 22:00:00,0.228,0.263,0.298 -2016-10-02 23:00:00,0.22699999999999998,0.263,0.299 -2016-10-03 00:00:00,0.22699999999999998,0.263,0.3 -2016-10-03 01:00:00,0.22699999999999998,0.263,0.3 -2016-10-03 02:00:00,0.22699999999999998,0.263,0.3 -2016-10-03 03:00:00,0.22699999999999998,0.263,0.299 -2016-10-03 04:00:00,0.22699999999999998,0.263,0.299 -2016-10-03 05:00:00,0.22699999999999998,0.263,0.299 -2016-10-03 06:00:00,0.22699999999999998,0.263,0.299 -2016-10-03 07:00:00,0.22699999999999998,0.263,0.299 -2016-10-03 08:00:00,0.228,0.264,0.299 -2016-10-03 09:00:00,0.228,0.264,0.299 -2016-10-03 10:00:00,0.228,0.264,0.299 -2016-10-03 11:00:00,0.228,0.264,0.299 -2016-10-03 12:00:00,0.228,0.264,0.299 -2016-10-03 13:00:00,0.228,0.264,0.299 -2016-10-03 14:00:00,0.22899999999999998,0.264,0.298 -2016-10-03 15:00:00,0.22899999999999998,0.264,0.298 -2016-10-03 16:00:00,0.23,0.264,0.298 -2016-10-03 17:00:00,0.23,0.264,0.298 -2016-10-03 18:00:00,0.23,0.263,0.298 -2016-10-03 19:00:00,0.23,0.263,0.298 -2016-10-03 20:00:00,0.23,0.263,0.297 -2016-10-03 21:00:00,0.23,0.263,0.297 -2016-10-03 22:00:00,0.23,0.263,0.297 -2016-10-03 23:00:00,0.231,0.263,0.297 -2016-10-04 00:00:00,0.231,0.263,0.297 -2016-10-04 01:00:00,0.231,0.263,0.297 -2016-10-04 02:00:00,0.231,0.263,0.297 -2016-10-04 03:00:00,0.231,0.263,0.297 -2016-10-04 04:00:00,0.23,0.263,0.297 -2016-10-04 05:00:00,0.23,0.263,0.297 -2016-10-04 06:00:00,0.23,0.263,0.297 -2016-10-04 07:00:00,0.23,0.263,0.297 -2016-10-04 08:00:00,0.23,0.263,0.297 -2016-10-04 09:00:00,0.23,0.263,0.297 -2016-10-04 10:00:00,0.23,0.263,0.298 -2016-10-04 11:00:00,0.23,0.263,0.297 -2016-10-04 12:00:00,0.23,0.263,0.297 -2016-10-04 13:00:00,0.23,0.263,0.297 -2016-10-04 14:00:00,0.23,0.263,0.297 -2016-10-04 15:00:00,0.23,0.263,0.29600000000000004 -2016-10-04 16:00:00,0.23,0.263,0.29600000000000004 -2016-10-04 17:00:00,0.23,0.263,0.29600000000000004 -2016-10-04 18:00:00,0.22899999999999998,0.263,0.295 -2016-10-04 19:00:00,0.22899999999999998,0.263,0.295 -2016-10-04 20:00:00,0.22899999999999998,0.263,0.295 -2016-10-04 21:00:00,0.22899999999999998,0.263,0.295 -2016-10-04 22:00:00,0.22899999999999998,0.263,0.295 -2016-10-04 23:00:00,0.22899999999999998,0.263,0.295 -2016-10-05 00:00:00,0.22899999999999998,0.263,0.295 -2016-10-05 01:00:00,0.22899999999999998,0.263,0.295 -2016-10-05 02:00:00,0.22899999999999998,0.263,0.295 -2016-10-05 03:00:00,0.22899999999999998,0.263,0.295 -2016-10-05 04:00:00,0.228,0.263,0.295 -2016-10-05 05:00:00,0.228,0.263,0.295 -2016-10-05 06:00:00,0.228,0.263,0.295 -2016-10-05 07:00:00,0.228,0.263,0.295 -2016-10-05 08:00:00,0.228,0.263,0.295 -2016-10-05 09:00:00,0.228,0.264,0.29600000000000004 -2016-10-05 10:00:00,0.228,0.264,0.29600000000000004 -2016-10-05 11:00:00,0.228,0.264,0.29600000000000004 -2016-10-05 12:00:00,0.228,0.264,0.295 -2016-10-05 13:00:00,0.228,0.264,0.295 -2016-10-05 14:00:00,0.228,0.264,0.295 -2016-10-05 15:00:00,0.228,0.264,0.295 -2016-10-05 16:00:00,0.228,0.264,0.295 -2016-10-05 17:00:00,0.228,0.264,0.295 -2016-10-05 18:00:00,0.228,0.263,0.294 -2016-10-05 19:00:00,0.228,0.263,0.294 -2016-10-05 20:00:00,0.228,0.263,0.294 -2016-10-05 21:00:00,0.228,0.263,0.294 -2016-10-05 22:00:00,0.228,0.263,0.294 -2016-10-05 23:00:00,0.228,0.263,0.294 -2016-10-06 00:00:00,0.228,0.263,0.294 -2016-10-06 01:00:00,0.228,0.263,0.294 -2016-10-06 02:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 03:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 04:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 05:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 06:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 07:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 08:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 09:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 10:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 11:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 12:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 13:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 14:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 15:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 16:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 17:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 18:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 19:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 20:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 21:00:00,0.22699999999999998,0.263,0.294 -2016-10-06 22:00:00,0.22699999999999998,0.263,0.295 -2016-10-06 23:00:00,0.22699999999999998,0.263,0.295 -2016-10-07 00:00:00,0.22699999999999998,0.263,0.295 -2016-10-07 01:00:00,0.22699999999999998,0.263,0.295 -2016-10-07 02:00:00,0.22699999999999998,0.263,0.295 -2016-10-07 03:00:00,0.228,0.263,0.295 -2016-10-07 04:00:00,0.22699999999999998,0.263,0.295 -2016-10-07 05:00:00,0.228,0.263,0.295 -2016-10-07 06:00:00,0.228,0.263,0.295 -2016-10-07 07:00:00,0.228,0.263,0.295 -2016-10-07 08:00:00,0.228,0.263,0.295 -2016-10-07 09:00:00,0.228,0.263,0.295 -2016-10-07 10:00:00,0.228,0.263,0.295 -2016-10-07 11:00:00,0.228,0.263,0.295 -2016-10-07 12:00:00,0.228,0.263,0.29600000000000004 -2016-10-07 13:00:00,0.228,0.263,0.297 -2016-10-07 14:00:00,0.228,0.263,0.298 -2016-10-07 15:00:00,0.228,0.264,0.297 -2016-10-07 16:00:00,0.228,0.263,0.297 -2016-10-07 17:00:00,0.228,0.263,0.297 -2016-10-07 18:00:00,0.228,0.263,0.297 -2016-10-07 19:00:00,0.228,0.263,0.297 -2016-10-07 20:00:00,0.228,0.263,0.298 -2016-10-07 21:00:00,0.22899999999999998,0.263,0.298 -2016-10-07 22:00:00,0.22899999999999998,0.263,0.298 -2016-10-07 23:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 00:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 01:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 02:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 03:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 04:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 05:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 06:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 07:00:00,0.22899999999999998,0.263,0.298 -2016-10-08 08:00:00,0.228,0.263,0.299 -2016-10-08 09:00:00,0.228,0.263,0.299 -2016-10-08 10:00:00,0.228,0.263,0.299 -2016-10-08 11:00:00,0.22899999999999998,0.263,0.299 -2016-10-08 12:00:00,0.22899999999999998,0.263,0.299 -2016-10-08 13:00:00,0.23,0.263,0.298 -2016-10-08 14:00:00,0.23,0.263,0.298 -2016-10-08 15:00:00,0.23,0.263,0.298 -2016-10-08 16:00:00,0.23,0.263,0.297 -2016-10-08 17:00:00,0.23,0.263,0.297 -2016-10-08 18:00:00,0.23,0.263,0.297 -2016-10-08 19:00:00,0.23,0.263,0.29600000000000004 -2016-10-08 20:00:00,0.23,0.262,0.29600000000000004 -2016-10-08 21:00:00,0.23,0.263,0.29600000000000004 -2016-10-08 22:00:00,0.23,0.263,0.29600000000000004 -2016-10-08 23:00:00,0.23,0.263,0.29600000000000004 -2016-10-09 00:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 01:00:00,0.23,0.263,0.29600000000000004 -2016-10-09 02:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 03:00:00,0.231,0.264,0.29600000000000004 -2016-10-09 04:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 05:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 06:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 07:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 08:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 09:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 10:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 11:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 12:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 13:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 14:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 15:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 16:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 17:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 18:00:00,0.231,0.263,0.295 -2016-10-09 19:00:00,0.231,0.263,0.295 -2016-10-09 20:00:00,0.231,0.263,0.295 -2016-10-09 21:00:00,0.231,0.263,0.29600000000000004 -2016-10-09 22:00:00,0.231,0.263,0.295 -2016-10-09 23:00:00,0.231,0.263,0.295 -2016-10-10 00:00:00,0.231,0.263,0.295 -2016-10-10 01:00:00,0.231,0.263,0.295 -2016-10-10 02:00:00,0.231,0.263,0.295 -2016-10-10 03:00:00,0.231,0.263,0.295 -2016-10-10 04:00:00,0.231,0.263,0.295 -2016-10-10 05:00:00,0.231,0.263,0.295 -2016-10-10 06:00:00,0.231,0.263,0.295 -2016-10-10 07:00:00,0.231,0.263,0.295 -2016-10-10 08:00:00,0.231,0.263,0.295 -2016-10-10 09:00:00,0.231,0.263,0.29600000000000004 -2016-10-10 10:00:00,0.231,0.263,0.29600000000000004 -2016-10-10 11:00:00,0.231,0.263,0.29600000000000004 -2016-10-10 12:00:00,0.231,0.263,0.29600000000000004 -2016-10-10 13:00:00,0.231,0.263,0.29600000000000004 -2016-10-10 14:00:00,0.231,0.263,0.295 -2016-10-10 15:00:00,0.231,0.263,0.295 -2016-10-10 16:00:00,0.231,0.263,0.295 -2016-10-10 17:00:00,0.231,0.263,0.295 -2016-10-10 18:00:00,0.231,0.263,0.295 -2016-10-10 19:00:00,0.231,0.263,0.295 -2016-10-10 20:00:00,0.231,0.263,0.295 -2016-10-10 21:00:00,0.231,0.263,0.295 -2016-10-10 22:00:00,0.231,0.263,0.295 -2016-10-10 23:00:00,0.231,0.263,0.295 -2016-10-11 00:00:00,0.231,0.263,0.295 -2016-10-11 01:00:00,0.231,0.263,0.295 -2016-10-11 02:00:00,0.231,0.263,0.295 -2016-10-11 03:00:00,0.231,0.263,0.295 -2016-10-11 04:00:00,0.231,0.263,0.295 -2016-10-11 05:00:00,0.231,0.263,0.295 -2016-10-11 06:00:00,0.231,0.263,0.295 -2016-10-11 07:00:00,0.231,0.263,0.295 -2016-10-11 08:00:00,0.231,0.263,0.295 -2016-10-11 09:00:00,0.23,0.263,0.295 -2016-10-11 10:00:00,0.231,0.263,0.295 -2016-10-11 11:00:00,0.23,0.263,0.295 -2016-10-11 12:00:00,0.23,0.263,0.295 -2016-10-11 13:00:00,0.23,0.263,0.295 -2016-10-11 14:00:00,0.23,0.263,0.295 -2016-10-11 15:00:00,0.23,0.263,0.295 -2016-10-11 16:00:00,0.23,0.263,0.295 -2016-10-11 17:00:00,0.23,0.263,0.295 -2016-10-11 18:00:00,0.23,0.263,0.295 -2016-10-11 19:00:00,0.23,0.263,0.295 -2016-10-11 20:00:00,0.23,0.263,0.295 -2016-10-11 21:00:00,0.23,0.263,0.295 -2016-10-11 22:00:00,0.23,0.263,0.295 -2016-10-11 23:00:00,0.231,0.262,0.295 -2016-10-12 00:00:00,0.231,0.262,0.295 -2016-10-12 01:00:00,0.231,0.262,0.295 -2016-10-12 02:00:00,0.231,0.262,0.295 -2016-10-12 03:00:00,0.231,0.262,0.29600000000000004 -2016-10-12 04:00:00,0.231,0.262,0.297 -2016-10-12 05:00:00,0.231,0.262,0.298 -2016-10-12 06:00:00,0.231,0.262,0.298 -2016-10-12 07:00:00,0.23199999999999998,0.262,0.298 -2016-10-12 08:00:00,0.23199999999999998,0.262,0.298 -2016-10-12 09:00:00,0.23199999999999998,0.263,0.298 -2016-10-12 10:00:00,0.23199999999999998,0.263,0.298 -2016-10-12 11:00:00,0.23199999999999998,0.263,0.298 -2016-10-12 12:00:00,0.23199999999999998,0.263,0.298 -2016-10-12 13:00:00,0.23199999999999998,0.263,0.298 -2016-10-12 14:00:00,0.23199999999999998,0.263,0.298 -2016-10-12 15:00:00,0.23199999999999998,0.263,0.297 -2016-10-12 16:00:00,0.23199999999999998,0.263,0.297 -2016-10-12 17:00:00,0.231,0.263,0.297 -2016-10-12 18:00:00,0.231,0.263,0.297 -2016-10-12 19:00:00,0.231,0.263,0.297 -2016-10-12 20:00:00,0.231,0.263,0.297 -2016-10-12 21:00:00,0.231,0.263,0.297 -2016-10-12 22:00:00,0.231,0.263,0.297 -2016-10-12 23:00:00,0.231,0.263,0.297 -2016-10-13 00:00:00,0.231,0.263,0.297 -2016-10-13 01:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 02:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 03:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 04:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 05:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 06:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 07:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 08:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 09:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 10:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 11:00:00,0.23,0.263,0.29600000000000004 -2016-10-13 12:00:00,0.231,0.263,0.29600000000000004 -2016-10-13 13:00:00,0.23,0.263,0.29600000000000004 -2016-10-13 14:00:00,0.23,0.263,0.29600000000000004 -2016-10-13 15:00:00,0.23,0.263,0.29600000000000004 -2016-10-13 16:00:00,0.23,0.264,0.29600000000000004 -2016-10-13 17:00:00,0.23,0.264,0.29600000000000004 -2016-10-13 18:00:00,0.23,0.264,0.295 -2016-10-13 19:00:00,0.23,0.264,0.295 -2016-10-13 20:00:00,0.23,0.264,0.295 -2016-10-13 21:00:00,0.23,0.263,0.295 -2016-10-13 22:00:00,0.23,0.263,0.295 -2016-10-13 23:00:00,0.23,0.263,0.295 -2016-10-14 00:00:00,0.23,0.263,0.295 -2016-10-14 01:00:00,0.23,0.262,0.295 -2016-10-14 02:00:00,0.23,0.262,0.29600000000000004 -2016-10-14 03:00:00,0.23,0.263,0.29600000000000004 -2016-10-14 04:00:00,0.23,0.262,0.29600000000000004 -2016-10-14 05:00:00,0.23,0.262,0.29600000000000004 -2016-10-14 06:00:00,0.23,0.262,0.29600000000000004 -2016-10-14 07:00:00,0.23,0.262,0.29600000000000004 -2016-10-14 08:00:00,0.23,0.262,0.29600000000000004 -2016-10-14 09:00:00,0.23,0.261,0.29600000000000004 -2016-10-14 10:00:00,0.23,0.261,0.29600000000000004 -2016-10-14 11:00:00,0.23,0.261,0.29600000000000004 -2016-10-14 12:00:00,0.23,0.261,0.29600000000000004 -2016-10-14 13:00:00,0.23,0.261,0.295 -2016-10-14 14:00:00,0.23,0.261,0.295 -2016-10-14 15:00:00,0.23,0.262,0.295 -2016-10-14 16:00:00,0.23,0.262,0.295 -2016-10-14 17:00:00,0.23,0.263,0.295 -2016-10-14 18:00:00,0.23,0.263,0.295 -2016-10-14 19:00:00,0.23,0.263,0.295 -2016-10-14 20:00:00,0.23,0.263,0.295 -2016-10-14 21:00:00,0.23,0.264,0.295 -2016-10-14 22:00:00,0.23,0.264,0.295 -2016-10-14 23:00:00,0.23,0.264,0.295 -2016-10-15 00:00:00,0.23,0.264,0.295 -2016-10-15 01:00:00,0.23,0.264,0.295 -2016-10-15 02:00:00,0.23,0.264,0.295 -2016-10-15 03:00:00,0.23,0.264,0.295 -2016-10-15 04:00:00,0.23,0.264,0.295 -2016-10-15 05:00:00,0.23,0.264,0.295 -2016-10-15 06:00:00,0.23,0.264,0.295 -2016-10-15 07:00:00,0.23,0.264,0.295 -2016-10-15 08:00:00,0.23,0.264,0.295 -2016-10-15 09:00:00,0.23,0.264,0.29600000000000004 -2016-10-15 10:00:00,0.23,0.264,0.29600000000000004 -2016-10-15 11:00:00,0.23,0.264,0.29600000000000004 -2016-10-15 12:00:00,0.23,0.264,0.29600000000000004 -2016-10-15 13:00:00,0.23,0.264,0.29600000000000004 -2016-10-15 14:00:00,0.23,0.264,0.295 -2016-10-15 15:00:00,0.23,0.264,0.29600000000000004 -2016-10-15 16:00:00,0.23,0.264,0.295 -2016-10-15 17:00:00,0.23,0.264,0.295 -2016-10-15 18:00:00,0.23,0.264,0.295 -2016-10-15 19:00:00,0.23,0.265,0.295 -2016-10-15 20:00:00,0.23,0.265,0.295 -2016-10-15 21:00:00,0.23,0.265,0.295 -2016-10-15 22:00:00,0.23,0.265,0.295 -2016-10-15 23:00:00,0.23,0.265,0.295 -2016-10-16 00:00:00,0.23,0.266,0.295 -2016-10-16 01:00:00,0.23,0.266,0.295 -2016-10-16 02:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 03:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 04:00:00,0.22899999999999998,0.265,0.295 -2016-10-16 05:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 06:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 07:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 08:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 09:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 10:00:00,0.22899999999999998,0.266,0.29600000000000004 -2016-10-16 11:00:00,0.22899999999999998,0.266,0.29600000000000004 -2016-10-16 12:00:00,0.22899999999999998,0.266,0.29600000000000004 -2016-10-16 13:00:00,0.22899999999999998,0.265,0.29600000000000004 -2016-10-16 14:00:00,0.22899999999999998,0.264,0.29600000000000004 -2016-10-16 15:00:00,0.22899999999999998,0.264,0.295 -2016-10-16 16:00:00,0.22899999999999998,0.265,0.295 -2016-10-16 17:00:00,0.22899999999999998,0.265,0.295 -2016-10-16 18:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 19:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 20:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 21:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 22:00:00,0.22899999999999998,0.266,0.295 -2016-10-16 23:00:00,0.22899999999999998,0.266,0.295 -2016-10-17 00:00:00,0.22899999999999998,0.266,0.295 -2016-10-17 01:00:00,0.22899999999999998,0.267,0.295 -2016-10-17 02:00:00,0.22899999999999998,0.267,0.295 -2016-10-17 03:00:00,0.22899999999999998,0.267,0.295 -2016-10-17 04:00:00,0.22899999999999998,0.267,0.295 -2016-10-17 05:00:00,0.22899999999999998,0.268,0.295 -2016-10-17 06:00:00,0.228,0.268,0.295 -2016-10-17 07:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 08:00:00,0.22899999999999998,0.268,0.29600000000000004 -2016-10-17 09:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 10:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 11:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 12:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 13:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 14:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 15:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 16:00:00,0.228,0.268,0.29600000000000004 -2016-10-17 17:00:00,0.22899999999999998,0.268,0.29600000000000004 -2016-10-17 18:00:00,0.22899999999999998,0.268,0.29600000000000004 -2016-10-17 19:00:00,0.22899999999999998,0.268,0.29600000000000004 -2016-10-17 20:00:00,0.23,0.268,0.298 -2016-10-17 21:00:00,0.23,0.26899999999999996,0.298 -2016-10-17 22:00:00,0.23,0.26899999999999996,0.298 -2016-10-17 23:00:00,0.231,0.26899999999999996,0.299 -2016-10-18 00:00:00,0.231,0.27,0.299 -2016-10-18 01:00:00,0.231,0.27,0.299 -2016-10-18 02:00:00,0.23,0.27,0.299 -2016-10-18 03:00:00,0.231,0.27,0.299 -2016-10-18 04:00:00,0.231,0.27,0.299 -2016-10-18 05:00:00,0.231,0.27,0.299 -2016-10-18 06:00:00,0.231,0.26899999999999996,0.299 -2016-10-18 07:00:00,0.231,0.27,0.299 -2016-10-18 08:00:00,0.231,0.27,0.299 -2016-10-18 09:00:00,0.231,0.27,0.299 -2016-10-18 10:00:00,0.231,0.27,0.299 -2016-10-18 11:00:00,0.231,0.27,0.299 -2016-10-18 12:00:00,0.231,0.27,0.299 -2016-10-18 13:00:00,0.231,0.27,0.299 -2016-10-18 14:00:00,0.231,0.27,0.298 -2016-10-18 15:00:00,0.231,0.26899999999999996,0.298 -2016-10-18 16:00:00,0.231,0.27,0.298 -2016-10-18 17:00:00,0.231,0.26899999999999996,0.298 -2016-10-18 18:00:00,0.231,0.26899999999999996,0.297 -2016-10-18 19:00:00,0.231,0.271,0.297 -2016-10-18 20:00:00,0.231,0.27399999999999997,0.297 -2016-10-18 21:00:00,0.23199999999999998,0.276,0.297 -2016-10-18 22:00:00,0.231,0.276,0.297 -2016-10-18 23:00:00,0.231,0.276,0.297 -2016-10-19 00:00:00,0.231,0.276,0.298 -2016-10-19 01:00:00,0.23199999999999998,0.276,0.298 -2016-10-19 02:00:00,0.23199999999999998,0.276,0.299 -2016-10-19 03:00:00,0.23199999999999998,0.276,0.299 -2016-10-19 04:00:00,0.23199999999999998,0.276,0.299 -2016-10-19 05:00:00,0.23199999999999998,0.278,0.299 -2016-10-19 06:00:00,0.23199999999999998,0.28,0.299 -2016-10-19 07:00:00,0.231,0.294,0.299 -2016-10-19 08:00:00,0.231,0.307,0.299 -2016-10-19 09:00:00,0.231,0.312,0.299 -2016-10-19 10:00:00,0.231,0.311,0.299 -2016-10-19 11:00:00,0.231,0.31,0.299 -2016-10-19 12:00:00,0.231,0.31,0.299 -2016-10-19 13:00:00,0.231,0.309,0.299 -2016-10-19 14:00:00,0.231,0.309,0.299 -2016-10-19 15:00:00,0.231,0.309,0.298 -2016-10-19 16:00:00,0.231,0.309,0.298 -2016-10-19 17:00:00,0.231,0.309,0.298 -2016-10-19 18:00:00,0.231,0.309,0.298 -2016-10-19 19:00:00,0.231,0.309,0.298 -2016-10-19 20:00:00,0.231,0.309,0.298 -2016-10-19 21:00:00,0.231,0.309,0.298 -2016-10-19 22:00:00,0.231,0.309,0.298 -2016-10-19 23:00:00,0.231,0.309,0.298 -2016-10-20 00:00:00,0.231,0.309,0.298 -2016-10-20 01:00:00,0.231,0.307,0.298 -2016-10-20 02:00:00,0.231,0.307,0.298 -2016-10-20 03:00:00,0.231,0.307,0.298 -2016-10-20 04:00:00,0.231,0.307,0.299 -2016-10-20 05:00:00,0.23,0.307,0.299 -2016-10-20 06:00:00,0.23,0.307,0.299 -2016-10-20 07:00:00,0.23,0.307,0.3 -2016-10-20 08:00:00,0.23,0.306,0.3 -2016-10-20 09:00:00,0.23,0.306,0.301 -2016-10-20 10:00:00,0.231,0.305,0.301 -2016-10-20 11:00:00,0.237,0.305,0.303 -2016-10-20 12:00:00,0.256,0.305,0.317 -2016-10-20 13:00:00,0.26,0.305,0.318 -2016-10-20 14:00:00,0.261,0.304,0.316 -2016-10-20 15:00:00,0.261,0.304,0.313 -2016-10-20 16:00:00,0.261,0.304,0.309 -2016-10-20 17:00:00,0.261,0.304,0.307 -2016-10-20 18:00:00,0.261,0.304,0.305 -2016-10-20 19:00:00,0.261,0.304,0.304 -2016-10-20 20:00:00,0.26,0.304,0.304 -2016-10-20 21:00:00,0.26,0.304,0.304 -2016-10-20 22:00:00,0.259,0.304,0.303 -2016-10-20 23:00:00,0.259,0.304,0.303 -2016-10-21 00:00:00,0.258,0.304,0.303 -2016-10-21 01:00:00,0.258,0.304,0.303 -2016-10-21 02:00:00,0.258,0.304,0.303 -2016-10-21 03:00:00,0.258,0.304,0.303 -2016-10-21 04:00:00,0.258,0.304,0.303 -2016-10-21 05:00:00,0.257,0.304,0.303 -2016-10-21 06:00:00,0.257,0.304,0.303 -2016-10-21 07:00:00,0.256,0.304,0.303 -2016-10-21 08:00:00,0.256,0.303,0.303 -2016-10-21 09:00:00,0.256,0.304,0.303 -2016-10-21 10:00:00,0.256,0.303,0.303 -2016-10-21 11:00:00,0.256,0.302,0.303 -2016-10-21 12:00:00,0.257,0.302,0.303 -2016-10-21 13:00:00,0.257,0.302,0.303 -2016-10-21 14:00:00,0.257,0.302,0.302 -2016-10-21 15:00:00,0.257,0.301,0.302 -2016-10-21 16:00:00,0.257,0.3,0.302 -2016-10-21 17:00:00,0.257,0.3,0.302 -2016-10-21 18:00:00,0.258,0.3,0.302 -2016-10-21 19:00:00,0.257,0.3,0.302 -2016-10-21 20:00:00,0.257,0.3,0.301 -2016-10-21 21:00:00,0.257,0.3,0.301 -2016-10-21 22:00:00,0.257,0.3,0.301 -2016-10-21 23:00:00,0.257,0.3,0.301 -2016-10-22 00:00:00,0.256,0.3,0.302 -2016-10-22 01:00:00,0.256,0.3,0.303 -2016-10-22 02:00:00,0.256,0.3,0.303 -2016-10-22 03:00:00,0.256,0.3,0.303 -2016-10-22 04:00:00,0.257,0.3,0.303 -2016-10-22 05:00:00,0.257,0.3,0.303 -2016-10-22 06:00:00,0.258,0.3,0.303 -2016-10-22 07:00:00,0.258,0.3,0.303 -2016-10-22 08:00:00,0.258,0.3,0.303 -2016-10-22 09:00:00,0.257,0.3,0.303 -2016-10-22 10:00:00,0.258,0.3,0.304 -2016-10-22 11:00:00,0.262,0.3,0.304 -2016-10-22 12:00:00,0.264,0.3,0.304 -2016-10-22 13:00:00,0.265,0.3,0.304 -2016-10-22 14:00:00,0.265,0.3,0.304 -2016-10-22 15:00:00,0.265,0.3,0.304 -2016-10-22 16:00:00,0.266,0.3,0.304 -2016-10-22 17:00:00,0.266,0.3,0.303 -2016-10-22 18:00:00,0.266,0.3,0.303 -2016-10-22 19:00:00,0.266,0.3,0.303 -2016-10-22 20:00:00,0.266,0.3,0.303 -2016-10-22 21:00:00,0.266,0.3,0.303 -2016-10-22 22:00:00,0.266,0.3,0.303 -2016-10-22 23:00:00,0.265,0.3,0.303 -2016-10-23 00:00:00,0.264,0.3,0.303 -2016-10-23 01:00:00,0.263,0.3,0.303 -2016-10-23 02:00:00,0.263,0.3,0.303 -2016-10-23 03:00:00,0.263,0.3,0.303 -2016-10-23 04:00:00,0.262,0.3,0.303 -2016-10-23 05:00:00,0.262,0.3,0.303 -2016-10-23 06:00:00,0.262,0.3,0.303 -2016-10-23 07:00:00,0.262,0.3,0.303 -2016-10-23 08:00:00,0.261,0.3,0.303 -2016-10-23 09:00:00,0.261,0.3,0.303 -2016-10-23 10:00:00,0.261,0.3,0.303 -2016-10-23 11:00:00,0.261,0.3,0.303 -2016-10-23 12:00:00,0.261,0.299,0.303 -2016-10-23 13:00:00,0.26,0.299,0.302 -2016-10-23 14:00:00,0.26,0.299,0.302 -2016-10-23 15:00:00,0.26,0.299,0.302 -2016-10-23 16:00:00,0.26,0.299,0.302 -2016-10-23 17:00:00,0.26,0.299,0.302 -2016-10-23 18:00:00,0.26,0.298,0.302 -2016-10-23 19:00:00,0.26,0.298,0.302 -2016-10-23 20:00:00,0.26,0.298,0.302 -2016-10-23 21:00:00,0.26,0.298,0.302 -2016-10-23 22:00:00,0.26,0.298,0.302 -2016-10-23 23:00:00,0.259,0.298,0.302 -2016-10-24 00:00:00,0.259,0.298,0.302 -2016-10-24 01:00:00,0.259,0.298,0.302 -2016-10-24 02:00:00,0.259,0.298,0.302 -2016-10-24 03:00:00,0.259,0.298,0.302 -2016-10-24 04:00:00,0.259,0.298,0.302 -2016-10-24 05:00:00,0.258,0.298,0.302 -2016-10-24 06:00:00,0.258,0.298,0.302 -2016-10-24 07:00:00,0.258,0.298,0.302 -2016-10-24 08:00:00,0.258,0.298,0.302 -2016-10-24 09:00:00,0.258,0.298,0.302 -2016-10-24 10:00:00,0.258,0.297,0.302 -2016-10-24 11:00:00,0.258,0.297,0.303 -2016-10-24 12:00:00,0.258,0.297,0.304 -2016-10-24 13:00:00,0.26,0.297,0.304 -2016-10-24 14:00:00,0.263,0.297,0.304 -2016-10-24 15:00:00,0.272,0.297,0.305 -2016-10-24 16:00:00,0.275,0.297,0.313 -2016-10-24 17:00:00,0.275,0.297,0.325 -2016-10-24 18:00:00,0.27399999999999997,0.297,0.325 -2016-10-24 19:00:00,0.273,0.297,0.324 -2016-10-24 20:00:00,0.272,0.297,0.32299999999999995 -2016-10-24 21:00:00,0.27,0.297,0.322 -2016-10-24 22:00:00,0.27,0.297,0.321 -2016-10-24 23:00:00,0.271,0.297,0.319 -2016-10-25 00:00:00,0.27,0.297,0.318 -2016-10-25 01:00:00,0.271,0.297,0.319 -2016-10-25 02:00:00,0.273,0.297,0.324 -2016-10-25 03:00:00,0.27399999999999997,0.297,0.32899999999999996 -2016-10-25 04:00:00,0.276,0.297,0.33399999999999996 -2016-10-25 05:00:00,0.278,0.297,0.34 -2016-10-25 06:00:00,0.27699999999999997,0.297,0.33799999999999997 -2016-10-25 07:00:00,0.275,0.297,0.336 -2016-10-25 08:00:00,0.275,0.297,0.335 -2016-10-25 09:00:00,0.27699999999999997,0.297,0.335 -2016-10-25 10:00:00,0.27699999999999997,0.297,0.335 -2016-10-25 11:00:00,0.276,0.297,0.335 -2016-10-25 12:00:00,0.275,0.297,0.335 -2016-10-25 13:00:00,0.275,0.297,0.33399999999999996 -2016-10-25 14:00:00,0.275,0.297,0.33399999999999996 -2016-10-25 15:00:00,0.275,0.297,0.33299999999999996 -2016-10-25 16:00:00,0.275,0.297,0.33 -2016-10-25 17:00:00,0.275,0.297,0.325 -2016-10-25 18:00:00,0.275,0.297,0.32299999999999995 -2016-10-25 19:00:00,0.275,0.297,0.321 -2016-10-25 20:00:00,0.275,0.297,0.32 -2016-10-25 21:00:00,0.27399999999999997,0.297,0.319 -2016-10-25 22:00:00,0.27399999999999997,0.297,0.318 -2016-10-25 23:00:00,0.273,0.297,0.317 -2016-10-26 00:00:00,0.273,0.297,0.317 -2016-10-26 01:00:00,0.272,0.297,0.315 -2016-10-26 02:00:00,0.272,0.297,0.314 -2016-10-26 03:00:00,0.272,0.297,0.313 -2016-10-26 04:00:00,0.271,0.297,0.313 -2016-10-26 05:00:00,0.271,0.297,0.313 -2016-10-26 06:00:00,0.271,0.297,0.312 -2016-10-26 07:00:00,0.27,0.297,0.312 -2016-10-26 08:00:00,0.27,0.297,0.312 -2016-10-26 09:00:00,0.27,0.297,0.311 -2016-10-26 10:00:00,0.26899999999999996,0.29600000000000004,0.311 -2016-10-26 11:00:00,0.26899999999999996,0.29600000000000004,0.31 -2016-10-26 12:00:00,0.26899999999999996,0.29600000000000004,0.31 -2016-10-26 13:00:00,0.26899999999999996,0.29600000000000004,0.31 -2016-10-26 14:00:00,0.26899999999999996,0.29600000000000004,0.31 -2016-10-26 15:00:00,0.26899999999999996,0.29600000000000004,0.31 -2016-10-26 16:00:00,0.26899999999999996,0.29600000000000004,0.309 -2016-10-26 17:00:00,0.26899999999999996,0.29600000000000004,0.309 -2016-10-26 18:00:00,0.26899999999999996,0.29600000000000004,0.309 -2016-10-26 19:00:00,0.26899999999999996,0.29600000000000004,0.309 -2016-10-26 20:00:00,0.26899999999999996,0.29600000000000004,0.308 -2016-10-26 21:00:00,0.268,0.29600000000000004,0.308 -2016-10-26 22:00:00,0.268,0.29600000000000004,0.308 -2016-10-26 23:00:00,0.268,0.29600000000000004,0.308 -2016-10-27 00:00:00,0.268,0.29600000000000004,0.308 -2016-10-27 01:00:00,0.268,0.29600000000000004,0.308 -2016-10-27 02:00:00,0.268,0.29600000000000004,0.308 -2016-10-27 03:00:00,0.268,0.29600000000000004,0.308 -2016-10-27 04:00:00,0.267,0.295,0.308 -2016-10-27 05:00:00,0.267,0.295,0.308 -2016-10-27 06:00:00,0.267,0.295,0.308 -2016-10-27 07:00:00,0.267,0.295,0.307 -2016-10-27 08:00:00,0.267,0.295,0.307 -2016-10-27 09:00:00,0.267,0.29600000000000004,0.307 -2016-10-27 10:00:00,0.266,0.29600000000000004,0.308 -2016-10-27 11:00:00,0.266,0.295,0.308 -2016-10-27 12:00:00,0.266,0.295,0.308 -2016-10-27 13:00:00,0.265,0.295,0.308 -2016-10-27 14:00:00,0.265,0.295,0.307 -2016-10-27 15:00:00,0.265,0.295,0.307 -2016-10-27 16:00:00,0.265,0.294,0.307 -2016-10-27 17:00:00,0.265,0.294,0.307 -2016-10-27 18:00:00,0.265,0.293,0.307 -2016-10-27 19:00:00,0.265,0.29100000000000004,0.307 -2016-10-27 20:00:00,0.265,0.292,0.307 -2016-10-27 21:00:00,0.265,0.292,0.307 -2016-10-27 22:00:00,0.265,0.292,0.306 -2016-10-27 23:00:00,0.265,0.292,0.306 -2016-10-28 00:00:00,0.265,0.292,0.306 -2016-10-28 01:00:00,0.265,0.292,0.306 -2016-10-28 02:00:00,0.265,0.292,0.306 -2016-10-28 03:00:00,0.265,0.292,0.306 -2016-10-28 04:00:00,0.265,0.292,0.306 -2016-10-28 05:00:00,0.265,0.292,0.306 -2016-10-28 06:00:00,0.264,0.292,0.306 -2016-10-28 07:00:00,0.265,0.292,0.306 -2016-10-28 08:00:00,0.264,0.292,0.306 -2016-10-28 09:00:00,0.264,0.292,0.306 -2016-10-28 10:00:00,0.264,0.292,0.306 -2016-10-28 11:00:00,0.264,0.292,0.306 -2016-10-28 12:00:00,0.264,0.292,0.306 -2016-10-28 13:00:00,0.264,0.292,0.306 -2016-10-28 14:00:00,0.264,0.292,0.306 -2016-10-28 15:00:00,0.264,0.292,0.306 -2016-10-28 16:00:00,0.264,0.292,0.306 -2016-10-28 17:00:00,0.263,0.292,0.306 -2016-10-28 18:00:00,0.263,0.292,0.306 -2016-10-28 19:00:00,0.263,0.292,0.306 -2016-10-28 20:00:00,0.263,0.293,0.306 -2016-10-28 21:00:00,0.263,0.293,0.306 -2016-10-28 22:00:00,0.263,0.293,0.306 -2016-10-28 23:00:00,0.263,0.293,0.306 -2016-10-29 00:00:00,0.263,0.293,0.306 -2016-10-29 01:00:00,0.263,0.293,0.306 -2016-10-29 02:00:00,0.263,0.293,0.305 -2016-10-29 03:00:00,0.263,0.293,0.306 -2016-10-29 04:00:00,0.262,0.294,0.305 -2016-10-29 05:00:00,0.263,0.295,0.305 -2016-10-29 06:00:00,0.263,0.295,0.304 -2016-10-29 07:00:00,0.263,0.295,0.304 -2016-10-29 08:00:00,0.262,0.295,0.304 -2016-10-29 09:00:00,0.262,0.295,0.304 -2016-10-29 10:00:00,0.262,0.295,0.305 -2016-10-29 11:00:00,0.262,0.293,0.305 -2016-10-29 12:00:00,0.262,0.293,0.305 -2016-10-29 13:00:00,0.262,0.293,0.304 -2016-10-29 14:00:00,0.262,0.293,0.304 -2016-10-29 15:00:00,0.262,0.293,0.304 -2016-10-29 16:00:00,0.262,0.293,0.304 -2016-10-29 17:00:00,0.261,0.293,0.304 -2016-10-29 18:00:00,0.261,0.293,0.304 -2016-10-29 19:00:00,0.261,0.293,0.304 -2016-10-29 20:00:00,0.261,0.293,0.304 -2016-10-29 21:00:00,0.261,0.293,0.304 -2016-10-29 22:00:00,0.261,0.293,0.304 -2016-10-29 23:00:00,0.261,0.293,0.304 -2016-10-30 00:00:00,0.261,0.293,0.304 -2016-10-30 01:00:00,0.262,0.293,0.304 -2016-10-30 02:00:00,0.261,0.293,0.304 -2016-10-30 03:00:00,0.261,0.293,0.304 -2016-10-30 04:00:00,0.261,0.293,0.304 -2016-10-30 05:00:00,0.261,0.293,0.304 -2016-10-30 06:00:00,0.261,0.293,0.304 -2016-10-30 07:00:00,0.261,0.293,0.304 -2016-10-30 08:00:00,0.261,0.292,0.304 -2016-10-30 09:00:00,0.261,0.292,0.304 -2016-10-30 10:00:00,0.261,0.293,0.304 -2016-10-30 11:00:00,0.261,0.292,0.304 -2016-10-30 12:00:00,0.261,0.293,0.304 -2016-10-30 13:00:00,0.261,0.292,0.304 -2016-10-30 14:00:00,0.261,0.292,0.304 -2016-10-30 15:00:00,0.26,0.292,0.304 -2016-10-30 16:00:00,0.26,0.292,0.304 -2016-10-30 17:00:00,0.26,0.29,0.304 -2016-10-30 18:00:00,0.26,0.29,0.304 -2016-10-30 19:00:00,0.26,0.303,0.303 -2016-10-30 20:00:00,0.26,0.322,0.303 -2016-10-30 21:00:00,0.26,0.322,0.303 -2016-10-30 22:00:00,0.26,0.321,0.303 -2016-10-30 23:00:00,0.26,0.321,0.303 -2016-10-31 00:00:00,0.26,0.321,0.303 -2016-10-31 01:00:00,0.26,0.319,0.303 -2016-10-31 02:00:00,0.26,0.319,0.303 -2016-10-31 03:00:00,0.26,0.318,0.303 -2016-10-31 04:00:00,0.26,0.317,0.303 -2016-10-31 05:00:00,0.26,0.317,0.303 -2016-10-31 06:00:00,0.26,0.317,0.303 -2016-10-31 07:00:00,0.259,0.315,0.303 -2016-10-31 08:00:00,0.259,0.315,0.303 -2016-10-31 09:00:00,0.26,0.315,0.303 -2016-10-31 10:00:00,0.259,0.314,0.303 -2016-10-31 11:00:00,0.259,0.314,0.304 -2016-10-31 12:00:00,0.259,0.314,0.303 -2016-10-31 13:00:00,0.259,0.314,0.303 -2016-10-31 14:00:00,0.259,0.313,0.303 -2016-10-31 15:00:00,0.259,0.313,0.303 -2016-10-31 16:00:00,0.259,0.314,0.303 -2016-10-31 17:00:00,0.259,0.314,0.303 -2016-10-31 18:00:00,0.259,0.314,0.303 -2016-10-31 19:00:00,0.259,0.314,0.303 -2016-10-31 20:00:00,0.259,0.314,0.303 -2016-10-31 21:00:00,0.259,0.314,0.303 -2016-10-31 22:00:00,0.259,0.314,0.303 -2016-10-31 23:00:00,0.259,0.313,0.303 -2016-11-01 00:00:00,0.259,0.313,0.303 -2016-11-01 01:00:00,0.259,0.312,0.303 -2016-11-01 02:00:00,0.259,0.312,0.303 -2016-11-01 03:00:00,0.259,0.312,0.303 -2016-11-01 04:00:00,0.259,0.31,0.303 -2016-11-01 05:00:00,0.258,0.31,0.303 -2016-11-01 06:00:00,0.259,0.31,0.303 -2016-11-01 07:00:00,0.258,0.309,0.303 -2016-11-01 08:00:00,0.258,0.308,0.303 -2016-11-01 09:00:00,0.258,0.306,0.304 -2016-11-01 10:00:00,0.258,0.307,0.304 -2016-11-01 11:00:00,0.258,0.316,0.304 -2016-11-01 12:00:00,0.258,0.321,0.304 -2016-11-01 13:00:00,0.258,0.32299999999999995,0.304 -2016-11-01 14:00:00,0.258,0.32299999999999995,0.304 -2016-11-01 15:00:00,0.259,0.322,0.303 -2016-11-01 16:00:00,0.258,0.322,0.303 -2016-11-01 17:00:00,0.259,0.322,0.303 -2016-11-01 18:00:00,0.259,0.322,0.303 -2016-11-01 19:00:00,0.258,0.322,0.303 -2016-11-01 20:00:00,0.258,0.322,0.303 -2016-11-01 21:00:00,0.258,0.322,0.303 -2016-11-01 22:00:00,0.258,0.322,0.303 -2016-11-01 23:00:00,0.259,0.322,0.303 -2016-11-02 00:00:00,0.258,0.322,0.303 -2016-11-02 01:00:00,0.258,0.321,0.303 -2016-11-02 02:00:00,0.258,0.321,0.303 -2016-11-02 03:00:00,0.258,0.321,0.303 -2016-11-02 04:00:00,0.258,0.321,0.303 -2016-11-02 05:00:00,0.258,0.321,0.303 -2016-11-02 06:00:00,0.258,0.321,0.303 -2016-11-02 07:00:00,0.259,0.321,0.303 -2016-11-02 08:00:00,0.259,0.32,0.304 -2016-11-02 09:00:00,0.259,0.318,0.304 -2016-11-02 10:00:00,0.259,0.319,0.304 -2016-11-02 11:00:00,0.259,0.32,0.304 -2016-11-02 12:00:00,0.259,0.321,0.304 -2016-11-02 13:00:00,0.259,0.32299999999999995,0.305 -2016-11-02 14:00:00,0.259,0.324,0.305 -2016-11-02 15:00:00,0.258,0.324,0.306 -2016-11-02 16:00:00,0.256,0.324,0.307 -2016-11-02 17:00:00,0.255,0.324,0.307 -2016-11-02 18:00:00,0.256,0.32299999999999995,0.307 -2016-11-02 19:00:00,0.256,0.322,0.307 -2016-11-02 20:00:00,0.256,0.321,0.307 -2016-11-02 21:00:00,0.257,0.321,0.307 -2016-11-02 22:00:00,0.257,0.326,0.307 -2016-11-02 23:00:00,0.257,0.327,0.307 -2016-11-03 00:00:00,0.257,0.327,0.307 -2016-11-03 01:00:00,0.258,0.327,0.307 -2016-11-03 02:00:00,0.258,0.326,0.307 -2016-11-03 03:00:00,0.258,0.326,0.307 -2016-11-03 04:00:00,0.258,0.324,0.307 -2016-11-03 05:00:00,0.258,0.324,0.307 -2016-11-03 06:00:00,0.258,0.324,0.307 -2016-11-03 07:00:00,0.258,0.32299999999999995,0.307 -2016-11-03 08:00:00,0.259,0.322,0.307 -2016-11-03 09:00:00,0.258,0.322,0.307 -2016-11-03 10:00:00,0.258,0.322,0.307 -2016-11-03 11:00:00,0.258,0.321,0.307 -2016-11-03 12:00:00,0.259,0.321,0.306 -2016-11-03 13:00:00,0.259,0.319,0.306 -2016-11-03 14:00:00,0.26,0.316,0.306 -2016-11-03 15:00:00,0.261,0.315,0.306 -2016-11-03 16:00:00,0.261,0.314,0.306 -2016-11-03 17:00:00,0.261,0.314,0.306 -2016-11-03 18:00:00,0.262,0.316,0.306 -2016-11-03 19:00:00,0.262,0.318,0.306 -2016-11-03 20:00:00,0.262,0.32,0.306 -2016-11-03 21:00:00,0.262,0.321,0.306 -2016-11-03 22:00:00,0.262,0.321,0.306 -2016-11-03 23:00:00,0.262,0.319,0.306 -2016-11-04 00:00:00,0.262,0.319,0.306 -2016-11-04 01:00:00,0.262,0.321,0.305 -2016-11-04 02:00:00,0.263,0.325,0.305 -2016-11-04 03:00:00,0.263,0.327,0.305 -2016-11-04 04:00:00,0.263,0.327,0.304 -2016-11-04 05:00:00,0.263,0.326,0.304 -2016-11-04 06:00:00,0.263,0.327,0.304 -2016-11-04 07:00:00,0.263,0.327,0.305 -2016-11-04 08:00:00,0.263,0.326,0.305 -2016-11-04 09:00:00,0.262,0.326,0.305 -2016-11-04 10:00:00,0.262,0.326,0.305 -2016-11-04 11:00:00,0.262,0.326,0.306 -2016-11-04 12:00:00,0.262,0.326,0.306 -2016-11-04 13:00:00,0.262,0.324,0.306 -2016-11-04 14:00:00,0.262,0.324,0.306 -2016-11-04 15:00:00,0.262,0.322,0.305 -2016-11-04 16:00:00,0.262,0.321,0.305 -2016-11-04 17:00:00,0.263,0.321,0.305 -2016-11-04 18:00:00,0.263,0.321,0.305 -2016-11-04 19:00:00,0.263,0.321,0.305 -2016-11-04 20:00:00,0.262,0.321,0.305 -2016-11-04 21:00:00,0.262,0.321,0.306 -2016-11-04 22:00:00,0.262,0.321,0.306 -2016-11-04 23:00:00,0.262,0.32,0.306 -2016-11-05 00:00:00,0.262,0.319,0.306 -2016-11-05 01:00:00,0.262,0.319,0.306 -2016-11-05 02:00:00,0.262,0.319,0.306 -2016-11-05 03:00:00,0.262,0.319,0.306 -2016-11-05 04:00:00,0.262,0.318,0.306 -2016-11-05 05:00:00,0.261,0.317,0.306 -2016-11-05 06:00:00,0.261,0.315,0.306 -2016-11-05 07:00:00,0.261,0.315,0.306 -2016-11-05 08:00:00,0.261,0.316,0.306 -2016-11-05 09:00:00,0.261,0.326,0.306 -2016-11-05 10:00:00,0.261,0.332,0.306 -2016-11-05 11:00:00,0.261,0.33399999999999996,0.306 -2016-11-05 12:00:00,0.261,0.33399999999999996,0.306 -2016-11-05 13:00:00,0.26,0.332,0.307 -2016-11-05 14:00:00,0.266,0.332,0.308 -2016-11-05 15:00:00,0.28800000000000003,0.331,0.322 -2016-11-05 16:00:00,0.287,0.32899999999999996,0.32799999999999996 -2016-11-05 17:00:00,0.28300000000000003,0.327,0.33 -2016-11-05 18:00:00,0.28,0.326,0.33 -2016-11-05 19:00:00,0.27899999999999997,0.324,0.32899999999999996 -2016-11-05 20:00:00,0.27699999999999997,0.322,0.32799999999999996 -2016-11-05 21:00:00,0.276,0.321,0.32799999999999996 -2016-11-05 22:00:00,0.275,0.321,0.327 -2016-11-05 23:00:00,0.27399999999999997,0.321,0.326 -2016-11-06 00:00:00,0.273,0.321,0.324 -2016-11-06 01:00:00,0.272,0.32,0.322 -2016-11-06 02:00:00,0.271,0.319,0.321 -2016-11-06 03:00:00,0.271,0.319,0.32 -2016-11-06 04:00:00,0.271,0.319,0.318 -2016-11-06 05:00:00,0.271,0.317,0.318 -2016-11-06 06:00:00,0.27,0.317,0.317 -2016-11-06 07:00:00,0.26899999999999996,0.317,0.316 -2016-11-06 08:00:00,0.26899999999999996,0.317,0.315 -2016-11-06 09:00:00,0.26899999999999996,0.317,0.314 -2016-11-06 10:00:00,0.26899999999999996,0.316,0.314 -2016-11-06 11:00:00,0.26899999999999996,0.316,0.313 -2016-11-06 12:00:00,0.26899999999999996,0.315,0.313 -2016-11-06 13:00:00,0.26899999999999996,0.315,0.313 -2016-11-06 14:00:00,0.27,0.315,0.312 -2016-11-06 15:00:00,0.27,0.314,0.312 -2016-11-06 16:00:00,0.271,0.315,0.312 -2016-11-06 17:00:00,0.271,0.315,0.311 -2016-11-06 18:00:00,0.271,0.315,0.311 -2016-11-06 19:00:00,0.271,0.315,0.311 -2016-11-06 20:00:00,0.271,0.315,0.311 -2016-11-06 21:00:00,0.271,0.315,0.311 -2016-11-06 22:00:00,0.271,0.317,0.311 -2016-11-06 23:00:00,0.271,0.317,0.31 -2016-11-07 00:00:00,0.27,0.316,0.31 -2016-11-07 01:00:00,0.27,0.315,0.31 -2016-11-07 02:00:00,0.27,0.315,0.31 -2016-11-07 03:00:00,0.27,0.315,0.31 -2016-11-07 04:00:00,0.267,0.315,0.311 -2016-11-07 05:00:00,0.267,0.314,0.311 -2016-11-07 06:00:00,0.27,0.314,0.312 -2016-11-07 07:00:00,0.28600000000000003,0.314,0.315 -2016-11-07 08:00:00,0.285,0.314,0.321 -2016-11-07 09:00:00,0.284,0.314,0.327 -2016-11-07 10:00:00,0.28300000000000003,0.314,0.33 -2016-11-07 11:00:00,0.281,0.314,0.33 -2016-11-07 12:00:00,0.27899999999999997,0.313,0.33 -2016-11-07 13:00:00,0.27699999999999997,0.312,0.32899999999999996 -2016-11-07 14:00:00,0.27699999999999997,0.31,0.32899999999999996 -2016-11-07 15:00:00,0.27699999999999997,0.31,0.32799999999999996 -2016-11-07 16:00:00,0.27699999999999997,0.31,0.32799999999999996 -2016-11-07 17:00:00,0.276,0.31,0.32799999999999996 -2016-11-07 18:00:00,0.276,0.31,0.32799999999999996 -2016-11-07 19:00:00,0.276,0.31,0.327 -2016-11-07 20:00:00,0.275,0.31,0.327 -2016-11-07 21:00:00,0.275,0.31,0.326 -2016-11-07 22:00:00,0.275,0.31,0.325 -2016-11-07 23:00:00,0.275,0.31,0.324 -2016-11-08 00:00:00,0.275,0.311,0.32299999999999995 -2016-11-08 01:00:00,0.27399999999999997,0.312,0.32299999999999995 -2016-11-08 02:00:00,0.273,0.312,0.322 -2016-11-08 03:00:00,0.273,0.312,0.321 -2016-11-08 04:00:00,0.273,0.312,0.321 -2016-11-08 05:00:00,0.271,0.312,0.321 -2016-11-08 06:00:00,0.271,0.312,0.32 -2016-11-08 07:00:00,0.272,0.312,0.32 -2016-11-08 08:00:00,0.27399999999999997,0.312,0.321 -2016-11-08 09:00:00,0.27699999999999997,0.312,0.32899999999999996 -2016-11-08 10:00:00,0.27699999999999997,0.311,0.331 -2016-11-08 11:00:00,0.27699999999999997,0.311,0.331 -2016-11-08 12:00:00,0.276,0.311,0.33 -2016-11-08 13:00:00,0.276,0.31,0.32899999999999996 -2016-11-08 14:00:00,0.276,0.31,0.32899999999999996 -2016-11-08 15:00:00,0.27399999999999997,0.31,0.32799999999999996 -2016-11-08 16:00:00,0.272,0.31,0.327 -2016-11-08 17:00:00,0.272,0.31,0.326 -2016-11-08 18:00:00,0.272,0.308,0.326 -2016-11-08 19:00:00,0.276,0.307,0.326 -2016-11-08 20:00:00,0.282,0.307,0.325 -2016-11-08 21:00:00,0.282,0.308,0.325 -2016-11-08 22:00:00,0.281,0.31,0.324 -2016-11-08 23:00:00,0.281,0.31,0.32299999999999995 -2016-11-09 00:00:00,0.28,0.31,0.322 -2016-11-09 01:00:00,0.28,0.31,0.321 -2016-11-09 02:00:00,0.27899999999999997,0.31,0.321 -2016-11-09 03:00:00,0.27899999999999997,0.309,0.32 -2016-11-09 04:00:00,0.278,0.309,0.319 -2016-11-09 05:00:00,0.278,0.309,0.318 -2016-11-09 06:00:00,0.27699999999999997,0.309,0.318 -2016-11-09 07:00:00,0.27699999999999997,0.309,0.318 -2016-11-09 08:00:00,0.276,0.309,0.318 -2016-11-09 09:00:00,0.27399999999999997,0.308,0.318 -2016-11-09 10:00:00,0.26899999999999996,0.307,0.318 -2016-11-09 11:00:00,0.267,0.306,0.317 -2016-11-09 12:00:00,0.266,0.305,0.317 -2016-11-09 13:00:00,0.266,0.305,0.316 -2016-11-09 14:00:00,0.267,0.305,0.316 -2016-11-09 15:00:00,0.268,0.304,0.316 -2016-11-09 16:00:00,0.26899999999999996,0.304,0.316 -2016-11-09 17:00:00,0.27,0.303,0.316 -2016-11-09 18:00:00,0.27,0.319,0.317 -2016-11-09 19:00:00,0.26899999999999996,0.332,0.318 -2016-11-09 20:00:00,0.27,0.332,0.318 -2016-11-09 21:00:00,0.273,0.331,0.32299999999999995 -2016-11-09 22:00:00,0.27899999999999997,0.331,0.332 -2016-11-09 23:00:00,0.285,0.331,0.33799999999999997 -2016-11-10 00:00:00,0.28600000000000003,0.33,0.341 -2016-11-10 01:00:00,0.28300000000000003,0.32799999999999996,0.33899999999999997 -2016-11-10 02:00:00,0.282,0.327,0.33899999999999997 -2016-11-10 03:00:00,0.284,0.327,0.34 -2016-11-10 04:00:00,0.282,0.327,0.33899999999999997 -2016-11-10 05:00:00,0.282,0.326,0.33899999999999997 -2016-11-10 06:00:00,0.28300000000000003,0.325,0.34 -2016-11-10 07:00:00,0.28300000000000003,0.33,0.33899999999999997 -2016-11-10 08:00:00,0.282,0.335,0.33899999999999997 -2016-11-10 09:00:00,0.281,0.336,0.33799999999999997 -2016-11-10 10:00:00,0.27899999999999997,0.33299999999999996,0.337 -2016-11-10 11:00:00,0.278,0.332,0.336 -2016-11-10 12:00:00,0.276,0.33799999999999997,0.335 -2016-11-10 13:00:00,0.275,0.336,0.335 -2016-11-10 14:00:00,0.275,0.335,0.33399999999999996 -2016-11-10 15:00:00,0.27399999999999997,0.33399999999999996,0.33399999999999996 -2016-11-10 16:00:00,0.273,0.33399999999999996,0.33299999999999996 -2016-11-10 17:00:00,0.272,0.332,0.332 -2016-11-10 18:00:00,0.272,0.32899999999999996,0.331 -2016-11-10 19:00:00,0.271,0.32799999999999996,0.331 -2016-11-10 20:00:00,0.27,0.33,0.33 -2016-11-10 21:00:00,0.27,0.331,0.32899999999999996 -2016-11-10 22:00:00,0.26899999999999996,0.32899999999999996,0.32899999999999996 -2016-11-10 23:00:00,0.26899999999999996,0.32899999999999996,0.32799999999999996 -2016-11-11 00:00:00,0.268,0.327,0.326 -2016-11-11 01:00:00,0.268,0.327,0.325 -2016-11-11 02:00:00,0.267,0.327,0.325 -2016-11-11 03:00:00,0.268,0.327,0.324 -2016-11-11 04:00:00,0.27,0.326,0.324 -2016-11-11 05:00:00,0.27399999999999997,0.326,0.32899999999999996 -2016-11-11 06:00:00,0.292,0.326,0.34600000000000003 -2016-11-11 07:00:00,0.298,0.325,0.353 -2016-11-11 08:00:00,0.301,0.325,0.36 -2016-11-11 09:00:00,0.299,0.324,0.38299999999999995 -2016-11-11 10:00:00,0.294,0.32299999999999995,0.38299999999999995 -2016-11-11 11:00:00,0.293,0.321,0.384 -2016-11-11 12:00:00,0.29,0.321,0.384 -2016-11-11 13:00:00,0.287,0.324,0.384 -2016-11-11 14:00:00,0.28300000000000003,0.325,0.385 -2016-11-11 15:00:00,0.281,0.326,0.385 -2016-11-11 16:00:00,0.27899999999999997,0.326,0.385 -2016-11-11 17:00:00,0.27699999999999997,0.326,0.382 -2016-11-11 18:00:00,0.275,0.326,0.373 -2016-11-11 19:00:00,0.27399999999999997,0.326,0.368 -2016-11-11 20:00:00,0.273,0.326,0.36700000000000005 -2016-11-11 21:00:00,0.272,0.325,0.366 -2016-11-11 22:00:00,0.27,0.324,0.35700000000000004 -2016-11-11 23:00:00,0.26899999999999996,0.324,0.354 -2016-11-12 00:00:00,0.26899999999999996,0.324,0.354 -2016-11-12 01:00:00,0.268,0.324,0.354 -2016-11-12 02:00:00,0.268,0.32299999999999995,0.353 -2016-11-12 03:00:00,0.267,0.32299999999999995,0.35200000000000004 -2016-11-12 04:00:00,0.267,0.324,0.349 -2016-11-12 05:00:00,0.267,0.324,0.337 -2016-11-12 06:00:00,0.266,0.325,0.33 -2016-11-12 07:00:00,0.266,0.326,0.32899999999999996 -2016-11-12 08:00:00,0.266,0.326,0.32799999999999996 -2016-11-12 09:00:00,0.266,0.326,0.32799999999999996 -2016-11-12 10:00:00,0.266,0.326,0.327 -2016-11-12 11:00:00,0.266,0.326,0.326 -2016-11-12 12:00:00,0.266,0.327,0.326 -2016-11-12 13:00:00,0.267,0.32,0.325 -2016-11-12 14:00:00,0.26899999999999996,0.326,0.325 -2016-11-12 15:00:00,0.26899999999999996,0.33399999999999996,0.324 -2016-11-12 16:00:00,0.27,0.33399999999999996,0.324 -2016-11-12 17:00:00,0.27,0.33299999999999996,0.32299999999999995 -2016-11-12 18:00:00,0.271,0.332,0.32299999999999995 -2016-11-12 19:00:00,0.273,0.332,0.321 -2016-11-12 20:00:00,0.273,0.332,0.32 -2016-11-12 21:00:00,0.273,0.331,0.32 -2016-11-12 22:00:00,0.273,0.331,0.32 -2016-11-12 23:00:00,0.272,0.331,0.319 -2016-11-13 00:00:00,0.272,0.33,0.319 -2016-11-13 01:00:00,0.271,0.33,0.319 -2016-11-13 02:00:00,0.271,0.32899999999999996,0.319 -2016-11-13 03:00:00,0.271,0.32799999999999996,0.319 -2016-11-13 04:00:00,0.271,0.327,0.319 -2016-11-13 05:00:00,0.27,0.327,0.319 -2016-11-13 06:00:00,0.27,0.326,0.319 -2016-11-13 07:00:00,0.27,0.327,0.317 -2016-11-13 08:00:00,0.27,0.33,0.317 -2016-11-13 09:00:00,0.27,0.331,0.317 -2016-11-13 10:00:00,0.26899999999999996,0.33,0.317 -2016-11-13 11:00:00,0.268,0.326,0.318 -2016-11-13 12:00:00,0.268,0.32299999999999995,0.318 -2016-11-13 13:00:00,0.268,0.321,0.318 -2016-11-13 14:00:00,0.268,0.321,0.318 -2016-11-13 15:00:00,0.26899999999999996,0.32,0.318 -2016-11-13 16:00:00,0.268,0.319,0.317 -2016-11-13 17:00:00,0.26899999999999996,0.319,0.317 -2016-11-13 18:00:00,0.268,0.319,0.317 -2016-11-13 19:00:00,0.26899999999999996,0.319,0.316 -2016-11-13 20:00:00,0.268,0.319,0.316 -2016-11-13 21:00:00,0.268,0.319,0.316 -2016-11-13 22:00:00,0.268,0.318,0.315 -2016-11-13 23:00:00,0.268,0.318,0.315 -2016-11-14 00:00:00,0.268,0.32,0.315 -2016-11-14 01:00:00,0.268,0.319,0.315 -2016-11-14 02:00:00,0.268,0.317,0.315 -2016-11-14 03:00:00,0.267,0.317,0.315 -2016-11-14 04:00:00,0.267,0.315,0.314 -2016-11-14 05:00:00,0.267,0.315,0.314 -2016-11-14 06:00:00,0.267,0.315,0.314 -2016-11-14 07:00:00,0.267,0.315,0.314 -2016-11-14 08:00:00,0.267,0.315,0.314 -2016-11-14 09:00:00,0.267,0.315,0.313 -2016-11-14 10:00:00,0.266,0.315,0.313 -2016-11-14 11:00:00,0.267,0.314,0.313 -2016-11-14 12:00:00,0.266,0.314,0.313 -2016-11-14 13:00:00,0.266,0.314,0.314 -2016-11-14 14:00:00,0.266,0.315,0.314 -2016-11-14 15:00:00,0.266,0.315,0.315 -2016-11-14 16:00:00,0.266,0.315,0.315 -2016-11-14 17:00:00,0.266,0.315,0.315 -2016-11-14 18:00:00,0.266,0.315,0.314 -2016-11-14 19:00:00,0.266,0.315,0.313 -2016-11-14 20:00:00,0.266,0.315,0.313 -2016-11-14 21:00:00,0.266,0.315,0.313 -2016-11-14 22:00:00,0.266,0.315,0.313 -2016-11-14 23:00:00,0.266,0.315,0.313 -2016-11-15 00:00:00,0.266,0.315,0.313 -2016-11-15 01:00:00,0.266,0.315,0.313 -2016-11-15 02:00:00,0.266,0.315,0.313 -2016-11-15 03:00:00,0.266,0.315,0.313 -2016-11-15 04:00:00,0.266,0.315,0.313 -2016-11-15 05:00:00,0.266,0.315,0.313 -2016-11-15 06:00:00,0.266,0.315,0.314 -2016-11-15 07:00:00,0.266,0.315,0.314 -2016-11-15 08:00:00,0.266,0.315,0.314 -2016-11-15 09:00:00,0.265,0.315,0.315 -2016-11-15 10:00:00,0.265,0.315,0.315 -2016-11-15 11:00:00,0.264,0.315,0.316 -2016-11-15 12:00:00,0.262,0.315,0.316 -2016-11-15 13:00:00,0.264,0.315,0.317 -2016-11-15 14:00:00,0.28300000000000003,0.315,0.325 -2016-11-15 15:00:00,0.28600000000000003,0.315,0.332 -2016-11-15 16:00:00,0.28300000000000003,0.315,0.332 -2016-11-15 17:00:00,0.281,0.315,0.332 -2016-11-15 18:00:00,0.27899999999999997,0.315,0.332 -2016-11-15 19:00:00,0.27899999999999997,0.315,0.331 -2016-11-15 20:00:00,0.278,0.315,0.33 -2016-11-15 21:00:00,0.278,0.315,0.32899999999999996 -2016-11-15 22:00:00,0.27899999999999997,0.315,0.32799999999999996 -2016-11-15 23:00:00,0.278,0.315,0.327 -2016-11-16 00:00:00,0.278,0.315,0.327 -2016-11-16 01:00:00,0.278,0.315,0.327 -2016-11-16 02:00:00,0.278,0.315,0.327 -2016-11-16 03:00:00,0.278,0.315,0.32899999999999996 -2016-11-16 04:00:00,0.29,0.315,0.34 -2016-11-16 05:00:00,0.29100000000000004,0.315,0.34299999999999997 -2016-11-16 06:00:00,0.287,0.315,0.342 -2016-11-16 07:00:00,0.28300000000000003,0.315,0.342 -2016-11-16 08:00:00,0.28800000000000003,0.315,0.342 -2016-11-16 09:00:00,0.292,0.314,0.344 -2016-11-16 10:00:00,0.287,0.314,0.34600000000000003 -2016-11-16 11:00:00,0.287,0.314,0.35700000000000004 -2016-11-16 12:00:00,0.284,0.314,0.364 -2016-11-16 13:00:00,0.282,0.314,0.365 -2016-11-16 14:00:00,0.281,0.314,0.365 -2016-11-16 15:00:00,0.28,0.314,0.364 -2016-11-16 16:00:00,0.281,0.313,0.363 -2016-11-16 17:00:00,0.282,0.312,0.36200000000000004 -2016-11-16 18:00:00,0.28,0.312,0.36200000000000004 -2016-11-16 19:00:00,0.27899999999999997,0.312,0.35700000000000004 -2016-11-16 20:00:00,0.27899999999999997,0.312,0.35100000000000003 -2016-11-16 21:00:00,0.278,0.313,0.35 -2016-11-16 22:00:00,0.278,0.314,0.349 -2016-11-16 23:00:00,0.27699999999999997,0.314,0.348 -2016-11-17 00:00:00,0.276,0.314,0.348 -2016-11-17 01:00:00,0.275,0.314,0.348 -2016-11-17 02:00:00,0.27399999999999997,0.314,0.348 -2016-11-17 03:00:00,0.27399999999999997,0.314,0.34700000000000003 -2016-11-17 04:00:00,0.27399999999999997,0.314,0.34600000000000003 -2016-11-17 05:00:00,0.273,0.314,0.34600000000000003 -2016-11-17 06:00:00,0.273,0.314,0.345 -2016-11-17 07:00:00,0.273,0.314,0.344 -2016-11-17 08:00:00,0.27399999999999997,0.314,0.344 -2016-11-17 09:00:00,0.276,0.314,0.344 -2016-11-17 10:00:00,0.27699999999999997,0.314,0.344 -2016-11-17 11:00:00,0.278,0.313,0.344 -2016-11-17 12:00:00,0.27699999999999997,0.313,0.34299999999999997 -2016-11-17 13:00:00,0.275,0.313,0.34299999999999997 -2016-11-17 14:00:00,0.275,0.312,0.34299999999999997 -2016-11-17 15:00:00,0.27399999999999997,0.312,0.34299999999999997 -2016-11-17 16:00:00,0.273,0.312,0.342 -2016-11-17 17:00:00,0.273,0.311,0.342 -2016-11-17 18:00:00,0.273,0.31,0.342 -2016-11-17 19:00:00,0.273,0.31,0.342 -2016-11-17 20:00:00,0.273,0.312,0.342 -2016-11-17 21:00:00,0.272,0.312,0.342 -2016-11-17 22:00:00,0.272,0.312,0.342 -2016-11-17 23:00:00,0.272,0.312,0.341 -2016-11-18 00:00:00,0.271,0.312,0.341 -2016-11-18 01:00:00,0.271,0.312,0.341 -2016-11-18 02:00:00,0.27,0.312,0.341 -2016-11-18 03:00:00,0.27,0.312,0.341 -2016-11-18 04:00:00,0.27,0.312,0.34 -2016-11-18 05:00:00,0.27,0.312,0.33899999999999997 -2016-11-18 06:00:00,0.27,0.312,0.335 -2016-11-18 07:00:00,0.271,0.312,0.33299999999999996 -2016-11-18 08:00:00,0.272,0.312,0.32899999999999996 -2016-11-18 09:00:00,0.273,0.312,0.32899999999999996 -2016-11-18 10:00:00,0.272,0.312,0.33299999999999996 -2016-11-18 11:00:00,0.29,0.312,0.344 -2016-11-18 12:00:00,0.29100000000000004,0.312,0.34600000000000003 -2016-11-18 13:00:00,0.287,0.312,0.34700000000000003 -2016-11-18 14:00:00,0.284,0.311,0.35 -2016-11-18 15:00:00,0.281,0.31,0.353 -2016-11-18 16:00:00,0.27899999999999997,0.31,0.354 -2016-11-18 17:00:00,0.27699999999999997,0.31,0.353 -2016-11-18 18:00:00,0.276,0.31,0.35200000000000004 -2016-11-18 19:00:00,0.275,0.31,0.35100000000000003 -2016-11-18 20:00:00,0.27399999999999997,0.31,0.35 -2016-11-18 21:00:00,0.27399999999999997,0.312,0.35 -2016-11-18 22:00:00,0.273,0.312,0.349 -2016-11-18 23:00:00,0.272,0.312,0.349 -2016-11-19 00:00:00,0.272,0.312,0.348 -2016-11-19 01:00:00,0.271,0.312,0.348 -2016-11-19 02:00:00,0.271,0.312,0.34299999999999997 -2016-11-19 03:00:00,0.27,0.312,0.342 -2016-11-19 04:00:00,0.27,0.312,0.341 -2016-11-19 05:00:00,0.273,0.312,0.341 -2016-11-19 06:00:00,0.27699999999999997,0.312,0.34 -2016-11-19 07:00:00,0.276,0.311,0.33899999999999997 -2016-11-19 08:00:00,0.27,0.311,0.34 -2016-11-19 09:00:00,0.26899999999999996,0.311,0.33899999999999997 -2016-11-19 10:00:00,0.26899999999999996,0.311,0.33399999999999996 -2016-11-19 11:00:00,0.26899999999999996,0.311,0.332 -2016-11-19 12:00:00,0.268,0.311,0.331 -2016-11-19 13:00:00,0.268,0.311,0.33 -2016-11-19 14:00:00,0.268,0.31,0.33 -2016-11-19 15:00:00,0.268,0.31,0.32899999999999996 -2016-11-19 16:00:00,0.26899999999999996,0.31,0.32899999999999996 -2016-11-19 17:00:00,0.26899999999999996,0.31,0.32799999999999996 -2016-11-19 18:00:00,0.27,0.31,0.32799999999999996 -2016-11-19 19:00:00,0.27,0.31,0.32799999999999996 -2016-11-19 20:00:00,0.27,0.31,0.327 -2016-11-19 21:00:00,0.271,0.31,0.327 -2016-11-19 22:00:00,0.27,0.31,0.327 -2016-11-19 23:00:00,0.26899999999999996,0.31,0.326 -2016-11-20 00:00:00,0.26899999999999996,0.31,0.326 -2016-11-20 01:00:00,0.26899999999999996,0.31,0.326 -2016-11-20 02:00:00,0.26899999999999996,0.31,0.326 -2016-11-20 03:00:00,0.26899999999999996,0.31,0.326 -2016-11-20 04:00:00,0.26899999999999996,0.31,0.326 -2016-11-20 05:00:00,0.26899999999999996,0.31,0.325 -2016-11-20 06:00:00,0.26899999999999996,0.31,0.325 -2016-11-20 07:00:00,0.26899999999999996,0.31,0.325 -2016-11-20 08:00:00,0.26899999999999996,0.31,0.325 -2016-11-20 09:00:00,0.26899999999999996,0.31,0.325 -2016-11-20 10:00:00,0.26899999999999996,0.31,0.325 -2016-11-20 11:00:00,0.27,0.31,0.324 -2016-11-20 12:00:00,0.271,0.31,0.324 -2016-11-20 13:00:00,0.272,0.31,0.324 -2016-11-20 14:00:00,0.272,0.31,0.32299999999999995 -2016-11-20 15:00:00,0.273,0.31,0.32299999999999995 -2016-11-20 16:00:00,0.272,0.31,0.32299999999999995 -2016-11-20 17:00:00,0.272,0.31,0.32299999999999995 -2016-11-20 18:00:00,0.272,0.31,0.322 -2016-11-20 19:00:00,0.272,0.31,0.322 -2016-11-20 20:00:00,0.272,0.31,0.322 -2016-11-20 21:00:00,0.272,0.31,0.322 -2016-11-20 22:00:00,0.271,0.31,0.322 -2016-11-20 23:00:00,0.271,0.31,0.322 -2016-11-21 00:00:00,0.271,0.31,0.321 -2016-11-21 01:00:00,0.271,0.31,0.321 -2016-11-21 02:00:00,0.271,0.31,0.321 -2016-11-21 03:00:00,0.271,0.31,0.321 -2016-11-21 04:00:00,0.271,0.31,0.321 -2016-11-21 05:00:00,0.271,0.31,0.321 -2016-11-21 06:00:00,0.271,0.31,0.321 -2016-11-21 07:00:00,0.27,0.31,0.32 -2016-11-21 08:00:00,0.271,0.31,0.321 -2016-11-21 09:00:00,0.271,0.31,0.321 -2016-11-21 10:00:00,0.27,0.31,0.32 -2016-11-21 11:00:00,0.27,0.309,0.32 -2016-11-21 12:00:00,0.27,0.309,0.32 -2016-11-21 13:00:00,0.27,0.309,0.32 -2016-11-21 14:00:00,0.27,0.309,0.32 -2016-11-21 15:00:00,0.27,0.309,0.32 -2016-11-21 16:00:00,0.27,0.309,0.32 -2016-11-21 17:00:00,0.27,0.309,0.319 -2016-11-21 18:00:00,0.27,0.309,0.319 -2016-11-21 19:00:00,0.27,0.309,0.319 -2016-11-21 20:00:00,0.27,0.31,0.318 -2016-11-21 21:00:00,0.27,0.309,0.317 -2016-11-21 22:00:00,0.26899999999999996,0.31,0.317 -2016-11-21 23:00:00,0.27,0.31,0.317 -2016-11-22 00:00:00,0.26899999999999996,0.31,0.317 -2016-11-22 01:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 02:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 03:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 04:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 05:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 06:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 07:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 08:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 09:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 10:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 11:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 12:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 13:00:00,0.26899999999999996,0.309,0.317 -2016-11-22 14:00:00,0.26899999999999996,0.309,0.316 -2016-11-22 15:00:00,0.26899999999999996,0.309,0.316 -2016-11-22 16:00:00,0.26899999999999996,0.308,0.316 -2016-11-22 17:00:00,0.26899999999999996,0.307,0.316 -2016-11-22 18:00:00,0.26899999999999996,0.307,0.316 -2016-11-22 19:00:00,0.26899999999999996,0.307,0.316 -2016-11-22 20:00:00,0.268,0.307,0.316 -2016-11-22 21:00:00,0.266,0.307,0.316 -2016-11-22 22:00:00,0.265,0.307,0.316 -2016-11-22 23:00:00,0.265,0.307,0.316 -2016-11-23 00:00:00,0.265,0.307,0.316 -2016-11-23 01:00:00,0.265,0.307,0.316 -2016-11-23 02:00:00,0.265,0.308,0.316 -2016-11-23 03:00:00,0.265,0.307,0.316 -2016-11-23 04:00:00,0.265,0.307,0.316 -2016-11-23 05:00:00,0.265,0.307,0.316 -2016-11-23 06:00:00,0.265,0.307,0.316 -2016-11-23 07:00:00,0.265,0.307,0.316 -2016-11-23 08:00:00,0.265,0.307,0.316 -2016-11-23 09:00:00,0.265,0.307,0.316 -2016-11-23 10:00:00,0.264,0.307,0.316 -2016-11-23 11:00:00,0.264,0.307,0.316 -2016-11-23 12:00:00,0.264,0.307,0.316 -2016-11-23 13:00:00,0.264,0.307,0.316 -2016-11-23 14:00:00,0.264,0.307,0.316 -2016-11-23 15:00:00,0.264,0.307,0.316 -2016-11-23 16:00:00,0.264,0.307,0.316 -2016-11-23 17:00:00,0.264,0.307,0.316 -2016-11-23 18:00:00,0.264,0.307,0.315 -2016-11-23 19:00:00,0.264,0.307,0.315 -2016-11-23 20:00:00,0.264,0.307,0.315 -2016-11-23 21:00:00,0.264,0.307,0.315 -2016-11-23 22:00:00,0.264,0.307,0.315 -2016-11-23 23:00:00,0.264,0.307,0.315 -2016-11-24 00:00:00,0.264,0.307,0.315 -2016-11-24 01:00:00,0.264,0.307,0.315 -2016-11-24 02:00:00,0.264,0.307,0.315 -2016-11-24 03:00:00,0.264,0.307,0.315 -2016-11-24 04:00:00,0.264,0.307,0.315 -2016-11-24 05:00:00,0.264,0.307,0.315 -2016-11-24 06:00:00,0.264,0.307,0.315 -2016-11-24 07:00:00,0.264,0.307,0.315 -2016-11-24 08:00:00,0.264,0.307,0.315 -2016-11-24 09:00:00,0.264,0.307,0.315 -2016-11-24 10:00:00,0.264,0.307,0.315 -2016-11-24 11:00:00,0.264,0.307,0.315 -2016-11-24 12:00:00,0.264,0.307,0.315 -2016-11-24 13:00:00,0.264,0.307,0.315 -2016-11-24 14:00:00,0.264,0.307,0.315 -2016-11-24 15:00:00,0.264,0.306,0.315 -2016-11-24 16:00:00,0.264,0.306,0.315 -2016-11-24 17:00:00,0.264,0.306,0.315 -2016-11-24 18:00:00,0.264,0.306,0.315 -2016-11-24 19:00:00,0.264,0.306,0.315 -2016-11-24 20:00:00,0.264,0.306,0.315 -2016-11-24 21:00:00,0.264,0.307,0.315 -2016-11-24 22:00:00,0.264,0.307,0.315 -2016-11-24 23:00:00,0.264,0.307,0.315 -2016-11-25 00:00:00,0.264,0.307,0.315 -2016-11-25 01:00:00,0.264,0.307,0.315 -2016-11-25 02:00:00,0.264,0.307,0.314 -2016-11-25 03:00:00,0.264,0.307,0.314 -2016-11-25 04:00:00,0.264,0.307,0.314 -2016-11-25 05:00:00,0.264,0.307,0.314 -2016-11-25 06:00:00,0.264,0.307,0.314 -2016-11-25 07:00:00,0.264,0.307,0.314 -2016-11-25 08:00:00,0.263,0.307,0.314 -2016-11-25 09:00:00,0.264,0.307,0.314 -2016-11-25 10:00:00,0.264,0.307,0.314 -2016-11-25 11:00:00,0.264,0.307,0.314 -2016-11-25 12:00:00,0.264,0.307,0.314 -2016-11-25 13:00:00,0.263,0.307,0.314 -2016-11-25 14:00:00,0.263,0.307,0.314 -2016-11-25 15:00:00,0.263,0.307,0.314 -2016-11-25 16:00:00,0.263,0.307,0.314 -2016-11-25 17:00:00,0.263,0.307,0.314 -2016-11-25 18:00:00,0.263,0.307,0.313 -2016-11-25 19:00:00,0.263,0.307,0.314 -2016-11-25 20:00:00,0.263,0.307,0.313 -2016-11-25 21:00:00,0.263,0.307,0.313 -2016-11-25 22:00:00,0.263,0.307,0.314 -2016-11-25 23:00:00,0.263,0.307,0.313 -2016-11-26 00:00:00,0.263,0.307,0.313 -2016-11-26 01:00:00,0.263,0.307,0.313 -2016-11-26 02:00:00,0.263,0.306,0.313 -2016-11-26 03:00:00,0.263,0.306,0.313 -2016-11-26 04:00:00,0.263,0.306,0.313 -2016-11-26 05:00:00,0.263,0.306,0.313 -2016-11-26 06:00:00,0.263,0.307,0.313 -2016-11-26 07:00:00,0.263,0.307,0.313 -2016-11-26 08:00:00,0.263,0.307,0.313 -2016-11-26 09:00:00,0.263,0.307,0.313 -2016-11-26 10:00:00,0.263,0.307,0.313 -2016-11-26 11:00:00,0.263,0.307,0.313 -2016-11-26 12:00:00,0.263,0.306,0.313 -2016-11-26 13:00:00,0.263,0.306,0.313 -2016-11-26 14:00:00,0.263,0.306,0.313 -2016-11-26 15:00:00,0.263,0.306,0.313 -2016-11-26 16:00:00,0.263,0.306,0.313 -2016-11-26 17:00:00,0.263,0.304,0.313 -2016-11-26 18:00:00,0.263,0.304,0.313 -2016-11-26 19:00:00,0.263,0.304,0.313 -2016-11-26 20:00:00,0.263,0.304,0.313 -2016-11-26 21:00:00,0.263,0.304,0.313 -2016-11-26 22:00:00,0.263,0.305,0.313 -2016-11-26 23:00:00,0.263,0.305,0.313 -2016-11-27 00:00:00,0.263,0.305,0.313 -2016-11-27 01:00:00,0.263,0.305,0.313 -2016-11-27 02:00:00,0.263,0.305,0.313 -2016-11-27 03:00:00,0.263,0.306,0.313 -2016-11-27 04:00:00,0.263,0.305,0.313 -2016-11-27 05:00:00,0.263,0.306,0.313 -2016-11-27 06:00:00,0.263,0.305,0.313 -2016-11-27 07:00:00,0.263,0.305,0.313 -2016-11-27 08:00:00,0.263,0.305,0.313 -2016-11-27 09:00:00,0.263,0.305,0.313 -2016-11-27 10:00:00,0.263,0.305,0.313 -2016-11-27 11:00:00,0.263,0.305,0.313 -2016-11-27 12:00:00,0.263,0.305,0.313 -2016-11-27 13:00:00,0.263,0.305,0.313 -2016-11-27 14:00:00,0.263,0.305,0.313 -2016-11-27 15:00:00,0.263,0.305,0.313 -2016-11-27 16:00:00,0.263,0.305,0.313 -2016-11-27 17:00:00,0.263,0.305,0.313 -2016-11-27 18:00:00,0.262,0.305,0.313 -2016-11-27 19:00:00,0.262,0.304,0.313 -2016-11-27 20:00:00,0.262,0.305,0.312 -2016-11-27 21:00:00,0.262,0.305,0.312 -2016-11-27 22:00:00,0.262,0.305,0.312 -2016-11-27 23:00:00,0.262,0.305,0.312 -2016-11-28 00:00:00,0.262,0.305,0.312 -2016-11-28 01:00:00,0.262,0.305,0.312 -2016-11-28 02:00:00,0.262,0.305,0.312 -2016-11-28 03:00:00,0.262,0.305,0.312 -2016-11-28 04:00:00,0.262,0.305,0.312 -2016-11-28 05:00:00,0.262,0.306,0.312 -2016-11-28 06:00:00,0.262,0.305,0.312 -2016-11-28 07:00:00,0.262,0.305,0.312 -2016-11-28 08:00:00,0.262,0.305,0.311 -2016-11-28 09:00:00,0.262,0.305,0.311 -2016-11-28 10:00:00,0.262,0.305,0.311 -2016-11-28 11:00:00,0.262,0.305,0.312 -2016-11-28 12:00:00,0.262,0.305,0.312 -2016-11-28 13:00:00,0.262,0.305,0.312 -2016-11-28 14:00:00,0.262,0.305,0.312 -2016-11-28 15:00:00,0.262,0.305,0.312 -2016-11-28 16:00:00,0.262,0.305,0.312 -2016-11-28 17:00:00,0.262,0.304,0.312 -2016-11-28 18:00:00,0.262,0.304,0.312 -2016-11-28 19:00:00,0.261,0.304,0.311 -2016-11-28 20:00:00,0.261,0.304,0.311 -2016-11-28 21:00:00,0.261,0.305,0.311 -2016-11-28 22:00:00,0.261,0.305,0.311 -2016-11-28 23:00:00,0.261,0.305,0.311 -2016-11-29 00:00:00,0.261,0.305,0.311 -2016-11-29 01:00:00,0.261,0.305,0.311 -2016-11-29 02:00:00,0.261,0.305,0.311 -2016-11-29 03:00:00,0.261,0.305,0.31 -2016-11-29 04:00:00,0.261,0.305,0.31 -2016-11-29 05:00:00,0.26,0.304,0.31 -2016-11-29 06:00:00,0.261,0.304,0.31 -2016-11-29 07:00:00,0.26,0.304,0.31 -2016-11-29 08:00:00,0.26,0.304,0.31 -2016-11-29 09:00:00,0.26,0.304,0.31 -2016-11-29 10:00:00,0.26,0.304,0.31 -2016-11-29 11:00:00,0.26,0.304,0.31 -2016-11-29 12:00:00,0.26,0.304,0.31 -2016-11-29 13:00:00,0.26,0.304,0.31 -2016-11-29 14:00:00,0.26,0.304,0.311 -2016-11-29 15:00:00,0.26,0.304,0.311 -2016-11-29 16:00:00,0.26,0.304,0.311 -2016-11-29 17:00:00,0.26,0.304,0.31 -2016-11-29 18:00:00,0.26,0.304,0.31 -2016-11-29 19:00:00,0.26,0.304,0.31 -2016-11-29 20:00:00,0.26,0.304,0.31 -2016-11-29 21:00:00,0.26,0.304,0.31 -2016-11-29 22:00:00,0.259,0.304,0.31 -2016-11-29 23:00:00,0.259,0.304,0.31 -2016-11-30 00:00:00,0.259,0.304,0.31 -2016-11-30 01:00:00,0.259,0.304,0.31 -2016-11-30 02:00:00,0.259,0.304,0.31 -2016-11-30 03:00:00,0.259,0.304,0.31 -2016-11-30 04:00:00,0.259,0.304,0.31 -2016-11-30 05:00:00,0.259,0.304,0.31 -2016-11-30 06:00:00,0.259,0.304,0.31 -2016-11-30 07:00:00,0.259,0.304,0.31 -2016-11-30 08:00:00,0.259,0.304,0.31 -2016-11-30 09:00:00,0.259,0.304,0.31 -2016-11-30 10:00:00,0.259,0.304,0.31 -2016-11-30 11:00:00,0.259,0.304,0.31 -2016-11-30 12:00:00,0.259,0.304,0.31 -2016-11-30 13:00:00,0.259,0.304,0.31 -2016-11-30 14:00:00,0.259,0.304,0.31 -2016-11-30 15:00:00,0.259,0.304,0.31 -2016-11-30 16:00:00,0.259,0.304,0.31 -2016-11-30 17:00:00,0.259,0.304,0.31 -2016-11-30 18:00:00,0.259,0.304,0.31 -2016-11-30 19:00:00,0.259,0.304,0.31 -2016-11-30 20:00:00,0.259,0.304,0.31 -2016-11-30 21:00:00,0.259,0.304,0.31 -2016-11-30 22:00:00,0.259,0.304,0.31 -2016-11-30 23:00:00,0.259,0.304,0.31 -2016-12-01 00:00:00,0.258,0.304,0.31 -2016-12-01 01:00:00,0.259,0.304,0.31 -2016-12-01 02:00:00,0.259,0.304,0.31 -2016-12-01 03:00:00,0.259,0.304,0.31 -2016-12-01 04:00:00,0.259,0.304,0.31 -2016-12-01 05:00:00,0.259,0.304,0.31 -2016-12-01 06:00:00,0.259,0.304,0.31 -2016-12-01 07:00:00,0.259,0.304,0.31 -2016-12-01 08:00:00,0.259,0.304,0.31 -2016-12-01 09:00:00,0.259,0.304,0.31 -2016-12-01 10:00:00,0.259,0.304,0.31 -2016-12-01 11:00:00,0.259,0.304,0.31 -2016-12-01 12:00:00,0.259,0.304,0.31 -2016-12-01 13:00:00,0.259,0.304,0.31 -2016-12-01 14:00:00,0.259,0.304,0.31 -2016-12-01 15:00:00,0.259,0.304,0.31 -2016-12-01 16:00:00,0.259,0.303,0.31 -2016-12-01 17:00:00,0.259,0.302,0.311 -2016-12-01 18:00:00,0.259,0.3,0.311 -2016-12-01 19:00:00,0.259,0.3,0.311 -2016-12-01 20:00:00,0.259,0.3,0.311 -2016-12-01 21:00:00,0.259,0.302,0.311 -2016-12-01 22:00:00,0.259,0.303,0.311 -2016-12-01 23:00:00,0.259,0.303,0.311 -2016-12-02 00:00:00,0.259,0.303,0.311 -2016-12-02 01:00:00,0.259,0.304,0.311 -2016-12-02 02:00:00,0.259,0.303,0.311 -2016-12-02 03:00:00,0.259,0.303,0.311 -2016-12-02 04:00:00,0.259,0.304,0.311 -2016-12-02 05:00:00,0.259,0.304,0.311 -2016-12-02 06:00:00,0.259,0.304,0.311 -2016-12-02 07:00:00,0.26,0.304,0.311 -2016-12-02 08:00:00,0.259,0.303,0.311 -2016-12-02 09:00:00,0.26,0.303,0.311 -2016-12-02 10:00:00,0.26,0.303,0.311 -2016-12-02 11:00:00,0.26,0.303,0.311 -2016-12-02 12:00:00,0.26,0.303,0.311 -2016-12-02 13:00:00,0.26,0.303,0.311 -2016-12-02 14:00:00,0.26,0.303,0.313 -2016-12-02 15:00:00,0.26,0.303,0.313 -2016-12-02 16:00:00,0.26,0.302,0.313 -2016-12-02 17:00:00,0.26,0.3,0.313 -2016-12-02 18:00:00,0.26,0.3,0.313 -2016-12-02 19:00:00,0.26,0.3,0.312 -2016-12-02 20:00:00,0.26,0.3,0.312 -2016-12-02 21:00:00,0.26,0.302,0.311 -2016-12-02 22:00:00,0.261,0.303,0.311 -2016-12-02 23:00:00,0.26,0.304,0.311 -2016-12-03 00:00:00,0.26,0.304,0.311 -2016-12-03 01:00:00,0.261,0.304,0.311 -2016-12-03 02:00:00,0.261,0.304,0.311 -2016-12-03 03:00:00,0.261,0.304,0.311 -2016-12-03 04:00:00,0.26,0.304,0.311 -2016-12-03 05:00:00,0.26,0.304,0.311 -2016-12-03 06:00:00,0.261,0.304,0.311 -2016-12-03 07:00:00,0.26,0.304,0.31 -2016-12-03 08:00:00,0.261,0.304,0.31 -2016-12-03 09:00:00,0.26,0.303,0.31 -2016-12-03 10:00:00,0.26,0.302,0.31 -2016-12-03 11:00:00,0.26,0.302,0.31 -2016-12-03 12:00:00,0.26,0.3,0.31 -2016-12-03 13:00:00,0.26,0.3,0.311 -2016-12-03 14:00:00,0.261,0.3,0.311 -2016-12-03 15:00:00,0.261,0.3,0.312 -2016-12-03 16:00:00,0.261,0.3,0.312 -2016-12-03 17:00:00,0.26,0.3,0.311 -2016-12-03 18:00:00,0.261,0.3,0.311 -2016-12-03 19:00:00,0.26,0.3,0.31 -2016-12-03 20:00:00,0.26,0.3,0.31 -2016-12-03 21:00:00,0.26,0.3,0.31 -2016-12-03 22:00:00,0.26,0.3,0.31 -2016-12-03 23:00:00,0.26,0.3,0.31 -2016-12-04 00:00:00,0.26,0.3,0.31 -2016-12-04 01:00:00,0.26,0.301,0.31 -2016-12-04 02:00:00,0.26,0.302,0.31 -2016-12-04 03:00:00,0.26,0.3,0.31 -2016-12-04 04:00:00,0.26,0.3,0.31 -2016-12-04 05:00:00,0.26,0.3,0.31 -2016-12-04 06:00:00,0.26,0.3,0.31 -2016-12-04 07:00:00,0.26,0.302,0.31 -2016-12-04 08:00:00,0.26,0.304,0.31 -2016-12-04 09:00:00,0.26,0.304,0.31 -2016-12-04 10:00:00,0.26,0.304,0.31 -2016-12-04 11:00:00,0.26,0.304,0.31 -2016-12-04 12:00:00,0.259,0.304,0.31 -2016-12-04 13:00:00,0.26,0.304,0.31 -2016-12-04 14:00:00,0.26,0.304,0.31 -2016-12-04 15:00:00,0.26,0.302,0.31 -2016-12-04 16:00:00,0.26,0.3,0.31 -2016-12-04 17:00:00,0.26,0.3,0.31 -2016-12-04 18:00:00,0.259,0.3,0.31 -2016-12-04 19:00:00,0.259,0.3,0.31 -2016-12-04 20:00:00,0.259,0.3,0.31 -2016-12-04 21:00:00,0.259,0.301,0.31 -2016-12-04 22:00:00,0.259,0.304,0.31 -2016-12-04 23:00:00,0.259,0.304,0.31 -2016-12-05 00:00:00,0.259,0.304,0.31 -2016-12-05 01:00:00,0.259,0.302,0.31 -2016-12-05 02:00:00,0.259,0.3,0.31 -2016-12-05 03:00:00,0.259,0.3,0.31 -2016-12-05 04:00:00,0.259,0.3,0.31 -2016-12-05 05:00:00,0.259,0.3,0.309 -2016-12-05 06:00:00,0.259,0.3,0.309 -2016-12-05 07:00:00,0.259,0.3,0.309 -2016-12-05 08:00:00,0.259,0.3,0.309 -2016-12-05 09:00:00,0.259,0.3,0.309 -2016-12-05 10:00:00,0.258,0.3,0.309 -2016-12-05 11:00:00,0.258,0.3,0.309 -2016-12-05 12:00:00,0.258,0.3,0.31 -2016-12-05 13:00:00,0.258,0.3,0.31 -2016-12-05 14:00:00,0.258,0.301,0.31 -2016-12-05 15:00:00,0.259,0.302,0.31 -2016-12-05 16:00:00,0.258,0.302,0.31 -2016-12-05 17:00:00,0.258,0.302,0.31 -2016-12-05 18:00:00,0.258,0.302,0.31 -2016-12-05 19:00:00,0.258,0.302,0.309 -2016-12-05 20:00:00,0.258,0.303,0.309 -2016-12-05 21:00:00,0.258,0.303,0.309 -2016-12-05 22:00:00,0.258,0.303,0.309 -2016-12-05 23:00:00,0.258,0.303,0.31 -2016-12-06 00:00:00,0.258,0.303,0.31 -2016-12-06 01:00:00,0.258,0.304,0.31 -2016-12-06 02:00:00,0.258,0.304,0.31 -2016-12-06 03:00:00,0.258,0.304,0.31 -2016-12-06 04:00:00,0.258,0.303,0.31 -2016-12-06 05:00:00,0.258,0.303,0.31 -2016-12-06 06:00:00,0.258,0.303,0.31 -2016-12-06 07:00:00,0.258,0.303,0.31 -2016-12-06 08:00:00,0.258,0.303,0.31 -2016-12-06 09:00:00,0.258,0.303,0.31 -2016-12-06 10:00:00,0.258,0.302,0.31 -2016-12-06 11:00:00,0.258,0.302,0.31 -2016-12-06 12:00:00,0.258,0.302,0.31 -2016-12-06 13:00:00,0.258,0.302,0.31 -2016-12-06 14:00:00,0.258,0.302,0.31 -2016-12-06 15:00:00,0.258,0.302,0.31 -2016-12-06 16:00:00,0.258,0.302,0.31 -2016-12-06 17:00:00,0.258,0.302,0.31 -2016-12-06 18:00:00,0.258,0.302,0.31 -2016-12-06 19:00:00,0.258,0.302,0.31 -2016-12-06 20:00:00,0.258,0.302,0.31 -2016-12-06 21:00:00,0.258,0.303,0.309 -2016-12-06 22:00:00,0.258,0.303,0.309 -2016-12-06 23:00:00,0.258,0.303,0.309 -2016-12-07 00:00:00,0.258,0.303,0.309 -2016-12-07 01:00:00,0.258,0.303,0.31 -2016-12-07 02:00:00,0.258,0.303,0.309 -2016-12-07 03:00:00,0.258,0.303,0.309 -2016-12-07 04:00:00,0.258,0.303,0.309 -2016-12-07 05:00:00,0.258,0.303,0.309 -2016-12-07 06:00:00,0.258,0.303,0.309 -2016-12-07 07:00:00,0.258,0.303,0.31 -2016-12-07 08:00:00,0.258,0.304,0.31 -2016-12-07 09:00:00,0.258,0.304,0.309 -2016-12-07 10:00:00,0.258,0.304,0.31 -2016-12-07 11:00:00,0.258,0.304,0.31 -2016-12-07 12:00:00,0.258,0.304,0.31 -2016-12-07 13:00:00,0.258,0.304,0.31 -2016-12-07 14:00:00,0.259,0.304,0.311 -2016-12-07 15:00:00,0.259,0.303,0.311 -2016-12-07 16:00:00,0.258,0.303,0.311 -2016-12-07 17:00:00,0.259,0.304,0.311 -2016-12-07 18:00:00,0.259,0.304,0.31 -2016-12-07 19:00:00,0.259,0.304,0.31 -2016-12-07 20:00:00,0.258,0.302,0.31 -2016-12-07 21:00:00,0.259,0.302,0.31 -2016-12-07 22:00:00,0.259,0.302,0.31 -2016-12-07 23:00:00,0.258,0.302,0.31 -2016-12-08 00:00:00,0.259,0.302,0.31 -2016-12-08 01:00:00,0.259,0.302,0.31 -2016-12-08 02:00:00,0.259,0.302,0.31 -2016-12-08 03:00:00,0.258,0.302,0.309 -2016-12-08 04:00:00,0.258,0.302,0.309 -2016-12-08 05:00:00,0.258,0.302,0.309 -2016-12-08 06:00:00,0.258,0.302,0.309 -2016-12-08 07:00:00,0.258,0.302,0.309 -2016-12-08 08:00:00,0.259,0.302,0.309 -2016-12-08 09:00:00,0.259,0.302,0.309 -2016-12-08 10:00:00,0.258,0.302,0.309 -2016-12-08 11:00:00,0.259,0.301,0.309 -2016-12-08 12:00:00,0.258,0.301,0.31 -2016-12-08 13:00:00,0.259,0.301,0.31 -2016-12-08 14:00:00,0.259,0.302,0.31 -2016-12-08 15:00:00,0.259,0.302,0.31 -2016-12-08 16:00:00,0.259,0.302,0.311 -2016-12-08 17:00:00,0.259,0.302,0.311 -2016-12-08 18:00:00,0.259,0.303,0.31 -2016-12-08 19:00:00,0.26,0.313,0.31 -2016-12-08 20:00:00,0.259,0.314,0.31 -2016-12-08 21:00:00,0.259,0.314,0.31 -2016-12-08 22:00:00,0.259,0.314,0.31 -2016-12-08 23:00:00,0.259,0.314,0.31 -2016-12-09 00:00:00,0.259,0.314,0.31 -2016-12-09 01:00:00,0.259,0.314,0.31 -2016-12-09 02:00:00,0.259,0.314,0.31 -2016-12-09 03:00:00,0.259,0.314,0.31 -2016-12-09 04:00:00,0.26,0.314,0.31 -2016-12-09 05:00:00,0.26,0.314,0.31 -2016-12-09 06:00:00,0.26,0.314,0.311 -2016-12-09 07:00:00,0.26,0.314,0.311 -2016-12-09 08:00:00,0.26,0.314,0.31 -2016-12-09 09:00:00,0.26,0.314,0.31 -2016-12-09 10:00:00,0.26,0.314,0.31 -2016-12-09 11:00:00,0.26,0.314,0.31 -2016-12-09 12:00:00,0.26,0.314,0.31 -2016-12-09 13:00:00,0.26,0.314,0.31 -2016-12-09 14:00:00,0.26,0.314,0.31 -2016-12-09 15:00:00,0.26,0.314,0.31 -2016-12-09 16:00:00,0.26,0.314,0.31 -2016-12-09 17:00:00,0.26,0.314,0.31 -2016-12-09 18:00:00,0.26,0.314,0.31 -2016-12-09 19:00:00,0.26,0.314,0.31 -2016-12-09 20:00:00,0.26,0.314,0.31 -2016-12-09 21:00:00,0.26,0.314,0.31 -2016-12-09 22:00:00,0.26,0.314,0.31 -2016-12-09 23:00:00,0.26,0.314,0.31 -2016-12-10 00:00:00,0.26,0.314,0.31 -2016-12-10 01:00:00,0.26,0.314,0.31 -2016-12-10 02:00:00,0.26,0.314,0.31 -2016-12-10 03:00:00,0.26,0.314,0.31 -2016-12-10 04:00:00,0.26,0.314,0.31 -2016-12-10 05:00:00,0.26,0.314,0.31 -2016-12-10 06:00:00,0.26,0.314,0.31 -2016-12-10 07:00:00,0.26,0.314,0.31 -2016-12-10 08:00:00,0.261,0.313,0.31 -2016-12-10 09:00:00,0.26,0.313,0.31 -2016-12-10 10:00:00,0.261,0.313,0.31 -2016-12-10 11:00:00,0.261,0.313,0.311 -2016-12-10 12:00:00,0.261,0.312,0.311 -2016-12-10 13:00:00,0.261,0.312,0.311 -2016-12-10 14:00:00,0.261,0.312,0.311 -2016-12-10 15:00:00,0.261,0.312,0.311 -2016-12-10 16:00:00,0.261,0.312,0.311 -2016-12-10 17:00:00,0.261,0.312,0.311 -2016-12-10 18:00:00,0.261,0.312,0.311 -2016-12-10 19:00:00,0.261,0.312,0.31 -2016-12-10 20:00:00,0.261,0.312,0.311 -2016-12-10 21:00:00,0.261,0.312,0.311 -2016-12-10 22:00:00,0.261,0.312,0.311 -2016-12-10 23:00:00,0.261,0.312,0.311 -2016-12-11 00:00:00,0.261,0.312,0.311 -2016-12-11 01:00:00,0.261,0.312,0.311 -2016-12-11 02:00:00,0.261,0.312,0.311 -2016-12-11 03:00:00,0.261,0.312,0.311 -2016-12-11 04:00:00,0.261,0.312,0.311 -2016-12-11 05:00:00,0.261,0.312,0.311 -2016-12-11 06:00:00,0.261,0.312,0.311 -2016-12-11 07:00:00,0.261,0.312,0.311 -2016-12-11 08:00:00,0.261,0.312,0.311 -2016-12-11 09:00:00,0.262,0.312,0.311 -2016-12-11 10:00:00,0.262,0.312,0.311 -2016-12-11 11:00:00,0.262,0.311,0.311 -2016-12-11 12:00:00,0.261,0.31,0.311 -2016-12-11 13:00:00,0.261,0.31,0.311 -2016-12-11 14:00:00,0.262,0.31,0.311 -2016-12-11 15:00:00,0.261,0.31,0.311 -2016-12-11 16:00:00,0.262,0.31,0.311 -2016-12-11 17:00:00,0.262,0.31,0.311 -2016-12-11 18:00:00,0.262,0.31,0.311 -2016-12-11 19:00:00,0.262,0.311,0.311 -2016-12-11 20:00:00,0.262,0.311,0.311 -2016-12-11 21:00:00,0.262,0.311,0.31 -2016-12-11 22:00:00,0.262,0.311,0.31 -2016-12-11 23:00:00,0.262,0.31,0.31 -2016-12-12 00:00:00,0.262,0.31,0.311 -2016-12-12 01:00:00,0.262,0.31,0.311 -2016-12-12 02:00:00,0.262,0.31,0.311 -2016-12-12 03:00:00,0.262,0.31,0.311 -2016-12-12 04:00:00,0.262,0.31,0.311 -2016-12-12 05:00:00,0.262,0.31,0.311 -2016-12-12 06:00:00,0.262,0.31,0.311 -2016-12-12 07:00:00,0.262,0.31,0.311 -2016-12-12 08:00:00,0.262,0.31,0.311 -2016-12-12 09:00:00,0.262,0.31,0.31 -2016-12-12 10:00:00,0.262,0.31,0.311 -2016-12-12 11:00:00,0.262,0.31,0.311 -2016-12-12 12:00:00,0.262,0.31,0.311 -2016-12-12 13:00:00,0.262,0.31,0.311 -2016-12-12 14:00:00,0.262,0.31,0.31 -2016-12-12 15:00:00,0.262,0.31,0.31 -2016-12-12 16:00:00,0.262,0.31,0.31 -2016-12-12 17:00:00,0.262,0.31,0.31 -2016-12-12 18:00:00,0.262,0.31,0.31 -2016-12-12 19:00:00,0.262,0.31,0.31 -2016-12-12 20:00:00,0.262,0.31,0.31 -2016-12-12 21:00:00,0.262,0.31,0.31 -2016-12-12 22:00:00,0.262,0.31,0.31 -2016-12-12 23:00:00,0.262,0.31,0.31 -2016-12-13 00:00:00,0.262,0.31,0.31 -2016-12-13 01:00:00,0.262,0.31,0.31 -2016-12-13 02:00:00,0.262,0.31,0.31 -2016-12-13 03:00:00,0.262,0.31,0.31 -2016-12-13 04:00:00,0.262,0.31,0.31 -2016-12-13 05:00:00,0.262,0.312,0.31 -2016-12-13 06:00:00,0.262,0.312,0.31 -2016-12-13 07:00:00,0.262,0.312,0.31 -2016-12-13 08:00:00,0.262,0.312,0.31 -2016-12-13 09:00:00,0.262,0.312,0.31 -2016-12-13 10:00:00,0.263,0.312,0.31 -2016-12-13 11:00:00,0.262,0.31,0.31 -2016-12-13 12:00:00,0.262,0.31,0.31 -2016-12-13 13:00:00,0.263,0.31,0.31 -2016-12-13 14:00:00,0.262,0.31,0.31 -2016-12-13 15:00:00,0.263,0.31,0.31 -2016-12-13 16:00:00,0.262,0.31,0.311 -2016-12-13 17:00:00,0.262,0.31,0.311 -2016-12-13 18:00:00,0.262,0.31,0.312 -2016-12-13 19:00:00,0.262,0.31,0.312 -2016-12-13 20:00:00,0.262,0.31,0.312 -2016-12-13 21:00:00,0.262,0.31,0.312 -2016-12-13 22:00:00,0.262,0.31,0.312 -2016-12-13 23:00:00,0.262,0.31,0.312 -2016-12-14 00:00:00,0.262,0.31,0.312 -2016-12-14 01:00:00,0.262,0.31,0.312 -2016-12-14 02:00:00,0.262,0.311,0.312 -2016-12-14 03:00:00,0.262,0.31,0.311 -2016-12-14 04:00:00,0.262,0.311,0.312 -2016-12-14 05:00:00,0.262,0.31,0.312 -2016-12-14 06:00:00,0.261,0.31,0.313 -2016-12-14 07:00:00,0.261,0.31,0.313 -2016-12-14 08:00:00,0.264,0.31,0.314 -2016-12-14 09:00:00,0.26899999999999996,0.31,0.314 -2016-12-14 10:00:00,0.275,0.31,0.314 -2016-12-14 11:00:00,0.27699999999999997,0.31,0.313 -2016-12-14 12:00:00,0.278,0.31,0.313 -2016-12-14 13:00:00,0.278,0.31,0.313 -2016-12-14 14:00:00,0.278,0.31,0.313 -2016-12-14 15:00:00,0.27899999999999997,0.309,0.313 -2016-12-14 16:00:00,0.278,0.31,0.313 -2016-12-14 17:00:00,0.278,0.31,0.313 -2016-12-14 18:00:00,0.278,0.31,0.313 -2016-12-14 19:00:00,0.278,0.31,0.313 -2016-12-14 20:00:00,0.278,0.31,0.313 -2016-12-14 21:00:00,0.278,0.31,0.313 -2016-12-14 22:00:00,0.278,0.31,0.313 -2016-12-14 23:00:00,0.278,0.31,0.313 -2016-12-15 00:00:00,0.278,0.31,0.313 -2016-12-15 01:00:00,0.278,0.31,0.313 -2016-12-15 02:00:00,0.278,0.31,0.313 -2016-12-15 03:00:00,0.278,0.31,0.313 -2016-12-15 04:00:00,0.278,0.31,0.313 -2016-12-15 05:00:00,0.278,0.31,0.313 -2016-12-15 06:00:00,0.278,0.31,0.313 -2016-12-15 07:00:00,0.278,0.31,0.313 -2016-12-15 08:00:00,0.278,0.31,0.313 -2016-12-15 09:00:00,0.278,0.31,0.313 -2016-12-15 10:00:00,0.278,0.31,0.313 -2016-12-15 11:00:00,0.278,0.31,0.313 -2016-12-15 12:00:00,0.278,0.31,0.313 -2016-12-15 13:00:00,0.278,0.31,0.313 -2016-12-15 14:00:00,0.278,0.31,0.313 -2016-12-15 15:00:00,0.278,0.31,0.313 -2016-12-15 16:00:00,0.278,0.31,0.313 -2016-12-15 17:00:00,0.275,0.309,0.313 -2016-12-15 18:00:00,0.275,0.309,0.313 -2016-12-15 19:00:00,0.275,0.309,0.313 -2016-12-15 20:00:00,0.275,0.309,0.313 -2016-12-15 21:00:00,0.27399999999999997,0.309,0.312 -2016-12-15 22:00:00,0.27399999999999997,0.309,0.312 -2016-12-15 23:00:00,0.27399999999999997,0.309,0.312 -2016-12-16 00:00:00,0.27399999999999997,0.309,0.312 -2016-12-16 01:00:00,0.27399999999999997,0.309,0.312 -2016-12-16 02:00:00,0.27399999999999997,0.309,0.312 -2016-12-16 03:00:00,0.27399999999999997,0.309,0.312 -2016-12-16 04:00:00,0.27399999999999997,0.309,0.312 -2016-12-16 05:00:00,0.27399999999999997,0.309,0.312 -2016-12-16 06:00:00,0.273,0.309,0.312 -2016-12-16 07:00:00,0.273,0.309,0.312 -2016-12-16 08:00:00,0.273,0.309,0.312 -2016-12-16 09:00:00,0.273,0.309,0.312 -2016-12-16 10:00:00,0.273,0.309,0.311 -2016-12-16 11:00:00,0.273,0.309,0.311 -2016-12-16 12:00:00,0.273,0.309,0.311 -2016-12-16 13:00:00,0.273,0.309,0.311 -2016-12-16 14:00:00,0.273,0.309,0.311 -2016-12-16 15:00:00,0.272,0.309,0.311 -2016-12-16 16:00:00,0.272,0.308,0.311 -2016-12-16 17:00:00,0.272,0.307,0.311 -2016-12-16 18:00:00,0.272,0.306,0.311 -2016-12-16 19:00:00,0.272,0.305,0.311 -2016-12-16 20:00:00,0.272,0.305,0.311 -2016-12-16 21:00:00,0.271,0.305,0.311 -2016-12-16 22:00:00,0.271,0.305,0.311 -2016-12-16 23:00:00,0.271,0.305,0.311 -2016-12-17 00:00:00,0.271,0.305,0.311 -2016-12-17 01:00:00,0.271,0.305,0.311 -2016-12-17 02:00:00,0.271,0.305,0.311 -2016-12-17 03:00:00,0.271,0.306,0.31 -2016-12-17 04:00:00,0.271,0.306,0.31 -2016-12-17 05:00:00,0.271,0.307,0.31 -2016-12-17 06:00:00,0.27,0.307,0.31 -2016-12-17 07:00:00,0.27,0.307,0.31 -2016-12-17 08:00:00,0.27,0.307,0.31 -2016-12-17 09:00:00,0.27,0.307,0.31 -2016-12-17 10:00:00,0.27,0.307,0.31 -2016-12-17 11:00:00,0.27,0.308,0.31 -2016-12-17 12:00:00,0.27,0.309,0.31 -2016-12-17 13:00:00,0.27,0.309,0.31 -2016-12-17 14:00:00,0.27,0.309,0.31 -2016-12-17 15:00:00,0.26899999999999996,0.309,0.31 -2016-12-17 16:00:00,0.26899999999999996,0.31,0.31 -2016-12-17 17:00:00,0.26899999999999996,0.31,0.31 -2016-12-17 18:00:00,0.26899999999999996,0.31,0.31 -2016-12-17 19:00:00,0.26899999999999996,0.311,0.31 -2016-12-17 20:00:00,0.26899999999999996,0.312,0.31 -2016-12-17 21:00:00,0.26899999999999996,0.312,0.31 -2016-12-17 22:00:00,0.26899999999999996,0.313,0.31 -2016-12-17 23:00:00,0.26899999999999996,0.314,0.31 -2016-12-18 00:00:00,0.26899999999999996,0.314,0.31 -2016-12-18 01:00:00,0.26899999999999996,0.314,0.31 -2016-12-18 02:00:00,0.26899999999999996,0.314,0.31 -2016-12-18 03:00:00,0.26899999999999996,0.314,0.31 -2016-12-18 04:00:00,0.268,0.314,0.31 -2016-12-18 05:00:00,0.268,0.314,0.31 -2016-12-18 06:00:00,0.268,0.314,0.31 -2016-12-18 07:00:00,0.268,0.315,0.31 -2016-12-18 08:00:00,0.268,0.314,0.31 -2016-12-18 09:00:00,0.268,0.313,0.31 -2016-12-18 10:00:00,0.268,0.311,0.31 -2016-12-18 11:00:00,0.268,0.312,0.31 -2016-12-18 12:00:00,0.268,0.312,0.31 -2016-12-18 13:00:00,0.268,0.311,0.31 -2016-12-18 14:00:00,0.268,0.31,0.31 -2016-12-18 15:00:00,0.268,0.31,0.31 -2016-12-18 16:00:00,0.268,0.31,0.31 -2016-12-18 17:00:00,0.268,0.31,0.31 -2016-12-18 18:00:00,0.268,0.31,0.31 -2016-12-18 19:00:00,0.268,0.312,0.31 -2016-12-18 20:00:00,0.268,0.312,0.31 -2016-12-18 21:00:00,0.268,0.312,0.31 -2016-12-18 22:00:00,0.268,0.312,0.31 -2016-12-18 23:00:00,0.267,0.312,0.31 -2016-12-19 00:00:00,0.267,0.312,0.31 -2016-12-19 01:00:00,0.267,0.312,0.31 -2016-12-19 02:00:00,0.267,0.313,0.31 -2016-12-19 03:00:00,0.267,0.313,0.31 -2016-12-19 04:00:00,0.267,0.314,0.31 -2016-12-19 05:00:00,0.267,0.313,0.31 -2016-12-19 06:00:00,0.267,0.313,0.31 -2016-12-19 07:00:00,0.267,0.314,0.31 -2016-12-19 08:00:00,0.267,0.314,0.31 -2016-12-19 09:00:00,0.267,0.314,0.31 -2016-12-19 10:00:00,0.267,0.314,0.31 -2016-12-19 11:00:00,0.267,0.314,0.31 -2016-12-19 12:00:00,0.267,0.314,0.31 -2016-12-19 13:00:00,0.267,0.314,0.31 -2016-12-19 14:00:00,0.267,0.313,0.31 -2016-12-19 15:00:00,0.267,0.314,0.31 -2016-12-19 16:00:00,0.267,0.314,0.309 -2016-12-19 17:00:00,0.267,0.314,0.309 -2016-12-19 18:00:00,0.267,0.314,0.309 -2016-12-19 19:00:00,0.267,0.314,0.309 -2016-12-19 20:00:00,0.267,0.314,0.309 -2016-12-19 21:00:00,0.267,0.314,0.309 -2016-12-19 22:00:00,0.267,0.314,0.309 -2016-12-19 23:00:00,0.267,0.315,0.309 -2016-12-20 00:00:00,0.267,0.315,0.309 -2016-12-20 01:00:00,0.267,0.315,0.309 -2016-12-20 02:00:00,0.267,0.315,0.309 -2016-12-20 03:00:00,0.266,0.315,0.309 -2016-12-20 04:00:00,0.267,0.314,0.309 -2016-12-20 05:00:00,0.267,0.314,0.309 -2016-12-20 06:00:00,0.266,0.314,0.309 -2016-12-20 07:00:00,0.267,0.314,0.309 -2016-12-20 08:00:00,0.267,0.314,0.309 -2016-12-20 09:00:00,0.267,0.314,0.309 -2016-12-20 10:00:00,0.266,0.314,0.309 -2016-12-20 11:00:00,0.267,0.314,0.309 -2016-12-20 12:00:00,0.267,0.314,0.309 -2016-12-20 13:00:00,0.267,0.314,0.309 -2016-12-20 14:00:00,0.267,0.314,0.309 -2016-12-20 15:00:00,0.266,0.314,0.309 -2016-12-20 16:00:00,0.266,0.314,0.309 -2016-12-20 17:00:00,0.266,0.314,0.309 -2016-12-20 18:00:00,0.266,0.314,0.309 -2016-12-20 19:00:00,0.266,0.315,0.309 -2016-12-20 20:00:00,0.266,0.315,0.309 -2016-12-20 21:00:00,0.266,0.316,0.309 -2016-12-20 22:00:00,0.266,0.317,0.308 -2016-12-20 23:00:00,0.266,0.317,0.308 -2016-12-21 00:00:00,0.266,0.317,0.308 -2016-12-21 01:00:00,0.266,0.317,0.308 -2016-12-21 02:00:00,0.266,0.317,0.308 -2016-12-21 03:00:00,0.266,0.317,0.308 -2016-12-21 04:00:00,0.266,0.317,0.308 -2016-12-21 05:00:00,0.266,0.317,0.308 -2016-12-21 06:00:00,0.266,0.317,0.308 -2016-12-21 07:00:00,0.265,0.317,0.308 -2016-12-21 08:00:00,0.265,0.317,0.308 -2016-12-21 09:00:00,0.266,0.317,0.308 -2016-12-21 10:00:00,0.266,0.317,0.308 -2016-12-21 11:00:00,0.265,0.317,0.308 -2016-12-21 12:00:00,0.266,0.317,0.308 -2016-12-21 13:00:00,0.265,0.317,0.309 -2016-12-21 14:00:00,0.265,0.317,0.309 -2016-12-21 15:00:00,0.265,0.317,0.309 -2016-12-21 16:00:00,0.265,0.317,0.309 -2016-12-21 17:00:00,0.265,0.317,0.309 -2016-12-21 18:00:00,0.265,0.317,0.309 -2016-12-21 19:00:00,0.265,0.317,0.309 -2016-12-21 20:00:00,0.265,0.317,0.309 -2016-12-21 21:00:00,0.265,0.317,0.309 -2016-12-21 22:00:00,0.265,0.317,0.309 -2016-12-21 23:00:00,0.265,0.317,0.309 -2016-12-22 00:00:00,0.265,0.317,0.309 -2016-12-22 01:00:00,0.265,0.317,0.309 -2016-12-22 02:00:00,0.265,0.317,0.309 -2016-12-22 03:00:00,0.265,0.317,0.309 -2016-12-22 04:00:00,0.265,0.316,0.309 -2016-12-22 05:00:00,0.265,0.316,0.309 -2016-12-22 06:00:00,0.265,0.316,0.309 -2016-12-22 07:00:00,0.265,0.316,0.309 -2016-12-22 08:00:00,0.265,0.316,0.309 -2016-12-22 09:00:00,0.265,0.316,0.309 -2016-12-22 10:00:00,0.265,0.316,0.309 -2016-12-22 11:00:00,0.265,0.316,0.309 -2016-12-22 12:00:00,0.265,0.316,0.309 -2016-12-22 13:00:00,0.265,0.316,0.31 -2016-12-22 14:00:00,0.263,0.315,0.313 -2016-12-22 15:00:00,0.263,0.316,0.313 -2016-12-22 16:00:00,0.262,0.316,0.313 -2016-12-22 17:00:00,0.262,0.316,0.313 -2016-12-22 18:00:00,0.262,0.316,0.313 -2016-12-22 19:00:00,0.262,0.316,0.313 -2016-12-22 20:00:00,0.263,0.317,0.314 -2016-12-22 21:00:00,0.263,0.316,0.314 -2016-12-22 22:00:00,0.264,0.316,0.313 -2016-12-22 23:00:00,0.265,0.316,0.314 -2016-12-23 00:00:00,0.265,0.316,0.313 -2016-12-23 01:00:00,0.266,0.316,0.314 -2016-12-23 02:00:00,0.266,0.316,0.313 -2016-12-23 03:00:00,0.267,0.316,0.313 -2016-12-23 04:00:00,0.267,0.316,0.313 -2016-12-23 05:00:00,0.267,0.315,0.313 -2016-12-23 06:00:00,0.267,0.316,0.313 -2016-12-23 07:00:00,0.267,0.316,0.313 -2016-12-23 08:00:00,0.267,0.316,0.313 -2016-12-23 09:00:00,0.267,0.316,0.313 -2016-12-23 10:00:00,0.267,0.316,0.313 -2016-12-23 11:00:00,0.268,0.315,0.313 -2016-12-23 12:00:00,0.268,0.315,0.313 -2016-12-23 13:00:00,0.268,0.315,0.313 -2016-12-23 14:00:00,0.268,0.315,0.313 -2016-12-23 15:00:00,0.26899999999999996,0.315,0.313 -2016-12-23 16:00:00,0.26899999999999996,0.314,0.313 -2016-12-23 17:00:00,0.26899999999999996,0.314,0.313 -2016-12-23 18:00:00,0.26899999999999996,0.314,0.313 -2016-12-23 19:00:00,0.26899999999999996,0.314,0.313 -2016-12-23 20:00:00,0.26899999999999996,0.314,0.313 -2016-12-23 21:00:00,0.26899999999999996,0.314,0.313 -2016-12-23 22:00:00,0.26899999999999996,0.314,0.313 -2016-12-23 23:00:00,0.26899999999999996,0.314,0.313 -2016-12-24 00:00:00,0.26899999999999996,0.314,0.313 -2016-12-24 01:00:00,0.26899999999999996,0.314,0.313 -2016-12-24 02:00:00,0.26899999999999996,0.314,0.313 -2016-12-24 03:00:00,0.26899999999999996,0.314,0.313 -2016-12-24 04:00:00,0.26899999999999996,0.314,0.313 -2016-12-24 05:00:00,0.268,0.314,0.313 -2016-12-24 06:00:00,0.268,0.314,0.313 -2016-12-24 07:00:00,0.266,0.314,0.314 -2016-12-24 08:00:00,0.265,0.314,0.314 -2016-12-24 09:00:00,0.266,0.314,0.314 -2016-12-24 10:00:00,0.266,0.314,0.313 -2016-12-24 11:00:00,0.266,0.314,0.313 -2016-12-24 12:00:00,0.266,0.314,0.313 -2016-12-24 13:00:00,0.267,0.313,0.313 -2016-12-24 14:00:00,0.267,0.313,0.313 -2016-12-24 15:00:00,0.268,0.312,0.313 -2016-12-24 16:00:00,0.26899999999999996,0.312,0.313 -2016-12-24 17:00:00,0.26899999999999996,0.312,0.313 -2016-12-24 18:00:00,0.26899999999999996,0.312,0.313 -2016-12-24 19:00:00,0.26899999999999996,0.312,0.313 -2016-12-24 20:00:00,0.26899999999999996,0.312,0.313 -2016-12-24 21:00:00,0.26899999999999996,0.312,0.313 -2016-12-24 22:00:00,0.26899999999999996,0.312,0.312 -2016-12-24 23:00:00,0.26899999999999996,0.312,0.312 -2016-12-25 00:00:00,0.26899999999999996,0.312,0.312 -2016-12-25 01:00:00,0.26899999999999996,0.312,0.312 -2016-12-25 02:00:00,0.268,0.312,0.313 -2016-12-25 03:00:00,0.267,0.312,0.313 -2016-12-25 04:00:00,0.266,0.312,0.314 -2016-12-25 05:00:00,0.265,0.312,0.314 -2016-12-25 06:00:00,0.265,0.312,0.314 -2016-12-25 07:00:00,0.265,0.312,0.314 -2016-12-25 08:00:00,0.265,0.312,0.314 -2016-12-25 09:00:00,0.265,0.311,0.314 -2016-12-25 10:00:00,0.265,0.311,0.314 -2016-12-25 11:00:00,0.265,0.311,0.314 -2016-12-25 12:00:00,0.265,0.311,0.313 -2016-12-25 13:00:00,0.265,0.31,0.313 -2016-12-25 14:00:00,0.266,0.31,0.313 -2016-12-25 15:00:00,0.266,0.31,0.313 -2016-12-25 16:00:00,0.267,0.31,0.313 -2016-12-25 17:00:00,0.267,0.31,0.313 -2016-12-25 18:00:00,0.266,0.31,0.313 -2016-12-25 19:00:00,0.267,0.31,0.313 -2016-12-25 20:00:00,0.267,0.31,0.313 -2016-12-25 21:00:00,0.267,0.31,0.313 -2016-12-25 22:00:00,0.267,0.31,0.313 -2016-12-25 23:00:00,0.266,0.31,0.313 -2016-12-26 00:00:00,0.266,0.31,0.313 -2016-12-26 01:00:00,0.265,0.31,0.313 -2016-12-26 02:00:00,0.265,0.31,0.313 -2016-12-26 03:00:00,0.265,0.31,0.313 -2016-12-26 04:00:00,0.265,0.31,0.313 -2016-12-26 05:00:00,0.265,0.31,0.313 -2016-12-26 06:00:00,0.265,0.31,0.313 -2016-12-26 07:00:00,0.263,0.31,0.314 -2016-12-26 08:00:00,0.263,0.31,0.314 -2016-12-26 09:00:00,0.263,0.31,0.314 -2016-12-26 10:00:00,0.263,0.31,0.314 -2016-12-26 11:00:00,0.263,0.31,0.314 -2016-12-26 12:00:00,0.263,0.31,0.314 -2016-12-26 13:00:00,0.263,0.31,0.313 -2016-12-26 14:00:00,0.263,0.31,0.314 -2016-12-26 15:00:00,0.264,0.31,0.313 -2016-12-26 16:00:00,0.265,0.31,0.313 -2016-12-26 17:00:00,0.266,0.31,0.313 -2016-12-26 18:00:00,0.267,0.31,0.313 -2016-12-26 19:00:00,0.268,0.31,0.313 -2016-12-26 20:00:00,0.26899999999999996,0.31,0.312 -2016-12-26 21:00:00,0.27,0.31,0.312 -2016-12-26 22:00:00,0.27,0.31,0.312 -2016-12-26 23:00:00,0.27,0.31,0.312 -2016-12-27 00:00:00,0.27,0.31,0.312 -2016-12-27 01:00:00,0.27,0.31,0.312 -2016-12-27 02:00:00,0.27,0.31,0.312 -2016-12-27 03:00:00,0.27,0.31,0.312 -2016-12-27 04:00:00,0.27,0.31,0.311 -2016-12-27 05:00:00,0.27,0.31,0.311 -2016-12-27 06:00:00,0.27,0.31,0.311 -2016-12-27 07:00:00,0.27,0.31,0.311 -2016-12-27 08:00:00,0.27,0.31,0.311 -2016-12-27 09:00:00,0.27,0.31,0.311 -2016-12-27 10:00:00,0.27,0.31,0.311 -2016-12-27 11:00:00,0.27,0.31,0.311 -2016-12-27 12:00:00,0.27,0.31,0.311 -2016-12-27 13:00:00,0.27,0.309,0.31 -2016-12-27 14:00:00,0.27,0.309,0.31 -2016-12-27 15:00:00,0.27,0.309,0.31 -2016-12-27 16:00:00,0.27,0.309,0.31 -2016-12-27 17:00:00,0.27,0.309,0.31 -2016-12-27 18:00:00,0.27,0.309,0.31 -2016-12-27 19:00:00,0.26899999999999996,0.309,0.31 -2016-12-27 20:00:00,0.26899999999999996,0.309,0.31 -2016-12-27 21:00:00,0.26899999999999996,0.309,0.31 -2016-12-27 22:00:00,0.26899999999999996,0.309,0.31 -2016-12-27 23:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 00:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 01:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 02:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 03:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 04:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 05:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 06:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 07:00:00,0.26899999999999996,0.309,0.31 -2016-12-28 08:00:00,0.268,0.309,0.31 -2016-12-28 09:00:00,0.268,0.309,0.309 -2016-12-28 10:00:00,0.268,0.309,0.309 -2016-12-28 11:00:00,0.268,0.309,0.309 -2016-12-28 12:00:00,0.268,0.309,0.309 -2016-12-28 13:00:00,0.268,0.308,0.309 -2016-12-28 14:00:00,0.268,0.306,0.309 -2016-12-28 15:00:00,0.268,0.305,0.309 -2016-12-28 16:00:00,0.268,0.306,0.309 -2016-12-28 17:00:00,0.268,0.306,0.309 -2016-12-28 18:00:00,0.268,0.306,0.309 -2016-12-28 19:00:00,0.268,0.307,0.309 -2016-12-28 20:00:00,0.268,0.307,0.309 -2016-12-28 21:00:00,0.268,0.307,0.309 -2016-12-28 22:00:00,0.268,0.307,0.309 -2016-12-28 23:00:00,0.267,0.307,0.309 -2016-12-29 00:00:00,0.267,0.307,0.309 -2016-12-29 01:00:00,0.267,0.307,0.309 -2016-12-29 02:00:00,0.267,0.307,0.309 -2016-12-29 03:00:00,0.267,0.307,0.309 -2016-12-29 04:00:00,0.267,0.307,0.308 -2016-12-29 05:00:00,0.267,0.307,0.308 -2016-12-29 06:00:00,0.267,0.307,0.308 -2016-12-29 07:00:00,0.267,0.306,0.308 -2016-12-29 08:00:00,0.267,0.304,0.308 -2016-12-29 09:00:00,0.267,0.305,0.308 -2016-12-29 10:00:00,0.267,0.304,0.308 -2016-12-29 11:00:00,0.267,0.304,0.308 -2016-12-29 12:00:00,0.267,0.304,0.309 -2016-12-29 13:00:00,0.267,0.304,0.309 -2016-12-29 14:00:00,0.267,0.304,0.309 -2016-12-29 15:00:00,0.267,0.304,0.309 -2016-12-29 16:00:00,0.267,0.299,0.309 -2016-12-29 17:00:00,0.267,0.29600000000000004,0.309 -2016-12-29 18:00:00,0.267,0.298,0.308 -2016-12-29 19:00:00,0.267,0.3,0.308 -2016-12-29 20:00:00,0.267,0.302,0.308 -2016-12-29 21:00:00,0.266,0.302,0.308 -2016-12-29 22:00:00,0.267,0.301,0.308 -2016-12-29 23:00:00,0.266,0.298,0.308 -2016-12-30 00:00:00,0.266,0.301,0.308 -2016-12-30 01:00:00,0.266,0.305,0.308 -2016-12-30 02:00:00,0.266,0.305,0.308 -2016-12-30 03:00:00,0.266,0.309,0.308 -2016-12-30 04:00:00,0.266,0.31,0.308 -2016-12-30 05:00:00,0.266,0.311,0.307 -2016-12-30 06:00:00,0.266,0.312,0.308 -2016-12-30 07:00:00,0.266,0.314,0.308 -2016-12-30 08:00:00,0.266,0.315,0.308 -2016-12-30 09:00:00,0.266,0.315,0.308 -2016-12-30 10:00:00,0.266,0.316,0.308 -2016-12-30 11:00:00,0.266,0.317,0.308 -2016-12-30 12:00:00,0.266,0.317,0.308 -2016-12-30 13:00:00,0.266,0.317,0.308 -2016-12-30 14:00:00,0.266,0.317,0.308 -2016-12-30 15:00:00,0.265,0.317,0.308 -2016-12-30 16:00:00,0.265,0.317,0.308 -2016-12-30 17:00:00,0.265,0.318,0.308 -2016-12-30 18:00:00,0.265,0.319,0.308 -2016-12-30 19:00:00,0.265,0.319,0.307 -2016-12-30 20:00:00,0.265,0.319,0.307 -2016-12-30 21:00:00,0.264,0.319,0.307 -2016-12-30 22:00:00,0.265,0.319,0.308 -2016-12-30 23:00:00,0.265,0.319,0.308 -2016-12-31 00:00:00,0.264,0.319,0.308 -2016-12-31 01:00:00,0.265,0.319,0.307 -2016-12-31 02:00:00,0.265,0.319,0.307 -2016-12-31 03:00:00,0.264,0.319,0.308 -2016-12-31 04:00:00,0.264,0.319,0.308 -2016-12-31 05:00:00,0.264,0.319,0.308 -2016-12-31 06:00:00,0.264,0.319,0.308 -2016-12-31 07:00:00,0.264,0.319,0.308 -2016-12-31 08:00:00,0.264,0.319,0.308 -2016-12-31 09:00:00,0.264,0.319,0.308 -2016-12-31 10:00:00,0.264,0.318,0.308 -2016-12-31 11:00:00,0.264,0.317,0.308 -2016-12-31 12:00:00,0.264,0.317,0.308 -2016-12-31 13:00:00,0.264,0.317,0.308 -2016-12-31 14:00:00,0.264,0.317,0.308 -2016-12-31 15:00:00,0.264,0.316,0.308 -2016-12-31 16:00:00,0.264,0.316,0.308 -2016-12-31 17:00:00,0.264,0.315,0.308 -2016-12-31 18:00:00,0.264,0.315,0.308 -2016-12-31 19:00:00,0.264,0.315,0.308 -2016-12-31 20:00:00,0.264,0.315,0.308 -2016-12-31 21:00:00,0.264,0.315,0.308 -2016-12-31 22:00:00,0.264,0.315,0.308 -2016-12-31 23:00:00,0.264,0.315,0.308 diff --git a/spotpy/examples/hymod_exe/hymod_input.csv b/spotpy/examples/hymod_exe/hymod_input.csv deleted file mode 100644 index 3c158e03..00000000 --- a/spotpy/examples/hymod_exe/hymod_input.csv +++ /dev/null @@ -1,1828 +0,0 @@ -Date;rainfall[mm];TURC [mm d-1];Discharge[ls-1] -01.01.2012;2.052861283;0.35;nan -02.01.2012;0;0.26;nan -03.01.2012;0.58456085;0.39;nan -04.01.2012;0.123880377;0.53;nan -05.01.2012;0;0.44;nan -06.01.2012;0;0.63;nan -07.01.2012;0;0.42;nan -08.01.2012;0;0.39;nan -09.01.2012;1.163450614;0.29;nan -10.01.2012;0.110276668;0.27;nan -11.01.2012;0;0;nan -12.01.2012;0;0;nan -13.01.2012;0;0;nan -14.01.2012;0;0;nan -15.01.2012;0;0;nan -16.01.2012;0;0;nan -17.01.2012;0;0;nan -18.01.2012;1.219186104;0;nan -19.01.2012;11.18647129;0.34;nan -20.01.2012;6.105975569;0.23;nan -21.01.2012;4.373221849;0.29;nan -22.01.2012;5.178867935;0.35;nan -23.01.2012;2.623482708;0.31;nan -24.01.2012;1.369532702;0.17;nan -25.01.2012;0.100778681;0;nan -26.01.2012;0;0;nan -27.01.2012;0.636631682;0.03;nan -28.01.2012;0;0.05;nan -29.01.2012;0;0;nan -30.01.2012;0;0;nan -31.01.2012;0;0;nan -01.02.2012;0;0;nan -02.02.2012;0;0;nan -03.02.2012;0;0;nan -04.02.2012;0;0;nan -05.02.2012;0;0;nan -06.02.2012;0;0;nan -07.02.2012;0;0;nan -08.02.2012;0;0;nan -09.02.2012;0;0;nan -10.02.2012;0;0;nan -11.02.2012;0;0;nan -12.02.2012;0;0;nan -13.02.2012;0;0;nan -14.02.2012;0;0.02;nan -15.02.2012;2.17738637;0.32;nan -16.02.2012;0;0.39;nan -17.02.2012;0.2499812;0.41;nan -18.02.2012;0.931498122;0.43;nan -19.02.2012;1.746463163;0.53;nan -20.02.2012;0;0.04;nan -21.02.2012;0;0.06;nan -22.02.2012;0;0.45;nan -23.02.2012;0;0.47;nan -24.02.2012;0;0.62;nan -25.02.2012;0;0.94;nan -26.02.2012;0;0.59;nan -27.02.2012;0;0.34;nan -28.02.2012;0;0.62;nan -29.02.2012;0.207535518;1.04;nan -01.03.2012;0;0.63;nan -02.03.2012;0.100209282;0.58;nan -03.03.2012;0.102361883;0.54;nan -04.03.2012;0;0.65;nan -05.03.2012;0.650417002;0.56;nan -06.03.2012;0;1.06;nan -07.03.2012;1.16677932;0.33;nan -08.03.2012;0.620345275;0.81;nan -09.03.2012;0;0.51;nan -10.03.2012;0;0.65;nan -11.03.2012;0;0.79;nan -12.03.2012;0;1.35;nan -13.03.2012;0;0.66;nan -14.03.2012;0;0.59;nan -15.03.2012;0;1.43;nan -16.03.2012;0;1.89;nan -17.03.2012;0;1.83;nan -18.03.2012;6.356746921;0.69;nan -19.03.2012;0;1.54;nan -20.03.2012;0;1.47;nan -21.03.2012;0;1.9;nan -22.03.2012;0;2.35;nan -23.03.2012;0;2.38;nan -24.03.2012;0;2.3;nan -25.03.2012;0;2.67;nan -26.03.2012;0;2.5;nan -27.03.2012;0;2.67;nan -28.03.2012;0;2.81;nan -29.03.2012;0;1.12;nan -30.03.2012;0;0.85;nan -31.03.2012;0;0.84;nan -01.04.2012;0;1.4;nan -02.04.2012;0;0.9;nan -03.04.2012;0.751147786;2.11;nan -04.04.2012;6.234130095;1.55;nan -05.04.2012;0;0.71;nan -06.04.2012;0;1.04;nan -07.04.2012;0.641610559;0.74;nan -08.04.2012;0;0.94;nan -09.04.2012;2.228532307;0.63;nan -10.04.2012;3.026204163;1.12;nan -11.04.2012;0.46035981;1.3;nan -12.04.2012;1.034950878;1.2;nan -13.04.2012;0.099439631;1.36;nan -14.04.2012;0;1.56;nan -15.04.2012;0;1.58;nan -16.04.2012;0;1.11;nan -17.04.2012;0;1.75;nan -18.04.2012;0;1.54;nan -19.04.2012;1.666469734;1.58;nan -20.04.2012;6.49722907;1.42;nan -21.04.2012;4.282479402;1.18;nan -22.04.2012;3.149470554;2.02;nan -23.04.2012;0;1.86;nan -24.04.2012;0.576750765;1.21;nan -25.04.2012;0.227285801;1.75;nan -26.04.2012;1.477948828;1.17;nan -27.04.2012;0.115071088;1.82;nan -28.04.2012;0;3.96;nan -29.04.2012;0;2.4;nan -30.04.2012;0.211165732;3.55;nan -01.05.2012;0;3.85;nan -02.05.2012;7.043225031;2.26;nan -03.05.2012;0;2.08;nan -04.05.2012;2.546992839;2.83;nan -05.05.2012;8.085650311;1.21;nan -06.05.2012;4.67993303;1.11;nan -07.05.2012;0;1.61;nan -08.05.2012;0;3.36;nan -09.05.2012;3.181178733;1.58;nan -10.05.2012;0.10099184;2.63;nan -11.05.2012;14.48655285;2.61;nan -12.05.2012;0;1.85;nan -13.05.2012;0;2.65;nan -14.05.2012;0;2.9;nan -15.05.2012;11.72812871;1.69;nan -16.05.2012;2.567372337;1.93;nan -17.05.2012;0.127193178;3.14;nan -18.05.2012;2.818878724;1.76;nan -19.05.2012;8.900350658;3.05;nan -20.05.2012;0.401544065;4.07;nan -21.05.2012;0;2.12;nan -22.05.2012;0;5.36;nan -23.05.2012;3.679706569;3.09;nan -24.05.2012;0.101080379;4.95;nan -25.05.2012;0;5.01;nan -26.05.2012;0;4.98;nan -27.05.2012;0;3.25;nan -28.05.2012;0.321305602;3.43;nan -29.05.2012;0;4.73;nan -30.05.2012;0;4.1;nan -31.05.2012;0.224517541;1.68;nan -01.06.2012;4.596540569;2.27;nan -02.06.2012;0;3.01;nan -03.06.2012;1.364553991;1.31;nan -04.06.2012;1.065027646;1.73;nan -05.06.2012;0;2.11;nan -06.06.2012;0;1.71;nan -07.06.2012;0;2.09;nan -08.06.2012;0;3.71;nan -09.06.2012;0;3.47;nan -10.06.2012;0;2.82;nan -11.06.2012;0;1.97;nan -12.06.2012;7.23930017;2.48;nan -13.06.2012;26.50460299;1.43;nan -14.06.2012;0.100491752;2.32;nan -15.06.2012;0.704714972;1.83;nan -16.06.2012;7.426936784;1.57;nan -17.06.2012;0;4.32;nan -18.06.2012;0;4.34;nan -19.06.2012;8.756527923;2.39;nan -20.06.2012;17.07189609;1.66;nan -21.06.2012;5.24496361;2.05;nan -22.06.2012;0.10174942;3.58;nan -23.06.2012;0;3.71;nan -24.06.2012;4.402583345;2.73;nan -25.06.2012;0.425813334;2.34;nan -26.06.2012;0;3.64;nan -27.06.2012;0.871569354;2.33;nan -28.06.2012;0.100209282;2.93;nan -29.06.2012;15.37761492;3.53;nan -30.06.2012;0.103716701;4.54;nan -01.07.2012;1.723063686;2.38;nan -02.07.2012;0.538548728;1.56;nan -03.07.2012;0.103595763;4.3;nan -04.07.2012;0;5.09;nan -05.07.2012;0.859775595;3.46;nan -06.07.2012;0.833394972;2.92;nan -07.07.2012;2.761336277;4.24;nan -08.07.2012;6.613458276;2.5;nan -09.07.2012;1.343123714;3.39;nan -10.07.2012;6.240313766;3.14;nan -11.07.2012;3.491422269;2.14;nan -12.07.2012;0.444357341;2.55;nan -13.07.2012;15.09272074;1.73;nan -14.07.2012;25.91844249;2.54;nan -15.07.2012;2.369939964;2.53;nan -16.07.2012;0.664489808;2.32;nan -17.07.2012;1.152821883;1.91;nan -18.07.2012;0;3.23;nan -19.07.2012;0;2.65;nan -20.07.2012;0.104251899;2.1;nan -21.07.2012;7.524294533;1.91;nan -22.07.2012;0;4.22;nan -23.07.2012;0;4.84;nan -24.07.2012;0;5.25;nan -25.07.2012;0;5.52;nan -26.07.2012;0;4.96;nan -27.07.2012;0.71497793;4.87;nan -28.07.2012;5.635569646;2.9;nan -29.07.2012;0.248982158;3.05;nan -30.07.2012;3.210364058;3.03;nan -31.07.2012;0;2.69;nan -01.08.2012;0;5.06;nan -02.08.2012;0;3.52;nan -03.08.2012;0;3.49;nan -04.08.2012;0;3.14;nan -05.08.2012;0.826030268;2.49;nan -06.08.2012;5.221529943;2.71;nan -07.08.2012;0.312130111;2.83;nan -08.08.2012;0;3.62;nan -09.08.2012;0;2.63;nan -10.08.2012;0;3.52;nan -11.08.2012;0;3.6;nan -12.08.2012;0;4.19;nan -13.08.2012;0;3.95;nan -14.08.2012;0;3.63;nan -15.08.2012;0;3.02;nan -16.08.2012;6.757477709;3.6;nan -17.08.2012;0;3.48;nan -18.08.2012;0;4.86;nan -19.08.2012;0;4.88;nan -20.08.2012;0.221908764;3;nan -21.08.2012;0;3.52;nan -22.08.2012;0;3.96;nan -23.08.2012;0;4.23;nan -24.08.2012;5.486384479;1.54;nan -25.08.2012;0;2.79;nan -26.08.2012;0.452769647;1.82;nan -27.08.2012;0;3.38;nan -28.08.2012;0;2.53;nan -29.08.2012;0.612815989;2.96;nan -30.08.2012;0;1.35;nan -31.08.2012;1.125232008;1.71;nan -01.09.2012;0;2.65;nan -02.09.2012;0;3;nan -03.09.2012;0;3.54;nan -04.09.2012;0;3.21;nan -05.09.2012;0;1.2;nan -06.09.2012;0;2.1;nan -07.09.2012;0;3.13;nan -08.09.2012;0;3.64;nan -09.09.2012;0;3.76;nan -10.09.2012;0;3.38;nan -11.09.2012;13.54578198;1.36;nan -12.09.2012;1.412819865;1;nan -13.09.2012;0.100209282;1.37;nan -14.09.2012;2.64355724;2.15;nan -15.09.2012;0.203690864;1.02;nan -16.09.2012;0.103141494;2.35;nan -17.09.2012;0;2.72;nan -18.09.2012;1.065046071;1.86;nan -19.09.2012;0.463291857;2.12;nan -20.09.2012;0.100209282;1.4;nan -21.09.2012;2.804011549;1.34;nan -22.09.2012;0.100891145;1.55;nan -23.09.2012;0;1.11;nan -24.09.2012;5.614039905;1.15;nan -25.09.2012;2.346876165;0.95;nan -26.09.2012;3.562013413;0.95;nan -27.09.2012;2.39513061;1.22;nan -28.09.2012;0;1.94;nan -29.09.2012;0.101817107;1.37;nan -30.09.2012;0.103899938;1.53;nan -01.10.2012;0.307930088;1.51;nan -02.10.2012;0.10254475;1.2;nan -03.10.2012;0.403395594;1.15;nan -04.10.2012;12.51779236;1.09;nan -05.10.2012;1.41091845;0.86;nan -06.10.2012;6.073277622;1;nan -07.10.2012;2.680292566;1.42;nan -08.10.2012;0.299858195;0.81;nan -09.10.2012;0.732005881;1.52;nan -10.10.2012;0;1.04;nan -11.10.2012;0.100720276;1.18;nan -12.10.2012;3.197505101;0.65;nan -13.10.2012;3.555910417;1.21;nan -14.10.2012;7.480236484;0.74;nan -15.10.2012;0.454507793;0.6;nan -16.10.2012;0.099439631;0.8;nan -17.10.2012;0.100209282;0.62;nan -18.10.2012;0;1.87;nan -19.10.2012;0;1.86;nan -20.10.2012;0.10058936;1.42;nan -21.10.2012;0.100640272;1.75;nan -22.10.2012;0.100209282;1.24;nan -23.10.2012;0;0.6;nan -24.10.2012;0.100209282;0.54;nan -25.10.2012;0;0.6;nan -26.10.2012;14.07118471;0.39;nan -27.10.2012;1.516291237;0.16;nan -28.10.2012;0.111496891;0;nan -29.10.2012;0.108158529;0;nan -30.10.2012;5.133717827;0.37;nan -31.10.2012;0.122396573;0.81;nan -01.11.2012;2.39637902;0.5;nan -02.11.2012;8.131136921;0.62;nan -03.11.2012;7.789490852;0.44;nan -04.11.2012;3.115891884;0.46;nan -05.11.2012;2.648004818;0.58;nan -06.11.2012;0.108211059;0.64;nan -07.11.2012;0;0.49;nan -08.11.2012;0;0.5;nan -09.11.2012;0;0.49;nan -10.11.2012;10.50276489;0.46;nan -11.11.2012;0.103268345;0.5;nan -12.11.2012;0.101566606;0.3;nan -13.11.2012;0.200069189;0.01;nan -14.11.2012;0.105169605;0.08;nan -15.11.2012;0;0.21;nan -16.11.2012;0;0.21;nan -17.11.2012;0;0.25;nan -18.11.2012;0.522474816;0.38;nan -19.11.2012;0.101078256;0.36;nan -20.11.2012;0.105382174;0.22;nan -21.11.2012;0.249835567;0.2;nan -22.11.2012;0.100249036;0.18;nan -23.11.2012;0.201533138;0.28;nan -24.11.2012;0.309757147;0.4;nan -25.11.2012;0.183579714;0.63;nan -26.11.2012;5.663064676;0.31;nan -27.11.2012;0.448863743;0.39;nan -28.11.2012;0.203350776;0.35;nan -29.11.2012;0;0.25;nan -30.11.2012;0.15531028;0.06;nan -01.12.2012;0;0;nan -02.12.2012;2.229082138;0.08;nan -03.12.2012;0.631836587;0.07;nan -04.12.2012;1.450042377;0.2;nan -05.12.2012;0.20808764;0.15;nan -06.12.2012;0;0;nan -07.12.2012;0;0;nan -08.12.2012;0;0;nan -09.12.2012;6.108605507;0;nan -10.12.2012;3.320764568;0.13;nan -11.12.2012;0;0;nan -12.12.2012;0;0;nan -13.12.2012;0;0;nan -14.12.2012;11.3498736;0.08;nan -15.12.2012;1.07618634;0.32;nan -16.12.2012;0.965767621;0.39;nan -17.12.2012;4.037667261;0.29;nan -18.12.2012;0.100254803;0.27;nan -19.12.2012;0.200418564;0.17;nan -20.12.2012;0.228574953;0.13;nan -21.12.2012;4.122440719;0.09;nan -22.12.2012;3.902192703;0.25;nan -23.12.2012;8.965119864;0.46;nan -24.12.2012;1.654593813;0.51;nan -25.12.2012;2.19554711;0.45;nan -26.12.2012;5.305579636;0.39;nan -27.12.2012;8.833007442;0.51;nan -28.12.2012;0;0.3;nan -29.12.2012;0;0.52;nan -30.12.2012;0.936592981;0.57;nan -31.12.2012;0;0.4;nan -01.01.2013;2.052861283;0.35;24.418331 -02.01.2013;0;0.27;18.871897 -03.01.2013;0.58456085;0.37;15.542923 -04.01.2013;0.123880377;0.46;13.749797 -05.01.2013;0;0.41;12.432438 -06.01.2013;0;0.4;10.779954 -07.01.2013;0;0.38;9.679059 -08.01.2013;0;0.32;8.504039 -09.01.2013;1.163450614;0.29;7.848518 -10.01.2013;0.110276668;0.28;7.778211 -11.01.2013;0;0;6.871534 -12.01.2013;0;0;5.976367 -13.01.2013;0;0;5.639718 -14.01.2013;0;0;5.482801 -15.01.2013;0;0;5.551196 -16.01.2013;0;0;5.388404 -17.01.2013;0;0;5.226621 -18.01.2013;0;0;5.16354 -19.01.2013;0;0;5.564683 -20.01.2013;0;0;5.957756 -21.01.2013;0;0;6.274101 -22.01.2013;0;0;6.25 -23.01.2013;0;0;6.23 -24.01.2013;0;0;6.21 -25.01.2013;0;0;6.19 -26.01.2013;0;0;6.17 -27.01.2013;3.310331039;0;6.15 -28.01.2013;8.098844635;0.17;6.143736 -29.01.2013;5.555837156;0.44;67.386173 -30.01.2013;4.659346435;0.57;98.59951 -31.01.2013;8.678574079;0.46;80.011049 -01.02.2013;6.416312834;0.39;103.328494 -02.02.2013;0.585763486;0.25;96.736221 -03.02.2013;0.98774513;0.22;65.159635 -04.02.2013;0.878132691;0.39;59.196146 -05.02.2013;4.848835201;0.44;56.141688 -06.02.2013;2.214924475;0;46.823822 -07.02.2013;0.315204331;0.06;38.530109 -08.02.2013;0.688363528;0;34.144966 -09.02.2013;0.537587552;0;30.088306 -10.02.2013;0;0;26.788075 -11.02.2013;0;0;23.962136 -12.02.2013;0;0;20.621056 -13.02.2013;0;0;17.775907 -14.02.2013;0;0;15.857303 -15.02.2013;2.737719864;0.01;14.777229 -16.02.2013;1.015202732;0.16;17.461349 -17.02.2013;0;0.2;22.883208 -18.02.2013;0;0.34;23.845093 -19.02.2013;2.54909879;0;21.86127 -20.02.2013;0;0;19.853548 -21.02.2013;0;0;18.264846 -22.02.2013;0;0;17.236124 -23.02.2013;0;0;16.584315 -24.02.2013;1.274964868;0;15.375273 -25.02.2013;5.233084746;0.11;13.871548 -26.02.2013;0.257978214;0.22;13.038394 -27.02.2013;0;0.06;14.918089 -28.02.2013;0;0.19;15.247023 -01.03.2013;0;0.23;18.653939 -02.03.2013;0;0.64;24.390232 -03.03.2013;0;0.13;26.492173 -04.03.2013;0.127083124;0.29;25.443637 -05.03.2013;0;0.48;23.432959 -06.03.2013;0.102087612;0.99;22.280846 -07.03.2013;1.790611675;0.67;21.452868 -08.03.2013;0.558562408;1.28;22.858965 -09.03.2013;2.167173903;0.64;22.082662 -10.03.2013;1.357020944;0.42;20.443747 -11.03.2013;0;0;18.716441 -12.03.2013;0;0;18.244689 -13.03.2013;0.739369543;0;16.916135 -14.03.2013;0.214254297;0;15.284938 -15.03.2013;0.104845802;0;14.00103 -16.03.2013;0;0.31;13.50998 -17.03.2013;1.303862735;0.19;14.320551 -18.03.2013;0;0.42;27.354957 -19.03.2013;0.142673758;0.53;36.772176 -20.03.2013;4.864261381;0.32;48.00298 -21.03.2013;0;0.17;50.356696 -22.03.2013;0;0.17;45.946707 -23.03.2013;0;0;40.412788 -24.03.2013;0;0;34.953245 -25.03.2013;0;0;30.804001 -26.03.2013;0;0;27.969613 -27.03.2013;0;0;24.805747 -28.03.2013;0;0;23.038726 -29.03.2013;0.203593466;0.07;21.382703 -30.03.2013;0;0.13;19.574033 -31.03.2013;0;0;17.755825 -01.04.2013;0;0;16.264878 -02.04.2013;0;0.19;14.497697 -03.04.2013;0;0.23;12.911583 -04.04.2013;0;0.61;12.519697 -05.04.2013;0;0.29;11.880156 -06.04.2013;0;0.28;11.099295 -07.04.2013;0;0.25;10.792131 -08.04.2013;0.712984118;0.83;11.031519 -09.04.2013;2.157146283;0.62;11.063046 -10.04.2013;1.125369394;1;10.432581 -11.04.2013;5.339580331;1.39;10.405523 -12.04.2013;12.33943522;1.47;20.367295 -13.04.2013;0.508279458;2.34;18.812959 -14.04.2013;0;2.01;16.443959 -15.04.2013;0;3.15;15.842358 -16.04.2013;2.855278519;2.57;15.963371 -17.04.2013;0;2.02;14.906706 -18.04.2013;0;3.27;14.117884 -19.04.2013;0.353597317;1.69;13.188015 -20.04.2013;0;1.98;12.052954 -21.04.2013;0;2.32;11.928762 -22.04.2013;0;2.08;11.40644 -23.04.2013;0.876230574;1.88;10.633094 -24.04.2013;0;3.67;9.135218 -25.04.2013;0;3.49;8.348676 -26.04.2013;13.82395604;1.9;9.811417 -27.04.2013;8.293600025;0.8;16.038199 -28.04.2013;0.478398276;1.13;13.761059 -29.04.2013;0;2.54;12.086581 -30.04.2013;1.420622693;1.03;11.431914 -01.05.2013;0.141786314;1.51;10.747734 -02.05.2013;0;2.25;10.073772 -03.05.2013;0;1.86;9.441185 -04.05.2013;0;2.85;8.996614 -05.05.2013;0;3.81;8.189752 -06.05.2013;0;3.47;7.532977 -07.05.2013;3.317989574;1.62;7.249058 -08.05.2013;0.207117652;2.25;7.166745 -09.05.2013;2.352225074;2.29;7.313077 -10.05.2013;0;2.35;6.558072 -11.05.2013;0.687868446;1.85;5.795573 -12.05.2013;9.546001617;1.88;6.811404 -13.05.2013;1.497689714;1.29;6.169322 -14.05.2013;1.034103142;1.53;5.979106 -15.05.2013;1.586295215;2.13;6.403671 -16.05.2013;0.77223393;2.24;6.448726 -17.05.2013;0.105340329;1.33;6.43021 -18.05.2013;0.104621964;2.36;6.145124 -19.05.2013;17.4205831;2.71;8.532971 -20.05.2013;6.430174394;1.35;21.864815 -21.05.2013;2.725247239;1.53;12.78167 -22.05.2013;5.503978419;1.18;20.050647 -23.05.2013;12.44602574;1.06;34.547334 -24.05.2013;0;1.36;29.138713 -25.05.2013;1.296469046;1.78;25.69534 -26.05.2013;20.41429324;1.04;85.193173 -27.05.2013;0.577905728;2.57;100.145387 -28.05.2013;0;3.88;66.987341 -29.05.2013;7.738908459;1.21;68.474104 -30.05.2013;2.829262724;2.16;56.474726 -31.05.2013;9.92731459;1.58;64.028852 -01.06.2013;0;1.8;51.844541 -02.06.2013;0;3.5;42.472362 -03.06.2013;0;3.55;34.08307 -04.06.2013;0;4.19;28.545171 -05.06.2013;0;3.6;24.222246 -06.06.2013;0;5.12;19.870631 -07.06.2013;0;5.16;16.482535 -08.06.2013;0;4.82;14.196014 -09.06.2013;0.852389941;2.36;13.547897 -10.06.2013;0.794100111;1.82;12.503125 -11.06.2013;0;4.03;10.14463 -12.06.2013;0;2.63;7.988602 -13.06.2013;6.97525817;2.7;7.099181 -14.06.2013;0.110118225;2.75;7.62865 -15.06.2013;0;2.41;6.072319 -16.06.2013;0;3.56;4.959866 -17.06.2013;0;5.21;4.307747 -18.06.2013;0;5.85;3.575091 -19.06.2013;0;6.01;3.221764 -20.06.2013;5.437790195;2.37;3.453995 -21.06.2013;1.581458717;3.5;3.695777 -22.06.2013;0;3.18;3.149866 -23.06.2013;0;2.9;3.050426 -24.06.2013;3.06557465;2.13;3.158111 -25.06.2013;2.5305722;1.54;3.184428 -26.06.2013;0;1.8;3.059972 -27.06.2013;1.709660985;1.76;3.070111 -28.06.2013;0.102023852;1.45;2.96429 -29.06.2013;6.390260901;2.24;3.208235 -30.06.2013;0;2.7;2.971959 -01.07.2013;0;4.28;2.751832 -02.07.2013;0;4.66;2.570896 -03.07.2013;12.85463175;1.72;3.414943 -04.07.2013;0;2.77;3.114361 -05.07.2013;0;3.24;2.75413 -06.07.2013;0;5.17;2.543549 -07.07.2013;0;5.54;2.39239 -08.07.2013;0;5.54;2.246893 -09.07.2013;0;5.06;2.153437 -10.07.2013;0;5.03;2.092768 -11.07.2013;0;3.09;2.101726 -12.07.2013;0;3.72;2.092602 -13.07.2013;0;3.81;2.020425 -14.07.2013;0;3.86;2.014752 -15.07.2013;0;4.49;1.920806 -16.07.2013;0;4.55;1.842162 -17.07.2013;0;5.13;1.783579 -18.07.2013;0;5.26;1.64404 -19.07.2013;0;5.5;1.572092 -20.07.2013;0;4.93;1.523529 -21.07.2013;0;5.62;1.497957 -22.07.2013;0;5.71;1.451664 -23.07.2013;2.298154545;3.12;1.479384 -24.07.2013;0;3.18;1.546242 -25.07.2013;10.25992882;2.93;3.046824 -26.07.2013;0.101682369;2.92;2.146813 -27.07.2013;0;5.53;1.722019 -28.07.2013;0.721374121;2.72;1.666815 -29.07.2013;0.221428694;1.69;1.667242 -30.07.2013;0.524357188;3.41;1.275332 -31.07.2013;2.053960584;2.84;1.087724 -01.08.2013;0;5.36;0.92556 -02.08.2013;0;5.42;0.67994 -03.08.2013;0;3.33;0.601056 -04.08.2013;0;4.69;0.555497 -05.08.2013;0;4.82;0.514584 -06.08.2013;7.303333928;3.79;1.105949 -07.08.2013;3.80855636;2.17;0.928021 -08.08.2013;0.100919618;1.79;0.842865 -09.08.2013;0;2.51;0.757447 -10.08.2013;0;3.38;0.64441 -11.08.2013;0;3.62;0.523785 -12.08.2013;7.477542821;2.06;0.90173 -13.08.2013;0.100209282;2.86;0.752233 -14.08.2013;0;3.23;0.67974 -15.08.2013;0;3.83;0.582552 -16.08.2013;0;4.39;0.477594 -17.08.2013;0;3.22;0.441798 -18.08.2013;0.242794923;1.48;0.388685 -19.08.2013;6.434592375;3.16;0.659298 -20.08.2013;0;2.5;0.48012 -21.08.2013;0;3.82;0.451527 -22.08.2013;0;3.77;0.455111 -23.08.2013;0;3.04;0.414511 -24.08.2013;10.08241353;2.82;0.615602 -25.08.2013;6.338278859;1.3;1.954288 -26.08.2013;1.339358863;1.34;1.102016 -27.08.2013;0;3;0.732772 -28.08.2013;0;2.06;0.541513 -29.08.2013;0;3.47;0.472273 -30.08.2013;0;3.28;0.422664 -31.08.2013;3.881978578;1.77;0.5262 -01.09.2013;0;2.01;0.539527 -02.09.2013;0;1.63;0.373824 -03.09.2013;0;1.92;0.34133 -04.09.2013;0;3.63;0.308851 -05.09.2013;0;3.92;0.282294 -06.09.2013;0;3.75;0.389839 -07.09.2013;5.254480544;1.62;0.638005 -08.09.2013;2.931308381;1.29;0.846853 -09.09.2013;8.754058908;2.02;0.864731 -10.09.2013;8.642156781;1.22;4.892612 -11.09.2013;6.145993078;1.25;4.215498 -12.09.2013;0.119762437;1.13;2.351649 -13.09.2013;0;1.26;1.379381 -14.09.2013;4.481439921;1.1;1.398035 -15.09.2013;0.102164633;1.43;1.321851 -16.09.2013;2.829495091;1.37;1.438225 -17.09.2013;3.019424741;1.55;1.207433 -18.09.2013;2.418850364;1.08;1.649967 -19.09.2013;0.339904309;1.3;1.248832 -20.09.2013;0.416842924;1;1.081575 -21.09.2013;0;1.39;0.864161 -22.09.2013;0;1.09;0.918095 -23.09.2013;0;1.03;1.002674 -24.09.2013;0;1.9;1.230696 -25.09.2013;0.104126817;1.09;0.961648 -26.09.2013;0;1.72;0.870806 -27.09.2013;0;1.99;0.783057 -28.09.2013;0;1.84;0.862506 -29.09.2013;0;2.17;0.719318 -30.09.2013;0;1.27;0.70849 -01.10.2013;0;1.49;0.551869 -02.10.2013;0.139605658;1.56;0.569545 -03.10.2013;0.135465455;1.74;0.693346 -04.10.2013;0.486915303;0.91;0.569029 -05.10.2013;40.09104036;0.76;20.710242 -06.10.2013;2.232833805;0.86;18.880871 -07.10.2013;0;1.56;6.865578 -08.10.2013;0;0.86;4.494264 -09.10.2013;3.301907369;0.85;3.55993 -10.10.2013;4.255136777;0.87;6.741104 -11.10.2013;5.041018327;0.49;6.568946 -12.10.2013;1.379946759;0.45;7.008824 -13.10.2013;0;0.55;6.229404 -14.10.2013;0.492223417;0.91;4.869489 -15.10.2013;6.814980741;0.95;7.707324 -16.10.2013;0.304096502;0.68;6.104659 -17.10.2013;1.505540682;0.82;4.822442 -18.10.2013;0.10040615;1.22;4.128956 -19.10.2013;0.243177623;1.63;3.766368 -20.10.2013;0.114730218;0.84;3.113281 -21.10.2013;0.226526953;1.26;2.581633 -22.10.2013;0;1.7;2.376996 -23.10.2013;7.682525126;1.05;4.885591 -24.10.2013;0.933513103;0.97;4.477026 -25.10.2013;0.303026512;0.71;3.744079 -26.10.2013;5.817549482;0.86;4.321705 -27.10.2013;7.935183086;1.27;13.372075 -28.10.2013;2.394564061;0.81;10.924528 -29.10.2013;0;0.81;7.84025 -30.10.2013;0;1.19;6.144879 -31.10.2013;0.102589793;0.42;5.52428 -01.11.2013;4.536972774;0.48;5.37625 -02.11.2013;8.742921673;0.64;23.563112 -03.11.2013;2.881930638;0.94;26.079943 -04.11.2013;2.417554909;0.55;15.886635 -05.11.2013;6.073303558;0.55;13.810492 -06.11.2013;2.874053043;0.55;16.200393 -07.11.2013;0.108775183;0.69;16.683825 -08.11.2013;12.60252541;0.63;26.413423 -09.11.2013;1.087939523;0.7;39.878779 -10.11.2013;0.756460321;0.41;29.035381 -11.11.2013;0;0.67;22.71978 -12.11.2013;0.203469691;0.3;19.457412 -13.11.2013;0.405318362;0.55;16.657586 -14.11.2013;0.103863682;0.15;14.983722 -15.11.2013;0;0.5;12.390164 -16.11.2013;0;0.22;10.322547 -17.11.2013;0;0.18;9.210179 -18.11.2013;0;0.32;8.780785 -19.11.2013;4.75061329;0.32;8.341947 -20.11.2013;3.832149213;0.3;15.653733 -21.11.2013;0.960402178;0.19;13.222447 -22.11.2013;0;0.21;11.520031 -23.11.2013;0;0.33;9.950161 -24.11.2013;0.17472882;0.4;8.831097 -25.11.2013;0;0;8.149278 -26.11.2013;0.103396806;0;7.775023 -27.11.2013;0;0;7.094008 -28.11.2013;0.209165999;0.04;6.339268 -29.11.2013;2.96566331;0.22;6.693626 -30.11.2013;0.116078324;0.32;6.767524 -01.12.2013;0;0.38;6.159252 -02.12.2013;0.121298543;0.46;5.712104 -03.12.2013;0.103646034;0;5.713076 -04.12.2013;0.123601635;0.12;5.09869 -05.12.2013;3.402407102;0.16;5.265348 -06.12.2013;3.861503302;0.12;5.7021 -07.12.2013;1.138084118;0.2;5.441679 -08.12.2013;0;0.34;5.905663 -09.12.2013;0;0.37;5.57394 -10.12.2013;0;0.32;5.182886 -11.12.2013;0;0.31;5.25084 -12.12.2013;0;0.2;5.425117 -13.12.2013;0;0.12;5.185625 -14.12.2013;0.930704948;0.11;4.845879 -15.12.2013;0.308176053;0.11;4.671676 -16.12.2013;0.100456762;0;4.840734 -17.12.2013;0.105810912;0;4.596398 -18.12.2013;0.10402947;0;4.145028 -19.12.2013;2.686598633;0.32;4.403819 -20.12.2013;0.220794354;0.19;3.980393 -21.12.2013;0.145733961;0.11;3.824123 -22.12.2013;4.618957859;0.41;3.94586 -23.12.2013;4.771291202;0.53;12.347619 -24.12.2013;0.622817277;0.48;10.176256 -25.12.2013;5.386000407;0.4;15.453304 -26.12.2013;2.389800342;0.33;14.312491 -27.12.2013;0.154930708;0.35;15.322006 -28.12.2013;3.935106315;0.42;14.652353 -29.12.2013;1.77139605;0.27;22.499784 -30.12.2013;0.232819401;0.14;18.27357 -31.12.2013;0;0.19;17.510973 -01.01.2014;0.948386327;0.28;16.402562 -02.01.2014;1.443235282;0.35;15.506874 -03.01.2014;0.53317163;0.37;13.986495 -04.01.2014;0;0.33;13.023909 -05.01.2014;2.291219427;0.39;13.422182 -06.01.2014;6.278177447;0.3;12.729805 -07.01.2014;1.368826654;0.9;21.626249 -08.01.2014;0.251187761;0.73;18.437388 -09.01.2014;5.443311512;0.42;20.405184 -10.01.2014;0;0.53;22.715288 -11.01.2014;0.357233526;0.16;20.297429 -12.01.2014;0;0.17;18.259541 -13.01.2014;0.10513426;0.11;16.803059 -14.01.2014;0;0.23;15.761204 -15.01.2014;0.3697866;0.27;14.120361 -16.01.2014;3.253825766;0.31;14.246247 -17.01.2014;0.117449085;0.65;14.519285 -18.01.2014;0.108601598;0.09;13.089396 -19.01.2014;0.103137728;0.17;11.8654 -20.01.2014;0;0.19;10.879708 -21.01.2014;1.63522922;0.16;20.234155 -22.01.2014;0;0.23;22.748368 -23.01.2014;2.558914396;0.23;20.690171 -24.01.2014;1.188167635;0.19;22.405199 -25.01.2014;0.237105868;0.02;21.169239 -26.01.2014;6.395365353;0.26;27.833506 -27.01.2014;3.105051214;0.3;44.774207 -28.01.2014;0.136144794;0.31;37.473603 -29.01.2014;0;0.06;33.194181 -30.01.2014;0;0.03;29.561037 -31.01.2014;0;0.1;26.639798 -01.02.2014;5.471619376;0.18;24.925277 -02.02.2014;0;0.41;23.970456 -03.02.2014;0.112128324;0.11;21.386039 -04.02.2014;0;0.21;19.242926 -05.02.2014;0.365005327;0.11;17.987006 -06.02.2014;0.11379492;0.71;16.255086 -07.02.2014;0.379268781;0.63;14.467703 -08.02.2014;3.236321079;0.36;15.012038 -09.02.2014;0;0.48;14.740248 -10.02.2014;0.678751975;0.2;13.462218 -11.02.2014;0;0.41;12.230738 -12.02.2014;1.179094273;0.7;11.622273 -13.02.2014;13.86387956;0.38;17.215045 -14.02.2014;1.558715096;0.53;20.917042 -15.02.2014;0.157927664;0.58;19.330026 -16.02.2014;0.275376278;0.69;18.266869 -17.02.2014;0.100364822;0.33;17.208793 -18.02.2014;0.099439631;0.15;16.56007 -19.02.2014;1.625468105;0.68;16.390069 -20.02.2014;0;0.67;15.421818 -21.02.2014;2.748183214;0.85;14.713906 -22.02.2014;0.256224276;0.41;13.79492 -23.02.2014;0;0.65;12.658862 -24.02.2014;0.099477577;0.79;11.950986 -25.02.2014;0.159998907;0.73;11.492567 -26.02.2014;0.314258275;0.63;10.75553 -27.02.2014;1.603695597;0.6;10.356378 -28.02.2014;0.684543845;0.54;11.001998 -01.03.2014;0;0.48;10.782335 -02.03.2014;1.167955234;0.32;10.164323 -03.03.2014;0.146520704;0.3;9.602984 -04.03.2014;0;0.68;8.703207 -05.03.2014;1.127250273;0.75;8.046729 -06.03.2014;0.102374926;0.35;7.306062 -07.03.2014;0.100088664;0.87;6.844349 -08.03.2014;0;1.21;6.46795 -09.03.2014;0.099439631;1.32;6.074865 -10.03.2014;0.09950289;1.53;5.632728 -11.03.2014;0;1.89;5.757862 -12.03.2014;0;1.79;5.745789 -13.03.2014;0.100239136;1.67;5.023196 -14.03.2014;0;1.71;4.786958 -15.03.2014;1.411483572;0.76;5.101086 -16.03.2014;0;0.94;4.696422 -17.03.2014;0;0.82;4.425823 -18.03.2014;0.120484083;0.78;4.429503 -19.03.2014;5.23034353;1.29;6.119827 -20.03.2014;0;2.3;5.219167 -21.03.2014;0.119259509;1.86;5.107963 -22.03.2014;5.766178754;0.71;5.540585 -23.03.2014;0.101320514;0.69;5.775728 -24.03.2014;0.101729075;0.56;5.404966 -25.03.2014;0.099439631;0.83;5.262563 -26.03.2014;0.100778681;0.91;5.072437 -27.03.2014;0;1.83;4.864914 -28.03.2014;0;2.24;4.384758 -29.03.2014;0;2.25;4.088648 -30.03.2014;0;2.12;4.106752 -31.03.2014;0;0.98;4.452076 -01.04.2014;0;2.19;4.757175 -02.04.2014;0;2.52;4.555513 -03.04.2014;0;1.88;4.361442 -04.04.2014;0;1.15;4.268695 -05.04.2014;1.695983789;1.09;4.272012 -06.04.2014;0;1.64;3.979665 -07.04.2014;0;2.2;3.622333 -08.04.2014;3.042809055;1.49;3.758216 -09.04.2014;0.108498089;1.32;3.608329 -10.04.2014;0;1.09;3.432004 -11.04.2014;0;1.19;3.407258 -12.04.2014;0;1.85;3.241566 -13.04.2014;0;1.74;3.07616 -14.04.2014;4.053591011;1.87;3.137765 -15.04.2014;0.216484055;0.73;3.233944 -16.04.2014;0;1.8;3.032272 -17.04.2014;0.158605057;2.5;2.698903 -18.04.2014;0.48249597;2.26;2.692598 -19.04.2014;0;2.24;2.575222 -20.04.2014;0;3.35;2.243782 -21.04.2014;1.599353843;2.06;2.159488 -22.04.2014;1.47875484;1.69;2.362529 -23.04.2014;0.100209282;2.31;2.259015 -24.04.2014;0;3.44;1.995259 -25.04.2014;0;3.49;6.061627 -26.04.2014;1.274750477;1.78;17.877588 -27.04.2014;13.7807287;1.19;18.208916 -28.04.2014;0.422402212;1.2;8.376963 -29.04.2014;7.204461755;1.69;7.780429 -30.04.2014;0;2.58;5.718117 -01.05.2014;0;1.91;3.92954 -02.05.2014;0.742399293;1.34;3.377782 -03.05.2014;0;2.13;2.968987 -04.05.2014;0;2.77;2.474647 -05.05.2014;0;3.26;1.97248 -06.05.2014;0.645554076;1.9;1.775615 -07.05.2014;6.34001138;2.41;1.813361 -08.05.2014;4.025745595;1.54;1.778631 -09.05.2014;1.40698932;2.83;1.728317 -10.05.2014;3.02118618;1.24;2.212913 -11.05.2014;2.975477877;2.54;3.405043 -12.05.2014;0.587034274;2.4;2.560105 -13.05.2014;0.316646168;1.56;2.409335 -14.05.2014;0;2.12;2.000632 -15.05.2014;0;1.12;1.830519 -16.05.2014;0.122447738;3.59;1.347028 -17.05.2014;0;3.56;1.147602 -18.05.2014;0;4.16;0.802111 -19.05.2014;0;4.27;0.662873 -20.05.2014;0;4.78;0.336109 -21.05.2014;0;3.94;0.204309 -22.05.2014;3.085495713;4.36;0.187829 -23.05.2014;4.809148968;2.4;0.612968 -24.05.2014;0;2.51;0.367509 -25.05.2014;0;4.31;0.245181 -26.05.2014;2.864431039;1.54;0.501683 -27.05.2014;0.421848386;1.58;1.725654 -28.05.2014;0.107030974;1.46;1.040421 -29.05.2014;0;1.33;1.321179 -30.05.2014;0.10408533;2.11;1.167457 -31.05.2014;0;3.19;0.561848 -01.06.2014;0;2.51;0.453851 -02.06.2014;0;3.94;0.320873 -03.06.2014;0;3.51;0.57499 -04.06.2014;0;3.07;0.962808 -05.06.2014;0;3.86;0.794953 -06.06.2014;0.908100562;4.67;0.611382 -07.06.2014;0;4.51;0.442098 -08.06.2014;0;5.77;0.312218 -09.06.2014;0.793544975;5.85;2.411733 -10.06.2014;0.556050034;3.87;0.660839 -11.06.2014;0.624533322;2.76;43.112973 -12.06.2014;0.151967188;4.93;8.382199 -13.06.2014;0.157538759;4.04;4.601254 -14.06.2014;0;2.17;3.150225 -15.06.2014;0;3.94;2.241361 -16.06.2014;0;3.27;1.710589 -17.06.2014;0;3.16;1.321116 -18.06.2014;0;4.23;0.992249 -19.06.2014;0.144758038;2.19;0.83431 -20.06.2014;0;1.76;0.705359 -21.06.2014;0;2.92;0.53187 -22.06.2014;0;3.15;0.521248 -23.06.2014;0;3.83;2.429528 -24.06.2014;2.567664009;3.05;2.493053 -25.06.2014;0.112722143;2.67;3.021535 -26.06.2014;0;2.91;2.497373 -27.06.2014;0;3.48;1.406698 -28.06.2014;1.710331651;1.94;0.325878 -29.06.2014;1.488324257;1.96;0.48305 -30.06.2014;0.295577223;2.92;0.4799 -01.07.2014;0.11787906;3.98;0.178667 -02.07.2014;0;4.86;0.141846 -03.07.2014;0;5.41;0.064718 -04.07.2014;0;4.66;0.095529 -05.07.2014;0;2.26;0.048156 -06.07.2014;2.248664975;4.06;0.054958 -07.07.2014;0.857062955;2.48;0.028481 -08.07.2014;0;1.6;2.140779 -09.07.2014;0;1.43;12.23773 -10.07.2014;0;2.63;6.930812 -11.07.2014;0;3.45;5.769309 -12.07.2014;0;3.31;6.360065 -13.07.2014;0;2.09;4.393855 -14.07.2014;0;3.63;3.301672 -15.07.2014;0;4.95;1.665133 -16.07.2014;0;4.33;0.953405 -17.07.2014;0;5.46;0.603603 -18.07.2014;0;5.79;0.396544 -19.07.2014;0;5.49;0.272296 -20.07.2014;4.272633779;2.33;0.191608 -21.07.2014;2.731234062;2.14;0.572678 -22.07.2014;4.15904732;4.45;0.367916 -23.07.2014;0;4.92;0.149399 -24.07.2014;12;4.24;10.782832 -25.07.2014;0.127524398;4.28;1.04539 -26.07.2014;0;3.48;0.404255 -27.07.2014;0;4.48;0.249827 -28.07.2014;21.9359785;3.4;0.240198 -29.07.2014;0.98315524;1.91;22.17303 -30.07.2014;5.794436104;1.94;27.678204 -31.07.2014;0;4.77;10.559264 -01.08.2014;0;4.78;6.545522 -02.08.2014;0;3.31;4.452096 -03.08.2014;0;2.68;3.019714 -04.08.2014;1.420435897;2.93;2.385858 -05.08.2014;5.473793097;2.48;2.355767 -06.08.2014;0;2.79;1.913621 -07.08.2014;0.720042872;2.98;1.327966 -08.08.2014;1.051967891;3.71;1.157623 -09.08.2014;1.372515937;3.34;0.624994 -10.08.2014;13.95117727;2.11;4.918633 -11.08.2014;0.101255396;3.88;3.241756 -12.08.2014;0.203677102;3.41;1.491187 -13.08.2014;15.40990951;1.68;4.629456 -14.08.2014;4.483376092;2.44;5.725008 -15.08.2014;2.987380349;1.44;6.885889 -16.08.2014;1.211047331;2.18;5.674565 -17.08.2014;0;2.11;4.397387 -18.08.2014;0.335573939;2.54;3.264936 -19.08.2014;0.131819466;2.41;2.93412 -20.08.2014;0;2.87;2.433526 -21.08.2014;0;3.22;2.016218 -22.08.2014;0;2.14;1.825354 -23.08.2014;4.836148848;2.16;1.400093 -24.08.2014;0;2.2;1.391853 -25.08.2014;2.019839566;1.31;1.586774 -26.08.2014;23.93929942;1.2;10.742235 -27.08.2014;1.007975167;3.68;16.10069 -28.08.2014;0;2.26;7.937963 -29.08.2014;1.508595429;2.36;5.641862 -30.08.2014;0.603208138;1.69;4.662251 -31.08.2014;0.314533823;1.7;4.121519 -01.09.2014;0;1.76;3.558841 -02.09.2014;0.122789935;1.69;3.101579 -03.09.2014;0;1.51;2.848482 -04.09.2014;0;1.76;2.643328 -05.09.2014;0;2.47;2.343579 -06.09.2014;1.188701685;2.9;1.951323 -07.09.2014;0.100621026;2.3;1.664725 -08.09.2014;0;2.43;1.24396 -09.09.2014;0;2.29;1.175226 -10.09.2014;0;1.18;1.290439 -11.09.2014;0.573542154;1.59;1.297954 -12.09.2014;0.176962641;1.15;1.373099 -13.09.2014;0;1.27;1.175248 -14.09.2014;0;2.03;1.157704 -15.09.2014;0;1.2;1.06586 -16.09.2014;0;2.55;1.009118 -17.09.2014;0;3.09;0.956732 -18.09.2014;2.528926233;1.25;0.829029 -19.09.2014;0.201230414;1.65;0.789098 -20.09.2014;4.367034789;1.37;1.021417 -21.09.2014;10.07413991;1.13;6.806666 -22.09.2014;8.794258963;1.48;3.209986 -23.09.2014;0;1.67;2.412663 -24.09.2014;0.408314915;1.11;1.847794 -25.09.2014;0.22414206;1.27;1.205711 -26.09.2014;0;1.02;1.031828 -27.09.2014;0;1.99;1.045336 -28.09.2014;0;1.84;1.03605 -29.09.2014;0.205497416;1.2;0.895678 -30.09.2014;0;1.17;0.895646 -01.10.2014;0;1.62;0.768337 -02.10.2014;0;2.47;0.762039 -03.10.2014;0;2.27;0.80618 -04.10.2014;0;1.97;0.789423 -05.10.2014;0;1.05;0.755405 -06.10.2014;0;0.85;0.795363 -07.10.2014;12.90835284;0.95;1.464892 -08.10.2014;4.244250772;0.85;0.381115 -09.10.2014;6.34460647;0.94;3.701762 -10.10.2014;1.024488302;1.04;21.79129 -11.10.2014;0.508479833;1.09;7.906865 -12.10.2014;0.311250341;0.92;6.586355 -13.10.2014;0.33430835;0.99;7.582256 -14.10.2014;0.211476903;1.16;3.415751 -15.10.2014;0.304725347;1.33;4.286405 -16.10.2014;0.3071821;0.93;5.369749 -17.10.2014;0.303944237;0.93;5.116028 -18.10.2014;0.334764647;1.61;4.399485 -19.10.2014;0.339054767;1.4;3.902477 -20.10.2014;0.420583244;1.24;3.838424 -21.10.2014;0.450302243;0.68;3.660142 -22.10.2014;0.670948415;0.57;3.992868 -23.10.2014;0.422616155;0.76;3.79147 -24.10.2014;0;0.82;3.727811 -25.10.2014;1.303564003;0.64;3.703265 -26.10.2014;0;0.93;3.459456 -27.10.2014;0;0.56;3.219703 -28.10.2014;0;0.49;3.302464 -29.10.2014;0.62744644;0.66;3.361036 -30.10.2014;0;0.61;2.903047 -31.10.2014;0;0.63;2.633504 -01.11.2014;0.1042938;0.82;2.635834 -02.11.2014;0;0.58;2.501883 -03.11.2014;3.341473125;0.69;2.543623 -04.11.2014;1.272403943;0.66;3.167745 -05.11.2014;2.059249105;0.55;3.864357 -06.11.2014;0;0.61;3.404734 -07.11.2014;0.355935931;0.3;3.202559 -08.11.2014;0;0.68;2.964546 -09.11.2014;0.100209282;0.31;2.976025 -10.11.2014;0.307990821;0.45;2.69322 -11.11.2014;0;0.47;2.795811 -12.11.2014;0.501276759;0.48;2.622937 -13.11.2014;0.10201513;0.57;2.555214 -14.11.2014;0;0.52;2.56229 -15.11.2014;3.656798953;0.52;2.638485 -16.11.2014;11.72843921;0.48;31.488017 -17.11.2014;0.667950293;0.63;21.020167 -18.11.2014;6.352371922;0.45;20.322369 -19.11.2014;0.540674623;0.42;30.802991 -20.11.2014;0;0.39;21.899784 -21.11.2014;0;0.49;18.349493 -22.11.2014;0.099947961;0.18;15.648073 -23.11.2014;0;0.61;13.150718 -24.11.2014;0.103475817;0.45;11.367915 -25.11.2014;0.112064056;0.02;10.134425 -26.11.2014;0.107637521;0.15;9.134086 -27.11.2014;0.830690006;0.3;8.580387 -28.11.2014;0;0.21;7.949374 -29.11.2014;0;0.21;7.134789 -30.11.2014;0;0.19;6.831031 -01.12.2014;0.173953082;0.12;6.298394 -02.12.2014;0;0;5.682744 -03.12.2014;0;0;5.236759 -04.12.2014;0;0.04;4.837591 -05.12.2014;0;0.16;4.57932 -06.12.2014;0;0.17;4.416231 -07.12.2014;1.28107185;0.26;4.447125 -08.12.2014;0.100209282;0.2;3.589774 -09.12.2014;0;0.05;2.501976 -10.12.2014;1.034788345;0.18;2.537322 -11.12.2014;12.68598251;0.28;4.720196 -12.12.2014;9.217706401;0.41;8.400103 -13.12.2014;11.38168525;0.23;55.754499 -14.12.2014;2.387615834;0.15;56.925713 -15.12.2014;0.114833696;0.17;37.351264 -16.12.2014;0.907321596;0.29;29.442102 -17.12.2014;1.068943754;0.25;27.635014 -18.12.2014;0;0.48;23.907361 -19.12.2014;8.594827813;0.46;36.527435 -20.12.2014;2.988231831;0.29;37.495845 -21.12.2014;0;0.33;30.06876 -22.12.2014;0.352866143;0.4;25.625006 -23.12.2014;0;0.45;21.587337 -24.12.2014;1.053555123;0.39;19.046663 -25.12.2014;0.173863877;0.27;16.802984 -26.12.2014;0.110675885;0.14;14.815289 -27.12.2014;0;0;15.56601 -28.12.2014;0;0;13.843208 -29.12.2014;1.263365573;0;12.092481 -30.12.2014;5.869050266;0.11;12.295662 -31.12.2014;0.52731951;0.17;20.628504 -01.01.2015;0;0.13;37.112862 -02.01.2015;2.197111019;0.17;43.273249 -03.01.2015;2.076041355;0.12;44.557048 -04.01.2015;2.804424631;0.22;51.701439 -05.01.2015;0;0.09;44.809784 -06.01.2015;0;0;36.517261 -07.01.2015;0.626216693;0.12;31.415337 -08.01.2015;7.633275562;0.3;46.565012 -09.01.2015;3.189849889;0.42;62.535972 -10.01.2015;4.716378499;0.71;95.546467 -11.01.2015;0.572855892;0.26;67.769521 -12.01.2015;0.575470454;0.36;50.973385 -13.01.2015;2.766794222;0.78;42.971926 -14.01.2015;6.56335584;0.32;45.285769 -15.01.2015;0.271202152;0.4;41.46464 -16.01.2015;1.167951848;0.35;36.660865 -17.01.2015;0.100646727;0.25;31.972864 -18.01.2015;0.11728215;0;27.878203 -19.01.2015;0;0;24.917963 -20.01.2015;0;0;22.776854 -21.01.2015;0;0;19.787732 -22.01.2015;0;0;17.403546 -23.01.2015;0;0.03;15.365005 -24.01.2015;0.099439631;0;14.718248 -25.01.2015;0.562306516;0.09;14.234321 -26.01.2015;3.700413666;0.13;17.325765 -27.01.2015;0.572507353;0.24;19.867556 -28.01.2015;4.258330846;0.24;21.485107 -29.01.2015;2.856021716;0.21;28.865749 -30.01.2015;1.744560566;0.11;41.13121 -31.01.2015;0;0.1;30.669403 -01.02.2015;0.315477219;0.02;27.086405 -02.02.2015;0.330489384;0.12;25.572126 -03.02.2015;0.225728284;0.05;24.855957 -04.02.2015;0;0;21.693786 -05.02.2015;0.113985685;0;19.153205 -06.02.2015;0;0;17.01986 -07.02.2015;0;0;15.143354 -08.02.2015;0;0.37;14.196389 -09.02.2015;0;0.26;13.361797 -10.02.2015;0;0.34;13.111779 -11.02.2015;0;0.21;12.456951 -12.02.2015;0;0.07;12.076192 -13.02.2015;0;0.05;11.825054 -14.02.2015;0;0.15;11.240578 -15.02.2015;0;0;10.429445 -16.02.2015;0;0.01;9.468975 -17.02.2015;0;0.22;8.781588 -18.02.2015;0;0.28;7.877925 -19.02.2015;0;0.05;7.567328 -20.02.2015;0;0.51;7.555873 -21.02.2015;0.729364088;0.44;8.008075 -22.02.2015;0;0.28;7.279157 -23.02.2015;6.653893059;0.11;8.556553 -24.02.2015;1.691584779;0.43;10.422203 -25.02.2015;0.219177807;0.32;9.706447 -26.02.2015;0.305782636;0.42;9.147714 -27.02.2015;7.456286464;0.35;17.397023 -28.02.2015;0.100934759;0.37;19.164292 -01.03.2015;4.100608595;0.57;19.260996 -02.03.2015;6.189282754;0.81;23.049969 -03.03.2015;2.351472124;0.94;24.241514 -04.03.2015;0.880948936;0.54;24.591998 -05.03.2015;0;0.6;23.805212 -06.03.2015;0;0.36;23.536056 -07.03.2015;0.134325538;0.4;22.296821 -08.03.2015;0;0.87;21.093932 -09.03.2015;0;1.07;19.101897 -10.03.2015;0.306174652;0.42;18.457518 -11.03.2015;0.106222312;0.81;17.109674 -12.03.2015;0.129317835;0.97;15.406941 -13.03.2015;0;0.26;14.384062 -14.03.2015;0.416153117;0.3;13.163393 -15.03.2015;1.838324468;0.43;12.834546 -16.03.2015;0.127764601;1.1;12.874396 -17.03.2015;0;1.69;12.826044 -18.03.2015;0;1.9;11.479469 -19.03.2015;0;1.71;10.71069 -20.03.2015;0;1.23;10.442393 -21.03.2015;0.517761395;0.49;9.770026 -22.03.2015;0;0.37;8.77863 -23.03.2015;0.10170923;0.36;8.606823 -24.03.2015;0;0.51;8.350472 -25.03.2015;0;1.84;8.090294 -26.03.2015;0;0.79;8.420092 -27.03.2015;0.729811067;0.76;7.504301 -28.03.2015;0;1.58;6.603398 -29.03.2015;13.6841915;0.93;12.17778 -30.03.2015;2.905550098;1.71;19.421716 -31.03.2015;18.33312932;1.56;46.153929 -01.04.2015;5.375644914;0.86;41.535136 -02.04.2015;4.834739785;1.11;48.861515 -03.04.2015;0;1.7;42.432497 -04.04.2015;0.125167778;0.99;39.97278 -05.04.2015;0;1.12;33.667576 -06.04.2015;0;0.63;29.770818 -07.04.2015;0;1.26;26.251769 -08.04.2015;0;2.19;22.629107 -09.04.2015;0;2.85;20.687718 -10.04.2015;0;3.23;18.616907 -11.04.2015;0.143457461;1.53;16.784894 -12.04.2015;0;2.66;14.743109 -13.04.2015;0;2.32;12.974395 -14.04.2015;0;2.9;11.825997 -15.04.2015;0;3.79;10.936816 -16.04.2015;0;3.12;9.816939 -17.04.2015;1.739361299;2.22;9.527835 -18.04.2015;0;2.22;8.831997 -19.04.2015;0;2.59;8.040308 -20.04.2015;0;3.19;7.446125 -21.04.2015;0;3.61;6.54149 -22.04.2015;0;2.62;6.063128 -23.04.2015;0;3.06;5.584067 -24.04.2015;0;3.54;5.040144 -25.04.2015;1.036051027;1.11;5.087515 -26.04.2015;2.061346786;2.09;5.110306 -27.04.2015;15.08287028;1.11;10.767407 -28.04.2015;0;2.44;8.574511 -29.04.2015;0;2.2;6.629398 -30.04.2015;4.495005735;1.5;6.468695 -01.05.2015;0.201853597;1.12;6.651212 -02.05.2015;0;2.58;5.644016 -03.05.2015;4.624674841;1.25;5.931206 -04.05.2015;0.611214655;3.14;5.099102 -05.05.2015;0.713806452;2.84;4.259448 -06.05.2015;0.130481147;3.09;4.292848 -07.05.2015;0;3.46;4.57915 -08.05.2015;0;2.71;4.238458 -09.05.2015;4.416673607;2.12;4.102291 -10.05.2015;0.110489032;2.87;3.860088 -11.05.2015;0;3.49;3.540893 -12.05.2015;0.99141461;3.37;3.313754 -13.05.2015;0;3.89;2.937645 -14.05.2015;0;3.62;2.837783 -15.05.2015;0;3.9;2.334776 -16.05.2015;0.455450258;2.14;2.668704 -17.05.2015;0.100209282;3.13;2.606509 -18.05.2015;0;4.32;2.260054 -19.05.2015;0.100215881;3;1.993653 -20.05.2015;0.240429943;1.85;1.969968 -21.05.2015;0;2.77;1.849542 -22.05.2015;0;3.77;1.622966 -23.05.2015;0;1.54;1.627196 -24.05.2015;0;1.94;1.526816 -25.05.2015;0.763212906;2.08;1.702871 -26.05.2015;0;1.46;1.653256 -27.05.2015;0;1.25;1.587107 -28.05.2015;0;2.02;1.372065 -29.05.2015;0.714781746;2.49;1.494517 -30.05.2015;1.797434336;2.65;1.508525 -31.05.2015;0;2.24;1.343536 -01.06.2015;1.9077524;2.25;1.643991 -02.06.2015;0;2.7;1.283713 -03.06.2015;0;3.39;0.913469 -04.06.2015;0.111569687;4.98;0.795185 -05.06.2015;0;5.79;0.653788 -06.06.2015;1.968594361;4.08;0.572147 -07.06.2015;0;4.79;0.522457 -08.06.2015;0;3.03;0.535302 -09.06.2015;0;3.22;0.602977 -10.06.2015;0;3.44;0.479275 -11.06.2015;0;3.04;0.456393 -12.06.2015;0;4.86;0.395009 -13.06.2015;0;2.77;0.431227 -14.06.2015;0;5.51;0.38527 -15.06.2015;0;2.88;0.321956 -16.06.2015;0;3.72;0.338222 -17.06.2015;0;4.06;0.37645 -18.06.2015;4.311581277;2.51;0.694069 -19.06.2015;0.100497674;1.39;0.650672 -20.06.2015;0.162975391;1.51;0.579808 -21.06.2015;1.552314127;1.71;1.523814 -22.06.2015;0.617895402;1.38;2.825669 -23.06.2015;10.47449707;1.86;3.714022 -24.06.2015;0;2.37;1.638874 -25.06.2015;0;3.79;1.051155 -26.06.2015;0;2.99;0.689037 -27.06.2015;5.762995105;3.01;0.852325 -28.06.2015;0;4.3;0.537126 -29.06.2015;0;4.79;0.426541 -30.06.2015;0;5.77;0.140329 -01.07.2015;0;6.03;0.216116 -02.07.2015;0;6.16;0.206475 -03.07.2015;0;5.69;0.306456 -04.07.2015;0;5.77;0.333392 -05.07.2015;2.164609861;5.01;0.150782 -06.07.2015;0.671559919;5.52;0.310616 -07.07.2015;1.073044637;4.43;0.315667 -08.07.2015;0.4049572;2.69;0.284107 -09.07.2015;0;3.21;0.365145 -10.07.2015;0;4.93;0.36325 -11.07.2015;0;4.63;0.342682 -12.07.2015;0.742175486;3.28;0.22183 -13.07.2015;0.917812515;1.61;0.437654 -14.07.2015;0.335801186;2.14;0.482093 -15.07.2015;0;3.18;0.398528 -16.07.2015;0;4.95;0.316123 -17.07.2015;0;4.67;0.262393 -18.07.2015;0;4.7;0.08223 -19.07.2015;18.5499668;2.41;4.793734 -20.07.2015;0.711446537;1.83;0.623911 -21.07.2015;0;4.83;0.392438 -22.07.2015;0;4.22;0.263452 -23.07.2015;0;4;0.178808 -24.07.2015;1.161745747;3.75;0.050885 -25.07.2015;4.739583375;2.86;0.336215 -26.07.2015;1.023947168;3.27;0.290719 -27.07.2015;4.775790837;1.94;0.564419 -28.07.2015;0.22046942;2.71;0.313909 -29.07.2015;0;3.46;0.193449 -30.07.2015;0.310739687;2.57;0.157555 -31.07.2015;0;4.38;0.181167 -01.08.2015;0;3.82;0.14496 -02.08.2015;0;4.89;0.127533 -03.08.2015;0;5.24;0.153291 -04.08.2015;5.275810734;2.84;0.179845 -05.08.2015;0;3.58;0.179909 -06.08.2015;0;4.63;0.113079 -07.08.2015;0;5.29;0.086913 -08.08.2015;0.838703273;3.79;0.054659 -09.08.2015;0;2.86;0.055128 -10.08.2015;18.45712161;3.91;4.067164 -11.08.2015;0.203727284;3.24;0.321283 -12.08.2015;0;3.99;0.14527 -13.08.2015;0;5.06;0.134175 -14.08.2015;0.300627846;2.89;0.047637 -15.08.2015;0.101148058;2.41;0.047741 -16.08.2015;13.96655107;1.4;0.945726 -17.08.2015;13.0154946;1.3;1.553669 -18.08.2015;0;1.52;0.886208 -19.08.2015;0.103992367;2.39;0.345045 -20.08.2015;0;3.06;0.257407 -21.08.2015;0;3.77;0.233115 -22.08.2015;0;3.92;0.282097 -23.08.2015;0.101825612;3.62;0.265316 -24.08.2015;5.562099678;1.85;0.383227 -25.08.2015;0;2.32;0.782742 -26.08.2015;0;4.18;0.252642 -27.08.2015;5.541019025;1.51;0.259085 -28.08.2015;5.502802797;1.83;1.389353 -29.08.2015;0;3.75;0.434066 -30.08.2015;0;4.14;0.282558 -31.08.2015;0.114274753;4.47;0.20771 -01.09.2015;18.47829078;1.46;0.461493 -02.09.2015;0.100209282;2.35;0.220189 -03.09.2015;0;3.18;0.285524 -04.09.2015;0;1.98;0.316121 -05.09.2015;2.091075744;1.48;0.235072 -06.09.2015;0.940822544;1.88;0.227215 -07.09.2015;0.316429087;1.33;0.214042 -08.09.2015;0.231054006;1.47;0.241931 -09.09.2015;0;2.2;0.274223 -10.09.2015;0;2.65;0.317282 -11.09.2015;0;2.69;0.388467 -12.09.2015;0;1.88;0.361774 -13.09.2015;1.050664421;1.51;0.355183 -14.09.2015;1.573098864;1.55;0.268506 -15.09.2015;0.463845252;1.58;0.356508 -16.09.2015;15.0852756;1.06;0.842125 -17.09.2015;4.754206198;1.05;0.82415 -18.09.2015;1.352306651;1.51;0.514047 -19.09.2015;0.249046217;1.39;0.358904 -20.09.2015;0;1.36;0.387005 -21.09.2015;0;1.71;0.556901 -22.09.2015;7.590314374;0.98;0.9087 -23.09.2015;0.914729461;0.93;0.642797 -24.09.2015;0.105731773;1.92;0.456008 -25.09.2015;0;1.67;0.460169 -26.09.2015;0;0.96;0.721392 -27.09.2015;0;2.14;0.688831 -28.09.2015;0;2.08;0.656706 -29.09.2015;0;2.14;0.620153 -30.09.2015;0;2.15;0.513464 -01.10.2015;0;1.97;0.454253 -02.10.2015;0;1.99;0.641321 -03.10.2015;0;1.97;0.621185 -04.10.2015;0;0.98;0.622735 -05.10.2015;0.901883538;1.39;0.518392 -06.10.2015;4.40263371;0.95;0.388521 -07.10.2015;0;1.06;0.427714 -08.10.2015;1.61427714;0.89;0.464805 -09.10.2015;6.348355114;0.82;1.353489 -10.10.2015;0;1.69;0.639001 -11.10.2015;0;1.41;0.683847 -12.10.2015;0.220095833;0.94;0.801054 -13.10.2015;0.288329493;0.33;0.862333 -14.10.2015;1.197675706;0.32;0.964854 -15.10.2015;16.6273538;0.32;2.793781 -16.10.2015;0.100545929;0.47;2.877023 -17.10.2015;0;0.49;1.343599 -18.10.2015;1.472179303;0.47;0.997485 -19.10.2015;0.423122991;0.49;0.76709 -20.10.2015;0.410582301;0.9;0.747152 -21.10.2015;9.153286597;0.62;0.583958 -22.10.2015;0;0.62;0.45371 -23.10.2015;0;1.33;0.551057 -24.10.2015;0;0.46;0.526463 -25.10.2015;0.301801979;0.63;0.512561 -26.10.2015;0;1.34;0.66113 -27.10.2015;0.110131401;1.01;0.637831 -28.10.2015;0;0.55;0.676474 -29.10.2015;0.307945995;0.63;0.598415 -30.10.2015;0;0.78;0.666631 -31.10.2015;0;0.77;0.732306 -01.11.2015;0;0.6;0.811233 -02.11.2015;0.101460971;0.49;0.808923 -03.11.2015;0;0.33;0.777881 -04.11.2015;0;0.35;0.765854 -05.11.2015;0.201751349;0.98;0.776858 -06.11.2015;0.205581155;0.64;0.620153 -07.11.2015;0.601373503;0.75;0.522026 -08.11.2015;0;0.95;0.581254 -09.11.2015;1.150310197;0.75;0.490283 -10.11.2015;0;0.68;0.453829 -11.11.2015;0;0.95;0.4192 -12.11.2015;0;0.86;0.413633 -13.11.2015;1.449292275;0.52;0.430706 -14.11.2015;0.235410377;0.51;0.521205 -15.11.2015;0.555875606;0.59;0.489393 -16.11.2015;0.240938014;0.54;0.429516 -17.11.2015;8.449224568;0.61;1.462533 -18.11.2015;1.755325032;0.66;1.335369 -19.11.2015;18.27323007;0.69;3.106473 -20.11.2015;3.521850818;0.42;7.103129 -21.11.2015;1.348400749;0.24;4.295873 -22.11.2015;0.105311222;0.21;2.451987 -23.11.2015;0.433366928;0.14;1.864489 -24.11.2015;0.120211584;0;1.593253 -25.11.2015;3.508738949;0.15;2.038703 -26.11.2015;0.110528991;0.29;1.835579 -27.11.2015;0;0.03;1.627768 -28.11.2015;0.654330392;0.27;1.460863 -29.11.2015;15.39886263;0.41;7.73805 -30.11.2015;26.36632411;0.45;21.64296 -01.12.2015;6.562073855;0.49;34.297636 -02.12.2015;0.116859243;0.46;24.573917 -03.12.2015;0.102987071;0.46;15.602492 -04.12.2015;1.47904194;0.26;11.866875 -05.12.2015;0.109246337;0.17;9.220344 -06.12.2015;0.233395915;0.39;7.908478 -07.12.2015;0;0.68;6.490688 -08.12.2015;0.108273225;0.18;5.770311 -09.12.2015;1.713607698;0.37;5.588081 -10.12.2015;0;0.13;4.609157 -11.12.2015;5.123945131;0.19;4.870496 -12.12.2015;1.035770485;0.38;10.322082 -13.12.2015;0.211855012;0.38;8.855462 -14.12.2015;0.202589302;0.42;8.197842 -15.12.2015;0;0.19;7.100896 -16.12.2015;2.739947281;0.38;7.59766 -17.12.2015;0.108460496;0.49;7.969175 -18.12.2015;0.613575879;0.5;7.270544 -19.12.2015;0;0.49;6.740516 -20.12.2015;0;0.4;6.351479 -21.12.2015;2.460479131;0.49;6.124973 -22.12.2015;1.616502071;0.49;6.457674 -23.12.2015;0;0.59;6.222186 -24.12.2015;0;0.5;5.642859 -25.12.2015;3.802154414;0.46;5.886817 -26.12.2015;0.10366619;0.92;6.231738 -27.12.2015;0;0.29;5.68726 -28.12.2015;0.103475817;0.19;5.047149 -29.12.2015;0.117668113;0.35;4.688448 -30.12.2015;0;0.28;4.222519 -31.12.2015;1.705440938;0.21;4.223433 -01.01.2016;0;0.23;4.017889 -02.01.2016;8.369063977;0.12;7.317093 -03.01.2016;0.588034675;0.15;14.461141 -04.01.2016;2.664713628;0.08;15.101703 -05.01.2016;0.313912567;0.26;16.96072 -06.01.2016;0.927559742;0.28;15.06295 -07.01.2016;3.927806081;0.28;14.981331 -08.01.2016;0;0.41;16.039465 -09.01.2016;0.099528216;0;13.894992 -10.01.2016;3.926668473;0.48;13.188682 -11.01.2016;4.007747055;0.27;16.235448 -12.01.2016;1.591280505;0.36;22.579827 -13.01.2016;3.102145333;0.31;24 -14.01.2016;1.421460702;0.12;26 -15.01.2016;2.531443794;0.13;24 -16.01.2016;0.351501461;0.1;22 -17.01.2016;0;0;21 -18.01.2016;0;0;19 -19.01.2016;0;0;18 -20.01.2016;0;0;17 -21.01.2016;0;0;16 -22.01.2016;0;0;15 -23.01.2016;1.830081293;0.12;18 -24.01.2016;0.811706003;0.2;17 -25.01.2016;0.309008813;0.37;17 -26.01.2016;0;0.34;13 -27.01.2016;0;0.55;15 -28.01.2016;1.833112643;0.78;17 -29.01.2016;0.107904839;0.51;17 -30.01.2016;7.536723939;0.43;22 -31.01.2016;0.585522187;0.33;14 -01.02.2016;0.692162459;0.59;15 -02.02.2016;6.761576351;0.56;17.517095 -03.02.2016;1.277490294;0.44;19.508173 -04.02.2016;4.32179039;0.25;22.8447 -05.02.2016;0;0.38;24.430915 -06.02.2016;0;0.94;23.071457 -07.02.2016;1.143381551;0.49;20.843161 -08.02.2016;11.01289227;0.52;26.241241 -09.02.2016;8.73877593;0.46;35.07356 -10.02.2016;2.554046236;0.28;40.645547 -11.02.2016;0.567619658;0.36;37.445989 -12.02.2016;0;0.16;33.127436 -13.02.2016;2.40133402;0;30.247736 -14.02.2016;3.37223563;0.33;43.163267 -15.02.2016;0.545083452;0.2;34.951078 -16.02.2016;0.108791133;0;27.866289 -17.02.2016;0;0.1;25.252043 -18.02.2016;0;0.13;22.887992 -19.02.2016;0;0;20.811797 -20.02.2016;8.941678944;0.34;22.393728 -21.02.2016;0.205946991;0.71;44.490382 -22.02.2016;4.448658783;0.64;37.383955 -23.02.2016;5.210107493;0.28;69.780614 -24.02.2016;0.31667498;0.22;53.853118 -25.02.2016;0.182021156;0;48.026933 -26.02.2016;0;0.07;40.424149 -27.02.2016;0;0.38;35.294958 -28.02.2016;0;0.25;29.46965 -29.02.2016;0;0.28;24.575869 -01.03.2016;0.099788551;0.23;21.655856 -02.03.2016;2.543764781;0.45;20.858822 -03.03.2016;0;0.32;18.914856 -04.03.2016;4.054581017;0.17;16.972813 -05.03.2016;2.802675702;0.41;22.858987 -06.03.2016;1.330104522;0.25;20.687357 -07.03.2016;1.4895669;0.1;19.982822 -08.03.2016;0.2254387;0.01;18.236769 -09.03.2016;0;0.19;17.004084 -10.03.2016;0;0.59;15.292344 -11.03.2016;0;0.54;13.741963 -12.03.2016;0;0.37;12.547774 -13.03.2016;0;0.63;11.309854 -14.03.2016;0;0.94;10.237401 -15.03.2016;0;0.31;9.750376 -16.03.2016;0;0.72;8.958825 -17.03.2016;0;0.98;8.378552 -18.03.2016;0;1.45;7.691635 -19.03.2016;0;0.55;6.937422 -20.03.2016;0;0.56;6.583335 -21.03.2016;0;0.77;6.237093 -22.03.2016;0.201403041;0.78;6.006363 -23.03.2016;0;0.81;5.892014 -24.03.2016;0.100209282;0.75;5.51542 -25.03.2016;5.295629966;0.63;6.150663 -26.03.2016;0;1.67;5.828721 -27.03.2016;2.417535746;1.01;5.560486 -28.03.2016;11.95504135;0.74;8.674594 -29.03.2016;0.955642999;1.61;15.443117 -30.03.2016;5.486573008;0.97;13.541014 -31.03.2016;18.36523119;0.68;19.400544 -01.04.2016;12.93356866;1.18;113.67114 -02.04.2016;0;1.54;82.107844 -03.04.2016;0.311702212;1.77;66.821929 -04.04.2016;2.777947475;1.5;54.033702 -05.04.2016;5.288557416;1;53.38014 -06.04.2016;0.207421675;1.77;47.042426 -07.04.2016;2.371324356;1.97;41.448781 -08.04.2016;0;1.41;35.409018 -09.04.2016;0;1.81;30.363167 -10.04.2016;0;1.84;26.219279 -11.04.2016;0;2.81;23.122281 -12.04.2016;2.788103585;1.79;20.835289 -13.04.2016;0.206878578;0.84;19.908118 -14.04.2016;0.110850254;2.5;16.993101 -15.04.2016;0.350645583;1.96;14.864128 -16.04.2016;4.598064622;1.46;15.11145 -17.04.2016;3.985827078;1.55;19.05834 -18.04.2016;0;2.1;14.310609 -19.04.2016;0.112219084;1.14;14.231106 -20.04.2016;0;2.46;14.236287 -21.04.2016;0;3.06;13.086719 -22.04.2016;0;2.34;11.993123 -23.04.2016;1.694991123;1.01;12.306438 -24.04.2016;0.325431496;0.88;11.843871 -25.04.2016;6.326924595;0.69;11.909214 -26.04.2016;1.543896592;1.15;14.036164 -27.04.2016;0.518940383;0.73;12.009422 -28.04.2016;0;1.4;10.280654 -29.04.2016;0;0.95;9.101957 -30.04.2016;3.466456859;1.72;8.363818 -01.05.2016;0.159418201;3.11;8.551597 -02.05.2016;0;3.61;6.51079 -03.05.2016;0.435001943;1.48;6.02769 -04.05.2016;0;2.85;5.368609 -05.05.2016;0;3.32;4.990627 -06.05.2016;0;4.16;4.540968 -07.05.2016;0;4.29;4.319355 -08.05.2016;0;4.57;3.769702 -09.05.2016;0;4.33;3.344512 -10.05.2016;0;3.25;3.137534 -11.05.2016;0.384986665;3.2;2.993173 -12.05.2016;0;2.95;2.755869 -13.05.2016;0.430369072;3.08;2.797507 -14.05.2016;0.149206473;1.5;2.709491 -15.05.2016;0;1.48;2.345982 -16.05.2016;0;1.63;2.370086 -17.05.2016;0;1.3;2.005466 -18.05.2016;0.113391854;1.46;3.404877 -19.05.2016;1.112386621;1.85;7.296716 -20.05.2016;0;2.62;2.172888 -21.05.2016;0;3.25;2.133433 -22.05.2016;1.864368134;3.41;1.866284 -23.05.2016;1.265196483;1.53;1.467837 -24.05.2016;1.771244042;1.3;1.894978 -25.05.2016;0;1.36;1.9752 -26.05.2016;0;3.47;1.573497 -27.05.2016;8.319655478;2.41;2.33996 -28.05.2016;0.203177184;2.96;1.829068 -29.05.2016;2.73192665;2.12;1.709702 -30.05.2016;18.88931006;1.77;8.95159 -31.05.2016;0;1.86;4.092378 -01.06.2016;9.534581958;1.58;4.699488 -02.06.2016;2.583155448;2.07;4.857672 -03.06.2016;4.311377293;1.7;4.482569 -04.06.2016;0.42769823;2.09;3.807784 -05.06.2016;0;4.44;2.555667 -06.06.2016;0;4.6;1.511484 -07.06.2016;0;4.96;0.942042 -08.06.2016;0.40516591;2.73;0.997192 -09.06.2016;0;4.21;0.898497 -10.06.2016;0;4.25;0.780168 -11.06.2016;0;1.95;0.637056 -12.06.2016;5.575656572;2.04;2.174046 -13.06.2016;3.027432781;1.73;2.259874 -14.06.2016;2.364694311;2.76;1.868474 -15.06.2016;16.39205803;2.15;2.864543 -16.06.2016;0.207891926;1.44;2.868224 -17.06.2016;1.336235888;3.19;4.381649 -18.06.2016;0;3.41;3.74645 -19.06.2016;1.36919939;2.2;3.258419 -20.06.2016;3.773280497;3.3;3.265759 -21.06.2016;0.667187168;2.08;3.274147 -22.06.2016;0;2.83;2.998418 -23.06.2016;0;6.11;2.689739 -24.06.2016;0.327630879;5.13;14.381339 -25.06.2016;1.902249526;1.85;10.456674 -26.06.2016;0.207473991;3.64;6.658158 -27.06.2016;0;2.53;4.954631 -28.06.2016;0;3.17;4.802392 -29.06.2016;0.227507408;4.19;3.971303 -30.06.2016;0.301788243;1.91;3.430218 -01.07.2016;0;2.31;3.095551 -02.07.2016;1.07184607;2.59;2.837811 -03.07.2016;2.475292137;2.92;2.740753 -04.07.2016;0;2.38;2.670906 -05.07.2016;0.111215047;2.87;2.547434 -06.07.2016;0;3.43;2.150196 -07.07.2016;0.112414583;4.04;2.006068 -08.07.2016;0;3.04;1.91181 -09.07.2016;0;3.75;1.703555 -10.07.2016;0;4.64;1.62032 -11.07.2016;0;3.03;1.708246 -12.07.2016;0.110809941;3.9;1.583203 -13.07.2016;17.03403353;2.9;2.966055 -14.07.2016;0.144179897;2.58;1.943222 -15.07.2016;0;2.55;1.426019 -16.07.2016;0;2.11;1.478625 -17.07.2016;0;2.38;1.449198 -18.07.2016;0;5.16;1.204307 -19.07.2016;0;5.62;1.477551 -20.07.2016;0;5.69;1.30457 -21.07.2016;3.202411363;2.48;1.587464 -22.07.2016;0;3.26;1.495235 -23.07.2016;11.98292241;2.56;3.329446 -24.07.2016;18.1615269;2.12;1.64346 -25.07.2016;0.106852963;3.84;1.449671 -26.07.2016;0;2.78;1.336794 -27.07.2016;0.531528718;3.89;1.373016 -28.07.2016;0.100209282;2.11;1.308763 -29.07.2016;3.160570324;2.34;1.381977 -30.07.2016;0;2.92;1.170749 -31.07.2016;0;2.5;1.131734 -01.08.2016;0;3.13;0.816771 -02.08.2016;1.270286145;1.48;1.019339 -03.08.2016;4.530701661;1.57;1.389518 -04.08.2016;3.016878384;1.52;1.896977 -05.08.2016;0.100289513;3.21;1.596594 -06.08.2016;0;2.67;1.3715 -07.08.2016;0;4.93;1.27007 -08.08.2016;0;3.7;1.077521 -09.08.2016;0.109530437;2.63;0.992203 -10.08.2016;0.900571308;2.16;1.090999 -11.08.2016;2.399586919;1.7;1.00089 -12.08.2016;0.100877001;1.48;1.118367 -13.08.2016;0;4.71;0.945061 -14.08.2016;0;3.35;0.855563 -15.08.2016;0;4.37;0.80397 -16.08.2016;0;4.32;0.673348 -17.08.2016;0;4.39;0.620793 -18.08.2016;0;3.96;0.643303 -19.08.2016;0;2.86;0.769216 -20.08.2016;1.283211371;1.89;0.86842 -21.08.2016;0.318061239;2.1;0.845269 -22.08.2016;0;1.59;0.809725 -23.08.2016;0;3.67;0.623575 -24.08.2016;0;4.57;0.583828 -25.08.2016;0;4.63;0.451006 -26.08.2016;0;4.7;0.390638 -27.08.2016;0;4.77;0.381175 -28.08.2016;34.51466023;3.35;0.783103 -29.08.2016;0;2.26;0.44335 -30.08.2016;0;3.92;0.28983 -31.08.2016;0;3.86;0.362807 -01.09.2016;0;4.02;0.34465 -02.09.2016;0;3.69;0.263442 -03.09.2016;0;2.92;0.266859 -04.09.2016;4.869164961;1.83;0.500049 -05.09.2016;0.620093261;1.65;0.514997 -06.09.2016;0;3.49;0.421759 -07.09.2016;0;3.74;0.360717 -08.09.2016;0;3.77;0.623417 -09.09.2016;0;3;0.647308 -10.09.2016;0;3.59;0.566866 -11.09.2016;0;3.57;0.642779 -12.09.2016;0;3.83;0.584243 -13.09.2016;0;3.87;0.624604 -14.09.2016;0;3.46;0.773907 -15.09.2016;0;3.48;0.634482 -16.09.2016;0;1.57;0.59636 -17.09.2016;13.08211674;1.2;1.090803 -18.09.2016;0.130423501;1.87;0.843269 -19.09.2016;0.11664365;1;0.649716 -20.09.2016;0;1.02;0.681233 -21.09.2016;0;2.39;0.594031 -22.09.2016;0;2.34;0.456837 -23.09.2016;0;2.14;0.362912 -24.09.2016;0;2.3;0.383837 -25.09.2016;0;2.78;0.337883 -26.09.2016;0;1.42;0.258338 -27.09.2016;0;2.4;0.247644 -28.09.2016;0;1.6;0.985329 -29.09.2016;0;2.37;1.112481 -30.09.2016;1.314380267;0.94;1.097666 -01.10.2016;7.856574862;0.96;1.855835 -02.10.2016;1.626249664;1.59;1.543922 -03.10.2016;3.48372122;1.1;1.419513 -04.10.2016;0.100209282;1.22;1.447856 -05.10.2016;0;1.34;1.387699 -06.10.2016;0;0.68;1.601107 -07.10.2016;1.07828162;0.74;2.150463 -08.10.2016;0.953118453;0.99;2.149589 -09.10.2016;0;0.87;2.01451 -10.10.2016;0;0.54;2.190437 -11.10.2016;0.401547464;0.69;2.230597 -12.10.2016;0.922311521;0.59;2.324864 -13.10.2016;0;0.58;2.237421 -14.10.2016;0;1.05;2.22384 -15.10.2016;0;0.82;2.383007 -16.10.2016;0.107234188;1.04;2.20354 -17.10.2016;1.431599645;0.79;2.184616 -18.10.2016;0.887529053;0.85;2.192242 -19.10.2016;1.557685112;0.57;2.283406 -20.10.2016;4.218952387;0.49;3.127501 -21.10.2016;2.839809068;0.55;2.666176 -22.10.2016;2.518736468;0.56;2.78843 -23.10.2016;0;0.49;2.726416 -24.10.2016;6.607301235;0.56;3.193445 -25.10.2016;3.794312657;0.63;3.883982 -26.10.2016;0;0.57;3.061952 -27.10.2016;0.102334741;0.67;2.556083 -28.10.2016;0;0.64;2.419092 -29.10.2016;0;1.3;2.460045 -30.10.2016;0;0.65;2.391391 -31.10.2016;0;0.98;2.428228 -01.11.2016;0;0.39;2.418025 -02.11.2016;1.030322287;0.68;2.655645 -03.11.2016;0.118985639;0.36;2.558833 -04.11.2016;0.429524248;0.27;2.715995 -05.11.2016;4.297140032;0.39;3.624203 -06.11.2016;0.202492988;0.32;3.226817 -07.11.2016;4.252920837;0.28;3.551767 -08.11.2016;2.859901977;0.17;3.772956 -09.11.2016;4.06644106;0.14;3.928129 -10.11.2016;2.335767308;0.23;5.782891 -11.11.2016;10.75225678;0.26;11.36022 -12.11.2016;0;0.07;6.61794 -13.11.2016;0;0.03;4.741424 -14.11.2016;0.10398106;0;4.222565 -15.11.2016;3.267344925;0.15;4.521476 -16.11.2016;6.133248608;0.46;11.04024 -17.11.2016;2.558420874;0.53;8.805645 -18.11.2016;11.05649097;0.51;11.054335 -19.11.2016;0.334527715;0.32;8.602058 -20.11.2016;0;0.45;6.936625 -21.11.2016;0;0.5;6.053484 -22.11.2016;0;0.43;5.378617 -23.11.2016;0;0.68;4.958714 -24.11.2016;0;0.89;4.675723 -25.11.2016;0;0.63;4.342186 -26.11.2016;0;0.26;4.086791 -27.11.2016;0;0.29;3.91826 -28.11.2016;0.126594003;0;3.852809 -29.11.2016;0;0;3.971793 -30.11.2016;0;0;3.6 -01.12.2016;0;0.23;3.059105 -02.12.2016;2.982331796;0.24;3.163502 -03.12.2016;0.104258295;0;3.207182 -04.12.2016;0.100284967;0;3.657785 -05.12.2016;0;0;5.361678 -06.12.2016;0;0;3.356678 -07.12.2016;0;0;3.219573 -08.12.2016;0;0;3.341401 -09.12.2016;0;0.07;3.23561 -10.12.2016;0;0.06;3.505606 -11.12.2016;0.244925705;0.37;3.580689 -12.12.2016;0.365184914;0.34;3.556574 -13.12.2016;1.358897575;0.21;3.457692 -14.12.2016;1.771248669;0.26;3.808543 -15.12.2016;0;0.31;3.677545 -16.12.2016;0;0.18;3.549057 -17.12.2016;0.108076322;0.09;3.196081 -18.12.2016;0;0.21;3.181549 -19.12.2016;0.10906751;0.22;3.326469 -20.12.2016;0;0;3.266387 -21.12.2016;0;0;3.133773 -22.12.2016;1.903407829;0.02;3.324144 -23.12.2016;0;0.14;3.584695 -24.12.2016;0.395363312;0.38;3.548042 -25.12.2016;0.285241167;0.39;3.545211 -26.12.2016;0.830906677;0.39;3.442165 -27.12.2016;0;0.32;3.118225 -28.12.2016;0;0.28;3.043744 -29.12.2016;0;0;3.05141 -30.12.2016;0;0;3.061955 -31.12.2016;0;0;2.959312 diff --git a/spotpy/examples/hymod_python/hymod_input.csv b/spotpy/examples/hymod_python/hymod_input.csv deleted file mode 100644 index 3c158e03..00000000 --- a/spotpy/examples/hymod_python/hymod_input.csv +++ /dev/null @@ -1,1828 +0,0 @@ -Date;rainfall[mm];TURC [mm d-1];Discharge[ls-1] -01.01.2012;2.052861283;0.35;nan -02.01.2012;0;0.26;nan -03.01.2012;0.58456085;0.39;nan -04.01.2012;0.123880377;0.53;nan -05.01.2012;0;0.44;nan -06.01.2012;0;0.63;nan -07.01.2012;0;0.42;nan -08.01.2012;0;0.39;nan -09.01.2012;1.163450614;0.29;nan -10.01.2012;0.110276668;0.27;nan -11.01.2012;0;0;nan -12.01.2012;0;0;nan -13.01.2012;0;0;nan -14.01.2012;0;0;nan -15.01.2012;0;0;nan -16.01.2012;0;0;nan -17.01.2012;0;0;nan -18.01.2012;1.219186104;0;nan -19.01.2012;11.18647129;0.34;nan -20.01.2012;6.105975569;0.23;nan -21.01.2012;4.373221849;0.29;nan -22.01.2012;5.178867935;0.35;nan -23.01.2012;2.623482708;0.31;nan -24.01.2012;1.369532702;0.17;nan -25.01.2012;0.100778681;0;nan -26.01.2012;0;0;nan -27.01.2012;0.636631682;0.03;nan -28.01.2012;0;0.05;nan -29.01.2012;0;0;nan -30.01.2012;0;0;nan -31.01.2012;0;0;nan -01.02.2012;0;0;nan -02.02.2012;0;0;nan -03.02.2012;0;0;nan -04.02.2012;0;0;nan -05.02.2012;0;0;nan -06.02.2012;0;0;nan -07.02.2012;0;0;nan -08.02.2012;0;0;nan -09.02.2012;0;0;nan -10.02.2012;0;0;nan -11.02.2012;0;0;nan -12.02.2012;0;0;nan -13.02.2012;0;0;nan -14.02.2012;0;0.02;nan -15.02.2012;2.17738637;0.32;nan -16.02.2012;0;0.39;nan -17.02.2012;0.2499812;0.41;nan -18.02.2012;0.931498122;0.43;nan -19.02.2012;1.746463163;0.53;nan -20.02.2012;0;0.04;nan -21.02.2012;0;0.06;nan -22.02.2012;0;0.45;nan -23.02.2012;0;0.47;nan -24.02.2012;0;0.62;nan -25.02.2012;0;0.94;nan -26.02.2012;0;0.59;nan -27.02.2012;0;0.34;nan -28.02.2012;0;0.62;nan -29.02.2012;0.207535518;1.04;nan -01.03.2012;0;0.63;nan -02.03.2012;0.100209282;0.58;nan -03.03.2012;0.102361883;0.54;nan -04.03.2012;0;0.65;nan -05.03.2012;0.650417002;0.56;nan -06.03.2012;0;1.06;nan -07.03.2012;1.16677932;0.33;nan -08.03.2012;0.620345275;0.81;nan -09.03.2012;0;0.51;nan -10.03.2012;0;0.65;nan -11.03.2012;0;0.79;nan -12.03.2012;0;1.35;nan -13.03.2012;0;0.66;nan -14.03.2012;0;0.59;nan -15.03.2012;0;1.43;nan -16.03.2012;0;1.89;nan -17.03.2012;0;1.83;nan -18.03.2012;6.356746921;0.69;nan -19.03.2012;0;1.54;nan -20.03.2012;0;1.47;nan -21.03.2012;0;1.9;nan -22.03.2012;0;2.35;nan -23.03.2012;0;2.38;nan -24.03.2012;0;2.3;nan -25.03.2012;0;2.67;nan -26.03.2012;0;2.5;nan -27.03.2012;0;2.67;nan -28.03.2012;0;2.81;nan -29.03.2012;0;1.12;nan -30.03.2012;0;0.85;nan -31.03.2012;0;0.84;nan -01.04.2012;0;1.4;nan -02.04.2012;0;0.9;nan -03.04.2012;0.751147786;2.11;nan -04.04.2012;6.234130095;1.55;nan -05.04.2012;0;0.71;nan -06.04.2012;0;1.04;nan -07.04.2012;0.641610559;0.74;nan -08.04.2012;0;0.94;nan -09.04.2012;2.228532307;0.63;nan -10.04.2012;3.026204163;1.12;nan -11.04.2012;0.46035981;1.3;nan -12.04.2012;1.034950878;1.2;nan -13.04.2012;0.099439631;1.36;nan -14.04.2012;0;1.56;nan -15.04.2012;0;1.58;nan -16.04.2012;0;1.11;nan -17.04.2012;0;1.75;nan -18.04.2012;0;1.54;nan -19.04.2012;1.666469734;1.58;nan -20.04.2012;6.49722907;1.42;nan -21.04.2012;4.282479402;1.18;nan -22.04.2012;3.149470554;2.02;nan -23.04.2012;0;1.86;nan -24.04.2012;0.576750765;1.21;nan -25.04.2012;0.227285801;1.75;nan -26.04.2012;1.477948828;1.17;nan -27.04.2012;0.115071088;1.82;nan -28.04.2012;0;3.96;nan -29.04.2012;0;2.4;nan -30.04.2012;0.211165732;3.55;nan -01.05.2012;0;3.85;nan -02.05.2012;7.043225031;2.26;nan -03.05.2012;0;2.08;nan -04.05.2012;2.546992839;2.83;nan -05.05.2012;8.085650311;1.21;nan -06.05.2012;4.67993303;1.11;nan -07.05.2012;0;1.61;nan -08.05.2012;0;3.36;nan -09.05.2012;3.181178733;1.58;nan -10.05.2012;0.10099184;2.63;nan -11.05.2012;14.48655285;2.61;nan -12.05.2012;0;1.85;nan -13.05.2012;0;2.65;nan -14.05.2012;0;2.9;nan -15.05.2012;11.72812871;1.69;nan -16.05.2012;2.567372337;1.93;nan -17.05.2012;0.127193178;3.14;nan -18.05.2012;2.818878724;1.76;nan -19.05.2012;8.900350658;3.05;nan -20.05.2012;0.401544065;4.07;nan -21.05.2012;0;2.12;nan -22.05.2012;0;5.36;nan -23.05.2012;3.679706569;3.09;nan -24.05.2012;0.101080379;4.95;nan -25.05.2012;0;5.01;nan -26.05.2012;0;4.98;nan -27.05.2012;0;3.25;nan -28.05.2012;0.321305602;3.43;nan -29.05.2012;0;4.73;nan -30.05.2012;0;4.1;nan -31.05.2012;0.224517541;1.68;nan -01.06.2012;4.596540569;2.27;nan -02.06.2012;0;3.01;nan -03.06.2012;1.364553991;1.31;nan -04.06.2012;1.065027646;1.73;nan -05.06.2012;0;2.11;nan -06.06.2012;0;1.71;nan -07.06.2012;0;2.09;nan -08.06.2012;0;3.71;nan -09.06.2012;0;3.47;nan -10.06.2012;0;2.82;nan -11.06.2012;0;1.97;nan -12.06.2012;7.23930017;2.48;nan -13.06.2012;26.50460299;1.43;nan -14.06.2012;0.100491752;2.32;nan -15.06.2012;0.704714972;1.83;nan -16.06.2012;7.426936784;1.57;nan -17.06.2012;0;4.32;nan -18.06.2012;0;4.34;nan -19.06.2012;8.756527923;2.39;nan -20.06.2012;17.07189609;1.66;nan -21.06.2012;5.24496361;2.05;nan -22.06.2012;0.10174942;3.58;nan -23.06.2012;0;3.71;nan -24.06.2012;4.402583345;2.73;nan -25.06.2012;0.425813334;2.34;nan -26.06.2012;0;3.64;nan -27.06.2012;0.871569354;2.33;nan -28.06.2012;0.100209282;2.93;nan -29.06.2012;15.37761492;3.53;nan -30.06.2012;0.103716701;4.54;nan -01.07.2012;1.723063686;2.38;nan -02.07.2012;0.538548728;1.56;nan -03.07.2012;0.103595763;4.3;nan -04.07.2012;0;5.09;nan -05.07.2012;0.859775595;3.46;nan -06.07.2012;0.833394972;2.92;nan -07.07.2012;2.761336277;4.24;nan -08.07.2012;6.613458276;2.5;nan -09.07.2012;1.343123714;3.39;nan -10.07.2012;6.240313766;3.14;nan -11.07.2012;3.491422269;2.14;nan -12.07.2012;0.444357341;2.55;nan -13.07.2012;15.09272074;1.73;nan -14.07.2012;25.91844249;2.54;nan -15.07.2012;2.369939964;2.53;nan -16.07.2012;0.664489808;2.32;nan -17.07.2012;1.152821883;1.91;nan -18.07.2012;0;3.23;nan -19.07.2012;0;2.65;nan -20.07.2012;0.104251899;2.1;nan -21.07.2012;7.524294533;1.91;nan -22.07.2012;0;4.22;nan -23.07.2012;0;4.84;nan -24.07.2012;0;5.25;nan -25.07.2012;0;5.52;nan -26.07.2012;0;4.96;nan -27.07.2012;0.71497793;4.87;nan -28.07.2012;5.635569646;2.9;nan -29.07.2012;0.248982158;3.05;nan -30.07.2012;3.210364058;3.03;nan -31.07.2012;0;2.69;nan -01.08.2012;0;5.06;nan -02.08.2012;0;3.52;nan -03.08.2012;0;3.49;nan -04.08.2012;0;3.14;nan -05.08.2012;0.826030268;2.49;nan -06.08.2012;5.221529943;2.71;nan -07.08.2012;0.312130111;2.83;nan -08.08.2012;0;3.62;nan -09.08.2012;0;2.63;nan -10.08.2012;0;3.52;nan -11.08.2012;0;3.6;nan -12.08.2012;0;4.19;nan -13.08.2012;0;3.95;nan -14.08.2012;0;3.63;nan -15.08.2012;0;3.02;nan -16.08.2012;6.757477709;3.6;nan -17.08.2012;0;3.48;nan -18.08.2012;0;4.86;nan -19.08.2012;0;4.88;nan -20.08.2012;0.221908764;3;nan -21.08.2012;0;3.52;nan -22.08.2012;0;3.96;nan -23.08.2012;0;4.23;nan -24.08.2012;5.486384479;1.54;nan -25.08.2012;0;2.79;nan -26.08.2012;0.452769647;1.82;nan -27.08.2012;0;3.38;nan -28.08.2012;0;2.53;nan -29.08.2012;0.612815989;2.96;nan -30.08.2012;0;1.35;nan -31.08.2012;1.125232008;1.71;nan -01.09.2012;0;2.65;nan -02.09.2012;0;3;nan -03.09.2012;0;3.54;nan -04.09.2012;0;3.21;nan -05.09.2012;0;1.2;nan -06.09.2012;0;2.1;nan -07.09.2012;0;3.13;nan -08.09.2012;0;3.64;nan -09.09.2012;0;3.76;nan -10.09.2012;0;3.38;nan -11.09.2012;13.54578198;1.36;nan -12.09.2012;1.412819865;1;nan -13.09.2012;0.100209282;1.37;nan -14.09.2012;2.64355724;2.15;nan -15.09.2012;0.203690864;1.02;nan -16.09.2012;0.103141494;2.35;nan -17.09.2012;0;2.72;nan -18.09.2012;1.065046071;1.86;nan -19.09.2012;0.463291857;2.12;nan -20.09.2012;0.100209282;1.4;nan -21.09.2012;2.804011549;1.34;nan -22.09.2012;0.100891145;1.55;nan -23.09.2012;0;1.11;nan -24.09.2012;5.614039905;1.15;nan -25.09.2012;2.346876165;0.95;nan -26.09.2012;3.562013413;0.95;nan -27.09.2012;2.39513061;1.22;nan -28.09.2012;0;1.94;nan -29.09.2012;0.101817107;1.37;nan -30.09.2012;0.103899938;1.53;nan -01.10.2012;0.307930088;1.51;nan -02.10.2012;0.10254475;1.2;nan -03.10.2012;0.403395594;1.15;nan -04.10.2012;12.51779236;1.09;nan -05.10.2012;1.41091845;0.86;nan -06.10.2012;6.073277622;1;nan -07.10.2012;2.680292566;1.42;nan -08.10.2012;0.299858195;0.81;nan -09.10.2012;0.732005881;1.52;nan -10.10.2012;0;1.04;nan -11.10.2012;0.100720276;1.18;nan -12.10.2012;3.197505101;0.65;nan -13.10.2012;3.555910417;1.21;nan -14.10.2012;7.480236484;0.74;nan -15.10.2012;0.454507793;0.6;nan -16.10.2012;0.099439631;0.8;nan -17.10.2012;0.100209282;0.62;nan -18.10.2012;0;1.87;nan -19.10.2012;0;1.86;nan -20.10.2012;0.10058936;1.42;nan -21.10.2012;0.100640272;1.75;nan -22.10.2012;0.100209282;1.24;nan -23.10.2012;0;0.6;nan -24.10.2012;0.100209282;0.54;nan -25.10.2012;0;0.6;nan -26.10.2012;14.07118471;0.39;nan -27.10.2012;1.516291237;0.16;nan -28.10.2012;0.111496891;0;nan -29.10.2012;0.108158529;0;nan -30.10.2012;5.133717827;0.37;nan -31.10.2012;0.122396573;0.81;nan -01.11.2012;2.39637902;0.5;nan -02.11.2012;8.131136921;0.62;nan -03.11.2012;7.789490852;0.44;nan -04.11.2012;3.115891884;0.46;nan -05.11.2012;2.648004818;0.58;nan -06.11.2012;0.108211059;0.64;nan -07.11.2012;0;0.49;nan -08.11.2012;0;0.5;nan -09.11.2012;0;0.49;nan -10.11.2012;10.50276489;0.46;nan -11.11.2012;0.103268345;0.5;nan -12.11.2012;0.101566606;0.3;nan -13.11.2012;0.200069189;0.01;nan -14.11.2012;0.105169605;0.08;nan -15.11.2012;0;0.21;nan -16.11.2012;0;0.21;nan -17.11.2012;0;0.25;nan -18.11.2012;0.522474816;0.38;nan -19.11.2012;0.101078256;0.36;nan -20.11.2012;0.105382174;0.22;nan -21.11.2012;0.249835567;0.2;nan -22.11.2012;0.100249036;0.18;nan -23.11.2012;0.201533138;0.28;nan -24.11.2012;0.309757147;0.4;nan -25.11.2012;0.183579714;0.63;nan -26.11.2012;5.663064676;0.31;nan -27.11.2012;0.448863743;0.39;nan -28.11.2012;0.203350776;0.35;nan -29.11.2012;0;0.25;nan -30.11.2012;0.15531028;0.06;nan -01.12.2012;0;0;nan -02.12.2012;2.229082138;0.08;nan -03.12.2012;0.631836587;0.07;nan -04.12.2012;1.450042377;0.2;nan -05.12.2012;0.20808764;0.15;nan -06.12.2012;0;0;nan -07.12.2012;0;0;nan -08.12.2012;0;0;nan -09.12.2012;6.108605507;0;nan -10.12.2012;3.320764568;0.13;nan -11.12.2012;0;0;nan -12.12.2012;0;0;nan -13.12.2012;0;0;nan -14.12.2012;11.3498736;0.08;nan -15.12.2012;1.07618634;0.32;nan -16.12.2012;0.965767621;0.39;nan -17.12.2012;4.037667261;0.29;nan -18.12.2012;0.100254803;0.27;nan -19.12.2012;0.200418564;0.17;nan -20.12.2012;0.228574953;0.13;nan -21.12.2012;4.122440719;0.09;nan -22.12.2012;3.902192703;0.25;nan -23.12.2012;8.965119864;0.46;nan -24.12.2012;1.654593813;0.51;nan -25.12.2012;2.19554711;0.45;nan -26.12.2012;5.305579636;0.39;nan -27.12.2012;8.833007442;0.51;nan -28.12.2012;0;0.3;nan -29.12.2012;0;0.52;nan -30.12.2012;0.936592981;0.57;nan -31.12.2012;0;0.4;nan -01.01.2013;2.052861283;0.35;24.418331 -02.01.2013;0;0.27;18.871897 -03.01.2013;0.58456085;0.37;15.542923 -04.01.2013;0.123880377;0.46;13.749797 -05.01.2013;0;0.41;12.432438 -06.01.2013;0;0.4;10.779954 -07.01.2013;0;0.38;9.679059 -08.01.2013;0;0.32;8.504039 -09.01.2013;1.163450614;0.29;7.848518 -10.01.2013;0.110276668;0.28;7.778211 -11.01.2013;0;0;6.871534 -12.01.2013;0;0;5.976367 -13.01.2013;0;0;5.639718 -14.01.2013;0;0;5.482801 -15.01.2013;0;0;5.551196 -16.01.2013;0;0;5.388404 -17.01.2013;0;0;5.226621 -18.01.2013;0;0;5.16354 -19.01.2013;0;0;5.564683 -20.01.2013;0;0;5.957756 -21.01.2013;0;0;6.274101 -22.01.2013;0;0;6.25 -23.01.2013;0;0;6.23 -24.01.2013;0;0;6.21 -25.01.2013;0;0;6.19 -26.01.2013;0;0;6.17 -27.01.2013;3.310331039;0;6.15 -28.01.2013;8.098844635;0.17;6.143736 -29.01.2013;5.555837156;0.44;67.386173 -30.01.2013;4.659346435;0.57;98.59951 -31.01.2013;8.678574079;0.46;80.011049 -01.02.2013;6.416312834;0.39;103.328494 -02.02.2013;0.585763486;0.25;96.736221 -03.02.2013;0.98774513;0.22;65.159635 -04.02.2013;0.878132691;0.39;59.196146 -05.02.2013;4.848835201;0.44;56.141688 -06.02.2013;2.214924475;0;46.823822 -07.02.2013;0.315204331;0.06;38.530109 -08.02.2013;0.688363528;0;34.144966 -09.02.2013;0.537587552;0;30.088306 -10.02.2013;0;0;26.788075 -11.02.2013;0;0;23.962136 -12.02.2013;0;0;20.621056 -13.02.2013;0;0;17.775907 -14.02.2013;0;0;15.857303 -15.02.2013;2.737719864;0.01;14.777229 -16.02.2013;1.015202732;0.16;17.461349 -17.02.2013;0;0.2;22.883208 -18.02.2013;0;0.34;23.845093 -19.02.2013;2.54909879;0;21.86127 -20.02.2013;0;0;19.853548 -21.02.2013;0;0;18.264846 -22.02.2013;0;0;17.236124 -23.02.2013;0;0;16.584315 -24.02.2013;1.274964868;0;15.375273 -25.02.2013;5.233084746;0.11;13.871548 -26.02.2013;0.257978214;0.22;13.038394 -27.02.2013;0;0.06;14.918089 -28.02.2013;0;0.19;15.247023 -01.03.2013;0;0.23;18.653939 -02.03.2013;0;0.64;24.390232 -03.03.2013;0;0.13;26.492173 -04.03.2013;0.127083124;0.29;25.443637 -05.03.2013;0;0.48;23.432959 -06.03.2013;0.102087612;0.99;22.280846 -07.03.2013;1.790611675;0.67;21.452868 -08.03.2013;0.558562408;1.28;22.858965 -09.03.2013;2.167173903;0.64;22.082662 -10.03.2013;1.357020944;0.42;20.443747 -11.03.2013;0;0;18.716441 -12.03.2013;0;0;18.244689 -13.03.2013;0.739369543;0;16.916135 -14.03.2013;0.214254297;0;15.284938 -15.03.2013;0.104845802;0;14.00103 -16.03.2013;0;0.31;13.50998 -17.03.2013;1.303862735;0.19;14.320551 -18.03.2013;0;0.42;27.354957 -19.03.2013;0.142673758;0.53;36.772176 -20.03.2013;4.864261381;0.32;48.00298 -21.03.2013;0;0.17;50.356696 -22.03.2013;0;0.17;45.946707 -23.03.2013;0;0;40.412788 -24.03.2013;0;0;34.953245 -25.03.2013;0;0;30.804001 -26.03.2013;0;0;27.969613 -27.03.2013;0;0;24.805747 -28.03.2013;0;0;23.038726 -29.03.2013;0.203593466;0.07;21.382703 -30.03.2013;0;0.13;19.574033 -31.03.2013;0;0;17.755825 -01.04.2013;0;0;16.264878 -02.04.2013;0;0.19;14.497697 -03.04.2013;0;0.23;12.911583 -04.04.2013;0;0.61;12.519697 -05.04.2013;0;0.29;11.880156 -06.04.2013;0;0.28;11.099295 -07.04.2013;0;0.25;10.792131 -08.04.2013;0.712984118;0.83;11.031519 -09.04.2013;2.157146283;0.62;11.063046 -10.04.2013;1.125369394;1;10.432581 -11.04.2013;5.339580331;1.39;10.405523 -12.04.2013;12.33943522;1.47;20.367295 -13.04.2013;0.508279458;2.34;18.812959 -14.04.2013;0;2.01;16.443959 -15.04.2013;0;3.15;15.842358 -16.04.2013;2.855278519;2.57;15.963371 -17.04.2013;0;2.02;14.906706 -18.04.2013;0;3.27;14.117884 -19.04.2013;0.353597317;1.69;13.188015 -20.04.2013;0;1.98;12.052954 -21.04.2013;0;2.32;11.928762 -22.04.2013;0;2.08;11.40644 -23.04.2013;0.876230574;1.88;10.633094 -24.04.2013;0;3.67;9.135218 -25.04.2013;0;3.49;8.348676 -26.04.2013;13.82395604;1.9;9.811417 -27.04.2013;8.293600025;0.8;16.038199 -28.04.2013;0.478398276;1.13;13.761059 -29.04.2013;0;2.54;12.086581 -30.04.2013;1.420622693;1.03;11.431914 -01.05.2013;0.141786314;1.51;10.747734 -02.05.2013;0;2.25;10.073772 -03.05.2013;0;1.86;9.441185 -04.05.2013;0;2.85;8.996614 -05.05.2013;0;3.81;8.189752 -06.05.2013;0;3.47;7.532977 -07.05.2013;3.317989574;1.62;7.249058 -08.05.2013;0.207117652;2.25;7.166745 -09.05.2013;2.352225074;2.29;7.313077 -10.05.2013;0;2.35;6.558072 -11.05.2013;0.687868446;1.85;5.795573 -12.05.2013;9.546001617;1.88;6.811404 -13.05.2013;1.497689714;1.29;6.169322 -14.05.2013;1.034103142;1.53;5.979106 -15.05.2013;1.586295215;2.13;6.403671 -16.05.2013;0.77223393;2.24;6.448726 -17.05.2013;0.105340329;1.33;6.43021 -18.05.2013;0.104621964;2.36;6.145124 -19.05.2013;17.4205831;2.71;8.532971 -20.05.2013;6.430174394;1.35;21.864815 -21.05.2013;2.725247239;1.53;12.78167 -22.05.2013;5.503978419;1.18;20.050647 -23.05.2013;12.44602574;1.06;34.547334 -24.05.2013;0;1.36;29.138713 -25.05.2013;1.296469046;1.78;25.69534 -26.05.2013;20.41429324;1.04;85.193173 -27.05.2013;0.577905728;2.57;100.145387 -28.05.2013;0;3.88;66.987341 -29.05.2013;7.738908459;1.21;68.474104 -30.05.2013;2.829262724;2.16;56.474726 -31.05.2013;9.92731459;1.58;64.028852 -01.06.2013;0;1.8;51.844541 -02.06.2013;0;3.5;42.472362 -03.06.2013;0;3.55;34.08307 -04.06.2013;0;4.19;28.545171 -05.06.2013;0;3.6;24.222246 -06.06.2013;0;5.12;19.870631 -07.06.2013;0;5.16;16.482535 -08.06.2013;0;4.82;14.196014 -09.06.2013;0.852389941;2.36;13.547897 -10.06.2013;0.794100111;1.82;12.503125 -11.06.2013;0;4.03;10.14463 -12.06.2013;0;2.63;7.988602 -13.06.2013;6.97525817;2.7;7.099181 -14.06.2013;0.110118225;2.75;7.62865 -15.06.2013;0;2.41;6.072319 -16.06.2013;0;3.56;4.959866 -17.06.2013;0;5.21;4.307747 -18.06.2013;0;5.85;3.575091 -19.06.2013;0;6.01;3.221764 -20.06.2013;5.437790195;2.37;3.453995 -21.06.2013;1.581458717;3.5;3.695777 -22.06.2013;0;3.18;3.149866 -23.06.2013;0;2.9;3.050426 -24.06.2013;3.06557465;2.13;3.158111 -25.06.2013;2.5305722;1.54;3.184428 -26.06.2013;0;1.8;3.059972 -27.06.2013;1.709660985;1.76;3.070111 -28.06.2013;0.102023852;1.45;2.96429 -29.06.2013;6.390260901;2.24;3.208235 -30.06.2013;0;2.7;2.971959 -01.07.2013;0;4.28;2.751832 -02.07.2013;0;4.66;2.570896 -03.07.2013;12.85463175;1.72;3.414943 -04.07.2013;0;2.77;3.114361 -05.07.2013;0;3.24;2.75413 -06.07.2013;0;5.17;2.543549 -07.07.2013;0;5.54;2.39239 -08.07.2013;0;5.54;2.246893 -09.07.2013;0;5.06;2.153437 -10.07.2013;0;5.03;2.092768 -11.07.2013;0;3.09;2.101726 -12.07.2013;0;3.72;2.092602 -13.07.2013;0;3.81;2.020425 -14.07.2013;0;3.86;2.014752 -15.07.2013;0;4.49;1.920806 -16.07.2013;0;4.55;1.842162 -17.07.2013;0;5.13;1.783579 -18.07.2013;0;5.26;1.64404 -19.07.2013;0;5.5;1.572092 -20.07.2013;0;4.93;1.523529 -21.07.2013;0;5.62;1.497957 -22.07.2013;0;5.71;1.451664 -23.07.2013;2.298154545;3.12;1.479384 -24.07.2013;0;3.18;1.546242 -25.07.2013;10.25992882;2.93;3.046824 -26.07.2013;0.101682369;2.92;2.146813 -27.07.2013;0;5.53;1.722019 -28.07.2013;0.721374121;2.72;1.666815 -29.07.2013;0.221428694;1.69;1.667242 -30.07.2013;0.524357188;3.41;1.275332 -31.07.2013;2.053960584;2.84;1.087724 -01.08.2013;0;5.36;0.92556 -02.08.2013;0;5.42;0.67994 -03.08.2013;0;3.33;0.601056 -04.08.2013;0;4.69;0.555497 -05.08.2013;0;4.82;0.514584 -06.08.2013;7.303333928;3.79;1.105949 -07.08.2013;3.80855636;2.17;0.928021 -08.08.2013;0.100919618;1.79;0.842865 -09.08.2013;0;2.51;0.757447 -10.08.2013;0;3.38;0.64441 -11.08.2013;0;3.62;0.523785 -12.08.2013;7.477542821;2.06;0.90173 -13.08.2013;0.100209282;2.86;0.752233 -14.08.2013;0;3.23;0.67974 -15.08.2013;0;3.83;0.582552 -16.08.2013;0;4.39;0.477594 -17.08.2013;0;3.22;0.441798 -18.08.2013;0.242794923;1.48;0.388685 -19.08.2013;6.434592375;3.16;0.659298 -20.08.2013;0;2.5;0.48012 -21.08.2013;0;3.82;0.451527 -22.08.2013;0;3.77;0.455111 -23.08.2013;0;3.04;0.414511 -24.08.2013;10.08241353;2.82;0.615602 -25.08.2013;6.338278859;1.3;1.954288 -26.08.2013;1.339358863;1.34;1.102016 -27.08.2013;0;3;0.732772 -28.08.2013;0;2.06;0.541513 -29.08.2013;0;3.47;0.472273 -30.08.2013;0;3.28;0.422664 -31.08.2013;3.881978578;1.77;0.5262 -01.09.2013;0;2.01;0.539527 -02.09.2013;0;1.63;0.373824 -03.09.2013;0;1.92;0.34133 -04.09.2013;0;3.63;0.308851 -05.09.2013;0;3.92;0.282294 -06.09.2013;0;3.75;0.389839 -07.09.2013;5.254480544;1.62;0.638005 -08.09.2013;2.931308381;1.29;0.846853 -09.09.2013;8.754058908;2.02;0.864731 -10.09.2013;8.642156781;1.22;4.892612 -11.09.2013;6.145993078;1.25;4.215498 -12.09.2013;0.119762437;1.13;2.351649 -13.09.2013;0;1.26;1.379381 -14.09.2013;4.481439921;1.1;1.398035 -15.09.2013;0.102164633;1.43;1.321851 -16.09.2013;2.829495091;1.37;1.438225 -17.09.2013;3.019424741;1.55;1.207433 -18.09.2013;2.418850364;1.08;1.649967 -19.09.2013;0.339904309;1.3;1.248832 -20.09.2013;0.416842924;1;1.081575 -21.09.2013;0;1.39;0.864161 -22.09.2013;0;1.09;0.918095 -23.09.2013;0;1.03;1.002674 -24.09.2013;0;1.9;1.230696 -25.09.2013;0.104126817;1.09;0.961648 -26.09.2013;0;1.72;0.870806 -27.09.2013;0;1.99;0.783057 -28.09.2013;0;1.84;0.862506 -29.09.2013;0;2.17;0.719318 -30.09.2013;0;1.27;0.70849 -01.10.2013;0;1.49;0.551869 -02.10.2013;0.139605658;1.56;0.569545 -03.10.2013;0.135465455;1.74;0.693346 -04.10.2013;0.486915303;0.91;0.569029 -05.10.2013;40.09104036;0.76;20.710242 -06.10.2013;2.232833805;0.86;18.880871 -07.10.2013;0;1.56;6.865578 -08.10.2013;0;0.86;4.494264 -09.10.2013;3.301907369;0.85;3.55993 -10.10.2013;4.255136777;0.87;6.741104 -11.10.2013;5.041018327;0.49;6.568946 -12.10.2013;1.379946759;0.45;7.008824 -13.10.2013;0;0.55;6.229404 -14.10.2013;0.492223417;0.91;4.869489 -15.10.2013;6.814980741;0.95;7.707324 -16.10.2013;0.304096502;0.68;6.104659 -17.10.2013;1.505540682;0.82;4.822442 -18.10.2013;0.10040615;1.22;4.128956 -19.10.2013;0.243177623;1.63;3.766368 -20.10.2013;0.114730218;0.84;3.113281 -21.10.2013;0.226526953;1.26;2.581633 -22.10.2013;0;1.7;2.376996 -23.10.2013;7.682525126;1.05;4.885591 -24.10.2013;0.933513103;0.97;4.477026 -25.10.2013;0.303026512;0.71;3.744079 -26.10.2013;5.817549482;0.86;4.321705 -27.10.2013;7.935183086;1.27;13.372075 -28.10.2013;2.394564061;0.81;10.924528 -29.10.2013;0;0.81;7.84025 -30.10.2013;0;1.19;6.144879 -31.10.2013;0.102589793;0.42;5.52428 -01.11.2013;4.536972774;0.48;5.37625 -02.11.2013;8.742921673;0.64;23.563112 -03.11.2013;2.881930638;0.94;26.079943 -04.11.2013;2.417554909;0.55;15.886635 -05.11.2013;6.073303558;0.55;13.810492 -06.11.2013;2.874053043;0.55;16.200393 -07.11.2013;0.108775183;0.69;16.683825 -08.11.2013;12.60252541;0.63;26.413423 -09.11.2013;1.087939523;0.7;39.878779 -10.11.2013;0.756460321;0.41;29.035381 -11.11.2013;0;0.67;22.71978 -12.11.2013;0.203469691;0.3;19.457412 -13.11.2013;0.405318362;0.55;16.657586 -14.11.2013;0.103863682;0.15;14.983722 -15.11.2013;0;0.5;12.390164 -16.11.2013;0;0.22;10.322547 -17.11.2013;0;0.18;9.210179 -18.11.2013;0;0.32;8.780785 -19.11.2013;4.75061329;0.32;8.341947 -20.11.2013;3.832149213;0.3;15.653733 -21.11.2013;0.960402178;0.19;13.222447 -22.11.2013;0;0.21;11.520031 -23.11.2013;0;0.33;9.950161 -24.11.2013;0.17472882;0.4;8.831097 -25.11.2013;0;0;8.149278 -26.11.2013;0.103396806;0;7.775023 -27.11.2013;0;0;7.094008 -28.11.2013;0.209165999;0.04;6.339268 -29.11.2013;2.96566331;0.22;6.693626 -30.11.2013;0.116078324;0.32;6.767524 -01.12.2013;0;0.38;6.159252 -02.12.2013;0.121298543;0.46;5.712104 -03.12.2013;0.103646034;0;5.713076 -04.12.2013;0.123601635;0.12;5.09869 -05.12.2013;3.402407102;0.16;5.265348 -06.12.2013;3.861503302;0.12;5.7021 -07.12.2013;1.138084118;0.2;5.441679 -08.12.2013;0;0.34;5.905663 -09.12.2013;0;0.37;5.57394 -10.12.2013;0;0.32;5.182886 -11.12.2013;0;0.31;5.25084 -12.12.2013;0;0.2;5.425117 -13.12.2013;0;0.12;5.185625 -14.12.2013;0.930704948;0.11;4.845879 -15.12.2013;0.308176053;0.11;4.671676 -16.12.2013;0.100456762;0;4.840734 -17.12.2013;0.105810912;0;4.596398 -18.12.2013;0.10402947;0;4.145028 -19.12.2013;2.686598633;0.32;4.403819 -20.12.2013;0.220794354;0.19;3.980393 -21.12.2013;0.145733961;0.11;3.824123 -22.12.2013;4.618957859;0.41;3.94586 -23.12.2013;4.771291202;0.53;12.347619 -24.12.2013;0.622817277;0.48;10.176256 -25.12.2013;5.386000407;0.4;15.453304 -26.12.2013;2.389800342;0.33;14.312491 -27.12.2013;0.154930708;0.35;15.322006 -28.12.2013;3.935106315;0.42;14.652353 -29.12.2013;1.77139605;0.27;22.499784 -30.12.2013;0.232819401;0.14;18.27357 -31.12.2013;0;0.19;17.510973 -01.01.2014;0.948386327;0.28;16.402562 -02.01.2014;1.443235282;0.35;15.506874 -03.01.2014;0.53317163;0.37;13.986495 -04.01.2014;0;0.33;13.023909 -05.01.2014;2.291219427;0.39;13.422182 -06.01.2014;6.278177447;0.3;12.729805 -07.01.2014;1.368826654;0.9;21.626249 -08.01.2014;0.251187761;0.73;18.437388 -09.01.2014;5.443311512;0.42;20.405184 -10.01.2014;0;0.53;22.715288 -11.01.2014;0.357233526;0.16;20.297429 -12.01.2014;0;0.17;18.259541 -13.01.2014;0.10513426;0.11;16.803059 -14.01.2014;0;0.23;15.761204 -15.01.2014;0.3697866;0.27;14.120361 -16.01.2014;3.253825766;0.31;14.246247 -17.01.2014;0.117449085;0.65;14.519285 -18.01.2014;0.108601598;0.09;13.089396 -19.01.2014;0.103137728;0.17;11.8654 -20.01.2014;0;0.19;10.879708 -21.01.2014;1.63522922;0.16;20.234155 -22.01.2014;0;0.23;22.748368 -23.01.2014;2.558914396;0.23;20.690171 -24.01.2014;1.188167635;0.19;22.405199 -25.01.2014;0.237105868;0.02;21.169239 -26.01.2014;6.395365353;0.26;27.833506 -27.01.2014;3.105051214;0.3;44.774207 -28.01.2014;0.136144794;0.31;37.473603 -29.01.2014;0;0.06;33.194181 -30.01.2014;0;0.03;29.561037 -31.01.2014;0;0.1;26.639798 -01.02.2014;5.471619376;0.18;24.925277 -02.02.2014;0;0.41;23.970456 -03.02.2014;0.112128324;0.11;21.386039 -04.02.2014;0;0.21;19.242926 -05.02.2014;0.365005327;0.11;17.987006 -06.02.2014;0.11379492;0.71;16.255086 -07.02.2014;0.379268781;0.63;14.467703 -08.02.2014;3.236321079;0.36;15.012038 -09.02.2014;0;0.48;14.740248 -10.02.2014;0.678751975;0.2;13.462218 -11.02.2014;0;0.41;12.230738 -12.02.2014;1.179094273;0.7;11.622273 -13.02.2014;13.86387956;0.38;17.215045 -14.02.2014;1.558715096;0.53;20.917042 -15.02.2014;0.157927664;0.58;19.330026 -16.02.2014;0.275376278;0.69;18.266869 -17.02.2014;0.100364822;0.33;17.208793 -18.02.2014;0.099439631;0.15;16.56007 -19.02.2014;1.625468105;0.68;16.390069 -20.02.2014;0;0.67;15.421818 -21.02.2014;2.748183214;0.85;14.713906 -22.02.2014;0.256224276;0.41;13.79492 -23.02.2014;0;0.65;12.658862 -24.02.2014;0.099477577;0.79;11.950986 -25.02.2014;0.159998907;0.73;11.492567 -26.02.2014;0.314258275;0.63;10.75553 -27.02.2014;1.603695597;0.6;10.356378 -28.02.2014;0.684543845;0.54;11.001998 -01.03.2014;0;0.48;10.782335 -02.03.2014;1.167955234;0.32;10.164323 -03.03.2014;0.146520704;0.3;9.602984 -04.03.2014;0;0.68;8.703207 -05.03.2014;1.127250273;0.75;8.046729 -06.03.2014;0.102374926;0.35;7.306062 -07.03.2014;0.100088664;0.87;6.844349 -08.03.2014;0;1.21;6.46795 -09.03.2014;0.099439631;1.32;6.074865 -10.03.2014;0.09950289;1.53;5.632728 -11.03.2014;0;1.89;5.757862 -12.03.2014;0;1.79;5.745789 -13.03.2014;0.100239136;1.67;5.023196 -14.03.2014;0;1.71;4.786958 -15.03.2014;1.411483572;0.76;5.101086 -16.03.2014;0;0.94;4.696422 -17.03.2014;0;0.82;4.425823 -18.03.2014;0.120484083;0.78;4.429503 -19.03.2014;5.23034353;1.29;6.119827 -20.03.2014;0;2.3;5.219167 -21.03.2014;0.119259509;1.86;5.107963 -22.03.2014;5.766178754;0.71;5.540585 -23.03.2014;0.101320514;0.69;5.775728 -24.03.2014;0.101729075;0.56;5.404966 -25.03.2014;0.099439631;0.83;5.262563 -26.03.2014;0.100778681;0.91;5.072437 -27.03.2014;0;1.83;4.864914 -28.03.2014;0;2.24;4.384758 -29.03.2014;0;2.25;4.088648 -30.03.2014;0;2.12;4.106752 -31.03.2014;0;0.98;4.452076 -01.04.2014;0;2.19;4.757175 -02.04.2014;0;2.52;4.555513 -03.04.2014;0;1.88;4.361442 -04.04.2014;0;1.15;4.268695 -05.04.2014;1.695983789;1.09;4.272012 -06.04.2014;0;1.64;3.979665 -07.04.2014;0;2.2;3.622333 -08.04.2014;3.042809055;1.49;3.758216 -09.04.2014;0.108498089;1.32;3.608329 -10.04.2014;0;1.09;3.432004 -11.04.2014;0;1.19;3.407258 -12.04.2014;0;1.85;3.241566 -13.04.2014;0;1.74;3.07616 -14.04.2014;4.053591011;1.87;3.137765 -15.04.2014;0.216484055;0.73;3.233944 -16.04.2014;0;1.8;3.032272 -17.04.2014;0.158605057;2.5;2.698903 -18.04.2014;0.48249597;2.26;2.692598 -19.04.2014;0;2.24;2.575222 -20.04.2014;0;3.35;2.243782 -21.04.2014;1.599353843;2.06;2.159488 -22.04.2014;1.47875484;1.69;2.362529 -23.04.2014;0.100209282;2.31;2.259015 -24.04.2014;0;3.44;1.995259 -25.04.2014;0;3.49;6.061627 -26.04.2014;1.274750477;1.78;17.877588 -27.04.2014;13.7807287;1.19;18.208916 -28.04.2014;0.422402212;1.2;8.376963 -29.04.2014;7.204461755;1.69;7.780429 -30.04.2014;0;2.58;5.718117 -01.05.2014;0;1.91;3.92954 -02.05.2014;0.742399293;1.34;3.377782 -03.05.2014;0;2.13;2.968987 -04.05.2014;0;2.77;2.474647 -05.05.2014;0;3.26;1.97248 -06.05.2014;0.645554076;1.9;1.775615 -07.05.2014;6.34001138;2.41;1.813361 -08.05.2014;4.025745595;1.54;1.778631 -09.05.2014;1.40698932;2.83;1.728317 -10.05.2014;3.02118618;1.24;2.212913 -11.05.2014;2.975477877;2.54;3.405043 -12.05.2014;0.587034274;2.4;2.560105 -13.05.2014;0.316646168;1.56;2.409335 -14.05.2014;0;2.12;2.000632 -15.05.2014;0;1.12;1.830519 -16.05.2014;0.122447738;3.59;1.347028 -17.05.2014;0;3.56;1.147602 -18.05.2014;0;4.16;0.802111 -19.05.2014;0;4.27;0.662873 -20.05.2014;0;4.78;0.336109 -21.05.2014;0;3.94;0.204309 -22.05.2014;3.085495713;4.36;0.187829 -23.05.2014;4.809148968;2.4;0.612968 -24.05.2014;0;2.51;0.367509 -25.05.2014;0;4.31;0.245181 -26.05.2014;2.864431039;1.54;0.501683 -27.05.2014;0.421848386;1.58;1.725654 -28.05.2014;0.107030974;1.46;1.040421 -29.05.2014;0;1.33;1.321179 -30.05.2014;0.10408533;2.11;1.167457 -31.05.2014;0;3.19;0.561848 -01.06.2014;0;2.51;0.453851 -02.06.2014;0;3.94;0.320873 -03.06.2014;0;3.51;0.57499 -04.06.2014;0;3.07;0.962808 -05.06.2014;0;3.86;0.794953 -06.06.2014;0.908100562;4.67;0.611382 -07.06.2014;0;4.51;0.442098 -08.06.2014;0;5.77;0.312218 -09.06.2014;0.793544975;5.85;2.411733 -10.06.2014;0.556050034;3.87;0.660839 -11.06.2014;0.624533322;2.76;43.112973 -12.06.2014;0.151967188;4.93;8.382199 -13.06.2014;0.157538759;4.04;4.601254 -14.06.2014;0;2.17;3.150225 -15.06.2014;0;3.94;2.241361 -16.06.2014;0;3.27;1.710589 -17.06.2014;0;3.16;1.321116 -18.06.2014;0;4.23;0.992249 -19.06.2014;0.144758038;2.19;0.83431 -20.06.2014;0;1.76;0.705359 -21.06.2014;0;2.92;0.53187 -22.06.2014;0;3.15;0.521248 -23.06.2014;0;3.83;2.429528 -24.06.2014;2.567664009;3.05;2.493053 -25.06.2014;0.112722143;2.67;3.021535 -26.06.2014;0;2.91;2.497373 -27.06.2014;0;3.48;1.406698 -28.06.2014;1.710331651;1.94;0.325878 -29.06.2014;1.488324257;1.96;0.48305 -30.06.2014;0.295577223;2.92;0.4799 -01.07.2014;0.11787906;3.98;0.178667 -02.07.2014;0;4.86;0.141846 -03.07.2014;0;5.41;0.064718 -04.07.2014;0;4.66;0.095529 -05.07.2014;0;2.26;0.048156 -06.07.2014;2.248664975;4.06;0.054958 -07.07.2014;0.857062955;2.48;0.028481 -08.07.2014;0;1.6;2.140779 -09.07.2014;0;1.43;12.23773 -10.07.2014;0;2.63;6.930812 -11.07.2014;0;3.45;5.769309 -12.07.2014;0;3.31;6.360065 -13.07.2014;0;2.09;4.393855 -14.07.2014;0;3.63;3.301672 -15.07.2014;0;4.95;1.665133 -16.07.2014;0;4.33;0.953405 -17.07.2014;0;5.46;0.603603 -18.07.2014;0;5.79;0.396544 -19.07.2014;0;5.49;0.272296 -20.07.2014;4.272633779;2.33;0.191608 -21.07.2014;2.731234062;2.14;0.572678 -22.07.2014;4.15904732;4.45;0.367916 -23.07.2014;0;4.92;0.149399 -24.07.2014;12;4.24;10.782832 -25.07.2014;0.127524398;4.28;1.04539 -26.07.2014;0;3.48;0.404255 -27.07.2014;0;4.48;0.249827 -28.07.2014;21.9359785;3.4;0.240198 -29.07.2014;0.98315524;1.91;22.17303 -30.07.2014;5.794436104;1.94;27.678204 -31.07.2014;0;4.77;10.559264 -01.08.2014;0;4.78;6.545522 -02.08.2014;0;3.31;4.452096 -03.08.2014;0;2.68;3.019714 -04.08.2014;1.420435897;2.93;2.385858 -05.08.2014;5.473793097;2.48;2.355767 -06.08.2014;0;2.79;1.913621 -07.08.2014;0.720042872;2.98;1.327966 -08.08.2014;1.051967891;3.71;1.157623 -09.08.2014;1.372515937;3.34;0.624994 -10.08.2014;13.95117727;2.11;4.918633 -11.08.2014;0.101255396;3.88;3.241756 -12.08.2014;0.203677102;3.41;1.491187 -13.08.2014;15.40990951;1.68;4.629456 -14.08.2014;4.483376092;2.44;5.725008 -15.08.2014;2.987380349;1.44;6.885889 -16.08.2014;1.211047331;2.18;5.674565 -17.08.2014;0;2.11;4.397387 -18.08.2014;0.335573939;2.54;3.264936 -19.08.2014;0.131819466;2.41;2.93412 -20.08.2014;0;2.87;2.433526 -21.08.2014;0;3.22;2.016218 -22.08.2014;0;2.14;1.825354 -23.08.2014;4.836148848;2.16;1.400093 -24.08.2014;0;2.2;1.391853 -25.08.2014;2.019839566;1.31;1.586774 -26.08.2014;23.93929942;1.2;10.742235 -27.08.2014;1.007975167;3.68;16.10069 -28.08.2014;0;2.26;7.937963 -29.08.2014;1.508595429;2.36;5.641862 -30.08.2014;0.603208138;1.69;4.662251 -31.08.2014;0.314533823;1.7;4.121519 -01.09.2014;0;1.76;3.558841 -02.09.2014;0.122789935;1.69;3.101579 -03.09.2014;0;1.51;2.848482 -04.09.2014;0;1.76;2.643328 -05.09.2014;0;2.47;2.343579 -06.09.2014;1.188701685;2.9;1.951323 -07.09.2014;0.100621026;2.3;1.664725 -08.09.2014;0;2.43;1.24396 -09.09.2014;0;2.29;1.175226 -10.09.2014;0;1.18;1.290439 -11.09.2014;0.573542154;1.59;1.297954 -12.09.2014;0.176962641;1.15;1.373099 -13.09.2014;0;1.27;1.175248 -14.09.2014;0;2.03;1.157704 -15.09.2014;0;1.2;1.06586 -16.09.2014;0;2.55;1.009118 -17.09.2014;0;3.09;0.956732 -18.09.2014;2.528926233;1.25;0.829029 -19.09.2014;0.201230414;1.65;0.789098 -20.09.2014;4.367034789;1.37;1.021417 -21.09.2014;10.07413991;1.13;6.806666 -22.09.2014;8.794258963;1.48;3.209986 -23.09.2014;0;1.67;2.412663 -24.09.2014;0.408314915;1.11;1.847794 -25.09.2014;0.22414206;1.27;1.205711 -26.09.2014;0;1.02;1.031828 -27.09.2014;0;1.99;1.045336 -28.09.2014;0;1.84;1.03605 -29.09.2014;0.205497416;1.2;0.895678 -30.09.2014;0;1.17;0.895646 -01.10.2014;0;1.62;0.768337 -02.10.2014;0;2.47;0.762039 -03.10.2014;0;2.27;0.80618 -04.10.2014;0;1.97;0.789423 -05.10.2014;0;1.05;0.755405 -06.10.2014;0;0.85;0.795363 -07.10.2014;12.90835284;0.95;1.464892 -08.10.2014;4.244250772;0.85;0.381115 -09.10.2014;6.34460647;0.94;3.701762 -10.10.2014;1.024488302;1.04;21.79129 -11.10.2014;0.508479833;1.09;7.906865 -12.10.2014;0.311250341;0.92;6.586355 -13.10.2014;0.33430835;0.99;7.582256 -14.10.2014;0.211476903;1.16;3.415751 -15.10.2014;0.304725347;1.33;4.286405 -16.10.2014;0.3071821;0.93;5.369749 -17.10.2014;0.303944237;0.93;5.116028 -18.10.2014;0.334764647;1.61;4.399485 -19.10.2014;0.339054767;1.4;3.902477 -20.10.2014;0.420583244;1.24;3.838424 -21.10.2014;0.450302243;0.68;3.660142 -22.10.2014;0.670948415;0.57;3.992868 -23.10.2014;0.422616155;0.76;3.79147 -24.10.2014;0;0.82;3.727811 -25.10.2014;1.303564003;0.64;3.703265 -26.10.2014;0;0.93;3.459456 -27.10.2014;0;0.56;3.219703 -28.10.2014;0;0.49;3.302464 -29.10.2014;0.62744644;0.66;3.361036 -30.10.2014;0;0.61;2.903047 -31.10.2014;0;0.63;2.633504 -01.11.2014;0.1042938;0.82;2.635834 -02.11.2014;0;0.58;2.501883 -03.11.2014;3.341473125;0.69;2.543623 -04.11.2014;1.272403943;0.66;3.167745 -05.11.2014;2.059249105;0.55;3.864357 -06.11.2014;0;0.61;3.404734 -07.11.2014;0.355935931;0.3;3.202559 -08.11.2014;0;0.68;2.964546 -09.11.2014;0.100209282;0.31;2.976025 -10.11.2014;0.307990821;0.45;2.69322 -11.11.2014;0;0.47;2.795811 -12.11.2014;0.501276759;0.48;2.622937 -13.11.2014;0.10201513;0.57;2.555214 -14.11.2014;0;0.52;2.56229 -15.11.2014;3.656798953;0.52;2.638485 -16.11.2014;11.72843921;0.48;31.488017 -17.11.2014;0.667950293;0.63;21.020167 -18.11.2014;6.352371922;0.45;20.322369 -19.11.2014;0.540674623;0.42;30.802991 -20.11.2014;0;0.39;21.899784 -21.11.2014;0;0.49;18.349493 -22.11.2014;0.099947961;0.18;15.648073 -23.11.2014;0;0.61;13.150718 -24.11.2014;0.103475817;0.45;11.367915 -25.11.2014;0.112064056;0.02;10.134425 -26.11.2014;0.107637521;0.15;9.134086 -27.11.2014;0.830690006;0.3;8.580387 -28.11.2014;0;0.21;7.949374 -29.11.2014;0;0.21;7.134789 -30.11.2014;0;0.19;6.831031 -01.12.2014;0.173953082;0.12;6.298394 -02.12.2014;0;0;5.682744 -03.12.2014;0;0;5.236759 -04.12.2014;0;0.04;4.837591 -05.12.2014;0;0.16;4.57932 -06.12.2014;0;0.17;4.416231 -07.12.2014;1.28107185;0.26;4.447125 -08.12.2014;0.100209282;0.2;3.589774 -09.12.2014;0;0.05;2.501976 -10.12.2014;1.034788345;0.18;2.537322 -11.12.2014;12.68598251;0.28;4.720196 -12.12.2014;9.217706401;0.41;8.400103 -13.12.2014;11.38168525;0.23;55.754499 -14.12.2014;2.387615834;0.15;56.925713 -15.12.2014;0.114833696;0.17;37.351264 -16.12.2014;0.907321596;0.29;29.442102 -17.12.2014;1.068943754;0.25;27.635014 -18.12.2014;0;0.48;23.907361 -19.12.2014;8.594827813;0.46;36.527435 -20.12.2014;2.988231831;0.29;37.495845 -21.12.2014;0;0.33;30.06876 -22.12.2014;0.352866143;0.4;25.625006 -23.12.2014;0;0.45;21.587337 -24.12.2014;1.053555123;0.39;19.046663 -25.12.2014;0.173863877;0.27;16.802984 -26.12.2014;0.110675885;0.14;14.815289 -27.12.2014;0;0;15.56601 -28.12.2014;0;0;13.843208 -29.12.2014;1.263365573;0;12.092481 -30.12.2014;5.869050266;0.11;12.295662 -31.12.2014;0.52731951;0.17;20.628504 -01.01.2015;0;0.13;37.112862 -02.01.2015;2.197111019;0.17;43.273249 -03.01.2015;2.076041355;0.12;44.557048 -04.01.2015;2.804424631;0.22;51.701439 -05.01.2015;0;0.09;44.809784 -06.01.2015;0;0;36.517261 -07.01.2015;0.626216693;0.12;31.415337 -08.01.2015;7.633275562;0.3;46.565012 -09.01.2015;3.189849889;0.42;62.535972 -10.01.2015;4.716378499;0.71;95.546467 -11.01.2015;0.572855892;0.26;67.769521 -12.01.2015;0.575470454;0.36;50.973385 -13.01.2015;2.766794222;0.78;42.971926 -14.01.2015;6.56335584;0.32;45.285769 -15.01.2015;0.271202152;0.4;41.46464 -16.01.2015;1.167951848;0.35;36.660865 -17.01.2015;0.100646727;0.25;31.972864 -18.01.2015;0.11728215;0;27.878203 -19.01.2015;0;0;24.917963 -20.01.2015;0;0;22.776854 -21.01.2015;0;0;19.787732 -22.01.2015;0;0;17.403546 -23.01.2015;0;0.03;15.365005 -24.01.2015;0.099439631;0;14.718248 -25.01.2015;0.562306516;0.09;14.234321 -26.01.2015;3.700413666;0.13;17.325765 -27.01.2015;0.572507353;0.24;19.867556 -28.01.2015;4.258330846;0.24;21.485107 -29.01.2015;2.856021716;0.21;28.865749 -30.01.2015;1.744560566;0.11;41.13121 -31.01.2015;0;0.1;30.669403 -01.02.2015;0.315477219;0.02;27.086405 -02.02.2015;0.330489384;0.12;25.572126 -03.02.2015;0.225728284;0.05;24.855957 -04.02.2015;0;0;21.693786 -05.02.2015;0.113985685;0;19.153205 -06.02.2015;0;0;17.01986 -07.02.2015;0;0;15.143354 -08.02.2015;0;0.37;14.196389 -09.02.2015;0;0.26;13.361797 -10.02.2015;0;0.34;13.111779 -11.02.2015;0;0.21;12.456951 -12.02.2015;0;0.07;12.076192 -13.02.2015;0;0.05;11.825054 -14.02.2015;0;0.15;11.240578 -15.02.2015;0;0;10.429445 -16.02.2015;0;0.01;9.468975 -17.02.2015;0;0.22;8.781588 -18.02.2015;0;0.28;7.877925 -19.02.2015;0;0.05;7.567328 -20.02.2015;0;0.51;7.555873 -21.02.2015;0.729364088;0.44;8.008075 -22.02.2015;0;0.28;7.279157 -23.02.2015;6.653893059;0.11;8.556553 -24.02.2015;1.691584779;0.43;10.422203 -25.02.2015;0.219177807;0.32;9.706447 -26.02.2015;0.305782636;0.42;9.147714 -27.02.2015;7.456286464;0.35;17.397023 -28.02.2015;0.100934759;0.37;19.164292 -01.03.2015;4.100608595;0.57;19.260996 -02.03.2015;6.189282754;0.81;23.049969 -03.03.2015;2.351472124;0.94;24.241514 -04.03.2015;0.880948936;0.54;24.591998 -05.03.2015;0;0.6;23.805212 -06.03.2015;0;0.36;23.536056 -07.03.2015;0.134325538;0.4;22.296821 -08.03.2015;0;0.87;21.093932 -09.03.2015;0;1.07;19.101897 -10.03.2015;0.306174652;0.42;18.457518 -11.03.2015;0.106222312;0.81;17.109674 -12.03.2015;0.129317835;0.97;15.406941 -13.03.2015;0;0.26;14.384062 -14.03.2015;0.416153117;0.3;13.163393 -15.03.2015;1.838324468;0.43;12.834546 -16.03.2015;0.127764601;1.1;12.874396 -17.03.2015;0;1.69;12.826044 -18.03.2015;0;1.9;11.479469 -19.03.2015;0;1.71;10.71069 -20.03.2015;0;1.23;10.442393 -21.03.2015;0.517761395;0.49;9.770026 -22.03.2015;0;0.37;8.77863 -23.03.2015;0.10170923;0.36;8.606823 -24.03.2015;0;0.51;8.350472 -25.03.2015;0;1.84;8.090294 -26.03.2015;0;0.79;8.420092 -27.03.2015;0.729811067;0.76;7.504301 -28.03.2015;0;1.58;6.603398 -29.03.2015;13.6841915;0.93;12.17778 -30.03.2015;2.905550098;1.71;19.421716 -31.03.2015;18.33312932;1.56;46.153929 -01.04.2015;5.375644914;0.86;41.535136 -02.04.2015;4.834739785;1.11;48.861515 -03.04.2015;0;1.7;42.432497 -04.04.2015;0.125167778;0.99;39.97278 -05.04.2015;0;1.12;33.667576 -06.04.2015;0;0.63;29.770818 -07.04.2015;0;1.26;26.251769 -08.04.2015;0;2.19;22.629107 -09.04.2015;0;2.85;20.687718 -10.04.2015;0;3.23;18.616907 -11.04.2015;0.143457461;1.53;16.784894 -12.04.2015;0;2.66;14.743109 -13.04.2015;0;2.32;12.974395 -14.04.2015;0;2.9;11.825997 -15.04.2015;0;3.79;10.936816 -16.04.2015;0;3.12;9.816939 -17.04.2015;1.739361299;2.22;9.527835 -18.04.2015;0;2.22;8.831997 -19.04.2015;0;2.59;8.040308 -20.04.2015;0;3.19;7.446125 -21.04.2015;0;3.61;6.54149 -22.04.2015;0;2.62;6.063128 -23.04.2015;0;3.06;5.584067 -24.04.2015;0;3.54;5.040144 -25.04.2015;1.036051027;1.11;5.087515 -26.04.2015;2.061346786;2.09;5.110306 -27.04.2015;15.08287028;1.11;10.767407 -28.04.2015;0;2.44;8.574511 -29.04.2015;0;2.2;6.629398 -30.04.2015;4.495005735;1.5;6.468695 -01.05.2015;0.201853597;1.12;6.651212 -02.05.2015;0;2.58;5.644016 -03.05.2015;4.624674841;1.25;5.931206 -04.05.2015;0.611214655;3.14;5.099102 -05.05.2015;0.713806452;2.84;4.259448 -06.05.2015;0.130481147;3.09;4.292848 -07.05.2015;0;3.46;4.57915 -08.05.2015;0;2.71;4.238458 -09.05.2015;4.416673607;2.12;4.102291 -10.05.2015;0.110489032;2.87;3.860088 -11.05.2015;0;3.49;3.540893 -12.05.2015;0.99141461;3.37;3.313754 -13.05.2015;0;3.89;2.937645 -14.05.2015;0;3.62;2.837783 -15.05.2015;0;3.9;2.334776 -16.05.2015;0.455450258;2.14;2.668704 -17.05.2015;0.100209282;3.13;2.606509 -18.05.2015;0;4.32;2.260054 -19.05.2015;0.100215881;3;1.993653 -20.05.2015;0.240429943;1.85;1.969968 -21.05.2015;0;2.77;1.849542 -22.05.2015;0;3.77;1.622966 -23.05.2015;0;1.54;1.627196 -24.05.2015;0;1.94;1.526816 -25.05.2015;0.763212906;2.08;1.702871 -26.05.2015;0;1.46;1.653256 -27.05.2015;0;1.25;1.587107 -28.05.2015;0;2.02;1.372065 -29.05.2015;0.714781746;2.49;1.494517 -30.05.2015;1.797434336;2.65;1.508525 -31.05.2015;0;2.24;1.343536 -01.06.2015;1.9077524;2.25;1.643991 -02.06.2015;0;2.7;1.283713 -03.06.2015;0;3.39;0.913469 -04.06.2015;0.111569687;4.98;0.795185 -05.06.2015;0;5.79;0.653788 -06.06.2015;1.968594361;4.08;0.572147 -07.06.2015;0;4.79;0.522457 -08.06.2015;0;3.03;0.535302 -09.06.2015;0;3.22;0.602977 -10.06.2015;0;3.44;0.479275 -11.06.2015;0;3.04;0.456393 -12.06.2015;0;4.86;0.395009 -13.06.2015;0;2.77;0.431227 -14.06.2015;0;5.51;0.38527 -15.06.2015;0;2.88;0.321956 -16.06.2015;0;3.72;0.338222 -17.06.2015;0;4.06;0.37645 -18.06.2015;4.311581277;2.51;0.694069 -19.06.2015;0.100497674;1.39;0.650672 -20.06.2015;0.162975391;1.51;0.579808 -21.06.2015;1.552314127;1.71;1.523814 -22.06.2015;0.617895402;1.38;2.825669 -23.06.2015;10.47449707;1.86;3.714022 -24.06.2015;0;2.37;1.638874 -25.06.2015;0;3.79;1.051155 -26.06.2015;0;2.99;0.689037 -27.06.2015;5.762995105;3.01;0.852325 -28.06.2015;0;4.3;0.537126 -29.06.2015;0;4.79;0.426541 -30.06.2015;0;5.77;0.140329 -01.07.2015;0;6.03;0.216116 -02.07.2015;0;6.16;0.206475 -03.07.2015;0;5.69;0.306456 -04.07.2015;0;5.77;0.333392 -05.07.2015;2.164609861;5.01;0.150782 -06.07.2015;0.671559919;5.52;0.310616 -07.07.2015;1.073044637;4.43;0.315667 -08.07.2015;0.4049572;2.69;0.284107 -09.07.2015;0;3.21;0.365145 -10.07.2015;0;4.93;0.36325 -11.07.2015;0;4.63;0.342682 -12.07.2015;0.742175486;3.28;0.22183 -13.07.2015;0.917812515;1.61;0.437654 -14.07.2015;0.335801186;2.14;0.482093 -15.07.2015;0;3.18;0.398528 -16.07.2015;0;4.95;0.316123 -17.07.2015;0;4.67;0.262393 -18.07.2015;0;4.7;0.08223 -19.07.2015;18.5499668;2.41;4.793734 -20.07.2015;0.711446537;1.83;0.623911 -21.07.2015;0;4.83;0.392438 -22.07.2015;0;4.22;0.263452 -23.07.2015;0;4;0.178808 -24.07.2015;1.161745747;3.75;0.050885 -25.07.2015;4.739583375;2.86;0.336215 -26.07.2015;1.023947168;3.27;0.290719 -27.07.2015;4.775790837;1.94;0.564419 -28.07.2015;0.22046942;2.71;0.313909 -29.07.2015;0;3.46;0.193449 -30.07.2015;0.310739687;2.57;0.157555 -31.07.2015;0;4.38;0.181167 -01.08.2015;0;3.82;0.14496 -02.08.2015;0;4.89;0.127533 -03.08.2015;0;5.24;0.153291 -04.08.2015;5.275810734;2.84;0.179845 -05.08.2015;0;3.58;0.179909 -06.08.2015;0;4.63;0.113079 -07.08.2015;0;5.29;0.086913 -08.08.2015;0.838703273;3.79;0.054659 -09.08.2015;0;2.86;0.055128 -10.08.2015;18.45712161;3.91;4.067164 -11.08.2015;0.203727284;3.24;0.321283 -12.08.2015;0;3.99;0.14527 -13.08.2015;0;5.06;0.134175 -14.08.2015;0.300627846;2.89;0.047637 -15.08.2015;0.101148058;2.41;0.047741 -16.08.2015;13.96655107;1.4;0.945726 -17.08.2015;13.0154946;1.3;1.553669 -18.08.2015;0;1.52;0.886208 -19.08.2015;0.103992367;2.39;0.345045 -20.08.2015;0;3.06;0.257407 -21.08.2015;0;3.77;0.233115 -22.08.2015;0;3.92;0.282097 -23.08.2015;0.101825612;3.62;0.265316 -24.08.2015;5.562099678;1.85;0.383227 -25.08.2015;0;2.32;0.782742 -26.08.2015;0;4.18;0.252642 -27.08.2015;5.541019025;1.51;0.259085 -28.08.2015;5.502802797;1.83;1.389353 -29.08.2015;0;3.75;0.434066 -30.08.2015;0;4.14;0.282558 -31.08.2015;0.114274753;4.47;0.20771 -01.09.2015;18.47829078;1.46;0.461493 -02.09.2015;0.100209282;2.35;0.220189 -03.09.2015;0;3.18;0.285524 -04.09.2015;0;1.98;0.316121 -05.09.2015;2.091075744;1.48;0.235072 -06.09.2015;0.940822544;1.88;0.227215 -07.09.2015;0.316429087;1.33;0.214042 -08.09.2015;0.231054006;1.47;0.241931 -09.09.2015;0;2.2;0.274223 -10.09.2015;0;2.65;0.317282 -11.09.2015;0;2.69;0.388467 -12.09.2015;0;1.88;0.361774 -13.09.2015;1.050664421;1.51;0.355183 -14.09.2015;1.573098864;1.55;0.268506 -15.09.2015;0.463845252;1.58;0.356508 -16.09.2015;15.0852756;1.06;0.842125 -17.09.2015;4.754206198;1.05;0.82415 -18.09.2015;1.352306651;1.51;0.514047 -19.09.2015;0.249046217;1.39;0.358904 -20.09.2015;0;1.36;0.387005 -21.09.2015;0;1.71;0.556901 -22.09.2015;7.590314374;0.98;0.9087 -23.09.2015;0.914729461;0.93;0.642797 -24.09.2015;0.105731773;1.92;0.456008 -25.09.2015;0;1.67;0.460169 -26.09.2015;0;0.96;0.721392 -27.09.2015;0;2.14;0.688831 -28.09.2015;0;2.08;0.656706 -29.09.2015;0;2.14;0.620153 -30.09.2015;0;2.15;0.513464 -01.10.2015;0;1.97;0.454253 -02.10.2015;0;1.99;0.641321 -03.10.2015;0;1.97;0.621185 -04.10.2015;0;0.98;0.622735 -05.10.2015;0.901883538;1.39;0.518392 -06.10.2015;4.40263371;0.95;0.388521 -07.10.2015;0;1.06;0.427714 -08.10.2015;1.61427714;0.89;0.464805 -09.10.2015;6.348355114;0.82;1.353489 -10.10.2015;0;1.69;0.639001 -11.10.2015;0;1.41;0.683847 -12.10.2015;0.220095833;0.94;0.801054 -13.10.2015;0.288329493;0.33;0.862333 -14.10.2015;1.197675706;0.32;0.964854 -15.10.2015;16.6273538;0.32;2.793781 -16.10.2015;0.100545929;0.47;2.877023 -17.10.2015;0;0.49;1.343599 -18.10.2015;1.472179303;0.47;0.997485 -19.10.2015;0.423122991;0.49;0.76709 -20.10.2015;0.410582301;0.9;0.747152 -21.10.2015;9.153286597;0.62;0.583958 -22.10.2015;0;0.62;0.45371 -23.10.2015;0;1.33;0.551057 -24.10.2015;0;0.46;0.526463 -25.10.2015;0.301801979;0.63;0.512561 -26.10.2015;0;1.34;0.66113 -27.10.2015;0.110131401;1.01;0.637831 -28.10.2015;0;0.55;0.676474 -29.10.2015;0.307945995;0.63;0.598415 -30.10.2015;0;0.78;0.666631 -31.10.2015;0;0.77;0.732306 -01.11.2015;0;0.6;0.811233 -02.11.2015;0.101460971;0.49;0.808923 -03.11.2015;0;0.33;0.777881 -04.11.2015;0;0.35;0.765854 -05.11.2015;0.201751349;0.98;0.776858 -06.11.2015;0.205581155;0.64;0.620153 -07.11.2015;0.601373503;0.75;0.522026 -08.11.2015;0;0.95;0.581254 -09.11.2015;1.150310197;0.75;0.490283 -10.11.2015;0;0.68;0.453829 -11.11.2015;0;0.95;0.4192 -12.11.2015;0;0.86;0.413633 -13.11.2015;1.449292275;0.52;0.430706 -14.11.2015;0.235410377;0.51;0.521205 -15.11.2015;0.555875606;0.59;0.489393 -16.11.2015;0.240938014;0.54;0.429516 -17.11.2015;8.449224568;0.61;1.462533 -18.11.2015;1.755325032;0.66;1.335369 -19.11.2015;18.27323007;0.69;3.106473 -20.11.2015;3.521850818;0.42;7.103129 -21.11.2015;1.348400749;0.24;4.295873 -22.11.2015;0.105311222;0.21;2.451987 -23.11.2015;0.433366928;0.14;1.864489 -24.11.2015;0.120211584;0;1.593253 -25.11.2015;3.508738949;0.15;2.038703 -26.11.2015;0.110528991;0.29;1.835579 -27.11.2015;0;0.03;1.627768 -28.11.2015;0.654330392;0.27;1.460863 -29.11.2015;15.39886263;0.41;7.73805 -30.11.2015;26.36632411;0.45;21.64296 -01.12.2015;6.562073855;0.49;34.297636 -02.12.2015;0.116859243;0.46;24.573917 -03.12.2015;0.102987071;0.46;15.602492 -04.12.2015;1.47904194;0.26;11.866875 -05.12.2015;0.109246337;0.17;9.220344 -06.12.2015;0.233395915;0.39;7.908478 -07.12.2015;0;0.68;6.490688 -08.12.2015;0.108273225;0.18;5.770311 -09.12.2015;1.713607698;0.37;5.588081 -10.12.2015;0;0.13;4.609157 -11.12.2015;5.123945131;0.19;4.870496 -12.12.2015;1.035770485;0.38;10.322082 -13.12.2015;0.211855012;0.38;8.855462 -14.12.2015;0.202589302;0.42;8.197842 -15.12.2015;0;0.19;7.100896 -16.12.2015;2.739947281;0.38;7.59766 -17.12.2015;0.108460496;0.49;7.969175 -18.12.2015;0.613575879;0.5;7.270544 -19.12.2015;0;0.49;6.740516 -20.12.2015;0;0.4;6.351479 -21.12.2015;2.460479131;0.49;6.124973 -22.12.2015;1.616502071;0.49;6.457674 -23.12.2015;0;0.59;6.222186 -24.12.2015;0;0.5;5.642859 -25.12.2015;3.802154414;0.46;5.886817 -26.12.2015;0.10366619;0.92;6.231738 -27.12.2015;0;0.29;5.68726 -28.12.2015;0.103475817;0.19;5.047149 -29.12.2015;0.117668113;0.35;4.688448 -30.12.2015;0;0.28;4.222519 -31.12.2015;1.705440938;0.21;4.223433 -01.01.2016;0;0.23;4.017889 -02.01.2016;8.369063977;0.12;7.317093 -03.01.2016;0.588034675;0.15;14.461141 -04.01.2016;2.664713628;0.08;15.101703 -05.01.2016;0.313912567;0.26;16.96072 -06.01.2016;0.927559742;0.28;15.06295 -07.01.2016;3.927806081;0.28;14.981331 -08.01.2016;0;0.41;16.039465 -09.01.2016;0.099528216;0;13.894992 -10.01.2016;3.926668473;0.48;13.188682 -11.01.2016;4.007747055;0.27;16.235448 -12.01.2016;1.591280505;0.36;22.579827 -13.01.2016;3.102145333;0.31;24 -14.01.2016;1.421460702;0.12;26 -15.01.2016;2.531443794;0.13;24 -16.01.2016;0.351501461;0.1;22 -17.01.2016;0;0;21 -18.01.2016;0;0;19 -19.01.2016;0;0;18 -20.01.2016;0;0;17 -21.01.2016;0;0;16 -22.01.2016;0;0;15 -23.01.2016;1.830081293;0.12;18 -24.01.2016;0.811706003;0.2;17 -25.01.2016;0.309008813;0.37;17 -26.01.2016;0;0.34;13 -27.01.2016;0;0.55;15 -28.01.2016;1.833112643;0.78;17 -29.01.2016;0.107904839;0.51;17 -30.01.2016;7.536723939;0.43;22 -31.01.2016;0.585522187;0.33;14 -01.02.2016;0.692162459;0.59;15 -02.02.2016;6.761576351;0.56;17.517095 -03.02.2016;1.277490294;0.44;19.508173 -04.02.2016;4.32179039;0.25;22.8447 -05.02.2016;0;0.38;24.430915 -06.02.2016;0;0.94;23.071457 -07.02.2016;1.143381551;0.49;20.843161 -08.02.2016;11.01289227;0.52;26.241241 -09.02.2016;8.73877593;0.46;35.07356 -10.02.2016;2.554046236;0.28;40.645547 -11.02.2016;0.567619658;0.36;37.445989 -12.02.2016;0;0.16;33.127436 -13.02.2016;2.40133402;0;30.247736 -14.02.2016;3.37223563;0.33;43.163267 -15.02.2016;0.545083452;0.2;34.951078 -16.02.2016;0.108791133;0;27.866289 -17.02.2016;0;0.1;25.252043 -18.02.2016;0;0.13;22.887992 -19.02.2016;0;0;20.811797 -20.02.2016;8.941678944;0.34;22.393728 -21.02.2016;0.205946991;0.71;44.490382 -22.02.2016;4.448658783;0.64;37.383955 -23.02.2016;5.210107493;0.28;69.780614 -24.02.2016;0.31667498;0.22;53.853118 -25.02.2016;0.182021156;0;48.026933 -26.02.2016;0;0.07;40.424149 -27.02.2016;0;0.38;35.294958 -28.02.2016;0;0.25;29.46965 -29.02.2016;0;0.28;24.575869 -01.03.2016;0.099788551;0.23;21.655856 -02.03.2016;2.543764781;0.45;20.858822 -03.03.2016;0;0.32;18.914856 -04.03.2016;4.054581017;0.17;16.972813 -05.03.2016;2.802675702;0.41;22.858987 -06.03.2016;1.330104522;0.25;20.687357 -07.03.2016;1.4895669;0.1;19.982822 -08.03.2016;0.2254387;0.01;18.236769 -09.03.2016;0;0.19;17.004084 -10.03.2016;0;0.59;15.292344 -11.03.2016;0;0.54;13.741963 -12.03.2016;0;0.37;12.547774 -13.03.2016;0;0.63;11.309854 -14.03.2016;0;0.94;10.237401 -15.03.2016;0;0.31;9.750376 -16.03.2016;0;0.72;8.958825 -17.03.2016;0;0.98;8.378552 -18.03.2016;0;1.45;7.691635 -19.03.2016;0;0.55;6.937422 -20.03.2016;0;0.56;6.583335 -21.03.2016;0;0.77;6.237093 -22.03.2016;0.201403041;0.78;6.006363 -23.03.2016;0;0.81;5.892014 -24.03.2016;0.100209282;0.75;5.51542 -25.03.2016;5.295629966;0.63;6.150663 -26.03.2016;0;1.67;5.828721 -27.03.2016;2.417535746;1.01;5.560486 -28.03.2016;11.95504135;0.74;8.674594 -29.03.2016;0.955642999;1.61;15.443117 -30.03.2016;5.486573008;0.97;13.541014 -31.03.2016;18.36523119;0.68;19.400544 -01.04.2016;12.93356866;1.18;113.67114 -02.04.2016;0;1.54;82.107844 -03.04.2016;0.311702212;1.77;66.821929 -04.04.2016;2.777947475;1.5;54.033702 -05.04.2016;5.288557416;1;53.38014 -06.04.2016;0.207421675;1.77;47.042426 -07.04.2016;2.371324356;1.97;41.448781 -08.04.2016;0;1.41;35.409018 -09.04.2016;0;1.81;30.363167 -10.04.2016;0;1.84;26.219279 -11.04.2016;0;2.81;23.122281 -12.04.2016;2.788103585;1.79;20.835289 -13.04.2016;0.206878578;0.84;19.908118 -14.04.2016;0.110850254;2.5;16.993101 -15.04.2016;0.350645583;1.96;14.864128 -16.04.2016;4.598064622;1.46;15.11145 -17.04.2016;3.985827078;1.55;19.05834 -18.04.2016;0;2.1;14.310609 -19.04.2016;0.112219084;1.14;14.231106 -20.04.2016;0;2.46;14.236287 -21.04.2016;0;3.06;13.086719 -22.04.2016;0;2.34;11.993123 -23.04.2016;1.694991123;1.01;12.306438 -24.04.2016;0.325431496;0.88;11.843871 -25.04.2016;6.326924595;0.69;11.909214 -26.04.2016;1.543896592;1.15;14.036164 -27.04.2016;0.518940383;0.73;12.009422 -28.04.2016;0;1.4;10.280654 -29.04.2016;0;0.95;9.101957 -30.04.2016;3.466456859;1.72;8.363818 -01.05.2016;0.159418201;3.11;8.551597 -02.05.2016;0;3.61;6.51079 -03.05.2016;0.435001943;1.48;6.02769 -04.05.2016;0;2.85;5.368609 -05.05.2016;0;3.32;4.990627 -06.05.2016;0;4.16;4.540968 -07.05.2016;0;4.29;4.319355 -08.05.2016;0;4.57;3.769702 -09.05.2016;0;4.33;3.344512 -10.05.2016;0;3.25;3.137534 -11.05.2016;0.384986665;3.2;2.993173 -12.05.2016;0;2.95;2.755869 -13.05.2016;0.430369072;3.08;2.797507 -14.05.2016;0.149206473;1.5;2.709491 -15.05.2016;0;1.48;2.345982 -16.05.2016;0;1.63;2.370086 -17.05.2016;0;1.3;2.005466 -18.05.2016;0.113391854;1.46;3.404877 -19.05.2016;1.112386621;1.85;7.296716 -20.05.2016;0;2.62;2.172888 -21.05.2016;0;3.25;2.133433 -22.05.2016;1.864368134;3.41;1.866284 -23.05.2016;1.265196483;1.53;1.467837 -24.05.2016;1.771244042;1.3;1.894978 -25.05.2016;0;1.36;1.9752 -26.05.2016;0;3.47;1.573497 -27.05.2016;8.319655478;2.41;2.33996 -28.05.2016;0.203177184;2.96;1.829068 -29.05.2016;2.73192665;2.12;1.709702 -30.05.2016;18.88931006;1.77;8.95159 -31.05.2016;0;1.86;4.092378 -01.06.2016;9.534581958;1.58;4.699488 -02.06.2016;2.583155448;2.07;4.857672 -03.06.2016;4.311377293;1.7;4.482569 -04.06.2016;0.42769823;2.09;3.807784 -05.06.2016;0;4.44;2.555667 -06.06.2016;0;4.6;1.511484 -07.06.2016;0;4.96;0.942042 -08.06.2016;0.40516591;2.73;0.997192 -09.06.2016;0;4.21;0.898497 -10.06.2016;0;4.25;0.780168 -11.06.2016;0;1.95;0.637056 -12.06.2016;5.575656572;2.04;2.174046 -13.06.2016;3.027432781;1.73;2.259874 -14.06.2016;2.364694311;2.76;1.868474 -15.06.2016;16.39205803;2.15;2.864543 -16.06.2016;0.207891926;1.44;2.868224 -17.06.2016;1.336235888;3.19;4.381649 -18.06.2016;0;3.41;3.74645 -19.06.2016;1.36919939;2.2;3.258419 -20.06.2016;3.773280497;3.3;3.265759 -21.06.2016;0.667187168;2.08;3.274147 -22.06.2016;0;2.83;2.998418 -23.06.2016;0;6.11;2.689739 -24.06.2016;0.327630879;5.13;14.381339 -25.06.2016;1.902249526;1.85;10.456674 -26.06.2016;0.207473991;3.64;6.658158 -27.06.2016;0;2.53;4.954631 -28.06.2016;0;3.17;4.802392 -29.06.2016;0.227507408;4.19;3.971303 -30.06.2016;0.301788243;1.91;3.430218 -01.07.2016;0;2.31;3.095551 -02.07.2016;1.07184607;2.59;2.837811 -03.07.2016;2.475292137;2.92;2.740753 -04.07.2016;0;2.38;2.670906 -05.07.2016;0.111215047;2.87;2.547434 -06.07.2016;0;3.43;2.150196 -07.07.2016;0.112414583;4.04;2.006068 -08.07.2016;0;3.04;1.91181 -09.07.2016;0;3.75;1.703555 -10.07.2016;0;4.64;1.62032 -11.07.2016;0;3.03;1.708246 -12.07.2016;0.110809941;3.9;1.583203 -13.07.2016;17.03403353;2.9;2.966055 -14.07.2016;0.144179897;2.58;1.943222 -15.07.2016;0;2.55;1.426019 -16.07.2016;0;2.11;1.478625 -17.07.2016;0;2.38;1.449198 -18.07.2016;0;5.16;1.204307 -19.07.2016;0;5.62;1.477551 -20.07.2016;0;5.69;1.30457 -21.07.2016;3.202411363;2.48;1.587464 -22.07.2016;0;3.26;1.495235 -23.07.2016;11.98292241;2.56;3.329446 -24.07.2016;18.1615269;2.12;1.64346 -25.07.2016;0.106852963;3.84;1.449671 -26.07.2016;0;2.78;1.336794 -27.07.2016;0.531528718;3.89;1.373016 -28.07.2016;0.100209282;2.11;1.308763 -29.07.2016;3.160570324;2.34;1.381977 -30.07.2016;0;2.92;1.170749 -31.07.2016;0;2.5;1.131734 -01.08.2016;0;3.13;0.816771 -02.08.2016;1.270286145;1.48;1.019339 -03.08.2016;4.530701661;1.57;1.389518 -04.08.2016;3.016878384;1.52;1.896977 -05.08.2016;0.100289513;3.21;1.596594 -06.08.2016;0;2.67;1.3715 -07.08.2016;0;4.93;1.27007 -08.08.2016;0;3.7;1.077521 -09.08.2016;0.109530437;2.63;0.992203 -10.08.2016;0.900571308;2.16;1.090999 -11.08.2016;2.399586919;1.7;1.00089 -12.08.2016;0.100877001;1.48;1.118367 -13.08.2016;0;4.71;0.945061 -14.08.2016;0;3.35;0.855563 -15.08.2016;0;4.37;0.80397 -16.08.2016;0;4.32;0.673348 -17.08.2016;0;4.39;0.620793 -18.08.2016;0;3.96;0.643303 -19.08.2016;0;2.86;0.769216 -20.08.2016;1.283211371;1.89;0.86842 -21.08.2016;0.318061239;2.1;0.845269 -22.08.2016;0;1.59;0.809725 -23.08.2016;0;3.67;0.623575 -24.08.2016;0;4.57;0.583828 -25.08.2016;0;4.63;0.451006 -26.08.2016;0;4.7;0.390638 -27.08.2016;0;4.77;0.381175 -28.08.2016;34.51466023;3.35;0.783103 -29.08.2016;0;2.26;0.44335 -30.08.2016;0;3.92;0.28983 -31.08.2016;0;3.86;0.362807 -01.09.2016;0;4.02;0.34465 -02.09.2016;0;3.69;0.263442 -03.09.2016;0;2.92;0.266859 -04.09.2016;4.869164961;1.83;0.500049 -05.09.2016;0.620093261;1.65;0.514997 -06.09.2016;0;3.49;0.421759 -07.09.2016;0;3.74;0.360717 -08.09.2016;0;3.77;0.623417 -09.09.2016;0;3;0.647308 -10.09.2016;0;3.59;0.566866 -11.09.2016;0;3.57;0.642779 -12.09.2016;0;3.83;0.584243 -13.09.2016;0;3.87;0.624604 -14.09.2016;0;3.46;0.773907 -15.09.2016;0;3.48;0.634482 -16.09.2016;0;1.57;0.59636 -17.09.2016;13.08211674;1.2;1.090803 -18.09.2016;0.130423501;1.87;0.843269 -19.09.2016;0.11664365;1;0.649716 -20.09.2016;0;1.02;0.681233 -21.09.2016;0;2.39;0.594031 -22.09.2016;0;2.34;0.456837 -23.09.2016;0;2.14;0.362912 -24.09.2016;0;2.3;0.383837 -25.09.2016;0;2.78;0.337883 -26.09.2016;0;1.42;0.258338 -27.09.2016;0;2.4;0.247644 -28.09.2016;0;1.6;0.985329 -29.09.2016;0;2.37;1.112481 -30.09.2016;1.314380267;0.94;1.097666 -01.10.2016;7.856574862;0.96;1.855835 -02.10.2016;1.626249664;1.59;1.543922 -03.10.2016;3.48372122;1.1;1.419513 -04.10.2016;0.100209282;1.22;1.447856 -05.10.2016;0;1.34;1.387699 -06.10.2016;0;0.68;1.601107 -07.10.2016;1.07828162;0.74;2.150463 -08.10.2016;0.953118453;0.99;2.149589 -09.10.2016;0;0.87;2.01451 -10.10.2016;0;0.54;2.190437 -11.10.2016;0.401547464;0.69;2.230597 -12.10.2016;0.922311521;0.59;2.324864 -13.10.2016;0;0.58;2.237421 -14.10.2016;0;1.05;2.22384 -15.10.2016;0;0.82;2.383007 -16.10.2016;0.107234188;1.04;2.20354 -17.10.2016;1.431599645;0.79;2.184616 -18.10.2016;0.887529053;0.85;2.192242 -19.10.2016;1.557685112;0.57;2.283406 -20.10.2016;4.218952387;0.49;3.127501 -21.10.2016;2.839809068;0.55;2.666176 -22.10.2016;2.518736468;0.56;2.78843 -23.10.2016;0;0.49;2.726416 -24.10.2016;6.607301235;0.56;3.193445 -25.10.2016;3.794312657;0.63;3.883982 -26.10.2016;0;0.57;3.061952 -27.10.2016;0.102334741;0.67;2.556083 -28.10.2016;0;0.64;2.419092 -29.10.2016;0;1.3;2.460045 -30.10.2016;0;0.65;2.391391 -31.10.2016;0;0.98;2.428228 -01.11.2016;0;0.39;2.418025 -02.11.2016;1.030322287;0.68;2.655645 -03.11.2016;0.118985639;0.36;2.558833 -04.11.2016;0.429524248;0.27;2.715995 -05.11.2016;4.297140032;0.39;3.624203 -06.11.2016;0.202492988;0.32;3.226817 -07.11.2016;4.252920837;0.28;3.551767 -08.11.2016;2.859901977;0.17;3.772956 -09.11.2016;4.06644106;0.14;3.928129 -10.11.2016;2.335767308;0.23;5.782891 -11.11.2016;10.75225678;0.26;11.36022 -12.11.2016;0;0.07;6.61794 -13.11.2016;0;0.03;4.741424 -14.11.2016;0.10398106;0;4.222565 -15.11.2016;3.267344925;0.15;4.521476 -16.11.2016;6.133248608;0.46;11.04024 -17.11.2016;2.558420874;0.53;8.805645 -18.11.2016;11.05649097;0.51;11.054335 -19.11.2016;0.334527715;0.32;8.602058 -20.11.2016;0;0.45;6.936625 -21.11.2016;0;0.5;6.053484 -22.11.2016;0;0.43;5.378617 -23.11.2016;0;0.68;4.958714 -24.11.2016;0;0.89;4.675723 -25.11.2016;0;0.63;4.342186 -26.11.2016;0;0.26;4.086791 -27.11.2016;0;0.29;3.91826 -28.11.2016;0.126594003;0;3.852809 -29.11.2016;0;0;3.971793 -30.11.2016;0;0;3.6 -01.12.2016;0;0.23;3.059105 -02.12.2016;2.982331796;0.24;3.163502 -03.12.2016;0.104258295;0;3.207182 -04.12.2016;0.100284967;0;3.657785 -05.12.2016;0;0;5.361678 -06.12.2016;0;0;3.356678 -07.12.2016;0;0;3.219573 -08.12.2016;0;0;3.341401 -09.12.2016;0;0.07;3.23561 -10.12.2016;0;0.06;3.505606 -11.12.2016;0.244925705;0.37;3.580689 -12.12.2016;0.365184914;0.34;3.556574 -13.12.2016;1.358897575;0.21;3.457692 -14.12.2016;1.771248669;0.26;3.808543 -15.12.2016;0;0.31;3.677545 -16.12.2016;0;0.18;3.549057 -17.12.2016;0.108076322;0.09;3.196081 -18.12.2016;0;0.21;3.181549 -19.12.2016;0.10906751;0.22;3.326469 -20.12.2016;0;0;3.266387 -21.12.2016;0;0;3.133773 -22.12.2016;1.903407829;0.02;3.324144 -23.12.2016;0;0.14;3.584695 -24.12.2016;0.395363312;0.38;3.548042 -25.12.2016;0.285241167;0.39;3.545211 -26.12.2016;0.830906677;0.39;3.442165 -27.12.2016;0;0.32;3.118225 -28.12.2016;0;0.28;3.043744 -29.12.2016;0;0;3.05141 -30.12.2016;0;0;3.061955 -31.12.2016;0;0;2.959312 diff --git a/spotpy/__init__.py b/src/spotpy/__init__.py similarity index 100% rename from spotpy/__init__.py rename to src/spotpy/__init__.py diff --git a/src/spotpy/_version.py b/src/spotpy/_version.py new file mode 100644 index 00000000..d00926d8 --- /dev/null +++ b/src/spotpy/_version.py @@ -0,0 +1 @@ +__version__ = '1.5.17.dev5' \ No newline at end of file diff --git a/spotpy/algorithms/__init__.py b/src/spotpy/algorithms/__init__.py similarity index 100% rename from spotpy/algorithms/__init__.py rename to src/spotpy/algorithms/__init__.py diff --git a/spotpy/algorithms/_algorithm.py b/src/spotpy/algorithms/_algorithm.py similarity index 100% rename from spotpy/algorithms/_algorithm.py rename to src/spotpy/algorithms/_algorithm.py diff --git a/spotpy/algorithms/abc.py b/src/spotpy/algorithms/abc.py similarity index 100% rename from spotpy/algorithms/abc.py rename to src/spotpy/algorithms/abc.py diff --git a/spotpy/algorithms/dds.py b/src/spotpy/algorithms/dds.py similarity index 100% rename from spotpy/algorithms/dds.py rename to src/spotpy/algorithms/dds.py diff --git a/spotpy/algorithms/demcz.py b/src/spotpy/algorithms/demcz.py similarity index 100% rename from spotpy/algorithms/demcz.py rename to src/spotpy/algorithms/demcz.py diff --git a/spotpy/algorithms/dream.py b/src/spotpy/algorithms/dream.py similarity index 100% rename from spotpy/algorithms/dream.py rename to src/spotpy/algorithms/dream.py diff --git a/spotpy/algorithms/fast.py b/src/spotpy/algorithms/fast.py similarity index 100% rename from spotpy/algorithms/fast.py rename to src/spotpy/algorithms/fast.py diff --git a/spotpy/algorithms/fscabc.py b/src/spotpy/algorithms/fscabc.py similarity index 100% rename from spotpy/algorithms/fscabc.py rename to src/spotpy/algorithms/fscabc.py diff --git a/spotpy/algorithms/lhs.py b/src/spotpy/algorithms/lhs.py similarity index 100% rename from spotpy/algorithms/lhs.py rename to src/spotpy/algorithms/lhs.py diff --git a/spotpy/algorithms/list_sampler.py b/src/spotpy/algorithms/list_sampler.py similarity index 100% rename from spotpy/algorithms/list_sampler.py rename to src/spotpy/algorithms/list_sampler.py diff --git a/spotpy/algorithms/mc.py b/src/spotpy/algorithms/mc.py similarity index 100% rename from spotpy/algorithms/mc.py rename to src/spotpy/algorithms/mc.py diff --git a/spotpy/algorithms/mcmc.py b/src/spotpy/algorithms/mcmc.py similarity index 100% rename from spotpy/algorithms/mcmc.py rename to src/spotpy/algorithms/mcmc.py diff --git a/spotpy/algorithms/mle.py b/src/spotpy/algorithms/mle.py similarity index 100% rename from spotpy/algorithms/mle.py rename to src/spotpy/algorithms/mle.py diff --git a/spotpy/algorithms/nsgaii.py b/src/spotpy/algorithms/nsgaii.py similarity index 100% rename from spotpy/algorithms/nsgaii.py rename to src/spotpy/algorithms/nsgaii.py diff --git a/spotpy/algorithms/padds.py b/src/spotpy/algorithms/padds.py similarity index 100% rename from spotpy/algorithms/padds.py rename to src/spotpy/algorithms/padds.py diff --git a/spotpy/algorithms/rope.py b/src/spotpy/algorithms/rope.py similarity index 100% rename from spotpy/algorithms/rope.py rename to src/spotpy/algorithms/rope.py diff --git a/spotpy/algorithms/sa.py b/src/spotpy/algorithms/sa.py similarity index 100% rename from spotpy/algorithms/sa.py rename to src/spotpy/algorithms/sa.py diff --git a/spotpy/algorithms/sceua.py b/src/spotpy/algorithms/sceua.py similarity index 100% rename from spotpy/algorithms/sceua.py rename to src/spotpy/algorithms/sceua.py diff --git a/spotpy/analyser.py b/src/spotpy/analyser.py similarity index 100% rename from spotpy/analyser.py rename to src/spotpy/analyser.py diff --git a/spotpy/cli.py b/src/spotpy/cli.py similarity index 100% rename from spotpy/cli.py rename to src/spotpy/cli.py diff --git a/spotpy/database/__init__.py b/src/spotpy/database/__init__.py similarity index 100% rename from spotpy/database/__init__.py rename to src/spotpy/database/__init__.py diff --git a/spotpy/database/base.py b/src/spotpy/database/base.py similarity index 100% rename from spotpy/database/base.py rename to src/spotpy/database/base.py diff --git a/spotpy/database/csv.py b/src/spotpy/database/csv.py similarity index 100% rename from spotpy/database/csv.py rename to src/spotpy/database/csv.py diff --git a/spotpy/database/hdf5.py b/src/spotpy/database/hdf5.py similarity index 100% rename from spotpy/database/hdf5.py rename to src/spotpy/database/hdf5.py diff --git a/spotpy/database/ram.py b/src/spotpy/database/ram.py similarity index 100% rename from spotpy/database/ram.py rename to src/spotpy/database/ram.py diff --git a/spotpy/database/sql.py b/src/spotpy/database/sql.py similarity index 100% rename from spotpy/database/sql.py rename to src/spotpy/database/sql.py diff --git a/spotpy/describe.py b/src/spotpy/describe.py similarity index 100% rename from spotpy/describe.py rename to src/spotpy/describe.py diff --git a/spotpy/examples/__init__.py b/src/spotpy/examples/__init__.py similarity index 100% rename from spotpy/examples/__init__.py rename to src/spotpy/examples/__init__.py diff --git a/spotpy/examples/cmf_data/__init__.py b/src/spotpy/examples/cmf_data/__init__.py similarity index 100% rename from spotpy/examples/cmf_data/__init__.py rename to src/spotpy/examples/cmf_data/__init__.py diff --git a/spotpy/examples/hymod_exe/HYMODsilent.exe b/src/spotpy/examples/hymod_exe/HYMODsilent.exe similarity index 100% rename from spotpy/examples/hymod_exe/HYMODsilent.exe rename to src/spotpy/examples/hymod_exe/HYMODsilent.exe diff --git a/spotpy/examples/hymod_exe/Param.in b/src/spotpy/examples/hymod_exe/Param.in similarity index 100% rename from spotpy/examples/hymod_exe/Param.in rename to src/spotpy/examples/hymod_exe/Param.in diff --git a/spotpy/examples/dds/__init__.py b/src/spotpy/examples/hymod_exe/__init__.py similarity index 100% rename from spotpy/examples/dds/__init__.py rename to src/spotpy/examples/hymod_exe/__init__.py diff --git a/spotpy/examples/hymod_exe/bound.txt b/src/spotpy/examples/hymod_exe/bound.txt similarity index 100% rename from spotpy/examples/hymod_exe/bound.txt rename to src/spotpy/examples/hymod_exe/bound.txt diff --git a/spotpy/examples/hymod_exe/bound_units.xlsx b/src/spotpy/examples/hymod_exe/bound_units.xlsx similarity index 100% rename from spotpy/examples/hymod_exe/bound_units.xlsx rename to src/spotpy/examples/hymod_exe/bound_units.xlsx diff --git a/spotpy/examples/hymod_exe/license.txt b/src/spotpy/examples/hymod_exe/license.txt similarity index 100% rename from spotpy/examples/hymod_exe/license.txt rename to src/spotpy/examples/hymod_exe/license.txt diff --git a/spotpy/examples/hymod_exe/__init__.py b/src/spotpy/examples/hymod_python/__init__.py similarity index 100% rename from spotpy/examples/hymod_exe/__init__.py rename to src/spotpy/examples/hymod_python/__init__.py diff --git a/spotpy/examples/hymod_python/hymod.py b/src/spotpy/examples/hymod_python/hymod.py similarity index 100% rename from spotpy/examples/hymod_python/hymod.py rename to src/spotpy/examples/hymod_python/hymod.py diff --git a/spotpy/examples/hymod_python/__init__.py b/src/spotpy/examples/hymod_unix/__init__.py similarity index 100% rename from spotpy/examples/hymod_python/__init__.py rename to src/spotpy/examples/hymod_unix/__init__.py diff --git a/spotpy/examples/hymod_unix/bound.txt b/src/spotpy/examples/hymod_unix/bound.txt similarity index 100% rename from spotpy/examples/hymod_unix/bound.txt rename to src/spotpy/examples/hymod_unix/bound.txt diff --git a/spotpy/examples/hymod_unix/bound_units.xlsx b/src/spotpy/examples/hymod_unix/bound_units.xlsx similarity index 100% rename from spotpy/examples/hymod_unix/bound_units.xlsx rename to src/spotpy/examples/hymod_unix/bound_units.xlsx diff --git a/spotpy/examples/hymod_unix/hymod_3.6 b/src/spotpy/examples/hymod_unix/hymod_3.6 similarity index 100% rename from spotpy/examples/hymod_unix/hymod_3.6 rename to src/spotpy/examples/hymod_unix/hymod_3.6 diff --git a/spotpy/examples/hymod_unix/hymod_3.7 b/src/spotpy/examples/hymod_unix/hymod_3.7 similarity index 100% rename from spotpy/examples/hymod_unix/hymod_3.7 rename to src/spotpy/examples/hymod_unix/hymod_3.7 diff --git a/spotpy/examples/hymod_unix/hymod_cython/Makefile b/src/spotpy/examples/hymod_unix/hymod_cython/Makefile similarity index 100% rename from spotpy/examples/hymod_unix/hymod_cython/Makefile rename to src/spotpy/examples/hymod_unix/hymod_cython/Makefile diff --git a/spotpy/examples/hymod_unix/hymod_cython/compile_hymod.sh b/src/spotpy/examples/hymod_unix/hymod_cython/compile_hymod.sh similarity index 100% rename from spotpy/examples/hymod_unix/hymod_cython/compile_hymod.sh rename to src/spotpy/examples/hymod_unix/hymod_cython/compile_hymod.sh diff --git a/spotpy/examples/hymod_unix/hymod_cython/hymod.pyx b/src/spotpy/examples/hymod_unix/hymod_cython/hymod.pyx similarity index 100% rename from spotpy/examples/hymod_unix/hymod_cython/hymod.pyx rename to src/spotpy/examples/hymod_unix/hymod_cython/hymod.pyx diff --git a/spotpy/examples/hymod_unix/hymod_cython/main_hymod.cpp b/src/spotpy/examples/hymod_unix/hymod_cython/main_hymod.cpp similarity index 100% rename from spotpy/examples/hymod_unix/hymod_cython/main_hymod.cpp rename to src/spotpy/examples/hymod_unix/hymod_cython/main_hymod.cpp diff --git a/spotpy/examples/spot_setup_ackley.py b/src/spotpy/examples/spot_setup_ackley.py similarity index 100% rename from spotpy/examples/spot_setup_ackley.py rename to src/spotpy/examples/spot_setup_ackley.py diff --git a/spotpy/examples/spot_setup_cmf1d.py b/src/spotpy/examples/spot_setup_cmf1d.py similarity index 100% rename from spotpy/examples/spot_setup_cmf1d.py rename to src/spotpy/examples/spot_setup_cmf1d.py diff --git a/spotpy/examples/spot_setup_cmf_lumped.py b/src/spotpy/examples/spot_setup_cmf_lumped.py similarity index 100% rename from spotpy/examples/spot_setup_cmf_lumped.py rename to src/spotpy/examples/spot_setup_cmf_lumped.py diff --git a/spotpy/examples/spot_setup_dds.py b/src/spotpy/examples/spot_setup_dds.py similarity index 100% rename from spotpy/examples/spot_setup_dds.py rename to src/spotpy/examples/spot_setup_dds.py diff --git a/spotpy/examples/spot_setup_dtlz1.py b/src/spotpy/examples/spot_setup_dtlz1.py similarity index 100% rename from spotpy/examples/spot_setup_dtlz1.py rename to src/spotpy/examples/spot_setup_dtlz1.py diff --git a/spotpy/examples/spot_setup_griewank.py b/src/spotpy/examples/spot_setup_griewank.py similarity index 100% rename from spotpy/examples/spot_setup_griewank.py rename to src/spotpy/examples/spot_setup_griewank.py diff --git a/spotpy/examples/spot_setup_hymod_exe.py b/src/spotpy/examples/spot_setup_hymod_exe.py similarity index 100% rename from spotpy/examples/spot_setup_hymod_exe.py rename to src/spotpy/examples/spot_setup_hymod_exe.py diff --git a/spotpy/examples/spot_setup_hymod_python.py b/src/spotpy/examples/spot_setup_hymod_python.py similarity index 100% rename from spotpy/examples/spot_setup_hymod_python.py rename to src/spotpy/examples/spot_setup_hymod_python.py diff --git a/spotpy/examples/spot_setup_hymod_python_pareto.py b/src/spotpy/examples/spot_setup_hymod_python_pareto.py similarity index 100% rename from spotpy/examples/spot_setup_hymod_python_pareto.py rename to src/spotpy/examples/spot_setup_hymod_python_pareto.py diff --git a/spotpy/examples/spot_setup_hymod_unix.py b/src/spotpy/examples/spot_setup_hymod_unix.py similarity index 100% rename from spotpy/examples/spot_setup_hymod_unix.py rename to src/spotpy/examples/spot_setup_hymod_unix.py diff --git a/spotpy/examples/spot_setup_rosenbrock.py b/src/spotpy/examples/spot_setup_rosenbrock.py similarity index 100% rename from spotpy/examples/spot_setup_rosenbrock.py rename to src/spotpy/examples/spot_setup_rosenbrock.py diff --git a/spotpy/examples/spot_setup_standardnormal.py b/src/spotpy/examples/spot_setup_standardnormal.py similarity index 100% rename from spotpy/examples/spot_setup_standardnormal.py rename to src/spotpy/examples/spot_setup_standardnormal.py diff --git a/spotpy/gui/__init__.py b/src/spotpy/gui/__init__.py similarity index 100% rename from spotpy/gui/__init__.py rename to src/spotpy/gui/__init__.py diff --git a/spotpy/gui/mpl.py b/src/spotpy/gui/mpl.py similarity index 100% rename from spotpy/gui/mpl.py rename to src/spotpy/gui/mpl.py diff --git a/spotpy/hydrology/__init__.py b/src/spotpy/hydrology/__init__.py similarity index 100% rename from spotpy/hydrology/__init__.py rename to src/spotpy/hydrology/__init__.py diff --git a/spotpy/hydrology/signatures.py b/src/spotpy/hydrology/signatures.py similarity index 100% rename from spotpy/hydrology/signatures.py rename to src/spotpy/hydrology/signatures.py diff --git a/spotpy/likelihoods.py b/src/spotpy/likelihoods.py similarity index 100% rename from spotpy/likelihoods.py rename to src/spotpy/likelihoods.py diff --git a/spotpy/objectivefunctions.py b/src/spotpy/objectivefunctions.py similarity index 100% rename from spotpy/objectivefunctions.py rename to src/spotpy/objectivefunctions.py diff --git a/spotpy/parallel/__init__.py b/src/spotpy/parallel/__init__.py similarity index 100% rename from spotpy/parallel/__init__.py rename to src/spotpy/parallel/__init__.py diff --git a/spotpy/parallel/mpi.py b/src/spotpy/parallel/mpi.py similarity index 100% rename from spotpy/parallel/mpi.py rename to src/spotpy/parallel/mpi.py diff --git a/spotpy/parallel/mproc.py b/src/spotpy/parallel/mproc.py similarity index 100% rename from spotpy/parallel/mproc.py rename to src/spotpy/parallel/mproc.py diff --git a/spotpy/parallel/sequential.py b/src/spotpy/parallel/sequential.py similarity index 100% rename from spotpy/parallel/sequential.py rename to src/spotpy/parallel/sequential.py diff --git a/spotpy/parallel/umproc.py b/src/spotpy/parallel/umproc.py similarity index 100% rename from spotpy/parallel/umproc.py rename to src/spotpy/parallel/umproc.py diff --git a/spotpy/parameter.py b/src/spotpy/parameter.py similarity index 100% rename from spotpy/parameter.py rename to src/spotpy/parameter.py diff --git a/spotpy/examples/3dplot.py b/tutorials/3dplot.py similarity index 100% rename from spotpy/examples/3dplot.py rename to tutorials/3dplot.py diff --git a/spotpy/examples/MyOwnDatabase.txt b/tutorials/MyOwnDatabase.txt similarity index 100% rename from spotpy/examples/MyOwnDatabase.txt rename to tutorials/MyOwnDatabase.txt diff --git a/spotpy/examples/cli_hymod.py b/tutorials/cli_hymod.py similarity index 100% rename from spotpy/examples/cli_hymod.py rename to tutorials/cli_hymod.py diff --git a/spotpy/examples/hymod_unix/__init__.py b/tutorials/dds/__init__.py similarity index 100% rename from spotpy/examples/hymod_unix/__init__.py rename to tutorials/dds/__init__.py diff --git a/spotpy/examples/dds/benchmark_dds.py b/tutorials/dds/benchmark_dds.py similarity index 100% rename from spotpy/examples/dds/benchmark_dds.py rename to tutorials/dds/benchmark_dds.py diff --git a/spotpy/examples/dds/dds_parallel.py b/tutorials/dds/dds_parallel.py similarity index 100% rename from spotpy/examples/dds/dds_parallel.py rename to tutorials/dds/dds_parallel.py diff --git a/spotpy/examples/dds/dds_parallel_data.json b/tutorials/dds/dds_parallel_data.json similarity index 100% rename from spotpy/examples/dds/dds_parallel_data.json rename to tutorials/dds/dds_parallel_data.json diff --git a/spotpy/examples/dds/dds_parallel_plot.py b/tutorials/dds/dds_parallel_plot.py similarity index 100% rename from spotpy/examples/dds/dds_parallel_plot.py rename to tutorials/dds/dds_parallel_plot.py diff --git a/spotpy/examples/dds/dds_parallel_run.py b/tutorials/dds/dds_parallel_run.py similarity index 100% rename from spotpy/examples/dds/dds_parallel_run.py rename to tutorials/dds/dds_parallel_run.py diff --git a/spotpy/examples/getting_started.py b/tutorials/getting_started.py similarity index 100% rename from spotpy/examples/getting_started.py rename to tutorials/getting_started.py diff --git a/spotpy/examples/gui_hymod.py b/tutorials/gui_hymod.py similarity index 100% rename from spotpy/examples/gui_hymod.py rename to tutorials/gui_hymod.py diff --git a/spotpy/examples/plot_nsgaii_tutorial.py b/tutorials/plot_nsgaii_tutorial.py similarity index 100% rename from spotpy/examples/plot_nsgaii_tutorial.py rename to tutorials/plot_nsgaii_tutorial.py From fdd8b8c646f47b78f6c1b269bbe622e6dc35932c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 13:59:02 +0200 Subject: [PATCH 06/34] remove version file --- src/spotpy/_version.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 src/spotpy/_version.py diff --git a/src/spotpy/_version.py b/src/spotpy/_version.py deleted file mode 100644 index d00926d8..00000000 --- a/src/spotpy/_version.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = '1.5.17.dev5' \ No newline at end of file From 4a4920e613304e8351eb7f396b643da55847ce2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 14:01:24 +0200 Subject: [PATCH 07/34] re-include .csv files --- .gitignore | 2 +- .../examples/cmf_data/driver_data_site24.csv | 26312 ++++++++++++++++ .../examples/cmf_data/fulda_climate.csv | 3655 +++ .../examples/cmf_data/soilmoisture_site24.csv | 26312 ++++++++++++++++ src/spotpy/examples/hymod_exe/hymod_input.csv | 1828 ++ .../examples/hymod_python/hymod_input.csv | 1828 ++ tutorials/NSGA2.csv | 511 + 7 files changed, 60447 insertions(+), 1 deletion(-) create mode 100644 src/spotpy/examples/cmf_data/driver_data_site24.csv create mode 100644 src/spotpy/examples/cmf_data/fulda_climate.csv create mode 100644 src/spotpy/examples/cmf_data/soilmoisture_site24.csv create mode 100644 src/spotpy/examples/hymod_exe/hymod_input.csv create mode 100644 src/spotpy/examples/hymod_python/hymod_input.csv create mode 100644 tutorials/NSGA2.csv diff --git a/.gitignore b/.gitignore index 919a74ce..1a7431be 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,7 @@ __pycache__/ #other files *.out *.png -*.csv +./*.csv site/* #mkdocs.yml diff --git a/src/spotpy/examples/cmf_data/driver_data_site24.csv b/src/spotpy/examples/cmf_data/driver_data_site24.csv new file mode 100644 index 00000000..b8f81149 --- /dev/null +++ b/src/spotpy/examples/cmf_data/driver_data_site24.csv @@ -0,0 +1,26312 @@ +time,rain_mmday,airpressure_hPa,solarrad_Wm2,relhum_perc,airtemp_degC,windspeed_ms,gwhead_m +# +# A dataset containing data from a weather station at the Schwingbach near Rechtenbach, Hesse, Germany +# The data is cortesey of the Chair of Landscape, Water and Biogeochemical Cycles, Justus-Liebig-University Gießen +# https://www.uni-giessen.de/faculties/f09/institutes/ilr/hydro +# This dataset can be used for any purpose with proper references in publications +# The data is provided AS IS with no guarantee of correctness +# +2014-01-01 00:00:00,0.0,1007.89,0.0,93.38333333,0.814583333,2.619416667,238.033129 +2014-01-01 01:00:00,0.0,1007.6833330000001,0.0,93.20833333,0.711833333,2.4714166669999997,238.03279999999998 +2014-01-01 02:00:00,0.0,1007.835,0.0,96.175,0.8290833329999999,2.063583333,238.03185999999997 +2014-01-01 03:00:00,0.0,1007.583333,0.0,97.93333333,1.038666667,1.585,238.03123333333335 +2014-01-01 04:00:00,0.0,1007.633333,0.0,98.175,1.233666667,1.1610833329999999,238.030591 +2014-01-01 05:00:00,7.4303490000000005,1007.768333,0.0,99.325,1.342916667,0.44175,238.029933 +2014-01-01 06:00:00,9.72714384,1008.093333,0.0,100.0,1.203416667,0.38508333299999997,238.030262 +2014-01-01 07:00:00,0.0,1008.25,0.0,100.0,1.201916667,0.5063333329999999,238.02863266666665 +2014-01-01 08:00:00,0.0,1008.533333,0.9466916670000001,100.0,1.33925,0.432833333,238.028006 +2014-01-01 09:00:00,0.0,1008.655,23.31233333,100.0,2.02575,0.307,238.0276926666667 +2014-01-01 10:00:00,0.0,1008.653333,47.53175,100.0,3.240583333,1.01425,238.02737933333336 +2014-01-01 11:00:00,0.0,1008.421667,57.31483333,99.98333333,4.778416667,1.764666667,238.02673700000003 +2014-01-01 12:00:00,0.0,1007.721667,117.77325,93.56666667,5.675333332999999,2.769166667,238.02706600000002 +2014-01-01 13:00:00,0.0,1007.158333,129.1931667,79.5175,6.307583332999999,1.9751666669999999,238.028006 +2014-01-01 14:00:00,0.0,1006.53,54.94475,79.76083333,5.722583332999999,2.1278333330000003,238.02769266666667 +2014-01-01 15:00:00,0.0,1006.138333,27.01708333,86.99,5.191,1.90575,238.02673700000003 +2014-01-01 16:00:00,0.0,1005.483333,3.905183333,93.85833333,4.637166667,2.4493333330000002,238.02706600000002 +2014-01-01 17:00:00,0.0,1005.071667,0.0,93.9,4.887416667,2.665333333,238.026079 +2014-01-01 18:00:00,0.0,1004.1,0.0,92.55,5.084916667,3.0068333330000003,238.02575000000002 +2014-01-01 19:00:00,0.0,1003.345,0.0,91.34166667,4.697833333,2.440833333,238.02640800000003 +2014-01-01 20:00:00,0.0,1002.525,0.0,89.575,5.008666667,2.7689999999999997,238.02575000000002 +2014-01-01 21:00:00,0.0,1002.228333,0.0,87.55,5.813083333,4.369083333,238.02640800000003 +2014-01-01 22:00:00,5.603779007999999,1001.565,0.0,88.43333333,5.5615,4.518,238.02673700000003 +2014-01-01 23:00:00,0.0,1000.94,0.0,89.28333333,5.403083333,4.074833333,238.02640800000003 +2014-02-01 00:00:00,7.9645746,1000.323333,0.0,92.44166667,5.186833333,3.51225,238.0677895 +2014-02-01 01:00:00,0.0,999.3466667000001,0.0,89.36666667,5.06025,3.333583333,238.0672819 +2014-02-01 02:00:00,0.0,998.9916667000001,0.0,87.11666667,5.255166667,2.6860000000000004,238.0670281 +2014-02-01 03:00:00,0.0,998.8233332999998,0.0,83.5,5.660583333,2.1125833330000003,238.0670281 +2014-02-01 04:00:00,7.546049568,998.0033332999999,0.0,85.3,5.861916667000001,3.239833333,238.06728189999998 +2014-02-01 05:00:00,3.845696208,997.39,0.0,86.56666667,5.966416667000001,3.3631666669999998,238.0670281 +2014-02-01 06:00:00,11.46033955,997.2033332999998,0.0,91.70833333,6.2423333329999995,3.34025,238.06678639999998 +2014-02-01 07:00:00,3.82098684,997.15,0.0,93.325,6.904333332999999,4.009333333,238.0665447 +2014-02-01 08:00:00,0.0,997.38,1.65655,93.20833333,6.893583333,3.475666667,238.06630300000003 +2014-02-01 09:00:00,0.0,997.5266667000001,9.861308333,94.09166667,7.047000000000001,4.144666667,238.06630300000003 +2014-02-01 10:00:00,0.0,997.7366667000001,33.21033333,93.54166667,7.4335,4.155416667,238.06556580000003 +2014-02-01 11:00:00,0.0,997.85,54.13683333,91.59166667,7.720166667000001,3.9635,238.0643089 +2014-02-01 12:00:00,0.0,997.7916667000002,68.96575,90.60833333,8.654166667,4.226333333,238.06507030000003 +2014-02-01 13:00:00,0.0,997.7166667000001,76.28191667,89.99166667,8.890833333,3.8018333330000003,238.06456269999998 +2014-02-01 14:00:00,0.0,998.1616667000002,36.48341667,88.81666667,9.735833332999999,2.503833333,238.06380131666666 +2014-02-01 15:00:00,0.0,999.1416667000001,32.79616667,86.54166667,9.466666667,2.827,238.06380131666666 +2014-02-01 16:00:00,0.0,999.97,6.251758333,87.95833333,8.603166667,1.865083333,238.06380131666666 +2014-02-01 17:00:00,0.0,1000.995,0.019716667,88.06666667,7.63,1.55725,238.0648165 +2014-02-01 18:00:00,0.0,1001.915,0.0,87.7,6.3201666670000005,0.56925,238.06678639999998 +2014-02-01 19:00:00,0.0,1002.793333,0.0,90.2,6.801916667,1.3831666669999998,238.0677895 +2014-02-01 20:00:00,0.0,1003.165,0.0,91.70833333,5.3463333330000005,0.755,238.06879260000002 +2014-02-01 21:00:00,0.0,1003.79,0.0,93.38333333,2.5556666669999997,0.2905,238.06975939999998 +2014-02-01 22:00:00,0.0,1004.1916669999999,0.0,96.59166667,0.735583333,0.18958333300000002,238.07025489999998 +2014-02-01 23:00:00,0.0,1004.491667,0.0,99.56666667,1.8759166669999998,0.781416667,238.07000109999998 +2014-03-01 00:00:00,0.0,1004.533333,0.0,100.0,3.835583333,2.2141666669999998,238.0328026 +2014-03-01 01:00:00,0.0,1004.296667,0.0,100.0,2.711083333,1.3176666670000001,238.0327905 +2014-03-01 02:00:00,0.0,1004.3116669999999,0.0,100.0,1.4069999999999998,0.374666667,238.03254879999997 +2014-03-01 03:00:00,0.0,1004.223333,0.0,100.0,3.0811666669999997,1.2046666670000001,238.03204119999998 +2014-03-01 04:00:00,0.0,1003.975,0.0,96.425,4.828166667,1.7435,238.03229499999998 +2014-03-01 05:00:00,0.0,1003.781667,0.0,99.15,2.3056666669999997,0.400916667,238.0320412 +2014-03-01 06:00:00,0.0,1003.271667,0.0,99.84166667,4.098666667,2.772916667,238.0315336 +2014-03-01 07:00:00,0.0,1003.151667,0.0,96.40833333,5.419,2.93925,238.0312798 +2014-03-01 08:00:00,0.0,1002.8,3.135475,99.5,5.43575,1.518083333,238.0310260166667 +2014-03-01 09:00:00,3.158508144,1002.521667,21.57575,86.66666667,6.494333332999999,2.1669166669999997,238.03051845000002 +2014-03-01 10:00:00,6.414283056,1002.783333,22.56041667,89.25,6.5405,2.979166667,238.03026466666668 +2014-03-01 11:00:00,0.0,1002.991667,16.0125,86.55833333,7.468999999999999,3.5175,238.0310260166667 +2014-03-01 12:00:00,3.22332792,1002.76,15.65841667,87.025,8.038666667000001,1.9769166669999998,238.0312798 +2014-03-01 13:00:00,0.0,1002.935,15.9145,88.875,9.774166667000001,2.668333333,238.03077223333335 +2014-03-01 14:00:00,0.0,1002.825,63.16508333,88.63333333,9.148333333,2.55225,238.0310260166667 +2014-03-01 15:00:00,0.0,1002.8133330000001,34.57183333,87.70833333,8.13575,2.3689166669999997,238.03001088333335 +2014-03-01 16:00:00,0.0,1002.911667,4.220475,87.175,8.02375,3.148416667,238.0310260166667 +2014-03-01 17:00:00,0.0,1002.623333,0.019716667,88.325,7.409416667,1.9135,238.0297571 +2014-03-01 18:00:00,0.0,1002.831667,0.0,87.23333333,9.715333333,2.35,238.03051844999996 +2014-03-01 19:00:00,0.0,1003.245,0.0,84.41666667,9.885,2.525666667,238.03026466666668 +2014-03-01 20:00:00,0.0,1003.325,0.0,83.39166667,9.219166667,3.4595833330000003,238.03001088333335 +2014-03-01 21:00:00,0.0,1003.853333,0.0,79.98916667,11.16833333,3.290916667,238.0297571 +2014-03-01 22:00:00,0.0,1004.175,0.0,81.07583333,10.4475,2.5718333330000003,238.02927366666668 +2014-03-01 23:00:00,0.0,1005.046667,0.0,74.47083333,10.16666667,2.763583333,238.02879023333335 +2014-04-01 00:00:00,0.0,1005.951667,0.0,71.52416667,9.639166667000001,3.155833333,237.95717280000005 +2014-04-01 01:00:00,0.0,1006.761667,0.0,72.52833333,8.874166667,2.664083333,237.95752370000002 +2014-04-01 02:00:00,0.0,1007.3166669999999,0.0,76.9225,8.04975,1.65025,237.95752370000002 +2014-04-01 03:00:00,0.0,1007.61,0.0,82.41666667,6.114833332999999,1.759916667,237.95752370000002 +2014-04-01 04:00:00,0.0,1007.488333,0.0,91.69166667,5.33725,1.331916667,237.95717280000005 +2014-04-01 05:00:00,0.0,1006.976667,0.0,97.34166667,3.5245,0.722916667,237.9568386166667 +2014-04-01 06:00:00,0.0,1006.086667,0.0,92.5,3.8545,1.7788333330000001,237.95717280000005 +2014-04-01 07:00:00,0.0,1005.671667,0.0,99.05,4.092666667,2.599166667,237.9568386166667 +2014-04-01 08:00:00,0.0,1005.453333,2.446033333,100.0,4.119083333,2.3304166669999997,237.95752370000002 +2014-04-01 09:00:00,0.0,1004.96,14.9905,100.0,4.7700833330000005,2.45,237.95927819999997 +2014-04-01 10:00:00,0.0,1003.968333,35.5215,98.03333333,5.54275,1.134333333,237.9578746 +2014-04-01 11:00:00,0.0,1003.051667,44.8665,92.94166667,5.720416667,0.81275,237.9585764 +2014-04-01 12:00:00,0.0,1001.798333,45.33725,91.075,5.872333332999999,0.62025,237.9585764 +2014-04-01 13:00:00,0.0,999.965,74.81075,87.30833333,7.047333332999999,0.481916667,237.95927819999997 +2014-04-01 14:00:00,0.0,998.6316667000001,30.39166667,88.95,7.05075,0.5581666670000001,237.95927819999997 +2014-04-01 15:00:00,0.0,997.495,13.03563333,89.49166667,6.7110833329999995,0.9674166670000001,237.9589273 +2014-04-01 16:00:00,0.0,996.305,1.9915583330000002,91.89166667,5.82625,0.591333333,237.95927819999997 +2014-04-01 17:00:00,0.0,995.6166667000001,0.0,97.3,5.111833333,0.18858333300000002,237.9585764 +2014-04-01 18:00:00,0.0,995.225,0.0,98.78333333,5.291166667,0.776333333,237.9585764 +2014-04-01 19:00:00,0.0,994.5766667000001,0.0,96.31666667,5.917333332999999,0.7314166670000001,237.95717280000005 +2014-04-01 20:00:00,0.0,993.9583332999998,0.0,98.1,5.330166667,0.82875,237.95717280000005 +2014-04-01 21:00:00,0.0,993.6916667000002,0.0,99.98333333,4.288083333,0.335083333,237.95717280000005 +2014-04-01 22:00:00,0.0,993.88,0.0,99.71666667,5.02025,0.6005,237.9568386166667 +2014-04-01 23:00:00,0.0,993.775,0.0,99.91666667,3.745333333,0.39833333299999996,237.95683861666672 +2014-05-01 00:00:00,0.0,993.8516667000001,0.0,100.0,2.737916667,0.39175,237.89297551666667 +2014-05-01 01:00:00,0.0,994.0233332999999,0.0,100.0,4.1681666669999995,1.044166667,237.89297551666667 +2014-05-01 02:00:00,0.0,994.3966667000001,0.0,100.0,5.110916667,0.8785,237.89197296666669 +2014-05-01 03:00:00,0.0,994.6166667000001,0.0,100.0,5.458416667000001,1.480833333,237.89297551666667 +2014-05-01 04:00:00,18.14861201,994.925,0.0,100.0,5.564916667,0.70225,237.89163878333332 +2014-05-01 05:00:00,25.00303543,995.905,0.0,99.64166667,6.039833333,1.6759166669999999,237.8913046 +2014-05-01 06:00:00,11.83761881,997.3983332999999,0.0,99.35833333,6.298916667,1.7125,237.89197296666669 +2014-05-01 07:00:00,0.0,998.4216667000002,0.0,98.90833333,6.172916667000001,1.9065833330000002,237.8913046 +2014-05-01 08:00:00,0.0,1000.215,2.99775,97.44166667,6.3128333329999995,1.8786666669999998,237.889901 +2014-05-01 09:00:00,0.0,1001.576667,28.10266667,94.94166667,5.936666667000001,1.89275,237.88919919999998 +2014-05-01 10:00:00,0.0,1002.72,32.10725,94.08333333,5.6985,1.5519999999999998,237.88919919999998 +2014-05-01 11:00:00,0.0,1003.678333,110.89108329999999,92.51666667,6.690166667000001,1.888916667,237.88919919999998 +2014-05-01 12:00:00,0.0,1003.861667,54.60641667,89.075,7.410083332999999,1.585166667,237.8884974 +2014-05-01 13:00:00,0.0,1004.5,85.04008333,84.36333333,6.955083332999999,1.1385,237.8870938 +2014-05-01 14:00:00,0.0,1005.243333,88.04133333,77.465,8.027833333,1.32225,237.8870938 +2014-05-01 15:00:00,0.0,1006.338333,29.46358333,76.81666667,7.042833333,1.4850833330000002,237.88609125000002 +2014-05-01 16:00:00,0.0,1007.221667,5.088008333,82.2575,6.112833332999999,1.297,237.8850887 +2014-05-01 17:00:00,0.0,1007.8166669999999,0.019716667,95.83333333,3.3715833330000002,0.46833333299999996,237.8836851 +2014-05-01 18:00:00,0.0,1008.351667,0.0,91.64166667,4.474083333,0.9975,237.88131238333327 +2014-05-01 19:00:00,0.0,1008.056667,0.0,86.19166667,3.826333333,1.946833333,237.88097819999993 +2014-05-01 20:00:00,0.0,1007.81,0.0,84.73333333,4.11675,2.062833333,237.88097819999993 +2014-05-01 21:00:00,0.0,1008.006667,0.0,90.21666667,3.0133333330000003,1.537166667,237.88097819999993 +2014-05-01 22:00:00,0.0,1007.993333,0.0,98.125,1.8246666669999998,1.26525,237.88097819999993 +2014-05-01 23:00:00,0.0,1007.996667,0.0,99.00833333,1.4880000000000002,1.8145,237.88027639999996 +2014-06-01 00:00:00,0.0,1007.481667,0.0,100.0,1.099333333,2.1728333330000003,237.75114669999996 +2014-06-01 01:00:00,0.0,1006.973333,0.0,100.0,0.8375,1.629583333,237.7514976 +2014-06-01 02:00:00,0.0,1006.893333,0.0,100.0,0.315166667,0.598833333,237.75325209999997 +2014-06-01 03:00:00,0.0,1006.281667,0.0,100.0,1.51275,2.104333333,237.75325209999997 +2014-06-01 04:00:00,0.0,1005.828333,0.0,100.0,1.978833333,1.9425,237.75425464999998 +2014-06-01 05:00:00,0.0,1005.913333,0.0,100.0,2.751666667,2.32175,237.75525719999996 +2014-06-01 06:00:00,3.367142496,1006.248333,0.0,99.775,2.61025,2.300416667,237.7539204666666 +2014-06-01 07:00:00,0.0,1005.871667,0.0,97.30833333,3.3031666669999997,2.380416667,237.75525719999996 +2014-06-01 08:00:00,0.0,1005.868333,3.313916667,87.03333333,4.364916667,3.1269166669999997,237.75525719999996 +2014-06-01 09:00:00,0.0,1006.06,17.31625,86.71666667,4.398916667,3.208916667,237.75323538333328 +2014-06-01 10:00:00,0.0,1006.218333,18.97175,89.24166667,4.961666667,2.541083333,237.75044489999996 +2014-06-01 11:00:00,0.0,1006.0616669999999,23.1735,89.45,5.89275,2.120666667,237.7477045666666 +2014-06-01 12:00:00,0.0,1005.7,28.91291667,88.275,6.30725,2.423166667,237.74493080000002 +2014-06-01 13:00:00,0.0,1005.731667,41.15766667,87.01666667,7.107083332999999,2.498916667,237.74359406666665 +2014-06-01 14:00:00,0.0,1005.8083330000001,33.13216667,87.49166667,7.12475,2.2285,237.74292569999997 +2014-06-01 15:00:00,0.0,1005.611667,16.70433333,87.325,6.668916667,1.4841666669999998,237.74085373333332 +2014-06-01 16:00:00,0.0,1005.948333,2.3666416669999997,88.55833333,6.59975,1.02125,237.73881519999995 +2014-06-01 17:00:00,0.0,1005.583333,0.0,91.46666667,6.720833333,0.648416667,237.73881519999995 +2014-06-01 18:00:00,3.279418128,1004.856667,0.0,93.84166667,7.61725,1.6453333330000002,237.7367098 +2014-06-01 19:00:00,22.96530854,1004.583333,0.0,89.225,9.044166667,3.14075,237.7367098 +2014-06-01 20:00:00,22.87688916,1005.135,0.0,90.45833333,7.596333333,0.5525,237.73846429999995 +2014-06-01 21:00:00,25.27324438,1005.185,0.0,93.79166667,7.6159166670000005,1.174916667,237.73881519999995 +2014-06-01 22:00:00,55.13851154,1004.953333,0.0,94.15833333,7.511166667,0.919666667,237.74015193333332 +2014-06-01 23:00:00,17.77574448,1004.986667,0.0,93.46666667,8.48425,1.45075,237.74082030000002 +2014-07-01 00:00:00,17.03288537,1005.568333,0.0,94.83333333,9.623333333,1.4683333330000001,237.65429939999999 +2014-07-01 01:00:00,13.32338462,1006.346667,0.0,95.025,9.62,2.506333333,237.65597031666667 +2014-07-01 02:00:00,0.0,1006.703333,0.0,93.98333333,9.449166667,1.9610833330000002,237.6570063 +2014-07-01 03:00:00,0.0,1007.866667,0.0,91.96666667,9.106666667,1.39225,237.6591117 +2014-07-01 04:00:00,0.0,1008.318333,0.0,94.275,7.154666667000001,1.15425,237.66051530000001 +2014-07-01 05:00:00,0.0,1008.86,0.0,96.84166667,6.4035,1.1125,237.66118366666663 +2014-07-01 06:00:00,0.0,1009.513333,0.0,89.69166667,8.091666667,1.6725,237.6611836666667 +2014-07-01 07:00:00,0.0,1010.091667,0.0,90.44166667,7.857333333,1.37025,237.66252039999998 +2014-07-01 08:00:00,0.0,1010.225,3.470308333,88.075,7.414166667000001,1.47625,237.66287129999998 +2014-07-01 09:00:00,0.0,1010.928333,15.65783333,86.19166667,6.688916667000001,2.045,237.66116694999997 +2014-07-01 10:00:00,0.0,1011.248333,62.03808333,82.5675,8.954333333,2.027333333,237.65495105000002 +2014-07-01 11:00:00,0.0,1011.368333,104.1133333,78.99416667,11.64916667,2.035333333,237.64743185 +2014-07-01 12:00:00,0.0,1011.025,149.8875,77.4325,12.2575,2.518583333,237.64639586666667 +2014-07-01 13:00:00,0.0,1010.605,152.425,75.465,12.72583333,2.122083333,237.6412493833333 +2014-07-01 14:00:00,0.0,1010.468333,116.10725,73.26083333,12.72666667,1.98425,237.6364204 +2014-07-01 15:00:00,0.0,1010.573333,36.11066667,74.14833333,12.5075,1.758833333,237.6329783333333 +2014-07-01 16:00:00,0.0,1010.7,5.699516667,76.18583333,11.99083333,1.81625,237.6309398 +2014-07-01 17:00:00,0.0,1010.676667,0.039433333,77.54083333,10.51083333,1.678333333,237.6288678333333 +2014-07-01 18:00:00,0.0,1010.833333,0.0,80.87083333,9.726666667,2.544,237.62753109999997 +2014-07-01 19:00:00,0.0,1010.886667,0.0,83.825,9.565833332999999,1.17425,237.6257766 +2014-07-01 20:00:00,2.495569704,1011.108333,0.0,84.475,9.600833332999999,0.789416667,237.62718019999997 +2014-07-01 21:00:00,0.0,1010.8133330000001,0.0,86.4,9.814166667,0.639416667,237.62955291666663 +2014-07-01 22:00:00,0.0,1011.056667,0.0,86.475,11.1025,1.9845833330000002,237.63197578333327 +2014-07-01 23:00:00,0.0,1011.143333,0.0,89.375,10.98166667,1.7250833330000002,237.63264414999995 +2014-08-01 00:00:00,0.0,1010.995,0.0,89.98333333,10.73583333,1.4100833330000002,237.6426362666667 +2014-08-01 01:00:00,0.0,1010.856667,0.0,90.125,9.985,1.162333333,237.64056429999997 +2014-08-01 02:00:00,0.0,1011.47,0.0,90.68333333,9.986666667,0.98,237.63916073333328 +2014-08-01 03:00:00,0.0,1011.591667,0.0,89.76666667,10.77666667,0.893333333,237.63742299999998 +2014-08-01 04:00:00,6.028506264,1011.511667,0.0,92.975,11.025,1.96125,237.63468266666663 +2014-08-01 05:00:00,0.0,1011.101667,0.0,94.06666667,10.5825,2.3255,237.63164159999997 +2014-08-01 06:00:00,0.0,1011.585,0.0,91.40833333,10.75333333,2.741333333,237.6295362 +2014-08-01 07:00:00,0.0,1012.33,0.0,88.29166667,11.0525,2.604166667,237.6295362 +2014-08-01 08:00:00,0.0,1013.403333,3.609258333,85.45833333,10.6625,2.481416667,237.63023799999996 +2014-08-01 09:00:00,0.0,1014.638333,24.53266667,84.075,10.87833333,2.163166667,237.6299038166666 +2014-08-01 10:00:00,0.0,1015.181667,63.04783333,82.38333333,11.50666667,2.464666667,237.67202468 +2014-08-01 11:00:00,0.0,1015.495,77.68425,80.14333333,12.0475,2.70375,237.6680177833333 +2014-08-01 12:00:00,0.0,1015.081667,143.35416669999998,76.84333333,12.51833333,1.8720833330000002,237.65428268333332 +2014-08-01 13:00:00,0.0,1015.148333,77.16916667,74.93666667,12.34166667,2.316333333,237.64398971666662 +2014-08-01 14:00:00,0.0,1014.931667,86.5795,73.89833333,12.54583333,2.892416667,237.63540115 +2014-08-01 15:00:00,0.0,1014.858333,40.56733333,77.305,11.09833333,1.549916667,237.62784856666664 +2014-08-01 16:00:00,0.0,1014.983333,8.519175,82.89583333,9.900833333,1.4169999999999998,237.62338716666667 +2014-08-01 17:00:00,0.0,1014.658333,0.039433333,90.18333333,8.974333332999999,1.1785,237.61785635 +2014-08-01 18:00:00,0.0,1014.651667,0.0,97.65833333,5.858333332999999,0.2815,237.61376256666665 +2014-08-01 19:00:00,0.0,1014.658333,0.0,99.775,4.0575,0.33475,237.60998625 +2014-08-01 20:00:00,0.0,1014.65,0.0,100.0,3.026833333,0.21575,237.60758010000004 +2014-08-01 21:00:00,0.0,1014.273333,0.0,100.0,2.5365833330000003,0.24375,237.60415468333335 +2014-08-01 22:00:00,0.0,1013.6883330000001,0.0,100.0,2.29525,0.239583333,237.60101329999998 +2014-08-01 23:00:00,0.0,1013.315,0.0,100.0,2.5045833330000002,0.317,237.5982897166667 +2014-09-01 00:00:00,0.0,1012.395,0.0,100.0,2.248333333,0.19775,237.87258006666664 +2014-09-01 01:00:00,12.138738,1011.758333,0.0,100.0,3.2785833330000003,0.404416667,237.87117650000002 +2014-09-01 02:00:00,12.12921185,1010.931667,0.0,100.0,4.428916667,0.160083333,237.8708256 +2014-09-01 03:00:00,2.658794184,1010.076667,0.0,100.0,5.384166667000001,0.53325,237.87187830000002 +2014-09-01 04:00:00,0.0,1009.14,0.0,100.0,6.2095,0.576916667,237.87152740000002 +2014-09-01 05:00:00,0.0,1008.218333,0.0,100.0,6.1125,0.39383333299999995,237.86977290000002 +2014-09-01 06:00:00,0.0,1007.076667,0.0,100.0,5.465583333,0.238916667,237.86943871666668 +2014-09-01 07:00:00,0.0,1006.445,0.0,97.41666667,5.95775,0.5615,237.86977290000002 +2014-09-01 08:00:00,0.0,1006.116667,2.3862416669999997,98.95833333,6.5495,1.6730833330000001,237.86943871666668 +2014-09-01 09:00:00,0.0,1005.848333,22.561,90.26666667,6.74075,1.6604166669999998,237.8674169 +2014-09-01 10:00:00,0.0,1005.723333,51.21666667,83.675,10.10833333,1.50825,237.8656624 +2014-09-01 11:00:00,0.0,1005.108333,96.73416667,81.53,11.65,2.09925,237.8660133 +2014-09-01 12:00:00,3.7128867839999997,1004.386667,83.006,80.55916667,11.77416667,2.4475833330000003,237.86501075000004 +2014-09-01 13:00:00,0.0,1003.338333,46.73608333,81.26666667,11.72666667,2.219083333,237.86330640000003 +2014-09-01 14:00:00,0.0,1002.203333,47.66358333,81.59166667,11.80833333,1.977916667,237.8615519 +2014-09-01 15:00:00,28.27923403,1001.988333,7.1189416670000005,86.70833333,11.25416667,2.1534166669999997,237.8612177166667 +2014-09-01 16:00:00,55.35760989999999,1002.64,0.9268,92.775,9.559166667000001,2.6515,237.85954680000006 +2014-09-01 17:00:00,12.61907494,1002.451667,0.0,92.80833333,8.8625,2.694583333,237.85919590000003 +2014-09-01 18:00:00,3.743926608,1002.375,0.0,89.725,8.995833333,3.536833333,237.85919590000006 +2014-09-01 19:00:00,0.0,1002.458333,0.0,86.85833333,8.925833333,3.660916667,237.8581432 +2014-09-01 20:00:00,0.0,1003.381667,0.0,89.88333333,8.664166667,3.778916667,237.85643885 +2014-09-01 21:00:00,0.0,1005.395,0.0,84.475,7.626166667000001,3.324833333,237.85543629999998 +2014-09-01 22:00:00,0.0,1006.403333,0.0,80.34916667,6.863916667000001,3.0154166669999998,237.85543629999998 +2014-09-01 23:00:00,0.0,1007.076667,0.0,78.0275,6.40775,2.8305,237.85438359999998 +2014-10-01 00:00:00,0.0,1007.435,0.0,76.0,6.2664166670000006,2.470916667, +2014-10-01 01:00:00,0.0,1007.851667,0.0,78.02333333,6.081833333,2.50675, +2014-10-01 02:00:00,0.0,1008.468333,0.0,81.25833333,5.562583332999999,2.08575, +2014-10-01 03:00:00,0.0,1009.128333,0.0,85.45,5.35275,2.02325, +2014-10-01 04:00:00,0.0,1009.775,0.0,88.35,5.067833333,2.1141666669999997, +2014-10-01 05:00:00,0.0,1010.121667,0.0,89.14166667,4.703916667,1.6334166669999999, +2014-10-01 06:00:00,0.0,1010.736667,0.0,85.525,5.080083333,2.288583333, +2014-10-01 07:00:00,0.0,1011.18,0.0,89.29166667,4.4205,1.65975, +2014-10-01 08:00:00,0.0,1011.823333,4.358375,91.53333333,3.378833333,0.973, +2014-10-01 09:00:00,0.0,1012.325,15.02783333,91.625,4.3495,0.8295, +2014-10-01 10:00:00,0.0,1012.993333,68.86016667,88.09166667,5.571666667000001,2.023416667, +2014-10-01 11:00:00,0.0,1013.215,112.60666670000002,86.04166667,6.924666667,2.3176666669999997, +2014-10-01 12:00:00,0.0,1012.931667,186.5266667,81.55833333,7.630583333,2.789916667, +2014-10-01 13:00:00,0.0,1012.543333,106.76575,79.015,8.0205,2.597583333, +2014-10-01 14:00:00,0.0,1012.305,84.0735,77.97333333,7.667916667,2.616916667, +2014-10-01 15:00:00,0.0,1012.601667,53.75416667,77.40083333,7.511333333,1.728833333, +2014-10-01 16:00:00,0.0,1012.6916669999999,10.07690833,81.10916667,6.904083332999999,1.774666667, +2014-10-01 17:00:00,0.0,1012.943333,0.1183,86.45833333,5.30525,1.3113333329999999, +2014-10-01 18:00:00,0.0,1012.918333,0.0,89.66666667,2.9594166669999997,0.485333333, +2014-10-01 19:00:00,0.0,1013.123333,0.0,88.59166667,0.977,0.291916667, +2014-10-01 20:00:00,0.0,1013.296667,0.0,92.19166667,1.311166667,0.674, +2014-10-01 21:00:00,0.0,1013.466667,0.0,98.275,0.333583333,0.28425, +2014-10-01 22:00:00,0.0,1013.395,0.0,97.65833333,0.171166667,0.1355, +2014-10-01 23:00:00,0.0,1013.228333,0.0,94.71666667,-0.15358333300000002,0.13, +2014-11-01 00:00:00,0.0,1013.165,0.0,99.16666667,-0.5885,0.22475,237.9584025 +2014-11-01 01:00:00,0.0,1012.673333,0.0,100.0,-1.011583333,0.21741666699999998,237.95735249999998 +2014-11-01 02:00:00,0.0,1012.5616669999999,0.0,100.0,-1.688083333,0.1645,237.95805249999998 +2014-11-01 03:00:00,0.0,1012.396667,0.0,100.0,-2.133083333,0.1025,237.95875249999997 +2014-11-01 04:00:00,0.0,1012.173333,0.0,100.0,-2.417166667,0.084,237.95875249999997 +2014-11-01 05:00:00,0.0,1011.913333,0.0,100.0,-2.317416667,0.109083333,237.95875249999997 +2014-11-01 06:00:00,0.0,1011.623333,0.0,100.0,-2.533583333,0.1055,237.95875249999997 +2014-11-01 07:00:00,0.0,1011.511667,0.0,100.0,-1.588583333,0.21983333300000002,237.95875249999997 +2014-11-01 08:00:00,0.0,1011.708333,2.998741667,100.0,-1.2125,0.3595,237.95975249999995 +2014-11-01 09:00:00,0.0,1011.743333,32.5675,100.0,-0.5668333329999999,0.272166667,237.95941916666666 +2014-11-01 10:00:00,0.0,1012.035,43.11883333,100.0,-0.011333333000000001,0.139333333,237.96008583333332 +2014-11-01 11:00:00,2.458446384,1012.166667,111.4510833,100.0,0.737833333,0.44725,237.96075249999998 +2014-11-01 12:00:00,0.0,1012.013333,103.2733333,100.0,1.8285,0.856833333,237.9597525 +2014-11-01 13:00:00,0.0,1011.275,83.09583333,95.625,2.8445,1.025416667,237.96041916666664 +2014-11-01 14:00:00,0.0,1011.013333,101.1529167,85.70833333,4.64725,0.82625,237.95941916666663 +2014-11-01 15:00:00,0.0,1010.6916669999999,66.72633333,84.08333333,5.66025,0.9288333329999999,237.95875249999997 +2014-11-01 16:00:00,0.0,1010.595,10.25523333,85.76666667,7.1479166670000005,1.793166667,237.95840249999995 +2014-11-01 17:00:00,6.11515824,1012.213333,0.0,90.275,6.858916667000001,1.899083333,237.95875249999997 +2014-11-01 18:00:00,0.0,1013.513333,0.0,89.55,6.165583333,1.694166667,237.95908583333332 +2014-11-01 19:00:00,0.0,1014.77,0.0,84.85,5.638333332999999,1.7111666669999999,237.96008583333332 +2014-11-01 20:00:00,0.0,1016.081667,0.0,85.06666667,4.822916667,1.344916667,237.96041916666664 +2014-11-01 21:00:00,0.0,1016.806667,0.0,87.24166667,4.119083333,1.18875,237.9604191666666 +2014-11-01 22:00:00,0.0,1017.723333,0.0,91.68333333,3.3885,1.576583333,237.96075249999998 +2014-11-01 23:00:00,0.0,1018.368333,0.0,92.43333333,3.531916667,1.196083333,237.96075249999998 +2014-12-01 00:00:00,0.0,1018.868333,0.0,94.63333333,3.2319999999999998,1.4373333330000002,237.8440025 +2014-12-01 01:00:00,0.0,1019.065,0.0,96.70833333,2.020333333,0.4015,237.8440025 +2014-12-01 02:00:00,0.0,1019.675,0.0,96.53333333,1.49125,0.46625,237.8447025 +2014-12-01 03:00:00,0.0,1019.951667,0.0,95.6,1.88575,0.6336666670000001,237.84470250000004 +2014-12-01 04:00:00,0.0,1020.193333,0.0,95.525,0.9195,0.191083333,237.84505249999998 +2014-12-01 05:00:00,0.0,1020.351667,0.0,95.03333333,0.845,0.5579999999999999,237.84505249999998 +2014-12-01 06:00:00,0.0,1020.398333,0.0,96.05,0.52425,0.60625,237.8454025 +2014-12-01 07:00:00,0.0,1020.52,0.0,95.25,0.241083333,0.668333333,237.8454025 +2014-12-01 08:00:00,0.0,1020.631667,6.6277166670000005,98.40833333,-0.36891666700000003,0.329333333,237.8454025 +2014-12-01 09:00:00,0.0,1020.476667,36.29383333,100.0,0.3625,0.205833333,237.8460858333333 +2014-12-01 10:00:00,0.0,1020.815,87.10683333,100.0,2.405916667,0.201916667,237.8470858333333 +2014-12-01 11:00:00,0.0,1020.8083330000001,109.8475,96.15,4.28275,0.90725,237.8460858333333 +2014-12-01 12:00:00,0.0,1020.038333,158.2641667,90.30833333,3.993833333,1.3613333330000001,237.84777249999996 +2014-12-01 13:00:00,0.0,1019.106667,178.675,88.30833333,3.79875,1.287833333,237.84741916666667 +2014-12-01 14:00:00,0.0,1018.361667,143.8558333,87.88333333,4.79875,1.038166667,237.84641916666666 +2014-12-01 15:00:00,0.0,1017.73,98.07933333,82.56666667,4.8195,1.7269999999999999,237.84741916666667 +2014-12-01 16:00:00,0.0,1017.156667,11.577475,91.13333333,2.6445,2.121,237.84775249999998 +2014-12-01 17:00:00,0.0,1016.43,0.1183,99.09166667,0.869833333,1.68425,237.84775249999998 +2014-12-01 18:00:00,0.0,1015.695,0.0,100.0,-0.77925,0.043916667,237.84775249999998 +2014-12-01 19:00:00,0.0,1015.331667,0.0,100.0,-1.614916667,0.0205,237.84776916666667 +2014-12-01 20:00:00,0.0,1014.803333,0.0,100.0,-2.369583333,0.02525,237.84810249999998 +2014-12-01 21:00:00,0.0,1013.996667,0.0,100.0,-3.0026666669999997,0.11575,237.8484525 +2014-12-01 22:00:00,0.0,1013.166667,0.0,100.0,-3.09675,0.3175,237.8488025 +2014-12-01 23:00:00,0.0,1012.798333,0.0,100.0,-2.4859166669999997,0.281583333,237.84950249999997 +2014-01-13 00:00:00,0.0,1012.121667,0.0,100.0,-2.798833333,0.42575,238.04476933333333 +2014-01-13 01:00:00,0.0,1011.431667,0.0,100.0,-2.94775,0.39391666700000005,238.044456 +2014-01-13 02:00:00,0.0,1010.888333,0.0,100.0,-1.1926666670000001,1.405,238.044456 +2014-01-13 03:00:00,0.0,1010.751667,0.0,100.0,0.1485,1.241416667,238.044127 +2014-01-13 04:00:00,0.0,1010.36,0.0,100.0,0.198916667,0.19225,238.04314 +2014-01-13 05:00:00,0.0,1009.641667,0.0,100.0,0.40425,1.9815,238.043798 +2014-01-13 06:00:00,0.0,1009.341667,0.0,100.0,0.464416667,1.8955,238.043798 +2014-01-13 07:00:00,0.0,1009.341667,0.0,100.0,0.532166667,1.7536666669999998,238.043798 +2014-01-13 08:00:00,2.52322224,1009.511667,1.4793916669999998,100.0,0.779666667,0.685083333,238.042811 +2014-01-13 09:00:00,0.0,1009.53,8.26525,100.0,0.816916667,0.558333333,238.04248199999998 +2014-01-13 10:00:00,0.0,1009.4416669999999,25.30616667,100.0,1.218833333,0.319666667,238.04216866666664 +2014-01-13 11:00:00,0.0,1009.291667,33.49266667,100.0,1.5965,0.551583333,238.04122866666668 +2014-01-13 12:00:00,0.0,1009.021667,34.45808333,100.0,2.150833333,0.37541666700000004,238.04122866666668 +2014-01-13 13:00:00,0.0,1008.231667,47.49558333,100.0,2.6425,0.33833333299999996,238.04122866666668 +2014-01-13 14:00:00,0.0,1007.806667,52.83308333,100.0,3.29225,0.321333333,238.04248199999998 +2014-01-13 15:00:00,0.0,1007.591667,17.5525,100.0,3.5533333330000003,0.6233333329999999,238.04216866666664 +2014-01-13 16:00:00,0.0,1007.423333,2.938425,100.0,3.438,0.84025,238.040602 +2014-01-13 17:00:00,0.0,1007.15,0.05915,100.0,3.17025,1.153916667,238.04027299999998 +2014-01-13 18:00:00,0.0,1007.018333,0.0,100.0,3.105666667,0.66075,238.039615 +2014-01-13 19:00:00,0.0,1006.94,0.0,100.0,3.0773333330000003,0.706916667,238.038628 +2014-01-13 20:00:00,0.0,1006.781667,0.0,100.0,3.026166667,0.197666667,238.03928599999998 +2014-01-13 21:00:00,0.0,1006.618333,0.0,100.0,3.11525,0.794,238.038628 +2014-01-13 22:00:00,0.0,1006.338333,0.0,100.0,3.1044166669999997,0.158,238.038628 +2014-01-13 23:00:00,0.0,1005.698333,0.0,100.0,3.123333333,0.10041666699999999,238.03895699999998 +2014-01-14 00:00:00,0.0,1005.305,0.0,100.0,3.0855,0.053416667,238.038628 +2014-01-14 01:00:00,0.0,1004.588333,0.0,100.0,3.22725,0.15808333300000002,238.038628 +2014-01-14 02:00:00,0.0,1004.125,0.0,100.0,3.295666667,0.124333333,238.038628 +2014-01-14 03:00:00,0.0,1003.823333,0.0,100.0,3.336416667,0.054416667,238.038628 +2014-01-14 04:00:00,0.0,1003.431667,0.0,100.0,3.35075,0.166833333,238.03864366666664 +2014-01-14 05:00:00,0.0,1002.983333,0.0,100.0,3.464416667,0.567083333,238.03833033333333 +2014-01-14 06:00:00,0.0,1002.525,0.0,100.0,3.453416667,1.4811666669999999,238.038628 +2014-01-14 07:00:00,0.0,1002.358333,0.0,100.0,2.939166667,1.466666667,238.038628 +2014-01-14 08:00:00,0.0,1002.208333,2.485,100.0,2.4443333330000003,0.86925,238.03706133333333 +2014-01-14 09:00:00,0.0,1002.396667,16.88225,100.0,2.299,0.526333333,238.03706133333333 +2014-01-14 10:00:00,0.0,1002.295,31.63533333,100.0,2.8490833330000003,0.637916667,238.036748 +2014-01-14 11:00:00,0.0,1002.035,47.51308333,100.0,3.375666667,1.016666667,238.03831466666668 +2014-01-14 12:00:00,0.0,1001.725,55.82033333,100.0,3.839583333,1.43275,238.03831466666668 +2014-01-14 13:00:00,0.0,1001.633333,76.93291667,100.0,4.245833333,0.91325,238.037688 +2014-01-14 14:00:00,0.0,1001.685,53.15158333,99.90833333,4.746416667,1.075583333,238.03800133333334 +2014-01-14 15:00:00,0.0,1001.951667,25.83583333,99.36666667,4.80725,0.917666667,238.036748 +2014-01-14 16:00:00,0.0,1002.1866669999999,5.994975,99.83333333,4.60725,0.45291666700000005,238.036748 +2014-01-14 17:00:00,0.0,1002.493333,0.17745,100.0,4.358666667,0.377333333,238.03608999999997 +2014-01-14 18:00:00,0.0,1002.95,0.0,100.0,3.637833333,0.069083333,238.034774 +2014-01-14 19:00:00,0.0,1003.4366669999999,0.0,100.0,3.032166667,0.441166667,238.03543200000001 +2014-01-14 20:00:00,0.0,1003.926667,0.0,100.0,2.887666667,0.205333333,238.034116 +2014-01-14 21:00:00,0.0,1004.291667,0.0,100.0,2.164333333,0.289666667,238.034445 +2014-01-14 22:00:00,0.0,1004.618333,0.0,100.0,2.500083333,0.08641666699999999,238.034445 +2014-01-14 23:00:00,0.0,1004.63,0.0,100.0,2.461583333,0.09,238.03279999999998 +2014-01-15 00:00:00,0.0,1004.7,0.0,100.0,1.0424166670000001,0.16175,238.03279999999998 +2014-01-15 01:00:00,0.0,1004.878333,0.0,100.0,0.8713333329999999,0.07641666700000001,238.03185999999997 +2014-01-15 02:00:00,0.0,1005.243333,0.0,100.0,1.5945,0.057916667000000005,238.03154666666669 +2014-01-15 03:00:00,0.0,1005.806667,0.0,99.86666667,1.906916667,0.093083333,238.03123333333335 +2014-01-15 04:00:00,0.0,1005.845,0.0,98.05,2.516666667,0.107,238.03185999999997 +2014-01-15 05:00:00,0.0,1005.916667,0.0,98.575,3.22,0.326916667,238.03092 +2014-01-15 06:00:00,0.0,1006.093333,0.0,94.39166667,3.730916667,1.7814166669999998,238.030591 +2014-01-15 07:00:00,0.0,1006.013333,0.019716667,90.775,2.9056666669999998,1.24975,238.030262 +2014-01-15 08:00:00,2.432322576,1006.236667,6.252225,96.95833333,0.5329166670000001,0.317666667,238.030262 +2014-01-15 09:00:00,0.0,1006.44,25.78041667,99.89166667,1.4166666669999999,0.175416667,238.030262 +2014-01-15 10:00:00,0.0,1006.728333,65.62791667,91.99166667,3.951666667,1.83075,238.029933 +2014-01-15 11:00:00,0.0,1006.678333,122.36583329999999,87.4,4.516666667,1.87125,238.02960399999998 +2014-01-15 12:00:00,0.0,1006.048333,154.4725,82.29166667,5.407416667000001,1.994083333,238.028946 +2014-01-15 13:00:00,0.0,1005.45,71.37491667,85.05833333,4.961083333,2.185,238.028946 +2014-01-15 14:00:00,0.0,1005.301667,33.760999999999996,87.01666667,4.686166667,1.996,238.028946 +2014-01-15 15:00:00,0.0,1005.241667,16.5865,92.39166667,3.868583333,2.521666667,238.02831933333334 +2014-01-15 16:00:00,0.0,1004.856667,8.125483333,96.26666667,3.463083333,2.383916667,238.02831933333334 +2014-01-15 17:00:00,3.514824576,1004.513333,0.078866667,98.64166667,3.26225,2.45825,238.028946 +2014-01-15 18:00:00,0.0,1004.1916669999999,0.0,97.23333333,3.283833333,3.0636666669999997,238.028006 +2014-01-15 19:00:00,0.0,1003.946667,0.0,98.69166667,3.291416667,3.1181666669999997,238.02769266666667 +2014-01-15 20:00:00,0.0,1003.531667,0.0,97.30833333,3.434416667,2.9041666669999997,238.0276926666667 +2014-01-15 21:00:00,0.0,1003.223333,0.0,96.81666667,3.648916667,2.5980000000000003,238.02737933333336 +2014-01-15 22:00:00,0.0,1002.85,0.0,97.39166667,3.5955,1.807833333,238.02831933333331 +2014-01-15 23:00:00,2.927731248,1002.398333,0.0,99.96666667,3.538583333,1.7180000000000002,238.02831933333331 +2014-01-16 00:00:00,5.858206056,1001.98,0.0,100.0,3.5205,1.87225,238.028006 +2014-01-16 01:00:00,5.252563416,1001.41,0.0,100.0,3.56175,1.1823333329999999,238.028006 +2014-01-16 02:00:00,2.59766184,1001.548333,0.0,100.0,3.693,0.81575,238.0276926666667 +2014-01-16 03:00:00,2.560228152,1001.35,0.0,100.0,3.764916667,0.763916667,238.02737933333336 +2014-01-16 04:00:00,7.753875672,1001.035,0.0,100.0,3.8218333330000003,0.850833333,238.02706600000002 +2014-01-16 05:00:00,5.263116384,1000.761667,0.0,100.0,3.883416667,0.9225,238.02706600000002 +2014-01-16 06:00:00,5.36594076,1000.385,0.0,100.0,3.97975,1.2195,238.02706600000002 +2014-01-16 07:00:00,5.329402464,1000.015,0.0,100.0,4.0575,1.22075,238.02863266666665 +2014-01-16 08:00:00,0.0,1000.126667,1.8141666669999998,100.0,4.242916667,1.636916667,238.028946 +2014-01-16 09:00:00,0.0,1000.123333,14.69189167,100.0,4.488333333,1.465416667,238.028946 +2014-01-16 10:00:00,0.0,999.8483332999999,29.10891667,100.0,4.80775,1.910833333,238.02927499999998 +2014-01-16 11:00:00,3.1004526,999.4633332999998,40.66708333,100.0,5.256333333,1.743166667,238.030591 +2014-01-16 12:00:00,0.0,998.5966667000001,40.38591667,100.0,5.3435,1.77275,238.030591 +2014-01-16 13:00:00,0.0,997.83,31.82783333,100.0,5.664333332999999,1.737333333,238.03092 +2014-01-16 14:00:00,0.0,997.32,28.98816667,99.95833333,6.03,2.08625,238.03123333333335 +2014-01-16 15:00:00,0.0,996.9483332999998,11.20058333,98.63333333,6.365333333,2.223166667,238.03154666666663 +2014-01-16 16:00:00,5.727809664,996.455,4.712458333,99.7,6.236000000000001,0.9135833329999999,238.03123333333335 +2014-01-16 17:00:00,0.0,996.4083332999999,0.019716667,98.43333333,6.037166667,0.5920000000000001,238.0324866666667 +2014-01-16 18:00:00,9.623877696000001,996.435,0.0,93.88333333,6.456416667,2.306833333,238.03279999999998 +2014-01-16 19:00:00,3.113646096,996.7016667000001,0.0,98.46666667,6.292833333,2.5783333330000002,238.033129 +2014-01-16 20:00:00,0.0,996.8666667000001,0.0,97.00833333,6.02775,1.183916667,238.033458 +2014-01-16 21:00:00,0.0,997.235,0.0,98.11666667,5.950833332999999,1.22525,238.033787 +2014-01-16 22:00:00,16.54503758,997.6983332999998,0.0,98.79166667,5.94225,1.008583333,238.035761 +2014-01-16 23:00:00,0.0,997.4316667000002,0.0,98.45833333,5.120666667,1.051416667,238.036748 +2014-01-17 00:00:00,0.0,997.325,0.0,98.34166667,3.886166667,1.2825,238.03737466666666 +2014-01-17 01:00:00,2.81877804,997.445,0.0,97.28333333,4.0680000000000005,1.9651666669999999,238.03800133333334 +2014-01-17 02:00:00,0.0,997.8666667000001,0.0,93.50833333,5.63025,2.734833333,238.03895699999998 +2014-01-17 03:00:00,0.0,998.0416667000002,0.0,93.71666667,5.84775,2.502583333,238.039944 +2014-01-17 04:00:00,0.0,997.6483332999999,0.0,93.75833333,5.599583332999999,2.0705,238.040602 +2014-01-17 05:00:00,0.0,997.5733332999998,0.0,93.85,4.592416667,1.7225,238.040602 +2014-01-17 06:00:00,0.0,997.4083332999999,0.0,92.39166667,3.4154166669999997,1.7974166669999998,238.04216866666664 +2014-01-17 07:00:00,0.0,997.52,0.0,92.46666667,2.679,0.791333333,238.04248199999998 +2014-01-17 08:00:00,0.0,997.64,2.4649333330000003,92.575,1.4603333330000001,0.43708333299999996,238.042811 +2014-01-17 09:00:00,0.0,998.0866667000001,12.16716667,90.60833333,2.63175,0.9745,238.043798 +2014-01-17 10:00:00,0.0,998.3166667000002,77.69416667,84.58333333,6.66325,1.8221666669999999,238.0447693333333 +2014-01-17 11:00:00,0.0,998.2166667000001,126.98,80.74916667,9.5575,1.7345833330000002,238.04508266666667 +2014-01-17 12:00:00,0.0,998.0233332999999,184.24,78.67416667,9.938333333,2.54775,238.04539599999998 +2014-01-17 13:00:00,0.0,997.8083332999998,177.1233333,76.18,10.315,2.6135833330000002,238.04539599999998 +2014-01-17 14:00:00,0.0,997.6516667000001,142.1875,75.4625,10.4425,2.241916667,238.04602266666666 +2014-01-17 15:00:00,0.0,997.7166667000001,93.29833333,76.52916667,9.774166667000001,2.07075,238.046665 +2014-01-17 16:00:00,0.0,997.94,17.15624167,84.225,7.365083332999999,2.67725,238.04633599999997 +2014-01-17 17:00:00,0.0,998.0666667000002,0.374616667,90.13333333,5.882416667,2.5238333330000002,238.045396 +2014-01-17 18:00:00,0.0,998.1616667000002,0.0,87.84166667,5.12275,2.5465,238.04539599999998 +2014-01-17 19:00:00,0.0,998.3816667000001,0.0,84.60833333,4.91375,2.505833333,238.0447693333333 +2014-01-17 20:00:00,0.0,999.08,0.0,86.43333333,4.3703333330000005,2.30775,238.04633599999997 +2014-01-17 21:00:00,0.0,999.2066667000001,0.0,98.80833333,3.7920833330000003,2.288916667,238.045396 +2014-01-17 22:00:00,0.0,999.1266667000001,0.0,100.0,4.13625,3.1760833330000002,238.044456 +2014-01-17 23:00:00,0.0,999.3683332999999,0.0,100.0,3.2631666669999997,1.5315833330000002,238.044456 +2014-01-18 00:00:00,0.0,999.5316667000001,0.0,100.0,0.6075,0.4025,238.044456 +2014-01-18 01:00:00,0.0,999.6083332999999,0.0,100.0,-0.735666667,0.17425,238.043469 +2014-01-18 02:00:00,0.0,999.7533332999999,0.0,100.0,-0.9278333329999999,0.147666667,238.043798 +2014-01-18 03:00:00,0.0,999.8216667000002,0.0,100.0,-1.417666667,0.132833333,238.04314 +2014-01-18 04:00:00,0.0,999.8333332999998,0.0,100.0,-1.792416667,0.08033333299999999,238.04248199999998 +2014-01-18 05:00:00,0.0,999.5433332999999,0.0,100.0,-2.079416667,0.027000000000000003,238.04185533333336 +2014-01-18 06:00:00,0.0,999.4833332999999,0.0,100.0,-0.268333333,0.73225,238.04216866666664 +2014-01-18 07:00:00,0.0,999.6233332999999,0.019716667,100.0,0.8051666670000001,1.406833333,238.04154200000002 +2014-01-18 08:00:00,0.0,1000.05,4.635575,100.0,0.905666667,1.20275,238.04154200000002 +2014-01-18 09:00:00,2.606438352,1000.026667,35.580999999999996,100.0,0.999083333,0.96075,238.04091533333334 +2014-01-18 10:00:00,0.0,999.9833332999999,85.83283333,100.0,1.951583333,1.3705833330000001,238.04122866666668 +2014-01-18 11:00:00,0.0,999.6983332999998,118.7375,96.06666667,3.810166667,1.805833333,238.040602 +2014-01-18 12:00:00,0.0,999.3066667000002,113.33583329999999,92.15833333,4.712083333,1.4715,238.040602 +2014-01-18 13:00:00,0.0,998.6133332999999,96.215,90.1,5.242083333,1.347,238.040602 +2014-01-18 14:00:00,0.0,998.09,70.1925,94.93333333,4.091833333,1.837083333,238.040602 +2014-01-18 15:00:00,0.0,998.0,52.77183333,97.075,3.659166667,1.046333333,238.04091533333334 +2014-01-18 16:00:00,0.0,997.8333332999998,15.95434167,99.35,2.90825,0.232833333,238.039944 +2014-01-18 17:00:00,0.0,997.6666667000002,0.216941667,100.0,1.658833333,0.281833333,238.039615 +2014-01-18 18:00:00,0.0,997.4483332999998,0.0,100.0,0.988666667,0.276416667,238.038628 +2014-01-18 19:00:00,0.0,997.0733332999998,0.0,100.0,0.55125,0.946333333,238.038628 +2014-01-18 20:00:00,0.0,997.2933332999999,0.0,100.0,0.190583333,0.39041666700000005,238.03831466666665 +2014-01-18 21:00:00,0.0,997.125,0.0,100.0,0.3855,0.178333333,238.03737466666666 +2014-01-18 22:00:00,0.0,996.815,0.0,100.0,0.5548333329999999,0.15991666699999998,238.03768799999997 +2014-01-18 23:00:00,0.0,996.2366667000001,0.0,100.0,0.32966666699999997,0.06375,238.03800133333334 +2014-01-19 00:00:00,0.0,995.84,0.0,100.0,-0.289416667,0.198583333,238.037688 +2014-01-19 01:00:00,0.0,995.845,0.0,100.0,-0.10358333300000001,0.08575,238.038628 +2014-01-19 02:00:00,0.0,995.655,0.0,100.0,0.45475,0.41716666700000005,238.03706133333333 +2014-01-19 03:00:00,2.475305472,995.5833332999998,0.0,100.0,0.47383333299999997,0.730583333,238.03737466666666 +2014-01-19 04:00:00,0.0,995.3333332999998,0.0,100.0,0.336916667,1.3728333330000002,238.03706133333333 +2014-01-19 05:00:00,0.0,995.2416667000001,0.0,100.0,0.7463333329999999,1.2455,238.036748 +2014-01-19 06:00:00,0.0,995.3866667000001,0.0,100.0,1.272333333,1.16325,238.035761 +2014-01-19 07:00:00,0.0,995.39,0.0,100.0,1.50075,0.577416667,238.03608999999997 +2014-01-19 08:00:00,0.0,995.7166667000001,1.972075,100.0,1.6125833330000001,1.78325,238.03510300000002 +2014-01-19 09:00:00,0.0,996.23,14.89075,100.0,1.784583333,1.164166667,238.034774 +2014-01-19 10:00:00,0.0,996.515,29.60066667,100.0,2.204916667,1.164166667,238.034445 +2014-01-19 11:00:00,0.0,996.6116667000001,59.07766667,100.0,2.7405,1.8328333330000002,238.034774 +2014-01-19 12:00:00,0.0,996.4366667000002,55.13433333,100.0,3.25175,2.189916667,238.03279999999998 +2014-01-19 13:00:00,0.0,996.2333332999999,64.42041667,98.95,3.650083333,2.6198333330000003,238.033458 +2014-01-19 14:00:00,0.0,996.135,34.7655,98.11666667,3.91475,2.2088333330000003,238.034445 +2014-01-19 15:00:00,0.0,996.325,29.56041667,97.66666667,3.854083333,2.2,238.034774 +2014-01-19 16:00:00,0.0,996.735,8.3419,97.75833333,3.6846666669999997,1.650833333,238.033458 +2014-01-19 17:00:00,0.0,996.685,0.13801666699999998,98.075,3.338666667,0.689666667,238.03279999999998 +2014-01-19 18:00:00,0.0,996.7583332999999,0.0,99.49166667,2.269083333,0.33816666700000003,238.03279999999998 +2014-01-19 19:00:00,0.0,996.7916667000002,0.0,100.0,1.4869999999999999,0.171666667,238.03154666666669 +2014-01-19 20:00:00,0.0,996.7766667000001,0.0,100.0,2.089916667,0.17525,238.03248666666664 +2014-01-19 21:00:00,0.0,997.0233332999999,0.0,100.0,2.754083333,0.197416667,238.03092 +2014-01-19 22:00:00,0.0,997.0233332999999,0.0,100.0,3.4620833330000003,0.5419166670000001,238.030591 +2014-01-19 23:00:00,0.0,997.025,0.0,99.64166667,4.216083333,1.3173333329999999,238.030591 +2014-01-20 00:00:00,0.0,996.9683332999999,0.0,99.1,4.28775,2.07425,238.02927499999998 +2014-01-20 01:00:00,0.0,996.3516667000001,0.0,99.76666667,3.919833333,2.304083333,238.03092 +2014-01-20 02:00:00,0.0,996.1266667000001,0.0,100.0,3.625083333,2.409333333,238.030591 +2014-01-20 03:00:00,0.0,996.4183332999999,0.0,100.0,3.382583333,2.9135,238.030262 +2014-01-20 04:00:00,0.0,996.6533332999999,0.0,100.0,3.092916667,2.598083333,238.029933 +2014-01-20 05:00:00,0.0,996.48,0.0,100.0,2.8185833330000003,2.48125,238.02927499999998 +2014-01-20 06:00:00,0.0,996.5833332999998,0.0,100.0,2.6060000000000003,2.145666667,238.028946 +2014-01-20 07:00:00,0.0,996.71,0.0,100.0,2.527416667,2.1783333330000003,238.028946 +2014-01-20 08:00:00,0.0,997.4266667000002,0.9269166670000001,100.0,2.4028333330000002,1.957416667,238.028946 +2014-01-20 09:00:00,0.0,998.0566667000002,3.549875,100.0,2.3385833330000003,1.5496666669999999,238.02703466666665 +2014-01-20 10:00:00,0.0,998.53,13.88391667,99.91666667,2.3185833330000003,1.4164166669999998,238.028946 +2014-01-20 11:00:00,0.0,998.9683332999999,26.74175,99.55,2.35425,1.456166667,238.02831933333331 +2014-01-20 12:00:00,0.0,998.96,31.00066667,100.0,2.247083333,1.7109999999999999,238.02831933333334 +2014-01-20 13:00:00,0.0,998.9233332999999,33.38766667,100.0,2.4395,1.7331666669999999,238.028006 +2014-01-20 14:00:00,0.0,999.0866667000001,11.02441667,100.0,2.508833333,1.532083333,238.02863266666665 +2014-01-20 15:00:00,0.0,999.35,10.86516667,100.0,2.66875,1.026583333,238.028006 +2014-01-20 16:00:00,0.0,999.8666667000001,6.093908333,100.0,2.657166667,1.2670000000000001,238.02706600000002 +2014-01-20 17:00:00,0.0,1000.371667,0.05915,100.0,2.5540000000000003,1.24225,238.02706600000002 +2014-01-20 18:00:00,0.0,1000.886667,0.0,100.0,2.476083333,1.569833333,238.02640800000003 +2014-01-20 19:00:00,0.0,1001.3133330000001,0.0,100.0,2.1575833330000003,1.44825,238.026079 +2014-01-20 20:00:00,0.0,1001.73,0.0,100.0,2.0684166669999997,1.4093333330000002,238.02542100000002 +2014-01-20 21:00:00,0.0,1002.16,0.0,100.0,2.018583333,1.397416667,238.02477866666666 +2014-01-20 22:00:00,0.0,1002.393333,0.0,100.0,2.000166667,0.8865833329999999,238.025092 +2014-01-20 23:00:00,0.0,1002.583333,0.0,100.0,1.9045833330000002,0.28125,238.0238386666667 +2014-01-21 00:00:00,0.0,1002.863333,0.0,100.0,1.8221666669999999,0.829416667,238.02415200000004 +2014-01-21 01:00:00,0.0,1003.036667,0.0,100.0,1.809333333,0.5299166670000001,238.02383866666665 +2014-01-21 02:00:00,0.0,1003.31,0.0,100.0,1.76425,0.27325,238.022883 +2014-01-21 03:00:00,2.3865511440000002,1003.601667,0.0,100.0,1.7209999999999999,0.171666667,238.02321200000003 +2014-01-21 04:00:00,0.0,1003.868333,0.0,100.0,1.75575,0.000166667,238.02385433333336 +2014-01-21 05:00:00,7.159653432000001,1004.04,0.0,100.0,1.71125,0.011916666999999999,238.02960399999998 +2014-01-21 06:00:00,4.879642248,1004.516667,0.0,100.0,0.88675,0.21941666699999998,238.03123333333335 +2014-01-21 07:00:00,4.84387104,1004.995,0.0,100.0,0.610666667,0.18258333300000001,238.03281566666666 +2014-01-21 08:00:00,7.4620281120000005,1005.466667,3.333341667,100.0,0.9624166670000001,0.67975,238.03706133333333 +2014-01-21 09:00:00,7.4932077360000005,1006.088333,17.31625,100.0,1.273416667,0.8225,238.04089966666666 +2014-01-21 10:00:00,5.0205475680000005,1006.5666669999999,20.54966667,100.0,1.6185,0.919,238.0441113333333 +2014-01-21 11:00:00,0.0,1006.708333,67.11833333,100.0,2.11425,0.9690000000000001,238.04860766666664 +2014-01-21 12:00:00,0.0,1006.475,79.54916667,100.0,2.61175,1.4815,238.058834475 +2014-01-21 13:00:00,0.0,1004.823522,76.96908333,98.55833333,3.033833333,1.0945833329999999,238.07125798333334 +2014-01-21 14:00:00,0.0,1004.8657919999999,81.07166667,97.60833333,3.367166667,1.013916667,238.0834158 +2014-01-21 15:00:00,0.0,1004.983558,48.11041667,96.225,3.329583333,1.020416667,238.09209303333333 +2014-01-21 16:00:00,0.0,1005.1013230000001,12.83788333,96.80833333,3.0865,0.85975,238.09708426666666 +2014-01-21 17:00:00,0.0,1005.219088,0.512691667,97.675,2.871666667,0.741083333,238.09956178333334 +2014-01-21 18:00:00,0.0,1005.3368539999999,0.0,99.46666667,2.762916667,0.5698333329999999,238.10005728333337 +2014-01-21 19:00:00,0.0,1005.454619,0.0,99.95833333,2.740583333,0.32908333300000003,238.10056485000004 +2014-01-21 20:00:00,0.0,1005.5723849999999,0.0,100.0,2.6574166669999997,0.456583333,238.09956178333334 +2014-01-21 21:00:00,0.0,1005.69015,0.0,100.0,2.6795,0.698,238.0983532 +2014-01-21 22:00:00,0.0,1005.8079150000001,0.0,100.0,2.660166667,0.604,238.09759185 +2014-01-21 23:00:00,0.0,1005.925681,0.0,100.0,2.30025,0.440333333,238.0963229 +2014-01-22 00:00:00,0.0,1006.0434460000001,0.0,100.0,2.1189166669999997,0.496,238.095066 +2014-01-22 01:00:00,0.0,1006.1612119999999,0.0,100.0,2.432,0.146166667,238.09360370000002 +2014-01-22 02:00:00,0.0,1006.2789769999999,0.0,100.0,2.508833333,0.14375,238.09284230000003 +2014-01-22 03:00:00,0.0,1006.396742,0.0,100.0,2.534833333,0.10475,238.09112620000005 +2014-01-22 04:00:00,0.0,1006.514508,0.0,100.0,2.53775,0.0105,238.08986936666668 +2014-01-22 05:00:00,0.0,1006.632273,0.0,100.0,2.5558333330000003,0.11908333300000001,238.08912008333337 +2014-01-22 06:00:00,0.0,1006.750039,0.0,100.0,2.595,0.0,238.08791150000002 +2014-01-22 07:00:00,0.0,1006.8678039999999,0.0,100.0,2.526416667,0.0,238.08665465 +2014-01-22 08:00:00,0.0,1006.9855699999999,1.9719583330000001,100.0,2.5565,0.00725,238.08566365000001 +2014-01-22 09:00:00,0.0,1007.103335,11.26008333,100.0,2.7960000000000003,0.202333333,238.08392336666668 +2014-01-22 10:00:00,0.0,1007.2211,37.29133333,100.0,3.170583333,0.18791666699999998,238.08269070000003 +2014-01-22 11:00:00,0.0,1007.338866,39.61766667,99.95,3.5971666669999998,0.60225,238.0817118 +2014-01-22 12:00:00,0.0,1007.456631,28.98875,99.98333333,3.7480833330000003,0.731166667,238.08145800000003 +2014-01-22 13:00:00,0.0,1007.5743970000001,29.10775,100.0,3.923333333,0.486833333,238.07942766666667 +2014-01-22 14:00:00,0.0,1007.8091820000001,24.178,99.98333333,4.11075,0.34975,238.07795323333335 +2014-01-22 15:00:00,0.0,1007.966333,17.76775,99.99166667,4.10725,0.610583333,238.07771151666668 +2014-01-22 16:00:00,0.0,1008.441333,3.9638083330000002,100.0,4.033083333,0.690916667,238.07645466666665 +2014-01-22 17:00:00,0.0,1008.733333,0.09858333300000001,100.0,3.836833333,0.5375833329999999,238.07522195 +2014-01-22 18:00:00,0.0,1008.864333,0.0,100.0,3.671916667,0.606666667,238.07449680000005 +2014-01-22 19:00:00,0.0,1009.1060000000001,0.0,100.0,3.601916667,0.940083333,238.07322788333332 +2014-01-22 20:00:00,0.0,1009.4789999999999,0.0,100.0,3.535,0.638,238.07151179999997 +2014-01-22 21:00:00,0.0,1009.706,0.0,100.0,3.437333333,0.228166667,238.0710163 +2014-01-22 22:00:00,0.0,1009.956,0.0,100.0,3.358,0.165583333,238.07025489999998 +2014-01-22 23:00:00,0.0,1010.073,0.0,100.0,3.282,0.077916667,238.06879260000002 +2014-01-23 00:00:00,0.0,1010.035333,0.0,100.0,3.1238333330000003,0.038333333,238.0680433 +2014-01-23 01:00:00,0.0,1009.885667,0.0,100.0,3.01925,0.003,238.06704019999998 +2014-01-23 02:00:00,0.0,1009.9623330000001,0.0,100.0,3.007833333,0.10041666699999999,238.06557790000002 +2014-01-23 03:00:00,0.0,1010.141667,0.0,100.0,3.026583333,0.042,238.06481649999998 +2014-01-23 04:00:00,0.0,1010.043667,0.0,100.0,3.005833333,0.177166667,238.0640551 +2014-01-23 05:00:00,0.0,1009.985667,0.0,100.0,2.9266666669999997,0.197416667,238.06254448333334 +2014-01-23 06:00:00,0.0,1010.020667,0.0,100.0,2.869916667,0.27125,238.06204899999997 +2014-01-23 07:00:00,0.0,1009.979333,0.0,100.0,2.815833333,0.21633333300000002,238.06082839999996 +2014-01-23 08:00:00,0.0,1010.145333,1.222666667,100.0,2.94425,0.7999166670000001,238.05955940000004 +2014-01-23 09:00:00,0.0,1010.458333,4.772541667,100.0,3.198666667,0.9595,238.05931769999998 +2014-01-23 10:00:00,0.0,1010.5666669999999,9.426083333,100.0,3.53925,1.4769999999999999,238.0578554 +2014-01-23 11:00:00,0.0,1010.283667,21.77116667,99.79166667,3.7289999999999996,2.1830000000000003,238.05658640000001 +2014-01-23 12:00:00,0.0,1009.656667,56.40716667,96.64166667,4.124,2.157083333,238.05634469999998 +2014-01-23 13:00:00,0.0,1009.250667,79.77083333,92.0,5.003416667,1.973583333,238.05586129999998 +2014-01-23 14:00:00,0.0,1008.460667,38.25733333,87.975,5.032083333,1.873833333,238.05488239999997 +2014-01-23 15:00:00,0.0,1008.212667,19.36433333,88.8,4.841833333,2.0148333330000003,238.05437479999998 +2014-01-23 16:00:00,0.0,1008.148,12.79798333,90.58333333,4.461666667,1.690333333,238.05412099999998 +2014-01-23 17:00:00,0.0,1008.054333,0.29575,94.725,3.445833333,1.274833333,238.05264659999997 +2014-01-23 18:00:00,7.712290032,1007.827333,0.0,97.96666667,2.842333333,0.642916667,238.05240489999997 +2014-01-23 19:00:00,32.81409547,1007.475333,0.0,99.425,2.463916667,1.256416667,238.05240489999997 +2014-01-23 20:00:00,20.88756,1006.842333,0.0,100.0,1.867083333,1.24275,238.05313 +2014-01-23 21:00:00,0.0,1006.285667,0.0,100.0,1.8393333330000001,1.9046666669999999,238.05386719999998 +2014-01-23 22:00:00,0.0,1005.7610000000001,0.0,100.0,2.02925,2.369916667,238.05437479999998 +2014-01-23 23:00:00,0.0,1005.083667,0.0,100.0,2.24625,1.788583333,238.0546286 +2014-01-24 00:00:00,5.482378896,1004.84,0.0,100.0,2.388,1.4910833330000002,238.05513619999996 +2014-01-24 01:00:00,7.977361104,1004.466667,0.0,100.0,2.3745,1.04725,238.05537789999997 +2014-01-24 02:00:00,0.0,1004.579,0.0,100.0,2.430916667,0.26558333300000003,238.05561959999997 +2014-01-24 03:00:00,2.4050227680000003,1004.9580000000001,0.0,100.0,2.42875,0.038083333,238.05537789999997 +2014-01-24 04:00:00,0.0,1005.397333,0.0,100.0,2.333416667,0.5385,238.056103 +2014-01-24 05:00:00,5.145980112,1005.928667,0.0,100.0,1.689,0.793666667,238.05634470000004 +2014-01-24 06:00:00,7.50528036,1006.302,0.0,100.0,1.442083333,0.6343333329999999,238.0568402 +2014-01-24 07:00:00,0.0,1006.955333,0.0,100.0,1.6075,0.67675,238.0568402 +2014-01-24 08:00:00,0.0,1008.018,1.4593833330000001,100.0,1.92375,0.541666667,238.0576016 +2014-01-24 09:00:00,0.0,1008.683,10.29425833,100.0,2.2519166669999997,0.440666667,238.05883429999997 +2014-01-24 10:00:00,0.0,1009.170333,24.53266667,100.0,2.784416667,0.41266666700000004,238.05931769999998 +2014-01-24 11:00:00,0.0,1009.818333,28.1015,99.375,3.0651666669999997,0.74,238.0598132 +2014-01-24 12:00:00,0.0,1009.960333,43.54525,98.44166667,3.367083333,1.171916667,238.0603208 +2014-01-24 13:00:00,0.0,1010.083333,55.28016667,97.49166667,3.8080000000000003,1.18025,238.06108219999996 +2014-01-24 14:00:00,0.0,1010.272667,22.50033333,97.525,3.934166667,1.098333333,238.06156559999997 +2014-01-24 15:00:00,0.0,1010.551667,12.50258333,98.59166667,3.970916667,0.468416667,238.06132389999996 +2014-01-24 16:00:00,0.0,1011.195333,2.8986416669999997,99.25833333,3.715833333,0.760833333,238.06156559999997 +2014-01-24 17:00:00,0.0,1011.791,0.17745,99.86666667,3.4329166669999998,0.35383333299999997,238.06132389999996 +2014-01-24 18:00:00,0.0,1012.193667,0.0,100.0,3.0011666669999997,0.093333333,238.06108219999996 +2014-01-24 19:00:00,0.0,1012.566333,0.0,100.0,2.8801666669999997,0.579916667,238.06132389999996 +2014-01-24 20:00:00,0.0,1013.053667,0.0,100.0,2.6815833330000003,1.6593333330000002,238.06180729999997 +2014-01-24 21:00:00,0.0,1013.391667,0.0,99.95833333,2.267833333,1.078833333,238.06108219999996 +2014-01-24 22:00:00,0.0,1013.445667,0.0,100.0,1.726166667,1.51175,238.06180730000003 +2014-01-24 23:00:00,0.0,1013.720667,0.0,100.0,1.302083333,1.171833333,238.06156559999997 +2014-01-25 00:00:00,0.0,1013.8166669999999,0.0,100.0,1.213833333,1.132416667,238.06082839999996 +2014-01-25 01:00:00,0.0,1013.987333,0.0,100.0,0.9840000000000001,1.40975,238.06082839999996 +2014-01-25 02:00:00,0.0,1014.2810000000001,0.0,100.0,0.8330833329999999,1.601083333,238.06108219999996 +2014-01-25 03:00:00,0.0,1014.689333,0.0,100.0,0.7440000000000001,1.583666667,238.06057459999997 +2014-01-25 04:00:00,0.0,1014.679,0.0,100.0,0.492666667,1.034583333,238.06006699999998 +2014-01-25 05:00:00,0.0,1014.85,0.0,100.0,0.233833333,1.212166667,238.06032079999997 +2014-01-25 06:00:00,0.0,1014.6833330000001,0.0,100.0,0.010083333,1.2615,238.06006700000003 +2014-01-25 07:00:00,0.0,1014.6460000000001,0.039433333,99.3,-0.578416667,1.7648333330000001,238.05955940000004 +2014-01-25 08:00:00,0.0,1014.537333,5.2459166669999995,98.95,-0.794333333,1.94425,238.0593298 +2014-01-25 09:00:00,0.0,1014.793667,21.084,98.36666667,-0.77075,1.71825,238.0585926 +2014-01-25 10:00:00,0.0,1015.014333,43.40991667,96.525,-0.65125,1.08025,238.0578554 +2014-01-25 11:00:00,0.0,1015.050333,63.52966667,94.93333333,-0.5495,1.51325,238.05810919999996 +2014-01-25 12:00:00,0.0,1014.515,75.06916667,93.99166667,-0.29691666699999997,1.699,238.0568402 +2014-01-25 13:00:00,0.0,1013.904667,52.18558333,93.53333333,-0.13875,1.3925833330000001,238.05658640000001 +2014-01-25 14:00:00,0.0,1013.348333,47.88175,92.93333333,0.114,1.1634166670000001,238.05634469999998 +2014-01-25 15:00:00,0.0,1012.933667,35.57808333,92.61666667,0.506416667,0.965333333,238.05537789999994 +2014-01-25 16:00:00,0.0,1012.644333,10.59076667,93.86666667,0.63075,0.76175,238.05561959999997 +2014-01-25 17:00:00,0.0,1011.440333,0.532466667,96.26666667,0.55575,1.3575,238.056103 +2014-01-25 18:00:00,0.0,1011.356667,0.0,97.44166667,0.48425,0.68575,238.05512409999997 +2014-01-25 19:00:00,2.994629544,1009.786333,0.0,99.1,0.459083333,2.012,238.05561959999997 +2014-01-25 20:00:00,0.0,1008.298,0.0,98.95,0.6176666670000001,1.9998333330000002,238.05513619999996 +2014-01-25 21:00:00,0.0,1006.1260000000001,0.0,95.975,0.8385,2.499166667,238.05561959999997 +2014-01-25 22:00:00,0.0,1004.849667,0.0,97.20833333,1.105333333,2.523333333,238.056103 +2014-01-25 23:00:00,2.695911288,1002.897333,0.0,99.9,0.6805,2.101416667,238.05659849999998 +2014-01-26 00:00:00,2.505539208,1001.328,0.0,99.78333333,0.43491666700000003,1.257583333,238.0573478 +2014-01-26 01:00:00,8.017159104,1000.413,0.0,99.9,0.9725,1.303083333,238.0578554 +2014-01-26 02:00:00,16.89254345,1000.3853330000001,0.0,99.95833333,1.385083333,2.337166667,238.05810919999996 +2014-01-26 03:00:00,20.4659622,1000.668333,0.0,99.975,1.6080833330000002,2.845416667,238.05883430000003 +2014-01-26 04:00:00,20.21443157,1000.966333,0.0,99.05833333,2.26625,2.948416667,238.06032079999997 +2014-01-26 05:00:00,15.82144159,1001.8530000000001,0.0,97.31666667,3.186833333,2.177333333,238.06279826666665 +2014-01-26 06:00:00,0.0,1003.032667,0.0,95.35,3.644166667,1.6813333330000002,238.06630300000003 +2014-01-26 07:00:00,3.055723128,1004.072,0.019716667,95.55,3.7551666669999997,1.348,238.07100419999998 +2014-01-26 08:00:00,0.0,1004.770333,2.50425,95.35,3.69675,0.764166667,238.07646673333338 +2014-01-26 09:00:00,0.0,1005.206,31.913,95.15,4.024666667,1.6639166669999998,238.08192930000004 +2014-01-26 10:00:00,0.0,1005.4730000000001,41.94516667,95.725,4.3173333330000006,2.146,238.08542193333335 +2014-01-26 11:00:00,0.0,1005.2460000000001,64.39008333,94.08333333,4.4648333330000005,2.08625,238.08765771666666 +2014-01-26 12:00:00,0.0,1004.910667,82.84383333,90.31666667,4.82275,2.099583333,238.08962765 +2014-01-26 13:00:00,0.0,1004.265333,118.4925,85.46666667,5.96625,2.325333333,238.0908845 +2014-01-26 14:00:00,0.0,1003.136333,70.042,77.98083333,5.752583333,2.025833333,238.092093 +2014-01-26 15:00:00,0.0,1002.521333,51.58708333,77.06583333,5.0680000000000005,2.2675,238.09209299999998 +2014-01-26 16:00:00,0.0,1001.488667,15.40099167,82.875,4.098916667,1.2571666670000001,238.092093 +2014-01-26 17:00:00,0.0,1000.161333,0.29575,83.01666667,3.4868333330000003,2.032666667,238.09185130000003 +2014-01-26 18:00:00,0.0,998.7226667000001,0.0,84.2,3.5019166669999997,2.6905,238.0923347 +2014-01-26 19:00:00,0.0,996.6223332999999,0.0,84.85,3.6125,3.47125,238.092093 +2014-01-26 20:00:00,4.402843632,994.8203332999999,0.0,90.40833333,3.397833333,3.5678333330000003,238.09434086666667 +2014-01-26 21:00:00,11.53555999,992.9076667000002,0.0,95.44166667,2.82,4.0535,238.09784563333332 +2014-01-26 22:00:00,38.6244455,991.137,0.0,98.08333333,2.182083333,3.6766666669999997,238.09733806666668 +2014-01-26 23:00:00,11.953119099999999,989.784,0.0,99.81666667,0.8753333329999999,2.7985833330000003,238.09958591666668 +2014-01-27 00:00:00,19.66863773,988.83,0.0,100.0,0.76375,2.438416667,238.1045288 +2014-01-27 01:00:00,13.54790626,987.8693332999999,0.0,100.0,0.8390000000000001,1.973333333,238.1107285666667 +2014-01-27 02:00:00,10.43461507,987.5916667000001,0.0,100.0,0.940583333,1.3579166669999998,238.118439 +2014-01-27 03:00:00,4.857045768,987.9643332999999,0.0,100.0,0.9640000000000001,0.317666667,238.12686244999998 +2014-01-27 04:00:00,2.3865511440000002,988.5926667000001,0.0,100.0,0.830916667,0.299166667,238.13458493333334 +2014-01-27 05:00:00,9.059223527999999,989.535,0.0,98.74166667,2.781166667,1.96675,238.14051885 +2014-01-27 06:00:00,6.054889127999999,990.1556667000001,0.0,95.35,3.0405833330000003,2.187416667,238.1467307 +2014-01-27 07:00:00,0.0,990.9616667000001,0.05915,96.0,2.745666667,2.339,238.15172189999998 +2014-01-27 08:00:00,0.0,991.7913332999999,7.750925,96.05,2.491083333,1.830583333,238.15418730000002 +2014-01-27 09:00:00,5.304006816,992.4243332999998,62.18158333,93.74166667,2.9595,1.110666667,238.1546707 +2014-01-27 10:00:00,0.0,992.8726667000001,58.702,91.53333333,3.4555833330000003,1.4215,238.1546707 +2014-01-27 11:00:00,0.0,993.0583332999998,97.65233333,87.51666667,4.308,1.738833333,238.15394560000001 +2014-01-27 12:00:00,0.0,992.7523332999999,79.72766667,83.89166667,4.393916667,1.312333333,238.15295460000002 +2014-01-27 13:00:00,3.208353696,992.7126667000001,129.94333329999998,80.62166667,5.497083333,1.541166667,238.15270079999996 +2014-01-27 14:00:00,0.0,992.4896667000002,135.6384167,74.97666667,5.632999999999999,2.21475,238.1519515 +2014-01-27 15:00:00,0.0,992.4166667000002,77.53783333,71.99333333,5.42275,1.65325,238.14998163333334 +2014-01-27 16:00:00,0.0,992.4393332999998,10.39155833,76.83833333,4.679666667,1.41675,238.14871268333331 +2014-01-27 17:00:00,0.0,992.8603332999999,0.43376666700000005,88.475,3.5379166669999997,1.7929166669999999,238.1467186 +2014-01-27 18:00:00,0.0,993.033,0.0,91.53333333,1.7150833330000002,1.92625,238.1444828 +2014-01-27 19:00:00,0.0,993.252,0.0,93.36666667,2.016,1.459,238.14325010000002 +2014-01-27 20:00:00,0.0,993.1273332999999,0.0,91.64166667,2.390583333,2.073666667,238.1425129 +2014-01-27 21:00:00,0.0,993.2826667000002,0.0,92.75833333,2.558416667,3.2658333330000002,238.1402892 +2014-01-27 22:00:00,0.0,993.7976667000001,0.0,92.775,2.86525,3.0684166669999997,238.13879065 +2014-01-27 23:00:00,0.0,994.16,0.0,93.55,2.617916667,3.01575,238.13706243333334 +2014-01-28 00:00:00,0.0,994.6476667000002,0.0,93.975,2.6398333330000003,2.958916667,238.13531008333334 +2014-01-28 01:00:00,0.0,994.9019999999999,0.0,96.06666667,2.614666667,2.59275,238.13384771666668 +2014-01-28 02:00:00,0.0,994.8773332999999,0.0,97.46666667,2.264583333,0.751083333,238.1328325833333 +2014-01-28 03:00:00,0.0,994.825,0.0,98.61666667,2.19675,1.75125,238.1308143 +2014-01-28 04:00:00,3.2674750560000003,994.9953332999999,0.0,95.69166667,2.59525,2.242833333,238.12909823333334 +2014-01-28 05:00:00,0.0,995.3456667000002,0.0,95.65,2.597916667,2.1670833330000003,238.12785344999998 +2014-01-28 06:00:00,0.0,995.8183332999998,0.0,96.24166667,2.45275,2.2119999999999997,238.12587144999998 +2014-01-28 07:00:00,0.0,996.1203332999999,0.05915,97.74166667,2.0575,1.7271666669999999,238.12512216666667 +2014-01-28 08:00:00,0.0,996.602,10.058825,99.93333333,1.9371666669999998,1.550583333,238.12340601666668 +2014-01-28 09:00:00,0.0,996.7356667000001,23.3905,100.0,2.09425,1.4516666669999998,238.12239088333328 +2014-01-28 10:00:00,0.0,996.6683332999999,51.21491667,98.45,2.715416667,1.8811666669999998,238.12092859999998 +2014-01-28 11:00:00,0.0,996.825,144.47416669999998,88.46666667,4.739166667,2.4165,238.1201793 +2014-01-28 12:00:00,0.0,996.6816667000002,142.9108333,82.95,4.460083333,2.076333333,238.1194179 +2014-01-28 13:00:00,0.0,996.2669999999999,121.5375,79.015,5.11175,2.297333333,238.11868069999994 +2014-01-28 14:00:00,0.0,995.6943332999999,77.33483333,81.55666667,5.279,2.161833333,238.11771389999998 +2014-01-28 15:00:00,0.0,995.2313332999998,106.344,77.5775,5.943416667,2.01775,238.11720629999994 +2014-01-28 16:00:00,0.0,995.0333332999999,31.2585,83.92166667,4.518166667,2.314333333,238.1159615 +2014-01-28 17:00:00,0.0,995.096,1.123966667,91.54166667,3.25725,1.3631666669999998,238.1142333 +2014-01-28 18:00:00,0.0,995.1123332999998,0.0,96.35,1.6515,0.44591666700000004,238.1139795 +2014-01-28 19:00:00,0.0,995.1666667000002,0.0,99.95,0.43108333299999996,0.348416667,238.11271053333334 +2014-01-28 20:00:00,0.0,995.279,0.0,100.0,-0.639416667,0.130083333,238.1116954 +2014-01-28 21:00:00,0.0,995.423,0.0,100.0,-1.3159999999999998,0.208083333,238.1102452 +2014-01-28 22:00:00,0.0,995.5830000000001,0.0,100.0,-2.2515,0.16116666699999999,238.10973760000002 +2014-01-28 23:00:00,0.0,995.7476667000001,0.0,100.0,-2.769333333,0.198666667,238.1084807 +2014-01-29 00:00:00,0.0,996.052,0.0,100.0,-1.5590000000000002,0.584666667,238.108239 +2014-01-29 01:00:00,0.0,996.0873332999998,0.0,98.74166667,-0.013833333,0.9179999999999999,238.10727219999998 +2014-01-29 02:00:00,0.0,996.1273332999999,0.0,95.56666667,0.7509999999999999,1.6174166669999999,238.106257 +2014-01-29 03:00:00,0.0,995.8689999999999,0.0,94.75,0.768833333,1.688666667,238.1057494 +2014-01-29 04:00:00,0.0,995.6916667000002,0.0,93.93333333,0.571416667,1.48375,238.105266 +2014-01-29 05:00:00,0.0,995.8726667000001,0.0,93.675,0.43125,1.764583333,238.10428710000005 +2014-01-29 06:00:00,0.0,996.052,0.0,93.03333333,0.433666667,1.1840000000000002,238.10353780000003 +2014-01-29 07:00:00,0.0,996.2516667000001,0.039433333,92.34166667,0.44341666700000004,0.742583333,238.1027764 +2014-01-29 08:00:00,0.0,996.5893332999999,4.673433333,90.79166667,0.4955,1.1181666670000001,238.1020513 +2014-01-29 09:00:00,0.0,996.9436667000001,22.5645,89.125,0.8835,1.327583333,238.10131411666669 +2014-01-29 10:00:00,0.0,997.2413332999998,35.93625,87.85,1.20475,1.44325,238.10081863333335 +2014-01-29 11:00:00,0.0,997.346,55.25858333,87.34166667,1.226083333,1.967416667,238.0998035 +2014-01-29 12:00:00,0.0,997.0876667000001,64.67125,86.21666667,1.3501666669999999,1.9585833330000002,238.09859491666666 +2014-01-29 13:00:00,0.0,996.948,58.0195,84.64166667,1.3874166669999999,2.427333333,238.0983532 +2014-01-29 14:00:00,0.0,996.821,46.956,85.56666667,1.25075,2.182083333,238.0983532 +2014-01-29 15:00:00,0.0,996.835,26.80183333,86.8,0.88725,1.92,238.09784563333335 +2014-01-29 16:00:00,0.0,997.2433332999999,7.060433333,86.63333333,0.7905833329999999,1.93425,238.09708428333337 +2014-01-29 17:00:00,0.0,997.7810000000001,0.473375,86.16666667,0.7909166670000001,1.614,238.0963229 +2014-01-29 18:00:00,0.0,998.212,0.0,86.53333333,0.8019166670000001,1.5928333330000002,238.0958153 +2014-01-29 19:00:00,0.0,998.7433332999999,0.0,86.225,0.793583333,1.42875,238.0945826 +2014-01-29 20:00:00,0.0,999.0333332999999,0.0,86.25833333,0.792333333,1.3628333330000002,238.0945826 +2014-01-29 21:00:00,0.0,999.1663332999999,0.0,85.23333333,0.81575,1.6519166669999998,238.0938575 +2014-01-29 22:00:00,0.0,999.8723332999999,0.0,83.43333333,0.934583333,1.721416667,238.09309610000003 +2014-01-29 23:00:00,0.0,1000.116667,0.0,84.94166667,0.5970833329999999,0.6779166670000001,238.09284230000003 +2014-01-30 00:00:00,0.0,1000.3083330000001,0.0,89.69166667,-0.240666667,0.358916667,238.0918513 +2014-01-30 01:00:00,0.0,1000.447667,0.0,92.70833333,-0.301,0.42466666700000005,238.09136790000002 +2014-01-30 02:00:00,0.0,1000.681,0.0,94.29166667,-0.5419166670000001,0.497833333,238.0918513 +2014-01-30 03:00:00,0.0,1000.927,0.0,95.66666667,-0.43941666700000004,0.198583333,238.0908845 +2014-01-30 04:00:00,0.0,1001.235,0.0,97.23333333,-0.60775,0.04125,238.09012315000004 +2014-01-30 05:00:00,0.0,1001.454,0.0,99.05,-1.245,0.080833333,238.08912008333337 +2014-01-30 06:00:00,0.0,1001.504333,0.0,98.81666667,-1.474166667,0.5105,238.08863665 +2014-01-30 07:00:00,0.0,1001.845333,0.138075,99.80833333,-1.9944166669999999,0.440333333,238.08765771666666 +2014-01-30 08:00:00,0.0,1002.474333,11.14499167,100.0,-2.775,0.05025,238.0868963666667 +2014-01-30 09:00:00,0.0,1002.9623330000001,45.41016667,98.9,-0.593166667,0.32325,238.08443093333332 +2014-01-30 10:00:00,0.0,1003.2310000000001,109.9641667,91.80833333,1.271833333,1.139166667,238.08366958333337 +2014-01-30 11:00:00,0.0,1003.04,169.8025,85.84166667,2.114416667,1.68425,238.08341580000004 +2014-01-30 12:00:00,0.0,1003.118333,200.2933333,82.275,2.488083333,2.2021666669999997,238.082449 +2014-01-30 13:00:00,0.0,1003.254333,174.53916669999998,79.42083333,2.982333333,2.0324166669999997,238.082449 +2014-01-30 14:00:00,0.0,1002.638,126.6125,77.0625,3.2984166669999997,1.65575,238.08145800000003 +2014-01-30 15:00:00,0.0,1002.346,90.30291667,77.82333333,3.095,1.38725,238.0812042 +2014-01-30 16:00:00,0.0,1002.25,31.35475,83.8325,2.319666667,0.6064166670000001,238.08044280000004 +2014-01-30 17:00:00,0.0,1002.437333,1.617175,90.96666667,0.942583333,0.5801666670000001,238.0791738833333 +2014-01-30 18:00:00,0.0,1002.516667,0.0,92.375,0.7979166670000001,0.668666667,238.07892009999998 +2014-01-30 19:00:00,0.0,1002.752,0.0,97.525,-0.6905,0.0465,238.07795323333335 +2014-01-30 20:00:00,0.0,1002.527333,0.0,99.70833333,-1.255666667,0.15708333300000002,238.07746980000005 +2014-01-30 21:00:00,0.0,1002.333333,0.0,100.0,-1.02375,0.354333333,238.07771151666668 +2014-01-30 22:00:00,0.0,1002.306,0.0,100.0,-1.57025,0.15416666699999998,238.07696223333335 +2014-01-30 23:00:00,0.0,1002.633333,0.0,99.4,-1.18675,0.195416667,238.07696223333335 +2014-01-31 00:00:00,0.0,1002.633333,0.0,95.90833333,-0.661166667,0.42908333299999996,238.07620088333329 +2014-01-31 01:00:00,0.0,1002.533333,0.0,94.725,-0.272833333,0.555,238.0762008833333 +2014-01-31 02:00:00,0.0,1002.627333,0.0,94.675,-0.291166667,0.584833333,238.07594709999998 +2014-01-31 03:00:00,0.0,1002.470667,0.0,93.675,-0.271416667,0.872166667,238.07570538333331 +2014-01-31 04:00:00,0.0,1002.539333,0.0,93.84166667,-0.407916667,0.574416667,238.07449680000005 +2014-01-31 05:00:00,0.0,1003.1289999999999,0.0,95.00833333,-0.582666667,0.16925,238.07449680000005 +2014-01-31 06:00:00,0.0,1002.783667,0.0,97.06666667,-1.141833333,0.009000000000000001,238.0742430166667 +2014-01-31 07:00:00,0.0,1002.916,0.157791667,99.81666667,-2.6676666669999998,0.021833332999999996,238.07322788333332 +2014-01-31 08:00:00,0.0,1003.595333,9.725508332999999,100.0,-2.976833333,0.194916667,238.07298618333334 +2014-01-31 09:00:00,0.0,1004.222333,37.77783333,100.0,-0.715,0.2305,238.0720073 +2014-01-31 10:00:00,0.0,1004.895333,92.48983333,94.225,1.5700833330000001,0.372166667,238.07176560000005 +2014-01-31 11:00:00,0.0,1004.9960000000001,176.155,83.34166667,2.4361666669999997,1.056083333,238.0717535 +2014-01-31 12:00:00,0.0,1004.752667,201.565,81.5075,3.03675,1.773166667,238.07152390000002 +2014-01-31 13:00:00,0.0,1004.4,203.7583333,78.24833333,3.557083333,2.0638333330000003,238.07152390000002 +2014-01-31 14:00:00,0.0,1004.158667,171.44166669999998,77.18833333,4.066666667,1.8893333330000002,238.07127010000002 +2014-01-31 15:00:00,0.0,1004.324667,112.35,76.135,4.092833333,1.50575,238.0707625 +2014-01-31 16:00:00,0.0,1004.242,39.16558333,79.58916667,3.135,1.704166667,238.07000109999998 +2014-01-31 17:00:00,0.0,1004.174667,1.439491667,87.69166667,1.89375,1.999416667,238.06951769999998 +2014-01-31 18:00:00,0.0,1004.1669999999999,0.0,98.01666667,0.3225,0.50375,238.06879260000002 +2014-01-31 19:00:00,0.0,1004.225,0.0,99.99166667,-1.293083333,0.304083333,238.06879260000002 +2014-01-31 20:00:00,0.0,1003.529667,0.0,99.40833333,-1.229583333,0.8038333329999999,238.06855090000002 +2014-01-31 21:00:00,0.0,1003.000333,0.0,96.075,0.35233333299999997,1.69125,238.0680433 +2014-01-31 22:00:00,0.0,1002.656667,0.0,96.21666667,0.331416667,2.21975,238.0677895 +2014-01-31 23:00:00,0.0,1002.142333,0.0,98.68333333,0.255833333,2.649666667,238.0675357 +2014-01-02 00:00:00,0.0,1001.173667,0.0,96.36666667,-0.194666667,1.9245,238.02575000000002 +2014-01-02 01:00:00,0.0,1000.292333,0.0,96.98333333,-0.2095,2.935666667,238.02575000000002 +2014-01-02 02:00:00,0.0,999.763,0.0,97.075,-0.017416667,2.302833333,238.02542100000002 +2014-01-02 03:00:00,0.0,999.005,0.0,98.575,0.073,2.863333333,238.026079 +2014-01-02 04:00:00,0.0,998.1336667000002,0.0,97.86666667,0.46299999999999997,3.2141666669999998,238.02542100000002 +2014-01-02 05:00:00,0.0,997.4546667000001,0.0,96.25,0.96925,3.3569999999999998,238.02542100000002 +2014-01-02 06:00:00,0.0,996.6156667000001,0.0,91.575,1.09075,3.313916667,238.02542100000002 +2014-01-02 07:00:00,0.0,996.2539999999999,0.216941667,84.875,1.6095833330000002,3.309416667,238.02575000000002 +2014-01-02 08:00:00,0.0,996.2083332999998,7.356533333,86.1,1.64525,4.437833333,238.02575000000002 +2014-01-02 09:00:00,0.0,996.3186667000001,25.02675,83.8225,1.600333333,3.847583333,238.02510766666668 +2014-01-02 10:00:00,0.0,996.7683332999999,24.68958333,80.82,1.8984166669999998,3.188583333,238.02446533333338 +2014-01-02 11:00:00,0.0,996.825,24.73041667,81.81,2.36625,2.014333333,238.024152 +2014-01-02 12:00:00,0.0,996.6083332999999,34.88566667,81.765,3.029666667,1.8353333330000001,238.02415200000004 +2014-01-02 13:00:00,36.18932206,996.987,29.3825,88.8,5.752916667,3.002333333,238.02352533333337 +2014-01-02 14:00:00,21.62247742,997.4956667000001,27.17458333,93.64166667,5.257333333,1.8305,238.02352533333337 +2014-01-02 15:00:00,13.98360372,997.9556667000002,16.21083333,95.35833333,4.131083333,1.35075,238.021896 +2014-01-02 16:00:00,7.731700847999999,998.7139999999999,7.119,97.95833333,3.696583333,0.9218333329999999,238.021896 +2014-01-02 17:00:00,17.59084579,999.5306667000001,0.3549,100.0,3.328666667,0.696666667,238.021238 +2014-01-02 18:00:00,21.80355552,1000.314,0.0,99.45833333,3.363083333,1.23875,238.02061133333333 +2014-01-02 19:00:00,2.51738328,1000.878667,0.0,99.98333333,3.1750833330000003,0.60375,238.0199846666667 +2014-01-02 20:00:00,2.42468376,1001.676333,0.0,100.0,2.859666667,0.204333333,238.018371 +2014-01-02 21:00:00,5.050269864,1002.206,0.0,98.79166667,2.769916667,0.309083333,238.0187 +2014-01-02 22:00:00,2.4050227680000003,1002.364333,0.0,98.70833333,2.783416667,0.196666667,238.0187 +2014-01-02 23:00:00,0.0,1002.674667,0.0,98.41666667,2.5275,0.29791666699999997,238.018371 +2014-02-02 00:00:00,0.0,1003.041667,0.0,100.0,1.8660833330000002,0.1125,238.0712701 +2014-02-02 01:00:00,0.0,1003.274667,0.0,100.0,1.4250833330000001,0.049166667000000004,238.07101630000003 +2014-02-02 02:00:00,0.0,1003.593333,0.0,100.0,1.28175,0.070583333,238.07176560000002 +2014-02-02 03:00:00,0.0,1003.860333,0.0,100.0,1.14425,0.0655,238.07176560000002 +2014-02-02 04:00:00,0.0,1004.216333,0.0,100.0,0.890833333,0.038083333,238.07200730000002 +2014-02-02 05:00:00,0.0,1004.758,0.0,100.0,1.09625,0.223583333,238.07152390000002 +2014-02-02 06:00:00,0.0,1005.422,0.0,100.0,0.96675,0.133916667,238.07152390000002 +2014-02-02 07:00:00,0.0,1006.449333,0.13801666699999998,100.0,1.454,0.165666667,238.07152390000002 +2014-02-02 08:00:00,0.0,1007.028667,8.97365,100.0,1.38175,0.057083333,238.0712701 +2014-02-02 09:00:00,0.0,1007.863667,33.60583333,100.0,1.6048333330000002,0.07925,238.07101630000003 +2014-02-02 10:00:00,0.0,1008.553667,131.07675,100.0,4.106,0.570916667,238.0702549 +2014-02-02 11:00:00,0.0,1009.081,156.2225,85.46666667,6.6014166670000005,0.998,238.0705087 +2014-02-02 12:00:00,0.0,1009.420667,206.3360833,80.42166667,7.723833332999999,1.394916667,238.07050869999998 +2014-02-02 13:00:00,0.0,1009.541667,187.9033333,75.60666667,7.841833332999999,1.5255,238.07101630000003 +2014-02-02 14:00:00,0.0,1009.762,192.99583330000002,70.11083333,8.95,1.1663333329999999,238.06975939999995 +2014-02-02 15:00:00,0.0,1010.170667,117.70675,72.245,8.824166667,1.109916667,238.06927599999997 +2014-02-02 16:00:00,0.0,1010.422667,66.03625,78.20833333,7.9585,1.057916667,238.0687805 +2014-02-02 17:00:00,0.0,1010.753667,5.975083333,90.28333333,5.14475,1.38025,238.0675357 +2014-02-02 18:00:00,0.0,1011.389333,0.0,97.39166667,3.062833333,0.766833333,238.0665447 +2014-02-02 19:00:00,0.0,1012.097,0.0,99.65833333,1.706833333,0.278416667,238.06581960000003 +2014-02-02 20:00:00,0.0,1012.937,0.0,99.65,0.7195,0.19266666699999999,238.06581960000003 +2014-02-02 21:00:00,0.0,1013.116667,0.0,100.0,0.571583333,0.326416667,238.06557790000002 +2014-02-02 22:00:00,0.0,1013.2,0.0,100.0,-0.254416667,0.2965,238.0643089 +2014-02-02 23:00:00,0.0,1013.389333,0.0,100.0,-0.720833333,0.291666667,238.0640551 +2014-03-02 00:00:00,0.0,1013.308667,0.0,100.0,-1.33975,0.242833333,238.02927366666668 +2014-03-02 01:00:00,0.0,1012.962667,0.0,100.0,-1.655583333,0.111583333,238.02854851666666 +2014-03-02 02:00:00,0.0,1012.702333,0.0,100.0,-1.60975,0.1365,238.02854851666666 +2014-03-02 03:00:00,0.0,1012.596,0.0,100.0,-0.693416667,0.120583333,238.02830679999997 +2014-03-02 04:00:00,0.0,1012.448,0.0,100.0,-0.44575,0.3375,238.02729166666666 +2014-03-02 05:00:00,0.0,1012.129333,0.0,100.0,-0.5155,0.205416667,238.02729166666666 +2014-03-02 06:00:00,0.0,1011.677667,0.0,100.0,-0.276583333,0.516416667,238.02678410000001 +2014-03-02 07:00:00,0.0,1011.19,0.078866667,100.0,-0.2715,0.630583333,238.02654238333332 +2014-03-02 08:00:00,0.0,1010.500667,7.040366667000001,100.0,-0.179166667,0.4315,238.02581723333333 +2014-03-02 09:00:00,0.0,1010.117,21.77291667,100.0,0.141416667,1.4305833330000002,238.02655444999996 +2014-03-02 10:00:00,2.691079776,1009.327667,41.37875,100.0,0.533416667,1.5855833330000002,238.02678410000001 +2014-03-02 11:00:00,0.0,1008.665333,54.3585,100.0,1.235166667,1.382916667,238.02630066666666 +2014-03-02 12:00:00,0.0,1007.5239999999999,60.3505,100.0,2.0365833330000003,1.25725,238.02557551666666 +2014-03-02 13:00:00,0.0,1006.33,41.29533333,100.0,2.706583333,1.883833333,238.02605895 +2014-03-02 14:00:00,0.0,1005.33,29.10775,100.0,2.98725,1.3004166670000001,238.02654238333332 +2014-03-02 15:00:00,0.0,1004.683667,20.174,99.65833333,3.5550833330000002,1.3865833330000001,238.02581723333333 +2014-03-02 16:00:00,0.0,1004.250333,8.420708333,96.13333333,3.759083333,1.48,238.0253338 +2014-03-02 17:00:00,0.0,1004.112333,0.670425,93.79166667,3.601583333,1.7581666669999998,238.02508001666664 +2014-03-02 18:00:00,0.0,1004.4789999999999,0.0,92.11666667,3.392083333,1.998833333,238.0253338 +2014-03-02 19:00:00,0.0,1004.337667,0.0,90.80833333,3.134416667,2.13725,238.0253338 +2014-03-02 20:00:00,0.0,1004.004333,0.0,91.89166667,2.927916667,1.595166667,238.02457245000002 +2014-03-02 21:00:00,0.0,1004.158333,0.0,93.275,2.856583333,1.7755833330000002,238.0253338 +2014-03-02 22:00:00,0.0,1004.270667,0.0,93.54166667,2.8015,1.7541666669999998,238.0253338 +2014-03-02 23:00:00,0.0,1004.239333,0.0,93.775,2.728916667,2.284833333,238.0250800166667 +2014-04-02 00:00:00,0.0,1004.537333,0.0,94.18333333,2.550916667,2.15375,237.95717280000005 +2014-04-02 01:00:00,0.0,1004.462667,0.0,95.25833333,2.518916667,2.3595,237.95717280000005 +2014-04-02 02:00:00,0.0,1004.285667,0.0,96.39166667,1.76925,2.118833333,237.95650443333338 +2014-04-02 03:00:00,0.0,1004.341667,0.0,98.80833333,1.441583333,1.7920833330000001,237.9555018833333 +2014-04-02 04:00:00,0.0,1004.3560000000001,0.0,100.0,1.288916667,1.9005,237.95583606666665 +2014-04-02 05:00:00,0.0,1004.612333,0.0,100.0,0.944916667,2.1575833330000003,237.95516769999998 +2014-04-02 06:00:00,0.0,1004.991333,0.0,100.0,1.034583333,2.125333333,237.95481679999997 +2014-04-02 07:00:00,0.0,1005.2560000000001,0.13801666699999998,100.0,1.3825833330000001,2.690666667,237.95516769999998 +2014-04-02 08:00:00,0.0,1005.793333,3.569883333,99.54166667,1.5535833330000002,3.418166667,237.95617025 +2014-04-02 09:00:00,0.0,1006.251667,25.62,97.9,2.056,3.510333333,237.95650443333338 +2014-04-02 10:00:00,0.0,1006.5060000000001,69.2615,95.84166667,2.772333333,2.287,237.95617025 +2014-04-02 11:00:00,0.0,1006.693667,96.82166667,92.5,3.78125,1.8894166669999999,237.95583606666665 +2014-04-02 12:00:00,0.0,1006.8083330000001,90.86,90.50833333,4.490916667,1.2691666670000001,237.95650443333338 +2014-04-02 13:00:00,0.0,1006.743667,107.04166670000001,88.725,5.073916667,1.643,237.9568386166667 +2014-04-02 14:00:00,0.0,1006.400667,102.445,88.075,5.3165,2.265333333,237.95683861666672 +2014-04-02 15:00:00,0.0,1006.25,60.95541667,88.45833333,5.353,3.181,237.95617025 +2014-04-02 16:00:00,0.0,1006.096,24.374000000000002,90.875,4.905583333,2.070583333,237.95583606666665 +2014-04-02 17:00:00,0.0,1005.810667,3.7860083330000003,98.18333333,3.779833333,1.349666667,237.9555018833333 +2014-04-02 18:00:00,0.0,1005.352333,0.0,100.0,1.853083333,0.774416667,237.95516769999998 +2014-04-02 19:00:00,0.0,1005.19,0.0,100.0,-0.043,0.18600000000000003,237.954115 +2014-04-02 20:00:00,0.0,1004.652333,0.0,100.0,-0.41825,0.9664166670000001,237.95376410000003 +2014-04-02 21:00:00,0.0,1004.231667,0.0,99.14166667,1.546,1.80975,237.95306230000003 +2014-04-02 22:00:00,0.0,1003.557,0.0,99.65833333,1.01675,0.74625,237.95341320000003 +2014-04-02 23:00:00,0.0,1002.896333,0.0,99.975,0.48675,0.568,237.95306230000003 +2014-05-02 00:00:00,0.0,1002.231667,0.0,100.0,-0.208083333,0.36325,237.88027639999996 +2014-05-02 01:00:00,0.0,1001.607,0.0,100.0,-1.208416667,0.19925,237.87887279999998 +2014-05-02 02:00:00,0.0,1000.732,0.0,100.0,-0.8101666670000001,0.45825,237.87720188333333 +2014-05-02 03:00:00,0.0,999.8589999999999,0.0,100.0,-0.804666667,0.7805833329999999,237.87686769999996 +2014-05-02 04:00:00,0.0,999.0466667000002,0.0,100.0,-0.775666667,1.51925,237.87686769999996 +2014-05-02 05:00:00,0.0,998.2026667000001,0.0,100.0,-0.438333333,2.16675,237.87651681666662 +2014-05-02 06:00:00,0.0,997.6543332999998,0.0,99.925,-0.6396666670000001,1.3453333330000001,237.87581505 +2014-05-02 07:00:00,0.0,997.4003332999998,1.755425,100.0,-0.50075,2.2791666669999997,237.87511328333332 +2014-05-02 08:00:00,0.0,997.408,9.507808333,99.40833333,-0.18408333300000002,2.506916667,237.87476239999998 +2014-05-02 09:00:00,0.0,997.198,21.40075,98.28333333,0.19975,2.193166667,237.87476239999998 +2014-05-02 10:00:00,0.0,997.2836667000001,27.57183333,97.63333333,0.448166667,2.519083333,237.87476239999998 +2014-05-02 11:00:00,2.667179688,996.6653332999998,51.03816667,98.375,0.5515,2.309583333,237.8727572 +2014-05-02 12:00:00,2.761962144,995.7796667000001,115.6225,99.19166667,1.141583333,1.8373333330000001,237.87100278333332 +2014-05-02 13:00:00,0.0,994.953,92.02083333,96.56666667,2.145833333,2.361916667,237.87065189999998 +2014-05-02 14:00:00,0.0,994.4416667000002,47.74466667,94.025,2.801166667,3.46375,237.87065189999998 +2014-05-02 15:00:00,0.0,994.6956667000002,23.94,95.15833333,2.741333333,3.4485,237.87030099999996 +2014-05-02 16:00:00,0.0,994.5543332999998,19.8975,96.73333333,2.7545833330000002,3.0114166669999998,237.8688974 +2014-05-02 17:00:00,0.0,994.8036667000001,5.166525,96.44166667,2.79275,3.42,237.86854649999995 +2014-05-02 18:00:00,3.330986016,995.6303332999998,0.0,96.99166667,2.89,2.116333333,237.86854649999995 +2014-05-02 19:00:00,0.0,996.1560000000001,0.0,97.0,2.758083333,1.692666667,237.8678781333333 +2014-05-02 20:00:00,0.0,996.4726667000001,0.0,93.13333333,2.5213333330000003,1.934916667,237.8665414 +2014-05-02 21:00:00,0.0,996.9393332999998,0.0,93.6,3.277333333,2.602,237.8647869 +2014-05-02 22:00:00,0.0,997.2330000000001,0.0,92.98333333,4.19225,3.64775,237.8647869 +2014-05-02 23:00:00,0.0,997.5893332999999,0.0,89.45,4.453916667,2.77825,237.86443599999998 +2014-06-02 00:00:00,0.0,998.0556667000001,0.0,89.325,4.43625,1.869083333,237.74222389999997 +2014-06-02 01:00:00,0.0,998.6473332999999,0.0,90.875,4.353666667,1.5443333330000002,237.7404861166667 +2014-06-02 02:00:00,2.73107808,999.2496667000001,0.0,90.85,5.7375,1.249416667,237.74222389999997 +2014-06-02 03:00:00,0.0,999.664,0.0,89.41666667,6.51325,2.143416667,237.74292569999997 +2014-06-02 04:00:00,0.0,1000.022667,0.0,91.61666667,6.475916667000001,2.281083333,237.74292569999997 +2014-06-02 05:00:00,0.0,1000.502,0.0,91.15,5.637083333,2.227583333,237.74426243333335 +2014-06-02 06:00:00,0.0,1000.851667,0.0,90.05,5.3785,1.7515833330000001,237.7452817 +2014-06-02 07:00:00,0.0,1001.468333,0.2366,91.23333333,5.972333333,2.1785,237.74703619999994 +2014-06-02 08:00:00,0.0,1001.7330000000001,13.48800833,87.93333333,5.545083332999999,1.7425,237.74770456666667 +2014-06-02 09:00:00,0.0,1002.328667,35.63408333,85.34166667,6.7874166670000005,1.85125,237.7463344 +2014-06-02 10:00:00,0.0,1002.679,158.8475,82.10833333,7.882000000000001,2.5605833330000003,237.7411879166667 +2014-06-02 11:00:00,0.0,1002.946,192.57,79.2,8.821666667,2.738333333,237.7370607 +2014-06-02 12:00:00,0.0,1002.500333,227.51166669999998,79.19333333,8.806666667,2.6415833330000003,237.733652 +2014-06-02 13:00:00,0.0,1002.327333,248.6983333,76.64833333,9.765,2.2855,237.73084488333333 +2014-06-02 14:00:00,0.0,1001.502667,138.3859167,74.4375,10.095,2.573,237.728823 +2014-06-02 15:00:00,0.0,1000.871333,79.44766667,74.32583333,8.790833333,3.084916667,237.72708526666665 +2014-06-02 16:00:00,0.0,1000.508667,21.71166667,77.18083333,7.795333332999999,2.0459166669999997,237.72504676666665 +2014-06-02 17:00:00,0.0,999.6113332999998,2.12975,81.4675,6.90325,2.411083333,237.722824425 +2014-06-02 18:00:00,0.0,998.5446667000001,0.0,75.23916667,7.33625,2.083333333,237.719917 +2014-06-02 19:00:00,0.0,997.2446667000002,0.0,75.99166667,6.937333333,1.3665,237.7192152 +2014-06-02 20:00:00,0.0,996.4363332999999,0.0,76.2375,6.9379166670000005,1.6724166669999998,237.719917 +2014-06-02 21:00:00,0.0,995.4113332999999,0.0,71.57416667,7.432916667000001,1.92775,237.72026789999998 +2014-06-02 22:00:00,0.0,994.5673332999999,0.0,70.16083333,7.4124166670000005,3.1398333330000003,237.72127045000002 +2014-06-02 23:00:00,0.0,993.3236667000001,0.0,66.01833333,7.709333332999999,4.6915833330000005,237.7236766 +2014-07-02 00:00:00,0.0,992.5213332999999,0.0,63.93,7.550583333,4.371166667,237.63364669999996 +2014-07-02 01:00:00,0.0,991.9463332999999,0.0,63.26416667,7.261833332999999,1.6836666669999998,237.63606951666665 +2014-07-02 02:00:00,0.0,991.2316667000001,0.0,71.08416667,7.367000000000001,1.282333333,237.63810808333332 +2014-07-02 03:00:00,0.0,990.9983332999999,0.0,84.21083333,6.62425,0.972583333,237.6402134 +2014-07-02 04:00:00,0.0,990.5189999999999,0.0,70.00583333,6.6525,1.6645,237.64230208333333 +2014-07-02 05:00:00,0.0,990.35,0.0,67.91333333,7.65875,2.0975,237.643973 +2014-07-02 06:00:00,4.674198168,990.4523332999999,0.0,68.18666667,7.782083332999999,3.238833333,237.6453766 +2014-07-02 07:00:00,4.428252576,989.5696667000001,0.2366,74.98,7.714083333,3.733,237.64708095 +2014-07-02 08:00:00,0.0,989.2646667000001,13.19208333,73.91,7.756666667,3.174,237.64774931666668 +2014-07-02 09:00:00,0.0,988.615,41.21308333,70.7025,8.823333332999999,3.958583333,237.64297045 +2014-07-02 10:00:00,0.0,988.76,63.57166667,70.37166667,9.631666667000001,4.3724166669999995,237.63366340000002 +2014-07-02 11:00:00,0.0,988.9536667000001,147.6591667,69.63666667,12.14666667,4.678416667,237.62784856666664 +2014-07-02 12:00:00,0.0,989.9383332999998,132.25741670000002,67.59833333,12.0575,6.3964166670000004,237.62542569999997 +2014-07-02 13:00:00,0.0,991.3826667000002,115.81675,65.73166667,11.16833333,5.31925,237.62306969999997 +2014-07-02 14:00:00,0.0,992.3096667000001,95.16033333,65.66083333,10.52916667,4.829833333,237.61889233333332 +2014-07-02 15:00:00,0.0,993.3423332999998,44.19158333,65.72416667,10.02083333,5.000583333,237.61545020000003 +2014-07-02 16:00:00,0.0,994.8969999999999,18.06291667,67.88666667,9.498333333,5.370416667000001,237.61376256666665 +2014-07-02 17:00:00,0.0,995.8389999999999,2.168658333,71.02083333,8.816666667,4.492,237.61169060000006 +2014-07-02 18:00:00,0.0,996.8613332999998,0.0,72.70583333,8.081916667,4.060333333,237.61098880000006 +2014-07-02 19:00:00,0.0,998.1053332999999,0.0,77.54083333,7.3848333329999996,4.036833333,237.61032043333333 +2014-07-02 20:00:00,0.0,999.187,0.0,82.45,6.465,2.4176666669999998,237.61098880000006 +2014-07-02 21:00:00,0.0,999.6666667000002,0.0,85.16666667,5.975583332999999,1.899416667,237.6120415 +2014-07-02 22:00:00,0.0,999.7496667000001,0.0,86.9,5.319333333,2.073583333,237.61478183333335 +2014-07-02 23:00:00,0.0,999.7439999999999,0.0,86.5,4.601166667,1.70325,237.61820724999998 +2014-08-02 00:00:00,0.0,999.7666667000001,0.0,86.38333333,4.18925,1.207833333,237.5958836 +2014-08-02 01:00:00,0.0,999.3086667000001,0.0,86.80833333,0.992916667,0.248,237.59419591666668 +2014-08-02 02:00:00,0.0,998.6923332999999,0.0,85.65833333,-0.51875,0.360916667,237.59244149999998 +2014-08-02 03:00:00,0.0,998.0046667000001,0.0,82.525,0.736583333,1.6625,237.59244149999998 +2014-08-02 04:00:00,0.0,997.1173332999998,0.0,83.36666667,3.293166667,3.39275,237.5907705 +2014-08-02 05:00:00,0.0,996.5006667000001,0.0,84.38333333,3.5173333330000003,3.1124166669999997,237.58868188333335 +2014-08-02 06:00:00,0.0,995.4010000000001,0.0,83.5,3.937166667,3.187583333,237.5862256 +2014-08-02 07:00:00,0.0,994.9023332999999,0.966291667,82.59166667,4.459,4.2275,237.5862256 +2014-08-02 08:00:00,0.0,994.3193332999999,19.602625,79.7075,4.970833333,4.640416667,237.58798009999998 +2014-08-02 09:00:00,0.0,993.6796667000001,25.7145,76.48833333,4.999333333,3.9655,237.5865765 +2014-08-02 10:00:00,0.0,993.1483332999999,65.30416667,74.58416667,5.68525,3.8864166669999998,237.5848888666667 +2014-08-02 11:00:00,0.0,992.4426667000001,113.96583329999999,71.16333333,6.1573333329999995,3.8650833330000003,237.5835187 +2014-08-02 12:00:00,0.0,991.0343332999998,85.72083333,69.79,6.589166667000001,4.19775,237.5817809166667 +2014-08-02 13:00:00,0.0,990.1089999999999,61.56616667,67.57916667,7.162000000000001,3.16575,237.5776704166667 +2014-08-02 14:00:00,0.0,989.0983332999999,31.82783333,70.5775,7.8266666670000005,3.526833333,237.57599950000005 +2014-08-02 15:00:00,21.33163039,989.0313332999999,24.60966667,85.98416667,6.488416667,2.1993333330000002,237.5745959 +2014-08-02 16:00:00,25.81908125,988.715,11.49691667,90.98333333,5.733166667000001,3.463,237.57322573333337 +2014-08-02 17:00:00,13.63524278,988.4813332999998,1.143683333,93.15,5.363333333,3.149916667,237.5708363 +2014-08-02 18:00:00,8.814234648,988.4726667000001,0.0,93.51666667,5.2540833330000005,1.7836666669999999,237.56943270000002 +2014-08-02 19:00:00,8.071516824,988.5753332999999,0.0,92.79166667,5.37925,1.367,237.56767819999996 +2014-08-02 20:00:00,0.0,988.3586667000002,0.0,92.13333333,5.98375,2.16075,237.56565638333336 +2014-08-02 21:00:00,0.0,987.7626667000002,0.0,90.1,5.6675,2.061,237.5639186 +2014-08-02 22:00:00,0.0,987.7333332999999,0.0,86.91666667,6.6085,2.0045,237.5635677 +2014-08-02 23:00:00,0.0,988.2036667000001,0.0,85.625,6.631833332999999,2.6745,237.56189678333337 +2014-09-02 00:00:00,0.0,988.6076667000001,0.0,82.66666667,6.377583333,3.29075,237.85333089999997 +2014-09-02 01:00:00,0.0,989.0333332999999,0.0,81.625,6.07825,2.7694166669999998,237.85297999999997 +2014-09-02 02:00:00,0.0,989.404,0.0,83.975,5.644333333,2.5173333330000003,237.85333089999997 +2014-09-02 03:00:00,0.0,989.1273332999999,0.0,82.51666667,5.579666667000001,2.594,237.85333089999997 +2014-09-02 04:00:00,0.0,988.696,0.0,80.43666667,5.549083333,3.3544166669999997,237.85368179999998 +2014-09-02 05:00:00,0.0,989.1576667000002,0.0,80.0125,5.55375,2.050416667,237.85298 +2014-09-02 06:00:00,0.0,989.6853332999999,0.0,82.11666667,5.3345,1.88675,237.8505571333333 +2014-09-02 07:00:00,0.0,990.22,0.374616667,81.825,5.438416667,2.172416667,237.85122550000003 +2014-09-02 08:00:00,0.0,991.0203332999998,17.66840833,84.56666667,5.21775,2.30675,237.85122550000003 +2014-09-02 09:00:00,0.0,991.5076667000002,60.36275,84.98333333,5.155333333,1.7615,237.8515764 +2014-09-02 10:00:00,0.0,992.0916667000001,114.289,81.8075,5.940833333,2.488,237.84988876666662 +2014-09-02 11:00:00,0.0,992.3333332999998,169.14333330000002,81.99083333,6.31025,2.70375,237.8495545833333 +2014-09-02 12:00:00,0.0,991.9833332999999,193.2670833,77.36583333,7.533833333,3.147416667,237.8488527833333 +2014-09-02 13:00:00,0.0,992.1893332999998,166.45475,70.79583333,7.5335,3.651416667,237.84748261666664 +2014-09-02 14:00:00,0.0,992.1043332999999,80.41308333,74.98416667,6.787583333,2.5724166669999997,237.8478168 +2014-09-02 15:00:00,0.0,992.4016667000001,53.77458333,70.155,6.910416667000001,2.8585,237.84576155 +2014-09-02 16:00:00,0.0,992.8016667000002,40.18875,70.8775,6.281083333,2.276,237.84475899999998 +2014-09-02 17:00:00,0.0,993.2643332999999,5.9745,73.98,5.361333333,2.133,237.84510989999998 +2014-09-02 18:00:00,0.0,993.612,0.0,79.21166667,4.69675,1.6733333330000002,237.84475899999998 +2014-09-02 19:00:00,0.0,994.154,0.0,78.63166667,4.1385,1.969583333,237.8430045 +2014-09-02 20:00:00,0.0,994.564,0.0,82.73333333,2.782333333,1.6830833330000001,237.84200195000003 +2014-09-02 21:00:00,0.0,995.185,0.0,89.81666667,2.140083333,1.086666667,237.84099939999996 +2014-09-02 22:00:00,0.0,995.4643332999999,0.0,97.525,0.35566666700000005,0.666083333,237.84099939999996 +2014-09-02 23:00:00,0.0,995.7646667000001,0.0,99.35833333,0.242,1.211833333,237.8426870333333 +2014-10-02 00:00:00,0.0,995.6626667000002,0.0,100.0,-1.4305,0.24725, +2014-10-02 01:00:00,0.0,995.3376667000001,0.0,100.0,-1.109916667,0.421333333, +2014-10-02 02:00:00,0.0,995.1396667000001,0.0,100.0,-0.35175,0.907416667, +2014-10-02 03:00:00,0.0,994.7756667000001,0.0,100.0,0.33125,2.172333333, +2014-10-02 04:00:00,0.0,994.3106667000002,0.0,100.0,0.656833333,2.210916667, +2014-10-02 05:00:00,0.0,994.31,0.0,100.0,0.463916667,1.6855, +2014-10-02 06:00:00,0.0,993.8883332999999,0.0,100.0,0.710916667,1.72075, +2014-10-02 07:00:00,0.0,993.2653332999998,0.670716667,99.69166667,-0.066333333,0.494666667, +2014-10-02 08:00:00,0.0,992.804,19.508475,100.0,-0.2865,0.0545, +2014-10-02 09:00:00,0.0,992.6126667000001,50.64791667,99.43333333,0.6960833329999999,0.222833333, +2014-10-02 10:00:00,2.47922892,992.0386667000001,73.05666667,95.05,1.870416667,0.786833333, +2014-10-02 11:00:00,0.0,991.0046667000001,128.31,92.11666667,3.1766666669999997,2.175416667, +2014-10-02 12:00:00,0.0,990.4546667000001,80.05666667,87.20833333,4.456333333,2.0459166669999997, +2014-10-02 13:00:00,0.0,989.79,78.11416667,76.34916667,5.683583333,1.67025, +2014-10-02 14:00:00,0.0,989.2986667000001,53.13116667,63.705,6.05775,1.7409166669999998, +2014-10-02 15:00:00,0.0,988.8686667000002,23.4675,66.8675,5.606833332999999,1.6106666669999998, +2014-10-02 16:00:00,0.0,989.029,13.152999999999999,73.95916667,5.162916667,0.57925, +2014-10-02 17:00:00,0.0,988.9936667000002,2.583116667,78.34166667,4.547083333,1.097666667, +2014-10-02 18:00:00,2.953148112,989.5369999999999,0.0,92.76666667,3.4859166669999997,1.6305833330000001, +2014-10-02 19:00:00,2.582901408,989.935,0.0,98.05833333,3.00225,0.62025, +2014-10-02 20:00:00,2.717971416,990.4476667000001,0.0,99.99166667,3.02525,1.04625, +2014-10-02 21:00:00,2.4197052,990.9533332999998,0.0,99.575,2.6398333330000003,0.254166667, +2014-10-02 22:00:00,0.0,991.687,0.0,99.275,2.5669999999999997,0.300666667, +2014-10-02 23:00:00,3.1370923439999996,992.5303332999998,0.0,98.04166667,2.651166667,2.385333333, +2014-11-02 00:00:00,0.0,993.5036667000002,0.0,97.81666667,2.645833333,2.421166667,237.96075249999998 +2014-11-02 01:00:00,0.0,994.297,0.0,97.225,2.7689999999999997,1.981333333,237.96075249999998 +2014-11-02 02:00:00,0.0,995.1786667000001,0.0,96.00833333,3.04475,1.6286666669999998,237.96041916666664 +2014-11-02 03:00:00,0.0,995.987,0.0,95.39166667,3.1648333330000002,1.8419999999999999,237.95875249999997 +2014-11-02 04:00:00,0.0,996.3203332999999,0.0,94.16666667,3.3431666669999998,1.78875,237.95875249999997 +2014-11-02 05:00:00,0.0,997.091,0.0,92.96666667,3.240416667,1.367833333,237.95875249999997 +2014-11-02 06:00:00,0.0,997.841,0.0,90.43333333,3.8105,1.916166667,237.95875249999997 +2014-11-02 07:00:00,0.0,998.5453332999999,0.552125,86.84166667,4.452083333,2.571416667,237.95908583333332 +2014-11-02 08:00:00,0.0,999.1786667000001,20.430025,86.93333333,4.664916667,2.659166667,237.9597525 +2014-11-02 09:00:00,0.0,999.6560000000001,50.74533333,84.11666667,5.108166667,2.5916666669999997,237.96075249999998 +2014-11-02 10:00:00,0.0,1000.2080000000001,85.40641667,78.5625,5.419,3.243833333,237.96075249999998 +2014-11-02 11:00:00,0.0,1000.370333,124.8975,76.04833333,6.34375,3.096833333,237.9600858333333 +2014-11-02 12:00:00,0.0,1000.161333,94.33083333,85.53333333,5.506,2.058916667,237.96041916666664 +2014-11-02 13:00:00,0.0,999.4483332999998,177.4733333,84.85416667,6.480166667000001,1.796416667,237.95941916666666 +2014-11-02 14:00:00,0.0,998.9336667000001,183.2191667,71.67083333,7.171,2.399833333,237.95908583333335 +2014-11-02 15:00:00,0.0,998.8833332999999,105.455,65.36833333,7.237916667,2.165333333,237.95941916666663 +2014-11-02 16:00:00,0.0,998.8560000000001,73.69366667,63.34,7.30975,2.785666667,237.95770249999998 +2014-11-02 17:00:00,0.0,998.8043332999998,3.746691667,72.5275,5.703333333,1.4378333330000002,237.95840249999995 +2014-11-02 18:00:00,0.0,999.285,0.0,83.70833333,3.59225,1.886916667,237.95875249999997 +2014-11-02 19:00:00,0.0,999.4333332999998,0.0,82.40916667,2.2295,1.8249166669999999,237.95875249999997 +2014-11-02 20:00:00,0.0,999.1066667000001,0.0,78.89083333,2.070666667,2.0325833330000003,237.95875249999997 +2014-11-02 21:00:00,0.0,999.079,0.0,75.85583333,2.202083333,1.014666667,237.95875249999997 +2014-11-02 22:00:00,0.0,999.3953332999998,0.0,75.40833333,2.4395833330000003,1.213666667,237.95875249999997 +2014-11-02 23:00:00,0.0,999.8186667000001,0.0,74.53833333,4.333666667,1.124916667,237.95875249999997 +2014-12-02 00:00:00,0.0,999.9556667000002,0.0,75.25583333,4.462833333,1.104666667,237.8498525 +2014-12-02 01:00:00,6.386996016,1000.581,0.0,84.20416667,4.74925,1.9140000000000001,237.8498525 +2014-12-02 02:00:00,15.18609994,1000.960333,0.0,93.39166667,4.002416667,2.136916667,237.85085249999997 +2014-12-02 03:00:00,3.339709128,1001.16,0.0,93.90833333,3.917166667,2.76325,237.85051916666666 +2014-12-02 04:00:00,3.3854574719999997,1001.791,0.0,95.325,3.7460000000000004,2.96175,237.85185249999998 +2014-12-02 05:00:00,0.0,1002.285333,0.0,96.10833333,3.109416667,2.127333333,237.85185249999998 +2014-12-02 06:00:00,0.0,1002.934333,0.0,95.93333333,2.183416667,1.11825,237.85185249999998 +2014-12-02 07:00:00,0.0,1004.001333,1.045158333,96.075,0.26675,0.0935,237.8525525 +2014-12-02 08:00:00,0.0,1004.987,13.78591667,95.28333333,1.1085,0.259916667,237.85255249999997 +2014-12-02 09:00:00,0.0,1005.389333,44.70725,88.91666667,4.204166667,0.9940000000000001,237.8536025 +2014-12-02 10:00:00,0.0,1005.701667,177.0825,84.38333333,5.696416667,2.0665,237.8536025 +2014-12-02 11:00:00,0.0,1006.147667,132.02,77.8425,6.125,2.33675,237.85428583333336 +2014-12-02 12:00:00,0.0,1005.732,156.8116667,76.0175,6.345083333,1.9609166669999998,237.85395250000002 +2014-12-02 13:00:00,0.0,1005.146333,192.20833330000002,69.51583333,6.96975,2.448083333,237.8549525 +2014-12-02 14:00:00,0.0,1004.194667,225.80833330000002,65.89083333,7.8593333329999995,2.488666667,237.85461916666668 +2014-12-02 15:00:00,0.0,1003.556667,152.43375,67.03916667,7.877083333,2.191666667,237.85528583333334 +2014-12-02 16:00:00,0.0,1002.567333,79.2995,70.07916667,6.7343333329999995,2.393416667,237.85596916666668 +2014-12-02 17:00:00,0.0,1001.823667,3.214283333,77.26166667,4.517666667,2.403083333,237.85595250000003 +2014-12-02 18:00:00,0.0,1000.761333,0.0,92.05833333,3.5829166669999997,1.752083333,237.85735250000002 +2014-12-02 19:00:00,0.0,1000.023333,0.0,97.65833333,3.321333333,1.4069999999999998,237.8577025 +2014-12-02 20:00:00,0.0,999.4653332999999,0.0,99.98333333,3.585666667,1.8365,237.8577025 +2014-12-02 21:00:00,0.0,998.451,0.0,99.60833333,3.772,2.5855,237.85805249999999 +2014-12-02 22:00:00,0.0,997.1133332999999,0.0,99.39166667,4.024333333,2.77775,237.8583858333333 +2014-12-02 23:00:00,0.0,996.5563332999999,0.0,98.075,4.4285,2.8498333330000003,237.8590525 +2014-02-13 00:00:00,34.42240963,996.2963332999999,0.0,97.81666667,4.191916667,2.542416667,238.03601721666666 +2014-02-13 01:00:00,2.456902728,996.206,0.0,97.3,4.517666667,1.521166667,238.0357755 +2014-02-13 02:00:00,3.3598608480000003,996.2916667000002,0.0,96.11666667,5.161583333,2.127,238.03601721666666 +2014-02-13 03:00:00,0.0,996.0606667000002,0.0,95.44166667,5.422333332999999,2.047333333,238.03625893333333 +2014-02-13 04:00:00,0.0,995.9043332999998,0.0,94.29166667,5.567833332999999,1.7850833330000002,238.0357755 +2014-02-13 05:00:00,3.344342208,996.0126667000002,0.0,93.08333333,6.1375,3.26325,238.0357755 +2014-02-13 06:00:00,0.0,995.2836667000001,0.0,90.75833333,4.284916667,1.250916667,238.0357755 +2014-02-13 07:00:00,0.0,995.2666667000001,0.374616667,86.98333333,3.779,1.127916667,238.0357755 +2014-02-13 08:00:00,0.0,995.046,18.26078333,86.9,4.303416667,1.9060833330000002,238.0357755 +2014-02-13 09:00:00,0.0,994.4593332999999,46.72208333,84.525,5.3685,2.39825,238.03601721666666 +2014-02-13 10:00:00,0.0,993.307,69.53391667,79.26416667,5.938916667000001,2.91875,238.03650065 +2014-02-13 11:00:00,0.0,992.3056667000001,137.2991667,75.64,6.276916667,1.6185833330000001,238.0372258 +2014-02-13 12:00:00,0.0,989.923,95.14166667,84.915,6.054333333,2.3355,238.0374795833333 +2014-02-13 13:00:00,102.6948228,988.3296667000001,174.8891667,85.375,5.724583332999999,3.250666667,238.03947365 +2014-02-13 14:00:00,83.28253421,987.355,183.1025,72.65833333,4.204,4.592083333,238.04841674999997 +2014-02-13 15:00:00,68.64810965,986.927,102.5558333,65.97166667,3.6180000000000003,2.258666667,238.0593297833333 +2014-02-13 16:00:00,26.14674348,987.0666667000002,87.27833333,62.855,2.5484166669999997,0.883916667,238.07571746666667 +2014-02-13 17:00:00,5.124736512,987.6866667000002,4.772308333,71.40083333,2.187083333,1.065583333,238.09136791666666 +2014-02-13 18:00:00,0.0,988.5986667000001,0.019716667,83.85,3.2235,3.4225,238.10130201666666 +2014-02-13 19:00:00,0.0,990.305,0.0,81.80083333,4.016333333,2.1381666669999997,238.1055077 +2014-02-13 20:00:00,0.0,992.013,0.0,79.58666667,4.267916667,2.152166667,238.1060032 +2014-02-13 21:00:00,3.2526474960000002,993.8653332999999,0.0,76.03416667,4.396833333,2.298,238.1050243 +2014-02-13 22:00:00,0.0,995.2489999999999,0.0,75.29333333,4.10275,2.10575,238.10404540000002 +2014-02-13 23:00:00,0.0,996.684,0.0,74.77916667,4.1355,2.366833333,238.10353780000003 +2014-02-14 00:00:00,0.0,998.2113332999999,0.0,74.9475,3.9405,2.583416667,238.1025347 +2014-02-14 01:00:00,0.0,999.5386667000001,0.0,83.09583333,3.378916667,2.163166667,238.10156790000005 +2014-02-14 02:00:00,0.0,1000.538667,0.0,93.06666667,2.89275,2.356666667,238.10081863333335 +2014-02-14 03:00:00,0.0,1001.289333,0.0,93.875,3.290916667,2.62375,238.0998155666667 +2014-02-14 04:00:00,0.0,1001.691,0.0,95.25,2.889416667,1.702083333,238.09883663333332 +2014-02-14 05:00:00,0.0,1002.266333,0.0,96.05833333,1.426833333,1.504833333,238.09784563333332 +2014-02-14 06:00:00,0.0,1002.730667,0.0,95.96666667,1.5563333330000002,0.9773333329999999,238.0963229 +2014-02-14 07:00:00,0.0,1003.722333,0.6902,96.05833333,2.865333333,1.482833333,238.0945826 +2014-02-14 08:00:00,0.0,1004.383,12.56295833,95.575,3.263666667,1.9849166669999998,238.09360370000002 +2014-02-14 09:00:00,0.0,1004.593667,34.74683333,89.31666667,4.76525,1.831833333,238.09258850000003 +2014-02-14 10:00:00,0.0,1004.693333,164.5641667,85.01666667,5.962999999999999,2.184416667,238.0923347 +2014-02-14 11:00:00,0.0,1005.043667,148.1491667,78.1025,6.57625,2.122833333,238.09136790000002 +2014-02-14 12:00:00,0.0,1004.807,154.0291667,76.3125,7.442583332999999,2.337166667,238.09063071666665 +2014-02-14 13:00:00,0.0,1003.555333,181.7958333,70.2825,7.699083333,3.4209166669999997,238.08961558333337 +2014-02-14 14:00:00,0.0,1002.363,229.6583333,65.7425,7.248666667,3.776583333,238.08912008333337 +2014-02-14 15:00:00,0.0,1001.713333,158.60541669999998,66.84666667,7.194666667000001,3.3345,238.08789943333338 +2014-02-14 16:00:00,0.0,1001.0419999999999,89.572,69.44333333,6.938833333,2.675416667,238.08640086666665 +2014-02-14 17:00:00,4.312074096,1000.211333,4.199825,75.16333333,6.706583332999999,2.470416667,238.08590536666668 +2014-02-14 18:00:00,18.46535131,999.5213332999999,0.0,87.80833333,5.467083333,4.055583333,238.08542193333332 +2014-02-14 19:00:00,11.08153637,998.9960000000001,0.0,90.7,5.253416667,3.6430833330000003,238.08493849999994 +2014-02-14 20:00:00,3.550200528,998.17,0.0,90.075,5.324166667,3.2345,238.08341580000004 +2014-02-14 21:00:00,0.0,997.065,0.0,87.93333333,5.381583332999999,2.583166667,238.08341580000004 +2014-02-14 22:00:00,0.0,996.428,0.0,87.775,5.32825,2.9441666669999997,238.08269069999997 +2014-02-14 23:00:00,0.0,995.5903332999999,0.0,86.14166667,5.647333333,3.66425,238.08196559999996 +2014-02-15 00:00:00,3.790263936,994.5613332999999,0.0,85.53333333,5.81275,3.7569999999999997,238.08196559999996 +2014-02-15 01:00:00,0.0,993.6126667000001,0.0,88.84166667,6.0723333329999996,3.3954166669999997,238.0817118 +2014-02-15 02:00:00,0.0,993.5146667000001,0.0,91.16666667,6.756083332999999,2.095333333,238.08044280000004 +2014-02-15 03:00:00,0.0,993.5293332999998,0.0,82.375,7.0315,1.6635,238.08044280000004 +2014-02-15 04:00:00,0.0,993.3123332999999,0.0,79.8525,6.784833333,2.484333333,238.08044280000004 +2014-02-15 05:00:00,0.0,993.5060000000001,0.0,80.53666667,7.371416667,3.74075,238.0791738833333 +2014-02-15 06:00:00,0.0,993.7726667000002,0.0,80.75833333,8.352416667,4.3685,238.07892009999998 +2014-02-15 07:00:00,0.0,994.3786667000002,0.670483333,79.05333333,8.654166667,3.229083333,238.07819495 +2014-02-15 08:00:00,0.0,995.0016667000001,17.98475,77.79833333,10.26833333,2.12575,238.0772160166667 +2014-02-15 09:00:00,0.0,995.2833332999999,45.3355,75.14583333,10.835,2.716333333,238.07696223333335 +2014-02-15 10:00:00,0.0,995.502,65.82975,72.34166667,11.1825,2.3185,238.07570538333331 +2014-02-15 11:00:00,0.0,995.7183332999999,103.1625,72.6675,11.555,2.0619166669999998,238.07522195000004 +2014-02-15 12:00:00,0.0,996.1393332999999,84.94616667,74.01583333,11.2025,2.953666667,238.0742430166667 +2014-02-15 13:00:00,0.0,996.1623332999999,75.88291667,75.75916667,10.83916667,2.948416667,238.07348166666668 +2014-02-15 14:00:00,0.0,996.5203332999998,93.47916667,77.705,10.5075,3.08,238.07322788333332 +2014-02-15 15:00:00,0.0,996.5293332999998,72.8875,81.33333333,10.00583333,2.871916667,238.07297409999998 +2014-02-15 16:00:00,0.0,996.6326667000002,24.98533333,81.41666667,9.484166667,2.523416667,238.07273239999998 +2014-02-15 17:00:00,0.0,997.581,2.938366667,82.60833333,8.915833333,2.4330000000000003,238.07152390000002 +2014-02-15 18:00:00,0.0,998.4303332999999,0.039433333,84.29166667,8.439166667,2.168583333,238.07025489999998 +2014-02-15 19:00:00,0.0,999.1226667000001,0.0,84.775,8.343333333,3.152166667,238.07000109999998 +2014-02-15 20:00:00,0.0,999.0023332999999,0.0,85.91666667,8.08925,3.3778333330000003,238.07000109999998 +2014-02-15 21:00:00,0.0,999.4553332999999,0.0,85.24166667,7.924666667,3.771416667,238.0695177 +2014-02-15 22:00:00,0.0,1000.243333,0.0,84.5,8.017916667,3.346,238.06927600000003 +2014-02-15 23:00:00,0.0,1000.714333,0.0,84.725,7.857083332999999,3.352583333,238.06829710000002 +2014-02-16 00:00:00,3.1361670239999997,1001.014333,0.0,84.76666667,7.60625,2.77,238.06728189999998 +2014-02-16 01:00:00,0.0,1001.264333,0.0,89.59166667,6.8845,2.993666667,238.0665447 +2014-02-16 02:00:00,0.0,1001.626667,0.0,84.46666667,7.07575,3.136666667,238.06630300000003 +2014-02-16 03:00:00,0.0,1001.862667,0.0,84.875,6.962416667,2.76675,238.0653241 +2014-02-16 04:00:00,0.0,1001.818333,0.0,84.25,6.867833332999999,3.154833333,238.0648165 +2014-02-16 05:00:00,0.0,1001.979333,0.0,81.69166667,6.74775,2.687833333,238.0648165 +2014-02-16 06:00:00,0.0,1002.176667,0.0,82.46666667,6.521583333,1.930916667,238.06380131666666 +2014-02-16 07:00:00,0.0,1003.066,0.630933333,81.925,6.74725,1.738666667,238.0625324 +2014-02-16 08:00:00,0.0,1004.015667,13.98191667,81.30833333,6.9825,2.0573333330000003,238.0625324 +2014-02-16 09:00:00,0.0,1004.726667,53.73083333,82.98416667,7.031333332999999,2.196416667,238.0625324 +2014-02-16 10:00:00,0.0,1005.114333,191.485,77.57166667,8.3745,3.1665,238.06180729999997 +2014-02-16 11:00:00,0.0,1005.56,180.59475,73.99833333,8.791666667000001,3.6705,238.06156559999997 +2014-02-16 12:00:00,0.0,1005.735333,225.7091667,70.44333333,9.3925,3.492916667,238.06108219999996 +2014-02-16 13:00:00,0.0,1005.881333,188.8075,70.6875,9.631666667000001,3.5685833330000003,238.06108219999996 +2014-02-16 14:00:00,3.472863648,1005.727,161.0478333,75.39583333,9.373333333,3.0771666669999997,238.06057459999997 +2014-02-16 15:00:00,0.0,1005.783333,170.6308333,74.05416667,8.985833332999999,2.720583333,238.0603208 +2014-02-16 16:00:00,0.0,1006.068333,89.13333333,68.6875,7.7198333329999995,2.211416667,238.0603208 +2014-02-16 17:00:00,0.0,1006.404333,5.265516667,80.82333333,7.261666667,1.531333333,238.0585926 +2014-02-16 18:00:00,0.0,1006.626667,0.078866667,91.33333333,5.62575,1.17575,238.05810919999996 +2014-02-16 19:00:00,0.0,1006.943333,0.0,97.075,3.7675,0.81675,238.0576016 +2014-02-16 20:00:00,0.0,1007.214333,0.0,88.55,3.782916667,0.7081666670000001,238.0573478 +2014-02-16 21:00:00,0.0,1007.429333,0.0,84.00833333,5.609583333,1.600916667,238.057094 +2014-02-16 22:00:00,0.0,1007.5060000000001,0.0,86.64166667,3.73675,0.80625,238.0568402 +2014-02-16 23:00:00,0.0,1007.779,0.0,96.60833333,0.793166667,0.110416667,238.05537789999997 +2014-02-17 00:00:00,0.0,1007.910333,0.0,99.75833333,-0.548083333,0.240416667,238.05537789999994 +2014-02-17 01:00:00,0.0,1008.095667,0.0,100.0,-1.0955,0.12300000000000001,238.05488239999997 +2014-02-17 02:00:00,0.0,1008.044,0.0,100.0,-1.6615,0.012083333,238.05513619999996 +2014-02-17 03:00:00,0.0,1007.779333,0.0,100.0,-1.9075,0.081,238.0543748 +2014-02-17 04:00:00,0.0,1007.789333,0.0,100.0,-2.334333333,0.039916667,238.0538672 +2014-02-17 05:00:00,0.0,1008.312,0.0,100.0,-1.311416667,0.075333333,238.0536134 +2014-02-17 06:00:00,0.0,1008.570667,0.0,100.0,-0.0695,0.086,238.05337169999999 +2014-02-17 07:00:00,0.0,1008.9119999999999,3.451875,100.0,0.317083333,0.07666666700000001,238.05313 +2014-02-17 08:00:00,0.0,1009.470333,37.83733333,100.0,0.5459166670000001,0.178416667,238.05216319999997 +2014-02-17 09:00:00,2.408755728,1009.831333,101.2375,100.0,1.61275,0.286083333,238.05240489999997 +2014-02-17 10:00:00,0.0,1009.993333,227.395,98.68333333,3.266666667,0.657416667,238.05240489999997 +2014-02-17 11:00:00,0.0,1010.581,175.2391667,93.7,4.977833333,0.4315,238.0519094166666 +2014-02-17 12:00:00,0.0,1010.421,146.02583330000002,91.45833333,6.653583332999999,0.748416667,238.05216319999997 +2014-02-17 13:00:00,0.0,1010.387333,159.2791667,86.13583333,8.241166667,0.38225,238.05140184999996 +2014-02-17 14:00:00,0.0,1010.516667,119.81083329999998,76.72916667,9.520833332999999,0.8281666670000001,238.05114806666666 +2014-02-17 15:00:00,0.0,1010.610333,120.88475,71.24916667,10.0775,1.06525,238.05039878333332 +2014-02-17 16:00:00,0.0,1010.862333,41.23116667,73.375,9.5,1.74525,238.05015706666663 +2014-02-17 17:00:00,0.0,1010.968333,10.25383333,84.815,6.346166667,0.541583333,238.04991534999996 +2014-02-17 18:00:00,0.0,1011.464333,0.05915,96.35,3.83325,0.2705,238.04817506666666 +2014-02-17 19:00:00,0.0,1011.825,0.0,98.3,3.631416667,0.15708333300000002,238.04842884999996 +2014-02-17 20:00:00,0.0,1011.960333,0.0,99.95833333,2.124083333,0.416416667,238.04842884999996 +2014-02-17 21:00:00,0.0,1012.151667,0.0,100.0,0.50975,0.29883333300000003,238.0479212833333 +2014-02-17 22:00:00,0.0,1012.275,0.0,100.0,-0.1515,0.392166667,238.0476675 +2014-02-17 23:00:00,0.0,1012.335333,0.0,100.0,-0.808916667,0.2965,238.0476674833333 +2014-02-18 00:00:00,0.0,1012.5666669999999,0.0,100.0,-1.283083333,0.09,238.0474137 +2014-02-18 01:00:00,0.0,1012.437333,0.0,100.0,-1.766583333,0.042833333,238.0474137 +2014-02-18 02:00:00,0.0,1012.315,0.0,100.0,-1.9503333330000001,0.045416667,238.0474137 +2014-02-18 03:00:00,0.0,1012.008333,0.0,100.0,-1.77525,0.04325,238.0476675 +2014-02-18 04:00:00,0.0,1012.010667,0.0,100.0,-0.9165,0.018583333,238.0474137 +2014-02-18 05:00:00,0.0,1011.989333,0.0,100.0,-1.165833333,0.0,238.0471599 +2014-02-18 06:00:00,0.0,1011.8646669999999,0.0,100.0,-1.0756666670000001,0.047916667,238.0474137 +2014-02-18 07:00:00,0.0,1011.6439999999999,1.716166667,100.0,-1.553166667,0.0395,238.0471599 +2014-02-18 08:00:00,0.0,1011.614333,16.01716667,100.0,-1.559083333,0.06025,238.04614469999999 +2014-02-18 09:00:00,0.0,1011.746333,28.66033333,100.0,-1.311416667,0.2565,238.04614469999999 +2014-02-18 10:00:00,0.0,1011.377333,69.99066667,100.0,-0.7855,0.15733333300000002,238.04590299999998 +2014-02-18 11:00:00,2.3865511440000002,1010.825333,139.2475,100.0,0.9794166670000001,0.129083333,238.04614469999999 +2014-02-18 12:00:00,0.0,1010.336333,170.63666669999998,96.65833333,3.015916667,0.6809999999999999,238.04590299999995 +2014-02-18 13:00:00,0.0,1009.425333,211.96,87.09166667,5.822916667,1.1025,238.04615679999998 +2014-02-18 14:00:00,0.0,1008.809,121.1991667,81.55583333,7.432916667000001,1.392,238.04639849999998 +2014-02-18 15:00:00,0.0,1008.294,83.88333333,78.6275,7.628916667,1.8146666669999998,238.04639849999998 +2014-02-18 16:00:00,0.0,1008.027333,46.99275,80.3375,7.425583333,1.52525,238.04590299999998 +2014-02-18 17:00:00,0.0,1007.818667,14.35618333,90.50833333,6.350833333,1.4638333330000002,238.04566129999998 +2014-02-18 18:00:00,0.0,1007.870667,0.078866667,96.09166667,3.60825,0.349,238.0451779 +2014-02-18 19:00:00,0.0,1007.891667,0.0,98.15,2.4234166669999997,0.40700000000000003,238.04493620000002 +2014-02-18 20:00:00,0.0,1007.846,0.0,99.25833333,1.302083333,0.15683333300000002,238.0456613 +2014-02-18 21:00:00,0.0,1007.8480000000001,0.0,100.0,0.880916667,0.19899999999999998,238.04590299999998 +2014-02-18 22:00:00,0.0,1007.812667,0.0,99.925,1.395083333,0.10133333300000001,238.04615679999998 +2014-02-18 23:00:00,0.0,1007.498,0.0,100.0,1.002916667,0.12775,238.0469061 +2014-02-19 00:00:00,0.0,1007.577,0.0,100.0,1.02425,0.1015,238.0469061 +2014-02-19 01:00:00,2.39217816,1007.8560000000001,0.0,99.91666667,1.79025,0.05475,238.0471599 +2014-02-19 02:00:00,12.65108184,1007.7669999999999,0.0,95.95833333,2.6703333330000003,0.6809999999999999,238.04665229999998 +2014-02-19 03:00:00,0.0,1007.086,0.0,95.83333333,4.1775,1.131166667,238.0469061 +2014-02-19 04:00:00,0.0,1006.806333,0.0,93.88333333,3.899166667,0.10216666699999999,238.0469061 +2014-02-19 05:00:00,0.0,1006.985,0.0,92.48333333,4.185333333,0.165166667,238.04665229999998 +2014-02-19 06:00:00,2.4050227680000003,1007.062667,0.0,94.375,3.6503333330000003,0.057999999999999996,238.04665229999998 +2014-02-19 07:00:00,0.0,1007.220333,1.8338833330000002,94.3,3.32725,0.297083333,238.04639849999998 +2014-02-19 08:00:00,0.0,1007.785,26.79833333,92.01666667,4.11075,0.18966666699999998,238.04614469999999 +2014-02-19 09:00:00,0.0,1008.264333,76.258,91.33333333,7.05125,2.127583333,238.04590299999998 +2014-02-19 10:00:00,0.0,1008.551667,196.9391667,86.58333333,8.66475,2.59975,238.04639849999998 +2014-02-19 11:00:00,0.0,1008.9060000000001,330.5166667,80.45833333,9.523333333,2.708166667,238.04614469999999 +2014-02-19 12:00:00,0.0,1008.854667,182.3266667,75.93083333,9.925,2.2255,238.04590299999995 +2014-02-19 13:00:00,0.0,1008.483667,145.5008333,74.4175,10.115,2.253916667,238.04541959999997 +2014-02-19 14:00:00,0.0,1008.3789999999999,127.86375,72.32083333,10.44416667,2.01325,238.0456613 +2014-02-19 15:00:00,0.0,1008.2460000000001,76.03575,78.72666667,9.185833333,1.7625,238.04541959999997 +2014-02-19 16:00:00,0.0,1008.220667,55.39391667,83.01916667,9.140833333,0.997083333,238.0451779 +2014-02-19 17:00:00,0.0,1008.493333,5.1072,97.24166667,7.1375,0.283583333,238.04393309999998 +2014-02-19 18:00:00,0.0,1009.0830000000001,0.078866667,96.325,6.6975,0.5730833329999999,238.04367929999998 +2014-02-19 19:00:00,21.56295175,1009.830667,0.0,97.0,6.775583332999999,1.3999166669999998,238.04342549999998 +2014-02-19 20:00:00,0.0,1010.0269999999999,0.0,95.93333333,6.063166667000001,1.187083333,238.04342549999993 +2014-02-19 21:00:00,0.0,1010.295667,0.0,96.63333333,5.367083333,0.433333333,238.0444407 +2014-02-19 22:00:00,0.0,1010.343667,0.0,99.85833333,3.794083333,0.2435,238.0444407 +2014-02-19 23:00:00,0.0,1010.508333,0.0,100.0,4.137916667,0.21833333300000002,238.04393309999998 +2014-02-20 00:00:00,0.0,1010.5039999999999,0.0,97.3,4.42475,0.168333333,238.04393309999992 +2014-02-20 01:00:00,0.0,1010.5,0.0,95.475,3.724583333,0.21125,238.04367929999998 +2014-02-20 02:00:00,0.0,1010.548333,0.0,95.31666667,5.027666667,1.17125,238.04418689999997 +2014-02-20 03:00:00,0.0,1010.266667,0.0,95.29166667,4.577166667,0.2715,238.04469449999996 +2014-02-20 04:00:00,0.0,1010.079,0.0,94.78333333,4.325666667,0.35025,238.04393309999998 +2014-02-20 05:00:00,0.0,1009.925667,0.0,97.43333333,4.1155,0.16725,238.04367929999992 +2014-02-20 06:00:00,0.0,1009.3960000000001,0.0,99.95,3.902666667,0.36658333299999996,238.0439331 +2014-02-20 07:00:00,0.0,1009.156333,2.208733333,100.0,3.847916667,0.73725,238.0441869 +2014-02-20 08:00:00,0.0,1009.1353330000001,22.421,100.0,4.153416667,0.42616666700000005,238.04418689999997 +2014-02-20 09:00:00,0.0,1008.929667,72.80408333,96.025,5.09275,0.664166667,238.04469449999996 +2014-02-20 10:00:00,0.0,1008.660667,142.8991667,88.70833333,7.483833333,0.506833333,238.0451779 +2014-02-20 11:00:00,0.0,1008.385667,118.32916670000002,85.66666667,8.473333333,2.0245833330000003,238.04614469999999 +2014-02-20 12:00:00,0.0,1007.561333,293.4166667,79.26333333,9.753333332999999,2.4403333330000003,238.04614469999999 +2014-02-20 13:00:00,0.0,1006.592333,202.545,74.33,10.33666667,2.892,238.04639849999998 +2014-02-20 14:00:00,0.0,1005.832,100.3975,73.48916667,10.30916667,2.468416667,238.0474137 +2014-02-20 15:00:00,0.0,1005.235667,100.28200000000001,70.52583333,10.7225,1.9671666669999999,238.0474137 +2014-02-20 16:00:00,0.0,1004.731667,29.81708333,70.43083333,10.17416667,2.63125,238.0471599 +2014-02-20 17:00:00,0.0,1004.306667,4.614808333,74.87166667,9.653333332999999,2.090833333,238.04665229999998 +2014-02-20 18:00:00,0.0,1004.0189999999999,0.078866667,75.78833333,9.4325,2.61375,238.0469061 +2014-02-20 19:00:00,0.0,1003.648,0.0,75.5125,9.1825,2.28325,238.04614469999999 +2014-02-20 20:00:00,0.0,1003.273333,0.0,75.9375,9.0875,2.25925,238.04665229999998 +2014-02-20 21:00:00,0.0,1002.944,0.0,75.19833333,8.725833332999999,1.5095833330000001,238.0471599 +2014-02-20 22:00:00,0.0,1002.681667,0.0,77.73416667,8.978333333,1.3466666669999998,238.04665229999998 +2014-02-20 23:00:00,0.0,1002.102333,0.0,83.1,9.576666667000001,1.667416667,238.0471599 +2014-02-21 00:00:00,0.0,1001.496333,0.0,86.7,9.168333333,1.4909166669999998,238.04639849999998 +2014-02-21 01:00:00,9.424713528,1001.373333,0.0,89.66666667,9.288333332999999,1.934166667,238.04639849999998 +2014-02-21 02:00:00,19.51938041,1000.8646669999999,0.0,93.65833333,8.7675,1.4525,238.04639849999998 +2014-02-21 03:00:00,5.430857832,1000.473333,0.0,95.60833333,8.5625,2.119916667,238.04614469999999 +2014-02-21 04:00:00,0.0,1000.204,0.0,94.8,8.327166667,1.5801666669999999,238.04639849999998 +2014-02-21 05:00:00,0.0,1000.472667,0.0,92.81666667,8.5575,1.6996666669999998,238.04690609999997 +2014-02-21 06:00:00,0.0,1000.704333,0.0,91.1,8.38075,2.268916667,238.0469061 +2014-02-21 07:00:00,0.0,1000.7810000000001,2.8788083330000003,92.89166667,7.928583333,1.875833333,238.04614469999999 +2014-02-21 08:00:00,0.0,1000.887333,20.41025,91.5,8.115916667,1.3275,238.04566129999998 +2014-02-21 09:00:00,0.0,1001.335,72.17058333,85.11666667,8.725833332999999,1.700166667,238.0451779 +2014-02-21 10:00:00,0.0,1001.7810000000001,153.5916667,80.13333333,9.741666667,2.7534166669999998,238.04541960000003 +2014-02-21 11:00:00,0.0,1002.056,109.24666670000002,77.16083333,9.29,3.433333333,238.04566129999998 +2014-02-21 12:00:00,0.0,1001.981667,219.5025,72.39416667,9.375,4.091583333,238.04541960000003 +2014-02-21 13:00:00,3.581528664,1002.203667,138.59125,77.7675,8.83025,3.504416667,238.0451779 +2014-02-21 14:00:00,0.0,1002.505667,188.79641669999998,74.77833333,9.005,3.533833333,238.04418689999997 +2014-02-21 15:00:00,0.0,1003.060333,146.56191669999998,76.69083333,8.8975,2.85275,238.0441869 +2014-02-21 16:00:00,0.0,1003.353667,56.16391667,73.34416667,8.377416667,2.327666667,238.04393309999998 +2014-02-21 17:00:00,27.9999167,1004.5219999999999,7.374616667000001,90.84416667,5.817416667000001,1.739916667,238.04342549999993 +2014-02-21 18:00:00,0.0,1005.303333,0.216883333,93.19166667,4.494166667,1.407083333,238.04342549999993 +2014-02-21 19:00:00,0.0,1006.078667,0.0,96.575,2.85825,0.600166667,238.04317169999993 +2014-02-21 20:00:00,0.0,1006.6080000000001,0.0,97.175,1.7715833330000001,0.40433333299999996,238.04342549999993 +2014-02-21 21:00:00,0.0,1007.026667,0.0,95.94166667,0.665166667,0.133,238.04342549999998 +2014-02-21 22:00:00,0.0,1007.464333,0.0,94.05833333,-0.215166667,0.221833333,238.04317169999993 +2014-02-21 23:00:00,0.0,1007.720667,0.0,95.85,-0.696,0.166,238.04268829999998 +2014-02-22 00:00:00,0.0,1007.841667,0.0,92.04166667,-0.4935,0.26058333300000003,238.04317169999993 +2014-02-22 01:00:00,0.0,1007.741667,0.0,92.40833333,-0.123333333,0.0405,238.04342549999993 +2014-02-22 02:00:00,0.0,1007.796,0.0,93.46666667,0.142833333,0.738833333,238.04292999999996 +2014-02-22 03:00:00,0.0,1007.562333,0.0,91.98333333,3.25325,1.9365,238.04317169999993 +2014-02-22 04:00:00,3.1674283919999997,1007.747667,0.0,88.85833333,3.653666667,2.0789166669999997,238.04292999999996 +2014-02-22 05:00:00,2.981954232,1007.9960000000001,0.0,89.675,3.3351666669999998,1.275166667,238.04292999999996 +2014-02-22 06:00:00,0.0,1007.983333,0.0,89.65,-0.195833333,0.40875,238.04292999999996 +2014-02-22 07:00:00,0.0,1008.197333,4.278925,88.38333333,-0.3265,0.446,238.04292999999996 +2014-02-22 08:00:00,0.0,1008.591333,18.63691667,88.6,1.578,1.20175,238.04244659999995 +2014-02-22 09:00:00,0.0,1009.176667,100.37125,84.34166667,5.0425833330000005,1.9226666669999999,238.04268829999998 +2014-02-22 10:00:00,0.0,1009.5666669999999,195.6908333,83.25833333,5.73925,2.7160833330000003,238.04244659999995 +2014-02-22 11:00:00,0.0,1009.962,296.3683333,82.89166667,6.4235,2.887916667,238.04244659999998 +2014-02-22 12:00:00,0.0,1010.014667,114.1525,82.55,6.923666667000001,2.8770833330000003,238.04292999999996 +2014-02-22 13:00:00,0.0,1010.060333,102.50916670000001,86.46666667,6.411916667000001,2.1783333330000003,238.04196319999997 +2014-02-22 14:00:00,0.0,1010.214333,54.75983333,88.64166667,6.1129999999999995,1.561916667,238.0417215 +2014-02-22 15:00:00,0.0,1010.722667,50.04941667,89.74166667,6.268833333,1.4871666669999999,238.0417215 +2014-02-22 16:00:00,0.0,1011.1160000000001,22.08675,89.98333333,6.178583333,0.791166667,238.04121393333332 +2014-02-22 17:00:00,0.0,1011.5873330000001,6.566175,94.10833333,5.99675,0.214416667,238.04070636666665 +2014-02-22 18:00:00,0.0,1012.222333,0.13801666699999998,94.26666667,5.524666667000001,0.534166667,238.04045258333335 +2014-02-22 19:00:00,0.0,1012.855667,0.0,96.4,4.499916667,0.714916667,238.04019879999996 +2014-02-22 20:00:00,0.0,1013.428667,0.0,92.39166667,3.814083333,0.1025,238.03995708333332 +2014-02-22 21:00:00,0.0,1014.118,0.0,92.30833333,3.445583333,0.081916667,238.03995708333332 +2014-02-22 22:00:00,0.0,1014.766333,0.0,94.74166667,3.749166667,0.132416667,238.03995708333332 +2014-02-22 23:00:00,0.0,1015.0830000000001,0.0,93.96666667,3.93175,0.35558333299999995,238.03947365 +2014-02-23 00:00:00,0.0,1015.270667,0.0,94.35833333,3.5213333330000003,0.53225,238.03899021666666 +2014-02-23 01:00:00,0.0,1015.685333,0.0,97.83333333,3.96025,1.31075,238.03874850000003 +2014-02-23 02:00:00,0.0,1016.028667,0.0,91.81666667,4.711833333,1.5934166669999998,238.03899021666666 +2014-02-23 03:00:00,0.0,1016.397667,0.0,89.10833333,4.4975,1.03225,238.03849471666663 +2014-02-23 04:00:00,0.0,1016.612333,0.0,88.425,3.964916667,1.3053333329999999,238.03874850000003 +2014-02-23 05:00:00,0.0,1017.072667,0.0,88.79166667,3.817416667,1.4246666669999999,238.03874850000003 +2014-02-23 06:00:00,0.0,1017.264333,0.0,90.38333333,3.5545,1.7589166669999998,238.03849471666663 +2014-02-23 07:00:00,0.0,1017.375,5.008791667,93.70833333,3.297916667,1.8514166669999998,238.03747958333335 +2014-02-23 08:00:00,0.0,1017.7869999999999,39.30266667,86.94166667,3.678416667,1.57125,238.03773336666666 +2014-02-23 09:00:00,0.0,1018.048,110.6758333,81.2,5.634333333,1.6406666669999999,238.03698408333332 +2014-02-23 10:00:00,0.0,1018.124667,137.3808333,76.52083333,6.519333333,2.7239999999999998,238.0372258 +2014-02-23 11:00:00,0.0,1018.241667,335.6091667,70.015,7.483416667,3.371666667,238.03824093333333 +2014-02-23 12:00:00,0.0,1018.029667,350.3441667,67.8025,8.733166667,2.98325,238.03824093333333 +2014-02-23 13:00:00,0.0,1017.294333,331.4383333,67.43,8.909166667000001,3.57475,238.03773336666666 +2014-02-23 14:00:00,0.0,1016.825333,202.7841667,69.0825,9.160833333,2.4973333330000003,238.03798714999996 +2014-02-23 15:00:00,0.0,1016.435667,101.3425,69.35583333,9.196666667,1.78325,238.03849471666663 +2014-02-23 16:00:00,0.0,1016.314667,48.25916667,71.12083333,8.735,1.7915,238.03798715000002 +2014-02-23 17:00:00,0.0,1016.335333,7.256958332999999,72.80833333,8.21625,1.90225,238.03698408333332 +2014-02-23 18:00:00,0.0,1016.439333,0.09858333300000001,74.35416667,7.468666667000001,1.595,238.03674236666666 +2014-02-23 19:00:00,0.0,1016.541667,0.0,81.245,6.450416667000001,1.4485833330000002,238.0372258 +2014-02-23 20:00:00,0.0,1016.383667,0.0,90.95,3.384416667,0.526833333,238.03650065 +2014-02-23 21:00:00,0.0,1016.343667,0.0,95.25,1.6293333330000002,0.2935,238.03625893333333 +2014-02-23 22:00:00,0.0,1016.113,0.0,97.94166667,0.339416667,0.34033333299999996,238.03601721666666 +2014-02-23 23:00:00,0.0,1015.660667,0.0,99.90833333,-0.533416667,0.15466666699999998,238.0355217166667 +2014-02-24 00:00:00,0.0,1015.298333,0.0,100.0,-1.321,0.169833333,238.0355217166667 +2014-02-24 01:00:00,0.0,1014.875333,0.0,100.0,-1.917416667,0.179916667,238.03526793333333 +2014-02-24 02:00:00,0.0,1014.365,0.0,100.0,-2.2214166669999997,0.23975,238.03526793333336 +2014-02-24 03:00:00,0.0,1013.721333,0.0,100.0,-2.58425,0.1245,238.0357755 +2014-02-24 04:00:00,0.0,1013.358333,0.0,100.0,-3.0026666669999997,0.2005,238.0355217166667 +2014-02-24 05:00:00,0.0,1013.092,0.0,100.0,-3.324083333,0.128083333,238.0355217166667 +2014-02-24 06:00:00,0.0,1012.944,0.0,100.0,-3.638833333,0.202083333,238.0357755 +2014-02-24 07:00:00,0.0,1012.985,6.1737083329999995,100.0,-3.458916667,0.159833333,238.0357755 +2014-02-24 08:00:00,0.0,1013.289333,23.04108333,100.0,-1.058416667,0.10975,238.0357755 +2014-02-24 09:00:00,2.387461848,1013.221333,120.09841670000002,98.78333333,3.0220833330000003,0.5035,238.0355217166667 +2014-02-24 10:00:00,0.0,1013.073,241.2608333,78.35916667,5.838916667,2.8080000000000003,238.03576343333336 +2014-02-24 11:00:00,0.0,1012.408667,285.6991667,63.89083333,7.7409166670000005,3.455083333,238.03625893333333 +2014-02-24 12:00:00,0.0,1011.971667,306.7925,55.80666667,9.395,3.09975,238.03625893333333 +2014-02-24 13:00:00,0.0,1010.9839999999999,299.2733333,54.60333333,10.795,2.798916667,238.03601721666666 +2014-02-24 14:00:00,0.0,1010.319333,270.9583333,51.2775,11.7725,2.806166667,238.03625893333333 +2014-02-24 15:00:00,0.0,1009.7189999999999,196.035,50.095,11.80666667,2.913333333,238.03601721666666 +2014-02-24 16:00:00,0.0,1009.516667,108.83833329999999,49.29583333,10.97,2.82475,238.0357755 +2014-02-24 17:00:00,0.0,1009.695667,29.26455,63.71083333,8.689166667,1.76325,238.0355217166667 +2014-02-24 18:00:00,0.0,1009.897667,0.41405,79.655,6.10475,1.688833333,238.03425280000002 +2014-02-24 19:00:00,0.0,1010.048,0.0,62.44416667,6.074166667,2.540083333,238.03376939999998 +2014-02-24 20:00:00,0.0,1010.093667,0.0,68.68,4.284166667,1.302166667,238.03425280000002 +2014-02-24 21:00:00,0.0,1010.092,0.0,89.75833333,1.7761666669999998,0.32358333300000003,238.03401109999996 +2014-02-24 22:00:00,0.0,1009.714667,0.0,96.05833333,0.58025,0.34466666700000004,238.03401110000001 +2014-02-24 23:00:00,0.0,1009.498,0.0,98.10833333,-0.11958333300000001,0.303666667,238.0335277 +2014-02-25 00:00:00,0.0,1009.315,0.0,99.31666667,-0.91325,0.21858333300000002,238.0328026 +2014-02-25 01:00:00,0.0,1009.175,0.0,99.99166667,-1.24825,0.154,238.033286 +2014-02-25 02:00:00,0.0,1008.873333,0.0,100.0,-1.486,0.258083333,238.0328026 +2014-02-25 03:00:00,0.0,1008.410667,0.0,100.0,-1.66425,0.235,238.03328599999998 +2014-02-25 04:00:00,0.0,1008.1916669999999,0.0,100.0,-1.8645833330000001,0.203083333,238.0328026 +2014-02-25 05:00:00,0.0,1008.189667,0.0,100.0,-2.091333333,0.237,238.0328026 +2014-02-25 06:00:00,0.0,1008.1353330000001,0.0,100.0,-1.972666667,0.11591666699999999,238.03304430000003 +2014-02-25 07:00:00,0.0,1008.262333,7.3185583329999995,100.0,-1.3980000000000001,0.073916667,238.03304430000003 +2014-02-25 08:00:00,0.0,1008.497667,19.05516667,100.0,-0.19075,0.02325,238.0325488 +2014-02-25 09:00:00,0.0,1008.142333,106.92266670000001,96.85833333,1.7765,0.048416667000000004,238.03304430000003 +2014-02-25 10:00:00,0.0,1007.8563330000001,218.8025,87.03333333,6.897083332999999,0.36775,238.0335277 +2014-02-25 11:00:00,3.839973768,1007.908333,257.5883333,69.3525,10.01166667,2.463333333,238.0335277 +2014-02-25 12:00:00,0.0,1007.496667,250.3025,64.61583333,11.08666667,2.9866666669999997,238.03401109999996 +2014-02-25 13:00:00,0.0,1007.191333,234.5816667,60.94333333,11.75083333,3.44075,238.03425280000002 +2014-02-25 14:00:00,0.0,1007.254333,92.52366667,63.54166667,11.625,2.2805,238.03328599999998 +2014-02-25 15:00:00,0.0,1006.858333,38.63125,68.895,10.61333333,1.84575,238.03401109999996 +2014-02-25 16:00:00,0.0,1006.8710000000001,26.91675,71.48583333,10.03333333,1.810416667,238.0335277 +2014-02-25 17:00:00,0.0,1007.068333,8.73635,73.67166667,9.400833333,0.938416667,238.03328599999998 +2014-02-25 18:00:00,0.0,1007.233333,0.335183333,87.21666667,8.223333333,0.9895,238.03328599999998 +2014-02-25 19:00:00,0.0,1007.456,0.0,84.88166667,7.973166667,1.32375,238.0327905 +2014-02-25 20:00:00,0.0,1007.610667,0.0,79.88166667,8.254166667,1.9024166669999998,238.03229499999998 +2014-02-25 21:00:00,0.0,1007.370667,0.0,86.67416667,7.6325833329999995,1.866333333,238.0328026 +2014-02-25 22:00:00,0.0,1007.714333,0.0,77.68333333,7.148,1.8446666669999998,238.03204119999998 +2014-02-25 23:00:00,0.0,1007.571,0.0,77.04166667,7.062583332999999,0.905166667,238.03178739999998 +2014-02-26 00:00:00,0.0,1007.65,0.0,87.875,5.519083332999999,0.322833333,238.03204119999998 +2014-02-26 01:00:00,0.0,1007.797667,0.0,86.82666667,5.2565,0.2915,238.03178739999998 +2014-02-26 02:00:00,0.0,1007.960667,0.0,91.69166667,5.04375,0.164833333,238.0312798 +2014-02-26 03:00:00,0.0,1007.862333,0.0,94.11666667,5.189333333,0.06375,238.0315336 +2014-02-26 04:00:00,0.0,1007.931,0.0,95.66666667,5.050333333,0.02275,238.0315336 +2014-02-26 05:00:00,0.0,1008.2810000000001,0.0,97.075,5.632083333,0.902666667,238.03204119999998 +2014-02-26 06:00:00,0.0,1008.6289999999999,0.0,97.4,5.7285833329999996,0.9780833329999999,238.0312798 +2014-02-26 07:00:00,0.0,1009.103333,3.115816667,96.85833333,5.31125,0.8271666670000001,238.0310260166667 +2014-02-26 08:00:00,0.0,1009.876667,27.19325,85.225,6.694166667,1.2185,238.03077223333332 +2014-02-26 09:00:00,0.0,1010.470333,103.04175,82.1925,8.629583333,0.806583333,238.03051845000002 +2014-02-26 10:00:00,0.0,1010.926667,124.425,78.71583333,9.348333333,1.08625,238.0315336 +2014-02-26 11:00:00,0.0,1011.326667,121.555,76.13916667,9.835,0.9933333329999999,238.03127981666668 +2014-02-26 12:00:00,0.0,1011.4689999999999,221.94666669999998,73.01166667,10.80166667,1.318916667,238.03051845000002 +2014-02-26 13:00:00,0.0,1011.522667,169.21333330000002,71.54166667,10.95,1.294833333,238.03077223333332 +2014-02-26 14:00:00,0.0,1011.544,96.71083333,71.65333333,10.8825,1.305083333,238.03053051666666 +2014-02-26 15:00:00,0.0,1011.556,46.69466667,73.8975,10.37333333,0.8364166670000001,238.03500208333335 +2014-02-26 16:00:00,0.0,1011.822667,30.58533333,75.86666667,9.809166667000001,0.49841666700000004,238.0330443 +2014-02-26 17:00:00,0.0,1012.116333,12.10755,82.31416667,8.81,0.19399999999999998,238.032295 +2014-02-26 18:00:00,0.0,1012.87,0.2366,90.83333333,7.976666667000001,0.407916667,238.03077223333332 +2014-02-26 19:00:00,0.0,1013.5310000000001,0.0,89.25833333,7.746833333,0.3545,238.03077223333332 +2014-02-26 20:00:00,2.53163736,1013.993333,0.0,96.81666667,7.081166667000001,0.47275,238.0297571 +2014-02-26 21:00:00,5.01056124,1014.4810000000001,0.0,99.65833333,6.673666667000001,0.41283333299999997,238.02903195 +2014-02-26 22:00:00,0.0,1014.533333,0.0,100.0,6.1115,0.165833333,238.02879023333335 +2014-02-26 23:00:00,0.0,1014.568667,0.0,100.0,5.593999999999999,0.045166667,238.0287902333333 +2014-02-27 00:00:00,0.0,1014.675,0.0,100.0,4.410666667,0.16875,238.02830679999997 +2014-02-27 01:00:00,2.489200824,1014.7,0.0,100.0,2.604083333,0.304083333,238.02779923333333 +2014-02-27 02:00:00,0.0,1014.7810000000001,0.0,100.0,1.4998333330000002,0.2465,238.02754545000002 +2014-02-27 03:00:00,0.0,1014.866667,0.0,100.0,1.8495,0.134916667,238.02729166666668 +2014-02-27 04:00:00,0.0,1014.798,0.0,100.0,1.8965833330000001,0.16775,238.02729166666666 +2014-02-27 05:00:00,0.0,1014.573333,0.0,100.0,1.414833333,0.113,238.02703788333338 +2014-02-27 06:00:00,0.0,1014.273,0.019716667,100.0,0.275333333,0.210916667,238.02703788333338 +2014-02-27 07:00:00,0.0,1014.1560000000001,6.922941667000001,100.0,-0.497666667,0.062333333,238.02703788333335 +2014-02-27 08:00:00,0.0,1014.502,29.92033333,100.0,0.6811666670000001,0.14775,238.02630066666666 +2014-02-27 09:00:00,0.0,1014.296333,85.69925,100.0,3.021833333,0.365,238.02678410000001 +2014-02-27 10:00:00,0.0,1013.615333,220.0625,97.10833333,5.3638333330000005,0.9328333329999999,238.02729166666668 +2014-02-27 11:00:00,0.0,1012.569667,284.10083330000003,90.51666667,6.829,1.841666667,238.02754545000002 +2014-02-27 12:00:00,0.0,1011.432333,262.1733333,66.53083333,9.305,2.266,238.02830679999997 +2014-02-27 13:00:00,0.0,1010.178,279.895,59.5975,10.01833333,2.850333333,238.02853644999996 +2014-02-27 14:00:00,0.0,1009.300333,221.06,60.045,9.921666667,2.8165,238.02903195 +2014-02-27 15:00:00,0.0,1008.557333,114.75333329999998,67.08666667,8.821666667,2.68925,238.02854851666666 +2014-02-27 16:00:00,0.0,1007.561,60.102,69.73166667,8.596666667000001,2.5525,238.02879023333335 +2014-02-27 17:00:00,0.0,1006.865,7.493441667000001,71.91583333,7.656083333,2.4748333330000003,238.02830679999997 +2014-02-27 18:00:00,0.0,1006.452333,0.2366,73.9625,6.858083333,1.97625,238.02830679999997 +2014-02-27 19:00:00,0.0,1006.383,0.0,77.18416667,6.683666667000001,1.179833333,238.02854851666666 +2014-02-27 20:00:00,18.08217634,1006.402667,0.0,91.55,5.185916667,1.9825,238.02830679999997 +2014-02-27 21:00:00,5.38075824,1005.763,0.0,93.95,4.70125,0.807,238.02829473333335 +2014-02-27 22:00:00,9.870650376,1005.144333,0.0,97.13333333,4.4255833330000005,0.360333333,238.02927366666668 +2014-02-27 23:00:00,2.665908552,1004.398667,0.0,99.0,4.381166667,0.388083333,238.02951538333335 +2014-02-28 00:00:00,2.57737512,1003.804333,0.0,96.33333333,4.1425,0.236916667,238.03026466666665 +2014-02-28 01:00:00,5.470464744,1003.656333,0.0,96.00833333,3.985666667,1.214083333,238.03051844999996 +2014-02-28 02:00:00,0.0,1003.267333,0.0,97.0,3.727083333,1.255583333,238.03051845000002 +2014-02-28 03:00:00,2.9216481360000004,1002.796,0.0,97.58333333,3.645333333,1.202333333,238.0310260166667 +2014-02-28 04:00:00,2.85681288,1002.350333,0.0,98.75833333,3.694583333,1.676166667,238.03127981666668 +2014-02-28 05:00:00,2.6027514,1001.979333,0.0,96.11666667,3.0213333330000003,0.664416667,238.03204119999998 +2014-02-28 06:00:00,0.0,1001.763,0.019716667,97.75833333,2.3805,0.884166667,238.0312798 +2014-02-28 07:00:00,0.0,1001.202333,6.389191667,99.9,2.4811666669999997,1.3700833330000002,238.0312798 +2014-02-28 08:00:00,0.0,1000.731667,27.51058333,99.25833333,2.926583333,1.50325,238.03178739999998 +2014-02-28 09:00:00,0.0,1000.207,82.33925,95.85,4.233666667,1.9690833330000002,238.03178739999998 +2014-02-28 10:00:00,0.0,999.4566667000001,156.9983333,89.94166667,5.794083333,2.492666667,238.03204119999998 +2014-02-28 11:00:00,0.0,999.044,198.6191667,83.59,6.957166667,3.085916667,238.0325488 +2014-02-28 12:00:00,0.0,998.3839999999999,192.3425,81.66833333,7.290666667000001,2.739416667,238.03304430000003 +2014-02-28 13:00:00,0.0,997.5986667000001,116.67716670000001,85.54166667,6.834833333,2.5590833330000002,238.03376939999998 +2014-02-28 14:00:00,0.0,996.938,185.6283333,85.48416667,7.873416667000001,2.064166667,238.03376939999998 +2014-02-28 15:00:00,0.0,996.6043332999999,114.6133333,79.59666667,7.75975,1.92225,238.03425280000002 +2014-02-28 16:00:00,0.0,996.4396667000001,69.86758333,80.61833333,7.577666667000001,1.65125,238.03376939999998 +2014-02-28 17:00:00,0.0,996.1856667000002,18.91166667,81.48333333,7.5853333329999995,1.07225,238.0335277 +2014-02-28 18:00:00,0.0,995.9143332999998,0.8282166670000001,89.175,5.792000000000001,0.434,238.0335277 +2014-02-28 19:00:00,0.0,996.3043332999998,0.0,96.65833333,4.747,0.050333333,238.0335277 +2014-02-28 20:00:00,0.0,996.154,0.0,93.88333333,4.6925,0.132833333,238.03304430000003 +2014-02-28 21:00:00,0.0,996.0793332999999,0.0,92.64166667,5.16325,0.448083333,238.03376939999998 +2014-02-28 22:00:00,0.0,996.0146667000001,0.0,96.85,4.504,0.140916667,238.0335277 +2014-02-28 23:00:00,0.0,996.1996667000001,0.0,90.74166667,4.57425,0.2955,238.0328026 +2014-01-03 00:00:00,0.0,996.4893332999999,0.0,93.00833333,4.305583333,0.30925,238.017713 +2014-01-03 01:00:00,0.0,996.86,0.0,93.29166667,5.118083333,1.085083333,238.01707066666665 +2014-01-03 02:00:00,0.0,996.9316667000002,0.0,93.61666667,5.292083333,1.1465,238.01644399999998 +2014-01-03 03:00:00,0.0,996.7146667000002,0.0,98.9,2.61,0.46233333299999996,238.01707066666665 +2014-01-03 04:00:00,0.0,996.7143332999999,0.0,100.0,1.827666667,0.15383333300000002,238.01675733333332 +2014-01-03 05:00:00,0.0,996.9643332999999,0.0,100.0,1.39175,0.21383333300000001,238.01644399999998 +2014-01-03 06:00:00,0.0,997.0833332999998,0.05915,100.0,0.778416667,0.2595,238.01675733333332 +2014-01-03 07:00:00,0.0,997.3123332999999,9.113416667000001,100.0,-0.177833333,0.203083333,238.01644399999998 +2014-01-03 08:00:00,0.0,997.5976667000001,49.07058333,100.0,2.0789166669999997,0.08825,238.01581733333333 +2014-01-03 09:00:00,0.0,997.802,133.0233333,98.68333333,4.466666667,0.6928333329999999,238.01675733333332 +2014-01-03 10:00:00,0.0,997.8206667000002,122.61666670000001,93.275,6.017416667000001,1.151666667,238.01644399999998 +2014-01-03 11:00:00,0.0,997.8023332999999,115.115,87.09166667,7.0375,0.54325,238.01675733333332 +2014-01-03 12:00:00,0.0,997.44,46.44033333,82.80833333,6.760416667,0.50075,238.01707066666665 +2014-01-03 13:00:00,0.0,997.0939999999999,52.86166667,81.13333333,6.741083333,0.26425,238.01613066666664 +2014-01-03 14:00:00,0.0,996.8833332999999,60.34291667,84.2,6.749916667000001,0.416416667,238.015504 +2014-01-03 15:00:00,0.0,996.694,42.04375,84.04166667,6.91075,0.743916667,238.01548833333334 +2014-01-03 16:00:00,0.0,996.5626667000001,25.557,83.625,6.89225,0.276416667,238.015504 +2014-01-03 17:00:00,0.0,996.35,11.00376667,84.4,6.372916667,0.292083333,238.015175 +2014-01-03 18:00:00,0.0,996.6416667000001,0.3549,91.98333333,5.606166667,0.319666667,238.014846 +2014-01-03 19:00:00,0.0,996.529,0.0,97.81666667,4.36825,0.346583333,238.014188 +2014-01-03 20:00:00,0.0,996.5333332999999,0.0,99.75833333,2.67925,0.318,238.013859 +2014-01-03 21:00:00,0.0,996.9746667000002,0.0,100.0,2.089666667,0.179583333,238.01352999999997 +2014-01-03 22:00:00,0.0,997.2206667000002,0.0,98.85833333,3.277083333,0.10116666699999999,238.01320099999998 +2014-01-03 23:00:00,0.0,996.9939999999999,0.0,98.91666667,3.587916667,0.1275,238.012872 +2014-02-03 00:00:00,0.0,996.9956667000001,0.0,99.98333333,2.399916667,0.170916667,238.0640551 +2014-02-03 01:00:00,0.0,997.075,0.0,100.0,0.39866666700000003,0.232833333,238.06380131666666 +2014-02-03 02:00:00,0.0,996.9960000000001,0.0,100.0,-0.402583333,0.21325,238.06380131666666 +2014-02-03 03:00:00,0.0,997.2226667000001,0.0,100.0,-0.8905,0.23875,238.06329374999999 +2014-02-03 04:00:00,0.0,997.4703332999999,0.0,100.0,-1.506666667,0.062583333,238.06329374999999 +2014-02-03 05:00:00,0.0,998.0953332999999,0.0,100.0,-1.8769999999999998,0.156,238.06278618333337 +2014-02-03 06:00:00,0.0,998.508,0.05915,100.0,-2.2301666669999998,0.285,238.06303996666668 +2014-02-03 07:00:00,0.0,999.193,6.884325,100.0,-2.607583333,0.163666667,238.06303996666668 +2014-02-03 08:00:00,0.0,1000.049333,47.85433333,100.0,-1.478833333,0.305666667,238.06278618333337 +2014-02-03 09:00:00,2.6488661280000003,1000.416667,150.1908333,97.38333333,1.50625,0.756916667,238.06204899999997 +2014-02-03 10:00:00,0.0,1000.5060000000001,243.3258333,80.27916667,6.086916667000001,1.23475,238.0625324 +2014-02-03 11:00:00,0.0,1000.933,287.8516667,78.03166667,6.5396666670000005,1.6165,238.06229069999998 +2014-02-03 12:00:00,0.0,1000.902333,242.06,73.46,7.382999999999999,1.5434166669999998,238.0625324 +2014-02-03 13:00:00,0.0,1000.469333,197.0266667,71.43833333,7.715416667,1.531166667,238.0625324 +2014-02-03 14:00:00,0.0,999.7756667000001,151.375,70.07083333,7.391583333,1.4384166669999998,238.06278618333337 +2014-02-03 15:00:00,25.38205949,999.2376667000001,121.28083329999998,71.6075,7.312666667,1.0231666670000001,238.06278618333337 +2014-02-03 16:00:00,0.0,999.069,91.01983333,74.56583333,7.078416667000001,1.84725,238.06278618333337 +2014-02-03 17:00:00,0.0,998.6173332999998,20.46910833,79.59416667,6.337083333,2.2023333330000003,238.06278618333337 +2014-02-03 18:00:00,0.0,997.8693332999999,0.611275,82.1,4.539666667,1.47425,238.0625324 +2014-02-03 19:00:00,0.0,997.3710000000001,0.0,88.95,1.322083333,0.769333333,238.0615656 +2014-02-03 20:00:00,0.0,996.6343332999999,0.0,97.59166667,0.068833333,0.655,238.06180729999997 +2014-02-03 21:00:00,0.0,995.4863332999998,0.0,99.825,-0.839833333,0.071916667,238.06180729999997 +2014-02-03 22:00:00,0.0,994.4406667000002,0.0,100.0,-1.462666667,0.023,238.06132389999993 +2014-02-03 23:00:00,0.0,993.332,0.0,100.0,-1.661583333,0.213166667,238.0608284 +2014-03-03 00:00:00,0.0,992.432,0.0,100.0,-1.307083333,0.4275,238.0253338 +2014-03-03 01:00:00,0.0,991.4966667000001,0.0,99.55833333,-0.886166667,0.7443333329999999,238.0253338 +2014-03-03 02:00:00,0.0,990.6713332999999,0.0,97.725,-1.52725,0.0365,238.02605895 +2014-03-03 03:00:00,0.0,989.6533332999999,0.0,98.89166667,-0.725666667,0.02075,238.02605895 +2014-03-03 04:00:00,0.0,988.6066667000001,0.0,99.175,0.03975,0.368333333,238.02581723333333 +2014-03-03 05:00:00,0.0,988.171,0.0,99.81666667,0.788083333,0.198833333,238.02605895 +2014-03-03 06:00:00,0.0,987.5653332999999,0.05915,98.575,1.0776666670000001,0.571916667,238.02605895 +2014-03-03 07:00:00,0.0,987.073,14.55638333,99.03333333,0.773166667,0.441666667,238.02605895 +2014-03-03 08:00:00,0.0,986.9726667000001,50.64966667,94.29166667,2.0225,0.63975,238.02630066666666 +2014-03-03 09:00:00,0.0,987.1833332999998,79.96333333,89.2,3.9674166669999997,2.523583333,238.02630066666666 +2014-03-03 10:00:00,0.0,987.5453332999999,67.14166667,85.54166667,4.863166667,2.353333333,238.02654238333335 +2014-03-03 11:00:00,0.0,987.8853332999998,105.55416670000001,90.95833333,5.42275,2.22375,238.02605895 +2014-03-03 12:00:00,0.0,988.0980000000001,227.96083330000002,83.85833333,7.27075,2.46975,238.02581723333333 +2014-03-03 13:00:00,3.516496896,987.875,128.58416670000003,83.81666667,7.8034166670000005,2.759,238.02581723333333 +2014-03-03 14:00:00,0.0,987.9643332999999,153.2883333,82.12833333,7.39725,2.75325,238.02557551666666 +2014-03-03 15:00:00,0.0,988.4266667000002,94.52566667,78.6075,7.425583333,2.795666667,238.0253338 +2014-03-03 16:00:00,0.0,988.7726667000002,61.41391667,79.31166667,8.000083333,1.97175,238.0253338 +2014-03-03 17:00:00,0.0,989.258,27.74625,82.0825,6.7423333329999995,1.4651666669999999,238.02457245000002 +2014-03-03 18:00:00,0.0,989.941,1.636775,91.60833333,5.0360833330000006,1.075583333,238.02406488333335 +2014-03-03 19:00:00,0.0,990.3933332999999,0.0,98.9,2.80575,0.5750833329999999,238.0235694 +2014-03-03 20:00:00,0.0,990.812,0.0,99.95833333,1.6910833330000001,0.27625,238.02356940000004 +2014-03-03 21:00:00,0.0,991.3893332999999,0.0,100.0,0.9604166670000001,0.278083333,238.02381110000002 +2014-03-03 22:00:00,0.0,991.7289999999999,0.0,100.0,0.29833333300000003,0.300166667,238.0235694 +2014-03-03 23:00:00,0.0,991.9810000000001,0.0,100.0,-0.54575,0.225166667,238.0228443 +2014-04-03 00:00:00,0.0,992.3016667000002,0.0,100.0,-1.012833333,0.15425,237.95376410000003 +2014-04-03 01:00:00,0.0,992.9036667000001,0.0,100.0,-1.56525,0.11466666699999999,237.9534132 +2014-04-03 02:00:00,0.0,993.0793332999999,0.0,100.0,-1.979,0.138083333,237.9534132 +2014-04-03 03:00:00,0.0,993.4576667000001,0.0,100.0,-1.5343333330000002,0.095083333,237.954115 +2014-04-03 04:00:00,0.0,994.2076667000001,0.0,100.0,-0.525083333,0.069333333,237.9534132 +2014-04-03 05:00:00,0.0,994.7953332999999,0.0,100.0,-0.28425,0.193833333,237.95376410000003 +2014-04-03 06:00:00,0.0,995.5036667000002,0.078866667,100.0,-0.6034166670000001,0.229416667,237.95306230000003 +2014-04-03 07:00:00,0.0,996.1410000000001,6.568741667,100.0,-0.6559166670000001,0.550416667,237.95306230000003 +2014-04-03 08:00:00,0.0,997.041,47.79541667,100.0,-0.262916667,0.565666667,237.9534132 +2014-04-03 09:00:00,0.0,997.7473332999999,113.09083329999999,100.0,0.771083333,0.87225,237.954115 +2014-04-03 10:00:00,0.0,998.331,232.7441667,99.95,2.898916667,0.841666667,237.95341320000003 +2014-04-03 11:00:00,0.0,998.6246667000001,292.0341667,89.54166667,5.404166667,0.75125,237.954115 +2014-04-03 12:00:00,0.0,998.796,331.9458333,77.52166667,8.575416667,1.1663333329999999,237.95306230000003 +2014-04-03 13:00:00,0.0,998.7289999999999,316.0558333,58.28166667,11.21333333,0.844333333,237.9548168 +2014-04-03 14:00:00,0.0,998.8726667000001,282.8175,52.9975,11.60416667,1.2508333329999999,237.95376410000003 +2014-04-03 15:00:00,0.0,999.0893332999999,220.745,52.72666667,12.16166667,1.4085,237.95306230000003 +2014-04-03 16:00:00,0.0,999.4996667000001,134.45833330000002,53.39916667,11.66666667,1.4135,237.95376410000003 +2014-04-03 17:00:00,0.0,999.904,35.59091667,61.32416667,9.749,0.964333333,237.954115 +2014-04-03 18:00:00,0.0,1000.557333,2.189366667,81.15166667,5.137416667,0.17275,237.95306230000003 +2014-04-03 19:00:00,0.0,1001.430667,0.0,91.75,3.131916667,0.30141666699999997,237.95236050000003 +2014-04-03 20:00:00,0.0,1002.128667,0.0,94.28333333,2.19,0.5205833329999999,237.9520096 +2014-04-03 21:00:00,0.0,1002.857667,0.0,96.66666667,1.3771666669999998,0.193666667,237.9513078 +2014-04-03 22:00:00,0.0,1003.597667,0.0,97.05,0.8583333329999999,0.180083333,237.9513078 +2014-04-03 23:00:00,0.0,1003.937,0.0,97.79166667,0.546166667,0.130666667,237.9513078 +2014-05-03 00:00:00,0.0,1004.578667,0.0,97.26666667,0.2825,0.345083333,237.86443599999998 +2014-05-03 01:00:00,0.0,1005.282667,0.0,98.89166667,2.4619999999999997,0.726833333,237.86443599999998 +2014-05-03 02:00:00,0.0,1005.843333,0.0,99.99166667,2.565416667,0.45075,237.86443599999998 +2014-05-03 03:00:00,19.06837476,1006.472333,0.0,99.88333333,2.090083333,0.5043333329999999,237.86410181666665 +2014-05-03 04:00:00,4.762788768,1007.255667,0.0,100.0,2.183333333,0.273,237.86243089999996 +2014-05-03 05:00:00,0.0,1008.038667,0.0,100.0,3.334333333,0.806916667,237.86243089999996 +2014-05-03 06:00:00,0.0,1009.076333,0.078866667,100.0,3.319666667,0.693333333,237.86243089999996 +2014-05-03 07:00:00,0.0,1010.174,9.486108332999999,100.0,3.271833333,0.605583333,237.86243089999996 +2014-05-03 08:00:00,0.0,1011.238667,42.245,99.85833333,4.11475,0.8121666670000001,237.86243089999996 +2014-05-03 09:00:00,0.0,1012.166,119.67200000000001,93.25833333,5.71325,1.5463333330000002,237.86243089999996 +2014-05-03 10:00:00,0.0,1012.885,218.785,84.8025,7.30925,2.019583333,237.86243089999996 +2014-05-03 11:00:00,0.0,1013.387,274.6975,74.915,8.2225,2.8490833330000003,237.8613782 +2014-05-03 12:00:00,0.0,1013.822667,255.0216667,67.58833333,9.310833333,2.3681666669999997,237.86067640000002 +2014-05-03 13:00:00,0.0,1014.083333,288.4991667,66.27833333,9.441666667,2.323833333,237.8583204 +2014-05-03 14:00:00,0.0,1014.453667,180.9616667,64.48333333,9.755,2.990583333,237.8579695 +2014-05-03 15:00:00,0.0,1015.059667,107.6915,65.4475,9.546666667,3.1095833330000002,237.856215 +2014-05-03 16:00:00,3.222843024,1015.741333,62.993,67.86,9.691666667,2.516166667,237.85487826666667 +2014-05-03 17:00:00,0.0,1016.447,25.3015,69.595,8.920833333,2.209166667,237.85420990000003 +2014-05-03 18:00:00,0.0,1017.428333,1.5971083330000002,75.6325,6.613166667000001,1.4636666669999998,237.85245540000003 +2014-05-03 19:00:00,0.0,1018.449333,0.0,92.775,3.99675,0.38383333299999994,237.8521045 +2014-05-03 20:00:00,0.0,1019.2660000000001,0.0,96.5,2.017,0.336,237.85075104999999 +2014-05-03 21:00:00,0.0,1019.870333,0.0,98.85,0.7403333329999999,0.29975,237.8483449 +2014-05-03 22:00:00,0.0,1020.653667,0.0,99.93333333,-0.064,0.419416667,237.847994 +2014-05-03 23:00:00,0.0,1020.964333,0.0,100.0,-0.899083333,0.029916667,237.847994 +2014-06-03 00:00:00,0.0,1021.457667,0.0,100.0,-1.51375,0.172416667,237.7236766 +2014-06-03 01:00:00,0.0,1021.904,0.0,100.0,-1.70375,0.250583333,237.7243784 +2014-06-03 02:00:00,0.0,1022.220667,0.0,100.0,-2.285166667,0.0435,237.72638349999997 +2014-06-03 03:00:00,0.0,1022.370667,0.0,100.0,-2.833333333,0.083083333,237.72708526666665 +2014-06-03 04:00:00,0.0,1022.674333,0.0,100.0,-3.07925,0.142583333,237.7284888 +2014-06-03 05:00:00,0.0,1023.341667,0.0,100.0,-3.08525,0.164583333,237.728823 +2014-06-03 06:00:00,0.0,1023.651667,0.236716667,100.0,-3.2985,0.24983333300000002,237.730494 +2014-06-03 07:00:00,0.0,1024.334667,7.317858332999999,100.0,-1.19975,0.12716666699999998,237.73119576666667 +2014-06-03 08:00:00,2.456998224,1025.014,28.97766667,100.0,0.627083333,0.4095,237.73259930000003 +2014-06-03 09:00:00,0.0,1025.699667,56.50866667,100.0,1.63825,1.007666667,237.73086156666668 +2014-06-03 10:00:00,0.0,1025.964333,80.1675,100.0,2.16025,0.9209166670000001,237.7264169 +2014-06-03 11:00:00,0.0,1026.056333,114.68333329999999,100.0,2.6808333330000003,1.014,237.72127045 +2014-06-03 12:00:00,0.0,1025.856667,210.25666669999998,100.0,3.693166667,0.91025,237.71782831666667 +2014-06-03 13:00:00,0.0,1025.283667,335.7608333,92.75833333,5.63275,0.8823333329999999,237.71649158333332 +2014-06-03 14:00:00,0.0,1024.733667,303.54333330000003,80.65416667,9.163333332999999,0.8535,237.7140687166667 +2014-06-03 15:00:00,0.0,1024.259,237.7258333,66.53583333,10.5975,0.816666667,237.7158065 +2014-06-03 16:00:00,0.0,1023.725333,145.06916669999998,66.0475,10.575,0.871416667,237.7154556 +2014-06-03 17:00:00,0.0,1023.55,38.63241667,73.26916667,9.539166667,0.833416667,237.714052 +2014-06-03 18:00:00,0.0,1023.639333,2.386183333,91.89166667,4.768,0.6226666670000001,237.7147538 +2014-06-03 19:00:00,0.0,1023.958333,0.0,97.525,2.091333333,0.563666667,237.71580649999999 +2014-06-03 20:00:00,0.0,1023.931333,0.0,99.33333333,0.628833333,0.391666667,237.71615740000001 +2014-06-03 21:00:00,0.0,1023.7769999999999,0.0,99.975,-0.461583333,0.214916667,237.7178283166667 +2014-06-03 22:00:00,0.0,1023.6833330000001,0.0,100.0,-0.96025,0.344083333,237.71956609999998 +2014-06-03 23:00:00,0.0,1023.456667,0.0,100.0,-1.3980833330000002,0.165333333,237.72060208333335 +2014-07-03 00:00:00,0.0,1023.123,0.0,100.0,-1.9783333330000001,0.180166667,237.62061340000002 +2014-07-03 01:00:00,0.0,1022.992,0.0,100.0,-2.438333333,0.253166667,237.62271879999994 +2014-07-03 02:00:00,0.0,1022.685667,0.0,100.0,-2.81625,0.21225,237.62509151666666 +2014-07-03 03:00:00,0.0,1022.263,0.0,100.0,-3.16475,0.21733333300000002,237.62718019999997 +2014-07-03 04:00:00,0.0,1022.0039999999999,0.0,100.0,-3.519666667,0.050583333,237.62753109999997 +2014-07-03 05:00:00,0.0,1022.054333,0.0,100.0,-2.8930833330000003,0.08466666699999999,237.62920201666665 +2014-07-03 06:00:00,0.0,1021.891667,0.394508333,100.0,-2.999083333,0.0,237.63093979999996 +2014-07-03 07:00:00,0.0,1022.051667,16.72725833,100.0,-3.788166667,0.000833333,237.63264414999995 +2014-07-03 08:00:00,0.0,1022.262667,54.87766667,100.0,-2.291583333,0.111,237.63331251666662 +2014-07-03 09:00:00,2.402127936,1022.327,155.575,100.0,0.85875,0.364333333,237.62474061666663 +2014-07-03 10:00:00,0.0,1022.298,249.4625,93.81666667,4.1095,0.553583333,237.61613528333336 +2014-07-03 11:00:00,0.0,1022.035667,302.6858333,83.24166667,7.464416667,0.5195,237.61033715 +2014-07-03 12:00:00,0.0,1021.706333,319.5325,73.06166667,10.0425,0.681583333,237.607931 +2014-07-03 13:00:00,0.0,1021.446333,321.5041667,64.15083333,11.625,1.18275,237.6052073833333 +2014-07-03 14:00:00,0.0,1020.9839999999999,272.2008333,59.72583333,13.11583333,1.1320000000000001,237.6031187 +2014-07-03 15:00:00,0.0,1020.391667,205.135,58.94,13.18333333,1.40275,237.59999403333333 +2014-07-03 16:00:00,0.0,1020.387333,97.60916667,59.78416667,12.65583333,0.967333333,237.59690288333334 +2014-07-03 17:00:00,0.0,1020.656333,26.3445,76.77083333,10.655,0.577666667,237.59488100000002 +2014-07-03 18:00:00,0.0,1020.55,1.597283333,87.78333333,7.567416667000001,0.21633333300000002,237.59279238333332 +2014-07-03 19:00:00,0.0,1020.995667,0.0,89.81666667,6.926583333,0.35625,237.59210729999998 +2014-07-03 20:00:00,0.0,1021.240667,0.0,92.04166667,6.105166667000001,0.44925,237.59279238333332 +2014-07-03 21:00:00,0.0,1022.723667,0.0,93.93333333,4.467416667,0.48708333299999995,237.5955494 +2014-07-03 22:00:00,0.0,1023.223333,0.0,95.91666667,3.074416667,0.528666667,237.5982897166667 +2014-07-03 23:00:00,0.0,1023.26,0.0,98.8,1.2508333329999999,0.288666667,237.6013642 +2014-08-03 00:00:00,0.0,1023.762,0.0,99.875,0.622166667,0.274583333,237.56156260000003 +2014-08-03 01:00:00,0.0,1024.301667,0.0,99.99166667,0.08925,0.135083333,237.56086080000003 +2014-08-03 02:00:00,0.0,1024.660333,0.0,100.0,-0.625916667,0.24533333300000001,237.55945719999997 +2014-08-03 03:00:00,0.0,1024.943333,0.0,100.0,-0.899833333,0.179666667,237.5587888333333 +2014-08-03 04:00:00,0.0,1025.797,0.0,100.0,-1.32275,0.209083333,237.55569759999995 +2014-08-03 05:00:00,0.0,1026.705667,0.0,100.0,-1.620333333,0.169583333,237.55534669999997 +2014-08-03 06:00:00,0.0,1026.999667,0.414283333,100.0,-1.8825833330000001,0.159333333,237.55501251666666 +2014-08-03 07:00:00,0.0,1027.707667,16.33339167,100.0,-1.5915,0.08391666699999999,237.55367578333332 +2014-08-03 08:00:00,0.0,1028.462,49.21875,100.0,0.78775,0.079166667,237.55334159999998 +2014-08-03 09:00:00,0.0,1028.742,162.7325,96.01666667,6.028666667,0.24558333300000001,237.55263979999998 +2014-08-03 10:00:00,0.0,1028.489667,243.9616667,81.93416667,9.14,0.801083333,237.54916426666662 +2014-08-03 11:00:00,0.0,1028.545667,267.54,71.7025,10.69916667,1.3944166669999998,237.54712569999995 +2014-08-03 12:00:00,0.0,1028.325333,330.7266667,62.22,13.2225,2.6190833330000003,237.54607305 +2014-08-03 13:00:00,0.0,1027.763,331.5316667,56.37,13.9525,2.75275,237.54368359999998 +2014-08-03 14:00:00,0.0,1027.236,296.3858333,55.0725,14.63666667,2.1463333330000003,237.54196255 +2014-08-03 15:00:00,0.0,1026.868667,238.14583330000002,51.9025,14.925,1.8015833330000002,237.53957316666666 +2014-08-03 16:00:00,0.0,1026.610667,153.3525,52.11583333,14.38166667,1.7830000000000001,237.53820299999998 +2014-08-03 17:00:00,0.0,1026.389667,36.32008333,60.41583333,11.8275,1.21,237.53574669999998 +2014-08-03 18:00:00,0.0,1026.5539999999999,3.2734333330000003,86.37166667,6.456166667000001,0.454083333,237.5319871 +2014-08-03 19:00:00,0.0,1026.762333,0.0,93.875,4.001833333,0.5349166670000001,237.5305835 +2014-08-03 20:00:00,0.0,1026.764667,0.0,97.40833333,2.3199166669999998,0.421416667,237.52991513333333 +2014-08-03 21:00:00,0.0,1026.8,0.0,99.21666667,1.067083333,0.537083333,237.5285784 +2014-08-03 22:00:00,0.0,1026.899667,0.0,99.98333333,0.5205,0.49066666700000006,237.52682390000004 +2014-08-03 23:00:00,0.0,1027.021,0.0,100.0,-0.196833333,0.41166666700000004,237.5261388166667 +2014-09-03 00:00:00,0.0,1026.789667,0.0,100.0,-0.75775,0.33058333300000003,237.8430045 +2014-09-03 01:00:00,0.0,1026.600333,0.0,100.0,-1.21775,0.225583333,237.8413335833333 +2014-09-03 02:00:00,0.0,1026.315,0.0,100.0,-1.50625,0.123916667,237.84099939999996 +2014-09-03 03:00:00,0.0,1026.052,0.0,100.0,-1.841,0.16075,237.84029759999999 +2014-09-03 04:00:00,0.0,1026.048,0.0,100.0,-2.2778333330000002,0.259333333,237.84064849999996 +2014-09-03 05:00:00,0.0,1026.087333,0.0,100.0,-2.656333333,0.11,237.8399467 +2014-09-03 06:00:00,0.0,1026.4080000000001,0.631225,100.0,-2.96775,0.21758333300000002,237.8399299833333 +2014-09-03 07:00:00,0.0,1026.635333,14.932575,100.0,-2.6635,0.011833333,237.83889399999998 +2014-09-03 08:00:00,2.3865511440000002,1027.068333,35.31091667,100.0,0.4475,0.009416667,237.83889399999998 +2014-09-03 09:00:00,0.0,1027.362333,193.5791667,96.99166667,4.55325,0.39641666700000006,237.83854311666664 +2014-09-03 10:00:00,0.0,1027.194,280.60083330000003,81.6875,8.95625,0.664083333,237.83749046666665 +2014-09-03 11:00:00,0.0,1026.923333,332.5,62.30416667,12.88833333,2.2160833330000003,237.8371395833333 +2014-09-03 12:00:00,0.0,1026.537667,355.4308333,49.475,15.015,1.8299166669999998,237.8371395833333 +2014-09-03 13:00:00,0.0,1026.108667,346.8908333,42.58083333,16.0275,2.665,237.84024750000003 +2014-09-03 14:00:00,0.0,1025.665,317.695,38.79333333,16.91083333,1.901,237.8399467 +2014-09-03 15:00:00,0.0,1025.321333,258.8775,36.26666667,17.58583333,1.670833333,237.83784134999996 +2014-09-03 16:00:00,0.0,1024.785667,174.06666669999998,38.50083333,17.70083333,1.067416667,237.83578609999998 +2014-09-03 17:00:00,0.0,1024.566667,37.54333333,52.10666667,14.965,0.7919166670000001,237.83443261666665 +2014-09-03 18:00:00,0.0,1024.579333,3.2334166669999997,80.95083333,7.817666667,0.626416667,237.83267819999995 +2014-09-03 19:00:00,0.0,1024.629,0.0,91.29166667,4.66475,0.601166667,237.83267819999995 +2014-09-03 20:00:00,0.0,1024.521,0.0,94.68333333,3.0285,0.5990833329999999,237.83267819999995 +2014-09-03 21:00:00,0.0,1024.391667,0.0,97.075,1.718666667,0.510416667,237.83200979999995 +2014-09-03 22:00:00,0.0,1024.383333,0.0,98.06666667,1.068166667,0.488833333,237.83134139999996 +2014-09-03 23:00:00,0.0,1024.069333,0.0,99.475,0.34016666700000003,0.41233333299999997,237.83067299999996 +2014-10-03 00:00:00,0.0,1023.546,0.0,99.825,-0.56875,0.257166667, +2014-10-03 01:00:00,0.0,1023.2860000000001,0.0,100.0,-1.111666667,0.38108333299999997, +2014-10-03 02:00:00,0.0,1022.548333,0.0,100.0,-1.260833333,0.18733333300000002, +2014-10-03 03:00:00,0.0,1022.214667,0.0,100.0,-1.47375,0.312, +2014-10-03 04:00:00,0.0,1022.064667,0.0,100.0,-1.929416667,0.2915, +2014-10-03 05:00:00,0.0,1021.754667,0.0,100.0,-2.071166667,0.107916667, +2014-10-03 06:00:00,0.0,1021.608333,0.71015,100.0,-2.479,0.18641666699999998, +2014-10-03 07:00:00,0.0,1021.681,13.809425,100.0,-2.149,0.15708333300000002, +2014-10-03 08:00:00,2.38806936,1022.081,35.3535,100.0,1.42775,0.054666667, +2014-10-03 09:00:00,0.0,1021.815,197.2425,95.21666667,5.50425,0.41908333299999995, +2014-10-03 10:00:00,0.0,1021.242,273.49,75.88333333,8.792833332999999,0.667083333, +2014-10-03 11:00:00,0.0,1020.852333,328.7433333,58.20833333,12.51166667,0.6515, +2014-10-03 12:00:00,0.0,1020.542333,350.71166669999997,49.19833333,14.62583333,0.7959166670000001, +2014-10-03 13:00:00,0.0,1019.771333,345.1641667,44.62166667,15.68333333,0.990833333, +2014-10-03 14:00:00,0.0,1019.450333,310.8233333,43.06583333,16.09416667,1.7058333330000002, +2014-10-03 15:00:00,0.0,1019.0980000000001,250.26166669999998,37.83083333,16.815,2.52625, +2014-10-03 16:00:00,0.0,1018.954333,163.8525,35.53916667,17.3025,2.36675, +2014-10-03 17:00:00,0.0,1019.0060000000001,35.45383333,49.06083333,16.215,2.153916667, +2014-10-03 18:00:00,0.0,1019.293333,3.352066667,73.42166667,10.93358333,0.82575, +2014-10-03 19:00:00,0.0,1019.5666669999999,0.0,83.825,6.33625,0.6659166670000001, +2014-10-03 20:00:00,0.0,1019.641667,0.0,86.275,4.797,0.45933333299999995, +2014-10-03 21:00:00,0.0,1019.620667,0.0,89.0,3.21975,0.407583333, +2014-10-03 22:00:00,0.0,1019.789333,0.0,90.06666667,2.302,0.40225, +2014-10-03 23:00:00,0.0,1020.378667,0.0,93.4,1.9005833330000002,0.614166667, +2014-11-03 00:00:00,0.0,1020.901667,0.0,95.15,1.183416667,0.43841666700000004,237.95875249999997 +2014-11-03 01:00:00,0.0,1021.15,0.0,96.46666667,0.942416667,0.29175,237.95805249999998 +2014-11-03 02:00:00,0.0,1021.283333,0.0,96.59166667,-0.2555,0.369833333,237.95770249999998 +2014-11-03 03:00:00,0.0,1021.3560000000001,0.0,97.1,-0.582666667,0.303583333,237.95805249999998 +2014-11-03 04:00:00,0.0,1021.745333,0.0,97.975,-0.96675,0.314416667,237.95805249999998 +2014-11-03 05:00:00,0.0,1022.312,0.0,98.91666667,-0.91825,0.49025,237.95666916666664 +2014-11-03 06:00:00,0.0,1022.86,0.946866667,98.45833333,-0.3825,0.529666667,237.95631916666665 +2014-11-03 07:00:00,0.0,1023.409667,15.46475,99.11666667,0.694916667,0.528333333,237.9566525 +2014-11-03 08:00:00,0.0,1024.170667,37.736999999999995,94.90833333,5.149583333,0.710833333,237.9566525 +2014-11-03 09:00:00,0.0,1024.4933330000001,195.37,73.03666667,9.251416667,2.295416667,237.9566525 +2014-11-03 10:00:00,0.0,1024.949667,276.22583330000003,61.26666667,11.3975,2.9506666669999997,237.9566525 +2014-11-03 11:00:00,0.0,1025.3,332.43,54.165,13.28833333,3.771416667, +2014-11-03 12:00:00,0.0,1025.2,355.3491667,49.1275,15.26333333,3.781916667, +2014-11-03 13:00:00,0.0,1024.809,349.8658333,43.11833333,16.3225,4.359416667, +2014-11-03 14:00:00,0.0,1024.364667,311.1908333,42.48416667,17.23666667,3.942166667,237.95975249999998 +2014-11-03 15:00:00,0.0,1024.152,243.215,44.32666667,17.61583333,3.774333333,237.95735249999998 +2014-11-03 16:00:00,0.0,1024.085667,151.38666669999998,47.41166667,16.7475,3.283583333,237.9566525 +2014-11-03 17:00:00,0.0,1024.353667,36.085,51.21166667,15.63583333,2.438166667,237.95598583333333 +2014-11-03 18:00:00,0.0,1024.918333,3.88535,55.30666667,13.3825,1.7404166669999999,237.95598583333333 +2014-11-03 19:00:00,0.0,1025.578667,0.0,71.75916667,9.120583332999999,0.71925,237.9566525 +2014-11-03 20:00:00,0.0,1026.239,0.0,80.51,8.226166667000001,0.648083333,237.95598583333333 +2014-11-03 21:00:00,0.0,1026.905667,0.0,72.485,8.12075,1.262166667,237.95430249999995 +2014-11-03 22:00:00,0.0,1027.272667,0.0,80.24166667,8.734166667,2.697666667,237.9512025 +2014-11-03 23:00:00,0.0,1027.56,0.0,81.26666667,7.954416667,2.040333333,237.9470525 +2014-12-03 00:00:00,0.0,1027.877333,0.0,84.325,7.35925,2.165916667,237.85905249999996 +2014-12-03 01:00:00,0.0,1027.548,0.0,86.75,6.075583332999999,1.1330833329999999,237.85938583333328 +2014-12-03 02:00:00,0.0,1027.362667,0.0,94.35,4.071833333,0.372166667,237.86005249999997 +2014-12-03 03:00:00,0.0,1027.360333,0.0,99.16666667,2.74725,0.49775,237.86005249999997 +2014-12-03 04:00:00,0.0,1027.235667,0.0,100.0,1.310666667,0.374666667,237.86005249999997 +2014-12-03 05:00:00,0.0,1027.125,0.0,100.0,0.61225,0.36741666700000003,237.86180249999998 +2014-12-03 06:00:00,0.0,1027.41,1.124375,100.0,-0.12916666699999999,0.270416667,237.86145249999996 +2014-12-03 07:00:00,0.0,1027.835,21.67958333,100.0,0.738583333,0.328916667,237.86248583333335 +2014-12-03 08:00:00,0.0,1028.335333,55.17516667,100.0,4.231916667,0.86275,237.86281916666667 +2014-12-03 09:00:00,0.0,1028.556,187.4133333,93.20833333,7.213083332999999,2.1465,237.86348583333336 +2014-12-03 10:00:00,0.0,1028.539667,276.8208333,82.13083333,9.148333333,1.9690833330000002,237.8645025 +2014-12-03 11:00:00,0.0,1028.425333,335.825,70.8125,10.86166667,2.761,237.86450250000004 +2014-12-03 12:00:00,0.0,1027.938,364.245,60.1175,12.93416667,2.044,237.8648525 +2014-12-03 13:00:00,0.0,1027.136,357.595,52.57916667,14.69666667,2.036916667,237.8645025 +2014-12-03 14:00:00,0.0,1026.569,318.5583333,46.67166667,16.02583333,2.375333333,237.8655525 +2014-12-03 15:00:00,0.0,1026.079667,254.1116667,44.3775,16.55833333,2.40625,237.8655525 +2014-12-03 16:00:00,0.0,1025.608667,160.73166669999998,45.73,16.48333333,2.304083333,237.8662525 +2014-12-03 17:00:00,0.0,1025.2169999999999,38.72983333,56.8025,15.24083333,1.8115833330000002,237.8666025 +2014-12-03 18:00:00,0.0,1025.260333,4.4177,77.18583333,11.455,0.926083333,237.86730249999997 +2014-12-03 19:00:00,0.0,1025.439333,0.0,88.95833333,7.8208333329999995,0.7835833329999999,237.8669525 +2014-12-03 20:00:00,0.0,1025.520667,0.0,92.56666667,5.36175,0.5910833329999999,237.8680025 +2014-12-03 21:00:00,0.0,1025.546,0.0,94.36666667,3.64625,0.478,237.8683525 +2014-12-03 22:00:00,0.0,1025.525,0.0,95.15833333,2.51575,0.400583333,237.86868583333333 +2014-12-03 23:00:00,0.0,1025.427333,0.0,95.75,1.497416667,0.396,237.86901916666662 +2014-03-13 00:00:00,0.0,1025.062667,0.0,96.675,0.210083333,0.376333333,237.9945163 +2014-03-13 01:00:00,0.0,1024.856333,0.0,96.75,-0.5115833329999999,0.311916667,237.9942625 +2014-03-13 02:00:00,0.0,1024.515,0.0,96.95,-0.967666667,0.2205,237.9947701 +2014-03-13 03:00:00,0.0,1024.19,0.0,98.34166667,-1.4439166669999999,0.258583333,237.9945163 +2014-03-13 04:00:00,0.0,1023.975,0.0,99.275,-1.746,0.13925,237.99477009999998 +2014-03-13 05:00:00,0.0,1023.997667,0.0,99.4,-2.208,0.239083333,237.99477009999998 +2014-03-13 06:00:00,0.0,1024.033333,1.321716667,99.80833333,-2.58075,0.180916667,237.9947701 +2014-03-13 07:00:00,0.0,1024.31,17.91183333,99.99166667,-1.814583333,0.03,237.9940087 +2014-03-13 08:00:00,2.405739264,1024.720667,48.51175,99.33333333,2.4733333330000002,0.026000000000000002,237.9942625 +2014-03-13 09:00:00,0.0,1024.75,206.0158333,75.72666667,6.170083332999999,0.58325,237.99502389999998 +2014-03-13 10:00:00,0.0,1024.760667,283.90833330000004,64.64916667,9.473333333,0.8045,237.9942625 +2014-03-13 11:00:00,0.0,1024.504333,341.29083330000003,59.4275,12.19916667,0.6735,237.9935374 +2014-03-13 12:00:00,0.0,1024.183667,367.45916669999997,52.8175,15.39916667,0.77525,237.99477009999998 +2014-03-13 13:00:00,0.0,1023.475667,365.0208333,44.2375,17.2575,0.9155833329999999,237.9955315 +2014-03-13 14:00:00,0.0,1022.678,326.2466667,32.61416667,18.24916667,1.08775,237.9955315 +2014-03-13 15:00:00,0.0,1022.152333,255.8966667,29.77166667,18.90166667,1.137666667,237.9955315 +2014-03-13 16:00:00,0.0,1021.623333,162.2366667,33.275,17.9425,1.7078333330000002,237.9952777 +2014-03-13 17:00:00,0.0,1021.437333,38.31333333,47.41916667,14.90083333,1.5015833330000001,237.99477009999998 +2014-03-13 18:00:00,0.0,1021.6039999999999,5.145991667,73.835,10.04583333,0.5601666670000001,237.9940087 +2014-03-13 19:00:00,0.0,1021.804,0.0,84.885,6.557916667000001,0.544416667,237.99352530000002 +2014-03-13 20:00:00,0.0,1022.143333,0.0,85.475,5.39025,0.165333333,237.9928002 +2014-03-13 21:00:00,0.0,1022.429,0.0,85.46666667,5.071583333,0.345083333,237.9932836 +2014-03-13 22:00:00,0.0,1022.841333,0.0,88.45,4.052416667,0.5479166670000001,237.9932836 +2014-03-13 23:00:00,0.0,1022.966667,0.0,89.03333333,2.3344166669999997,0.48408333299999995,237.9930419 +2014-03-14 00:00:00,0.0,1022.895667,0.0,93.15,1.333833333,0.377833333,237.9925585 +2014-03-14 01:00:00,0.0,1022.885667,0.0,96.24166667,0.539416667,0.26275,237.9925585 +2014-03-14 02:00:00,0.0,1022.773,0.0,97.83333333,-0.128083333,0.236333333,237.9925585 +2014-03-14 03:00:00,0.0,1022.650333,0.0,98.43333333,-0.795166667,0.26158333300000003,237.99205093333333 +2014-03-14 04:00:00,0.0,1022.523,0.0,99.29166667,-1.312833333,0.182166667,237.99205093333333 +2014-03-14 05:00:00,0.0,1022.435333,0.0,99.75,-1.7150833330000002,0.227166667,237.9910358 +2014-03-14 06:00:00,0.0,1022.458333,1.6176416669999998,99.91666667,-2.117,0.113166667,237.99205093333333 +2014-03-14 07:00:00,0.0,1022.545667,20.23933333,99.98333333,-1.5050833330000002,0.10491666699999999,237.9923047166667 +2014-03-14 08:00:00,0.0,1022.912333,61.23308333,96.39166667,2.42675,0.18675,237.99205093333333 +2014-03-14 09:00:00,0.0,1022.852,200.82416669999998,73.8725,6.929416667000001,0.321666667,237.9928002 +2014-03-14 10:00:00,0.0,1022.548333,285.7575,63.56666667,10.28583333,0.8029166670000001,237.9932836 +2014-03-14 11:00:00,0.0,1022.238,341.2266667,56.24,11.945,1.248,237.99352530000002 +2014-03-14 12:00:00,0.0,1021.521333,365.6391667,50.42166667,14.75083333,0.8676666670000001,237.99304189999998 +2014-03-14 13:00:00,0.0,1020.6196669999999,360.1383333,45.87083333,15.79416667,0.935583333,237.99376700000002 +2014-03-14 14:00:00,0.0,1019.738333,326.3925,42.09416667,17.21,1.4478333330000002,237.9932836 +2014-03-14 15:00:00,0.0,1018.8530000000001,265.4458333,37.36083333,17.80916667,1.47375,237.9930419 +2014-03-14 16:00:00,0.0,1017.942,174.0433333,37.17916667,17.555,1.45175,237.9925585 +2014-03-14 17:00:00,0.0,1017.379667,39.319,42.59416667,15.17333333,1.313833333,237.9925585 +2014-03-14 18:00:00,0.0,1016.717,5.107433333,68.45083333,10.18916667,0.718333333,237.9925585 +2014-03-14 19:00:00,0.0,1016.770667,0.0,80.94083333,6.701083333,0.5708333329999999,237.9925585 +2014-03-14 20:00:00,0.0,1016.947667,0.0,80.81083333,4.897583333,0.4855,237.9923047166667 +2014-03-14 21:00:00,0.0,1016.561333,0.0,86.04166667,4.436583333,0.124083333,237.9923047166667 +2014-03-14 22:00:00,0.0,1015.956333,0.0,87.28333333,3.49775,0.063916667,237.99254641666664 +2014-03-14 23:00:00,0.0,1015.488333,0.0,89.75833333,3.087916667,0.1015,237.9932836 +2014-03-15 00:00:00,0.0,1014.7396669999999,0.0,74.2375,5.342166667,0.96875,237.9935253 +2014-03-15 01:00:00,0.0,1014.737667,0.0,75.64166667,9.093333333,1.93175,237.9935253 +2014-03-15 02:00:00,0.0,1014.1339999999999,0.0,72.82583333,9.208333332999999,1.9479166669999999,237.99376700000002 +2014-03-15 03:00:00,0.0,1013.186,0.0,72.11666667,8.719166667,1.8665833330000001,237.99376700000002 +2014-03-15 04:00:00,0.0,1012.8439999999999,0.0,74.84416667,8.581666667,1.82525,237.9942746 +2014-03-15 05:00:00,0.0,1012.735333,0.0,77.8025,8.9725,1.9858333330000002,237.9940087 +2014-03-15 06:00:00,0.0,1012.820667,0.37473333299999995,83.11666667,8.910833333,2.0065,237.9940087 +2014-03-15 07:00:00,0.0,1013.133333,7.849041667000001,87.51666667,8.631666667000001,2.022916667,237.9940087 +2014-03-15 08:00:00,0.0,1013.485,18.67716667,92.65,7.967583332999999,1.995166667,237.9940087 +2014-03-15 09:00:00,15.53790581,1013.508,33.15375,97.1,7.5620833329999995,2.0131666669999997,237.9940087 +2014-03-15 10:00:00,18.33769992,1014.226667,40.29375,92.94166667,7.177333332999999,2.7395,237.9940087 +2014-03-15 11:00:00,0.0,1015.068,207.6841667,83.75083333,8.004916667,3.127333333,237.9940087 +2014-03-15 12:00:00,0.0,1015.404333,199.07416669999998,74.66666667,9.306666667,3.65875,237.9942625 +2014-03-15 13:00:00,0.0,1015.3083330000001,129.5880833,74.635,9.2775,2.929166667,237.99402080000002 +2014-03-15 14:00:00,0.0,1015.347667,115.07475,80.48916667,9.120833333,2.4521666669999997,237.9942625 +2014-03-15 15:00:00,0.0,1015.724667,63.29166667,71.115,9.335833333,2.621916667,237.99377909999998 +2014-03-15 16:00:00,0.0,1015.821,59.47783333,67.935,9.370833333,2.36075,237.9942625 +2014-03-15 17:00:00,0.0,1015.81,30.66571667,68.76666667,9.289166667,1.5148333330000001,237.9942625 +2014-03-15 18:00:00,0.0,1016.1436669999999,1.9324083330000001,69.98833333,8.85,1.46575,237.9942625 +2014-03-15 19:00:00,0.0,1016.152333,0.0,71.60583333,8.540833333,1.401416667,237.9942625 +2014-03-15 20:00:00,0.0,1016.048,0.0,73.3675,8.46,1.6395,237.9940087 +2014-03-15 21:00:00,0.0,1015.8439999999999,0.0,74.84333333,8.563333333,1.95825,237.9940087 +2014-03-15 22:00:00,0.0,1015.5210000000001,0.0,79.20333333,8.475,1.9318333330000002,237.9940087 +2014-03-15 23:00:00,0.0,1015.198333,0.0,82.8625,8.182083333,2.1069999999999998,237.9942625 +2014-03-16 00:00:00,0.0,1014.321667,0.0,91.175,7.142333333,1.85625,237.9942625 +2014-03-16 01:00:00,0.0,1013.584,0.0,90.225,7.540583333,2.1885,237.99477009999998 +2014-03-16 02:00:00,0.0,1013.0210000000001,0.0,86.46666667,8.035083333,2.20775,237.9955315 +2014-03-16 03:00:00,0.0,1012.696333,0.0,83.68333333,8.8325,2.5140000000000002,237.9955315 +2014-03-16 04:00:00,0.0,1012.289333,0.0,86.30833333,8.870833333,2.300333333,237.9955315 +2014-03-16 05:00:00,0.0,1012.323333,0.0,92.45,8.47,2.4049166669999997,237.9955315 +2014-03-16 06:00:00,0.0,1012.457667,0.45354166700000004,94.59166667,8.5525,2.635916667,237.9955315 +2014-03-16 07:00:00,0.0,1012.966667,12.34490833,94.38333333,8.6825,2.3025833330000003,237.9955315 +2014-03-16 08:00:00,0.0,1013.341,27.03633333,90.7,9.428333333,2.199,237.9952777 +2014-03-16 09:00:00,0.0,1013.8166669999999,118.52633329999999,88.65833333,9.824166667,2.6854166669999997,237.99502389999998 +2014-03-16 10:00:00,0.0,1013.928667,88.9105,86.65833333,10.25583333,2.6116666669999997,237.99502389999998 +2014-03-16 11:00:00,0.0,1014.4810000000001,66.15991667,86.53333333,10.3025,2.284416667,237.9942625 +2014-03-16 12:00:00,0.0,1014.6063330000001,166.0866667,85.30833333,11.05,2.51875,237.9940087 +2014-03-16 13:00:00,0.0,1014.123333,305.1766667,80.89583333,12.4975,3.1408333330000002,237.9940087 +2014-03-16 14:00:00,0.0,1013.498667,229.67,77.15833333,13.2425,3.093,237.9942625 +2014-03-16 15:00:00,0.0,1013.15,104.94166670000001,76.80416667,13.79833333,2.4935,237.9942625 +2014-03-16 16:00:00,0.0,1013.349667,50.36558333,77.21,13.36666667,3.782666667,237.9940087 +2014-03-16 17:00:00,0.0,1013.780667,29.12583333,76.16666667,12.83,4.527,237.9945163 +2014-03-16 18:00:00,0.0,1014.116667,3.2734333330000003,75.91,12.28,1.59475,237.9945163 +2014-03-16 19:00:00,0.0,1014.433,0.0,77.95333333,11.65416667,1.6545833330000002,237.99376700000002 +2014-03-16 20:00:00,0.0,1014.916333,0.0,79.3875,10.61166667,1.008666667,237.9928002 +2014-03-16 21:00:00,0.0,1014.945667,0.0,81.16666667,10.34166667,1.255,237.9925585 +2014-03-16 22:00:00,0.0,1015.1519999999999,0.0,84.225,9.9625,1.428166667,237.9928002 +2014-03-16 23:00:00,0.0,1015.5060000000001,0.0,80.3725,9.774166667000001,1.864,237.9925585 +2014-03-17 00:00:00,0.0,1015.265,0.0,81.85,8.71025,1.1926666670000001,237.9928002 +2014-03-17 01:00:00,0.0,1015.243667,0.0,86.75833333,6.939083332999999,0.44583333299999994,237.9923047166667 +2014-03-17 02:00:00,0.0,1015.083667,0.0,94.40833333,4.558166667,0.319583333,237.99154336666666 +2014-03-17 03:00:00,0.0,1014.535667,0.0,94.46666667,4.149333333,0.314666667,237.99179715000002 +2014-03-17 04:00:00,0.0,1014.3689999999999,0.0,88.61666667,5.619666667000001,0.521166667,237.9923047166667 +2014-03-17 05:00:00,0.0,1014.474667,0.0,89.91666667,8.13825,0.7535,237.9925585 +2014-03-17 06:00:00,0.0,1014.614333,1.005666667,90.25833333,8.469166667,1.126083333,237.99205093333333 +2014-03-17 07:00:00,0.0,1014.862333,11.39751667,90.025,8.811666667,1.5993333330000001,237.9923047166667 +2014-03-17 08:00:00,0.0,1015.339333,32.83641667,90.75,9.079166667,1.54525,237.99128958333333 +2014-03-17 09:00:00,0.0,1015.704,64.73716667,89.2,9.696666667,2.275833333,237.99128958333333 +2014-03-17 10:00:00,0.0,1015.831,69.02,87.66666667,10.0,1.946333333,237.99154336666666 +2014-03-17 11:00:00,0.0,1015.833333,72.02416667,85.16666667,10.47666667,1.792666667,237.99104786666666 +2014-03-17 12:00:00,0.0,1015.860667,74.64275,82.275,11.0225,1.9756666669999998,237.99079408333333 +2014-03-17 13:00:00,0.0,1015.512667,196.4316667,77.30833333,11.56083333,1.680083333,237.99128958333333 +2014-03-17 14:00:00,0.0,1015.416667,158.9058333,73.0275,12.20833333,3.0716666669999997,237.9910358 +2014-03-17 15:00:00,0.0,1015.277333,131.1041667,71.67083333,12.35666667,3.5964166669999997,237.9910358 +2014-03-17 16:00:00,0.0,1015.118667,72.42666667,68.86166667,12.32166667,2.889416667,237.9910358 +2014-03-17 17:00:00,0.0,1015.052333,36.83575,67.00083333,11.75333333,2.313333333,237.9910358 +2014-03-17 18:00:00,0.0,1015.293333,5.502175,69.49333333,11.36833333,1.079833333,237.99079408333333 +2014-03-17 19:00:00,0.0,1015.514333,0.0,76.08166667,10.6775,0.681416667,237.99079408333333 +2014-03-17 20:00:00,0.0,1015.702333,0.0,76.89666667,9.765,0.32725,237.99055236666666 +2014-03-17 21:00:00,0.0,1015.296,0.0,81.5825,8.6275,0.275833333,237.98982721666667 +2014-03-17 22:00:00,0.0,1015.123,0.0,87.21666667,8.231666667,0.09958333300000001,237.99006893333333 +2014-03-17 23:00:00,0.0,1014.9126669999999,0.0,89.63333333,7.785166667,0.197583333,237.9895855 +2014-03-18 00:00:00,0.0,1014.671333,0.0,92.15833333,7.511083332999999,0.070833333,237.9895855 +2014-03-18 01:00:00,0.0,1014.298,0.0,93.86666667,6.9165,0.14925,237.99006893333333 +2014-03-18 02:00:00,0.0,1014.033667,0.0,94.45,7.051666667,0.22166666699999998,237.99006893333333 +2014-03-18 03:00:00,0.0,1013.471333,0.0,93.20833333,7.1075,0.12741666699999998,237.9895855 +2014-03-18 04:00:00,0.0,1013.006667,0.0,95.93333333,6.858,0.04775,237.98933171666667 +2014-03-18 05:00:00,0.0,1012.5169999999999,0.0,95.81666667,7.178833332999999,0.271916667,237.9895855 +2014-03-18 06:00:00,0.0,1011.952333,2.1688333330000003,96.55833333,6.744333332999999,0.317416667,237.9895855 +2014-03-18 07:00:00,0.0,1011.852,32.91283333,92.85,6.774916667,0.13425,237.9895855 +2014-03-18 08:00:00,0.0,1011.958667,72.5725,83.525,8.589083333,0.282166667,237.9895855 +2014-03-18 09:00:00,0.0,1011.7439999999999,104.2416667,80.80166667,10.10666667,0.545,237.99055236666666 +2014-03-18 10:00:00,0.0,1011.5186669999999,101.9141667,78.61833333,11.12333333,0.891916667,237.98982721666667 +2014-03-18 11:00:00,0.0,1011.398333,112.0875,80.64,11.26916667,0.959833333,237.98982721666667 +2014-03-18 12:00:00,0.0,1010.654667,141.015,82.025,11.3225,1.269583333,237.98982721666667 +2014-03-18 13:00:00,0.0,1010.229667,187.0575,80.185,11.64166667,1.8021666669999998,237.99031065 +2014-03-18 14:00:00,0.0,1009.69,127.19,80.2125,11.17916667,2.1665,237.99031065 +2014-03-18 15:00:00,0.0,1009.420667,86.09533333,81.5425,10.6125,1.4830833330000002,237.99079408333333 +2014-03-18 16:00:00,0.0,1009.335667,50.77741667,83.53333333,9.8475,1.7730833330000002,237.99055236666666 +2014-03-18 17:00:00,0.0,1008.696333,32.52025,83.175,9.908333333,1.5826666669999998,237.99055236666666 +2014-03-18 18:00:00,0.0,1008.849667,6.408675,83.3,9.706666667,1.4509166669999998,237.99079408333333 +2014-03-18 19:00:00,0.0,1009.272667,0.0,83.58333333,9.704166667,1.5675833330000002,237.99079408333333 +2014-03-18 20:00:00,0.0,1009.466667,0.0,82.29666667,9.713333333,1.368166667,237.99006893333333 +2014-03-18 21:00:00,0.0,1009.945,0.0,77.03666667,9.74,1.97825,237.98982721666667 +2014-03-18 22:00:00,2.891617992,1010.502,0.0,75.79166667,9.6075,2.225916667,237.9895855 +2014-03-18 23:00:00,0.0,1010.454,0.0,75.65416667,9.426666667000001,2.4145,237.98982721666667 +2014-03-19 00:00:00,3.441360528,1010.683,0.0,83.61916667,8.853333333,2.74775,237.98933171666667 +2014-03-19 01:00:00,15.92489736,1011.559333,0.0,89.15833333,8.505666667,2.48925,237.98882415000003 +2014-03-19 02:00:00,99.9223272,1012.306,0.0,94.59166667,7.3040833329999995,2.536333333,237.99328361666664 +2014-03-19 03:00:00,0.0,1012.728667,0.0,96.60833333,7.2139999999999995,1.850333333,238.00147748333333 +2014-03-19 04:00:00,0.0,1013.688667,0.0,90.85833333,8.353333333,1.884166667,238.00046229999998 +2014-03-19 05:00:00,0.0,1014.582667,0.0,90.325,8.435833333,1.8585833330000001,237.9999547 +2014-03-19 06:00:00,0.0,1015.541,1.6366583330000002,93.08333333,8.233333333,1.4938333330000002,238.00096989999997 +2014-03-19 07:00:00,0.0,1016.476333,18.06291667,91.40833333,8.5925,1.7808333330000001,238.0012237 +2014-03-19 08:00:00,0.0,1017.511333,41.25391667,90.74166667,8.995833333,2.0845,238.0014775 +2014-03-19 09:00:00,0.0,1018.166667,43.40758333,89.175,9.295833333,2.272333333,238.0014775 +2014-03-19 10:00:00,6.239659632,1018.51,107.38,86.7,9.8925,2.321333333,238.00198506666666 +2014-03-19 11:00:00,0.0,1019.0060000000001,161.98641669999998,82.2175,10.68416667,2.530583333,238.0024926333333 +2014-03-19 12:00:00,0.0,1018.958333,257.8041667,74.82166667,12.1075,2.74825,238.00273433333334 +2014-03-19 13:00:00,0.0,1018.925,213.1266667,70.79666667,13.17583333,2.520916667,238.0032419 +2014-03-19 14:00:00,0.0,1018.777333,229.67583330000002,66.29416667,13.9525,2.098416667,238.00445040000002 +2014-03-19 15:00:00,0.0,1018.508667,196.7,63.345,14.7575,2.2835,238.003967 +2014-03-19 16:00:00,0.0,1018.331333,155.44666669999998,62.4975,14.97666667,2.4595833330000003,238.00420870000002 +2014-03-19 17:00:00,0.0,1018.096,49.16508333,62.75916667,14.375,1.9533333330000002,238.00445040000002 +2014-03-19 18:00:00,0.0,1018.522333,7.316108333,68.39166667,12.79,1.4718333330000002,238.00372530000004 +2014-03-19 19:00:00,0.0,1018.729333,0.0,71.135,11.82583333,1.569666667,238.0032419 +2014-03-19 20:00:00,0.0,1018.753667,0.0,72.99833333,11.6675,1.6720833330000002,238.00300019999995 +2014-03-19 21:00:00,0.0,1019.1560000000001,0.0,74.26083333,11.23083333,1.4955833330000001,238.0027464166666 +2014-03-19 22:00:00,0.0,1019.083667,0.0,75.49666667,10.3625,0.99875,238.00300019999995 +2014-03-19 23:00:00,0.0,1018.971,0.0,77.03583333,9.27,0.4785,238.00300019999995 +2014-03-20 00:00:00,0.0,1018.592,0.0,78.11416667,7.1855,0.25825,238.0027464166666 +2014-03-20 01:00:00,0.0,1018.446,0.0,79.5525,5.604333333,0.276666667,238.0024926333333 +2014-03-20 02:00:00,0.0,1018.077333,0.0,81.96416667,3.2976666669999997,0.268416667,238.0027464166666 +2014-03-20 03:00:00,0.0,1017.575667,0.0,91.40833333,1.9570833330000001,0.290166667,238.00173128333333 +2014-03-20 04:00:00,0.0,1017.131333,0.0,98.65,0.8773333329999999,0.24933333300000002,238.00147748333333 +2014-03-20 05:00:00,0.0,1017.091667,0.0,100.0,0.6213333329999999,0.265416667,238.0014775 +2014-03-20 06:00:00,0.0,1016.946,3.786825,100.0,0.590333333,0.435833333,238.00020849999999 +2014-03-20 07:00:00,0.0,1016.9623330000001,25.58266667,100.0,1.94825,0.340916667,237.99947129999998 +2014-03-20 08:00:00,0.0,1016.706667,89.70208333,99.53333333,5.901416667,0.581666667,237.999713 +2014-03-20 09:00:00,0.0,1016.4126669999999,246.7033333,87.65,9.340833332999999,1.63525,237.9992296 +2014-03-20 10:00:00,0.0,1016.044333,318.4008333,76.80333333,11.98,1.9658333330000002,237.9999547 +2014-03-20 11:00:00,0.0,1015.069667,355.3083333,69.19166667,14.11833333,2.554666667,237.99947129999998 +2014-03-20 12:00:00,0.0,1013.924,396.9058333,44.32583333,16.70083333,2.424666667,237.9999547 +2014-03-20 13:00:00,0.0,1012.950667,402.2375,40.41583333,17.9175,2.837333333,237.99971299999996 +2014-03-20 14:00:00,0.0,1011.892667,348.8566667,39.8025,18.9175,2.638,237.99947129999998 +2014-03-20 15:00:00,0.0,1010.678,266.1108333,38.98416667,19.5875,2.465416667,237.9989879 +2014-03-20 16:00:00,0.0,1009.097667,134.3825,38.65166667,18.41333333,2.289166667,237.99971299999996 +2014-03-20 17:00:00,0.0,1007.983667,45.41016667,38.0275,18.21666667,2.355416667,237.9992296 +2014-03-20 18:00:00,0.0,1007.560333,9.5424,44.60166667,15.86833333,2.30475,237.99898789999997 +2014-03-20 19:00:00,0.0,1007.573,0.0,49.61333333,15.35833333,1.874166667,237.9982507 +2014-03-20 20:00:00,0.0,1007.306667,0.0,62.20916667,13.55,2.561833333,237.99774309999998 +2014-03-20 21:00:00,0.0,1007.1289999999999,0.0,55.96666667,12.29166667,2.762833333,237.9977431 +2014-03-20 22:00:00,0.0,1006.952667,0.0,53.90333333,9.848333333,0.5545,237.9985045 +2014-03-20 23:00:00,0.0,1006.300333,0.0,59.06,12.25833333,0.979083333,237.9972355 +2014-03-21 00:00:00,0.0,1005.79,0.0,59.11833333,15.44666667,1.8519166669999998,237.9974893 +2014-03-21 01:00:00,0.0,1005.479333,0.0,56.1625,14.8525,1.3858333330000001,237.99748929999998 +2014-03-21 02:00:00,0.0,1005.1189999999999,0.0,57.195,14.62416667,1.7510833330000002,237.99698170000002 +2014-03-21 03:00:00,0.0,1004.7919999999999,0.0,59.90666667,14.3775,2.0204166669999997,237.9979969 +2014-03-21 04:00:00,0.0,1004.562667,0.0,59.7875,14.28333333,2.170416667,237.9972355 +2014-03-21 05:00:00,0.0,1004.410667,0.0,61.89833333,14.86,2.985416667,237.99698170000002 +2014-03-21 06:00:00,0.0,1004.266667,6.192316667,63.9925,14.60833333,3.217166667,237.99698170000002 +2014-03-21 07:00:00,0.0,1004.2539999999999,50.46358333,67.05583333,14.24833333,2.26825,237.99698170000002 +2014-03-21 08:00:00,0.0,1004.304333,111.10166670000001,65.37333333,14.9975,2.097833333,237.99698170000002 +2014-03-21 09:00:00,0.0,1004.0210000000001,207.025,63.3275,15.30083333,3.199583333,237.9972355 +2014-03-21 10:00:00,0.0,1004.045667,219.5491667,57.96916667,15.68,3.926416667,237.99698170000002 +2014-03-21 11:00:00,0.0,1003.9939999999999,303.3858333,56.31583333,16.39833333,3.929,237.99698170000002 +2014-03-21 12:00:00,0.0,1003.908333,181.0608333,51.76833333,16.84,3.679,237.99649829999998 +2014-03-21 13:00:00,0.0,1003.413,101.80508329999999,49.97333333,16.78166667,3.812083333,237.99625659999995 +2014-03-21 14:00:00,0.0,1003.778667,108.96316670000002,57.35333333,15.89583333,4.737416667,237.9955194 +2014-03-21 15:00:00,0.0,1003.989333,154.2741667,62.835,15.14583333,4.086833333,237.99502389999998 +2014-03-21 16:00:00,0.0,1004.437,85.337,66.865,14.2975,3.906166667,237.9942625 +2014-03-21 17:00:00,0.0,1005.288667,21.45383333,70.58166667,12.77166667,2.56425,237.9940087 +2014-03-21 18:00:00,0.0,1006.374333,11.12241667,74.4,10.79166667,1.6584166669999998,237.9930419 +2014-03-21 19:00:00,0.0,1006.8083330000001,0.019716667,73.3875,9.509166667,1.944083333,237.99230471666667 +2014-03-21 20:00:00,0.0,1006.658333,0.0,76.9525,8.599166667,1.130833333,237.99230471666667 +2014-03-21 21:00:00,0.0,1006.456667,0.0,85.29166667,7.972416667,0.2895,237.99179715000002 +2014-03-21 22:00:00,0.0,1006.163,0.0,90.95,7.4605,0.687916667,237.9923047166667 +2014-03-21 23:00:00,2.862228216,1005.221333,0.0,90.825,7.178833332999999,0.8515,237.99205093333333 +2014-03-22 00:00:00,5.298127704,1004.667333,0.0,94.075,6.984833332999999,1.129916667,237.99154336666666 +2014-03-22 01:00:00,2.742945,1003.665333,0.0,99.03333333,6.403916667000001,1.7149166669999998,237.99154336666666 +2014-03-22 02:00:00,0.0,1003.073333,0.0,100.0,6.47125,1.88975,237.9910358 +2014-03-22 03:00:00,0.0,1002.286333,0.0,100.0,4.711666667,0.327,237.9910358 +2014-03-22 04:00:00,0.0,1001.552333,0.0,99.33333333,5.462833333,0.66525,237.9910358 +2014-03-22 05:00:00,0.0,1000.990333,0.0,93.75833333,6.443916667000001,0.749916667,237.9910358 +2014-03-22 06:00:00,0.0,1000.354333,1.301475,95.00833333,6.826583332999999,1.254,237.99128958333333 +2014-03-22 07:00:00,13.61270016,1000.3646669999999,9.229616667,91.275,7.612166667,1.4039166669999998,237.99205093333333 +2014-03-22 08:00:00,0.0,1000.141667,37.29425,88.75833333,8.505,1.878916667,237.99128958333336 +2014-03-22 09:00:00,0.0,1000.447667,84.72333333,85.325,9.1425,2.0346666669999998,237.99154336666666 +2014-03-22 10:00:00,0.0,1000.504333,104.41666670000001,80.50583333,9.695833333,2.038916667,237.99179715000002 +2014-03-22 11:00:00,0.0,1000.516667,143.4941667,78.81583333,9.939166667,1.9855833330000001,237.99128958333333 +2014-03-22 12:00:00,3.053517648,999.9463332999999,166.6875,76.8,10.39083333,2.01925,237.99179715 +2014-03-22 13:00:00,0.0,999.3006667000001,199.5466667,76.17583333,10.74083333,2.4441666669999997,237.99205093333333 +2014-03-22 14:00:00,0.0,998.7146667000002,141.1608333,74.49166667,11.075,1.910833333,237.99154336666666 +2014-03-22 15:00:00,0.0,998.2133332999998,138.0983333,74.19916667,10.6825,2.9995,237.99154336666666 +2014-03-22 16:00:00,0.0,997.6296667000001,103.7225,76.43916667,10.555,3.409166667,237.99154336666666 +2014-03-22 17:00:00,33.55582654,997.666,41.70640833,85.9725,9.825833333,1.743166667,237.99128958333333 +2014-03-22 18:00:00,60.81299318,998.8363332999999,8.814225,92.73333333,7.218833332999999,1.7625,237.99178506666667 +2014-03-22 19:00:00,19.31217986,999.2603332999998,0.0,97.45833333,4.50225,0.935916667,237.9952777 +2014-03-22 20:00:00,0.0,999.6266667000001,0.0,99.56666667,3.793916667,0.504916667,237.99502389999998 +2014-03-22 21:00:00,0.0,1000.147667,0.0,99.525,3.46475,0.395083333,237.99477009999998 +2014-03-22 22:00:00,0.0,1000.206333,0.0,96.44166667,4.14675,0.865583333,237.99527769999997 +2014-03-22 23:00:00,0.0,1000.4580000000001,0.0,95.85833333,3.332083333,0.42741666700000003,237.99502389999998 +2014-03-23 00:00:00,0.0,1000.573,0.0,97.95,1.480166667,0.238416667,237.99502389999998 +2014-03-23 01:00:00,2.431692336,1000.446,0.0,99.89166667,0.82325,0.09825,237.99477009999998 +2014-03-23 02:00:00,0.0,1000.3646669999999,0.0,100.0,1.559916667,0.07666666700000001,237.99477009999998 +2014-03-23 03:00:00,0.0,1000.091667,0.0,100.0,2.19825,0.30425,237.99527769999997 +2014-03-23 04:00:00,0.0,1000.1833330000001,0.0,94.91666667,2.3776666669999997,0.234083333,237.99527769999997 +2014-03-23 05:00:00,0.0,1000.443667,0.0,96.85,2.81425,0.569916667,237.9955315 +2014-03-23 06:00:00,0.0,1000.3373330000001,3.115933333,100.0,1.323083333,0.1195,237.9955315 +2014-03-23 07:00:00,0.0,1000.758,23.19625,100.0,0.92875,0.2555,237.9957732 +2014-03-23 08:00:00,0.0,1001.247333,79.62266667,97.41666667,2.862083333,0.28475,237.9955315 +2014-03-23 09:00:00,0.0,1001.65,210.5133333,87.56666667,5.604,1.24825,237.99649829999998 +2014-03-23 10:00:00,0.0,1001.827,222.38416669999998,79.84083333,6.876333333,1.789833333,237.99673999999996 +2014-03-23 11:00:00,0.0,1001.791667,184.66,74.38416667,7.4625833329999995,1.9040833330000002,237.99698170000002 +2014-03-23 12:00:00,0.0,1001.756333,221.4683333,70.92666667,7.698666667,1.815,237.99674000000002 +2014-03-23 13:00:00,0.0,1001.6436669999999,271.8916667,67.92583333,8.341666667,1.98925,237.99649829999998 +2014-03-23 14:00:00,0.0,1001.673,178.01,66.73916667,8.860833332999999,2.281916667,237.99601489999998 +2014-03-23 15:00:00,0.0,1001.681,162.25416669999998,64.165,8.234083333,2.39025,237.9955194 +2014-03-23 16:00:00,0.0,1001.939333,97.93583333,61.6125,7.82125,2.0996666669999997,237.9952777 +2014-03-23 17:00:00,0.0,1002.206,47.229,65.025,7.1944166670000005,1.3574166669999999,237.9950239 +2014-03-23 18:00:00,0.0,1002.475,10.17560833,70.62333333,5.529833332999999,0.7120833329999999,237.9940087 +2014-03-23 19:00:00,0.0,1002.878667,0.039433333,72.17083333,3.889416667,0.11783333300000001,237.9940087 +2014-03-23 20:00:00,0.0,1003.069,0.0,77.61166667,3.875916667,0.136916667,237.9940087 +2014-03-23 21:00:00,0.0,1003.284667,0.0,85.76083333,2.23175,0.149083333,237.9940087 +2014-03-23 22:00:00,0.0,1004.001667,0.0,93.64166667,0.9035,0.29875,237.9925585 +2014-03-23 23:00:00,0.0,1004.071,0.0,98.15833333,0.139083333,0.36408333299999995,237.9925585 +2014-03-24 00:00:00,0.0,1004.293333,0.0,99.69166667,-0.5255833329999999,0.290083333,237.9925585 +2014-03-24 01:00:00,0.0,1004.672667,0.0,100.0,-1.033083333,0.2865,237.99205093333333 +2014-03-24 02:00:00,0.0,1004.704,0.0,100.0,-1.064166667,0.10475,237.99179715 +2014-03-24 03:00:00,0.0,1005.016333,0.0,100.0,-0.77375,0.470416667,237.99055236666666 +2014-03-24 04:00:00,0.0,1005.599667,0.0,100.0,-1.3535833330000002,0.328416667,237.99006893333333 +2014-03-24 05:00:00,0.0,1005.939333,0.0,100.0,-1.5419999999999998,0.271083333,237.99006893333333 +2014-03-24 06:00:00,0.0,1006.484667,4.162666667,100.0,-0.938083333,0.6004166670000001,237.98982721666667 +2014-03-24 07:00:00,0.0,1007.168333,32.15391667,100.0,0.255666667,0.250666667,237.98882415 +2014-03-24 08:00:00,2.4414978,1007.666333,115.9258333,97.70833333,2.737083333,1.023833333,237.98907793333333 +2014-03-24 09:00:00,0.0,1008.054,216.3525,91.34166667,3.77875,1.7954166669999998,237.98907793333333 +2014-03-24 10:00:00,0.0,1008.118667,321.8133333,83.39666667,6.6175,0.914,237.98933171666667 +2014-03-24 11:00:00,0.0,1007.979667,438.29916669999994,73.22,7.4345,1.246416667,237.98933171666667 +2014-03-24 12:00:00,0.0,1007.5939999999999,214.3925,67.865,8.336083333,1.75275,237.9893317166667 +2014-03-24 13:00:00,0.0,1007.325,227.94916669999998,72.02416667,7.40675,1.6105,237.9880628 +2014-03-24 14:00:00,0.0,1007.206333,247.4091667,64.73083333,8.340166667,1.4296666669999998,237.98857036666666 +2014-03-24 15:00:00,0.0,1006.902667,309.085,62.70083333,9.1775,0.897166667,237.98857036666666 +2014-03-24 16:00:00,0.0,1006.635,240.44416669999998,59.9025,8.060916667,2.43875,237.98857036666666 +2014-03-24 17:00:00,0.0,1006.7710000000001,92.55225,73.18166667,6.085916667,3.1350833330000003,237.98709593333334 +2014-03-24 18:00:00,0.0,1006.883,9.702291667,78.78833333,5.2725,0.833333333,237.98684215 +2014-03-24 19:00:00,0.0,1007.397667,0.05915,90.86666667,2.311666667,0.37925,237.98559736666667 +2014-03-24 20:00:00,0.0,1007.699667,0.0,94.675,2.26125,0.26775,237.98559736666667 +2014-03-24 21:00:00,0.0,1007.8939999999999,0.0,97.56666667,0.654083333,0.51275,237.98559736666667 +2014-03-24 22:00:00,0.0,1007.791667,0.0,98.65,-0.5721666670000001,0.124,237.98432839999998 +2014-03-24 23:00:00,0.0,1007.7810000000001,0.0,99.825,-1.199,0.28525,237.98432839999998 +2014-03-25 00:00:00,0.0,1007.748,0.0,100.0,-1.8273333330000001,0.122583333,237.98407459999999 +2014-03-25 01:00:00,0.0,1007.471333,0.0,100.0,-2.3615,0.08875,237.9838208 +2014-03-25 02:00:00,0.0,1006.923333,0.0,100.0,-2.885,0.11383333300000001,237.983567 +2014-03-25 03:00:00,0.0,1006.762667,0.0,100.0,-3.310166667,0.10875,237.983567 +2014-03-25 04:00:00,0.0,1006.720667,0.0,100.0,-3.572333333,0.134,237.9838208 +2014-03-25 05:00:00,0.0,1006.569,0.0,100.0,-3.992833333,0.12733333300000002,237.983567 +2014-03-25 06:00:00,0.0,1006.435333,6.075825,100.0,-4.150166667,0.1105,237.983567 +2014-03-25 07:00:00,0.0,1006.456333,34.20608333,100.0,-2.363083333,0.0058333330000000004,237.98332529999996 +2014-03-25 08:00:00,2.3865511440000002,1006.325,80.07708333,99.075,0.586916667,0.061833333,237.983567 +2014-03-25 09:00:00,0.0,1006.333333,258.2941667,90.25,3.452083333,0.571583333,237.98407459999999 +2014-03-25 10:00:00,0.0,1006.079667,333.8825,83.3975,5.265416667,0.990833333,237.9838208 +2014-03-25 11:00:00,0.0,1005.3839999999999,404.9675,73.33666667,7.9285,1.1461666670000001,237.9838208 +2014-03-25 12:00:00,0.0,1004.848333,310.205,63.85583333,9.465833332999999,1.34,237.9838208 +2014-03-25 13:00:00,0.0,1004.4689999999999,143.83833330000002,63.59833333,9.225833332999999,1.089583333,237.9828419 +2014-03-25 14:00:00,0.0,1004.454,345.7183333,63.50416667,7.6815,3.4835833330000003,237.9828419 +2014-03-25 15:00:00,0.0,1004.108667,148.48166669999998,59.33416667,8.6225,0.99575,237.9828419 +2014-03-25 16:00:00,0.0,1004.008333,102.5383333,59.50416667,9.168333333,1.060166667,237.9826002 +2014-03-25 17:00:00,0.0,1004.191333,52.94508333,63.9825,8.2875,1.3486666669999998,237.9823585 +2014-03-25 18:00:00,0.0,1004.581,17.41296667,67.565,7.556,1.6875,237.9823585 +2014-03-25 19:00:00,0.0,1005.080667,0.078866667,78.56333333,5.649666667000001,0.47475,237.9821168 +2014-03-25 20:00:00,0.0,1005.658,0.0,92.34166667,3.70225,0.19191666699999999,237.98084788333333 +2014-03-25 21:00:00,0.0,1005.797667,0.0,96.24166667,2.193833333,0.425,237.98084788333335 +2014-03-25 22:00:00,0.0,1006.046,0.0,98.15833333,-0.07883333299999999,0.335166667,237.98084788333333 +2014-03-25 23:00:00,0.0,1006.079,0.0,99.43333333,-1.057916667,0.201833333,237.9805941 +2014-03-26 00:00:00,0.0,1006.127,0.0,99.95,-1.593666667,0.275166667,237.9805941 +2014-03-26 01:00:00,0.0,1006.112333,0.0,100.0,-1.97025,0.14075,237.9805941 +2014-03-26 02:00:00,0.0,1006.210667,0.0,100.0,-2.660083333,0.18941666699999998,237.97986895 +2014-03-26 03:00:00,0.0,1006.189333,0.0,100.0,-3.1775,0.094083333,237.98035238333333 +2014-03-26 04:00:00,0.0,1006.447667,0.0,100.0,-3.53625,0.0795,237.97938551666667 +2014-03-26 05:00:00,0.0,1006.739333,0.019716667,100.0,-3.883916667,0.140833333,237.9791438 +2014-03-26 06:00:00,0.0,1007.195333,7.555508333,100.0,-3.74325,0.19325,237.97938551666667 +2014-03-26 07:00:00,0.0,1007.878667,30.89158333,100.0,-2.266166667,0.0415,237.97962723333333 +2014-03-26 08:00:00,0.0,1008.607667,53.06758333,100.0,-0.7995,0.041166667000000004,237.97863623333333 +2014-03-26 09:00:00,2.418688344,1009.016667,180.2791667,95.05,1.9311666669999998,0.275666667,237.97938551666667 +2014-03-26 10:00:00,0.0,1009.081333,337.5458333,80.28,6.101583333,0.756583333,237.9791438 +2014-03-26 11:00:00,0.0,1008.952,382.8883333,66.28666667,9.036666667,0.841333333,237.9791438 +2014-03-26 12:00:00,0.0,1008.8939999999999,332.09166669999996,57.74833333,10.10166667,1.165166667,237.97962723333333 +2014-03-26 13:00:00,0.0,1008.577333,206.6866667,54.53583333,9.933333333,2.3351666669999998,237.97938551666667 +2014-03-26 14:00:00,0.0,1008.362667,246.2308333,58.26166667,9.1375,2.5860000000000003,237.9791438 +2014-03-26 15:00:00,0.0,1008.089667,122.80333329999999,54.71833333,9.450833333,1.0675,237.97787488333339 +2014-03-26 16:00:00,0.0,1008.102,145.53408330000002,57.75083333,9.266666667,1.652333333,237.97838245000003 +2014-03-26 17:00:00,0.0,1008.158,51.06908333,74.9625,8.529333333,0.93925,237.97762110000005 +2014-03-26 18:00:00,0.0,1008.585333,14.060375,84.6,7.369083333,0.73925,237.97762110000005 +2014-03-26 19:00:00,0.0,1008.914333,0.078866667,94.24166667,5.6375,0.59525,237.97762110000005 +2014-03-26 20:00:00,0.0,1009.1289999999999,0.0,96.39166667,4.633666667,0.558083333,237.97737938333333 +2014-03-26 21:00:00,0.0,1009.243667,0.0,94.375,5.567416667000001,0.532083333,237.97762110000005 +2014-03-26 22:00:00,0.0,1009.150333,0.0,94.23333333,6.34225,1.187416667,237.97737938333339 +2014-03-26 23:00:00,0.0,1008.75,0.0,98.10833333,6.269666667,1.176083333,237.97762110000005 +2014-03-27 00:00:00,0.0,1008.777333,0.0,99.83333333,4.237083333,0.0805,237.97689595 +2014-03-27 01:00:00,0.0,1008.4960000000001,0.0,93.325,3.548,0.337083333,237.97665423333333 +2014-03-27 02:00:00,0.0,1008.360667,0.0,94.95833333,1.5335,0.7445,237.97665423333333 +2014-03-27 03:00:00,0.0,1007.962667,0.0,99.03333333,1.4780000000000002,0.655,237.97713766666672 +2014-03-27 04:00:00,0.0,1007.875,0.0,100.0,0.5955,0.578833333,237.9759170166667 +2014-03-27 05:00:00,0.0,1007.9416669999999,0.019716667,100.0,-0.304666667,0.597333333,237.97591701666667 +2014-03-27 06:00:00,0.0,1008.255667,7.792225,99.49166667,-0.41216666700000004,0.46166666700000003,237.9761708 +2014-03-27 07:00:00,0.0,1008.604333,41.16991667,95.01666667,2.226083333,0.9885,237.9761708 +2014-03-27 08:00:00,0.0,1008.556,79.75333333,84.98333333,5.56125,1.874166667,237.97665423333333 +2014-03-27 09:00:00,0.0,1008.610667,259.5775,74.85916667,8.024416667,2.573666667,237.9766542333334 +2014-03-27 10:00:00,0.0,1008.310667,336.1341667,64.80916667,10.03583333,2.870166667,237.97762110000005 +2014-03-27 11:00:00,0.0,1007.923333,369.5825,62.3,11.10333333,3.0339166669999997,237.97737938333339 +2014-03-27 12:00:00,0.0,1007.444,388.96666669999996,58.6,12.14833333,3.797916667,237.97542153333336 +2014-03-27 13:00:00,0.0,1007.081667,339.10333330000003,54.185,13.175,3.117666667,237.97689595 +2014-03-27 14:00:00,0.0,1006.677333,322.84583330000004,54.32333333,13.67,3.1705,237.97665423333333 +2014-03-27 15:00:00,0.0,1006.556333,224.72916669999998,52.5925,14.0625,3.835333333,237.97641251666667 +2014-03-27 16:00:00,0.0,1006.475,157.79633330000001,53.06416667,13.6875,3.853916667,237.97665423333333 +2014-03-27 17:00:00,0.0,1006.368667,50.05291667,56.535,12.64,2.821333333,237.9761708 +2014-03-27 18:00:00,0.0,1006.718333,14.88870833,61.25,11.46583333,2.898666667,237.97566323333334 +2014-03-27 19:00:00,0.0,1007.291,0.1183,73.61916667,9.487666667000001,1.7209166669999998,237.97540945 +2014-03-27 20:00:00,0.0,1007.966333,0.0,88.75,6.318083333,0.37108333299999996,237.9746481 +2014-03-27 21:00:00,0.0,1008.4639999999999,0.0,94.21666667,7.878666667,1.282666667,237.9741647 +2014-03-27 22:00:00,0.0,1008.922667,0.0,96.61666667,5.542583333,0.6385,237.97319790000003 +2014-03-27 23:00:00,0.0,1009.1436669999999,0.0,97.95833333,3.4565,0.545666667,237.97368130000004 +2014-03-28 00:00:00,0.0,1009.3,0.0,99.25833333,3.690416667,0.6509999999999999,237.973923 +2014-03-28 01:00:00,0.0,1009.46,0.0,93.60833333,4.40425,0.606083333,237.97416470000005 +2014-03-28 02:00:00,0.0,1009.9623330000001,0.0,91.975,4.516666667,0.4295,237.97317370000005 +2014-03-28 03:00:00,0.0,1010.2560000000001,0.0,92.55833333,4.148416667,0.286583333,237.97192890000005 +2014-03-28 04:00:00,0.0,1010.464333,0.0,97.8,2.933083333,0.5076666670000001,237.97192890000005 +2014-03-28 05:00:00,0.0,1010.899667,0.039433333,99.30833333,1.5523333330000002,0.540333333,237.97218270000005 +2014-03-28 06:00:00,0.0,1011.47,7.614425,99.96666667,1.068416667,0.332,237.97319790000003 +2014-03-28 07:00:00,0.0,1012.139333,31.04966667,95.725,4.604,1.597833333,237.97192890000005 +2014-03-28 08:00:00,0.0,1012.720333,78.57383333,81.48333333,7.057916667000001,2.7073333330000002,237.97167510000006 +2014-03-28 09:00:00,0.0,1013.185,257.09833330000004,73.965,8.904166667,2.69675,237.97167510000006 +2014-03-28 10:00:00,0.0,1013.35,345.6775,67.36083333,11.47916667,2.6848333330000003,237.97192890000005 +2014-03-28 11:00:00,0.0,1013.073333,392.595,59.42333333,14.205,2.9955,237.97269030000004 +2014-03-28 12:00:00,0.0,1012.891667,409.325,44.96666667,16.16,2.621416667,237.97243650000004 +2014-03-28 13:00:00,0.0,1012.752333,398.9533333,43.085,16.31333333,2.819416667,237.97269030000004 +2014-03-28 14:00:00,0.0,1012.512667,315.5133333,45.98833333,16.37916667,3.351583333,237.97269030000004 +2014-03-28 15:00:00,0.0,1012.0419999999999,275.8583333,43.1625,16.36333333,3.074416667,237.97319790000003 +2014-03-28 16:00:00,0.0,1012.056,130.6083333,51.055,14.56416667,3.9900833330000003,237.97192890000005 +2014-03-28 17:00:00,0.0,1012.485,66.62366667,57.93166667,12.85583333,3.6135833330000002,237.97167510000006 +2014-03-28 18:00:00,0.0,1013.174333,20.508425,61.47333333,11.08166667,3.557833333,237.97022489999998 +2014-03-28 19:00:00,0.0,1014.128333,0.13801666699999998,71.87916667,9.210833333,2.794083333,237.96997109999995 +2014-03-28 20:00:00,0.0,1014.76,0.0,86.89166667,7.23175,1.162833333,237.96920969999996 +2014-03-28 21:00:00,0.0,1015.247667,0.0,88.28333333,6.321833333,1.0280833329999999,237.96895589999997 +2014-03-28 22:00:00,0.0,1015.639333,0.0,95.03333333,3.826916667,0.535666667,237.96870209999997 +2014-03-28 23:00:00,0.0,1015.889333,0.0,98.04166667,3.265166667,0.46875,237.96870209999997 +2014-03-29 00:00:00,0.0,1016.141667,0.0,99.00833333,1.6580833330000002,0.42325,237.96870209999997 +2014-03-29 01:00:00,0.0,1015.964667,0.0,100.0,0.581,0.29583333300000003,237.96819453333333 +2014-03-29 02:00:00,0.0,1016.0103330000001,0.0,100.0,0.236666667,0.256333333,237.96743318333336 +2014-03-29 03:00:00,0.0,1016.0583330000001,0.0,100.0,-0.009666667,0.278333333,237.96669596666666 +2014-03-29 04:00:00,0.0,1016.048,0.0,100.0,-0.5740833329999999,0.284,237.96669596666666 +2014-03-29 05:00:00,0.0,1016.145333,0.05915,100.0,-1.05375,0.06975,237.96597081666664 +2014-03-29 06:00:00,0.0,1016.589333,11.086425,100.0,-1.14925,0.19375,237.96597081666664 +2014-03-29 07:00:00,0.0,1017.203667,42.17441667,100.0,1.3195,0.12925,237.9654753166666 +2014-03-29 08:00:00,0.0,1017.597667,85.295,98.00833333,5.022,1.618916667,237.9652215333333 +2014-03-29 09:00:00,0.0,1017.569,249.83,87.00833333,7.820333333,2.162666667,237.96572909999995 +2014-03-29 10:00:00,0.0,1017.208667,348.9208333,74.87666667,10.43916667,1.54175,237.96572909999995 +2014-03-29 11:00:00,0.0,1016.756667,403.6841667,65.69583333,14.23333333,0.8605,237.96597081666664 +2014-03-29 12:00:00,0.0,1016.2439999999999,430.98416669999995,52.075,16.9725,2.45375,237.96572909999995 +2014-03-29 13:00:00,0.0,1015.867333,420.26833330000005,42.17666667,18.32166667,2.187083333,237.96572909999995 +2014-03-29 14:00:00,0.0,1015.192,371.16333330000003,38.1025,19.1075,1.834416667,237.96669596666666 +2014-03-29 15:00:00,0.0,1014.440333,255.7158333,36.39916667,19.14583333,1.8245,237.96572909999995 +2014-03-29 16:00:00,0.0,1013.763,177.1875,38.545,18.7975,1.7204166669999998,237.96572909999995 +2014-03-29 17:00:00,0.0,1013.414667,48.12791667,37.575,18.3,1.56025,237.96572909999995 +2014-03-29 18:00:00,0.0,1013.564333,20.3882,51.37,14.16916667,0.9740000000000001,237.9652215333333 +2014-03-29 19:00:00,0.0,1013.658333,0.216883333,77.7525,8.125166667,0.404583333,237.96396470000002 +2014-03-29 20:00:00,0.0,1013.764667,0.0,86.10833333,6.998666667,0.586583333,237.9642064 +2014-03-29 21:00:00,0.0,1013.924667,0.0,89.55,6.168083332999999,0.47433333299999997,237.96396470000002 +2014-03-29 22:00:00,0.0,1013.837667,0.0,94.58333333,4.417083333,0.5116666670000001,237.9639647 +2014-03-29 23:00:00,0.0,1013.798,0.0,97.40833333,3.3658333330000003,0.39541666700000005,237.96372300000004 +2014-03-30 00:00:00,0.0,1013.477333,0.0,99.13333333,2.3995833330000003,0.3795,237.963723 +2014-03-30 01:00:00,0.0,1013.194,0.0,99.88333333,1.71175,0.34033333299999996,237.9642064 +2014-03-30 02:00:00,0.0,1013.083333,0.0,100.0,1.0424166670000001,0.298583333,237.9639647 +2014-03-30 03:00:00,0.0,1013.0189999999999,0.0,100.0,0.674416667,0.241666667,237.96396470000002 +2014-03-30 04:00:00,0.0,1012.783333,0.0,100.0,0.047166667,0.174916667,237.9624903 +2014-03-30 05:00:00,0.0,1012.868667,0.157791667,100.0,-0.39083333299999995,0.26458333300000003,237.96250240000003 +2014-03-30 06:00:00,0.0,1013.151667,15.97930833,100.0,-0.2105,0.16275,237.96250240000003 +2014-03-30 07:00:00,0.0,1013.318667,48.80691667,100.0,2.821333333,0.068083333,237.96148720000005 +2014-03-30 08:00:00,0.0,1013.302333,96.78666667,96.29166667,7.263,0.26725,237.96275620000003 +2014-03-30 09:00:00,0.0,1013.366667,235.83,81.95916667,10.5525,0.827916667,237.96275620000003 +2014-03-30 10:00:00,0.0,1013.256333,317.3041667,73.00083333,12.65833333,1.0075,237.96323960000004 +2014-03-30 11:00:00,0.0,1012.794333,377.9825,62.50416667,16.495,0.770166667,237.9634813 +2014-03-30 12:00:00,0.0,1012.385667,410.2291667,44.2025,18.28416667,1.161916667,237.963723 +2014-03-30 13:00:00,0.0,1011.988,403.4625,44.75916667,19.41416667,1.43825,237.9639647 +2014-03-30 14:00:00,0.0,1011.254667,363.6908333,41.87666667,20.06083333,1.079916667,237.963723 +2014-03-30 15:00:00,0.0,1010.846,241.48833330000002,39.99416667,20.17833333,0.7184166670000001,237.9642064 +2014-03-30 16:00:00,0.0,1010.4689999999999,109.88833329999999,44.11583333,19.38916667,0.486833333,237.9639647 +2014-03-30 17:00:00,0.0,1010.3563330000001,55.72,54.58416667,17.18083333,0.238083333,237.9634813 +2014-03-30 18:00:00,0.0,1010.293667,13.29014167,75.25583333,12.43666667,0.324666667,237.96224860000004 +2014-03-30 19:00:00,0.0,1010.6060000000001,0.1183,81.20333333,10.04,0.5063333329999999,237.96123340000005 +2014-03-30 20:00:00,0.0,1010.820667,0.0,84.425,8.201166667,0.212166667,237.96148720000005 +2014-03-30 21:00:00,0.0,1010.9019999999999,0.0,88.63333333,6.222,0.398416667,237.96123340000005 +2014-03-30 22:00:00,0.0,1010.939667,0.0,90.25,5.689,0.297166667,237.96123340000005 +2014-03-30 23:00:00,0.0,1010.883333,0.0,90.55833333,5.118833333,0.1605,237.96123340000005 +2014-03-31 00:00:00,0.0,1010.835667,0.0,91.75,4.604083333,0.11775,237.96123340000005 +2014-03-31 01:00:00,0.0,1010.377333,0.0,94.09166667,4.032666667,0.26425,237.96148720000005 +2014-03-31 02:00:00,0.0,1010.087667,0.0,95.25833333,3.5964166669999997,0.14775,237.96123340000005 +2014-03-31 03:00:00,0.0,1009.9813330000001,0.0,95.925,3.614416667,0.183166667,237.96123340000005 +2014-03-31 04:00:00,0.0,1010.012667,0.0,97.13333333,3.070083333,0.1535,237.96123340000005 +2014-03-31 05:00:00,0.0,1009.931,0.039433333,98.21666667,2.633083333,0.229583333,237.96050830000001 +2014-03-31 06:00:00,0.0,1010.095667,6.469516667000001,98.38333333,2.784833333,0.061333333,237.96075 +2014-03-31 07:00:00,0.0,1010.4830000000001,42.71691667,96.61666667,4.010833333,0.048,237.96050830000001 +2014-03-31 08:00:00,0.0,1010.737333,95.375,88.81666667,6.3865,0.149583333,237.9605083 +2014-03-31 09:00:00,0.0,1011.124667,146.8425,75.88083333,8.95475,0.34700000000000003,237.96002489999998 +2014-03-31 10:00:00,0.0,1011.377,168.1633333,67.95583333,11.55583333,0.166166667,237.96050830000001 +2014-03-31 11:00:00,0.0,1011.375,213.3483333,64.91583333,14.01083333,0.342083333,237.96123340000005 +2014-03-31 12:00:00,0.0,1011.131667,258.8075,60.34416667,15.49666667,0.72,237.96099170000002 +2014-03-31 13:00:00,0.0,1010.652333,252.4841667,53.99833333,17.3925,0.441166667,237.96099170000005 +2014-03-31 14:00:00,0.0,1010.2610000000001,256.8475,50.0975,18.03833333,0.625083333,237.96123340000005 +2014-03-31 15:00:00,0.0,1009.746333,234.4183333,46.82083333,18.6275,0.671583333,237.96123340000003 +2014-03-31 16:00:00,0.0,1009.235667,208.06916669999998,37.53416667,19.03666667,1.123166667,237.95959566666667 +2014-03-31 17:00:00,0.0,1008.717667,83.37641667,38.99083333,18.3325,1.1675,237.96028075 +2014-03-31 18:00:00,0.0,1008.7660000000001,18.14248333,60.8175,14.08333333,0.592916667,237.9585764 +2014-03-31 19:00:00,0.0,1008.9573330000001,0.197166667,79.985,8.946333333,0.458166667,237.95822550000003 +2014-03-31 20:00:00,0.0,1009.125,0.0,85.225,7.399,0.35316666700000005,237.9578746 +2014-03-31 21:00:00,0.0,1009.041667,0.0,88.11666667,5.971416667000001,0.2855,237.95822550000003 +2014-03-31 22:00:00,0.0,1009.158333,0.0,89.55833333,5.3739166670000005,0.47675,237.9585764 +2014-03-31 23:00:00,0.0,1009.2,0.0,90.175,4.5896666669999995,0.173916667,237.95717280000005 +2014-01-04 00:00:00,0.0,1009.266667,0.0,91.475,4.9135,0.11641666699999999,238.01092933333334 +2014-01-04 01:00:00,0.0,1008.96,0.0,93.75,4.849916667,0.09925,238.011556 +2014-01-04 02:00:00,0.0,1008.6010000000001,0.0,96.475,4.251416667,0.10258333300000001,238.01030266666666 +2014-01-04 03:00:00,0.0,1008.275667,0.0,97.88333333,3.765166667,0.24958333300000002,238.01092933333334 +2014-01-04 04:00:00,0.0,1008.416,0.0,99.025,3.987166667,0.163583333,238.01092933333334 +2014-01-04 05:00:00,0.0,1008.2760000000001,0.09858333300000001,98.81666667,4.356166667,0.073333333,238.00998933333332 +2014-01-04 06:00:00,0.0,1008.157333,11.04495,99.66666667,3.70225,0.08716666699999999,238.00967599999998 +2014-01-04 07:00:00,0.0,1008.574,44.3905,99.53333333,4.744,0.27075,238.00934699999996 +2014-01-04 08:00:00,0.0,1008.641667,114.40916670000001,85.16416667,9.694166667000001,0.13375,238.00934699999996 +2014-01-04 09:00:00,0.0,1008.6089999999999,233.24,72.90666667,12.45916667,0.541583333,238.00901799999997 +2014-01-04 10:00:00,0.0,1008.4760000000001,327.97333330000004,69.27083333,14.81833333,1.0665,238.00934700000002 +2014-01-04 11:00:00,0.0,1008.150333,382.1358333,60.725,17.695,1.090666667,238.00967599999998 +2014-01-04 12:00:00,0.0,1007.586,342.5391667,55.535,19.56166667,1.118083333,238.01030266666666 +2014-01-04 13:00:00,0.0,1006.977,288.75,46.43833333,20.03416667,1.678916667,238.01124266666667 +2014-01-04 14:00:00,0.0,1006.311,303.0183333,39.81416667,20.78,1.55725,238.01124266666667 +2014-01-04 15:00:00,0.0,1005.701333,250.0458333,36.46,20.60916667,1.873583333,238.01124266666667 +2014-01-04 16:00:00,0.0,1005.268,164.535,34.94083333,20.53083333,1.91525,238.011556 +2014-01-04 17:00:00,0.0,1005.250333,72.3975,38.3575,19.01666667,1.650916667,238.01092933333334 +2014-01-04 18:00:00,0.0,1005.124667,19.578825,60.295,14.87333333,0.504833333,238.01092933333334 +2014-01-04 19:00:00,0.0,1005.2739999999999,0.2366,74.41916667,11.94416667,0.42575,238.010616 +2014-01-04 20:00:00,0.0,1005.366667,0.0,78.93666667,10.8575,0.15658333300000002,238.00998933333332 +2014-01-04 21:00:00,0.0,1005.35,0.0,84.36666667,8.86,0.297,238.011556 +2014-01-04 22:00:00,0.0,1005.457667,0.0,88.78333333,7.34225,0.4345,238.01030266666666 +2014-01-04 23:00:00,0.0,1005.492333,0.0,91.00833333,6.91175,0.256583333,238.010616 +2014-02-04 00:00:00,0.0,1005.333667,0.0,92.5,6.010166667000001,0.304416667,238.06082839999996 +2014-02-04 01:00:00,0.0,1005.3083330000001,0.0,93.80833333,5.2866666669999995,0.26325,238.0603208 +2014-02-04 02:00:00,0.0,1005.275667,0.0,95.38333333,4.19675,0.264,238.06006699999998 +2014-02-04 03:00:00,0.0,1005.050333,0.0,96.38333333,3.4315833330000003,0.238916667,238.0598132 +2014-02-04 04:00:00,0.0,1004.967333,0.0,97.24166667,2.600333333,0.221,238.05955940000004 +2014-02-04 05:00:00,0.0,1004.9,0.27615,99.425,2.04075,0.21325,238.05883429999997 +2014-02-04 06:00:00,0.0,1005.089667,12.62333333,99.975,1.803166667,0.19375,238.05883430000003 +2014-02-04 07:00:00,0.0,1005.209333,43.76925,98.85,5.500916667,0.22091666699999998,238.0583388 +2014-02-04 08:00:00,0.0,1005.025333,101.9841667,85.825,9.4475,0.664083333,238.05810919999996 +2014-02-04 09:00:00,0.0,1005.083333,232.96,69.63,12.61666667,0.924666667,238.057094 +2014-02-04 10:00:00,0.0,1004.8839999999999,334.5183333,66.7075,15.19166667,1.141833333,238.0568402 +2014-02-04 11:00:00,0.0,1004.319333,348.7458333,60.6,17.64083333,1.165583333,238.057094 +2014-02-04 12:00:00,0.0,1003.7180000000001,232.5225,59.85583333,18.8925,1.202,238.0578554 +2014-02-04 13:00:00,0.0,1003.293333,275.46166669999997,57.6175,19.4875,0.9285,238.057094 +2014-02-04 14:00:00,0.0,1002.370667,285.2966667,49.50833333,20.35916667,1.040583333,238.0576016 +2014-02-04 15:00:00,0.0,1001.71,131.0925,45.0875,21.22416667,1.7381666669999998,238.0568402 +2014-02-04 16:00:00,0.0,1001.168667,145.3783333,45.89166667,20.39833333,1.7345,238.05659849999998 +2014-02-04 17:00:00,0.0,1000.842333,64.76633333,49.52,19.4875,1.59225,238.05658640000001 +2014-02-04 18:00:00,0.0,1000.75,21.43300833,62.03583333,16.95916667,1.2348333329999999,238.05634470000004 +2014-02-04 19:00:00,0.0,1000.881667,0.256316667,81.54666667,11.82416667,0.48758333299999995,238.05586129999998 +2014-02-04 20:00:00,0.0,1000.958333,0.0,87.675,9.416666667000001,0.317916667,238.05513619999996 +2014-02-04 21:00:00,0.0,1000.875667,0.0,92.29166667,7.999333332999999,0.283916667,238.05561959999997 +2014-02-04 22:00:00,0.0,1000.733667,0.0,94.15,7.322666667000001,0.257666667,238.05537789999997 +2014-02-04 23:00:00,0.0,1000.642333,0.0,95.35833333,6.477666667,0.1835,238.05512409999997 +2014-03-04 00:00:00,0.0,1000.492,0.0,97.375,5.86275,0.35333333299999997,238.0223609 +2014-03-04 01:00:00,0.0,1000.259333,0.0,98.66666667,5.309583333,0.367333333,238.0221071 +2014-03-04 02:00:00,0.0,1000.150667,0.0,99.69166667,5.003583333,0.228333333,238.0223609 +2014-03-04 03:00:00,0.0,999.9506667000002,0.0,100.0,5.200333333000001,0.169916667,238.0215995 +2014-03-04 04:00:00,0.0,999.717,0.0,100.0,5.4916666670000005,0.178416667,238.0208381 +2014-03-04 05:00:00,0.0,999.55,0.216941667,100.0,5.648833333,0.1345,238.0208381 +2014-03-04 06:00:00,0.0,999.9063332999999,19.54516667,100.0,4.6819999999999995,0.271416667,238.0208381 +2014-03-04 07:00:00,0.0,1000.548333,69.16933333,98.83333333,7.54975,0.202166667,238.02059640000002 +2014-03-04 08:00:00,0.0,1000.8489999999999,142.9691667,82.10083333,11.38583333,0.629166667,238.0198713 +2014-03-04 09:00:00,0.0,1001.075667,203.6883333,75.00583333,13.49416667,0.69975,238.02059640000002 +2014-03-04 10:00:00,0.0,1001.074333,211.2833333,70.49833333,15.95583333,0.7506666670000001,238.02059640000002 +2014-03-04 11:00:00,0.0,1001.0583330000001,202.06666669999998,66.34416667,17.5875,0.868166667,238.01962960000003 +2014-03-04 12:00:00,0.0,1000.801,234.4358333,62.39666667,17.83,1.696833333,238.01938790000005 +2014-03-04 13:00:00,0.0,1000.6089999999999,319.9058333,57.38083333,19.8625,1.4215,238.01962960000003 +2014-03-04 14:00:00,0.0,1000.193667,267.0733333,51.50166667,21.3025,1.538666667,238.01987130000006 +2014-03-04 15:00:00,0.0,999.925,179.2933333,50.97166667,21.59,1.171833333,238.0198713 +2014-03-04 16:00:00,0.0,999.8760000000001,100.8233333,48.9475,20.71083333,1.046833333,238.01938790000005 +2014-03-04 17:00:00,0.0,1000.040667,69.40266667,50.89666667,19.35333333,1.58325,238.01837270000001 +2014-03-04 18:00:00,0.0,1000.056667,14.2163,73.2075,16.5225,0.8171666670000001,238.0181189 +2014-03-04 19:00:00,0.0,1000.300667,0.276033333,84.44166667,12.65333333,0.300583333,238.0173817 +2014-03-04 20:00:00,0.0,1000.606667,0.0,87.9,10.47083333,0.391,238.0164149 +2014-03-04 21:00:00,0.0,1000.932,0.0,91.25,9.785,0.337916667,238.0164149 +2014-03-04 22:00:00,0.0,1001.2660000000001,0.0,90.49166667,11.13166667,0.259,238.0164149 +2014-03-04 23:00:00,0.0,1001.432667,0.0,91.825,10.8925,0.11199999999999999,238.0161611 +2014-04-04 00:00:00,0.0,1001.483333,0.0,92.50833333,10.85916667,0.345916667,237.9513078 +2014-04-04 01:00:00,0.0,1001.658333,0.0,91.50833333,10.9725,0.40916666700000004,237.95028853333335 +2014-04-04 02:00:00,0.0,1001.583333,0.0,93.65,10.65916667,0.09916666699999999,237.95062271666666 +2014-04-04 03:00:00,0.0,1001.675,0.0,91.13333333,10.33416667,0.108583333,237.95062271666666 +2014-04-04 04:00:00,0.0,1001.641667,0.0,94.49166667,9.8825,0.277333333,237.94995435 +2014-04-04 05:00:00,0.0,1001.690667,0.276033333,96.425,8.9525,0.167416667,237.94995435 +2014-04-04 06:00:00,0.0,1002.0319999999999,13.82319167,98.3,7.753083332999999,0.22775,237.94928598333334 +2014-04-04 07:00:00,0.0,1002.623333,56.45091667,96.55833333,9.003333332999999,0.224583333,237.94995435 +2014-04-04 08:00:00,0.0,1002.765667,111.8075,85.32583333,12.3475,0.45041666700000005,237.94962016666668 +2014-04-04 09:00:00,0.0,1003.1833330000001,167.5333333,71.62166667,14.46333333,0.45,237.95095690000002 +2014-04-04 10:00:00,0.0,1003.282667,206.9083333,62.26666667,15.9025,0.94175,237.9489518 +2014-04-04 11:00:00,0.0,1003.365667,211.8316667,63.58083333,17.15916667,1.088166667,237.94962016666668 +2014-04-04 12:00:00,0.0,1003.3510000000001,256.2291667,57.29416667,18.28166667,1.8189166669999999,237.94928598333334 +2014-04-04 13:00:00,0.0,1003.035,238.98,54.91083333,19.14833333,2.0743333330000002,237.9489518 +2014-04-04 14:00:00,0.0,1002.783333,195.4341667,54.8975,19.46833333,2.58075,237.9489518 +2014-04-04 15:00:00,0.0,1002.567333,148.995,57.34666667,19.4475,3.223583333,237.9489518 +2014-04-04 16:00:00,0.0,1002.5160000000001,96.53583333,58.27666667,18.725,3.0099166669999997,237.94825 +2014-04-04 17:00:00,0.0,1002.799333,50.90108333,64.29833333,17.8825,2.23325,237.94684640000006 +2014-04-04 18:00:00,0.0,1003.190333,13.46881667,71.09916667,16.93583333,1.85975,237.94719730000006 +2014-04-04 19:00:00,0.0,1003.714667,0.216883333,82.49583333,15.76333333,1.3973333330000002,237.94617803333335 +2014-04-04 20:00:00,0.0,1004.248333,0.0,91.875,14.2675,0.821583333,237.94550966666668 +2014-04-04 21:00:00,0.0,1005.113667,0.0,90.55,12.03416667,0.600916667,237.9448413 +2014-04-04 22:00:00,0.0,1005.408667,0.0,95.6,10.63666667,0.3345,237.9448413 +2014-04-04 23:00:00,0.0,1005.407333,0.0,98.50833333,9.0025,0.279416667,237.9448413 +2014-05-04 00:00:00,0.0,1005.508667,0.0,99.675,8.540833333,0.35625,237.847994 +2014-05-04 01:00:00,0.0,1005.725,0.0,99.9,8.155916667,0.133333333,237.847994 +2014-05-04 02:00:00,0.0,1005.55,0.0,100.0,7.45725,0.198,237.847994 +2014-05-04 03:00:00,0.0,1005.8969999999999,0.0,100.0,7.738666667,0.38208333299999997,237.847994 +2014-05-04 04:00:00,5.066574264,1006.523667,0.0,100.0,9.929166667,0.5195,237.847994 +2014-05-04 05:00:00,18.29828995,1007.081667,0.1183,99.99166667,10.445,0.8009999999999999,237.8458886 +2014-05-04 06:00:00,2.421557784,1007.531667,3.7667583330000003,98.75,10.21833333,0.517416667,237.8458886 +2014-05-04 07:00:00,12.51216617,1008.164667,31.3775,97.75833333,10.63333333,0.5389166670000001,237.8458886 +2014-05-04 08:00:00,0.0,1008.548333,93.33916667,94.55,11.67416667,0.9209999999999999,237.8465904 +2014-05-04 09:00:00,0.0,1009.107,179.41,88.70833333,13.49,1.42925,237.84764310000003 +2014-05-04 10:00:00,0.0,1009.4910000000001,207.4916667,82.405,14.635,1.636416667,237.8458886 +2014-05-04 11:00:00,0.0,1009.816333,139.4866667,81.74166667,14.92416667,0.9933333329999999,237.8458886 +2014-05-04 12:00:00,2.4050227680000003,1009.882,144.0308333,79.01666667,15.6025,0.35266666700000004,237.84488605 +2014-05-04 13:00:00,0.0,1010.116667,142.8175,78.53416667,15.7125,1.06525,237.84388349999998 +2014-05-04 14:00:00,0.0,1010.298667,135.3975,80.89666667,15.6325,1.3155,237.8411097333333 +2014-05-04 15:00:00,0.0,1010.474333,140.5658333,83.23333333,15.74333333,1.3966666669999999,237.84010718333332 +2014-05-04 16:00:00,0.0,1010.7073330000001,83.27666667,83.05833333,15.65333333,1.353083333,237.839773 +2014-05-04 17:00:00,0.0,1011.148,32.7775,83.96666667,15.18,1.710833333,237.839773 +2014-05-04 18:00:00,0.0,1011.591,13.48841667,87.225,14.16333333,1.40325,237.8383694 +2014-05-04 19:00:00,0.0,1012.148,1.775025,90.56666667,13.31,1.317916667,237.8376676 +2014-05-04 20:00:00,0.0,1012.714667,0.0,90.825,13.0025,0.924416667,237.8376676 +2014-05-04 21:00:00,0.0,1013.09,0.0,91.925,12.67833333,0.26475,237.8376676 +2014-05-04 22:00:00,0.0,1013.316333,0.0,93.4,11.51416667,0.25525,237.83599668333332 +2014-05-04 23:00:00,0.0,1013.5169999999999,0.0,98.95,9.626166667,0.34166666700000003,237.83566250000004 +2014-06-04 00:00:00,0.0,1013.5906669999999,0.0,99.95,7.239416667,0.339583333,237.722273 +2014-06-04 01:00:00,0.0,1013.708333,0.0,100.0,5.920833332999999,0.11825,237.7240275 +2014-06-04 02:00:00,0.0,1013.575,0.0,100.0,5.22975,0.0185,237.72538094999996 +2014-06-04 03:00:00,0.0,1013.467667,0.0,100.0,4.417666667,0.08641666699999999,237.72638349999997 +2014-06-04 04:00:00,0.0,1013.325,0.0,100.0,3.417833333,0.167166667,237.7284888 +2014-06-04 05:00:00,0.0,1013.565333,0.4536,100.0,2.7846666669999998,0.040083333,237.72778703333333 +2014-06-04 06:00:00,0.0,1014.239333,15.46265,100.0,4.224416667,0.0355,237.7284888 +2014-06-04 07:00:00,0.0,1014.490667,61.96225,100.0,6.192166667,0.1255,237.7294914 +2014-06-04 08:00:00,0.0,1014.708333,95.82416667,100.0,7.34575,0.31275,237.730494 +2014-06-04 09:00:00,0.0,1014.716667,221.8825,96.23333333,9.256666667000001,0.751166667,237.72914051666666 +2014-06-04 10:00:00,0.0,1014.692333,367.8675,84.91666667,11.96833333,1.4058333330000001,237.7233257 +2014-06-04 11:00:00,0.0,1014.483667,346.7216667,71.79333333,15.69083333,1.48825,237.7168257666667 +2014-06-04 12:00:00,0.0,1014.192667,393.3125,53.00083333,17.15916667,1.11475,237.714052 +2014-06-04 13:00:00,0.0,1013.984667,312.0833333,50.84166667,18.74916667,1.49775,237.7119466 +2014-06-04 14:00:00,0.0,1013.551,174.0725,53.32666667,18.2325,1.26475,237.71094405 +2014-06-04 15:00:00,0.0,1013.2510000000001,160.4516667,54.13,18.23,0.580916667,237.7099415 +2014-06-04 16:00:00,0.0,1013.076,111.52166670000001,55.59583333,18.47,1.012666667,237.7099415 +2014-06-04 17:00:00,0.0,1012.9910000000001,61.3095,57.53833333,17.67416667,1.124583333,237.7106098666667 +2014-06-04 18:00:00,0.0,1013.3489999999999,23.6824,64.09666667,17.06833333,1.067583333,237.7122975 +2014-06-04 19:00:00,0.0,1013.565333,0.453483333,70.22916667,14.67,0.19475,237.7154556 +2014-06-04 20:00:00,0.0,1014.189,0.0,84.08833333,11.74,0.073166667,237.7178283166667 +2014-06-04 21:00:00,0.0,1014.4760000000001,0.0,93.49166667,10.36333333,0.26408333300000003,237.72026789999998 +2014-06-04 22:00:00,0.0,1014.4739999999999,0.0,92.88333333,10.87166667,0.141916667,237.7219388166667 +2014-06-04 23:00:00,0.0,1014.674333,0.0,89.95,10.94416667,0.002,237.7229748 +2014-07-04 00:00:00,0.0,1014.551,0.0,93.3,10.0775,0.133,237.60417139999996 +2014-07-04 01:00:00,0.0,1014.359333,0.0,92.8,10.25083333,0.15758333300000002,237.6072292 +2014-07-04 02:00:00,0.0,1014.1916669999999,0.0,95.96666667,8.9625,0.177083333,237.60965206666665 +2014-07-04 03:00:00,0.0,1014.2330000000001,0.0,98.1,9.538333332999999,0.132166667,237.6123924 +2014-07-04 04:00:00,0.0,1014.208667,0.0,97.125,10.1925,0.08525,237.61409675000002 +2014-07-04 05:00:00,0.0,1014.316333,0.49291666700000003,97.11666667,10.41666667,0.018833333,237.61615199999997 +2014-07-04 06:00:00,0.0,1014.3660000000001,6.034641667000001,97.15833333,10.67416667,0.260083333,237.61820724999998 +2014-07-04 07:00:00,0.0,1014.400667,39.87666667,94.75,11.47083333,0.5235,237.6202625 +2014-07-04 08:00:00,0.0,1014.333333,79.91083333,91.025,12.28916667,1.0375,237.61889233333332 +2014-07-04 09:00:00,0.0,1014.342,154.3325,87.55833333,13.19916667,1.2720833329999999,237.6116906 +2014-07-04 10:00:00,0.0,1013.951333,291.5325,82.46,15.2575,1.23125,237.60104675 +2014-07-04 11:00:00,0.0,1013.295,315.3441667,73.07416667,18.26666667,1.861083333,237.59247486666666 +2014-07-04 12:00:00,0.0,1012.452667,333.41,65.05583333,19.27583333,2.4325,237.58833098333335 +2014-07-04 13:00:00,0.0,1011.7769999999999,294.5133333,62.8975,19.31833333,2.804333333,237.5859081333333 +2014-07-04 14:00:00,0.0,1010.952667,301.2216667,60.14083333,20.08416667,2.5779166669999998,237.5835187 +2014-07-04 15:00:00,0.0,1010.02,233.0125,56.60333333,20.1975,2.5964166669999997,237.57974238333335 +2014-07-04 16:00:00,0.0,1009.169667,163.44416669999998,53.90166667,19.81833333,2.4075833330000003,237.57905730000002 +2014-07-04 17:00:00,0.0,1008.360333,70.79333333,53.60416667,19.61666667,2.654666667,237.57700205000003 +2014-07-04 18:00:00,0.0,1007.818333,17.07533333,61.65666667,16.6875,1.131333333,237.57564860000002 +2014-07-04 19:00:00,0.0,1007.492667,0.670425,84.66583333,12.0025,0.35958333299999995,237.57599950000005 +2014-07-04 20:00:00,0.0,1006.927,0.0,90.86666667,11.1775,0.240083333,237.57767041666668 +2014-07-04 21:00:00,0.0,1006.683,0.0,77.28583333,11.56666667,0.469416667,237.58111255000003 +2014-07-04 22:00:00,0.0,1006.509667,0.0,71.9975,13.7575,1.021916667,237.58420378333335 +2014-07-04 23:00:00,0.0,1006.151667,0.0,58.45,14.5075,0.971666667,237.58727829999998 +2014-08-04 00:00:00,0.0,1006.008333,0.0,59.375,18.26,1.5005,237.5244679 +2014-08-04 01:00:00,0.0,1005.468333,0.0,65.1975,16.85916667,1.102666667,237.5223625 +2014-08-04 02:00:00,0.0,1005.557,0.0,65.98666667,16.99416667,1.5348333330000001,237.5203574 +2014-08-04 03:00:00,0.0,1005.825667,0.0,78.3525,13.9125,0.5914166670000001,237.5203574 +2014-08-04 04:00:00,0.0,1005.557667,0.0,92.64166667,9.7575,0.26558333300000003,237.5203574 +2014-08-04 05:00:00,0.0,1005.915333,0.571783333,75.43583333,11.54083333,0.824666667,237.5203574 +2014-08-04 06:00:00,6.500866104,1007.2860000000001,9.228916667,85.13083333,12.84583333,2.163833333,237.51860290000002 +2014-08-04 07:00:00,0.0,1008.803667,56.69066667,83.69166667,11.57166667,2.149916667,237.51649749999999 +2014-08-04 08:00:00,0.0,1010.220333,133.2916667,73.725,11.66583333,2.26125,237.51581241666665 +2014-08-04 09:00:00,0.0,1010.898333,300.6908333,65.48333333,12.20833333,2.4845,237.51581241666668 +2014-08-04 10:00:00,0.0,1011.357667,254.0825,59.37583333,12.76666667,2.115416667,237.51343969999996 +2014-08-04 11:00:00,0.0,1011.715333,155.1725,59.38,12.295,2.234833333,237.51203610000002 +2014-08-04 12:00:00,0.0,1011.973333,208.6128333,60.7725,12.625,2.353583333,237.51103355 +2014-08-04 13:00:00,0.0,1012.259333,233.6658333,54.09166667,12.74,2.608833333,237.50727395 +2014-08-04 14:00:00,3.8546220960000004,1012.4889999999999,176.3673333,57.2275,11.77166667,2.3955833330000003,237.5041660833333 +2014-08-04 15:00:00,0.0,1012.775,108.773,53.49416667,11.73333333,2.0411666669999997,237.50214419999998 +2014-08-04 16:00:00,0.0,1013.164667,118.28891670000002,55.08916667,10.92083333,2.939666667,237.50181 +2014-08-04 17:00:00,0.0,1013.449,65.20208333,60.33666667,10.27166667,1.4950833330000002,237.49970469999997 +2014-08-04 18:00:00,0.0,1014.130667,23.05391667,61.1725,9.770833332999999,1.74275,237.49759930000002 +2014-08-04 19:00:00,50.44218149,1015.353667,0.571841667,73.22833333,8.451,2.137333333,237.49726511666665 +2014-08-04 20:00:00,2.9806903680000003,1016.1063330000001,0.0,85.35833333,5.9110000000000005,0.775333333,237.49524329999997 +2014-08-04 21:00:00,0.0,1016.698333,0.0,83.69166667,5.33525,1.251583333,237.4941906 +2014-08-04 22:00:00,9.249057264,1017.6063330000001,0.0,88.25833333,5.44825,1.555,237.49348880000002 +2014-08-04 23:00:00,0.0,1018.081333,0.0,89.44166667,5.52675,1.21,237.4918178833333 +2014-09-04 00:00:00,0.0,1018.25,0.0,90.24166667,4.81825,1.280916667,237.83067299999996 +2014-09-04 01:00:00,0.0,1018.3739999999999,0.0,93.81666667,3.935083333,0.991833333,237.83067299999996 +2014-09-04 02:00:00,0.0,1018.723333,0.0,95.675,2.774166667,0.419916667,237.82997123333328 +2014-09-04 03:00:00,0.0,1018.950667,0.0,98.24166667,2.449,0.408,237.82891858333332 +2014-09-04 04:00:00,0.0,1019.206667,0.0,97.70833333,1.331833333,0.135583333,237.82856769999998 +2014-09-04 05:00:00,0.0,1019.432,1.18335,97.125,2.66975,0.444166667,237.82997123333328 +2014-09-04 06:00:00,0.0,1019.841,25.77691667,96.46666667,4.300833333,0.918083333,237.83067299999996 +2014-09-04 07:00:00,2.603954136,1020.139667,74.45958333,93.06666667,5.84175,0.893916667,237.83067299999996 +2014-09-04 08:00:00,0.0,1020.591,148.4408333,87.29166667,7.981416667,0.92775,237.83234399999995 +2014-09-04 09:00:00,0.0,1020.916,237.2416667,82.74166667,9.32,1.5865,237.83134139999996 +2014-09-04 10:00:00,0.0,1020.892333,235.11833330000002,78.40833333,9.526666667,1.305166667,237.83100719999996 +2014-09-04 11:00:00,0.0,1020.542333,240.73,68.5275,10.315,1.4565833330000002,237.82997123333334 +2014-09-04 12:00:00,0.0,1020.4093330000001,291.7541667,61.5225,12.0,2.5100833330000003,237.82856769999998 +2014-09-04 13:00:00,0.0,1019.926667,322.58916669999996,56.68416667,12.60083333,2.966,237.82823349999998 +2014-09-04 14:00:00,0.0,1019.459333,190.505,56.64833333,12.15416667,2.05925,237.8268967 +2014-09-04 15:00:00,0.0,1019.2510000000001,182.77,57.11583333,12.22583333,2.734416667,237.8265625 +2014-09-04 16:00:00,0.0,1018.959333,112.68833329999998,59.11666667,12.2225,2.13675,237.82621161666665 +2014-09-04 17:00:00,0.0,1018.584333,97.01766667,59.22416667,12.525,1.3565,237.82445719999996 +2014-09-04 18:00:00,0.0,1018.467667,32.9735,61.45583333,11.95583333,1.4133333330000002,237.82445719999996 +2014-09-04 19:00:00,0.0,1018.416,1.203125,64.21416667,10.80583333,0.2445,237.82445719999996 +2014-09-04 20:00:00,0.0,1018.466333,0.0,65.3975,10.53416667,0.354916667,237.8234045 +2014-09-04 21:00:00,0.0,1018.551,0.0,66.22833333,10.83166667,1.003333333,237.82305359999998 +2014-09-04 22:00:00,0.0,1018.399333,0.0,67.595,10.70583333,1.211083333,237.8227027 +2014-09-04 23:00:00,0.0,1018.225333,0.0,68.925,10.52416667,1.09425,237.8234045 +2014-10-04 00:00:00,0.0,1017.852333,0.0,70.71666667,10.5275,1.8494166669999998, +2014-10-04 01:00:00,0.0,1017.649667,0.0,68.90583333,10.59333333,2.727416667, +2014-10-04 02:00:00,0.0,1017.584333,0.0,68.36166667,10.3,2.166833333, +2014-10-04 03:00:00,0.0,1017.259333,0.0,73.3775,10.0325,2.223666667, +2014-10-04 04:00:00,0.0,1017.091667,0.0,78.5975,9.175,0.7905833329999999, +2014-10-04 05:00:00,0.0,1017.107667,0.650708333,80.0025,8.76,0.818666667, +2014-10-04 06:00:00,0.0,1017.4069999999999,11.85146667,82.84166667,8.82,0.51675, +2014-10-04 07:00:00,0.0,1018.006667,44.47216667,81.15583333,9.490833333,0.645, +2014-10-04 08:00:00,0.0,1018.1916669999999,106.855,79.75,10.37166667,0.81825, +2014-10-04 09:00:00,0.0,1018.292333,143.7975,77.15833333,11.29583333,1.7835833330000002, +2014-10-04 10:00:00,0.0,1018.1,300.4866667,73.37333333,13.04916667,1.46575, +2014-10-04 11:00:00,0.0,1017.942333,284.2583333,69.26083333,14.05166667,1.0068333329999999, +2014-10-04 12:00:00,0.0,1017.410667,170.9108333,67.39833333,14.18583333,0.942583333, +2014-10-04 13:00:00,0.0,1016.926,132.4575,68.53583333,14.39666667,0.61825, +2014-10-04 14:00:00,0.0,1016.467667,124.20333329999998,65.86416667,14.775,0.715833333, +2014-10-04 15:00:00,0.0,1016.117667,63.65158333,67.60416667,14.69,0.7745833329999999, +2014-10-04 16:00:00,0.0,1015.867667,56.18783333,69.22583333,14.26416667,0.9188333329999999, +2014-10-04 17:00:00,0.0,1015.700667,59.95616667,69.1275,14.1825,0.8866666670000001, +2014-10-04 18:00:00,0.0,1015.906667,25.0635,73.53833333,13.3925,0.627, +2014-10-04 19:00:00,0.0,1016.0583330000001,1.3802833330000002,80.81666667,12.08833333,0.451583333, +2014-10-04 20:00:00,0.0,1015.95,0.0,85.65833333,10.97166667,0.235833333, +2014-10-04 21:00:00,0.0,1015.926,0.0,91.28333333,10.38333333,0.092083333, +2014-10-04 22:00:00,0.0,1015.7926669999999,0.0,93.925,9.605833333,0.060083332999999996, +2014-10-04 23:00:00,0.0,1015.334667,0.0,95.825,8.355333332999999,0.159583333, +2014-11-04 00:00:00,0.0,1014.843667,0.0,99.35,5.886833332999999,0.18866666699999998,237.94635250000002 +2014-11-04 01:00:00,0.0,1014.567667,0.0,100.0,5.989083333,0.10333333300000001,237.94635250000002 +2014-11-04 02:00:00,0.0,1014.2919999999999,0.0,99.74166667,7.051666667,0.062916667,237.9470525 +2014-11-04 03:00:00,0.0,1013.793333,0.0,99.11666667,7.462333332999999,0.0055,237.94635250000002 +2014-11-04 04:00:00,0.0,1013.684,0.0,99.79166667,7.73475,0.019333333,237.9481025 +2014-11-04 05:00:00,0.0,1013.773667,0.453483333,100.0,7.7415,0.022583332999999997,237.94635250000002 +2014-11-04 06:00:00,0.0,1014.098667,10.98434167,100.0,7.948666667,0.022583332999999997,237.94635250000002 +2014-11-04 07:00:00,0.0,1014.134333,38.55133333,98.75833333,8.716666667,0.174166667,237.94635250000002 +2014-11-04 08:00:00,0.0,1014.190667,112.63583329999999,87.93333333,10.11083333,0.338416667,237.94635250000002 +2014-11-04 09:00:00,0.0,1014.275,213.7158333,80.1525,12.67583333,1.132666667,237.94635250000002 +2014-11-04 10:00:00,0.0,1014.018333,384.0141667,73.17666667,14.56333333,1.438083333,237.94635250000002 +2014-11-04 11:00:00,0.0,1013.634333,207.19416669999998,73.185,15.19583333,1.6354166669999999,237.94601916666667 +2014-11-04 12:00:00,0.0,1013.376333,291.5908333,73.85916667,15.07333333,2.186083333,237.94635250000002 +2014-11-04 13:00:00,0.0,1012.893333,260.5108333,64.75916667,16.57916667,1.5848333330000002,237.94635250000002 +2014-11-04 14:00:00,0.0,1012.533667,228.03666669999998,57.5975,17.4325,1.3719166669999998,237.94635250000002 +2014-11-04 15:00:00,0.0,1012.151667,91.63,54.82833333,16.9925,0.991166667,237.94635250000002 +2014-11-04 16:00:00,0.0,1011.950667,105.50283329999999,63.485,16.08666667,2.1011666669999998,237.94635250000002 +2014-11-04 17:00:00,0.0,1011.8166669999999,22.4595,70.86083333,15.29,1.1540000000000001,237.94635250000002 +2014-11-04 18:00:00,0.0,1011.9739999999999,14.57236667,85.94166667,14.085,0.60175,237.94635250000002 +2014-11-04 19:00:00,0.0,1012.521667,0.571783333,90.96666667,12.9925,1.8435833330000002,237.94635250000002 +2014-11-04 20:00:00,0.0,1013.523,0.0,87.98333333,11.88916667,2.200166667,237.9470525 +2014-11-04 21:00:00,0.0,1013.8739999999999,0.0,91.7,11.2025,1.91975,237.9484525 +2014-11-04 22:00:00,0.0,1013.859333,0.0,95.44166667,10.53083333,1.508083333,237.9481025 +2014-11-04 23:00:00,0.0,1013.866667,0.0,96.25833333,9.985833332999999,0.830416667,237.94775249999998 +2014-12-04 00:00:00,0.0,1013.675667,0.0,97.375,9.36,0.728583333,237.8686858333333 +2014-12-04 01:00:00,0.0,1013.2843330000001,0.0,99.425,8.954166667,0.256666667,237.8686858333333 +2014-12-04 02:00:00,0.0,1012.9760000000001,0.0,97.41666667,9.118333332999999,0.70375,237.8696858333333 +2014-12-04 03:00:00,0.0,1012.452,0.0,96.03333333,8.593333333,0.876083333,237.86968583333336 +2014-12-04 04:00:00,0.0,1012.257667,0.0,98.05,7.002000000000001,0.14800000000000002,237.87001916666665 +2014-12-04 05:00:00,0.0,1012.524667,1.202658333,100.0,6.183833333,0.239583333,237.87001916666668 +2014-12-04 06:00:00,0.0,1012.699333,30.58241667,100.0,6.749083333,0.047083333,237.87001916666668 +2014-12-04 07:00:00,0.0,1013.073,73.92408333,95.00833333,8.133583332999999,0.754,237.8703525 +2014-12-04 08:00:00,0.0,1013.491333,130.24666670000002,89.625,9.409166667000001,2.220416667,237.8703525 +2014-12-04 09:00:00,0.0,1013.442,217.7466667,87.74166667,10.21083333,2.213166667,237.8703525 +2014-12-04 10:00:00,0.0,1013.475,294.71166669999997,82.60833333,11.48333333,1.888166667,237.87105250000002 +2014-12-04 11:00:00,0.0,1013.035,346.745,77.41,13.41583333,1.4896666669999998,237.87140249999996 +2014-12-04 12:00:00,0.0,1012.477,379.83166669999997,70.22,15.2725,1.21075,237.87105250000002 +2014-12-04 13:00:00,0.0,1011.96,315.525,63.27916667,16.37916667,0.949583333,237.87175249999999 +2014-12-04 14:00:00,0.0,1011.402667,354.2525,59.78166667,16.63666667,0.8121666670000001,237.87175249999999 +2014-12-04 15:00:00,0.0,1010.577,178.1908333,58.9975,17.23916667,1.08475,237.87140250000002 +2014-12-04 16:00:00,0.0,1010.4333330000001,174.4925,53.18583333,17.47833333,1.171,237.87245249999998 +2014-12-04 17:00:00,0.0,1010.541,61.24358333,56.22,15.75583333,0.8495,237.8737858333333 +2014-12-04 18:00:00,0.0,1010.716333,18.20116667,56.59333333,15.04166667,1.4709166669999998,237.87345249999998 +2014-12-04 19:00:00,0.0,1011.3380000000001,0.8085,58.51666667,14.09166667,2.576083333,237.8737858333333 +2014-12-04 20:00:00,0.0,1012.031667,0.0,61.91083333,13.1725,2.036833333,237.8737858333333 +2014-12-04 21:00:00,0.0,1012.308,0.0,63.955,12.43416667,1.464833333,237.8744525 +2014-12-04 22:00:00,0.0,1012.424667,0.0,64.94,12.0125,1.446083333,237.8748025 +2014-12-04 23:00:00,0.0,1012.698667,0.0,67.91416667,10.1675,0.282,237.87515249999998 +2014-04-13 00:00:00,0.0,1012.3853330000001,0.0,80.80166667,9.355833333,0.11958333300000001,237.8829833 +2014-04-13 01:00:00,0.0,1012.241667,0.0,84.72666667,8.886666667,0.049166667000000004,237.8829833 +2014-04-13 02:00:00,0.0,1012.4,0.0,79.82333333,8.5,0.12525,237.8829833 +2014-04-13 03:00:00,0.0,1012.374667,0.0,88.52666667,6.7425,0.19041666699999998,237.8829833 +2014-04-13 04:00:00,0.0,1012.333667,0.0,96.475,4.4168333330000005,0.146583333,237.8829833 +2014-04-13 05:00:00,0.0,1012.6303330000001,2.071125,95.19166667,3.812666667,0.44375,237.8829833 +2014-04-13 06:00:00,0.0,1013.605,26.96166667,90.50833333,4.355166667,0.1025,237.8829833 +2014-04-13 07:00:00,0.0,1014.398,100.44066670000001,84.50833333,8.342416667,0.6778333329999999,237.88198075 +2014-04-13 08:00:00,0.0,1015.015667,111.8775,77.785,10.715,1.266666667,237.88097819999993 +2014-04-13 09:00:00,0.0,1015.2156669999999,234.9316667,72.45166667,12.02916667,1.80725,237.88097819999993 +2014-04-13 10:00:00,0.0,1015.3839999999999,430.64,66.095,13.3975,1.74325,237.88097819999993 +2014-04-13 11:00:00,0.0,1015.026333,357.9741667,63.96166667,13.94916667,1.0759999999999998,237.88097819999993 +2014-04-13 12:00:00,0.0,1014.659,193.8825,64.07,14.11083333,1.239583333,237.88062729999993 +2014-04-13 13:00:00,0.0,1014.725,115.11908329999999,63.47416667,13.79,1.40275,237.88062729999993 +2014-04-13 14:00:00,0.0,1014.551,105.39316670000001,64.7975,13.47333333,1.78025,237.87922369999998 +2014-04-13 15:00:00,0.0,1014.3,133.32083329999998,63.17083333,13.495,2.435916667,237.8792237 +2014-04-13 16:00:00,0.0,1014.0426669999999,182.035,60.6675,13.72166667,2.2608333330000003,237.87888951666665 +2014-04-13 17:00:00,0.0,1013.809,52.67033333,61.965,13.45333333,2.337583333,237.87720188333333 +2014-04-13 18:00:00,0.0,1013.6010000000001,28.04083333,68.495,12.61416667,1.5055833330000001,237.87686769999996 +2014-04-13 19:00:00,0.0,1013.583333,2.010983333,72.18166667,10.99333333,0.7174166670000001,237.87686769999996 +2014-04-13 20:00:00,0.0,1013.583667,0.0,78.45916667,9.5675,0.23375,237.87686769999996 +2014-04-13 21:00:00,0.0,1013.1610000000001,0.0,78.24333333,7.8555,0.043083333,237.87686769999996 +2014-04-13 22:00:00,0.0,1012.725,0.0,83.62333333,5.472666667,0.1625,237.87686769999996 +2014-04-13 23:00:00,0.0,1012.732667,0.0,81.3025,3.75625,0.066833333,237.87686769999996 +2014-04-14 00:00:00,0.0,1012.427333,0.0,79.85583333,4.348083333,0.24225,237.87686769999996 +2014-04-14 01:00:00,0.0,1011.902333,0.0,78.92666667,6.720333332999999,0.7719166670000001,237.87853861666667 +2014-04-14 02:00:00,0.0,1010.845,0.0,81.1225,6.40775,0.4165,237.8782044333333 +2014-04-14 03:00:00,0.0,1010.302,0.0,78.65833333,7.47775,0.641416667,237.87720188333333 +2014-04-14 04:00:00,0.0,1009.701,0.0,79.4425,8.196333333,1.2075,237.87686769999996 +2014-04-14 05:00:00,0.0,1009.583333,0.769066667,81.13333333,8.384166667,1.2219166670000001,237.87686769999996 +2014-04-14 06:00:00,0.0,1009.9813330000001,9.347683332999999,82.89166667,8.433333333,1.1806666670000001,237.87720188333333 +2014-04-14 07:00:00,2.7432960239999997,1010.34,64.96,87.38333333,8.603333333,1.146,237.87686769999996 +2014-04-14 08:00:00,5.725462127999999,1010.557333,119.182,83.165,9.544166667,1.7065,237.87787024999997 +2014-04-14 09:00:00,0.0,1011.008333,255.4673333,80.43166667,10.155,2.1926666669999997,237.8782044333333 +2014-04-14 10:00:00,0.0,1011.024667,329.9683333,73.79333333,11.07083333,1.9398333330000002,237.87720188333333 +2014-04-14 11:00:00,0.0,1011.125,374.955,58.77333333,11.70916667,4.4639166669999994,237.87686769999996 +2014-04-14 12:00:00,0.0,1011.149333,372.1375,56.52666667,12.3475,3.445916667,237.87686769999996 +2014-04-14 13:00:00,46.59470424,1011.107667,293.58175,57.94583333,11.75166667,4.0279166669999995,237.87511328333332 +2014-04-14 14:00:00,8.847567888,1011.448,411.9365833,58.84416667,10.38666667,4.794833333,237.87442819999998 +2014-04-14 15:00:00,0.0,1011.633333,319.1766667,65.36,11.02166667,3.151166667,237.8727572 +2014-04-14 16:00:00,0.0,1012.157333,200.20233330000002,62.39583333,10.65916667,3.7959166669999997,237.8727572 +2014-04-14 17:00:00,0.0,1013.030667,44.9015,78.40583333,8.001083333,4.3076666669999994,237.87170454999998 +2014-04-14 18:00:00,0.0,1013.647333,24.59041667,82.34583333,7.5895,2.7008333330000003,237.87170455 +2014-04-14 19:00:00,8.589951336,1014.338667,1.419775,85.835,5.42575,3.274166667,237.87065189999998 +2014-04-14 20:00:00,15.44473411,1015.1489999999999,0.0,89.06666667,4.969833333,3.2008333330000003,237.87065189999998 +2014-04-14 21:00:00,9.340468536,1015.581333,0.0,90.74166667,4.513999999999999,2.8824166669999998,237.87065189999998 +2014-04-14 22:00:00,0.0,1015.923333,0.0,93.41666667,3.72825,0.9844166670000001,237.87065189999998 +2014-04-14 23:00:00,0.0,1016.5239999999999,0.0,94.71666667,3.2233333330000002,0.9890000000000001,237.87030099999996 +2014-04-15 00:00:00,0.0,1016.442333,0.0,95.94166667,2.7199166669999997,0.642166667,237.87030099999996 +2014-04-15 01:00:00,0.0,1016.748333,0.0,96.66666667,2.2886666669999998,0.585583333,237.87065189999998 +2014-04-15 02:00:00,0.0,1017.14,0.0,91.0,3.818,1.264833333,237.87030099999996 +2014-04-15 03:00:00,0.0,1017.299667,0.0,89.4,3.828083333,0.914,237.87065189999998 +2014-04-15 04:00:00,0.0,1017.5239999999999,0.0,88.525,3.9275,0.707333333,237.87065189999998 +2014-04-15 05:00:00,2.549612256,1018.023333,2.327266667,89.15833333,3.6648333330000002,1.046166667,237.87065189999998 +2014-04-15 06:00:00,2.646005064,1018.564667,25.20525,90.94166667,3.865333333,1.043,237.87065189999998 +2014-04-15 07:00:00,0.0,1019.097667,68.05458333,87.01666667,4.539166667,1.369666667,237.87065189999998 +2014-04-15 08:00:00,0.0,1019.648667,87.6575,82.28666667,5.136833333,1.393083333,237.86924829999998 +2014-04-15 09:00:00,0.0,1020.2073330000001,142.4033333,81.205,5.471166667,2.052833333,237.86854649999995 +2014-04-15 10:00:00,0.0,1020.449,228.1825,74.45666667,6.39025,2.987666667,237.87065189999998 +2014-04-15 11:00:00,0.0,1020.575333,245.3733333,69.81333333,6.882000000000001,3.538166667,237.87065189999998 +2014-04-15 12:00:00,0.0,1020.524667,205.9458333,61.9825,8.16425,3.0771666669999997,237.87065189999998 +2014-04-15 13:00:00,0.0,1020.5583330000001,277.515,56.87583333,8.51,3.035666667,237.87065189999998 +2014-04-15 14:00:00,0.0,1020.442,175.18083330000002,56.09833333,8.6925,3.788583333,237.87065189999998 +2014-04-15 15:00:00,0.0,1020.284,142.4033333,56.47833333,8.589166667,3.5796666669999997,237.86995009999998 +2014-04-15 16:00:00,0.0,1020.307667,89.9325,55.56583333,8.704166667,3.506166667,237.86924829999998 +2014-04-15 17:00:00,0.0,1020.292333,68.90508333,59.91416667,8.345833333,3.3136666669999997,237.86854649999995 +2014-04-15 18:00:00,0.0,1020.431667,25.97,63.475,7.9625,1.909666667,237.8665414 +2014-04-15 19:00:00,0.0,1020.965,1.8143416669999999,65.85333333,7.367166667,1.642166667,237.8665414 +2014-04-15 20:00:00,0.0,1021.357333,0.0,71.13166667,5.528416667,1.028666667,237.8665414 +2014-04-15 21:00:00,0.0,1021.9889999999999,0.0,91.20833333,2.113916667,0.12475,237.8665414 +2014-04-15 22:00:00,0.0,1022.508,0.0,95.575,0.829833333,0.47383333299999997,237.8665414 +2014-04-15 23:00:00,0.0,1022.723333,0.0,97.55,-0.301,0.066833333,237.8661905 +2014-04-16 00:00:00,0.0,1022.9989999999999,0.0,98.59166667,-0.597166667,0.0435,237.8661905 +2014-04-16 01:00:00,0.0,1023.225333,0.0,99.20833333,-0.76025,0.074666667,237.8665414 +2014-04-16 02:00:00,0.0,1023.324333,0.0,100.0,-1.2359166670000001,0.174333333,237.8661905 +2014-04-16 03:00:00,0.0,1023.656333,0.0,100.0,-1.640916667,0.109,237.8647869 +2014-04-16 04:00:00,0.0,1023.9656669999999,0.0,100.0,-2.119,0.09858333300000001,237.86410181666668 +2014-04-16 05:00:00,0.0,1024.4569999999999,3.748441667,100.0,-2.46375,0.00975,237.86443599999998 +2014-04-16 06:00:00,0.0,1024.897667,25.921,100.0,-1.4829166669999998,0.015166667,237.8637676333333 +2014-04-16 07:00:00,0.0,1025.407,120.7675,96.35833333,2.3039166669999998,0.29125,237.86410181666665 +2014-04-16 08:00:00,0.0,1025.799,104.4236667,82.5175,4.935166667,1.573166667,237.86513779999999 +2014-04-16 09:00:00,0.0,1026.016667,256.96299999999997,77.39166667,7.517333333,1.40775,237.8654887 +2014-04-16 10:00:00,0.0,1025.876,345.2808333,67.88916667,9.966666667,1.162583333,237.8654887 +2014-04-16 11:00:00,0.0,1025.576,247.345,62.02916667,10.475,1.6573333330000002,237.86548870000001 +2014-04-16 12:00:00,0.0,1025.358333,330.0966667,52.3875,11.33083333,2.34675,237.86343345 +2014-04-16 13:00:00,0.0,1024.9933330000001,489.3816666999999,48.0475,13.25083333,1.960666667,237.8637676333333 +2014-04-16 14:00:00,0.0,1024.668667,516.9733333,45.6,13.55833333,1.7710833330000002,237.8637676333333 +2014-04-16 15:00:00,0.0,1024.192667,234.2258333,46.98916667,13.15666667,1.5214166669999998,237.86243089999996 +2014-04-16 16:00:00,0.0,1024.000667,175.9374167,44.38166667,13.16,1.51975,237.86243089999996 +2014-04-16 17:00:00,0.0,1023.559333,47.761,46.57833333,13.01666667,1.4471666669999999,237.86243089999996 +2014-04-16 18:00:00,0.0,1023.566,25.45841667,50.83333333,10.55333333,1.178,237.86243089999996 +2014-04-16 19:00:00,0.0,1023.7739999999999,3.3921416669999997,75.39333333,6.2845,0.195416667,237.86067640000002 +2014-04-16 20:00:00,0.0,1023.867667,0.0,88.23333333,2.471,0.199916667,237.8596571333333 +2014-04-16 21:00:00,0.0,1023.667333,0.0,93.2,1.025166667,0.11566666699999999,237.8583204 +2014-04-16 22:00:00,0.0,1023.583333,0.0,96.0,-0.015916667,0.135,237.85965713333334 +2014-04-16 23:00:00,0.0,1023.5583330000001,0.0,97.74166667,-0.49691666700000003,0.10141666699999999,237.85932295 +2014-04-17 00:00:00,0.0,1023.293333,0.0,99.075,-0.905333333,0.10308333300000001,237.85999131666668 +2014-04-17 01:00:00,0.0,1022.818333,0.0,99.95,-1.2700833329999999,0.035,237.86032550000002 +2014-04-17 02:00:00,0.0,1022.284667,0.0,100.0,-1.649666667,0.054916667,237.85999131666665 +2014-04-17 03:00:00,0.0,1021.959333,0.0,100.0,-1.838416667,0.10066666699999999,237.85999131666665 +2014-04-17 04:00:00,0.0,1021.751667,0.0,100.0,-2.30125,0.059916667,237.8586545833333 +2014-04-17 05:00:00,0.0,1021.581667,3.3138,100.0,-2.622666667,0.0145,237.8583204 +2014-04-17 06:00:00,0.0,1021.692667,19.3515,100.0,-1.446666667,0.028333333,237.85865458333333 +2014-04-17 07:00:00,0.0,1021.3510000000001,133.09333329999998,94.45,2.29975,0.38091666700000004,237.85999131666668 +2014-04-17 08:00:00,0.0,1021.017333,119.8575,68.59666667,6.394,1.3539166669999998,237.86172909999996 +2014-04-17 09:00:00,0.0,1020.6353330000001,262.15525,57.20916667,9.644166667,2.160416667,237.86172909999996 +2014-04-17 10:00:00,0.0,1019.829333,426.5508333000001,49.5875,11.65833333,2.4788333330000003,237.86243089999996 +2014-04-17 11:00:00,3.8065213680000003,1018.7363330000001,479.03916669999995,45.52,12.80916667,2.775,237.86243089999996 +2014-04-17 12:00:00,0.0,1017.488,468.60916669999995,41.77333333,13.62916667,2.964333333,237.86243089999996 +2014-04-17 13:00:00,0.0,1016.220333,461.17166669999995,41.69666667,14.31583333,2.545666667,237.86243089999996 +2014-04-17 14:00:00,0.0,1014.954667,346.58166669999997,38.88833333,14.6325,2.496333333,237.86172910000002 +2014-04-17 15:00:00,0.0,1013.7363330000001,340.1766667,37.915,15.52,2.419666667,237.86032550000002 +2014-04-17 16:00:00,0.0,1012.886667,260.41108330000003,37.9625,16.08916667,1.988083333,237.86032550000002 +2014-04-17 17:00:00,0.0,1011.87,35.510999999999996,40.45583333,15.405,1.009916667,237.86032550000002 +2014-04-17 18:00:00,0.0,1010.936,20.369825,49.12833333,12.70166667,0.8170000000000001,237.85999131666665 +2014-04-17 19:00:00,0.0,1010.102,1.301475,68.85166667,8.633416667,0.6891666670000001,237.85965713333334 +2014-04-17 20:00:00,0.0,1009.602667,0.0,79.00333333,7.035666667,0.35016666700000004,237.86032550000002 +2014-04-17 21:00:00,0.0,1008.992667,0.0,82.85833333,7.0374166670000005,0.266916667,237.86032550000002 +2014-04-17 22:00:00,0.0,1008.610667,0.0,63.6775,7.152666667,0.15475,237.8606764 +2014-04-17 23:00:00,0.0,1007.7603330000001,0.0,55.57916667,8.049083332999999,0.235666667,237.86172910000002 +2014-04-18 00:00:00,0.0,1007.168667,0.0,54.57083333,9.474166667,0.292,237.86067640000002 +2014-04-18 01:00:00,0.0,1006.835333,0.0,56.52333333,9.501666667,0.141083333,237.8606764 +2014-04-18 02:00:00,0.0,1006.26,0.0,70.77916667,9.378333332999999,0.2865,237.86243089999996 +2014-04-18 03:00:00,3.126479952,1005.9169999999999,0.0,81.8975,9.304166667,1.186916667,237.86243089999996 +2014-04-18 04:00:00,3.687606888,1005.983333,0.0,88.53333333,8.449416667000001,2.940416667,237.86243089999996 +2014-04-18 05:00:00,0.0,1006.206,1.400175,89.225,7.806833332999999,1.462083333,237.86243089999996 +2014-04-18 06:00:00,0.0,1006.857333,23.97966667,82.0925,7.66325,2.375666667,237.86243089999996 +2014-04-18 07:00:00,0.0,1007.065,87.57525,79.05666667,7.923416667000001,2.859416667,237.86243089999996 +2014-04-18 08:00:00,4.76581644,1007.407667,105.84933329999998,72.345,8.710833333,3.606666667,237.86243089999996 +2014-04-18 09:00:00,0.0,1007.7073330000001,196.44916669999998,64.5875,9.5425,3.79925,237.86102730000002 +2014-04-18 10:00:00,0.0,1007.825,272.3641667,66.565,9.0625,4.089416667,237.86067640000002 +2014-04-18 11:00:00,0.0,1007.783333,415.3216667,61.38416667,10.37166667,4.2865,237.86067640000002 +2014-04-18 12:00:00,0.0,1007.8,440.2825,54.06916667,10.815,4.11675,237.86032550000002 +2014-04-18 13:00:00,0.0,1007.775,361.7425,52.33166667,11.36833333,4.250666667,237.8586545833333 +2014-04-18 14:00:00,0.0,1007.567667,197.19,49.265,11.66666667,3.236916667,237.8583204 +2014-04-18 15:00:00,0.0,1007.699667,239.29675,50.24666667,11.57916667,4.108666667,237.8583204 +2014-04-18 16:00:00,0.0,1007.815,240.66175,48.84333333,11.55583333,4.725083333,237.8583204 +2014-04-18 17:00:00,0.0,1007.851667,38.68783333,49.10333333,11.3375,4.12175,237.85796949999997 +2014-04-18 18:00:00,0.0,1007.898,33.52358333,51.35583333,10.62083333,2.86325,237.8583204 +2014-04-18 19:00:00,0.0,1008.44,4.949291667,60.96666667,8.9925,1.120666667,237.8545440833333 +2014-04-18 20:00:00,0.0,1008.9896669999999,0.0,72.67083333,8.29575,1.47725,237.85454408333337 +2014-04-18 21:00:00,0.0,1009.399333,0.0,71.4,7.807666667,1.252083333,237.85588081666666 +2014-04-18 22:00:00,0.0,1009.5,0.0,85.61083333,5.776,0.5365833329999999,237.85554663333335 +2014-04-18 23:00:00,0.0,1009.583333,0.0,91.925,4.72,0.15533333300000002,237.85554663333335 +2014-04-19 00:00:00,0.0,1009.516667,0.0,95.19166667,3.910666667,0.169916667,237.856215 +2014-04-19 01:00:00,0.0,1009.657333,0.0,97.95,1.307416667,0.111333333,237.85588081666666 +2014-04-19 02:00:00,0.0,1010.015,0.0,99.425,-0.22,0.137583333,237.856215 +2014-04-19 03:00:00,0.0,1010.1339999999999,0.0,100.0,0.288916667,0.23425,237.856215 +2014-04-19 04:00:00,0.0,1010.282667,0.0,100.0,0.18875,0.10225,237.85521245000004 +2014-04-19 05:00:00,0.0,1010.839667,5.601575,100.0,-0.004583333,0.13575,237.85420990000003 +2014-04-19 06:00:00,0.0,1011.2639999999999,26.03941667,100.0,2.83475,1.8615,237.85420990000003 +2014-04-19 07:00:00,0.0,1011.965333,52.8605,99.41666667,4.5889166669999994,2.832,237.85420990000003 +2014-04-19 08:00:00,0.0,1012.2,118.32916670000002,93.13333333,6.0165,3.0839999999999996,237.85420990000003 +2014-04-19 09:00:00,0.0,1012.2410000000001,238.4025,83.41166667,7.687,4.516666667,237.85588081666666 +2014-04-19 10:00:00,0.0,1011.828,387.485,74.98666667,8.939166667,4.229,237.85521244999998 +2014-04-19 11:00:00,0.0,1011.044333,398.2475,67.43666667,11.78166667,4.9545,237.85487826666667 +2014-04-19 12:00:00,0.0,1010.2769999999999,491.03833330000003,63.1125,13.44,5.852666667,237.85588081666666 +2014-04-19 13:00:00,0.0,1009.651667,395.8675,62.80083333,14.445,6.093583333,237.8545440833333 +2014-04-19 14:00:00,0.0,1008.620667,266.8575,63.93416667,15.27416667,6.46025,237.8528063 +2014-04-19 15:00:00,0.0,1007.8939999999999,299.1508333,63.65666667,15.79833333,6.06875,237.8521045 +2014-04-19 16:00:00,0.0,1007.400333,251.1191667,62.71833333,16.3425,6.193,237.8521045 +2014-04-19 17:00:00,0.0,1007.142667,67.78916667,65.35,15.94833333,4.064833333,237.8521045 +2014-04-19 18:00:00,0.0,1007.398667,30.62325,68.68166667,14.78666667,4.724833333,237.85143613333335 +2014-04-19 19:00:00,0.0,1007.3760000000001,3.944383333,75.0275,13.92166667,4.879583333,237.85110195000001 +2014-04-19 20:00:00,0.0,1007.225333,0.0,79.83583333,13.2,3.912666667,237.8521045 +2014-04-19 21:00:00,0.0,1007.025667,0.0,87.71666667,13.11083333,3.19725,237.8521045 +2014-04-19 22:00:00,0.0,1006.6519999999999,0.0,92.825,12.72666667,2.081083333,237.8521045 +2014-04-19 23:00:00,0.0,1006.458333,0.0,95.90833333,12.74333333,1.9505833330000002,237.8535081 +2014-04-20 00:00:00,0.0,1005.878333,0.0,98.38333333,10.12916667,0.651333333,237.85245540000003 +2014-04-20 01:00:00,0.0,1005.185333,0.0,100.0,8.946666667,0.661666667,237.8521045 +2014-04-20 02:00:00,0.0,1004.9333330000001,0.0,100.0,9.845,0.557083333,237.8521045 +2014-04-20 03:00:00,0.0,1004.509667,0.0,100.0,10.85166667,0.8816666670000001,237.8521045 +2014-04-20 04:00:00,0.0,1003.819333,0.0,100.0,11.86666667,1.274833333,237.85280630000003 +2014-04-20 05:00:00,0.0,1003.342333,4.751775,100.0,11.79583333,2.9419999999999997,237.85420990000003 +2014-04-20 06:00:00,0.0,1003.657667,33.72133333,93.19166667,12.2175,3.054583333,237.85420990000003 +2014-04-20 07:00:00,0.0,1003.724667,129.33725,82.6925,13.74416667,2.418583333,237.85420990000003 +2014-04-20 08:00:00,0.0,1003.5343330000001,109.42458329999998,74.24166667,15.14833333,3.430916667,237.85588081666666 +2014-04-20 09:00:00,0.0,1003.383667,261.7008333,66.78166667,16.94666667,2.46925,237.8545440833333 +2014-04-20 10:00:00,0.0,1003.076667,256.9291667,59.855,18.1075,2.838166667,237.85420990000003 +2014-04-20 11:00:00,0.0,1002.6676669999999,484.4,52.75583333,18.055,2.399666667,237.8521045 +2014-04-20 12:00:00,0.0,1002.252,450.695,49.06583333,19.23333333,2.660666667,237.84974850000003 +2014-04-20 13:00:00,0.0,1002.008,438.40416669999996,46.265,19.7825,2.808166667,237.8493976 +2014-04-20 14:00:00,0.0,1001.884667,371.0525,44.2,19.98416667,2.74,237.847994 +2014-04-20 15:00:00,0.0,1001.625,295.3183333,43.06,20.18833333,2.763833333,237.8476431 +2014-04-20 16:00:00,0.0,1001.184667,242.12591669999998,41.735,19.89166667,2.66325,237.84694130000003 +2014-04-20 17:00:00,0.0,1000.8760000000001,58.88691667,47.45,18.33583333,1.220916667,237.8458886 +2014-04-20 18:00:00,0.0,1000.949,30.42433333,53.07333333,17.70333333,2.530333333,237.84623950000002 +2014-04-20 19:00:00,0.0,1001.597333,3.351891667,53.62583333,16.05166667,1.9689166669999998,237.8458886 +2014-04-20 20:00:00,0.0,1002.339667,0.0,73.98583333,11.77916667,0.398083333,237.8458886 +2014-04-20 21:00:00,0.0,1002.508667,0.0,87.375,9.0465,0.288333333,237.8465904 +2014-04-20 22:00:00,0.0,1002.541333,0.0,94.375,7.205166667,0.36366666700000005,237.8476431 +2014-04-20 23:00:00,0.0,1002.699333,0.0,97.19166667,6.258916667,0.489833333,237.8472922 +2014-04-21 00:00:00,0.0,1002.585,0.0,99.075,5.526916667,0.311,237.8458886 +2014-04-21 01:00:00,0.0,1001.952333,0.0,100.0,4.466083333,0.180583333,237.84623950000002 +2014-04-21 02:00:00,0.0,1001.492333,0.0,100.0,3.50975,0.08033333299999999,237.847994 +2014-04-21 03:00:00,0.0,1001.076667,0.0,100.0,2.9619166669999997,0.059333332999999995,237.84834490000003 +2014-04-21 04:00:00,0.0,1000.552,0.0,100.0,2.594833333,0.163166667,237.847994 +2014-04-21 05:00:00,0.0,1000.391667,3.530566667,100.0,2.39125,0.067916667,237.847994 +2014-04-21 06:00:00,0.0,1000.698,29.01325,100.0,3.3725,0.034666667000000005,237.84974850000003 +2014-04-21 07:00:00,0.0,1000.668,52.15233333,100.0,6.870833332999999,0.1025,237.8500994 +2014-04-21 08:00:00,0.0,1000.3589999999999,108.59333329999998,89.46666667,10.22583333,1.306583333,237.85076776666668 +2014-04-21 09:00:00,0.0,1000.184333,269.395,77.68,13.1175,2.605666667,237.85043358333334 +2014-04-21 10:00:00,0.0,999.8510000000001,415.3858333,66.08166667,15.00083333,1.555833333,237.8500994 +2014-04-21 11:00:00,0.0,999.4016667000001,396.9583333,62.45166667,16.66833333,1.25075,237.847994 +2014-04-21 12:00:00,0.0,999.0676667000001,386.6333333,62.435,16.71833333,2.0565833330000003,237.84625621666666 +2014-04-21 13:00:00,0.0,998.7260000000001,143.6983333,69.46,16.23,2.1815833330000003,237.84388349999998 +2014-04-21 14:00:00,0.0,998.7243332999999,515.3516666999999,60.05083333,16.83166667,2.78475,237.84388349999998 +2014-04-21 15:00:00,0.0,998.6166667000001,314.4983333,65.08916667,16.13666667,3.880833333,237.8435326 +2014-04-21 16:00:00,0.0,998.8246667000001,128.4599167,69.41,15.83666667,3.947833333,237.84247990000003 +2014-04-21 17:00:00,0.0,998.967,59.948,71.28666667,14.83,1.31225,237.84177810000003 +2014-04-21 18:00:00,0.0,999.0986667000001,18.61416667,75.79666667,13.9175,0.8855,237.84177810000003 +2014-04-21 19:00:00,0.0,999.6216667000001,1.833941667,83.28,12.68166667,0.35475,237.84177810000003 +2014-04-21 20:00:00,0.0,1000.522667,0.0,89.39166667,11.95166667,0.72275,237.84177810000003 +2014-04-21 21:00:00,35.92975577,1000.833333,0.0,97.25833333,11.00083333,0.6980833329999999,237.84247990000003 +2014-04-21 22:00:00,2.4547364640000002,1001.098333,0.0,100.0,9.873333333,0.26725,237.84388349999998 +2014-04-21 23:00:00,0.0,1001.35,0.0,100.0,8.019583333,0.15541666699999998,237.84388349999998 +2014-04-22 00:00:00,0.0,1001.656667,0.0,100.0,8.106083332999999,0.004333333,237.84388349999998 +2014-04-22 01:00:00,0.0,1001.974667,0.0,100.0,8.626666667,0.081166667,237.8435326 +2014-04-22 02:00:00,0.0,1002.355667,0.0,100.0,8.95,0.009000000000000001,237.84353259999997 +2014-04-22 03:00:00,0.0,1002.8660000000001,0.0,100.0,9.06,0.009000000000000001,237.84388349999998 +2014-04-22 04:00:00,0.0,1003.1489999999999,0.0,100.0,9.066666667,0.083416667,237.84388349999998 +2014-04-22 05:00:00,0.0,1003.7810000000001,1.932525,100.0,8.941666667,0.027083332999999998,237.84388349999998 +2014-04-22 06:00:00,0.0,1004.572333,24.35358333,100.0,9.475833332999999,0.090083333,237.84421768333334 +2014-04-22 07:00:00,0.0,1005.23,76.37641667,100.0,10.62833333,0.38408333299999997,237.84388349999998 +2014-04-22 08:00:00,0.0,1006.006333,114.96916670000002,94.73333333,11.77833333,0.254416667,237.84488605 +2014-04-22 09:00:00,0.0,1006.664,110.495,90.425,12.98,0.397583333,237.84455186666665 +2014-04-22 10:00:00,0.0,1007.432333,193.0075,87.01666667,13.67166667,0.7593333329999999,237.8458886 +2014-04-22 11:00:00,0.0,1007.757333,282.1233333,81.72333333,15.2,0.5718333329999999,237.84522023333332 +2014-04-22 12:00:00,2.7074017439999998,1007.824667,205.28666669999998,79.17166667,16.0625,1.06475,237.8442176833333 +2014-04-22 13:00:00,5.690521176,1008.198333,130.50333329999998,81.29166667,14.81222728,1.9765833330000002,237.84388349999998 +2014-04-22 14:00:00,18.69268265,1008.640667,53.739,92.05833333,13.50599661,1.3435,237.84283080000003 +2014-04-22 15:00:00,8.399510592,1008.6419999999999,182.5425,90.99166667,14.36166667,1.278916667,237.842129 +2014-04-22 16:00:00,0.0,1008.7080000000001,219.0591667,69.32833333,17.23583333,1.14325,237.84212900000003 +2014-04-22 17:00:00,0.0,1008.766667,58.548,70.42666667,16.8525,1.301583333,237.84177810000003 +2014-04-22 18:00:00,0.0,1009.105667,32.73783333,80.0275,14.78416667,0.598,237.84177810000003 +2014-04-22 19:00:00,0.0,1009.814667,6.290083332999999,93.80833333,11.41083333,0.225416667,237.84044136666668 +2014-04-22 20:00:00,0.0,1010.730333,0.0,98.6,8.4615,0.223583333,237.839773 +2014-04-22 21:00:00,0.0,1011.223333,0.0,99.93333333,7.490583332999999,0.183166667,237.839773 +2014-04-22 22:00:00,0.0,1011.731667,0.0,100.0,6.518833333,0.128083333,237.839773 +2014-04-22 23:00:00,0.0,1012.165667,0.0,100.0,5.720333332999999,0.128833333,237.839773 +2014-04-23 00:00:00,0.0,1012.581667,0.0,100.0,4.8215,0.049666667000000005,237.839773 +2014-04-23 01:00:00,0.0,1012.758333,0.0,100.0,4.1064166669999995,0.068083333,237.84010718333332 +2014-04-23 02:00:00,0.0,1012.949,0.0,100.0,3.978583333,0.06425,237.84077555000002 +2014-04-23 03:00:00,0.0,1013.298667,0.0,100.0,4.098333333,0.015916667,237.84044136666668 +2014-04-23 04:00:00,0.0,1013.773667,0.0,100.0,4.6123333330000005,0.0105,237.84009046666665 +2014-04-23 05:00:00,0.0,1014.173667,11.3211,100.0,6.102416667000001,0.001333333,237.8390712 +2014-04-23 06:00:00,0.0,1014.531667,73.74908333,100.0,7.315416667,0.046833333,237.839773 +2014-04-23 07:00:00,2.4050227680000003,1014.949,88.36916667,100.0,8.270333333,0.166416667,237.839773 +2014-04-23 08:00:00,0.0,1015.2330000000001,114.82333329999999,99.80833333,9.385,0.5465,237.839773 +2014-04-23 09:00:00,0.0,1015.656667,221.75416669999998,92.00833333,11.59083333,0.320833333,237.839773 +2014-04-23 10:00:00,0.0,1015.575333,402.78583330000004,80.44416667,15.76,0.916166667,237.839773 +2014-04-23 11:00:00,0.0,1015.218333,327.9558333,67.4925,18.16583333,0.858,237.839773 +2014-04-23 12:00:00,0.0,1014.835,266.0466667,65.725,18.91916667,0.590166667,237.839773 +2014-04-23 13:00:00,0.0,1014.692,345.3683333,55.5325,20.6575,0.9461666670000001,237.8373501333333 +2014-04-23 14:00:00,0.0,1014.317333,228.1358333,49.21166667,21.57916667,1.158083333,237.83666505000005 +2014-04-23 15:00:00,0.0,1013.992,119.1925,54.8875,20.43666667,0.8240833329999999,237.83633086666669 +2014-04-23 16:00:00,0.0,1013.943333,79.00083333,60.08333333,18.695,0.6809999999999999,237.83564578333335 +2014-04-23 17:00:00,0.0,1014.098333,66.17333333,61.15333333,17.57083333,3.5186666669999997,237.83566250000004 +2014-04-23 18:00:00,0.0,1014.175,37.79591667,66.75416667,15.45333333,1.664916667,237.8349607 +2014-04-23 19:00:00,0.0,1014.605333,5.383875,85.18333333,11.84083333,0.227833333,237.8335571 +2014-04-23 20:00:00,0.0,1015.158,0.0,95.5,8.994166667,0.448666667,237.8335571 +2014-04-23 21:00:00,0.0,1015.190667,0.0,98.94166667,8.032916667,0.1735,237.8335571 +2014-04-23 22:00:00,0.0,1015.400333,0.0,99.98333333,6.93275,0.18283333300000001,237.8335571 +2014-04-23 23:00:00,0.0,1015.4333330000001,0.0,100.0,6.17675,0.111,237.8335571 +2014-04-24 00:00:00,0.0,1015.2926669999999,0.0,100.0,5.173416667,0.048,237.8335571 +2014-04-24 01:00:00,0.0,1015.050667,0.0,100.0,4.325833333,0.11308333300000001,237.83390799999998 +2014-04-24 02:00:00,0.0,1014.975,0.0,100.0,4.230333333,0.12741666699999998,237.83531159999998 +2014-04-24 03:00:00,0.0,1014.85,0.0,100.0,4.49925,0.0335,237.83566250000004 +2014-04-24 04:00:00,0.0,1014.7760000000001,0.019716667,100.0,4.60125,0.049083333,237.83566250000004 +2014-04-24 05:00:00,0.0,1014.7239999999999,9.663616667000001,100.0,3.728166667,0.0185,237.83566250000004 +2014-04-24 06:00:00,0.0,1015.115667,51.11283333,100.0,5.855083333,0.013333333000000001,237.8349607 +2014-04-24 07:00:00,0.0,1015.473333,163.8116667,94.65,10.08833333,0.26608333300000003,237.83390800000004 +2014-04-24 08:00:00,0.0,1015.517333,110.68166670000001,81.45833333,13.07416667,1.145666667,237.83427561666667 +2014-04-24 09:00:00,0.0,1015.467,263.8475,75.465,15.0625,1.0045,237.83357381666667 +2014-04-24 10:00:00,0.0,1015.043667,398.15416669999996,70.5025,18.09916667,1.287333333,237.8335571 +2014-04-24 11:00:00,0.0,1014.452,450.84083330000004,60.36083333,20.33166667,1.212666667,237.8335571 +2014-04-24 12:00:00,0.0,1013.818667,451.955,53.44666667,21.83166667,1.185416667,237.83155200000002 +2014-04-24 13:00:00,0.0,1013.0110000000001,368.0366667,52.1775,22.51416667,1.442166667,237.8308502 +2014-04-24 14:00:00,0.0,1012.386333,450.3975,43.97583333,22.93166667,2.117333333,237.8297975 +2014-04-24 15:00:00,0.0,1011.335667,302.7033333,41.37083333,23.02083333,2.40275,237.82839395 +2014-04-24 16:00:00,0.0,1010.951667,148.88416669999998,42.95,22.7875,2.348666667,237.82734130000003 +2014-04-24 17:00:00,0.0,1010.3439999999999,53.35633333,43.905,22.045,2.507083333,237.82769218333337 +2014-04-24 18:00:00,0.0,1010.173667,28.64575,49.18166667,20.3875,1.120833333,237.82734130000003 +2014-04-24 19:00:00,0.0,1010.416667,2.759983333,66.4575,17.57583333,1.257416667,237.82734130000003 +2014-04-24 20:00:00,0.0,1010.615,0.0,82.14833333,16.52166667,1.2165,237.82734130000003 +2014-04-24 21:00:00,0.0,1010.659,0.0,90.41666667,13.9525,0.510083333,237.82734130000003 +2014-04-24 22:00:00,0.0,1010.5426669999999,0.0,95.275,13.73416667,0.949583333,237.82567029999998 +2014-04-24 23:00:00,0.0,1010.4,0.0,97.8,11.0,0.369166667,237.8253361 +2014-04-25 00:00:00,0.0,1010.092667,0.0,93.51666667,10.1325,0.4575,237.82667290000003 +2014-04-25 01:00:00,0.0,1009.693333,0.0,95.91666667,8.643333333,0.272666667,237.82734130000003 +2014-04-25 02:00:00,0.0,1009.160667,0.0,96.8,9.0325,0.259083333,237.82839395 +2014-04-25 03:00:00,0.0,1008.975,0.0,98.76666667,9.436666667,0.192,237.83253783333336 +2014-04-25 04:00:00,0.0,1008.7339999999999,0.05915,100.0,8.839166667,0.34975,237.8376843166667 +2014-04-25 05:00:00,0.0,1008.5169999999999,11.67425,100.0,9.255833333,0.24675,237.83014839999998 +2014-04-25 06:00:00,0.0,1008.616667,64.2635,99.98333333,10.9475,1.383666667,237.82600449999998 +2014-04-25 07:00:00,0.0,1008.55,141.6275,96.33333333,12.66166667,2.813166667,237.82221151666667 +2014-04-25 08:00:00,0.0,1008.666333,139.1716667,90.99166667,14.38083333,2.597583333,237.8308502 +2014-04-25 09:00:00,0.0,1008.575,298.2175,83.15333333,16.4075,2.667833333,237.8318861833333 +2014-04-25 10:00:00,0.0,1008.202667,396.2408333,74.93583333,18.71333333,2.3483333330000002,237.83014839999998 +2014-04-25 11:00:00,0.0,1007.544,463.93666669999993,65.30333333,20.52833333,2.2061666669999997,237.82839395 +2014-04-25 12:00:00,0.0,1006.926,517.0725,58.1025,21.985,2.2454166669999998,237.82563693333336 +2014-04-25 13:00:00,0.0,1006.510667,419.51,52.85,22.96833333,1.997916667,237.82323080000006 +2014-04-25 14:00:00,0.0,1006.1676669999999,352.3566667,49.15083333,23.65,1.4756666669999998,237.82189400000001 +2014-04-25 15:00:00,0.0,1005.9010000000001,351.1666667,47.99583333,23.60333333,1.945,237.82122559999996 +2014-04-25 16:00:00,0.0,1005.501667,248.36,50.96916667,23.5725,1.8481666669999999,237.81982206666666 +2014-04-25 17:00:00,0.0,1005.348333,90.62666667,53.68416667,22.43,2.6583333330000003,237.81912030000004 +2014-04-25 18:00:00,0.0,1005.575,41.84133333,66.765,18.72916667,0.927416667,237.8187861166667 +2014-04-25 19:00:00,0.0,1005.9730000000001,5.008733333,87.065,15.69833333,0.22058333300000002,237.81778356666666 +2014-04-25 20:00:00,0.0,1006.399333,0.0,96.01666667,12.84083333,0.198916667,237.8171152 +2014-04-25 21:00:00,0.0,1006.624667,0.0,98.25833333,11.58666667,0.21875,237.81912030000004 +2014-04-25 22:00:00,0.0,1006.467,0.0,99.79166667,10.6675,0.05475,237.81912030000004 +2014-04-25 23:00:00,0.0,1006.756333,0.0,100.0,9.9525,0.10725,237.81912030000004 +2014-04-26 00:00:00,0.0,1007.406667,0.0,99.61666667,11.47333333,0.18866666699999998,237.81912030000004 +2014-04-26 01:00:00,17.84913379,1007.7230000000001,0.0,86.70833333,13.53333333,0.549583333,237.82087471666662 +2014-04-26 02:00:00,7.57259556,1007.934333,0.0,88.23333333,13.805,0.603,237.81947118333332 +2014-04-26 03:00:00,2.518946376,1007.178333,0.0,96.5,13.10166667,0.729916667,237.81947118333335 +2014-04-26 04:00:00,0.0,1007.165,0.039433333,97.13333333,12.83416667,0.5485,237.81982206666666 +2014-04-26 05:00:00,0.0,1007.49,7.671825,99.85833333,11.90416667,0.215,237.82291328333335 +2014-04-26 06:00:00,0.0,1007.7,52.45391667,99.9,12.2675,0.4345,237.82122559999996 +2014-04-26 07:00:00,0.0,1007.924667,87.64,95.23333333,14.03333333,0.563916667,237.82122559999996 +2014-04-26 08:00:00,0.0,1007.891667,128.17,92.075,14.63,0.602833333,237.82222819999996 +2014-04-26 09:00:00,0.0,1007.958333,94.33666667,91.04166667,15.16083333,0.539416667,237.82358168333337 +2014-04-26 10:00:00,0.0,1007.659667,150.0333333,93.81666667,14.9675,0.48758333299999995,237.8184519166667 +2014-04-26 11:00:00,0.0,1007.318333,224.8225,88.35833333,15.87166667,0.59375,237.81880281666668 +2014-04-26 12:00:00,0.0,1006.693667,450.47333330000004,78.8375,17.77916667,0.655666667,237.82393256666668 +2014-04-26 13:00:00,0.0,1006.035333,396.62,71.19333333,18.22916667,1.28075,237.82120891666668 +2014-04-26 14:00:00,0.0,1005.087,182.7991667,72.85,19.39333333,0.8515,237.82050715 +2014-04-26 15:00:00,0.0,1004.5426669999999,166.7166667,68.20166667,19.4625,0.771833333,237.8171152 +2014-04-26 16:00:00,0.0,1003.985667,47.77383333,74.225,18.62083333,1.009666667,237.8171152 +2014-04-26 17:00:00,2.65333572,1003.543,32.81016667,83.48333333,17.15583333,0.41583333299999997,237.8171152 +2014-04-26 18:00:00,0.0,1003.390667,15.16316667,84.725,15.99583333,0.9813333329999999,237.8171152 +2014-04-26 19:00:00,0.0,1003.6569999999999,2.5636333330000003,86.74166667,14.91333333,0.865833333,237.81811774999997 +2014-04-26 20:00:00,0.0,1003.827,0.0,91.58333333,13.56,0.721916667,237.81912030000004 +2014-04-26 21:00:00,0.0,1003.259667,0.0,95.525,12.76,0.271916667,237.81912030000004 +2014-04-26 22:00:00,0.0,1002.776333,0.0,99.625,12.09916667,0.261,237.81912030000004 +2014-04-26 23:00:00,0.0,1002.418667,0.0,100.0,9.993333332999999,0.210666667,237.82087471666662 +2014-04-27 00:00:00,0.0,1002.0260000000001,0.0,100.0,9.665833333,0.09908333300000001,237.82122559999996 +2014-04-27 01:00:00,0.0,1001.7,0.0,100.0,9.928333333,0.109833333,237.82189400000001 +2014-04-27 02:00:00,0.0,1001.551,0.0,100.0,10.96416667,0.328833333,237.8225624 +2014-04-27 03:00:00,140.1672165,1001.648333,0.0,100.0,11.63166667,0.809416667,237.8222448833333 +2014-04-27 04:00:00,67.69901894,1001.510667,0.0,100.0,11.30083333,0.91925,237.88231496666666 +2014-04-27 05:00:00,15.43633363,1001.448667,1.893091667,100.0,11.10416667,0.7416666670000001,237.91805621666666 +2014-04-27 06:00:00,30.14290051,1001.616333,12.561325,100.0,10.72833333,0.530666667,237.92422196666666 +2014-04-27 07:00:00,46.60968144,1001.807667,29.77625,100.0,10.95,0.304833333,237.9283324666667 +2014-04-27 08:00:00,20.54797786,1002.0906669999999,68.88233333,99.85,11.09083333,0.776333333,237.93180800000002 +2014-04-27 09:00:00,2.672425392,1002.507333,76.13666667,99.53333333,11.25666667,0.7390000000000001,237.93250980000002 +2014-04-27 10:00:00,2.57824464,1002.965,103.0575,98.34166667,11.59833333,0.661333333,237.93145710000002 +2014-04-27 11:00:00,0.0,1003.05,232.8783333,92.1,12.94333333,1.08725,237.92900086666668 +2014-04-27 12:00:00,0.0,1003.2739999999999,191.2633333,89.05833333,13.95166667,0.7739166670000001,237.9276307 +2014-04-27 13:00:00,0.0,1003.399667,195.5683333,82.77,13.82333333,0.864833333,237.92594301666668 +2014-04-27 14:00:00,0.0,1003.234667,105.70583329999998,85.075,13.25166667,0.67925,237.9238544 +2014-04-27 15:00:00,4.883689848,1003.065667,105.58333329999999,85.11666667,13.33833333,0.204666667,237.92218340000002 +2014-04-27 16:00:00,0.0,1003.349667,110.845,83.40416667,13.3525,1.091583333,237.92113075 +2014-04-27 17:00:00,0.0,1003.4910000000001,81.725,88.675,13.23333333,1.1803333329999999,237.9194097 +2014-04-27 18:00:00,0.0,1003.574,44.44475,92.45,12.94666667,0.7275,237.91772201666666 +2014-04-27 19:00:00,0.0,1004.14,5.245158333,97.69166667,11.7875,0.30925,237.91596759999996 +2014-04-27 20:00:00,0.0,1004.424667,0.0,100.0,10.86833333,0.133416667,237.91396239999997 +2014-04-27 21:00:00,0.0,1004.3919999999999,0.0,100.0,10.07,0.072666667,237.91220798333333 +2014-04-27 22:00:00,0.0,1004.673667,0.0,100.0,9.379166667,0.089333333,237.9111553 +2014-04-27 23:00:00,0.0,1004.908333,0.0,100.0,9.013333333,0.168583333,237.9097517 +2014-04-28 00:00:00,0.0,1004.8660000000001,0.0,100.0,9.2425,0.07925,237.90669390000002 +2014-04-28 01:00:00,0.0,1004.975,0.0,100.0,9.800833333,0.109583333,237.9056412 +2014-04-28 02:00:00,0.0,1004.6593330000001,0.0,100.0,9.7975,0.22625,237.90463865 +2014-04-28 03:00:00,0.0,1004.509333,0.0,100.0,9.7875,0.0,237.90397028333334 +2014-04-28 04:00:00,0.0,1004.483333,0.019716667,100.0,9.758333333,0.34566666700000004,237.9025834 +2014-04-28 05:00:00,0.0,1004.682,2.918766667,100.0,9.8,0.308333333,237.9015307 +2014-04-28 06:00:00,0.0,1004.966,20.98191667,100.0,10.085,0.10391666699999999,237.90052815 +2014-04-28 07:00:00,0.0,1005.174,27.29241667,100.0,10.43583333,0.197583333,237.89952560000003 +2014-04-28 08:00:00,0.0,1005.291667,70.08341667,100.0,11.03833333,0.2435,237.89882379999997 +2014-04-28 09:00:00,0.0,1005.3739999999999,119.4725,97.8,11.94583333,0.411916667,237.89742019999997 +2014-04-28 10:00:00,5.188750896,1005.674333,131.01083329999997,88.54166667,12.53833333,0.97675,237.89742019999997 +2014-04-28 11:00:00,0.0,1005.6916669999999,96.48333333,87.225,12.7125,1.6120833330000002,237.89504748333331 +2014-04-28 12:00:00,0.0,1005.8330000000001,93.24583333,89.84166667,12.39,1.80525,237.89297551666667 +2014-04-28 13:00:00,0.0,1005.924333,149.8991667,90.50833333,12.62333333,1.765166667,237.8913046 +2014-04-28 14:00:00,0.0,1005.9333330000001,92.45833333,87.675,13.0025,1.6205833330000001,237.8913046 +2014-04-28 15:00:00,0.0,1005.742667,67.12183333,91.30833333,13.00333333,1.7391666669999999,237.889901 +2014-04-28 16:00:00,0.0,1005.758333,38.80858333,94.3,12.91,1.59825,237.88919919999998 +2014-04-28 17:00:00,0.0,1005.716667,35.08166667,95.875,13.1,1.5236666669999999,237.88919919999998 +2014-04-28 18:00:00,0.0,1005.990667,21.71108333,95.33333333,13.42166667,0.49908333299999996,237.8877956 +2014-04-28 19:00:00,0.0,1006.3739999999999,1.636716667,97.81666667,13.2475,0.108666667,237.8867596166667 +2014-04-28 20:00:00,4.948902192,1006.681333,0.0,99.40833333,12.805,0.1445,237.88609125000002 +2014-04-28 21:00:00,0.0,1007.007667,0.0,100.0,12.63083333,0.020666667,237.8850887 +2014-04-28 22:00:00,0.0,1007.099667,0.0,100.0,12.445,0.06308333299999999,237.8850887 +2014-04-28 23:00:00,0.0,1007.258333,0.0,100.0,12.29083333,0.042083333,237.884036 +2014-04-29 00:00:00,0.0,1007.1676669999999,0.0,100.0,11.94,0.04825,237.8829833 +2014-04-29 01:00:00,0.0,1006.925667,0.0,100.0,12.11333333,0.1865,237.88164656666663 +2014-04-29 02:00:00,0.0,1006.8660000000001,0.0,100.0,12.22666667,0.227833333,237.88097819999993 +2014-04-29 03:00:00,7.4153362320000005,1006.8589999999999,0.0,100.0,12.20083333,0.18833333300000002,237.88097819999993 +2014-04-29 04:00:00,19.30717195,1006.783667,0.019716667,100.0,12.13416667,0.11800000000000001,237.88097819999993 +2014-04-29 05:00:00,0.0,1006.84,3.155133333,100.0,12.13583333,0.0,237.88097819999993 +2014-04-29 06:00:00,0.0,1007.059,16.40741667,100.0,12.47666667,0.006083333000000001,237.87922369999998 +2014-04-29 07:00:00,17.10440734,1007.3739999999999,26.0295,100.0,12.75083333,0.21716666699999998,237.87887279999998 +2014-04-29 08:00:00,2.540005776,1007.499333,45.37341667,100.0,12.97,0.284416667,237.87887279999998 +2014-04-29 09:00:00,0.0,1007.640667,75.72716667,100.0,13.6875,0.197083333,237.87853861666667 +2014-04-29 10:00:00,0.0,1007.784,117.7989167,98.03333333,14.57166667,1.131166667,237.87787024999997 +2014-04-29 11:00:00,0.0,1007.658333,77.8925,96.23333333,14.6825,1.140916667,237.87788696666667 +2014-04-29 12:00:00,45.96853673,1007.558667,56.40425,99.20833333,14.3375,1.073083333,237.87787024999997 +2014-04-29 13:00:00,46.20296683,1007.467333,95.76583333,98.00833333,14.19833333,1.176833333,237.87992549999998 +2014-04-29 14:00:00,19.63248595,1007.009333,150.9725,97.35833333,14.38333333,0.331916667,237.88266583333333 +2014-04-29 15:00:00,0.0,1006.676667,260.46416669999996,90.08333333,15.9575,0.580833333,237.8870938 +2014-04-29 16:00:00,0.0,1006.259667,207.07166669999998,89.125,17.3875,0.481333333,237.88919919999998 +2014-04-29 17:00:00,0.0,1006.05,77.02916667,89.75833333,16.27333333,0.486833333,237.88955009999998 +2014-04-29 18:00:00,0.0,1005.934,24.29466667,93.33333333,15.16333333,0.742833333,237.89095369999998 +2014-04-29 19:00:00,2.477500392,1006.040667,6.054533332999999,95.00833333,14.28833333,0.51125,237.8913046 +2014-04-29 20:00:00,4.854612192,1006.432667,0.019716667,99.575,13.17583333,0.224583333,237.89197296666666 +2014-04-29 21:00:00,7.404058728,1006.267333,0.0,100.0,12.70416667,0.252583333,237.8933097 +2014-04-29 22:00:00,0.0,1006.299333,0.0,100.0,11.78416667,0.113916667,237.8950642 +2014-04-29 23:00:00,0.0,1006.217333,0.0,100.0,11.49083333,0.025,237.89708601666663 +2014-04-30 00:00:00,0.0,1005.835333,0.0,100.0,11.14333333,0.024583333,237.89812200000003 +2014-04-30 01:00:00,0.0,1005.674333,0.0,100.0,10.4225,0.0,237.89952560000003 +2014-04-30 02:00:00,0.0,1005.568,0.0,100.0,9.776666667,0.02625,237.89777109999997 +2014-04-30 03:00:00,0.0,1005.525,0.0,100.0,10.51666667,0.146416667,237.89952560000003 +2014-04-30 04:00:00,0.0,1005.250333,0.039433333,100.0,11.0175,0.12091666699999999,237.89952560000003 +2014-04-30 05:00:00,0.0,1005.15,3.312983333,100.0,11.19583333,0.140416667,237.90052814999999 +2014-04-30 06:00:00,0.0,1005.2489999999999,13.90258333,100.0,11.72583333,0.5651666670000001,237.9015307 +2014-04-30 07:00:00,0.0,1005.550667,34.43066667,100.0,12.1975,0.344083333,237.9015307 +2014-04-30 08:00:00,0.0,1005.848333,52.101000000000006,100.0,12.5775,1.03325,237.9022325 +2014-04-30 09:00:00,0.0,1006.0823330000001,69.35833333,100.0,12.97833333,1.319083333,237.90328520000003 +2014-04-30 10:00:00,0.0,1006.3989999999999,103.1333333,97.55,13.4275,1.018166667,237.9036361 +2014-04-30 11:00:00,0.0,1006.458667,238.18083330000002,91.53333333,15.0925,0.5551666670000001,237.90328520000003 +2014-04-30 12:00:00,0.0,1006.200667,394.6016667,84.075,17.18583333,0.78375,237.9032852 +2014-04-30 13:00:00,0.0,1006.0426669999999,486.47083330000004,78.27416667,19.16583333,0.8009166670000001,237.90154741666666 +2014-04-30 14:00:00,0.0,1005.817667,415.2866667,74.54083333,18.44583333,2.694,237.89952560000003 +2014-04-30 15:00:00,0.0,1005.5169999999999,383.635,72.57333333,18.69333333,2.549,237.89952560000003 +2014-04-30 16:00:00,0.0,1005.433667,302.47,68.96166667,18.755,2.238916667,237.89812199999997 +2014-04-30 17:00:00,0.0,1005.2260000000001,100.24525,69.8975,18.55083333,2.25425,237.89742019999997 +2014-04-30 18:00:00,0.0,1005.2410000000001,42.13533333,76.64666667,16.18333333,0.687,237.89742019999997 +2014-04-30 19:00:00,0.0,1005.307333,7.117658333,91.875,12.96083333,0.34725,237.89641765000002 +2014-04-30 20:00:00,0.0,1005.898,0.05915,99.73333333,11.20083333,0.30175,237.8954151 +2014-04-30 21:00:00,0.0,1006.481667,0.0,100.0,11.085,0.34433333299999996,237.8954151 +2014-04-30 22:00:00,0.0,1006.575,0.0,100.0,11.64083333,0.082833333,237.8954151 +2014-04-30 23:00:00,0.0,1006.616667,0.0,100.0,11.37166667,0.07591666700000001,237.89366059999998 +2014-01-05 00:00:00,0.0,1006.799667,0.0,100.0,11.00166667,0.230833333,238.01030266666666 +2014-01-05 01:00:00,0.0,1006.701,0.0,100.0,10.67916667,0.11358333300000001,238.009018 +2014-01-05 02:00:00,0.0,1006.467,0.0,100.0,10.28166667,0.15925,238.00934699999996 +2014-01-05 03:00:00,0.0,1006.250667,0.0,100.0,10.38166667,0.03825,238.00868899999998 +2014-01-05 04:00:00,0.0,1006.117,0.1183,100.0,11.13083333,0.28925,238.00901799999997 +2014-01-05 05:00:00,0.0,1006.232333,4.634758333,100.0,11.1675,0.29025,238.00998933333332 +2014-01-05 06:00:00,0.0,1006.4656669999999,25.241999999999997,99.80833333,11.62583333,0.27399999999999997,238.00998933333332 +2014-01-05 07:00:00,0.0,1006.766333,67.14516667,98.08333333,12.70083333,0.46433333299999996,238.00967599999998 +2014-01-05 08:00:00,0.0,1006.8,88.52083333,95.325,13.36916667,0.556666667,238.00998933333332 +2014-01-05 09:00:00,0.0,1007.04,141.9016667,89.91666667,14.14333333,0.549666667,238.00967599999998 +2014-01-05 10:00:00,0.0,1007.208667,204.925,84.20333333,14.96083333,0.498333333,238.00901799999997 +2014-01-05 11:00:00,0.0,1007.018333,494.06,73.2975,16.99916667,0.71575,238.00901799999997 +2014-01-05 12:00:00,0.0,1006.501667,395.92,65.53916667,18.46166667,0.8251666670000001,238.00835999999995 +2014-01-05 13:00:00,0.0,1005.993,213.8966667,68.1775,17.86583333,0.85725,238.00835999999995 +2014-01-05 14:00:00,0.0,1005.625667,273.35583330000003,70.86833333,17.91,1.9219166669999999,238.00835999999995 +2014-01-05 15:00:00,0.0,1005.335,300.8775,59.40416667,18.2425,1.96825,238.00770199999997 +2014-01-05 16:00:00,0.0,1004.793,109.34175,69.56333333,17.10833333,2.021416667,238.008031 +2014-01-05 17:00:00,0.0,1004.575,56.29925,78.17083333,15.34083333,1.7485,238.006762 +2014-01-05 18:00:00,0.0,1004.616667,44.28491667,76.995,15.00166667,0.62325,238.00770199999997 +2014-01-05 19:00:00,0.0,1004.7080000000001,8.5386,87.37,13.36166667,0.371833333,238.00835999999995 +2014-01-05 20:00:00,0.0,1005.248333,0.019716667,97.26666667,12.0575,0.21916666699999998,238.00868899999998 +2014-01-05 21:00:00,0.0,1005.789,0.0,94.30833333,12.50916667,0.84725,238.008031 +2014-01-05 22:00:00,0.0,1006.125,0.0,96.20833333,12.70833333,0.47375,238.009018 +2014-01-05 23:00:00,0.0,1006.216333,0.0,95.99166667,12.07666667,0.169166667,238.009018 +2014-02-05 00:00:00,0.0,1006.117667,0.0,98.975,11.35083333,0.061833333,238.0548824 +2014-02-05 01:00:00,0.0,1005.7669999999999,0.0,100.0,11.01916667,0.111416667,238.05488239999997 +2014-02-05 02:00:00,0.0,1005.650667,0.0,100.0,10.83583333,0.0265,238.05488239999997 +2014-02-05 03:00:00,0.0,1005.625,0.0,100.0,10.74583333,0.024916667000000003,238.0548824 +2014-02-05 04:00:00,0.0,1005.873,0.078866667,100.0,10.7075,0.08025,238.05488239999997 +2014-02-05 05:00:00,0.0,1006.381667,10.1556,100.0,10.38666667,0.52275,238.05488239999997 +2014-02-05 06:00:00,0.0,1006.84,50.30025,99.95833333,10.9275,0.292416667,238.05462859999997 +2014-02-05 07:00:00,0.0,1007.498,116.3925,94.65833333,12.00416667,1.135666667,238.05462859999997 +2014-02-05 08:00:00,0.0,1007.990333,160.38166669999998,89.28333333,12.64833333,2.127,238.0538672 +2014-02-05 09:00:00,0.0,1008.681,181.3875,86.34166667,13.11083333,2.33675,238.0536134 +2014-02-05 10:00:00,0.0,1009.123667,267.59833330000004,81.505,14.3225,1.70275,238.05313 +2014-02-05 11:00:00,0.0,1009.250333,302.58666669999997,74.02416667,15.35,2.00375,238.05313 +2014-02-05 12:00:00,6.254472816,1009.539667,76.02233333,90.23583333,13.38416667,3.01475,238.0533838 +2014-02-05 13:00:00,0.0,1009.6089999999999,109.19416670000001,91.825,13.41916667,2.152083333,238.05313 +2014-02-05 14:00:00,0.0,1009.807667,73.74675,94.24166667,13.47416667,2.2465833330000002,238.05412099999998 +2014-02-05 15:00:00,0.0,1010.223333,85.12816667,91.38333333,13.46083333,2.872,238.0536134 +2014-02-05 16:00:00,11.56311022,1010.523667,35.41358333,92.8,12.3875,3.492,238.0538672 +2014-02-05 17:00:00,0.0,1011.196667,22.30258333,91.74166667,11.47916667,3.416083333,238.05337169999999 +2014-02-05 18:00:00,0.0,1012.123,20.705125,90.725,10.60083333,4.19275,238.05288830000003 +2014-02-05 19:00:00,0.0,1012.972,1.5184166669999999,92.35,9.385833332999999,3.508833333,238.0526466 +2014-02-05 20:00:00,0.0,1013.913,0.0,93.25833333,8.401666667,3.32275,238.05240489999997 +2014-02-05 21:00:00,0.0,1014.7389999999999,0.0,95.46666667,7.615333333,3.185166667,238.05216319999997 +2014-02-05 22:00:00,0.0,1015.182667,0.0,97.54166667,7.172999999999999,2.9755833330000003,238.05216319999997 +2014-02-05 23:00:00,0.0,1015.399667,0.0,93.44166667,7.062666667,3.3218333330000003,238.05190941666663 +2014-03-05 00:00:00,0.0,1015.5906669999999,0.0,90.29166667,6.693,3.464,238.0153997 +2014-03-05 01:00:00,0.0,1015.815,0.0,89.45,6.074,3.29325,238.0151459 +2014-03-05 02:00:00,0.0,1016.141333,0.0,88.84166667,5.664333332999999,2.39875,238.0148921 +2014-03-05 03:00:00,0.0,1016.25,0.0,93.19166667,4.857416667,0.4375,238.0148921 +2014-03-05 04:00:00,0.0,1016.673333,0.35495833299999996,99.49166667,3.4668333330000003,0.142833333,238.0148921 +2014-03-05 05:00:00,0.0,1017.106667,18.85549167,100.0,3.02375,0.122,238.01387696666666 +2014-03-05 06:00:00,0.0,1017.558,49.36108333,95.21666667,5.071416667,0.70475,238.01362318333335 +2014-03-05 07:00:00,0.0,1017.9810000000001,70.48416667,88.53333333,6.319916667,1.97675,238.01362318333335 +2014-03-05 08:00:00,0.0,1018.439667,81.3575,85.975,6.720916667000001,2.6301666669999997,238.01362318333335 +2014-03-05 09:00:00,0.0,1018.641667,299.425,80.535,7.9105,2.929166667,238.01336940000002 +2014-03-05 10:00:00,0.0,1018.559,315.6533333,73.495,9.065833332999999,2.967083333,238.01362318333338 +2014-03-05 11:00:00,0.0,1018.666667,274.79083330000003,66.06083333,10.17333333,3.372,238.01336940000002 +2014-03-05 12:00:00,0.0,1018.525,422.71833330000004,58.545,10.82333333,3.3855,238.01336940000002 +2014-03-05 13:00:00,0.0,1018.4093330000001,464.135,51.0575,11.84666667,3.71525,238.01336940000002 +2014-03-05 14:00:00,0.0,1018.1089999999999,469.25083330000007,46.34,12.43833333,3.0699166669999998,238.01312770000004 +2014-03-05 15:00:00,0.0,1017.9093330000001,345.45,43.28166667,12.80666667,3.094166667,238.012886 +2014-03-05 16:00:00,0.0,1017.675,274.8730833,42.0675,13.05416667,2.8138333330000003,238.0121609 +2014-03-05 17:00:00,0.0,1017.6669999999999,64.21333333,40.52583333,12.99416667,3.00125,238.01239050000004 +2014-03-05 18:00:00,0.0,1017.724667,26.56325,41.55,12.19083333,2.308083333,238.0116654 +2014-03-05 19:00:00,0.0,1018.056667,10.72720833,68.15333333,9.19775,0.84875,238.0111578 +2014-03-05 20:00:00,0.0,1018.473333,0.13801666699999998,90.11666667,4.4036666669999995,0.282916667,238.01039640000002 +2014-03-05 21:00:00,0.0,1018.857,0.0,94.24166667,2.7206666669999997,0.175083333,238.01015470000002 +2014-03-05 22:00:00,0.0,1019.249333,0.0,96.78333333,1.749416667,0.108916667,238.01015470000002 +2014-03-05 23:00:00,0.0,1019.474667,0.0,98.21666667,0.893916667,0.231666667,238.0089462 +2014-04-05 00:00:00,0.0,1019.208667,0.0,99.76666667,0.5539166670000001,0.198166667,237.9448413 +2014-04-05 01:00:00,0.0,1019.018333,0.0,100.0,0.061166667,0.135083333,237.94449040000003 +2014-04-05 02:00:00,0.0,1018.733333,0.0,100.0,-0.5591666670000001,0.007333333,237.94378860000003 +2014-04-05 03:00:00,0.0,1018.758667,0.0,100.0,-0.824416667,0.08658333300000001,237.9448413 +2014-04-05 04:00:00,0.0,1018.7,0.414225,100.0,-1.0453333329999999,0.027333332999999998,237.94343770000003 +2014-04-05 05:00:00,0.0,1018.8580000000001,14.972825,100.0,-0.603,0.0005,237.94378860000003 +2014-04-05 06:00:00,0.0,1019.056667,88.51383333,98.33333333,2.266916667,0.043,237.94308680000003 +2014-04-05 07:00:00,0.0,1019.159,200.8825,83.36166667,5.467083333,0.40525,237.94273590000003 +2014-04-05 08:00:00,0.0,1019.191,112.4491667,74.81416667,8.603916667,0.605583333,237.9448413 +2014-04-05 09:00:00,0.0,1019.118667,246.7791667,65.48666667,11.02166667,0.747083333,237.94273590000003 +2014-04-05 10:00:00,0.0,1018.6676669999999,417.34,61.00166667,11.9475,1.2819999999999998,237.9448413 +2014-04-05 11:00:00,0.0,1018.2603330000001,463.9833333000001,57.9075,12.375,1.1510833329999999,237.94241843333336 +2014-04-05 12:00:00,0.0,1017.667333,489.6675,54.73083333,13.7225,1.05325,237.94273590000003 +2014-04-05 13:00:00,0.0,1017.161667,463.1783333000001,53.30416667,15.585,1.01375,237.94173335000002 +2014-04-05 14:00:00,0.0,1016.501333,465.22583330000003,50.1525,15.1925,1.257083333,237.94173335000002 +2014-04-05 15:00:00,0.0,1016.051,349.71416669999996,49.11,16.23833333,0.764,237.94139916666668 +2014-04-05 16:00:00,0.0,1015.676667,221.935,50.8025,16.40416667,0.9099166670000001,237.9403799 +2014-04-05 17:00:00,0.0,1015.225667,100.345,49.94,16.23333333,0.540416667,237.93967810000004 +2014-04-05 18:00:00,0.0,1015.1669999999999,44.94175,53.50583333,15.44666667,0.514333333,237.9396781 +2014-04-05 19:00:00,0.0,1015.1410000000001,8.026725,70.8,11.42,0.8351666670000001,237.93897630000004 +2014-04-05 20:00:00,0.0,1015.665333,0.09858333300000001,84.74083333,9.559166667000001,1.296666667,237.9386254 +2014-04-05 21:00:00,0.0,1015.7919999999999,0.0,93.825,7.722083333,0.716,237.9386254 +2014-04-05 22:00:00,0.0,1015.658333,0.0,93.80833333,6.0995,0.40475,237.93795703333333 +2014-04-05 23:00:00,0.0,1015.633,0.0,97.40833333,4.455916666999999,0.191583333,237.9366203 +2014-05-05 00:00:00,0.0,1015.434333,0.0,99.49166667,4.415583333,0.1075,237.83566250000004 +2014-05-05 01:00:00,0.0,1014.993667,0.0,100.0,3.681833333,0.151416667,237.83566250000004 +2014-05-05 02:00:00,0.0,1014.567667,0.0,100.0,3.1075,0.137333333,237.83566250000004 +2014-05-05 03:00:00,0.0,1014.442333,0.0,100.0,1.876333333,0.07641666700000001,237.83566250000004 +2014-05-05 04:00:00,0.0,1014.416667,0.41416666700000004,100.0,1.250666667,0.065,237.83566250000004 +2014-05-05 05:00:00,0.0,1014.54,16.60849167,100.0,1.2935,0.0315,237.83531160000004 +2014-05-05 06:00:00,0.0,1014.741667,84.02975,97.33333333,4.253416667,0.0065,237.83390800000004 +2014-05-05 07:00:00,0.0,1014.600667,189.3733333,81.99166667,6.560416667,0.824916667,237.83390799999998 +2014-05-05 08:00:00,0.0,1014.5666669999999,128.0125,77.575,8.53375,0.805,237.83566250000004 +2014-05-05 09:00:00,0.0,1014.144333,306.915,72.85083333,11.5525,0.595666667,237.83566250000004 +2014-05-05 10:00:00,0.0,1013.543,415.58416669999997,65.71666667,13.395,1.047166667,237.83531159999998 +2014-05-05 11:00:00,0.0,1013.243333,351.7033333,63.28583333,14.59333333,1.048166667,237.83390800000004 +2014-05-05 12:00:00,0.0,1012.7926669999999,429.77666669999996,60.675,16.03833333,1.4233333330000002,237.8335571 +2014-05-05 13:00:00,0.0,1012.302,401.1991667,58.5275,16.65166667,1.3155,237.83288873333336 +2014-05-05 14:00:00,0.0,1011.7843330000001,396.025,55.5025,17.2075,1.58025,237.8308502 +2014-05-05 15:00:00,0.0,1011.236667,387.415,54.4625,18.0525,1.470666667,237.82874483333333 +2014-05-05 16:00:00,0.0,1010.733667,296.9575,50.47416667,18.36,1.561,237.82734130000003 +2014-05-05 17:00:00,0.0,1010.285333,68.10591667,50.41416667,18.25833333,1.388166667,237.82734130000003 +2014-05-05 18:00:00,0.0,1009.751667,29.141,51.89416667,17.47916667,1.13275,237.82600449999998 +2014-05-05 19:00:00,0.0,1009.658,7.492625,75.6175,12.32083333,0.538666667,237.8253361 +2014-05-05 20:00:00,0.0,1009.9573330000001,0.1183,91.25833333,8.309083333,0.18908333300000002,237.8253361 +2014-05-05 21:00:00,0.0,1009.7510000000001,0.0,96.29166667,6.408333333,0.10408333300000001,237.8253361 +2014-05-05 22:00:00,0.0,1009.343667,0.0,99.1,5.40975,0.017666667,237.82428345000002 +2014-05-05 23:00:00,0.0,1008.842,0.0,100.0,4.650416667,0.02,237.82323080000006 +2014-06-05 00:00:00,0.0,1008.759333,0.0,100.0,4.3185,0.11599999999999999,237.7243784 +2014-06-05 01:00:00,0.0,1008.209667,0.0,100.0,4.090166667,0.136666667,237.7243784 +2014-06-05 02:00:00,0.0,1007.8439999999999,0.0,100.0,3.051166667,0.0695,237.7243616833333 +2014-06-05 03:00:00,0.0,1007.508,0.0,100.0,2.44225,0.062666667,237.7243784 +2014-06-05 04:00:00,0.0,1007.168,0.473375,100.0,2.2315,0.14875,237.7243784 +2014-06-05 05:00:00,0.0,1007.101333,23.56981667,100.0,2.70275,0.01725,237.7243784 +2014-06-05 06:00:00,0.0,1006.932667,56.89775,100.0,5.4195,0.122583333,237.7260493166667 +2014-06-05 07:00:00,0.0,1006.676,163.91666669999998,95.075,8.544,0.43991666700000004,237.72638349999997 +2014-06-05 08:00:00,0.0,1006.684,174.0025,81.94333333,12.3275,0.5145,237.72638349999997 +2014-06-05 09:00:00,0.0,1006.708333,261.4558333,75.99583333,14.53083333,0.722916667,237.72401078333334 +2014-06-05 10:00:00,0.0,1006.691,328.48083330000003,67.13333333,17.2375,0.5825,237.71990028333335 +2014-06-05 11:00:00,0.0,1006.575667,295.225,59.885,19.44583333,0.983916667,237.71543888333335 +2014-06-05 12:00:00,0.0,1006.441,253.33583330000002,60.77333333,19.565,1.6413333330000002,237.7106098666667 +2014-06-05 13:00:00,0.0,1006.7739999999999,198.4383333,64.78083333,18.21416667,1.4921666669999998,237.70716773333334 +2014-06-05 14:00:00,15.49329782,1007.117333,90.055,82.10083333,15.81416667,1.0464166670000001,237.70512920000002 +2014-06-05 15:00:00,0.0,1006.243667,89.5125,90.325,15.17833333,0.9883333329999999,237.7037256 +2014-06-05 16:00:00,0.0,1005.992667,46.18016667,89.325,15.61166667,1.699,237.70272305 +2014-06-05 17:00:00,0.0,1005.858667,61.01608333,83.09916667,16.12833333,1.207,237.7017205 +2014-06-05 18:00:00,0.0,1005.569,38.6505,80.8075,16.78583333,0.775666667,237.7017205 +2014-06-05 19:00:00,0.0,1005.141667,13.82441667,79.2925,15.77833333,1.175583333,237.7013696 +2014-06-05 20:00:00,0.0,1005.249333,0.157733333,80.08333333,15.01833333,1.151833333,237.7017205 +2014-06-05 21:00:00,0.0,1005.085,0.0,75.92833333,16.265,1.676083333,237.7017205 +2014-06-05 22:00:00,0.0,1004.270333,0.0,73.4925,15.91916667,1.311166667,237.70339141666668 +2014-06-05 23:00:00,0.0,1003.558667,0.0,68.235,16.4225,2.2680000000000002,237.7037256 +2014-07-05 00:00:00,0.0,1003.607,0.0,68.89583333,16.06,1.4496666669999998,237.58971784999997 +2014-07-05 01:00:00,34.78928426,1004.722667,0.0,90.495,13.1075,1.237833333,237.5907705 +2014-07-05 02:00:00,12.98498765,1004.6833330000001,0.0,97.15833333,11.6725,0.813333333,237.59349415 +2014-07-05 03:00:00,23.41695437,1004.02,0.0,97.43333333,11.12,0.942416667,237.5958836 +2014-07-05 04:00:00,0.0,1004.1139999999999,0.315466667,98.16666667,10.59916667,0.528416667,237.5983064166667 +2014-07-05 05:00:00,2.484616152,1005.0219999999999,11.59555833,99.69166667,9.585,0.205,237.59965985 +2014-07-05 06:00:00,0.0,1005.79,64.06983333,98.38333333,11.03916667,0.654666667,237.60066239999995 +2014-07-05 07:00:00,0.0,1006.331333,86.9715,95.56666667,12.02666667,0.749833333,237.60066239999995 +2014-07-05 08:00:00,0.0,1006.690667,128.7475,85.1,12.98,0.9095,237.59725376666668 +2014-07-05 09:00:00,0.0,1007.065,186.2175,75.25583333,13.49583333,1.8713333330000002,237.59178978333333 +2014-07-05 10:00:00,0.0,1007.365667,305.9583333,72.88333333,13.83083333,1.405,237.58280018333335 +2014-07-05 11:00:00,0.0,1007.625,255.9316667,69.2925,14.78333333,1.709916667,237.57392753333338 +2014-07-05 12:00:00,0.0,1007.8989999999999,344.2133333,63.88916667,15.34416667,1.355083333,237.57013450000002 +2014-07-05 13:00:00,0.0,1008.024333,449.7383333000001,62.585,16.24166667,1.544,237.56804581666665 +2014-07-05 14:00:00,0.0,1007.951,419.65,69.25916667,16.8625,1.4473333330000002,237.56600728333333 +2014-07-05 15:00:00,21.81389074,1007.867333,289.50425,80.15916667,14.385,1.185916667,237.56426950000002 +2014-07-05 16:00:00,2.846814792,1007.671667,221.6764667,70.88,16.32166667,1.0696666670000001,237.5635677 +2014-07-05 17:00:00,33.88977391,1008.045,63.83638333,93.99166667,11.7075,0.950416667,237.5635677 +2014-07-05 18:00:00,17.49927406,1008.1883330000001,36.59483333,89.175,12.99,0.392166667,237.56189678333337 +2014-07-05 19:00:00,2.434677192,1008.623667,7.040425,95.28333333,12.0,0.327916667,237.56256515000004 +2014-07-05 20:00:00,0.0,1008.75,0.256316667,98.08333333,10.44666667,0.515833333,237.5642695 +2014-07-05 21:00:00,0.0,1008.982667,0.0,90.05,10.96083333,1.248583333,237.56769491666662 +2014-07-05 22:00:00,0.0,1009.308,0.0,92.66666667,10.11416667,0.655666667,237.57048540000002 +2014-07-05 23:00:00,0.0,1009.432667,0.0,96.6,9.1675,0.44625,237.57289155 +2014-08-05 00:00:00,0.0,1009.516333,0.0,97.05833333,8.643333333,0.40733333299999996,237.49181788333328 +2014-08-05 01:00:00,0.0,1009.591333,0.0,97.49166667,7.445583332999999,0.1885,237.49181788333328 +2014-08-05 02:00:00,0.0,1009.567,0.0,97.64166667,6.258583333,0.114,237.49148369999997 +2014-08-05 03:00:00,2.4050227680000003,1009.4169999999999,0.0,95.5,7.727416667000001,0.302333333,237.4900801 +2014-08-05 04:00:00,0.0,1009.416667,1.084416667,94.25,9.5275,0.7466666670000001,237.48937830000003 +2014-08-05 05:00:00,0.0,1009.656333,16.939125,95.19166667,9.75,0.9208333329999999,237.48937830000003 +2014-08-05 06:00:00,0.0,1010.274333,44.037,92.75833333,9.984166667,0.271666667,237.48937830000003 +2014-08-05 07:00:00,0.0,1010.466333,95.12416667,89.13333333,10.77916667,0.877916667,237.4890441166667 +2014-08-05 08:00:00,0.0,1010.3510000000001,161.6591667,81.555,12.51416667,1.31775,237.48770738333334 +2014-08-05 09:00:00,0.0,1010.266667,169.2016667,79.43333333,12.8725,1.11575,237.4877073833333 +2014-08-05 10:00:00,0.0,1010.0666669999999,183.25416669999998,80.20833333,12.71416667,1.0795,237.4863205 +2014-08-05 11:00:00,0.0,1010.125333,199.325,76.87166667,13.70833333,1.197833333,237.4852678 +2014-08-05 12:00:00,0.0,1009.834,263.1825,73.19583333,14.98333333,1.27025,237.48491690000003 +2014-08-05 13:00:00,0.0,1009.6010000000001,232.3941667,71.00916667,15.35083333,1.238333333,237.4835133 +2014-08-05 14:00:00,0.0,1009.168667,152.28033330000002,70.1825,15.26,1.106333333,237.48251075 +2014-08-05 15:00:00,0.0,1008.461,99.86083333,72.37333333,14.47,0.705416667,237.48080640000003 +2014-08-05 16:00:00,0.0,1008.2073330000001,71.26233333,75.49583333,14.5225,0.948583333,237.4794028 +2014-08-05 17:00:00,5.237952552,1007.761333,51.74283333,91.7,12.445,0.82925,237.48282821666666 +2014-08-05 18:00:00,7.569627024,1007.2339999999999,25.20233333,95.78333333,12.24333333,0.589583333,237.47975370000003 +2014-08-05 19:00:00,10.2765319,1006.661333,6.2115666670000005,97.925,11.84333333,0.83625,237.47804935 +2014-08-05 20:00:00,13.72464953,1006.0343330000001,0.039433333,97.11666667,11.68666667,1.22325,237.4752923 +2014-08-05 21:00:00,23.22633377,1005.802333,0.0,98.75833333,11.5525,0.749083333,237.47495811666667 +2014-08-05 22:00:00,20.44037263,1005.475,0.0,98.59166667,11.59416667,0.694916667,237.4729363 +2014-08-05 23:00:00,13.73740411,1005.442,0.0,98.25833333,12.0025,1.251083333,237.47258539999996 +2014-09-05 00:00:00,10.933305599999999,1005.001667,0.0,96.41666667,12.45083333,1.2935,237.8230536 +2014-09-05 01:00:00,5.635683407999999,1004.866667,0.0,95.7,12.8525,1.41775,237.82375539999998 +2014-09-05 02:00:00,0.0,1005.023333,0.0,95.6,12.80916667,1.237166667,237.8230536 +2014-09-05 03:00:00,0.0,1005.54,0.0,95.4,12.945,0.939333333,237.8234045 +2014-09-05 04:00:00,2.48702172,1005.940667,0.690141667,96.25,12.31916667,0.68525,237.82375539999998 +2014-09-05 05:00:00,0.0,1006.721333,16.48546667,95.63333333,12.29916667,0.461416667,237.82305359999998 +2014-09-05 06:00:00,0.0,1007.2156669999999,87.14591667,91.625,13.73083333,0.708416667,237.8223518 +2014-09-05 07:00:00,2.519729904,1007.6569999999999,178.9316667,87.30833333,14.47416667,0.915083333,237.82201761666667 +2014-09-05 08:00:00,0.0,1008.016667,159.7225,81.31333333,15.34583333,1.085916667,237.8223518 +2014-09-05 09:00:00,0.0,1007.991667,317.3858333,72.67916667,16.40666667,1.3245,237.8223518 +2014-09-05 10:00:00,0.0,1007.990667,294.90416669999996,70.23166667,16.57833333,1.496,237.82101506666663 +2014-09-05 11:00:00,0.0,1008.166667,195.0608333,64.28,16.67583333,1.4958333330000002,237.82034669999993 +2014-09-05 12:00:00,0.0,1008.026333,419.28833330000003,58.945,17.86833333,1.6194166669999999,237.82034669999993 +2014-09-05 13:00:00,0.0,1007.866333,395.5525,55.855,18.345,2.196916667,237.81894309999996 +2014-09-05 14:00:00,0.0,1008.256667,374.8091667,54.0975,17.94416667,2.5540000000000003,237.81894309999996 +2014-09-05 15:00:00,0.0,1008.276667,259.5075,54.63416667,17.25083333,2.224583333,237.81757293333337 +2014-09-05 16:00:00,0.0,1007.934333,295.54,55.165,17.26583333,2.038916667,237.8158853 +2014-09-05 17:00:00,0.0,1007.508667,82.73591667,55.44083333,17.05083333,1.786416667,237.81623619999996 +2014-09-05 18:00:00,0.0,1007.757,40.24825,58.8425,16.39583333,1.03925,237.8151835 +2014-09-05 19:00:00,12.19200305,1008.762333,11.28038333,80.10583333,12.7925,1.29825,237.81413080000002 +2014-09-05 20:00:00,0.0,1009.4730000000001,0.29575,83.69166667,11.17666667,0.712666667,237.81413080000002 +2014-09-05 21:00:00,0.0,1010.04,0.0,88.41666667,10.12333333,0.464416667,237.81312825 +2014-09-05 22:00:00,0.0,1010.756333,0.0,88.76666667,9.69,0.53375,237.8124598833333 +2014-09-05 23:00:00,0.0,1011.065667,0.0,88.45,9.156666667,0.34766666700000004,237.81379661666665 +2014-10-05 00:00:00,0.0,1011.3489999999999,0.0,96.85833333,6.935333332999999,0.063666667, +2014-10-05 01:00:00,0.0,1011.524333,0.0,100.0,5.176416667,0.226583333, +2014-10-05 02:00:00,0.0,1011.567333,0.0,99.90833333,4.77,0.09708333300000001, +2014-10-05 03:00:00,0.0,1011.3839999999999,0.0,93.35833333,4.448416667,0.15275, +2014-10-05 04:00:00,2.432383272,1011.325,1.8734333330000001,92.75,4.056,0.046, +2014-10-05 05:00:00,0.0,1011.1676669999999,15.63858333,91.725,5.662916667,0.00725, +2014-10-05 06:00:00,0.0,1010.833667,42.14175,91.13333333,7.63425,0.07825, +2014-10-05 07:00:00,0.0,1010.6593330000001,77.71633333,85.8,9.611666667,0.69975, +2014-10-05 08:00:00,0.0,1010.185333,137.9525,82.95833333,11.63666667,1.175833333, +2014-10-05 09:00:00,0.0,1009.519333,186.9875,76.77833333,13.34666667,0.7919166670000001, +2014-10-05 10:00:00,0.0,1009.009333,226.79416669999998,77.68833333,14.01583333,1.202583333, +2014-10-05 11:00:00,0.0,1008.195333,347.585,76.81583333,15.0025,1.57875, +2014-10-05 12:00:00,0.0,1007.210333,199.5758333,72.79416667,16.14166667,2.334833333, +2014-10-05 13:00:00,0.0,1006.344333,106.86783329999999,76.11,15.55916667,2.326916667, +2014-10-05 14:00:00,17.01165571,1006.019333,90.50241667,93.63333333,12.93916667,1.5201666669999998, +2014-10-05 15:00:00,14.07624197,1004.937333,134.0441667,92.74166667,13.15,1.5935, +2014-10-05 16:00:00,11.13391572,1003.995333,60.44966667,92.80833333,13.54166667,1.39175, +2014-10-05 17:00:00,8.382791088,1003.076667,32.55991667,95.90833333,12.70916667,1.5589166669999999, +2014-10-05 18:00:00,8.878098432,1002.568333,21.98933333,96.34166667,12.39166667,1.275166667, +2014-10-05 19:00:00,2.70570732,1001.844667,6.90235,98.45,11.59916667,0.933916667, +2014-10-05 20:00:00,2.497551024,1000.936333,0.216883333,96.63333333,11.99416667,1.23675, +2014-10-05 21:00:00,2.768509584,1001.260667,0.0,95.95833333,11.6075,2.136, +2014-10-05 22:00:00,0.0,1001.378,0.0,97.13333333,9.215833332999999,0.549333333, +2014-10-05 23:00:00,2.6216142000000002,1001.2260000000001,0.0,94.19166667,9.573333332999999,0.938, +2014-11-05 00:00:00,2.616701472,1001.091667,0.0,94.48333333,9.738333333,0.9864166670000001,237.94635250000002 +2014-11-05 01:00:00,0.0,1001.133,0.0,93.575,8.733333333,0.68225,237.94635250000002 +2014-11-05 02:00:00,0.0,1001.158667,0.0,93.81666667,8.337583333,0.619083333,237.9456858333333 +2014-11-05 03:00:00,0.0,1001.141667,0.0,92.00833333,7.089666667,0.538416667,237.94435249999995 +2014-11-05 04:00:00,2.550720648,1001.058,1.1635166670000001,91.03333333,7.955333333,0.955916667,237.9426025 +2014-11-05 05:00:00,0.0,1001.182667,38.1395,88.25833333,8.4575,1.5905,237.9402525 +2014-11-05 06:00:00,2.840700216,1001.549333,107.62325,84.19166667,9.219166667,1.7216666669999998,237.9402525 +2014-11-05 07:00:00,3.0023176560000002,1001.384667,143.35416669999998,81.3625,10.49083333,1.893,237.9402525 +2014-11-05 08:00:00,6.24221544,1001.307,150.85,76.54833333,11.325,1.77925,237.9402525 +2014-11-05 09:00:00,3.576373704,1001.160667,416.97833330000003,75.2725,12.14666667,2.453166667,237.9402525 +2014-11-05 10:00:00,6.156822864,1001.024333,368.27,70.02916667,13.19083333,2.19775,237.9402525 +2014-11-05 11:00:00,6.096435864,1001.016333,430.33083330000005,72.36833333,12.94416667,2.339583333,237.93920249999996 +2014-11-05 12:00:00,7.025515368,1000.6519999999999,542.4883332999999,70.6875,13.76666667,2.4979166669999997,237.93920250000005 +2014-11-05 13:00:00,5.84439156,1000.451333,239.8894167,74.19333333,12.5225,1.7329166669999998,237.9385025 +2014-11-05 14:00:00,3.186826728,1000.764667,426.93583330000007,68.35833333,13.64583333,2.659833333,237.9374858333333 +2014-11-05 15:00:00,6.096009216000001,1000.56,269.5175,68.60416667,13.66333333,1.7763333330000002,237.9371525 +2014-11-05 16:00:00,2.71865712,1000.748333,128.0830833,82.315,11.34083333,1.231083333,237.93815249999997 +2014-11-05 17:00:00,2.73769332,1000.758,67.74191667,76.58666667,12.835,0.7393333329999999,237.93815249999997 +2014-11-05 18:00:00,2.5961717280000003,1001.049,53.44616667,76.87166667,12.255,0.6425833329999999,237.93815249999997 +2014-11-05 19:00:00,0.0,1001.59,15.3622,76.44416667,11.00333333,0.41475,237.93815249999997 +2014-11-05 20:00:00,2.803881288,1002.305667,0.216883333,80.91916667,10.44833333,0.988916667,237.9385025 +2014-11-05 21:00:00,2.585828376,1002.666333,0.0,82.925,9.976666667,1.039166667,237.9385025 +2014-11-05 22:00:00,0.0,1003.0139999999999,0.0,81.36333333,9.271666667,0.633,237.9395525 +2014-11-05 23:00:00,2.73420648,1003.573333,0.0,82.93333333,9.621666667000001,1.13175,237.9399025 +2014-12-05 00:00:00,0.0,1004.040667,0.0,79.66833333,9.365,1.5454166669999998,237.87515249999998 +2014-12-05 01:00:00,0.0,1004.39,0.0,85.77583333,8.22725,1.204916667,237.87585249999998 +2014-12-05 02:00:00,2.7053687760000003,1004.534,0.0,88.8,7.44925,1.156416667,237.8762025 +2014-12-05 03:00:00,0.0,1004.5666669999999,0.0,88.19166667,6.88325,0.93075,237.8768858333333 +2014-12-05 04:00:00,0.0,1004.748333,1.08465,90.56666667,6.596333333,0.737166667,237.87688583333332 +2014-12-05 05:00:00,2.78042352,1005.074,41.05966667,89.31666667,7.1973333329999996,1.110333333,237.87655249999997 +2014-12-05 06:00:00,0.0,1005.565,82.67641667,84.275,8.496666667000001,1.410916667,237.8772191666667 +2014-12-05 07:00:00,0.0,1005.891333,116.1825,81.1125,9.143333333,1.6745,237.8775525 +2014-12-05 08:00:00,2.852188848,1006.007333,151.50916669999998,77.02083333,10.69416667,1.8259166669999998,237.87890249999998 +2014-12-05 09:00:00,0.0,1006.449333,294.8516667,74.36583333,11.485,1.605666667,237.87890249999998 +2014-12-05 10:00:00,0.0,1006.35,209.83083330000002,77.24916667,11.9225,1.4055,237.87890249999998 +2014-12-05 11:00:00,2.676029568,1006.242667,410.41583330000003,88.09666667,11.00416667,1.070333333,237.87890249999998 +2014-12-05 12:00:00,0.0,1005.984333,557.7075,74.5375,13.60583333,1.7535,237.87995249999997 +2014-12-05 13:00:00,0.0,1005.915333,328.72583330000003,67.8625,14.39416667,1.689583333,237.88030249999997 +2014-12-05 14:00:00,3.074811864,1006.257667,274.0476667,80.98416667,12.1175,1.58125,237.88030249999997 +2014-12-05 15:00:00,0.0,1005.818667,330.8083333,84.19416667,12.08083333,1.138583333,237.8806525 +2014-12-05 16:00:00,0.0,1005.75,314.86875,70.05333333,14.46083333,1.29875,237.8806525 +2014-12-05 17:00:00,0.0,1006.43,36.14975,80.50583333,11.78083333,1.8939166669999998,237.8809858333333 +2014-12-05 18:00:00,0.0,1006.625333,41.03866667,93.725,9.365,0.48658333299999995,237.8819858333333 +2014-12-05 19:00:00,0.0,1006.633,15.698025,96.11666667,9.265833333,0.179916667,237.8819858333333 +2014-12-05 20:00:00,0.0,1007.414333,0.35495833299999996,99.28333333,8.501666667,0.262916667,237.88265249999998 +2014-12-05 21:00:00,0.0,1007.5239999999999,0.0,100.0,7.602,0.072583333,237.88265249999998 +2014-12-05 22:00:00,0.0,1007.732333,0.0,99.975,6.460916667,0.09300000000000001,237.88265249999998 +2014-12-05 23:00:00,0.0,1008.125,0.0,97.93333333,6.861166667000001,0.152666667,237.88300249999998 +2014-05-13 00:00:00,0.0,1008.166333,0.0,98.125,7.8805,0.56175,237.84902998333334 +2014-05-13 01:00:00,0.0,1008.192,0.0,99.675,7.538416667000001,0.208666667,237.85076776666665 +2014-05-13 02:00:00,0.0,1008.166667,0.0,99.31666667,7.1625,0.205333333,237.85213793333332 +2014-05-13 03:00:00,0.0,1008.049667,0.0,99.31666667,6.792916667,0.29533333300000003,237.8538422833333 +2014-05-13 04:00:00,2.41677756,1008.299667,0.6902,99.675,7.013833332999999,0.26466666699999997,237.8528063 +2014-05-13 05:00:00,0.0,1008.590333,6.370525,99.93333333,7.351916667,0.40775,237.8493808833333 +2014-05-13 06:00:00,0.0,1009.047333,25.697,99.40833333,7.877416667,0.4305,237.847994 +2014-05-13 07:00:00,0.0,1009.5906669999999,39.83991667,99.89166667,7.935583332999999,0.3925,237.84044136666668 +2014-05-13 08:00:00,0.0,1009.9739999999999,133.65333329999999,96.63333333,8.629166667,0.48866666700000005,237.8376676 +2014-05-13 09:00:00,0.0,1010.341,353.8325,90.2,10.46916667,0.7155,237.8380185 +2014-05-13 10:00:00,0.0,1010.4989999999999,302.015,81.55416667,11.77,1.32375,237.8383694 +2014-05-13 11:00:00,0.0,1010.309,281.9425,73.52166667,12.74083333,1.56175,237.8376676 +2014-05-13 12:00:00,0.0,1010.45,433.27666669999996,76.29166667,12.7775,1.7315,237.8376676 +2014-05-13 13:00:00,0.0,1010.655667,493.185,69.7575,14.58166667,1.35075,237.83633086666669 +2014-05-13 14:00:00,5.182730472,1011.209,169.0908333,81.1825,10.47833333,2.2045,237.83566250000004 +2014-05-13 15:00:00,0.0,1011.149333,459.8825,67.6225,14.3175,0.7726666670000001,237.83360725000003 +2014-05-13 16:00:00,0.0,1011.638,146.1185833,76.49583333,11.88,2.822083333,237.83155200000002 +2014-05-13 17:00:00,0.0,1012.5823330000001,111.60333329999999,84.31666667,10.9525,3.704916667,237.83155200000002 +2014-05-13 18:00:00,0.0,1013.105333,24.33666667,84.125,10.32416667,1.5908333330000002,237.83120110000002 +2014-05-13 19:00:00,0.0,1013.880667,10.117625,85.08333333,10.04666667,0.78525,237.8301484 +2014-05-13 20:00:00,0.0,1014.904667,0.49291666700000003,88.36666667,9.739166667000001,1.210833333,237.8294466 +2014-05-13 21:00:00,0.0,1015.573333,0.0,91.5,9.109166667,0.863583333,237.8294466 +2014-05-13 22:00:00,0.0,1016.355333,0.0,94.825,8.420833333,0.5551666670000001,237.8294466 +2014-05-13 23:00:00,0.0,1017.039667,0.0,99.025,6.892666667,0.36175,237.82874483333333 +2014-05-14 00:00:00,0.0,1017.615667,0.0,100.0,5.342083333,0.258166667,237.8294466 +2014-05-14 01:00:00,0.0,1018.205667,0.0,100.0,4.363333333,0.142833333,237.82909571666667 +2014-05-14 02:00:00,0.0,1018.657333,0.0,100.0,3.746166667,0.10083333300000001,237.82734130000003 +2014-05-14 03:00:00,0.0,1019.215,0.0,100.0,2.793,0.0275,237.82700710000003 +2014-05-14 04:00:00,0.0,1019.664667,1.715991667,100.0,2.072083333,0.023916667000000003,237.82667289999998 +2014-05-14 05:00:00,0.0,1020.289,54.838,100.0,3.289083333,0.017166667,237.82633870000004 +2014-05-14 06:00:00,0.0,1021.039667,142.3858333,95.56666667,5.978,0.6295,237.8253194166667 +2014-05-14 07:00:00,0.0,1021.740333,176.5225,88.925,7.981083333,1.6539166669999998,237.82598781666664 +2014-05-14 08:00:00,0.0,1022.156333,131.96166670000002,81.79583333,8.916666667000001,3.191833333,237.82734130000003 +2014-05-14 09:00:00,0.0,1022.639667,356.13375,71.71833333,10.55333333,3.516916667,237.82700710000003 +2014-05-14 10:00:00,0.0,1022.941333,292.7633333,66.01083333,11.64083333,2.138833333,237.8253361 +2014-05-14 11:00:00,0.0,1022.882667,334.83916669999996,65.1575,12.4352617,3.1275,237.82463433333336 +2014-05-14 12:00:00,0.0,1022.819333,299.3841667,63.19083333,12.50995361,2.398333333,237.82358168333334 +2014-05-14 13:00:00,0.0,1022.575,303.65416669999996,59.535,12.99139912,2.6070833330000003,237.8225624 +2014-05-14 14:00:00,0.0,1022.475,240.44416669999998,63.6925,13.06166667,1.95675,237.82017295 +2014-05-14 15:00:00,0.0,1022.282667,126.49408329999999,65.3675,12.96583333,1.906833333,237.81912030000004 +2014-05-14 16:00:00,0.0,1022.442333,85.2775,78.6525,12.38916667,1.913416667,237.81912030000004 +2014-05-14 17:00:00,0.0,1022.615667,120.6980833,65.07666667,12.9875,2.598416667,237.81912030000004 +2014-05-14 18:00:00,0.0,1023.420667,16.25096667,77.75083333,11.21333333,3.525083333,237.8187861166667 +2014-05-14 19:00:00,0.0,1023.608667,2.9386,98.1,8.019166667,0.834666667,237.82052383333328 +2014-05-14 20:00:00,0.0,1024.222667,0.315466667,99.325,8.227,0.79775,237.82189400000001 +2014-05-14 21:00:00,0.0,1024.624333,0.0,100.0,7.866166667000001,0.4895,237.82289660000006 +2014-05-14 22:00:00,0.0,1024.915333,0.0,100.0,6.751416667000001,0.28575,237.82323080000006 +2014-05-14 23:00:00,0.0,1025.307667,0.0,100.0,5.558916667,0.170916667,237.8225624 +2014-05-15 00:00:00,0.0,1025.532333,0.0,100.0,4.93275,0.162916667,237.82155979999996 +2014-05-15 01:00:00,0.0,1025.857333,0.0,100.0,3.9733333330000002,0.07325,237.82122559999996 +2014-05-15 02:00:00,0.0,1026.074333,0.0,100.0,3.042,0.061083333,237.82087471666668 +2014-05-15 03:00:00,0.0,1026.373667,0.0,100.0,2.040833333,0.008583333,237.82122559999996 +2014-05-15 04:00:00,0.0,1026.566,0.907375,100.0,2.2991666669999997,0.006666666999999999,237.82122559999996 +2014-05-15 05:00:00,0.0,1026.907,13.352675,100.0,4.138083333,0.030583332999999997,237.81674756666666 +2014-05-15 06:00:00,0.0,1027.481333,35.1855,100.0,5.443166667000001,0.78225,237.8116011 +2014-05-15 07:00:00,0.0,1028.040333,99.88416667,96.8,6.659166667,1.2409999999999999,237.8102142 +2014-05-15 08:00:00,0.0,1028.499667,171.47666669999998,92.7,7.81225,1.405666667,237.82122559999996 +2014-05-15 09:00:00,0.0,1028.615667,191.345,87.70833333,8.774166667000001,1.376916667,237.82155980000002 +2014-05-15 10:00:00,0.0,1028.558667,164.47666669999998,83.19666667,9.42,1.9396666669999998,237.82155980000002 +2014-05-15 11:00:00,0.0,1028.607667,192.2841667,76.905,10.18916667,2.129166667,237.82050715 +2014-05-15 12:00:00,0.0,1028.642,178.2258333,73.47,11.10083333,2.117666667,237.81912030000004 +2014-05-15 13:00:00,0.0,1028.641667,173.5708333,74.9375,11.95333333,2.242,237.81912030000004 +2014-05-15 14:00:00,0.0,1028.401,227.76833330000002,71.6925,12.30416667,2.4435833330000003,237.81912030000004 +2014-05-15 15:00:00,0.0,1028.325333,157.33083330000002,70.88583333,12.7375,2.593666667,237.81912030000004 +2014-05-15 16:00:00,0.0,1028.183,110.59416670000002,71.42,12.80166667,2.309,237.81912030000004 +2014-05-15 17:00:00,0.0,1028.117667,75.19516667,72.62166667,12.845,1.823083333,237.8187861166667 +2014-05-15 18:00:00,0.0,1028.199333,36.26583333,75.38833333,12.53,2.4255,237.81811774999997 +2014-05-15 19:00:00,0.0,1028.390333,11.813725,79.64166667,11.7925,1.569166667,237.81778356666666 +2014-05-15 20:00:00,0.0,1028.899,0.315466667,83.03333333,10.95833333,1.300583333,237.8171152 +2014-05-15 21:00:00,0.0,1029.106667,0.0,92.3,9.251666667,1.089,237.8171152 +2014-05-15 22:00:00,0.0,1029.208667,0.0,99.83333333,8.098666667,0.586583333,237.81641340000002 +2014-05-15 23:00:00,0.0,1028.894,0.0,100.0,6.841166667,0.175833333,237.8150098 +2014-05-16 00:00:00,0.0,1028.583667,0.0,100.0,5.646666667000001,0.10925,237.8150098 +2014-05-16 01:00:00,0.0,1028.268333,0.0,100.0,4.540916667,0.16699999999999998,237.8150098 +2014-05-16 02:00:00,0.0,1027.6760000000002,0.0,100.0,4.116166667,0.067416667,237.8171152 +2014-05-16 03:00:00,0.0,1027.533667,0.0,100.0,5.715333332999999,0.553083333,237.8171152 +2014-05-16 04:00:00,2.938745712,1027.508,0.670483333,100.0,8.00425,1.060583333,237.8171152 +2014-05-16 05:00:00,0.0,1027.4260000000002,14.08143333,95.81666667,8.779166667,1.276666667,237.8171152 +2014-05-16 06:00:00,0.0,1027.358333,83.23991667,90.075,9.8475,1.9085,237.8187861166667 +2014-05-16 07:00:00,0.0,1027.193333,160.1191667,84.95833333,10.22083333,2.539666667,237.81912030000004 +2014-05-16 08:00:00,0.0,1026.942,128.12333329999998,78.6075,11.365,2.5405,237.81912030000004 +2014-05-16 09:00:00,0.0,1026.734333,363.3,71.3225,12.7125,2.631416667,237.81845193333334 +2014-05-16 10:00:00,0.0,1026.002667,494.83583330000005,63.705,13.91083333,2.681166667,237.81606250000002 +2014-05-16 11:00:00,0.0,1025.078333,540.575,54.5375,15.27666667,3.576916667,237.81400725 +2014-05-16 12:00:00,0.0,1024.385333,559.0316667000001,52.51833333,16.235,4.196333333,237.81300469999996 +2014-05-16 13:00:00,0.0,1023.802333,550.41,49.19333333,16.95833333,4.08425,237.81089930000005 +2014-05-16 14:00:00,0.0,1023.168667,486.50583330000006,47.41583333,17.485,4.26275,237.80984660000001 +2014-05-16 15:00:00,0.0,1022.551667,458.89666669999997,46.34666667,17.81583333,3.791833333,237.80879389999998 +2014-05-16 16:00:00,0.0,1021.993,338.3916667,47.18666667,17.48916667,3.81775,237.8074571666667 +2014-05-16 17:00:00,0.0,1021.493667,78.456,48.4825,17.06583333,2.97925,237.80678880000002 +2014-05-16 18:00:00,0.0,1021.208667,31.07533333,54.23583333,16.38416667,2.60375,237.80643790000002 +2014-05-16 19:00:00,0.0,1021.290667,22.85558333,63.3025,15.4375,2.087333333,237.80608700000002 +2014-05-16 20:00:00,0.0,1021.616333,1.222725,85.78916667,12.78583333,1.183833333,237.80468340000002 +2014-05-16 21:00:00,0.0,1021.633667,0.0,95.925,8.652333333,0.2905,237.80538520000002 +2014-05-16 22:00:00,0.0,1021.118333,0.0,98.20833333,7.1655,0.137583333,237.80573610000002 +2014-05-16 23:00:00,0.0,1020.669333,0.0,99.78333333,5.978916667000001,0.124916667,237.8050343 +2014-05-17 00:00:00,0.0,1020.3660000000001,0.0,100.0,5.0365,0.071416667,237.80468340000002 +2014-05-17 01:00:00,0.0,1020.135,0.0,100.0,4.4405,0.06408333299999999,237.80468340000002 +2014-05-17 02:00:00,0.0,1019.709333,0.0,100.0,4.2613333330000005,0.069083333,237.80538520000002 +2014-05-17 03:00:00,0.0,1019.285,0.0,100.0,3.984666667,0.060333332999999996,237.80678880000002 +2014-05-17 04:00:00,0.0,1018.967667,1.5779166669999998,100.0,3.593,0.132083333,237.80678880000002 +2014-05-17 05:00:00,0.0,1018.816,49.16916667,100.0,4.343833333,0.11333333300000001,237.80678880000002 +2014-05-17 06:00:00,0.0,1018.974667,129.9608333,95.60833333,7.944583333,0.20525,237.80712298333336 +2014-05-17 07:00:00,0.0,1019.291,201.8228333,84.18333333,10.73666667,1.20975,237.8081255333333 +2014-05-17 08:00:00,0.0,1019.3166669999999,134.2075,81.55333333,12.05666667,3.190833333,237.80879389999998 +2014-05-17 09:00:00,0.0,1018.976667,266.315,81.67666667,12.03416667,2.8405,237.80879389999998 +2014-05-17 10:00:00,0.0,1018.377667,392.91,75.69916667,13.52083333,2.646666667,237.80879389999998 +2014-05-17 11:00:00,0.0,1017.859667,495.0575,70.44583333,14.63416667,3.039333333,237.80538520000002 +2014-05-17 12:00:00,0.0,1017.252667,560.6125,63.85916667,15.7875,2.7085,237.80368085 +2014-05-17 13:00:00,0.0,1016.841667,538.5158332999999,57.17583333,16.8325,2.5595,237.80232740000005 +2014-05-17 14:00:00,0.0,1016.294333,503.4225,56.05583333,17.68166667,2.7205,237.80092380000005 +2014-05-17 15:00:00,0.0,1016.043,435.6158333000001,56.375,18.17833333,2.552916667,237.80057290000005 +2014-05-17 16:00:00,0.0,1015.476333,343.3675,54.12916667,18.65166667,2.466166667,237.79890198333337 +2014-05-17 17:00:00,0.0,1015.0103330000001,75.69333333,55.36916667,18.71416667,2.6364166669999998,237.79856780000003 +2014-05-17 18:00:00,0.0,1014.649333,55.31866667,59.7625,17.8575,2.90475,237.79751510000006 +2014-05-17 19:00:00,0.0,1014.592333,36.08325,66.21833333,16.53083333,2.234,237.79646240000002 +2014-05-17 20:00:00,0.0,1014.782333,2.2085,86.65083333,13.85333333,1.251833333,237.79646240000002 +2014-05-17 21:00:00,0.0,1014.9333330000001,0.0,95.875,11.0925,0.7001666670000001,237.79646240000002 +2014-05-17 22:00:00,0.0,1014.7843330000001,0.0,98.75,8.418333333,0.162666667,237.79646240000002 +2014-05-17 23:00:00,0.0,1014.666667,0.0,99.925,7.371333333,0.12041666699999999,237.7971642 +2014-05-18 00:00:00,0.0,1014.285333,0.0,100.0,6.90275,0.178333333,237.79821690000003 +2014-05-18 01:00:00,0.0,1013.900667,0.0,100.0,7.7743333329999995,0.15766666699999998,237.79646240000002 +2014-05-18 02:00:00,0.0,1013.5930000000001,0.0,100.0,8.013833333,0.062,237.79646240000002 +2014-05-18 03:00:00,0.0,1013.226667,0.0,100.0,7.142916667000001,0.061333333,237.79856780000003 +2014-05-18 04:00:00,0.0,1012.635,1.873725,100.0,6.798916667,0.1455,237.79856780000003 +2014-05-18 05:00:00,0.0,1012.425,35.42233333,100.0,7.539833333,0.164833333,237.79856780000003 +2014-05-18 06:00:00,0.0,1012.458667,119.14233329999999,97.49166667,10.715,0.142666667,237.79990453333335 +2014-05-18 07:00:00,0.0,1012.1089999999999,203.1248333,82.2475,13.49083333,0.831833333,237.80057290000005 +2014-05-18 08:00:00,0.0,1011.7603330000001,95.613,77.3525,14.74666667,1.82975,237.80092380000005 +2014-05-18 09:00:00,0.0,1011.293667,361.2758333,68.91166667,16.18,1.5390833330000002,237.80057290000005 +2014-05-18 10:00:00,0.0,1010.950667,473.59666669999996,64.715,17.57916667,2.3904166669999998,237.79856780000003 +2014-05-18 11:00:00,0.0,1010.235667,530.3083333000001,59.20333333,18.57916667,2.143916667,237.79681330000003 +2014-05-18 12:00:00,0.0,1009.569,532.3441667,54.92166667,19.22333333,1.6684166669999998,237.79579403333332 +2014-05-18 13:00:00,0.0,1009.059333,515.5208333,51.77833333,20.38666667,1.674166667,237.7941064 +2014-05-18 14:00:00,0.0,1008.461667,520.6891667,47.635,21.13833333,1.72425,237.79068098333335 +2014-05-18 15:00:00,0.0,1007.727333,270.4683333,48.15666667,21.06333333,1.5743333330000002,237.7899959 +2014-05-18 16:00:00,0.0,1007.0269999999999,342.055,45.85333333,21.0675,1.246,237.7885923 +2014-05-18 17:00:00,0.0,1006.552,88.4065,53.68833333,21.445,0.64525,237.78824139999998 +2014-05-18 18:00:00,0.0,1006.050667,37.87641667,61.73333333,21.905,0.015833333,237.78824139999998 +2014-05-18 19:00:00,0.0,1005.916667,18.02325,80.06666667,19.4625,0.068333333,237.78824139999998 +2014-05-18 20:00:00,0.0,1006.1146669999999,1.1438,90.94166667,14.625,0.574333333,237.78824139999998 +2014-05-18 21:00:00,0.0,1006.7073330000001,0.0,82.61666667,14.64416667,2.436833333,237.78824139999998 +2014-05-18 22:00:00,0.0,1006.6010000000001,0.0,89.79166667,12.24416667,0.506583333,237.78859229999998 +2014-05-18 23:00:00,0.0,1006.4760000000001,0.0,98.36666667,9.239166667000001,0.177333333,237.78964500000004 +2014-05-19 00:00:00,0.0,1006.150333,0.0,100.0,7.975583332999999,0.10025,237.79034680000004 +2014-05-19 01:00:00,0.0,1005.834333,0.0,100.0,7.913666667,0.038416667,237.79134935000002 +2014-05-19 02:00:00,0.0,1005.650667,0.0,100.0,7.402,0.040833333,237.79201771666666 +2014-05-19 03:00:00,0.0,1005.409,0.0,100.0,6.269833332999999,0.055583333,237.7916835333333 +2014-05-19 04:00:00,0.0,1005.2843330000001,2.4456833330000003,100.0,5.6093333329999995,0.044583332999999996,237.79034680000004 +2014-05-19 05:00:00,0.0,1005.15,55.41666667,100.0,6.648083333,0.12683333300000002,237.7923519 +2014-05-19 06:00:00,0.0,1005.341,138.1333333,95.58333333,10.41416667,0.11566666699999999,237.7923519 +2014-05-19 07:00:00,0.0,1005.3166669999999,209.79291669999998,85.30833333,12.5975,0.803583333,237.7923519 +2014-05-19 08:00:00,0.0,1005.275,90.85825,79.71916667,15.52583333,0.6811666670000001,237.7944573 +2014-05-19 09:00:00,0.0,1005.225667,357.24733330000004,73.17666667,18.13916667,1.409083333,237.7927028 +2014-05-19 10:00:00,0.0,1004.984333,481.6525,63.24,20.29583333,1.84675,237.79034680000004 +2014-05-19 11:00:00,0.0,1004.692667,449.1083333000001,57.73833333,21.69083333,2.0435,237.78753959999997 +2014-05-19 12:00:00,0.0,1004.350333,317.2866667,56.7725,22.2925,2.2021666669999997,237.78613599999997 +2014-05-19 13:00:00,0.0,1004.175667,387.9341667,50.99416667,23.3725,2.6814166669999997,237.78513345 +2014-05-19 14:00:00,0.0,1004.067667,387.8116667,52.0775,22.82057511,2.557666667,237.78307825 +2014-05-19 15:00:00,0.0,1003.85,191.68333330000002,53.31166667,22.62336605,1.335,237.7820256 +2014-05-19 16:00:00,0.0,1004.024333,346.0858333,47.845,24.365,0.8394166670000001,237.78002039999998 +2014-05-19 17:00:00,0.0,1003.8589999999999,59.08583333,47.38166667,25.615,0.31975,237.77896775 +2014-05-19 18:00:00,0.0,1003.974667,39.92858333,55.84833333,24.60583333,0.6525833329999999,237.77691249999998 +2014-05-19 19:00:00,0.0,1004.315,26.61925,75.06416667,20.74166667,0.716,237.7759099 +2014-05-19 20:00:00,0.0,1004.731667,1.439316667,85.40833333,15.73083333,0.27,237.7759099 +2014-05-19 21:00:00,0.0,1005.107333,0.0,92.525,13.16083333,0.142166667,237.7759099 +2014-05-19 22:00:00,0.0,1005.431667,0.0,97.56666667,11.35666667,0.11775,237.77624409999999 +2014-05-19 23:00:00,0.0,1005.833333,0.0,99.76666667,10.19333333,0.14175,237.7779151 +2014-05-20 00:00:00,0.0,1006.007333,0.0,100.0,9.2575,0.194166667,237.7779151 +2014-05-20 01:00:00,0.0,1006.248,0.0,100.0,8.583333332999999,0.139833333,237.7779151 +2014-05-20 02:00:00,0.0,1006.749667,0.0,100.0,8.019333332999999,0.092833333,237.7779151 +2014-05-20 03:00:00,0.0,1007.172667,0.0,100.0,8.7375,0.108416667,237.78002039999998 +2014-05-20 04:00:00,0.0,1007.275667,2.484825,100.0,8.572000000000001,0.102,237.78002039999998 +2014-05-20 05:00:00,0.0,1007.689667,66.10566667,99.85,8.925666667,0.031333333,237.78002039999998 +2014-05-20 06:00:00,0.0,1008.131667,151.4216667,92.29166667,12.495,0.141083333,237.78035459999998 +2014-05-20 07:00:00,0.0,1008.449,233.275,83.47583333,15.05166667,0.996083333,237.7820256 +2014-05-20 08:00:00,0.0,1008.666667,148.2016667,75.20666667,18.79666667,0.77425,237.7820256 +2014-05-20 09:00:00,0.0,1008.932667,259.9275,68.54666667,21.035,1.4018333330000001,237.7803546 +2014-05-20 10:00:00,0.0,1008.841667,473.8241666999999,54.6375,23.06666667,1.585666667,237.77589321666665 +2014-05-20 11:00:00,0.0,1008.8083330000001,520.415,49.20916667,24.39583333,2.1615833330000003,237.77380459999998 +2014-05-20 12:00:00,0.0,1008.634333,496.03166669999996,42.51666667,25.81166667,1.99025,237.77144851666665 +2014-05-20 13:00:00,0.0,1008.757333,521.465,41.1625,26.22916667,2.569833333,237.7693432 +2014-05-20 14:00:00,0.0,1008.651667,490.07,38.39666667,26.785,2.658416667,237.76553345 +2014-05-20 15:00:00,0.0,1008.4169999999999,386.70916669999997,38.45083333,27.1725,2.23,237.76556688333335 +2014-05-20 16:00:00,0.0,1008.217667,316.0616667,38.17166667,27.325,1.974166667,237.76382909999998 +2014-05-20 17:00:00,0.0,1007.817333,92.16258333,40.69166667,26.64,1.7930833330000002,237.76180728333335 +2014-05-20 18:00:00,0.0,1007.617333,38.507,47.89333333,25.8825,1.3831666669999998,237.7600695 +2014-05-20 19:00:00,0.0,1007.7239999999999,20.9615,74.52416667,21.80583333,0.312833333,237.75936769999996 +2014-05-20 20:00:00,0.0,1007.957667,1.183058333,87.83333333,16.23416667,0.138666667,237.75936769999996 +2014-05-20 21:00:00,0.0,1008.199,0.0,93.04166667,13.62916667,0.09425,237.75936769999996 +2014-05-20 22:00:00,0.0,1008.45,0.0,96.725,12.08416667,0.027833333,237.7600695 +2014-05-20 23:00:00,0.0,1008.6160000000001,0.0,98.55,11.125,0.04925,237.76147310000002 +2014-05-21 00:00:00,0.0,1008.7,0.0,99.99166667,10.38916667,0.047916667,237.76180728333335 +2014-05-21 01:00:00,0.0,1008.749667,0.0,100.0,9.691666667,0.040416667,237.76280983333334 +2014-05-21 02:00:00,0.0,1009.306333,0.0,99.925,10.23166667,0.191083333,237.76347819999998 +2014-05-21 03:00:00,0.0,1009.217667,0.0,100.0,10.03833333,0.174333333,237.76523269999998 +2014-05-21 04:00:00,0.0,1009.373333,4.2401916669999995,100.0,8.735,0.095333333,237.76558359999999 +2014-05-21 05:00:00,0.0,1009.914,45.16516667,100.0,9.6475,0.003416667,237.76558359999999 +2014-05-21 06:00:00,0.0,1010.224667,133.9275,91.91666667,13.85333333,0.12125,237.76591778333332 +2014-05-21 07:00:00,0.0,1010.333333,148.3766667,88.55833333,15.68833333,0.618416667,237.7675887 +2014-05-21 08:00:00,0.0,1010.333333,171.3133333,80.60583333,17.9575,0.727583333,237.7675887 +2014-05-21 09:00:00,0.0,1010.2260000000001,311.5758333,75.97666667,20.5675,0.919666667,237.76591778333332 +2014-05-21 10:00:00,0.0,1009.784667,372.8083333,60.78833333,23.58083333,0.793583333,237.76247564999997 +2014-05-21 11:00:00,0.0,1009.318667,456.61,53.165,24.89083333,1.2275,237.75905023333334 +2014-05-21 12:00:00,0.0,1008.602667,389.0775,48.2325,26.00666667,1.512666667,237.75701170000002 +2014-05-21 13:00:00,0.0,1008.001667,333.4216667,46.86583333,26.36416667,1.7210833330000002,237.75525719999996 +2014-05-21 14:00:00,0.0,1007.468333,418.3433333,39.61583333,26.99083333,2.59275,237.7535862833333 +2014-05-21 15:00:00,0.0,1007.102667,265.41083330000004,40.12333333,26.81166667,2.449166667,237.75114669999996 +2014-05-21 16:00:00,0.0,1006.328,182.18083330000002,46.95583333,26.45666667,0.975333333,237.74939220000002 +2014-05-21 17:00:00,0.0,1005.683667,99.10833333,64.48083333,25.8775,0.5705,237.74904130000002 +2014-05-21 18:00:00,0.0,1005.1189999999999,66.997,76.695,25.45083333,0.36325,237.74737038333328 +2014-05-21 19:00:00,0.0,1004.883333,25.2595,86.65083333,22.16583333,0.034583333,237.74703619999994 +2014-05-21 20:00:00,0.0,1004.757667,1.321075,95.34166667,17.305,0.17575,237.74837293333334 +2014-05-21 21:00:00,0.0,1004.676667,0.0,98.19166667,14.83416667,0.1575,237.74974310000002 +2014-05-21 22:00:00,0.0,1003.878667,0.0,100.0,13.17333333,0.133583333,237.75114669999996 +2014-05-21 23:00:00,0.0,1003.143,0.0,100.0,12.015,0.092,237.75325209999997 +2014-05-22 00:00:00,0.0,1003.000667,0.0,100.0,11.7825,0.161833333,237.7549230166666 +2014-05-22 01:00:00,0.0,1002.551667,0.0,100.0,11.3875,0.238083333,237.75630990000002 +2014-05-22 02:00:00,0.0,1003.4863330000001,0.0,95.075,12.11916667,0.630416667,237.75736260000005 +2014-05-22 03:00:00,0.0,1003.451,0.0,97.30833333,12.3875,0.540333333,237.75803096666667 +2014-05-22 04:00:00,0.0,1003.799667,2.8595583330000003,99.94166667,11.0575,0.251,237.75903351666662 +2014-05-22 05:00:00,0.0,1004.296667,38.33958333,99.30833333,11.53,0.04525,237.75936769999996 +2014-05-22 06:00:00,0.0,1004.749667,113.42333329999998,84.475,15.4125,0.277916667,237.75936769999996 +2014-05-22 07:00:00,0.0,1005.023333,204.1141667,75.73916667,19.72916667,0.56875,237.76112220000002 +2014-05-22 08:00:00,0.0,1005.299333,133.035,60.58916667,22.29166667,0.44408333299999997,237.7586993333333 +2014-05-22 09:00:00,0.0,1005.624667,342.8133333,54.135,23.195,0.6625,237.75184849999997 +2014-05-22 10:00:00,0.0,1005.816,442.18416669999993,51.40083333,24.40833333,0.61425,237.7466685833333 +2014-05-22 11:00:00,0.0,1005.8083330000001,467.06333330000007,49.32833333,25.12,0.7795,237.74392824999998 +2014-05-22 12:00:00,0.0,1005.7260000000001,483.85166669999995,46.71416667,26.275,1.119583333,237.7422239 +2014-05-22 13:00:00,0.0,1005.193333,313.6,51.30416667,26.54583333,1.310333333,237.74015193333335 +2014-05-22 14:00:00,0.0,1004.66,247.9866667,56.2075,25.94973185,1.5296666669999999,237.73881519999995 +2014-05-22 15:00:00,0.0,1004.35,170.3158333,55.4625,25.8225,1.4433333330000002,237.73741159999997 +2014-05-22 16:00:00,0.0,1004.442,253.9483333,49.27916667,26.13583333,0.40525,237.7367098 +2014-05-22 17:00:00,0.0,1004.102333,89.075,49.3025,26.25583333,0.7915,237.73570725000002 +2014-05-22 18:00:00,0.0,1004.086333,36.635375,62.46666667,23.58416667,0.75225,237.73470469999998 +2014-05-22 19:00:00,52.25719802,1005.440667,16.78075,86.63166667,16.735,1.423583333,237.73470469999998 +2014-05-22 20:00:00,3.21606756,1005.953667,1.0451,88.75,15.7025,1.436666667,237.73570725000002 +2014-05-22 21:00:00,18.57863153,1006.833333,0.0,94.825,14.41583333,0.93225,237.7432431666667 +2014-05-22 22:00:00,0.0,1007.2410000000001,0.0,94.775,14.28,0.466083333,237.74633439999994 +2014-05-22 23:00:00,0.0,1006.876333,0.0,98.63333333,13.9825,0.445333333,237.74770456666667 +2014-05-23 00:00:00,0.0,1006.163333,0.0,100.0,13.75,0.383666667,237.74974310000002 +2014-05-23 01:00:00,0.0,1005.399667,0.0,100.0,13.46666667,0.386,237.750094 +2014-05-23 02:00:00,0.0,1005.209333,0.0,100.0,13.33666667,0.228166667,237.75079579999996 +2014-05-23 03:00:00,0.0,1004.959667,0.0,100.0,12.99083333,0.24275,237.75114669999996 +2014-05-23 04:00:00,0.0,1004.508333,4.1414916669999995,100.0,12.25416667,0.11441666699999999,237.75325209999997 +2014-05-23 05:00:00,9.802697136,1005.139333,8.263091667000001,100.0,12.6575,0.37,237.75325209999997 +2014-05-23 06:00:00,0.0,1005.2843330000001,15.91508333,100.0,13.04666667,0.41775,237.75325209999997 +2014-05-23 07:00:00,0.0,1005.372333,42.43983333,100.0,13.66833333,0.26975,237.75525719999996 +2014-05-23 08:00:00,35.48599927,1006.3646669999999,34.2755,100.0,13.8025,0.5611666670000001,237.755959 +2014-05-23 09:00:00,36.83917786,1006.864333,74.62816667,99.875,14.025,0.313666667,237.75836515 +2014-05-23 10:00:00,28.05776436,1007.507,127.30666670000001,98.78333333,14.49166667,0.72925,237.76180728333335 +2014-05-23 11:00:00,5.2339366080000005,1007.450333,206.3075,92.61666667,16.1525,0.811416667,237.76382909999998 +2014-05-23 12:00:00,0.0,1007.565333,223.1425,87.4,17.23916667,0.762083333,237.76558359999999 +2014-05-23 13:00:00,0.0,1007.775333,172.22916669999998,85.7775,17.16916667,0.405916667,237.7662519666667 +2014-05-23 14:00:00,0.0,1007.85,261.9575,81.72083333,17.7775,0.7135,237.76558359999999 +2014-05-23 15:00:00,0.0,1007.7843330000001,425.95,69.7125,19.71,0.6223333329999999,237.76384581666665 +2014-05-23 16:00:00,0.0,1007.475,394.4325,66.11333333,19.7275,1.21875,237.7586993333333 +2014-05-23 17:00:00,0.0,1007.11,119.54308329999999,70.55333333,18.74583333,1.006416667,237.7604036833333 +2014-05-23 18:00:00,0.0,1006.883333,34.99766667,77.15833333,18.6025,0.647333333,237.75803096666667 +2014-05-23 19:00:00,0.0,1007.34,19.97566667,88.01,18.51333333,0.36508333299999995,237.75903351666662 +2014-05-23 20:00:00,0.0,1007.440667,1.7157,98.53333333,13.6525,0.12008333300000001,237.75936769999996 +2014-05-23 21:00:00,0.0,1007.65,0.0,100.0,10.96583333,0.11733333300000001,237.75936769999996 +2014-05-23 22:00:00,0.0,1007.741333,0.0,100.0,9.608333333,0.109,237.76077130000002 +2014-05-23 23:00:00,0.0,1008.007667,0.0,100.0,8.923333332999999,0.129583333,237.76147310000002 +2014-05-24 00:00:00,0.0,1007.842667,0.0,100.0,8.264166667000001,0.033,237.76147310000002 +2014-05-24 01:00:00,0.0,1007.525,0.0,100.0,7.6021666670000005,0.049583333,237.76314401666664 +2014-05-24 02:00:00,0.0,1007.865333,0.0,100.0,7.258916667,0.0685,237.76347819999998 +2014-05-24 03:00:00,0.0,1008.6310000000001,0.0,100.0,7.63125,0.11525,237.76347819999998 +2014-05-24 04:00:00,0.0,1009.314667,3.076266667,100.0,10.545,0.885416667,237.7631607333333 +2014-05-24 05:00:00,0.0,1009.781333,44.29366667,100.0,10.8275,0.318166667,237.76147310000002 +2014-05-24 06:00:00,0.0,1010.2,115.15291670000002,97.2,12.355,0.2495,237.76314401666664 +2014-05-24 07:00:00,0.0,1010.4889999999999,84.58216667,89.475,13.90666667,0.2895,237.76347819999998 +2014-05-24 08:00:00,0.0,1011.041667,124.04,85.79166667,14.90416667,0.34833333299999997,237.76347819999998 +2014-05-24 09:00:00,0.0,1011.165,166.9091667,82.655,15.56083333,0.48125,237.75868261666665 +2014-05-24 10:00:00,0.0,1011.433,272.9416667,74.39833333,16.9975,0.901333333,237.74838965 +2014-05-24 11:00:00,0.0,1011.848333,229.3725,75.80666667,17.75416667,0.7659999999999999,237.7518317833333 +2014-05-24 12:00:00,0.0,1011.900667,158.795,75.11,17.02833333,0.411416667,237.75973531666668 +2014-05-24 13:00:00,0.0,1011.882667,235.7658333,76.5475,17.52583333,0.917666667,237.75077908333333 +2014-05-24 14:00:00,0.0,1012.015667,303.9633333,76.20666667,18.0825,1.23875,237.7456493166666 +2014-05-24 15:00:00,0.0,1012.3580000000001,406.8225,67.3,18.53166667,1.6128333330000002,237.7463344 +2014-05-24 16:00:00,0.0,1012.2260000000001,416.2025,62.1675,19.155,1.135166667,237.7432598833333 +2014-05-24 17:00:00,0.0,1011.958667,80.49008333,60.04583333,18.575,1.4078333330000001,237.74529841666666 +2014-05-24 18:00:00,0.0,1012.132,28.930999999999997,61.5325,18.07666667,1.4078333330000001,237.74292569999997 +2014-05-24 19:00:00,0.0,1012.707,36.32708333,66.45666667,16.33333333,0.767833333,237.7415221 +2014-05-24 20:00:00,0.0,1013.380667,2.859791667,85.3125,13.22166667,0.29475,237.74082030000002 +2014-05-24 21:00:00,0.0,1014.122667,0.0,95.25,9.59,0.06475,237.7415221 +2014-05-24 22:00:00,0.0,1014.515,0.0,99.29166667,7.915833332999999,0.058833333,237.74257479999997 +2014-05-24 23:00:00,0.0,1014.891667,0.0,100.0,6.872999999999999,0.0,237.74426243333335 +2014-05-25 00:00:00,0.0,1014.816333,0.0,100.0,5.881,0.139916667,237.74493080000002 +2014-05-25 01:00:00,0.0,1015.058,0.0,100.0,5.08975,0.07,237.74633439999994 +2014-05-25 02:00:00,0.0,1015.3563330000001,0.0,100.0,4.432916667,0.051,237.74703619999994 +2014-05-25 03:00:00,0.0,1015.599667,0.0,100.0,4.010333333,0.012833333,237.74870711666668 +2014-05-25 04:00:00,0.0,1016.032333,5.009725,100.0,3.585333333,0.011083333,237.74737038333328 +2014-05-25 05:00:00,0.0,1016.3480000000001,77.32491667,99.875,5.1929166669999995,0.021,237.74703619999994 +2014-05-25 06:00:00,0.0,1016.865333,162.82,93.40833333,8.432,0.317916667,237.74803875 +2014-05-25 07:00:00,0.0,1017.049667,217.5075,85.24166667,10.87666667,0.81225,237.74870711666665 +2014-05-25 08:00:00,0.0,1017.108667,90.58466667,78.61083333,13.93166667,0.6409999999999999,237.73535635 +2014-05-25 09:00:00,0.0,1016.9839999999999,350.805,71.41833333,16.665,0.8394166670000001,237.7298256 +2014-05-25 10:00:00,0.0,1016.684,471.6833333000001,61.90833333,19.56583333,1.0485,237.7295081 +2014-05-25 11:00:00,0.0,1016.426333,455.29166669999995,56.44166667,19.67583333,1.3975,237.7260827 +2014-05-25 12:00:00,0.0,1016.000667,432.34333330000004,51.545,20.46166667,1.091583333,237.73533965000001 +2014-05-25 13:00:00,0.0,1015.660333,446.565,46.575,21.47083333,0.860833333,237.73498876666667 +2014-05-25 14:00:00,0.0,1015.252,472.08583330000005,46.14166667,21.87666667,1.187,237.73054408333329 +2014-05-25 15:00:00,0.0,1014.833333,414.8258333,45.3425,22.16333333,1.218916667,237.73017648333334 +2014-05-25 16:00:00,0.0,1014.800667,378.1983333,45.34333333,22.92666667,0.957416667,237.72469585 +2014-05-25 17:00:00,0.0,1014.177,125.21833329999998,47.67583333,22.07416667,2.406083333,237.72952483333333 +2014-05-25 18:00:00,0.0,1014.0,57.97516667,59.42416667,20.3675,1.4411666669999998,237.72638349999997 +2014-05-25 19:00:00,0.0,1014.033333,30.83908333,79.00833333,18.6675,0.176333333,237.72708526666665 +2014-05-25 20:00:00,0.0,1014.140667,1.5182416669999999,92.05,14.79416667,0.08733333300000001,237.7284888 +2014-05-25 21:00:00,0.0,1014.383333,0.0,95.725,12.5225,0.142166667,237.7301598 +2014-05-25 22:00:00,0.0,1014.474333,0.0,96.68333333,11.86583333,0.102,237.73189753333335 +2014-05-25 23:00:00,0.0,1014.45,0.0,98.98333333,10.79916667,0.06475,237.73295020000003 +2014-05-26 00:00:00,0.0,1014.151667,0.0,99.99166667,10.78583333,0.2755,237.73470469999998 +2014-05-26 01:00:00,0.0,1013.718333,0.0,100.0,11.83666667,0.37858333299999997,237.7367098 +2014-05-26 02:00:00,0.0,1013.284667,0.0,100.0,10.54833333,0.06575,237.7374116 +2014-05-26 03:00:00,0.0,1013.216333,0.0,91.05833333,10.2625,0.06433333299999999,237.73706070000003 +2014-05-26 04:00:00,0.0,1013.041667,8.756766667,81.13083333,13.1425,0.916666667,237.73881519999995 +2014-05-26 05:00:00,0.0,1013.092667,25.89416667,81.74333333,14.1975,0.281333333,237.73881519999995 +2014-05-26 06:00:00,0.0,1012.8510000000001,43.582,96.375,14.52416667,0.292916667,237.7404861166667 +2014-05-26 07:00:00,2.5140145919999997,1012.310333,32.12708333,96.66666667,14.78083333,0.975333333,237.74117120000003 +2014-05-26 08:00:00,12.1991784,1012.390333,43.24541667,99.6,14.1675,0.24733333300000002,237.74292569999997 +2014-05-26 09:00:00,7.940727096,1012.2669999999999,92.6905,99.45833333,14.62166667,0.74875,237.74426243333335 +2014-05-26 10:00:00,5.627361552000001,1012.018333,84.27941667,98.49166667,14.7125,1.686666667,237.74668529999997 +2014-05-26 11:00:00,6.495896712,1011.617667,154.2041667,99.38333333,15.02333333,2.334333333,237.7493922 +2014-05-26 12:00:00,5.705093616,1011.326,95.41641667,99.11666667,15.69083333,1.7351666669999999,237.75079579999996 +2014-05-26 13:00:00,3.059700432,1010.7363330000001,168.3208333,96.775,16.00333333,1.847666667,237.75114669999996 +2014-05-26 14:00:00,5.781262752000001,1009.844333,113.65666670000002,94.65,16.35333333,1.454083333,237.7529012 +2014-05-26 15:00:00,5.608133447999999,1009.193667,145.0458333,91.425,16.79583333,1.47625,237.7535862833333 +2014-05-26 16:00:00,3.050434896,1008.567667,139.7608333,89.675,17.47416667,1.4765833330000002,237.75525719999996 +2014-05-26 17:00:00,0.0,1008.360667,58.63258333,93.16666667,17.7125,1.361,237.7556081 +2014-05-26 18:00:00,5.669060784,1007.801,42.42058333,94.425,17.31333333,1.717583333,237.75736260000005 +2014-05-26 19:00:00,2.600651352,1007.517667,13.21261667,99.03333333,16.48916667,0.70775,237.75769678333336 +2014-05-26 20:00:00,2.494829304,1007.407333,0.6113333329999999,100.0,15.46583333,0.61275,237.75936769999996 +2014-05-26 21:00:00,0.0,1007.359333,0.0,100.0,14.685,0.16675,237.75936769999996 +2014-05-26 22:00:00,0.0,1007.266667,0.0,100.0,14.525,0.313416667,237.76112220000002 +2014-05-26 23:00:00,0.0,1007.109333,0.0,100.0,14.03666667,0.059666667,237.76077130000002 +2014-05-27 00:00:00,2.4050227680000003,1006.767667,0.0,100.0,13.84666667,0.0815,237.76316073333336 +2014-05-27 01:00:00,0.0,1006.4093330000001,0.0,100.0,13.7575,0.33866666700000003,237.76658615 +2014-05-27 02:00:00,0.0,1005.927,0.0,100.0,13.66833333,0.0745,237.77004498333335 +2014-05-27 03:00:00,0.0,1005.493333,0.0,100.0,13.48333333,0.013416667,237.7721336 +2014-05-27 04:00:00,2.50913604,1005.0186669999999,1.912808333,100.0,13.3,0.308,237.77380459999998 +2014-05-27 05:00:00,0.0,1005.115333,13.21191667,100.0,13.5425,0.44683333299999994,237.77624409999999 +2014-05-27 06:00:00,0.0,1005.266667,23.21258333,100.0,13.98583333,0.145583333,237.77758089999998 +2014-05-27 07:00:00,0.0,1005.324,40.922,100.0,14.2875,0.059916667,237.77931863333333 +2014-05-27 08:00:00,0.0,1005.515,83.32916667,99.875,14.70083333,0.1205,237.77861686666665 +2014-05-27 09:00:00,0.0,1005.634667,158.0016667,95.55833333,15.56916667,0.762416667,237.77966951666667 +2014-05-27 10:00:00,2.477735112,1005.6080000000001,171.3483333,95.89166667,16.84416667,0.37741666700000004,237.781023 +2014-05-27 11:00:00,0.0,1005.716667,90.22183333,96.35833333,16.10416667,0.55925,237.7820256 +2014-05-27 12:00:00,0.0,1005.649333,145.9675,98.98333333,15.94,0.501,237.78307825000002 +2014-05-27 13:00:00,0.0,1005.766667,118.965,96.95,16.07583333,0.5815,237.78446508333332 +2014-05-27 14:00:00,0.0,1005.907333,296.2458333,89.9,17.1425,0.8823333329999999,237.78580181666663 +2014-05-27 15:00:00,0.0,1005.785667,97.81216667,87.39166667,17.01,1.614333333,237.78613599999997 +2014-05-27 16:00:00,2.732467344,1005.806667,156.6035333,87.78333333,16.90833333,1.3519999999999999,237.78613599999997 +2014-05-27 17:00:00,0.0,1005.850333,33.05225,98.95,14.94666667,0.43700000000000006,237.78513345 +2014-05-27 18:00:00,0.0,1005.940667,41.19675,99.36666667,14.84083333,0.7636666670000001,237.78580181666663 +2014-05-27 19:00:00,0.0,1006.024667,22.38425,99.15,14.86583333,0.354,237.78613599999997 +2014-05-27 20:00:00,0.0,1006.315,1.124083333,100.0,14.41333333,0.36608333299999996,237.78613599999997 +2014-05-27 21:00:00,0.0,1006.741333,0.0,100.0,14.19083333,0.462416667,237.78683780000003 +2014-05-27 22:00:00,0.0,1006.857667,0.0,99.95833333,13.83583333,0.033916667000000005,237.78683780000003 +2014-05-27 23:00:00,0.0,1006.883667,0.0,99.61666667,13.44666667,0.110666667,237.78824139999998 +2014-05-28 00:00:00,0.0,1006.642333,0.0,99.225,13.24416667,0.45791666700000005,237.78824139999998 +2014-05-28 01:00:00,0.0,1006.501667,0.0,98.95,13.30916667,0.33875,237.78824139999998 +2014-05-28 02:00:00,0.0,1006.150333,0.0,99.31666667,13.105,0.231666667,237.7885923 +2014-05-28 03:00:00,0.0,1005.975,0.0,98.64166667,12.94,0.34666666700000004,237.78753959999997 +2014-05-28 04:00:00,0.0,1006.108333,1.6169416669999999,99.16666667,12.73333333,0.168,237.78824139999998 +2014-05-28 05:00:00,0.0,1006.332,15.14683333,98.65833333,12.69166667,0.172833333,237.78824139999998 +2014-05-28 06:00:00,0.0,1006.408333,35.85341667,97.54166667,12.925,0.341083333,237.78824139999998 +2014-05-28 07:00:00,0.0,1006.574333,80.64991667,96.45833333,13.54916667,0.5156666670000001,237.78824139999998 +2014-05-28 08:00:00,0.0,1006.583333,135.35666669999998,93.10833333,14.40583333,0.688083333,237.78824139999998 +2014-05-28 09:00:00,0.0,1006.757333,120.52833329999999,90.41666667,14.77833333,1.018333333,237.78824139999998 +2014-05-28 10:00:00,0.0,1007.015667,159.7166667,86.475,14.945,1.18025,237.78824139999998 +2014-05-28 11:00:00,0.0,1007.183667,78.11066667,87.65,15.0225,0.837833333,237.78718869999997 +2014-05-28 12:00:00,2.568743376,1007.232333,78.4875,86.39166667,14.77916667,0.834833333,237.78446508333334 +2014-05-28 13:00:00,0.0,1007.425667,76.22241667,84.25,14.76916667,0.6033333329999999,237.7841309 +2014-05-28 14:00:00,0.0,1007.475,79.57541667,84.2,14.89083333,0.7895833329999999,237.7841309 +2014-05-28 15:00:00,0.0,1007.673333,77.01166667,84.625,15.04833333,0.9890000000000001,237.78272736666668 +2014-05-28 16:00:00,0.0,1007.667333,71.95941667,84.325,15.10916667,1.59125,237.7820256 +2014-05-28 17:00:00,0.0,1007.725,41.27666667,93.25833333,14.33916667,1.42775,237.7820256 +2014-05-28 18:00:00,0.0,1007.773333,24.25733333,93.425,14.3225,1.058916667,237.7820256 +2014-05-28 19:00:00,0.0,1008.132667,10.03858333,95.65,14.01166667,0.137666667,237.7816914 +2014-05-28 20:00:00,0.0,1008.565333,0.571841667,99.075,13.31083333,0.02375,237.78100631666666 +2014-05-28 21:00:00,0.0,1008.742,0.0,100.0,12.7275,0.0,237.77931863333333 +2014-05-28 22:00:00,0.0,1008.940333,0.0,100.0,12.37166667,8.329999999999999e-05,237.77861686666665 +2014-05-28 23:00:00,0.0,1008.950333,0.0,100.0,12.11333333,0.030083332999999997,237.77861686666665 +2014-05-29 00:00:00,0.0,1008.917333,0.0,100.0,12.06,0.001,237.77931863333333 +2014-05-29 01:00:00,0.0,1008.8083330000001,0.0,100.0,12.09083333,0.025,237.78002039999998 +2014-05-29 02:00:00,0.0,1008.749333,0.0,100.0,12.0225,0.051333332999999995,237.78002039999998 +2014-05-29 03:00:00,0.0,1008.725667,0.0,100.0,11.83583333,0.0075,237.78002039999998 +2014-05-29 04:00:00,0.0,1008.865667,1.005725,100.0,11.86166667,0.054083333,237.78002039999998 +2014-05-29 05:00:00,0.0,1009.265667,5.758141667,100.0,12.05083333,0.018833333,237.77896775 +2014-05-29 06:00:00,0.0,1009.482667,13.15475,100.0,12.35666667,0.50625,237.7779151 +2014-05-29 07:00:00,0.0,1009.7156669999999,27.2545,100.0,12.53083333,0.49391666700000003,237.7779151 +2014-05-29 08:00:00,0.0,1009.924333,58.7055,99.875,12.80333333,0.557,237.7779151 +2014-05-29 09:00:00,0.0,1010.198667,83.38166667,96.925,12.55166667,1.6910833330000001,237.7779151 +2014-05-29 10:00:00,0.0,1010.5239999999999,64.71208333,98.475,12.03333333,1.802416667,237.7779151 +2014-05-29 11:00:00,0.0,1010.682667,73.30108333,100.0,12.10083333,1.472,237.7779151 +2014-05-29 12:00:00,0.0,1011.081667,61.03591667,100.0,12.1925,1.6924166669999998,237.7779151 +2014-05-29 13:00:00,0.0,1011.283,95.98166667,99.925,12.3775,1.539916667,237.7779151 +2014-05-29 14:00:00,0.0,1011.731667,102.7483333,99.45,12.93833333,1.367666667,237.77966951666667 +2014-05-29 15:00:00,0.0,1011.883333,69.49833333,99.60833333,12.8,1.967916667,237.7806888 +2014-05-29 16:00:00,0.0,1012.066333,45.29758333,100.0,11.89166667,2.364083333,237.78272736666668 +2014-05-29 17:00:00,0.0,1012.622333,38.39733333,100.0,11.22916667,2.404,237.7841309 +2014-05-29 18:00:00,0.0,1013.081667,17.395,100.0,10.87333333,2.1405,237.7854676333333 +2014-05-29 19:00:00,0.0,1013.5906669999999,6.922883333,100.0,10.31,2.2545,237.78613599999997 +2014-05-29 20:00:00,0.0,1014.064667,1.636775,100.0,10.00833333,1.5330833330000002,237.7871887 +2014-05-29 21:00:00,0.0,1014.681333,0.0,100.0,9.55,1.855833333,237.78824139999998 +2014-05-29 22:00:00,0.0,1014.958667,0.0,100.0,9.2225,1.757916667,237.78824139999998 +2014-05-29 23:00:00,0.0,1015.165,0.0,100.0,8.95,1.655666667,237.78894320000003 +2014-05-30 00:00:00,0.0,1015.266333,0.0,99.99166667,8.854166667000001,1.8915,237.78824139999998 +2014-05-30 01:00:00,0.0,1015.349333,0.0,100.0,8.675833333,1.4698333330000002,237.78824139999998 +2014-05-30 02:00:00,0.0,1015.458333,0.0,100.0,7.422999999999999,0.311416667,237.7885923 +2014-05-30 03:00:00,0.0,1015.641333,0.019716667,100.0,5.095666667,0.122,237.78929409999998 +2014-05-30 04:00:00,0.0,1015.849333,2.504483333,100.0,6.201916667000001,0.11491666699999999,237.79034680000004 +2014-05-30 05:00:00,0.0,1016.190333,18.91341667,100.0,7.411333332999999,0.36125,237.79034680000004 +2014-05-30 06:00:00,2.49804792,1016.648333,37.33158333,100.0,8.027083333,0.172083333,237.79034680000004 +2014-05-30 07:00:00,0.0,1017.081667,66.06833333,99.475,8.745,0.715333333,237.79068098333337 +2014-05-30 08:00:00,0.0,1017.4580000000001,123.43333329999999,94.45833333,10.18166667,0.7456666670000001,237.79134935000002 +2014-05-30 09:00:00,0.0,1017.681667,154.7116667,84.83583333,10.68083333,2.0165,237.78964499999998 +2014-05-30 10:00:00,0.0,1018.0239999999999,148.8141667,84.50833333,10.5875,1.685416667,237.78824139999998 +2014-05-30 11:00:00,0.0,1018.232667,117.08666670000001,81.5375,10.84166667,1.040583333,237.78824139999998 +2014-05-30 12:00:00,0.0,1018.4416669999999,190.3475,80.02666667,11.63333333,1.238333333,237.78824139999998 +2014-05-30 13:00:00,0.0,1018.516333,248.5525,76.44333333,12.6375,1.33725,237.78789049999997 +2014-05-30 14:00:00,0.0,1018.500333,292.4833333,68.57416667,13.7825,1.06575,237.78580181666666 +2014-05-30 15:00:00,0.0,1018.393,301.5133333,65.645,14.35083333,1.110333333,237.7841309 +2014-05-30 16:00:00,0.0,1017.992,336.945,63.23583333,15.48166667,0.859083333,237.7813572 +2014-05-30 17:00:00,0.0,1017.609333,86.58416667,63.72166667,15.40083333,0.9095,237.77861686666665 +2014-05-30 18:00:00,0.0,1017.451,44.70375,65.1475,16.04666667,0.37191666700000003,237.77826598333334 +2014-05-30 19:00:00,0.0,1017.440667,29.74241667,85.9425,14.27,0.26658333300000003,237.7775809 +2014-05-30 20:00:00,0.0,1017.723667,3.0567833330000003,98.11666667,10.01416667,0.291666667,237.7759099 +2014-05-30 21:00:00,0.0,1017.9169999999999,0.0,100.0,7.630666667000001,0.29933333300000003,237.7759099 +2014-05-30 22:00:00,0.0,1018.140667,0.0,100.0,6.465666667000001,0.129333333,237.77555901666665 +2014-05-30 23:00:00,0.0,1018.366333,0.0,100.0,5.73575,0.029833332999999997,237.77555901666665 +2014-05-31 00:00:00,0.0,1018.316,0.0,100.0,5.095916667,0.008916667,237.7759099 +2014-05-31 01:00:00,0.0,1018.384333,0.0,100.0,4.3943333330000005,0.000666667,237.7752081333333 +2014-05-31 02:00:00,0.0,1018.292333,0.0,100.0,3.760416667,0.001,237.77380459999998 +2014-05-31 03:00:00,0.0,1018.0169999999999,0.019716667,100.0,3.393916667,0.01525,237.77313619999998 +2014-05-31 04:00:00,0.0,1017.775,7.219333333,100.0,2.98325,0.0,237.7721336 +2014-05-31 05:00:00,0.0,1017.974667,75.77733333,100.0,4.618666667,0.003,237.7724678 +2014-05-31 06:00:00,0.0,1018.265333,158.55583330000002,96.29166667,7.668166667,0.2945,237.77380459999998 +2014-05-31 07:00:00,0.0,1018.5666669999999,174.4545833,84.03333333,10.72083333,0.569333333,237.77380459999998 +2014-05-31 08:00:00,0.0,1018.508333,55.00191667,78.49416667,12.94166667,1.0556666670000001,237.77380459999998 +2014-05-31 09:00:00,0.0,1018.4333330000001,368.025,70.4025,15.0925,1.967583333,237.77347039999998 +2014-05-31 10:00:00,0.0,1018.276667,494.5325,60.05833333,17.0,1.813916667,237.7710976333333 +2014-05-31 11:00:00,0.0,1017.884333,370.02,57.49083333,18.79916667,1.3685,237.76797303333333 +2014-05-31 12:00:00,0.0,1017.434333,273.9275,59.02083333,17.53166667,2.0131666669999997,237.76382909999998 +2014-05-31 13:00:00,0.0,1017.1339999999999,565.6525,51.2925,19.1825,1.786083333,237.76145638333332 +2014-05-31 14:00:00,0.0,1016.801667,285.7225,52.71166667,19.52333333,1.317,237.75836515 +2014-05-31 15:00:00,0.0,1016.509333,202.2183333,52.7925,19.7225,1.05725,237.7563099 +2014-05-31 16:00:00,0.0,1016.233667,255.7625,51.57916667,19.7475,1.56,237.75492301666665 +2014-05-31 17:00:00,0.0,1015.8853330000001,75.13391667,53.88916667,19.80916667,1.181416667,237.75325209999997 +2014-05-31 18:00:00,0.0,1015.708333,50.24133333,59.95666667,17.53166667,0.0495,237.75114669999996 +2014-05-31 19:00:00,0.0,1015.766667,20.72408333,80.675,15.14583333,0.15941666699999998,237.75149759999996 +2014-05-31 20:00:00,0.0,1015.972667,2.879333333,91.08333333,13.21166667,0.08991666699999999,237.75114669999996 +2014-05-31 21:00:00,0.0,1016.3660000000001,0.0,96.00833333,12.51916667,0.357916667,237.74974310000002 +2014-05-31 22:00:00,0.0,1016.483333,0.0,97.06666667,10.85583333,0.065,237.75079579999996 +2014-05-31 23:00:00,0.0,1016.383333,0.0,98.45,10.4975,0.053,237.75114669999996 +2014-01-06 00:00:00,0.0,1016.243333,0.0,99.05,9.425833333,0.1335,238.00967599999998 +2014-01-06 01:00:00,0.0,1016.091667,0.0,100.0,8.501666667,0.05725,238.00967599999998 +2014-01-06 02:00:00,0.0,1016.0583330000001,0.0,100.0,8.324833332999999,0.072416667,238.00901799999997 +2014-01-06 03:00:00,0.0,1015.942,0.019716667,100.0,7.651416667,0.15925,238.00967599999998 +2014-01-06 04:00:00,0.0,1016.049,4.5553666669999995,100.0,8.236,0.1765,238.00967599999998 +2014-01-06 05:00:00,0.0,1016.2739999999999,46.25016667,99.95833333,7.881583332999999,0.084,238.00934699999996 +2014-01-06 06:00:00,0.0,1016.433,67.7005,96.64166667,10.38916667,0.096083333,238.00901799999997 +2014-01-06 07:00:00,0.0,1016.508333,161.98,80.52916667,12.195,0.560083333,238.00934699999996 +2014-01-06 08:00:00,0.0,1016.592,117.1975,72.33083333,13.3625,1.95575,238.00934699999996 +2014-01-06 09:00:00,0.0,1016.342667,363.8658333,65.28916667,14.9075,1.4878333330000002,238.00901799999997 +2014-01-06 10:00:00,0.0,1016.117333,484.67416669999994,61.0575,16.76333333,1.258666667,238.00967599999998 +2014-01-06 11:00:00,0.0,1015.826,484.9833333000001,52.22833333,18.52916667,1.198083333,238.00934699999996 +2014-01-06 12:00:00,0.0,1015.700333,139.65,58.565,17.64416667,1.84975,238.00901799999997 +2014-01-06 13:00:00,0.0,1015.533333,109.8008333,61.74416667,17.2175,1.68775,238.00967599999998 +2014-01-06 14:00:00,0.0,1015.309333,186.5675,59.09333333,17.29333333,1.7515833330000001,238.00901799999997 +2014-01-06 15:00:00,0.0,1015.2919999999999,209.85416669999998,62.72416667,17.3575,2.2769999999999997,238.00770199999997 +2014-01-06 16:00:00,0.0,1015.009333,117.13333329999999,65.71166667,16.88833333,2.3409999999999997,238.00835999999995 +2014-01-06 17:00:00,0.0,1014.949333,128.1291667,68.09833333,16.51,2.074666667,238.00901799999997 +2014-01-06 18:00:00,0.0,1014.792333,54.10183333,67.0325,17.19416667,1.73075,238.00967599999998 +2014-01-06 19:00:00,0.0,1014.7919999999999,17.11616667,85.17166667,14.9825,0.591333333,238.00967599999998 +2014-01-06 20:00:00,0.0,1015.164667,2.228216667,96.64166667,11.69333333,0.151916667,238.00835999999995 +2014-01-06 21:00:00,0.0,1015.474667,0.0,98.66666667,11.49,0.109583333,238.00901799999997 +2014-01-06 22:00:00,0.0,1015.558,0.0,98.45,11.48916667,0.00375,238.0167416666667 +2014-01-06 23:00:00,0.0,1015.393,0.0,99.78333333,11.0225,0.064166667,238.02673700000003 +2014-02-06 00:00:00,0.0,1015.357667,0.0,100.0,9.791666667000001,0.10283333300000001,238.05190941666663 +2014-02-06 01:00:00,0.0,1015.184,0.0,100.0,7.772083332999999,0.121083333,238.05165563333333 +2014-02-06 02:00:00,0.0,1015.1916669999999,0.0,100.0,6.757999999999999,0.10233333300000001,238.05140184999996 +2014-02-06 03:00:00,0.0,1015.117,0.019716667,100.0,5.9365,0.07775,238.05089428333335 +2014-02-06 04:00:00,0.0,1015.091667,5.660083332999999,100.0,5.28075,0.015166667,238.05015706666663 +2014-02-06 05:00:00,0.0,1015.240667,53.27175,100.0,6.131833332999999,0.00225,238.04943191666666 +2014-02-06 06:00:00,0.0,1015.284,142.03,96.34166667,9.934166667000001,0.090583333,238.04991535 +2014-02-06 07:00:00,0.0,1015.241667,141.89,86.25833333,12.295,0.781333333,238.04943191666663 +2014-02-06 08:00:00,0.0,1015.258333,167.70833330000002,80.59666667,13.50666667,1.096666667,238.04893641666663 +2014-02-06 09:00:00,0.0,1015.050333,343.4491667,71.50416667,15.925,1.329416667,238.04893641666663 +2014-02-06 10:00:00,0.0,1014.8510000000001,442.86666669999994,61.42166667,17.97833333,1.515916667,238.0496736333333 +2014-02-06 11:00:00,0.0,1014.5343330000001,505.48166669999995,57.74416667,18.48333333,1.18975,238.0491781333333 +2014-02-06 12:00:00,0.0,1014.0110000000001,320.145,55.89,19.285,1.6498333330000001,238.04919019999997 +2014-02-06 13:00:00,0.0,1013.584333,505.70916669999997,48.96833333,19.71166667,1.341916667,238.04919019999997 +2014-02-06 14:00:00,0.0,1013.193667,368.4275,49.94166667,20.5375,0.914333333,238.04943191666666 +2014-02-06 15:00:00,0.0,1013.016667,440.27083330000005,49.08333333,20.2775,1.219,238.04893641666663 +2014-02-06 16:00:00,0.0,1012.484667,271.1566667,45.6475,20.7225,1.0035,238.04842884999996 +2014-02-06 17:00:00,0.0,1012.300333,62.76375,47.19,20.9275,1.316083333,238.0486826333333 +2014-02-06 18:00:00,0.0,1012.1089999999999,39.39716667,51.775,20.84,1.131083333,238.04893641666663 +2014-02-06 19:00:00,0.0,1012.133333,29.1235,69.71833333,18.80916667,0.85,238.0486826333333 +2014-02-06 20:00:00,0.0,1012.423333,3.45135,90.75,13.13166667,0.12841666699999998,238.04919019999997 +2014-02-06 21:00:00,0.0,1012.823333,0.0,95.44166667,9.713333333,0.11508333300000001,238.04919019999997 +2014-02-06 22:00:00,0.0,1012.842667,0.0,98.91666667,8.487916667,0.0845,238.04943191666663 +2014-02-06 23:00:00,0.0,1012.725667,0.0,99.99166667,7.560083333,0.060416667,238.04991535 +2014-03-06 00:00:00,0.0,1012.666667,0.0,100.0,6.92875,0.11375,238.0089462 +2014-03-06 01:00:00,0.0,1012.459333,0.0,100.0,6.19525,0.054000000000000006,238.0089462 +2014-03-06 02:00:00,0.0,1012.0103330000001,0.0,100.0,5.85475,0.10216666699999999,238.0089462 +2014-03-06 03:00:00,0.0,1011.692333,0.019716667,100.0,5.3075,0.03825,238.0089462 +2014-03-06 04:00:00,0.0,1011.541667,7.139766667000001,100.0,4.923416667,0.021333333,238.0089462 +2014-03-06 05:00:00,0.0,1011.582667,65.03699999999999,100.0,6.67225,0.008166666999999999,238.0089462 +2014-03-06 06:00:00,0.0,1011.824667,147.02333330000002,95.00833333,10.55416667,0.2045,238.0089462 +2014-03-06 07:00:00,0.0,1011.692,162.9366667,81.26083333,13.195,0.401,238.00869239999997 +2014-03-06 08:00:00,0.0,1011.675,164.0566667,77.8125,14.74833333,0.8494166670000001,238.00742340000002 +2014-03-06 09:00:00,0.0,1011.435667,348.74,74.53083333,17.5025,0.8079999999999999,238.00742340000002 +2014-03-06 10:00:00,0.0,1011.0169999999999,433.41666669999995,62.205,19.51083333,1.06875,238.00742340000002 +2014-03-06 11:00:00,0.0,1010.643333,374.1616667,57.24,21.06166667,1.16975,238.0076772 +2014-03-06 12:00:00,0.0,1010.475333,206.605,67.7775,19.20666667,1.8135833330000002,238.0096834 +2014-03-06 13:00:00,0.0,1010.284,483.58333330000005,63.00333333,18.295,2.108166667,238.00942959999998 +2014-03-06 14:00:00,0.0,1009.701667,322.5833333,55.235,21.03583333,1.171166667,238.00942959999998 +2014-03-06 15:00:00,0.0,1009.376333,471.54916669999994,54.39916667,20.9875,2.022833333,238.00967129999995 +2014-03-06 16:00:00,0.0,1009.059333,156.2166667,63.44583333,20.13583333,1.2800833329999999,238.00942959999998 +2014-03-06 17:00:00,0.0,1008.526667,53.711000000000006,72.37333333,18.47,0.23275,238.0089341 +2014-03-06 18:00:00,0.0,1008.250667,46.87025,77.98166667,17.67916667,0.831666667,238.00869239999997 +2014-03-06 19:00:00,0.0,1008.456667,29.38133333,80.67083333,16.50416667,1.074666667,238.0081848 +2014-03-06 20:00:00,0.0,1008.675,2.8786333330000002,95.04166667,13.35333333,0.10516666699999999,238.00767720000002 +2014-03-06 21:00:00,0.0,1008.509333,0.0,98.60833333,11.58666667,0.08583333300000001,238.007931 +2014-03-06 22:00:00,0.0,1008.292333,0.0,99.98333333,10.30416667,0.13699999999999998,238.00742340000002 +2014-03-06 23:00:00,0.0,1007.984333,0.0,100.0,9.899166667000001,0.055083333,238.00767720000002 +2014-04-06 00:00:00,0.0,1007.668667,0.0,100.0,9.584166667,0.236416667,237.9366203 +2014-04-06 01:00:00,0.0,1007.234333,0.0,100.0,8.253833333,0.18875,237.9366203 +2014-04-06 02:00:00,0.0,1006.710333,0.0,100.0,8.3875,0.09016666699999999,237.9366203 +2014-04-06 03:00:00,0.0,1006.26,0.039433333,100.0,7.4225,0.038416667,237.9366203 +2014-04-06 04:00:00,0.0,1005.933667,7.119058333,100.0,6.412999999999999,0.024333333,237.9366203 +2014-04-06 05:00:00,0.0,1005.874667,63.9765,99.99166667,7.623333333,0.0,237.9355676 +2014-04-06 06:00:00,0.0,1005.568,150.36,96.05833333,11.70583333,0.23,237.93451490000004 +2014-04-06 07:00:00,0.0,1005.309667,137.6025,91.50833333,13.90833333,0.509083333,237.93451490000004 +2014-04-06 08:00:00,0.0,1004.934333,90.48666667,80.66083333,17.00833333,1.558416667,237.9348658 +2014-04-06 09:00:00,0.0,1004.5269999999999,355.775,64.90083333,18.96666667,2.06025,237.93521670000004 +2014-04-06 10:00:00,0.0,1004.134333,460.2325,61.055,20.50666667,2.3865,237.9362694 +2014-04-06 11:00:00,0.0,1003.601667,396.6666667,61.2025,21.045,2.881416667,237.9348658 +2014-04-06 12:00:00,0.0,1003.0186669999999,232.9483333,64.20416667,21.55833333,2.237916667,237.93451490000004 +2014-04-06 13:00:00,0.0,1002.708333,373.7708333,61.95833333,20.81083333,3.368583333,237.93451490000004 +2014-04-06 14:00:00,0.0,1002.360333,171.2608333,65.0475,20.41083333,2.665916667,237.93451490000004 +2014-04-06 15:00:00,0.0,1002.490333,89.4145,79.33333333,19.6975,1.384916667,237.9338465333333 +2014-04-06 16:00:00,0.0,1002.3919999999999,41.01358333,95.80833333,16.74166667,0.45399999999999996,237.9321254666667 +2014-04-06 17:00:00,0.0,1002.293667,30.78191667,94.275,16.2575,0.35025,237.9314571 +2014-04-06 18:00:00,0.0,1002.1239999999999,17.3145,96.20833333,15.14916667,1.59475,237.93110620000002 +2014-04-06 19:00:00,0.0,1002.432333,7.73115,99.95833333,14.3175,0.5545,237.93005355 +2014-04-06 20:00:00,0.0,1002.541333,3.4314,100.0,14.04,0.77625,237.9282991 +2014-04-06 21:00:00,0.0,1002.657667,0.0,100.0,13.98666667,1.073083333,237.9282991 +2014-04-06 22:00:00,0.0,1002.784,0.0,100.0,13.70583333,0.29791666699999997,237.9282991 +2014-04-06 23:00:00,0.0,1002.9060000000001,0.0,99.18333333,13.15083333,0.786083333,237.92629390000002 +2014-05-06 00:00:00,0.0,1003.722,0.0,95.81666667,12.845,0.70325,237.82393256666668 +2014-05-06 01:00:00,0.0,1005.243667,0.0,97.18333333,12.24166667,1.230083333,237.82498521666665 +2014-05-06 02:00:00,0.0,1006.265667,0.0,98.84166667,10.70083333,0.772083333,237.8253361 +2014-05-06 03:00:00,0.0,1006.756333,0.019716667,98.20833333,10.515,0.523666667,237.8253361 +2014-05-06 04:00:00,0.0,1007.456333,8.874191667,95.44166667,9.221666667000001,0.411916667,237.8253361 +2014-05-06 05:00:00,0.0,1008.146333,87.54783333,92.91666667,9.295833333,0.164666667,237.8253361 +2014-05-06 06:00:00,0.0,1008.616667,168.16916669999998,87.825,10.90166667,0.7413333329999999,237.82600449999998 +2014-05-06 07:00:00,0.0,1009.04,135.69441669999998,80.23416667,12.195,1.212083333,237.8253361 +2014-05-06 08:00:00,0.0,1009.3323330000001,87.59333333,74.45083333,13.75666667,1.213083333,237.82700710000003 +2014-05-06 09:00:00,0.0,1009.5823330000001,368.62,67.0925,15.24166667,1.38825,237.82700710000003 +2014-05-06 10:00:00,0.0,1009.766333,382.6783333,67.9725,16.06916667,1.5021666669999998,237.8253361 +2014-05-06 11:00:00,0.0,1009.783667,397.4483333,61.34083333,16.54583333,1.42275,237.8249852166667 +2014-05-06 12:00:00,0.0,1009.924333,533.7908333,55.23,17.33583333,1.35175,237.82358168333334 +2014-05-06 13:00:00,0.0,1010.2239999999999,463.14333330000005,51.61083333,18.12916667,1.68125,237.82076450000005 +2014-05-06 14:00:00,0.0,1010.383,351.0558333,50.14916667,18.62416667,1.0320833329999999,237.82122559999996 +2014-05-06 15:00:00,0.0,1010.267667,248.52333330000002,51.175,18.04416667,0.816916667,237.82122559999996 +2014-05-06 16:00:00,0.0,1010.240667,180.41916669999998,53.03666667,18.44666667,0.81275,237.82155979999996 +2014-05-06 17:00:00,0.0,1010.342,83.84483333,54.59083333,19.25333333,0.6871666670000001,237.82122559999996 +2014-05-06 18:00:00,0.0,1010.465333,72.898,53.83333333,18.58083333,0.803333333,237.82122559999996 +2014-05-06 19:00:00,0.0,1010.831667,29.95358333,62.83666667,18.2975,0.414083333,237.82122559999996 +2014-05-06 20:00:00,0.0,1011.456333,3.1949166669999998,85.58,12.84,0.24225,237.82122559999996 +2014-05-06 21:00:00,0.0,1012.015,0.019716667,95.375,9.518333333,0.123083333,237.82122559999996 +2014-05-06 22:00:00,0.0,1012.4739999999999,0.0,97.99166667,7.647583332999999,0.012833333,237.82155979999996 +2014-05-06 23:00:00,0.0,1012.907333,0.0,99.09166667,6.684666667,0.12516666699999998,237.82122559999996 +2014-06-06 00:00:00,0.0,1013.0989999999999,0.0,99.95833333,5.4110000000000005,0.022666667,237.70442740000001 +2014-06-06 01:00:00,0.0,1013.208333,0.0,100.0,4.578916667,0.0655,237.70616518333335 +2014-06-06 02:00:00,0.0,1013.274333,0.0,100.0,4.289416667,0.067083333,237.70783609999998 +2014-06-06 03:00:00,0.0,1013.440667,0.039433333,100.0,3.658416667,0.092916667,237.70783609999998 +2014-06-06 04:00:00,0.0,1013.774667,11.184425,100.0,3.218916667,0.033,237.7099415 +2014-06-06 05:00:00,0.0,1013.95,83.96675,99.51666667,5.25775,0.0,237.71060986666666 +2014-06-06 06:00:00,0.0,1014.081667,174.3466667,88.375,9.577333333,0.09475,237.7119466 +2014-06-06 07:00:00,0.0,1014.1833330000001,144.2455,83.10583333,11.57583333,0.46225,237.7126484 +2014-06-06 08:00:00,0.0,1013.9760000000001,171.8441667,75.85,14.435,0.8740000000000001,237.714052 +2014-06-06 09:00:00,0.0,1013.95,305.77166669999997,69.23833333,17.41333333,1.0593333329999999,237.70202125000003 +2014-06-06 10:00:00,0.0,1013.776667,410.3108333,58.94333333,19.41833333,1.18775,237.69480283333334 +2014-06-06 11:00:00,0.0,1013.252,516.32,51.8375,21.75333333,1.7425,237.68349061666666 +2014-06-06 12:00:00,0.0,1012.884333,557.2466667,47.7325,22.77083333,1.789166667,237.69104323333332 +2014-06-06 13:00:00,0.0,1012.409667,538.4925,46.31166667,23.59083333,1.851,237.6965573 +2014-06-06 14:00:00,0.0,1012.000667,472.6108333000001,44.99166667,24.4375,1.59275,237.6944519 +2014-06-06 15:00:00,0.0,1011.742667,433.11916669999994,42.57083333,25.0575,1.787333333,237.69378353333335 +2014-06-06 16:00:00,0.0,1011.46,377.3408333,42.69666667,25.56083333,1.416333333,237.69034143333332 +2014-06-06 17:00:00,21.79441349,1010.851667,48.79816667,45.21416667,25.66416667,1.3955,237.69032476666666 +2014-06-06 18:00:00,0.0,1010.766667,29.69341667,46.26083333,25.68166667,0.822416667,237.6876178 +2014-06-06 19:00:00,0.0,1010.849333,25.02208333,67.14333333,24.25416667,0.177,237.6872836 +2014-06-06 20:00:00,0.0,1011.081667,3.7261583330000003,87.75833333,17.18333333,0.065166667,237.687952 +2014-06-06 21:00:00,0.0,1011.632,0.0,93.53333333,13.25,0.06,237.68895460000002 +2014-06-06 22:00:00,0.0,1011.6676669999999,0.0,98.325,11.67083333,0.077,237.6889546 +2014-06-06 23:00:00,0.0,1011.6410000000001,0.0,99.76666667,10.6375,0.03975,237.69104321666669 +2014-07-06 00:00:00,0.0,1011.659,0.0,100.0,9.815833332999999,0.078,237.57564860000005 +2014-07-06 01:00:00,0.0,1011.691,0.0,100.0,9.2425,0.12583333300000002,237.57905730000004 +2014-07-06 02:00:00,0.0,1011.625,0.0,100.0,8.59,0.045333332999999996,237.58144673333334 +2014-07-06 03:00:00,0.0,1011.650667,0.078866667,100.0,8.182,0.054166667,237.58420378333335 +2014-07-06 04:00:00,0.0,1011.7660000000001,11.61638333,100.0,8.035583333,0.021833332999999996,237.58589141666667 +2014-07-06 05:00:00,0.0,1012.048667,73.57583333,99.975,10.13416667,0.0,237.5862256 +2014-07-06 06:00:00,0.0,1012.175,152.0866667,92.55,14.1725,0.199666667,237.588331 +2014-07-06 07:00:00,0.0,1012.2,126.75425,83.84083333,16.31833333,0.550333333,237.5897345333333 +2014-07-06 08:00:00,0.0,1012.208333,46.79383333,71.41833333,19.33166667,0.8460833329999999,237.5904363 +2014-07-06 09:00:00,0.0,1011.967,358.0260833,62.77916667,23.07833333,1.341,237.58453796666666 +2014-07-06 10:00:00,0.0,1011.942,481.18,55.3825,25.225,1.817333333,237.57287483333334 +2014-07-06 11:00:00,0.0,1011.776667,525.455,53.19166667,26.5925,2.103916667,237.56221424999998 +2014-07-06 12:00:00,0.0,1011.665,524.5566666999999,48.42416667,28.17166667,2.51125,237.5563994 +2014-07-06 13:00:00,0.0,1011.543,438.34583330000004,45.57666667,28.47166667,2.890333333,237.55400996666665 +2014-07-06 14:00:00,0.0,1011.400333,393.8083333,44.8375,29.37666667,2.69875,237.55088531666664 +2014-07-06 15:00:00,0.0,1011.4580000000001,264.71666669999996,46.78583333,29.06916667,1.574416667,237.54812829999995 +2014-07-06 16:00:00,0.0,1011.475333,165.1008333,55.38416667,28.66833333,0.57875,237.54677481666667 +2014-07-06 17:00:00,0.0,1011.417333,103.7458333,70.295,27.05166667,0.242083333,237.5453712833333 +2014-07-06 18:00:00,0.0,1011.574333,77.1925,77.71166667,26.88583333,0.37008333299999996,237.54334939999998 +2014-07-06 19:00:00,0.0,1011.673667,25.69,81.93416667,25.69333333,0.36258333299999995,237.54301519999999 +2014-07-06 20:00:00,0.0,1012.04,3.4706583330000003,88.975,19.8725,0.041333333,237.54401779999998 +2014-07-06 21:00:00,0.0,1012.408,0.0,95.54166667,16.51583333,0.1195,237.54401779999998 +2014-07-06 22:00:00,0.0,1012.84,0.0,98.98333333,14.63833333,0.15558333300000002,237.5487967 +2014-07-06 23:00:00,0.0,1012.832667,0.0,99.98333333,13.4,0.06875,237.55297398333332 +2014-08-06 00:00:00,0.0,1012.9333330000001,0.0,100.0,13.52166667,0.227166667,237.4729363 +2014-08-06 01:00:00,0.0,1013.0010000000001,0.0,100.0,12.6025,0.083333333,237.47190031666665 +2014-08-06 02:00:00,0.0,1012.891667,0.0,100.0,11.81083333,0.105333333,237.4691599833333 +2014-08-06 03:00:00,0.0,1012.758333,0.039433333,100.0,11.35083333,0.0465,237.46882580000002 +2014-08-06 04:00:00,0.0,1012.857333,8.243841667,100.0,10.97833333,0.07075,237.46847490000002 +2014-08-06 05:00:00,0.0,1013.282333,53.7215,100.0,12.58916667,0.002333333,237.46707130000001 +2014-08-06 06:00:00,0.0,1013.475,145.95583330000002,93.98333333,16.125,0.20075,237.46707130000001 +2014-08-06 07:00:00,0.0,1013.6410000000001,138.32,85.85,18.91083333,0.978666667,237.46777309999996 +2014-08-06 08:00:00,0.0,1013.915667,72.56666667,77.805,22.27333333,0.9225,237.4674222 +2014-08-06 09:00:00,0.0,1013.916667,339.2841667,70.01666667,25.57333333,1.126916667,237.468124 +2014-08-06 10:00:00,0.0,1014.024667,447.5741666999999,60.25,27.74916667,1.402916667,237.46672041666667 +2014-08-06 11:00:00,0.0,1014.108333,497.4725,58.05166667,29.14,1.67425,237.46566774999997 +2014-08-06 12:00:00,0.0,1013.9093330000001,485.8,54.795,30.0325,1.716,237.46361249999998 +2014-08-06 13:00:00,0.0,1013.717,502.4425,45.76,31.09666667,1.2435,237.4619081333333 +2014-08-06 14:00:00,0.0,1013.525667,472.7041666999999,44.64,31.78583333,1.1205,237.45950199999996 +2014-08-06 15:00:00,0.0,1013.317667,415.2925,44.96833333,31.98916667,1.2555,237.45849939999997 +2014-08-06 16:00:00,0.0,1013.134333,344.9716667,40.8375,32.60166667,0.6875,237.45639410000004 +2014-08-06 17:00:00,0.0,1012.6593330000001,62.3525,41.29666667,31.8075,1.08175,237.4547231 +2014-08-06 18:00:00,0.0,1012.690333,35.01925,55.12833333,31.51916667,0.35183333299999997,237.45333625 +2014-08-06 19:00:00,0.0,1012.908333,27.16816667,74.7325,28.26,0.38733333299999995,237.4515818 +2014-08-06 20:00:00,0.0,1013.230667,4.200175,85.86666667,23.22083333,0.502916667,237.45017819999995 +2014-08-06 21:00:00,0.0,1013.724667,0.019716667,93.925,20.00666667,0.15366666699999998,237.45017819999995 +2014-08-06 22:00:00,0.0,1013.923667,0.0,98.775,17.90833333,0.113416667,237.44917565 +2014-08-06 23:00:00,0.0,1014.033333,0.0,100.0,16.505,0.112166667,237.44884146666666 +2014-09-06 00:00:00,0.0,1013.768333,0.0,100.0,15.83083333,0.091416667,237.81413080000002 +2014-09-06 01:00:00,0.0,1013.725667,0.0,100.0,15.5075,0.092916667,237.81379661666668 +2014-09-06 02:00:00,0.0,1013.674333,0.0,100.0,15.28166667,0.230083333,237.81346243333334 +2014-09-06 03:00:00,0.0,1013.541667,0.05915,100.0,15.1825,0.065333333,237.81413080000002 +2014-09-06 04:00:00,0.0,1013.758,7.888708332999999,100.0,14.4875,0.208166667,237.81379661666665 +2014-09-06 05:00:00,0.0,1013.807,68.768,100.0,16.52583333,0.107,237.81379661666665 +2014-09-06 06:00:00,0.0,1014.183,144.2525,94.24166667,18.9725,1.553916667,237.8121257 +2014-09-06 07:00:00,0.0,1014.483333,130.56166670000002,85.575,20.735,2.20475,237.8121257 +2014-09-06 08:00:00,0.0,1014.541,71.32416667,80.53583333,22.64583333,2.460083333,237.81279406666667 +2014-09-06 09:00:00,0.0,1014.235333,340.2875,74.28416667,24.49833333,2.437333333,237.81312824999998 +2014-09-06 10:00:00,0.0,1013.833333,455.385,67.0975,26.8925,1.8728333330000002,237.81379661666665 +2014-09-06 11:00:00,0.0,1013.826,493.72166669999996,60.28166667,29.0275,1.166166667,237.81279406666667 +2014-09-06 12:00:00,0.0,1013.4093330000001,501.375,54.905,30.67833333,0.88725,237.81177479999997 +2014-09-06 13:00:00,0.0,1013.025667,504.63,55.09916667,31.515,1.22875,237.81072210000002 +2014-09-06 14:00:00,0.0,1012.977,466.8475,52.60083333,32.2225,1.385083333,237.8100203 +2014-09-06 15:00:00,0.0,1012.151667,411.22083330000004,48.44916667,32.87166667,1.1025833329999999,237.80791490000001 +2014-09-06 16:00:00,0.0,1011.602667,326.08916669999996,49.9775,32.98416667,1.232666667,237.8065781666667 +2014-09-06 17:00:00,0.0,1010.959333,94.74616667,50.92333333,32.79833333,1.034333333,237.80555890000005 +2014-09-06 18:00:00,0.0,1010.81,40.22491667,55.1925,32.22833333,0.939083333,237.80415530000002 +2014-09-06 19:00:00,0.0,1010.873333,10.588375,78.53416667,27.16416667,0.18466666699999998,237.80380440000002 +2014-09-06 20:00:00,0.0,1011.447,3.174441667,91.53333333,21.66583333,0.168166667,237.80347021666668 +2014-09-06 21:00:00,0.0,1012.263,0.0,91.75666667,20.9025,0.6010833329999999,237.80380440000002 +2014-09-06 22:00:00,16.3968499,1013.131667,0.0,85.65583333,22.685,2.524333333,237.80380440000002 +2014-09-06 23:00:00,2.648229504,1013.2589999999999,0.0,99.98333333,18.66416667,0.505083333,237.80179930000006 +2014-10-06 00:00:00,2.418878592,1013.65,0.0,100.0,18.00333333,0.850916667, +2014-10-06 01:00:00,0.0,1012.884667,0.0,98.36666667,19.1175,1.52575, +2014-10-06 02:00:00,0.0,1012.600667,0.0,95.00833333,18.40166667,1.130083333, +2014-10-06 03:00:00,2.9647714080000003,1012.5260000000001,0.019716667,99.84166667,17.3525,1.0889166670000001, +2014-10-06 04:00:00,0.0,1012.464667,6.251233332999999,100.0,15.8225,0.409583333, +2014-10-06 05:00:00,0.0,1013.24,62.65233333,100.0,16.37583333,0.066833333, +2014-10-06 06:00:00,2.57737512,1013.890333,98.5075,98.53333333,19.15083333,0.3535, +2014-10-06 07:00:00,0.0,1014.214333,121.42666670000001,86.94166667,21.01833333,0.29383333300000003, +2014-10-06 08:00:00,0.0,1014.195333,155.9425,80.56666667,22.01333333,1.9861666669999998, +2014-10-06 09:00:00,0.0,1014.767667,206.31916669999998,80.8675,22.49916667,1.339666667, +2014-10-06 10:00:00,2.558258232,1015.228333,180.5941667,79.8075,23.52083333,0.709666667, +2014-10-06 11:00:00,0.0,1014.317667,287.58916669999996,77.025,24.8625,1.5781666669999999, +2014-10-06 12:00:00,0.0,1014.109333,445.5325,69.87083333,26.83333333,1.08575, +2014-10-06 13:00:00,0.0,1014.0010000000001,468.5625,64.93333333,28.775,1.003833333, +2014-10-06 14:00:00,0.0,1013.857667,454.25333330000007,64.22416667,30.05416667,0.946416667, +2014-10-06 15:00:00,2.8259174639999998,1013.792333,407.5341667,54.98583333,31.06666667,1.488833333, +2014-10-06 16:00:00,0.0,1013.384667,251.06666669999998,57.82083333,31.6375,0.805083333, +2014-10-06 17:00:00,0.0,1013.408,136.115,67.95,31.36416667,0.69425, +2014-10-06 18:00:00,0.0,1014.029667,50.6555,75.60416667,28.00166667,0.5115, +2014-10-06 19:00:00,0.0,1014.3083330000001,19.18466667,66.57333333,26.7525,2.74775, +2014-10-06 20:00:00,0.0,1015.295333,3.154958333,74.52916667,25.29583333,2.39225, +2014-10-06 21:00:00,0.0,1016.175,0.0,90.775,23.2675,1.0815, +2014-10-06 22:00:00,0.0,1016.139667,0.0,85.425,21.78333333,0.68875, +2014-10-06 23:00:00,0.0,1016.451667,0.0,94.04166667,20.43333333,0.782416667, +2014-11-06 00:00:00,0.0,1016.216667,0.0,99.79166667,19.11166667,0.243333333,237.9402525 +2014-11-06 01:00:00,0.0,1015.7260000000001,0.0,100.0,17.61083333,0.141666667,237.9402525 +2014-11-06 02:00:00,0.0,1016.345667,0.0,100.0,17.4075,0.17300000000000001,237.94091916666665 +2014-11-06 03:00:00,0.0,1017.032333,0.019716667,100.0,18.59583333,0.194166667,237.9409191666667 +2014-11-06 04:00:00,0.0,1017.789667,3.293383333,96.45,19.03916667,0.5025,237.9402525 +2014-11-06 05:00:00,0.0,1017.692667,2.563691667,96.15833333,20.07833333,1.9135,237.9402525 +2014-11-06 06:00:00,0.0,1019.175667,0.453483333,99.26666667,18.66833333,1.8546666669999998,237.94058583333333 +2014-11-06 07:00:00,2.874298488,1019.222333,4.515758333,100.0,17.07166667,1.40025,237.9422525 +2014-11-06 08:00:00,0.0,1018.697,52.09925,100.0,16.96916667,1.85925,237.9422525 +2014-11-06 09:00:00,0.0,1019.091667,156.9464167,98.45833333,17.74583333,1.337583333,237.9422525 +2014-11-06 10:00:00,3.074811864,1019.398667,380.4091667,90.31666667,20.06583333,2.624166667,237.9426025 +2014-11-06 11:00:00,3.2674750560000003,1019.533333,505.6975,81.91083333,21.79166667,2.32775,237.94365249999996 +2014-11-06 12:00:00,2.6066675040000002,1019.7239999999999,271.8566667,78.79583333,23.50833333,1.221083333,237.94365249999996 +2014-11-06 13:00:00,0.0,1019.841,454.28833330000003,70.3675,24.64666667,0.791666667,237.94435249999995 +2014-11-06 14:00:00,0.0,1019.958333,395.1616667,72.30416667,24.03916667,1.9196666669999998,237.94435249999995 +2014-11-06 15:00:00,3.1655468160000004,1019.824667,159.66416669999998,77.92166667,24.62416667,1.053833333,237.9446858333333 +2014-11-06 16:00:00,0.0,1020.166333,95.58033333,79.72166667,24.46,1.422333333,237.9446858333333 +2014-11-06 17:00:00,0.0,1020.1,92.70916667,81.32916667,23.47666667,1.50075,237.94635250000002 +2014-11-06 18:00:00,0.0,1020.464333,45.18966667,75.42,22.6375,1.8180833330000001,237.94601916666667 +2014-11-06 19:00:00,0.0,1021.157333,26.06683333,78.59833333,21.71916667,1.5228333330000001,237.94535249999998 +2014-11-06 20:00:00,0.0,1021.514667,2.878866667,84.60583333,20.78083333,1.267833333,237.94501916666664 +2014-11-06 21:00:00,0.0,1021.949667,0.0,84.09083333,19.36333333,1.4444166669999998,237.94635250000002 +2014-11-06 22:00:00,0.0,1022.148333,0.0,97.88333333,16.67833333,0.230583333,237.94635250000002 +2014-11-06 23:00:00,0.0,1022.508,0.0,99.98333333,14.7525,0.139916667,237.94635250000002 +2014-12-06 00:00:00,0.0,1022.392333,0.0,100.0,13.89916667,0.151,237.88370250000003 +2014-12-06 01:00:00,0.0,1021.959,0.0,100.0,13.37833333,0.179166667,237.88405249999997 +2014-12-06 02:00:00,0.0,1021.8510000000001,0.0,100.0,12.92166667,0.1535,237.88405249999997 +2014-12-06 03:00:00,0.0,1021.825,0.157733333,100.0,12.17416667,0.03075,237.88475250000002 +2014-12-06 04:00:00,0.0,1021.808,9.604291667,100.0,11.7725,0.08691666699999999,237.88580249999998 +2014-12-06 05:00:00,0.0,1022.140333,63.16975,100.0,13.28666667,0.01625,237.88580249999998 +2014-12-06 06:00:00,0.0,1022.4656669999999,138.9325,93.7,15.41083333,0.42275,237.88580250000004 +2014-12-06 07:00:00,0.0,1022.740667,139.0958333,86.15833333,17.185,1.851666667,237.8868525 +2014-12-06 08:00:00,0.0,1022.742667,95.655,82.18083333,18.36166667,2.304583333,237.88718583333332 +2014-12-06 09:00:00,0.0,1022.418333,303.1291667,76.93333333,19.9575,2.32575,237.8878525 +2014-12-06 10:00:00,3.647212512,1022.107667,356.125,71.55666667,20.98833333,2.52175,237.88920249999998 +2014-12-06 11:00:00,0.0,1021.843333,541.6366667000001,65.23666667,22.1175,1.73225,237.89093583333332 +2014-12-06 12:00:00,0.0,1021.443667,481.12166669999993,61.6525,22.84666667,1.7170833330000002,237.89605250000002 +2014-12-06 13:00:00,0.0,1021.1593330000001,424.585,58.0425,23.53666667,1.5765,237.90185250000002 +2014-12-06 14:00:00,0.0,1020.726667,534.065,55.21916667,23.96,1.649583333,237.90460249999998 +2014-12-06 15:00:00,0.0,1020.209333,365.645,53.62333333,24.13833333,1.395083333,237.91283583333333 +2014-12-06 16:00:00,0.0,1019.669333,308.1925,53.26083333,24.66666667,1.208083333,237.91078583333334 +2014-12-06 17:00:00,0.0,1019.143333,57.19583333,59.37833333,24.37166667,1.807,237.91863583333335 +2014-12-06 18:00:00,0.0,1018.990667,48.3105,62.5025,23.16666667,2.47675,237.9279025 +2014-12-06 19:00:00,0.0,1019.191,18.83116667,69.74333333,20.92916667,2.7433333330000003,237.9344025 +2014-12-06 20:00:00,0.0,1019.623,4.674075,75.25,19.37833333,2.1535833330000003,237.94021916666668 +2014-12-06 21:00:00,0.0,1020.073333,0.05915,90.94166667,17.04916667,1.036583333,237.95053583333333 +2014-12-06 22:00:00,0.0,1020.242667,0.0,96.78333333,13.355,0.09425,237.96043583333332 +2014-12-06 23:00:00,0.0,1020.25,0.0,99.20833333,11.97583333,0.134583333,237.9679858333333 +2014-06-13 00:00:00,0.0,1019.884333,0.0,99.94166667,11.08166667,0.13825,238.02858843333334 +2014-06-13 01:00:00,0.0,1019.476667,0.0,100.0,10.15333333,0.065833333,238.0258481666667 +2014-06-13 02:00:00,0.0,1019.001667,0.0,100.0,9.3975,0.18733333300000002,238.02243943333335 +2014-06-13 03:00:00,0.0,1018.925,0.05915,100.0,8.94,0.05175,238.0190140166667 +2014-06-13 04:00:00,0.0,1018.6669999999999,9.762141667,100.0,8.229166667000001,0.04075,238.01657450000005 +2014-06-13 05:00:00,0.0,1018.699667,81.94083333,99.61666667,10.23166667,0.0,238.01381745 +2014-06-13 06:00:00,0.0,1018.692,159.8041667,92.175,14.13666667,0.124833333,238.01141130000005 +2014-06-13 07:00:00,0.0,1018.667333,131.07208329999997,77.96833333,16.47916667,0.511916667,238.00903858333334 +2014-06-13 08:00:00,0.0,1018.459333,56.81725,68.75666667,18.21583333,0.6476666670000001,238.00694990000002 +2014-06-13 09:00:00,0.0,1018.1833330000001,283.47083330000004,62.69166667,20.4025,0.8035,238.0052622666667 +2014-06-13 10:00:00,0.0,1017.6610000000001,493.8266666999999,59.3675,20.5025,1.272,238.00215431666666 +2014-06-13 11:00:00,0.0,1017.076333,454.9475,55.52166667,21.28333333,1.63075,237.99737545000002 +2014-06-13 12:00:00,3.7809302160000002,1016.552,503.6325,54.03916667,22.4625,2.6455,237.9946184 +2014-06-13 13:00:00,0.0,1016.076667,456.53416669999996,51.8225,22.99333333,2.4948333330000003,237.99115955 +2014-06-13 14:00:00,0.0,1015.585,548.065,46.63916667,22.94916667,2.943666667,237.9884025 +2014-06-13 15:00:00,0.0,1015.243,386.8025,50.2475,22.87416667,3.203583333,237.98430871666665 +2014-06-13 16:00:00,0.0,1015.1080000000001,112.56583329999998,55.9075,21.325,3.395,237.981936 +2014-06-13 17:00:00,0.0,1015.0260000000001,117.29666670000002,58.4225,20.7475,3.453583333,237.9791622333333 +2014-06-13 18:00:00,0.0,1014.990667,63.57166667,63.27333333,19.89,2.970416667,237.9771237 +2014-06-13 19:00:00,0.0,1015.075667,30.506,65.82666667,18.91916667,2.0665,237.9733641 +2014-06-13 20:00:00,0.0,1015.007667,5.3641,76.605,16.71,1.0576666670000001,237.97125871666665 +2014-06-13 21:00:00,0.0,1015.208333,0.039433333,92.16666667,14.31916667,0.4825,237.9695043 +2014-06-13 22:00:00,0.0,1015.024667,0.0,97.03333333,12.65583333,0.111666667,237.96850175 +2014-06-13 23:00:00,0.0,1015.075333,0.0,99.56666667,12.04,0.072166667,237.96679740000005 +2014-06-14 00:00:00,0.0,1014.876667,0.0,99.96666667,12.15333333,0.041916667000000005,237.96472543333334 +2014-06-14 01:00:00,0.0,1014.791,0.0,99.69166667,11.6925,0.0875,237.96372288333336 +2014-06-14 02:00:00,0.0,1014.517667,0.0,100.0,11.10666667,0.10875,237.96200181666669 +2014-06-14 03:00:00,0.0,1014.275667,0.09858333300000001,100.0,10.55583333,0.194416667,237.95927819999997 +2014-06-14 04:00:00,0.0,1014.383333,9.032391667,100.0,10.90833333,0.5950833329999999,237.95822550000003 +2014-06-14 05:00:00,0.0,1014.598333,21.79158333,100.0,12.7075,1.27325,237.95717280000005 +2014-06-14 06:00:00,0.0,1014.915667,60.31083333,91.68333333,13.44833333,1.975916667,237.95617024999999 +2014-06-14 07:00:00,0.0,1015.075,124.34333329999998,77.59416667,14.36833333,2.504833333,237.95516769999998 +2014-06-14 08:00:00,0.0,1015.2156669999999,158.83,67.8675,14.87416667,2.2286666669999997,237.95446589999997 +2014-06-14 09:00:00,0.0,1015.176333,262.89666669999997,63.68916667,15.77583333,1.673583333,237.9520096 +2014-06-14 10:00:00,0.0,1015.099667,216.4575,64.60583333,16.08083333,1.968666667,237.94962016666668 +2014-06-14 11:00:00,0.0,1015.158333,131.9208333,67.75833333,15.815,1.92475,237.9478991 +2014-06-14 12:00:00,0.0,1015.174667,152.2558333,68.32,16.39083333,1.7908333330000001,237.94651221666672 +2014-06-14 13:00:00,0.0,1015.258333,219.6308333,63.59583333,16.62416667,2.617416667,237.9448413 +2014-06-14 14:00:00,0.0,1015.307667,198.4325,60.99833333,16.81333333,1.935,237.94308680000003 +2014-06-14 15:00:00,0.0,1015.1593330000001,285.0166667,59.9075,17.41083333,1.708083333,237.94173335000002 +2014-06-14 16:00:00,0.0,1015.034,88.23616667,67.26083333,16.92166667,1.9315,237.93832465 +2014-06-14 17:00:00,0.0,1014.800333,105.74141670000002,64.50833333,17.95166667,2.6230833330000003,237.9366203 +2014-06-14 18:00:00,0.0,1014.675,46.74075,70.43166667,17.40333333,2.2515,237.9355676 +2014-06-14 19:00:00,0.0,1015.098667,32.38316667,73.1425,16.5,2.0925833330000003,237.9338465333333 +2014-06-14 20:00:00,0.0,1015.481667,6.862508332999999,83.0975,14.915,1.292666667,237.93145710000002 +2014-06-14 21:00:00,0.0,1016.106667,0.078866667,96.7,11.71916667,0.037833333,237.92970263333336 +2014-06-14 22:00:00,0.0,1016.539667,0.0,99.59166667,9.768333333,0.082333333,237.9282991 +2014-06-14 23:00:00,0.0,1016.741333,0.0,100.0,8.8825,0.18683333300000002,237.92522456666666 +2014-06-15 00:00:00,0.0,1016.833333,0.0,100.0,8.0505,0.052166667,237.9241886 +2014-06-15 01:00:00,0.0,1016.941333,0.0,100.0,7.760666667000001,0.19275,237.92218340000002 +2014-06-15 02:00:00,0.0,1016.9,0.0,100.0,7.13525,0.0445,237.92183251666668 +2014-06-15 03:00:00,0.0,1016.834,0.078866667,100.0,6.863083333,0.256083333,237.92007809999998 +2014-06-15 04:00:00,0.0,1017.023333,12.0897,100.0,6.764416667000001,0.01675,237.9190755 +2014-06-15 05:00:00,0.0,1017.407333,85.00158333,99.725,9.061916667,0.00575,237.9180729 +2014-06-15 06:00:00,0.0,1017.6080000000001,165.5616667,91.275,13.30333333,0.309583333,237.91703693333332 +2014-06-15 07:00:00,0.0,1017.75,132.3869167,88.475,13.88666667,2.807083333,237.91396239999997 +2014-06-15 08:00:00,0.0,1017.791,60.32716667,81.6625,15.39416667,2.2655,237.91396239999997 +2014-06-15 09:00:00,0.0,1017.891667,396.5791667,73.18083333,17.16333333,1.9245,237.91220798333333 +2014-06-15 10:00:00,0.0,1017.6676669999999,245.63,67.29166667,18.03583333,2.325416667,237.9104535 +2014-06-15 11:00:00,0.0,1017.600667,335.7433333,69.085,18.4525,2.448583333,237.90841496666667 +2014-06-15 12:00:00,0.0,1017.391667,370.3058333,66.61083333,19.065,3.1350833330000003,237.90669390000002 +2014-06-15 13:00:00,0.0,1017.176333,481.75166669999993,58.93,19.45333333,3.025833333,237.90430446666667 +2014-06-15 14:00:00,0.0,1016.975,475.6733333000001,57.985,19.73833333,2.913333333,237.9018816 +2014-06-15 15:00:00,0.0,1016.659667,276.3308333,57.39833333,19.79166667,2.7951666669999997,237.89847289999997 +2014-06-15 16:00:00,0.0,1016.400333,286.1891667,55.90666667,20.105,3.250916667,237.8954151 +2014-06-15 17:00:00,0.0,1016.284,157.48833330000002,55.86916667,20.2625,2.672333333,237.89297551666667 +2014-06-15 18:00:00,0.0,1016.217,31.86516667,61.92416667,19.50333333,1.97625,237.89095370000004 +2014-06-15 19:00:00,0.0,1016.266667,22.344,73.28166667,18.47,1.581083333,237.88919919999998 +2014-06-15 20:00:00,0.0,1016.4896669999999,6.567341667000001,88.83333333,15.2775,0.504833333,237.8870938 +2014-06-15 21:00:00,0.0,1017.172333,0.05915,95.44166667,11.20166667,0.094583333,237.88575706666668 +2014-06-15 22:00:00,0.0,1017.425667,0.0,97.80833333,9.760833332999999,0.097416667,237.8850887 +2014-06-15 23:00:00,0.0,1017.475333,0.0,99.21666667,8.79,0.168083333,237.88264911666667 +2014-06-16 00:00:00,0.0,1017.4,0.0,100.0,8.206666667,0.093083333,237.88097819999993 +2014-06-16 01:00:00,0.0,1017.275667,0.0,100.0,7.592583332999999,0.026416667,237.88062729999993 +2014-06-16 02:00:00,0.0,1017.2660000000001,0.0,100.0,7.15525,0.054083333,237.87922369999998 +2014-06-16 03:00:00,0.0,1017.267333,0.078866667,100.0,7.128916667,0.12708333300000002,237.87853861666667 +2014-06-16 04:00:00,0.0,1017.059333,10.13745833,100.0,6.991083333,0.021166667000000004,237.87753606666664 +2014-06-16 05:00:00,0.0,1017.256333,80.46208333,99.40833333,9.0095,0.00275,237.87616593333328 +2014-06-16 06:00:00,0.0,1017.192667,152.58833330000002,90.5,13.2525,0.288833333,237.87476239999998 +2014-06-16 07:00:00,0.0,1017.216,166.8858333,83.54333333,14.30833333,1.299916667,237.87476239999998 +2014-06-16 08:00:00,0.0,1017.134333,133.945,78.6775,15.81583333,1.607083333,237.87476239999998 +2014-06-16 09:00:00,0.0,1016.818,269.54083330000003,75.76333333,17.1125,1.7783333330000002,237.8730914 +2014-06-16 10:00:00,0.0,1016.508667,350.8283333,70.24416667,18.3875,1.400333333,237.8727572 +2014-06-16 11:00:00,0.0,1016.143333,425.78666669999996,62.85416667,18.76,2.35775,237.870301 +2014-06-16 12:00:00,0.0,1016.091667,465.66916669999995,63.91583333,19.29416667,3.318,237.86821231666661 +2014-06-16 13:00:00,0.0,1015.967667,481.83333330000005,63.22666667,18.89166667,3.601666667,237.8641185333333 +2014-06-16 14:00:00,0.0,1015.600333,421.62166669999993,58.71083333,18.77166667,3.108916667,237.86172910000002 +2014-06-16 15:00:00,0.0,1015.209667,326.96416669999996,56.4325,19.05,2.993083333,237.85999131666665 +2014-06-16 16:00:00,0.0,1015.291667,159.4366667,62.95,17.93416667,3.558333333,237.8583204 +2014-06-16 17:00:00,0.0,1015.175333,118.04916670000001,65.975,17.56166667,3.096833333,237.856215 +2014-06-16 18:00:00,0.0,1015.174667,75.30541667,70.215,16.79166667,2.7255,237.85588081666666 +2014-06-16 19:00:00,0.0,1015.1916669999999,23.31058333,74.54083333,16.03,2.281583333,237.8521045 +2014-06-16 20:00:00,0.0,1015.25,4.101941667,80.655,15.23083333,2.128833333,237.8521045 +2014-06-16 21:00:00,0.0,1015.407667,0.05915,88.14166667,14.69833333,0.90675,237.8521045 +2014-06-16 22:00:00,0.0,1015.474667,0.0,93.425,14.23083333,0.418,237.8517703166667 +2014-06-16 23:00:00,0.0,1015.317,0.0,93.13333333,13.82416667,0.256916667,237.85110195000001 +2014-06-17 00:00:00,0.0,1015.524333,0.0,92.78333333,14.04,0.49441666700000003,237.85043358333334 +2014-06-17 01:00:00,0.0,1015.5419999999999,0.0,96.10833333,13.74583333,0.511916667,237.85043358333334 +2014-06-17 02:00:00,0.0,1015.533667,0.0,97.6,13.30333333,0.304333333,237.8483449 +2014-06-17 03:00:00,0.0,1015.383333,0.039433333,99.33333333,13.06,0.47333333299999997,237.847994 +2014-06-17 04:00:00,0.0,1015.6239999999999,4.910558333,93.64166667,13.02416667,1.03,237.847994 +2014-06-17 05:00:00,0.0,1016.015,38.49883333,90.80833333,12.74,1.0576666670000001,237.847994 +2014-06-17 06:00:00,0.0,1016.448667,128.9866667,85.89166667,13.42666667,1.60525,237.847994 +2014-06-17 07:00:00,0.0,1016.915,136.55833330000002,78.60083333,14.3675,2.635416667,237.847994 +2014-06-17 08:00:00,0.0,1017.141667,72.64833333,75.54833333,15.11583333,2.5675,237.8472922 +2014-06-17 09:00:00,0.0,1017.166667,355.7983333,72.6225,15.97083333,2.148333333,237.8442176833333 +2014-06-17 10:00:00,0.0,1016.9176669999999,458.82083330000006,67.22166667,17.51416667,2.105083333,237.84388349999998 +2014-06-17 11:00:00,0.0,1016.592667,285.39,63.4975,18.79416667,1.7815,237.84144391666666 +2014-06-17 12:00:00,0.0,1016.483667,553.3208333,55.96,18.8475,1.5703333330000002,237.839773 +2014-06-17 13:00:00,0.0,1016.176333,311.8033333,60.07833333,19.79333333,2.7489999999999997,237.83596325 +2014-06-17 14:00:00,0.0,1016.232667,348.2733333,62.125,19.30583333,3.508416667,237.83288873333336 +2014-06-17 15:00:00,0.0,1015.876667,388.29,62.12833333,19.26,3.671166667,237.83155200000002 +2014-06-17 16:00:00,0.0,1015.525667,294.9391667,59.17,19.9075,3.6425,237.8294466 +2014-06-17 17:00:00,0.0,1015.31,130.1183333,59.13583333,19.72,3.0735,237.82804306666665 +2014-06-17 18:00:00,0.0,1015.084,32.91225,59.64416667,19.6725,2.052833333,237.82633869999998 +2014-06-17 19:00:00,0.0,1015.049,10.09691667,82.00916667,16.37,0.68475,237.8253361 +2014-06-17 20:00:00,0.0,1015.390333,2.8989916669999998,94.9,13.25333333,0.137583333,237.82428345000002 +2014-06-17 21:00:00,0.0,1015.898333,0.078866667,95.71666667,11.60916667,0.241083333,237.82155979999996 +2014-06-17 22:00:00,0.0,1016.025,0.0,98.75833333,10.0225,0.039916667,237.82122559999996 +2014-06-17 23:00:00,0.0,1016.025,0.0,99.99166667,9.4725,0.0525,237.82122559999996 +2014-06-18 00:00:00,0.0,1016.166,0.0,100.0,9.0075,0.065083333,237.82155979999996 +2014-06-18 01:00:00,0.0,1015.993333,0.0,100.0,8.64,0.093666667,237.82189400000001 +2014-06-18 02:00:00,0.0,1015.924,0.0,100.0,8.209083332999999,0.043333332999999995,237.82120891666668 +2014-06-18 03:00:00,0.0,1015.999333,0.039433333,100.0,7.358,0.05675,237.81947118333338 +2014-06-18 04:00:00,0.0,1016.199667,7.96705,100.0,7.122416667,0.039916667,237.81982206666666 +2014-06-18 05:00:00,0.0,1016.548667,67.30441667,100.0,9.02875,0.012,237.81947118333335 +2014-06-18 06:00:00,0.0,1016.881333,148.3475,94.53333333,13.915,0.098166667,237.81982206666666 +2014-06-18 07:00:00,0.0,1017.116667,139.2533333,85.00833333,15.32916667,1.585083333,237.82017295 +2014-06-18 08:00:00,0.0,1017.366333,80.26666667,80.2575,16.70583333,2.6715,237.82087471666668 +2014-06-18 09:00:00,0.0,1017.193,349.4283333,76.245,18.30416667,2.0379166669999997,237.81912030000004 +2014-06-18 10:00:00,0.0,1016.875667,537.2383332999999,66.01083333,20.30833333,1.14825,237.81741595000003 +2014-06-18 11:00:00,0.0,1016.626333,482.1366666999999,58.23833333,21.80166667,1.257916667,237.81333888333333 +2014-06-18 12:00:00,0.0,1016.134667,261.2983333,55.98,22.365,1.4861666669999998,237.81160110000005 +2014-06-18 13:00:00,0.0,1015.817,461.21833330000004,53.99666667,23.13,1.436833333,237.80949569999999 +2014-06-18 14:00:00,0.0,1015.6676669999999,230.3175,55.35333333,22.5925,2.86375,237.8074571666667 +2014-06-18 15:00:00,0.0,1015.4760000000001,366.73,51.41333333,22.52833333,2.140083333,237.80538520000002 +2014-06-18 16:00:00,0.0,1014.951,244.7141667,56.11333333,22.13833333,2.124333333,237.8033466666667 +2014-06-18 17:00:00,0.0,1014.584667,189.46083330000002,56.515,21.96416667,1.9778333330000002,237.80164231666672 +2014-06-18 18:00:00,0.0,1014.65,79.89858333,58.69583333,21.20333333,2.548666667,237.79821690000003 +2014-06-18 19:00:00,0.0,1014.740667,34.8985,65.86916667,19.75333333,2.194833333,237.79646240000002 +2014-06-18 20:00:00,0.0,1015.048667,6.211041667000001,79.39083333,17.20916667,1.039666667,237.7961282166667 +2014-06-18 21:00:00,0.0,1015.706333,0.05915,93.825,14.71833333,1.000083333,237.79545985000004 +2014-06-18 22:00:00,0.0,1015.908333,0.0,97.2,13.09166667,0.290916667,237.79579403333332 +2014-06-18 23:00:00,0.0,1015.999667,0.0,98.44166667,10.94416667,0.056833333,237.7961282166667 +2014-06-19 00:00:00,0.0,1016.025,0.0,99.95833333,9.839166667,0.079166667,237.7944573 +2014-06-19 01:00:00,0.0,1015.759667,0.0,100.0,9.110833332999999,0.16025,237.7944573 +2014-06-19 02:00:00,0.0,1015.608333,0.0,100.0,9.064166667,0.10441666699999999,237.7944573 +2014-06-19 03:00:00,0.0,1015.3430000000001,0.1183,100.0,8.541666667000001,0.024833333,237.79545985000004 +2014-06-19 04:00:00,0.0,1015.158667,6.2118583329999995,100.0,7.82,0.021,237.79646240000002 +2014-06-19 05:00:00,0.0,1015.191333,35.28116667,100.0,9.078666667,0.030083332999999997,237.79646240000002 +2014-06-19 06:00:00,0.0,1015.25,80.34716667,99.54166667,12.7025,0.10516666699999999,237.79545984999996 +2014-06-19 07:00:00,0.0,1015.399333,142.56666669999998,88.7,14.7275,1.154833333,237.79545985000004 +2014-06-19 08:00:00,0.0,1015.549333,121.91666670000001,84.15,14.95666667,2.96375,237.79646240000002 +2014-06-19 09:00:00,0.0,1015.658,190.9425,75.73083333,15.2,2.891833333,237.79479148333334 +2014-06-19 10:00:00,0.0,1015.335,233.1875,73.00416667,15.3275,2.617333333,237.79305369999997 +2014-06-19 11:00:00,0.0,1015.067667,375.9175,71.67333333,16.12916667,1.8631666669999998,237.79201771666666 +2014-06-19 12:00:00,0.0,1014.925333,330.6975,68.96833333,16.595,2.3205,237.79034680000004 +2014-06-19 13:00:00,0.0,1014.825,337.435,65.215,17.65166667,3.147583333,237.78650361666666 +2014-06-19 14:00:00,0.0,1014.5103330000001,274.1433333,67.45166667,17.09083333,3.7341666669999998,237.7841309 +2014-06-19 15:00:00,0.0,1014.059667,391.475,66.6425,17.9275,2.04275,237.78237648333334 +2014-06-19 16:00:00,0.0,1013.583667,141.365,69.97583333,17.46166667,2.56225,237.7806888 +2014-06-19 17:00:00,0.0,1013.3760000000001,109.68416670000002,71.95,16.90583333,3.326166667,237.78002039999998 +2014-06-19 18:00:00,0.0,1013.342333,43.93783333,73.98416667,16.31916667,3.4579166669999997,237.77861686666665 +2014-06-19 19:00:00,3.474192912,1013.424333,10.19666667,83.39166667,15.03583333,2.09425,237.7779151 +2014-06-19 20:00:00,0.0,1013.292333,4.12195,92.4,14.19,0.932666667,237.77724669999998 +2014-06-19 21:00:00,0.0,1013.383333,0.039433333,91.59166667,14.0675,1.38975,237.77691249999998 +2014-06-19 22:00:00,0.0,1013.4573330000001,0.0,91.125,13.99083333,1.5090000000000001,237.7779151 +2014-06-19 23:00:00,0.0,1013.582667,0.0,90.11666667,14.03416667,1.6166666669999998,237.7779151 +2014-06-20 00:00:00,0.0,1013.426,0.0,87.9,13.7275,1.5899166669999998,237.7779151 +2014-06-20 01:00:00,0.0,1013.300667,0.0,89.95833333,12.71333333,1.36975,237.7779151 +2014-06-20 02:00:00,0.0,1013.084333,0.0,90.08333333,12.19833333,0.516333333,237.77966951666667 +2014-06-20 03:00:00,0.0,1012.933667,0.039433333,91.025,11.50916667,0.23600000000000002,237.77861686666665 +2014-06-20 04:00:00,0.0,1012.749667,3.174791667,91.65833333,11.37083333,0.161916667,237.7779151 +2014-06-20 05:00:00,0.0,1012.817,22.10658333,91.88333333,11.91,0.235833333,237.7779151 +2014-06-20 06:00:00,0.0,1013.132333,44.21608333,91.075,12.63166667,0.647333333,237.7782659833333 +2014-06-20 07:00:00,0.0,1013.065667,109.92916670000001,86.13333333,13.49166667,1.4025,237.7782659833333 +2014-06-20 08:00:00,0.0,1013.4,104.6494167,79.1275,14.2825,2.1534166669999997,237.7779151 +2014-06-20 09:00:00,0.0,1013.4830000000001,203.9275,75.6325,14.5075,1.878916667,237.7759099 +2014-06-20 10:00:00,0.0,1013.607333,105.37275,73.82916667,14.87,2.1025,237.7705362 +2014-06-20 11:00:00,0.0,1013.799333,137.4275,78.75333333,14.82916667,1.66375,237.77144851666665 +2014-06-20 12:00:00,0.0,1013.8589999999999,111.24633329999999,79.16083333,15.45,1.1218333329999999,237.7710976333333 +2014-06-20 13:00:00,0.0,1013.957667,214.13,75.045,16.0625,1.272666667,237.7710976333333 +2014-06-20 14:00:00,0.0,1013.759333,287.1866667,68.63666667,17.475,1.775166667,237.7693432 +2014-06-20 15:00:00,0.0,1013.6833330000001,399.6125,59.14833333,17.79166667,2.649833333,237.7675887 +2014-06-20 16:00:00,0.0,1013.6010000000001,204.015,59.43916667,17.74083333,3.416083333,237.76523269999998 +2014-06-20 17:00:00,0.0,1013.5319999999999,113.40583329999998,61.84083333,18.21,1.8246666669999998,237.76215818333336 +2014-06-20 18:00:00,0.0,1013.807333,78.97516667,62.7125,17.16083333,1.8029166669999999,237.7600695 +2014-06-20 19:00:00,0.0,1013.967333,21.9695,69.87666667,16.17166667,1.7883333330000002,237.75936769999996 +2014-06-20 20:00:00,0.0,1014.090333,2.9582,71.25583333,15.39916667,1.13675,237.75936769999996 +2014-06-20 21:00:00,0.0,1014.217,0.019716667,79.78916667,14.28583333,0.15508333300000002,237.75936769999996 +2014-06-20 22:00:00,0.0,1014.208333,0.0,81.63166667,13.71666667,0.289166667,237.75971859999996 +2014-06-20 23:00:00,0.0,1014.116667,0.0,81.58166667,13.58833333,0.200416667,237.76147310000002 +2014-06-21 00:00:00,0.0,1014.141667,0.0,84.75833333,12.60416667,0.488833333,237.76112220000002 +2014-06-21 01:00:00,0.0,1014.159,0.0,94.54166667,11.61583333,0.165916667,237.75971859999996 +2014-06-21 02:00:00,0.0,1014.199333,0.0,97.26666667,11.4,0.0068333330000000005,237.76147310000002 +2014-06-21 03:00:00,0.0,1014.324667,0.05915,98.75,11.33583333,0.110416667,237.76147310000002 +2014-06-21 04:00:00,0.0,1014.35,6.783641667,99.16666667,10.65333333,0.2415,237.76214146666666 +2014-06-21 05:00:00,0.0,1014.673,53.91341667,96.75833333,10.67416667,0.181083333,237.76314401666664 +2014-06-21 06:00:00,0.0,1014.907333,155.3766667,85.94583333,13.17333333,0.644,237.76347819999998 +2014-06-21 07:00:00,0.0,1015.2080000000001,144.5325,78.55833333,13.99,1.7178333330000002,237.76247564999997 +2014-06-21 08:00:00,0.0,1014.984667,107.835,76.98916667,14.81166667,1.800583333,237.7607713 +2014-06-21 09:00:00,0.0,1014.958333,218.3533333,70.06083333,15.53416667,1.9365,237.75836515 +2014-06-21 10:00:00,0.0,1014.9,215.08083330000002,66.0825,16.05166667,1.534083333,237.7566608 +2014-06-21 11:00:00,0.0,1014.875333,306.3958333,60.9775,16.65083333,1.7410833330000002,237.75425464999998 +2014-06-21 12:00:00,0.0,1014.6089999999999,219.9808333,60.5725,16.865,2.1084166669999997,237.75184849999997 +2014-06-21 13:00:00,0.0,1014.682667,223.02,61.36583333,17.34333333,1.818583333,237.74872383333332 +2014-06-21 14:00:00,0.0,1014.576,260.5575,64.40083333,17.555,1.4565833330000002,237.7459835 +2014-06-21 15:00:00,0.0,1014.434,264.4775,59.0625,18.32416667,1.186,237.74493080000002 +2014-06-21 16:00:00,0.0,1014.2260000000001,196.6883333,60.9575,18.605,1.010833333,237.74257479999997 +2014-06-21 17:00:00,0.0,1013.825667,114.0125,62.73,18.89333333,0.5195833329999999,237.74082030000002 +2014-06-21 18:00:00,0.0,1013.6916669999999,58.23066667,70.02,17.86416667,0.173333333,237.74015193333335 +2014-06-21 19:00:00,0.0,1013.7669999999999,23.96041667,84.66,17.23833333,0.06775,237.74082030000002 +2014-06-21 20:00:00,0.0,1013.948333,7.039841667,94.0,13.235,0.079166667,237.74048611666672 +2014-06-21 21:00:00,0.0,1014.350667,0.078866667,97.625,9.963333333,0.10283333300000001,237.73948356666665 +2014-06-21 22:00:00,0.0,1014.141667,0.0,99.28333333,8.4675,0.054416667,237.74082030000002 +2014-06-21 23:00:00,0.0,1014.125,0.0,99.98333333,7.628333333,0.031416667,237.74187299999997 +2014-06-22 00:00:00,0.0,1013.900667,0.0,100.0,7.22025,0.077833333,237.74292569999997 +2014-06-22 01:00:00,0.0,1013.783333,0.0,100.0,6.600166667000001,0.013583333000000001,237.74459661666666 +2014-06-22 02:00:00,0.0,1013.9,0.0,100.0,6.101,0.042833333,237.74493080000002 +2014-06-22 03:00:00,0.0,1013.6510000000001,0.078866667,100.0,6.082833333,0.0135,237.74598349999997 +2014-06-22 04:00:00,0.0,1013.632667,4.752883333,100.0,5.861000000000001,0.008416667,237.74493080000002 +2014-06-22 05:00:00,0.0,1014.04,63.60375,99.86666667,7.052583332999999,0.08825,237.74633439999994 +2014-06-22 06:00:00,0.0,1014.448,141.8025,89.575,11.26,0.45975,237.74703619999994 +2014-06-22 07:00:00,0.0,1014.9656669999999,148.7033333,82.08333333,14.565,0.673583333,237.74703619999994 +2014-06-22 08:00:00,0.0,1015.473333,104.3116667,76.935,16.32583333,1.698166667,237.7463344 +2014-06-22 09:00:00,0.0,1015.508333,281.8608333,72.03666667,17.71333333,1.7575,237.74359406666665 +2014-06-22 10:00:00,0.0,1015.500667,336.2391667,63.01916667,18.24666667,2.520166667,237.73948356666665 +2014-06-22 11:00:00,0.0,1015.482667,476.735,57.255,19.29083333,2.2984166669999997,237.7363756166667 +2014-06-22 12:00:00,0.0,1015.434,329.3441667,53.07083333,19.27916667,2.012833333,237.73189753333335 +2014-06-22 13:00:00,0.0,1015.591,253.6975,50.59333333,19.75833333,2.448416667,237.7294914 +2014-06-22 14:00:00,0.0,1015.732,338.6833333,50.3175,20.295,2.11825,237.7267343833333 +2014-06-22 15:00:00,0.0,1015.859333,458.3425,47.16333333,21.17833333,1.4785833330000002,237.72402750000003 +2014-06-22 16:00:00,0.0,1015.783667,256.34583330000004,47.325,20.4025,2.9228333330000003,237.72160463333333 +2014-06-22 17:00:00,0.0,1015.708333,106.8170833,50.59083333,20.17333333,3.2635,237.71921520000004 +2014-06-22 18:00:00,0.0,1015.890333,55.91541667,54.18916667,19.52,2.84225,237.7174941333333 +2014-06-22 19:00:00,0.0,1015.999333,35.90766667,61.82833333,18.52916667,1.966666667,237.71615740000001 +2014-06-22 20:00:00,0.0,1016.373,10.56953333,75.17166667,16.17916667,0.996833333,237.71615740000001 +2014-06-22 21:00:00,0.0,1017.2313330000001,0.13801666699999998,92.88333333,12.28333333,0.16041666699999999,237.7154556 +2014-06-22 22:00:00,0.0,1017.358333,0.0,96.03333333,10.06,0.147916667,237.71615740000001 +2014-06-22 23:00:00,0.0,1017.574333,0.0,99.00833333,8.961666667000001,0.06025,237.7178283166667 +2014-06-23 00:00:00,0.0,1017.560648,0.0,100.0,7.64275,0.06283333299999999,237.71956609999998 +2014-06-23 01:00:00,0.0,1017.470184,0.0,100.0,6.676333333,0.051916667,237.72060208333335 +2014-06-23 02:00:00,0.0,1017.4006410000001,0.0,100.0,6.015,0.042416667000000005,237.7219388166667 +2014-06-23 03:00:00,0.0,1017.319225,0.13801666699999998,100.0,5.690166667000001,0.093833333,237.7226239 +2014-06-23 04:00:00,0.0,1017.504108,13.09530833,100.0,5.471333333,0.058583333,237.7243784 +2014-06-23 05:00:00,0.0,1017.7958480000001,85.98041667,98.70833333,7.500583333,0.011833333,237.72262390000003 +2014-06-23 06:00:00,0.0,1018.1520429999999,144.99333330000002,90.63333333,10.3225,0.203166667,237.7236766 +2014-06-23 07:00:00,0.0,1018.7728400000001,146.16,81.525,12.8725,0.5036666670000001,237.72471258333334 +2014-06-23 08:00:00,0.0,1018.7745359999999,141.4641667,75.41,14.74583333,2.024916667,237.72538095000002 +2014-06-23 09:00:00,0.0,1018.5201109999999,175.875,73.6325,15.29,1.7483333330000002,237.722273 +2014-06-23 10:00:00,0.0,1018.3912029999999,379.3066667,68.59583333,16.20416667,2.145166667,237.71853011666667 +2014-06-23 11:00:00,0.0,1017.8925300000001,498.4466666999999,65.47583333,17.1975,2.462416667,237.7151047 +2014-06-23 12:00:00,0.0,1017.7721019999999,535.0975,61.86666667,17.7325,2.3505833330000003,237.71025896666666 +2014-06-23 13:00:00,0.0,1017.8094179999999,519.0208333,60.40333333,18.43583333,2.465,237.70649936666666 +2014-06-23 14:00:00,0.0,1017.37011,515.6841667,56.44833333,19.54333333,1.87,237.70272305 +2014-06-23 15:00:00,0.0,1016.391422,455.04083330000003,54.08916667,20.21,1.377833333,237.70066780000002 +2014-06-23 16:00:00,0.0,1015.7383980000001,335.51,53.74916667,20.64333333,2.60325,237.6972591 +2014-06-23 17:00:00,0.0,1015.227852,127.77333329999999,56.4175,20.35916667,2.5475,237.6944519 +2014-06-23 18:00:00,0.0,1015.015831,83.39916667,60.31,19.64666667,2.1030833330000003,237.69306501666665 +2014-06-23 19:00:00,0.0,1014.925934,40.52008333,63.68416667,18.4925,1.761166667,237.69139410000002 +2014-06-23 20:00:00,0.0,1014.9954769999999,12.6602,78.1425,16.91166667,0.231166667,237.69239665 +2014-06-23 21:00:00,0.0,1015.400861,0.17745,90.625,12.97583333,0.008833333,237.69172828333333 +2014-06-23 22:00:00,0.0,1015.339799,0.0,96.19166667,11.1575,0.033916667000000005,237.69410100000002 +2014-06-23 23:00:00,0.0,1015.3669369999999,0.0,98.03333333,10.05333333,0.12583333300000002,237.6958555 +2014-06-24 00:00:00,0.0,1015.183751,0.0,99.525,8.813333333,0.058916667,237.69794418333333 +2014-06-24 01:00:00,0.0,1014.947984,0.0,100.0,7.746666667,0.030916667000000002,237.6992809166667 +2014-06-24 02:00:00,0.0,1014.8360369999999,0.0,100.0,6.856333332999999,0.040083333,237.7010187 +2014-06-24 03:00:00,0.0,1014.605359,0.05915,100.0,6.36175,0.039583333,237.70305723333334 +2014-06-24 04:00:00,0.0,1014.5188539999999,9.723291667,100.0,5.872000000000001,0.025916667,237.70442740000001 +2014-06-24 05:00:00,0.0,1014.5765240000001,83.64416667,99.34166667,8.507,0.01275,237.70407650000004 +2014-06-24 06:00:00,0.0,1014.515462,157.4358333,90.04166667,13.27583333,0.29025,237.70477830000002 +2014-06-24 07:00:00,0.0,1014.752925,150.0216667,75.1225,15.62,0.35766666700000005,237.70583100000002 +2014-06-24 08:00:00,0.0,1014.756317,84.00583333,69.04833333,17.34666667,0.573666667,237.70683355000003 +2014-06-24 09:00:00,0.0,1014.7359630000001,280.875,64.07333333,18.9075,0.733666667,237.7020379666667 +2014-06-24 10:00:00,0.0,1014.52055,492.42666669999994,58.7725,20.14,1.036666667,237.69550460000002 +2014-06-24 11:00:00,0.0,1014.057497,334.5533333,56.56833333,20.4775,1.207916667,237.69034145 +2014-06-24 12:00:00,0.0,1013.738617,277.66083330000004,57.285,21.31833333,0.6579166670000001,237.68726691666666 +2014-06-24 13:00:00,0.0,1013.3349300000001,353.5233333,57.63833333,21.035,1.54175,237.6845099 +2014-06-24 14:00:00,1.20105972,1012.817599,208.7131667,85.55666667,15.885,3.471,237.6804160833333 +2014-06-24 15:00:00,0.0,1012.1035130000001,400.6741667,72.9125,18.1325,1.491166667,237.67906259999998 +2014-06-24 16:00:00,0.0,1011.338542,288.085,60.52166667,19.985,1.755166667,237.67695730000005 +2014-06-24 17:00:00,0.0,1010.729618,120.63741670000002,62.91,19.9925,1.473416667,237.6752028 +2014-06-24 18:00:00,5.946483456,1010.861919,17.45041667,82.25833333,17.6,0.875166667,237.67451771666666 +2014-06-24 19:00:00,0.0,1010.107125,32.361,98.66666667,14.98666667,0.46266666700000003,237.6766064 +2014-06-24 20:00:00,0.0,1009.9392039999999,8.243083333,100.0,14.31666667,0.200666667,237.68039940000003 +2014-06-24 21:00:00,53.77819231,1010.556609,0.078866667,99.625,13.085,1.921416667,237.6835073 +2014-06-24 22:00:00,0.698200728,1010.519293,0.0,99.78333333,12.60583333,0.45733333299999995,237.68760111666666 +2014-06-24 23:00:00,0.0,1010.037582,0.0,100.0,11.68416667,0.22899999999999998,237.69171158333333 +2014-06-25 00:00:00,0.0,1009.5847050000001,0.0,100.0,10.2825,0.3055,237.69339920000002 +2014-06-25 01:00:00,0.0,1009.196283,0.0,100.0,9.690833332999999,0.18516666699999998,237.69445190000002 +2014-06-25 02:00:00,0.0,1008.933377,0.0,100.0,10.295,0.12691666699999998,237.69620640000002 +2014-06-25 03:00:00,0.493181184,1008.7128759999999,0.0,100.0,10.91666667,0.255166667,237.69794418333333 +2014-06-25 04:00:00,2.212150248,1008.5568279999999,1.67615,100.0,11.0875,0.55225,237.69961510000005 +2014-06-25 05:00:00,0.0,1008.750191,24.78933333,100.0,11.28416667,0.0855,237.7006678 +2014-06-25 06:00:00,0.0,1008.690826,92.74708333,98.55833333,11.81666667,1.005583333,237.7017205 +2014-06-25 07:00:00,0.0,1008.750191,101.79575,83.95666667,13.44666667,2.482916667,237.70272305000003 +2014-06-25 08:00:00,0.0,1009.1216519999999,79.191,75.32416667,14.4575,2.716,237.70272305 +2014-06-25 09:00:00,0.0,1009.3489380000001,148.645,74.9975,14.54083333,3.2341666669999998,237.69928091666668 +2014-06-25 10:00:00,0.0,1009.6847789999999,250.74,67.17666667,14.92166667,2.97825,237.69690820000002 +2014-06-25 11:00:00,0.0,1009.733968,269.7916667,60.42166667,15.82916667,2.57375,237.69308173333334 +2014-06-25 12:00:00,0.0,1009.786549,294.7875,53.8,16.75666667,3.2795,237.68863708333333 +2014-06-25 13:00:00,0.0,1009.8764460000001,378.9333333,55.035,16.94,3.3725,237.68280553333332 +2014-06-25 14:00:00,0.0,1009.9205460000001,157.4591667,55.035,17.32333333,2.772333333,237.67800995000002 +2014-06-25 15:00:00,0.0,1009.788245,425.03416669999996,50.3275,17.65416667,2.731833333,237.6759046 +2014-06-25 16:00:00,0.0,1009.8611800000001,190.1141667,50.6325,17.5775,1.9838333330000002,237.67249590000003 +2014-06-25 17:00:00,0.0,1009.912066,87.42416667,62.845,16.385,2.1070833330000003,237.6707414 +2014-06-25 18:00:00,0.0,1010.422612,26.50433333,75.98166667,17.01916667,1.377666667,237.6707414 +2014-06-25 19:00:00,0.0,1010.724529,18.81425,73.28,15.2475,2.341583333,237.67249590000003 +2014-06-25 20:00:00,0.0,1011.1265210000001,5.068525,85.24,13.9575,1.0855,237.67249590000003 +2014-06-25 21:00:00,0.0,1011.667598,0.039433333,96.51666667,10.15166667,0.0845,237.67351516666668 +2014-06-25 22:00:00,0.0,1011.9898699999999,0.0,99.79166667,8.521666667,0.14400000000000002,237.6755537 +2014-06-25 23:00:00,0.0,1011.9457689999999,0.0,100.0,7.9475,0.15641666699999998,237.67765906666668 +2014-06-26 00:00:00,0.0,1011.8151650000001,0.0,100.0,6.60175,0.094583333,237.67939679999998 +2014-06-26 01:00:00,0.0,1011.545474,0.0,100.0,5.858083333,0.03575,237.68141868333336 +2014-06-26 02:00:00,0.0,1011.257126,0.0,100.0,5.29725,0.079416667,237.6831731 +2014-06-26 03:00:00,0.0,1011.224899,0.039433333,100.0,5.514333333,0.130583333,237.6851783 +2014-06-26 04:00:00,0.0,1011.257126,4.7136833330000005,100.0,5.387416667,0.09475,237.68623095 +2014-06-26 05:00:00,0.0,1011.516639,47.70325,100.0,6.7641666670000005,0.039583333,237.6876178 +2014-06-26 06:00:00,0.0,1011.7388369999999,65.247,100.0,9.030083333,0.22166666699999998,237.6872836 +2014-06-26 07:00:00,0.0,1011.584486,105.51333329999999,97.99166667,10.18416667,0.4895,237.6882862 +2014-06-26 08:00:00,0.0,1011.765976,157.5758333,88.39166667,12.05583333,0.732,237.6892888 +2014-06-26 09:00:00,0.0,1011.791418,267.5575,81.28833333,14.63416667,1.011333333,237.68930548333333 +2014-06-26 10:00:00,0.0,1011.9372890000001,245.42583330000002,73.58083333,16.1925,1.5554166669999998,237.68554586666664 +2014-06-26 11:00:00,0.0,1011.901669,349.8891667,66.8175,16.92916667,1.5055,237.6804160833333 +2014-06-26 12:00:00,0.0,1011.732052,311.955,64.58,18.395,1.7049166669999998,237.67488533333338 +2014-06-26 13:00:00,0.0,1011.440312,349.1075,61.0925,18.95583333,1.872333333,237.6707581166667 +2014-06-26 14:00:00,0.0,1011.46745,512.8608333000001,54.82,19.37416667,1.654333333,237.66803449999998 +2014-06-26 15:00:00,0.0,1010.8670070000001,446.705,51.97083333,20.49833333,1.261833333,237.66494326666668 +2014-06-26 16:00:00,0.0,1010.476889,398.7083333,49.48083333,20.40833333,1.6369999999999998,237.66151785 +2014-06-26 17:00:00,0.0,1010.3004880000001,100.97616670000001,48.51333333,20.9825,1.28775,237.65805899999998 +2014-06-26 18:00:00,0.0,1010.568482,50.49683333,55.14916667,20.955,0.9249166670000001,237.65597031666664 +2014-06-26 19:00:00,0.0,1010.7177449999999,35.77,76.505,19.13583333,0.240916667,237.6563045 +2014-06-26 20:00:00,0.0,1010.899234,7.335475,90.50833333,15.02083333,0.016666667,237.6570063 +2014-06-26 21:00:00,0.0,1011.187583,0.039433333,96.71666667,11.00416667,8.329999999999999e-05,237.6591117 +2014-06-26 22:00:00,0.0,1011.1824939999999,0.0,98.94166667,9.120833333,0.0065,237.66084948333332 +2014-06-26 23:00:00,0.0,1011.2859609999999,0.0,100.0,8.131916667,0.045166667,237.6628713 +2014-06-27 00:00:00,0.0,1011.224899,0.0,100.0,7.38275,0.019416667,237.66495998333332 +2014-06-27 01:00:00,0.0,1010.965385,0.0,100.0,7.01325,0.01925,237.6673327 +2014-06-27 02:00:00,0.0,1010.967081,0.0,100.0,6.169166667000001,0.0,237.66940466666665 +2014-06-27 03:00:00,0.0,1011.16214,0.039433333,100.0,6.101583333,0.040916667000000004,237.66940466666665 +2014-06-27 04:00:00,0.0,1011.4335269999999,3.9835833330000003,100.0,6.74,0.0,237.6707414 +2014-06-27 05:00:00,0.0,1011.570917,43.58666667,100.0,7.614416667,0.006333333000000001,237.67249590000003 +2014-06-27 06:00:00,0.0,1011.574309,141.58025,96.29166667,10.69416667,0.06383333299999999,237.67384935000004 +2014-06-27 07:00:00,0.0,1011.625194,141.49625,83.85666667,13.34416667,0.639333333,237.6755537 +2014-06-27 08:00:00,0.0,1011.796507,127.7383333,74.77916667,15.91833333,1.306,237.67625550000002 +2014-06-27 09:00:00,0.0,1011.6572060000001,284.0425,66.03583333,19.82333333,1.223083333,237.67179410000003 +2014-06-27 10:00:00,0.0,1011.25,332.43,60.84583333,21.415,1.61675,237.66355638333332 +2014-06-27 11:00:00,0.0,1011.077333,486.0275,48.15,23.22583333,1.385,237.6566554 +2014-06-27 12:00:00,0.0,1010.751167,387.5316667,46.23916667,23.79166667,0.8866666670000001,237.65359759999998 +2014-06-27 13:00:00,0.0,1010.61425,359.2458333,47.60916667,23.35333333,0.750916667,237.6494871 +2014-06-27 14:00:00,0.0,1010.12375,485.79416669999995,45.40833333,24.21083333,1.2165,237.6450257 +2014-06-27 15:00:00,0.0,1009.5785,219.9925,48.66083333,24.42166667,0.91425,237.64196790000003 +2014-06-27 16:00:00,0.0,1009.026167,226.8,48.45416667,24.9775,0.417333333,237.63951161666662 +2014-06-27 17:00:00,0.0,1009.42275,44.16708333,67.45666667,22.44583333,0.169083333,237.63775719999998 +2014-06-27 18:00:00,0.0,1009.855917,68.52008333,69.16083333,20.35416667,1.52375,237.63810808333332 +2014-06-27 19:00:00,0.0,1009.73575,29.064,80.1725,18.72,0.350416667,237.63880985 +2014-06-27 20:00:00,0.0,1010.0488330000001,5.639783333,91.58333333,16.815,0.082666667,237.64160028333333 +2014-06-27 21:00:00,0.0,1010.258333,0.019716667,98.20833333,14.86166667,0.128833333,237.643973 +2014-06-27 22:00:00,0.0,1010.181,0.0,99.875,13.74083333,0.129083333,237.64708095 +2014-06-27 23:00:00,0.0,1010.116583,0.0,96.49166667,14.70916667,1.257083333,237.6494871 +2014-06-28 00:00:00,0.0,1010.0452740000001,0.0,96.15833333,14.85583333,0.9109999999999999,237.65221071666667 +2014-06-28 01:00:00,0.0,1009.814333,0.0,98.89166667,13.74166667,0.518416667,237.65429939999999 +2014-06-28 02:00:00,0.0,1009.514333,0.0,100.0,13.0275,0.35066666700000004,237.6570063 +2014-06-28 03:00:00,0.0,1009.282222,0.019716667,100.0,12.29333333,0.137416667,237.65770809999995 +2014-06-28 04:00:00,0.0,1009.152333,5.384341667,100.0,11.43333333,0.164666667,237.65876079999998 +2014-06-28 05:00:00,0.0,1009.358333,34.37583333,100.0,11.77666667,0.066333333,237.66051530000001 +2014-06-28 06:00:00,0.0,1009.2047779999999,80.32208333,99.24166667,13.7325,0.199083333,237.66252039999998 +2014-06-28 07:00:00,0.0,1009.325,147.0175,90.23333333,15.74583333,0.48116666700000005,237.66392399999998 +2014-06-28 08:00:00,0.0,1009.2595560000001,155.6858333,84.96666667,17.78416667,0.329416667,237.66392399999998 +2014-06-28 09:00:00,0.0,1008.885778,222.95,78.17333333,19.36166667,0.47866666700000005,237.66048186666663 +2014-06-28 10:00:00,0.0,1008.4084439999999,307.86,72.29,20.75583333,0.57725,237.65393178333338 +2014-06-28 11:00:00,0.0,1007.687,290.7625,72.755,21.69333333,1.5309166669999998,237.64535988333333 +2014-06-28 12:00:00,0.0,1007.263111,233.8525,63.555,21.58166667,1.8130000000000002,237.63880985 +2014-06-28 13:00:00,0.0,1006.858444,130.9116667,77.04166667,19.98166667,0.81775,237.63742299999998 +2014-06-28 14:00:00,0.0,1006.3191109999999,145.8975,77.465,19.91416667,0.8906666670000001,237.6370888 +2014-06-28 15:00:00,14.09801928,1005.8132220000001,66.51166667,82.75083333,19.45333333,1.8513333330000001,237.635752 +2014-06-28 16:00:00,0.778143,1004.978667,50.45483333,95.1,17.31,0.7215,237.63777388333332 +2014-06-28 17:00:00,0.0,1004.3336029999999,35.47366667,96.84166667,17.73166667,0.297,237.63986251666665 +2014-06-28 18:00:00,2.5745124,1003.4525560000001,21.04025,99.51666667,17.545,0.18558333300000002,237.64297044999998 +2014-06-28 19:00:00,0.0,1003.156083,15.39976667,100.0,17.1625,0.7095,237.64606168333333 +2014-06-28 20:00:00,0.0,1003.1785279999999,6.4085,100.0,16.83333333,0.151416667,237.6494871 +2014-06-28 21:00:00,0.0,1003.257056,0.039433333,100.0,16.12,0.12616666699999998,237.65254489999998 +2014-06-28 22:00:00,17.01380266,1003.0028609999999,0.0,100.0,15.5575,0.19375,237.65496776666666 +2014-06-28 23:00:00,6.583482288,1001.980111,0.0,100.0,15.0025,0.40366666700000003,237.65944588333332 +2014-06-29 00:00:00,1.415437992,1001.731083,0.0,100.0,14.86583333,0.37858333299999997,237.66425818333332 +2014-06-29 01:00:00,0.0,1001.710583,0.0,100.0,14.44583333,0.042166667000000005,237.66803449999998 +2014-06-29 02:00:00,0.0,1001.4955,0.0,100.0,14.5125,0.006416666999999999,237.66803449999998 +2014-06-29 03:00:00,0.0,1001.136861,0.0,100.0,14.40833333,0.234916667,237.66907048333334 +2014-06-29 04:00:00,0.684999384,1001.0653890000001,2.8595,100.0,13.74083333,0.404416667,237.6707414 +2014-06-29 05:00:00,4.145911872,1001.533333,12.720575,100.0,13.92,0.057166667000000004,237.67249590000003 +2014-06-29 06:00:00,2.212389768,1001.936556,36.97726667,100.0,13.95583333,0.604916667,237.67384934999998 +2014-06-29 07:00:00,0.512614848,1002.168917,31.00008333,100.0,14.17083333,0.69025,237.6748519 +2014-06-29 08:00:00,0.755444688,1003.141056,67.28575,99.09166667,14.20833333,1.9738333330000002,237.67695730000005 +2014-06-29 09:00:00,0.0,1004.100949,121.40741670000001,94.55,14.78583333,1.543333333,237.67695730000005 +2014-06-29 10:00:00,0.740303232,1004.5285,145.5125,93.34166667,14.95,1.8273333330000001,237.67695730000005 +2014-06-29 11:00:00,2.263878552,1004.973167,215.25,88.24166667,16.10833333,1.266,237.67695730000005 +2014-06-29 12:00:00,0.0,1005.432,125.90083329999999,93.54166667,15.375,0.5970833329999999,237.67555370000002 +2014-06-29 13:00:00,0.0,1005.548667,335.8541667,90.14416667,15.69916667,0.8604166670000001,237.6748519 +2014-06-29 14:00:00,0.0,1005.565833,206.1091667,80.94083333,16.72416667,1.8419999999999999,237.67144320000003 +2014-06-29 15:00:00,0.0,1005.445167,412.02,72.75166667,18.05416667,1.361083333,237.6676836 +2014-06-29 16:00:00,0.0,1005.618333,126.90533329999998,73.12333333,18.595,0.600916667,237.66322219999998 +2014-06-29 17:00:00,17.88826344,1006.443,43.71791667,94.60833333,15.58666667,0.7021666670000001,237.66051530000001 +2014-06-29 18:00:00,4.424697384,1006.1465,73.4825,97.15,13.73833333,0.85525,237.66151784999997 +2014-06-29 19:00:00,0.0,1006.505667,22.61758333,95.29166667,14.505,0.344083333,237.66252039999998 +2014-06-29 20:00:00,0.675841008,1006.959167,4.575375,99.48333333,13.1,0.079,237.66462579999998 +2014-06-29 21:00:00,0.0,1007.259167,0.019716667,99.33333333,12.73333333,0.43825,237.66562835 +2014-06-29 22:00:00,0.0,1007.5889999999999,0.0,99.89166667,12.54916667,0.032666667,237.6673327 +2014-06-29 23:00:00,0.0,1007.891667,0.0,100.0,12.45083333,0.146333333,237.6687363 +2014-06-30 00:00:00,0.672808848,1007.916667,0.0,99.60833333,12.36666667,0.287666667,237.66940466666665 +2014-06-30 01:00:00,0.0,1008.1105,0.0,99.4,12.41083333,0.0755,237.6707414 +2014-06-30 02:00:00,0.0,1008.290278,0.0,99.375,12.29083333,0.040833333,237.67144320000003 +2014-06-30 03:00:00,1.16338884,1008.475,0.019716667,99.91666667,12.28416667,0.10041666699999999,237.67249590000006 +2014-06-30 04:00:00,0.0,1008.5423609999999,3.806308333,100.0,11.95166667,0.36208333299999995,237.67284680000003 +2014-06-30 05:00:00,0.0,1008.935417,25.67483333,100.0,11.5025,0.448166667,237.67249590000003 +2014-06-30 06:00:00,0.0,1009.602778,126.20008329999999,96.19166667,12.505,0.222083333,237.67318098333337 +2014-06-30 07:00:00,0.0,1010.390972,150.57,90.375,14.66166667,0.8553333329999999,237.6748519 +2014-06-30 08:00:00,0.0,1010.802083,103.4308333,82.04333333,15.37083333,1.042333333,237.67384935000004 +2014-06-30 09:00:00,0.0,1010.929861,243.8158333,77.43916667,16.3775,1.4530833330000001,237.67110901666663 +2014-06-30 10:00:00,0.0,1011.0423609999999,221.94666669999998,74.85833333,16.74166667,0.96175,237.66664761666667 +2014-06-30 11:00:00,0.0,1011.0423609999999,346.6983333,79.35416667,17.11916667,1.069583333,237.66220293333333 +2014-06-30 12:00:00,3.656796192,1010.8319439999999,446.61983330000004,78.775,16.0125,1.116666667,237.65840989999995 +2014-06-30 13:00:00,0.7071170640000001,1011.3944439999999,474.0575,71.62,18.53333333,1.45925,237.6604818666667 +2014-06-30 14:00:00,0.8937424079999999,1011.641667,345.9458333,62.0925,18.5825,2.248,237.66462579999998 +2014-06-30 15:00:00,0.0,1011.897222,422.5725,56.08833333,18.84,2.9505,237.66083276666666 +2014-06-30 16:00:00,0.0,1011.772917,128.0125,60.27,18.20416667,3.6455,237.6559870333333 +2014-06-30 17:00:00,0.0,1012.086111,120.65666670000002,60.925,18.2075,2.58775,237.65324669999998 +2014-06-30 18:00:00,0.0,1012.6,56.945,65.76333333,17.815,2.841333333,237.65017218333332 +2014-06-30 19:00:00,0.0,1013.0339720000001,22.20225,72.93583333,16.60583333,1.9175,237.64808349999998 +2014-06-30 20:00:00,0.0,1013.524111,6.112808332999999,84.48333333,13.93,0.150166667,237.64808349999998 +2014-06-30 21:00:00,0.0,1013.945111,0.078866667,96.5,11.03583333,0.148833333,237.64983799999996 +2014-06-30 22:00:00,0.0,1014.1436669999999,0.0,99.675,10.32416667,0.014416667,237.65119144999997 +2014-06-30 23:00:00,0.0,1014.291667,0.0,100.0,9.874166667,0.030166667,237.65254489999998 +2014-01-07 00:00:00,0.0,1014.168111,0.0,100.0,8.6975,0.110333333,238.03250233333333 +2014-01-07 01:00:00,0.0,1013.9416669999999,0.0,100.0,7.64175,0.312833333,238.04281099999994 +2014-01-07 02:00:00,0.0,1013.9764439999999,0.0,100.0,6.591666667,0.194083333,238.05440433333334 +2014-01-07 03:00:00,0.0,1014.0005560000001,0.039433333,100.0,6.0889999999999995,0.071583333,238.06568433333334 +2014-01-07 04:00:00,0.49520757600000004,1014.433889,7.100275,100.0,5.31925,0.11358333300000001,238.075335 +2014-01-07 05:00:00,0.0,1014.825,67.3295,100.0,6.806416667000001,0.007416666999999999,238.08048933333336 +2014-01-07 06:00:00,2.333889864,1014.8985560000001,147.0816667,95.95,10.27333333,0.45575,238.08403 +2014-01-07 07:00:00,0.0,1015.206889,145.5241667,85.375,13.16166667,1.1009166670000001,238.085957 +2014-01-07 08:00:00,0.0,1015.154889,154.0933333,77.34583333,15.41916667,0.9278333329999999,238.08819733333334 +2014-01-07 09:00:00,0.0,1014.956333,331.59,60.57083333,17.8,0.7010833329999999,238.08851066666668 +2014-01-07 10:00:00,0.0,1014.487667,504.26833330000005,58.44083333,18.655,0.7988333329999999,238.08882400000002 +2014-01-07 11:00:00,0.0,1014.159778,269.3425,57.37333333,19.5125,0.806583333,238.08981100000003 +2014-01-07 12:00:00,0.0,1013.993167,499.96916669999996,54.16916667,19.97666667,1.718666667,238.09046899999998 +2014-01-07 13:00:00,0.0,1013.686333,482.60916669999995,49.96666667,20.10916667,1.0745833329999999,238.09270933333335 +2014-01-07 14:00:00,0.0,1013.425,397.7458333,44.09916667,21.13666667,1.027416667,238.095592 +2014-01-07 15:00:00,0.0,1013.281417,453.5125,40.31666667,21.49166667,1.278833333,238.09496533333333 +2014-01-07 16:00:00,0.0,1013.078417,359.7941667,37.71166667,21.4225,1.9380000000000002,238.09236466666664 +2014-01-07 17:00:00,0.0,1013.190167,82.20625,39.405,21.34916667,2.32575,238.09109566666663 +2014-01-07 18:00:00,0.0,1013.320083,50.02433333,41.34333333,20.7125,1.7890000000000001,238.08948199999998 +2014-01-07 19:00:00,0.0,1013.790583,33.06741667,47.54416667,19.97666667,1.017666667,238.08819733333334 +2014-01-07 20:00:00,0.0,1014.4489169999999,11.51540833,80.45833333,16.6075,0.11933333300000001,238.085957 +2014-01-07 21:00:00,0.0,1015.0485,0.1183,92.275,12.035,0.15866666699999998,238.08562800000004 +2014-01-07 22:00:00,0.0,1015.26025,0.0,96.03333333,9.99,0.054583333,238.08309 +2014-01-07 23:00:00,0.0,1015.2515,0.0,98.39166667,8.708333332999999,0.01575,238.081774 +2014-02-07 00:00:00,0.0,1015.15,0.0,99.925,7.73775,0.029583333,238.04991535 +2014-02-07 01:00:00,0.0,1015.18825,0.0,100.0,6.848166667,0.06375,238.04919019999997 +2014-02-07 02:00:00,0.0,1015.270083,0.0,100.0,5.946333332999999,0.0215,238.04893641666663 +2014-02-07 03:00:00,0.0,1015.3735,0.039433333,100.0,5.496583332999999,0.059583332999999995,238.04842885000002 +2014-02-07 04:00:00,0.0,1015.612044,7.534041667,100.0,5.1834166669999995,0.03025,238.04868263333333 +2014-02-07 05:00:00,0.0,1016.1752779999999,76.53333333,99.6,7.242083332999999,0.0035,238.04817506666666 +2014-02-07 06:00:00,0.0,1016.750278,153.8775,91.63333333,11.76166667,0.09708333300000001,238.0486826333333 +2014-02-07 07:00:00,0.0,1017.095056,145.425,78.31166667,13.835,0.802333333,238.0479212833333 +2014-02-07 08:00:00,0.0,1016.8598890000001,56.04258333,71.85333333,15.27333333,1.3746666669999998,238.04817506666666 +2014-02-07 09:00:00,0.0,1016.633056,338.135,63.705,17.4125,1.9305,238.04842885000002 +2014-02-07 10:00:00,0.0,1016.715111,476.39083330000005,57.61083333,18.6925,1.66525,238.04868263333333 +2014-02-07 11:00:00,0.0,1016.688278,480.91166669999996,52.41666667,19.945,1.4963333330000002,238.04817506666666 +2014-02-07 12:00:00,0.0,1016.563278,472.62833330000007,46.93666667,20.55166667,1.8768333330000002,238.04817506666666 +2014-02-07 13:00:00,0.0,1016.416667,531.8891666999999,41.41083333,21.90166667,1.745333333,238.0469061 +2014-02-07 14:00:00,0.0,1016.3867220000001,499.08833330000004,43.2575,22.34333333,1.911583333,238.0474137 +2014-02-07 15:00:00,0.0,1016.5382779999999,477.44083330000007,39.59916667,23.24166667,1.043916667,238.04590299999998 +2014-02-07 16:00:00,0.0,1016.465111,252.3908333,39.27666667,23.46583333,1.432166667,238.04615679999998 +2014-02-07 17:00:00,0.0,1016.721889,68.75691667,42.26083333,23.81166667,1.031666667,238.04468239999997 +2014-02-07 18:00:00,0.0,1017.185167,44.58183333,42.3,23.01416667,1.529833333,238.04493620000002 +2014-02-07 19:00:00,0.0,1017.6737220000001,25.08158333,47.25333333,21.93583333,1.020833333,238.04418689999997 +2014-02-07 20:00:00,0.0,1018.533889,5.638966667,78.11916667,17.31666667,0.51525,238.04393309999998 +2014-02-07 21:00:00,0.0,1019.160167,0.039433333,91.825,12.42666667,0.067083333,238.04342549999993 +2014-02-07 22:00:00,0.0,1019.193278,0.0,97.46666667,10.35916667,0.02975,238.04292999999996 +2014-02-07 23:00:00,0.0,1019.308472,0.0,99.725,9.25,0.11541666699999999,238.04292999999996 +2014-03-07 00:00:00,0.0,1019.725,0.0,100.0,8.554166667,0.080833333,238.00742340000002 +2014-03-07 01:00:00,0.0,1019.6049720000001,0.0,100.0,8.015333333,0.068416667,238.00718170000002 +2014-03-07 02:00:00,0.0,1019.3849439999999,0.0,100.0,7.31975,0.10075,238.00767720000002 +2014-03-07 03:00:00,0.0,1019.2533609999999,0.039433333,100.0,6.666666667,0.080416667,238.00742340000002 +2014-03-07 04:00:00,0.0,1019.415056,6.70565,100.0,6.244916667000001,0.040833333,238.00718170000002 +2014-03-07 05:00:00,0.0,1019.591667,67.89825,99.84166667,7.711,0.009583333000000001,238.0074355 +2014-03-07 06:00:00,0.0,1019.6833330000001,154.035,89.3,12.09333333,0.07075,238.00742340000002 +2014-03-07 07:00:00,0.0,1019.681722,152.39991669999998,76.46666667,14.66583333,0.363416667,238.00718170000002 +2014-03-07 08:00:00,0.0,1019.6349439999999,58.29133333,69.6075,17.32416667,0.45041666700000005,238.00718170000002 +2014-03-07 09:00:00,0.0,1019.606583,331.275,60.58916667,20.105,0.81,238.007931 +2014-03-07 10:00:00,0.0,1019.4733890000001,470.66833330000003,54.485,22.41083333,1.1095,238.00843859999998 +2014-03-07 11:00:00,0.0,1019.1965,515.7483333,53.5025,23.97166667,1.5095,238.00818479999998 +2014-03-07 12:00:00,0.0,1018.7415279999999,539.0758333,48.765,25.075,1.788583333,238.0089462 +2014-03-07 13:00:00,0.0,1018.149883,541.7066667,42.98,26.2775,1.406833333,238.0086924 +2014-03-07 14:00:00,0.0,1017.56,507.43583330000007,34.49083333,27.16583333,1.05525,238.00869239999997 +2014-03-07 15:00:00,0.0,1016.825,461.4225,29.34583333,28.005,1.036833333,238.00843859999998 +2014-03-07 16:00:00,0.0,1016.131667,384.3583333,29.4825,28.69083333,0.829583333,238.0089462 +2014-03-07 17:00:00,0.0,1015.64,59.01758333,31.5525,28.90083333,0.569916667,238.00843859999998 +2014-03-07 18:00:00,0.0,1015.3116669999999,27.4085,34.03166667,28.48166667,0.431833333,238.00767720000002 +2014-03-07 19:00:00,0.0,1015.146667,21.82775,54.585,26.7275,0.17875,238.00742340000002 +2014-03-07 20:00:00,0.0,1015.293333,7.729575,76.90833333,19.29,0.132083333,238.00694 +2014-03-07 21:00:00,0.0,1015.363333,0.05915,84.1725,14.69,0.0645,238.0066983 +2014-03-07 22:00:00,0.0,1015.295,0.0,87.09166667,12.7025,0.005083333,238.0066983 +2014-03-07 23:00:00,0.0,1015.26,0.0,91.925,11.48166667,0.132083333,238.00645659999998 +2014-04-07 00:00:00,0.0,1014.746667,0.0,94.31666667,10.64916667,0.076083333,237.92662810000002 +2014-04-07 01:00:00,0.0,1014.536667,0.0,94.95,9.77,0.02525,237.92629390000002 +2014-04-07 02:00:00,0.0,1013.866667,0.0,98.375,9.3075,0.06433333299999999,237.92629390000002 +2014-04-07 03:00:00,0.0,1013.675,0.019716667,99.91666667,8.515,0.034,237.92629390000002 +2014-04-07 04:00:00,0.0,1013.4333330000001,6.843491667,100.0,8.2025,0.021083333,237.92629390000002 +2014-04-07 05:00:00,0.0,1012.945,73.56475,97.15,10.43666667,0.002666667,237.92594301666668 +2014-04-07 06:00:00,0.0,1012.500039,150.71,83.5025,14.74916667,0.32525,237.92629390000002 +2014-04-07 07:00:00,0.0,1012.1584720000001,155.2804167,75.63333333,16.83666667,0.7285,237.92489036666666 +2014-04-07 08:00:00,0.0,1011.461917,62.82791667,68.73833333,20.27,0.70975,237.92453948333335 +2014-04-07 09:00:00,0.0,1010.591806,314.5741667,56.3475,23.45666667,1.482833333,237.9241886 +2014-04-07 10:00:00,0.0,1009.7769999999999,440.21833330000004,48.82083333,25.79,1.469583333,237.92489036666666 +2014-04-07 11:00:00,0.0,1008.613639,476.5075,43.745,27.49416667,2.182416667,237.92453948333332 +2014-04-07 12:00:00,0.0,1007.7568890000001,509.1391666999999,40.6,28.41916667,2.35025,237.9241886 +2014-04-07 13:00:00,0.0,1007.1885,402.0275,36.7675,28.84,1.9976666669999998,237.9241886 +2014-04-07 14:00:00,0.0,1006.839944,318.90833330000004,33.67166667,28.97083333,1.811,237.9241886 +2014-04-07 15:00:00,0.0,1006.5268609999999,89.95641667,47.84833333,27.01666667,0.92625,237.9241886 +2014-04-07 16:00:00,0.0,1005.6353330000001,307.6966667,43.00416667,27.41416667,0.46183333299999996,237.92350351666667 +2014-04-07 17:00:00,0.0,1004.5235560000001,121.2575,38.29083333,28.67166667,0.85675,237.92281843333333 +2014-04-07 18:00:00,0.0,1004.52975,43.50383333,51.47083333,26.3925,0.90875,237.92042898333332 +2014-04-07 19:00:00,0.0,1004.955028,11.41641667,69.425,21.60666667,0.16066666699999999,237.92007809999998 +2014-04-07 20:00:00,0.0,1004.516945,2.464875,78.935,20.4275,0.015083333,237.92007809999998 +2014-04-07 21:00:00,0.0,1004.0300279999999,0.0,86.33333333,18.97416667,0.18883333300000002,237.92007809999998 +2014-04-07 22:00:00,0.0,1003.9333330000001,0.0,89.325,18.08083333,0.08800000000000001,237.92007809999998 +2014-04-07 23:00:00,0.0,1004.234884,0.0,89.49166667,17.94666667,0.417333333,237.92007809999998 +2014-05-07 00:00:00,0.0,1003.9184439999999,0.0,90.89166667,17.67333333,0.21458333300000001,237.82122559999996 +2014-05-07 01:00:00,0.0,1003.938389,0.0,94.775,17.40416667,0.204833333,237.82189400000001 +2014-05-07 02:00:00,0.0,1003.7985,0.0,95.88333333,16.66166667,0.169916667,237.8225624 +2014-05-07 03:00:00,0.0,1003.703278,0.0,96.00833333,14.80166667,0.22291666699999999,237.82323080000006 +2014-05-07 04:00:00,0.0,1003.891389,5.6795666670000005,95.65,13.63,0.260166667,237.82323080000006 +2014-05-07 05:00:00,0.0,1004.175,47.62158333,95.18333333,14.6375,0.231166667,237.82189399999996 +2014-05-07 06:00:00,0.0,1004.484833,85.43908333,83.62916667,18.12,0.519333333,237.8228966 +2014-05-07 07:00:00,0.0,1004.616667,107.70083329999999,77.9325,20.72833333,0.47908333299999994,237.82323080000006 +2014-05-07 08:00:00,0.0,1004.641667,140.37916669999998,76.96833333,21.4225,0.44625,237.82323080000006 +2014-05-07 09:00:00,0.0,1004.781556,186.8883333,76.22833333,22.48666667,1.10975,237.82289660000004 +2014-05-07 10:00:00,0.0,1004.8101109999999,231.2858333,75.03583333,22.37916667,1.6265,237.82122559999996 +2014-05-07 11:00:00,0.0,1004.6982220000001,259.7466667,71.34,23.44,1.270416667,237.82122559999996 +2014-05-07 12:00:00,0.0,1005.1295,184.8233333,67.08833333,23.5925,1.8705833330000001,237.82017294999994 +2014-05-07 13:00:00,0.0,1005.4898890000001,158.2525,76.47166667,21.99,1.192416667,237.81947118333332 +2014-05-07 14:00:00,0.0,1005.7616109999999,202.4225,82.425,21.1975,1.064083333,237.81778356666666 +2014-05-07 15:00:00,0.0,1005.8050720000001,110.3165,80.96666667,21.48666667,1.4795833330000001,237.8177835666667 +2014-05-07 16:00:00,0.0,1005.87825,99.18416667,83.39166667,20.85,1.658166667,237.8174326666667 +2014-05-07 17:00:00,0.0,1005.973167,99.2775,81.725,21.23166667,1.279833333,237.8164134 +2014-05-07 18:00:00,0.0,1006.243083,60.05708333,82.93333333,21.25916667,1.35775,237.8171152 +2014-05-07 19:00:00,0.0,1006.618083,19.89575,87.45833333,20.52416667,1.25825,237.8171152 +2014-05-07 20:00:00,0.0,1007.120917,2.445158333,91.25,19.73,1.132333333,237.81811774999997 +2014-05-07 21:00:00,0.0,1007.568083,0.039433333,92.04166667,19.34583333,0.949833333,237.81912030000004 +2014-05-07 22:00:00,0.0,1007.966667,0.0,90.475,19.47,0.829833333,237.81912030000004 +2014-05-07 23:00:00,0.0,1007.88475,0.0,91.025,19.2925,0.920416667,237.81912030000004 +2014-06-07 00:00:00,0.493837776,1007.772167,0.0,94.50833333,18.91583333,0.535166667,237.69273083333334 +2014-06-07 01:00:00,0.0,1007.431917,0.0,99.89166667,17.85833333,0.9179166670000001,237.69445190000002 +2014-06-07 02:00:00,0.0,1007.273583,0.0,100.0,16.475,0.24958333300000002,237.69620640000002 +2014-06-07 03:00:00,0.0,1007.123167,0.0,100.0,15.65166667,0.071416667,237.69760999999997 +2014-06-07 04:00:00,0.0,1007.336583,3.4512333330000002,100.0,15.78083333,0.05025,237.6992809166667 +2014-06-07 05:00:00,0.0,1007.289833,33.01375,100.0,16.52583333,0.16325,237.69961510000005 +2014-06-07 06:00:00,0.0,1007.3,49.44975,99.94166667,17.88333333,0.278666667,237.7017205 +2014-06-07 07:00:00,0.0,1007.398583,133.7291667,89.26666667,19.98916667,1.3571666669999998,237.70272305000003 +2014-06-07 08:00:00,0.0,1007.083333,56.19716667,76.5925,23.155,2.570083333,237.70136960000002 +2014-06-07 09:00:00,0.0,1006.900556,272.09,66.92666667,23.86666667,2.226666667,237.69654058333333 +2014-06-07 10:00:00,0.0,1006.618556,378.07,65.9675,25.13916667,2.5158333330000002,237.68932216666667 +2014-06-07 11:00:00,0.0,1006.162111,333.445,62.32583333,27.05833333,3.2875,237.68519498333333 +2014-06-07 12:00:00,0.0,1005.865333,277.9525,58.90833333,27.4925,2.693666667,237.68247133333332 +2014-06-07 13:00:00,0.0,1005.4408890000001,273.3033333,54.875,28.15583333,2.3515,237.67973099999998 +2014-06-07 14:00:00,0.0,1004.9102220000001,244.70833330000002,53.10666667,29.0825,2.368833333,237.67695728333334 +2014-06-07 15:00:00,0.0,1004.477444,203.4783333,49.76,28.83583333,2.104666667,237.67451771666666 +2014-06-07 16:00:00,0.0,1003.652445,206.4475,50.6675,28.44583333,2.252166667,237.67284680000003 +2014-06-07 17:00:00,0.0,1003.283333,106.83575,47.78083333,29.60666667,3.096166667,237.6714432 +2014-06-07 18:00:00,0.0,1003.2819999999999,42.51625,46.05083333,29.33166667,2.28575,237.67109230000003 +2014-06-07 19:00:00,0.0,1003.118,18.988375,60.96166667,27.08333333,0.47033333299999996,237.6707414 +2014-06-07 20:00:00,0.0,1005.942333,2.878925,77.12916667,21.99916667,0.513166667,237.6707414 +2014-06-07 21:00:00,15.92153042,1006.6172220000001,0.0,93.19416667,18.22916667,1.168666667,237.67144320000003 +2014-06-07 22:00:00,16.03378306,1007.7617779999999,0.0,98.80833333,16.73416667,0.786333333,237.67451771666666 +2014-06-07 23:00:00,21.51880814,1008.4308890000001,0.0,99.94166667,16.94,1.04725,237.67695728333334 +2014-07-07 00:00:00,7.490992896,1008.962889,0.0,99.73333333,16.8975,0.566416667,237.5574353833333 +2014-07-07 01:00:00,5.008751352,1009.3492949999999,0.0,98.30833333,16.84166667,0.543166667,237.56086080000003 +2014-07-07 02:00:00,2.421557784,1010.0525,0.0,99.925,16.53333333,0.075,237.56358441666666 +2014-07-07 03:00:00,0.0,1010.60125,0.0,98.95833333,16.59333333,0.8584166670000001,237.56600728333333 +2014-07-07 04:00:00,2.419539072,1011.2255560000001,4.930391667,97.25833333,16.07666667,0.278583333,237.56767819999996 +2014-07-07 05:00:00,0.0,1012.131944,14.90825,98.38333333,15.95166667,0.27625,237.57013450000002 +2014-07-07 06:00:00,0.0,1013.137083,49.15866667,97.34166667,15.50666667,0.583916667,237.57188900000003 +2014-07-07 07:00:00,0.0,1013.509583,150.2783333,91.475,16.25,0.9381666670000001,237.57355991666665 +2014-07-07 08:00:00,0.0,1013.741667,121.72416670000001,84.84166667,16.30166667,1.9409999999999998,237.5725573666667 +2014-07-07 09:00:00,0.0,1013.999306,107.6133333,83.45,16.34916667,1.29675,237.5701345 +2014-07-07 10:00:00,0.0,1014.341667,247.05333330000002,79.57916667,17.22666667,1.051916667,237.5687309 +2014-07-07 11:00:00,0.0,1014.251944,296.2866667,70.28666667,18.61666667,1.6126666669999998,237.5646204 +2014-07-07 12:00:00,3.228669816,1013.8455560000001,354.9466667,62.52916667,19.99583333,1.7645,237.55776956666668 +2014-07-07 13:00:00,0.0,1013.4423609999999,390.845,55.14416667,20.805,1.9519166669999999,237.5491642833333 +2014-07-07 14:00:00,0.0,1012.655833,282.6308333,50.03666667,21.25083333,1.84125,237.53990733333333 +2014-07-07 15:00:00,0.0,1012.018056,259.0758333,52.45333333,21.47666667,1.8739166669999998,237.53404235000002 +2014-07-07 16:00:00,0.0,1011.3372220000001,234.9433333,52.875,21.97833333,2.009,237.53163619999998 +2014-07-07 17:00:00,0.0,1011.1269550000001,111.24166670000001,59.17916667,21.91333333,1.856333333,237.5305835 +2014-07-07 18:00:00,0.0,1010.664333,63.37625,64.34416667,21.30083333,1.9418333330000002,237.5305835 +2014-07-07 19:00:00,0.0,1010.252,26.42208333,69.5725,20.47666667,1.851833333,237.5319871 +2014-07-07 20:00:00,0.0,1010.233333,3.01665,77.61,19.02416667,1.15375,237.53435981666664 +2014-07-07 21:00:00,0.0,1009.781833,0.019716667,75.2125,18.67333333,1.233166667,237.53785209999998 +2014-07-07 22:00:00,0.0,1008.8810000000001,0.0,75.83,18.095,1.246583333,237.5412774833333 +2014-07-07 23:00:00,0.0,1008.074667,0.0,85.16666667,16.89666667,0.47875,237.54436868333332 +2014-08-07 00:00:00,0.0,1007.149667,0.0,81.93333333,16.72333333,0.305833333,237.4471204 +2014-08-07 01:00:00,0.0,1006.5635,0.0,84.20333333,17.51583333,0.621416667,237.44506515 +2014-08-07 02:00:00,0.0,1006.237,0.0,99.53333333,15.97,0.131583333,237.4447309666667 +2014-08-07 03:00:00,0.0,1004.881833,0.0,100.0,15.33333333,1.2755,237.44439678333336 +2014-08-07 04:00:00,0.0,1003.984167,1.439316667,100.0,15.25666667,1.8183333330000002,237.44406260000002 +2014-08-07 05:00:00,0.0,1003.702,7.158025,100.0,15.5325,1.1615,237.4447309666667 +2014-08-07 06:00:00,0.0,1003.4789999999999,16.4465,100.0,16.1575,1.028833333,237.44439678333333 +2014-08-07 07:00:00,0.0,1003.1175,15.06691667,100.0,16.43083333,1.28025,237.44471424999998 +2014-08-07 08:00:00,0.0,1002.766667,23.36658333,100.0,16.66166667,0.5895,237.44195719999996 +2014-08-07 09:00:00,0.0,1002.573833,89.0295,100.0,17.37583333,0.624833333,237.44195719999996 +2014-08-07 10:00:00,0.0,1002.4416669999999,153.6266667,98.69166667,18.09083333,0.441833333,237.44230809999996 +2014-08-07 11:00:00,0.0,1002.636472,72.40683333,98.13333333,18.53583333,0.37641666700000004,237.4412888333333 +2014-08-07 12:00:00,0.0,1002.630194,106.48166670000002,100.0,17.21916667,0.42700000000000005,237.4399521 +2014-08-07 13:00:00,0.0,1002.659417,148.93083330000002,97.45833333,17.30166667,0.436833333,237.43650996666665 +2014-08-07 14:00:00,0.0,1002.5853890000001,136.9999167,95.275,17.69583333,0.492166667,237.43513979999997 +2014-08-07 15:00:00,0.0,1002.6,74.46600000000001,96.21666667,17.18583333,0.587666667,237.43064496666662 +2014-08-07 16:00:00,0.0,1002.6646109999999,57.75,98.125,16.56833333,0.522083333,237.4296257 +2014-08-07 17:00:00,0.0,1002.741667,87.29700000000001,96.975,16.80916667,0.4105,237.42822209999997 +2014-08-07 18:00:00,0.0,1002.608333,26.00733333,97.55,16.4625,0.40266666700000003,237.42618356666665 +2014-08-07 19:00:00,0.0,1002.8010830000001,14.25754167,99.33333333,15.89416667,0.49175,237.42584938333331 +2014-08-07 20:00:00,0.0,1003.55325,1.2817,100.0,15.10166667,0.6023333329999999,237.4237607 +2014-08-07 21:00:00,0.0,1004.0583330000001,0.0,99.575,14.5225,1.109666667,237.42340980000003 +2014-08-07 22:00:00,0.0,1004.008333,0.0,100.0,13.58,1.167666667,237.42240725000002 +2014-08-07 23:00:00,0.0,1004.008333,0.0,100.0,13.12916667,0.477916667,237.42000110000004 +2014-09-07 00:00:00,0.0,1003.7124439999999,0.0,100.0,12.62,0.5505,237.80179930000006 +2014-09-07 01:00:00,0.0,1003.465583,0.0,100.0,12.2125,0.5229166670000001,237.80246766666673 +2014-09-07 02:00:00,0.0,1003.278139,0.0,100.0,11.99916667,0.503833333,237.80213348333336 +2014-09-07 03:00:00,0.0,1003.016677,0.0,100.0,11.73833333,0.6489166670000001,237.80380440000002 +2014-09-07 04:00:00,0.0,1002.996778,0.29575,100.0,11.60666667,0.5215,237.80380440000002 +2014-09-07 05:00:00,0.0,1002.858444,4.220416667,100.0,11.56166667,0.718333333,237.80380440000002 +2014-09-07 06:00:00,0.0,1002.064667,15.659,100.0,11.67666667,0.669333333,237.80380440000002 +2014-09-07 07:00:00,0.0,1001.865667,31.21941667,100.0,11.88583333,0.6336666670000001,237.80313603333335 +2014-09-07 08:00:00,0.0,1001.4292220000001,28.99225,100.0,11.91833333,0.543333333,237.80179930000006 +2014-09-07 09:00:00,0.0,1001.0385560000001,59.99466667,100.0,12.29416667,0.46466666700000003,237.80347021666668 +2014-09-07 10:00:00,0.0,1000.882333,54.2185,100.0,12.715,0.47566666700000004,237.80280185 +2014-09-07 11:00:00,0.0,1000.8531109999999,94.2725,100.0,13.28083333,0.599833333,237.80313603333335 +2014-09-07 12:00:00,0.0,1001.0395560000001,107.87,100.0,13.68833333,0.473583333,237.80144840000003 +2014-09-07 13:00:00,0.0,1001.1021109999999,91.65916667,100.0,13.92083333,0.442333333,237.7996939 +2014-09-07 14:00:00,0.0,1000.963556,106.49333329999999,100.0,14.415,0.465416667,237.7993597166667 +2014-09-07 15:00:00,0.0,1000.8697779999999,95.98166667,99.98333333,14.81,0.5455,237.79802298333337 +2014-09-07 16:00:00,0.0,1001.092667,59.59391667,99.975,14.82083333,0.527,237.7966361 +2014-09-07 17:00:00,0.0,1001.258333,33.95991667,100.0,14.53333333,0.33216666699999997,237.79558340000003 +2014-09-07 18:00:00,0.0,1001.5717779999999,23.62616667,100.0,14.26916667,0.26075,237.79488163333335 +2014-09-07 19:00:00,0.0,1001.917611,7.671358333,100.0,14.10333333,0.134666667,237.79417986666667 +2014-09-07 20:00:00,0.0,1002.074083,0.86765,100.0,13.9425,0.144083333,237.7934781 +2014-09-07 21:00:00,0.0,1002.0259169999999,0.0,100.0,13.8725,0.08733333300000001,237.79382898333333 +2014-09-07 22:00:00,0.0,1002.26975,0.0,100.0,13.82916667,0.259583333,237.7934781 +2014-09-07 23:00:00,0.0,1002.463583,0.0,100.0,13.8575,0.166916667,237.7934781 +2014-10-07 00:00:00,0.0,1002.3864169999999,0.0,100.0,13.65166667,0.6801666670000001, +2014-10-07 01:00:00,0.0,1002.531167,0.0,100.0,13.385,0.611166667, +2014-10-07 02:00:00,0.0,1002.735167,0.0,100.0,13.13333333,0.7065, +2014-10-07 03:00:00,0.0,1002.94075,0.0,100.0,13.09833333,0.5531666670000001, +2014-10-07 04:00:00,0.0,1003.0935,2.050941667,100.0,13.14333333,0.28925, +2014-10-07 05:00:00,0.0,1003.550917,20.6885,100.0,13.19166667,0.362916667, +2014-10-07 06:00:00,0.0,1003.89875,38.77125,99.8,13.68,0.4395, +2014-10-07 07:00:00,0.0,1004.691333,98.4375,96.275,14.6175,0.459583333, +2014-10-07 08:00:00,0.0,1004.983333,107.75741670000001,93.4,15.4025,1.345833333, +2014-10-07 09:00:00,0.0,1005.23425,167.57416669999998,88.43333333,16.305,1.619, +2014-10-07 10:00:00,0.0,1005.257083,236.1625,83.165,17.62833333,1.2715, +2014-10-07 11:00:00,0.0,1005.487667,267.4175,83.02583333,18.7575,1.6451666669999998, +2014-10-07 12:00:00,0.0,1005.488639,352.2866667,80.53916667,20.40916667,1.081, +2014-10-07 13:00:00,0.0,1005.361389,348.16833330000003,77.735,22.5175,0.914166667,238.0339525 +2014-10-07 14:00:00,0.0,1005.19,327.1508333,77.32833333,23.63916667,0.8444166670000001,238.03341916666668 +2014-10-07 15:00:00,0.0,1004.9425,110.3165,80.96666667,24.57,0.765916667,238.0327525 +2014-10-07 16:00:00,0.0,1004.6786109999999,99.18416667,83.39166667,24.28583333,1.6179166669999998,238.0340858333333 +2014-10-07 17:00:00,0.0,1004.785,99.2775,81.725,24.435,1.4195,238.0347525 +2014-10-07 18:00:00,0.0,1006.804444,60.05708333,82.93333333,23.38916667,1.5729166669999999,238.03168583333334 +2014-10-07 19:00:00,0.0,1007.3552779999999,19.89575,87.45833333,16.79083333,1.559916667,238.0101025 +2014-10-07 20:00:00,0.0,1007.3263890000001,2.445158333,91.25,16.03166667,0.39091666700000005,238.0025525 +2014-10-07 21:00:00,0.0,1007.4319439999999,0.039433333,92.04166667,15.66583333,0.718166667,238.00051916666666 +2014-10-07 22:00:00,0.0,1007.5425,0.0,90.475,15.49833333,0.204416667,238.0018525 +2014-10-07 23:00:00,0.0,1007.6833330000001,0.0,91.025,15.22166667,0.61775,238.0018525 +2014-11-07 00:00:00,0.0,1007.4347220000001,0.0,94.50833333,15.035,0.7165,237.94635250000002 +2014-11-07 01:00:00,0.0,1007.3083330000001,0.0,99.89166667,15.18,0.901833333,237.9467025 +2014-11-07 02:00:00,0.0,1007.600833,0.0,100.0,15.14833333,0.732916667,237.94635250000002 +2014-11-07 03:00:00,0.0,1007.834167,0.0,100.0,14.6725,0.075166667,237.94775249999998 +2014-11-07 04:00:00,0.0,1008.0425,3.4512333330000002,100.0,14.0375,0.023416667000000002,237.9467025 +2014-11-07 05:00:00,0.0,1008.537202,33.01375,100.0,14.3975,0.054583333,237.9470525 +2014-11-07 06:00:00,0.0,1009.068167,49.44975,99.94166667,16.80166667,0.234166667,237.94635250000002 +2014-11-07 07:00:00,0.0,1009.467417,133.7291667,89.26666667,18.58416667,0.559666667,237.9470525 +2014-11-07 08:00:00,0.0,1009.5583330000001,56.19716667,76.5925,20.0475,0.826,237.94635250000002 +2014-11-07 09:00:00,0.0,1009.335611,272.09,66.92666667,21.80916667,0.87725,237.94636916666664 +2014-11-07 10:00:00,0.0,1009.090917,378.07,65.9675,22.855,0.802166667,237.94435249999995 +2014-11-07 11:00:00,0.0,1008.6235,333.445,62.32583333,24.1,1.25075,237.9446858333333 +2014-11-07 12:00:00,0.0,1008.141667,277.9525,58.90833333,25.365,1.096083333,237.94435249999995 +2014-11-07 13:00:00,0.0,1008.783333,273.3033333,54.875,22.75666667,2.6989166669999998,237.94501916666664 +2014-11-07 14:00:00,0.0,1008.534083,244.70833330000002,53.10666667,18.29,0.9205,237.9456858333333 +2014-11-07 15:00:00,0.0,1008.6833330000001,203.4783333,49.76,18.6725,0.5535,237.94635250000002 +2014-11-07 16:00:00,0.0,1008.331833,206.4475,50.6675,18.51416667,0.6144166670000001,237.94635250000002 +2014-11-07 17:00:00,0.0,1007.832583,106.83575,47.78083333,18.25333333,0.39666666700000003,237.94635250000002 +2014-11-07 18:00:00,0.0,1007.9787779999999,42.51625,46.05083333,18.58583333,0.53275,237.9470525 +2014-11-07 19:00:00,0.0,1008.653778,18.988375,60.96166667,18.58666667,0.169583333,237.9484525 +2014-11-07 20:00:00,0.0,1008.5037779999999,2.878925,77.12916667,17.94333333,0.5335,237.9484525 +2014-11-07 21:00:00,0.0,1008.988669,0.0,93.19416667,17.24666667,0.477916667,237.9484525 +2014-11-07 22:00:00,0.0,1008.911333,0.0,98.80833333,16.45,0.226,237.9491525 +2014-11-07 23:00:00,0.0,1008.841,0.0,99.94166667,16.88583333,0.33025,237.9498525 +2014-12-07 00:00:00,0.0,1008.65,0.0,99.73333333,16.56416667,0.069083333,237.97143583333332 +2014-12-07 01:00:00,0.0,1008.5880000000001,0.0,98.30833333,16.38666667,0.066333333,237.97723583333334 +2014-12-07 02:00:00,0.0,1008.2553330000001,0.0,99.925,16.07833333,0.032583333,237.9833858333333 +2014-12-07 03:00:00,0.0,1008.091667,0.0,98.95833333,15.40916667,0.0795,237.98578583333332 +2014-12-07 04:00:00,0.0,1008.225667,4.930391667,97.25833333,15.44333333,0.090833333,237.99023583333334 +2014-12-07 05:00:00,0.0,1008.4780000000001,14.90825,98.38333333,15.755,0.094,238.0056525 +2014-12-07 06:00:00,0.0,1008.5666669999999,49.15866667,97.34166667,16.43,0.38108333299999997,238.01526916666668 +2014-12-07 07:00:00,0.0,1008.583333,150.2783333,91.475,16.405,0.612083333,238.01900249999994 +2014-12-07 08:00:00,0.0,1008.669667,121.72416670000001,84.84166667,17.50083333,0.99175,238.02691916666663 +2014-12-07 09:00:00,0.0,1008.496333,107.6133333,83.45,19.70416667,1.9795,238.0409358333333 +2014-12-07 10:00:00,0.0,1008.001667,247.05333330000002,79.57916667,20.73916667,1.6199166669999998,238.04540250000002 +2014-12-07 11:00:00,0.0,1007.626667,296.2866667,70.28666667,21.20083333,1.913,238.05121916666664 +2014-12-07 12:00:00,0.0,1007.291667,354.9466667,62.52916667,22.39833333,2.136083333,238.06421916666667 +2014-12-07 13:00:00,0.0,1007.0880000000001,390.845,55.14416667,23.235,1.57875,238.07110250000002 +2014-12-07 14:00:00,0.0,1006.821409,282.6308333,50.03666667,23.62333333,1.328333333,238.08101916666666 +2014-12-07 15:00:00,0.0,1006.45775,259.0758333,52.45333333,23.41916667,1.312083333,238.09540249999998 +2014-12-07 16:00:00,0.0,1006.41725,234.9433333,52.875,23.7775,1.011666667,238.1043358333333 +2014-12-07 17:00:00,0.0,1006.583333,111.24166670000001,59.17916667,22.92583333,1.221833333,238.10911916666666 +2014-12-07 18:00:00,0.0,1006.9291390000001,63.37625,64.34416667,21.4375,0.006999999999999999,238.1128858333333 +2014-12-07 19:00:00,0.0,1007.3952220000001,26.42208333,69.5725,20.4075,0.091916667,238.1043358333333 +2014-12-07 20:00:00,0.0,1007.833917,3.01665,77.61,20.04333333,0.8786666670000001,238.12316916666666 +2014-12-07 21:00:00,0.0,1007.9470279999999,0.019716667,75.2125,18.22416667,0.308833333,238.13276916666666 +2014-12-07 22:00:00,0.0,1007.975,0.0,75.83,16.36166667,0.304083333,238.1348025 +2014-12-07 23:00:00,0.0,1007.727389,0.0,85.16666667,15.715,0.428,238.1509025 +2014-07-13 00:00:00,0.0,1007.28275,0.0,81.93333333,15.245,0.5145,237.78894320000003 +2014-07-13 01:00:00,0.0,1007.2136939999999,0.0,84.20333333,14.64083333,0.645166667,237.78616943333336 +2014-07-13 02:00:00,0.0,1006.9381109999999,0.0,99.53333333,14.785,0.7665833329999999,237.78307825 +2014-07-13 03:00:00,0.0,1006.407167,0.0,100.0,15.26916667,0.615,237.7820256 +2014-07-13 04:00:00,0.0,1006.2392779999999,1.439316667,100.0,15.04166667,0.269583333,237.7803546 +2014-07-13 05:00:00,0.0,1006.2684720000001,7.158025,100.0,14.60833333,0.139833333,237.7782659833333 +2014-07-13 06:00:00,0.0,1005.913694,16.4465,100.0,15.8475,0.18675,237.77758089999998 +2014-07-13 07:00:00,0.0,1005.7862779999999,15.06691667,100.0,16.26416667,0.244416667,237.77657829999998 +2014-07-13 08:00:00,0.0,1005.7215560000001,23.36658333,100.0,16.96333333,0.212333333,237.7759099 +2014-07-13 09:00:00,0.0,1005.475,89.0295,100.0,16.99166667,0.3245,237.77415548333332 +2014-07-13 10:00:00,0.0,1005.5387220000001,153.6266667,98.69166667,17.6175,0.454583333,237.77380459999998 +2014-07-13 11:00:00,0.0,1005.2745,72.40683333,98.13333333,18.32,0.39766666700000003,237.7717660333333 +2014-07-13 12:00:00,0.0,1004.824,106.48166670000002,100.0,19.92916667,0.609583333,237.7696941 +2014-07-13 13:00:00,0.0,1004.388722,148.93083330000002,97.45833333,21.29166667,0.994583333,237.7686414 +2014-07-13 14:00:00,0.0,1004.135778,136.9999167,95.275,20.03416667,0.946916667,237.7675887 +2014-07-13 15:00:00,0.0,1003.994111,74.46600000000001,96.21666667,19.36916667,0.36666666700000006,237.76591778333332 +2014-07-13 16:00:00,0.0,1003.832833,57.75,98.125,20.78166667,0.678083333,237.76558359999999 +2014-07-13 17:00:00,0.0,1003.647056,87.29700000000001,96.975,21.12,0.48516666700000005,237.76523269999998 +2014-07-13 18:00:00,0.0,1003.728444,26.00733333,97.55,18.73416667,0.1975,237.76347819999998 +2014-07-13 19:00:00,0.0,1003.9475560000001,14.25754167,99.33333333,17.99,0.10233333300000001,237.76347819999998 +2014-07-13 20:00:00,0.0,1004.372556,1.2817,100.0,17.44666667,0.004,237.76314401666664 +2014-07-13 21:00:00,0.0,1004.341667,0.0,99.575,17.0725,0.283833333,237.76349491666664 +2014-07-13 22:00:00,0.0,1004.408333,0.0,100.0,16.27583333,0.159833333,237.76523269999998 +2014-07-13 23:00:00,0.0,1004.7034150000001,0.0,100.0,15.66083333,0.001,237.7675887 +2014-07-14 00:00:00,0.0,1004.8,0.0,100.0,15.9525,0.0048333329999999996,237.76793959999998 +2014-07-14 01:00:00,0.0,1005.150833,0.0,100.0,15.04,0.093833333,237.7696941 +2014-07-14 02:00:00,0.0,1005.452917,0.0,100.0,14.79083333,0.047583333,237.7703958666667 +2014-07-14 03:00:00,0.0,1005.742083,0.0,100.0,15.21833333,0.173916667,237.77144851666665 +2014-07-14 04:00:00,0.0,1006.170417,0.29575,100.0,14.75583333,0.18025,237.7717994 +2014-07-14 05:00:00,0.0,1006.872917,4.220416667,100.0,15.54,0.0295,237.7696941 +2014-07-14 06:00:00,0.0,1007.49,15.659,100.0,17.25833333,0.18225,237.7696941 +2014-07-14 07:00:00,0.0,1008.039583,31.21941667,100.0,18.12916667,0.361833333,237.76934319999998 +2014-07-14 08:00:00,0.0,1008.327917,28.99225,100.0,19.0825,0.527833333,237.7689923 +2014-07-14 09:00:00,0.0,1008.8175,59.99466667,100.0,19.56916667,1.3825833330000001,237.7675887 +2014-07-14 10:00:00,0.0,1009.0975,54.2185,100.0,20.5475,1.0985,237.76658614999997 +2014-07-14 11:00:00,0.0,1009.252917,94.2725,100.0,21.74916667,1.210583333,237.76418 +2014-07-14 12:00:00,0.0,1009.51125,107.87,100.0,22.26083333,1.48575,237.76145638333332 +2014-07-14 13:00:00,0.0,1009.580417,91.65916667,100.0,23.1475,1.42275,237.75836515 +2014-07-14 14:00:00,0.0,1009.75375,106.49333329999999,100.0,23.38583333,1.50175,237.755959 +2014-07-14 15:00:00,0.0,1010.053333,95.98166667,99.98333333,23.8125,1.97525,237.7507958 +2014-07-14 16:00:00,0.0,1010.6504359999999,59.59391667,99.975,22.24833333,2.1430000000000002,237.74803874999998 +2014-07-14 17:00:00,0.0,1011.039444,33.95991667,100.0,21.19083333,1.7498333330000002,237.7452817 +2014-07-14 18:00:00,0.0,1011.5144449999999,23.62616667,100.0,20.56,1.0895,237.7432598833333 +2014-07-14 19:00:00,0.0,1011.775667,7.671358333,100.0,19.99833333,0.50875,237.74082030000002 +2014-07-14 20:00:00,0.0,1012.417333,0.86765,100.0,18.0525,0.046916667,237.7387984833333 +2014-07-14 21:00:00,0.0,1013.245222,0.0,100.0,15.92083333,0.007333333,237.73604143333338 +2014-07-14 22:00:00,0.0,1013.861889,0.0,100.0,14.62583333,0.027916667000000003,237.73470469999998 +2014-07-14 23:00:00,0.0,1014.3083330000001,0.0,100.0,14.27583333,0.164666667,237.7329502 +2014-07-15 00:00:00,0.0,1014.6394439999999,0.0,100.0,14.47833333,0.065916667,237.73189753333335 +2014-07-15 01:00:00,0.0,1014.8275560000001,0.0,100.0,14.63416667,0.0,237.728823 +2014-07-15 02:00:00,0.0,1014.9782220000001,0.0,100.0,14.45166667,0.041333333,237.72638349999997 +2014-07-15 03:00:00,0.0,1015.0137779999999,0.0,100.0,12.9425,0.04,237.7260493166667 +2014-07-15 04:00:00,0.0,1015.1561109999999,2.050941667,100.0,12.13833333,0.135833333,237.7243784 +2014-07-15 05:00:00,0.0,1015.575333,20.6885,100.0,12.50416667,0.0425,237.72332570000003 +2014-07-15 06:00:00,0.0,1015.883667,38.77125,99.8,15.3775,0.207666667,237.722273 +2014-07-15 07:00:00,0.0,1016.309,98.4375,96.275,18.03083333,0.369666667,237.72127045 +2014-07-15 08:00:00,0.0,1016.430444,107.75741670000001,93.4,20.01833333,0.96325,237.72026789999998 +2014-07-15 09:00:00,0.0,1016.5557140000001,167.57416669999998,88.43333333,21.49833333,1.004,237.71851340000003 +2014-07-15 10:00:00,0.0,1016.458083,236.1625,83.165,21.81583333,1.073833333,237.71578978333335 +2014-07-15 11:00:00,0.0,1016.475,267.4175,83.02583333,23.315,1.21925,237.71094405 +2014-07-15 12:00:00,0.0,1016.308083,352.2866667,80.53916667,24.03916667,1.265083333,237.70818700000004 +2014-07-15 13:00:00,0.0,1016.141667,348.16833330000003,77.735,24.86916667,1.218166667,237.70548010000005 +2014-07-15 14:00:00,0.0,1016.0666669999999,383.695,68.45833333,25.41416667,1.140333333,237.70238886666667 +2014-07-15 15:00:00,0.0,1015.9776109999999,454.4,55.52333333,24.65916667,1.4253333330000002,237.69928091666668 +2014-07-15 16:00:00,0.0,1015.8692779999999,365.55,55.50916667,24.93583333,1.39475,237.6972591 +2014-07-15 17:00:00,0.0,1015.7640560000001,137.3808333,55.2325,24.80916667,1.183083333,237.69480280000002 +2014-07-15 18:00:00,0.0,1016.0697779999999,39.67666667,58.59916667,24.46166667,1.37775,237.6920624666667 +2014-07-15 19:00:00,0.0,1016.503111,31.67666667,64.07916667,23.54166667,1.154083333,237.6892888 +2014-07-15 20:00:00,0.0,1017.108833,5.71775,76.73583333,20.26333333,0.62375,237.6876178 +2014-07-15 21:00:00,0.0,1017.57525,0.022083332999999997,93.84166667,17.17166667,0.013083333,237.68589674999998 +2014-07-15 22:00:00,0.0,1017.9505,0.0,98.48333333,15.28,0.043333332999999995,237.68282221666666 +2014-07-15 23:00:00,0.0,1018.15,0.0,100.0,15.0875,0.043583332999999995,237.68106780000002 +2014-07-16 00:00:00,0.0,1018.108083,0.0,100.0,15.77583333,0.027916667000000003,237.68006519999997 +2014-07-16 01:00:00,0.0,1017.989028,0.0,100.0,16.04166667,0.037666667,237.67906259999998 +2014-07-16 02:00:00,0.0,1017.977667,0.0,100.0,16.16583333,0.01225,237.67800995000002 +2014-07-16 03:00:00,0.0,1017.986167,0.0,100.0,16.28583333,0.00041666699999999996,237.67695730000005 +2014-07-16 04:00:00,0.0,1017.961,1.1325,100.0,16.19583333,0.06975,237.67695730000005 +2014-07-16 05:00:00,0.0,1017.980667,12.84883333,99.99166667,16.51416667,0.018583333,237.67555370000002 +2014-07-16 06:00:00,0.0,1017.925,46.21166667,98.95,17.08583333,0.051583332999999995,237.6748519 +2014-07-16 07:00:00,0.0,1018.091833,155.65,90.16666667,18.90416667,0.11325,237.67281336666667 +2014-07-16 08:00:00,0.0,1018.152833,232.95833330000002,82.45916667,20.8525,0.516333333,237.6707414 +2014-07-16 09:00:00,0.0,1018.1665,376.8583333,72.74,22.1,0.570666667,237.67007303333335 +2014-07-16 10:00:00,0.0,1017.966667,519.3416666999999,66.54666667,23.86416667,0.822833333,237.6683854 +2014-07-16 11:00:00,0.0,1017.794167,594.6083332999999,61.515,24.1675,1.1085,237.66562835000002 +2014-07-16 12:00:00,0.0,1017.474833,460.59166669999996,57.905,25.12083333,0.788333333,237.66287129999998 +2014-07-16 13:00:00,0.0,1017.347333,535.7,56.54,25.8925,1.174583333,237.65946259999996 +2014-07-16 14:00:00,0.0,1017.071833,677.8083333,51.22916667,26.25666667,1.085083333,237.6573572 +2014-07-16 15:00:00,0.0,1016.7805,489.9833333000001,50.34666667,26.5675,1.039416667,237.65426596666669 +2014-07-16 16:00:00,0.0,1016.6525,517.8333333,47.65916667,27.29,0.9704166670000001,237.64983800000002 +2014-07-16 17:00:00,0.0,1016.269333,106.50333329999998,49.13166667,27.43916667,0.8540000000000001,237.64808349999998 +2014-07-16 18:00:00,0.0,1016.172315,37.09166667,50.58416667,27.2825,0.603833333,237.6453766 +2014-07-16 19:00:00,0.0,1016.4085,29.55166667,65.92166667,26.16083333,0.4005,237.64363881666668 +2014-07-16 20:00:00,0.0,1016.847361,5.97575,84.8175,20.70666667,0.39883333299999996,237.64126609999997 +2014-07-16 21:00:00,0.0,1017.308417,0.000916667,94.14166667,16.82416667,0.337583333,237.64056429999997 +2014-07-16 22:00:00,0.0,1017.583333,0.0,97.81666667,15.2375,0.105083333,237.63880985 +2014-07-16 23:00:00,0.0,1017.708333,0.0,99.70833333,14.09,0.015,237.63775719999998 +2014-07-17 00:00:00,0.0,1017.69175,0.0,100.0,13.34833333,0.0,237.63775719999998 +2014-07-17 01:00:00,0.0,1017.7027220000001,0.0,100.0,12.89,0.0,237.63503354999997 +2014-07-17 02:00:00,0.0,1017.672194,0.0,100.0,12.38833333,0.0,237.63364669999996 +2014-07-17 03:00:00,0.0,1017.561056,0.0,100.0,12.025,0.0,237.63331251666662 +2014-07-17 04:00:00,0.0,1017.56675,2.5845,100.0,11.63333333,0.023583332999999998,237.63197578333333 +2014-07-17 05:00:00,0.0,1017.863944,72.87916667,99.98333333,12.845,0.0,237.63164159999997 +2014-07-17 06:00:00,0.0,1018.0194720000001,182.2166667,91.40833333,16.39833333,0.1255,237.63164159999997 +2014-07-17 07:00:00,0.0,1018.1472779999999,247.765,80.99583333,18.9625,0.32875,237.6295362 +2014-07-17 08:00:00,0.0,1018.258417,190.1,76.83583333,20.75833333,0.874416667,237.62920201666665 +2014-07-17 09:00:00,0.0,1018.2137779999999,366.4916667,68.56916667,23.61166667,0.634166667,237.6271634833333 +2014-07-17 10:00:00,0.0,1018.019306,596.625,56.515,26.25083333,0.9115,237.6247573333333 +2014-07-17 11:00:00,0.0,1017.813944,607.2333332999999,54.4225,27.06583333,0.785083333,237.6216661 +2014-07-17 12:00:00,0.0,1017.552778,505.7333333000001,54.08,27.44583333,1.310333333,237.61820724999998 +2014-07-17 13:00:00,0.0,1017.305556,685.5083333,51.4325,28.0625,0.883083333,237.61545020000003 +2014-07-17 14:00:00,0.0,1017.016667,734.9583332999999,48.41083333,27.4075,0.6085,237.61307748333334 +2014-07-17 15:00:00,0.0,1016.4972220000001,558.7416667,49.3975,28.36,1.30525,237.60998625 +2014-07-17 16:00:00,0.0,1016.102778,526.6916666999999,50.76916667,28.755,1.231333333,237.607931 +2014-07-17 17:00:00,0.0,1015.5055560000001,126.765,58.75083333,28.9,1.27775,237.60654411666667 +2014-07-17 18:00:00,0.0,1015.3777779999999,38.38916667,64.19916667,28.99916667,0.73075,237.60487319999996 +2014-07-17 19:00:00,0.0,1015.458333,27.07,73.285,27.95083333,0.199333333,237.60136419999995 +2014-07-17 20:00:00,0.0,1015.9805560000001,5.267666667,87.16666667,21.87833333,0.008416667,237.59999403333333 +2014-07-17 21:00:00,0.0,1016.044444,0.015,93.14166667,18.36333333,0.0,237.59899148333338 +2014-07-17 22:00:00,0.0,1016.091667,0.0,96.31666667,16.65583333,0.0,237.59865730000004 +2014-07-17 23:00:00,0.0,1016.0666669999999,0.0,99.59166667,15.57666667,0.0,237.59865730000004 +2014-07-18 00:00:00,0.0,1015.8638890000001,0.0,100.0,14.89583333,0.0,237.59865730000004 +2014-07-18 01:00:00,0.0,1015.508333,0.0,100.0,14.25166667,0.0,237.59865730000004 +2014-07-18 02:00:00,0.0,1015.197222,0.0,100.0,13.55666667,0.0,237.59865730000004 +2014-07-18 03:00:00,0.0,1015.2222220000001,0.0,100.0,12.96416667,0.0,237.59656868333335 +2014-07-18 04:00:00,0.0,1015.499917,2.4380833330000002,100.0,12.54666667,0.0,237.5958836 +2014-07-18 05:00:00,0.0,1015.78325,73.33166667,100.0,13.74,0.0,237.59488100000002 +2014-07-18 06:00:00,0.0,1015.905583,180.0333333,92.675,18.03833333,0.0,237.59454680000002 +2014-07-18 07:00:00,0.0,1015.736167,244.0008333,84.60083333,19.7075,0.6559166670000001,237.59454680000002 +2014-07-18 08:00:00,0.0,1015.522333,178.155,73.57166667,22.955,0.447166667,237.59488100000002 +2014-07-18 09:00:00,0.0,1015.161167,375.065,63.91583333,25.37083333,1.0555,237.60236678 +2014-07-18 10:00:00,0.0,1015.025083,612.2666667000001,54.36333333,27.81,1.3971666669999998,237.61616871666664 +2014-07-18 11:00:00,0.0,1014.730667,677.325,47.97,29.26083333,2.0485833330000003,237.60241691666667 +2014-07-18 12:00:00,0.0,1014.21125,714.4166667000001,44.12083333,30.345,2.0305,237.59212398333332 +2014-07-18 13:00:00,0.0,1013.76125,715.525,41.325,31.11083333,2.092166667,237.58487215 +2014-07-18 14:00:00,0.0,1013.405583,659.4666667,39.91083333,31.54666667,2.522583333,237.58007656666666 +2014-07-18 15:00:00,0.0,1012.886333,524.8,38.2025,31.885,2.114833333,237.57494680000002 +2014-07-18 16:00:00,0.0,1012.2251669999999,431.075,39.23333333,31.94416667,1.9536666669999998,237.57013450000002 +2014-07-18 17:00:00,0.0,1011.966667,134.7325,42.95916667,31.76833333,1.4941666669999998,237.56667564999998 +2014-07-18 18:00:00,0.0,1011.82775,49.90916667,52.86583333,31.38333333,1.417666667,237.56358441666669 +2014-07-18 19:00:00,0.0,1011.916667,28.57166667,69.765,29.38083333,0.42658333299999995,237.56156260000003 +2014-07-18 20:00:00,0.0,1011.9028890000001,4.86225,84.63666667,22.75666667,0.0010833330000000001,237.55945719999997 +2014-07-18 21:00:00,0.0,1011.883167,0.0075,91.68333333,18.78416667,0.0,237.55945719999997 +2014-07-18 22:00:00,0.0,1012.125,0.0,96.75,17.2275,0.0,237.55745209999995 +2014-07-18 23:00:00,0.0,1012.2806109999999,0.0,99.34166667,16.27666667,0.0,237.55745209999995 +2014-07-19 00:00:00,0.0,1011.9195560000001,0.0,100.0,15.64166667,0.0,237.5577862833333 +2014-07-19 01:00:00,0.0,1011.9056109999999,0.0,100.0,15.12333333,0.0,237.5577862833333 +2014-07-19 02:00:00,0.0,1011.550167,0.0,100.0,14.67583333,0.0,237.55745209999995 +2014-07-19 03:00:00,0.0,1011.536056,0.0,100.0,14.29,0.0,237.55745209999995 +2014-07-19 04:00:00,0.0,1011.575,4.772583333,100.0,13.805,0.0,237.55710119999995 +2014-07-19 05:00:00,0.0,1011.555444,49.57333333,100.0,14.915,0.0,237.55534669999997 +2014-07-19 06:00:00,0.0,1011.6916669999999,168.8666667,94.75,17.775,0.0,237.55534669999997 +2014-07-19 07:00:00,0.0,1011.469722,238.9891667,85.59166667,20.4225,1.168583333,237.55534669999997 +2014-07-19 08:00:00,0.0,1011.0585,181.5541667,69.45166667,23.87166667,0.847833333,237.55569759999995 +2014-07-19 09:00:00,0.0,1010.6585,366.1925,56.9275,27.1075,1.422166667,237.55365906666665 +2014-07-19 10:00:00,0.0,1010.463944,601.1666667000001,50.44583333,29.08166667,1.891583333,237.54949846666662 +2014-07-19 11:00:00,0.0,1010.0033890000001,660.6833333,46.31083333,30.53,1.9938333330000002,237.54607305 +2014-07-19 12:00:00,0.0,1009.45,687.9333333,40.75583333,31.60916667,2.487083333,237.54299851666667 +2014-07-19 13:00:00,0.0,1009.111501,680.4416667,37.77583333,31.88833333,2.99425,237.53922226666668 +2014-07-19 14:00:00,0.0,1008.833583,656.3083333,40.03916667,32.38,2.653,237.53404235000002 +2014-07-19 15:00:00,0.0,1008.367167,562.1083332999999,40.20416667,32.57416667,2.270666667,237.53060021666667 +2014-07-19 16:00:00,0.0,1007.5563890000001,421.775,39.31833333,32.75,2.26225,237.52752569999998 +2014-07-19 17:00:00,0.0,1006.947306,162.91666669999998,52.39333333,32.01916667,1.5589166669999999,237.5248020833333 +2014-07-19 18:00:00,0.0,1007.041667,85.07,66.185,31.39333333,0.56125,237.52341520000002 +2014-07-19 19:00:00,0.0,1006.8693609999999,30.27083333,74.34666667,29.28916667,0.15708333300000002,237.5223625 +2014-07-19 20:00:00,0.0,1006.95,3.151416667,88.61666667,22.89416667,0.001,237.5223625 +2014-07-19 21:00:00,0.0,1006.75025,0.0,93.40833333,20.17166667,0.0,237.52306430000002 +2014-07-19 22:00:00,0.0,1006.458583,0.0,97.075,18.87,0.0,237.52411699999996 +2014-07-19 23:00:00,0.0,1006.2862779999999,0.0,98.925,18.05583333,0.0,237.52271340000001 +2014-07-20 00:00:00,0.0,1006.008583,0.0,100.0,17.53666667,0.0,237.52341520000002 +2014-07-20 01:00:00,0.0,1005.7615279999999,0.0,100.0,17.60666667,0.0,237.5244679 +2014-07-20 02:00:00,0.0,1005.308583,0.0,100.0,17.37833333,0.0,237.52547044999997 +2014-07-20 03:00:00,0.0,1005.27475,0.0,100.0,17.33083333,0.0,237.52647299999998 +2014-07-20 04:00:00,0.0,1005.871556,2.1975,100.0,17.37916667,0.0025833329999999997,237.52647299999998 +2014-07-20 05:00:00,0.0,1006.646518,47.69166667,99.98333333,17.65166667,0.005416666999999999,237.5248020833333 +2014-07-20 06:00:00,0.0,1007.208333,110.41333329999999,91.7,20.58333333,0.1615,237.52306430000002 +2014-07-20 07:00:00,2.420878824,1007.080333,70.125,91.675,22.08666667,0.554583333,237.52411699999996 +2014-07-20 08:00:00,0.0,1007.083667,129.00166670000002,89.65833333,22.89333333,0.5056666670000001,237.52306430000002 +2014-07-20 09:00:00,0.0,1006.680667,67.81916667,92.06666667,22.61333333,0.347416667,237.52271340000001 +2014-07-20 10:00:00,0.0,1006.614333,124.73333329999998,89.03333333,24.045,0.8029166670000001,237.52271340000001 +2014-07-20 11:00:00,0.0,1006.494333,230.35,82.21583333,24.6375,0.86225,237.5223625 +2014-07-20 12:00:00,0.0,1006.364333,499.6083333000001,64.46666667,26.97416667,0.5509166670000001,237.5199730666667 +2014-07-20 13:00:00,0.0,1006.341333,531.025,52.71666667,30.1375,1.3648333330000002,237.51410806666664 +2014-07-20 14:00:00,0.0,1006.294667,272.4166667,53.2575,29.50416667,2.2618333330000002,237.5093292 +2014-07-20 15:00:00,0.0,1005.850667,226.3416667,55.98333333,28.54166667,1.568583333,237.50725723333332 +2014-07-20 16:00:00,0.0,1005.65,245.95833330000002,54.17833333,28.05833333,0.702833333,237.50486784999998 +2014-07-20 17:00:00,0.0,1005.963333,116.675,62.25166667,26.86333333,0.308083333,237.50314679999997 +2014-07-20 18:00:00,0.0,1006.311,48.17916667,68.94833333,25.51083333,0.46683333299999996,237.5021442 +2014-07-20 19:00:00,0.0,1006.2636669999999,15.29891667,76.97916667,23.47,0.011583333000000001,237.50381519999996 +2014-07-20 20:00:00,0.0,1006.253,0.861083333,90.4,22.05,0.61975,237.50381519999996 +2014-07-20 21:00:00,9.801251376,1006.3910000000001,0.0,97.68333333,20.95583333,0.29683333300000003,237.50281259999997 +2014-07-20 22:00:00,20.09199545,1006.941722,0.0,100.0,20.3025,0.41766666700000005,237.50314679999997 +2014-07-20 23:00:00,70.22908505,1006.983333,0.0,100.0,19.74916667,0.200166667,237.50486784999998 +2014-07-21 00:00:00,16.88147083,1006.6723609999999,0.0,100.0,19.345,0.222333333,237.50829321666666 +2014-07-21 01:00:00,0.0,1006.591667,0.0,100.0,18.41166667,0.108333333,237.51069936666667 +2014-07-21 02:00:00,2.4050227680000003,1006.50875,0.0,100.0,18.27333333,0.0905,237.51308880000002 +2014-07-21 03:00:00,0.0,1006.261389,0.0,100.0,18.23833333,0.0145,237.51414150000002 +2014-07-21 04:00:00,0.0,1006.241667,0.529166667,100.0,17.97416667,0.029083333,237.51273790000002 +2014-07-21 05:00:00,0.0,1006.1890279999999,11.59875,100.0,18.145,0.016833333,237.51308880000002 +2014-07-21 06:00:00,0.0,1006.210556,33.30166667,100.0,18.47583333,0.057083333,237.51414150000002 +2014-07-21 07:00:00,9.726710832,1006.571528,56.555,100.0,18.605,0.08608333300000001,237.51414150000002 +2014-07-21 08:00:00,2.417096088,1006.975,68.5425,100.0,19.08416667,0.048333333,237.51414150000002 +2014-07-21 09:00:00,2.4050227680000003,1007.324583,192.95,97.375,19.63833333,0.43141666700000003,237.51414150000002 +2014-07-21 10:00:00,0.0,1007.239028,233.19166669999998,93.6,20.67,0.755083333,237.51414150000002 +2014-07-21 11:00:00,0.0,1007.432917,326.875,85.48333333,22.14333333,0.42825,237.51310551666666 +2014-07-21 12:00:00,0.0,1007.1618060000001,444.34166669999996,81.24916667,23.34666667,0.645833333,237.510031 +2014-07-21 13:00:00,0.0,1007.288194,133.1833333,83.17583333,23.20166667,0.704333333,237.50725723333332 +2014-07-21 14:00:00,0.0,1007.425417,158.41666669999998,83.215,23.58583333,0.80325,237.5059205 +2014-07-21 15:00:00,31.714294199999998,1007.366186,180.6166667,80.33416667,22.335,1.6119999999999999,237.50521873333332 +2014-07-21 16:00:00,0.0,1007.552611,142.75,80.71,22.84,0.97975,237.50348099999997 +2014-07-21 17:00:00,0.0,1007.525,136.8916667,84.63333333,23.75666667,0.709666667,237.50181 +2014-07-21 18:00:00,0.0,1007.832833,101.8891667,80.13666667,23.84666667,2.068666667,237.49970469999997 +2014-07-21 19:00:00,0.0,1008.2797220000001,30.88808333,82.25416667,22.915,1.134666667,237.49661346666662 +2014-07-21 20:00:00,0.0,1008.605222,2.438416667,87.75,21.80833333,0.638166667,237.49559419999994 +2014-07-21 21:00:00,0.0,1008.807833,0.0,93.68333333,20.13833333,0.168083333,237.4959283833333 +2014-07-21 22:00:00,0.0,1009.174,0.0,99.54166667,18.83,0.035,237.49559419999994 +2014-07-21 23:00:00,0.0,1009.375,0.0,98.45,19.30583333,0.240083333,237.49659674999998 +2014-07-22 00:00:00,37.07400602,1009.2005,0.0,98.78333333,19.775,0.602666667,237.49759930000002 +2014-07-22 01:00:00,0.0,1009.3083330000001,0.0,100.0,19.28416667,0.229083333,237.4979502 +2014-07-22 02:00:00,14.91624802,1009.2276109999999,0.0,100.0,19.43416667,0.413916667,237.49726511666668 +2014-07-22 03:00:00,44.99226698,1009.4218890000001,0.0,100.0,19.64166667,0.8464166670000001,237.4979502 +2014-07-22 04:00:00,2.8346146560000003,1009.5245,2.4268333330000003,100.0,19.46,1.5655,237.50075735 +2014-07-22 05:00:00,0.0,1009.907833,16.29591667,100.0,19.28166667,1.13475,237.50181 +2014-07-22 06:00:00,0.0,1010.371389,87.65583333,99.95,19.88833333,1.90525,237.50281259999997 +2014-07-22 07:00:00,0.0,1010.852102,81.1325,98.79166667,20.10833333,2.36225,237.50381519999996 +2014-07-22 08:00:00,0.0,1011.32125,117.475,96.68333333,20.42083333,2.352833333,237.50348099999997 +2014-07-22 09:00:00,0.0,1011.6885,233.1166667,90.05833333,21.7525,2.632583333,237.50214419999998 +2014-07-22 10:00:00,0.0,1011.65775,488.90833330000004,80.05333333,23.59166667,2.69325,237.50181 +2014-07-22 11:00:00,0.0,1011.83075,618.6333333,71.18833333,25.36916667,2.9275833330000003,237.49970469999997 +2014-07-22 12:00:00,0.0,1011.858333,685.8416667,63.95583333,26.55666667,3.7560833330000003,237.49659674999998 +2014-07-22 13:00:00,0.0,1011.735917,548.6333333,59.16416667,27.11916667,3.325,237.49282043333332 +2014-07-22 14:00:00,0.0,1011.872417,595.4583332999999,56.80166667,27.36833333,3.4695,237.48802485 +2014-07-22 15:00:00,0.0,1011.673,472.325,56.355,27.68333333,3.3835833330000002,237.48421510000003 +2014-07-22 16:00:00,0.0,1011.441083,278.785,60.525,27.02833333,3.349333333,237.48149148333334 +2014-07-22 17:00:00,0.0,1011.918667,125.31166670000002,62.94666667,26.86416667,3.576083333,237.4801046 +2014-07-22 18:00:00,0.0,1012.4405,73.51083333,65.26,26.26666667,3.43775,237.47905189999997 +2014-07-22 19:00:00,0.0,1013.001417,29.26416667,68.26916667,25.52916667,3.012833333,237.47838353333336 +2014-07-22 20:00:00,0.0,1013.67125,4.24425,87.67416667,23.26416667,0.756583333,237.47738098333335 +2014-07-22 21:00:00,0.0,1013.946833,0.0,95.80833333,19.72416667,0.00475,237.48215985 +2014-07-22 22:00:00,0.0,1014.083333,0.0,97.95,18.66583333,0.015083333,237.48665468333334 +2014-07-22 23:00:00,0.0,1014.060917,0.0,99.60833333,17.71416667,0.032166667,237.4900801 +2014-07-23 00:00:00,0.0,1013.9788060000001,0.0,100.0,16.94333333,0.0005,237.49043099999997 +2014-07-23 01:00:00,0.0,1013.875,0.0,100.0,16.24583333,0.018333333,237.49148369999997 +2014-07-23 02:00:00,0.0,1013.6064439999999,0.0,100.0,15.95666667,0.003833333,237.49385641666666 +2014-07-23 03:00:00,0.0,1013.549333,0.0,100.0,15.47083333,0.0055,237.49524329999997 +2014-07-23 04:00:00,0.0,1013.7025560000001,1.7335833330000001,100.0,14.9125,0.0025833329999999997,237.49559419999994 +2014-07-23 05:00:00,0.0,1013.993556,69.13083333,100.0,15.92083333,0.04975,237.49559419999994 +2014-07-23 06:00:00,0.0,1014.1833330000001,104.8075,95.28333333,18.91833333,0.7665,237.4938397 +2014-07-23 07:00:00,0.0,1014.266667,202.1333333,85.69166667,20.04166667,2.10225,237.49348880000002 +2014-07-23 08:00:00,0.0,1014.241667,201.2833333,80.73583333,21.1,2.3178333330000003,237.4948924 +2014-07-23 09:00:00,0.0,1014.017333,378.53333330000004,75.765,22.5725,2.5644166669999997,237.49215206666665 +2014-07-23 10:00:00,0.0,1013.758333,576.95,69.0375,24.38166667,2.877583333,237.48769066666668 +2014-07-23 11:00:00,0.0,1013.4680000000001,581.8166667,65.08833333,25.2075,3.5148333330000003,237.48317911666666 +2014-07-23 12:00:00,0.0,1013.2115560000001,649.325,60.46416667,26.15083333,3.735833333,237.4794028 +2014-07-23 13:00:00,0.0,1012.793,628.4,57.22166667,27.14833333,3.085666667,237.47462393333333 +2014-07-23 14:00:00,0.0,1011.993,579.4416667,50.58,27.81833333,3.01375,237.46982835000003 +2014-07-23 15:00:00,0.0,1011.6321109999999,473.6916666999999,49.06,27.9925,3.003833333,237.4660186333333 +2014-07-23 16:00:00,0.0,1011.0089999999999,313.9333333,48.4875,27.7675,2.9735,237.4629441 +2014-07-23 17:00:00,0.0,1011.0967609999999,137.5141667,54.17083333,26.9,4.43225,237.4598362 +2014-07-23 18:00:00,0.0,1011.158333,60.62583333,56.40333333,26.29166667,3.649833333,237.45674498333332 +2014-07-23 19:00:00,0.0,1011.559361,19.84791667,67.45833333,24.8,2.4931666669999997,237.45572570000002 +2014-07-23 20:00:00,0.0,1011.8166669999999,2.8545,87.275,21.0975,0.208333333,237.4543889 +2014-07-23 21:00:00,0.0,1011.908333,0.0,94.70833333,17.83,0.08800000000000001,237.45368713333332 +2014-07-23 22:00:00,0.0,1011.766667,0.0,98.51666667,16.59166667,0.09275,237.4543889 +2014-07-23 23:00:00,0.0,1011.714139,0.0,99.975,15.74,0.055416667,237.4543889 +2014-07-24 00:00:00,0.0,1011.3873609999999,0.0,100.0,15.305,0.050166667000000005,237.45605990000004 +2014-07-24 01:00:00,0.0,1010.934083,0.0,100.0,14.84166667,0.183,237.45674498333335 +2014-07-24 02:00:00,0.0,1010.7,0.0,100.0,14.97833333,0.333583333,237.45849939999997 +2014-07-24 03:00:00,0.0,1010.495694,0.0,100.0,13.86666667,0.020416667,237.45744675 +2014-07-24 04:00:00,0.0,1010.430056,1.5336666669999999,100.0,12.7875,0.020916667,237.45779763333329 +2014-07-24 05:00:00,0.0,1010.9101109999999,49.53833333,100.0,13.45416667,0.4975,237.45849939999997 +2014-07-24 06:00:00,0.0,1011.088389,149.12083330000002,92.80833333,16.98833333,1.126,237.45849939999997 +2014-07-24 07:00:00,0.0,1011.180056,228.8608333,79.1025,18.61666667,2.8645,237.45849939999997 +2014-07-24 08:00:00,0.0,1011.048972,185.2666667,74.38,19.9575,2.440666667,237.45849939999997 +2014-07-24 09:00:00,0.0,1010.852536,353.0166667,67.415,21.755,2.595333333,237.45537481666668 +2014-07-24 10:00:00,0.0,1010.715,584.625,63.28666667,23.01,3.446,237.44884146666666 +2014-07-24 11:00:00,0.0,1010.400833,663.7833333,57.315,24.07416667,3.730416667,237.4453993333333 +2014-07-24 12:00:00,0.0,1009.965,711.975,53.96166667,25.17416667,2.709833333,237.4412888333333 +2014-07-24 13:00:00,0.0,1009.470833,572.7333332999999,50.7825,25.29166667,3.416416667,237.43854849999994 +2014-07-24 14:00:00,0.0,1009.0975,572.4666667,49.15083333,25.915,2.542333333,237.43513979999997 +2014-07-24 15:00:00,0.0,1008.953333,488.28333330000004,45.63,26.28666667,2.5596666669999997,237.4330344 +2014-07-24 16:00:00,0.0,1008.9175,194.95,51.0275,25.765,2.1109999999999998,237.43096243333335 +2014-07-24 17:00:00,1755.6531719999998,1010.070833,41.76408333,78.17666667,20.09583333,3.042333333,237.45126429999996 +2014-07-24 18:00:00,2056.548871,1009.9333330000001,4.224416667,97.94166667,16.87583333,3.552333333,238.0893436 +2014-07-24 19:00:00,0.0,1010.224167,7.719916667000001,100.0,16.6875,0.981,238.15801898333333 +2014-07-24 20:00:00,0.0,1010.488333,2.2311666669999997,100.0,17.47166667,1.18875,238.01142798333333 +2014-07-24 21:00:00,0.0,1010.6275,0.0,100.0,16.7525,0.409083333,237.94175006666669 +2014-07-24 22:00:00,0.0,1010.6916669999999,0.0,100.0,15.4825,0.1335,237.90017723333332 +2014-07-24 23:00:00,0.0,1010.655833,0.0,100.0,14.6025,0.0685,237.87304130000004 +2014-07-25 00:00:00,3.060585552,1010.395833,0.0,100.0,16.35,1.6275,237.8538422833333 +2014-07-25 01:00:00,0.0,1010.2725,0.0,100.0,16.07916667,0.507416667,237.83975628333334 +2014-07-25 02:00:00,0.0,1010.149092,0.0,100.0,14.635,0.408416667,237.82805976666668 +2014-07-25 03:00:00,0.0,1010.283333,0.0,100.0,13.41916667,0.08616666699999999,237.81778353333334 +2014-07-25 04:00:00,0.0,1010.141667,1.642,100.0,12.59833333,0.09425,237.8088273333333 +2014-07-25 05:00:00,0.0,1010.241667,74.17666667,100.0,13.86,0.140833333,237.80195978333336 +2014-07-25 06:00:00,0.0,1010.360806,111.04583329999998,100.0,15.72666667,0.970916667,237.79614493333335 +2014-07-25 07:00:00,0.0,1010.446611,193.83333330000002,95.88333333,16.8625,1.935,237.78927738333334 +2014-07-25 08:00:00,0.0,1010.428389,229.6583333,87.55,18.04916667,1.81775,237.78479926666668 +2014-07-25 09:00:00,0.0,1010.33425,336.4833333,82.92583333,19.0325,1.256083333,237.77998703333333 +2014-07-25 10:00:00,0.0,1010.025,426.8083333000001,76.29333333,20.42083333,1.267416667,237.77383796666663 +2014-07-25 11:00:00,0.0,1009.6302220000001,596.9583332999999,72.81,21.05166667,1.7555,237.7689923 +2014-07-25 12:00:00,0.0,1009.372528,518.3666667,69.37166667,21.785,1.60575,237.76521598333332 +2014-07-25 13:00:00,0.0,1008.95925,686.2583333,63.03583333,23.11,1.39075,237.75973531666668 +2014-07-25 14:00:00,0.0,1008.6043060000001,673.5833332999999,61.555,23.93916667,1.128583333,237.7532186666666 +2014-07-25 15:00:00,0.0,1008.090111,431.35,59.42333333,24.43083333,1.4119166669999998,237.74631768333333 +2014-07-25 16:00:00,0.0,1007.9225279999999,253.3416667,61.06,24.29833333,0.9345,237.7415221 +2014-07-25 17:00:00,0.0,1007.617583,163.1083333,59.29,25.74166667,0.311083333,237.73742831666667 +2014-07-25 18:00:00,0.0,1007.737361,70.075,73.15166667,24.45,0.430666667,237.733652 +2014-07-25 19:00:00,0.0,1007.9783689999999,34.87583333,84.285,22.565,0.09675,237.7298256 +2014-07-25 20:00:00,0.0,1008.1205560000001,2.295,93.53333333,19.11083333,0.2295,237.72606601666666 +2014-07-25 21:00:00,0.0,1008.425,0.0,98.55,16.78166667,0.09916666699999999,237.72228971666667 +2014-07-25 22:00:00,0.0,1008.45,0.0,100.0,15.9125,0.138583333,237.71921520000004 +2014-07-25 23:00:00,0.0,1008.578889,0.0,100.0,15.32416667,0.08325,237.71614068333335 +2014-07-26 00:00:00,0.0,1008.7701109999999,0.0,100.0,14.78666667,0.0285,237.7126484 +2014-07-26 01:00:00,0.0,1008.639222,0.0,100.0,14.10833333,0.028999999999999998,237.70959060000004 +2014-07-26 02:00:00,0.0,1008.5117779999999,0.0,100.0,13.9675,0.035416667,237.70716773333334 +2014-07-26 03:00:00,0.0,1008.3024439999999,0.0,100.0,14.03166667,0.027000000000000003,237.70407650000004 +2014-07-26 04:00:00,0.0,1008.4274449999999,1.09825,100.0,13.435,0.052416667,237.70170378333333 +2014-07-26 05:00:00,0.0,1008.676445,32.34333333,100.0,13.34083333,0.028333333,237.69861254999998 +2014-07-26 06:00:00,0.0,1008.9739999999999,104.0575,99.96666667,15.005,0.323833333,237.6951537 +2014-07-26 07:00:00,0.0,1009.3298890000001,123.29166670000001,99.79166667,16.075,1.4616666669999998,237.69239665 +2014-07-26 08:00:00,0.0,1009.4416669999999,139.8416667,96.225,17.26416667,0.8683333329999999,237.68999056666667 +2014-07-26 09:00:00,0.0,1009.217667,353.425,83.34,19.88,1.301583333,237.6876178 +2014-07-26 10:00:00,0.0,1009.216667,569.7166667,73.29166667,22.4925,1.594916667,237.6841757 +2014-07-26 11:00:00,0.0,1009.051028,609.0583333,63.95,24.13166667,1.6750833330000001,237.68108448333336 +2014-07-26 12:00:00,0.0,1008.745167,502.3166666999999,59.975,25.17833333,1.0556666670000001,237.67765906666668 +2014-07-26 13:00:00,0.0,1008.61775,618.35,57.43083333,26.96333333,0.798083333,237.67281336666667 +2014-07-26 14:00:00,0.0,1008.55,263.84166669999996,59.09333333,26.38083333,0.40583333299999996,237.67008975 +2014-07-26 15:00:00,0.0,1008.465583,171.05833330000002,66.51583333,25.61833333,0.618916667,237.6662967166667 +2014-07-26 16:00:00,0.0,1008.741667,352.90833330000004,61.1075,25.76916667,0.7819166670000001,237.66427489999998 +2014-07-26 17:00:00,0.0,1008.829833,125.31666670000001,61.8075,25.4975,0.973833333,237.66151785 +2014-07-26 18:00:00,0.0,1009.10725,39.10416667,74.88583333,23.38,0.229333333,237.66016439999999 +2014-07-26 19:00:00,0.0,1009.259667,40.49083333,86.26666667,22.33916667,0.243833333,237.6573572 +2014-07-26 20:00:00,0.0,1010.002667,5.47525,91.95,20.6125,0.047083333,237.65496776666666 +2014-07-26 21:00:00,0.0,1010.341667,0.0,96.675,18.66166667,0.039583333,237.6528958 +2014-07-26 22:00:00,0.0,1010.404833,0.0,98.95,18.3775,0.178916667,237.65048965000003 +2014-07-26 23:00:00,0.0,1010.675,0.0,99.93333333,18.14416667,0.227833333,237.64743185 +2014-07-27 00:00:00,0.0,1010.461833,0.0,100.0,17.89583333,0.22325,237.6443239 +2014-07-27 01:00:00,0.0,1010.347583,0.0,99.99166667,17.02833333,0.175,237.6426362666667 +2014-07-27 02:00:00,0.0,1010.166667,0.0,100.0,16.94416667,0.08441666699999999,237.64091519999997 +2014-07-27 03:00:00,0.0,1010.373917,0.0,100.0,16.7175,0.057999999999999996,237.63951161666662 +2014-07-27 04:00:00,0.0,1010.640508,0.528666667,100.0,15.85083333,0.078,237.63775719999998 +2014-07-27 05:00:00,0.0,1011.145278,19.9735,100.0,15.705,0.318083333,237.6364204 +2014-07-27 06:00:00,0.0,1011.5262220000001,60.85833333,100.0,16.0275,0.297083333,237.63434846666664 +2014-07-27 07:00:00,0.0,1011.758333,174.9,89.325,18.53833333,0.7061666670000001,237.6329783333333 +2014-07-27 08:00:00,0.0,1011.7345,165.475,79.32166667,20.91416667,0.6144166670000001,237.6295362 +2014-07-27 09:00:00,0.0,1011.671444,344.3333333,71.1575,23.20083333,1.1585,237.6278652833333 +2014-07-27 10:00:00,0.0,1011.611889,565.3166667,65.935,24.51583333,1.49075,237.62509151666663 +2014-07-27 11:00:00,0.0,1011.522611,504.7666666999999,64.71666667,25.8475,0.872833333,237.622017 +2014-07-27 12:00:00,0.0,1011.475,477.6416666999999,64.8425,25.4675,1.5680833330000001,237.61889233333332 +2014-07-27 13:00:00,0.0,1011.2702220000001,652.2666667000001,60.48166667,25.5925,1.958833333,237.61615200000003 +2014-07-27 14:00:00,0.0,1010.827333,631.925,53.21666667,26.30333333,1.85975,237.61307748333334 +2014-07-27 15:00:00,0.0,1010.488056,552.2083332999999,53.80333333,26.60083333,2.078166667,237.60893355000005 +2014-07-27 16:00:00,0.0,1009.9595,424.53333330000004,54.49916667,26.94916667,1.181833333,237.6048564833333 +2014-07-27 17:00:00,0.0,1010.0786109999999,101.9658333,56.41166667,26.85,0.879,237.60171509999998 +2014-07-27 18:00:00,0.0,1010.4023890000001,49.22416667,63.7325,25.21333333,0.82475,237.5993256666667 +2014-07-27 19:00:00,0.0,1010.636944,35.98916667,70.475,24.09416667,0.52,237.59690288333334 +2014-07-27 20:00:00,0.0,1010.7868890000001,2.212166667,87.07833333,21.15833333,0.066083333,237.59419591666668 +2014-07-27 21:00:00,0.0,1010.8560359999999,0.0,94.75833333,19.19083333,0.08800000000000001,237.5907371333333 +2014-07-27 22:00:00,0.0,1010.6,0.0,97.63333333,18.47833333,0.10408333300000001,237.58903276666663 +2014-07-27 23:00:00,0.0,1010.7119439999999,0.0,99.85833333,17.21,0.04325,237.5879801 +2014-07-28 00:00:00,0.0,1010.290556,0.0,100.0,17.05583333,0.053583333,237.58589141666667 +2014-07-28 01:00:00,0.0,1009.7548609999999,0.0,100.0,16.3425,0.107416667,237.58386959999999 +2014-07-28 02:00:00,0.0,1009.242917,0.0,100.0,15.58333333,0.010916667,237.5828169 +2014-07-28 03:00:00,0.0,1009.0452779999999,0.0,100.0,14.77333333,0.016916667,237.5821151 +2014-07-28 04:00:00,0.0,1009.165417,0.424416667,100.0,14.925,0.008333333,237.57939148333332 +2014-07-28 05:00:00,0.0,1009.0643060000001,26.21183333,100.0,15.49333333,0.0,237.57733623333334 +2014-07-28 06:00:00,0.0,1009.120278,100.61,98.54166667,17.0125,0.09875,237.57700205000003 +2014-07-28 07:00:00,0.0,1008.9643060000001,199.2833333,90.04166667,19.38666667,0.932916667,237.57529770000005 +2014-07-28 08:00:00,0.0,1008.5775,214.525,82.5075,21.6275,0.930333333,237.5738941 +2014-07-28 09:00:00,0.0,1008.209583,338.8,76.205,23.65666667,1.572416667,237.5725573666667 +2014-07-28 10:00:00,0.0,1007.763194,542.875,71.40666667,24.6125,1.252333333,237.56978360000002 +2014-07-28 11:00:00,0.0,1007.3452779999999,616.2416667,66.51416667,25.5225,1.287166667,237.56565638333336 +2014-07-28 12:00:00,0.0,1006.757361,593.675,62.0875,27.14416667,1.080666667,237.56289933333335 +2014-07-28 13:00:00,0.0,1006.17625,549.9833332999999,56.725,27.50833333,1.0576666670000001,237.56121170000003 +2014-07-28 14:00:00,0.0,1005.5169999999999,564.9916667,50.69583333,28.25916667,1.2431666670000001,237.55810374999996 +2014-07-28 15:00:00,3.232076976,1005.294,304.6408333,58.86833333,27.25333333,2.140166667,237.55400996666665 +2014-07-28 16:00:00,34.54447145,1004.853667,90.475,95.7,21.96666667,0.82425,237.55158709999998 +2014-07-28 17:00:00,0.0,1005.27,68.29333333,97.05833333,22.15,0.372333333,237.55123619999998 +2014-07-28 18:00:00,0.0,1005.579667,17.63833333,93.95833333,20.48833333,0.577333333,237.55018354999996 +2014-07-28 19:00:00,0.0,1005.562,12.82466667,93.25,19.875,0.50975,237.5491309 +2014-07-28 20:00:00,0.0,1006.024333,1.741416667,95.86666667,19.50333333,0.3825,237.54779409999995 +2014-07-28 21:00:00,138.0445682,1006.329,0.0,98.725,18.95666667,1.156333333,237.54573885 +2014-07-28 22:00:00,7.310246447999999,1005.860667,0.0,100.0,18.565,0.322083333,237.54674144999998 +2014-07-28 23:00:00,343.332121,1005.882333,0.0,100.0,18.53333333,1.154666667,237.560159 +2014-07-29 00:00:00,0.0,1005.632333,0.0,100.0,18.63,0.37625,237.55980809999997 +2014-07-29 01:00:00,0.0,1005.393,0.0,100.0,18.665,0.206416667,237.55945719999997 +2014-07-29 02:00:00,2.4050227680000003,1005.147667,0.0,100.0,18.51416667,0.21358333300000001,237.5577862833333 +2014-07-29 03:00:00,0.0,1005.016667,0.0,100.0,18.575,0.38441666700000005,237.55745209999995 +2014-07-29 04:00:00,0.0,1004.853667,0.554916667,100.0,18.63,0.5691666670000001,237.55675029999998 +2014-07-29 05:00:00,0.0,1004.841667,14.91166667,100.0,18.63583333,0.604583333,237.55569759999995 +2014-07-29 06:00:00,0.0,1005.1533410000001,20.685,100.0,18.865,0.594583333,237.55745209999995 +2014-07-29 07:00:00,5.269510776000001,1005.311528,72.17583333,100.0,19.20166667,1.13025,237.55912301666663 +2014-07-29 08:00:00,0.0,1005.543083,152.6083333,98.91666667,20.20666667,1.9498333330000002,237.5587888333333 +2014-07-29 09:00:00,0.0,1005.483333,205.29166669999998,95.15,20.99166667,2.20525,237.55945719999997 +2014-07-29 10:00:00,0.0,1005.477306,168.33333330000002,93.61666667,21.56333333,1.6,237.55845464999993 +2014-07-29 11:00:00,0.0,1005.252833,181.7333333,90.05,22.14583333,2.391,237.55604849999997 +2014-07-29 12:00:00,0.0,1004.843083,225.45833330000002,88.0,23.09,2.7433333330000003,237.55745209999995 +2014-07-29 13:00:00,0.0,1004.066306,526.0916666999999,80.67833333,23.94583333,3.531416667,237.55710119999995 +2014-07-29 14:00:00,0.0,1003.5953890000001,470.9833333000001,76.81583333,24.6225,3.430333333,237.55534669999997 +2014-07-29 15:00:00,0.0,1003.1393609999999,395.28333330000004,76.97583333,24.8075,2.2005,237.55400996666665 +2014-07-29 16:00:00,0.0,1003.012056,142.4591667,80.3825,24.40166667,1.982083333,237.55299069999998 +2014-07-29 17:00:00,15.92119222,1003.4531939999999,22.90008333,93.26666667,22.60083333,1.415666667,237.54948178333333 +2014-07-29 18:00:00,0.0,1004.154083,6.303166667,99.2,19.5875,0.9388333329999999,238.00725066666666 +2014-07-29 19:00:00,0.0,1004.366667,7.34725,100.0,19.99583333,1.8030000000000002,238.17723471666667 +2014-07-29 20:00:00,0.0,1004.177833,0.275166667,100.0,19.24416667,0.318083333,238.07118058333333 +2014-07-29 21:00:00,0.0,1004.1439720000001,0.0,100.0,18.63916667,0.22058333300000002,238.0066157 +2014-07-29 22:00:00,0.0,1004.234222,0.0,100.0,18.4925,0.31,237.9534131833333 +2014-07-29 23:00:00,0.0,1004.1135960000001,0.0,100.0,18.67916667,0.369666667,237.90534043333332 +2014-07-30 00:00:00,0.0,1003.645444,0.0,100.0,18.79083333,0.415416667,237.87031766666664 +2014-07-30 01:00:00,82.16559156,1003.6378890000001,0.0,100.0,18.62083333,0.14425,237.84558785 +2014-07-30 02:00:00,46.65568541,1003.810611,0.0,100.0,18.49833333,0.26725,237.8339247166667 +2014-07-30 03:00:00,4.854706536,1004.0757779999999,0.0,100.0,18.495,0.132083333,237.83288873333333 +2014-07-30 04:00:00,2.6216142000000002,1004.278778,0.06575,100.0,18.50333333,0.58225,237.83153528333332 +2014-07-30 05:00:00,0.0,1004.4363890000001,6.594416667000001,100.0,18.55333333,0.412083333,237.8253027333333 +2014-07-30 06:00:00,0.0,1004.7235,44.10583333,100.0,18.7225,0.60025,237.81674756666666 +2014-07-30 07:00:00,0.0,1005.2841109999999,123.8175,99.28333333,19.60666667,1.3571666669999998,237.80779135 +2014-07-30 08:00:00,0.0,1005.8257779999999,141.475,96.81666667,19.92,2.04975,237.79921945 +2014-07-30 09:00:00,2.7688687919999997,1005.9106109999999,151.3458333,97.23333333,19.66666667,1.49675,237.79031336666665 +2014-07-30 10:00:00,0.0,1006.4598890000001,303.4583333,91.45,20.88833333,3.004833333,237.78342911666667 +2014-07-30 11:00:00,0.0,1006.853056,170.2483333,92.225,20.2425,2.681833333,237.77657829999998 +2014-07-30 12:00:00,0.0,1007.275778,178.79166669999998,92.275,19.75416667,2.494166667,237.7686748 +2014-07-30 13:00:00,0.0,1007.708333,224.35,86.90833333,20.76833333,3.2624166669999997,237.76143966666663 +2014-07-30 14:00:00,0.0,1007.846222,78.845,83.79166667,21.23666667,2.789166667,237.7563099 +2014-07-30 15:00:00,0.0,1007.9735,109.63583329999999,80.31083333,21.29583333,2.6470833330000003,237.75114669999996 +2014-07-30 16:00:00,0.0,1007.983333,73.585,78.69833333,21.4175,1.8535,237.74392824999998 +2014-07-30 17:00:00,0.0,1008.115083,55.29333333,88.26,21.41166667,0.846666667,237.73878176666668 +2014-07-30 18:00:00,0.0,1008.6051669999999,39.14333333,76.49916667,21.3975,1.3175,237.73432036666668 +2014-07-30 19:00:00,0.0,1009.227917,32.54916667,73.91416667,21.17416667,1.167,237.72914051666666 +2014-07-30 20:00:00,0.0,1009.769583,1.875,94.66666667,18.095,0.31125,237.72436168333334 +2014-07-30 21:00:00,0.0,1010.098417,0.0,98.65,16.7925,0.10300000000000001,237.72056865000002 +2014-07-30 22:00:00,0.0,1010.340083,0.0,99.25,17.71333333,0.09091666699999999,237.71680904999997 +2014-07-30 23:00:00,0.0,1010.483333,0.0,96.03333333,17.5975,0.07025,237.71299929999998 +2014-07-31 00:00:00,0.0,1010.62725,0.0,93.86666667,17.5575,0.24875,237.70888879999998 +2014-07-31 01:00:00,0.0,1010.875,0.0,94.49166667,17.02666667,0.18575,237.70410993333334 +2014-07-31 02:00:00,0.0,1010.833333,0.0,96.7,16.20833333,0.315166667,237.70170378333333 +2014-07-31 03:00:00,0.0,1010.977917,0.0,98.86666667,15.87583333,0.29225,237.69861254999998 +2014-07-31 04:00:00,0.0,1011.216667,0.46533333299999996,99.98333333,15.50833333,0.131833333,237.69480280000002 +2014-07-31 05:00:00,0.0,1011.684667,20.91008333,100.0,15.00583333,0.227833333,237.69069233333335 +2014-07-31 06:00:00,0.0,1012.2589999999999,103.0516667,97.51666667,16.06666667,0.7154166670000001,237.687952 +2014-07-31 07:00:00,0.0,1012.667333,197.025,90.90833333,17.43916667,0.676416667,237.68552918333333 +2014-07-31 08:00:00,0.0,1012.634959,176.58333330000002,86.21666667,18.74833333,1.17475,237.6835073 +2014-07-31 09:00:00,0.0,1012.527222,333.6666667,79.50583333,19.99416667,0.7516666670000001,237.68106780000002 +2014-07-31 10:00:00,0.0,1012.280556,470.875,72.14166667,21.305,0.9208333329999999,237.67730816666668 +2014-07-31 11:00:00,0.0,1011.9077779999999,606.9583332999999,67.00916667,22.07333333,1.043166667,237.6735151666667 +2014-07-31 12:00:00,0.0,1011.708333,656.4,62.23083333,22.96083333,1.235666667,237.66973885000002 +2014-07-31 13:00:00,0.0,1011.322222,659.8916667000001,58.76083333,23.75333333,1.19075,237.66699851666667 +2014-07-31 14:00:00,0.0,1010.8744439999999,624.8916667000001,54.8675,24.56333333,0.89275,237.66357309999998 +2014-07-31 15:00:00,0.0,1010.5138890000001,540.6833333,54.03,25.14083333,0.874083333,237.65946259999996 +2014-07-31 16:00:00,0.0,1010.043333,449.40833330000004,49.75583333,25.53916667,0.862083333,237.6559870333333 +2014-07-31 17:00:00,0.0,1009.676667,104.2366667,61.78333333,26.16416667,0.354,237.65254490000004 +2014-07-31 18:00:00,0.0,1009.6144449999999,53.715,63.75833333,25.9,0.501166667,237.65017218333332 +2014-07-31 19:00:00,0.0,1009.790556,20.73716667,79.64666667,23.265,0.196916667,237.6460616833333 +2014-07-31 20:00:00,0.0,1009.9955560000001,0.951666667,93.20833333,18.14166667,0.11825,237.643973 +2014-07-31 21:00:00,0.0,1010.025,0.0,96.95,15.91416667,0.08583333300000001,237.64196790000003 +2014-07-31 22:00:00,0.0,1010.016667,0.0,99.375,14.695,0.046166667,237.63986249999996 +2014-07-31 23:00:00,0.0,1009.893333,0.0,100.0,14.02833333,0.026916667000000002,237.63810808333332 +2014-01-08 00:00:00,0.0,1009.7,0.0,100.0,13.76333333,0.00041666699999999996,238.0808026666667 +2014-01-08 01:00:00,0.0,1009.6622169999999,0.0,100.0,13.02916667,0.00175,238.07954933333335 +2014-01-08 02:00:00,0.0,1009.47675,0.0,100.0,12.41416667,0.039666667,238.078249 +2014-01-08 03:00:00,0.0,1009.164472,0.0,100.0,11.85583333,0.0,238.07693300000003 +2014-01-08 04:00:00,0.0,1008.970611,0.56725,100.0,11.5075,0.0,238.075617 +2014-01-08 05:00:00,0.0,1009.02325,22.01825,100.0,11.49,0.0,238.074348 +2014-01-08 06:00:00,0.0,1009.189472,123.72666670000001,98.54166667,13.96333333,0.0,238.073079 +2014-01-08 07:00:00,0.0,1009.035083,213.1525,89.63333333,16.14666667,0.39041666700000005,238.072421 +2014-01-08 08:00:00,0.0,1008.8956109999999,180.79166669999998,82.8075,18.77,0.731166667,238.0708073333333 +2014-01-08 09:00:00,0.0,1008.474556,335.775,74.51166667,21.4375,0.97925,238.068896 +2014-01-08 10:00:00,0.0,1008.3,534.375,66.58833333,24.15666667,1.26275,238.06823799999998 +2014-01-08 11:00:00,0.0,1007.865778,590.8666667,60.3975,25.46333333,1.900166667,238.06664 +2014-01-08 12:00:00,0.0,1007.3890279999999,583.9583332999999,58.62666667,26.28583333,2.1429166669999997,238.06570000000002 +2014-01-08 13:00:00,0.0,1007.0144720000001,647.5166667000001,52.89583333,27.075,1.791916667,238.065371 +2014-01-08 14:00:00,0.0,1006.691222,695.85,47.025,27.375,1.906,238.06438399999993 +2014-01-08 15:00:00,0.0,1006.324556,558.5916667,49.69416667,27.21833333,1.8521666669999999,238.06341266666664 +2014-01-08 16:00:00,0.0,1006.00175,469.075,48.24833333,26.985,1.57725,238.06184600000003 +2014-01-08 17:00:00,0.0,1005.760167,172.8916667,50.02833333,27.29916667,1.643583333,238.06085900000002 +2014-01-08 18:00:00,0.0,1005.627167,64.44333333,60.92416667,26.18916667,1.789333333,238.060201 +2014-01-08 19:00:00,0.0,1005.839833,22.73333333,82.8775,24.37833333,1.070333333,238.05924533333334 +2014-01-08 20:00:00,0.0,1006.1210000000001,1.2864166670000001,91.44166667,18.8875,0.005416666999999999,238.05799199999998 +2014-01-08 21:00:00,0.0,1006.029,0.0,95.925,16.755,0.01425,238.05797633333336 +2014-01-08 22:00:00,0.0,1006.046,0.0,99.025,15.45166667,0.0335,238.05601800000002 +2014-01-08 23:00:00,0.0,1006.029,0.0,99.9,14.53916667,0.021333333,238.05634700000004 +2014-02-08 00:00:00,0.0,1005.6725,0.0,100.0,13.89416667,0.011333333000000001,238.04196319999997 +2014-02-08 01:00:00,0.0,1005.266333,0.0,100.0,13.13833333,0.08591666699999999,238.04244659999995 +2014-02-08 02:00:00,0.0,1004.8935,0.0,100.0,12.4875,0.0295,238.04268829999998 +2014-02-08 03:00:00,0.0,1004.5583330000001,0.0,100.0,12.27916667,0.003333333,238.04317169999993 +2014-02-08 04:00:00,0.0,1004.529,1.1045,100.0,11.735,0.0,238.04268829999998 +2014-02-08 05:00:00,0.0,1004.679333,22.87258333,100.0,11.93833333,0.0,238.04317169999993 +2014-02-08 06:00:00,0.0,1004.451833,87.66916667,100.0,13.61666667,0.0,238.04393309999992 +2014-02-08 07:00:00,0.0,1004.516667,168.8,97.34166667,16.32833333,0.193083333,238.0444407 +2014-02-08 08:00:00,0.0,1004.4188330000001,182.9,86.81666667,18.75583333,0.578416667,238.04493619999997 +2014-02-08 09:00:00,0.0,1004.2725,303.475,73.6975,21.7,1.035833333,238.0451779 +2014-02-08 10:00:00,0.0,1004.037632,378.3833333,69.1425,23.74833333,1.468666667,238.04566129999998 +2014-02-08 11:00:00,0.0,1003.981194,330.9583333,67.165,24.43,1.674833333,238.04614469999999 +2014-02-08 12:00:00,0.0,1003.962389,279.4333333,70.63666667,24.5875,1.922166667,238.04590299999998 +2014-02-08 13:00:00,0.0,1003.716667,216.4083333,70.93,24.32666667,2.427083333,238.04614469999999 +2014-02-08 14:00:00,0.0,1003.5328890000001,335.28333330000004,65.63,25.4675,1.6753333330000002,238.04541959999997 +2014-02-08 15:00:00,0.0,1002.964528,518.525,63.33666667,26.01,1.612333333,238.0456613 +2014-02-08 16:00:00,0.0,1003.043583,384.45,61.4025,26.46166667,1.8859166669999998,238.04541959999997 +2014-02-08 17:00:00,0.0,1002.83975,141.6333333,63.27166667,26.2875,2.4986666669999997,238.04566129999998 +2014-02-08 18:00:00,0.0,1003.2668890000001,27.04166667,76.37,24.8275,1.70275,238.04614469999999 +2014-02-08 19:00:00,0.0,1003.587833,10.3285,87.01666667,21.72916667,0.27025,238.04614469999999 +2014-02-08 20:00:00,0.0,1003.991667,0.9600833329999999,96.1,20.31916667,0.20425,238.04614469999999 +2014-02-08 21:00:00,0.0,1004.133333,0.0,98.8,18.71666667,0.15558333300000002,238.0469061 +2014-02-08 22:00:00,0.0,1004.054278,0.0,99.975,17.27333333,0.07933333299999999,238.0471599 +2014-02-08 23:00:00,0.0,1004.206417,0.0,100.0,16.62666667,0.04475,238.04614469999999 +2014-03-08 00:00:00,0.0,1004.239528,0.0,100.0,16.08666667,0.16699999999999998,238.00597319999997 +2014-03-08 01:00:00,0.0,1004.583556,0.0,100.0,15.81333333,0.0275,238.00571939999998 +2014-03-08 02:00:00,0.0,1004.8145279999999,0.0,100.0,15.94666667,0.021833332999999996,238.00546559999998 +2014-03-08 03:00:00,0.0,1004.991889,0.0,100.0,16.37416667,0.074583333,238.0047042 +2014-03-08 04:00:00,0.0,1005.498111,0.077916667,100.0,16.07416667,0.064166667,238.00546559999998 +2014-03-08 05:00:00,0.0,1005.806333,4.271416667,100.0,16.3875,0.149083333,238.00445040000002 +2014-03-08 06:00:00,0.0,1006.189667,75.0575,98.9,17.45083333,0.15833333300000002,238.00445040000002 +2014-03-08 07:00:00,0.0,1006.8168890000001,147.1391667,89.59166667,18.7725,0.205833333,238.00420870000002 +2014-03-08 08:00:00,0.0,1007.2313330000001,206.8,83.615,21.03583333,0.5785,238.003967 +2014-03-08 09:00:00,0.0,1007.6063330000001,240.0333333,77.86166667,22.16166667,0.701333333,238.00446250000002 +2014-03-08 10:00:00,0.0,1007.785444,308.3,73.0175,23.3525,0.72225,238.004958 +2014-03-08 11:00:00,0.0,1007.612333,280.125,68.055,24.26666667,0.7194166670000001,238.00521179999998 +2014-03-08 12:00:00,0.0,1007.383333,514.4583333,61.36666667,25.065,0.8634166670000001,238.00571939999998 +2014-03-08 13:00:00,0.0,1007.504222,517.8833333,57.66333333,25.37666667,0.99775,238.00546559999998 +2014-03-08 14:00:00,0.0,1007.387444,399.9333333,57.57083333,25.31166667,0.711583333,238.00571939999998 +2014-03-08 15:00:00,0.0,1007.15,376.2083333,54.03083333,26.15083333,0.46975,238.00597319999997 +2014-03-08 16:00:00,0.0,1007.2,217.1583333,65.09916667,24.68583333,1.385,238.00571939999998 +2014-03-08 17:00:00,0.0,1007.4730000000001,137.2666667,70.4325,23.77583333,1.33725,238.00521179999998 +2014-03-08 18:00:00,0.0,1007.737556,89.79583333,73.6975,23.73,1.01625,238.00420870000002 +2014-03-08 19:00:00,0.0,1008.0250689999999,30.22583333,85.07583333,22.27333333,0.9520000000000001,238.003967 +2014-03-08 20:00:00,0.0,1008.664583,1.1545,95.625,19.84916667,0.08800000000000001,238.00420870000002 +2014-03-08 21:00:00,0.0,1008.6520830000001,0.0,99.88333333,17.82583333,0.059166667,238.00372529999996 +2014-03-08 22:00:00,0.0,1008.63125,0.0,100.0,17.31916667,0.00925,238.00300019999995 +2014-03-08 23:00:00,0.0,1009.0895830000001,0.0,100.0,16.49833333,0.073916667,238.0032419 +2014-04-08 00:00:00,0.0,1009.116667,0.0,100.0,16.14416667,0.026333332999999997,237.92007809999998 +2014-04-08 01:00:00,0.0,1009.079167,0.0,100.0,15.5925,0.036166667,237.92007809999998 +2014-04-08 02:00:00,0.0,1009.029167,0.0,100.0,15.8175,0.019166667,237.9194097 +2014-04-08 03:00:00,0.0,1009.24375,0.0,100.0,15.06916667,0.049583333,237.9187413 +2014-04-08 04:00:00,0.0,1009.572917,0.1995,100.0,14.29416667,0.030583332999999997,237.9180729 +2014-04-08 05:00:00,0.0,1009.991667,21.40116667,100.0,13.9325,0.025,237.9180729 +2014-04-08 06:00:00,0.0,1010.666667,132.28333329999998,99.41666667,16.08166667,0.21725,237.9180729 +2014-04-08 07:00:00,0.0,1011.25625,144.035,94.21666667,18.41166667,0.42125,237.91737113333332 +2014-04-08 08:00:00,0.0,1011.45625,221.4916667,87.55,19.0725,1.139916667,237.91702024999998 +2014-04-08 09:00:00,0.0,1011.270833,309.3916667,80.71583333,20.6075,1.1995833329999999,237.91596759999996 +2014-04-08 10:00:00,0.0,1011.454167,505.70833330000005,72.35166667,23.29333333,0.6858333329999999,237.91429659999997 +2014-04-08 11:00:00,0.0,1011.077083,612.525,68.37916667,23.485,0.846833333,237.91361151666663 +2014-04-08 12:00:00,0.0,1010.795799,383.875,68.055,23.38166667,0.83375,237.9132606333333 +2014-04-08 13:00:00,0.0,1010.887444,377.6416667,69.42166667,23.225,0.7566666670000001,237.91396239999997 +2014-04-08 14:00:00,0.0,1010.841778,430.21666669999996,64.19916667,24.4725,0.922083333,237.91220798333333 +2014-04-08 15:00:00,0.0,1010.9665560000001,167.2533333,62.52833333,24.28833333,0.934916667,237.9118571 +2014-04-08 16:00:00,2.414904624,1011.0666669999999,142.0675,71.7925,22.335,0.37341666700000004,237.9118571 +2014-04-08 17:00:00,4.9474217519999995,1011.4332220000001,114.16166670000001,71.64833333,22.3,0.365833333,237.91150619999996 +2014-04-08 18:00:00,0.0,1011.762333,36.65916667,82.6175,20.89833333,0.174416667,237.9108044 +2014-04-08 19:00:00,26.72813515,1012.270778,13.62525,97.65,19.14083333,0.91075,237.9090833333333 +2014-04-08 20:00:00,0.0,1012.635278,0.68025,99.99166667,17.445,0.08625,237.90772988333333 +2014-04-08 21:00:00,0.0,1012.866667,0.0,100.0,16.995,0.354333333,237.90739569999997 +2014-04-08 22:00:00,0.0,1013.0915560000001,0.0,100.0,16.9725,0.326333333,237.9070448 +2014-04-08 23:00:00,0.0,1013.083333,0.0,99.79166667,16.79833333,0.6455,237.90669390000002 +2014-05-08 00:00:00,0.0,1013.083333,0.0,99.825,16.6125,0.34675,237.81778356666666 +2014-05-08 01:00:00,22.70307341,1013.2729439999999,0.0,99.06666667,16.52,0.293416667,237.81912030000004 +2014-05-08 02:00:00,10.24815912,1013.404,0.0,98.13333333,16.2,0.7495,237.81912030000004 +2014-05-08 03:00:00,95.94857215,1013.752056,0.0,100.0,15.92833333,0.435666667,237.81912030000004 +2014-05-08 04:00:00,2.471229648,1013.9832220000001,0.162916667,100.0,15.7625,0.33566666700000003,237.82052383333328 +2014-05-08 05:00:00,0.0,1014.339424,8.60975,100.0,14.8175,0.055166667,237.82122559999996 +2014-05-08 06:00:00,0.0,1014.543694,52.18416667,100.0,15.11583333,0.22875,237.82122559999996 +2014-05-08 07:00:00,0.0,1014.6290560000001,145.68333330000002,98.19166667,16.6075,0.78225,237.82122559999996 +2014-05-08 08:00:00,0.0,1014.989417,185.6416667,90.01666667,17.68666667,1.208083333,237.82122559999996 +2014-05-08 09:00:00,0.0,1015.3040550000001,293.7666667,87.125,18.24333333,1.504833333,237.82087471666668 +2014-05-08 10:00:00,0.0,1015.214639,440.025,79.225,19.42583333,1.755,237.8187861166667 +2014-05-08 11:00:00,0.0,1015.0959439999999,367.0083333,75.3325,20.11833333,1.7990833330000002,237.8187861166667 +2014-05-08 12:00:00,0.0,1015.185361,246.4666667,72.38083333,20.56083333,2.1595,237.8171152 +2014-05-08 13:00:00,0.0,1015.0313060000001,161.43333330000002,72.24666667,20.76583333,1.374333333,237.8171152 +2014-05-08 14:00:00,0.0,1014.975,305.90833330000004,66.02333333,21.895,1.125916667,237.81571160000001 +2014-05-08 15:00:00,0.0,1014.887611,373.5166667,62.355,21.84,0.756583333,237.8153607 +2014-05-08 16:00:00,0.0,1014.52725,306.28333330000004,59.10166667,22.4175,1.24025,237.8150098 +2014-05-08 17:00:00,0.0,1014.5686939999999,102.5291667,71.4675,21.43833333,1.414166667,237.8153607 +2014-05-08 18:00:00,0.0,1014.666667,80.74416667,70.64166667,21.15666667,0.779666667,237.81676430000002 +2014-05-08 19:00:00,0.0,1015.057889,21.44191667,88.35833333,19.13916667,0.049,237.8150098 +2014-05-08 20:00:00,0.0,1015.4333330000001,0.9089166670000001,96.05,16.28583333,0.028833333,237.8164134 +2014-05-08 21:00:00,0.0,1015.5040140000001,0.0,99.0,14.29416667,0.00175,237.81915371666665 +2014-05-08 22:00:00,0.0,1015.6460000000001,0.0,100.0,13.25333333,0.061083333,237.8246343333333 +2014-05-08 23:00:00,0.0,1015.358333,0.0,100.0,12.63166667,0.02925,237.82700710000003 +2014-06-08 00:00:00,0.0,1015.123333,0.0,100.0,12.73833333,0.00125,237.67939679999998 +2014-06-08 01:00:00,0.0,1015.070667,0.0,100.0,11.76,0.0275,237.68106780000002 +2014-06-08 02:00:00,0.0,1015.079333,0.0,100.0,11.0425,0.0,237.6831731 +2014-06-08 03:00:00,0.0,1014.710667,0.0,100.0,10.58916667,0.0,237.6848441 +2014-06-08 04:00:00,0.0,1014.570667,0.25125,100.0,10.18833333,0.0,237.68623095 +2014-06-08 05:00:00,0.0,1014.818667,14.7575,100.0,10.9825,0.000166667,237.6872836 +2014-06-08 06:00:00,0.0,1014.652333,56.56166667,100.0,12.54666667,0.083083333,237.6886204 +2014-06-08 07:00:00,0.0,1014.367,120.73416670000002,100.0,13.09166667,0.329333333,237.68930548333336 +2014-06-08 08:00:00,0.0,1014.196,182.1166667,100.0,14.4525,0.520333333,237.687952 +2014-06-08 09:00:00,0.0,1013.84,316.34166669999996,90.59166667,17.17666667,0.754916667,237.68212044999999 +2014-06-08 10:00:00,0.0,1013.225333,462.25833330000006,73.83583333,21.30833333,1.138583333,237.67420025 +2014-06-08 11:00:00,0.0,1012.815,453.4333333000001,64.3225,23.20833333,1.86925,237.66940466666665 +2014-06-08 12:00:00,0.0,1012.452333,286.5,64.15083333,22.74666667,1.6008333330000002,237.66664761666667 +2014-06-08 13:00:00,0.0,1012.129667,319.53333330000004,60.05666667,22.85916667,1.4703333330000001,237.66357309999998 +2014-06-08 14:00:00,0.0,1011.619041,417.9916667,55.6625,23.61666667,0.70525,237.66151785 +2014-06-08 15:00:00,0.0,1011.177417,284.7583333,55.39583333,24.3025,1.8575,237.65946259999996 +2014-06-08 16:00:00,0.0,1010.7861939999999,261.5583333,59.18583333,23.66166667,1.9226666669999999,237.6570063 +2014-06-08 17:00:00,0.0,1010.239694,169.7841667,57.92083333,24.22,1.6245833330000001,237.65496776666666 +2014-06-08 18:00:00,0.0,1010.251972,57.36083333,74.61,22.42,0.6709166670000001,237.65254490000004 +2014-06-08 19:00:00,0.0,1010.283333,18.5575,86.50833333,19.7225,0.113,237.652194 +2014-06-08 20:00:00,0.0,1011.0535,0.36475,86.00333333,17.54333333,0.144666667,237.65394849999998 +2014-06-08 21:00:00,0.0,1011.1980279999999,0.0,81.66666667,18.35333333,0.5035,237.65563613333333 +2014-06-08 22:00:00,0.0,1010.866667,0.0,83.66666667,17.57583333,0.31775,237.6563045 +2014-06-08 23:00:00,0.0,1010.908333,0.0,85.375,17.2025,0.27675,237.6591117 +2014-07-08 00:00:00,0.0,1010.796056,0.0,94.10833333,16.27416667,0.032666667,237.5477941 +2014-07-08 01:00:00,0.0,1010.5004439999999,0.0,97.91666667,15.96166667,0.036000000000000004,237.54949846666668 +2014-07-08 02:00:00,2.5153073040000002,1010.376972,0.0,97.425,16.05666667,0.605916667,237.55297398333332 +2014-07-08 03:00:00,14.76572162,1010.2671109999999,0.0,99.8,15.46083333,0.49625,237.5732090166667 +2014-07-08 04:00:00,0.0,1010.1936390000001,0.020666667,100.0,15.39916667,0.213333333,237.59727041666667 +2014-07-08 05:00:00,0.0,1010.297583,5.042833333,100.0,15.44,0.089333333,237.60656083333333 +2014-07-08 06:00:00,0.0,1010.595611,38.0325,100.0,15.80916667,0.06575,237.6106546166667 +2014-07-08 07:00:00,0.0,1010.7058609999999,118.685,97.25,16.89166667,0.336083333,237.6127433 +2014-07-08 08:00:00,0.0,1011.164167,115.48083329999999,92.79166667,17.94416667,0.34933333299999997,237.6147651166667 +2014-07-08 09:00:00,0.0,1011.3975,157.41666669999998,91.06666667,18.76666667,0.329416667,237.6158011 +2014-07-08 10:00:00,0.0,1011.369167,369.0083333,82.4475,20.24,0.740833333,237.61720469999997 +2014-07-08 11:00:00,0.0,1011.0775,534.1583333000001,72.5825,22.15,0.6848333329999999,237.61720469999997 +2014-07-08 12:00:00,0.0,1010.796111,536.625,66.235,23.53666667,0.671083333,237.61787306666665 +2014-07-08 13:00:00,0.0,1010.498056,406.225,64.285,24.18833333,0.555666667,237.61920980000005 +2014-07-08 14:00:00,0.0,1010.598056,442.75,60.14833333,24.4625,0.6045,237.61956070000005 +2014-07-08 15:00:00,0.0,1010.626944,419.50833330000006,56.5125,23.63666667,1.149916667,237.61991160000002 +2014-07-08 16:00:00,0.0,1010.3525,433.15833330000004,55.4675,24.32083333,2.06025,237.6202625 +2014-07-08 17:00:00,0.0,1010.3269439999999,77.9875,59.16,24.7625,0.678583333,237.6202625 +2014-07-08 18:00:00,0.0,1010.453889,36.94166667,62.73166667,24.44916667,0.456666667,237.6209643 +2014-07-08 19:00:00,0.0,1010.8911109999999,15.34908333,81.72666667,21.49166667,0.19191666699999999,237.6209643 +2014-07-08 20:00:00,0.0,1011.363611,0.523416667,93.175,17.53583333,0.308916667,237.6213152 +2014-07-08 21:00:00,0.0,1011.6936109999999,0.0,97.24166667,15.5725,0.265,237.6213152 +2014-07-08 22:00:00,0.0,1011.9,0.0,99.7,14.77333333,0.1,237.6254591333333 +2014-07-08 23:00:00,0.0,1011.8205,0.0,100.0,14.04583333,0.015666667,237.63469936666664 +2014-08-08 00:00:00,0.0,1011.866667,0.0,100.0,12.90583333,0.008333333,237.41965020000006 +2014-08-08 01:00:00,0.0,1011.87375,0.0,100.0,12.38333333,0.0019166670000000002,237.42070290000004 +2014-08-08 02:00:00,0.0,1011.633333,0.0,100.0,11.88083333,0.00033333300000000006,237.420352 +2014-08-08 03:00:00,0.0,1011.548083,0.0,100.0,11.43166667,0.0,237.4207029 +2014-08-08 04:00:00,0.0,1011.362833,0.136666667,100.0,11.04833333,0.0,237.41965020000006 +2014-08-08 05:00:00,0.0,1011.353833,12.76083333,100.0,11.07083333,0.004166667,237.41789578333336 +2014-08-08 06:00:00,0.0,1011.418583,85.29333333,99.99166667,13.39583333,0.0,237.41824665000004 +2014-08-08 07:00:00,0.0,1011.260917,218.95833330000002,93.89166667,15.64083333,0.6848333329999999,237.41859753333338 +2014-08-08 08:00:00,0.0,1010.977583,169.6166667,87.46666667,18.67166667,0.631166667,237.4178957666667 +2014-08-08 09:00:00,0.0,1010.640417,322.8541667,76.05583333,21.37,1.044916667,237.41719400000002 +2014-08-08 10:00:00,0.0,1010.26925,549.8,63.6125,24.11333333,1.887583333,237.41552300000004 +2014-08-08 11:00:00,19.17090818,1009.67825,614.925,58.29583333,25.17916667,2.344166667,237.4131002 +2014-08-08 12:00:00,0.0,1009.04875,650.7083332999999,55.6425,25.77583333,2.220583333,237.41002570000003 +2014-08-08 13:00:00,0.0,1008.328917,627.175,52.14583333,26.09436558,2.1368333330000002,237.40897300000003 +2014-08-08 14:00:00,0.0,1007.5385,419.0583333,52.07583333,26.68254019,2.1621666669999997,237.40728536666668 +2014-08-08 15:00:00,0.0,1006.89875,189.425,53.93416667,26.46333333,2.1823333330000003,237.40451159999998 +2014-08-08 16:00:00,0.0,1006.5128699999999,102.2583333,69.20166667,25.15666667,1.33025,237.4034589 +2014-08-08 17:00:00,3.1086298560000003,1006.355333,55.58833333,78.26083333,23.98166667,0.8989166670000001,237.4027571 +2014-08-08 18:00:00,2.967691344,1005.634889,50.80916667,97.70833333,21.045,0.261916667,237.4034589 +2014-08-08 19:00:00,0.0,1005.031444,13.58583333,99.90833333,20.6125,0.15716666699999998,237.4041607 +2014-08-08 20:00:00,0.0,1004.7860000000001,0.325916667,100.0,18.535,0.135333333,237.40451159999998 +2014-08-08 21:00:00,0.0,1004.440556,0.0,100.0,17.18083333,0.02725,237.40310799999997 +2014-08-08 22:00:00,0.0,1003.793222,0.0,100.0,16.375,0.005333333000000001,237.4045116 +2014-08-08 23:00:00,0.0,1003.2091109999999,0.0,100.0,15.92583333,0.006999999999999999,237.4041607 +2014-09-08 00:00:00,0.0,1002.570111,0.0,100.0,15.24,0.0,237.7931439 +2014-09-08 01:00:00,0.0,1002.131444,0.0,100.0,15.635,0.37458333299999996,237.79488163333335 +2014-09-08 02:00:00,27.42198096,1001.7878890000001,0.0,99.85833333,18.07083333,1.27275,237.7934781 +2014-09-08 03:00:00,0.0,1002.080667,0.0,100.0,17.50166667,0.33633333299999996,237.7931439 +2014-09-08 04:00:00,2.874298488,1002.125,0.094416667,96.0,18.81833333,1.63,237.7924755 +2014-09-08 05:00:00,0.0,1003.0457779999999,19.32358333,93.15,19.6225,1.5481666669999998,237.7928097 +2014-09-08 06:00:00,0.0,1003.919667,58.14,90.21666667,19.61333333,0.8845833329999999,237.7924755 +2014-09-08 07:00:00,0.0,1004.529889,167.0458333,86.88333333,19.905,1.4921666669999998,237.7921413 +2014-09-08 08:00:00,0.0,1005.117,108.63916670000002,84.7,20.45333333,2.554416667,237.7934781 +2014-09-08 09:00:00,0.0,1006.059401,204.8666667,80.02916667,21.47583333,2.0878333330000003,237.7934781 +2014-09-08 10:00:00,2.64410304,1007.3538060000001,290.25,79.6325,21.0925,1.22125,237.7931439 +2014-09-08 11:00:00,0.0,1008.4648890000001,532.6916666999999,70.71333333,21.76833333,1.770666667,237.7914729 +2014-09-08 12:00:00,0.0,1009.0768609999999,669.5,63.31666667,21.925,2.243666667,237.79042024999998 +2014-09-08 13:00:00,0.0,1009.6148890000001,451.25,61.795,22.59333333,2.4135,237.78903339999997 +2014-09-08 14:00:00,0.0,1009.869417,488.5,57.16,22.41,1.047166667,237.78736239999998 +2014-09-08 15:00:00,0.0,1009.884306,428.21666669999996,55.69833333,23.115,1.007916667,237.78701151666664 +2014-09-08 16:00:00,0.0,1009.736083,364.0416667,52.60833333,23.60833333,0.9470000000000001,237.7852571 +2014-09-08 17:00:00,0.0,1009.6462779999999,117.6375,57.725,23.41416667,0.392666667,237.78425454999999 +2014-09-08 18:00:00,0.0,1009.45,50.99833333,65.825,22.8625,0.062166667,237.78325199999998 +2014-09-08 19:00:00,0.0,1009.634305,22.14375,84.2175,20.61583333,0.021333333,237.78325199999998 +2014-09-08 20:00:00,0.0,1010.0351939999999,0.317916667,93.25,16.20583333,0.053916667,237.78184840000003 +2014-09-08 21:00:00,0.0,1009.7805,0.0,97.01666667,14.35666667,0.032416667,237.78184840000003 +2014-09-08 22:00:00,0.0,1009.4351939999999,0.0,99.94166667,12.8925,0.10133333300000001,237.78114660000003 +2014-09-08 23:00:00,0.0,1009.13325,0.0,100.0,12.385,0.058583333,237.78114660000003 +2014-10-08 00:00:00,0.0,1008.607361,0.0,100.0,12.45833333,0.0205,238.0018525 +2014-10-08 01:00:00,0.0,1008.428735,0.0,100.0,13.22083333,0.015333333000000001,238.00220249999998 +2014-10-08 02:00:00,0.0,1008.1436669999999,0.0,100.0,14.14916667,0.124666667,238.00220249999998 +2014-10-08 03:00:00,4.884796752,1007.455667,0.0,99.46666667,14.57166667,0.232083333,238.00360249999997 +2014-10-08 04:00:00,4.96949388,1007.004667,0.033833333,99.89166667,14.79,0.49458333299999996,238.0039525 +2014-10-08 05:00:00,0.0,1006.739833,5.007666667,100.0,14.74583333,0.319583333,238.0032525 +2014-10-08 06:00:00,0.0,1006.5575,29.10833333,100.0,15.035,0.036666667,238.0039525 +2014-10-08 07:00:00,2.437205664,1006.239833,207.4666667,96.875,16.22916667,0.677333333,238.0039525 +2014-10-08 08:00:00,0.0,1005.730667,195.2833333,88.7,18.95916667,1.8573333330000001,238.0039525 +2014-10-08 09:00:00,0.0,1005.446333,207.29166669999998,86.94166667,19.5925,2.95775,238.0039525 +2014-10-08 10:00:00,0.0,1004.915833,447.625,85.10833333,19.825,3.247833333,238.0039525 +2014-10-08 11:00:00,0.0,1004.5186669999999,333.5,79.72166667,21.825,2.773,238.0039525 +2014-10-08 12:00:00,0.0,1003.986167,470.675,75.27166667,23.62916667,3.020916667,238.0018691666667 +2014-10-08 13:00:00,24.56347846,1003.5315,174.5425,81.59166667,23.44666667,2.0531666669999997,237.99368583333333 +2014-10-08 14:00:00,26.27430982,1003.5325,48.16583333,99.60833333,21.11833333,0.512166667,237.98718583333334 +2014-10-08 15:00:00,67.60695269,1002.810333,19.9875,99.775,20.3675,0.545416667,237.9844025 +2014-10-08 16:00:00,6.142366824,1001.9955,124.545,94.64166667,20.22583333,1.029083333,237.98301916666665 +2014-10-08 17:00:00,2.4050227680000003,1001.7489999999999,32.36066667,98.58333333,20.29083333,0.39141666700000005,237.98301916666665 +2014-10-08 18:00:00,170.8390764,1001.7415619999999,3.427083333,99.325,19.69833333,1.274833333,237.98168583333333 +2014-10-08 19:00:00,9.160374312,1001.464167,3.111583333,98.36666667,19.5375,1.311583333,237.98168583333333 +2014-10-08 20:00:00,0.0,1001.831111,0.145,95.99166667,18.92583333,0.5355,237.98135249999999 +2014-10-08 21:00:00,13.11260405,1002.3822220000001,0.0,93.44166667,19.50583333,0.9760833329999999,237.98168583333333 +2014-10-08 22:00:00,2.43257292,1002.9459720000001,0.0,98.76666667,18.32583333,0.171666667,237.98135249999999 +2014-10-08 23:00:00,0.0,1003.694861,0.0,95.91666667,17.68916667,0.258833333,237.98135249999999 +2014-11-08 00:00:00,0.0,1004.96625,0.0,96.54166667,17.0575,0.073333333,237.9505525 +2014-11-08 01:00:00,0.0,1005.6394439999999,0.0,97.40833333,16.56166667,0.0955,237.94880250000003 +2014-11-08 02:00:00,0.0,1006.3488890000001,0.0,94.1,15.96333333,0.09908333300000001,237.9484525 +2014-11-08 03:00:00,2.430129504,1006.8209720000001,0.0,95.54166667,14.05583333,0.3075,237.94880250000003 +2014-11-08 04:00:00,0.0,1007.230417,0.040833333,98.48333333,12.22333333,0.005583333,237.9498525 +2014-11-08 05:00:00,0.0,1007.8209720000001,11.72591667,96.9,11.43166667,0.0,237.9505525 +2014-11-08 06:00:00,0.0,1008.450694,86.10666667,92.65,13.28416667,0.090583333,237.9505525 +2014-11-08 07:00:00,0.0,1008.947083,181.445,88.725,14.89416667,0.230333333,237.9505525 +2014-11-08 08:00:00,0.0,1009.1840279999999,151.06666669999998,84.15,16.51333333,0.5195,237.95155249999996 +2014-11-08 09:00:00,0.0,1009.525,271.46666669999996,80.095,17.615,0.56975,237.95221916666665 +2014-11-08 10:00:00,0.0,1009.6351390000001,487.8,71.6975,18.79583333,0.830583333,237.9525525 +2014-11-08 11:00:00,0.0,1009.5487720000001,592.225,63.8,19.87410096,0.782333333,237.9525525 +2014-11-08 12:00:00,0.0,1009.684555,543.6916667,58.4725,20.35001765,0.751416667,237.9525525 +2014-11-08 13:00:00,0.0,1009.4012220000001,590.0583333,55.1525,20.94973838,0.9135833329999999,237.9525525 +2014-11-08 14:00:00,0.0,1009.243444,610.9666667,55.84416667,22.06416667,0.85525,237.95221916666665 +2014-11-08 15:00:00,0.0,1009.169667,376.3583333,58.86333333,19.66666667,1.8655,237.9525525 +2014-11-08 16:00:00,0.0,1008.803,328.525,55.13083333,20.79166667,0.7513333329999999,237.9525525 +2014-11-08 17:00:00,0.0,1008.7868890000001,107.005,51.30416667,21.96166667,0.638166667,237.9525525 +2014-11-08 18:00:00,0.0,1008.8547779999999,36.70333333,53.87,20.67083333,0.670166667,237.9525525 +2014-11-08 19:00:00,0.0,1008.955333,14.68641667,62.625,18.31083333,0.8291666670000001,237.9525525 +2014-11-08 20:00:00,0.0,1009.1868890000001,0.31875,76.9875,15.83083333,0.733916667,237.9539525 +2014-11-08 21:00:00,0.0,1009.188667,0.0,77.65916667,13.6,0.19525,237.9539525 +2014-11-08 22:00:00,0.0,1009.5101109999999,0.0,78.82333333,12.3875,0.037833333,237.95395249999999 +2014-11-08 23:00:00,0.0,1009.364333,0.0,92.94166667,11.46833333,0.054333333,237.9532525 +2014-12-08 00:00:00,0.0,1009.041667,0.0,83.85833333,10.56916667,0.05525,238.15265250000002 +2014-12-08 01:00:00,0.0,1008.842889,0.0,77.99833333,12.66583333,0.2465,238.16838583333333 +2014-12-08 02:00:00,4.888250448,1008.672,0.0,85.10583333,14.51416667,0.304416667,238.18141916666664 +2014-12-08 03:00:00,0.0,1008.5612779999999,0.0,91.3,13.37,0.050416667000000005,238.18206916666665 +2014-12-08 04:00:00,0.0,1008.568417,0.040416667,91.41666667,13.185,0.060083332999999996,238.1944358333333 +2014-12-08 05:00:00,0.0,1008.88375,11.21791667,93.69166667,12.33333333,0.025833332999999997,238.2033358333333 +2014-12-08 06:00:00,0.0,1009.318417,77.77666667,89.96666667,13.7925,0.145333333,238.22288583333332 +2014-12-08 07:00:00,0.0,1009.463583,90.78416667,86.46666667,14.67166667,0.35475,238.22183583333333 +2014-12-08 08:00:00,0.0,1009.65,158.3,81.23166667,15.5975,0.761166667,238.2191025 +2014-12-08 09:00:00,0.0,1009.7285,267.7083333,76.8025,17.17666667,0.70325,238.24480250000002 +2014-12-08 10:00:00,0.0,1009.6364169999999,338.09166669999996,69.41333333,18.38416667,0.571666667,238.2379525 +2014-12-08 11:00:00,0.0,1009.411417,551.3833333,60.01416667,20.28,1.079833333,238.2660525 +2014-12-08 12:00:00,0.0,1009.099583,615.0916667,51.09916667,21.06416667,0.978833333, +2014-12-08 13:00:00,0.0,1008.701333,540.5583333,49.58416667,21.74166667,0.922416667, +2014-12-08 14:00:00,0.0,1007.98775,569.3333332999999,48.83666667,22.13916667,0.874583333, +2014-12-08 15:00:00,0.0,1007.3645,509.45,45.00833333,22.43916667,0.9770833329999999, +2014-12-08 16:00:00,0.0,1006.64125,433.5583333000001,44.34333333,22.49,1.187083333, +2014-12-08 17:00:00,0.0,1006.1978330000001,108.2375,46.54833333,22.11833333,1.285, +2014-12-08 18:00:00,0.0,1006.170167,39.30166667,54.55833333,20.52916667,1.009333333, +2014-12-08 19:00:00,0.0,1006.171917,16.11333333,66.55,17.96416667,0.34366666700000004, +2014-12-08 20:00:00,0.0,1006.4301730000001,0.235166667,79.87166667,17.2825,0.959333333, +2014-12-08 21:00:00,0.0,1006.666667,0.0,76.4975,16.735,0.8896666670000001, +2014-12-08 22:00:00,0.0,1006.6448330000001,0.0,85.61666667,14.82583333,0.40675, +2014-12-08 23:00:00,0.0,1006.254889,0.0,94.74166667,12.56,0.056083333, +2014-08-13 00:00:00,0.0,1005.7945560000001,0.0,95.50833333,12.85916667,0.04725,237.4543889 +2014-08-13 01:00:00,0.0,1004.967833,0.0,97.25833333,13.2875,0.058083333,237.4543889 +2014-08-13 02:00:00,0.0,1004.323,0.0,97.74166667,13.3425,0.162083333,237.4543889 +2014-08-13 03:00:00,0.0,1003.9,0.0,99.9,12.01916667,0.08425,237.4543889 +2014-08-13 04:00:00,0.0,1003.631333,0.000916667,100.0,12.69166667,0.044000000000000004,237.45333625 +2014-08-13 05:00:00,0.0,1003.0580560000001,6.953583332999999,100.0,13.15416667,0.09575,237.45228360000002 +2014-08-13 06:00:00,0.0,1002.7298890000001,40.67,97.74166667,13.85916667,0.7383333329999999,237.45228360000002 +2014-08-13 07:00:00,0.0,1002.464944,185.29166669999998,87.31666667,15.09916667,0.805416667,237.45123089999996 +2014-08-13 08:00:00,0.0,1002.102889,123.38916670000002,81.6925,17.01166667,0.4285,237.45052909999995 +2014-08-13 09:00:00,0.0,1001.6833330000001,210.4,78.77666667,18.2,0.600916667,237.45019491666665 +2014-08-13 10:00:00,0.0,1001.758056,206.5166667,75.23666667,19.41,0.7908333329999999,237.44676949999996 +2014-08-13 11:00:00,0.0,1001.214944,192.45,72.38833333,20.05416667,1.053166667,237.4453993333333 +2014-08-13 12:00:00,0.0,1000.966389,137.1333333,76.50583333,19.42,1.1525,237.44506515 +2014-08-13 13:00:00,0.0,1000.5166609999999,219.29166669999998,79.1475,19.26333333,0.680416667,237.44406260000002 +2014-08-13 14:00:00,7.299489287999999,1000.4315,73.655,87.175,18.5875,0.429,237.4437117 +2014-08-13 15:00:00,26.51891606,999.7915277999999,79.0175,98.06666667,17.3575,0.0465,237.44336079999997 +2014-08-13 16:00:00,9.94771116,1000.126972,56.94166667,98.53333333,16.915,0.43741666700000004,237.44195719999996 +2014-08-13 17:00:00,167.15106640000002,1000.888417,6.302916667000001,99.71666667,15.80333333,1.027333333,237.4419906333333 +2014-08-13 18:00:00,136.1225809,1001.0334720000001,9.088666667,100.0,14.89833333,0.947666667,237.46429758333332 +2014-08-13 19:00:00,17.97216286,1001.885306,8.984583333,100.0,14.58416667,0.527166667,237.49317133333332 +2014-08-13 20:00:00,2.4050227680000003,1002.9186390000001,0.181666667,100.0,14.41916667,0.042,237.50623798333334 +2014-08-13 21:00:00,0.0,1003.8435,0.0,99.9,14.39333333,0.11808333300000001,237.51275461666668 +2014-08-13 22:00:00,0.0,1004.6603060000001,0.0,99.99166667,14.44583333,0.242916667,237.5164975 +2014-08-13 23:00:00,2.420878824,1005.266667,0.0,99.83333333,14.19583333,0.3075,237.518252 +2014-08-14 00:00:00,0.0,1005.716805,0.0,99.3,14.3725,0.20225,237.5175502 +2014-08-14 01:00:00,0.0,1005.8817779999999,0.0,99.05,13.59083333,0.095083333,237.5171993 +2014-08-14 02:00:00,0.0,1006.155083,0.0,99.625,12.49416667,0.040583333,237.5171993 +2014-08-14 03:00:00,2.414447112,1006.3399720000001,0.0,99.46666667,12.4725,0.37391666700000004,237.51514405000003 +2014-08-14 04:00:00,0.0,1006.5884169999999,0.0235,99.95,11.87416667,0.006166667,237.51379060000002 +2014-08-14 05:00:00,0.0,1006.8167609999999,10.56816667,100.0,10.94166667,0.013416667,237.51273790000002 +2014-08-14 06:00:00,0.0,1007.135,63.79583333,98.15,11.83666667,0.10175,237.51203610000002 +2014-08-14 07:00:00,0.0,1007.503333,135.555,94.65,14.5625,0.29583333300000003,237.510031 +2014-08-14 08:00:00,0.0,1007.505,178.3666667,91.4,15.155,0.472583333,237.5103651833333 +2014-08-14 09:00:00,0.0,1007.513333,366.3583333,85.53333333,16.17,0.621416667,237.5089783 +2014-08-14 10:00:00,0.0,1007.64,438.675,78.88583333,17.525,0.5835,237.50725723333332 +2014-08-14 11:00:00,0.0,1007.32,547.325,74.045,18.79666667,0.916666667,237.50556961666666 +2014-08-14 12:00:00,0.0,1007.001667,450.65833330000004,72.58083333,19.01833333,0.970166667,237.50351436666665 +2014-08-14 13:00:00,0.0,1006.703333,435.90833330000004,71.78083333,18.4975,1.689416667,237.94478359999997 +2014-08-14 14:00:00,0.0,1006.483333,355.4333333,70.59,19.65583333,1.84575,238.05262309999998 +2014-08-14 15:00:00,0.0,1006.611667,282.9916667,68.32083333,19.99,1.041,238.03576339999995 +2014-08-14 16:00:00,0.0,1006.605,412.28333330000004,62.4025,19.40916667,1.185833333,238.02271340000001 +2014-08-14 17:00:00,0.0,1006.661667,95.905,68.3825,19.53,0.9411666670000001,238.0130888 +2014-08-14 18:00:00,0.0,1007.085,33.76416667,74.57416667,18.36666667,0.40425,238.0058871 +2014-08-14 19:00:00,102.7655311,1007.6833330000001,1.6990833330000001,95.20833333,15.305,0.6469166670000001,238.0055528833333 +2014-08-14 20:00:00,0.0,1007.76,0.060583332999999996,99.66666667,13.95916667,0.726333333,238.00521873333332 +2014-08-14 21:00:00,0.0,1007.745,0.0,100.0,13.09833333,0.12941666699999999,238.00247839999997 +2014-08-14 22:00:00,2.421048024,1007.911667,0.0,100.0,12.84166667,0.124833333,238.0000555833333 +2014-08-14 23:00:00,0.0,1007.678333,0.0,100.0,12.49916667,0.096416667,237.99795020000002 +2014-08-15 00:00:00,0.0,1007.591667,0.0,100.0,12.1925,0.070166667,237.99693093333335 +2014-08-15 01:00:00,0.0,1007.576667,0.0,100.0,12.42666667,0.054583333,237.99559419999994 +2014-08-15 02:00:00,0.0,1007.498333,0.0,100.0,12.315,0.000666667,237.9938397 +2014-08-15 03:00:00,0.0,1007.156667,0.0,100.0,12.00583333,0.050916667,237.99248624999998 +2014-08-15 04:00:00,2.4050227680000003,1007.115,0.0,100.0,11.38166667,0.02875,237.99113279999997 +2014-08-15 05:00:00,0.0,1007.43,3.5916666669999997,100.0,11.30583333,0.0,237.98937830000003 +2014-08-15 06:00:00,0.0,1007.65,18.54666667,100.0,11.98166667,0.0,237.98937830000003 +2014-08-15 07:00:00,7.261560407999999,1007.746667,42.57083333,100.0,12.68166667,0.057583333,237.98937830000003 +2014-08-15 08:00:00,9.695853984,1007.983333,63.84416667,100.0,13.4375,0.11800000000000001,237.98837575000002 +2014-08-15 09:00:00,19.23806326,1008.078333,173.66916669999998,98.20833333,14.12,0.0785,237.9890441166667 +2014-08-15 10:00:00,0.0,1007.896667,300.9916667,88.79166667,16.15,0.3535,237.98904411666672 +2014-08-15 11:00:00,17.99608697,1007.756667,237.3258333,92.10833333,16.295,0.58125,237.98837575000002 +2014-08-15 12:00:00,15.10054099,1007.8166669999999,253.575,91.25,15.65083333,0.47375,237.98937830000003 +2014-08-15 13:00:00,0.0,1007.926667,211.4083333,90.93333333,16.325,0.65675,237.9918178833333 +2014-08-15 14:00:00,0.0,1008.096667,280.8833333,89.61666667,16.77416667,0.37158333299999996,237.99348880000002 +2014-08-15 15:00:00,0.0,1008.465,266.075,84.71666667,17.455,0.510416667,237.99454149999997 +2014-08-15 16:00:00,0.0,1008.725,225.16666669999998,87.6,16.85833333,0.688333333,237.99559419999994 +2014-08-15 17:00:00,0.0,1008.885,107.07,89.725,16.6175,0.47816666700000005,237.99592838333328 +2014-08-15 18:00:00,0.0,1009.11,49.72,89.64166667,15.985,0.21891666699999998,237.99659674999998 +2014-08-15 19:00:00,0.0,1009.571667,14.40716667,92.96666667,15.12083333,0.053333333,237.99557748333328 +2014-08-15 20:00:00,0.0,1010.296667,0.12866666699999998,94.625,14.21,0.471916667,237.99348880000002 +2014-08-15 21:00:00,0.0,1010.508333,0.0,96.51666667,13.5875,0.108083333,237.99348880000002 +2014-08-15 22:00:00,0.0,1011.041667,0.0,99.75,12.87583333,0.34383333299999996,237.99348880000002 +2014-08-15 23:00:00,0.0,1011.496667,0.0,100.0,13.18,0.136583333,237.99348880000002 +2014-08-16 00:00:00,0.0,1011.68,0.0,99.45,13.19,0.167833333,237.99282043333335 +2014-08-16 01:00:00,0.0,1011.653333,0.0,99.43333333,13.09,0.39916666700000003,237.99282043333335 +2014-08-16 02:00:00,0.0,1011.956667,0.0,99.90833333,12.86083333,0.36008333299999995,237.99148369999997 +2014-08-16 03:00:00,2.411944176,1012.266667,0.0,99.68333333,12.90833333,0.21925,237.99248624999998 +2014-08-16 04:00:00,0.0,1012.6883330000001,0.0,99.33333333,12.88,0.177666667,237.99148369999997 +2014-08-16 05:00:00,0.0,1013.013333,4.231833333,99.89166667,12.93416667,0.641333333,237.9921687833333 +2014-08-16 06:00:00,0.0,1013.391667,33.89083333,99.88333333,12.8825,0.35075,237.99148369999997 +2014-08-16 07:00:00,0.0,1014.025,211.45833330000002,93.875,14.17416667,0.577666667,237.99113279999997 +2014-08-16 08:00:00,0.0,1014.351667,142.3,92.275,15.81833333,0.47,237.9900801 +2014-08-16 09:00:00,0.0,1014.763333,186.1425,92.78333333,16.33583333,0.75275,237.9873732 +2014-08-16 10:00:00,0.0,1014.8166669999999,490.84166669999996,89.0,16.56833333,1.024666667,237.9873732 +2014-08-16 11:00:00,23.48717474,1014.756667,361.4416667,83.6375,16.65916667,1.040666667,237.9873732 +2014-08-16 12:00:00,0.0,1014.518333,360.8,86.39166667,16.61833333,0.91825,237.9856187 +2014-08-16 13:00:00,3.166017024,1014.611667,485.24166669999994,78.30583333,17.87333333,1.686833333,237.98456600000006 +2014-08-16 14:00:00,0.0,1014.578333,524.5416667,69.87833333,18.87666667,1.231083333,237.984566 +2014-08-16 15:00:00,0.0,1014.325,301.35,72.61,19.32083333,0.995166667,237.9831624 +2014-08-16 16:00:00,0.0,1014.295,254.30833330000002,69.58666667,18.93833333,1.06725,237.98115730000004 +2014-08-16 17:00:00,0.0,1014.055,99.735,69.53666667,17.83,1.7243333330000001,237.98115730000004 +2014-08-16 18:00:00,0.0,1013.891667,52.58416667,74.52916667,17.23166667,0.53325,237.9790853333334 +2014-08-16 19:00:00,0.0,1013.93,12.60008333,77.9725,15.81166667,0.053333333,237.97704680000007 +2014-08-16 20:00:00,0.0,1014.3,0.078416667,81.76666667,14.75083333,0.004,237.976345 +2014-08-16 21:00:00,0.0,1014.328333,0.0,83.725,14.61583333,0.20425,237.9749414 +2014-08-16 22:00:00,0.0,1014.271667,0.0,88.24166667,14.435,0.04775,237.9736046666666 +2014-08-16 23:00:00,0.0,1013.896667,0.0,91.55,14.38666667,0.017,237.97360466666666 +2014-08-17 00:00:00,0.0,1013.418333,0.0,95.08333333,13.3325,0.0,237.9729363 +2014-08-17 01:00:00,0.0,1012.868333,0.0,98.475,11.53333333,0.03275,237.9729363 +2014-08-17 02:00:00,0.0,1012.38,0.0,99.53333333,10.495,0.003416667,237.9729363 +2014-08-17 03:00:00,0.0,1011.871667,0.0,96.25833333,9.870833333,0.0,237.97188359999998 +2014-08-17 04:00:00,0.0,1011.355,0.0,98.94166667,9.381666667000001,0.0,237.97083089999998 +2014-08-17 05:00:00,0.0,1011.291667,8.132583333,98.05,9.223333333,0.0,237.9691599833333 +2014-08-17 06:00:00,0.0,1011.055,57.67583333,89.04166667,10.84166667,0.057583333,237.96882580000002 +2014-08-17 07:00:00,0.0,1010.785,137.3833333,83.45833333,14.67166667,0.40433333299999996,237.96847489999996 +2014-08-17 08:00:00,0.0,1010.231667,175.3583333,76.46166667,16.91166667,0.837166667,237.96777309999996 +2014-08-17 09:00:00,0.0,1009.893333,312.7,71.13416667,18.34166667,0.788333333,237.968124 +2014-08-17 10:00:00,0.0,1009.4366669999999,203.7775,71.755,18.1625,0.802,237.96672039999999 +2014-08-17 11:00:00,0.0,1009.076667,303.9091667,71.75833333,17.69416667,0.755166667,237.96672039999999 +2014-08-17 12:00:00,0.0,1008.621667,262.6916667,67.01333333,18.29583333,0.933916667,237.96566774999997 +2014-08-17 13:00:00,0.0,1007.988333,190.95833330000002,64.68083333,18.36333333,1.0170000000000001,237.96428089999998 +2014-08-17 14:00:00,0.0,1007.486667,152.9,65.50666667,17.7,0.64075,237.9626099 +2014-08-17 15:00:00,0.0,1007.166667,200.0166667,65.1675,17.87666667,0.6203333329999999,237.9601704 +2014-08-17 16:00:00,0.0,1006.56,177.375,64.68166667,18.115,0.5529999999999999,237.9598362 +2014-08-17 17:00:00,0.0,1005.871667,91.19916667,64.6,18.2,0.56375,237.95883359999996 +2014-08-17 18:00:00,0.0,1005.406667,43.37833333,65.18916667,17.49333333,0.604833333,237.9553915 +2014-08-17 19:00:00,0.0,1005.101667,8.897583333,70.16916667,16.245,1.093083333,237.9543889 +2014-08-17 20:00:00,0.0,1005.115,0.069916667,71.085,15.565,0.607,237.95263448333336 +2014-08-17 21:00:00,0.0,1004.841667,0.0,70.94083333,16.39416667,1.4876666669999998,237.95333624999998 +2014-08-17 22:00:00,0.0,1004.598333,0.0,71.5375,16.14916667,1.3519166669999998,237.95228360000002 +2014-08-17 23:00:00,0.0,1004.21,0.0,72.9,15.96666667,1.0513333329999999,237.95193270000001 +2014-08-18 00:00:00,0.0,1003.823333,0.0,73.71083333,15.89416667,1.014333333,237.94917565 +2014-08-18 01:00:00,0.0,1003.273333,0.0,75.40333333,15.35333333,0.674083333,237.94817310000005 +2014-08-18 02:00:00,0.0,1003.136667,0.0,76.61166667,14.62916667,0.66075,237.9464186 +2014-08-18 03:00:00,0.0,1003.0583330000001,0.0,77.60666667,14.815,0.656833333,237.9453993333333 +2014-08-18 04:00:00,0.0,1002.993333,0.0,83.925,14.18166667,0.273833333,237.94406260000002 +2014-08-18 05:00:00,0.0,1002.728333,8.198583333,87.84166667,13.96833333,0.923416667,237.94406260000002 +2014-08-18 06:00:00,0.0,1002.95,40.465,83.06666667,14.525,1.1735,237.94406260000002 +2014-08-18 07:00:00,0.0,1003.091667,66.87666667,83.71666667,14.69,0.7031666670000001,237.94336080000002 +2014-08-18 08:00:00,0.0,1003.271667,91.78,86.68333333,14.705,0.7835,237.94336080000002 +2014-08-18 09:00:00,2.5923119999999997,1003.391667,132.4833333,92.55833333,14.23,0.6728333329999999,237.94195719999996 +2014-08-18 10:00:00,0.0,1003.516667,368.575,89.81666667,15.62416667,0.6246666670000001,237.94195719999996 +2014-08-18 11:00:00,0.0,1003.496667,369.21666669999996,78.13166667,16.78416667,0.7799166670000001,237.94028628333334 +2014-08-18 12:00:00,0.0,1003.256667,671.8,69.835,18.6125,1.2135,237.93751251666663 +2014-08-18 13:00:00,2.7314252160000003,1003.746667,418.4,73.28833333,18.66416667,1.130666667,237.9361757833333 +2014-08-18 14:00:00,0.0,1003.825,526.7583333,75.05166667,17.185,0.890833333,237.93478889999994 +2014-08-18 15:00:00,2.73003732,1003.943333,462.33333330000005,64.19,19.22,1.07725,237.93373619999997 +2014-08-18 16:00:00,0.0,1004.375,335.1666667,66.11833333,19.665,0.644916667,237.93163080000002 +2014-08-18 17:00:00,0.0,1004.655,71.96,60.92666667,18.61583333,0.7583333329999999,237.93029406666665 +2014-08-18 18:00:00,0.0,1005.221667,47.15416667,58.85583333,17.59666667,1.42025,237.92822209999997 +2014-08-18 19:00:00,0.0,1005.896667,8.747583333,70.19916667,15.965,1.3768333330000002,237.92685193333338 +2014-08-18 20:00:00,0.0,1006.34,0.062,89.75833333,13.535,0.146583333,237.92551519999998 +2014-08-18 21:00:00,0.0,1006.638333,0.0,95.825,11.58166667,0.034583333,237.92551519999998 +2014-08-18 22:00:00,0.0,1006.898333,0.0,98.64166667,10.6025,0.044916667,237.92551519999998 +2014-08-18 23:00:00,0.0,1006.918333,0.0,99.775,10.5075,0.10158333300000001,237.92411159999997 +2014-08-19 00:00:00,0.0,1006.935,0.0,100.0,9.5175,0.026000000000000002,237.92208978333335 +2014-08-19 01:00:00,0.0,1006.733333,0.0,100.0,8.649166667000001,0.033583333,237.9214047 +2014-08-19 02:00:00,0.0,1006.263333,0.0,100.0,7.674916667000001,0.097666667,237.9214047 +2014-08-19 03:00:00,0.0,1006.246667,0.0,100.0,6.954083333,0.005083333,237.9214047 +2014-08-19 04:00:00,0.0,1006.671667,0.0,100.0,6.43,0.014833333,237.9214047 +2014-08-19 05:00:00,0.0,1006.581667,6.207166667,100.0,6.1845,0.008333333,237.920352 +2014-08-19 06:00:00,0.0,1006.935,43.85833333,100.0,7.409666667000001,0.017583333,237.92000110000004 +2014-08-19 07:00:00,0.0,1007.115,225.65,97.875,10.5,0.54175,237.91929930000006 +2014-08-19 08:00:00,0.0,1006.918333,207.80833330000002,81.55416667,14.68916667,0.7665833329999999,237.91929930000006 +2014-08-19 09:00:00,0.0,1006.8116669999999,230.9833333,75.5775,16.655,0.823833333,237.91929930000006 +2014-08-19 10:00:00,0.0,1006.7,370.34166669999996,70.86583333,16.94083333,1.10525,237.91929930000006 +2014-08-19 11:00:00,0.0,1006.59,419.1333333,63.86,18.10916667,0.8563333329999999,237.9178957666667 +2014-08-19 12:00:00,0.0,1006.321667,471.88333330000006,58.245,19.9825,0.9255,237.91685980000003 +2014-08-19 13:00:00,0.0,1005.956667,602.5083333,53.11666667,20.025,1.36775,237.9151721166667 +2014-08-19 14:00:00,0.0,1006.675,256.65,58.8075,19.525,1.514666667,237.91346778333335 +2014-08-19 15:00:00,3.163667184,1008.008333,133.2175,83.73416667,14.90666667,2.347916667,237.90932390000003 +2014-08-19 16:00:00,0.0,1008.043333,132.03166670000002,84.85,13.23083333,0.489833333,237.90897300000003 +2014-08-19 17:00:00,0.0,1008.151667,85.83666667,83.07083333,13.99,0.339083333,237.90830463333336 +2014-08-19 18:00:00,0.0,1008.571667,62.6625,83.39166667,13.88833333,0.11491666699999999,237.90730208333332 +2014-08-19 19:00:00,0.0,1008.981667,11.87216667,87.325,13.30333333,0.135166667,237.9069679 +2014-08-19 20:00:00,0.0,1009.805,0.024416667000000003,89.575,12.1675,0.538666667,237.9048625 +2014-08-19 21:00:00,0.0,1010.083333,0.0,83.90833333,11.79833333,0.37225,237.9034589 +2014-08-19 22:00:00,0.0,1010.405,0.0,93.29166667,8.962333333,0.053583333,237.90310799999997 +2014-08-19 23:00:00,0.0,1010.726667,0.0,99.73333333,7.178583333,0.05925,237.9027571 +2014-08-20 00:00:00,0.0,1010.786667,0.0,99.64166667,8.056166667000001,0.313166667,237.9027571 +2014-08-20 01:00:00,0.0,1010.843333,0.0,100.0,8.0145,0.47625,237.9027571 +2014-08-20 02:00:00,0.0,1011.053333,0.0,100.0,6.645583332999999,0.056166667,237.90173783333339 +2014-08-20 03:00:00,0.0,1011.261667,0.0,100.0,7.3845,0.64275,237.8993484 +2014-08-20 04:00:00,0.0,1011.621667,0.0,97.98333333,7.3155,0.662666667,237.89899750000004 +2014-08-20 05:00:00,0.0,1011.86,5.736083333,99.33333333,6.664,0.091916667,237.89864660000003 +2014-08-20 06:00:00,0.0,1012.126667,37.70583333,100.0,6.97325,0.148666667,237.89864660000003 +2014-08-20 07:00:00,0.0,1012.62,196.2158333,89.30833333,10.50416667,0.14300000000000002,237.89864660000003 +2014-08-20 08:00:00,0.0,1012.886667,153.8883333,81.24166667,13.34833333,0.593833333,237.89764405000005 +2014-08-20 09:00:00,0.0,1012.958333,305.66083330000004,74.05,14.70916667,0.639333333,237.89797823333333 +2014-08-20 10:00:00,0.0,1012.751667,508.66666669999995,65.19833333,15.88333333,0.7945,237.89664150000002 +2014-08-20 11:00:00,0.0,1012.451667,601.9916667,58.0025,17.35333333,0.7476666670000001,237.8959397 +2014-08-20 12:00:00,0.0,1012.443333,515.7916667,57.91916667,17.70583333,0.80875,237.8945361 +2014-08-20 13:00:00,0.0,1012.173333,537.0916667,53.64333333,18.46333333,0.7250833329999999,237.89286518333333 +2014-08-20 14:00:00,0.0,1011.896667,479.1083333000001,52.1275,18.68583333,0.767166667,237.89042560000004 +2014-08-20 15:00:00,0.0,1011.57,311.85,52.74333333,18.26583333,0.78375,237.88908886666664 +2014-08-20 16:00:00,0.0,1011.3166669999999,189.2583333,56.1825,17.90916667,0.535833333,237.88842049999997 +2014-08-20 17:00:00,0.0,1011.168333,121.125,58.69583333,17.28166667,0.633166667,237.88771870000002 +2014-08-20 18:00:00,0.0,1011.076667,56.32916667,69.995,16.17666667,0.45783333299999995,237.88631510000002 +2014-08-20 19:00:00,0.0,1011.36,8.50975,87.14166667,13.94166667,0.029416667,237.8845606 +2014-08-20 20:00:00,0.0,1011.586667,0.010833333,93.09166667,12.44916667,0.0415,237.8842097 +2014-08-20 21:00:00,0.0,1011.9416669999999,0.0,96.16666667,11.15583333,0.043583332999999995,237.8859642 +2014-08-20 22:00:00,0.0,1012.201667,0.0,90.58333333,11.33833333,0.232333333,237.88422641666668 +2014-08-20 23:00:00,0.0,1012.158333,0.0,97.5,9.275,0.1335,237.88354133333334 +2014-08-21 00:00:00,0.0,1012.166667,0.0,99.69166667,8.277999999999999,0.023916667000000003,237.8825387833334 +2014-08-21 01:00:00,0.0,1012.116667,0.0,100.0,7.314416667000001,0.057916667000000005,237.8828729666667 +2014-08-21 02:00:00,0.0,1012.171667,0.0,100.0,6.51075,0.023333332999999998,237.88185370000005 +2014-08-21 03:00:00,0.0,1012.511667,0.0,100.0,7.4365,0.026583332999999997,237.88009920000005 +2014-08-21 04:00:00,0.0,1012.4333330000001,0.0,99.325,8.973333333,0.040416667,237.88009920000005 +2014-08-21 05:00:00,0.0,1012.713333,5.847083333,99.925,7.782583333,0.01575,237.88009920000005 +2014-08-21 06:00:00,0.0,1013.125,41.87166667,100.0,8.05125,0.002666667,237.88009920000005 +2014-08-21 07:00:00,0.0,1013.418333,165.7441667,95.58333333,10.72083333,0.18633333300000002,237.88009920000005 +2014-08-21 08:00:00,0.0,1013.553333,164.7666667,87.525,13.315,0.287916667,237.88009920000005 +2014-08-21 09:00:00,0.0,1013.588333,314.0833333,77.6625,14.9125,0.6065,237.87909664999998 +2014-08-21 10:00:00,0.0,1013.381667,483.7666666999999,68.48833333,16.07916667,0.8138333329999999,237.87876246666667 +2014-08-21 11:00:00,0.0,1013.291667,607.4166667000001,60.3275,17.2225,0.912083333,237.87739233333332 +2014-08-21 12:00:00,0.0,1013.153333,659.0583333,54.74416667,17.7975,1.192,237.8759888 +2014-08-21 13:00:00,0.0,1012.75,644.9416667,50.56583333,18.8225,0.978916667,237.874652 +2014-08-21 14:00:00,0.0,1012.3083330000001,435.875,48.675,18.75,0.8975833329999999,237.8739836 +2014-08-21 15:00:00,0.0,1012.023333,165.58333330000002,53.23166667,17.7625,0.703416667,237.87258006666664 +2014-08-21 16:00:00,0.0,1011.5583330000001,252.55833330000002,51.19,18.47166667,0.5225,237.87047470000002 +2014-08-21 17:00:00,0.0,1011.321667,70.09,53.0975,17.83916667,0.594166667,237.86841945 +2014-08-21 18:00:00,0.0,1011.331667,53.4775,59.43333333,16.43,0.254416667,237.8674169 +2014-08-21 19:00:00,0.0,1011.451667,6.92,80.24333333,13.86083333,0.0010833330000000001,237.86465985000004 +2014-08-21 20:00:00,0.0,1011.861667,0.0005,92.025,10.67333333,0.0,237.86365730000003 +2014-08-21 21:00:00,0.0,1011.725,0.0,95.95,8.79,0.007666666999999999,237.86365730000003 +2014-08-21 22:00:00,0.0,1011.641667,0.0,98.64166667,8.601666667,0.0,237.86365730000003 +2014-08-21 23:00:00,0.0,1011.453333,0.0,99.925,8.17475,0.010416667,237.86365730000003 +2014-08-22 00:00:00,0.0,1011.116667,0.0,100.0,7.31975,0.045333332999999996,237.86330640000003 +2014-08-22 01:00:00,0.0,1011.021667,0.0,100.0,6.467166667000001,0.06458333299999999,237.8629555 +2014-08-22 02:00:00,0.0,1010.851667,0.0,100.0,5.846666667,0.012416667,237.86190279999997 +2014-08-22 03:00:00,0.0,1010.555,0.0,100.0,5.157,0.00875,237.86365730000003 +2014-08-22 04:00:00,0.0,1010.47,0.0,100.0,4.842,0.0,237.8629555 +2014-08-22 05:00:00,0.0,1010.65,3.937166667,100.0,5.303583333,0.00475,237.8615519 +2014-08-22 06:00:00,0.0,1010.608333,45.865,100.0,6.830333333,0.02025,237.86190279999997 +2014-08-22 07:00:00,0.0,1010.388333,162.32166669999998,98.525,9.286333333,0.32508333300000003,237.8629555 +2014-08-22 08:00:00,0.0,1010.455,208.75,89.71666667,12.26916667,0.693916667,237.8615519 +2014-08-22 09:00:00,0.0,1010.46,286.3583333,82.43583333,14.725,0.5226666670000001,237.8615519 +2014-08-22 10:00:00,0.0,1010.1833330000001,377.6833333,58.4275,17.85416667,0.858916667,237.86021516666673 +2014-08-22 11:00:00,0.0,1009.966667,427.90833330000004,52.3,19.04,1.573916667,237.86054935000004 +2014-08-22 12:00:00,0.0,1009.531667,315.4,51.74333333,18.7875,1.2580833329999999,237.8581432 +2014-08-22 13:00:00,0.0,1009.238333,230.8,50.19083333,18.81583333,1.44925,237.8571072166667 +2014-08-22 14:00:00,0.0,1009.098333,207.4858333,55.295,17.89333333,1.4064166669999998,237.85575376666665 +2014-08-22 15:00:00,0.0,1008.761667,364.6666667,52.73,18.90083333,1.6453333330000002,237.85403269999998 +2014-08-22 16:00:00,0.0,1008.505,204.6333333,50.67583333,19.41416667,1.5290000000000001,237.8522782 +2014-08-22 17:00:00,0.0,1008.15,95.6675,55.845,18.27416667,1.671,237.8512422166667 +2014-08-22 18:00:00,0.0,1007.931667,39.81,61.53166667,17.5025,1.40725,237.84955458333332 +2014-08-22 19:00:00,0.0,1007.935,5.954916667000001,65.95833333,16.12916667,0.9734166670000001,237.84922039999995 +2014-08-22 20:00:00,0.0,1008.13,0.0,67.05083333,15.53666667,1.21175,237.8485186 +2014-08-22 21:00:00,0.0,1008.826667,0.0,69.94583333,15.25166667,1.450666667,237.847115 +2014-08-22 22:00:00,0.0,1009.011667,0.0,87.00666667,12.99083333,0.290416667,237.847115 +2014-08-22 23:00:00,0.0,1009.0666669999999,0.0,94.91666667,11.625,0.02425,237.84678081666667 +2014-08-23 00:00:00,0.0,1008.885,0.0,89.48333333,11.245,0.011083333,237.84611245 +2014-08-23 01:00:00,0.0,1008.723333,0.0,89.1,12.40333333,0.047333333,237.847115 +2014-08-23 02:00:00,0.0,1008.87,0.0,88.58333333,12.18666667,0.038583333,237.8454440833333 +2014-08-23 03:00:00,2.4050227680000003,1008.451667,0.0,94.11666667,11.99083333,0.047416667,237.84544408333332 +2014-08-23 04:00:00,0.0,1008.473333,0.0,95.84166667,11.66583333,0.039416667,237.847115 +2014-08-23 05:00:00,0.0,1008.786667,2.434416667,95.68333333,11.36833333,0.031666667,237.84577826666666 +2014-08-23 06:00:00,0.0,1009.171667,22.58916667,94.775,11.30833333,0.003166667,237.84510989999998 +2014-08-23 07:00:00,0.0,1009.263333,80.28166667,93.38333333,12.6925,0.04875,237.84510989999998 +2014-08-23 08:00:00,0.0,1009.383333,201.6333333,89.35,15.75666667,0.36208333299999995,237.84510989999998 +2014-08-23 09:00:00,0.0,1009.386667,290.3183333,81.3675,16.12416667,0.6466666670000001,237.84475899999998 +2014-08-23 10:00:00,0.0,1009.293333,286.45,77.39166667,16.76333333,0.500833333,237.84405719999998 +2014-08-23 11:00:00,0.0,1009.231667,519.0416667,64.84333333,18.45833333,0.875833333,237.8430045 +2014-08-23 12:00:00,0.0,1008.996667,562.2583333,61.83583333,18.65583333,0.860833333,237.8430045 +2014-08-23 13:00:00,0.0,1008.87,294.09166669999996,60.97833333,18.2425,0.814333333,237.84098268333332 +2014-08-23 14:00:00,0.0,1008.796667,366.3833333,57.77666667,19.28166667,1.0151666670000001,237.83819225 +2014-08-23 15:00:00,108.8064845,1009.48,129.46416670000002,80.73,15.6775,1.266583333,237.83612029999998 +2014-08-23 16:00:00,2.407283112,1009.358333,86.92083333,89.825,13.38083333,0.364333333,237.8347835 +2014-08-23 17:00:00,0.0,1009.633333,70.065,86.30833333,13.38666667,0.38975,237.8347835 +2014-08-23 18:00:00,0.0,1010.03,34.78083333,90.8,12.6275,0.70475,237.83373084999997 +2014-08-23 19:00:00,0.0,1010.635,6.2104166670000005,92.16666667,11.48,0.489,237.83373084999997 +2014-08-23 20:00:00,0.0,1011.175,0.0,95.825,11.10583333,0.21175,237.83267819999995 +2014-08-23 21:00:00,2.448781992,1011.413333,0.0,96.85833333,11.18333333,0.24875,237.83337996666663 +2014-08-23 22:00:00,0.0,1011.605,0.0,97.95,11.15833333,0.192583333,237.83267819999995 +2014-08-23 23:00:00,0.0,1012.003333,0.0,98.74166667,10.77416667,0.192833333,237.83267819999995 +2014-08-24 00:00:00,0.0,1012.05,0.0,98.78333333,9.800833333,0.412083333,237.83167559999995 +2014-08-24 01:00:00,0.0,1012.068333,0.0,99.98333333,8.985833332999999,0.5385,237.83267819999995 +2014-08-24 02:00:00,0.0,1012.333333,0.0,99.91666667,8.586666667000001,0.715833333,237.83267819999995 +2014-08-24 03:00:00,0.0,1012.6833330000001,0.0,99.775,8.678333333,0.521083333,237.83267819999995 +2014-08-24 04:00:00,0.0,1012.596667,0.0,99.76666667,9.013333333,0.390166667,237.83267819999995 +2014-08-24 05:00:00,0.0,1013.23,3.6685,100.0,8.186583333,0.260083333,237.83267819999995 +2014-08-24 06:00:00,0.0,1013.993333,30.065,99.99166667,8.255166667000001,0.227583333,237.83267819999995 +2014-08-24 07:00:00,0.0,1014.345,141.78666669999998,95.75,10.4325,0.223083333,237.83234399999995 +2014-08-24 08:00:00,0.0,1014.801667,151.0408333,87.99166667,12.42666667,0.514166667,237.83167559999995 +2014-08-24 09:00:00,0.0,1015.218333,303.925,80.5775,13.5975,1.006583333,237.83200979999995 +2014-08-24 10:00:00,0.0,1015.348333,508.5166666999999,75.21583333,14.74916667,1.214833333,237.83134139999996 +2014-08-24 11:00:00,0.0,1015.011667,457.8583333000001,69.63666667,15.7725,0.773833333,237.83067299999996 +2014-08-24 12:00:00,0.0,1014.85,341.55,64.9025,15.2975,1.1281666670000001,237.82891858333332 +2014-08-24 13:00:00,0.0,1014.761667,524.2583333,60.095,16.26416667,1.5463333330000002,237.83134139999996 +2014-08-24 14:00:00,0.0,1014.426667,183.66666669999998,68.2725,17.1075,0.776666667,237.82789929999998 +2014-08-24 15:00:00,0.0,1014.473333,370.1666667,66.60333333,16.21583333,0.690083333,237.8265625 +2014-08-24 16:00:00,0.0,1014.15,218.1108333,65.49833333,17.66333333,0.48816666700000005,237.82445719999996 +2014-08-24 17:00:00,0.0,1013.883333,61.52666667,68.575,16.26083333,0.170916667,237.8223518 +2014-08-24 18:00:00,0.0,1014.288333,33.09,72.2025,15.2425,0.775833333,237.8223518 +2014-08-24 19:00:00,0.0,1014.625,10.22616667,90.7875,12.89333333,0.212166667,237.82101506666663 +2014-08-24 20:00:00,0.0,1014.818333,0.0,99.64166667,10.00833333,0.04725,237.82201761666667 +2014-08-24 21:00:00,0.0,1014.798333,0.0,100.0,8.694166667000001,0.003416667,237.82068088333327 +2014-08-24 22:00:00,0.0,1014.888333,0.0,100.0,9.2475,0.21075,237.82034669999993 +2014-08-24 23:00:00,0.0,1014.615,0.0,100.0,9.001666667,0.044833332999999996,237.82034669999993 +2014-08-25 00:00:00,0.0,1014.23,0.0,100.0,7.403166667000001,0.046583333,237.8216834333333 +2014-08-25 01:00:00,0.0,1013.618333,0.0,100.0,6.556916667,0.075583333,237.82101506666663 +2014-08-25 02:00:00,0.0,1013.295,0.0,100.0,6.142583332999999,0.007666666999999999,237.82068088333327 +2014-08-25 03:00:00,0.0,1013.141667,0.0,100.0,6.191916667,0.0,237.82034669999993 +2014-08-25 04:00:00,0.0,1012.843333,0.0,100.0,6.69175,0.0,237.82101506666663 +2014-08-25 05:00:00,0.0,1012.705,2.066,100.0,7.114166667,0.0,237.82034669999993 +2014-08-25 06:00:00,0.0,1012.626667,28.08416667,100.0,7.8811666670000005,0.020833333,237.82034669999993 +2014-08-25 07:00:00,0.0,1012.668333,91.93333333,100.0,8.775,0.152916667,237.82101506666663 +2014-08-25 08:00:00,0.0,1012.803333,190.65,99.95833333,9.936666667,0.38591666700000005,237.82168343333333 +2014-08-25 09:00:00,0.0,1012.44,221.575,95.61666667,12.22416667,0.241583333,237.82034669999993 +2014-08-25 10:00:00,0.0,1011.923333,266.0416667,88.49166667,14.87916667,0.80275,237.82721421666665 +2014-08-25 11:00:00,0.0,1011.031667,229.94166669999998,78.695,17.30083333,1.2005,237.84063178333335 +2014-08-25 12:00:00,0.0,1010.411667,336.9583333,65.41166667,18.4125,1.415083333,237.83578609999998 +2014-08-25 13:00:00,0.0,1009.993333,275.64916669999997,67.50666667,18.09833333,1.2235833329999999,237.83132471666661 +2014-08-25 14:00:00,0.0,1009.565,167.4216667,69.77083333,17.19416667,1.0905833329999999,237.82515896666663 +2014-08-25 15:00:00,0.0,1009.006667,192.975,70.87916667,17.88666667,1.3769999999999998,237.82307031666664 +2014-08-25 16:00:00,0.0,1008.248333,66.74666667,71.66166667,17.7025,1.2491666670000001,237.81894309999996 +2014-08-25 17:00:00,0.0,1007.97,14.0,81.02916667,16.2625,0.403083333,237.81824129999998 +2014-08-25 18:00:00,2.446696512,1007.73,15.63683333,86.9,14.905,0.106,237.81657038333333 +2014-08-25 19:00:00,2.439180192,1007.426667,1.6086666669999998,93.25,14.36416667,0.19899999999999998,237.8158853 +2014-08-25 20:00:00,7.375746024,1006.733333,0.0,99.80833333,13.79833333,0.326416667,237.81413080000002 +2014-08-25 21:00:00,7.500724848,1006.403333,0.0,100.0,13.4525,0.74275,237.8158853 +2014-08-25 22:00:00,12.90267161,1005.543333,0.0,100.0,13.37,0.856083333,237.81623619999996 +2014-08-25 23:00:00,15.8111304,1004.586667,0.0,100.0,12.93916667,0.944916667,237.81657038333333 +2014-08-26 00:00:00,33.12052406,1003.401667,0.0,100.0,12.58666667,0.725333333,237.81824129999998 +2014-08-26 01:00:00,22.36254941,1002.163333,0.0,100.0,12.395,1.4065833330000002,237.81999579999993 +2014-08-26 02:00:00,48.63259296,1001.116667,0.0,100.0,12.1,1.1585,237.82271941666667 +2014-08-26 03:00:00,93.63949325,1000.37,0.0,100.0,11.96083333,1.310583333,237.8323606833333 +2014-08-26 04:00:00,37.75468529,999.9833332999999,0.0,100.0,11.90083333,1.130083333,237.84372301666664 +2014-08-26 05:00:00,24.10389854,999.7083332999998,0.5235833329999999,100.0,11.9325,1.140833333,237.8492036833333 +2014-08-26 06:00:00,7.938455928,999.8233332999998,8.442166667,100.0,12.0625,0.8301666670000001,237.85297999999997 +2014-08-26 07:00:00,7.627605384,1000.148333,47.66833333,100.0,12.40833333,0.6345,237.85473449999998 +2014-08-26 08:00:00,9.997108127999999,1000.838333,66.72166667,100.0,12.62583333,0.586833333,237.8574414 +2014-08-26 09:00:00,10.01027506,1001.421667,98.09083333,100.0,13.1975,0.48458333299999995,237.8574414 +2014-08-26 10:00:00,0.0,1001.921667,128.585,99.88333333,13.80083333,0.5598333329999999,237.85919590000006 +2014-08-26 11:00:00,0.0,1002.088333,144.125,98.625,14.36666667,0.83475,237.88014940000002 +2014-08-26 12:00:00,2.41414464,1002.325,146.375,97.3,15.15,0.337583333,237.90519668333332 +2014-08-26 13:00:00,13.32645701,1002.42,121.925,99.15,15.13833333,0.763,237.89629060000001 +2014-08-26 14:00:00,15.87645425,1002.541667,70.7275,100.0,14.47916667,1.8108333330000002,237.8876852666667 +2014-08-26 15:00:00,34.71055603,1002.413333,83.43333333,100.0,14.45333333,1.6953333330000002,237.886666 +2014-08-26 16:00:00,44.68201114,1002.48,68.79083333,100.0,14.5475,1.8575833330000002,237.89181248333338 +2014-08-26 17:00:00,9.032650656,1002.408333,42.56916667,100.0,14.5275,1.9065,237.90038438333332 +2014-08-26 18:00:00,8.758908072,1002.531667,16.91058333,100.0,14.18166667,1.7535833330000001,237.90521339999998 +2014-08-26 19:00:00,8.933766624,1002.965,0.742833333,100.0,13.58833333,1.7845,237.90797045000002 +2014-08-26 20:00:00,44.40470105,1003.608333,0.0,100.0,13.36583333,1.8280833330000001,237.91276601666664 +2014-08-26 21:00:00,58.93188106,1004.13,0.0,100.0,13.01583333,1.8659166669999998,237.92444579999997 +2014-08-26 22:00:00,29.59634902,1004.385,0.0,100.0,12.89166667,1.5235833330000002,237.9516151833333 +2014-08-26 23:00:00,8.688118487999999,1004.9,0.0,100.0,12.7425,1.33325,237.97256868333338 +2014-08-27 00:00:00,13.87372884,1005.341667,0.0,100.0,12.53333333,1.3539166669999998,237.98491690000003 +2014-08-27 01:00:00,5.260596072,1005.946667,0.0,100.0,12.5,1.0949166670000001,237.99420731666666 +2014-08-27 02:00:00,2.652056328,1006.326667,0.0,100.0,12.3775,0.506,238.00074064999998 +2014-08-27 03:00:00,0.0,1007.06,0.0,100.0,11.34666667,0.040583333,238.00556961666666 +2014-08-27 04:00:00,0.0,1007.793333,0.0,100.0,10.93083333,0.050583333,238.00759141666666 +2014-08-27 05:00:00,0.0,1008.73,2.8976666669999998,100.0,10.46666667,0.002416667,238.010031 +2014-08-27 06:00:00,2.4050227680000003,1009.806667,27.57666667,100.0,10.39,0.00275,238.0096801 +2014-08-27 07:00:00,0.0,1010.78,104.99,100.0,11.95416667,0.8490833329999999,238.00827649999997 +2014-08-27 08:00:00,0.0,1011.621667,123.69,98.54166667,13.22583333,1.572583333,238.00827649999997 +2014-08-27 09:00:00,0.0,1012.0633330000001,265.5416667,90.20833333,14.99333333,1.148916667,238.0089783 +2014-08-27 10:00:00,0.0,1012.646667,474.11666669999994,81.65666667,16.4425,1.65025,238.0079256 +2014-08-27 11:00:00,0.0,1012.791667,510.91666669999995,73.11583333,17.89333333,1.093833333,238.0062546833333 +2014-08-27 12:00:00,0.0,1012.7,346.1333333,65.36166667,18.46916667,1.43525,238.00556961666666 +2014-08-27 13:00:00,0.0,1012.866667,571.0416667000001,58.39,19.67,0.9531666670000001,238.0041660833333 +2014-08-27 14:00:00,0.0,1012.876667,547.4,53.50833333,20.355,0.738666667,238.00281259999997 +2014-08-27 15:00:00,0.0,1012.728333,475.74166669999994,50.48083333,20.39666667,0.717833333,238.00005556666667 +2014-08-27 16:00:00,0.0,1012.763333,336.4908333,49.6675,20.46083333,0.5478333329999999,237.99659674999998 +2014-08-27 17:00:00,0.0,1012.728333,37.7025,59.0925,19.63833333,0.34316666700000004,237.9945415 +2014-08-27 18:00:00,0.0,1012.871667,25.37083333,84.925,17.3575,0.022833332999999997,237.9918178833333 +2014-08-27 19:00:00,0.0,1013.285,2.935166667,95.38333333,13.52583333,0.045916667,237.98972920000003 +2014-08-27 20:00:00,0.0,1013.361667,0.0,99.19166667,11.12583333,0.10525,237.9877073833333 +2014-08-27 21:00:00,0.0,1013.49,0.0,100.0,9.705,0.00675,237.9863205 +2014-08-27 22:00:00,0.0,1013.553333,0.0,100.0,8.953333333,0.016833333,237.98491690000003 +2014-08-27 23:00:00,0.0,1013.748333,0.0,100.0,8.152333333,0.0,237.9838642 +2014-08-28 00:00:00,0.0,1013.71,0.0,100.0,7.651833333,0.0055,237.98114058333337 +2014-08-28 01:00:00,0.0,1013.501667,0.0,100.0,7.386083332999999,0.0,237.98045550000003 +2014-08-28 02:00:00,0.0,1013.416667,0.0,100.0,6.946833333,0.0,237.97704680000007 +2014-08-28 03:00:00,0.0,1013.333333,0.0,100.0,6.803583333,0.0,237.97564320000004 +2014-08-28 04:00:00,0.0,1013.241667,0.0,100.0,6.519166667,0.0,237.97360466666666 +2014-08-28 05:00:00,0.0,1013.505,3.573666667,100.0,6.714666667,0.008083333,237.97256868333332 +2014-08-28 06:00:00,0.0,1013.725,32.13,100.0,8.022166667,0.01275,237.97083089999998 +2014-08-28 07:00:00,0.0,1013.746667,80.4675,100.0,9.668333333,0.12225,237.96982835000003 +2014-08-28 08:00:00,0.0,1013.805,191.575,97.83333333,11.50583333,0.455166667,237.96847489999996 +2014-08-28 09:00:00,0.0,1013.693333,305.46666669999996,87.81666667,15.0825,0.5965,237.96847489999996 +2014-08-28 10:00:00,0.0,1013.338333,527.3166666999999,77.5375,18.31166667,1.3575833330000002,237.9660186333333 +2014-08-28 11:00:00,0.0,1012.995,388.9916667,73.62916667,20.42583333,1.7230833330000002,237.96428089999998 +2014-08-28 12:00:00,0.0,1012.728333,311.1833333,72.78416667,20.905,2.1109166669999997,237.9619081333333 +2014-08-28 13:00:00,0.0,1012.461667,470.15833330000004,68.40833333,22.445,2.353333333,237.9601704 +2014-08-28 14:00:00,0.0,1012.095,385.8083333,64.08916667,22.36083333,1.9153333330000002,237.95814851666668 +2014-08-28 15:00:00,0.0,1011.753333,293.0083333,64.53,22.5125,2.559416667,237.9560599 +2014-08-28 16:00:00,0.0,1011.5616669999999,78.49166667,72.26416667,21.77666667,1.236083333,237.95403801666666 +2014-08-28 17:00:00,0.0,1011.43,50.8225,78.99333333,20.71166667,0.48225,237.95605989999999 +2014-08-28 18:00:00,0.0,1011.461667,30.71,80.6825,20.08333333,0.281583333,237.9547231 +2014-08-28 19:00:00,0.0,1011.493333,3.637333333,84.03583333,19.24583333,0.34333333299999996,237.95193270000001 +2014-08-28 20:00:00,0.0,1011.625,0.0,98.41666667,17.43166667,0.032166667,237.94984401666662 +2014-08-28 21:00:00,0.0,1011.54,0.0,99.46666667,16.64583333,0.024083333,237.94884146666666 +2014-08-28 22:00:00,0.0,1011.3083330000001,0.0,100.0,14.79583333,0.063416667,237.94884146666666 +2014-08-28 23:00:00,0.0,1011.146667,0.0,100.0,13.69166667,0.007333333,237.94815638333333 +2014-08-29 00:00:00,0.0,1010.878333,0.0,100.0,12.91416667,0.012166666999999999,237.94778876666666 +2014-08-29 01:00:00,0.0,1010.7,0.0,100.0,12.48333333,0.004583333,237.9474713 +2014-08-29 02:00:00,33.80126753,1010.8083330000001,0.0,100.0,13.26083333,0.107416667,237.94606769999996 +2014-08-29 03:00:00,2.4050227680000003,1010.961667,0.0,100.0,14.09083333,0.132666667,237.9433440833333 +2014-08-29 04:00:00,0.0,1010.97,0.0,100.0,14.3225,0.26725,237.94336080000002 +2014-08-29 05:00:00,0.0,1011.395,1.32125,100.0,14.51083333,0.093166667,237.94165645 +2014-08-29 06:00:00,0.0,1011.638333,21.76675,100.0,14.95666667,0.1125,237.94062046666662 +2014-08-29 07:00:00,0.0,1012.038333,58.0125,100.0,15.36833333,0.198,237.9399521 +2014-08-29 08:00:00,0.0,1012.383333,136.5791667,96.38333333,16.3425,0.5125,237.93960119999997 +2014-08-29 09:00:00,0.0,1012.6883330000001,240.0166667,89.28333333,18.1225,0.344916667,237.93819759999994 +2014-08-29 10:00:00,0.0,1012.836667,381.4416667,82.36166667,19.9025,0.504083333,237.93784669999994 +2014-08-29 11:00:00,0.0,1012.795,443.34166669999996,77.9725,20.56916667,0.97575,237.9361757833333 +2014-08-29 12:00:00,0.0,1012.766667,556.3,70.98833333,21.22333333,0.919,237.93478889999994 +2014-08-29 13:00:00,0.0,1012.445,595.2583333,65.40416667,22.34916667,0.7453333329999999,237.93268349999997 +2014-08-29 14:00:00,0.0,1011.85,521.6583333000001,60.0675,23.68583333,0.710666667,237.9312966166667 +2014-08-29 15:00:00,0.0,1011.361667,451.58333330000005,58.0925,23.80166667,0.950583333,237.92857299999994 +2014-08-29 16:00:00,0.0,1011.375,120.9975,63.505,22.8575,0.664416667,237.92686865 +2014-08-29 17:00:00,0.0,1011.483333,76.025,81.70916667,19.98666667,1.666333333,237.9237607 +2014-08-29 18:00:00,0.0,1011.905,24.6775,86.25833333,19.45416667,1.08775,237.92340980000003 +2014-08-29 19:00:00,0.0,1012.168333,1.516,92.275,18.22333333,0.919333333,237.9214047 +2014-08-29 20:00:00,0.0,1012.636667,0.0,94.89166667,17.35166667,0.18333333300000001,237.91965020000006 +2014-08-29 21:00:00,0.0,1012.943333,0.0,98.15833333,16.04833333,0.000666667,237.91929930000006 +2014-08-29 22:00:00,0.0,1013.171667,0.0,100.0,14.81833333,0.046333333,237.91824665000004 +2014-08-29 23:00:00,0.0,1013.213333,0.0,100.0,14.08166667,0.020333333000000002,237.91619140000003 +2014-08-30 00:00:00,0.0,1013.331667,0.0,100.0,13.43666667,0.002833333,237.91518880000004 +2014-08-30 01:00:00,0.0,1013.413333,0.0,100.0,13.405,0.041166667000000004,237.91448703333336 +2014-08-30 02:00:00,0.0,1013.5633330000001,0.0,100.0,13.30333333,0.031,237.9130835 +2014-08-30 03:00:00,0.0,1013.515,0.0,100.0,12.84416667,0.00325,237.91241513333333 +2014-08-30 04:00:00,0.0,1013.4366669999999,0.0,100.0,11.19666667,0.0005,237.91141258333332 +2014-08-30 05:00:00,0.0,1013.611667,2.6968333330000003,100.0,11.60416667,0.053416667,237.91072749999998 +2014-08-30 06:00:00,0.0,1013.916667,41.21666667,100.0,11.97166667,0.004583333,237.9100257 +2014-08-30 07:00:00,0.0,1014.083333,68.21333333,100.0,13.97083333,0.235833333,237.90897300000003 +2014-08-30 08:00:00,0.0,1014.32,119.355,95.925,15.32916667,0.176916667,237.9093239 +2014-08-30 09:00:00,0.0,1014.283333,268.53333330000004,83.265,17.93083333,0.446,237.90932390000003 +2014-08-30 10:00:00,0.0,1014.211667,510.11666669999994,70.89333333,20.235,0.5985,237.9083046333333 +2014-08-30 11:00:00,0.0,1013.891667,404.55,68.675,20.62583333,0.80025,237.90660028333335 +2014-08-30 12:00:00,0.0,1013.711667,388.1416667,69.03416667,20.30916667,0.8355,237.90451159999998 +2014-08-30 13:00:00,0.0,1013.371667,191.4083333,69.53833333,20.59,0.589,237.9027571 +2014-08-30 14:00:00,0.0,1013.111667,158.3416667,72.63916667,20.145,0.29875,237.90142036666668 +2014-08-30 15:00:00,0.0,1012.865,220.45,69.5825,21.61083333,0.4045,237.900752 +2014-08-30 16:00:00,0.0,1012.858333,67.3125,75.1325,20.29666667,0.211666667,237.89864660000003 +2014-08-30 17:00:00,4.831310616000001,1012.633333,30.34666667,92.55833333,17.745,0.08866666699999999,237.8973098666667 +2014-08-30 18:00:00,2.425215504,1012.555,19.13925,96.03333333,16.71833333,0.06175,237.89664150000002 +2014-08-30 19:00:00,2.4050227680000003,1012.511667,0.6545833329999999,97.98333333,16.1375,0.031916667,237.89629060000004 +2014-08-30 20:00:00,2.409616224,1012.27,0.0,96.5,15.6425,0.04175,237.8945361 +2014-08-30 21:00:00,0.0,1011.8116669999999,0.0,95.29166667,15.485,0.037583333,237.89488700000004 +2014-08-30 22:00:00,2.4058302000000005,1011.725,0.0,91.43333333,15.31083333,0.0635,237.89558880000004 +2014-08-30 23:00:00,0.0,1011.86,0.0,92.08333333,15.59166667,0.488,237.89488700000004 +2014-08-31 00:00:00,2.4050227680000003,1011.623333,0.0,96.56666667,15.3475,0.9835,237.892531 +2014-08-31 01:00:00,0.0,1011.03,0.0,98.48333333,14.55833333,0.0365,237.89319936666666 +2014-08-31 02:00:00,0.0,1010.86,0.0,98.375,14.52333333,0.0525,237.89353355 +2014-08-31 03:00:00,0.0,1010.37,0.0,99.23333333,14.29833333,0.259,237.89353355000003 +2014-08-31 04:00:00,0.0,1010.221667,0.0,99.4,14.10583333,0.08175,237.89319936666666 +2014-08-31 05:00:00,0.0,1010.375,0.5591666670000001,99.8,13.81166667,0.204916667,237.8918292 +2014-08-31 06:00:00,2.4782050559999997,1010.446667,8.112083333,99.85833333,13.85416667,0.3135,237.89042560000004 +2014-08-31 07:00:00,0.0,1010.37,47.53,99.2,14.2425,0.15158333300000001,237.88942304999998 +2014-08-31 08:00:00,0.0,1010.253333,105.6325,95.35833333,15.415,0.6658333329999999,237.88842049999997 +2014-08-31 09:00:00,0.0,1010.261667,257.975,83.74166667,17.265,0.504083333,237.88771870000002 +2014-08-31 10:00:00,0.0,1010.03,241.29166669999998,83.11916667,17.7175,0.48200000000000004,237.88631510000002 +2014-08-31 11:00:00,0.0,1009.741667,346.55,78.77916667,17.21833333,1.94025,237.88596420000002 +2014-08-31 12:00:00,0.0,1009.5616669999999,320.6083333,74.6,18.7025,0.862833333,237.8845606 +2014-08-31 13:00:00,0.0,1009.483333,247.56666669999998,69.2925,18.28333333,2.8515,237.88320715 +2014-08-31 14:00:00,2.665583928,1009.41,149.5,76.32166667,16.51083333,2.203416667,237.88220460000002 +2014-08-31 15:00:00,0.0,1009.765,194.7166667,79.39666667,15.59833333,1.33075,237.8811519 +2014-08-31 16:00:00,0.0,1009.896667,181.5491667,77.08,17.35666667,2.50875,237.88009920000005 +2014-08-31 17:00:00,0.0,1010.013333,62.59666667,83.88916667,15.84916667,1.5109166669999998,237.87842828333336 +2014-08-31 18:00:00,0.0,1010.366667,28.69733333,89.25,15.24666667,1.19075,237.87943083333334 +2014-08-31 19:00:00,0.0,1010.91,1.1161666670000001,92.74166667,14.33416667,0.241416667,237.8780941 +2014-08-31 20:00:00,0.0,1011.55,0.0,94.725,13.54916667,0.37075,237.87633968333333 +2014-08-31 21:00:00,0.0,1011.91,0.0,97.59166667,13.21583333,0.201583333,237.8743178 +2014-08-31 22:00:00,0.0,1012.343333,0.0,99.84166667,12.30333333,0.167833333,237.8739836 +2014-08-31 23:00:00,0.0,1012.556667,0.0,99.35,11.53333333,0.1015,237.87363271666666 +2014-01-09 00:00:00,0.0,1012.981667,0.0,100.0,10.85083333,0.128333333,238.05601800000002 +2014-01-09 01:00:00,0.0,1013.428333,0.0,99.66666667,11.09833333,0.09733333300000001,238.05601800000002 +2014-01-09 02:00:00,0.0,1013.471667,0.0,99.68333333,11.14333333,0.182083333,238.05536000000004 +2014-01-09 03:00:00,0.0,1013.741667,0.0,100.0,10.68,0.43075,238.05536000000004 +2014-01-09 04:00:00,0.0,1013.926667,0.0,100.0,10.59416667,0.38141666700000004,238.055031 +2014-01-09 05:00:00,0.0,1014.601667,1.736,100.0,10.52833333,0.287333333,238.05536000000004 +2014-01-09 06:00:00,0.0,1015.0616669999999,37.50166667,98.80833333,11.245,0.1695,238.05536000000004 +2014-01-09 07:00:00,0.0,1015.246667,84.57916667,94.61666667,13.2425,0.541,238.05568900000003 +2014-01-09 08:00:00,0.0,1015.626667,154.1008333,89.15833333,14.09,0.9996666670000001,238.05437300000003 +2014-01-09 09:00:00,0.0,1016.065,197.725,85.575,15.18833333,1.26325,238.05536000000004 +2014-01-09 10:00:00,0.0,1016.293333,227.2583333,84.10833333,15.36666667,1.28125,238.05601800000002 +2014-01-09 11:00:00,0.0,1016.253333,256.65,81.3775,16.71916667,0.730916667,238.057005 +2014-01-09 12:00:00,0.0,1016.271667,369.0583333,77.0725,18.16333333,0.8623333329999999,238.05799199999998 +2014-01-09 13:00:00,0.0,1016.065,250.7666667,77.50833333,17.05333333,0.5845,238.057334 +2014-01-09 14:00:00,0.0,1016.065,218.7833333,78.78,17.15583333,0.845166667,238.057334 +2014-01-09 15:00:00,0.0,1016.228333,285.3833333,76.5075,17.73833333,0.556333333,238.05766299999996 +2014-01-09 16:00:00,0.0,1015.965,132.4,77.32666667,17.36416667,0.7516666670000001,238.06021666666666 +2014-01-09 17:00:00,0.0,1015.896667,50.27083333,79.60166667,16.70666667,0.6034166670000001,238.06566866666662 +2014-01-09 18:00:00,0.0,1015.886667,16.47058333,84.73333333,16.23333333,0.320583333,238.068567 +2014-01-09 19:00:00,0.0,1016.276667,0.913666667,94.34166667,15.13333333,0.0455,238.07210766666665 +2014-01-09 20:00:00,0.0,1016.426667,0.0,97.85,14.355,0.11375,238.07466133333332 +2014-01-09 21:00:00,0.0,1016.523333,0.0,99.70833333,13.47833333,0.1395,238.07693300000003 +2014-01-09 22:00:00,0.0,1016.483333,0.0,100.0,11.40333333,0.0,238.078907 +2014-01-09 23:00:00,0.0,1016.4,0.0,100.0,10.95,0.016083333000000002,238.08017600000002 +2014-02-09 00:00:00,0.0,1016.463333,0.0,100.0,11.12583333,0.15816666699999998,238.0466523 +2014-02-09 01:00:00,0.0,1016.355,0.0,100.0,11.40583333,0.149166667,238.04614469999999 +2014-02-09 02:00:00,0.0,1016.361667,0.0,100.0,10.84583333,0.095333333,238.04639849999998 +2014-02-09 03:00:00,0.0,1016.206667,0.0,100.0,11.57666667,0.061166667,238.04665229999998 +2014-02-09 04:00:00,0.0,1016.36,0.0,100.0,11.87166667,0.334333333,238.04690609999997 +2014-02-09 05:00:00,0.0,1016.488333,0.84425,100.0,11.76166667,0.318916667,238.0466523 +2014-02-09 06:00:00,0.0,1016.781667,25.1235,100.0,11.93,0.257166667,238.0469061 +2014-02-09 07:00:00,0.0,1017.016667,74.62333333,100.0,12.90083333,0.7426666670000001,238.04665229999998 +2014-02-09 08:00:00,0.0,1017.126667,141.525,97.425,14.3175,0.730083333,238.04566129999998 +2014-02-09 09:00:00,0.0,1017.32,253.0783333,86.44166667,17.2075,0.596666667,238.04590299999998 +2014-02-09 10:00:00,0.0,1017.088333,341.0833333,76.69583333,17.82833333,0.909166667,238.0456613 +2014-02-09 11:00:00,0.0,1016.998333,516.125,67.21,18.86333333,1.7509166669999998,238.04566129999998 +2014-02-09 12:00:00,0.0,1017.151667,143.06666669999998,73.3725,18.03416667,2.046333333,238.04591509999992 +2014-02-09 13:00:00,0.0,1017.28,140.3583333,79.88583333,17.35583333,0.9754166670000001,238.04541960000003 +2014-02-09 14:00:00,0.0,1017.203333,254.70833330000002,76.91833333,18.16333333,1.249916667,238.04469449999996 +2014-02-09 15:00:00,0.0,1017.095,279.225,75.45166667,18.84916667,1.46,238.04444069999997 +2014-02-09 16:00:00,0.0,1017.02,163.4916667,76.72166667,18.86916667,2.0219166669999997,238.04367929999998 +2014-02-09 17:00:00,0.0,1017.096667,63.84583333,81.8325,18.4375,1.573166667,238.04367929999998 +2014-02-09 18:00:00,0.0,1017.475,22.97716667,85.89166667,18.0225,1.57025,238.04317169999993 +2014-02-09 19:00:00,0.0,1018.14,1.093916667,95.325,16.58416667,1.222416667,238.04318379999995 +2014-02-09 20:00:00,0.0,1018.428333,0.0,97.98333333,16.14,0.839666667,238.04292999999996 +2014-02-09 21:00:00,0.0,1018.576667,0.0,97.26666667,15.935,1.233166667,238.0422049 +2014-02-09 22:00:00,0.0,1018.57,0.0,99.13333333,15.69083333,1.873833333,238.0417215 +2014-02-09 23:00:00,2.94695844,1018.605,0.0,99.56666667,15.35833333,2.078583333,238.0412139333333 +2014-03-09 00:00:00,0.0,1018.556667,0.0,99.625,14.33916667,1.7775,238.00348359999998 +2014-03-09 01:00:00,0.0,1018.325,0.0,99.75833333,13.765,1.777916667,238.00348359999998 +2014-03-09 02:00:00,0.0,1018.451667,0.0,99.84166667,13.20916667,1.9211666669999998,238.00300019999995 +2014-03-09 03:00:00,0.0,1018.211667,0.0,100.0,12.21833333,1.102166667,238.00300019999995 +2014-03-09 04:00:00,0.0,1018.303333,0.0,100.0,11.77166667,1.25675,238.00300019999995 +2014-03-09 05:00:00,0.0,1018.53,0.719916667,100.0,11.01416667,0.632916667,238.0027464166666 +2014-03-09 06:00:00,0.0,1018.633333,20.10233333,100.0,11.20416667,0.671416667,238.0027464166666 +2014-03-09 07:00:00,0.0,1018.605,58.135,99.75,12.3175,1.973416667,238.00173128333333 +2014-03-09 08:00:00,0.0,1018.663333,120.90833329999998,96.325,13.5,2.74675,238.00173128333333 +2014-03-09 09:00:00,0.0,1018.836667,174.1416667,90.05,14.4175,3.85525,238.0027464166666 +2014-03-09 10:00:00,0.0,1018.5583330000001,110.34166670000002,90.01666667,14.63166667,3.464333333,238.0027464166666 +2014-03-09 11:00:00,0.0,1018.3083330000001,104.325,90.29166667,14.7675,3.241083333,238.00348359999998 +2014-03-09 12:00:00,0.0,1017.92,208.68333330000002,87.025,15.7775,3.68025,238.00300019999995 +2014-03-09 13:00:00,0.0,1017.57,189.6083333,84.86666667,16.83583333,3.711083333,238.00348359999998 +2014-03-09 14:00:00,0.0,1017.378333,177.08333330000002,80.52,17.35666667,3.843333333,238.00300019999995 +2014-03-09 15:00:00,0.0,1017.065,160.85,79.45083333,17.34,4.1224166669999995,238.00300019999995 +2014-03-09 16:00:00,0.0,1016.828333,93.48,79.02583333,17.30916667,4.23975,238.00348359999998 +2014-03-09 17:00:00,0.0,1016.548333,34.795,81.2575,16.96583333,3.75975,238.00322981666667 +2014-03-09 18:00:00,0.0,1016.8,17.07316667,85.96666667,16.7425,1.4393333330000002,238.00300019999995 +2014-03-09 19:00:00,0.0,1017.006667,0.888833333,87.80833333,16.57583333,2.062083333,238.0024926333333 +2014-03-09 20:00:00,0.0,1017.11,0.0,85.33333333,16.2775,3.35225,238.0014775 +2014-03-09 21:00:00,0.0,1017.09,0.0,87.175,15.91416667,2.686416667,238.00173128333336 +2014-03-09 22:00:00,0.0,1016.893333,0.0,90.675,15.56166667,1.242666667,238.0014775 +2014-03-09 23:00:00,0.0,1016.556667,0.0,95.76666667,14.9475,0.21808333300000002,238.00198506666666 +2014-04-09 00:00:00,0.0,1016.056667,0.0,98.61666667,14.66916667,0.34883333299999997,237.9056412 +2014-04-09 01:00:00,0.0,1015.761667,0.0,99.86666667,14.46666667,0.253083333,237.9056412 +2014-04-09 02:00:00,0.0,1015.511667,0.0,100.0,14.55416667,0.0545,237.9056412 +2014-04-09 03:00:00,0.0,1015.426667,0.0,100.0,14.59416667,0.09116666699999999,237.9056412 +2014-04-09 04:00:00,0.0,1015.383333,0.0,99.96666667,15.23833333,1.170666667,237.90530701666668 +2014-04-09 05:00:00,0.0,1015.496667,0.610916667,97.25833333,14.97833333,1.082083333,237.9056412 +2014-04-09 06:00:00,0.0,1015.393333,19.36275,98.325,14.03166667,1.283333333,237.90497283333335 +2014-04-09 07:00:00,0.0,1015.36,63.2425,97.83333333,14.1175,1.6355,237.90497283333332 +2014-04-09 08:00:00,0.0,1015.41,110.05833329999999,94.86666667,15.24666667,1.2308333329999999,237.90397028333334 +2014-04-09 09:00:00,0.0,1015.553333,181.9,89.65833333,16.74583333,1.7029166669999998,237.9036361 +2014-04-09 10:00:00,0.0,1015.35,190.65,85.225,17.8725,1.9435,237.9032852 +2014-04-09 11:00:00,0.0,1015.001667,155.04166669999998,83.59166667,18.1275,2.254083333,237.9022325 +2014-04-09 12:00:00,0.0,1014.68,132.475,84.45,18.26666667,2.601833333,237.90188160000002 +2014-04-09 13:00:00,0.0,1014.52,173.79166669999998,84.41666667,18.68,2.44625,237.9018816 +2014-04-09 14:00:00,0.0,1014.008333,273.3583333,82.56666667,19.3425,2.81275,237.9015307 +2014-04-09 15:00:00,0.0,1013.556667,270.55,80.55166667,20.10916667,2.7745,237.9015307 +2014-04-09 16:00:00,0.0,1013.081667,138.0916667,81.78333333,20.38,2.308916667,237.9015307 +2014-04-09 17:00:00,0.0,1012.826667,53.08583333,86.225,20.4725,2.09025,237.9015307 +2014-04-09 18:00:00,0.0,1012.81,14.31441667,95.38333333,18.99416667,0.852833333,237.89952560000003 +2014-04-09 19:00:00,0.0,1012.821667,1.1985,99.41666667,16.46833333,0.16116666699999999,237.89985978333337 +2014-04-09 20:00:00,0.0,1012.675,0.0,100.0,15.37166667,0.0685,237.89952560000003 +2014-04-09 21:00:00,0.0,1012.505,0.0,100.0,15.13916667,0.12091666699999999,237.89952560000003 +2014-04-09 22:00:00,0.0,1012.45,0.0,100.0,16.26583333,0.660166667,237.89952560000003 +2014-04-09 23:00:00,0.0,1012.365,0.0,100.0,16.80166667,0.596916667,237.89882379999997 +2014-05-09 00:00:00,0.0,1012.166667,0.0,100.0,16.685,0.913833333,237.82839395 +2014-05-09 01:00:00,0.0,1011.856667,0.0,100.0,15.66083333,0.08008333299999999,237.8294466 +2014-05-09 02:00:00,0.0,1011.528333,0.0,100.0,14.7425,0.072416667,237.8294466 +2014-05-09 03:00:00,0.0,1011.226667,0.0,100.0,14.53916667,0.010833333,237.8304993 +2014-05-09 04:00:00,0.0,1011.033333,0.0,100.0,14.66666667,0.045666667,237.8304993 +2014-05-09 05:00:00,0.0,1011.0,1.398333333,100.0,14.47166667,0.000583333,237.8294466 +2014-05-09 06:00:00,0.0,1011.105,22.24775,100.0,14.50333333,0.015833333,237.8294466 +2014-05-09 07:00:00,0.0,1011.298333,89.51583333,100.0,15.61166667,0.7413333329999999,237.8304993 +2014-05-09 08:00:00,0.0,1011.363333,177.44166669999998,95.09166667,17.8775,0.850583333,237.83155200000002 +2014-05-09 09:00:00,0.0,1011.295,236.06666669999998,88.95,20.20583333,0.651833333,237.83155200000002 +2014-05-09 10:00:00,0.0,1011.208333,281.09166669999996,83.4375,21.8675,0.694916667,237.83014839999998 +2014-05-09 11:00:00,0.0,1011.105,181.55,84.98333333,22.33583333,0.7928333329999999,237.82874483333333 +2014-05-09 12:00:00,0.0,1010.918333,197.5333333,84.95,21.03416667,0.5379166670000001,237.82734130000003 +2014-05-09 13:00:00,0.0,1010.513333,240.825,80.48916667,22.51083333,0.464916667,237.82600449999998 +2014-05-09 14:00:00,0.0,1010.073333,331.21666669999996,76.8275,23.38083333,0.314583333,237.82463433333336 +2014-05-09 15:00:00,0.0,1009.706667,273.4,75.38333333,24.50666667,0.414083333,237.82155979999996 +2014-05-09 16:00:00,0.0,1009.4416669999999,203.1166667,75.68916667,24.67333333,0.21641666699999998,237.81982206666666 +2014-05-09 17:00:00,0.0,1009.235,71.5225,88.04166667,23.0975,0.181416667,237.81912030000004 +2014-05-09 18:00:00,0.0,1009.4366669999999,22.85416667,94.55,20.915,0.036916667,237.81811774999997 +2014-05-09 19:00:00,0.0,1009.591667,0.986166667,98.76666667,18.11083333,0.10075,237.8171152 +2014-05-09 20:00:00,0.0,1009.543333,0.0,100.0,16.37416667,0.192,237.8171152 +2014-05-09 21:00:00,0.0,1009.611667,0.0,100.0,15.19833333,0.10066666699999999,237.8171152 +2014-05-09 22:00:00,0.0,1009.696667,0.0,100.0,14.31166667,0.017416667,237.8171152 +2014-05-09 23:00:00,0.0,1009.57,0.0,100.0,13.6575,0.013333333000000001,237.8171152 +2014-06-09 00:00:00,0.0,1009.398333,0.0,100.0,13.02333333,0.003416667,237.6618520333333 +2014-06-09 01:00:00,0.0,1009.218333,0.0,100.0,12.51416667,0.029833332999999997,237.66462579999998 +2014-06-09 02:00:00,0.0,1009.1916669999999,0.0,100.0,13.08083333,0.046083333,237.66698180000003 +2014-06-09 03:00:00,0.0,1009.115,0.0,100.0,13.82166667,0.017833333,237.6687363 +2014-06-09 04:00:00,0.0,1009.21,0.0,100.0,13.98833333,0.0016666670000000001,237.6707414 +2014-06-09 05:00:00,0.0,1009.198333,0.418333333,100.0,13.77083333,0.108166667,237.67214500000003 +2014-06-09 06:00:00,0.0,1009.423333,15.40991667,100.0,13.76166667,0.048083333,237.67384934999998 +2014-06-09 07:00:00,0.0,1009.548333,71.14166667,100.0,14.2425,0.529083333,237.6748519 +2014-06-09 08:00:00,0.0,1009.626667,130.4333333,100.0,15.11666667,0.510416667,237.67349845 +2014-06-09 09:00:00,0.0,1009.651667,300.875,99.25,16.38166667,0.859916667,237.66494326666665 +2014-06-09 10:00:00,0.0,1009.486667,435.0166666999999,88.45,18.6475,0.782166667,237.6566888333333 +2014-06-09 11:00:00,0.0,1009.276667,427.7333333000001,81.51333333,22.92833333,0.603666667,237.65084055 +2014-06-09 12:00:00,0.0,1008.868333,303.9033333,74.89583333,25.295,0.526,237.64741513333334 +2014-06-09 13:00:00,0.0,1008.503333,254.2583333,81.25333333,23.78,0.781666667,237.6450257 +2014-06-09 14:00:00,0.0,1007.988333,376.2916667,68.40333333,25.68083333,0.966,237.6426362666667 +2014-06-09 15:00:00,0.0,1007.791667,343.09166669999996,67.94916667,24.085,0.7230833329999999,237.64021339999996 +2014-06-09 16:00:00,0.0,1007.443333,208.59,57.66,25.95166667,1.11725,237.63777388333332 +2014-06-09 17:00:00,0.0,1007.478333,45.17666667,79.14583333,24.56833333,0.579416667,237.635752 +2014-06-09 18:00:00,0.0,1007.991667,11.92266667,90.23333333,21.40666667,0.141083333,237.6339975833333 +2014-06-09 19:00:00,0.0,1008.753333,0.33616666700000003,89.98333333,18.71416667,0.145,237.63434846666664 +2014-06-09 20:00:00,28.52884044,1008.66,0.0,98.01666667,18.72333333,0.5770000000000001,237.6367546 +2014-06-09 21:00:00,0.0,1008.796667,0.0,100.0,17.6575,0.1745,237.63916073333328 +2014-06-09 22:00:00,0.0,1008.9333330000001,0.0,100.0,17.12666667,0.2625,237.6587775 +2014-06-09 23:00:00,0.0,1009.0616669999999,0.0,100.0,16.6925,0.161083333,237.8026782833333 +2014-07-09 00:00:00,0.0,1008.998333,0.0,100.0,16.51,0.166333333,237.64021341666668 +2014-07-09 01:00:00,2.414904624,1008.906667,0.0,100.0,15.75416667,0.0395,237.64708095 +2014-07-09 02:00:00,0.0,1009.103333,0.0,100.0,15.65666667,0.09883333300000001,237.6528958 +2014-07-09 03:00:00,0.0,1009.116667,0.0,100.0,16.18583333,0.261916667,237.65772481666662 +2014-07-09 04:00:00,0.0,1009.151667,0.0,100.0,15.91416667,0.26258333300000003,237.66323891666664 +2014-07-09 05:00:00,0.0,1009.295,1.175333333,100.0,15.59166667,0.41475,237.67523621666666 +2014-07-09 06:00:00,0.0,1009.708333,11.88133333,100.0,15.72,0.45341666700000005,237.68487746666668 +2014-07-09 07:00:00,0.0,1010.173333,26.5275,100.0,15.965,0.511083333,237.69343265 +2014-07-09 08:00:00,0.0,1010.508333,88.03916667,100.0,16.595,0.575,237.70168706666672 +2014-07-09 09:00:00,0.0,1011.001667,160.775,97.625,18.56833333,0.831583333,237.73259933333335 +2014-07-09 10:00:00,0.0,1011.0583330000001,215.33333330000002,91.88333333,20.22583333,1.042916667,237.76556685 +2014-07-09 11:00:00,0.0,1010.868333,337.03333330000004,84.30833333,21.49916667,1.159333333,237.79236861666666 +2014-07-09 12:00:00,0.0,1010.701667,282.03333330000004,82.69666667,20.94166667,1.5840833330000001,237.8119185666667 +2014-07-09 13:00:00,0.0,1010.611667,339.375,79.5525,21.57833333,1.553666667,237.8222448833333 +2014-07-09 14:00:00,0.0,1010.351667,383.725,72.99833333,22.56666667,1.158833333,237.8273746666667 +2014-07-09 15:00:00,0.0,1010.0666669999999,235.625,71.88166667,23.13,0.774,237.83120109999996 +2014-07-09 16:00:00,0.0,1010.08,191.08333330000002,71.04916667,22.70166667,1.258166667,237.8335571 +2014-07-09 17:00:00,0.0,1010.28,64.49833333,74.20166667,21.59166667,1.311833333,237.8335571 +2014-07-09 18:00:00,0.0,1010.648333,18.76566667,82.29083333,19.94083333,0.421333333,237.83390800000004 +2014-07-09 19:00:00,0.0,1011.3116669999999,0.5770000000000001,95.6,17.59083333,0.266,237.8335571 +2014-07-09 20:00:00,0.0,1011.71,0.0,99.45833333,16.01,0.090083333,237.83288873333336 +2014-07-09 21:00:00,0.0,1011.74,0.0,100.0,15.07416667,0.044000000000000004,237.83155200000002 +2014-07-09 22:00:00,0.0,1011.788333,0.0,100.0,14.49083333,0.029666667,237.8308502 +2014-07-09 23:00:00,0.0,1011.95,0.0,100.0,14.76416667,0.022833332999999997,237.8294466 +2014-08-09 00:00:00,0.0,1011.85,0.0,100.0,14.475,0.0,237.4027571 +2014-08-09 01:00:00,0.0,1011.963333,0.0,100.0,12.79083333,0.017,237.4038098 +2014-08-09 02:00:00,0.0,1011.898333,0.0,100.0,11.91666667,0.004333333,237.4045116 +2014-08-09 03:00:00,0.0,1011.726667,0.0,100.0,11.4375,0.0,237.40279053333333 +2014-08-09 04:00:00,0.0,1011.836667,0.0,100.0,10.99083333,0.0,237.40175455 +2014-08-09 05:00:00,0.0,1012.28,0.5531666670000001,100.0,11.31416667,0.0,237.40108618333338 +2014-08-09 06:00:00,0.0,1012.555,19.56808333,100.0,11.61,0.003166667,237.400752 +2014-08-09 07:00:00,0.0,1012.958333,68.73,100.0,13.175,0.05425,237.40142036666668 +2014-08-09 08:00:00,0.0,1013.218333,154.94166669999998,97.96666667,15.45416667,0.18883333300000002,237.39969929999998 +2014-08-09 09:00:00,0.0,1013.556667,315.2583333,86.075,17.78833333,1.045083333,237.3993484 +2014-08-09 10:00:00,0.0,1013.56,278.5,83.01666667,18.63583333,1.6008333330000002,237.39797823333333 +2014-08-09 11:00:00,0.0,1013.52,398.5583333,74.16833333,20.62416667,0.9875,237.3945361 +2014-08-09 12:00:00,0.0,1013.245,530.65,66.0225,21.99666667,0.9125833329999999,237.39181248333338 +2014-08-09 13:00:00,0.0,1012.886667,487.05,63.7275,22.77583333,1.27725,237.38908886666664 +2014-08-09 14:00:00,0.0,1012.575,275.3916667,64.57916667,23.00916667,0.513416667,237.3880696 +2014-08-09 15:00:00,0.0,1012.4,221.08333330000002,65.345,22.69916667,0.804416667,237.38561330000002 +2014-08-09 16:00:00,0.0,1012.363333,145.3,64.645,22.61,0.596,237.3842097 +2014-08-09 17:00:00,0.0,1012.475,63.00833333,67.255,22.26916667,1.6511666669999998,237.38320715 +2014-08-09 18:00:00,0.0,1012.783333,21.99708333,86.0775,20.68,0.487833333,237.3825387833334 +2014-08-09 19:00:00,0.0,1013.461667,0.36058333299999995,91.13333333,18.77583333,0.9640000000000001,237.38150280000005 +2014-08-09 20:00:00,0.0,1013.973333,0.0,95.59166667,17.91333333,1.21275,237.38009920000005 +2014-08-09 21:00:00,0.0,1014.305,0.0,98.825,14.94833333,0.004666667,237.3797650166667 +2014-08-09 22:00:00,0.0,1014.493333,0.0,99.99166667,13.4825,0.0055,237.38150280000002 +2014-08-09 23:00:00,0.0,1014.581667,0.0,100.0,12.69583333,0.12633333300000002,237.38220460000002 +2014-09-09 00:00:00,0.0,1014.651667,0.0,100.0,11.89416667,0.011083333,237.78114660000003 +2014-09-09 01:00:00,0.0,1014.5666669999999,0.0,100.0,11.52083333,0.004083333,237.78184840000003 +2014-09-09 02:00:00,0.0,1014.403333,0.0,100.0,10.52916667,0.019583333,237.78255019999997 +2014-09-09 03:00:00,0.0,1014.478333,0.0,100.0,9.625,0.01825,237.78184840000003 +2014-09-09 04:00:00,0.0,1014.355,0.0,100.0,8.9875,0.003416667,237.78255019999997 +2014-09-09 05:00:00,0.0,1014.513333,0.955,100.0,8.232000000000001,0.0,237.78255019999997 +2014-09-09 06:00:00,0.0,1015.035,27.861,100.0,8.721666667000001,0.008416667,237.78255020000003 +2014-09-09 07:00:00,0.0,1015.361667,70.53083333,100.0,10.6925,0.04275,237.78149750000003 +2014-09-09 08:00:00,0.0,1015.571667,142.5,95.28333333,13.455,0.593666667,237.78114660000003 +2014-09-09 09:00:00,0.0,1015.8116669999999,262.025,85.86666667,14.78583333,1.2175833329999999,237.78149750000003 +2014-09-09 10:00:00,0.0,1015.8,326.7666667,80.08,16.35416667,1.35575,237.78114660000003 +2014-09-09 11:00:00,0.0,1015.645,368.6833333,73.64833333,17.47083333,1.609083333,237.78014405 +2014-09-09 12:00:00,0.0,1015.385,526.925,66.39416667,18.75583333,1.206083333,237.7787906 +2014-09-09 13:00:00,0.0,1014.956667,475.35,62.35583333,19.6225,1.209416667,237.7777379 +2014-09-09 14:00:00,0.0,1014.525,574.1083332999999,58.52583333,20.35083333,0.915666667,237.7770361 +2014-09-09 15:00:00,0.0,1014.193333,357.4166667,58.20833333,20.365,1.28475, +2014-09-09 16:00:00,0.0,1013.901667,209.5916667,62.25083333,19.99583333,1.27175, +2014-09-09 17:00:00,0.0,1013.775,56.69333333,74.08583333,19.25666667,1.238916667, +2014-09-09 18:00:00,0.0,1014.111667,16.29666667,76.86833333,17.71333333,2.549, +2014-09-09 19:00:00,0.0,1014.613333,0.276,87.91666667,16.0175,1.4703333330000001,237.77619393999998 +2014-09-09 20:00:00,0.0,1015.0633330000001,0.0,95.25,15.38083333,1.19075,237.77359396666668 +2014-09-09 21:00:00,0.0,1015.133333,0.0,97.50833333,13.37166667,0.11483333300000001,237.77222379999998 +2014-09-09 22:00:00,0.0,1015.026667,0.0,99.1,11.45166667,0.013999999999999999,237.77117109999998 +2014-09-09 23:00:00,0.0,1015.035,0.0,99.99166667,10.1275,0.060416667,237.77048601666664 +2014-10-09 00:00:00,0.0,1014.97,0.0,100.0,10.18666667,0.00775,237.98168583333333 +2014-10-09 01:00:00,0.0,1014.931667,0.0,100.0,10.71666667,0.002333333,237.98168583333333 +2014-10-09 02:00:00,0.0,1014.701667,0.0,100.0,11.32583333,0.00033333300000000006,237.9806525 +2014-10-09 03:00:00,0.0,1014.533333,0.0,100.0,10.79,0.0075,237.9772358333333 +2014-10-09 04:00:00,0.0,1014.655,0.0,100.0,10.90083333,0.008916667,237.97448583333332 +2014-10-09 05:00:00,0.0,1014.725,0.1395,100.0,11.75583333,0.035083333,237.9717525 +2014-10-09 06:00:00,0.0,1014.793333,9.92825,100.0,12.06833333,0.008416667,237.96695250000002 +2014-10-09 07:00:00,0.0,1014.806667,98.32833333,95.95833333,13.27416667,0.38358333299999997,237.96078583333335 +2014-10-09 08:00:00,0.0,1014.753333,129.425,87.9,14.67416667,1.68675,237.95666916666667 +2014-10-09 09:00:00,0.0,1014.721667,149.3916667,86.10833333,15.03,2.58,237.95531916666667 +2014-10-09 10:00:00,0.0,1014.663333,215.7166667,80.97583333,15.7275,2.699666667,237.9536025 +2014-10-09 11:00:00,0.0,1014.481667,229.8583333,76.56583333,16.19833333,3.08175,237.95086916666665 +2014-10-09 12:00:00,0.0,1014.358333,210.4833333,75.0625,15.91416667,2.8273333330000003,237.94605249999995 +2014-10-09 13:00:00,0.0,1014.363333,192.175,71.64083333,16.23166667,3.201916667,237.94160250000002 +2014-10-09 14:00:00,0.0,1014.196667,213.825,68.3875,16.19416667,3.26275,237.9371525 +2014-10-09 15:00:00,0.0,1013.86,208.56666669999998,65.6075,16.35416667,2.854166667,237.93270249999998 +2014-10-09 16:00:00,0.0,1013.516667,113.89416670000001,66.89416667,16.29166667,2.1085833330000003,237.92481916666665 +2014-10-09 17:00:00,0.0,1013.233333,40.90666667,72.3125,15.85666667,1.773833333,237.9186525 +2014-10-09 18:00:00,0.0,1013.225,8.984666667,77.375,15.38166667,1.6579166669999998,237.9083858333333 +2014-10-09 19:00:00,0.0,1013.343333,0.145583333,88.275,14.68666667,0.7324166670000001,237.8892025 +2014-10-09 20:00:00,0.0,1013.468333,0.0,94.39166667,12.84083333,0.0785,237.87891916666663 +2014-10-09 21:00:00,0.0,1013.303333,0.0,98.6,10.38,0.05775,237.87276916666667 +2014-10-09 22:00:00,0.0,1013.216667,0.0,99.88333333,9.69,0.062416667,237.8676525 +2014-10-09 23:00:00,0.0,1013.155,0.0,100.0,9.735833332999999,0.07825,237.8648525 +2014-11-09 00:00:00,0.0,1013.196667,0.0,100.0,10.45,0.056416667000000004,237.9532525 +2014-11-09 01:00:00,0.0,1012.648333,0.0,100.0,11.515,0.18741666699999998,237.95465249999998 +2014-11-09 02:00:00,0.0,1012.333333,0.0,100.0,11.79916667,0.44608333299999997,237.95465249999998 +2014-11-09 03:00:00,0.0,1011.885,0.0,100.0,11.96416667,0.18541666699999998,237.95465249999998 +2014-11-09 04:00:00,0.0,1011.446667,0.0,100.0,11.58416667,0.21533333300000002,237.95325249999996 +2014-11-09 05:00:00,0.0,1011.55,0.13475,100.0,11.89833333,0.38333333299999994,237.9525525 +2014-11-09 06:00:00,0.0,1011.795,6.497666667000001,100.0,11.9675,0.407416667,237.9525525 +2014-11-09 07:00:00,0.0,1011.78,68.04583333,98.13333333,12.92416667,0.3515,237.95290249999996 +2014-11-09 08:00:00,0.0,1012.01,120.93416670000002,93.06666667,14.915,1.05175,237.95325249999996 +2014-11-09 09:00:00,0.0,1012.108333,194.925,85.30833333,15.7925,2.272833333,237.95395249999999 +2014-11-09 10:00:00,0.0,1012.095,274.5416667,81.1725,16.045,2.982583333,237.9536025 +2014-11-09 11:00:00,0.0,1012.111667,270.6375,77.65,16.56083333,3.57275,237.95465249999998 +2014-11-09 12:00:00,7.701787007999999,1012.08,245.605,84.49333333,15.7925,2.716916667,237.95465249999998 +2014-11-09 13:00:00,0.0,1012.36,277.3,85.33666667,16.70416667,3.1645,237.95465249999998 +2014-11-09 14:00:00,0.0,1012.661667,423.55,81.71916667,15.765,3.304916667,237.95465249999998 +2014-11-09 15:00:00,0.0,1012.661667,230.525,75.32416667,16.65083333,3.10225,237.95290249999996 +2014-11-09 16:00:00,0.0,1013.073333,158.0841667,76.57833333,16.56916667,3.152166667,237.9536025 +2014-11-09 17:00:00,0.0,1013.521667,30.1725,94.63333333,14.5225,2.309333333,237.9543025 +2014-11-09 18:00:00,3.3345734160000005,1013.8166669999999,13.35841667,99.58333333,14.12583333,2.047166667,237.95465249999998 +2014-11-09 19:00:00,2.728651272,1014.468333,0.30375,100.0,12.92,0.5449166670000001,237.95498583333332 +2014-11-09 20:00:00,0.0,1014.846667,0.0,100.0,11.05666667,0.109916667,237.95598583333333 +2014-11-09 21:00:00,0.0,1015.233333,0.0,100.0,9.888333333,0.090083333,237.9566525 +2014-11-09 22:00:00,0.0,1015.358333,0.0,100.0,9.56,0.0,237.9566525 +2014-11-09 23:00:00,0.0,1015.346667,0.0,100.0,8.65,0.0,237.9566525 +2014-12-09 00:00:00,0.0,1015.085,0.0,100.0,8.805833332999999,0.0, +2014-12-09 01:00:00,0.0,1015.005,0.0,100.0,8.328333333,0.006916667, +2014-12-09 02:00:00,0.0,1015.133333,0.0,100.0,8.012916667,0.00625, +2014-12-09 03:00:00,0.0,1015.1,0.0,100.0,8.478333333,0.06925, +2014-12-09 04:00:00,0.0,1014.975,0.0,100.0,9.669166667,0.122, +2014-12-09 05:00:00,0.0,1014.771667,0.039916667,100.0,10.58916667,0.238916667, +2014-12-09 06:00:00,0.0,1014.868333,4.137,100.0,11.395,0.9550833329999999, +2014-12-09 07:00:00,0.0,1014.546667,20.89666667,100.0,12.67333333,1.85175, +2014-12-09 08:00:00,0.0,1014.3083330000001,59.20833333,98.28333333,13.49166667,2.21, +2014-12-09 09:00:00,0.0,1014.086667,113.20833329999999,90.41666667,14.91833333,3.062583333, +2014-12-09 10:00:00,0.0,1013.828333,214.4666667,79.3725,16.27416667,4.109, +2014-12-09 11:00:00,0.0,1013.583333,411.96666669999996,70.84166667,17.285,3.697666667, +2014-12-09 12:00:00,0.0,1013.505,180.2333333,71.39666667,17.5525,4.10275, +2014-12-09 13:00:00,0.0,1013.628333,37.265,80.6625,16.66166667,3.8898333330000003, +2014-12-09 14:00:00,4.247103384,1013.641667,17.32083333,90.175,15.88166667,2.78225, +2014-12-09 15:00:00,0.0,1013.726667,9.198166667,85.575,16.35166667,3.0516666669999997, +2014-12-09 16:00:00,0.0,1013.993333,6.4981666670000005,84.11666667,16.8475,2.727083333, +2014-12-09 17:00:00,0.0,1014.181667,4.500583333,83.575,17.03916667,2.618083333, +2014-12-09 18:00:00,0.0,1014.458333,1.8141666669999998,83.43333333,17.27083333,2.621666667, +2014-12-09 19:00:00,0.0,1015.123333,0.0305,82.28333333,17.61416667,2.1575833330000003, +2014-12-09 20:00:00,0.0,1015.203333,0.0,82.175,17.54583333,2.059416667, +2014-12-09 21:00:00,0.0,1015.611667,0.0,81.30833333,17.69333333,1.81225, +2014-12-09 22:00:00,0.0,1015.675,0.0,82.94166667,17.57583333,1.8268333330000002, +2014-12-09 23:00:00,0.0,1015.671667,0.0,83.925,17.43083333,1.8281666669999999, +2014-09-13 00:00:00,0.0,1015.9333330000001,0.0,86.41666667,17.015,1.463, +2014-09-13 01:00:00,0.0,1016.01,0.0,89.875,16.535,0.48858333299999995, +2014-09-13 02:00:00,0.0,1016.195,0.0,90.86666667,16.24666667,1.4871666669999999, +2014-09-13 03:00:00,0.0,1016.201667,0.0,93.125,16.305,1.535166667, +2014-09-13 04:00:00,0.0,1016.225,0.0,92.16666667,16.07083333,2.2955, +2014-09-13 05:00:00,0.0,1016.628333,0.05825,92.56666667,15.76083333,1.76775, +2014-09-13 06:00:00,0.0,1016.966667,4.871416667,93.9,15.44583333,1.609833333, +2014-09-13 07:00:00,0.0,1017.11,49.4275,93.36666667,15.64833333,1.748083333, +2014-09-13 08:00:00,0.0,1017.64,81.45333333,91.275,16.20166667,2.099, +2014-09-13 09:00:00,0.0,1017.975,112.51666670000002,89.73333333,16.5475,2.238833333, +2014-09-13 10:00:00,0.0,1018.041667,89.19083333,89.10833333,17.06583333,2.554916667, +2014-09-13 11:00:00,0.0,1017.963333,79.14833333,89.56666667,16.97,2.462583333, +2014-09-13 12:00:00,0.0,1017.926667,124.06666670000001,89.43333333,17.00916667,2.719, +2014-09-13 13:00:00,0.0,1017.85,134.5,87.91666667,17.3425,3.0453333330000003, +2014-09-13 14:00:00,0.0,1017.78,87.3675,89.475,17.09583333,2.485583333, +2014-09-13 15:00:00,0.0,1017.896667,55.96333333,90.60833333,17.23416667,2.3455, +2014-09-13 16:00:00,0.0,1018.123333,23.685,91.825,16.8175,2.9573333330000002, +2014-09-13 17:00:00,0.0,1018.393333,7.819166667,94.08333333,16.08166667,2.7286666669999997, +2014-09-13 18:00:00,0.0,1018.4333330000001,3.39175,93.73333333,15.935,1.8979166669999998, +2014-09-13 19:00:00,0.0,1018.45,0.01175,95.85833333,15.78,0.32758333300000003, +2014-09-13 20:00:00,0.0,1018.4416669999999,0.0,96.78333333,15.77,0.5379166670000001, +2014-09-13 21:00:00,0.0,1018.431667,0.0,96.3,16.06416667,1.045166667, +2014-09-13 22:00:00,0.0,1018.11,0.0,97.90833333,15.94,0.800166667, +2014-09-13 23:00:00,0.0,1017.928333,0.0,98.48333333,15.93583333,0.993166667, +2014-09-14 00:00:00,0.0,1017.636667,0.0,97.7,15.8675,0.745, +2014-09-14 01:00:00,0.0,1017.378333,0.0,97.30833333,15.88416667,1.030916667, +2014-09-14 02:00:00,0.0,1016.88,0.0,96.18333333,15.68,0.982583333, +2014-09-14 03:00:00,0.0,1016.523333,0.0,98.025,15.31,0.211333333, +2014-09-14 04:00:00,0.0,1016.181667,0.0,98.05,15.43583333,0.62575, +2014-09-14 05:00:00,0.0,1016.166667,0.07425,98.21666667,15.44666667,0.78375, +2014-09-14 06:00:00,0.0,1016.388333,3.34675,98.325,15.5025,1.078, +2014-09-14 07:00:00,0.0,1016.4366669999999,18.81,98.05,15.65833333,1.413666667, +2014-09-14 08:00:00,0.0,1016.698333,74.13083333,95.4,16.06416667,2.0750833330000003, +2014-09-14 09:00:00,0.0,1016.54,110.1725,91.2,16.72166667,2.7599166669999997, +2014-09-14 10:00:00,0.0,1016.236667,114.36583329999999,90.41666667,17.20916667,2.7105, +2014-09-14 11:00:00,0.0,1015.966667,178.06666669999998,85.90833333,18.18,2.88425, +2014-09-14 12:00:00,0.0,1015.74,147.31666669999998,83.85833333,18.53833333,2.397833333, +2014-09-14 13:00:00,0.0,1015.236667,332.4166667,79.08583333,19.38416667,2.237, +2014-09-14 14:00:00,0.0,1014.586667,456.525,69.7375,21.12916667,1.9285, +2014-09-14 15:00:00,0.0,1014.241667,304.1,66.11833333,21.47666667,2.06775, +2014-09-14 16:00:00,0.0,1013.8083330000001,163.3125,65.78583333,21.61416667,1.2590000000000001, +2014-09-14 17:00:00,0.0,1013.72,51.94333333,74.0325,20.085,0.917416667, +2014-09-14 18:00:00,0.0,1013.745,10.965,90.26666667,17.64,0.077, +2014-09-14 19:00:00,0.0,1013.993333,0.07325,98.15833333,13.95166667,0.032166667, +2014-09-14 20:00:00,0.0,1013.92,0.0,100.0,12.37833333,0.07525, +2014-09-14 21:00:00,0.0,1013.888333,0.0,100.0,11.5075,0.026416667, +2014-09-14 22:00:00,0.0,1013.611667,0.0,100.0,10.89416667,0.021666667, +2014-09-14 23:00:00,0.0,1013.573333,0.0,100.0,10.53333333,0.023333332999999998, +2014-09-15 00:00:00,0.0,1013.741667,0.0,100.0,10.88,0.009416667, +2014-09-15 01:00:00,0.0,1013.598333,0.0,100.0,12.33583333,0.010583333, +2014-09-15 02:00:00,0.0,1013.445,0.0,100.0,12.52666667,0.0, +2014-09-15 03:00:00,0.0,1013.131667,0.0,100.0,12.54083333,0.0, +2014-09-15 04:00:00,0.0,1012.961667,0.0,100.0,13.13666667,0.016333333000000002, +2014-09-15 05:00:00,0.0,1012.925,0.063416667,100.0,13.4875,0.0, +2014-09-15 06:00:00,0.0,1013.04,6.211666667,100.0,13.86416667,0.06, +2014-09-15 07:00:00,0.0,1013.178333,15.56333333,100.0,14.39,0.007666666999999999, +2014-09-15 08:00:00,0.0,1013.401667,28.00416667,100.0,14.9225,0.332583333, +2014-09-15 09:00:00,0.0,1013.456667,91.65,98.85,15.72916667,0.7104166670000001, +2014-09-15 10:00:00,0.0,1013.533333,178.1083333,94.23333333,16.92166667,1.420833333, +2014-09-15 11:00:00,0.0,1013.286667,230.75,89.975,18.35416667,1.4875833330000001, +2014-09-15 12:00:00,0.0,1012.921667,245.6333333,86.63333333,19.18083333,1.395, +2014-09-15 13:00:00,0.0,1012.548333,242.2583333,82.255,20.11333333,1.6408333330000002, +2014-09-15 14:00:00,0.0,1012.1,51.91666667,86.875,19.66916667,1.449416667, +2014-09-15 15:00:00,0.0,1012.053333,71.47666667,88.73333333,19.73083333,1.94175, +2014-09-15 16:00:00,0.0,1012.038333,70.65166667,87.86666667,20.0575,1.698833333, +2014-09-15 17:00:00,0.0,1011.825,30.14333333,93.33333333,19.7175,1.202166667, +2014-09-15 18:00:00,0.0,1011.946667,4.944416667,98.75833333,18.01833333,0.18358333300000002, +2014-09-15 19:00:00,0.0,1012.166667,0.016416667,100.0,17.20833333,0.11758333300000001, +2014-09-15 20:00:00,0.0,1012.106667,0.0,100.0,16.1075,0.08416666699999999, +2014-09-15 21:00:00,0.0,1012.121667,0.0,100.0,14.62583333,0.016333333000000002, +2014-09-15 22:00:00,0.0,1012.23,0.0,100.0,14.46166667,0.09025, +2014-09-15 23:00:00,0.0,1011.915,0.0,100.0,13.40333333,0.0, +2014-09-16 00:00:00,0.0,1011.95,0.0,100.0,12.25,0.0, +2014-09-16 01:00:00,0.0,1011.9416669999999,0.0,100.0,11.63166667,0.0, +2014-09-16 02:00:00,0.0,1011.891667,0.0,100.0,11.37916667,0.0, +2014-09-16 03:00:00,0.0,1011.633333,0.0,100.0,10.85083333,0.0, +2014-09-16 04:00:00,0.0,1011.705,0.0,100.0,10.315,0.0, +2014-09-16 05:00:00,0.0,1011.978333,0.10325,100.0,10.58666667,0.0, +2014-09-16 06:00:00,0.0,1012.008333,14.73458333,100.0,11.69333333,0.0, +2014-09-16 07:00:00,0.0,1012.115,58.1425,100.0,13.63666667,0.10358333300000001, +2014-09-16 08:00:00,0.0,1012.383333,96.3475,100.0,15.80666667,0.47716666700000004, +2014-09-16 09:00:00,0.0,1012.523333,255.80833330000002,97.61666667,19.06833333,0.520166667, +2014-09-16 10:00:00,0.0,1012.3166669999999,328.84166669999996,83.31416667,20.61416667,1.6193333330000002, +2014-09-16 11:00:00,0.0,1011.95,257.8833333,77.88166667,21.47583333,1.9969999999999999, +2014-09-16 12:00:00,0.0,1011.601667,496.175,71.8125,22.65916667,1.794416667, +2014-09-16 13:00:00,0.0,1011.261667,323.90833330000004,69.43083333,23.28833333,2.038833333, +2014-09-16 14:00:00,0.0,1010.915,450.4333333000001,62.98083333,23.96916667,2.3385, +2014-09-16 15:00:00,0.0,1010.681667,375.9833333,60.32833333,23.24166667,1.9431666669999998, +2014-09-16 16:00:00,0.0,1010.461667,165.5191667,61.39,23.14416667,1.772583333, +2014-09-16 17:00:00,0.0,1010.53,29.08583333,70.69916667,22.15083333,1.77975, +2014-09-16 18:00:00,0.0,1010.5616669999999,8.467833333,90.025,18.98833333,0.275083333, +2014-09-16 19:00:00,0.0,1010.838333,0.024916667000000003,97.74166667,14.90833333,0.08416666699999999, +2014-09-16 20:00:00,0.0,1010.888333,0.0,99.95,13.26166667,0.06358333299999999, +2014-09-16 21:00:00,0.0,1010.648333,0.0,100.0,12.34,0.093666667, +2014-09-16 22:00:00,0.0,1010.71,0.0,100.0,11.835,0.02175, +2014-09-16 23:00:00,0.0,1010.623333,0.0,100.0,11.4225,0.007333333, +2014-09-17 00:00:00,0.0,1010.4,0.0,100.0,11.64,0.008583333, +2014-09-17 01:00:00,0.0,1010.073333,0.0,100.0,10.72,0.017, +2014-09-17 02:00:00,0.0,1009.991667,0.0,100.0,10.30666667,0.10308333300000001, +2014-09-17 03:00:00,0.0,1010.098333,0.0,100.0,9.906666667,0.141833333, +2014-09-17 04:00:00,0.0,1009.96,0.0,100.0,9.793333333,0.052000000000000005, +2014-09-17 05:00:00,0.0,1010.1,0.09958333300000001,100.0,9.435833333,0.0025833329999999997, +2014-09-17 06:00:00,0.0,1010.196667,9.394,100.0,10.3575,0.0, +2014-09-17 07:00:00,0.0,1010.055,58.72916667,100.0,12.16,0.10975, +2014-09-17 08:00:00,0.0,1009.955,143.92583330000002,100.0,14.66166667,0.670583333, +2014-09-17 09:00:00,0.0,1009.961667,317.40833330000004,92.46666667,17.63,0.750166667, +2014-09-17 10:00:00,0.0,1009.841667,405.525,82.85416667,19.9175,1.176666667, +2014-09-17 11:00:00,0.0,1009.376667,469.3916666999999,76.92166667,21.7375,1.596916667, +2014-09-17 12:00:00,0.0,1009.036667,494.03333330000004,69.65833333,23.1125,1.5188333330000001, +2014-09-17 13:00:00,0.0,1008.728333,481.49166669999994,64.75083333,23.83083333,1.682916667, +2014-09-17 14:00:00,0.0,1008.345,436.9,59.96416667,24.46833333,2.0034166669999998, +2014-09-17 15:00:00,0.0,1008.041667,354.84166669999996,56.18916667,24.785,1.393583333, +2014-09-17 16:00:00,0.0,1007.633333,162.0216667,59.18583333,24.5825,1.342083333, +2014-09-17 17:00:00,0.0,1007.825,30.4275,72.59166667,22.8925,0.770916667, +2014-09-17 18:00:00,0.0,1008.098333,5.550666667000001,90.33333333,18.91166667,0.03225, +2014-09-17 19:00:00,0.0,1008.108333,0.0,97.78333333,15.69166667,0.097666667, +2014-09-17 20:00:00,0.0,1008.3083330000001,0.0,100.0,14.04,0.0415, +2014-09-17 21:00:00,0.0,1008.223333,0.0,100.0,12.82333333,0.039666667, +2014-09-17 22:00:00,0.0,1008.143333,0.0,100.0,12.01166667,0.023916667000000003, +2014-09-17 23:00:00,0.0,1008.131667,0.0,100.0,11.3675,0.005166667, +2014-09-18 00:00:00,0.0,1008.003333,0.0,100.0,11.04,0.002166667, +2014-09-18 01:00:00,0.0,1007.726667,0.0,100.0,10.49416667,0.00033333300000000006, +2014-09-18 02:00:00,0.0,1007.623333,0.0,100.0,10.05416667,0.00175, +2014-09-18 03:00:00,0.0,1007.608333,0.0,100.0,9.810833333,0.003833333, +2014-09-18 04:00:00,0.0,1007.901667,0.0,100.0,10.67916667,0.0, +2014-09-18 05:00:00,0.0,1008.08,0.035666667,100.0,11.48166667,0.029916667, +2014-09-18 06:00:00,0.0,1008.101667,5.83025,100.0,12.235,0.028333333, +2014-09-18 07:00:00,0.0,1007.976667,31.75166667,100.0,13.12,0.143166667, +2014-09-18 08:00:00,0.0,1008.42,73.60416667,100.0,14.09333333,0.212, +2014-09-18 09:00:00,0.0,1008.475,100.9566667,99.875,15.3025,0.385, +2014-09-18 10:00:00,0.0,1008.515,269.7916667,92.83333333,17.55833333,0.880833333, +2014-09-18 11:00:00,0.0,1008.491667,206.43333330000002,87.70833333,19.32166667,0.819333333, +2014-09-18 12:00:00,0.0,1008.323333,263.2416667,84.61666667,20.24416667,0.776333333, +2014-09-18 13:00:00,0.0,1008.028333,218.5083333,83.61666667,21.255,0.868083333, +2014-09-18 14:00:00,0.0,1007.87,169.56666669999998,82.46666667,21.45333333,0.889833333, +2014-09-18 15:00:00,0.0,1007.771667,284.9833333,78.56416667,22.0875,1.206333333, +2014-09-18 16:00:00,0.0,1007.713333,132.165,79.53416667,22.25416667,0.864583333, +2014-09-18 17:00:00,0.0,1007.848333,41.41166667,84.25166667,21.38583333,0.779416667, +2014-09-18 18:00:00,0.0,1007.868333,3.5148333330000003,96.40833333,19.24666667,0.06408333299999999, +2014-09-18 19:00:00,43.45013287,1008.025,0.0,99.85833333,17.47333333,0.0885, +2014-09-18 20:00:00,0.0,1007.94,0.0,100.0,16.99416667,0.026583332999999997, +2014-09-18 21:00:00,0.0,1007.925,0.0,100.0,16.0075,0.016583333000000002, +2014-09-18 22:00:00,0.0,1008.355,0.0,100.0,15.49333333,0.1195, +2014-09-18 23:00:00,17.24409672,1008.463333,0.0,100.0,16.32166667,0.21908333300000002, +2014-09-19 00:00:00,2.4245071680000003,1008.305,0.0,100.0,16.50666667,0.044916667, +2014-09-19 01:00:00,0.0,1007.881667,0.0,100.0,16.1025,0.027916667000000003, +2014-09-19 02:00:00,0.0,1007.573333,0.0,100.0,15.26416667,0.192916667, +2014-09-19 03:00:00,0.0,1007.261667,0.0,100.0,14.495,0.06525, +2014-09-19 04:00:00,0.0,1007.351667,0.0,100.0,13.73833333,0.059083332999999995, +2014-09-19 05:00:00,0.0,1007.671667,0.0315,100.0,14.375,0.224333333, +2014-09-19 06:00:00,2.4050227680000003,1008.11,13.36341667,100.0,14.49833333,0.297083333, +2014-09-19 07:00:00,0.0,1008.286667,50.63916667,100.0,15.01916667,0.137416667, +2014-09-19 08:00:00,0.0,1008.658333,94.21666667,100.0,15.91166667,0.338583333, +2014-09-19 09:00:00,0.0,1009.0583330000001,119.32833329999998,100.0,16.72083333,0.37975, +2014-09-19 10:00:00,0.0,1008.883333,209.8366667,97.375,18.09333333,0.61675, +2014-09-19 11:00:00,0.0,1008.968333,228.075,86.33333333,20.79,0.694333333, +2014-09-19 12:00:00,0.0,1008.965,301.025,79.77833333,22.12333333,0.6699166670000001, +2014-09-19 13:00:00,0.0,1008.871667,273.5,81.65916667,22.43333333,0.5670000000000001, +2014-09-19 14:00:00,0.0,1008.908333,254.08333330000002,81.95166667,22.38666667,0.527166667, +2014-09-19 15:00:00,0.0,1008.445,327.7916667,77.01833333,24.04333333,0.333333333, +2014-09-19 16:00:00,0.0,1008.466667,146.6,76.6025,23.23,0.30575, +2014-09-19 17:00:00,0.0,1008.511667,57.9925,79.96833333,22.50916667,0.146916667, +2014-09-19 18:00:00,0.0,1008.73,7.521166667,90.825,20.04,0.024916667000000003, +2014-09-19 19:00:00,0.0,1009.256667,0.0,99.0,17.7575,0.059416667, +2014-09-19 20:00:00,0.0,1009.411667,0.0,100.0,16.29666667,0.0265, +2014-09-19 21:00:00,0.0,1009.421667,0.0,100.0,15.07,0.022666667, +2014-09-19 22:00:00,0.0,1009.771667,0.0,100.0,14.39333333,0.08808333300000001, +2014-09-19 23:00:00,0.0,1009.79,0.0,100.0,13.56083333,0.08766666699999999, +2014-09-20 00:00:00,0.0,1009.788333,0.0,100.0,13.17416667,0.1585, +2014-09-20 01:00:00,0.0,1009.77,0.0,100.0,13.02416667,0.090583333, +2014-09-20 02:00:00,0.0,1009.821667,0.0,100.0,13.155,0.083416667, +2014-09-20 03:00:00,0.0,1009.828333,0.0,100.0,13.89583333,0.10058333300000001, +2014-09-20 04:00:00,0.0,1009.9333330000001,0.0,100.0,14.41666667,0.133916667, +2014-09-20 05:00:00,0.0,1010.035,0.0155,100.0,14.44916667,0.10116666699999999, +2014-09-20 06:00:00,0.0,1010.286667,13.26008333,100.0,14.38583333,0.166666667, +2014-09-20 07:00:00,0.0,1010.33,31.3125,100.0,14.84083333,0.0225, +2014-09-20 08:00:00,0.0,1010.621667,98.16333333,100.0,15.61666667,0.25725, +2014-09-20 09:00:00,0.0,1010.603333,245.625,99.64166667,16.38666667,0.34733333299999997, +2014-09-20 10:00:00,0.0,1010.613333,277.3833333,92.13333333,18.07583333,0.6901666670000001, +2014-09-20 11:00:00,0.0,1010.525,353.8916667,86.18333333,20.82583333,0.77525, +2014-09-20 12:00:00,0.0,1010.423333,352.3083333,77.16916667,22.64916667,1.34175, +2014-09-20 13:00:00,13.5800503,1009.833333,317.27416669999997,80.87416667,22.02333333,1.064166667, +2014-09-20 14:00:00,42.39711794,1009.8083330000001,165.95833330000002,85.8325,20.525,1.43175, +2014-09-20 15:00:00,0.0,1009.9,113.675,96.7,19.93083333,0.26508333300000003, +2014-09-20 16:00:00,0.0,1010.003333,71.2475,98.84166667,19.98833333,0.741833333, +2014-09-20 17:00:00,0.0,1010.051667,34.23666667,99.925,19.33583333,0.8540000000000001, +2014-09-20 18:00:00,0.0,1010.256667,2.8415,99.70833333,17.91,0.239916667, +2014-09-20 19:00:00,46.32125203,1010.243333,0.0,100.0,17.00666667,0.6955, +2014-09-20 20:00:00,2.5104146640000002,1010.83,0.0,100.0,15.7375,0.588333333, +2014-09-20 21:00:00,0.0,1010.67,0.0,100.0,15.225,0.34483333299999996, +2014-09-20 22:00:00,0.0,1010.873333,0.0,100.0,15.10833333,0.42208333299999995, +2014-09-20 23:00:00,0.0,1010.735,0.0,100.0,14.91833333,0.10116666699999999, +2014-09-21 00:00:00,0.0,1010.37,0.0,100.0,14.73083333,0.11666666699999999, +2014-09-21 01:00:00,2.532173232,1010.408333,0.0,100.0,14.395,0.2505, +2014-09-21 02:00:00,0.0,1010.041667,0.0,100.0,14.475,0.133583333, +2014-09-21 03:00:00,0.0,1009.716667,0.0,100.0,15.00166667,0.335916667, +2014-09-21 04:00:00,14.53081003,1009.795,0.0,100.0,14.92833333,0.131583333, +2014-09-21 05:00:00,14.45069474,1009.818333,0.0,100.0,15.0775,0.019416667, +2014-09-21 06:00:00,17.06944078,1009.928333,5.8365,100.0,15.34,0.200416667, +2014-09-21 07:00:00,17.92488307,1010.0633330000001,10.7975,100.0,15.52666667,0.8480833329999999, +2014-09-21 08:00:00,26.73080074,1010.261667,42.31166667,100.0,15.79416667,0.151, +2014-09-21 09:00:00,4.982941992,1010.33,109.2858333,99.96666667,16.28333333,0.311833333, +2014-09-21 10:00:00,9.925911624,1010.428333,82.51583333,100.0,16.45583333,0.345583333, +2014-09-21 11:00:00,2.4245071680000003,1010.36,112.9375,99.675,16.84166667,0.24483333300000001, +2014-09-21 12:00:00,98.66220782,1010.545,90.89,98.81666667,16.89666667,0.97775, +2014-09-21 13:00:00,24.14677524,1010.521667,86.97833333,97.675,16.14666667,1.954, +2014-09-21 14:00:00,8.398211400000001,1010.608333,129.65833329999998,97.95833333,15.87166667,1.334, +2014-09-21 15:00:00,0.0,1010.893333,186.1516667,93.86666667,16.85916667,1.88375, +2014-09-21 16:00:00,0.0,1011.315,57.92541667,92.85,16.6675,2.6063333330000003, +2014-09-21 17:00:00,0.0,1011.656667,20.526,90.05833333,15.48166667,1.6631666669999998, +2014-09-21 18:00:00,0.0,1012.13,13.61366667,95.425,14.57,1.035666667, +2014-09-21 19:00:00,0.0,1012.913333,0.0,95.35,13.9525,1.173, +2014-09-21 20:00:00,0.0,1013.49,0.0,94.08333333,13.68166667,1.1, +2014-09-21 21:00:00,0.0,1013.72,0.0,96.55,12.56,0.6859999999999999, +2014-09-21 22:00:00,0.0,1013.93,0.0,98.5,11.52166667,0.31475, +2014-09-21 23:00:00,0.0,1014.216667,0.0,98.975,11.23166667,0.875583333, +2014-09-22 00:00:00,0.0,1014.225,0.0,97.8,10.88,0.926333333, +2014-09-22 01:00:00,0.0,1014.195,0.0,99.2,9.964166667,0.26716666699999997, +2014-09-22 02:00:00,0.0,1014.171667,0.0,98.89166667,9.7575,0.314083333, +2014-09-22 03:00:00,0.0,1014.113333,0.0,96.83333333,10.44416667,0.5126666670000001, +2014-09-22 04:00:00,0.0,1013.82,0.0,96.83333333,10.43333333,0.38091666700000004, +2014-09-22 05:00:00,0.0,1013.87,0.0014166670000000001,98.81666667,9.2625,0.159833333, +2014-09-22 06:00:00,0.0,1014.046667,6.0715833329999995,98.88333333,9.146666667,0.21716666699999998, +2014-09-22 07:00:00,0.0,1013.873333,25.17333333,96.36666667,10.28333333,0.5720833329999999, +2014-09-22 08:00:00,0.0,1013.766667,67.47416667,93.88333333,11.36666667,0.7314166670000001, +2014-09-22 09:00:00,0.0,1013.5666669999999,58.6425,91.03333333,12.01583333,0.6635, +2014-09-22 10:00:00,0.0,1013.013333,109.57083329999999,88.54166667,12.47083333,0.569916667, +2014-09-22 11:00:00,2.743998408,1012.391667,134.2008333,83.56666667,13.31916667,1.048916667, +2014-09-22 12:00:00,107.24775840000001,1012.626667,150.7358333,81.92166667,13.36333333,2.6385, +2014-09-22 13:00:00,101.0704583,1013.146667,152.325,93.59166667,10.30333333,3.292166667, +2014-09-22 14:00:00,0.0,1013.608333,345.75,85.5875,11.295,3.8789999999999996, +2014-09-22 15:00:00,0.0,1014.098333,337.09166669999996,75.9475,12.565,2.999166667, +2014-09-22 16:00:00,0.0,1014.525,155.2475,72.81083333,12.73333333,4.002083333, +2014-09-22 17:00:00,0.0,1014.8133330000001,26.95916667,75.9975,11.965,2.000333333, +2014-09-22 18:00:00,0.0,1014.9366669999999,5.057166667,85.4,10.345,0.747916667, +2014-09-22 19:00:00,0.0,1015.531667,0.0,89.975,9.258333333,0.6865, +2014-09-22 20:00:00,0.0,1015.87,0.0,94.41666667,9.191666667,0.8613333329999999, +2014-09-22 21:00:00,0.0,1016.115,0.0,97.9,8.417166667,0.286583333, +2014-09-22 22:00:00,0.0,1016.285,0.0,100.0,7.773416667,0.230666667, +2014-09-22 23:00:00,0.0,1016.695,0.0,100.0,7.447916667,0.343083333, +2014-09-23 00:00:00,0.0,1016.615,0.0,100.0,7.2335833329999994,0.15633333300000002, +2014-09-23 01:00:00,0.0,1016.48,0.0,100.0,6.8608333329999995,0.26825, +2014-09-23 02:00:00,0.0,1016.165,0.0,100.0,6.65425,0.33216666699999997, +2014-09-23 03:00:00,0.0,1016.251667,0.0,100.0,6.621083333,0.644083333, +2014-09-23 04:00:00,0.0,1016.5666669999999,0.0,100.0,6.5628333329999995,0.983916667, +2014-09-23 05:00:00,0.0,1017.168333,0.013583333000000001,100.0,6.437333333,0.21791666699999998, +2014-09-23 06:00:00,0.0,1017.466667,8.939333332999999,100.0,6.294,0.159583333, +2014-09-23 07:00:00,0.0,1017.91,53.21166667,100.0,7.266666667000001,0.592916667, +2014-09-23 08:00:00,0.0,1018.303333,145.05,100.0,8.854583332999999,0.343916667, +2014-09-23 09:00:00,0.0,1018.475,134.4783333,100.0,9.596666667000001,0.28925, +2014-09-23 10:00:00,0.0,1018.1,376.2583333,91.15,11.60083333,0.6668333329999999, +2014-09-23 11:00:00,0.0,1017.623333,297.9025,80.6425,14.15833333,0.569916667, +2014-09-23 12:00:00,0.0,1017.298333,488.46666669999996,66.02166667,14.71916667,0.85275, +2014-09-23 13:00:00,0.0,1016.6883330000001,487.8083333000001,60.06833333,14.00666667,0.2195, +2014-09-23 14:00:00,0.0,1015.993333,445.5,58.67083333,15.11666667,0.254166667, +2014-09-23 15:00:00,0.0,1015.363333,303.025,57.205,15.51083333,1.1575, +2014-09-23 16:00:00,0.0,1014.843333,163.2258333,59.6275,15.6725,0.8583333329999999, +2014-09-23 17:00:00,0.0,1014.685,30.355,75.21,14.175,1.058833333, +2014-09-23 18:00:00,0.0,1014.975,2.8273333330000003,94.24166667,11.10416667,0.333333333, +2014-09-23 19:00:00,0.0,1014.856667,0.0,99.76666667,8.54,0.1665, +2014-09-23 20:00:00,0.0,1014.5583330000001,0.0,100.0,7.06375,0.0, +2014-09-23 21:00:00,0.0,1014.12,0.0,100.0,6.07675,0.011416667, +2014-09-23 22:00:00,0.0,1013.69,0.0,100.0,5.6079166670000005,0.025166667, +2014-09-23 23:00:00,0.0,1013.368333,0.0,100.0,4.777583333,0.0, +2014-09-24 00:00:00,0.0,1013.565,0.0,100.0,4.629166667,0.0, +2014-09-24 01:00:00,0.0,1013.078333,0.0,100.0,5.250166667,0.0, +2014-09-24 02:00:00,0.0,1012.4333330000001,0.0,100.0,5.08425,0.0, +2014-09-24 03:00:00,0.0,1011.606667,0.0,100.0,4.663583333,0.0, +2014-09-24 04:00:00,0.0,1010.836667,0.0,100.0,5.195666667,0.0, +2014-09-24 05:00:00,0.0,1010.665,0.0,100.0,4.947083333,0.0, +2014-09-24 06:00:00,0.0,1010.4366669999999,5.689416667000001,100.0,5.45375,0.325, +2014-09-24 07:00:00,0.0,1010.245,39.99666667,100.0,5.833333333,0.27899999999999997, +2014-09-24 08:00:00,0.0,1009.971667,112.10583329999999,100.0,6.619083333,0.16275, +2014-09-24 09:00:00,0.0,1009.711667,196.0,99.96666667,8.013,0.35083333299999997, +2014-09-24 10:00:00,0.0,1009.448333,230.6,94.39166667,10.03333333,0.63575, +2014-09-24 11:00:00,0.0,1009.15,214.1,86.525,11.77416667,1.13275, +2014-09-24 12:00:00,0.0,1008.703333,329.6333333,78.8125,13.46416667,0.54025, +2014-09-24 13:00:00,0.0,1008.166667,248.475,75.7025,14.315,0.5561666670000001, +2014-09-24 14:00:00,0.0,1007.865,228.0333333,72.21916667,14.83416667,0.857916667, +2014-09-24 15:00:00,0.0,1007.405,162.9916667,72.62833333,14.57416667,0.575333333, +2014-09-24 16:00:00,0.0,1007.266667,115.84166670000002,75.795,14.51333333,0.42816666700000006, +2014-09-24 17:00:00,0.0,1007.235,43.17333333,83.25,13.64833333,0.58525, +2014-09-24 18:00:00,0.0,1007.235,5.251,91.04166667,12.72833333,0.654833333, +2014-09-24 19:00:00,0.0,1007.496667,0.0,89.125,11.405,0.068916667, +2014-09-24 20:00:00,0.0,1007.708333,0.0,88.35,10.67333333,0.0019166670000000002, +2014-09-24 21:00:00,0.0,1007.996667,0.0,87.36666667,10.38166667,0.327, +2014-09-24 22:00:00,9.79955796,1008.143333,0.0,94.29166667,11.1225,0.194166667, +2014-09-24 23:00:00,0.0,1008.256667,0.0,94.6,10.5675,0.171416667, +2014-09-25 00:00:00,0.0,1008.86,0.0,98.875,9.103333333,0.039666667, +2014-09-25 01:00:00,2.4050227680000003,1009.638333,0.0,99.35833333,8.730833333,0.027166667000000002, +2014-09-25 02:00:00,0.0,1010.215,0.0,97.51666667,10.39583333,0.238083333, +2014-09-25 03:00:00,0.0,1010.668333,0.0,98.14166667,10.33666667,0.082833333, +2014-09-25 04:00:00,0.0,1010.97,0.0,98.56666667,10.24916667,0.15208333300000001, +2014-09-25 05:00:00,0.0,1011.55,0.0,99.88333333,9.8325,0.12175, +2014-09-25 06:00:00,0.0,1012.06,3.628333333,99.41666667,10.55916667,0.1445, +2014-09-25 07:00:00,0.0,1013.11,23.35083333,99.00833333,11.26,0.11816666699999999, +2014-09-25 08:00:00,0.0,1013.83,95.94333333,98.13333333,12.04,0.383166667, +2014-09-25 09:00:00,0.0,1014.49,190.8,91.40833333,13.4375,0.940583333, +2014-09-25 10:00:00,2.974386672,1015.0,280.65833330000004,84.625,14.34083333,1.6531666669999998, +2014-09-25 11:00:00,0.0,1015.375,214.9666667,79.4975,15.2275,2.082416667, +2014-09-25 12:00:00,0.0,1015.655,359.6083333,76.77166667,15.98916667,1.536583333, +2014-09-25 13:00:00,0.0,1015.491667,351.9416667,74.05333333,16.39666667,1.04925, +2014-09-25 14:00:00,0.0,1015.663333,268.0666667,72.135,16.36833333,1.46625, +2014-09-25 15:00:00,0.0,1015.591667,106.93416670000002,73.78416667,15.8675,1.074, +2014-09-25 16:00:00,0.0,1016.126667,89.78916667,71.87916667,15.655,0.853666667, +2014-09-25 17:00:00,0.0,1016.295,29.12333333,75.02333333,14.90083333,0.36325, +2014-09-25 18:00:00,0.0,1016.785,2.461083333,84.3,13.6675,0.038416667, +2014-09-25 19:00:00,0.0,1017.405,0.0,95.19166667,11.76083333,0.039583333, +2014-09-25 20:00:00,0.0,1017.603333,0.0,96.775,11.64833333,0.06775, +2014-09-25 21:00:00,0.0,1017.713333,0.0,88.28333333,11.8025,0.11566666699999999, +2014-09-25 22:00:00,0.0,1018.0633330000001,0.0,86.16666667,12.11583333,0.054166667, +2014-09-25 23:00:00,0.0,1018.23,0.0,86.2,12.10083333,0.003, +2014-09-26 00:00:00,0.0,1018.506667,0.0,86.33333333,12.285,0.034166667000000005, +2014-09-26 01:00:00,0.0,1018.368333,0.0,86.61666667,12.27666667,0.014833333, +2014-09-26 02:00:00,0.0,1018.481667,0.0,86.625,12.485,0.18358333300000002, +2014-09-26 03:00:00,0.0,1018.333333,0.0,88.38333333,12.31666667,0.027666667000000002, +2014-09-26 04:00:00,0.0,1018.23,0.0,90.56666667,11.97166667,0.005083333, +2014-09-26 05:00:00,0.0,1018.203333,0.0,91.2,11.70416667,0.003833333, +2014-09-26 06:00:00,0.0,1018.543333,3.7400833330000003,90.18333333,11.745,0.12425, +2014-09-26 07:00:00,0.0,1019.318333,24.745,88.80833333,12.41083333,0.177083333, +2014-09-26 08:00:00,0.0,1019.8,56.89916667,88.95,12.84,0.2435, +2014-09-26 09:00:00,0.0,1020.26,103.35,87.525,13.55166667,0.399416667, +2014-09-26 10:00:00,0.0,1020.25,123.6,87.30833333,13.98,0.43841666700000004, +2014-09-26 11:00:00,0.0,1020.3,160.95,86.71666667,14.64166667,0.42375, +2014-09-26 12:00:00,0.0,1020.251667,287.65,82.69166667,16.41666667,0.5086666670000001, +2014-09-26 13:00:00,0.0,1019.885,256.96666669999996,80.67583333,17.53666667,0.6688333329999999, +2014-09-26 14:00:00,0.0,1019.948333,139.425,83.05,17.40166667,0.645833333, +2014-09-26 15:00:00,0.0,1019.75,89.28166667,86.36666667,16.74916667,0.39075, +2014-09-26 16:00:00,0.0,1019.955,76.30666667,86.24166667,16.55916667,0.270583333, +2014-09-26 17:00:00,0.0,1020.085,28.18375,87.6,16.2525,0.200583333, +2014-09-26 18:00:00,0.0,1020.461667,1.26025,89.95,15.6275,0.222333333, +2014-09-26 19:00:00,0.0,1021.31,0.0,95.35833333,15.02583333,0.1075, +2014-09-26 20:00:00,0.0,1021.546667,0.0,99.20833333,14.56666667,0.017833333, +2014-09-26 21:00:00,0.0,1021.838333,0.0,98.80833333,14.46,0.211833333, +2014-09-26 22:00:00,0.0,1022.111667,0.0,98.28333333,14.06,0.21908333300000002, +2014-09-26 23:00:00,0.0,1022.136667,0.0,99.88333333,13.21833333,0.613833333, +2014-09-27 00:00:00,0.0,1022.17,0.0,100.0,13.91916667,0.350583333, +2014-09-27 01:00:00,0.0,1022.251667,0.0,100.0,13.82666667,0.057583333, +2014-09-27 02:00:00,0.0,1022.396667,0.0,99.98333333,13.94083333,0.2665, +2014-09-27 03:00:00,0.0,1022.618333,0.0,99.9,13.94583333,0.228333333, +2014-09-27 04:00:00,0.0,1022.656667,0.0,100.0,13.83083333,0.36475, +2014-09-27 05:00:00,0.0,1022.681667,0.0,100.0,13.455,0.0845, +2014-09-27 06:00:00,0.0,1023.216667,4.38825,100.0,13.05416667,0.033166667000000004, +2014-09-27 07:00:00,0.0,1023.743333,40.36833333,100.0,13.38083333,0.015416667, +2014-09-27 08:00:00,0.0,1024.258333,68.86833333,99.98333333,14.4125,0.28600000000000003, +2014-09-27 09:00:00,0.0,1024.438333,170.8975,94.45,16.28416667,0.3995, +2014-09-27 10:00:00,0.0,1024.591667,243.9666667,84.625,17.57416667,0.84075, +2014-09-27 11:00:00,0.0,1024.466667,171.675,84.93333333,18.28166667,1.004083333, +2014-09-27 12:00:00,0.0,1024.331667,196.2166667,83.12916667,18.85416667,0.840666667, +2014-09-27 13:00:00,0.0,1024.083333,411.2916667,74.5625,20.03083333,1.272, +2014-09-27 14:00:00,0.0,1023.806667,460.50833330000006,70.42083333,21.02333333,1.347, +2014-09-27 15:00:00,0.0,1023.535,404.3833333,67.65,19.64916667,1.065166667, +2014-09-27 16:00:00,0.0,1023.19,192.4575,69.94916667,19.3875,0.521333333, +2014-09-27 17:00:00,0.0,1023.013333,21.5175,85.38166667,18.0125,0.164416667, +2014-09-27 18:00:00,0.0,1023.195,1.993416667,96.275,13.95583333,0.0105, +2014-09-27 19:00:00,0.0,1023.193333,0.0,99.78333333,11.71333333,0.08008333299999999, +2014-09-27 20:00:00,0.0,1023.19,0.0,100.0,10.24166667,0.04175, +2014-09-27 21:00:00,0.0,1023.28,0.0,100.0,9.264166667000001,0.0, +2014-09-27 22:00:00,0.0,1023.215,0.0,100.0,8.4725,0.0005, +2014-09-27 23:00:00,0.0,1023.003333,0.0,100.0,8.079333333,0.0, +2014-09-28 00:00:00,0.0,1023.055,0.0,100.0,7.66725,0.0, +2014-09-28 01:00:00,0.0,1022.82,0.0,100.0,7.162916667,0.0, +2014-09-28 02:00:00,0.0,1022.443333,0.0,100.0,7.423166667,0.0, +2014-09-28 03:00:00,0.0,1022.198333,0.0,100.0,8.955,0.0, +2014-09-28 04:00:00,0.0,1021.9416669999999,0.0,100.0,9.274166667000001,0.12691666699999998, +2014-09-28 05:00:00,0.0,1021.6866669999999,0.0,100.0,8.7675,0.1755, +2014-09-28 06:00:00,0.0,1021.79,4.859833333,100.0,8.440833332999999,0.17375, +2014-09-28 07:00:00,0.0,1021.995,36.84583333,100.0,8.398333333,0.713, +2014-09-28 08:00:00,0.0,1021.891667,100.9308333,100.0,8.97,0.431666667, +2014-09-28 09:00:00,0.0,1021.601667,189.175,100.0,9.966666667,0.46183333299999996, +2014-09-28 10:00:00,0.0,1021.361667,344.775,95.13333333,12.15916667,0.829833333, +2014-09-28 11:00:00,0.0,1020.995,347.7083333,84.55,16.6475,1.3788333330000002, +2014-09-28 12:00:00,0.0,1020.546667,369.3583333,78.84583333,18.9575,1.424833333, +2014-09-28 13:00:00,0.0,1020.101667,313.84166669999996,77.505,20.05166667,1.808416667, +2014-09-28 14:00:00,0.0,1019.778333,263.0583333,76.46333333,20.1375,1.971416667, +2014-09-28 15:00:00,0.0,1019.413333,223.2666667,74.85166667,20.53416667,2.376083333, +2014-09-28 16:00:00,0.0,1019.145,150.3508333,75.3175,20.25,2.16175, +2014-09-28 17:00:00,0.0,1019.041667,30.22,88.85,19.1075,1.379833333, +2014-09-28 18:00:00,0.0,1019.1833330000001,2.074,97.94166667,15.29916667,0.12375, +2014-09-28 19:00:00,0.0,1019.373333,0.0,100.0,13.2875,0.17975, +2014-09-28 20:00:00,0.0,1019.513333,0.0,100.0,12.00916667,0.0205, +2014-09-28 21:00:00,0.0,1019.753333,0.0,100.0,11.65083333,0.121833333, +2014-09-28 22:00:00,0.0,1019.9,0.0,100.0,10.58666667,0.0555, +2014-09-28 23:00:00,0.0,1019.8116669999999,0.0,100.0,9.595833333,0.0, +2014-09-29 00:00:00,0.0,1019.465,0.0,100.0,9.2425,0.0065, +2014-09-29 01:00:00,0.0,1019.381667,0.0,100.0,9.628333332999999,0.014666667, +2014-09-29 02:00:00,0.0,1019.403333,0.0,100.0,10.9775,0.049583333, +2014-09-29 03:00:00,0.0,1019.358333,0.0,100.0,11.655,0.003416667, +2014-09-29 04:00:00,0.0,1019.116667,0.0,100.0,11.66833333,0.037166667, +2014-09-29 05:00:00,0.0,1019.0583330000001,0.0,100.0,11.61416667,0.09883333300000001, +2014-09-29 06:00:00,0.0,1019.336667,2.98975,100.0,11.6625,0.034583333, +2014-09-29 07:00:00,0.0,1019.868333,49.92083333,100.0,12.05333333,0.043, +2014-09-29 08:00:00,0.0,1020.105,89.09083333,100.0,12.81083333,0.2155, +2014-09-29 09:00:00,0.0,1020.208333,170.0333333,100.0,13.54083333,0.1305, +2014-09-29 10:00:00,0.0,1020.181667,258.9916667,99.91666667,14.93,0.36841666700000003, +2014-09-29 11:00:00,0.0,1019.85,385.0,90.35833333,16.93916667,0.511916667, +2014-09-29 12:00:00,0.0,1019.64,340.2416667,71.175,21.16333333,0.559333333, +2014-09-29 13:00:00,0.0,1019.4383330000001,305.875,67.0125,23.34916667,0.5033333329999999, +2014-09-29 14:00:00,0.0,1019.273333,206.1083333,64.09916667,22.675,0.618083333, +2014-09-29 15:00:00,0.0,1019.108333,156.93333330000002,63.82083333,21.9925,0.7785, +2014-09-29 16:00:00,0.0,1019.068333,73.85166667,78.85916667,21.16583333,0.21325, +2014-09-29 17:00:00,0.0,1019.343333,21.65058333,89.19166667,19.58416667,0.0075, +2014-09-29 18:00:00,0.0,1019.395,0.583,95.58333333,17.9175,0.032583333, +2014-09-29 19:00:00,0.0,1019.68,0.0,97.76666667,16.915,0.12558333300000002, +2014-09-29 20:00:00,0.0,1020.146667,0.0,96.14166667,16.585,0.22375, +2014-09-29 21:00:00,2.49879444,1019.993333,0.0,96.075,16.61,0.48100000000000004, +2014-09-29 22:00:00,0.0,1019.758333,0.0,99.66666667,16.175,0.11375, +2014-09-29 23:00:00,2.433143544,1019.768333,0.0,97.04166667,16.1675,0.302833333, +2014-09-30 00:00:00,0.0,1019.535,0.0,99.675,15.8325,0.1565, +2014-09-30 01:00:00,0.0,1019.575,0.0,100.0,15.61166667,0.059666667, +2014-09-30 02:00:00,0.0,1019.525,0.0,99.91666667,15.24416667,0.013916666999999999, +2014-09-30 03:00:00,0.0,1019.51,0.0,97.64166667,14.9675,0.145083333, +2014-09-30 04:00:00,0.0,1019.548333,0.0,99.95833333,14.585,0.033, +2014-09-30 05:00:00,0.0,1019.573333,0.0,98.70833333,14.53583333,0.135833333, +2014-09-30 06:00:00,0.0,1020.185,2.8089999999999997,99.89166667,14.57416667,0.07625, +2014-09-30 07:00:00,0.0,1020.708333,27.37833333,100.0,15.07333333,0.04125, +2014-09-30 08:00:00,0.0,1021.118333,51.055,99.08333333,15.98833333,0.01925, +2014-09-30 09:00:00,0.0,1021.306667,111.19583329999999,92.95,17.165,0.18458333300000002, +2014-09-30 10:00:00,0.0,1021.526667,231.2583333,85.0,18.45583333,0.38575, +2014-09-30 11:00:00,0.0,1021.55,227.375,83.84166667,19.005,0.369, +2014-09-30 12:00:00,0.0,1021.453333,251.55833330000002,82.2475,19.37416667,0.7576666670000001, +2014-09-30 13:00:00,0.0,1021.223333,240.375,80.15666667,20.41166667,0.46216666700000003, +2014-09-30 14:00:00,0.0,1021.13,226.175,77.9275,20.75916667,0.33325, +2014-09-30 15:00:00,0.0,1020.958333,115.9075,79.79916667,20.25666667,0.39741666700000006, +2014-09-30 16:00:00,0.0,1020.956667,59.09166667,84.05833333,19.445,0.15758333300000002, +2014-09-30 17:00:00,0.0,1021.131667,29.90208333,88.41666667,18.435,0.028083333, +2014-09-30 18:00:00,0.0,1021.336667,0.949333333,97.29166667,16.24166667,0.043166667, +2014-09-30 19:00:00,0.0,1021.5633330000001,0.0,99.93333333,15.8475,0.104583333, +2014-09-30 20:00:00,0.0,1021.613333,0.0,100.0,15.46083333,0.020166667, +2014-09-30 21:00:00,0.0,1021.616667,0.0,100.0,14.81666667,0.10225, +2014-09-30 22:00:00,0.0,1021.758333,0.0,100.0,14.4525,0.070833333, +2014-09-30 23:00:00,0.0,1021.788333,0.0,100.0,13.7525,0.009416667, +2014-01-10 00:00:00,0.0,1021.74,0.0,100.0,13.0175,0.00033333300000000006,238.082761 +2014-01-10 01:00:00,0.0,1021.885,0.0,100.0,12.3875,0.0,238.08371666666667 +2014-01-10 02:00:00,0.0,1021.986667,0.0,100.0,12.53666667,0.042583333,238.08434333333335 +2014-01-10 03:00:00,0.0,1021.953333,0.0,100.0,12.88666667,0.01775,238.08529900000005 +2014-01-10 04:00:00,0.0,1021.871667,0.0,100.0,11.81166667,0.030416667,238.08562800000004 +2014-01-10 05:00:00,0.0,1022.016667,0.0,100.0,10.97,0.01275,238.08661500000002 +2014-01-10 06:00:00,0.0,1022.1,4.603416667,100.0,11.32416667,0.10283333300000001,238.08661499999997 +2014-01-10 07:00:00,0.0,1022.55,35.03333333,100.0,11.88333333,0.15133333300000001,238.08529900000005 +2014-01-10 08:00:00,0.0,1022.818333,81.53583333,100.0,13.0025,0.226916667,238.08562800000004 +2014-01-10 09:00:00,0.0,1023.116667,122.20833329999999,100.0,13.75083333,0.43908333299999996,238.0846566666667 +2014-01-10 10:00:00,0.0,1023.145,260.2,99.98333333,15.39666667,0.528666667,238.08371666666667 +2014-01-10 11:00:00,0.0,1023.05,386.8,87.36666667,18.61583333,0.8039166670000001,238.08434333333335 +2014-01-10 12:00:00,0.0,1022.673333,374.575,73.865,21.87083333,0.650416667,238.08403 +2014-01-10 13:00:00,0.0,1022.238333,437.71666669999996,67.46916667,22.445,0.9105833329999999,238.08340333333334 +2014-01-10 14:00:00,0.0,1021.846667,179.4,64.77666667,20.71,2.082583333,238.082432 +2014-01-10 15:00:00,0.0,1021.918333,108.9875,74.85416667,20.36333333,0.544083333,238.082103 +2014-01-10 16:00:00,0.0,1021.976667,137.0291667,67.565,21.125,0.15108333300000001,238.08111600000004 +2014-01-10 17:00:00,0.0,1022.225,17.90408333,87.85833333,18.815,0.195416667,238.07954933333335 +2014-01-10 18:00:00,0.0,1022.73,0.9225,96.29166667,15.31083333,0.278666667,238.079236 +2014-01-10 19:00:00,0.0,1023.08,0.0,99.00833333,13.51583333,0.2245,238.078578 +2014-01-10 20:00:00,0.0,1023.6,0.0,100.0,12.14666667,0.0035,238.076604 +2014-01-10 21:00:00,0.0,1023.721667,0.0,100.0,11.12833333,0.04275,238.075288 +2014-01-10 22:00:00,0.0,1023.95,0.0,100.0,10.23083333,0.066333333,238.07594600000002 +2014-01-10 23:00:00,0.0,1024.138333,0.0,100.0,9.981666667,0.013166667,238.07497466666666 +2014-02-10 00:00:00,0.0,1024.285,0.0,100.0,10.02166667,0.0035833329999999997,238.04121393333332 +2014-02-10 01:00:00,0.0,1024.4,0.0,100.0,10.92166667,0.0,238.04070636666665 +2014-02-10 02:00:00,0.0,1024.491667,0.0,100.0,11.53833333,0.0035,238.0404525833333 +2014-02-10 03:00:00,0.0,1024.3816669999999,0.0,100.0,10.935,0.0,238.04070636666665 +2014-02-10 04:00:00,0.0,1024.268333,0.0,100.0,9.255,0.028333333,238.04070636666665 +2014-02-10 05:00:00,0.0,1024.336667,0.0,100.0,9.226666667,0.02125,238.04019879999996 +2014-02-10 06:00:00,0.0,1024.855,5.2451666669999994,100.0,9.908333333,0.0175,238.0404525833333 +2014-02-10 07:00:00,0.0,1025.175,24.13583333,100.0,9.83,0.0,238.04045258333335 +2014-02-10 08:00:00,0.0,1025.358333,87.3225,100.0,10.76833333,0.045333332999999996,238.0404525833333 +2014-02-10 09:00:00,0.0,1025.3683330000001,237.8,96.98333333,13.29916667,0.41266666700000004,238.04045258333335 +2014-02-10 10:00:00,0.0,1025.301667,326.0583333,87.45666667,16.41916667,0.519916667,238.04019879999996 +2014-02-10 11:00:00,0.0,1025.051667,379.35,75.9675,18.625,0.9099166670000001,238.04121393333332 +2014-02-10 12:00:00,0.0,1024.581667,398.5666667,69.6225,20.58083333,0.870083333,238.04019879999996 +2014-02-10 13:00:00,0.0,1024.391667,377.2916667,59.23333333,21.3775,0.6729999999999999,238.04096014999996 +2014-02-10 14:00:00,0.0,1023.976667,359.875,56.04,21.94916667,0.797,238.04096015000002 +2014-02-10 15:00:00,0.0,1023.491667,259.6333333,57.48833333,21.87083333,0.638333333,238.04070636666665 +2014-02-10 16:00:00,0.0,1023.358333,129.16083329999998,67.5425,20.8875,0.20175,238.04121393333332 +2014-02-10 17:00:00,0.0,1023.326667,23.72625,87.4225,18.54666667,0.18025,238.0412139333333 +2014-02-10 18:00:00,0.0,1023.375,0.9765,95.825,14.80666667,0.11633333300000001,238.04045258333335 +2014-02-10 19:00:00,0.0,1023.6866669999999,0.0,99.25,12.86083333,0.230083333,238.04019879999996 +2014-02-10 20:00:00,0.0,1023.5666669999999,0.0,100.0,11.70833333,0.107833333,238.04045258333335 +2014-02-10 21:00:00,0.0,1023.508333,0.0,100.0,10.6875,0.023333332999999998,238.03971536666663 +2014-02-10 22:00:00,0.0,1023.415,0.0,100.0,9.890833333,0.0,238.03995708333332 +2014-02-10 23:00:00,0.0,1023.286667,0.0,100.0,9.2125,0.00325,238.03947365 +2014-03-10 00:00:00,0.0,1023.03,0.0,100.0,8.720833333,0.004083333,238.0014775 +2014-03-10 01:00:00,0.0,1022.763333,0.0,100.0,8.321666667,0.0,238.00173128333336 +2014-03-10 02:00:00,0.0,1022.46,0.0,100.0,7.848333332999999,0.0,238.00173128333333 +2014-03-10 03:00:00,0.0,1022.273333,0.0,100.0,7.428833332999999,0.0,238.0014775 +2014-03-10 04:00:00,0.0,1022.27,0.0,100.0,7.121666667,0.0,238.00147748333333 +2014-03-10 05:00:00,0.0,1022.19,0.0,100.0,6.77375,0.0,238.0014775 +2014-03-10 06:00:00,0.0,1022.4366669999999,3.3689166669999997,100.0,6.483833333,0.0,238.0014775 +2014-03-10 07:00:00,0.0,1022.781667,32.69,100.0,7.654583333,0.000166667,238.00173128333333 +2014-03-10 08:00:00,0.0,1022.9416669999999,82.9325,100.0,11.26916667,0.134,238.00122369999997 +2014-03-10 09:00:00,0.0,1022.786667,240.6166667,99.21666667,13.39666667,0.779,238.00173128333333 +2014-03-10 10:00:00,0.0,1022.391667,322.775,90.2,16.69333333,0.703666667,238.0024926333333 +2014-03-10 11:00:00,0.0,1021.945,379.8,83.32666667,18.525,0.7885,238.00300019999995 +2014-03-10 12:00:00,0.0,1021.478333,402.5666667,75.88083333,20.45083333,0.82525,238.00300019999995 +2014-03-10 13:00:00,0.0,1021.053333,370.53333330000004,68.54,21.3075,1.202083333,238.00300019999995 +2014-03-10 14:00:00,0.0,1020.508333,350.525,61.7775,21.76083333,1.317083333,238.00300019999995 +2014-03-10 15:00:00,0.0,1019.78,259.45,57.32666667,21.90416667,1.148916667,238.00300019999995 +2014-03-10 16:00:00,0.0,1019.455,124.75166670000002,62.695,20.66083333,1.3369166670000001,238.00300019999995 +2014-03-10 17:00:00,0.0,1019.208333,18.366,84.8475,18.4475,0.55925,238.0024926333333 +2014-03-10 18:00:00,0.0,1019.21,0.768083333,94.7,13.59416667,0.01425,238.0009699 +2014-03-10 19:00:00,0.0,1019.136667,0.0,99.55833333,11.78333333,0.1275,238.0014775 +2014-03-10 20:00:00,0.0,1019.073333,0.0,100.0,10.09666667,0.022916667,238.00096989999997 +2014-03-10 21:00:00,0.0,1018.75,0.0,100.0,9.070833333,0.039583333,238.00046229999998 +2014-03-10 22:00:00,0.0,1018.361667,0.0,100.0,8.361666667,0.005083333,238.00046229999998 +2014-03-10 23:00:00,0.0,1018.046667,0.0,100.0,7.96125,0.0,238.00071609999998 +2014-04-10 00:00:00,0.0,1017.685,0.0,100.0,7.3906666670000005,0.00075,237.89812199999997 +2014-04-10 01:00:00,0.0,1017.298333,0.0,100.0,6.96025,0.0,237.89742019999997 +2014-04-10 02:00:00,0.0,1016.971667,0.0,100.0,6.446833333,0.0,237.89742019999997 +2014-04-10 03:00:00,0.0,1016.565,0.0,100.0,7.055333332999999,0.0,237.89742019999997 +2014-04-10 04:00:00,0.0,1016.155,0.0,100.0,7.1246666670000005,0.00825,237.89742019999997 +2014-04-10 05:00:00,0.0,1015.71,0.0,100.0,6.309833332999999,0.0,237.89742019999997 +2014-04-10 06:00:00,0.0,1015.588333,2.538333333,100.0,5.940166667000001,0.0,237.89742019999997 +2014-04-10 07:00:00,0.0,1015.805,29.44166667,100.0,6.545166667,0.028999999999999998,237.89742019999997 +2014-04-10 08:00:00,0.0,1015.54,97.5625,100.0,7.95275,0.11025,237.89708601666666 +2014-04-10 09:00:00,0.0,1015.376667,215.725,100.0,11.18833333,0.342,237.89742019999997 +2014-04-10 10:00:00,0.0,1015.028333,333.3166667,90.43333333,15.24583333,1.265083333,237.89742019999997 +2014-04-10 11:00:00,0.0,1014.623333,366.3,80.62583333,17.1625,1.530083333,237.89675183333335 +2014-04-10 12:00:00,0.0,1013.868333,406.15833330000004,74.11166667,18.44166667,1.70525,237.89574928333334 +2014-04-10 13:00:00,0.0,1013.123333,398.1166667,64.92166667,19.70583333,1.402,237.89675183333335 +2014-04-10 14:00:00,0.0,1012.358333,346.975,58.925,20.32583333,2.26275,237.8954151 +2014-04-10 15:00:00,0.0,1011.698333,265.475,55.6225,20.47833333,1.94525,237.8954151 +2014-04-10 16:00:00,0.0,1011.7,127.43333329999999,59.27916667,19.38583333,1.9838333330000002,237.89504748333331 +2014-04-10 17:00:00,0.0,1011.743333,13.81058333,79.85166667,17.44916667,1.234083333,237.8940115 +2014-04-10 18:00:00,0.0,1011.831667,0.35408333299999994,93.45833333,12.07416667,0.002416667,237.8933097 +2014-04-10 19:00:00,0.0,1011.55,0.0,98.66666667,10.69583333,0.017583333,237.8933097 +2014-04-10 20:00:00,0.0,1011.6833330000001,0.0,100.0,9.5325,0.02525,237.8933097 +2014-04-10 21:00:00,0.0,1011.913333,0.0,100.0,8.501666667,0.007583333,237.8933097 +2014-04-10 22:00:00,0.0,1011.841667,0.0,100.0,7.760666667000001,0.0035833329999999997,237.8933097 +2014-04-10 23:00:00,0.0,1011.841667,0.0,100.0,7.128916667,0.0,237.8933097 +2014-05-10 00:00:00,0.0,1011.925,0.0,100.0,6.696666667000001,0.0,237.8171152 +2014-05-10 01:00:00,0.0,1012.046667,0.0,100.0,6.604083332999999,0.0,237.8150098 +2014-05-10 02:00:00,0.0,1012.113333,0.0,100.0,6.7096666670000005,0.0,237.81571160000001 +2014-05-10 03:00:00,0.0,1011.945,0.0,100.0,6.481,0.00875,237.8171152 +2014-05-10 04:00:00,0.0,1011.783333,0.0,100.0,5.818916667000001,0.0,237.8171152 +2014-05-10 05:00:00,0.0,1012.041667,0.0,100.0,5.464166667000001,0.0,237.8171152 +2014-05-10 06:00:00,0.0,1012.3133330000001,6.35825,100.0,5.729166667,0.0,237.8171152 +2014-05-10 07:00:00,0.0,1012.708333,43.93,100.0,6.89225,0.00033333300000000006,237.81811774999997 +2014-05-10 08:00:00,0.0,1013.24,98.68833333,100.0,9.2075,0.06425,237.81912030000004 +2014-05-10 09:00:00,0.0,1013.348333,159.1,98.675,12.11333333,0.44508333299999997,237.81912030000004 +2014-05-10 10:00:00,0.0,1013.388333,198.06666669999998,88.2,13.64166667,1.4140000000000001,237.81912030000004 +2014-05-10 11:00:00,0.0,1013.128333,189.6166667,87.5,13.945,1.333083333,237.81912030000004 +2014-05-10 12:00:00,0.0,1012.78,201.775,83.70833333,14.37833333,0.48916666700000005,237.81639668333335 +2014-05-10 13:00:00,0.0,1012.485,259.875,80.58416667,15.05833333,0.563333333,237.8150098 +2014-05-10 14:00:00,0.0,1012.241667,229.1416667,78.6025,15.865,0.586583333,237.8150098 +2014-05-10 15:00:00,0.0,1011.966667,170.91666669999998,79.31083333,15.97083333,1.0635,237.8171152 +2014-05-10 16:00:00,0.0,1011.925,76.89166667,82.75,14.845,1.7623333330000002,237.81845193333334 +2014-05-10 17:00:00,0.0,1011.911667,18.47908333,89.4,13.215,1.309583333,237.81982206666666 +2014-05-10 18:00:00,0.0,1011.83,0.211333333,96.95833333,11.6475,0.080916667,237.82189400000001 +2014-05-10 19:00:00,0.0,1011.79,0.0,99.81666667,9.529166667,0.000666667,237.82633870000004 +2014-05-10 20:00:00,0.0,1011.716667,0.0,100.0,8.316916667000001,0.0,237.8304993 +2014-05-10 21:00:00,0.0,1011.668333,0.0,100.0,7.426,0.008916667,237.83290545 +2014-05-10 22:00:00,0.0,1011.733333,0.0,100.0,7.495083332999999,0.004416667,237.8428308 +2014-05-10 23:00:00,0.0,1011.261667,0.0,100.0,8.7925,0.054833333,237.84353259999997 +2014-06-10 00:00:00,0.0,1010.835,0.0,100.0,9.0475,0.0,237.84112645000002 +2014-06-10 01:00:00,0.0,1010.471667,0.0,100.0,8.670833333,0.015333333000000001,237.84904670000003 +2014-06-10 02:00:00,0.0,1010.111667,0.0,100.0,9.18,0.058916667,237.847994 +2014-06-10 03:00:00,0.0,1009.875,0.0,100.0,8.36125,0.01925,237.84555441666666 +2014-06-10 04:00:00,0.0,1009.853333,0.0,100.0,8.76,0.0065,237.84146063333333 +2014-06-10 05:00:00,0.0,1009.87,0.0,100.0,9.198333332999999,0.024083333,237.83666505000005 +2014-06-10 06:00:00,0.0,1009.863333,0.547416667,100.0,9.330833333,0.035416667,237.83255455000003 +2014-06-10 07:00:00,0.0,1009.641667,17.52633333,100.0,9.456666667,0.19241666699999999,237.82874483333333 +2014-06-10 08:00:00,0.0,1009.916667,35.58083333,99.43333333,10.1025,0.21175,237.82496853333336 +2014-06-10 09:00:00,0.0,1009.695,56.59916667,96.16666667,11.03416667,0.276916667,237.82119223333333 +2014-06-10 10:00:00,0.0,1009.148333,119.31666670000001,92.19166667,12.49166667,1.482666667,237.81674758333335 +2014-06-10 11:00:00,0.0,1008.486667,340.40833330000004,87.775,13.0775,2.230833333,237.81332216666667 +2014-06-10 12:00:00,0.0,1007.675,411.05,83.61666667,15.21666667,2.6848333330000003,237.80882733333337 +2014-06-10 13:00:00,0.0,1007.348333,292.5583333,82.0175,15.86166667,2.484666667,237.80368085 +2014-06-10 14:00:00,0.0,1007.088333,234.425,81.925,16.23416667,2.41275,237.79683001666663 +2014-06-10 15:00:00,0.0,1006.543333,65.13666667,85.63333333,15.72166667,1.284833333,237.78927738333334 +2014-06-10 16:00:00,0.0,1006.136667,59.20916667,87.13333333,15.71916667,0.336583333,237.78307823333333 +2014-06-10 17:00:00,0.0,1006.108333,17.61658333,92.6,15.20833333,0.5645,237.77794846666666 +2014-06-10 18:00:00,0.0,1005.82,0.21916666699999998,99.15,11.58583333,0.038416667,237.77280199999998 +2014-06-10 19:00:00,0.0,1005.551667,0.0,96.4,11.9625,1.243916667,237.7686414 +2014-06-10 20:00:00,0.0,1005.31,0.0,92.68333333,12.20583333,1.61725,237.7638458166667 +2014-06-10 21:00:00,0.0,1004.903333,0.0,96.375,12.06916667,2.032,237.76042040000002 +2014-06-10 22:00:00,0.0,1004.408333,0.0,96.11666667,11.895,2.7288333330000003,237.75768006666667 +2014-06-10 23:00:00,0.0,1003.845,0.0,97.81666667,11.61666667,3.3130833330000002,237.75458883333332 +2014-07-10 00:00:00,0.0,1003.11,0.0,99.40833333,11.26666667,3.6974166669999997,237.82734130000003 +2014-07-10 01:00:00,0.0,1002.636667,0.0,100.0,11.185,3.464666667,237.82600449999998 +2014-07-10 02:00:00,0.0,1002.083333,0.0,99.84166667,11.59083333,3.40675,237.8243001333333 +2014-07-10 03:00:00,31.73124202,1001.5583330000001,0.0,99.96666667,11.4675,2.435833333,237.8225624 +2014-07-10 04:00:00,66.11561938,1000.926667,0.0,99.98333333,11.3625,2.94775,237.81982206666666 +2014-07-10 05:00:00,21.76226659,1000.641667,0.0,99.56666667,11.19083333,3.216,237.81641340000002 +2014-07-10 06:00:00,3.177811848,1000.295,0.906666667,99.45,11.43916667,2.917583333,237.81467561666668 +2014-07-10 07:00:00,6.655179096,999.5066667000001,12.27316667,99.78333333,11.92,3.0965833330000003,237.8123029 +2014-07-10 08:00:00,9.924777648,999.045,52.81916667,99.00833333,12.71916667,2.7145,237.80914479999998 +2014-07-10 09:00:00,4.399776984,998.8783332999999,141.94166669999998,95.23333333,14.2175,3.5198333330000002,237.8074571666667 +2014-07-10 10:00:00,0.0,999.1033332999999,128.84083329999999,91.875,15.29583333,4.022916667,237.8050343 +2014-07-10 11:00:00,0.0,999.4666667000001,78.47,93.15833333,15.43666667,2.3385,237.80231068333333 +2014-07-10 12:00:00,0.0,1000.26,99.7075,93.025,15.77333333,1.44375,237.79921945 +2014-07-10 13:00:00,0.0,1000.851667,131.8491667,86.26666667,16.48916667,1.34675,237.79579403333332 +2014-07-10 14:00:00,0.0,1001.011667,152.93333330000002,80.4425,16.78916667,1.85275,237.79203443333333 +2014-07-10 15:00:00,0.0,1000.936181,81.88416667,82.10833333,16.08166667,2.66275,237.78929410000003 +2014-07-10 16:00:00,0.0,1000.7575,35.90583333,84.85,15.3725,2.851916667,237.78613599999997 +2014-07-10 17:00:00,4.979618063999999,1001.537333,5.779166667,92.075,13.8125,0.909,237.78307825 +2014-07-10 18:00:00,120.05437109999998,1002.185167,0.031416667,99.55833333,11.72,0.34175,237.77861686666665 +2014-07-10 19:00:00,22.10705316,1003.046167,0.0,99.98333333,11.44916667,0.241583333,237.78926070000003 +2014-07-10 20:00:00,18.89275231,1003.3021669999999,0.0,98.5,11.52666667,1.06825,237.8651544833333 +2014-07-10 21:00:00,0.0,1003.963667,0.0,98.11666667,11.45333333,0.6990833329999999,237.8881799333333 +2014-07-10 22:00:00,0.0,1004.751833,0.0,96.78333333,10.49083333,0.18641666699999998,237.89367731666667 +2014-07-10 23:00:00,0.0,1005.6303330000001,0.0,97.15,10.71583333,0.2055,237.8954151 +2014-08-10 00:00:00,0.0,1006.3860000000001,0.0,99.94166667,9.578333333,0.300833333,237.38354133333334 +2014-08-10 01:00:00,2.4050227680000003,1006.709667,0.0,100.0,8.635833332999999,0.022166667,237.38387551666668 +2014-08-10 02:00:00,0.0,1006.768,0.0,100.0,10.0125,0.88925,237.38218788333336 +2014-08-10 03:00:00,0.0,1006.848667,0.0,100.0,11.02666667,1.102083333,237.38355805000003 +2014-08-10 04:00:00,0.0,1006.640333,0.0,100.0,11.16,0.5479999999999999,237.38387551666668 +2014-08-10 05:00:00,0.0,1006.141167,0.0,100.0,10.42833333,0.167416667,237.3825387833334 +2014-08-10 06:00:00,0.0,1005.755667,0.877583333,100.0,9.729166667000001,0.07716666700000001,237.38220460000002 +2014-08-10 07:00:00,0.0,1005.694333,20.16141667,100.0,9.5575,0.29583333300000003,237.3828729666667 +2014-08-10 08:00:00,0.0,1005.359167,66.82166667,100.0,11.83166667,2.227083333,237.3825387833334 +2014-08-10 09:00:00,0.0,1005.1105,94.04166667,99.075,12.76916667,1.86175,237.38285625000003 +2014-08-10 10:00:00,0.0,1004.7876669999999,103.4833333,98.06666667,13.41583333,1.90475,237.37876246666667 +2014-08-10 11:00:00,9.372494712,1004.369333,49.60333333,98.21666667,13.44166667,2.4265,237.3780941 +2014-08-10 12:00:00,36.31307009,1004.067,33.1975,99.95833333,13.3775,1.50875,237.3759888 +2014-08-10 13:00:00,33.90569664,1002.8955,41.2075,100.0,13.62333333,1.4629166669999998,237.3739836 +2014-08-10 14:00:00,6.9877008,1002.005667,81.90083333,96.60833333,14.505,2.7800833330000003,237.3753204 +2014-08-10 15:00:00,3.92841456,1001.4780000000001,41.27416667,96.825,15.18666667,3.531166667,237.37669056666667 +2014-08-10 16:00:00,0.0,1001.013167,26.95416667,95.9,15.80083333,3.65125,237.38046681666665 +2014-08-10 17:00:00,0.0,1001.05,10.42075,93.20833333,15.81,2.951916667,237.38389223333334 +2014-08-10 18:00:00,0.0,1001.399167,0.12541666699999998,91.26666667,15.555,2.678,237.39318263333337 +2014-08-10 19:00:00,0.0,1001.833333,0.0,92.2,15.24166667,1.3631666669999998,237.49008006666665 +2014-08-10 20:00:00,0.0,1001.5605,0.0,98.03333333,14.39666667,1.421583333,237.52684061666665 +2014-08-10 21:00:00,0.0,1000.9960000000001,0.0,100.0,14.72833333,1.88875,237.532338 +2014-08-10 22:00:00,3.021651336,1000.6771669999999,0.0,97.075,15.63583333,1.8945,237.5326889 +2014-08-10 23:00:00,5.927967624,999.8121667000001,0.0,96.95,15.8625,1.6553333330000002,237.53093439999998 +2014-09-10 00:00:00,3.977388288,999.59,0.0,87.30833333,17.56333333,3.51375, +2014-09-10 01:00:00,6.920541168,1000.265,0.0,86.95,17.63333333,2.3105833330000003, +2014-09-10 02:00:00,5.315437608,1001.4355,0.0,94.64166667,17.5125,0.976333333, +2014-09-10 03:00:00,19.14624209,1001.1145,0.0,97.30833333,16.6575,1.219666667, +2014-09-10 04:00:00,10.62185383,1001.234667,0.0,99.96666667,15.78833333,0.820333333, +2014-09-10 05:00:00,9.878466,1001.6075,0.0,100.0,15.46083333,0.302833333, +2014-09-10 06:00:00,14.75407982,1001.904833,0.414083333,100.0,15.345,0.36775, +2014-09-10 07:00:00,10.24286057,1002.131167,10.54441667,97.53333333,15.3475,0.6094166670000001, +2014-09-10 08:00:00,0.0,1002.640833,41.86833333,95.69166667,16.04333333,1.3628333330000002, +2014-09-10 09:00:00,0.0,1003.1289999999999,59.2725,94.01666667,16.6375,0.65375, +2014-09-10 10:00:00,5.103385536,1003.551333,84.18083333,95.90833333,17.19833333,0.706916667, +2014-09-10 11:00:00,7.3898652479999996,1003.632,67.215,98.325,17.1025,0.46616666700000003, +2014-09-10 12:00:00,12.49676592,1003.5666669999999,97.27,98.21666667,17.31666667,2.331416667, +2014-09-10 13:00:00,8.597392656,1003.2605,199.375,94.54166667,18.315,1.6871666669999998, +2014-09-10 14:00:00,5.539923192000001,1003.287333,50.47416667,95.19166667,18.16333333,1.338083333, +2014-09-10 15:00:00,7.7052165839999995,1004.338667,24.08083333,99.55,16.3025,0.925083333, +2014-09-10 16:00:00,4.868097312,1004.3430000000001,19.07833333,100.0,15.32666667,0.223, +2014-09-10 17:00:00,4.831851096,1004.779,3.253833333,100.0,15.07833333,0.607833333, +2014-09-10 18:00:00,5.10174492,1005.440833,0.004666667,99.60833333,14.85083333,0.703, +2014-09-10 19:00:00,2.53810452,1006.112333,0.0,99.41666667,14.57666667,0.755166667, +2014-09-10 20:00:00,2.4050227680000003,1006.594333,0.0,99.71666667,14.34333333,0.36700000000000005, +2014-09-10 21:00:00,2.411100648,1007.0575,0.0,100.0,13.45166667,0.153166667, +2014-09-10 22:00:00,0.0,1007.6039999999999,0.0,99.86666667,12.05916667,0.092666667, +2014-09-10 23:00:00,2.425215504,1007.775,0.0,98.89166667,11.77,0.042666667, +2014-10-10 00:00:00,2.41677756,1007.911833,0.0,99.46666667,11.79833333,0.318333333,237.86281916666667 +2014-10-10 01:00:00,0.0,1008.245667,0.0,99.225,10.92083333,0.40875,237.86145249999996 +2014-10-10 02:00:00,2.4050227680000003,1008.4575,0.0,98.14166667,10.015,0.050916667,237.85871916666667 +2014-10-10 03:00:00,0.0,1008.3855,0.0,99.41666667,10.0025,0.029083333,237.85805249999999 +2014-10-10 04:00:00,2.4050227680000003,1008.811,0.0,100.0,9.659166667000001,0.045333332999999996,237.85805249999999 +2014-10-10 05:00:00,0.0,1009.5219999999999,0.0,100.0,10.76916667,0.644416667,237.85805249999999 +2014-10-10 06:00:00,2.572182192,1009.884667,1.070166667,100.0,11.20666667,0.3785,237.85805249999999 +2014-10-10 07:00:00,0.0,1010.2539999999999,42.21083333,100.0,11.6825,0.671166667,237.85805249999999 +2014-10-10 08:00:00,2.47215048,1010.779,97.26416667,100.0,12.855,0.32866666699999997,237.85938583333328 +2014-10-10 09:00:00,0.0,1011.5039999999999,143.4033333,97.24166667,14.23833333,0.61125,237.85971916666665 +2014-10-10 10:00:00,2.510158632,1011.8535,134.7041667,91.93333333,15.57916667,0.594666667,237.86005249999997 +2014-10-10 11:00:00,0.0,1012.0145,180.3916667,87.8,16.73833333,0.21175,237.86145249999996 +2014-10-10 12:00:00,2.58553512,1011.916667,276.6416667,81.31083333,17.59916667,0.651833333,237.86215249999995 +2014-10-10 13:00:00,0.0,1011.818833,286.9416667,74.02583333,19.35666667,0.534333333,237.86315249999998 +2014-10-10 14:00:00,0.0,1011.758333,203.31666669999998,73.98333333,18.79333333,0.616166667,237.86520249999998 +2014-10-10 15:00:00,2.40786384,1011.480667,92.79583333,82.73666667,17.6075,0.37275,237.8662525 +2014-10-10 16:00:00,0.0,1011.195167,40.97166667,93.71666667,16.77833333,0.043166667,237.8683525 +2014-10-10 17:00:00,0.0,1011.265333,6.788666667,96.875,15.52833333,0.00575,237.86968583333336 +2014-10-10 18:00:00,2.40798312,1010.85,0.053583333,99.99166667,14.6125,0.7625833329999999,237.8693525 +2014-10-10 19:00:00,0.0,1010.789,0.0,100.0,14.13833333,0.15225,237.8703525 +2014-10-10 20:00:00,0.0,1010.762333,0.0,100.0,13.4675,0.081083333,237.8710525 +2014-10-10 21:00:00,0.0,1010.9355,0.0,100.0,13.27083333,0.09675,237.8727858333333 +2014-10-10 22:00:00,2.4050227680000003,1010.6460000000001,0.0,100.0,13.06833333,0.000666667,237.8744525 +2014-10-10 23:00:00,0.0,1010.1855,0.0,100.0,12.94583333,0.006999999999999999,237.87515249999998 +2014-11-10 00:00:00,0.0,1009.916667,0.0,100.0,12.93416667,0.025333333,237.95631916666665 +2014-11-10 01:00:00,0.0,1009.882,0.0,100.0,13.18166667,0.042083333,237.95498583333332 +2014-11-10 02:00:00,0.0,1009.775,0.0,100.0,13.34916667,0.19141666699999998,237.95598583333333 +2014-11-10 03:00:00,2.515048464,1009.959667,0.0,100.0,13.37416667,0.16066666699999999,237.9566525 +2014-11-10 04:00:00,0.0,1009.544667,0.0,100.0,13.43,0.000583333,237.9566525 +2014-11-10 05:00:00,0.0,1009.125,0.0,100.0,13.35083333,0.025416667,237.9566525 +2014-11-10 06:00:00,0.0,1009.116667,0.42775,100.0,13.27833333,0.0,237.95666916666664 +2014-11-10 07:00:00,0.0,1009.088167,15.95258333,100.0,13.255,0.0,237.9566525 +2014-11-10 08:00:00,2.4050227680000003,1009.540833,37.94833333,100.0,13.2875,0.0,237.9566525 +2014-11-10 09:00:00,0.0,1009.5521669999999,115.35083329999999,100.0,13.62916667,0.558333333,237.9566525 +2014-11-10 10:00:00,0.0,1009.257,128.3083333,100.0,13.845,0.794583333,237.95805249999998 +2014-11-10 11:00:00,0.0,1009.152167,199.43333330000002,96.775,14.62833333,0.8171666670000001,237.95770249999998 +2014-11-10 12:00:00,0.0,1008.945167,144.7725,97.68333333,15.2975,1.099833333,237.9566525 +2014-11-10 13:00:00,2.461961184,1008.929833,118.53333329999998,97.10833333,15.75,0.7040000000000001,237.9566525 +2014-11-10 14:00:00,0.0,1008.958333,151.0333333,93.65,16.6725,0.42158333299999995,237.9566525 +2014-11-10 15:00:00,0.0,1008.9035,106.94583329999999,94.04166667,17.22333333,0.5965,237.95770249999998 +2014-11-10 16:00:00,0.0,1008.6139999999999,45.8925,97.6,16.94416667,0.505833333,237.95770249999998 +2014-11-10 17:00:00,2.416460808,1008.7180000000001,8.345166667,99.85833333,15.585,0.133333333,237.9580525 +2014-11-10 18:00:00,0.0,1008.897833,0.0695,100.0,13.85666667,0.13225,237.95875249999997 +2014-11-10 19:00:00,0.0,1009.134667,0.0,100.0,12.86583333,0.13075,237.95875249999997 +2014-11-10 20:00:00,0.0,1009.5873330000001,0.0,100.0,11.78833333,0.11575,237.95840249999995 +2014-11-10 21:00:00,2.4050227680000003,1010.045667,0.0,100.0,10.91166667,0.075833333,237.95908583333332 +2014-11-10 22:00:00,0.0,1010.333333,0.0,100.0,10.36416667,0.055,237.96041916666664 +2014-11-10 23:00:00,0.0,1010.559667,0.0,100.0,10.0925,0.10116666699999999,237.95975249999995 +2014-12-10 00:00:00,0.0,1010.604833,0.0,100.0,10.8575,0.10425, +2014-12-10 01:00:00,0.0,1010.897833,0.0,100.0,10.5675,0.07908333299999999, +2014-12-10 02:00:00,0.0,1010.977167,0.0,100.0,9.3725,0.01575, +2014-12-10 03:00:00,2.4050227680000003,1010.952667,0.0,100.0,8.117916667000001,0.02925, +2014-12-10 04:00:00,0.0,1011.079833,0.0,100.0,7.372583333,0.06275, +2014-12-10 05:00:00,0.0,1011.093833,0.0,100.0,6.71,0.026666667, +2014-12-10 06:00:00,0.0,1011.0728330000001,1.36125,100.0,6.379583332999999,0.018083333, +2014-12-10 07:00:00,0.0,1011.490833,22.46833333,100.0,7.91925,0.11808333300000001, +2014-12-10 08:00:00,0.0,1011.448667,46.64583333,100.0,8.776666667,0.520833333, +2014-12-10 09:00:00,0.0,1011.5285,155.25,100.0,9.390833333,0.321416667, +2014-12-10 10:00:00,0.0,1011.109167,251.79166669999998,100.0,10.30583333,0.612083333, +2014-12-10 11:00:00,2.54629992,1010.775,221.7583333,98.70833333,11.91083333,0.95, +2014-12-10 12:00:00,0.0,1010.162167,123.35,99.1,12.1875,1.402166667, +2014-12-10 13:00:00,0.0,1009.348167,191.81666669999998,93.925,13.98416667,1.298333333, +2014-12-10 14:00:00,0.0,1008.255167,226.3666667,89.74166667,15.5225,1.208166667, +2014-12-10 15:00:00,0.0,1007.447333,112.79083329999999,89.70833333,16.17,0.96825, +2014-12-10 16:00:00,0.0,1006.8675,39.37583333,95.60833333,15.5825,0.37958333299999997, +2014-12-10 17:00:00,0.0,1006.847833,4.475583333,99.70833333,14.71333333,0.200333333, +2014-12-10 18:00:00,0.0,1006.8758330000001,0.0,100.0,14.23166667,0.37, +2014-12-10 19:00:00,2.518685496,1005.807833,0.0,100.0,13.70583333,0.3145, +2014-12-10 20:00:00,0.0,1005.559167,0.0,100.0,13.5225,0.12841666699999998, +2014-12-10 21:00:00,0.0,1005.004333,0.0,100.0,13.34916667,0.2475, +2014-12-10 22:00:00,0.0,1004.641667,0.0,100.0,13.31166667,0.26916666699999997, +2014-12-10 23:00:00,0.0,1004.5521669999999,0.0,100.0,13.12333333,0.188, +2014-10-13 00:00:00,0.0,1004.3215,0.0,100.0,13.19666667,0.38141666700000004,237.9011525 +2014-10-13 01:00:00,0.0,1003.773167,0.0,100.0,13.22,0.562416667,237.89981916666662 +2014-10-13 02:00:00,2.406314376,1003.3530000000001,0.0,100.0,12.36333333,0.131,237.89915249999999 +2014-10-13 03:00:00,0.0,1002.9333330000001,0.0,100.0,12.34916667,0.255916667,237.89810249999996 +2014-10-13 04:00:00,0.0,1002.693833,0.0,100.0,12.20916667,0.199666667,237.8970525 +2014-10-13 05:00:00,0.0,1002.395667,0.0,100.0,12.24333333,0.092333333,237.89538583333334 +2014-10-13 06:00:00,0.0,1003.050833,0.17275,100.0,12.84666667,0.38791666700000005,237.8950525 +2014-10-13 07:00:00,0.0,1002.811,8.667833332999999,100.0,13.09,0.273166667,237.89330249999998 +2014-10-13 08:00:00,0.0,1002.747833,36.48083333,100.0,13.8375,2.53125,237.8926191666666 +2014-10-13 09:00:00,0.0,1003.1645,102.42833329999999,100.0,14.58,1.23725,237.8909525 +2014-10-13 10:00:00,2.851804248,1003.666667,50.54166667,96.625,15.5625,1.515333333,237.8895525 +2014-10-13 11:00:00,0.0,1003.656167,210.8833333,93.23333333,17.1275,1.2175,237.88885249999998 +2014-10-13 12:00:00,0.0,1003.752167,166.08333330000002,88.95833333,17.1225,1.866166667,237.88718583333335 +2014-10-13 13:00:00,0.0,1003.523667,166.2666667,86.45833333,17.38833333,1.8980000000000001,237.8868525 +2014-10-13 14:00:00,0.0,1003.233333,180.95833330000002,86.50833333,17.445,2.313166667,237.88580250000004 +2014-10-13 15:00:00,0.0,1003.3430000000001,146.6333333,84.51666667,17.67833333,1.934833333,237.88475250000002 +2014-10-13 16:00:00,0.0,1002.91,58.46,89.66666667,17.3025,1.501,237.88475250000002 +2014-10-13 17:00:00,2.765281776,1002.701333,16.10675,99.80833333,16.0425,1.74825,237.88475250000002 +2014-10-13 18:00:00,0.0,1002.818,0.095333333,100.0,14.12,0.695416667,237.88475250000002 +2014-10-13 19:00:00,0.0,1003.122833,0.0,100.0,12.43666667,0.209666667,237.88475250000002 +2014-10-13 20:00:00,0.0,1003.288167,0.0,100.0,11.64916667,0.124416667,237.88475250000002 +2014-10-13 21:00:00,0.0,1003.5728330000001,0.0,100.0,10.55916667,0.139666667,237.88475250000002 +2014-10-13 22:00:00,0.0,1003.6285,0.0,100.0,9.503333332999999,0.018916666999999998,237.88475250000002 +2014-10-13 23:00:00,0.0,1003.8895,0.0,100.0,9.016666667,0.04025,237.88405249999997 +2014-10-14 00:00:00,0.0,1003.932,0.0,100.0,9.444166667000001,0.032833333,237.88300249999998 +2014-10-14 01:00:00,0.0,1004.115833,0.0,100.0,9.583333332999999,0.08075,237.88265249999998 +2014-10-14 02:00:00,2.429757912,1004.397833,0.0,100.0,9.679166667,0.121333333,237.88265249999998 +2014-10-14 03:00:00,0.0,1004.466667,0.0,100.0,9.739166667000001,0.03675,237.88265249999998 +2014-10-14 04:00:00,0.0,1004.361833,0.0,100.0,10.1625,0.032833333,237.88300249999998 +2014-10-14 05:00:00,0.0,1004.366667,0.0,100.0,9.776666667,0.143416667,237.88475250000002 +2014-10-14 06:00:00,0.0,1004.463167,0.5375833329999999,100.0,9.685,0.07933333299999999,237.88475250000002 +2014-10-14 07:00:00,0.0,1004.6895,22.09275,100.0,9.745,0.056083333,237.88475250000002 +2014-10-14 08:00:00,0.0,1004.974167,89.06083333,100.0,10.63166667,0.080916667,237.88475250000002 +2014-10-14 09:00:00,0.0,1005.1916669999999,111.37666670000002,100.0,11.74583333,0.129333333,237.88580249999995 +2014-10-14 10:00:00,0.0,1005.3166669999999,119.8525,100.0,12.98,0.954416667,237.8861525 +2014-10-14 11:00:00,0.0,1005.223667,174.3416667,100.0,14.63833333,0.7446666670000001,237.8868525 +2014-10-14 12:00:00,0.0,1004.7710000000001,255.5083333,93.03333333,15.92166667,0.936916667,237.8865025 +2014-10-14 13:00:00,0.0,1004.318833,246.56666669999998,84.02,18.48333333,0.75125,237.8868525 +2014-10-14 14:00:00,2.64568776,1004.1425,242.2883333,80.15083333,19.29666667,1.122416667,237.88718583333332 +2014-10-14 15:00:00,0.0,1003.6785,206.4083333,77.00666667,18.69416667,1.3526666669999998,237.88851916666667 +2014-10-14 16:00:00,0.0,1003.529833,83.41916667,78.87416667,17.5325,0.63975,237.88920249999998 +2014-10-14 17:00:00,0.0,1003.5855,6.131083332999999,92.25,14.66083333,0.073583333,237.8909525 +2014-10-14 18:00:00,0.0,1003.291667,0.018333333,99.16666667,12.6225,0.16066666699999999,237.8909525 +2014-10-14 19:00:00,0.0,1003.425,0.0,100.0,10.97666667,0.037833333,237.89295249999995 +2014-10-14 20:00:00,0.0,1003.5930000000001,0.0,100.0,10.37166667,0.0,237.89295249999995 +2014-10-14 21:00:00,0.0,1003.8395,0.0,100.0,10.69333333,0.066583333,237.8936525 +2014-10-14 22:00:00,0.0,1003.975,0.0,100.0,9.57,0.046333333,237.8950525 +2014-10-14 23:00:00,0.0,1003.9333330000001,0.0,100.0,9.240833333,0.0016666670000000001,237.8950525 +2014-10-15 00:00:00,2.406314376,1003.791667,0.0,100.0,9.2475,0.04875,237.8950525 +2014-10-15 01:00:00,0.0,1004.015333,0.0,100.0,9.130833333,0.008333333,237.8970525 +2014-10-15 02:00:00,0.0,1003.6688330000001,0.0,100.0,8.523333333,0.05875,237.89671916666666 +2014-10-15 03:00:00,0.0,1003.543,0.0,100.0,8.075416667,0.024333333,237.8970525 +2014-10-15 04:00:00,0.0,1003.607,0.0,100.0,8.034333333,0.017833333,237.89810249999996 +2014-10-15 05:00:00,0.0,1003.295167,0.0,100.0,7.170083332999999,0.0,237.8988025 +2014-10-15 06:00:00,0.0,1003.347833,0.5216666670000001,100.0,6.567916667,0.002,237.89915249999999 +2014-10-15 07:00:00,0.0,1003.529833,13.58091667,100.0,6.5853333329999995,0.0,237.9001525 +2014-10-15 08:00:00,0.0,1003.759667,23.89166667,100.0,8.566666667,0.1195,237.89946916666665 +2014-10-15 09:00:00,0.0,1004.0583330000001,211.375,93.34166667,12.24333333,0.4835,237.89915249999999 +2014-10-15 10:00:00,0.0,1003.891667,291.65833330000004,79.00916667,16.14416667,0.42991666700000003,237.89915249999999 +2014-10-15 11:00:00,2.493844344,1003.915333,338.25,73.56333333,16.8825,0.7426666670000001,237.8994858333333 +2014-10-15 12:00:00,0.0,1003.5438330000001,367.7416667,70.0525,17.29,0.6446666670000001,237.9004858333333 +2014-10-15 13:00:00,0.0,1003.220167,189.8583333,68.09,17.10166667,0.823583333,237.9011525 +2014-10-15 14:00:00,0.0,1003.027167,193.9391667,71.26916667,17.23333333,0.155,237.90220249999996 +2014-10-15 15:00:00,0.0,1002.805667,74.05083333,76.8125,15.74666667,0.055083333,237.90325249999998 +2014-10-15 16:00:00,0.0,1002.786833,26.93666667,90.5,14.6575,0.0,237.90425249999998 +2014-10-15 17:00:00,0.0,1002.597833,4.20675,98.34166667,12.7425,0.040999999999999995,237.9052525 +2014-10-15 18:00:00,0.0,1002.881167,0.0,100.0,11.3575,0.068,237.9059525 +2014-10-15 19:00:00,0.0,1002.920167,0.0,100.0,11.18416667,0.010583333,237.90735249999997 +2014-10-15 20:00:00,0.0,1002.832,0.0,100.0,11.10583333,0.0035833329999999997,237.90735249999997 +2014-10-15 21:00:00,2.413249608,1002.833333,0.0,100.0,11.19166667,0.006333333000000001,237.9077025 +2014-10-15 22:00:00,0.0,1002.557,0.0,100.0,11.0475,0.07,237.90945250000001 +2014-10-15 23:00:00,0.0,1002.5855,0.0,100.0,11.0425,0.003416667,237.90945250000001 +2014-10-16 00:00:00,0.0,1002.325,0.0,100.0,11.08166667,0.0,237.90945250000001 +2014-10-16 01:00:00,0.0,1002.096,0.0,100.0,11.13583333,0.050166667000000005,237.9077025 +2014-10-16 02:00:00,0.0,1001.741667,0.0,100.0,11.32833333,0.260666667,237.90735249999997 +2014-10-16 03:00:00,0.0,1001.711833,0.0,100.0,11.405,0.075166667,237.90805250000003 +2014-10-16 04:00:00,2.4050227680000003,1001.654833,0.0,100.0,10.97666667,0.05875,237.9084025 +2014-10-16 05:00:00,0.0,1001.5425,0.0,100.0,10.45333333,0.00225,237.9087525 +2014-10-16 06:00:00,0.0,1001.291667,0.270833333,100.0,10.43166667,0.02325,237.90945250000001 +2014-10-16 07:00:00,0.0,1001.436,9.19025,100.0,11.13,0.197583333,237.90875250000002 +2014-10-16 08:00:00,0.0,1001.607,44.68583333,99.80833333,12.46,0.319583333,237.90945250000001 +2014-10-16 09:00:00,0.0,1001.640833,205.7833333,93.96666667,15.57583333,1.060833333,237.90910250000002 +2014-10-16 10:00:00,0.0,1001.757,158.5825,90.25833333,17.19083333,0.916333333,237.9084025 +2014-10-16 11:00:00,0.0,1001.684667,117.775,90.53333333,16.5475,0.7513333329999999,237.90945250000001 +2014-10-16 12:00:00,2.52737064,1001.9105,143.5241667,96.60833333,16.39083333,0.5780833329999999,237.90805249999997 +2014-10-16 13:00:00,0.0,1001.491667,95.1775,97.31666667,16.00333333,0.7313333329999999,237.90288583333336 +2014-10-16 14:00:00,0.0,1001.902667,195.8666667,94.31666667,16.4175,0.76275,237.90081916666668 +2014-10-16 15:00:00,0.0,1002.349167,110.89333329999998,92.75833333,16.74,0.404416667,237.89981916666662 +2014-10-16 16:00:00,0.0,1002.7395,49.53083333,92.15,15.89166667,0.37675,237.89915249999999 +2014-10-16 17:00:00,0.0,1002.9623330000001,6.317083332999999,91.525,14.6225,0.481833333,237.8970525 +2014-10-16 18:00:00,0.0,1003.913667,0.0,95.425,13.8025,0.545,237.89571916666668 +2014-10-16 19:00:00,0.0,1004.301333,0.0,98.65,11.97916667,0.201416667,237.8947025 +2014-10-16 20:00:00,2.439976992,1004.602667,0.0,100.0,10.74416667,0.15908333300000002,237.89330249999998 +2014-10-16 21:00:00,0.0,1004.725,0.0,100.0,9.685833333,0.000166667,237.89295249999995 +2014-10-16 22:00:00,0.0,1004.5521669999999,0.0,100.0,9.478333333,0.0,237.8909525 +2014-10-16 23:00:00,0.0,1004.5355,0.0,100.0,10.2075,0.003416667,237.8895525 +2014-10-17 00:00:00,0.0,1004.423667,0.0,100.0,10.7175,0.135166667,237.88885249999998 +2014-10-17 01:00:00,0.0,1003.7605,0.0,100.0,11.44166667,0.081666667,237.8871691666667 +2014-10-17 02:00:00,0.0,1003.7535,0.0,100.0,11.30166667,0.020666667,237.88580250000004 +2014-10-17 03:00:00,0.0,1003.769333,0.0,100.0,11.13833333,0.0058333330000000004,237.88475250000002 +2014-10-17 04:00:00,2.4050227680000003,1004.174167,0.0,100.0,11.28333333,0.000666667,237.8844025 +2014-10-17 05:00:00,0.0,1004.920667,0.0,99.91666667,11.78666667,0.11425,237.8837025 +2014-10-17 06:00:00,0.0,1005.4255,0.24608333300000002,99.5,12.15583333,0.304916667,237.88300249999998 +2014-10-17 07:00:00,0.0,1006.4760000000001,13.275,99.21666667,12.1425,0.39083333299999995,237.8844025 +2014-10-17 08:00:00,0.0,1007.660167,57.49833333,97.625,13.08833333,0.0735,237.88405249999997 +2014-10-17 09:00:00,0.0,1008.892667,62.00583333,96.31666667,13.89916667,0.24675,237.8844025 +2014-10-17 10:00:00,0.0,1010.1615,98.7375,96.375,14.45583333,0.48575,237.88475250000002 +2014-10-17 11:00:00,0.0,1010.870667,174.2833333,94.28333333,15.4375,0.592833333,237.88475250000002 +2014-10-17 12:00:00,0.0,1011.201333,244.4083333,94.325,16.33166667,0.603916667,237.88475250000002 +2014-10-17 13:00:00,0.0,1011.594333,244.05833330000002,86.475,17.92083333,0.905833333,237.88405249999997 +2014-10-17 14:00:00,2.484616152,1011.5666669999999,204.9666667,84.25833333,18.21666667,0.443333333,237.88475250000002 +2014-10-17 15:00:00,0.0,1012.0039999999999,144.455,83.21666667,17.725,0.7154166670000001,237.88475250000002 +2014-10-17 16:00:00,0.0,1012.440833,57.12416667,83.24166667,16.625,0.717166667,237.8854525 +2014-10-17 17:00:00,0.0,1013.040833,4.632166667,92.8,14.64083333,0.339416667,237.8865025 +2014-10-17 18:00:00,0.0,1013.470667,0.0,99.26666667,12.005,0.070916667,237.8868525 +2014-10-17 19:00:00,0.0,1014.240833,0.0,100.0,10.85333333,0.054916667,237.8878525 +2014-10-17 20:00:00,0.0,1014.429833,0.0,100.0,9.689166667,0.06925,237.88851916666667 +2014-10-17 21:00:00,0.0,1014.787333,0.0,100.0,9.2,0.0575,237.88885249999998 +2014-10-17 22:00:00,0.0,1015.0035,0.0,100.0,8.2955,0.044333332999999996,237.88885249999998 +2014-10-17 23:00:00,2.4050227680000003,1015.2123330000001,0.0,100.0,7.56775,0.031083332999999998,237.88885249999998 +2014-10-18 00:00:00,0.0,1015.643,0.0,100.0,7.886083332999999,0.0010833330000000001,237.88920249999998 +2014-10-18 01:00:00,0.0,1015.897833,0.0,100.0,8.798333332999999,0.012833333,237.88885249999998 +2014-10-18 02:00:00,0.0,1016.082,0.0,100.0,9.655833333,0.01825,237.88955249999995 +2014-10-18 03:00:00,0.0,1016.0811669999999,0.0,100.0,10.32333333,0.0,237.88920249999998 +2014-10-18 04:00:00,0.0,1016.574167,0.0,100.0,11.03666667,0.215,237.8902525 +2014-10-18 05:00:00,0.0,1016.827167,0.0,100.0,11.34083333,0.779166667,237.8909525 +2014-10-18 06:00:00,0.0,1016.533333,1.01425,100.0,10.79833333,0.276333333,237.8909525 +2014-10-18 07:00:00,2.64568776,1016.779,21.42108333,100.0,11.08,0.8835833329999999,237.8909525 +2014-10-18 08:00:00,0.0,1017.272833,63.39666667,100.0,11.21916667,1.251083333,237.8909525 +2014-10-18 09:00:00,0.0,1017.5930000000001,117.66666670000001,100.0,11.55666667,1.290583333,237.8909525 +2014-10-18 10:00:00,0.0,1017.65,238.0166667,99.41666667,13.08833333,1.571166667,237.8909525 +2014-10-18 11:00:00,0.0,1017.557,326.3583333,90.89166667,15.595,2.477666667,237.8912858333333 +2014-10-18 12:00:00,0.0,1017.386833,320.8083333,84.01666667,17.47083333,2.1935,237.8912858333333 +2014-10-18 13:00:00,0.0,1017.2819999999999,284.625,81.8675,18.26166667,1.902166667,237.89295249999995 +2014-10-18 14:00:00,0.0,1016.922333,274.7333333,79.73166667,18.99833333,2.00825,237.89295249999995 +2014-10-18 15:00:00,0.0,1016.7285,192.725,78.10666667,18.67833333,2.09075,237.89295249999995 +2014-10-18 16:00:00,0.0,1016.5035,87.9125,80.5975,17.5425,2.752916667,237.8912858333333 +2014-10-18 17:00:00,2.983641,1016.348667,4.467333333,90.58333333,16.16833333,1.87025,237.8947025 +2014-10-18 18:00:00,0.0,1016.758833,0.0,99.275,13.945,0.692666667,237.89295249999995 +2014-10-18 19:00:00,0.0,1016.789,0.0,100.0,11.98416667,0.031833333,237.89330249999998 +2014-10-18 20:00:00,0.0,1016.7061669999999,0.0,100.0,10.75916667,0.04525,237.8950525 +2014-10-18 21:00:00,0.0,1016.988167,0.0,100.0,9.8525,0.0,237.8950525 +2014-10-18 22:00:00,0.0,1016.882,0.0,100.0,9.513333333,0.008833333,237.8950525 +2014-10-18 23:00:00,2.4050227680000003,1016.682,0.0,100.0,9.001666667,0.02325,237.8950525 +2014-10-19 00:00:00,0.0,1016.545167,0.0,100.0,9.7225,0.0,237.8950525 +2014-10-19 01:00:00,0.0,1016.4069999999999,0.0,100.0,10.25083333,0.001166667,237.8950525 +2014-10-19 02:00:00,0.0,1016.2785,0.0,100.0,10.25,0.041166667000000004,237.8960525 +2014-10-19 03:00:00,0.0,1015.959167,0.0,100.0,10.355,0.110666667,237.89671916666666 +2014-10-19 04:00:00,0.0,1015.727167,0.0,100.0,9.969166667,0.0,237.8970525 +2014-10-19 05:00:00,0.0,1015.459667,0.0,100.0,10.3875,0.0,237.8970525 +2014-10-19 06:00:00,2.44773648,1015.365333,0.286833333,100.0,10.85,0.11375,237.8970525 +2014-10-19 07:00:00,0.0,1015.273667,10.27375,100.0,11.1175,0.24891666699999998,237.8970525 +2014-10-19 08:00:00,0.0,1015.1785,43.89,100.0,11.54583333,0.035083333,237.8970525 +2014-10-19 09:00:00,0.0,1015.041667,94.1325,100.0,13.625,1.202166667,237.8970525 +2014-10-19 10:00:00,0.0,1014.7508330000001,135.91666669999998,100.0,14.44416667,1.02125,237.8970525 +2014-10-19 11:00:00,0.0,1014.666667,169.05,100.0,14.60083333,1.24175,237.8970525 +2014-10-19 12:00:00,0.0,1014.4271669999999,285.5166667,99.18333333,15.78833333,0.647333333,237.8974025 +2014-10-19 13:00:00,2.766715224,1013.546833,311.3833333,89.2375,19.1275,0.8079999999999999,237.8970525 +2014-10-19 14:00:00,0.0,1012.9855,258.3083333,75.79833333,22.11166667,0.52075,237.8977525 +2014-10-19 15:00:00,0.0,1012.469667,177.3666667,77.98833333,21.9575,0.9065833329999999,237.89915249999999 +2014-10-19 16:00:00,0.0,1012.126333,71.68833333,82.0825,20.44916667,1.061583333,237.89915249999999 +2014-10-19 17:00:00,0.0,1012.436,3.91725,87.775,18.98416667,0.9585,237.89981916666667 +2014-10-19 18:00:00,0.0,1012.379333,0.0,90.41666667,17.73666667,0.749166667,237.9011525 +2014-10-19 19:00:00,2.922862704,1011.995167,0.0,90.875,18.62583333,1.48175,237.9011525 +2014-10-19 20:00:00,0.0,1011.904833,0.0,90.275,17.52666667,0.512333333,237.9011525 +2014-10-19 21:00:00,0.0,1012.2895,0.0,89.91666667,16.45,0.123083333,237.90290249999998 +2014-10-19 22:00:00,0.0,1012.651333,0.0,90.15,16.29,0.125,237.90325249999998 +2014-10-19 23:00:00,0.0,1013.195667,0.0,96.25833333,16.88833333,0.922583333,237.9005025 +2014-10-20 00:00:00,2.4904171440000002,1013.226333,0.0,97.35,15.8,0.5065,237.89741916666662 +2014-10-20 01:00:00,0.0,1013.538167,0.0,92.7,15.06333333,0.6094166670000001,237.90048583333336 +2014-10-20 02:00:00,0.0,1013.3639999999999,0.0,86.20833333,14.4025,0.2375,237.9011525 +2014-10-20 03:00:00,0.0,1013.002167,0.0,89.61666667,13.01166667,0.068833333,237.9004858333333 +2014-10-20 04:00:00,0.0,1012.804833,0.0,92.10833333,12.57583333,0.063166667,237.89915249999999 +2014-10-20 05:00:00,0.0,1012.972833,0.0,91.08333333,13.24083333,0.022083332999999997,237.90015249999996 +2014-10-20 06:00:00,2.515048464,1013.027167,0.26675,92.00833333,13.38,0.263916667,237.9011525 +2014-10-20 07:00:00,0.0,1013.279,14.25516667,95.5,12.28,0.043,237.9011525 +2014-10-20 08:00:00,0.0,1013.747833,57.66583333,95.51666667,13.34916667,0.233166667,237.9011525 +2014-10-20 09:00:00,0.0,1013.8285,132.4166667,87.7,15.31333333,0.704833333,237.90321249999997 +2014-10-20 10:00:00,0.0,1013.9715,197.725,79.46166667,16.38583333,1.044083333,237.9063025 +2014-10-20 11:00:00,0.0,1013.873667,201.81666669999998,75.89416667,16.7525,1.12675,237.9052525 +2014-10-20 12:00:00,0.0,1013.522333,297.8666667,69.59083333,16.96166667,1.2495,237.9052525 +2014-10-20 13:00:00,2.655579192,1013.2605,207.2833333,69.615,16.87,1.043166667,237.90458583333336 +2014-10-20 14:00:00,0.0,1012.761833,164.6166667,68.64916667,16.865,0.89825,237.90491916666664 +2014-10-20 15:00:00,0.0,1012.3389999999999,89.16916667,71.175,16.405,0.48516666700000005,237.9052525 +2014-10-20 16:00:00,0.0,1011.86,31.0925,79.715,15.01833333,0.129583333,237.9052525 +2014-10-20 17:00:00,0.0,1011.3215,3.38075,92.75,12.98583333,0.0465,237.90630249999995 +2014-10-20 18:00:00,0.0,1011.411833,0.0,99.26666667,10.87916667,0.1245,237.90735249999997 +2014-10-20 19:00:00,2.432953056,1011.147333,0.0,100.0,9.233333333,0.056166667,237.90735249999997 +2014-10-20 20:00:00,0.0,1010.929833,0.0,100.0,8.6725,0.03025,237.90735249999997 +2014-10-20 21:00:00,0.0,1011.0319999999999,0.0,98.39166667,8.041583333,0.067,237.9077025 +2014-10-20 22:00:00,0.0,1010.596,0.0,99.89166667,8.239833333,0.092916667,237.9087525 +2014-10-20 23:00:00,0.0,1010.165333,0.0,100.0,7.937333333,0.145916667,237.90945250000001 +2014-10-21 00:00:00,2.4050227680000003,1010.093833,0.0,98.48333333,7.301666667,0.0005,237.90945250000001 +2014-10-21 01:00:00,0.0,1009.958333,0.0,96.175,8.71875,0.314416667,237.90945250000001 +2014-10-21 02:00:00,0.0,1009.400833,0.0,97.31666667,7.90275,0.003666667,237.90945250000001 +2014-10-21 03:00:00,0.0,1008.8745,0.0,97.275,7.093,0.01325,237.90945250000001 +2014-10-21 04:00:00,0.0,1008.282833,0.0,97.55833333,6.32775,0.000166667,237.90945250000001 +2014-10-21 05:00:00,0.0,1007.652167,0.0,97.40833333,6.895083333,0.073583333,237.90945250000001 +2014-10-21 06:00:00,0.0,1007.2389999999999,0.139916667,96.05,8.098083333,0.069333333,237.90910250000002 +2014-10-21 07:00:00,0.0,1006.991167,10.6025,94.45833333,9.82,0.152,237.9077025 +2014-10-21 08:00:00,2.4075121680000002,1006.479333,57.03083333,91.73333333,11.24916667,0.6960833329999999,237.90805250000003 +2014-10-21 09:00:00,0.0,1005.8889999999999,102.8133333,87.05,12.34916667,1.463916667,237.90735249999997 +2014-10-21 10:00:00,0.0,1004.9455,91.41583333,85.55833333,12.945,1.74325,237.90735249999997 +2014-10-21 11:00:00,0.0,1003.339833,124.36583329999999,85.48333333,13.4675,2.169083333,237.90735249999997 +2014-10-21 12:00:00,0.0,1002.440667,151.3316667,82.79416667,13.45666667,2.0345,237.90735249999997 +2014-10-21 13:00:00,0.0,1000.933167,67.8425,82.52166667,13.65333333,1.838416667,237.90735249999997 +2014-10-21 14:00:00,0.0,999.3915,58.58833333,89.94166667,12.89333333,1.7364166669999999,237.90665249999998 +2014-10-21 15:00:00,3.085561008,997.6858332999999,87.68,90.325,13.26583333,1.2895,237.9052525 +2014-10-21 16:00:00,0.0,995.8845,20.20008333,93.375,13.09416667,2.0916666669999997,237.9052525 +2014-10-21 17:00:00,0.0,996.727,0.349916667,91.225,11.39166667,2.2285,237.90425249999998 +2014-10-21 18:00:00,0.0,997.9246667000001,0.0,89.23333333,10.17,1.7030833330000001,237.90491916666664 +2014-10-21 19:00:00,0.0,999.426,0.0,89.125,9.19,1.6074166669999999,237.90735249999997 +2014-10-21 20:00:00,0.0,1000.6469999999999,0.0,89.40833333,8.555,1.6498333330000001,237.90735249999997 +2014-10-21 21:00:00,2.909157888,1001.799667,0.0,90.8,7.787333332999999,1.470166667,237.90910250000002 +2014-10-21 22:00:00,0.0,1002.992667,0.0,86.29166667,7.9160833329999996,1.542416667,237.90945250000001 +2014-10-21 23:00:00,0.0,1004.1676669999999,0.0,87.725,7.6253333329999995,1.4270833330000001,237.90978583333333 +2014-10-22 00:00:00,0.0,1005.7255,0.0,93.575,6.518,2.118416667,237.91045250000002 +2014-10-22 01:00:00,0.0,1006.1755,0.0,96.35,5.888583333,0.7214166670000001,237.90945250000001 +2014-10-22 02:00:00,2.9710353119999997,1006.708333,0.0,93.83333333,6.5868333329999995,1.166583333,237.90945250000001 +2014-10-22 03:00:00,0.0,1006.445167,0.0,94.2,6.582000000000001,1.296083333,237.90945250000001 +2014-10-22 04:00:00,0.0,1006.431167,0.0,94.03333333,6.656166667000001,1.4138333330000001,237.90945250000001 +2014-10-22 05:00:00,0.0,1007.1039999999999,0.0,92.73333333,6.895833333,1.4630833330000002,237.90945250000001 +2014-10-22 06:00:00,0.0,1007.645667,0.123083333,93.75833333,6.839916667000001,1.3030000000000002,237.90945250000001 +2014-10-22 07:00:00,2.694261528,1008.5545,9.524916667000001,94.175,6.857,1.223333333,237.90945250000001 +2014-10-22 08:00:00,0.0,1009.529,35.46,92.34166667,7.131833332999999,1.16175,237.90945250000001 +2014-10-22 09:00:00,0.0,1010.195667,40.57416667,92.65833333,7.456666667,1.1045,237.90945250000001 +2014-10-22 10:00:00,0.0,1010.333333,96.26833333,95.71666667,7.306833332999999,1.188416667,237.90910250000002 +2014-10-22 11:00:00,0.0,1010.361833,146.2158333,95.11666667,8.00625,1.3958333330000001,237.90805250000003 +2014-10-22 12:00:00,2.7749927760000004,1010.347833,81.9775,93.05,8.120583332999999,2.01575,237.9063025 +2014-10-22 13:00:00,0.0,1010.137667,110.04416670000002,89.525,8.925833333,2.208166667,237.9052525 +2014-10-22 14:00:00,0.0,1010.177667,147.30833330000002,83.05833333,9.785833333,3.65675,237.9052525 +2014-10-22 15:00:00,0.0,1010.327167,87.01666667,83.69166667,10.0575,4.162166667,237.90425249999998 +2014-10-22 16:00:00,4.29793332,1010.728167,48.2675,81.68333333,9.904166667,4.6545,237.90325249999998 +2014-10-22 17:00:00,0.0,1011.876833,2.847083333,82.85833333,9.555,3.218333333,237.90391916666667 +2014-10-22 18:00:00,0.0,1012.89,0.0,83.64166667,9.125,3.445333333,237.90491916666667 +2014-10-22 19:00:00,0.0,1013.6935,0.0,84.75,9.1225,3.2285,237.9052525 +2014-10-22 20:00:00,3.364539024,1014.470667,0.0,87.4,9.038333332999999,2.194416667,237.9052525 +2014-10-22 21:00:00,0.0,1014.8575,0.0,88.25833333,8.791666667000001,2.342083333,237.9052525 +2014-10-22 22:00:00,0.0,1015.5935,0.0,86.34166667,8.833333332999999,1.7391666669999999,237.9052525 +2014-10-22 23:00:00,0.0,1016.168,0.0,86.23333333,8.856666667,1.025083333,237.9052525 +2014-10-23 00:00:00,2.615783808,1016.3311669999999,0.0,88.50833333,8.654166667,0.805083333,237.9052525 +2014-10-23 01:00:00,0.0,1016.672833,0.0,91.05833333,8.491666667,0.551416667,237.9056025 +2014-10-23 02:00:00,0.0,1016.984667,0.0,93.9,8.23,0.7503333329999999,237.90665249999998 +2014-10-23 03:00:00,0.0,1017.0666669999999,0.0,93.55833333,8.285833333,0.687333333,237.9052525 +2014-10-23 04:00:00,2.48702172,1017.362333,0.0,93.73333333,8.288333332999999,0.58775,237.90735249999997 +2014-10-23 05:00:00,0.0,1017.6465,0.0,94.90833333,7.9695,0.57,237.90735249999997 +2014-10-23 06:00:00,0.0,1017.9575,0.109916667,95.1,7.918666667,0.631,237.90735249999997 +2014-10-23 07:00:00,0.0,1018.4575,17.15083333,95.56666667,8.044583333,0.443833333,237.90735249999997 +2014-10-23 08:00:00,2.500792056,1019.002667,67.11166667,94.40833333,9.4575,0.44825,237.90735249999997 +2014-10-23 09:00:00,0.0,1019.381167,82.74166667,92.19166667,9.923333332999999,0.609166667,237.90735249999997 +2014-10-23 10:00:00,0.0,1019.699167,68.51416667,92.19166667,9.763333333,0.719833333,237.90875250000002 +2014-10-23 11:00:00,2.5391901359999998,1019.8535,86.00083333,92.53333333,9.746666667000001,0.604,237.90945250000001 +2014-10-23 12:00:00,0.0,1019.890333,126.70833329999999,90.86666667,10.58416667,0.57025,237.90945250000001 +2014-10-23 13:00:00,0.0,1019.5355,204.1333333,88.675,12.47,0.707416667,237.90945250000001 +2014-10-23 14:00:00,0.0,1019.225,229.9916667,84.28333333,12.53166667,0.5315833329999999,237.90910250000002 +2014-10-23 15:00:00,0.0,1018.946,118.05,83.04166667,12.12083333,0.440666667,237.90735249999997 +2014-10-23 16:00:00,0.0,1018.648667,45.22333333,88.34166667,11.46416667,0.13575,237.90735249999997 +2014-10-23 17:00:00,0.0,1018.651333,4.990583333,98.4,9.279166667,0.021916667,237.9084025 +2014-10-23 18:00:00,0.0,1018.8465,0.0,99.25833333,9.0325,0.013000000000000001,237.90945250000001 +2014-10-23 19:00:00,0.0,1018.8785,0.0,99.7,9.108333333,0.059666667,237.90945250000001 +2014-10-23 20:00:00,0.0,1018.8311669999999,0.0,99.79166667,9.215,0.056416667000000004,237.90945250000001 +2014-10-23 21:00:00,0.0,1019.027167,0.0,99.68333333,9.216666667,0.134916667,237.90945250000001 +2014-10-23 22:00:00,0.0,1018.954833,0.0,99.75833333,9.0775,0.034666667000000005,237.9114525 +2014-10-23 23:00:00,0.0,1018.741667,0.0,100.0,7.077166667,0.047916667,237.9114525 +2014-10-24 00:00:00,0.0,1018.761833,0.0,100.0,6.365416667000001,0.34966666700000004,237.9114525 +2014-10-24 01:00:00,0.0,1018.773667,0.0,100.0,6.136916667,0.332833333,237.9114525 +2014-10-24 02:00:00,0.0,1018.625,0.0,100.0,6.267333333,0.48825,237.9114525 +2014-10-24 03:00:00,0.0,1018.071,0.0,100.0,6.3521666670000005,0.29541666699999997,237.9114525 +2014-10-24 04:00:00,0.0,1017.823667,0.0,100.0,6.248666667,0.3625,237.9125025 +2014-10-24 05:00:00,0.0,1017.8895,0.0,100.0,6.188416667,0.7979999999999999,237.91250249999996 +2014-10-24 06:00:00,0.0,1017.920167,0.140833333,100.0,6.312333333,0.868416667,237.91355249999995 +2014-10-24 07:00:00,0.0,1018.0645,17.46366667,100.0,6.206916667000001,0.44608333299999997,237.91355249999995 +2014-10-24 08:00:00,0.0,1018.422833,48.76916667,100.0,6.069083332999999,0.15841666699999998,237.91355249999995 +2014-10-24 09:00:00,0.0,1018.4785,77.835,100.0,6.4930833329999995,0.432333333,237.91355249999995 +2014-10-24 10:00:00,0.0,1018.218833,131.00833329999998,100.0,6.877000000000001,0.813416667,237.91355249999995 +2014-10-24 11:00:00,0.0,1018.009167,174.875,100.0,7.805916667000001,1.189666667,237.91355249999995 +2014-10-24 12:00:00,0.0,1017.482833,285.3,97.94166667,9.75,1.2319166670000001,237.91355249999995 +2014-10-24 13:00:00,0.0,1016.541167,290.8833333,84.07333333,12.45833333,1.93475,237.91355249999995 +2014-10-24 14:00:00,0.0,1015.8675,172.19166669999998,75.69416667,12.9275,2.316166667,237.91355249999995 +2014-10-24 15:00:00,0.0,1015.454333,94.06416667,74.795,12.325,1.8631666669999998,237.91355249999995 +2014-10-24 16:00:00,0.0,1015.083333,38.08916667,81.51083333,11.6375,1.4305833330000002,237.91421916666664 +2014-10-24 17:00:00,0.0,1014.952167,2.116,95.23333333,9.25,0.0045,237.91555250000002 +2014-10-24 18:00:00,0.0,1014.902667,0.0,99.36666667,8.036333333,0.080833333,237.9142191666666 +2014-10-24 19:00:00,0.0,1014.930667,0.0,100.0,7.767333333,0.030166667,237.9148858333333 +2014-10-24 20:00:00,0.0,1014.854833,0.0,100.0,7.6333333329999995,0.0085,237.91521916666662 +2014-10-24 21:00:00,0.0,1014.786833,0.0,100.0,7.458416667000001,0.0,237.91555250000002 +2014-10-24 22:00:00,0.0,1014.565333,0.0,100.0,7.7455,0.0255,237.91555250000002 +2014-10-24 23:00:00,0.0,1014.5035,0.0,100.0,8.219583333,0.34466666700000004,237.91555250000002 +2014-10-25 00:00:00,0.0,1014.184167,0.0,100.0,8.35,0.42425,237.91555250000002 +2014-10-25 01:00:00,0.0,1014.136833,0.0,100.0,8.436666667,0.167833333,237.91555250000002 +2014-10-25 02:00:00,0.0,1013.773667,0.0,100.0,8.069166667000001,0.025916667,237.9159025 +2014-10-25 03:00:00,0.0,1013.7965,0.0,100.0,7.95075,0.000833333,237.91555250000002 +2014-10-25 04:00:00,0.0,1013.6605,0.0,100.0,8.251666667,0.10566666699999999,237.91555250000002 +2014-10-25 05:00:00,0.0,1013.611833,0.0,100.0,8.345,0.03025,237.9173025 +2014-10-25 06:00:00,26.38890494,1013.883833,0.01125,100.0,8.3425,0.0,237.9173025 +2014-10-25 07:00:00,2.406213984,1014.3825,6.9996666670000005,100.0,8.475,0.046666667,237.9159025 +2014-10-25 08:00:00,0.0,1014.949167,46.285,100.0,8.910833333,0.0855,237.9162525 +2014-10-25 09:00:00,0.0,1015.106167,80.37333333,100.0,9.9375,0.7615833329999999,237.9176525 +2014-10-25 10:00:00,0.0,1015.476333,69.6625,99.225,10.83833333,0.513416667,237.9176525 +2014-10-25 11:00:00,0.0,1015.656167,119.04166670000001,95.1,11.40333333,0.549166667,237.9176525 +2014-10-25 12:00:00,0.0,1015.655667,93.12166667,94.74166667,11.73333333,0.997916667,237.9176525 +2014-10-25 13:00:00,0.0,1015.5930000000001,69.58916667,94.91666667,12.37083333,0.871166667,237.9176525 +2014-10-25 14:00:00,0.0,1015.9145,55.24916667,95.44166667,12.51666667,0.422333333,237.91798583333332 +2014-10-25 15:00:00,0.0,1016.176333,37.40916667,95.75,12.30166667,1.037916667,237.91965249999998 +2014-10-25 16:00:00,0.0,1016.344333,11.5055,96.99166667,11.99916667,1.0225,237.91965249999998 +2014-10-25 17:00:00,2.4904171440000002,1016.5930000000001,0.857833333,99.3,11.72166667,0.398583333,237.91965249999998 +2014-10-25 18:00:00,0.0,1016.872833,0.0,100.0,11.4725,0.6911666670000001,237.91965249999998 +2014-10-25 19:00:00,0.0,1017.315833,0.0,100.0,11.35083333,0.18433333300000002,237.92000249999998 +2014-10-25 20:00:00,0.0,1017.7895,0.0,100.0,11.31,0.203166667,237.92000249999998 +2014-10-25 21:00:00,0.0,1018.224167,0.0,100.0,11.3225,0.37091666700000003,237.91965249999998 +2014-10-25 22:00:00,0.0,1018.406167,0.0,100.0,11.33666667,1.062833333,237.91965249999998 +2014-10-25 23:00:00,0.0,1018.763167,0.0,100.0,11.34583333,0.31,237.91965249999998 +2014-10-26 00:00:00,0.0,1019.1505,0.0,100.0,11.39,0.141833333,237.92035249999995 +2014-10-26 01:00:00,0.0,1019.554833,0.0,100.0,11.42,0.092833333,237.9214025 +2014-10-26 02:00:00,0.0,1019.701333,0.0,100.0,11.47666667,0.056916667000000004,237.9217525 +2014-10-26 03:00:00,0.0,1019.5438330000001,0.0,100.0,11.4775,0.13,237.9217525 +2014-10-26 04:00:00,0.0,1019.954,0.0,100.0,10.6025,0.064416667,237.9217525 +2014-10-26 05:00:00,0.0,1020.266667,0.0,100.0,10.72416667,0.11583333300000001,237.9217525 +2014-10-26 06:00:00,0.0,1020.202667,0.0615,100.0,9.474166667,0.08075,237.92375249999995 +2014-10-26 07:00:00,0.0,1020.9365,10.53025,100.0,9.553333333,0.15591666699999998,237.92375249999995 +2014-10-26 08:00:00,0.0,1021.716667,42.5825,100.0,10.41416667,0.21725,237.92375249999995 +2014-10-26 09:00:00,0.0,1021.881167,100.4441667,100.0,10.95166667,0.282583333,237.92375249999995 +2014-10-26 10:00:00,0.0,1021.9416669999999,193.6333333,98.61666667,11.98166667,0.962833333,237.92375249999995 +2014-10-26 11:00:00,0.0,1022.018,159.95,94.275,13.15666667,0.78375,237.92375249999995 +2014-10-26 12:00:00,0.0,1021.704333,173.2583333,83.85166667,14.37833333,0.324833333,237.92375249999995 +2014-10-26 13:00:00,0.0,1021.357,190.06666669999998,80.37833333,15.06,0.2105,237.92480249999997 +2014-10-26 14:00:00,0.0,1020.9960000000001,178.16666669999998,74.2225,15.32416667,0.636833333,237.9255025 +2014-10-26 15:00:00,0.0,1020.8166669999999,120.3975,80.30083333,15.085,0.77725,237.9258525 +2014-10-26 16:00:00,0.0,1020.658333,30.07,91.63333333,14.32083333,0.009333333000000001,237.9258525 +2014-10-26 17:00:00,0.0,1021.045667,1.3966666669999999,98.40833333,13.1325,0.142416667,237.92655249999999 +2014-10-26 18:00:00,0.0,1021.220167,0.0,100.0,12.39916667,0.048333333,237.92725249999998 +2014-10-26 19:00:00,0.0,1021.120167,0.0,100.0,11.97833333,0.13975,237.9258525 +2014-10-26 20:00:00,0.0,1021.4325,0.0,100.0,10.93333333,0.07425,237.9258525 +2014-10-26 21:00:00,0.0,1021.4855,0.0,100.0,8.78,0.03075,237.92620250000002 +2014-10-26 22:00:00,0.0,1021.327167,0.0,100.0,7.8731666670000005,0.00975,237.92795249999998 +2014-10-26 23:00:00,0.0,1021.026333,0.0,100.0,7.23975,0.034083333,237.92795249999998 +2014-10-27 00:00:00,0.0,1021.3311669999999,0.0,100.0,6.970916667000001,0.011666667,237.92795249999998 +2014-10-27 01:00:00,0.0,1021.373667,0.0,100.0,7.087999999999999,0.08841666699999999,237.92828583333332 +2014-10-27 02:00:00,0.0,1021.1771669999999,0.0,100.0,8.121583333,0.09375,237.92828583333332 +2014-10-27 03:00:00,0.0,1020.991667,0.0,100.0,8.580833333,0.15975,237.9289525 +2014-10-27 04:00:00,0.0,1021.118,0.0,100.0,8.231666667,0.45,237.9292858333333 +2014-10-27 05:00:00,0.0,1021.007,0.0,100.0,8.203333333,0.239416667,237.92961916666664 +2014-10-27 06:00:00,0.0,1021.245667,0.0235,100.0,8.188333333,0.586,237.92995249999998 +2014-10-27 07:00:00,0.0,1021.7061669999999,4.303416667,100.0,8.196666667,0.74,237.92995249999998 +2014-10-27 08:00:00,0.0,1022.024167,29.71916667,100.0,8.284166667000001,1.471416667,237.9303025 +2014-10-27 09:00:00,0.0,1022.401333,46.51666667,100.0,8.08575,1.638333333,237.93205250000003 +2014-10-27 10:00:00,0.0,1022.5583330000001,72.35416667,100.0,8.11925,1.8840000000000001,237.93205250000003 +2014-10-27 11:00:00,0.0,1022.55,84.37416667,100.0,8.545,1.7685,237.93205250000003 +2014-10-27 12:00:00,0.0,1022.1460000000001,81.81583333,99.99166667,8.8925,1.8005,237.93238583333334 +2014-10-27 13:00:00,0.0,1021.7639999999999,115.3,96.46666667,9.684166667000001,2.24125,237.93271916666666 +2014-10-27 14:00:00,0.0,1021.393833,123.03333329999998,92.65833333,10.47666667,2.0238333330000002,237.9323691666667 +2014-10-27 15:00:00,0.0,1021.022333,63.04666667,92.24166667,10.4825,1.8249166669999999,237.93205250000003 +2014-10-27 16:00:00,0.0,1020.700833,20.921,93.275,10.03,1.9019166669999998,237.93205250000003 +2014-10-27 17:00:00,0.0,1020.715833,1.089833333,93.33333333,9.628333332999999,1.690833333,237.93205250000003 +2014-10-27 18:00:00,0.0,1020.807,0.0,94.18333333,9.145,1.565833333,237.93205250000003 +2014-10-27 19:00:00,0.0,1020.486833,0.0,95.475,8.740833333,2.165166667,237.93271916666666 +2014-10-27 20:00:00,0.0,1020.604833,0.0,96.3,8.3,1.7129166669999998,237.9330525 +2014-10-27 21:00:00,0.0,1020.507,0.0,95.875,8.1475,1.295083333,237.93405249999998 +2014-10-27 22:00:00,0.0,1020.2785,0.0,96.41666667,7.77225,0.945666667,237.93405249999998 +2014-10-27 23:00:00,0.0,1019.911333,0.0,99.20833333,7.223,0.081083333,237.93405249999998 +2014-10-28 00:00:00,0.0,1019.5355,0.0,98.54166667,7.67175,0.8121666670000001,237.93405249999998 +2014-10-28 01:00:00,0.0,1019.0925,0.0,94.39166667,7.76675,1.182,237.93405249999998 +2014-10-28 02:00:00,0.0,1018.672333,0.0,93.19166667,7.463916667,1.5853333330000001,237.93405249999998 +2014-10-28 03:00:00,0.0,1018.370167,0.0,93.50833333,7.188166667000001,1.730833333,237.93405249999998 +2014-10-28 04:00:00,0.0,1018.193833,0.0,94.34166667,7.084916667000001,1.63375,237.9344025 +2014-10-28 05:00:00,0.0,1017.990333,0.0,95.45833333,6.966833332999999,1.57625,237.93510249999997 +2014-10-28 06:00:00,0.0,1017.720167,0.016416667,96.19166667,6.71725,1.256666667,237.9358025 +2014-10-28 07:00:00,0.0,1017.866667,3.284166667,96.54166667,6.6855,1.4105,237.93615249999996 +2014-10-28 08:00:00,0.0,1017.825,15.25316667,96.15,6.873416667000001,1.582333333,237.93475249999997 +2014-10-28 09:00:00,0.0,1017.851333,35.22166667,94.05,6.833333333,1.6725833330000002,237.93475249999997 +2014-10-28 10:00:00,0.0,1017.768833,58.90833333,92.16666667,6.864916667,1.79775,237.93545249999997 +2014-10-28 11:00:00,0.0,1017.359167,82.23166667,90.66666667,7.105583332999999,2.246083333,237.93580249999994 +2014-10-28 12:00:00,0.0,1016.719667,93.875,89.23333333,7.32375,2.445333333,237.93615249999996 +2014-10-28 13:00:00,0.0,1016.054333,78.855,89.95,7.3245,2.519333333,237.93615249999996 +2014-10-28 14:00:00,0.0,1015.453,49.695,90.85,7.323083333,2.258416667,237.93615249999996 +2014-10-28 15:00:00,0.0,1014.895167,27.65833333,91.65833333,7.12775,2.322166667,237.93615249999996 +2014-10-28 16:00:00,0.0,1014.5105,9.121583333,92.475,6.918333333,1.7803333330000002,237.93648583333334 +2014-10-28 17:00:00,0.0,1014.241167,0.32725,93.33333333,6.835666667000001,2.172333333,237.9371525 +2014-10-28 18:00:00,0.0,1013.981167,0.0,92.98333333,6.978083333,2.0775,237.93781916666663 +2014-10-28 19:00:00,0.0,1014.093833,0.0,92.35,7.096333333,1.583083333,237.93815249999997 +2014-10-28 20:00:00,0.0,1013.883333,0.0,91.55833333,7.072583333,1.1178333329999999,237.93815249999997 +2014-10-28 21:00:00,0.0,1013.6535,0.0,91.93333333,6.9219166670000005,0.638083333,237.9385025 +2014-10-28 22:00:00,0.0,1013.402167,0.0,92.325,6.81625,0.639416667,237.9385025 +2014-10-28 23:00:00,0.0,1013.348667,0.0,92.19166667,6.69225,0.5811666670000001,237.9402525 +2014-10-29 00:00:00,0.0,1012.9960000000001,0.0,92.24166667,6.53675,0.638333333,237.9385025 +2014-10-29 01:00:00,0.0,1012.5605,0.0,92.46666667,6.297416667,0.47125,237.93815249999997 +2014-10-29 02:00:00,0.0,1012.193833,0.0,93.81666667,6.145666667,0.624166667,237.93815249999997 +2014-10-29 03:00:00,0.0,1011.916667,0.0,95.35833333,6.070333333,0.410583333,237.93815249999997 +2014-10-29 04:00:00,0.0,1011.963167,0.0,97.14166667,6.18125,0.37508333299999996,237.93815249999997 +2014-10-29 05:00:00,0.0,1011.991667,0.0,98.11666667,6.315333333,0.42675,237.93815249999997 +2014-10-29 06:00:00,0.0,1011.995167,0.014583333,98.75,6.54375,0.31675,237.9385025 +2014-10-29 07:00:00,0.0,1012.2289999999999,4.606,99.25,6.723,0.304083333,237.93990250000002 +2014-10-29 08:00:00,0.0,1012.8575,40.75833333,98.63333333,7.261,0.30275,237.93990250000002 +2014-10-29 09:00:00,0.0,1013.320667,89.15333333,90.95833333,8.474083333,0.841166667,237.9402525 +2014-10-29 10:00:00,0.0,1013.716667,148.2583333,84.45833333,9.150833333,1.5469166669999999,237.9402525 +2014-10-29 11:00:00,0.0,1013.8166669999999,261.2666667,80.92666667,9.970833333,1.277916667,237.9402525 +2014-10-29 12:00:00,0.0,1013.615333,326.35,74.725,10.76666667,1.665416667,237.94125250000002 +2014-10-29 13:00:00,0.0,1013.425,269.95,76.63666667,11.36916667,1.440666667,237.9422525 +2014-10-29 14:00:00,0.0,1013.2535,158.55833330000002,80.01083333,11.26,1.802583333,237.9422525 +2014-10-29 15:00:00,0.0,1013.273667,76.69333333,82.23333333,10.67333333,1.332166667,237.94295249999996 +2014-10-29 16:00:00,0.0,1013.5075,23.53308333,85.8,10.22833333,1.266333333,237.9422525 +2014-10-29 17:00:00,2.559101688,1013.806167,0.626416667,93.58333333,9.354166667000001,0.7414166670000001,237.9422525 +2014-10-29 18:00:00,0.0,1014.2061669999999,0.0,99.05833333,8.869166667,0.231166667,237.9426025 +2014-10-29 19:00:00,12.49961287,1014.481167,0.0,100.0,8.671666667,0.231083333,237.94435249999995 +2014-10-29 20:00:00,0.0,1014.912333,0.0,100.0,8.3225,0.040416667,237.94435249999995 +2014-10-29 21:00:00,0.0,1015.608833,0.0,100.0,8.521666667,0.03,237.94435249999995 +2014-10-29 22:00:00,0.0,1015.988167,0.0,100.0,8.6125,0.061083333,237.94468583333332 +2014-10-29 23:00:00,0.0,1016.151333,0.0,100.0,8.62,0.335166667,237.94635250000002 +2014-10-30 00:00:00,0.0,1016.402667,0.0,100.0,8.538333332999999,0.19125,237.94635250000002 +2014-10-30 01:00:00,0.0,1016.709667,0.0,100.0,8.5975,0.15225,237.94635250000002 +2014-10-30 02:00:00,0.0,1016.815333,0.0,100.0,8.8075,0.15608333300000002,237.94635250000002 +2014-10-30 03:00:00,0.0,1017.1505,0.0,100.0,8.6925,0.5329999999999999,237.9470525 +2014-10-30 04:00:00,0.0,1017.375,0.0,100.0,8.7475,0.11333333300000001,237.94775249999998 +2014-10-30 05:00:00,0.0,1017.5145,0.0,100.0,8.770833332999999,0.286083333,237.9484525 +2014-10-30 06:00:00,0.0,1017.822,0.0,100.0,8.703333333,0.29975,237.9484525 +2014-10-30 07:00:00,0.0,1018.5728330000001,3.37375,100.0,8.711666667000001,0.45991666700000006,237.9481025 +2014-10-30 08:00:00,0.0,1018.9623330000001,18.96916667,100.0,8.963333333,0.332,237.9484525 +2014-10-30 09:00:00,0.0,1019.6039999999999,34.36916667,100.0,9.401666667,0.773416667,237.9484525 +2014-10-30 10:00:00,0.0,1019.916667,51.06,100.0,9.7575,0.945583333,237.9484525 +2014-10-30 11:00:00,0.0,1019.9035,95.9275,100.0,10.46666667,1.34,237.9495025 +2014-10-30 12:00:00,0.0,1020.0728330000001,100.93,98.25,11.26666667,1.3559999999999999,237.95020249999996 +2014-10-30 13:00:00,0.0,1019.9855,101.9833333,97.875,11.90083333,1.090333333,237.9505525 +2014-10-30 14:00:00,0.0,1019.665333,63.45583333,97.49166667,12.36583333,1.0915,237.9505525 +2014-10-30 15:00:00,0.0,1019.726333,29.76583333,98.36666667,12.10083333,1.039416667,237.9505525 +2014-10-30 16:00:00,0.0,1019.912333,12.0445,99.18333333,12.0425,1.513916667,237.95121916666665 +2014-10-30 17:00:00,0.0,1020.3430000000001,0.500583333,99.76666667,11.8475,1.8435833330000002,237.95221916666665 +2014-10-30 18:00:00,0.0,1020.438167,0.0,100.0,11.75416667,1.472,237.9525525 +2014-10-30 19:00:00,0.0,1020.743,0.0,100.0,11.74166667,0.622166667,237.9525525 +2014-10-30 20:00:00,0.0,1020.951333,0.0,100.0,11.68916667,0.1805,237.95325249999996 +2014-10-30 21:00:00,0.0,1021.0319999999999,0.0,100.0,11.66,0.815333333,237.95325249999996 +2014-10-30 22:00:00,0.0,1020.9965,0.0,100.0,11.45333333,0.5914166670000001,237.95221916666665 +2014-10-30 23:00:00,0.0,1020.983333,0.0,100.0,11.35166667,0.004916667,237.9525525 +2014-10-31 00:00:00,0.0,1020.9535,0.0,100.0,11.385,0.1825,237.9525525 +2014-10-31 01:00:00,0.0,1020.958333,0.0,100.0,11.5025,0.2095,237.9525525 +2014-10-31 02:00:00,0.0,1020.7389999999999,0.0,100.0,11.07833333,0.196583333,237.9525525 +2014-10-31 03:00:00,0.0,1020.4035,0.0,100.0,10.71666667,0.1495,237.9536025 +2014-10-31 04:00:00,0.0,1020.4069999999999,0.0,100.0,11.09333333,0.10425,237.9536025 +2014-10-31 05:00:00,0.0,1020.166667,0.0,100.0,10.94166667,0.762,237.95465249999998 +2014-10-31 06:00:00,0.0,1020.283333,0.0,100.0,10.79916667,0.288083333,237.95465249999998 +2014-10-31 07:00:00,0.0,1020.5136669999999,3.68075,100.0,10.765,0.64975,237.95465249999998 +2014-10-31 08:00:00,0.0,1020.951333,24.1525,100.0,10.80083333,0.53775,237.95465249999998 +2014-10-31 09:00:00,0.0,1021.163167,41.54916667,100.0,11.0075,0.619583333,237.95498583333332 +2014-10-31 10:00:00,0.0,1021.481167,77.67083333,100.0,11.2675,0.839166667,237.95631916666665 +2014-10-31 11:00:00,0.0,1021.570167,93.66333333,100.0,11.98083333,1.26375,237.9556525 +2014-10-31 12:00:00,0.0,1021.254333,115.43333329999999,100.0,12.95416667,1.313083333,237.95465249999998 +2014-10-31 13:00:00,0.0,1020.880667,148.7333333,98.725,13.98083333,1.6254166669999999,237.95465249999998 +2014-10-31 14:00:00,0.0,1020.395167,136.5333333,95.18333333,14.30916667,1.622916667,237.95465249999998 +2014-10-31 15:00:00,0.0,1020.193833,71.14083333,95.44166667,14.1125,1.3826666669999998,237.95531916666664 +2014-10-31 16:00:00,0.0,1020.040333,22.69483333,98.25,13.25833333,0.5245,237.95631916666665 +2014-10-31 17:00:00,0.0,1019.85,0.78925,100.0,11.90666667,1.24175,237.9566525 +2014-10-31 18:00:00,0.0,1019.883333,0.0,100.0,10.785,0.390166667,237.9566525 +2014-10-31 19:00:00,0.0,1019.743833,0.0,100.0,9.2875,0.061666667,237.9566525 +2014-10-31 20:00:00,0.0,1019.659667,0.0,100.0,8.74,0.049333333,237.95770249999998 +2014-10-31 21:00:00,0.0,1019.690333,0.0,100.0,7.85125,0.0,237.95875249999997 +2014-10-31 22:00:00,0.0,1019.633333,0.0,100.0,7.066666667000001,0.00675,237.95875249999997 +2014-10-31 23:00:00,0.0,1019.570167,0.0,100.0,6.50175,0.028416667000000003,237.95875249999997 +2014-01-11 00:00:00,0.0,1019.222333,0.0,100.0,6.425,0.0175,238.07466133333332 +2014-01-11 01:00:00,0.0,1019.2715,0.0,100.0,6.909583333,0.018916666999999998,238.073408 +2014-01-11 02:00:00,0.0,1018.955667,0.0,100.0,8.088333333,0.046,238.072421 +2014-01-11 03:00:00,0.0,1018.4925,0.0,100.0,8.44,0.050166667000000005,238.07143399999998 +2014-01-11 04:00:00,0.0,1018.068833,0.0,100.0,8.146666667,0.009416667,238.07112066666664 +2014-01-11 05:00:00,0.0,1017.9285,0.0,100.0,7.864,0.25775,238.07018066666663 +2014-01-11 06:00:00,0.0,1018.034667,0.0,100.0,7.686583333,0.0,238.069225 +2014-01-11 07:00:00,0.0,1018.2215,3.4195833330000003,100.0,7.607833332999999,0.0045,238.068567 +2014-01-11 08:00:00,0.0,1018.465833,31.78083333,100.0,7.776416667,0.066416667,238.06758 +2014-01-11 09:00:00,2.5030512000000003,1018.825,72.43583333,100.0,8.24475,0.179666667,238.06601333333333 +2014-01-11 10:00:00,0.0,1018.813167,94.20666667,100.0,9.021666667,0.21891666699999998,238.065371 +2014-01-11 11:00:00,0.0,1018.584167,111.30833329999999,100.0,9.798333332999999,0.5275,238.06372599999995 +2014-01-11 12:00:00,0.0,1017.9960000000001,122.05,100.0,10.25583333,1.01075,238.06372599999995 +2014-01-11 13:00:00,0.0,1017.479333,108.96666670000002,100.0,10.6425,1.089166667,238.06438400000002 +2014-01-11 14:00:00,0.0,1017.141667,81.3325,100.0,11.07333333,0.664666667,238.06405499999997 +2014-01-11 15:00:00,0.0,1016.9355,42.23666667,100.0,11.46333333,0.489416667,238.06341266666664 +2014-01-11 16:00:00,0.0,1016.443833,15.95475,100.0,11.545,0.7185,238.062786 +2014-01-11 17:00:00,0.0,1016.366667,0.70525,100.0,11.02333333,0.780166667,238.06183033333335 +2014-01-11 18:00:00,0.0,1016.3021669999999,0.0,100.0,10.33833333,0.26616666699999997,238.06085900000002 +2014-01-11 19:00:00,0.0,1016.381167,0.0,100.0,9.956666667,0.23275,238.058932 +2014-01-11 20:00:00,0.0,1016.193833,0.0,100.0,9.5675,0.6176666670000001,238.05830533333332 +2014-01-11 21:00:00,0.0,1015.9105,0.0,100.0,9.303333333,0.720166667,238.057005 +2014-01-11 22:00:00,0.0,1015.898667,0.0,100.0,9.129166667,0.244166667,238.05601800000002 +2014-01-11 23:00:00,0.0,1015.5605,0.0,100.0,9.173333332999999,0.502,238.05536000000004 +2014-02-11 00:00:00,0.0,1015.248667,0.0,100.0,9.086666667000001,0.8261666670000001,238.03874850000003 +2014-02-11 01:00:00,0.0,1015.005667,0.0,100.0,9.12,0.535666667,238.03874850000003 +2014-02-11 02:00:00,0.0,1014.404333,0.0,100.0,9.299166667,1.255,238.03824093333333 +2014-02-11 03:00:00,0.0,1013.9785,0.0,100.0,8.9925,0.985833333,238.03798714999996 +2014-02-11 04:00:00,0.0,1013.8960000000001,0.0,100.0,8.845,0.139416667,238.03773336666666 +2014-02-11 05:00:00,0.0,1013.5930000000001,0.0,100.0,8.525,0.321416667,238.03773336666666 +2014-02-11 06:00:00,0.0,1013.5675,0.0,100.0,7.983416667,0.114166667,238.0372258 +2014-02-11 07:00:00,0.0,1013.381167,3.30575,100.0,8.119166667,0.050166667000000005,238.0372378666667 +2014-02-11 08:00:00,0.0,1013.486833,28.82583333,100.0,8.421666667,0.10158333300000001,238.03773336666666 +2014-02-11 09:00:00,0.0,1013.5465,65.185,100.0,9.305833332999999,0.746583333,238.03674236666666 +2014-02-11 10:00:00,0.0,1013.502167,86.4775,100.0,9.905,0.622916667,238.03698408333332 +2014-02-11 11:00:00,0.0,1013.222333,105.65,100.0,10.39416667,0.47183333299999997,238.0372258 +2014-02-11 12:00:00,0.0,1012.484167,107.0,100.0,10.82333333,1.483333333,238.03599308333332 +2014-02-11 13:00:00,0.0,1011.6635,111.5508333,100.0,11.285,1.520666667,238.03773336666669 +2014-02-11 14:00:00,0.0,1010.919667,81.00666667,100.0,12.15083333,1.16125,238.0372258 +2014-02-11 15:00:00,0.0,1010.3105,61.44916667,100.0,12.87,1.4185,238.0372258 +2014-02-11 16:00:00,0.0,1009.686333,20.77,100.0,12.31583333,1.5270833330000002,238.03698408333332 +2014-02-11 17:00:00,0.0,1009.2535,0.551666667,100.0,11.27916667,1.130416667,238.03650065 +2014-02-11 18:00:00,0.0,1008.975833,0.0,100.0,10.25083333,0.57125,238.03625893333333 +2014-02-11 19:00:00,0.0,1008.459167,0.0,100.0,8.778333332999999,0.133416667,238.0357755 +2014-02-11 20:00:00,0.0,1007.754333,0.0,100.0,9.369166667,0.38725,238.03601721666666 +2014-02-11 21:00:00,0.0,1007.414,0.0,100.0,9.8375,0.473416667,238.0357755 +2014-02-11 22:00:00,0.0,1006.832833,0.0,100.0,11.19083333,1.5005,238.0357755 +2014-02-11 23:00:00,0.0,1006.014833,0.0,99.21666667,12.08833333,1.7990833330000002,238.03501414999997 +2014-03-11 00:00:00,0.0,1005.559167,0.0,91.05833333,11.87583333,1.5625,238.00046229999998 +2014-03-11 01:00:00,0.0,1004.818833,0.0,89.475,11.74833333,1.409,237.9999668 +2014-03-11 02:00:00,0.0,1004.597333,0.0,89.55,14.90916667,2.20325,237.9999547 +2014-03-11 03:00:00,2.673406944,1003.919667,0.0,93.325,14.12166667,1.95225,237.99971299999996 +2014-03-11 04:00:00,0.0,1003.4855,0.0,94.55,13.39583333,1.687583333,237.99947129999998 +2014-03-11 05:00:00,0.0,1002.998667,0.0,92.725,13.83916667,1.3694166669999999,237.9992296 +2014-03-11 06:00:00,0.0,1003.0583330000001,0.0,91.375,13.10833333,1.215083333,237.9999547 +2014-03-11 07:00:00,0.0,1003.133333,3.364416667,91.40833333,14.01166667,1.6969999999999998,237.9999547 +2014-03-11 08:00:00,0.0,1003.2645,17.015,90.4,13.87833333,1.878416667,237.9985045 +2014-03-11 09:00:00,0.0,1003.062667,30.74333333,93.13333333,13.1625,2.3818333330000003,237.99947129999998 +2014-03-11 10:00:00,2.73420648,1002.650833,70.73416667,93.48333333,13.51,2.0725,237.99947129999998 +2014-03-11 11:00:00,5.571382656,1002.157833,39.97833333,95.16666667,13.41583333,1.50825,237.9992296 +2014-03-11 12:00:00,2.8614532319999997,1000.8455,51.26916667,94.15833333,13.4225,1.9751666669999999,237.9985045 +2014-03-11 13:00:00,0.0,1000.0565,55.29166667,92.4,13.71,2.492416667,237.9985045 +2014-03-11 14:00:00,0.0,999.2258332999999,73.30333333,90.31666667,13.9675,2.745833333,237.9985045 +2014-03-11 15:00:00,10.16133586,998.5968332999998,8.9765,92.76666667,13.67916667,2.752,237.9987462 +2014-03-11 16:00:00,0.0,997.7355,8.761916667000001,95.7,12.925,2.966416667,237.9992296 +2014-03-11 17:00:00,0.0,996.692,0.11691666699999999,93.68333333,12.83,3.657166667,237.99947129999998 +2014-03-11 18:00:00,0.0,996.6706667000001,0.0,89.38333333,12.66666667,3.235,237.9985045 +2014-03-11 19:00:00,0.0,996.4446667000001,0.0,87.25833333,12.93583333,3.144583333,237.9985045 +2014-03-11 20:00:00,3.319752,995.4981667000002,0.0,88.14166667,12.45583333,2.999083333,237.99825069999997 +2014-03-11 21:00:00,11.47398761,995.2486667000002,0.0,93.0,11.98833333,3.37975,237.99748929999998 +2014-03-11 22:00:00,22.6813325,994.2608332999998,0.0,97.70833333,11.51666667,1.49875,237.99799689999998 +2014-03-11 23:00:00,18.71849772,993.2161667000001,0.0,99.64166667,11.1175,0.798583333,237.9985045 +2014-04-11 00:00:00,2.495075952,992.4078332999999,0.0,94.9,11.43833333,1.865583333,237.8933097 +2014-04-11 01:00:00,0.0,992.6601667000001,0.0,94.36666667,11.72083333,2.3955833330000003,237.8933097 +2014-04-11 02:00:00,5.512374096,992.4148332999998,0.0,92.34166667,12.32416667,1.53775,237.8933097 +2014-04-11 03:00:00,0.0,991.9355,0.0,93.975,11.62333333,1.561666667,237.8933097 +2014-04-11 04:00:00,3.0014638560000004,992.075,0.0,97.15833333,11.635,1.400333333,237.8933097 +2014-04-11 05:00:00,0.0,991.528,0.0,93.26666667,11.79666667,2.335333333,237.8933097 +2014-04-11 06:00:00,0.0,991.1645,0.0,87.35,12.29583333,1.9680000000000002,237.89264133333333 +2014-04-11 07:00:00,0.0,991.1298332999999,0.92875,86.25,13.20916667,2.209916667,237.8913046 +2014-04-11 08:00:00,0.0,991.7553332999998,6.03575,84.64166667,13.4675,2.173333333,237.89126448000002 +2014-04-11 09:00:00,0.0,991.9688332999999,29.405,83.91666667,13.4175,2.18225,237.89366059999998 +2014-04-11 10:00:00,0.0,992.043,54.06583333,81.85833333,13.73416667,1.801916667,237.8933097 +2014-04-11 11:00:00,0.0,992.0008332999998,79.6875,84.71666667,13.69333333,1.265583333,237.8933097 +2014-04-11 12:00:00,0.0,991.5688332999998,81.895,87.45,13.4225,1.24675,237.8933097 +2014-04-11 13:00:00,0.0,991.325,93.5425,84.19166667,13.6275,1.28425,237.89197296666669 +2014-04-11 14:00:00,0.0,991.1688332999998,71.965,81.45666667,13.91916667,1.089333333,237.89197296666669 +2014-04-11 15:00:00,0.0,991.1215,32.94083333,84.8,13.69666667,1.190083333,237.89095369999998 +2014-04-11 16:00:00,0.0,990.9306667000001,12.00775,91.825,12.73,0.59125,237.8913046 +2014-04-11 17:00:00,0.0,990.6333332999999,0.161,99.33333333,11.62,0.274583333,237.89095370000004 +2014-04-11 18:00:00,2.4050227680000003,990.6131667000001,0.0,100.0,11.16416667,0.035666667,237.89095370000004 +2014-04-11 19:00:00,0.0,990.8583332999999,0.0,98.70833333,11.19166667,0.17525,237.89025189999998 +2014-04-11 20:00:00,0.0,990.6416667000001,0.0,98.79166667,11.20666667,0.060333332999999996,237.88955010000004 +2014-04-11 21:00:00,2.45004384,990.9846667000002,0.0,99.99166667,10.85666667,0.22725,237.88955010000004 +2014-04-11 22:00:00,12.25693656,991.0895,0.0,100.0,10.425,0.336416667,237.88919919999998 +2014-04-11 23:00:00,2.41677756,991.2096667000002,0.0,100.0,10.04416667,0.38058333299999997,237.88919919999998 +2014-05-11 00:00:00,5.023686264,991.2535,0.0,100.0,9.650833333,0.670416667,237.8445518666667 +2014-05-11 01:00:00,7.410599928,992.04,0.0,100.0,9.405833333,0.43208333299999996,237.8458886 +2014-05-11 02:00:00,17.06186098,992.4666667000001,0.0,100.0,9.175833333,0.244166667,237.8472922 +2014-05-11 03:00:00,12.42547615,992.5443332999998,0.0,100.0,8.9225,0.465916667,237.84834490000003 +2014-05-11 04:00:00,5.091761303999999,993.1921667000001,0.0,100.0,8.7025,0.6629166670000001,237.8493976 +2014-05-11 05:00:00,0.0,993.5193332999999,0.0,100.0,8.523333333,0.65025,237.8500994 +2014-05-11 06:00:00,0.0,994.0991667000002,0.0,100.0,8.459166667,0.526333333,237.85043358333334 +2014-05-11 07:00:00,0.0,994.8531667000001,1.039166667,100.0,8.409166667000001,0.32566666699999997,237.8521045 +2014-05-11 08:00:00,0.0,995.9768332999998,16.88991667,99.99166667,8.524166667000001,0.290666667,237.85213793333335 +2014-05-11 09:00:00,2.4085938959999997,996.5491667000001,50.4375,100.0,8.909166667000001,0.11883333300000001,237.85076776666668 +2014-05-11 10:00:00,0.0,997.179,108.64166670000002,97.70833333,9.724166667,0.388166667,237.8500994 +2014-05-11 11:00:00,0.0,997.6061667000001,173.6166667,93.91666667,10.6475,0.9209166670000001,237.84974850000003 +2014-05-11 12:00:00,0.0,997.9166667000002,127.76583329999998,89.63333333,10.92333333,0.817333333,237.8500994 +2014-05-11 13:00:00,0.0,998.0123332999999,121.73666670000001,86.51666667,11.075,0.8065,237.84974850000003 +2014-05-11 14:00:00,0.0,998.7776667000002,93.90166667,88.29166667,10.77833333,0.750833333,237.84974850000003 +2014-05-11 15:00:00,0.0,998.7548332999999,73.2875,86.64166667,10.87416667,0.543416667,237.847994 +2014-05-11 16:00:00,0.0,999.2623332999999,9.386416667,91.48333333,9.911666667,0.395583333,237.847994 +2014-05-11 17:00:00,0.0,999.797,0.31175,95.99166667,9.070833333,0.061583333,237.8486958 +2014-05-11 18:00:00,0.0,1000.381167,0.0,97.36666667,8.4475,0.0335,237.8483449 +2014-05-11 19:00:00,0.0,1000.577167,0.0,99.08333333,8.401666667,0.00375,237.847994 +2014-05-11 20:00:00,0.0,1001.087833,0.0,99.725,8.331666667,0.015333333000000001,237.8465904 +2014-05-11 21:00:00,0.0,1001.917167,0.0,97.025,8.440833332999999,0.132416667,237.8458886 +2014-05-11 22:00:00,0.0,1002.370167,0.0,96.86666667,8.591666667,0.273083333,237.8458886 +2014-05-11 23:00:00,0.0,1002.436,0.0,97.39166667,8.554166667,0.529333333,237.8458886 +2014-06-11 00:00:00,0.0,1002.9325,0.0,97.55833333,8.436666667,0.530083333,237.75290119999997 +2014-06-11 01:00:00,0.0,1003.306167,0.0,97.61666667,8.13075,0.2105,237.7507958 +2014-06-11 02:00:00,0.0,1003.570667,0.0,98.2,7.611833333,0.014666667,237.74870711666668 +2014-06-11 03:00:00,0.0,1004.0110000000001,0.0,96.16666667,7.349416667000001,0.032916667000000004,237.7463344 +2014-06-11 04:00:00,0.0,1004.429833,0.0,95.01666667,7.071416667,0.0205,237.74459661666666 +2014-06-11 05:00:00,0.0,1004.762333,0.0,99.11666667,5.93175,0.027833333,237.7415221 +2014-06-11 06:00:00,0.0,1005.1978330000001,0.0,98.25,4.729,0.11516666699999999,237.93204195 +2014-06-11 07:00:00,0.0,1005.822,4.325,100.0,3.399333333,0.025,238.63301520000002 +2014-06-11 08:00:00,0.0,1006.697,21.5975,100.0,4.095333333,0.008083333,238.53488126666664 +2014-06-11 09:00:00,0.0,1007.059667,72.6,100.0,7.337916667000001,0.647416667,238.50020941666665 +2014-06-11 10:00:00,0.0,1007.394333,200.2333333,85.74166667,10.12916667,0.945,238.46797711666662 +2014-06-11 11:00:00,0.0,1007.516667,204.8325,77.15416667,10.78083333,0.624916667,238.39624394999998 +2014-06-11 12:00:00,0.0,1007.402167,151.0058333,77.31666667,9.875,0.48308333299999995,238.34509666666668 +2014-06-11 13:00:00,0.0,1007.383333,120.98583329999998,79.995,9.186666667,1.6545833330000002,238.3100739 +2014-06-11 14:00:00,0.0,1007.268,158.83333330000002,80.79916667,9.709166667,0.75825,238.28160119999998 +2014-06-11 15:00:00,0.0,1007.538167,72.6975,84.43333333,9.078333333,1.809083333,238.26066441666669 +2014-06-11 16:00:00,0.0,1007.5285,9.841583332999999,84.79166667,8.09875,1.086666667,238.2428188166667 +2014-06-11 17:00:00,0.0,1007.6978330000001,0.130083333,86.56666667,8.149166667000001,0.71925,238.22771361666665 +2014-06-11 18:00:00,0.0,1007.979833,0.0,88.6,7.975583332999999,0.752083333,238.21431273333337 +2014-06-11 19:00:00,0.0,1008.134667,0.0,91.48333333,7.2755,0.6868333329999999,238.20127943333333 +2014-06-11 20:00:00,0.0,1008.004833,0.0,95.05,4.684833333,0.3445,238.18995048333332 +2014-06-11 21:00:00,0.0,1007.972333,0.0,98.325,2.760583333,0.0019166670000000002,238.18035931666668 +2014-06-11 22:00:00,0.0,1007.5605,0.0,100.0,1.7416666669999998,0.047333333,238.17108568333333 +2014-06-11 23:00:00,0.0,1007.391667,0.0,100.0,0.898166667,0.002416667,238.16181201666666 +2014-07-11 00:00:00,0.0,1007.200833,0.0,100.0,0.35375,0.027083332999999998,237.8950642 +2014-07-11 01:00:00,0.0,1006.840333,0.0,100.0,-0.123333333,0.00325,237.89127116666668 +2014-07-11 02:00:00,0.0,1006.647333,0.0,100.0,-0.45491666700000005,0.0014166670000000001,237.8884974 +2014-07-11 03:00:00,0.0,1006.184167,0.0,100.0,0.520333333,0.051583332999999995,237.88575706666668 +2014-07-11 04:00:00,0.0,1005.6210000000001,0.0,100.0,0.657416667,0.074666667,237.8826491166667 +2014-07-11 05:00:00,0.0,1004.8315,0.0,100.0,0.888166667,0.081166667,237.87992549999998 +2014-07-11 06:00:00,0.0,1004.373667,0.0,100.0,1.3671666669999998,0.4955,237.87720188333333 +2014-07-11 07:00:00,0.0,1004.158333,3.78575,100.0,3.7054166669999997,1.995166667,237.87476239999998 +2014-07-11 08:00:00,0.0,1004.125,17.00916667,100.0,3.66675,1.6855,237.87170454999998 +2014-07-11 09:00:00,0.0,1004.190333,63.24416667,100.0,4.219416667,1.6815,237.88712725000002 +2014-07-11 10:00:00,0.0,1003.980667,69.23166667,99.35,4.7365833330000005,1.9845,237.87479574999998 +2014-07-11 11:00:00,0.0,1003.2925,63.14333333,99.1,4.628416667,1.8665833330000001,237.86650796666666 +2014-07-11 12:00:00,0.0,1002.800833,54.19833333,99.33333333,4.84325,2.278,237.86069311666665 +2014-07-11 13:00:00,0.0,1002.716667,33.095,97.29166667,5.33225,1.850416667,237.85417646666667 +2014-07-11 14:00:00,0.0,1002.254333,38.18166667,96.65,5.981833332999999,1.8933333330000002,237.85008268333334 +2014-07-11 15:00:00,0.0,1002.340833,53.31833333,94.3,6.5729999999999995,2.40875,237.8472922 +2014-07-11 16:00:00,5.7728748,1002.4188330000001,5.140666667,98.15833333,6.375166667,1.91025,237.84283080000003 +2014-07-11 17:00:00,2.7695875439999997,1002.7698330000001,0.287333333,100.0,6.282083332999999,1.5110833330000002,237.84010718333332 +2014-07-11 18:00:00,0.0,1003.356167,0.0,99.64166667,6.42125,0.9505,237.83699923333333 +2014-07-11 19:00:00,0.0,1004.235167,0.0,96.66666667,6.6665,0.7031666670000001,237.8335738166667 +2014-07-11 20:00:00,0.0,1004.799167,0.0,96.58333333,7.24925,1.3625,237.83014839999998 +2014-07-11 21:00:00,0.0,1005.222,0.0,97.41666667,6.676166667,1.044166667,237.82702378333337 +2014-07-11 22:00:00,0.0,1005.5425,0.0,99.75833333,6.376333333,1.316666667,237.82463433333336 +2014-07-11 23:00:00,0.0,1005.3965,0.0,100.0,4.793833333,0.6495833329999999,237.82358168333337 +2014-08-11 00:00:00,0.0,1005.552667,0.0,99.075,3.839916667,0.144583333,237.52958095 +2014-08-11 01:00:00,0.0,1005.872833,0.0,99.3,3.19225,0.203166667,237.52752569999998 +2014-08-11 02:00:00,0.0,1006.079833,0.0,99.73333333,5.86025,1.4838333330000002,237.53197038333334 +2014-08-11 03:00:00,0.0,1006.0355,0.0,99.6,4.835833333,0.34575,237.53267218333335 +2014-08-11 04:00:00,0.0,1006.410167,0.0,94.325,5.262166667,0.6709166670000001,237.52891258333332 +2014-08-11 05:00:00,0.0,1006.766667,0.0,92.94166667,6.737666667,1.227833333,237.52682390000004 +2014-08-11 06:00:00,0.0,1007.017167,0.0,92.3,7.364416667,1.05775,237.52547045000003 +2014-08-11 07:00:00,0.0,1007.6360000000001,3.7375833330000003,92.3,7.48925,0.884083333,237.5244679 +2014-08-11 08:00:00,0.0,1008.076333,16.4425,94.05833333,8.18675,1.482083333,237.52306430000002 +2014-08-11 09:00:00,0.0,1008.470667,64.635,87.19166667,10.32166667,1.228333333,237.52102576666667 +2014-08-11 10:00:00,0.0,1009.115833,199.4083333,81.67666667,11.43166667,1.7729166669999998,237.52032396666667 +2014-08-11 11:00:00,0.0,1009.165333,224.0083333,77.67166667,11.79333333,1.70825,237.518252 +2014-08-11 12:00:00,0.0,1008.8355,112.50916670000001,79.23,12.46166667,2.1345,237.51614659999998 +2014-08-11 13:00:00,0.0,1008.825,220.85,77.32833333,11.32583333,2.48175,237.51547823333337 +2014-08-11 14:00:00,0.0,1008.579333,159.6108333,76.245,11.41166667,2.423666667,237.51273790000002 +2014-08-11 15:00:00,0.0,1008.15,86.805,78.56666667,11.0875,2.30625,237.51203610000002 +2014-08-11 16:00:00,0.0,1007.973667,8.055083332999999,88.23333333,9.483333333,1.167166667,237.54959204000002 +2014-08-11 17:00:00,0.0,1007.697333,0.1935,98.54166667,6.504583332999999,0.197916667,237.5512362333333 +2014-08-11 18:00:00,0.0,1007.4188330000001,0.0,100.0,4.736333333,0.15233333300000002,237.53439325 +2014-08-11 19:00:00,0.0,1007.2465,0.0,100.0,3.579416667,0.02275,237.5247853666667 +2014-08-11 20:00:00,0.0,1007.1688330000001,0.0,100.0,2.76475,0.042,237.5175502 +2014-08-11 21:00:00,0.0,1006.852167,0.0,100.0,2.4443333330000003,0.02025,237.51240371666668 +2014-08-11 22:00:00,0.0,1006.468833,0.0,100.0,1.95375,0.040833333,237.50864411666666 +2014-08-11 23:00:00,0.0,1006.1605,0.0,100.0,2.0404166669999997,0.006,237.50486784999998 +2014-09-11 00:00:00,0.0,1005.973667,0.0,100.0,2.01825,0.01325, +2014-09-11 01:00:00,0.0,1005.571,0.0,100.0,1.747166667,0.024583333, +2014-09-11 02:00:00,0.0,1005.252167,0.0,100.0,1.9073333330000002,0.2175, +2014-09-11 03:00:00,0.0,1004.937667,0.0,100.0,2.251083333,0.148583333, +2014-09-11 04:00:00,0.0,1004.8255,0.0,100.0,1.51325,0.0745, +2014-09-11 05:00:00,0.0,1004.830667,0.0,100.0,1.5761666669999999,0.168833333, +2014-09-11 06:00:00,0.0,1004.5965,0.0,100.0,0.893083333,0.07825, +2014-09-11 07:00:00,0.0,1005.047833,2.592083333,100.0,1.66225,0.09875, +2014-09-11 08:00:00,0.0,1005.234667,29.05333333,100.0,3.037583333,0.18333333300000001, +2014-09-11 09:00:00,0.0,1005.233333,47.93833333,100.0,4.209,0.241666667, +2014-09-11 10:00:00,0.0,1005.379833,73.98416667,100.0,5.443583332999999,0.43325, +2014-09-11 11:00:00,0.0,1005.491667,115.59166670000002,98.80833333,7.12425,1.5583333330000002, +2014-09-11 12:00:00,0.0,1005.420167,157.2,93.50833333,8.174583333,1.918333333, +2014-09-11 13:00:00,0.0,1005.2425,122.46166670000001,93.48333333,8.223333333,1.77, +2014-09-11 14:00:00,0.0,1004.511833,100.4441667,93.675,8.666666667000001,1.609, +2014-09-11 15:00:00,0.0,1004.632,46.3575,94.41666667,8.635833332999999,1.144333333, +2014-09-11 16:00:00,0.0,1004.668,15.03366667,97.60833333,7.99375,0.229583333, +2014-09-11 17:00:00,0.0,1004.8965,0.1775,100.0,6.190083333,0.314583333, +2014-09-11 18:00:00,0.0,1005.034667,0.0,100.0,3.937583333,0.09908333300000001, +2014-09-11 19:00:00,0.0,1005.156167,0.0,100.0,2.863333333,0.032833333, +2014-09-11 20:00:00,2.4050227680000003,1005.5575,0.0,100.0,2.893583333,0.037166667, +2014-09-11 21:00:00,0.0,1005.690333,0.0,100.0,3.768166667,0.0305, +2014-09-11 22:00:00,0.0,1005.931167,0.0,100.0,4.204083333,0.0775, +2014-09-11 23:00:00,0.0,1005.8355,0.0,100.0,4.785833333,0.15325, +2014-10-11 00:00:00,0.0,1005.834667,0.0,100.0,5.317,0.123916667,237.87655249999997 +2014-10-11 01:00:00,0.0,1006.054,0.0,100.0,5.268416666999999,0.038916667,237.8772191666667 +2014-10-11 02:00:00,0.0,1006.082,0.0,100.0,5.40725,0.02825,237.87855249999998 +2014-10-11 03:00:00,0.0,1006.275,0.0,100.0,5.48625,0.021583333,237.87821916666667 +2014-10-11 04:00:00,0.0,1006.384667,0.0,100.0,5.550666667000001,0.028083333,237.87855249999998 +2014-10-11 05:00:00,2.4050227680000003,1006.6,0.0,100.0,5.76175,0.072166667,237.87890249999998 +2014-10-11 06:00:00,2.4050227680000003,1006.406167,0.0,100.0,5.956833333,0.339083333,237.87995249999997 +2014-10-11 07:00:00,2.581734168,1007.0219999999999,0.819416667,100.0,6.326833333,1.101583333,237.8806525 +2014-10-11 08:00:00,0.0,1007.482,13.005,100.0,6.515,0.760416667,237.8806525 +2014-10-11 09:00:00,0.0,1007.720667,38.08666667,100.0,6.981083333,0.7496666670000001,237.8806525 +2014-10-11 10:00:00,0.0,1007.7535,72.7125,100.0,7.832333332999999,0.500416667,237.88231916666663 +2014-10-11 11:00:00,0.0,1007.743833,120.44166670000001,99.875,9.309166667000001,0.696,237.88231916666663 +2014-10-11 12:00:00,0.0,1007.290333,87.56833333,98.56666667,9.8175,1.325,237.88231916666663 +2014-10-11 13:00:00,0.0,1007.027167,57.9525,98.24166667,9.544166667,1.9075,237.88300249999998 +2014-10-11 14:00:00,0.0,1007.226333,83.03416667,93.275,9.5775,2.192166667,237.88300249999998 +2014-10-11 15:00:00,0.0,1007.107,66.62,91.46666667,9.790833333,2.15475,237.8844025 +2014-10-11 16:00:00,0.0,1007.101333,13.35625,98.05833333,8.975,1.972666667,237.88475250000002 +2014-10-11 17:00:00,0.0,1007.2061669999999,0.12633333300000002,100.0,8.534166667000001,0.70925,237.8854525 +2014-10-11 18:00:00,0.0,1007.343833,0.0,99.975,7.89475,0.054583333,237.8851025 +2014-10-11 19:00:00,0.0,1007.132,0.0,100.0,8.185416667,0.9298333329999999,237.8861525 +2014-10-11 20:00:00,0.0,1007.215833,0.0,100.0,7.760166667000001,0.369,237.8868525 +2014-10-11 21:00:00,0.0,1007.390333,0.0,100.0,7.220833333,0.0495,237.88851916666667 +2014-10-11 22:00:00,0.0,1007.5145,0.0,100.0,7.07625,0.363833333,237.88885249999998 +2014-10-11 23:00:00,0.0,1007.321,0.0,100.0,4.473833333,0.036416667,237.88990249999998 +2014-11-11 00:00:00,0.0,1007.3228330000001,0.0,100.0,4.2295,0.07525,237.95975249999995 +2014-11-11 01:00:00,0.0,1007.1771669999999,0.0,100.0,6.28475,0.294583333,237.95941916666666 +2014-11-11 02:00:00,0.0,1007.1395,0.0,100.0,7.405416667000001,0.33299999999999996,237.95941916666666 +2014-11-11 03:00:00,0.0,1007.0175,0.0,100.0,7.588916667,0.184416667,237.95875249999997 +2014-11-11 04:00:00,0.0,1006.547333,0.0,100.0,7.5165,0.41975,237.96008583333332 +2014-11-11 05:00:00,0.0,1006.2819999999999,0.0,100.0,6.909916667,0.53875,237.95941916666666 +2014-11-11 06:00:00,0.0,1005.880667,0.0,100.0,5.335,0.068833333,237.95908583333332 +2014-11-11 07:00:00,0.0,1005.555667,0.763,100.0,4.69375,0.273666667,237.9597525 +2014-11-11 08:00:00,0.0,1005.4785,9.960416667,100.0,4.705833333,0.38625,237.95875249999997 +2014-11-11 09:00:00,0.0,1005.4,21.6825,100.0,5.28475,0.316833333,237.95941916666663 +2014-11-11 10:00:00,0.0,1005.3465,65.765,100.0,6.407916667,0.6888333329999999,237.95875249999997 +2014-11-11 11:00:00,0.0,1004.923167,63.41583333,99.79166667,7.317083332999999,1.2993333329999999,237.95875249999997 +2014-11-11 12:00:00,0.0,1004.279333,55.2275,98.3,7.78775,1.475916667,237.9580525 +2014-11-11 13:00:00,0.0,1003.411333,69.38666667,96.975,8.4275,1.13225,237.95770249999998 +2014-11-11 14:00:00,0.0,1002.6315,73.09416667,96.6,8.463333333,1.84275,237.95735249999998 +2014-11-11 15:00:00,0.0,1001.846,32.0225,98.175,8.34775,0.819083333,237.95735249999998 +2014-11-11 16:00:00,0.0,1001.3758330000001,7.885083333,100.0,7.1718333329999995,0.95425,237.95700250000002 +2014-11-11 17:00:00,0.0,1000.8175,0.0545,100.0,6.79625,0.059000000000000004,237.95700250000002 +2014-11-11 18:00:00,0.0,1000.6785,0.0,100.0,6.3405,0.172583333,237.95700249999996 +2014-11-11 19:00:00,0.0,1000.373667,0.0,100.0,6.4615,0.054666667,237.95598583333333 +2014-11-11 20:00:00,0.0,1000.366667,0.0,100.0,6.03975,0.123583333,237.9556525 +2014-11-11 21:00:00,0.0,999.8591667000002,0.0,100.0,5.511166667,0.22058333300000002,237.95531916666667 +2014-11-11 22:00:00,0.0,999.8083332999998,0.0,100.0,5.354083333,0.06283333299999999,237.95598583333333 +2014-11-11 23:00:00,0.0,999.6701667000001,0.0,100.0,5.888416667,0.0010833330000000001,237.95631916666665 +2014-12-11 00:00:00,0.0,999.5833332999998,0.0,100.0,6.51025,0.029083333, +2014-12-11 01:00:00,0.0,999.3758332999998,0.0,100.0,7.033833333,0.291083333, +2014-12-11 02:00:00,0.0,999.243,0.0,100.0,7.3020000000000005,0.265416667, +2014-12-11 03:00:00,0.0,999.175,0.0,100.0,7.3295833329999995,0.9208333329999999, +2014-12-11 04:00:00,0.0,999.0605,0.0,100.0,7.459333332999999,0.3805, +2014-12-11 05:00:00,0.0,998.9486667000001,0.0,100.0,7.48725,0.12425, +2014-12-11 06:00:00,0.0,998.9061667000001,0.0,100.0,7.433166667,0.41333333299999997, +2014-12-11 07:00:00,0.0,998.9973332999999,0.747583333,100.0,7.51825,0.278083333, +2014-12-11 08:00:00,0.0,999.2623332999999,11.73425,100.0,7.54625,0.42325, +2014-12-11 09:00:00,0.0,999.5965,46.8125,100.0,8.118416667,0.40525, +2014-12-11 10:00:00,0.0,999.9658332999999,62.20416667,98.725,8.78,0.6153333329999999, +2014-12-11 11:00:00,0.0,1000.1833330000001,72.5825,97.36666667,9.358333333,0.93975, +2014-12-11 12:00:00,0.0,1000.2395,59.7,96.75833333,9.6975,0.48258333299999995, +2014-12-11 13:00:00,0.0,1000.520167,53.94083333,96.19166667,10.03833333,0.40533333299999996, +2014-12-11 14:00:00,0.0,1000.306167,51.19333333,95.95833333,10.14,0.598666667, +2014-12-11 15:00:00,0.0,1000.5145,22.23783333,96.6,10.18583333,0.09300000000000001, +2014-12-11 16:00:00,0.0,1000.8895,3.03825,99.35833333,9.460833333,0.37225, +2014-12-11 17:00:00,0.0,1001.256167,0.040833333,100.0,8.859166667,0.0125, +2014-12-11 18:00:00,0.0,1001.813667,0.0,100.0,8.658333333,0.083833333, +2014-12-11 19:00:00,2.4050227680000003,1002.281167,0.0,100.0,8.631666667000001,0.07825, +2014-12-11 20:00:00,2.4050227680000003,1002.645667,0.0,100.0,8.6275,0.025583333, +2014-12-11 21:00:00,4.815573912,1003.251333,0.0,100.0,8.240833333,0.008166666999999999, +2014-12-11 22:00:00,0.0,1003.6039999999999,0.0,100.0,8.525,0.12733333300000002, +2014-12-11 23:00:00,2.4050227680000003,1004.335167,0.0,100.0,8.469166667,0.39383333299999995, +2014-11-13 00:00:00,0.0,1004.9561669999999,0.0,100.0,8.551666667000001,0.2015,237.96075249999998 +2014-11-13 01:00:00,0.0,1005.3895,0.0,100.0,8.453333333,0.033666667000000004,237.96110249999995 +2014-11-13 02:00:00,0.0,1005.815833,0.0,100.0,8.459166667,0.055666667,237.96180249999998 +2014-11-13 03:00:00,0.0,1006.0930000000001,0.0,100.0,8.8025,0.031416667,237.96285250000003 +2014-11-13 04:00:00,0.0,1006.319333,0.0,100.0,8.461666667000001,0.0535,237.96285250000003 +2014-11-13 05:00:00,0.0,1006.5811669999999,0.0,100.0,8.773333333,0.320333333,237.96285250000003 +2014-11-13 06:00:00,2.44836312,1006.918,0.0,100.0,8.970833333,0.140166667,237.96283583333332 +2014-11-13 07:00:00,0.0,1007.0728330000001,0.6865,100.0,8.301666667000001,0.035416667,237.96318583333334 +2014-11-13 08:00:00,0.0,1007.4395,19.6775,100.0,8.4825,0.050333333,237.96285250000003 +2014-11-13 09:00:00,0.0,1007.8228330000001,59.4275,100.0,9.105833333,0.856583333,237.96285250000003 +2014-11-13 10:00:00,0.0,1008.290833,73.5475,100.0,9.061666667,0.994833333,237.9638525 +2014-11-13 11:00:00,0.0,1008.787333,118.75,100.0,9.275833333,0.40016666700000003,237.96485249999998 +2014-11-13 12:00:00,0.0,1008.718833,115.625,100.0,10.01666667,0.532833333,237.96451916666663 +2014-11-13 13:00:00,0.0,1008.8430000000001,76.85,99.43333333,10.74583333,1.0195,237.96451916666663 +2014-11-13 14:00:00,0.0,1008.648667,86.7875,97.60833333,11.43833333,1.0,237.9638525 +2014-11-13 15:00:00,0.0,1008.6916669999999,22.86416667,97.44166667,11.5425,0.71575,237.9638525 +2014-11-13 16:00:00,0.0,1008.5666669999999,4.6885,98.525,11.20166667,0.20625,237.96485249999998 +2014-11-13 17:00:00,0.0,1008.5583330000001,0.0019166670000000002,100.0,10.7875,0.42875,237.96485249999998 +2014-11-13 18:00:00,0.0,1008.901333,0.0,100.0,10.52916667,0.026166667,237.96485249999998 +2014-11-13 19:00:00,0.0,1009.091667,0.0,100.0,10.33083333,0.313416667,237.96520249999995 +2014-11-13 20:00:00,0.0,1009.094333,0.0,99.55833333,10.29166667,1.009583333,237.96590249999997 +2014-11-13 21:00:00,0.0,1009.393,0.0,99.875,10.20083333,0.59025,237.9652025 +2014-11-13 22:00:00,0.0,1009.2819999999999,0.0,99.75,10.08,0.5541666670000001,237.96485249999998 +2014-11-13 23:00:00,0.0,1008.966167,0.0,100.0,9.779166667,0.19125,237.96485249999998 +2014-11-14 00:00:00,0.0,1008.4245,0.0,97.73333333,9.638333333,0.578833333,237.96485249999998 +2014-11-14 01:00:00,0.0,1007.9035,0.0,97.49166667,9.465833332999999,0.231916667,237.96485249999998 +2014-11-14 02:00:00,0.0,1007.702167,0.0,98.38333333,9.329166667,0.111666667,237.96485249999998 +2014-11-14 03:00:00,0.0,1007.6215,0.0,99.3,9.314166667,0.28800000000000003,237.96625249999997 +2014-11-14 04:00:00,0.0,1007.155667,0.0,98.79166667,9.130833333,0.180333333,237.96453583333331 +2014-11-14 05:00:00,0.0,1006.975833,0.0,97.46666667,9.745833333,1.135333333,237.96556916666668 +2014-11-14 06:00:00,0.0,1006.5355,0.0,94.275,10.12583333,1.196916667,237.96451916666663 +2014-11-14 07:00:00,0.0,1006.352167,0.51175,95.09166667,10.18666667,0.871083333,237.96418583333332 +2014-11-14 08:00:00,0.0,1006.077167,6.751416667000001,92.65833333,10.3825,1.370333333,237.96485249999998 +2014-11-14 09:00:00,0.0,1005.875,24.83916667,90.0,10.6075,1.314083333,237.96485249999998 +2014-11-14 10:00:00,0.0,1005.723667,29.37916667,88.9,10.8425,1.196916667,237.96485249999998 +2014-11-14 11:00:00,0.0,1005.454333,30.70916667,89.24166667,10.86416667,1.19,237.96418583333332 +2014-11-14 12:00:00,0.0,1004.461333,44.92416667,90.15,10.99666667,1.6891666669999998,237.96351916666666 +2014-11-14 13:00:00,0.0,1003.886333,64.95166667,89.76666667,11.0725,1.7058333330000002,237.96351916666666 +2014-11-14 14:00:00,0.0,1003.518833,103.7025,87.71666667,11.3625,2.08875,237.96285250000003 +2014-11-14 15:00:00,0.0,1003.406167,35.935,89.11666667,11.02083333,1.7875833330000002,237.96285250000003 +2014-11-14 16:00:00,0.0,1003.1210000000001,8.268083333,90.15833333,10.39416667,2.1295833330000002,237.96285250000003 +2014-11-14 17:00:00,0.0,1002.6355,0.044666667,91.50833333,9.249166667,2.250083333,237.96418583333332 +2014-11-14 18:00:00,0.0,1002.547833,0.0,93.46666667,8.489916667000001,1.676916667,237.9638525 +2014-11-14 19:00:00,0.0,1002.5855,0.0,98.90833333,7.0135,0.39725,237.96418583333332 +2014-11-14 20:00:00,0.0,1002.4465,0.0,100.0,6.394916667,0.40299999999999997,237.96285250000003 +2014-11-14 21:00:00,0.0,1002.643833,0.0,100.0,7.044,1.322416667,237.96285250000003 +2014-11-14 22:00:00,0.0,1002.366667,0.0,98.725,7.539333332999999,1.72525,237.96318583333334 +2014-11-14 23:00:00,0.0,1002.102167,0.0,95.68333333,8.0805,1.5430833330000002,237.96285250000003 +2014-11-15 00:00:00,0.0,1001.778,0.0,99.54166667,7.4955,0.70175,237.96285250000003 +2014-11-15 01:00:00,0.0,1000.8960000000001,0.0,100.0,7.238666667,0.56225,237.96285250000003 +2014-11-15 02:00:00,0.0,1000.1196669999999,0.0,100.0,6.9285,0.727583333,237.96285250000003 +2014-11-15 03:00:00,0.0,999.5889999999999,0.0,100.0,6.450583332999999,0.255166667,237.96285250000003 +2014-11-15 04:00:00,0.0,999.2605,0.0,100.0,6.58225,0.38483333299999994,237.9621525 +2014-11-15 05:00:00,0.0,998.7446667000002,0.0,100.0,6.742083332999999,0.955833333,237.96110249999995 +2014-11-15 06:00:00,0.0,998.1395,0.0,100.0,6.9745,0.639,237.9611025 +2014-11-15 07:00:00,0.0,998.9991667000002,0.435166667,100.0,7.160833332999999,0.281166667,237.9621525 +2014-11-15 08:00:00,0.0,999.2798332999998,7.19375,100.0,7.540583333,0.111,237.96285250000003 +2014-11-15 09:00:00,0.0,999.5075,26.79916667,100.0,7.72875,0.161083333,237.9625025 +2014-11-15 10:00:00,0.0,999.3938332999999,70.97833333,95.95,8.376666667,0.41916666700000005,237.96285250000003 +2014-11-15 11:00:00,0.0,999.275,80.55,91.5,9.383333333,0.322,237.96180249999998 +2014-11-15 12:00:00,0.0,998.928,128.2333333,88.13333333,10.90916667,1.66175,237.96075249999998 +2014-11-15 13:00:00,0.0,998.078,155.2333333,85.27583333,12.17166667,1.9325,237.96075249999998 +2014-11-15 14:00:00,0.0,998.0605,33.25666667,91.71666667,10.65916667,2.234,237.96145249999998 +2014-11-15 15:00:00,0.0,998.097,13.79,91.10833333,10.64583333,1.2455,237.96250250000003 +2014-11-15 16:00:00,0.0,998.0258332999998,2.3961666669999997,93.80833333,10.57583333,0.7001666670000001,237.9621525 +2014-11-15 17:00:00,0.0,997.9368332999999,0.0,95.68333333,9.965,0.5608333329999999,237.96285250000003 +2014-11-15 18:00:00,0.0,997.9228332999999,0.0,97.79166667,9.746666667000001,0.239,237.96285250000003 +2014-11-15 19:00:00,0.0,997.932,0.0,99.78333333,9.430833332999999,0.077333333,237.9625025 +2014-11-15 20:00:00,0.0,997.3696667000002,0.0,100.0,9.293333333,0.436666667,237.96180249999998 +2014-11-15 21:00:00,29.28786943,997.2360000000001,0.0,100.0,8.99,0.235,237.96110249999995 +2014-11-15 22:00:00,34.07057105,996.9911667000001,0.0,100.0,8.82,0.125,237.95633583333336 +2014-11-15 23:00:00,24.40473439,996.7333332999999,0.0,100.0,8.904166667,0.21075,237.9512025 +2014-11-16 00:00:00,31.28536519,996.2231667000001,0.0,100.0,8.854166667000001,0.8375,237.94535249999998 +2014-11-16 01:00:00,29.18008985,995.6855,0.0,100.0,8.784166667000001,1.036333333,237.93510249999997 +2014-11-16 02:00:00,38.13672847,995.4833332999999,0.0,100.0,8.786666667,0.6055,237.91866916666666 +2014-11-16 03:00:00,34.35470532,995.0613332999999,0.0,100.0,8.786666667,0.318583333,237.88816916666667 +2014-11-16 04:00:00,24.866509100000002,994.7228332999998,0.0,100.0,8.779166667,0.431,237.84706916666664 +2014-11-16 05:00:00,29.80840968,994.7710000000001,0.0,100.0,8.756666667000001,0.41533333299999997,237.8008358333333 +2014-11-16 06:00:00,15.29242342,994.5513332999999,0.0,100.0,8.785833333,0.48316666700000005,237.75596916666666 +2014-11-16 07:00:00,27.09278069,994.5465,0.179416667,100.0,8.431666667,1.214166667,237.70835249999996 +2014-11-16 08:00:00,28.48697191,994.9,5.607583332999999,100.0,8.340833332999999,1.53875,237.6560025 +2014-11-16 09:00:00,8.991402936,995.2185,55.36166667,100.0,8.599166667,1.7516666669999998,237.62140250000002 +2014-11-16 10:00:00,0.0,995.9075,80.0825,99.95,8.851666667,1.866916667,237.60326916666668 +2014-11-16 11:00:00,5.650378008,996.1368332999999,76.52583333,99.625,8.715,1.4435,237.59671916666665 +2014-11-16 12:00:00,2.7408412319999997,996.2166667000001,93.435,99.01666667,8.806666667,1.389666667,237.59671916666665 +2014-11-16 13:00:00,2.82742572,996.2061667000002,87.12083333,98.625,8.9075,1.34875,237.5998358333333 +2014-11-16 14:00:00,0.0,996.2666667000001,42.44416667,98.15,8.620833333,1.057166667,237.60396916666664 +2014-11-16 15:00:00,0.0,996.5276667000002,25.52466667,98.65,8.7275,0.6645,237.6084025 +2014-11-16 16:00:00,0.0,996.4416667000002,7.827999999999999,100.0,8.5725,0.5325833329999999,237.6131691666666 +2014-11-16 17:00:00,2.768509584,996.625,0.044583332999999996,100.0,7.8040833329999995,1.27875,237.6190025 +2014-11-16 18:00:00,0.0,997.1421667000001,0.0,100.0,7.448333333,1.0455,237.62378583333336 +2014-11-16 19:00:00,0.0,997.4561667000002,0.0,100.0,7.977416667000001,1.2973333329999999,237.6275858333333 +2014-11-16 20:00:00,0.0,997.7193332999999,0.0,100.0,8.665,1.9075,237.63168583333334 +2014-11-16 21:00:00,0.0,997.9785,0.0,100.0,8.405,1.91375,237.6357858333333 +2014-11-16 22:00:00,0.0,998.2145,0.0,100.0,8.321666667,1.309083333,237.63953583333333 +2014-11-16 23:00:00,0.0,998.3381667000001,0.0,99.95833333,8.279166667,1.495166667,237.64260249999998 +2014-11-17 00:00:00,0.0,998.4583332999998,0.0,100.0,7.902166667,1.736083333,237.64671916666668 +2014-11-17 01:00:00,3.223812912,998.8255,0.0,99.95833333,8.178333333,2.0005,237.6488025 +2014-11-17 02:00:00,0.0,999.0416667000002,0.0,100.0,8.201666667000001,1.533833333,237.65221916666664 +2014-11-17 03:00:00,0.0,999.2811667000001,0.0,100.0,8.062583333,1.41925,237.65496916666666 +2014-11-17 04:00:00,0.0,999.5276667000002,0.0,100.0,7.7111666670000005,1.077583333,237.65840249999997 +2014-11-17 05:00:00,0.0,999.8166667000002,0.0,100.0,7.42875,0.573583333,237.66041916666666 +2014-11-17 06:00:00,2.471920008,1000.115833,0.0,100.0,7.428333332999999,0.622833333,237.66386916666667 +2014-11-17 07:00:00,2.586415272,1000.599167,0.197666667,100.0,7.265833333,0.41225,237.6672858333333 +2014-11-17 08:00:00,5.070986352,1000.9478330000001,19.62825,100.0,7.370916667,0.62075,237.6703525 +2014-11-17 09:00:00,2.6776724880000002,1001.5219999999999,56.38666667,100.0,8.443,1.221333333,237.6728025 +2014-11-17 10:00:00,0.0,1001.8965,148.4833333,99.56666667,9.364166667000001,1.055583333,237.67639250000002 +2014-11-17 11:00:00,0.0,1001.995167,125.075,97.69166667,9.724166667,0.981583333,237.6813525 +2014-11-17 12:00:00,0.0,1001.684167,133.24166670000002,96.56666667,9.8575,0.9238333329999999,237.68168583333332 +2014-11-17 13:00:00,0.0,1001.300833,96.13583333,93.78333333,10.16333333,1.000416667,237.6826858333333 +2014-11-17 14:00:00,0.0,1000.908333,102.5841667,94.21666667,10.35583333,0.60675,237.68440249999995 +2014-11-17 15:00:00,0.0,1001.1575,50.38666667,95.725,10.505,1.6736666669999998,237.68611916666669 +2014-11-17 16:00:00,0.0,1001.501333,5.067,99.71666667,9.829166667,1.23675,237.68781916666663 +2014-11-17 17:00:00,0.0,1001.513167,0.008916667,100.0,8.91,0.36908333299999996,237.6898858333333 +2014-11-17 18:00:00,0.0,1001.701333,0.0,100.0,8.575,0.382166667,237.6922691666667 +2014-11-17 19:00:00,0.0,1001.9561669999999,0.0,98.075,8.69,1.45225,237.6954025 +2014-11-17 20:00:00,0.0,1002.3215,0.0,99.06666667,8.455,0.293,237.69675249999997 +2014-11-17 21:00:00,0.0,1002.451333,0.0,100.0,7.9450833329999995,0.08033333299999999,237.69915249999997 +2014-11-17 22:00:00,0.0,1002.5,0.0,100.0,7.996083333,0.233916667,237.7018525 +2014-11-17 23:00:00,0.0,1002.622833,0.0,100.0,8.2825,0.42008333299999995,237.7039358333333 +2014-11-18 00:00:00,0.0,1002.598667,0.0,99.33333333,8.145,1.061166667,237.7049525 +2014-11-18 01:00:00,0.0,1002.414,0.0,97.44166667,8.143333333,1.123416667,237.70768583333333 +2014-11-18 02:00:00,0.0,1002.3610000000001,0.0,97.2,8.021166667000001,1.053,237.70938583333336 +2014-11-18 03:00:00,0.0,1002.511833,0.0,98.975,7.91225,0.960583333,237.71075249999998 +2014-11-18 04:00:00,0.0,1002.1771669999999,0.0,100.0,7.875666667000001,1.179083333,237.71281916666666 +2014-11-18 05:00:00,0.0,1002.363167,0.0,99.925,7.8935,1.268833333,237.71450249999998 +2014-11-18 06:00:00,0.0,1002.493,0.0,99.975,7.8660000000000005,1.170083333,237.7166025 +2014-11-18 07:00:00,0.0,1002.506167,0.178916667,100.0,8.120666667,1.591,237.71868583333332 +2014-11-18 08:00:00,0.0,1002.809667,6.841583332999999,99.975,8.200833333,1.670166667,237.71968583333333 +2014-11-18 09:00:00,0.0,1003.1978330000001,19.31333333,99.875,8.460833333,1.7888333330000001,237.72140249999998 +2014-11-18 10:00:00,0.0,1003.358333,20.21166667,100.0,8.586666667000001,1.6764166669999998,237.72311916666663 +2014-11-18 11:00:00,0.0,1003.207,33.64916667,99.65833333,8.699166667,2.392583333,237.7244525 +2014-11-18 12:00:00,2.8498829519999997,1003.045167,23.66166667,100.0,8.608333333,2.35025,237.72480249999998 +2014-11-18 13:00:00,0.0,1003.179833,25.09666667,99.51666667,8.8075,2.31775,237.72755249999997 +2014-11-18 14:00:00,0.0,1003.281167,17.07333333,98.48333333,8.869166667,2.082583333,237.72855249999998 +2014-11-18 15:00:00,15.33226786,1003.358333,8.864333333,98.875,8.6125,2.076916667,237.72995249999997 +2014-11-18 16:00:00,19.75147817,1003.674167,1.168666667,100.0,8.245833333,1.4990833330000002,237.7292525 +2014-11-18 17:00:00,18.67781568,1004.056167,0.0,100.0,8.042666667,1.107083333,237.7299525 +2014-11-18 18:00:00,31.31596006,1004.545667,0.0,100.0,7.930916667000001,1.5855,237.72788583333332 +2014-11-18 19:00:00,25.23080328,1005.115833,0.0,100.0,7.702833332999999,1.42325,237.72208583333335 +2014-11-18 20:00:00,22.860135600000003,1005.5575,0.0,100.0,7.523916667000001,1.5475833330000002,237.71041916666664 +2014-11-18 21:00:00,5.426725032,1006.079,0.0,100.0,7.401166667000001,1.2595,237.69433583333333 +2014-11-18 22:00:00,2.75423424,1006.4895,0.0,100.0,7.304416667000001,1.234,237.67651916666662 +2014-11-18 23:00:00,8.257623264,1006.856167,0.0,100.0,7.31125,1.37975,237.66146916666665 +2014-11-19 00:00:00,5.397994944,1007.1395,0.0,100.0,7.238166667000001,1.278666667,237.65221916666667 +2014-11-19 01:00:00,2.768150472,1007.4825,0.0,100.0,7.223666667000001,1.284583333,237.6477525 +2014-11-19 02:00:00,0.0,1008.0075,0.0,100.0,7.200083332999999,1.659416667,237.64398583333332 +2014-11-19 03:00:00,0.0,1008.6255,0.0,100.0,7.122416667,1.06125,237.64191916666667 +2014-11-19 04:00:00,0.0,1009.240833,0.0,100.0,7.090916667,1.15225,237.64125250000004 +2014-11-19 05:00:00,0.0,1009.8886669999999,0.0,100.0,6.994083333,0.974833333,237.6422525 +2014-11-19 06:00:00,0.0,1010.7435,0.0,100.0,7.038583332999999,1.118916667,237.64400249999997 +2014-11-19 07:00:00,0.0,1011.7698330000001,0.16899999999999998,100.0,7.129833333,0.909666667,237.64568583333332 +2014-11-19 08:00:00,0.0,1012.576833,7.225333332999999,100.0,7.065833333,0.79975,237.64810249999996 +2014-11-19 09:00:00,0.0,1013.5136669999999,26.6675,100.0,7.229333333,0.7659999999999999,237.65086916666667 +2014-11-19 10:00:00,0.0,1014.460167,45.44416667,97.35,7.5775,0.854166667,237.6532525 +2014-11-19 11:00:00,0.0,1014.934667,32.81166667,97.8,7.715583333,0.509416667,237.65633583333332 +2014-11-19 12:00:00,0.0,1015.2395,50.65,96.6,7.928666667000001,0.344416667,237.65873583333328 +2014-11-19 13:00:00,0.0,1015.622833,64.83583333,95.70833333,8.245,0.2425,237.66075249999997 +2014-11-19 14:00:00,0.0,1016.260167,52.00583333,95.675,8.500833333,0.147333333,237.66418583333336 +2014-11-19 15:00:00,0.0,1016.686,26.645,97.61666667,8.394166667,0.304333333,237.66693583333333 +2014-11-19 16:00:00,0.0,1017.3255,1.8283333330000002,99.30833333,8.113416667000001,0.194083333,237.6693025 +2014-11-19 17:00:00,2.4050227680000003,1017.797833,0.0,100.0,7.8499166670000005,0.07025,237.6717525 +2014-11-19 18:00:00,2.4050227680000003,1018.031167,0.0,100.0,7.441416667,0.313833333,237.67381916666662 +2014-11-19 19:00:00,0.0,1018.565833,0.0,100.0,7.142833333,0.10183333300000001,237.67655249999996 +2014-11-19 20:00:00,0.0,1019.092167,0.0,100.0,7.013,0.08791666699999999,237.67891916666667 +2014-11-19 21:00:00,0.0,1019.506167,0.0,100.0,6.88525,0.1155,237.6803025 +2014-11-19 22:00:00,0.0,1020.279,0.0,100.0,6.80075,0.025666667,237.6826858333333 +2014-11-19 23:00:00,0.0,1020.379833,0.0,100.0,6.85925,0.0,237.68473583333332 +2014-11-20 00:00:00,0.0,1020.420167,0.0,100.0,6.778666667,0.019333333,237.68678583333335 +2014-11-20 01:00:00,0.0,1020.383333,0.0,100.0,6.435416667,0.11175,237.6885025 +2014-11-20 02:00:00,0.0,1020.6825,0.0,100.0,5.357916667,0.0,237.69021916666665 +2014-11-20 03:00:00,0.0,1020.8965,0.0,100.0,5.1955,0.043,237.69260250000002 +2014-11-20 04:00:00,0.0,1020.916667,0.0,100.0,5.691416667,0.001583333,237.69470249999998 +2014-11-20 05:00:00,0.0,1020.924167,0.0,100.0,5.8615,0.08675,237.6967525 +2014-11-20 06:00:00,0.0,1021.413167,0.0,100.0,6.02425,0.16675,237.69915249999997 +2014-11-20 07:00:00,0.0,1021.541667,0.30425,100.0,6.23175,0.039,237.70118583333337 +2014-11-20 08:00:00,0.0,1021.959667,8.195416667,100.0,6.459166667000001,0.078166667,237.7032525 +2014-11-20 09:00:00,0.0,1022.0325,26.1725,100.0,6.57925,0.7214166670000001,237.70561916666665 +2014-11-20 10:00:00,0.0,1022.188167,44.96916667,97.275,6.889666667,0.9865,237.70700249999996 +2014-11-20 11:00:00,0.0,1022.1785,69.90833333,92.225,7.5625,1.021833333,237.7083858333333 +2014-11-20 12:00:00,0.0,1021.9675,93.1175,88.775,7.9378333329999995,0.968666667,237.70938583333336 +2014-11-20 13:00:00,0.0,1021.600833,84.81,87.25833333,8.247166667,0.7935,237.71040250000001 +2014-11-20 14:00:00,0.0,1021.445167,52.31,88.65833333,8.078583333,0.916166667,237.71248583333332 +2014-11-20 15:00:00,0.0,1021.182,26.70416667,91.7,7.57425,1.2944166670000001,237.7134858333333 +2014-11-20 16:00:00,0.0,1020.9285,4.708583333,94.31666667,7.0795,1.4644166669999998,237.7148525 +2014-11-20 17:00:00,0.0,1020.954833,0.0,96.48333333,6.5665,1.051916667,237.71625249999997 +2014-11-20 18:00:00,0.0,1021.181167,0.0,97.45833333,6.402,0.321083333,237.7180025 +2014-11-20 19:00:00,0.0,1021.266667,0.0,98.23333333,6.309083332999999,0.195333333,237.71968583333333 +2014-11-20 20:00:00,0.0,1021.333333,0.0,98.91666667,6.261416667000001,0.33399999999999996,237.7203525 +2014-11-20 21:00:00,0.0,1021.351333,0.0,100.0,6.261916667,0.41508333299999994,237.7224525 +2014-11-20 22:00:00,0.0,1021.415333,0.0,100.0,6.2808333329999995,0.34416666700000004,237.72345249999998 +2014-11-20 23:00:00,0.0,1020.946,0.0,99.98333333,4.71475,0.39175,237.7251525 +2014-11-21 00:00:00,0.0,1020.583333,0.0,100.0,2.5943333330000002,0.042166667000000005,237.7262025 +2014-11-21 01:00:00,0.0,1020.462667,0.0,100.0,3.587916667,0.076,237.72688583333334 +2014-11-21 02:00:00,0.0,1020.198667,0.0,100.0,4.158166667,0.321,237.72855249999998 +2014-11-21 03:00:00,0.0,1019.977167,0.0,100.0,3.54975,0.045166667,237.72890249999998 +2014-11-21 04:00:00,0.0,1019.5355,0.0,100.0,2.25875,0.010166666999999999,237.7306525 +2014-11-21 05:00:00,0.0,1019.148667,0.0,100.0,2.72275,0.0,237.7326525 +2014-11-21 06:00:00,0.0,1018.9188330000001,0.0,100.0,3.3658333330000003,0.005166667,237.73266916666668 +2014-11-21 07:00:00,0.0,1018.793,0.70175,100.0,3.617916667,0.0,237.73370250000002 +2014-11-21 08:00:00,0.0,1018.840333,17.820999999999998,100.0,2.956833333,0.000666667,237.73475249999998 +2014-11-21 09:00:00,0.0,1018.884667,46.53583333,100.0,4.592166667,0.02975,237.73541916666667 +2014-11-21 10:00:00,0.0,1018.8855,140.9666667,100.0,7.30125,0.5395,237.73641916666665 +2014-11-21 11:00:00,0.0,1018.5521669999999,146.4,91.70833333,8.203416667,1.3773333330000002,237.73780249999996 +2014-11-21 12:00:00,0.0,1018.100833,172.725,82.43333333,8.531666667,1.7336666669999998,237.73815249999996 +2014-11-21 13:00:00,0.0,1017.6675,140.7333333,78.7175,8.385,1.781833333,237.73885249999998 +2014-11-21 14:00:00,0.0,1017.1688330000001,144.8916667,75.99916667,8.570833333,1.32675,237.7399025 +2014-11-21 15:00:00,0.0,1016.768833,72.02083333,79.41666667,8.301083333,1.309833333,237.74095250000002 +2014-11-21 16:00:00,0.0,1016.477167,6.0645,96.41666667,6.38675,0.35575,237.74228583333334 +2014-11-21 17:00:00,0.0,1016.5583330000001,0.01175,100.0,3.06,0.093166667,237.74365249999997 +2014-11-21 18:00:00,0.0,1016.473667,0.0,100.0,1.277333333,0.10383333300000001,237.74538583333333 +2014-11-21 19:00:00,0.0,1016.3895,0.0,100.0,0.5505,0.004666667,237.74671916666662 +2014-11-21 20:00:00,0.0,1016.375,0.0,100.0,0.07475,0.025,237.74705249999997 +2014-11-21 21:00:00,0.0,1016.533333,0.0,100.0,-0.21991666699999998,0.00025,237.7484525 +2014-11-21 22:00:00,0.0,1016.541667,0.0,100.0,-0.30975,0.0,237.7491525 +2014-11-21 23:00:00,0.0,1016.447333,0.0,100.0,-0.38725,0.0,237.74948583333332 +2014-11-22 00:00:00,0.0,1016.027167,0.0,100.0,-0.481333333,0.0,237.75048583333333 +2014-11-22 01:00:00,0.0,1015.748667,0.0,100.0,-0.5598333329999999,0.002416667,237.75048583333333 +2014-11-22 02:00:00,0.0,1015.777167,0.0,100.0,-0.61475,0.004666667,237.7515025 +2014-11-22 03:00:00,0.0,1015.5715,0.0,100.0,-0.75225,0.0,237.7515025 +2014-11-22 04:00:00,0.0,1015.616667,0.0,100.0,-0.9990000000000001,0.0,237.75358583333332 +2014-11-22 05:00:00,0.0,1015.751333,0.0,100.0,-1.06675,0.0,237.75425249999998 +2014-11-22 06:00:00,0.0,1015.784667,0.0,100.0,-1.18525,0.0,237.7549191666667 +2014-11-22 07:00:00,0.0,1015.825,0.551416667,100.0,-1.180166667,0.0016666670000000001,237.7559525 +2014-11-22 08:00:00,0.0,1016.3505,10.50958333,100.0,-0.767333333,0.12925,237.75733583333331 +2014-11-22 09:00:00,0.0,1016.5285,60.95333333,100.0,0.48125,0.011083333,237.75768583333334 +2014-11-22 10:00:00,2.3987510640000003,1016.8185,101.7075,100.0,1.79425,0.10166666699999999,237.75801916666663 +2014-11-22 11:00:00,0.0,1017.005667,69.94333333,100.0,3.4875,1.101083333,237.75935249999998 +2014-11-22 12:00:00,0.0,1016.553,88.85166667,99.20833333,5.258416667,1.626333333,237.7607525 +2014-11-22 13:00:00,0.0,1016.065333,168.69166669999998,92.81666667,6.981583333,1.3859166669999998,237.7614525 +2014-11-22 14:00:00,0.0,1015.995167,96.04,91.925,7.092416667,1.462166667,237.76180250000002 +2014-11-22 15:00:00,0.0,1016.013167,47.3825,94.5,6.415916667,1.037666667,237.76250249999998 +2014-11-22 16:00:00,0.0,1016.083333,8.866416667000001,98.29166667,5.715333332999999,0.7220833329999999,237.76388583333335 +2014-11-22 17:00:00,0.0,1016.176333,0.006583333,100.0,4.658416667,0.554416667,237.7645525 +2014-11-22 18:00:00,0.0,1016.115333,0.0,100.0,3.479083333,0.15833333300000002,237.76523583333332 +2014-11-22 19:00:00,0.0,1016.068,0.0,100.0,2.132916667,0.018333333,237.76590249999995 +2014-11-22 20:00:00,0.0,1016.470667,0.0,100.0,3.216416667,0.095666667,237.76765249999997 +2014-11-22 21:00:00,0.0,1017.065833,0.0,100.0,4.784833333,0.77425,237.7676358333333 +2014-11-22 22:00:00,0.0,1017.057,0.0,100.0,5.0095,0.939666667,237.76831916666663 +2014-11-22 23:00:00,0.0,1017.091667,0.0,100.0,4.81275,1.45425,237.76831916666666 +2014-11-23 00:00:00,0.0,1017.143,0.0,100.0,4.593833333,1.3998333330000001,237.76965249999998 +2014-11-23 01:00:00,0.0,1017.065333,0.0,100.0,4.553333333,1.0716666670000001,237.77035249999997 +2014-11-23 02:00:00,0.0,1017.158333,0.0,100.0,4.305833333,0.604166667,237.77140250000002 +2014-11-23 03:00:00,0.0,1017.008333,0.0,100.0,3.7206666669999997,0.262916667,237.77175250000002 +2014-11-23 04:00:00,0.0,1016.961833,0.0,100.0,3.8605,0.232583333,237.77241916666665 +2014-11-23 05:00:00,0.0,1016.982,0.0,100.0,4.023666667,0.43075,237.7730858333333 +2014-11-23 06:00:00,0.0,1016.8035,0.0,100.0,4.0625,1.058333333,237.77411916666665 +2014-11-23 07:00:00,0.0,1016.770667,0.311833333,100.0,3.753666667,1.12925,237.77445249999997 +2014-11-23 08:00:00,0.0,1017.266667,10.21141667,100.0,3.675416667,0.9581666670000001,237.77480249999996 +2014-11-23 09:00:00,0.0,1017.6289999999999,44.68583333,100.0,4.247833333,0.8856666670000001,237.77618583333333 +2014-11-23 10:00:00,0.0,1017.6355,104.3075,100.0,5.498833332999999,1.293166667,237.77585249999996 +2014-11-23 11:00:00,0.0,1017.402167,155.3416667,95.04166667,7.630666667000001,1.734,237.7761858333333 +2014-11-23 12:00:00,0.0,1016.718333,189.0333333,88.36666667,8.765833333,1.714083333,237.7761858333333 +2014-11-23 13:00:00,0.0,1016.032833,168.6583333,85.975,9.254166667,1.8180833330000001,237.77618583333333 +2014-11-23 14:00:00,0.0,1015.3175,120.225,86.05,9.424166667,1.3614166669999999,237.7771858333333 +2014-11-23 15:00:00,0.0,1014.854333,61.17333333,87.40833333,8.926666667000001,1.1295,237.7771858333333 +2014-11-23 16:00:00,0.0,1014.2389999999999,8.933416667000001,94.28333333,7.81825,1.2830000000000001,237.7782025 +2014-11-23 17:00:00,0.0,1013.993833,0.0075,99.45,6.848416667,0.751833333,237.77925249999998 +2014-11-23 18:00:00,0.0,1013.675,0.0,100.0,8.146666667,2.1385,237.7799525 +2014-11-23 19:00:00,0.0,1013.593833,0.0,100.0,7.78225,2.4881666669999998,237.78030249999998 +2014-11-23 20:00:00,0.0,1013.6916669999999,0.0,100.0,7.90275,2.2680000000000002,237.78030249999998 +2014-11-23 21:00:00,0.0,1013.633333,0.0,100.0,8.041083333,2.248583333,237.78170249999997 +2014-11-23 22:00:00,0.0,1013.686,0.0,100.0,7.952916667,2.502166667,237.7820525 +2014-11-23 23:00:00,0.0,1013.911833,0.0,100.0,7.73575,2.4468333330000003,237.78271916666665 +2014-11-24 00:00:00,0.0,1013.958333,0.0,100.0,7.3870000000000005,2.517833333,237.78305249999997 +2014-11-24 01:00:00,0.0,1013.8166669999999,0.0,98.725,7.1725,2.291416667,237.7833858333333 +2014-11-24 02:00:00,0.0,1013.752167,0.0,99.26666667,6.948833333,2.110416667,237.78440249999997 +2014-11-24 03:00:00,0.0,1013.543,0.0,100.0,6.592583332999999,0.47883333299999997,237.7851025 +2014-11-24 04:00:00,0.0,1013.738167,0.0,100.0,6.125583333,0.310666667,237.7851025 +2014-11-24 05:00:00,0.0,1014.4115,0.0,100.0,6.0708333329999995,0.33766666700000003,237.78580250000002 +2014-11-24 06:00:00,0.0,1015.492667,0.0,100.0,6.507083333,0.113416667,237.78648583333333 +2014-11-24 07:00:00,0.0,1016.5219999999999,0.031916667,100.0,6.566916667,0.231333333,237.78781916666665 +2014-11-24 08:00:00,0.0,1017.430333,4.008833333,100.0,6.473916667,0.338416667,237.7881525 +2014-11-24 09:00:00,2.483419608,1018.170667,26.25333333,100.0,6.610583332999999,0.21825,237.7888525 +2014-11-24 10:00:00,0.0,1018.922,48.77916667,100.0,7.0214166670000004,0.176083333,237.79025249999998 +2014-11-24 11:00:00,0.0,1019.4561669999999,83.22916667,98.14166667,7.741416667,0.534083333,237.79058583333332 +2014-11-24 12:00:00,0.0,1019.784667,109.635,95.51666667,8.579166667,0.6781666670000001,237.79091916666664 +2014-11-24 13:00:00,0.0,1019.8,118.19166670000001,89.98333333,9.79,1.7484166669999999,237.7922525 +2014-11-24 14:00:00,0.0,1019.9895,40.105,91.5,9.0475,1.078833333,237.7922525 +2014-11-24 15:00:00,0.0,1020.147833,59.1175,90.56666667,8.1805,0.45583333299999995,237.7933025 +2014-11-24 16:00:00,0.0,1020.5825,5.60375,98.89166667,5.247916667,0.22975,237.7946691666667 +2014-11-24 17:00:00,0.0,1021.027667,0.016416667,100.0,2.790666667,0.32125,237.7953525 +2014-11-24 18:00:00,0.0,1021.258333,0.0,100.0,1.4691666669999999,0.09475,237.79568583333332 +2014-11-24 19:00:00,0.0,1021.484667,0.0,100.0,0.628833333,0.05575,237.79636916666666 +2014-11-24 20:00:00,0.0,1021.794333,0.0,100.0,-0.08641666699999999,0.0385,237.79775249999997 +2014-11-24 21:00:00,0.0,1022.174167,0.0,100.0,-0.434833333,0.08583333300000001,237.79775249999997 +2014-11-24 22:00:00,0.0,1022.45,0.0,100.0,-0.913166667,0.106333333,237.79810249999994 +2014-11-24 23:00:00,0.0,1022.266667,0.0,100.0,-1.22975,0.013833333,237.79945249999994 +2014-11-25 00:00:00,0.0,1022.127167,0.0,100.0,-1.625583333,0.001166667,237.79978583333332 +2014-11-25 01:00:00,0.0,1022.0438330000001,0.0,100.0,-0.9926666670000001,0.033416667000000004,237.80011916666663 +2014-11-25 02:00:00,0.0,1021.8465,0.0,100.0,-0.8685,0.013583333000000001,237.80115249999997 +2014-11-25 03:00:00,0.0,1021.564,0.0,100.0,-1.2511666670000001,0.090833333,237.8008025 +2014-11-25 04:00:00,0.0,1021.575,0.0,100.0,-1.321583333,0.053,237.80255250000002 +2014-11-25 05:00:00,0.0,1021.725,0.0,100.0,-1.389583333,0.16925,237.80220250000002 +2014-11-25 06:00:00,0.0,1021.491667,0.0,100.0,-1.118833333,0.3025,237.80220250000002 +2014-11-25 07:00:00,0.0,1021.463167,0.1855,100.0,-0.94875,0.30575,237.80255250000002 +2014-11-25 08:00:00,0.0,1021.4535,6.846833332999999,100.0,-0.6645,0.643916667,237.80325249999999 +2014-11-25 09:00:00,0.0,1021.408333,35.76,100.0,-0.404916667,1.2429999999999999,237.8032525 +2014-11-25 10:00:00,0.0,1021.373667,67.66333333,100.0,0.230166667,1.208,237.8036025 +2014-11-25 11:00:00,2.6895373439999997,1021.0210000000001,104.70833329999999,100.0,0.884,1.321083333,237.8039525 +2014-11-25 12:00:00,0.0,1020.4126669999999,161.7666667,100.0,1.846416667,0.75175,237.80430249999998 +2014-11-25 13:00:00,0.0,1019.796,178.79166669999998,99.95,3.2375,1.5663333330000002,237.80430249999998 +2014-11-25 14:00:00,0.0,1019.314,135.79166669999998,96.99166667,4.568583333,1.6365833330000001,237.8046525 +2014-11-25 15:00:00,0.0,1018.779333,56.06666667,97.175,4.859583333,1.097166667,237.80498583333335 +2014-11-25 16:00:00,0.0,1018.1675,4.7585,99.90833333,3.102166667,0.130916667,237.80565249999998 +2014-11-25 17:00:00,0.0,1017.936833,0.0,100.0,1.161666667,0.326333333,237.80665249999996 +2014-11-25 18:00:00,0.0,1017.8021669999999,0.0,100.0,0.239833333,0.13625,237.8077025 +2014-11-25 19:00:00,0.0,1017.666667,0.0,100.0,-0.741583333,0.007416666999999999,237.8080525 +2014-11-25 20:00:00,0.0,1017.590333,0.0,100.0,-1.01525,0.0048333329999999996,237.8087525 +2014-11-25 21:00:00,0.0,1017.370167,0.0,100.0,-1.477416667,0.015333333000000001,237.8087525 +2014-11-25 22:00:00,0.0,1017.3,0.0,100.0,-1.8534166669999999,0.007166667,237.80873583333334 +2014-11-25 23:00:00,0.0,1017.193833,0.0,100.0,-2.056666667,0.023916667000000003,237.80908583333334 +2014-11-26 00:00:00,0.0,1016.759167,0.0,100.0,-1.9709999999999999,0.0025833329999999997,237.80941916666666 +2014-11-26 01:00:00,0.0,1016.209167,0.0,100.0,-1.341833333,0.028916667000000004,237.80941916666666 +2014-11-26 02:00:00,0.0,1015.6626669999999,0.0,100.0,-0.44783333299999994,0.400416667,237.80975249999997 +2014-11-26 03:00:00,0.0,1015.075833,0.0,100.0,-0.044333332999999996,0.477916667,237.81008583333332 +2014-11-26 04:00:00,0.0,1014.689,0.0,100.0,0.07400000000000001,0.7080833329999999,237.8107525 +2014-11-26 05:00:00,0.0,1014.416667,0.0,100.0,0.18225,0.268,237.8107525 +2014-11-26 06:00:00,0.0,1014.155667,0.0,100.0,0.0655,0.1495,237.8107525 +2014-11-26 07:00:00,0.0,1013.8785,0.33075,100.0,0.201916667,0.49558333299999996,237.8107525 +2014-11-26 08:00:00,0.0,1013.730667,10.07516667,100.0,0.226916667,0.485333333,237.81110249999998 +2014-11-26 09:00:00,0.0,1013.726333,35.4025,100.0,0.582416667,0.37091666700000003,237.81110249999998 +2014-11-26 10:00:00,2.583300504,1013.6855,48.74833333,100.0,1.394250369,0.7105,237.81180249999997 +2014-11-26 11:00:00,0.0,1013.318833,81.49416667,99.925,2.286,1.219,237.8118025 +2014-11-26 12:00:00,0.0,1012.6815,55.36416667,96.125,3.897916667,1.241583333,237.81180249999997 +2014-11-26 13:00:00,0.0,1012.059167,61.44583333,92.63333333,4.407083333,1.049833333,237.81250249999997 +2014-11-26 14:00:00,0.0,1011.5438330000001,52.395,88.74166667,4.98425,1.339,237.8114525 +2014-11-26 15:00:00,0.0,1011.243833,27.66666667,88.29166667,5.0295,1.32925,237.81110249999998 +2014-11-26 16:00:00,0.0,1010.990333,9.414583333,88.71666667,4.623,1.5788333330000002,237.8128525 +2014-11-26 17:00:00,0.0,1010.836833,0.0,89.55,4.3525,1.341666667,237.8128525 +2014-11-26 18:00:00,0.0,1010.815333,0.0,90.70833333,4.0715,0.6908333329999999,237.81318583333334 +2014-11-26 19:00:00,0.0,1010.758333,0.0,92.98333333,3.843333333,0.36216666700000005,237.81351916666665 +2014-11-26 20:00:00,0.0,1010.477167,0.0,95.16666667,3.620166667,0.11508333300000001,237.81318583333334 +2014-11-26 21:00:00,0.0,1010.189,0.0,96.5,3.488333333,0.111916667,237.81318583333334 +2014-11-26 22:00:00,0.0,1009.948667,0.0,96.70833333,3.4555,0.199333333,237.81351916666665 +2014-11-26 23:00:00,0.0,1009.607,0.0,95.23333333,3.887,0.626416667,237.81418583333334 +2014-11-27 00:00:00,0.0,1009.347333,0.0,93.76666667,3.936416667,0.9540000000000001,237.81451916666666 +2014-11-27 01:00:00,0.0,1008.7446669999999,0.0,94.69166667,3.63575,1.0433333329999999,237.81520250000003 +2014-11-27 02:00:00,0.0,1008.202167,0.0,95.08333333,3.44625,0.699416667,237.8148525 +2014-11-27 03:00:00,0.0,1007.773167,0.0,96.1,2.907083333,0.21891666699999998,237.81451916666666 +2014-11-27 04:00:00,0.0,1007.388167,0.0,94.59166667,3.114666667,0.43291666700000003,237.8148525 +2014-11-27 05:00:00,0.0,1007.084167,0.0,93.76666667,3.068666667,0.327416667,237.8155525 +2014-11-27 06:00:00,0.0,1006.711833,0.0,94.56666667,2.99575,0.602833333,237.8159025 +2014-11-27 07:00:00,0.0,1006.707,0.319416667,93.74166667,3.104333333,0.8470833329999999,237.81520249999997 +2014-11-27 08:00:00,0.0,1006.5728330000001,14.62191667,93.94166667,3.303,1.037416667,237.8159025 +2014-11-27 09:00:00,0.0,1006.689,42.1825,92.70833333,3.679583333,1.2685,237.8162525 +2014-11-27 10:00:00,0.0,1006.398667,66.04416667,91.06666667,4.1508333330000005,1.4178333330000001,237.81695249999999 +2014-11-27 11:00:00,0.0,1005.946,137.875,88.71666667,4.916,1.6513333330000002,237.81695249999999 +2014-11-27 12:00:00,0.0,1005.477167,152.8833333,87.28333333,5.617166667,1.9184166669999998,237.81695249999999 +2014-11-27 13:00:00,0.0,1005.087667,90.5725,87.725,5.7745,1.80975,237.81660249999996 +2014-11-27 14:00:00,0.0,1004.590333,68.33,87.74166667,5.958583332999999,1.609,237.81728583333333 +2014-11-27 15:00:00,0.0,1004.491667,30.5275,88.28333333,5.642583332999999,1.295166667,237.81761916666665 +2014-11-27 16:00:00,0.0,1004.701333,2.1270833330000003,90.03333333,5.177333333,0.684,237.81795250000002 +2014-11-27 17:00:00,2.444019024,1004.888167,0.0,96.98333333,4.75725,0.810333333,237.81861916666665 +2014-11-27 18:00:00,5.1770027039999995,1004.826333,0.0,99.60833333,4.397583333,0.754416667,237.8189525 +2014-11-27 19:00:00,7.378009464,1005.0583330000001,0.0,100.0,4.234916667,0.46875,237.81828583333333 +2014-11-27 20:00:00,2.4471118080000003,1005.1965,0.0,100.0,4.0679166669999995,0.259333333,237.8189525 +2014-11-27 21:00:00,0.0,1005.1035,0.0,100.0,3.603583333,0.265833333,237.8196525 +2014-11-27 22:00:00,2.4904171440000002,1005.040333,0.0,100.0,2.556916667,0.20275,237.8196525 +2014-11-27 23:00:00,0.0,1004.9895,0.0,100.0,1.8223333330000002,0.035416667,237.82035249999998 +2014-11-28 00:00:00,0.0,1005.301333,0.0,100.0,1.059083333,0.091666667,237.8200025 +2014-11-28 01:00:00,0.0,1005.1916669999999,0.0,100.0,0.983666667,0.230416667,237.8210358333333 +2014-11-28 02:00:00,0.0,1005.354833,0.0,100.0,0.11666666699999999,0.028833333,237.82105249999998 +2014-11-28 03:00:00,0.0,1005.484667,0.0,100.0,0.030083332999999997,0.132166667,237.82205249999996 +2014-11-28 04:00:00,0.0,1005.824167,0.0,100.0,1.43575,0.077,237.82171916666664 +2014-11-28 05:00:00,0.0,1005.882,0.0,100.0,3.327666667,1.001833333,237.8223858333333 +2014-11-28 06:00:00,0.0,1006.1978330000001,0.0,100.0,3.787666667,1.1301666670000001,237.8230525 +2014-11-28 07:00:00,0.0,1006.4789999999999,0.1085,100.0,3.8195,1.1410833329999999,237.82306916666664 +2014-11-28 08:00:00,0.0,1006.784667,6.635833333,100.0,3.614833333,1.599083333,237.82341916666667 +2014-11-28 09:00:00,0.0,1007.1978330000001,19.12416667,100.0,3.742166667,1.3385833329999999,237.82480250000003 +2014-11-28 10:00:00,0.0,1007.815833,29.98,99.99166667,3.643416667,2.121833333,237.82480250000003 +2014-11-28 11:00:00,0.0,1007.459167,47.02,99.95,3.907,2.898,237.82515250000003 +2014-11-28 12:00:00,0.0,1007.3535,45.7675,98.93333333,4.399083333,1.642333333,237.8255025 +2014-11-28 13:00:00,0.0,1006.8925,33.88083333,98.49166667,4.251416667,3.1389166669999997,237.82515250000003 +2014-11-28 14:00:00,0.0,1006.834667,24.57,98.44166667,4.325583333,2.86675,237.82655249999996 +2014-11-28 15:00:00,0.0,1006.981167,14.25158333,97.98333333,4.352416667,3.2345,237.82655249999996 +2014-11-28 16:00:00,0.0,1007.394333,1.960166667,98.09166667,4.17525,2.991583333,237.8272525 +2014-11-28 17:00:00,0.0,1007.856167,0.0,98.3,4.00875,3.1180000000000003,237.8275858333333 +2014-11-28 18:00:00,0.0,1008.006167,0.0,98.625,3.8231666669999997,3.222333333,237.8275858333333 +2014-11-28 19:00:00,0.0,1008.311,0.0,98.03333333,3.682083333,3.339833333,237.82791916666667 +2014-11-28 20:00:00,0.0,1008.6645,0.0,97.98333333,3.543916667,3.0810000000000004,237.82891916666665 +2014-11-28 21:00:00,0.0,1009.044333,0.0,98.325,3.403916667,2.975666667,237.82925249999997 +2014-11-28 22:00:00,0.0,1009.359667,0.0,98.51666667,3.313333333,2.930416667,237.82925249999997 +2014-11-28 23:00:00,0.0,1009.616667,0.0,98.55,3.201916667,2.899916667,237.82995249999996 +2014-11-29 00:00:00,0.0,1009.622833,0.0,98.75,2.99525,3.47625,237.83065249999996 +2014-11-29 01:00:00,0.0,1009.8285,0.0,99.14166667,2.811416667,3.004833333,237.83030250000002 +2014-11-29 02:00:00,0.0,1009.9145,0.0,98.8,2.746416667,3.114666667,237.83100249999998 +2014-11-29 03:00:00,0.0,1010.023667,0.0,98.64166667,2.67275,3.008833333,237.83201916666667 +2014-11-29 04:00:00,0.0,1009.9,0.0,98.65833333,2.718666667,2.610833333,237.83268583333333 +2014-11-29 05:00:00,0.0,1009.993,0.0,98.33333333,2.6645,2.764916667,237.83301916666667 +2014-11-29 06:00:00,0.0,1010.177667,0.0,98.6,2.5771666669999997,3.045833333,237.83268583333336 +2014-11-29 07:00:00,0.0,1010.6075,0.039,98.73333333,2.595583333,2.6574166669999997,237.83301916666667 +2014-11-29 08:00:00,0.0,1011.029833,3.134416667,98.54166667,2.6541666669999997,2.40725,237.8337025 +2014-11-29 09:00:00,0.0,1011.369333,11.95166667,98.4,2.776416667,2.540833333,237.8344025 +2014-11-29 10:00:00,0.0,1011.629833,22.36916667,97.54166667,3.0484166669999997,2.1781666669999997,237.8354525 +2014-11-29 11:00:00,0.0,1011.277167,30.47166667,96.10833333,3.3425,1.42175,237.8344025 +2014-11-29 12:00:00,0.0,1010.950833,33.2575,95.51666667,3.5011666669999997,1.5250833330000002,237.8347525 +2014-11-29 13:00:00,0.0,1010.502167,30.82666667,95.23333333,3.573416667,1.767916667,237.8354525 +2014-11-29 14:00:00,0.0,1010.576333,20.075,94.84166667,3.599166667,1.663666667,237.8354525 +2014-11-29 15:00:00,0.0,1010.598667,9.657666667,95.2,3.681333333,1.263583333,237.83611916666666 +2014-11-29 16:00:00,0.0,1010.518,1.6873333330000002,95.025,3.592333333,1.35825,237.83578583333335 +2014-11-29 17:00:00,0.0,1010.6569999999999,0.0,95.74166667,3.465,1.035,237.83611916666666 +2014-11-29 18:00:00,0.0,1010.606167,0.0,96.05,3.4283333330000003,1.138833333,237.83711916666664 +2014-11-29 19:00:00,0.0,1010.9478330000001,0.0,95.975,3.3256666669999997,1.077,237.83745249999996 +2014-11-29 20:00:00,0.0,1011.091667,0.0,95.65833333,3.22625,1.331083333,237.83920250000003 +2014-11-29 21:00:00,0.0,1010.845167,0.0,95.98333333,3.201333333,1.44675,237.83815249999998 +2014-11-29 22:00:00,0.0,1010.6855,0.0,96.33333333,3.129666667,1.1475,237.83920250000003 +2014-11-29 23:00:00,0.0,1010.575,0.0,96.6,3.147416667,1.2844166670000001,237.8388525 +2014-11-30 00:00:00,0.0,1010.402167,0.0,96.66666667,3.19875,1.186416667,237.83920250000003 +2014-11-30 01:00:00,0.0,1009.984167,0.0,96.925,3.198416667,1.390166667,237.8395525 +2014-11-30 02:00:00,0.0,1009.640333,0.0,97.35833333,3.163333333,1.305583333,237.83885250000003 +2014-11-30 03:00:00,0.0,1009.511833,0.0,97.79166667,3.0306666669999998,1.162833333,237.84021916666666 +2014-11-30 04:00:00,0.0,1009.2855,0.0,98.23333333,2.848583333,1.347833333,237.8395525 +2014-11-30 05:00:00,0.0,1008.990333,0.0,98.78333333,2.715666667,1.544,237.83988583333334 +2014-11-30 06:00:00,0.0,1008.8355,0.0,99.15,2.65,1.427583333,237.83988583333337 +2014-11-30 07:00:00,0.0,1008.940833,0.054916667,99.3,2.599916667,1.4104166669999998,237.84021916666666 +2014-11-30 08:00:00,0.0,1009.2715,2.81125,99.48333333,2.624583333,1.1763333329999999,237.84088583333335 +2014-11-30 09:00:00,0.0,1009.3166669999999,11.11541667,99.36666667,2.628916667,1.4106666669999999,237.8415525 +2014-11-30 10:00:00,0.0,1009.193833,18.50416667,99.5,2.6476666669999998,1.8313333330000001,237.8415525 +2014-11-30 11:00:00,0.0,1008.830667,23.34166667,99.56666667,2.7334166669999997,1.5745,237.84190249999997 +2014-11-30 12:00:00,0.0,1008.3613330000001,24.70583333,99.36666667,2.74725,1.7370833330000002,237.84190250000003 +2014-11-30 13:00:00,0.0,1007.559167,22.87333333,99.24166667,2.750833333,1.84325,237.8415525 +2014-11-30 14:00:00,0.0,1006.950833,14.61166667,99.50833333,2.8370833330000003,1.2995,237.8422525 +2014-11-30 15:00:00,0.0,1006.686833,6.3515,99.80833333,2.7755,1.722833333,237.84225249999997 +2014-11-30 16:00:00,0.0,1006.6855,0.818583333,99.99166667,2.719166667,1.296583333,237.84190249999997 +2014-11-30 17:00:00,0.0,1006.488167,0.0,100.0,2.62275,1.7795833330000002,237.84330249999996 +2014-11-30 18:00:00,0.0,1006.651333,0.0,100.0,2.55475,1.4124166669999998,237.84330249999996 +2014-11-30 19:00:00,0.0,1006.573667,0.0,100.0,2.526,1.384333333,237.8436525 +2014-11-30 20:00:00,0.0,1006.247333,0.0,100.0,2.463916667,1.51825,237.84330249999996 +2014-11-30 21:00:00,0.0,1005.909167,0.0,100.0,2.535083333,1.6660833330000002,237.8436525 +2014-11-30 22:00:00,0.0,1005.65,0.0,100.0,2.6095,1.531833333,237.8436525 +2014-11-30 23:00:00,0.0,1005.540333,0.0,100.0,2.6124166669999997,2.025666667,237.8440025 +2014-01-12 00:00:00,0.0,1005.368,0.0,100.0,2.527416667,2.138083333,238.05374633333335 +2014-01-12 01:00:00,0.0,1005.275833,0.0,100.0,2.57625,2.193833333,238.053104 +2014-01-12 02:00:00,0.0,1005.070167,0.0,100.0,2.7005,2.030333333,238.05247733333331 +2014-01-12 03:00:00,0.0,1004.9355,0.0,100.0,3.08075,2.103166667,238.05183499999998 +2014-01-12 04:00:00,0.0,1004.623667,0.0,100.0,3.124083333,3.3875833330000003,238.05117699999997 +2014-01-12 05:00:00,4.174873968,1004.393,0.0,99.48333333,2.91675,4.2265,238.05018999999996 +2014-01-12 06:00:00,0.0,1004.648667,0.0,97.29166667,2.78825,4.119833333,238.05018999999996 +2014-01-12 07:00:00,0.0,1004.576333,0.010333333,97.45,2.397416667,4.41425,238.04925000000003 +2014-01-12 08:00:00,0.0,1005.155333,2.012166667,97.7,2.078833333,4.390083333,238.04831000000004 +2014-01-12 09:00:00,0.0,1005.3535,11.06408333,97.75833333,1.87625,4.527,238.04765200000006 +2014-01-12 10:00:00,0.0,1005.734667,22.86083333,98.2,1.7033333330000002,4.65975,238.04765200000006 +2014-01-12 11:00:00,0.0,1005.725,27.16333333,97.73333333,1.8295,4.850166667,238.046665 +2014-01-12 12:00:00,0.0,1005.161333,23.01666667,97.69166667,1.90725,5.000666667,238.04798100000002 +2014-01-12 13:00:00,0.0,1004.858333,28.7325,94.16666667,1.7329166669999998,5.553,238.04699399999996 +2014-01-12 14:00:00,0.0,1004.7035,24.29916667,92.80833333,1.6525833330000002,5.178583333,238.047323 +2014-01-12 15:00:00,0.0,1004.781167,8.6275,93.21666667,1.16775,4.418083333,238.046665 +2014-01-12 16:00:00,0.0,1005.079833,1.0865,93.46666667,0.809333333,4.7838333330000005,238.047323 +2014-01-12 17:00:00,0.0,1005.3755,0.0,93.96666667,0.851666667,4.712416667,238.04633599999997 +2014-01-12 18:00:00,0.0,1005.8105,0.0,94.45833333,0.54475,4.46,238.04570933333335 +2014-01-12 19:00:00,0.0,1005.920667,0.0,94.7,0.4985,3.772,238.04539599999998 +2014-01-12 20:00:00,0.0,1006.0465,0.0,95.81666667,0.46425,4.119083333,238.04508266666667 +2014-01-12 21:00:00,0.0,1006.086833,0.0,95.55,0.230833333,3.99075,238.045396 +2014-01-12 22:00:00,0.0,1006.041667,0.0,98.59166667,-0.12008333300000001,3.400583333,238.04602266666666 +2014-01-12 23:00:00,0.0,1005.940333,0.0,97.025,-0.08866666699999999,2.84775,238.04539599999998 +2014-02-12 00:00:00,0.0,1006.126333,0.0,95.96666667,-0.02575,2.69725,238.03450658333335 +2014-02-12 01:00:00,0.0,1006.116667,0.0,95.39166667,-0.10116666699999999,2.592916667,238.03501414999997 +2014-02-12 02:00:00,0.0,1006.288167,0.0,94.79166667,-0.30475,2.257833333,238.03476036666666 +2014-02-12 03:00:00,0.0,1006.320167,0.0,94.74166667,-0.3985,1.951583333,238.03450658333335 +2014-02-12 04:00:00,0.0,1006.208333,0.0,95.125,-0.5345833329999999,1.65325,238.03426488333335 +2014-02-12 05:00:00,0.0,1006.281167,0.0,94.95,-0.660333333,2.471666667,238.03401109999996 +2014-02-12 06:00:00,0.0,1006.325,0.0,95.00833333,-0.654333333,2.255666667,238.03401109999996 +2014-02-12 07:00:00,0.0,1006.45,0.04175,94.50833333,-0.64875,1.705,238.0330443 +2014-02-12 08:00:00,0.0,1006.863667,1.9395,94.38333333,-0.674083333,2.036916667,238.033286 +2014-02-12 09:00:00,0.0,1007.1916669999999,15.91241667,94.125,-0.6296666670000001,2.0815,238.033286 +2014-02-12 10:00:00,0.0,1007.470667,22.4575,93.85833333,-0.494333333,2.035083333,238.03376939999998 +2014-02-12 11:00:00,0.0,1007.6605,35.23833333,93.025,-0.36308333299999995,2.1935,238.0330443 +2014-02-12 12:00:00,0.0,1007.4271669999999,43.1075,92.24166667,-0.1585,2.489833333,238.03304430000003 +2014-02-12 13:00:00,0.0,1007.281167,42.6475,91.85,0.061583333,2.064666667,238.0335277 +2014-02-12 14:00:00,0.0,1007.4895,26.69333333,91.825,0.1385,2.271,238.03450658333335 +2014-02-12 15:00:00,0.0,1007.919333,8.824916667,92.15,0.15741666699999998,2.3538333330000003,238.03450658333335 +2014-02-12 16:00:00,0.0,1008.177667,0.980166667,92.05833333,0.18591666699999998,2.293583333,238.03425280000002 +2014-02-12 17:00:00,0.0,1008.654833,0.0,97.01666667,-0.014583333,2.11625,238.03450658333335 +2014-02-12 18:00:00,0.0,1008.799167,0.0,93.03333333,0.35958333299999995,2.620666667,238.03450658333335 +2014-02-12 19:00:00,0.0,1009.5039999999999,0.0,91.7,0.290083333,2.4745,238.03425280000002 +2014-02-12 20:00:00,0.0,1010.199167,0.0,91.71666667,0.124916667,2.574416667,238.03450658333335 +2014-02-12 21:00:00,0.0,1010.4645,0.0,92.05,0.210833333,1.988083333,238.03425280000002 +2014-02-12 22:00:00,0.0,1010.747833,0.0,96.16666667,0.040666667000000004,2.326833333,238.03501414999997 +2014-02-12 23:00:00,0.0,1010.954833,0.0,99.98333333,-0.24766666699999998,1.508,238.03526793333333 +2014-03-12 00:00:00,0.0,1011.084667,0.0,98.11666667,-0.15941666699999998,2.25175,237.9985045 +2014-03-12 01:00:00,0.0,1011.166667,0.0,98.85833333,-0.24983333300000002,2.478416667,237.9985045 +2014-03-12 02:00:00,0.0,1011.359667,0.0,99.40833333,-0.26,2.107333333,237.9982507 +2014-03-12 03:00:00,0.0,1011.6145,0.0,97.025,-0.092416667,1.98675,237.9982507 +2014-03-12 04:00:00,0.0,1011.756167,0.0,97.58333333,-0.178083333,2.55725,237.9977431 +2014-03-12 05:00:00,0.0,1011.913167,0.0,99.65,-0.374,1.955,237.99698170000002 +2014-03-12 06:00:00,0.0,1012.043,0.0,100.0,-0.531416667,1.9785,237.99698170000002 +2014-03-12 07:00:00,0.0,1012.402667,0.045083332999999996,99.63333333,-0.42616666700000005,2.2479166669999997,237.99698170000002 +2014-03-12 08:00:00,0.0,1013.163667,3.2289999999999996,97.89166667,-0.251,3.197833333,237.99698170000002 +2014-03-12 09:00:00,0.0,1013.774167,28.7525,96.34166667,-0.203166667,3.341416667,237.99825069999997 +2014-03-12 10:00:00,0.0,1014.256167,48.29333333,95.10833333,-0.091333333,2.8850833330000003,237.9985045 +2014-03-12 11:00:00,0.0,1014.416667,76.50916667,92.01666667,0.060833332999999996,3.3645,237.9985045 +2014-03-12 12:00:00,0.0,1014.193833,100.0583333,90.11666667,0.32708333300000003,3.248416667,237.9985045 +2014-03-12 13:00:00,0.0,1014.176333,74.35833333,90.8,0.60375,2.901916667,237.9985045 +2014-03-12 14:00:00,0.0,1013.948667,35.04583333,92.56666667,0.6805,2.479,237.9985045 +2014-03-12 15:00:00,0.0,1013.882,17.64666667,93.325,0.44933333299999995,2.6235,237.9985045 +2014-03-12 16:00:00,0.0,1014.052667,2.4321666669999997,93.51666667,0.29483333300000003,2.536,237.9985045 +2014-03-12 17:00:00,0.0,1014.1978330000001,0.0,93.55833333,0.11866666699999999,1.92125,237.99774309999998 +2014-03-12 18:00:00,0.0,1014.368833,0.0,93.88333333,0.18641666699999998,2.3816666669999997,237.99698170000002 +2014-03-12 19:00:00,0.0,1014.241667,0.0,95.30833333,0.041416667000000004,1.821666667,237.9955315 +2014-03-12 20:00:00,0.0,1014.3145,0.0,96.2,-0.037666667,1.2685,237.9955315 +2014-03-12 21:00:00,0.0,1014.382,0.0,96.0,-0.012833333,1.243583333,237.9955315 +2014-03-12 22:00:00,0.0,1014.198667,0.0,96.5,-0.05875,1.300916667,237.9950239 +2014-03-12 23:00:00,0.0,1013.968833,0.0,96.79166667,-0.126,1.4918333330000002,237.9945163 +2014-04-12 00:00:00,0.0,1013.718833,0.0,97.16666667,-0.129083333,1.522416667,237.88919919999998 +2014-04-12 01:00:00,0.0,1013.2855,0.0,97.60833333,0.002666667,2.4819166669999997,237.88919919999998 +2014-04-12 02:00:00,0.0,1012.977167,0.0,98.9,-0.058166667000000005,1.999416667,237.88919919999998 +2014-04-12 03:00:00,0.0,1012.693833,0.0,99.95,-0.009166667,1.72775,237.88919919999998 +2014-04-12 04:00:00,0.0,1012.187667,0.0,100.0,0.072833333,1.64625,237.88814650000003 +2014-04-12 05:00:00,0.0,1011.684167,0.0,100.0,0.010166666999999999,1.333916667,237.88919919999998 +2014-04-12 06:00:00,0.0,1011.533333,0.0,100.0,0.11625,1.104083333,237.8884974 +2014-04-12 07:00:00,0.0,1011.486833,0.0,100.0,0.08616666699999999,1.302083333,237.88884829999998 +2014-04-12 08:00:00,0.0,1011.4965,1.9266666669999999,100.0,0.071833333,1.35625,237.88779559999998 +2014-04-12 09:00:00,0.0,1011.416667,12.00958333,100.0,0.077583333,1.461416667,237.88884829999998 +2014-04-12 10:00:00,0.0,1011.3605,23.11333333,100.0,0.1775,1.44275,237.88744469999997 +2014-04-12 11:00:00,0.0,1011.082,27.81083333,100.0,0.33475,1.4989166669999998,237.8884974 +2014-04-12 12:00:00,0.0,1010.995167,27.625,100.0,0.5810833329999999,1.4925,237.8884974 +2014-04-12 13:00:00,0.0,1010.6688330000001,17.5425,100.0,0.705916667,1.69525,237.88884829999998 +2014-04-12 14:00:00,0.0,1010.4069999999999,13.08583333,100.0,0.7915,1.410166667,237.8884974 +2014-04-12 15:00:00,0.0,1010.233333,8.627833333,100.0,0.83025,1.3540833330000002,237.8870938 +2014-04-12 16:00:00,0.0,1010.358333,1.48325,100.0,0.916166667,1.274833333,237.8870938 +2014-04-12 17:00:00,0.0,1010.481167,0.0,100.0,1.042583333,0.710333333,237.8870938 +2014-04-12 18:00:00,0.0,1010.611833,0.0,100.0,1.063166667,1.153916667,237.88472108333335 +2014-04-12 19:00:00,0.0,1010.658333,0.0,100.0,1.128416667,0.676333333,237.8829833 +2014-04-12 20:00:00,0.0,1010.7215,0.0,100.0,1.218833333,0.273083333,237.8829833 +2014-04-12 21:00:00,0.0,1010.9895,0.0,100.0,1.298666667,0.4055,237.8829833 +2014-04-12 22:00:00,0.0,1011.159667,0.0,100.0,1.3675,0.073,237.8829833 +2014-04-12 23:00:00,0.0,1011.3895,0.0,100.0,1.4140833330000002,0.083,237.8829833 +2014-05-12 00:00:00,0.0,1011.475,0.0,100.0,1.4644166669999998,0.033583333,237.8458886 +2014-05-12 01:00:00,0.0,1011.556167,0.0,100.0,1.479416667,0.069,237.8458886 +2014-05-12 02:00:00,0.0,1011.868,0.0,100.0,1.501166667,0.008166666999999999,237.8458886 +2014-05-12 03:00:00,0.0,1011.888167,0.0,100.0,1.5523333330000002,0.013416667,237.8458886 +2014-05-12 04:00:00,0.0,1011.9785,0.0,100.0,1.5799166669999998,0.002,237.8458886 +2014-05-12 05:00:00,0.0,1012.240833,0.0,100.0,1.6128333330000002,0.009416667,237.8458886 +2014-05-12 06:00:00,0.0,1012.6645,0.0,100.0,1.6885833330000002,0.0,237.84488604999999 +2014-05-12 07:00:00,0.0,1012.972833,0.012666667,100.0,1.7783333330000002,0.0095,237.84388349999998 +2014-05-12 08:00:00,0.0,1013.362333,4.37975,100.0,1.8978333330000001,0.04,237.84388349999998 +2014-05-12 09:00:00,0.0,1013.7465,19.95916667,100.0,2.1343333330000003,0.22141666699999998,237.8435326 +2014-05-12 10:00:00,0.0,1013.8965,29.03666667,100.0,2.349166667,0.24525,237.8428308 +2014-05-12 11:00:00,0.0,1013.995167,35.015,100.0,2.575416667,0.335083333,237.84177810000003 +2014-05-12 12:00:00,0.0,1013.875,33.11416667,100.0,2.7824166669999997,0.6955,237.84177810000003 +2014-05-12 13:00:00,0.0,1013.5855,30.89666667,100.0,2.917916667,0.595166667,237.8411097333333 +2014-05-12 14:00:00,0.0,1013.4,20.96916667,100.0,2.971,0.460083333,237.839773 +2014-05-12 15:00:00,0.0,1013.445167,16.10583333,100.0,3.139583333,0.32725,237.839773 +2014-05-12 16:00:00,0.0,1013.6395,1.6869999999999998,100.0,3.195666667,0.202416667,237.839773 +2014-05-12 17:00:00,0.0,1013.688167,0.0,100.0,3.094583333,0.160083333,237.83699923333333 +2014-05-12 18:00:00,0.0,1013.8035,0.0,100.0,3.0025,0.354416667,237.8349774166667 +2014-05-12 19:00:00,0.0,1013.927667,0.0,100.0,2.941333333,0.311083333,237.83975628333334 +2014-05-12 20:00:00,0.0,1014.318,0.0,100.0,2.847416667,0.00525,237.84455186666665 +2014-05-12 21:00:00,0.0,1014.366667,0.0,100.0,2.743083333,0.00925,237.85315719999997 +2014-05-12 22:00:00,0.0,1014.526333,0.0,100.0,2.6488333330000002,0.0,237.85486155 +2014-05-12 23:00:00,0.0,1014.6978330000001,0.0,100.0,2.55725,0.022166667,237.8493808833333 +2014-06-12 00:00:00,0.0,1014.8715,0.0,100.0,2.5495,0.0,238.1539252 +2014-06-12 01:00:00,0.0,1015.026333,0.0,100.0,2.46575,0.0020833329999999997,238.14633913333333 +2014-06-12 02:00:00,0.0,1015.133333,0.0,100.0,2.454583333,0.0365,238.13982248333335 +2014-06-12 03:00:00,0.0,1015.2,0.0,100.0,2.367083333,0.18641666699999998,238.13504361666665 +2014-06-12 04:00:00,0.0,1015.265833,0.0,100.0,2.284416667,0.1445,238.12784188333333 +2014-06-12 05:00:00,0.0,1015.631167,0.0,100.0,2.09275,0.0845,238.12231111666665 +2014-06-12 06:00:00,0.0,1015.9965,0.0,100.0,2.4561666669999997,0.063416667,238.1171646833333 +2014-06-12 07:00:00,0.0,1016.281167,0.017833333,100.0,2.527916667,0.012166666999999999,238.11203491666666 +2014-06-12 08:00:00,0.0,1016.6755,3.225833333,100.0,2.6885,0.07175,238.10690515 +2014-06-12 09:00:00,0.0,1017.277667,12.67883333,100.0,3.106583333,0.15433333300000002,238.10205941666666 +2014-06-12 10:00:00,0.0,1017.6825,28.9125,99.975,3.535,0.18925,238.09622785 +2014-06-12 11:00:00,0.0,1018.043,32.5425,99.48333333,3.94425,0.50825,238.09039628333335 +2014-06-12 12:00:00,0.0,1018.213167,34.38583333,98.55833333,4.297833333,0.981166667,238.08561741666668 +2014-06-12 13:00:00,0.0,1018.240333,39.2475,98.31666667,4.564916667,1.4585833330000002,238.0787164666667 +2014-06-12 14:00:00,0.0,1018.293,46.11916667,97.54166667,4.884083333,1.239083333,238.07392088333336 +2014-06-12 15:00:00,0.0,1018.4478330000001,37.16625,96.83333333,5.152666667,1.4238333330000001,238.06842353333332 +2014-06-12 16:00:00,0.0,1018.576333,2.44475,99.34166667,4.652083333,0.3325,238.06329376666667 +2014-06-12 17:00:00,0.0,1018.679833,0.0,100.0,3.4635833330000003,0.204416667,238.0581306 +2014-06-12 18:00:00,0.0,1018.926333,0.0,100.0,1.761333333,0.15783333300000002,238.05296740000003 +2014-06-12 19:00:00,0.0,1019.097833,0.0,100.0,0.330416667,0.016833333,238.04817181666667 +2014-06-12 20:00:00,0.0,1019.241667,0.0,100.0,-0.582833333,0.12841666699999998,238.04474639999998 +2014-06-12 21:00:00,0.0,1019.443,0.0,100.0,-0.4175,0.03375,238.04028499999995 +2014-06-12 22:00:00,0.0,1019.315333,0.0,100.0,0.42375,0.037333332999999996,238.03512179999998 +2014-06-12 23:00:00,0.0,1019.35,0.0,100.0,0.584666667,0.0265,238.0316796666667 +2014-07-12 00:00:00,0.0,1019.483333,0.0,100.0,0.7180833329999999,0.045833333,237.82874483333333 +2014-07-12 01:00:00,0.0,1019.004333,0.0,100.0,1.16475,0.03975,237.83222036666666 +2014-07-12 02:00:00,0.0,1018.432,0.0,100.0,0.08858333300000001,0.15608333300000002,237.83255455000003 +2014-07-12 03:00:00,0.0,1018.525,0.0,100.0,-0.01175,0.214916667,237.83255455000003 +2014-07-12 04:00:00,0.0,1018.3105,0.0,100.0,0.782666667,0.1955,237.83255455000003 +2014-07-12 05:00:00,0.0,1017.7460000000001,0.0,100.0,0.246166667,0.110916667,237.8318861833333 +2014-07-12 06:00:00,0.0,1017.507,0.0,100.0,-0.12625,0.177333333,237.8308502 +2014-07-12 07:00:00,0.0,1017.6825,0.010833333,100.0,0.37658333299999996,0.338916667,237.8294466 +2014-07-12 08:00:00,0.0,1018.054833,2.75725,100.0,0.655666667,0.222,237.82839395 +2014-07-12 09:00:00,0.0,1017.8605,28.1975,100.0,1.449583333,0.300166667,237.82700710000003 +2014-07-12 10:00:00,0.0,1017.768833,60.34916667,100.0,2.32475,0.23175,237.8253361 +2014-07-12 11:00:00,0.0,1017.129333,112.25,95.88333333,3.951083333,0.59725,237.8235983666667 +2014-07-12 12:00:00,0.0,1016.550833,137.24,85.975,5.52175,1.3964166669999998,237.82155979999996 +2014-07-12 13:00:00,0.0,1015.9065,123.6516667,79.305,5.6655,1.740583333,237.81913699999998 +2014-07-12 14:00:00,0.0,1015.137667,122.4,76.91666667,6.341,1.75725,237.81604578333335 +2014-07-12 15:00:00,0.0,1014.453,46.80333333,79.865,5.553999999999999,1.567166667,237.81298798333333 +2014-07-12 16:00:00,0.0,1014.002167,4.2655,87.40833333,4.247916667,1.1125,237.8095124166667 +2014-07-12 17:00:00,0.0,1013.600833,0.0,89.04166667,3.0845,1.245916667,237.80677208333336 +2014-07-12 18:00:00,0.0,1013.2285,0.0,87.33333333,3.51375,1.19825,237.8033466666667 +2014-07-12 19:00:00,0.0,1012.95,0.0,90.375,4.193916667,1.247333333,237.8016256 +2014-07-12 20:00:00,5.252776824,1012.684167,0.0,95.48333333,3.8845,1.171,237.79923616666667 +2014-07-12 21:00:00,14.39679437,1012.679833,0.0,98.175,3.444666667,1.616416667,237.79579403333332 +2014-07-12 22:00:00,8.433808943999999,1012.4855,0.0,99.45833333,3.08675,1.23275,237.7941064 +2014-07-12 23:00:00,2.662344264,1012.569333,0.0,99.15,3.45425,1.171916667,237.79134935 +2014-08-12 00:00:00,0.0,1012.813167,0.0,98.29166667,3.628916667,1.5955,237.50214419999998 +2014-08-12 01:00:00,0.0,1013.056167,0.0,98.89166667,3.786333333,2.366083333,237.50040646666665 +2014-08-12 02:00:00,0.0,1013.284667,0.0,98.90833333,3.82325,1.920833333,237.498652 +2014-08-12 03:00:00,0.0,1013.390333,0.0,99.1,3.403666667,1.420833333,237.49726511666665 +2014-08-12 04:00:00,0.0,1013.3741669999999,0.0,98.075,3.175833333,1.3230000000000002,237.49592838333328 +2014-08-12 05:00:00,0.0,1013.6833330000001,0.0,97.23333333,2.152166667,0.301833333,237.4948924 +2014-08-12 06:00:00,0.0,1013.9145,0.0,98.45,0.8198333329999999,0.112666667,237.49213535 +2014-08-12 07:00:00,0.0,1014.115833,0.030083332999999997,99.79166667,0.11825,0.295083333,237.48937830000003 +2014-08-12 08:00:00,0.0,1014.483333,5.066,100.0,-0.064666667,0.41083333299999997,237.48804156666665 +2014-08-12 09:00:00,0.0,1014.5965,21.83416667,99.24166667,0.643916667,0.44008333299999997,237.4863205 +2014-08-12 10:00:00,2.4050227680000003,1014.759667,91.75333333,93.91666667,4.462583333,0.27375,237.48491690000003 +2014-08-12 11:00:00,0.0,1014.6355,88.665,90.40833333,4.023666667,1.16625,237.4831624 +2014-08-12 12:00:00,0.0,1014.2175,103.0033333,89.08333333,3.993416667,0.49408333299999996,237.48182566666665 +2014-08-12 13:00:00,0.0,1013.518,159.1333333,81.24416667,5.362583333,1.243833333,237.4794028 +2014-08-12 14:00:00,0.0,1012.990833,78.70833333,81.21416667,5.47225,1.256333333,237.47634500000004 +2014-08-12 15:00:00,0.0,1012.8708330000001,46.7625,83.31916667,3.676166667,0.7194166670000001,237.47258539999999 +2014-08-12 16:00:00,0.0,1012.800833,3.733,95.24166667,1.488083333,0.512083333,237.46982835000003 +2014-08-12 17:00:00,0.0,1012.6825,0.0,99.75,-0.546166667,0.11641666699999999,237.468124 +2014-08-12 18:00:00,0.0,1012.538333,0.0,100.0,-1.4019166669999998,0.123833333,237.46496598333331 +2014-08-12 19:00:00,0.0,1012.475833,0.0,100.0,-1.627583333,0.147833333,237.4629441 +2014-08-12 20:00:00,0.0,1012.716667,0.0,100.0,-2.026,0.139,237.46085548333335 +2014-08-12 21:00:00,0.0,1013.1075,0.0,100.0,-1.814416667,0.07075,237.45950199999996 +2014-08-12 22:00:00,0.0,1013.565,0.0,100.0,-2.109833333,0.0315,237.45814851666668 +2014-08-12 23:00:00,0.0,1013.8758330000001,0.0,100.0,-2.3745,0.0010833330000000001,237.4557257 +2014-09-12 00:00:00,0.0,1014.390833,0.0,100.0,-2.334666667,0.064166667, +2014-09-12 01:00:00,0.0,1015.051667,0.0,100.0,-2.74525,0.0405, +2014-09-12 02:00:00,0.0,1015.760833,0.0,100.0,-2.791833333,0.041583333, +2014-09-12 03:00:00,0.0,1016.4375,0.0,100.0,-1.8001666669999998,0.107916667, +2014-09-12 04:00:00,0.0,1017.025833,0.0,100.0,-1.755916667,0.060333332999999996, +2014-09-12 05:00:00,0.0,1017.738333,0.0,100.0,-1.7644166669999999,0.10016666699999999, +2014-09-12 06:00:00,0.0,1018.714167,0.0,100.0,-1.314416667,0.46275, +2014-09-12 07:00:00,0.0,1019.586667,0.000916667,100.0,0.156,1.105333333, +2014-09-12 08:00:00,0.0,1020.809167,3.1975,100.0,0.4305,0.586166667, +2014-09-12 09:00:00,0.0,1021.726667,28.9475,100.0,0.72225,0.31125, +2014-09-12 10:00:00,0.0,1022.676667,44.11916667,99.61666667,1.07775,0.261, +2014-09-12 11:00:00,0.0,1023.0125,86.87,96.375,1.60675,0.622916667, +2014-09-12 12:00:00,0.0,1023.0275,146.2416667,88.5,2.363333333,0.5791666670000001, +2014-09-12 13:00:00,0.0,1023.264167,126.57166670000001,83.44166667,4.0595,0.62225, +2014-09-12 14:00:00,0.0,1023.526667,114.4,82.95833333,3.76325,1.036583333, +2014-09-12 15:00:00,0.0,1023.775,43.61666667,92.29166667,1.8526666669999998,1.855, +2014-09-12 16:00:00,0.0,1023.975833,3.062083333,98.23333333,0.586583333,1.55025, +2014-09-12 17:00:00,0.0,1023.925,0.0,98.59166667,1.119,1.6825833330000002, +2014-09-12 18:00:00,0.0,1023.963333,0.0,98.03333333,1.4106666669999999,0.37408333299999996, +2014-09-12 19:00:00,0.0,1024.164167,0.0,95.88333333,1.417666667,0.3905, +2014-09-12 20:00:00,0.0,1023.799167,0.0,93.74166667,1.585666667,1.3004166670000001, +2014-09-12 21:00:00,0.0,1023.409167,0.0,92.45,1.7849166669999998,1.9219166669999999, +2014-09-12 22:00:00,0.0,1022.986667,0.0,96.78333333,1.040333333,2.133666667, +2014-09-12 23:00:00,0.0,1022.820833,0.0,93.68333333,0.47200000000000003,0.643333333, +2014-10-12 00:00:00,0.0,1022.3975,0.0,92.79166667,1.635083333,1.0785,237.8909525 +2014-10-12 01:00:00,0.0,1021.54,0.0,93.04166667,1.59925,1.704,237.8912858333333 +2014-10-12 02:00:00,0.0,1020.720833,0.0,92.40833333,1.7950833330000002,1.35975,237.89295249999995 +2014-10-12 03:00:00,0.0,1019.818333,0.0,91.76666667,1.1530833329999999,1.0725833329999999,237.89330249999998 +2014-10-12 04:00:00,0.0,1018.560833,0.0,91.4,1.234,1.4105,237.8943525 +2014-10-12 05:00:00,0.0,1017.931667,0.0,91.275,2.619916667,2.49,237.8950525 +2014-10-12 06:00:00,0.0,1016.9075,0.0,92.24166667,2.2568333330000003,2.1390833330000003,237.8963858333333 +2014-10-12 07:00:00,0.0,1015.5583330000001,0.0,87.79166667,1.4045833330000002,1.31975,237.8970525 +2014-10-12 08:00:00,0.0,1015.059167,1.328166667,84.1025,1.9479166669999999,1.3216666670000001,237.89810249999996 +2014-10-12 09:00:00,18.78832747,1014.24,11.29325,95.325,1.9436666669999998,1.3666666669999998,237.89915249999999 +2014-10-12 10:00:00,2.533439352,1013.681667,26.00416667,96.66666667,1.9503333330000001,1.247333333,237.89915249999999 +2014-10-12 11:00:00,0.0,1013.165833,29.27916667,96.53333333,3.099916667,1.751416667,237.89948583333333 +2014-10-12 12:00:00,3.5131534560000004,1012.64,22.82258333,98.44166667,2.778,2.557583333,237.9011525 +2014-10-12 13:00:00,0.0,1012.229167,24.67916667,97.325,3.34825,1.879666667,237.9011525 +2014-10-12 14:00:00,0.0,1012.039167,15.29125,96.94166667,3.839833333,1.5460833330000001,237.9011525 +2014-10-12 15:00:00,0.0,1012.0775,14.42083333,96.68333333,4.39,1.53275,237.90220249999996 +2014-10-12 16:00:00,0.0,1012.1675,2.13225,96.55833333,4.7146666669999995,1.6088333330000002,237.90255249999998 +2014-10-12 17:00:00,0.0,1012.175,0.0,96.08333333,4.7725,1.9138333330000001,237.90185250000002 +2014-10-12 18:00:00,0.0,1012.264167,0.0,95.15833333,4.521166667,1.8141666669999998,237.90325249999998 +2014-10-12 19:00:00,0.0,1012.2325,0.0,95.40833333,4.44125,0.8685,237.90325249999998 +2014-10-12 20:00:00,0.0,1011.918333,0.0,96.1,2.64225,0.621833333,237.90290249999998 +2014-10-12 21:00:00,0.0,1011.796667,0.0,96.33333333,1.82375,0.434833333,237.9011525 +2014-10-12 22:00:00,0.0,1011.4333330000001,0.0,97.0,0.712166667,0.082833333,237.9011525 +2014-10-12 23:00:00,0.0,1011.419167,0.0,94.1,2.925833333,0.74475,237.9011525 +2014-11-12 00:00:00,0.0,1011.268333,0.0,93.875,3.782,0.9966666670000001,237.95598583333333 +2014-11-12 01:00:00,0.0,1010.5725,0.0,94.69166667,4.532583333,0.8946666670000001,237.9566525 +2014-11-12 02:00:00,22.27143602,1009.9625,0.0,96.60833333,4.348,1.385083333,237.95631916666665 +2014-11-12 03:00:00,0.0,1009.356667,0.0,98.69166667,2.8443333330000002,0.764916667,237.95631916666665 +2014-11-12 04:00:00,0.0,1008.631667,0.0,97.025,4.0705,1.5808333330000002,237.95598583333333 +2014-11-12 05:00:00,0.0,1007.873333,0.0,94.35833333,4.577916667,2.049416667,237.9556525 +2014-11-12 06:00:00,0.0,1007.604167,0.0,92.50833333,4.626416667,2.0265,237.9556525 +2014-11-12 07:00:00,3.39810816,1007.023333,0.008,92.14166667,5.111666667,2.31825,237.9566525 +2014-11-12 08:00:00,0.0,1006.538333,3.53025,92.71666667,5.350083333,2.22875,237.9566525 +2014-11-12 09:00:00,3.45977364,1006.1825,14.93566667,92.16666667,5.813333332999999,2.85325,237.95700249999996 +2014-11-12 10:00:00,56.63839723,1006.2275,12.015,96.1,5.4045,2.381166667,237.95700250000002 +2014-11-12 11:00:00,13.96467007,1005.641667,28.81416667,96.2,5.3765,1.6046666669999998,237.9566525 +2014-11-12 12:00:00,22.31454871,1004.9416669999999,25.89066667,95.05833333,5.798416667000001,2.645,237.95700250000002 +2014-11-12 13:00:00,94.90251468,1004.446667,45.31558333,96.01666667,5.4916666670000005,2.426583333,237.95700250000002 +2014-11-12 14:00:00,4.113392832,1003.921667,27.11166667,91.5,6.190916667000001,3.41475,237.9580525 +2014-11-12 15:00:00,3.9297269760000004,1003.9025,13.9425,95.11666667,5.22575,3.517583333,237.95840249999995 +2014-11-12 16:00:00,0.0,1003.906667,2.544833333,93.64166667,5.352,2.8064166669999997,237.95873583333332 +2014-11-12 17:00:00,69.56696645,1004.960833,0.0,94.175,4.977583333,2.820666667,237.95875249999997 +2014-11-12 18:00:00,9.904045488,1005.735833,0.0,97.44166667,3.38925,2.055416667,237.95875249999997 +2014-11-12 19:00:00,0.0,1005.866667,0.0,97.85833333,3.173833333,2.010166667,237.95875249999997 +2014-11-12 20:00:00,0.0,1006.143333,0.0,95.575,4.006833333,2.34025,237.96041916666664 +2014-11-12 21:00:00,0.0,1006.425833,0.0,94.15,4.636083333,2.550916667,237.96075249999998 +2014-11-12 22:00:00,0.0,1006.725,0.0,91.925,5.131083333,2.668333333,237.96041916666664 +2014-11-12 23:00:00,0.0,1006.4825,0.0,91.1,5.566833333,2.6318333330000003,237.96145249999998 +2014-12-12 00:00:00,0.0,1006.115,0.0,91.125,6.104333333,2.744916667, +2014-12-12 01:00:00,19.05542844,1005.4925,0.0,95.275,6.008166667,2.325416667, +2014-12-12 02:00:00,19.20105031,1004.5425,0.0,94.79166667,6.2860000000000005,2.518916667, +2014-12-12 03:00:00,6.69292476,1003.9958330000001,0.0,91.6,6.909833333,2.903666667, +2014-12-12 04:00:00,0.0,1003.480833,0.0,88.45,7.5505,2.9515833330000003, +2014-12-12 05:00:00,0.0,1002.645,0.0,86.01666667,7.6995,2.4965833330000002, +2014-12-12 06:00:00,0.0,1001.891667,0.0,88.04166667,7.623666667,2.880833333, +2014-12-12 07:00:00,0.0,1000.765,0.0,88.20833333,7.646,3.2911666669999997, +2014-12-12 08:00:00,0.0,1000.27,3.92525,90.05833333,7.4495,3.59225, +2014-12-12 09:00:00,0.0,999.6516667000001,20.30916667,89.53333333,7.449833333,3.298833333, +2014-12-12 10:00:00,0.0,999.0316667000001,28.5925,87.925,7.892,3.358833333, +2014-12-12 11:00:00,0.0,998.0691667000001,29.5725,86.86666667,8.168333333,3.2160833330000003, +2014-12-12 12:00:00,0.0,997.22,36.15083333,84.90833333,8.461666667000001,3.267666667, +2014-12-12 13:00:00,0.0,996.4075,56.29416667,82.54166667,9.004166667,3.4955, +2014-12-12 14:00:00,0.0,996.215,21.3575,82.575,9.325833333,3.390916667, +2014-12-12 15:00:00,0.0,995.6625,7.102666667,85.14166667,9.1925,3.2654166669999998, +2014-12-12 16:00:00,0.0,995.2791667000001,0.905833333,86.44166667,9.21,3.25175, +2014-12-12 17:00:00,0.0,994.9991667000002,0.0,87.625,9.128333332999999,3.556083333, +2014-12-12 18:00:00,0.0,994.8175,0.0,86.43333333,9.320833333,3.884416667, +2014-12-12 19:00:00,8.97521352,994.9783332999999,0.0,87.7,9.395833332999999,4.5745833330000005, +2014-12-12 20:00:00,9.306802608,995.4025,0.0,89.36666667,9.080833333,4.29375, +2014-12-12 21:00:00,104.3958376,996.8733332999999,0.0,97.575,8.626666667,3.17425, +2014-12-12 22:00:00,42.2906665,997.8383332999998,0.0,99.55,7.96325,1.695583333, +2014-12-12 23:00:00,11.3070299,998.9808332999999,0.0,99.64166667,7.282666667000001,1.338083333, +2014-12-13 00:00:00,20.83991021,999.8683332999999,0.0,97.825,6.55425,1.750583333, +2014-12-13 01:00:00,9.126217608,1000.446667,0.0,98.03333333,6.206833333,1.6504166669999998, +2014-12-13 02:00:00,8.44448628,1001.168333,0.0,97.65833333,5.93375,1.6805833330000002, +2014-12-13 03:00:00,14.053490300000002,1001.685,0.0,98.19166667,5.6704166670000005,1.38925, +2014-12-13 04:00:00,16.90256635,1002.16,0.0,97.2,5.4035,1.51225, +2014-12-13 05:00:00,8.350660752000001,1002.525,0.0,97.81666667,4.979583333,1.42675, +2014-12-13 06:00:00,12.3326821,1002.781667,0.0,99.975,4.6035,0.36908333299999996, +2014-12-13 07:00:00,16.83696838,1003.41,0.0,100.0,4.496333333,0.002, +2014-12-13 08:00:00,14.47558058,1003.843333,1.47225,100.0,4.348833333,0.05075, +2014-12-13 09:00:00,22.06703791,1004.496667,11.3405,100.0,4.09475,0.3215, +2014-12-13 10:00:00,12.27246943,1004.998333,25.92166667,100.0,4.067583333,0.18608333300000002, +2014-12-13 11:00:00,10.28112137,1005.606667,27.46583333,99.99166667,4.1275,0.6466666670000001, +2014-12-13 12:00:00,12.4998643,1005.8083330000001,35.5375,100.0,4.0513333330000005,0.571666667, +2014-12-13 13:00:00,16.15776667,1005.833333,31.33333333,99.85,3.9361666669999997,1.029083333, +2014-12-13 14:00:00,5.479496136,1006.075833,12.57866667,99.95,3.57325,1.3225833329999999, +2014-12-13 15:00:00,2.97732516,1006.568333,5.979916667,100.0,3.354166667,1.255833333, +2014-12-13 16:00:00,0.0,1006.7508330000001,0.504,100.0,3.0644166669999997,1.8586666669999998, +2014-12-13 17:00:00,14.33002109,1007.5525,0.0,100.0,2.65275,1.7091666669999999, +2014-12-13 18:00:00,18.14849726,1007.953333,0.0,100.0,1.6375,1.140583333, +2014-12-13 19:00:00,12.71531095,1008.2541669999999,0.0,100.0,1.6130000000000002,0.911083333, +2014-12-13 20:00:00,7.464501024,1008.343333,0.0,100.0,1.5289166669999998,0.425, +2014-12-13 21:00:00,7.49177652,1008.42,0.0,100.0,1.62925,0.52175, +2014-12-13 22:00:00,4.880288544,1008.7175,0.0,100.0,1.7425,0.36058333299999995, +2014-12-13 23:00:00,5.032406976,1008.8083330000001,0.0,100.0,1.8325,0.5575, +2014-12-14 00:00:00,2.441815416,1008.8083330000001,0.0,100.0,1.950166667,0.4, +2014-12-14 01:00:00,5.108046096,1008.828333,0.0,100.0,2.018166667,0.63475, +2014-12-14 02:00:00,10.30493081,1009.151667,0.0,100.0,2.0386666669999998,0.835666667, +2014-12-14 03:00:00,7.579463327999999,1009.3791669999999,0.0,100.0,2.0186666669999997,0.558416667, +2014-12-14 04:00:00,7.5621203999999995,1009.170833,0.0,100.0,1.867666667,0.896833333, +2014-12-14 05:00:00,14.66677126,1009.495,0.0,100.0,1.4113333330000002,0.3125, +2014-12-14 06:00:00,9.639632712000001,1009.8175,0.0,100.0,1.2855,0.24733333300000002, +2014-12-14 07:00:00,0.0,1010.515833,0.0,100.0,1.6019166669999998,0.419833333, +2014-12-14 08:00:00,0.0,1011.1575,1.6655,100.0,1.755916667,0.211416667, +2014-12-14 09:00:00,0.0,1011.735,21.41491667,100.0,2.0285,0.227666667, +2014-12-14 10:00:00,0.0,1012.2225,53.21666667,100.0,2.76325,0.37841666700000004, +2014-12-14 11:00:00,0.0,1012.166667,77.37333333,99.98333333,3.4765,0.44691666700000005, +2014-12-14 12:00:00,0.0,1012.1833330000001,63.09583333,99.11666667,3.72425,0.6445833329999999, +2014-12-14 13:00:00,0.0,1011.935833,51.7675,98.2,3.803583333,0.65075, +2014-12-14 14:00:00,0.0,1011.983333,38.82333333,96.31666667,4.022833333,0.484, +2014-12-14 15:00:00,0.0,1012.021667,14.57816667,92.06666667,3.9220833330000002,0.535166667, +2014-12-14 16:00:00,0.0,1011.961667,1.5361666669999998,97.58333333,3.58625,0.56, +2014-12-14 17:00:00,0.0,1011.955833,0.0,99.15833333,3.210833333,0.40675, +2014-12-14 18:00:00,0.0,1012.233333,0.0,100.0,1.7183333330000001,0.131666667, +2014-12-14 19:00:00,0.0,1012.158333,0.0,100.0,1.39675,0.18683333300000002, +2014-12-14 20:00:00,0.0,1012.119167,0.0,100.0,1.2175,0.132916667, +2014-12-14 21:00:00,0.0,1011.888333,0.0,100.0,1.3515833330000002,0.258833333, +2014-12-14 22:00:00,0.0,1011.883333,0.0,100.0,1.230333333,0.610583333, +2014-12-14 23:00:00,0.0,1011.6825,0.0,100.0,1.3711666669999998,0.081666667, +2014-12-15 00:00:00,0.0,1011.460833,0.0,100.0,1.5090000000000001,0.311833333, +2014-12-15 01:00:00,0.0,1011.050833,0.0,100.0,1.657666667,0.107916667, +2014-12-15 02:00:00,0.0,1010.506667,0.0,100.0,1.093833333,0.22091666699999998, +2014-12-15 03:00:00,0.0,1010.225,0.0,100.0,0.925166667,0.12575, +2014-12-15 04:00:00,0.0,1009.798333,0.0,100.0,0.81175,0.5136666670000001, +2014-12-15 05:00:00,0.0,1009.4075,0.0,100.0,-0.134583333,0.236583333, +2014-12-15 06:00:00,0.0,1009.2475,0.0,100.0,-1.00975,0.193916667, +2014-12-15 07:00:00,0.0,1009.241667,0.0,100.0,-1.448916667,0.13325, +2014-12-15 08:00:00,0.0,1009.345,7.10675,100.0,-1.3225,0.09125, +2014-12-15 09:00:00,0.0,1009.680833,25.64083333,98.88333333,0.173833333,0.08875, +2014-12-15 10:00:00,0.0,1009.970833,83.9025,84.7,1.197833333,0.4905, +2014-12-15 11:00:00,2.7560087039999996,1009.651667,79.31666667,85.35,4.105166667,0.6144166670000001, +2014-12-15 12:00:00,0.0,1009.783333,48.61416667,91.7,5.18925,1.2744166670000001, +2014-12-15 13:00:00,0.0,1009.710833,55.89416667,93.075,5.092583333,1.6419166669999998, +2014-12-15 14:00:00,0.0,1009.583333,35.4125,95.96666667,4.837583333,1.275416667, +2014-12-15 15:00:00,0.0,1009.929167,22.92916667,96.90833333,4.680166667,0.783083333, +2014-12-15 16:00:00,0.0,1010.32,2.407833333,97.98333333,4.382083333,0.89775, +2014-12-15 17:00:00,0.0,1010.364167,0.0,98.475,4.0111666669999995,0.307333333, +2014-12-15 18:00:00,0.0,1010.395,0.0,99.44166667,3.707666667,0.133166667, +2014-12-15 19:00:00,0.0,1010.3375,0.0,100.0,3.59975,0.234333333, +2014-12-15 20:00:00,0.0,1010.4425,0.0,100.0,3.7215,0.21666666699999998, +2014-12-15 21:00:00,0.0,1010.268333,0.0,100.0,3.846833333,0.07425, +2014-12-15 22:00:00,0.0,1010.008333,0.0,100.0,3.881583333,0.1315, +2014-12-15 23:00:00,0.0,1009.626667,0.0,100.0,3.89325,0.066333333, +2014-12-16 00:00:00,0.0,1009.1258330000001,0.0,100.0,3.786833333,0.422416667, +2014-12-16 01:00:00,0.0,1008.600833,0.0,100.0,3.762916667,0.24025, +2014-12-16 02:00:00,2.4050227680000003,1008.1325,0.0,100.0,3.7515,0.08825, +2014-12-16 03:00:00,2.4050227680000003,1007.844167,0.0,100.0,3.719583333,0.03275, +2014-12-16 04:00:00,0.0,1007.6,0.0,100.0,3.874583333,0.128583333, +2014-12-16 05:00:00,0.0,1007.4075,0.0,100.0,3.975333333,0.230333333, +2014-12-16 06:00:00,0.0,1007.458333,0.0,100.0,4.12125,0.031666667, +2014-12-16 07:00:00,0.0,1007.325,0.0,100.0,4.237583333,0.383166667, +2014-12-16 08:00:00,0.0,1007.508333,1.5469166669999999,100.0,5.072833333,1.24425, +2014-12-16 09:00:00,0.0,1007.580833,15.84666667,100.0,5.10325,0.47708333299999994, +2014-12-16 10:00:00,0.0,1007.736667,82.91833333,98.38333333,6.36275,0.3095, +2014-12-16 11:00:00,0.0,1007.590833,96.55333333,95.475,7.2815833329999995,1.741916667, +2014-12-16 12:00:00,0.0,1007.365833,50.15083333,96.7,6.8795,1.7970833330000002, +2014-12-16 13:00:00,0.0,1006.951667,33.8925,98.16666667,6.671,1.383666667, +2014-12-16 14:00:00,0.0,1006.710833,40.31833333,98.70833333,6.31075,1.540583333, +2014-12-16 15:00:00,0.0,1006.809167,20.6,98.21666667,6.0985,1.278, +2014-12-16 16:00:00,0.0,1007.229167,7.06175,95.55833333,5.57875,0.939666667, +2014-12-16 17:00:00,0.0,1007.776667,0.0,94.7,4.3105,0.9490000000000001, +2014-12-16 18:00:00,0.0,1008.1925,0.0,96.475,4.41225,1.030583333, +2014-12-16 19:00:00,0.0,1008.4675,0.0,93.79166667,4.523666667,0.94, +2014-12-16 20:00:00,0.0,1008.675,0.0,93.19166667,4.0504166669999995,1.227333333, +2014-12-16 21:00:00,3.2151015839999997,1008.988333,0.0,92.75833333,4.558666667,1.7164166669999998, +2014-12-16 22:00:00,13.75057118,1009.583333,0.0,99.225,3.80025,1.107333333, +2014-12-16 23:00:00,0.0,1009.466667,0.0,100.0,3.464583333,0.5265833329999999, +2014-12-17 00:00:00,0.0,1009.413333,0.0,99.725,3.0955,0.7475, +2014-12-17 01:00:00,0.0,1009.310833,0.0,98.9,3.047333333,1.5454166669999998, +2014-12-17 02:00:00,0.0,1009.088333,0.0,99.54166667,2.266083333,0.654416667, +2014-12-17 03:00:00,0.0,1008.681667,0.0,99.65833333,1.467416667,0.08325, +2014-12-17 04:00:00,0.0,1008.22,0.0,99.9,0.552583333,0.037166667, +2014-12-17 05:00:00,0.0,1007.541667,0.0,98.74166667,0.937,0.21958333300000002, +2014-12-17 06:00:00,0.0,1007.0975,0.0,97.33333333,1.4980000000000002,0.142666667, +2014-12-17 07:00:00,2.9989052160000003,1006.0325,0.0,94.15,1.9795833330000001,0.75275, +2014-12-17 08:00:00,0.0,1005.1675,1.654166667,93.36666667,3.178666667,1.3365833329999999, +2014-12-17 09:00:00,0.0,1004.133333,17.76625,92.03333333,3.5725833330000003,2.44, +2014-12-17 10:00:00,3.344857632,1003.169167,29.36416667,93.69166667,3.7393333330000003,2.803833333, +2014-12-17 11:00:00,3.362978472,1001.955,43.2875,95.93333333,3.4135,2.7374166669999997, +2014-12-17 12:00:00,5.493131328,1000.830833,35.57666667,97.525,3.757166667,1.714666667, +2014-12-17 13:00:00,5.208824304,1000.349167,29.5575,97.44166667,4.1536666669999995,1.202166667, +2014-12-17 14:00:00,2.6571852000000002,999.8008332999999,31.94,98.34166667,4.487,1.373666667, +2014-12-17 15:00:00,0.0,1000.221667,7.211333333,99.94166667,4.454166667,0.9520833329999999, +2014-12-17 16:00:00,0.0,1000.660833,0.855083333,100.0,4.591333333,0.639083333, +2014-12-17 17:00:00,0.0,1001.395833,0.0,100.0,5.058333333,0.7165, +2014-12-17 18:00:00,0.0,1001.770833,0.0,100.0,5.88175,0.6020833329999999, +2014-12-17 19:00:00,2.588767944,1002.5975,0.0,100.0,6.519916667,0.8959999999999999, +2014-12-17 20:00:00,0.0,1003.649167,0.0,100.0,6.97875,1.163916667, +2014-12-17 21:00:00,0.0,1004.5225,0.0,100.0,7.4145833329999995,1.556416667, +2014-12-17 22:00:00,0.0,1005.22,0.0,100.0,7.8274166670000005,1.7369999999999999, +2014-12-17 23:00:00,0.0,1005.869167,0.0,100.0,7.890083333,1.071, +2014-12-18 00:00:00,0.0,1006.259167,0.0,99.89166667,8.210833333,0.591583333, +2014-12-18 01:00:00,0.0,1006.974167,0.0,99.78333333,8.714166667,0.91, +2014-12-18 02:00:00,0.0,1007.275833,0.0,99.9,9.039166667,1.651666667, +2014-12-18 03:00:00,0.0,1007.2458330000001,0.0,99.125,9.224166667,1.23775, +2014-12-18 04:00:00,0.0,1007.22,0.0,97.38333333,9.288333332999999,0.974916667, +2014-12-18 05:00:00,0.0,1007.216667,0.0,99.04166667,9.391666667,1.38825, +2014-12-18 06:00:00,0.0,1007.1225,0.0,99.025,8.534166667000001,1.06125, +2014-12-18 07:00:00,0.0,1007.115833,0.0,99.1,8.415833333,1.5608333330000002, +2014-12-18 08:00:00,0.0,1007.111667,4.9109166669999995,97.8,8.66,1.22625, +2014-12-18 09:00:00,0.0,1007.431667,33.83,96.8,9.706666667,1.0905, +2014-12-18 10:00:00,0.0,1007.675,56.92916667,96.94166667,10.53333333,1.56875, +2014-12-18 11:00:00,0.0,1007.708333,88.75333333,97.70833333,11.0925,1.77475, +2014-12-18 12:00:00,0.0,1007.315,100.3466667,96.50833333,11.90583333,1.7584166669999999, +2014-12-18 13:00:00,0.0,1006.93,105.7575,98.61666667,12.19833333,2.0453333330000003, +2014-12-18 14:00:00,0.0,1007.079167,70.7275,96.55833333,12.34583333,2.112333333, +2014-12-18 15:00:00,0.0,1007.386667,34.115,97.50833333,12.33083333,2.262916667, +2014-12-18 16:00:00,0.0,1007.621667,5.15225,99.94166667,11.83,2.391083333, +2014-12-18 17:00:00,0.0,1007.809167,0.0,99.81666667,11.8425,2.191583333, +2014-12-18 18:00:00,0.0,1007.929167,0.0,96.64166667,12.335,3.060833333, +2014-12-18 19:00:00,0.0,1008.473333,0.0,93.91666667,12.92833333,3.040666667, +2014-12-18 20:00:00,0.0,1008.971667,0.0,91.30833333,13.31416667,3.371333333, +2014-12-18 21:00:00,0.0,1009.358333,0.0,85.70833333,13.055,3.8560000000000003, +2014-12-18 22:00:00,0.0,1009.2025,0.0,85.6,12.46583333,3.705, +2014-12-18 23:00:00,0.0,1009.506667,0.0,88.65833333,12.05416667,3.615916667, +2014-12-19 00:00:00,0.0,1009.87,0.0,89.83333333,11.89,3.4925833330000002, +2014-12-19 01:00:00,0.0,1009.9958330000001,0.0,87.46666667,12.16,3.4005, +2014-12-19 02:00:00,0.0,1010.221667,0.0,88.16666667,11.98416667,3.4708333330000003, +2014-12-19 03:00:00,0.0,1009.8825,0.0,90.0,11.45416667,3.4635, +2014-12-19 04:00:00,0.0,1009.554167,0.0,94.09166667,10.79583333,3.389916667, +2014-12-19 05:00:00,0.0,1009.403333,0.0,91.79166667,10.78833333,2.773, +2014-12-19 06:00:00,0.0,1009.049167,0.0,89.99166667,10.905,3.01425, +2014-12-19 07:00:00,0.0,1008.99,0.0,87.69166667,11.15833333,3.31125, +2014-12-19 08:00:00,0.0,1008.714167,1.43125,87.45,11.18166667,3.734833333, +2014-12-19 09:00:00,6.911552616,1008.615833,6.416833333,90.63333333,10.86583333,3.178666667, +2014-12-19 10:00:00,3.45054792,1008.260833,24.61583333,90.40833333,10.92833333,3.262, +2014-12-19 11:00:00,35.10626304,1008.235,27.84083333,95.18333333,10.5175,3.07, +2014-12-19 12:00:00,33.50988319,1007.515,36.13,96.475,10.39583333,2.73125, +2014-12-19 13:00:00,21.17375122,1006.886667,38.72333333,96.575,10.57333333,3.20325, +2014-12-19 14:00:00,18.39235063,1006.5575,25.55666667,96.975,10.60166667,3.4056666669999998, +2014-12-19 15:00:00,3.546808056,1006.4875,13.44333333,97.85,10.55,2.98, +2014-12-19 16:00:00,76.26963137,1007.455833,1.781333333,97.1,9.9325,2.503666667, +2014-12-19 17:00:00,7.915079472,1008.554167,0.0,97.35833333,9.1475,2.3416666669999997, +2014-12-19 18:00:00,0.0,1009.871667,0.0,90.93333333,8.300666667,2.480416667, +2014-12-19 19:00:00,0.0,1010.9175,0.0,88.28333333,7.484666667000001,2.729083333, +2014-12-19 20:00:00,0.0,1012.053333,0.0,87.20833333,6.468166667,2.012833333, +2014-12-19 21:00:00,0.0,1013.278333,0.0,89.25833333,5.763333332999999,1.23475, +2014-12-19 22:00:00,0.0,1013.9825,0.0,89.71666667,5.669,1.48475, +2014-12-19 23:00:00,0.0,1014.893333,0.0,90.46666667,5.72375,1.3316666670000001, +2014-12-20 00:00:00,0.0,1015.426667,0.0,92.09166667,5.125083333,1.692166667, +2014-12-20 01:00:00,0.0,1015.784167,0.0,90.60833333,5.00675,1.884916667, +2014-12-20 02:00:00,0.0,1016.285,0.0,88.35833333,5.149916667,1.3780833330000002, +2014-12-20 03:00:00,0.0,1016.658333,0.0,87.85833333,5.312833333,1.9479166669999999, +2014-12-20 04:00:00,0.0,1016.5616669999999,0.0,90.13333333,4.949083333,2.24425, +2014-12-20 05:00:00,0.0,1016.671667,0.0,92.26666667,3.949083333,1.522083333, +2014-12-20 06:00:00,0.0,1016.9366669999999,0.0,92.48333333,3.157333333,0.811583333, +2014-12-20 07:00:00,0.0,1016.6575,0.0,92.61666667,3.09775,1.699416667, +2014-12-20 08:00:00,0.0,1016.516667,6.58775,92.60833333,3.12375,1.6871666669999998, +2014-12-20 09:00:00,0.0,1016.508333,28.76833333,90.75833333,3.758416667,1.9069999999999998, +2014-12-20 10:00:00,0.0,1016.031667,75.67666667,87.975,5.118166667,3.058166667, +2014-12-20 11:00:00,0.0,1015.659167,60.19166667,87.50833333,5.722166667000001,3.434416667, +2014-12-20 12:00:00,0.0,1015.1241669999999,73.89416667,89.95833333,5.7505,3.742833333, +2014-12-20 13:00:00,0.0,1014.355833,48.17416667,88.48333333,5.8354166670000005,3.22375, +2014-12-20 14:00:00,0.0,1013.8825,43.38166667,83.43333333,6.25225,2.867166667, +2014-12-20 15:00:00,0.0,1013.714167,9.04475,87.45,5.964166667000001,3.228583333, +2014-12-20 16:00:00,3.93761448,1013.845,1.3964166669999998,90.84166667,5.611000000000001,3.3624166669999997, +2014-12-20 17:00:00,2.8739074319999998,1014.21,0.0,90.99166667,5.67,2.24225, +2014-12-20 18:00:00,0.0,1015.1025,0.0,90.68333333,5.910166667,3.145916667, +2014-12-20 19:00:00,64.90604203,1016.338333,0.0,91.225,5.400333333,3.1381666669999997, +2014-12-20 20:00:00,0.0,1017.7275,0.0,93.35833333,4.38,1.658333333, +2014-12-20 21:00:00,0.0,1018.74,0.0,90.95833333,4.876416667,1.9444166669999998, +2014-12-20 22:00:00,0.0,1020.019167,0.0,90.29166667,5.47475,1.814583333, +2014-12-20 23:00:00,0.0,1020.848333,0.0,91.65,5.342833333,2.133, +2014-12-21 00:00:00,0.0,1021.344167,0.0,94.58333333,4.597416667,1.34925, +2014-12-21 01:00:00,0.0,1022.018333,0.0,93.90833333,3.617833333,0.817083333, +2014-12-21 02:00:00,0.0,1022.693333,0.0,96.24166667,4.394416667,1.1225, +2014-12-21 03:00:00,0.0,1023.48,0.0,97.53333333,3.84725,1.242916667, +2014-12-21 04:00:00,0.0,1023.978333,0.0,97.275,3.982166667,1.6905833330000002, +2014-12-21 05:00:00,0.0,1024.143333,0.0,97.36666667,4.533583333,1.8286666669999998, +2014-12-21 06:00:00,0.0,1024.65,0.0,98.0,4.351583333,2.187916667, +2014-12-21 07:00:00,0.0,1024.616667,0.0,99.00833333,4.166166667,1.775916667, +2014-12-21 08:00:00,0.0,1024.656667,5.620416667000001,97.38333333,4.057583333,1.5953333330000001, +2014-12-21 09:00:00,0.0,1025.056667,34.97916667,95.025,4.519083333,2.150416667, +2014-12-21 10:00:00,0.0,1025.330833,66.9775,93.775,4.9951666669999994,1.5830000000000002, +2014-12-21 11:00:00,0.0,1025.32,84.94583333,91.9,5.583416667000001,1.915083333, +2014-12-21 12:00:00,0.0,1024.66,93.33916667,89.01666667,6.098666667000001,2.46, +2014-12-21 13:00:00,0.0,1023.9125,104.0991667,88.025,6.351166667,2.68875, +2014-12-21 14:00:00,0.0,1023.3175,58.4225,86.975,6.76325,2.661, +2014-12-21 15:00:00,0.0,1022.801667,15.91833333,88.04166667,6.54575,2.2175833330000003, +2014-12-21 16:00:00,0.0,1021.88,7.135166667000001,88.40833333,6.334833333,2.293416667, +2014-12-21 17:00:00,0.0,1021.515833,0.013583333000000001,88.63333333,6.509916667000001,2.339916667, +2014-12-21 18:00:00,0.0,1021.215,0.0,88.125,6.752416667,2.546833333, +2014-12-21 19:00:00,0.0,1021.226667,0.0,89.075,6.79025,3.007666667, +2014-12-21 20:00:00,0.0,1020.848333,0.0,88.63333333,6.9691666670000005,3.0179166669999997, +2014-12-21 21:00:00,0.0,1020.1625,0.0,90.65833333,6.8979166670000005,3.121083333, +2014-12-21 22:00:00,0.0,1019.775,0.0,89.33333333,7.0345,3.31975, +2014-12-21 23:00:00,0.0,1019.883333,0.0,90.16666667,7.0780833329999995,3.001583333, +2014-12-22 00:00:00,0.0,1019.8125,0.0,95.59166667,6.563666667000001,3.016, +2014-12-22 01:00:00,0.0,1019.253333,0.0,93.2,6.61625,3.2335833330000003, +2014-12-22 02:00:00,0.0,1018.420833,0.0,90.55,6.900416667000001,4.087583333, +2014-12-22 03:00:00,0.0,1018.364167,0.0,90.125,7.09275,3.701083333, +2014-12-22 04:00:00,0.0,1017.775,0.0,90.66666667,7.1415,3.33975, +2014-12-22 05:00:00,0.0,1017.358333,0.0,91.56666667,7.223666667000001,3.5639999999999996, +2014-12-22 06:00:00,0.0,1017.169167,0.0,93.85,7.021,3.5475, +2014-12-22 07:00:00,4.107103848,1017.125,0.0,92.925,7.198416667,3.69975, +2014-12-22 08:00:00,4.361683584,1017.1916669999999,0.559666667,96.225,6.898166667000001,3.86025, +2014-12-22 09:00:00,0.0,1017.289167,4.346833333,94.41666667,7.183166667,4.4415833330000005, +2014-12-22 10:00:00,0.0,1017.42,11.40675,93.025,7.450333333,3.9466666669999997, +2014-12-22 11:00:00,0.0,1017.198333,23.695,92.6,7.613833333,3.458, +2014-12-22 12:00:00,0.0,1016.449167,35.115,92.23333333,7.721833332999999,2.56675, +2014-12-22 13:00:00,0.0,1016.0175,29.185,90.125,8.011666667,2.7433333330000003, +2014-12-22 14:00:00,0.0,1015.330833,25.51,90.9,8.173333332999999,3.047416667, +2014-12-22 15:00:00,0.0,1015.235,9.68,91.14166667,8.3325,2.834166667, +2014-12-22 16:00:00,0.0,1015.791667,0.69625,90.83333333,8.506666667000001,3.0210000000000004, +2014-12-22 17:00:00,0.0,1015.7775,0.0,91.99166667,8.531666667,2.686833333, +2014-12-22 18:00:00,0.0,1015.525,0.0,91.16666667,8.7975,2.772416667, +2014-12-22 19:00:00,0.0,1015.48,0.0,90.11666667,9.253333332999999,3.395083333, +2014-12-22 20:00:00,0.0,1015.466667,0.0,89.58333333,9.495,3.45175, +2014-12-22 21:00:00,0.0,1015.515833,0.0,89.51666667,9.538333332999999,3.507666667, +2014-12-22 22:00:00,0.0,1015.3083330000001,0.0,89.60833333,9.455833333,3.4765, +2014-12-22 23:00:00,0.0,1015.368333,0.0,89.65833333,9.5275,3.2648333330000003, +2014-12-23 00:00:00,0.0,1015.590833,0.0,89.98333333,9.591666667,2.962916667, +2014-12-23 01:00:00,0.0,1015.536667,0.0,89.45833333,9.801666667000001,3.680333333, +2014-12-23 02:00:00,0.0,1015.3275,0.0,88.825,10.00083333,3.7045, +2014-12-23 03:00:00,0.0,1015.655833,0.0,88.23333333,10.10666667,3.364416667, +2014-12-23 04:00:00,0.0,1015.5275,0.0,88.33333333,9.985,3.5555, +2014-12-23 05:00:00,0.0,1015.4275,0.0,87.98333333,10.02916667,3.427083333, +2014-12-23 06:00:00,0.0,1015.614167,0.0,87.35833333,9.970833333,3.061833333, +2014-12-23 07:00:00,0.0,1015.79,0.0,87.20833333,9.926666667000001,2.6669166669999997, +2014-12-23 08:00:00,0.0,1015.9475,2.455166667,86.59166667,9.906666667,2.8643333330000003, +2014-12-23 09:00:00,0.0,1016.0075,20.48583333,86.25,10.00666667,2.977, +2014-12-23 10:00:00,0.0,1016.0925,21.92583333,86.60833333,10.04333333,3.22725, +2014-12-23 11:00:00,0.0,1016.12,39.66583333,86.38333333,10.13083333,3.317166667, +2014-12-23 12:00:00,0.0,1015.8625,50.56,86.61666667,10.295,2.8955833330000003, +2014-12-23 13:00:00,0.0,1015.454167,69.58416667,86.575,10.38333333,3.01725, +2014-12-23 14:00:00,0.0,1015.075,40.0825,86.93333333,10.42416667,2.945083333, +2014-12-23 15:00:00,0.0,1015.1775,11.60308333,88.05833333,10.0775,2.616083333, +2014-12-23 16:00:00,0.0,1015.091667,1.802583333,88.775,9.82,2.627166667, +2014-12-23 17:00:00,0.0,1015.113333,0.0,88.13333333,9.695833333,2.6608333330000002, +2014-12-23 18:00:00,0.0,1014.969167,0.0,88.49166667,9.4725,2.63525, +2014-12-23 19:00:00,0.0,1014.8975,0.0,89.76666667,9.221666667000001,2.461166667, +2014-12-23 20:00:00,0.0,1014.8025,0.0,91.7,8.864166667000001,2.6716666669999998, +2014-12-23 21:00:00,0.0,1014.741667,0.0,91.90833333,8.594166667,2.451333333, +2014-12-23 22:00:00,0.0,1014.791667,0.0,90.35833333,8.391666667,2.012166667, +2014-12-23 23:00:00,0.0,1014.6075,0.0,86.34166667,8.350833332999999,2.1575833330000003, +2014-12-24 00:00:00,0.0,1014.4575,0.0,84.73333333,8.154666667,2.3895, +2014-12-24 01:00:00,0.0,1014.071667,0.0,83.925,7.8186666670000005,2.639, +2014-12-24 02:00:00,0.0,1013.71,0.0,84.675,7.608166667000001,2.6455833330000003, +2014-12-24 03:00:00,0.0,1013.31,0.0,85.175,7.364833332999999,2.7406666669999997, +2014-12-24 04:00:00,0.0,1013.2275,0.0,86.75,6.846416667000001,3.1010000000000004, +2014-12-24 05:00:00,0.0,1012.955,0.0,87.63333333,6.3979166670000005,2.7519166669999997, +2014-12-24 06:00:00,0.0,1012.92,0.0,87.13333333,6.372083333,2.412, +2014-12-24 07:00:00,0.0,1013.008333,0.0,86.00833333,6.734666667000001,2.9394166669999997, +2014-12-24 08:00:00,0.0,1013.214167,0.914166667,85.13333333,7.0083333329999995,2.86475, +2014-12-24 09:00:00,0.0,1013.025,7.474,83.65,7.381416667000001,2.6278333330000003, +2014-12-24 10:00:00,0.0,1013.358333,15.87775,83.45,7.718583333,2.590083333, +2014-12-24 11:00:00,0.0,1012.84,39.01666667,85.36666667,7.942333333,2.714083333, +2014-12-24 12:00:00,0.0,1012.304167,67.495,87.33333333,8.549166667,3.388, +2014-12-24 13:00:00,3.950810016,1011.748333,29.23166667,91.88333333,8.229166667000001,3.462916667, +2014-12-24 14:00:00,3.780309168,1011.31,29.3925,93.99166667,8.147833333,3.213333333, +2014-12-24 15:00:00,0.0,1011.219167,13.28741667,90.725,8.69,3.313583333, +2014-12-24 16:00:00,0.0,1011.354167,0.9875,94.89166667,8.3175,3.17425, +2014-12-24 17:00:00,3.4624943999999998,1011.458333,0.0,96.43333333,8.109166667,3.3723333330000003, +2014-12-24 18:00:00,3.5400378960000003,1011.450833,0.0,97.275,8.02375,2.778083333, +2014-12-24 19:00:00,0.0,1011.5375,0.0,94.50833333,8.4175,2.93975, +2014-12-24 20:00:00,0.0,1011.531667,0.0,92.85833333,8.795833333,3.171416667, +2014-12-24 21:00:00,3.27592728,1012.496667,0.0,94.59166667,8.8325,2.765916667, +2014-12-24 22:00:00,3.204028464,1013.565833,0.0,93.08333333,7.359916667,2.323583333, +2014-12-24 23:00:00,4.071715728,1014.306667,0.0,89.525,6.382083333,2.133083333, +2014-12-25 00:00:00,0.0,1014.845833,0.0,87.55,5.9605,1.85225, +2014-12-25 01:00:00,0.0,1015.4625,0.0,83.14916667,5.47875,1.891083333, +2014-12-25 02:00:00,0.0,1015.823333,0.0,86.85833333,4.786916667,1.25875, +2014-12-25 03:00:00,0.0,1016.078333,0.0,86.05833333,4.45925,1.456666667, +2014-12-25 04:00:00,0.0,1016.055,0.0,83.175,4.581166667,2.051, +2014-12-25 05:00:00,0.0,1016.145,0.0,84.16666667,4.453666667,2.27, +2014-12-25 06:00:00,0.0,1016.215,0.0,85.525,4.233166667,1.874166667, +2014-12-25 07:00:00,0.0,1016.765,0.0,86.41666667,4.180083333,1.9678333330000002, +2014-12-25 08:00:00,0.0,1017.156667,1.9293333330000002,87.80833333,4.068916667,2.2325, +2014-12-25 09:00:00,0.0,1017.5675,21.08391667,88.425,3.9874166669999997,2.391666667, +2014-12-25 10:00:00,0.0,1018.11,82.51916667,89.45833333,4.155166667,2.723166667, +2014-12-25 11:00:00,0.0,1018.445,103.39,88.19166667,4.78575,3.234916667, +2014-12-25 12:00:00,0.0,1018.2541669999999,99.1225,90.74166667,5.03425,3.034916667, +2014-12-25 13:00:00,4.1727330480000004,1017.946667,115.435,87.61666667,5.56975,3.484916667, +2014-12-25 14:00:00,0.0,1017.844167,60.40833333,85.75833333,5.907666667000001,2.822916667, +2014-12-25 15:00:00,0.0,1018.045833,16.838,89.8,5.4131666670000005,2.042916667, +2014-12-25 16:00:00,0.0,1018.385,3.074166667,91.98333333,4.865083333,1.791166667, +2014-12-25 17:00:00,0.0,1018.911667,0.00425,94.79166667,4.0035,1.77275, +2014-12-25 18:00:00,0.0,1019.6275,0.0,95.83333333,3.7113333330000002,1.8539166669999998, +2014-12-25 19:00:00,0.0,1020.11,0.0,96.56666667,3.191916667,1.308083333, +2014-12-25 20:00:00,0.0,1020.7375,0.0,95.65,3.100666667,0.953416667, +2014-12-25 21:00:00,0.0,1021.075833,0.0,96.73333333,2.4634166669999997,0.811416667, +2014-12-25 22:00:00,0.0,1021.428333,0.0,98.675,1.556583333,0.655, +2014-12-25 23:00:00,0.0,1021.801667,0.0,96.76666667,1.284,0.7493333329999999, +2014-12-26 00:00:00,0.0,1022.0666669999999,0.0,97.40833333,1.9131666669999998,0.634916667, +2014-12-26 01:00:00,0.0,1022.229167,0.0,98.29166667,0.699583333,0.313416667, +2014-12-26 02:00:00,0.0,1022.539167,0.0,98.33333333,0.82175,0.319916667, +2014-12-26 03:00:00,0.0,1022.8175,0.0,98.81666667,1.442083333,0.540333333, +2014-12-26 04:00:00,0.0,1022.910833,0.0,99.33333333,1.3595833330000002,0.338583333, +2014-12-26 05:00:00,0.0,1022.805,0.0,99.25833333,0.656083333,0.39441666700000005, +2014-12-26 06:00:00,0.0,1022.600833,0.0,96.94166667,0.827583333,0.811666667, +2014-12-26 07:00:00,0.0,1023.0666669999999,0.0,97.85,1.18875,1.255916667, +2014-12-26 08:00:00,0.0,1023.3791669999999,3.809166667,99.78333333,1.1125,0.6579999999999999, +2014-12-26 09:00:00,0.0,1023.5,27.21916667,99.95,1.3156666670000001,0.572333333, +2014-12-26 10:00:00,0.0,1023.709167,38.485,98.78333333,2.1728333330000003,0.6023333329999999, +2014-12-26 11:00:00,2.65622124,1023.760833,84.885,96.98333333,3.429166667,1.224666667, +2014-12-26 12:00:00,0.0,1023.2925,161.0916667,90.55833333,4.549166667,1.328083333, +2014-12-26 13:00:00,0.0,1022.890833,89.19833333,80.22,4.4945833330000005,1.4670833330000002, +2014-12-26 14:00:00,0.0,1022.415833,92.68,78.07333333,4.713166667,1.32775, +2014-12-26 15:00:00,0.0,1022.201667,27.88666667,82.23083333,3.775666667,1.1785, +2014-12-26 16:00:00,0.0,1021.863333,4.2585,95.3,1.6859166669999999,0.515083333, +2014-12-26 17:00:00,0.0,1021.44,0.0,99.61666667,0.41658333299999994,0.5239166670000001, +2014-12-26 18:00:00,0.0,1020.8125,0.0,100.0,-0.106833333,0.52525, +2014-12-26 19:00:00,0.0,1020.278333,0.0,100.0,-1.05325,0.176083333, +2014-12-26 20:00:00,0.0,1019.723333,0.0,100.0,-1.3734166669999999,0.070916667, +2014-12-26 21:00:00,0.0,1018.890833,0.0,100.0,-1.1045,0.11983333300000001, +2014-12-26 22:00:00,0.0,1017.451667,0.0,100.0,-0.598,0.3765, +2014-12-26 23:00:00,0.0,1016.113333,0.0,100.0,-1.187666667,0.19675, +2014-12-27 00:00:00,0.0,1014.5625,0.0,100.0,-1.212166667,0.206333333, +2014-12-27 01:00:00,0.0,1012.898333,0.0,100.0,-0.6326666670000001,1.091583333, +2014-12-27 02:00:00,0.0,1011.239167,0.0,100.0,0.505166667,2.71475, +2014-12-27 03:00:00,0.0,1009.38,0.0,100.0,0.38175,2.5810000000000004, +2014-12-27 04:00:00,0.0,1007.185833,0.0,100.0,0.505166667,2.3976666669999998, +2014-12-27 05:00:00,0.0,1004.636667,0.0,99.075,0.564,2.3445, +2014-12-27 06:00:00,0.0,1002.151667,0.0,99.80833333,0.295666667,2.15025, +2014-12-27 07:00:00,0.0,999.7833332999999,0.0,100.0,0.15666666699999998,2.945916667, +2014-12-27 08:00:00,0.0,997.9425,0.502416667,100.0,-0.02575,3.554, +2014-12-27 09:00:00,0.0,996.6216667000001,7.081916667000001,100.0,-0.181333333,3.322083333, +2014-12-27 10:00:00,0.0,995.4083332999999,26.7675,100.0,-0.06408333299999999,2.875666667, +2014-12-27 11:00:00,0.0,994.1883332999998,45.95083333,100.0,0.033416667000000004,3.0556666669999997, +2014-12-27 12:00:00,0.0,993.2808332999999,47.855,100.0,0.065166667,3.17475, +2014-12-27 13:00:00,0.0,992.4675,23.0275,100.0,0.054166667,2.4096666669999998, +2014-12-27 14:00:00,0.0,992.175,16.70416667,100.0,-0.210166667,2.496333333, +2014-12-27 15:00:00,0.0,992.1,6.325416667000001,100.0,-0.557083333,1.6506666669999999, +2014-12-27 16:00:00,0.0,992.39,1.690916667,100.0,-1.1855,2.41125, +2014-12-27 17:00:00,0.0,992.7483332999999,0.0,100.0,-1.40825,1.70475, +2014-12-27 18:00:00,0.0,993.31,0.0,100.0,-1.810416667,3.6720833330000002, +2014-12-27 19:00:00,0.0,994.0666667000002,0.0,100.0,-1.873666667,4.3795, +2014-12-27 20:00:00,0.0,994.9016667000001,0.0,99.35833333,-1.745916667,4.791166667, +2014-12-27 21:00:00,0.0,995.8808332999998,0.0,95.7,-2.132333333,5.272083333, +2014-12-27 22:00:00,0.0,996.9958332999998,0.0,94.80833333,-2.366,6.2823333329999995, +2014-12-27 23:00:00,0.0,998.2416667000001,0.0,93.16666667,-2.377333333,5.962916667000001, +2014-12-28 00:00:00,0.0,999.275,0.0,91.03333333,-2.563416667,5.511583333, +2014-12-28 01:00:00,0.0,1000.140833,0.0,89.4,-2.705,5.805, +2014-12-28 02:00:00,0.0,1001.455,0.0,88.26666667,-2.72975,6.202833332999999, +2014-12-28 03:00:00,0.0,1002.959167,0.0,85.7,-3.1175833330000002,6.27, +2014-12-28 04:00:00,0.0,1004.29,0.0,86.24166667,-3.643166667,4.443833333, +2014-12-28 05:00:00,0.0,1005.88,0.0,86.44166667,-3.959916667,4.26475, +2014-12-28 06:00:00,0.0,1007.665833,0.0,85.05833333,-4.64625,4.138999999999999, +2014-12-28 07:00:00,0.0,1009.564167,0.0,83.8,-5.2945,4.150333333, +2014-12-28 08:00:00,0.0,1011.675,2.4235,83.7,-5.80625,4.380333333, +2014-12-28 09:00:00,0.0,1013.649167,15.41916667,84.65,-6.204666667000001,3.919083333, +2014-12-28 10:00:00,0.0,1015.349167,70.96,80.89333333,-5.684083332999999,2.945083333, +2014-12-28 11:00:00,0.0,1016.7475,111.65,71.79333333,-4.947833333,3.5745, +2014-12-28 12:00:00,0.0,1017.5775,174.8,69.64,-4.053833333,3.073666667, +2014-12-28 13:00:00,0.0,1018.614167,168.93333330000002,67.3725,-3.0745,1.7318333330000002, +2014-12-28 14:00:00,0.0,1019.425,130.5166667,66.46833333,-2.485,1.4891666669999999, +2014-12-28 15:00:00,0.0,1020.575,64.3475,73.00166667,-3.653916667,1.282166667, +2014-12-28 16:00:00,0.0,1021.7475,6.06025,91.56666667,-5.950166667,0.68875, +2014-12-28 17:00:00,0.0,1022.705833,0.03425,93.68333333,-6.5148333329999994,0.754583333, +2014-12-28 18:00:00,0.0,1024.213333,0.0,94.8,-7.06425,0.3375, +2014-12-28 19:00:00,0.0,1025.3375,0.0,96.15833333,-5.290166667,0.15233333300000002, +2014-12-28 20:00:00,0.0,1026.183333,0.0,94.00833333,-3.4216666669999998,0.6004166670000001, +2014-12-28 21:00:00,0.0,1026.589167,0.0,90.33333333,-3.5291666669999997,1.4559166669999999, +2014-12-28 22:00:00,0.0,1026.669167,0.0,92.25833333,-4.156916667,0.9720833329999999, +2014-12-28 23:00:00,0.0,1026.990833,0.0,97.26666667,-5.539333332999999,0.820333333, +2014-12-29 00:00:00,0.0,1027.179167,0.0,91.56666667,-4.225,0.8555, +2014-12-29 01:00:00,0.0,1026.5875,0.0,90.875,-4.019416667,1.13575, +2014-12-29 02:00:00,0.0,1025.8675,0.0,91.49166667,-4.514083333,1.325583333, +2014-12-29 03:00:00,0.0,1025.2425,0.0,92.58333333,-4.0905,1.60275, +2014-12-29 04:00:00,0.0,1024.541667,0.0,91.78333333,-4.004583333,1.933416667, +2014-12-29 05:00:00,0.0,1023.414167,0.0,94.59166667,-3.942916667,1.766666667, +2014-12-29 06:00:00,0.0,1022.7075,0.0,96.78333333,-3.8335,1.612333333, +2014-12-29 07:00:00,0.0,1022.596667,0.0,97.23333333,-3.349916667,0.9055, +2014-12-29 08:00:00,0.0,1023.048333,4.876333333,97.43333333,-2.657666667,1.24025, +2014-12-29 09:00:00,0.0,1023.073333,47.22916667,96.29166667,-1.5395833330000002,1.1255, +2014-12-29 10:00:00,0.0,1023.384167,76.00083333,96.66666667,-0.515416667,1.115166667, +2014-12-29 11:00:00,0.0,1023.474167,95.535,94.06666667,0.7726666670000001,1.43825, +2014-12-29 12:00:00,3.4712232000000003,1023.666667,134.45833330000002,90.64166667,2.2719166669999997,2.361333333, +2014-12-29 13:00:00,3.0583735919999997,1023.729167,73.29083333,89.39166667,2.4055,2.77175, +2014-12-29 14:00:00,15.73191581,1024.113333,21.90583333,88.55,2.183083333,2.591583333, +2014-12-29 15:00:00,2.913289272,1025.230833,11.14041667,90.00833333,1.463,3.116916667, +2014-12-29 16:00:00,2.712861048,1026.244167,2.15325,88.18333333,1.3466666669999998,2.002333333, +2014-12-29 17:00:00,0.0,1027.271667,0.00425,91.23333333,0.892083333,1.2830000000000001, +2014-12-29 18:00:00,2.4331108319999997,1028.103333,0.0,92.34166667,0.30091666699999997,1.07725, +2014-12-29 19:00:00,0.0,1028.955,0.0,87.29166667,0.37891666700000004,2.441416667, +2014-12-29 20:00:00,0.0,1029.755,0.0,88.14166667,-0.048666667000000004,1.72625, +2014-12-29 21:00:00,0.0,1030.300833,0.0,91.83333333,-0.40633333299999996,0.8644166670000001, +2014-12-29 22:00:00,0.0,1030.258333,0.0,94.65,-0.913333333,0.5960833329999999, +2014-12-29 23:00:00,0.0,1030.266667,0.0,91.31666667,-0.843166667,0.5960833329999999, +2014-12-30 00:00:00,0.0,1030.5075,0.0,90.69166667,-1.188,0.7999166670000001, +2014-12-30 01:00:00,0.0,1030.175,0.0,88.63333333,-1.298916667,0.444666667, +2014-12-30 02:00:00,0.0,1030.138333,0.0,90.20833333,-0.905416667,0.744833333, +2014-12-30 03:00:00,0.0,1029.59,0.0,91.46666667,-0.777166667,1.535916667, +2014-12-30 04:00:00,0.0,1029.250833,0.0,91.89166667,-0.5844166670000001,1.281666667, +2014-12-30 05:00:00,0.0,1028.565833,0.0,93.59166667,-0.43558333299999996,0.837333333, +2014-12-30 06:00:00,0.0,1028.205,0.0,96.5,-0.0475,0.8885, +2014-12-30 07:00:00,0.0,1028.230833,0.0,97.63333333,0.534416667,0.98225, +2014-12-30 08:00:00,0.0,1028.465,3.129833333,97.60833333,0.8195,0.8555, +2014-12-30 09:00:00,0.0,1028.6775,36.655,97.16666667,1.258166667,0.901833333, +2014-12-30 10:00:00,0.0,1028.666667,60.56666667,94.14166667,2.1381666669999997,1.006, +2014-12-30 11:00:00,11.61244735,1028.533333,104.6658333,89.475,3.637916667,1.410916667, +2014-12-30 12:00:00,40.18937522,1028.435833,109.1275,88.275,4.0005,1.6275, +2014-12-30 13:00:00,31.72884257,1028.255,136.7425,86.53333333,4.364,1.6735, +2014-12-30 14:00:00,25.21176518,1028.094167,59.30833333,87.825,3.810916667,1.329, +2014-12-30 15:00:00,13.60438922,1028.116667,19.97166667,92.7,3.193,1.2175833329999999, +2014-12-30 16:00:00,5.3809667999999995,1028.209167,2.472833333,94.94166667,2.659,1.042, +2014-12-30 17:00:00,0.0,1028.480833,0.0,94.96666667,2.395666667,1.05625, +2014-12-30 18:00:00,2.561921808,1028.503333,0.0,94.3,2.2120833330000003,1.2288333329999999, +2014-12-30 19:00:00,2.6324686319999997,1028.858333,0.0,92.16666667,2.2280833330000003,0.8079999999999999, +2014-12-30 20:00:00,0.0,1028.939167,0.0,92.64166667,2.097,0.658833333, +2014-12-30 21:00:00,2.5610939040000003,1028.919167,0.0,94.38333333,1.888166667,0.817333333, +2014-12-30 22:00:00,2.61151536,1028.8,0.0,95.56666667,1.8654166669999999,0.78275, +2014-12-30 23:00:00,2.762420328,1028.664167,0.0,96.43333333,1.9835,1.444, +2014-12-31 00:00:00,2.604810624,1028.5125,0.0,96.16666667,2.00375,1.5601666669999998, +2014-12-31 01:00:00,0.0,1028.244167,0.0,96.575,1.9738333330000002,1.610916667, +2014-12-31 02:00:00,2.624111424,1028.325,0.0,96.71666667,1.9670833330000002,1.027583333, +2014-12-31 03:00:00,0.0,1028.383333,0.0,96.54166667,1.9616666669999998,0.8019166670000001, +2014-12-31 04:00:00,2.50805016,1028.090833,0.0,96.91666667,1.9579166669999999,0.891333333, +2014-12-31 05:00:00,0.0,1027.668333,0.0,96.875,1.8711666669999998,1.005416667, +2014-12-31 06:00:00,0.0,1027.723333,0.0,98.46666667,1.8065,0.528083333, +2014-12-31 07:00:00,2.458285392,1028.2925,0.0,98.50833333,1.832583333,0.605666667, +2014-12-31 08:00:00,0.0,1028.685,2.8233333330000003,98.84166667,1.9730833330000002,1.23225, +2014-12-31 09:00:00,0.0,1029.129167,24.78,98.60833333,2.2040833330000003,0.5568333329999999, +2014-12-31 10:00:00,0.0,1029.403333,56.295,97.94166667,2.54225,0.7795833329999999, +2014-12-31 11:00:00,0.0,1029.374167,73.33416667,97.28333333,2.862083333,0.858583333, +2014-12-31 12:00:00,0.0,1028.945833,118.05,96.025,3.379416667,0.9966666670000001, +2014-12-31 13:00:00,0.0,1028.830833,82.86666667,98.14166667,3.369583333,1.202083333, +2014-12-31 14:00:00,0.0,1028.835833,52.9925,100.0,3.169166667,0.9435, +2014-12-31 15:00:00,0.0,1028.9925,30.5925,100.0,3.090083333,0.859666667, +2014-12-31 16:00:00,0.0,1029.195,4.1235,100.0,2.9735,0.630916667, +2014-12-31 17:00:00,0.0,1029.395,0.033333333,100.0,2.848833333,0.416916667, +2014-12-31 18:00:00,2.46041064,1029.673333,0.0,100.0,2.849416667,0.49291666700000003, +2014-12-31 19:00:00,0.0,1030.059167,0.0,100.0,2.8218333330000003,0.3025, +2014-12-31 20:00:00,0.0,1030.0691669999999,0.0,100.0,2.84975,0.408916667, +2014-12-31 21:00:00,0.0,1030.185,0.0,100.0,2.777083333,0.39383333299999995, +2014-12-31 22:00:00,0.0,1030.564167,0.0,100.0,2.620083333,0.775166667, +2014-12-31 23:00:00,0.0,1030.875,0.0,100.0,2.58075,0.6629166670000001, +2015-01-01 00:00:00,0.0,1030.7525,0.0,100.0,2.256583333,0.236916667, +2015-01-01 01:00:00,0.0,1030.9175,0.0,100.0,2.15925,0.023916667000000003, +2015-01-01 02:00:00,0.0,1031.030833,0.0,100.0,2.276833333,0.098416667, +2015-01-01 03:00:00,0.0,1031.0575,0.0,100.0,2.306166667,0.2135, +2015-01-01 04:00:00,0.0,1030.640833,0.0,100.0,2.2080833330000003,0.11816666699999999, +2015-01-01 05:00:00,0.0,1030.254167,0.0,100.0,1.7783333330000002,0.825666667, +2015-01-01 06:00:00,0.0,1030.341667,0.0,100.0,1.7630833330000002,0.735, +2015-01-01 07:00:00,0.0,1031.72,0.0,100.0,1.9026666669999999,0.291333333, +2015-01-01 08:00:00,0.0,1032.099167,1.418916667,100.0,2.0556666669999997,0.68675, +2015-01-01 09:00:00,0.0,1031.813333,17.86583333,100.0,1.986083333,0.791416667, +2015-01-01 10:00:00,0.0,1031.248333,55.32416667,100.0,2.2553333330000003,1.197416667, +2015-01-01 11:00:00,0.0,1031.1425,83.5925,100.0,2.439916667,0.96175, +2015-01-01 12:00:00,0.0,1030.961667,60.83,100.0,2.7755,0.54125, +2015-01-01 13:00:00,0.0,1030.590833,48.0675,100.0,3.1238333330000003,0.3425, +2015-01-01 14:00:00,0.0,1029.8683330000001,78.62333333,99.76666667,3.408666667,0.8845833329999999, +2015-01-01 15:00:00,0.0,1029.6975,44.0125,98.78333333,3.21,1.103, +2015-01-01 16:00:00,0.0,1029.6125,7.394583333,99.90833333,3.0895,0.35758333299999995, +2015-01-01 17:00:00,0.0,1029.2025,0.052083332999999996,100.0,2.074083333,0.19, +2015-01-01 18:00:00,0.0,1028.92,0.0,100.0,1.2670000000000001,0.664333333, +2015-01-01 19:00:00,0.0,1028.360833,0.0,100.0,0.4315,0.426416667, +2015-01-01 20:00:00,0.0,1028.134167,0.0,100.0,-0.043583332999999995,0.31075, +2015-01-01 21:00:00,0.0,1027.431667,0.0,100.0,0.426,0.563083333, +2015-01-01 22:00:00,0.0,1027.056667,0.0,100.0,0.044083332999999995,0.8118333329999999, +2015-01-01 23:00:00,0.0,1026.629167,0.0,100.0,0.067916667,1.0849166670000001, +2015-02-01 00:00:00,0.0,1025.758333,0.0,99.59166667,-0.132833333,1.69875, +2015-02-01 01:00:00,0.0,1024.55,0.0,92.575,-0.519083333,1.5525, +2015-02-01 02:00:00,0.0,1023.91,0.0,99.50833333,-1.0525,0.5013333329999999, +2015-02-01 03:00:00,0.0,1023.328333,0.0,96.05,-1.0989166670000001,0.640333333, +2015-02-01 04:00:00,0.0,1022.425,0.0,86.075,-0.345416667,1.0593333329999999, +2015-02-01 05:00:00,0.0,1021.676667,0.0,82.23333333,0.97875,1.109916667, +2015-02-01 06:00:00,0.0,1021.2491669999999,0.0,85.36666667,1.384416667,1.093916667, +2015-02-01 07:00:00,39.41083373,1020.8875,0.0,93.975,1.4815,1.155333333, +2015-02-01 08:00:00,7.93153056,1020.850833,1.3630000000000002,96.2,2.041833333,1.140083333, +2015-02-01 09:00:00,5.388300168,1021.15,16.41583333,97.94166667,2.324583333,0.852583333, +2015-02-01 10:00:00,0.0,1021.400833,17.01216667,98.875,2.549083333,0.924083333, +2015-02-01 11:00:00,0.0,1021.260833,33.6675,98.46666667,3.5375,1.48275, +2015-02-01 12:00:00,0.0,1021.065,49.95333333,97.34166667,4.2139166669999994,1.8934166669999999, +2015-02-01 13:00:00,0.0,1021.700833,26.1725,98.85,4.44225,2.2665833330000003, +2015-02-01 14:00:00,0.0,1022.086667,27.28666667,99.44166667,4.3345,1.868333333, +2015-02-01 15:00:00,0.0,1022.5525,34.12,98.35,4.689166667,2.429083333, +2015-02-01 16:00:00,0.0,1023.240833,3.122083333,98.14166667,4.505916667,2.423666667, +2015-02-01 17:00:00,0.0,1023.9575,0.016416667,97.73333333,4.232916667,2.412083333, +2015-02-01 18:00:00,0.0,1024.771667,0.0,98.7,3.8961666669999997,1.6830833330000001, +2015-02-01 19:00:00,0.0,1025.8525,0.0,98.73333333,3.6063333330000003,1.5465, +2015-02-01 20:00:00,0.0,1026.598333,0.0,95.375,3.5439999999999996,1.3715, +2015-02-01 21:00:00,0.0,1026.923333,0.0,92.21666667,3.6934166669999997,1.72975, +2015-02-01 22:00:00,0.0,1027.218333,0.0,89.75,4.054666667,1.9685, +2015-02-01 23:00:00,0.0,1027.516667,0.0,87.65,4.005916667,2.5476666669999997, +2015-03-01 00:00:00,0.0,1027.190833,0.0,89.925,2.82975,1.309416667,238.01931933333333 +2015-03-01 01:00:00,0.0,1027.445,0.0,91.29166667,1.600333333,0.371166667,238.018986 +2015-03-01 02:00:00,0.0,1027.409167,0.0,91.775,1.33,0.192,238.020986 +2015-03-01 03:00:00,0.0,1027.423333,0.0,92.0,1.367583333,0.489,238.020986 +2015-03-01 04:00:00,0.0,1026.399167,0.0,91.69166667,2.0540000000000003,1.0224166670000001,238.020986 +2015-03-01 05:00:00,0.0,1025.598333,0.0,91.20833333,2.376416667,1.431583333,238.02168599999996 +2015-03-01 06:00:00,0.0,1025.053333,0.0,93.23333333,2.053083333,0.9670000000000001,238.021336 +2015-03-01 07:00:00,0.0,1023.766667,0.0,96.44166667,1.30125,0.513916667,238.020986 +2015-03-01 08:00:00,0.0,1023.4958330000001,1.253666667,96.275,1.165666667,0.322416667,238.01826933333334 +2015-03-01 09:00:00,0.0,1022.824167,13.87366667,95.65833333,1.5275,0.300083333,238.019986 +2015-03-01 10:00:00,0.0,1021.918333,36.70916667,96.15,2.008166667,0.411916667,238.01998600000002 +2015-03-01 11:00:00,0.0,1020.626667,56.32916667,95.025,3.346166667,1.122666667,238.0196526666667 +2015-03-01 12:00:00,2.7545888880000002,1019.023333,29.30583333,95.375,3.364666667,0.7715,238.018286 +2015-03-01 13:00:00,16.29758923,1017.088333,29.29583333,98.55833333,2.85875,1.157166667,238.018986 +2015-03-01 14:00:00,18.28733818,1015.154167,23.79166667,100.0,1.9385833330000002,1.031583333,238.018986 +2015-03-01 15:00:00,5.135113152,1013.794167,16.31416667,100.0,1.637583333,0.940583333,238.018986 +2015-03-01 16:00:00,2.39477244,1012.71,2.389916667,100.0,1.629083333,0.765916667,238.01828600000002 +2015-03-01 17:00:00,2.542189176,1011.598333,0.007083333000000001,100.0,1.39225,0.65225,238.018286 +2015-03-01 18:00:00,2.413401456,1011.0041669999999,0.0,100.0,0.767916667,0.10108333300000001,238.018986 +2015-03-01 19:00:00,0.0,1011.251667,0.0,100.0,0.386166667,0.2375,238.018986 +2015-03-01 20:00:00,0.0,1012.100833,0.0,100.0,0.35925,0.0,238.018986 +2015-03-01 21:00:00,0.0,1013.285833,0.0,100.0,0.614,0.028999999999999998,238.018986 +2015-03-01 22:00:00,0.0,1014.8166669999999,0.0,100.0,0.8683333329999999,0.780416667,238.01863600000001 +2015-03-01 23:00:00,0.0,1016.66,0.0,99.79166667,1.5475833330000002,1.313583333,238.01896933333333 +2015-04-01 00:00:00,0.0,1017.774167,0.0,98.8,1.804,0.849583333,238.0561299 +2015-04-01 01:00:00,10.19419848,1018.729167,0.0,99.725,1.678666667,1.095583333,238.05572228333327 +2015-04-01 02:00:00,12.78721579,1020.304167,0.0,99.83333333,1.78175,1.148,238.0553934333333 +2015-04-01 03:00:00,8.038666056,1021.463333,0.0,98.73333333,2.1583333330000003,1.1885,238.0551680333334 +2015-04-01 04:00:00,5.2245402,1022.109167,0.0,97.81666667,1.955,1.183333333,238.05486383333331 +2015-04-01 05:00:00,5.29885248,1022.3875,0.0,98.14166667,2.14025,1.36975,238.0545867666667 +2015-04-01 06:00:00,2.626314456,1022.52,0.0,96.95,1.74625,1.3245833329999999,238.05423205000002 +2015-04-01 07:00:00,0.0,1023.104167,0.0,96.68333333,1.279416667,1.052083333,238.05392541666666 +2015-04-01 08:00:00,0.0,1024.009167,3.8471666669999998,96.375,1.278583333,0.976,238.0536483 +2015-04-01 09:00:00,2.758141824,1024.935833,33.82,96.325,1.97875,1.104666667,238.05342166666665 +2015-04-01 10:00:00,8.425283568,1025.970833,49.79416667,97.05,2.430416667,1.4350833330000001,238.0531938 +2015-04-01 11:00:00,9.207573744,1026.329167,70.28666667,96.46666667,2.870916667,1.9225833330000002,238.05304108333334 +2015-04-01 12:00:00,2.745404544,1026.7675,82.20916667,95.5,3.696,1.4529166669999998,238.0528404 +2015-04-01 13:00:00,0.0,1027.045833,59.7875,93.34166667,4.1384166669999995,1.537166667,238.0527628 +2015-04-01 14:00:00,0.0,1027.456667,46.23666667,89.01666667,4.210333333,1.6353333330000002,238.0526642666667 +2015-04-01 15:00:00,0.0,1028.03,51.57416667,86.45,4.419166667,1.6248333330000002,238.0524339333334 +2015-04-01 16:00:00,0.0,1028.525833,5.256083333,88.91666667,3.948,1.575083333,238.0522307 +2015-04-01 17:00:00,0.0,1028.863333,0.033333333,91.44166667,3.558833333,1.299166667,238.05213095 +2015-04-01 18:00:00,0.0,1029.005,0.0,93.025,3.17425,0.8999166670000001,238.05200169999998 +2015-04-01 19:00:00,0.0,1029.475833,0.0,94.43333333,2.644583333,0.98875,238.05197706666664 +2015-04-01 20:00:00,0.0,1029.804167,0.0,95.10833333,2.553083333,0.721583333,238.05182803333332 +2015-04-01 21:00:00,0.0,1030.463333,0.0,96.89166667,2.915,0.76025,238.0517504333333 +2015-04-01 22:00:00,0.0,1030.8075,0.0,96.75,2.941833333,0.678083333,238.0516494333333 +2015-04-01 23:00:00,0.0,1030.713333,0.0,97.56666667,2.90025,1.3754166669999999,238.0516494333333 +2015-05-01 00:00:00,0.0,1030.695,0.0,96.75,2.738333333,1.049833333, +2015-05-01 01:00:00,0.0,1030.533333,0.0,97.125,2.759583333,0.981, +2015-05-01 02:00:00,0.0,1030.38,0.0,96.525,2.6335,1.1634166670000001, +2015-05-01 03:00:00,0.0,1030.1375,0.0,97.53333333,1.9504166669999998,1.00775, +2015-05-01 04:00:00,0.0,1029.860833,0.0,96.99166667,0.77225,0.21025, +2015-05-01 05:00:00,0.0,1029.771667,0.0,97.74166667,0.981083333,1.0270000000000001, +2015-05-01 06:00:00,0.0,1029.379167,0.0,98.08333333,0.339916667,0.4995, +2015-05-01 07:00:00,0.0,1028.943333,0.0,97.05,-1.460833333,0.19399999999999998, +2015-05-01 08:00:00,0.0,1028.9308330000001,3.577416667,98.11666667,-1.968833333,0.257583333, +2015-05-01 09:00:00,0.0,1028.69,18.24,97.93333333,-0.081666667,0.110333333, +2015-05-01 10:00:00,0.0,1028.244167,66.73833333,95.05833333,1.661583333,1.065083333, +2015-05-01 11:00:00,0.0,1028.066667,105.8075,90.775,2.689166667,1.206583333, +2015-05-01 12:00:00,0.0,1027.6525,151.55833330000002,88.975,3.48975,1.442666667, +2015-05-01 13:00:00,0.0,1026.7566669999999,159.875,86.06666667,4.25575,1.320916667, +2015-05-01 14:00:00,0.0,1026.446667,128.6416667,82.7,4.734083333,1.210916667, +2015-05-01 15:00:00,0.0,1026.048333,81.20083333,84.66666667,4.083583333,1.05375, +2015-05-01 16:00:00,0.0,1025.336667,9.257833332999999,89.2,1.88625,0.38641666700000005, +2015-05-01 17:00:00,0.0,1024.933333,0.137166667,97.30833333,-0.50625,0.083083333, +2015-05-01 18:00:00,0.0,1024.808333,0.0,99.775,-1.381666667,0.058583333, +2015-05-01 19:00:00,0.0,1024.874167,0.0,100.0,-2.104833333,0.13275, +2015-05-01 20:00:00,0.0,1024.563333,0.0,100.0,-2.6415,0.082416667, +2015-05-01 21:00:00,0.0,1024.324167,0.0,100.0,-3.110833333,0.041583333, +2015-05-01 22:00:00,0.0,1024.029167,0.0,100.0,-3.348833333,0.179666667, +2015-05-01 23:00:00,0.0,1023.758333,0.0,100.0,-3.818,0.062083333, +2015-06-01 00:00:00,0.0,1023.373333,0.0,100.0,-4.1305,0.071166667,237.7998251833333 +2015-06-01 01:00:00,0.0,1022.715,0.0,100.0,-4.59625,0.025583333,237.80258325 +2015-06-01 02:00:00,0.0,1022.35,0.0,100.0,-4.86125,0.06075,237.80223850000002 +2015-06-01 03:00:00,0.0,1022.0375,0.0,100.0,-4.960416667,0.007416666999999999,237.80413463333332 +2015-06-01 04:00:00,0.0,1021.643333,0.0,100.0,-4.63325,0.0,237.80516886666666 +2015-06-01 05:00:00,0.0,1021.215,0.0,100.0,-4.331416667,0.00225,237.80775454999994 +2015-06-01 06:00:00,0.0,1020.826667,0.0,100.0,-3.47175,0.04325,237.80947831666663 +2015-06-01 07:00:00,0.0,1020.535833,0.0,100.0,-2.80225,0.05825,237.8079269333333 +2015-06-01 08:00:00,0.0,1020.414167,5.356916667,100.0,-2.36125,0.6970833329999999,237.8074098 +2015-06-01 09:00:00,0.0,1020.469167,33.90166667,100.0,-2.329583333,0.707916667,237.80689269999996 +2015-06-01 10:00:00,0.0,1020.3075,51.3825,100.0,-2.147166667,0.631916667,237.80999543333334 +2015-06-01 11:00:00,0.0,1019.968333,59.0975,100.0,-2.0965,0.9219166670000001,237.81102968333335 +2015-06-01 12:00:00,0.0,1019.3425,67.87166667,100.0,-1.83,0.29225,237.81913138333334 +2015-06-01 13:00:00,0.0,1018.715,64.15833333,100.0,-1.3713333330000002,0.44541666700000004,237.8179247666667 +2015-06-01 14:00:00,0.0,1018.146667,53.86083333,100.0,-1.26675,0.908083333,237.81585625000002 +2015-06-01 15:00:00,0.0,1017.991667,25.20583333,100.0,-1.384166667,0.966916667,237.81309819999998 +2015-06-01 16:00:00,0.0,1017.898333,5.105916667,100.0,-1.58375,0.8028333329999999,237.8084440333333 +2015-06-01 17:00:00,0.0,1017.664167,0.02725,100.0,-1.6513333330000002,0.588833333,237.8087887833333 +2015-06-01 18:00:00,0.0,1017.9325,0.0,100.0,-1.6624166669999998,0.36616666700000006,237.80947831666666 +2015-06-01 19:00:00,0.0,1018.1916669999999,0.0,100.0,-1.694666667,0.410083333,237.80982306666667 +2015-06-01 20:00:00,0.0,1018.6425,0.0,100.0,-1.888916667,0.203083333,237.81206398333333 +2015-06-01 21:00:00,0.0,1018.7225,0.0,100.0,-2.119916667,0.666083333,237.81396011666666 +2015-06-01 22:00:00,0.0,1019.036667,0.0,100.0,-1.97475,0.627916667,237.81568388333335 +2015-06-01 23:00:00,0.0,1019.3708330000001,0.0,100.0,-1.7184166669999998,0.944416667,237.81706291666669 +2015-07-01 00:00:00,0.0,1019.748333,0.0,100.0,-1.43125,0.93975,237.65158126666665 +2015-07-01 01:00:00,0.0,1019.925,0.0,100.0,-1.1045,0.7015,237.65537358333333 +2015-07-01 02:00:00,0.0,1020.185,0.0,100.0,-0.5944166670000001,0.528,237.65830396666664 +2015-07-01 03:00:00,0.0,1020.475,0.0,100.0,-0.470416667,0.259583333,237.66037246666667 +2015-07-01 04:00:00,0.0,1021.015833,0.0,100.0,-0.24825,0.22125,237.66433715000002 +2015-07-01 05:00:00,0.0,1021.581667,0.0,100.0,0.63675,0.366333333,237.66399238333335 +2015-07-01 06:00:00,0.0,1021.8925,0.0,100.0,1.1315,1.084083333,237.66433713333333 +2015-07-01 07:00:00,0.0,1022.020833,0.0,100.0,1.0545,0.763833333,237.66416478333335 +2015-07-01 08:00:00,0.0,1023.076667,3.728,100.0,0.790666667,0.204,237.6638200166667 +2015-07-01 09:00:00,0.0,1024.2425,12.40083333,100.0,1.3934166669999999,0.877,237.65726971666666 +2015-07-01 10:00:00,0.0,1024.4475,45.27083333,100.0,1.9935833330000001,1.192083333,237.64589286666668 +2015-07-01 11:00:00,15.02920063,1024.566667,74.26416667,99.99166667,2.555916667,1.527,237.6348607333333 +2015-07-01 12:00:00,0.0,1024.349167,151.85,97.025,3.7985,0.8733333329999999,237.62917233333334 +2015-07-01 13:00:00,0.0,1024.108333,128.68833329999998,97.09166667,4.2678333330000005,1.215,237.62348386666665 +2015-07-01 14:00:00,0.0,1024.211667,47.0525,96.79166667,3.609833333,0.920416667,237.61796783333332 +2015-07-01 15:00:00,0.0,1024.25,29.13416667,97.88333333,2.66125,0.5840833329999999,237.61331365 +2015-07-01 16:00:00,0.0,1024.39,5.61425,97.61666667,1.591083333,0.36258333299999995,237.60969375000002 +2015-07-01 17:00:00,0.0,1024.625,0.041333333,96.01666667,2.178833333,1.3495,237.60693573333333 +2015-07-01 18:00:00,0.0,1024.5775,0.0,96.075,2.0285,0.802,237.60590146666667 +2015-07-01 19:00:00,0.0,1024.445833,0.0,93.76666667,2.155166667,0.86125,237.60590146666667 +2015-07-01 20:00:00,0.0,1024.185833,0.0,93.50833333,2.026833333,0.807416667,237.60848711666665 +2015-07-01 21:00:00,0.0,1023.980833,0.0,94.48333333,1.71925,0.854083333,237.61365841666668 +2015-07-01 22:00:00,0.0,1023.9991669999999,0.0,95.38333333,1.60175,1.302333333,237.61762305000002 +2015-07-01 23:00:00,0.0,1023.8708330000001,0.0,94.69166667,1.49075,1.11725,237.62193248333332 +2015-08-01 00:00:00,0.0,1023.3741669999999,0.0,93.65,1.522666667,1.0140833329999999,237.50293601666667 +2015-08-01 01:00:00,0.0,1022.775833,0.0,94.49166667,1.156666667,0.906083333,237.50572388333333 +2015-08-01 02:00:00,0.0,1022.385,0.0,96.95833333,1.162916667,0.760416667,237.50906935 +2015-08-01 03:00:00,0.0,1021.726667,0.0,98.14166667,1.2651666670000001,0.7315,237.51311176666664 +2015-08-01 04:00:00,0.0,1021.388333,0.0,95.71666667,1.959916667,0.9059166670000001,237.51478448333333 +2015-08-01 05:00:00,3.0610283039999997,1020.976667,0.0,96.08333333,3.10075,1.6225,237.51799053333332 +2015-08-01 06:00:00,0.0,1020.6883330000001,0.0,97.31666667,2.925416667,1.4196666669999998,237.52105721666666 +2015-08-01 07:00:00,8.086352783999999,1020.420833,0.0,98.15833333,2.5426666669999998,1.058666667,237.52286931666663 +2015-08-01 08:00:00,2.494829304,1020.241667,0.707833333,97.66666667,2.911666667,0.7675833329999999,237.52440263333332 +2015-08-01 09:00:00,10.48868472,1020.065833,13.15975,97.43333333,3.790833333,1.063083333,237.52049961666663 +2015-08-01 10:00:00,2.719686528,1019.509167,51.88333333,96.325,5.0591666669999995,1.56675,237.50948753333333 +2015-08-01 11:00:00,0.0,1018.833333,80.86583333,94.575,6.266833332999999,1.3155,237.49945115000003 +2015-08-01 12:00:00,0.0,1017.92,38.7725,93.95833333,6.923083332999999,1.3625833330000001,237.48606936666667 +2015-08-01 13:00:00,12.29275764,1016.9225,23.135,97.65,6.814583333,1.7996666669999999,237.47756635 +2015-08-01 14:00:00,9.207920496,1015.878333,11.37866667,97.575,7.065416667,1.8625,237.47254816666668 +2015-08-01 15:00:00,6.477576072000001,1014.988333,4.78725,96.31666667,7.91775,2.2945,237.47115424999996 +2015-08-01 16:00:00,19.75253698,1014.5675,1.610916667,96.65,8.15,2.30525,237.46948151666666 +2015-08-01 17:00:00,19.22066573,1014.4375,0.0,97.55833333,8.125333333,2.382083333,237.46780880000003 +2015-08-01 18:00:00,40.50383086,1013.8741669999999,0.0,97.15833333,8.42,2.782166667,237.46460273333332 +2015-08-01 19:00:00,48.89274408,1014.519167,0.0,97.28333333,8.485,3.231666667,237.46418455000003 +2015-08-01 20:00:00,0.0,1018.069167,0.0,92.96666667,7.34725,2.967166667,237.46808758333336 +2015-08-01 21:00:00,0.0,1020.88,0.0,94.40833333,6.3848333329999996,2.680416667,237.47199058333334 +2015-08-01 22:00:00,0.0,1022.445833,0.0,94.575,5.9539166670000006,1.562416667,237.47603303333335 +2015-08-01 23:00:00,0.0,1023.340833,0.0,93.75833333,5.992583333,2.091916667,237.4814693666667 +2015-09-01 00:00:00,0.0,1023.825,0.0,96.49166667,5.69775,2.036083333,237.51079239999999 +2015-09-01 01:00:00,0.0,1023.405833,0.0,96.15833333,5.567833332999999,1.9895833330000001,237.5135843833333 +2015-09-01 02:00:00,0.0,1023.068333,0.0,95.39166667,5.264416667,1.8895,237.51637631666665 +2015-09-01 03:00:00,0.0,1023.305,0.0,93.95833333,5.251,1.7184166669999998,237.51978870000002 +2015-09-01 04:00:00,0.0,1023.2175,0.0,92.86666667,5.873666667,1.137833333,237.52056425 +2015-09-01 05:00:00,0.0,1022.1175,0.0,92.50833333,5.822583333,1.13,237.52397661666666 +2015-09-01 06:00:00,0.0,1020.2025,0.0,89.21666667,6.4565,1.956166667,237.52645831666666 +2015-09-01 07:00:00,0.0,1018.576667,0.0,85.69166667,6.9505,2.905916667,237.52956046666668 +2015-09-01 08:00:00,0.0,1017.599167,2.23425,85.71666667,7.415833332999999,3.992666667,237.53173200000003 +2015-09-01 09:00:00,4.405913136000001,1016.228333,23.39391667,84.2,7.975333332999999,4.00475,237.53405863333333 +2015-09-01 10:00:00,0.0,1015.0525,40.26583333,83.45833333,8.598333333,4.6285,237.5371608 +2015-09-01 11:00:00,0.0,1014.84,18.95833333,86.23333333,8.586666667000001,4.622166667,237.54103848333338 +2015-09-01 12:00:00,0.0,1014.134167,25.00916667,88.44166667,8.609166667,3.838083333,237.54336510000005 +2015-09-01 13:00:00,0.0,1013.090833,30.88666667,88.74166667,9.089166667,4.287416667,237.54786326666667 +2015-09-01 14:00:00,0.0,1012.4325,47.01083333,87.43333333,9.799166667,4.609916667,237.5563942166667 +2015-09-01 15:00:00,0.0,1012.288333,44.42166667,87.63333333,10.185,3.2035,237.5604270166667 +2015-09-01 16:00:00,0.0,1013.0075,10.34183333,87.29166667,10.41166667,2.8193333330000003,237.56399453333336 +2015-09-01 17:00:00,0.0,1013.970833,0.047916667,80.6475,10.46583333,2.9268333330000003,237.56694158333335 +2015-09-01 18:00:00,0.0,1013.885833,0.0,71.81583333,10.3125,3.557583333,237.57004371666667 +2015-09-01 19:00:00,3.4794374880000003,1013.131667,0.0,79.83583333,9.424166667,2.309166667,237.57004371666665 +2015-09-01 20:00:00,14.81046662,1011.341667,0.0,93.35,7.789083333,1.8893333330000002,237.57237031666668 +2015-09-01 21:00:00,13.76723318,1010.37,0.0,98.68333333,8.09125,1.4818333330000002,237.57392141666665 +2015-09-01 22:00:00,17.18321076,1009.336667,0.0,99.98333333,8.856666667,1.5385,237.57562760000005 +2015-09-01 23:00:00,22.91013614,1008.849167,0.0,100.0,9.880833333,2.620833333,237.57764401666665 +2015-10-01 00:00:00,10.990914,1008.65,0.0,100.0,11.00416667,3.2445,237.58601986666667 +2015-10-01 01:00:00,4.155659568,1008.519167,0.0,99.98333333,11.77166667,3.538916667,237.58710561666666 +2015-10-01 02:00:00,0.0,1008.625,0.0,99.94166667,12.0375,2.949,237.58834650000003 +2015-10-01 03:00:00,3.3433117439999998,1008.800833,0.0,98.2,12.39833333,2.479,237.59098331666667 +2015-10-01 04:00:00,0.0,1009.198333,0.0,94.21666667,13.21916667,2.653083333,237.59237931666667 +2015-10-01 05:00:00,0.0,1009.074167,0.0,91.63333333,13.53333333,2.5605833330000003,237.59330995000002 +2015-10-01 06:00:00,0.0,1008.628333,0.0,90.25833333,13.72,3.21875,237.59175886666665 +2015-10-01 07:00:00,0.0,1007.951667,0.0,89.2,14.37083333,3.918,237.59222420000003 +2015-10-01 08:00:00,0.0,1007.775,1.86975,85.33333333,14.03583333,3.97275,237.59237929999998 +2015-10-01 09:00:00,0.0,1007.216667,18.73366667,83.75,13.89083333,4.3245,237.59346505 +2015-10-01 10:00:00,0.0,1007.190833,84.655,80.52583333,14.42916667,4.509333333,237.59222418333334 +2015-10-01 11:00:00,0.0,1007.334167,117.30666670000001,78.1525,14.53083333,4.7675,237.59051799999997 +2015-10-01 12:00:00,0.0,1006.234167,122.49166670000001,77.20583333,14.40833333,5.110333333,237.58834648333334 +2015-10-01 13:00:00,0.0,1005.425833,65.49,77.24583333,14.03083333,4.888333333,237.58400344999998 +2015-10-01 14:00:00,0.0,1004.239167,44.71833333,77.87166667,13.64,4.4553333330000005,237.5791951 +2015-10-01 15:00:00,0.0,1004.5666669999999,21.235,83.55833333,12.96583333,4.617333333,237.57748890000002 +2015-10-01 16:00:00,0.0,1004.575,5.775,88.25,12.3825,4.506083333,237.5771786833333 +2015-10-01 17:00:00,12.87401774,1004.609167,0.07741666700000001,92.68333333,11.77833333,4.323583333,237.57578268333336 +2015-10-01 18:00:00,81.82918092,1006.800833,0.0,91.025,10.11083333,4.222333333,237.57655825000003 +2015-10-01 19:00:00,0.0,1008.605833,0.0,85.525,8.431666667,2.7824166669999997,237.57702358333333 +2015-10-01 20:00:00,0.0,1009.389167,0.0,82.4,7.87225,2.9083333330000003,237.57779911666668 +2015-10-01 21:00:00,0.0,1009.645833,0.0,83.60833333,7.351,2.790916667,237.57888488333333 +2015-10-01 22:00:00,0.0,1009.983333,0.0,80.66,6.582333332999999,2.742333333,237.57841956666667 +2015-10-01 23:00:00,0.0,1010.178333,0.0,76.82083333,5.507083333,2.4148333330000002,237.577644 +2015-11-01 00:00:00,0.0,1010.2925,0.0,76.7775,4.63675,1.7676666669999999,237.7245804833333 +2015-11-01 01:00:00,0.0,1010.2,0.0,77.2075,3.9805833330000002,1.3646666669999998,237.72411565000002 +2015-11-01 02:00:00,0.0,1010.116667,0.0,78.48,3.6101666669999997,1.36825,237.7250453 +2015-11-01 03:00:00,0.0,1009.940833,0.0,80.765,2.696,1.160083333,237.72427058333332 +2015-11-01 04:00:00,0.0,1009.721667,0.0,82.35,2.430166667,1.305916667,237.72256625 +2015-11-01 05:00:00,0.0,1009.4875,0.0,83.30833333,2.69725,1.5615833330000002,237.72303108333332 +2015-11-01 06:00:00,0.0,1009.340833,0.0,83.01666667,2.878833333,2.066083333,237.72489038333333 +2015-11-01 07:00:00,0.0,1009.791667,0.0,82.88333333,3.114666667,2.336833333,237.72365085 +2015-11-01 08:00:00,0.0,1010.0825,3.369333333,81.18333333,3.275583333,2.5093333330000003,237.72132671666668 +2015-11-01 09:00:00,0.0,1011.049167,30.975,82.1475,3.477416667,2.931083333,237.7205519833333 +2015-11-01 10:00:00,0.0,1011.606667,120.1475,80.45416667,4.145916667,3.00525,237.71915751666666 +2015-11-01 11:00:00,2.866109928,1012.376667,48.81916667,84.1125,4.015416667,2.67975,237.71946738333335 +2015-11-01 12:00:00,0.0,1013.0825,54.16416667,85.47833333,3.7715,2.3135,237.71869268333333 +2015-11-01 13:00:00,0.0,1013.568333,63.475,79.96083333,4.449333333,2.9123333330000003,237.7194674166667 +2015-11-01 14:00:00,3.3438269039999997,1014.113333,26.75833333,80.08916667,4.046333333,2.5918333330000003,237.72039706666666 +2015-11-01 15:00:00,0.0,1014.751667,14.36,76.0325,4.570083333,3.195583333,237.72086189999996 +2015-11-01 16:00:00,0.0,1015.241667,9.7315,74.04333333,4.710416667,3.312166667,237.72318603333335 +2015-11-01 17:00:00,0.0,1015.7475,0.0855,76.5725,4.470083333,3.3443333330000002,237.72612989999996 +2015-11-01 18:00:00,0.0,1016.298333,0.0,77.82833333,4.456,3.163833333,237.72473541666668 +2015-11-01 19:00:00,0.0,1016.619167,0.0,77.55666667,4.34225,3.436666667,237.7247354166667 +2015-11-01 20:00:00,0.0,1016.743333,0.0,82.42916667,4.041583333,3.614666667,237.72582 +2015-11-01 21:00:00,3.9901008960000004,1017.526667,0.0,88.63333333,3.783083333,3.4545,237.7248903666667 +2015-11-01 22:00:00,3.54850368,1017.6525,0.0,94.00833333,3.33025,3.316916667,237.72659475 +2015-11-01 23:00:00,0.0,1017.5583330000001,0.0,95.05833333,3.30475,3.074583333,237.72628484999998 +2015-12-01 00:00:00,0.0,1017.5325,0.0,91.43333333,4.048,2.707,238.18940446666667 +2015-12-01 01:00:00,0.0,1017.2225,0.0,88.40833333,4.74825,2.8610833330000003,238.18646058333334 +2015-12-01 02:00:00,6.437013864,1017.174167,0.0,93.39166667,4.6748333330000005,2.5253333330000003,238.18181234999997 +2015-12-01 03:00:00,3.823510632,1016.6475,0.0,95.04166667,4.508916667,2.86075,238.17747396666664 +2015-12-01 04:00:00,0.0,1016.264167,0.0,92.675,5.01125,2.7089999999999996,238.17313560000002 +2015-12-01 05:00:00,3.5507663999999997,1015.968333,0.0,91.38333333,5.45525,2.7385,238.16817753333336 +2015-12-01 06:00:00,0.0,1015.295,0.0,92.40833333,5.510833333,2.9500833330000003,238.16492376666667 +2015-12-01 07:00:00,0.0,1015.2975,0.0,89.34166667,5.70725,2.9645,238.16244468333332 +2015-12-01 08:00:00,0.0,1015.1916669999999,1.084166667,87.43333333,5.944166667,3.2341666669999998,238.16817751666667 +2015-12-01 09:00:00,0.0,1015.270833,9.6875,85.69166667,6.0725,3.338333333,238.1768542166667 +2015-12-01 10:00:00,0.0,1015.270833,38.25,83.94166667,6.2975833329999995,3.7030000000000003,238.18212223333333 +2015-12-01 11:00:00,0.0,1014.906667,88.33416667,82.95,6.687416667000001,3.592166667,238.18243210000003 +2015-12-01 12:00:00,0.0,1014.553333,88.48833333,88.575,6.590666667000001,4.26775,238.18227715 +2015-12-01 13:00:00,0.0,1013.844167,36.33916667,90.80833333,6.0148333329999994,3.0028333330000003,238.18274198333336 +2015-12-01 14:00:00,0.0,1013.323333,19.055,86.075,6.41775,2.592166667,238.18553093333333 +2015-12-01 15:00:00,0.0,1013.159167,11.76975,84.31666667,6.827583333,3.009,238.19064401666665 +2015-12-01 16:00:00,0.0,1013.525,3.327,88.54166667,6.622333332999999,3.0575,238.19792621666667 +2015-12-01 17:00:00,0.0,1012.956667,0.1005,89.625,6.4851666670000006,2.808666667,238.20179976666668 +2015-12-01 18:00:00,0.0,1012.568333,0.0,87.925,6.768916667,2.76475,238.20179975 +2015-12-01 19:00:00,0.0,1012.508333,0.0,84.98333333,7.24,2.35,238.20133493333333 +2015-12-01 20:00:00,0.0,1012.190833,0.0,83.65,7.48025,2.3216666669999997,238.19699658333332 +2015-12-01 21:00:00,0.0,1012.0775,0.0,84.45833333,7.574333332999999,2.287583333,238.19312306666666 +2015-12-01 22:00:00,0.0,1011.991667,0.0,83.775,7.601833332999999,2.547333333,238.1880100333333 +2015-12-01 23:00:00,0.0,1011.581667,0.0,82.98333333,7.393583333,2.698083333,238.18243210000003 +2015-01-13 00:00:00,0.0,1010.984167,0.0,82.35833333,7.427166667000001,2.433583333, +2015-01-13 01:00:00,0.0,1010.373333,0.0,82.9,7.37,2.3025833330000003, +2015-01-13 02:00:00,0.0,1010.158333,0.0,82.84166667,8.10575,2.65425, +2015-01-13 03:00:00,0.0,1009.3775,0.0,83.31666667,7.771083332999999,2.3609166669999997, +2015-01-13 04:00:00,0.0,1009.0,0.0,81.26166667,7.904666667000001,2.00975, +2015-01-13 05:00:00,0.0,1008.848333,0.0,78.5925,8.25625,1.666166667, +2015-01-13 06:00:00,0.0,1007.965,0.0,75.6125,6.000083332999999,1.4570833330000001, +2015-01-13 07:00:00,0.0,1007.4125,0.0,73.01333333,6.20025,1.642916667, +2015-01-13 08:00:00,0.0,1007.42,5.24525,75.82166667,8.409166667000001,1.88825, +2015-01-13 09:00:00,0.0,1007.104167,23.75833333,77.0075,8.017333333,2.415, +2015-01-13 10:00:00,0.0,1006.695833,81.48,75.8825,9.423333332999999,2.266333333, +2015-01-13 11:00:00,0.0,1006.155833,114.85833329999998,71.8975,10.03666667,3.0148333330000003, +2015-01-13 12:00:00,0.0,1004.935833,174.7,66.29416667,10.6825,3.767, +2015-01-13 13:00:00,0.0,1003.6125,179.4,62.30833333,11.465,3.4005, +2015-01-13 14:00:00,0.0,1002.534167,109.79916670000001,59.8075,12.29916667,3.1275, +2015-01-13 15:00:00,0.0,1002.3758330000001,29.93,59.2675,12.33916667,2.98425, +2015-01-13 16:00:00,0.0,1003.065833,2.946416667,66.27833333,12.15083333,3.117916667, +2015-01-13 17:00:00,0.0,1003.233333,0.052583332999999996,77.05166667,11.34083333,3.566083333, +2015-01-13 18:00:00,3.704431944,1003.333333,0.0,85.36666667,10.53666667,3.195166667, +2015-01-13 19:00:00,25.88230358,1003.234167,0.0,86.58333333,9.886666667,2.99625, +2015-01-13 20:00:00,36.816325799999994,1003.639167,0.0,92.04166667,9.006666667000001,2.188916667, +2015-01-13 21:00:00,0.0,1003.990833,0.0,93.64166667,8.7225,2.2985833330000003, +2015-01-13 22:00:00,0.0,1004.339167,0.0,89.65,8.536666667,1.409, +2015-01-13 23:00:00,0.0,1004.444167,0.0,87.58333333,8.2725,1.185583333, +2015-01-14 00:00:00,0.0,1004.095833,0.0,86.475,8.115833333,1.297666667, +2015-01-14 01:00:00,3.226725576,1003.763333,0.0,89.50833333,7.943416667,1.725333333, +2015-01-14 02:00:00,0.0,1003.4825,0.0,90.725,7.495333333,1.353833333, +2015-01-14 03:00:00,9.184208256,1003.04,0.0,90.01666667,7.474583332999999,1.9955, +2015-01-14 04:00:00,0.0,1002.679167,0.0,82.76166667,8.026166667,2.834166667, +2015-01-14 05:00:00,48.62849657,1003.43,0.0,82.56916667,7.459083333,3.6789166669999998, +2015-01-14 06:00:00,0.0,1005.2175,0.0,91.54166667,4.71075,2.0659166669999998, +2015-01-14 07:00:00,0.0,1005.8741669999999,0.0,90.93333333,4.009583333,1.9519166669999999, +2015-01-14 08:00:00,0.0,1005.98,3.34775,86.41666667,4.31975,2.4428333330000003, +2015-01-14 09:00:00,0.0,1006.03,25.83833333,85.46666667,4.33675,2.317583333, +2015-01-14 10:00:00,0.0,1007.0375,64.54666667,83.125,5.1210833330000005,3.158833333, +2015-01-14 11:00:00,0.0,1006.925,82.5675,82.69166667,5.631333333,2.3795833330000002, +2015-01-14 12:00:00,0.0,1005.455,171.55833330000002,78.93166667,6.82725,2.525833333, +2015-01-14 13:00:00,19.55560603,1005.130833,30.5375,83.84416667,6.339166667000001,3.008083333, +2015-01-14 14:00:00,32.85468938,1004.94,46.50583333,95.075,4.178083333,2.8080000000000003, +2015-01-14 15:00:00,0.0,1004.555,20.43833333,92.78333333,4.579333333,2.850666667, +2015-01-14 16:00:00,41.29726546,1006.1075,8.71625,96.325,3.304583333,2.90825, +2015-01-14 17:00:00,0.0,1007.731667,0.160083333,95.20833333,3.142083333,1.7849166669999998, +2015-01-14 18:00:00,2.773548888,1009.045,0.0,93.4,3.11125,1.4196666669999998, +2015-01-14 19:00:00,0.0,1010.205833,0.0,91.19166667,2.5604166669999997,0.8098333329999999, +2015-01-14 20:00:00,0.0,1011.0325,0.0,92.05,2.032833333,1.434666667, +2015-01-14 21:00:00,0.0,1011.509167,0.0,91.76666667,2.167416667,1.6970833330000001, +2015-01-14 22:00:00,0.0,1011.858333,0.0,91.04166667,2.613083333,2.192166667, +2015-01-14 23:00:00,0.0,1011.3,0.0,90.41666667,2.83925,1.7256666669999998, +2015-01-15 00:00:00,0.0,1010.335833,0.0,88.8,1.120416667,0.15366666699999998, +2015-01-15 01:00:00,0.0,1009.0975,0.0,89.425,1.006083333,1.16925, +2015-01-15 02:00:00,0.0,1007.943333,0.0,94.78333333,1.329083333,0.7805833329999999, +2015-01-15 03:00:00,0.0,1006.61,0.0,98.23333333,2.352083333,2.222, +2015-01-15 04:00:00,0.0,1005.335833,0.0,92.15,3.372,3.734333333, +2015-01-15 05:00:00,0.0,1004.294167,0.0,91.53333333,4.28425,4.583666667, +2015-01-15 06:00:00,0.0,1003.19,0.0,88.4,4.671666667,3.770166667, +2015-01-15 07:00:00,0.0,1002.4775,0.0,84.89166667,5.981833332999999,2.8344166669999997, +2015-01-15 08:00:00,0.0,1002.128333,1.6879166669999999,83.94166667,6.529666667000001,3.1541666669999997, +2015-01-15 09:00:00,3.3484692000000003,1001.82,14.22583333,85.4,7.5405,3.0155, +2015-01-15 10:00:00,3.160382448,1001.195833,50.00833333,83.70833333,8.045416667000001,2.5436666669999997, +2015-01-15 11:00:00,0.0,1000.6325,145.025,80.99166667,9.040833333,3.0060833330000003, +2015-01-15 12:00:00,0.0,999.9891667000002,99.28916667,80.245,8.976666667,3.0915, +2015-01-15 13:00:00,0.0,999.145,82.7125,77.54583333,9.599166667,3.6960833330000002, +2015-01-15 14:00:00,0.0,998.3983332999999,95.57666667,75.91166667,10.04666667,3.09075, +2015-01-15 15:00:00,0.0,998.0791667000001,44.76083333,74.18666667,9.526666667,2.9005, +2015-01-15 16:00:00,0.0,997.6333332999999,9.718583333,71.16583333,9.184166667000001,3.74025, +2015-01-15 17:00:00,0.0,997.5408332999999,0.0855,71.135,9.6275,2.813166667, +2015-01-15 18:00:00,0.0,997.3991667000001,0.0,71.285,10.53166667,2.72975, +2015-01-15 19:00:00,0.0,997.3425,0.0,71.60916667,10.62833333,3.0173333330000003, +2015-01-15 20:00:00,0.0,997.5616667000002,0.0,72.6725,10.42583333,2.869583333, +2015-01-15 21:00:00,0.0,997.8758332999998,0.0,73.7625,10.545,2.299833333, +2015-01-15 22:00:00,0.0,998.0225,0.0,77.31333333,10.00083333,1.8946666669999999, +2015-01-15 23:00:00,0.0,998.3791667000002,0.0,79.54916667,9.82,2.731583333, +2015-01-16 00:00:00,3.51538188,998.96,0.0,86.19166667,9.055,3.0506666669999998, +2015-01-16 01:00:00,0.0,999.3541667000002,0.0,88.38333333,8.5225,2.7605, +2015-01-16 02:00:00,5.898697512000001,1000.260833,0.0,91.375,8.237166667,2.068166667, +2015-01-16 03:00:00,6.2702512079999995,1000.770833,0.0,92.81666667,7.480666667,2.4925, +2015-01-16 04:00:00,0.0,1001.016667,0.0,91.81666667,7.231333332999999,2.123, +2015-01-16 05:00:00,0.0,1001.2625,0.0,92.625,6.79825,1.7989166669999999, +2015-01-16 06:00:00,0.0,1001.7425,0.0,93.51666667,5.704916667000001,1.428083333, +2015-01-16 07:00:00,0.0,1002.0725,0.0,93.35833333,5.501333333,1.969416667, +2015-01-16 08:00:00,0.0,1002.3375,2.084166667,95.975,5.425916667,1.063916667, +2015-01-16 09:00:00,0.0,1002.388333,16.38833333,95.8,5.346583333,1.303083333, +2015-01-16 10:00:00,0.0,1002.420833,28.94583333,94.1,5.447583333,0.673166667, +2015-01-16 11:00:00,0.0,1002.705,37.07666667,92.11666667,5.796416667000001,0.311083333, +2015-01-16 12:00:00,0.0,1002.658333,56.5325,90.91666667,6.120833332999999,0.862666667, +2015-01-16 13:00:00,2.48485596,1002.300833,37.75583333,95.2,6.198166667000001,0.561333333, +2015-01-16 14:00:00,0.0,1001.789167,37.03416667,95.825,5.685083333,1.756083333, +2015-01-16 15:00:00,0.0,1001.685,24.02416667,95.81666667,5.540833332999999,0.84325, +2015-01-16 16:00:00,0.0,1001.435,7.239916667,98.73333333,5.249916667,0.773333333, +2015-01-16 17:00:00,0.0,1001.479167,0.132833333,99.375,4.931833333,0.40183333299999996, +2015-01-16 18:00:00,2.472611976,1001.583333,0.0,99.98333333,4.743416667,0.0835, +2015-01-16 19:00:00,0.0,1001.7508330000001,0.0,100.0,4.590166667,0.03175, +2015-01-16 20:00:00,0.0,1001.7325,0.0,100.0,4.561083333,0.081, +2015-01-16 21:00:00,2.5124682000000003,1002.026667,0.0,100.0,4.49125,0.386166667, +2015-01-16 22:00:00,4.8765776160000005,1002.409167,0.0,100.0,4.37425,0.231583333, +2015-01-16 23:00:00,0.0,1002.9991669999999,0.0,100.0,4.1635,0.423416667, +2015-01-17 00:00:00,2.4155214480000002,1003.405833,0.0,99.96666667,4.001916667,0.222583333, +2015-01-17 01:00:00,0.0,1003.88,0.0,99.90833333,3.8816666669999997,0.39925, +2015-01-17 02:00:00,0.0,1004.395833,0.0,98.71666667,3.762166667,0.86725, +2015-01-17 03:00:00,0.0,1005.115833,0.0,98.23333333,3.800166667,1.2690000000000001, +2015-01-17 04:00:00,0.0,1005.069167,0.0,98.34166667,3.987666667,0.41808333299999995, +2015-01-17 05:00:00,0.0,1005.969167,0.0,97.66666667,4.146916667,1.172916667, +2015-01-17 06:00:00,0.0,1006.7975,0.0,97.91666667,4.18025,1.1855, +2015-01-17 07:00:00,0.0,1007.579167,0.0,95.36666667,3.891916667,0.852916667, +2015-01-17 08:00:00,0.0,1008.094167,5.960083332999999,98.01666667,2.4130000000000003,0.15283333300000002, +2015-01-17 09:00:00,0.0,1008.895,36.37166667,100.0,1.8419166669999998,0.21508333300000002, +2015-01-17 10:00:00,0.0,1009.358333,90.12083333,96.04166667,3.404416667,0.640166667, +2015-01-17 11:00:00,0.0,1010.098333,111.23333329999998,91.45,4.3785,0.8716666670000001, +2015-01-17 12:00:00,0.0,1010.3175,151.3416667,84.90833333,5.250916667,0.9780833329999999, +2015-01-17 13:00:00,0.0,1010.3825,140.7166667,79.48666667,5.855083333,1.05325, +2015-01-17 14:00:00,0.0,1010.355833,67.785,77.67416667,5.011,1.579, +2015-01-17 15:00:00,0.0,1010.6375,55.76333333,78.2225,4.798083333,1.071833333, +2015-01-17 16:00:00,0.0,1010.905833,14.70558333,83.025,4.159666667,0.6559166670000001, +2015-01-17 17:00:00,0.0,1011.273333,0.300166667,87.03333333,3.457833333,0.773666667, +2015-01-17 18:00:00,0.0,1011.371667,0.0,95.98333333,1.199083333,0.10333333300000001, +2015-01-17 19:00:00,0.0,1011.520833,0.0,99.73333333,-0.5265833329999999,0.08800000000000001, +2015-01-17 20:00:00,0.0,1011.764167,0.0,100.0,-1.33075,0.011666667, +2015-01-17 21:00:00,0.0,1012.0008330000001,0.0,99.01666667,-2.0695,0.0, +2015-01-17 22:00:00,0.0,1012.354167,0.0,92.73333333,-2.5386666669999998,0.03925, +2015-01-17 23:00:00,0.0,1012.591667,0.0,95.23333333,-2.85525,0.032333333, +2015-01-18 00:00:00,0.0,1012.466667,0.0,91.61666667,-1.234083333,0.643416667, +2015-01-18 01:00:00,0.0,1012.4075,0.0,91.325,-0.532416667,0.7290000000000001, +2015-01-18 02:00:00,0.0,1012.221667,0.0,98.98333333,-2.412416667,0.01, +2015-01-18 03:00:00,0.0,1012.116667,0.0,91.68333333,-1.724,0.608666667, +2015-01-18 04:00:00,0.0,1011.9775,0.0,87.075,0.235,0.696333333, +2015-01-18 05:00:00,0.0,1011.674167,0.0,85.95833333,-0.284166667,0.9773333329999999, +2015-01-18 06:00:00,0.0,1011.420833,0.0,90.80833333,-1.6434166669999999,0.7735, +2015-01-18 07:00:00,0.0,1011.18,0.00425,99.18333333,-2.161833333,0.838916667, +2015-01-18 08:00:00,0.0,1011.17,6.871416667,100.0,-1.871833333,1.077166667, +2015-01-18 09:00:00,0.0,1011.386667,28.94333333,100.0,-1.5476666669999999,1.225416667, +2015-01-18 10:00:00,0.0,1011.525833,87.81833333,99.96666667,-0.41958333299999995,0.203166667, +2015-01-18 11:00:00,2.8147716,1011.4575,175.91666669999998,85.425,1.60325,1.91125, +2015-01-18 12:00:00,0.0,1011.143333,220.3666667,80.88583333,2.749916667,1.9880000000000002, +2015-01-18 13:00:00,0.0,1010.5175,186.8,76.39416667,3.4495,1.5885, +2015-01-18 14:00:00,0.0,1009.970833,136.6083333,74.97333333,3.2405,1.769166667, +2015-01-18 15:00:00,0.0,1009.6241669999999,100.8,77.77583333,2.839416667,2.665833333, +2015-01-18 16:00:00,0.0,1009.3575,28.55383333,86.64166667,1.432166667,1.119583333, +2015-01-18 17:00:00,0.0,1009.166667,0.85825,97.2,-0.852916667,0.044666667, +2015-01-18 18:00:00,0.0,1009.166667,0.0,99.9,-1.7405,0.079166667, +2015-01-18 19:00:00,0.0,1009.2425,0.0,100.0,-2.304916667,0.107666667, +2015-01-18 20:00:00,0.0,1009.414167,0.0,100.0,-2.885416667,0.09908333300000001, +2015-01-18 21:00:00,0.0,1009.351667,0.0,100.0,-3.3898333330000003,0.055833333, +2015-01-18 22:00:00,0.0,1009.3175,0.0,100.0,-3.351333333,0.045083332999999996, +2015-01-18 23:00:00,0.0,1009.383333,0.0,100.0,-2.3690833330000003,0.023666667000000002, +2015-01-19 00:00:00,0.0,1009.115,0.0,100.0,-2.72675,0.04975, +2015-01-19 01:00:00,0.0,1008.6625,0.0,100.0,-3.214083333,0.015833333, +2015-01-19 02:00:00,0.0,1008.366667,0.0,100.0,-3.137916667,0.060416667, +2015-01-19 03:00:00,0.0,1008.0875,0.0,100.0,-2.985083333,0.021166667000000004, +2015-01-19 04:00:00,0.0,1007.676667,0.0,100.0,-2.159583333,0.09041666699999999, +2015-01-19 05:00:00,0.0,1007.399167,0.0,100.0,-1.692083333,0.0545, +2015-01-19 06:00:00,0.0,1007.166667,0.0,100.0,-1.259666667,0.028916667000000004, +2015-01-19 07:00:00,0.0,1007.016667,0.0,100.0,-1.01,0.005666666999999999, +2015-01-19 08:00:00,0.0,1007.334167,3.67125,100.0,-0.8364999129999999,0.000916667, +2015-01-19 09:00:00,0.0,1007.329167,23.84083333,100.0,-0.6,0.0, +2015-01-19 10:00:00,0.0,1007.1925,94.575,100.0,-0.052166667,0.0325, +2015-01-19 11:00:00,0.0,1006.9958330000001,146.2666667,98.75833333,1.208916667,0.392666667, +2015-01-19 12:00:00,0.0,1006.365,158.92583330000002,92.48333333,3.3874166669999997,0.784416667, +2015-01-19 13:00:00,0.0,1005.906667,140.9325,86.05833333,3.182083333,1.293166667, +2015-01-19 14:00:00,0.0,1005.455,83.8475,88.83333333,2.0739166669999998,1.539333333, +2015-01-19 15:00:00,0.0,1005.35,53.01166667,94.175,1.261083333,0.7533333329999999, +2015-01-19 16:00:00,0.0,1005.385833,11.46225,94.28333333,0.090083333,0.985166667, +2015-01-19 17:00:00,0.0,1005.534167,0.323666667,96.55833333,-0.338916667,0.41775, +2015-01-19 18:00:00,0.0,1005.395833,0.0,98.58333333,-0.331583333,0.374, +2015-01-19 19:00:00,0.0,1005.303333,0.0,98.425,-0.3485,0.36958333299999996, +2015-01-19 20:00:00,0.0,1005.2725,0.0,97.575,-0.26516666699999997,0.236583333, +2015-01-19 21:00:00,0.0,1005.483333,0.0,94.15,-0.16275,0.213916667, +2015-01-19 22:00:00,0.0,1005.3525,0.0,92.54166667,-0.034083333,0.306083333, +2015-01-19 23:00:00,0.0,1005.266667,0.0,92.6,-0.03425,0.02575, +2015-01-20 00:00:00,0.0,1005.283333,0.0,93.94166667,-0.292666667,0.054416667, +2015-01-20 01:00:00,0.0,1005.291667,0.0,94.09166667,-0.5226666670000001,0.0, +2015-01-20 02:00:00,0.0,1005.190833,0.0,95.2,-0.48916666700000005,0.211416667, +2015-01-20 03:00:00,0.0,1005.041667,0.0,95.95,-0.237583333,0.204666667, +2015-01-20 04:00:00,0.0,1004.8575,0.0,97.86666667,-0.29283333300000003,0.378166667, +2015-01-20 05:00:00,0.0,1004.789167,0.0,99.275,-0.424,0.277916667, +2015-01-20 06:00:00,0.0,1004.836667,0.0,99.84166667,-0.47925,0.295666667, +2015-01-20 07:00:00,0.0,1005.223333,0.0,99.91666667,-0.5105833329999999,0.296083333, +2015-01-20 08:00:00,0.0,1005.6208330000001,3.3025833330000003,99.825,-0.470916667,0.34983333299999997, +2015-01-20 09:00:00,0.0,1006.1375,12.90416667,99.25833333,-0.35,0.4515, +2015-01-20 10:00:00,0.0,1006.49,41.12916667,98.3,0.000166667,0.503583333, +2015-01-20 11:00:00,0.0,1006.635833,58.335,96.825,0.3645,0.9375, +2015-01-20 12:00:00,0.0,1006.608333,46.475,96.1,0.678583333,0.909333333, +2015-01-20 13:00:00,0.0,1006.4325,51.56916667,96.24166667,0.705583333,0.805916667, +2015-01-20 14:00:00,0.0,1006.585,68.10583333,94.85833333,1.06425,1.04475, +2015-01-20 15:00:00,0.0,1007.008333,33.98166667,92.06666667,1.128416667,1.064666667, +2015-01-20 16:00:00,0.0,1007.010833,12.13758333,92.34166667,0.91675,0.7899166670000001, +2015-01-20 17:00:00,0.0,1007.048333,0.46925,94.85833333,0.590166667,0.550333333, +2015-01-20 18:00:00,0.0,1007.1525,0.0,96.28333333,0.12275,0.3595, +2015-01-20 19:00:00,0.0,1007.2675,0.0,99.74166667,-1.01075,0.23825, +2015-01-20 20:00:00,0.0,1007.550833,0.0,100.0,-2.097083333,0.25525, +2015-01-20 21:00:00,0.0,1007.708333,0.0,100.0,-3.0171666669999997,0.08458333300000001, +2015-01-20 22:00:00,0.0,1007.875,0.0,100.0,-3.7765,0.09425, +2015-01-20 23:00:00,0.0,1007.930833,0.0,100.0,-4.3550833330000005,0.061833333, +2015-01-21 00:00:00,0.0,1007.9416669999999,0.0,100.0,-5.019,0.0, +2015-01-21 01:00:00,0.0,1007.841667,0.0,100.0,-5.147333333,0.0019166670000000002, +2015-01-21 02:00:00,0.0,1007.85,0.0,100.0,-5.26375,0.0, +2015-01-21 03:00:00,0.0,1007.685,0.0,100.0,-4.48375,0.042333333, +2015-01-21 04:00:00,0.0,1007.471667,0.0,100.0,-3.525,0.090083333, +2015-01-21 05:00:00,0.0,1007.325,0.0,100.0,-3.515166667,0.430666667, +2015-01-21 06:00:00,0.0,1007.219167,0.0,100.0,-4.0418333330000005,0.864583333, +2015-01-21 07:00:00,0.0,1007.2,0.01925,100.0,-4.312833333,0.38891666700000005, +2015-01-21 08:00:00,0.0,1007.3425,4.700416667,100.0,-4.1955,0.10025, +2015-01-21 09:00:00,0.0,1007.6425,43.39666667,100.0,-3.977,0.10166666699999999, +2015-01-21 10:00:00,0.0,1007.889167,76.89583333,100.0,-3.818916667,0.075833333, +2015-01-21 11:00:00,0.0,1007.790833,61.90833333,100.0,-2.820916667,0.10666666699999999, +2015-01-21 12:00:00,0.0,1007.385833,80.67916667,100.0,-1.865833333,0.109166667, +2015-01-21 13:00:00,0.0,1007.2125,50.7975,100.0,-0.831333333,0.011666667, +2015-01-21 14:00:00,0.0,1006.855,50.03416667,99.08333333,-0.41183333299999997,0.31475, +2015-01-21 15:00:00,0.0,1006.6075,25.1575,97.05,-0.14425,0.91825, +2015-01-21 16:00:00,0.0,1006.52,9.681833333,97.30833333,0.18325,0.22008333300000002, +2015-01-21 17:00:00,0.0,1006.463333,0.318416667,98.23333333,0.18283333300000001,0.147416667, +2015-01-21 18:00:00,0.0,1006.720833,0.0,98.45833333,0.274666667,0.192833333, +2015-01-21 19:00:00,0.0,1006.986667,0.0,94.58333333,0.615083333,1.4863333330000001, +2015-01-21 20:00:00,0.0,1007.164167,0.0,93.08333333,0.6589166670000001,1.99025, +2015-01-21 21:00:00,0.0,1007.211667,0.0,93.90833333,0.416833333,2.466583333, +2015-01-21 22:00:00,0.0,1007.673333,0.0,94.09166667,0.128583333,2.579916667, +2015-01-21 23:00:00,0.0,1007.765833,0.0,93.54166667,-0.049916667000000005,2.374333333, +2015-01-22 00:00:00,0.0,1007.583333,0.0,93.69166667,-0.32608333300000003,1.917666667, +2015-01-22 01:00:00,0.0,1007.485833,0.0,96.96666667,-1.320333333,0.606, +2015-01-22 02:00:00,0.0,1007.38,0.0,98.39166667,-1.9285,0.279833333, +2015-01-22 03:00:00,0.0,1007.5175,0.0,95.74166667,-1.706166667,0.252166667, +2015-01-22 04:00:00,0.0,1007.541667,0.0,94.63333333,-1.2215833329999999,1.168916667, +2015-01-22 05:00:00,0.0,1007.8625,0.0,94.375,-1.03625,2.1676666669999998, +2015-01-22 06:00:00,0.0,1008.1225,0.0,94.56666667,-1.087833333,2.601916667, +2015-01-22 07:00:00,0.0,1008.449167,0.0,94.0,-1.018666667,2.5476666669999997, +2015-01-22 08:00:00,0.0,1009.100833,1.0925833329999999,93.45833333,-0.857166667,1.254916667, +2015-01-22 09:00:00,0.0,1009.694167,5.545916667,93.875,-0.6465833329999999,1.7258333330000002, +2015-01-22 10:00:00,0.0,1010.103333,20.23,93.43333333,-0.354833333,2.5655, +2015-01-22 11:00:00,0.0,1010.258333,42.82333333,92.41666667,-0.033083333,2.483083333, +2015-01-22 12:00:00,0.0,1010.241667,50.09583333,91.24166667,0.404583333,1.91525, +2015-01-22 13:00:00,0.0,1010.246667,44.86166667,91.5,0.761416667,2.16775, +2015-01-22 14:00:00,0.0,1010.350833,33.04083333,92.00833333,0.9874166670000001,3.271083333, +2015-01-22 15:00:00,0.0,1010.729167,22.62833333,92.08333333,1.194916667,3.4855, +2015-01-22 16:00:00,0.0,1011.288333,9.01075,92.28333333,1.216333333,3.01625, +2015-01-22 17:00:00,0.0,1011.834167,0.29875,92.03333333,1.100333333,2.9075833330000003, +2015-01-22 18:00:00,0.0,1012.418333,0.0,92.70833333,1.072416667,3.3536666669999997, +2015-01-22 19:00:00,0.0,1012.976667,0.0,92.78333333,1.027833333,3.039916667, +2015-01-22 20:00:00,0.0,1013.5041669999999,0.0,94.39166667,1.000166667,1.6131666669999998, +2015-01-22 21:00:00,0.0,1013.7925,0.0,95.5,0.938333333,1.607666667, +2015-01-22 22:00:00,0.0,1014.134167,0.0,96.43333333,0.885166667,2.003833333, +2015-01-22 23:00:00,0.0,1014.5425,0.0,97.375,0.7959999999999999,2.2799166669999997, +2015-01-23 00:00:00,0.0,1014.7508330000001,0.0,97.78333333,0.766916667,2.3565, +2015-01-23 01:00:00,0.0,1014.995,0.0,97.29166667,0.72175,1.98575, +2015-01-23 02:00:00,0.0,1015.2175,0.0,96.14166667,0.700916667,2.187666667, +2015-01-23 03:00:00,0.0,1015.533333,0.0,96.25,0.676416667,1.5035, +2015-01-23 04:00:00,0.0,1015.6291669999999,0.0,96.75833333,0.6639166670000001,1.729916667, +2015-01-23 05:00:00,0.0,1016.301667,0.0,96.81666667,0.70575,1.9664166669999998, +2015-01-23 06:00:00,0.0,1016.7375,0.0,96.45833333,0.719916667,1.526666667, +2015-01-23 07:00:00,0.0,1017.215,0.0,95.26666667,0.70575,1.811, +2015-01-23 08:00:00,0.0,1017.724167,3.459666667,93.69166667,0.6355,1.168833333, +2015-01-23 09:00:00,0.0,1018.315,22.39166667,91.675,0.7260833329999999,1.183333333, +2015-01-23 10:00:00,0.0,1018.83,75.56083333,89.725,0.834583333,2.014916667, +2015-01-23 11:00:00,0.0,1019.163333,84.39916667,88.95833333,1.04,2.03475, +2015-01-23 12:00:00,0.0,1019.083333,95.10833333,87.9,1.2348333329999999,2.031583333, +2015-01-23 13:00:00,0.0,1019.069167,100.6141667,87.0,1.2411666670000001,2.040916667, +2015-01-23 14:00:00,0.0,1018.9725,82.97166667,85.825,1.699416667,1.383083333, +2015-01-23 15:00:00,0.0,1019.198333,99.58,82.90833333,2.239,1.25475, +2015-01-23 16:00:00,0.0,1019.455833,29.31516667,87.61666667,1.33725,1.6804166669999998, +2015-01-23 17:00:00,0.0,1019.7675,1.330666667,95.85833333,0.1595,1.332666667, +2015-01-23 18:00:00,0.0,1020.1625,0.0,99.39166667,-1.1201666670000001,0.83325, +2015-01-23 19:00:00,0.0,1020.6258330000001,0.0,99.99166667,-1.8735,0.6565, +2015-01-23 20:00:00,0.0,1020.5975,0.0,99.05,-2.044916667,0.2805, +2015-01-23 21:00:00,0.0,1020.660833,0.0,96.45,-1.698916667,0.837583333, +2015-01-23 22:00:00,0.0,1020.638333,0.0,97.36666667,-1.874,0.40333333299999996, +2015-01-23 23:00:00,0.0,1020.376667,0.0,98.28333333,-1.827833333,0.070583333, +2015-01-24 00:00:00,0.0,1019.856667,0.0,99.25,-1.848,0.452166667, +2015-01-24 01:00:00,0.0,1019.226667,0.0,100.0,-2.125916667,0.706916667, +2015-01-24 02:00:00,0.0,1018.698333,0.0,100.0,-2.4754166669999997,0.7968333329999999, +2015-01-24 03:00:00,0.0,1017.99,0.0,100.0,-2.53025,0.82325, +2015-01-24 04:00:00,0.0,1017.4366669999999,0.0,100.0,-2.4365,0.8109999999999999, +2015-01-24 05:00:00,0.0,1016.6866669999999,0.0,99.9,-2.459333333,1.6831666669999998, +2015-01-24 06:00:00,0.0,1016.076667,0.0,99.10833333,-2.4761666669999998,1.8366666669999998, +2015-01-24 07:00:00,0.0,1015.771667,0.006583333,98.05,-2.60625,2.328166667, +2015-01-24 08:00:00,0.0,1015.496667,6.098833332999999,97.475,-2.2805,2.09775, +2015-01-24 09:00:00,0.0,1015.1175,33.27,95.31666667,-1.6580000000000001,1.3653333330000001, +2015-01-24 10:00:00,0.0,1014.889167,44.94333333,93.51666667,-1.029833333,1.033333333, +2015-01-24 11:00:00,0.0,1014.79,56.47083333,91.125,-0.507916667,1.094333333, +2015-01-24 12:00:00,0.0,1014.1208330000001,55.25,90.33333333,0.313083333,1.408916667, +2015-01-24 13:00:00,0.0,1013.8166669999999,43.68166667,93.98333333,0.40575,1.089583333, +2015-01-24 14:00:00,0.0,1013.75,34.2325,99.95833333,0.275916667,0.5655, +2015-01-24 15:00:00,0.0,1013.948333,17.85833333,100.0,0.32658333300000003,0.181166667, +2015-01-24 16:00:00,2.3865511440000002,1014.365,7.633666667000001,100.0,0.368333333,0.0, +2015-01-24 17:00:00,0.0,1014.968333,0.559416667,100.0,0.078,0.016583333000000002, +2015-01-24 18:00:00,0.0,1015.841667,0.0,100.0,0.08408333300000001,0.21991666699999998, +2015-01-24 19:00:00,0.0,1016.8275,0.0,100.0,0.34233333299999996,0.064666667, +2015-01-24 20:00:00,0.0,1017.61,0.0,100.0,0.843,0.7414166670000001, +2015-01-24 21:00:00,0.0,1018.296667,0.0,100.0,0.829583333,0.9015, +2015-01-24 22:00:00,0.0,1018.545833,0.0,100.0,-0.317666667,0.47875, +2015-01-24 23:00:00,0.0,1019.318333,0.0,100.0,0.021,0.938333333, +2015-01-25 00:00:00,0.0,1019.706667,0.0,100.0,-0.6809999999999999,0.8190000000000001, +2015-01-25 01:00:00,0.0,1020.1425,0.0,100.0,-0.452083333,0.711583333, +2015-01-25 02:00:00,0.0,1020.554167,0.0,100.0,-2.690083333,0.45933333299999995, +2015-01-25 03:00:00,0.0,1021.138333,0.0,100.0,-0.568416667,0.868916667, +2015-01-25 04:00:00,0.0,1021.5675,0.0,100.0,-1.238583333,0.6940000000000001, +2015-01-25 05:00:00,0.0,1022.006667,0.0,100.0,-0.607916667,0.9604166670000001, +2015-01-25 06:00:00,0.0,1022.393333,0.0,100.0,-1.187416667,0.86725, +2015-01-25 07:00:00,0.0,1023.056667,0.016916667,100.0,-0.37391666700000004,0.801666667, +2015-01-25 08:00:00,0.0,1023.524167,4.924166667,100.0,-0.646416667,0.441666667, +2015-01-25 09:00:00,0.0,1024.095,45.16333333,100.0,0.98425,0.53625, +2015-01-25 10:00:00,0.0,1024.515,89.7175,99.18333333,1.6605833330000002,1.013916667, +2015-01-25 11:00:00,7.955123544,1024.4575,228.25,97.1,2.5198333330000002,0.91325, +2015-01-25 12:00:00,0.0,1023.94,211.6166667,96.78333333,3.099583333,1.3805833330000001, +2015-01-25 13:00:00,5.54023284,1023.671667,140.4083333,97.48333333,3.1070833330000003,1.376166667, +2015-01-25 14:00:00,0.0,1023.229167,104.725,97.46666667,3.021833333,1.4065833330000002, +2015-01-25 15:00:00,0.0,1023.161667,65.49,98.45833333,2.830083333,1.259583333, +2015-01-25 16:00:00,0.0,1023.330833,25.39666667,99.98333333,2.3505833330000003,1.064, +2015-01-25 17:00:00,0.0,1023.378333,1.57825,100.0,1.91825,1.2026666670000001, +2015-01-25 18:00:00,0.0,1023.5666669999999,0.0,100.0,2.008083333,0.961833333, +2015-01-25 19:00:00,0.0,1023.611667,0.0,100.0,1.9830833330000002,1.160583333, +2015-01-25 20:00:00,0.0,1023.395833,0.0,100.0,1.766,1.229166667, +2015-01-25 21:00:00,0.0,1023.099167,0.0,100.0,1.61825,0.98025, +2015-01-25 22:00:00,0.0,1022.8133330000001,0.0,100.0,1.569666667,0.386666667, +2015-01-25 23:00:00,0.0,1022.728333,0.0,100.0,1.711416667,0.80625, +2015-01-26 00:00:00,2.540812656,1022.47,0.0,100.0,1.665583333,0.89325, +2015-01-26 01:00:00,2.479392648,1021.9625,0.0,100.0,1.409,0.693916667, +2015-01-26 02:00:00,2.457480768,1021.51,0.0,100.0,1.236666667,0.320583333, +2015-01-26 03:00:00,0.0,1020.9825,0.0,100.0,1.166,0.02275, +2015-01-26 04:00:00,4.780709088,1020.570833,0.0,100.0,1.150083333,0.0405, +2015-01-26 05:00:00,2.457480768,1019.925833,0.0,99.95833333,1.002083333,0.294083333, +2015-01-26 06:00:00,0.0,1019.596667,0.0,99.425,1.080916667,0.42758333299999995, +2015-01-26 07:00:00,0.0,1019.293333,0.01925,99.375,1.05875,0.518916667, +2015-01-26 08:00:00,0.0,1018.901667,4.000666667,98.33333333,1.050916667,0.691666667, +2015-01-26 09:00:00,0.0,1018.529167,24.925,97.61666667,1.44225,1.038583333, +2015-01-26 10:00:00,0.0,1017.943333,43.58583333,99.03333333,1.896833333,1.253583333, +2015-01-26 11:00:00,5.50294116,1017.484167,40.0125,98.5,2.21475,1.4590833330000001, +2015-01-26 12:00:00,10.61981064,1016.401667,71.54333333,98.99166667,2.039166667,1.122583333, +2015-01-26 13:00:00,18.14154094,1015.52,45.9475,99.675,1.903583333,1.036583333, +2015-01-26 14:00:00,14.78764037,1014.383333,39.71166667,100.0,0.9835,0.389166667, +2015-01-26 15:00:00,12.29075666,1013.643333,22.24583333,99.56666667,0.944583333,0.455666667, +2015-01-26 16:00:00,5.174436096,1012.875,9.510083332999999,99.60833333,1.3165,1.143, +2015-01-26 17:00:00,2.534123424,1012.421667,0.32125,99.7,1.7815,0.800583333, +2015-01-26 18:00:00,0.0,1012.213333,0.0,100.0,1.612416667,0.324916667, +2015-01-26 19:00:00,2.442450912,1012.275833,0.0,100.0,1.7583333330000002,0.2865, +2015-01-26 20:00:00,2.600351856,1012.366667,0.0,100.0,2.494916667,1.230916667, +2015-01-26 21:00:00,0.0,1012.383333,0.0,100.0,2.730833333,1.16475, +2015-01-26 22:00:00,0.0,1012.679167,0.0,100.0,2.85475,0.73175, +2015-01-26 23:00:00,0.0,1012.9675,0.0,99.09166667,2.838666667,0.89725, +2015-01-27 00:00:00,0.0,1013.15,0.0,97.55833333,2.805333333,1.039416667, +2015-01-27 01:00:00,0.0,1013.275833,0.0,95.24166667,2.1375,0.645333333, +2015-01-27 02:00:00,0.0,1013.8116669999999,0.0,96.66666667,1.702,0.945583333, +2015-01-27 03:00:00,2.842607904,1014.084167,0.0,97.65,2.03675,1.4584166669999998, +2015-01-27 04:00:00,0.0,1014.413333,0.0,96.55,1.99325,1.8468333330000002, +2015-01-27 05:00:00,0.0,1015.050833,0.0,98.325,1.83575,1.76725, +2015-01-27 06:00:00,0.0,1015.116667,0.0,98.10833333,1.565666667,1.36325, +2015-01-27 07:00:00,0.0,1015.158333,0.072833333,98.14166667,1.330333333,1.230583333, +2015-01-27 08:00:00,0.0,1015.5275,13.41191667,98.51666667,1.649666667,1.337416667, +2015-01-27 09:00:00,8.110594464,1015.9775,17.29666667,99.39166667,2.0148333330000003,1.3195, +2015-01-27 10:00:00,0.0,1016.2575,70.00583333,99.325,2.6846666669999997,1.46475, +2015-01-27 11:00:00,2.7869741039999996,1016.435833,74.32166667,98.28333333,3.2439166669999997,1.5263333330000002, +2015-01-27 12:00:00,0.0,1016.1625,114.45916670000001,93.475,3.74725,2.0413333330000003, +2015-01-27 13:00:00,0.0,1015.926667,76.69083333,90.025,4.317666667,2.1556666669999998, +2015-01-27 14:00:00,0.0,1015.730833,48.48,93.4,4.164416667,1.3065, +2015-01-27 15:00:00,0.0,1015.616667,20.70083333,94.175,3.807666667,1.178833333, +2015-01-27 16:00:00,0.0,1015.8175,8.46525,93.75833333,3.900666667,0.896416667, +2015-01-27 17:00:00,0.0,1016.145833,0.63875,95.80833333,3.5060833330000003,0.668333333, +2015-01-27 18:00:00,0.0,1016.455833,0.0,98.4,2.99625,0.854916667, +2015-01-27 19:00:00,0.0,1016.603333,0.0,97.58333333,2.8245,1.1663333329999999, +2015-01-27 20:00:00,0.0,1016.613333,0.0,99.05,2.769166667,1.054916667, +2015-01-27 21:00:00,0.0,1016.48,0.0,98.65833333,2.5710833330000002,0.49825, +2015-01-27 22:00:00,0.0,1016.4025,0.0,99.225,2.223666667,0.30175, +2015-01-27 23:00:00,0.0,1016.5008330000001,0.0,99.86666667,2.761083333,1.079916667, +2015-01-28 00:00:00,0.0,1016.399167,0.0,99.84166667,3.013833333,1.777166667, +2015-01-28 01:00:00,0.0,1015.9225,0.0,99.90833333,2.73775,1.66125, +2015-01-28 02:00:00,0.0,1015.38,0.0,100.0,2.55175,1.5476666669999999, +2015-01-28 03:00:00,0.0,1014.9175,0.0,99.95,2.742833333,0.92875, +2015-01-28 04:00:00,0.0,1013.995,0.0,99.03333333,2.665833333,0.635, +2015-01-28 05:00:00,0.0,1013.283333,0.0,98.075,2.716583333,1.181583333, +2015-01-28 06:00:00,0.0,1012.41,0.0,99.08333333,1.740833333,0.870583333, +2015-01-28 07:00:00,0.0,1011.814167,0.065833333,96.7,1.686166667,0.541333333, +2015-01-28 08:00:00,0.0,1011.416667,7.541166667000001,94.98333333,2.5131666669999997,1.1465, +2015-01-28 09:00:00,0.0,1010.470833,39.21166667,93.525,3.08875,1.311833333, +2015-01-28 10:00:00,0.0,1009.4425,53.01166667,91.825,3.60225,1.80825, +2015-01-28 11:00:00,0.0,1008.384167,39.00166667,91.75,4.003416667,1.97575, +2015-01-28 12:00:00,0.0,1006.225,67.49416667,92.41666667,4.145333333,2.121083333, +2015-01-28 13:00:00,0.0,1004.4275,44.49416667,92.075,4.178,2.410583333, +2015-01-28 14:00:00,0.0,1002.283333,50.46,93.18333333,4.182916667,2.882166667, +2015-01-28 15:00:00,0.0,1000.206667,34.82916667,92.29166667,4.184583333,2.23975, +2015-01-28 16:00:00,0.0,998.1816667000002,14.56183333,90.18333333,4.437416667,3.13025, +2015-01-28 17:00:00,0.0,996.4983332999999,0.161083333,91.4,4.477666667,3.315666667, +2015-01-28 18:00:00,13.77960389,994.5083332999999,0.0,95.125,4.1130833330000005,2.7200833330000003, +2015-01-28 19:00:00,23.25873413,992.8375,0.0,96.83333333,3.820583333,3.4666666669999997, +2015-01-28 20:00:00,43.16433194,992.0558332999999,0.0,96.075,4.164666667,3.395333333, +2015-01-28 21:00:00,21.99727034,993.5641667000001,0.0,92.39166667,2.9674166669999997,2.65775, +2015-01-28 22:00:00,0.0,993.4366667000002,0.0,94.55,1.925583333,1.674333333, +2015-01-28 23:00:00,0.0,993.3541667000002,0.0,94.56666667,1.660166667,1.741166667, +2015-01-29 00:00:00,0.0,993.145,0.0,93.55,1.644166667,1.896, +2015-01-29 01:00:00,0.0,992.9825,0.0,90.425,1.7455,2.774916667, +2015-01-29 02:00:00,0.0,993.1166667000001,0.0,88.23333333,1.9331666669999998,2.5340833330000003, +2015-01-29 03:00:00,0.0,992.8183332999998,0.0,88.125,1.680333333,2.027416667, +2015-01-29 04:00:00,0.0,992.2766667000001,0.0,88.83333333,1.185,2.638583333, +2015-01-29 05:00:00,0.0,991.6033332999999,0.0,88.85,0.96925,3.1055, +2015-01-29 06:00:00,0.0,990.7783332999999,0.0,88.45833333,0.96075,2.74, +2015-01-29 07:00:00,0.0,990.4316667000002,0.069916667,88.30833333,1.225666667,2.614416667, +2015-01-29 08:00:00,0.0,989.69,6.731083333,89.43333333,1.521833333,2.5665, +2015-01-29 09:00:00,0.0,988.8808332999998,27.49416667,90.275,1.7850833330000002,2.5425, +2015-01-29 10:00:00,0.0,987.8583332999999,53.30083333,90.38333333,2.03525,2.673083333, +2015-01-29 11:00:00,0.0,986.7433332999999,153.9183333,89.76666667,2.804916667,2.599416667, +2015-01-29 12:00:00,0.0,985.1541667000001,201.2,88.23333333,4.028333333,2.77075, +2015-01-29 13:00:00,0.0,983.6733332999999,77.06833333,89.49166667,3.565833333,2.580083333, +2015-01-29 14:00:00,0.0,981.9316667000002,136.68333330000002,87.625,3.8145,2.36825, +2015-01-29 15:00:00,3.3531219119999998,980.37,47.13,87.40833333,4.044333333,2.079, +2015-01-29 16:00:00,0.0,978.5925,15.12508333,88.575,3.674833333,1.75225, +2015-01-29 17:00:00,5.621615832000001,976.9675,0.660416667,95.00833333,2.99825,1.329, +2015-01-29 18:00:00,27.20772377,975.315,0.0,99.01666667,2.123166667,2.237666667, +2015-01-29 19:00:00,5.968462416,973.9858332999999,0.0,96.46666667,2.27225,1.6984166669999998, +2015-01-29 20:00:00,14.20963447,972.5041667000002,0.0,97.90833333,2.379083333,1.465583333, +2015-01-29 21:00:00,9.268372008,970.8175,0.0,99.5,2.096916667,2.090833333, +2015-01-29 22:00:00,0.0,969.5025,0.0,97.94166667,2.16325,2.5693333330000003, +2015-01-29 23:00:00,2.915590776,968.6508332999998,0.0,98.275,2.158083333,0.913833333, +2015-01-30 00:00:00,21.03692059,967.9333332999998,0.0,99.90833333,1.640166667,1.124916667, +2015-01-30 01:00:00,4.83011496,967.0708332999999,0.0,100.0,0.880583333,0.240916667, +2015-01-30 02:00:00,0.0,966.705,0.0,100.0,0.745083333,0.083666667, +2015-01-30 03:00:00,2.404743864,966.8208332999999,0.0,100.0,0.7909999999999999,0.05875, +2015-01-30 04:00:00,8.071193016,967.8175,0.0,100.0,0.8733333329999999,1.3620833330000002, +2015-01-30 05:00:00,2.687227032,969.0558332999999,0.0,97.85833333,0.794333333,2.055916667, +2015-01-30 06:00:00,0.0,969.9741667000002,0.0,93.975,0.626166667,2.3609166669999997, +2015-01-30 07:00:00,0.0,970.6575,0.067666667,94.04166667,0.282166667,2.5226666669999998, +2015-01-30 08:00:00,0.0,971.5058332999998,12.8855,94.70833333,0.205916667,2.91, +2015-01-30 09:00:00,0.0,972.2591667000002,56.8425,94.51666667,0.5840833329999999,2.8730833330000003, +2015-01-30 10:00:00,0.0,972.7433332999999,98.39583333,96.44166667,0.75125,3.30425, +2015-01-30 11:00:00,2.83925412,972.95,129.0666667,93.95833333,1.3215,2.64675, +2015-01-30 12:00:00,0.0,972.8016667000002,172.88166669999998,91.43333333,2.01775,2.012166667, +2015-01-30 13:00:00,0.0,972.485,246.85,86.69166667,3.276333333,2.515, +2015-01-30 14:00:00,0.0,972.225,224.9833333,84.79166667,3.5958333330000003,2.296916667, +2015-01-30 15:00:00,0.0,972.1058332999999,147.3666667,82.1,3.545,1.8208333330000002, +2015-01-30 16:00:00,0.0,972.415,30.74416667,87.475,2.45675,1.5521666669999998, +2015-01-30 17:00:00,0.0,972.4883332999999,1.88125,91.275,1.062416667,0.511166667, +2015-01-30 18:00:00,0.0,972.6258332999998,0.0,92.79166667,0.589333333,0.6276666670000001, +2015-01-30 19:00:00,0.0,973.0175,0.0,97.03333333,0.270916667,0.356833333, +2015-01-30 20:00:00,0.0,973.3175,0.0,95.90833333,0.686583333,0.9640000000000001, +2015-01-30 21:00:00,0.0,973.5225,0.0,95.025,0.908833333,1.442, +2015-01-30 22:00:00,0.0,973.6391667000001,0.0,92.975,0.585583333,0.68775, +2015-01-30 23:00:00,0.0,973.7866667000002,0.0,86.20833333,0.535083333,0.582916667, +2015-01-31 00:00:00,0.0,973.8725,0.0,87.175,0.5458333329999999,0.734583333, +2015-01-31 01:00:00,0.0,973.9666667000001,0.0,89.06666667,0.770083333,1.4375, +2015-01-31 02:00:00,0.0,974.0166667000001,0.0,90.78333333,0.841666667,1.757416667, +2015-01-31 03:00:00,0.0,973.9783332999999,0.0,91.35833333,0.79125,2.101083333, +2015-01-31 04:00:00,0.0,974.1925,0.0,94.875,0.56275,2.13175, +2015-01-31 05:00:00,0.0,974.4558332999999,0.0,94.69166667,0.630083333,2.548833333, +2015-01-31 06:00:00,0.0,974.7258332999999,0.0,94.88333333,0.79675,2.541583333, +2015-01-31 07:00:00,0.0,975.1575,0.132,94.575,0.878166667,1.296583333, +2015-01-31 08:00:00,0.0,975.9441667000001,12.15183333,95.06666667,0.8155,1.07025, +2015-01-31 09:00:00,0.0,976.6841667000001,64.12083333,93.39166667,1.28925,2.110416667, +2015-01-31 10:00:00,0.0,977.13,129.5041667,90.33333333,1.9336666669999998,2.552666667, +2015-01-31 11:00:00,0.0,977.6258332999998,198.4,87.06666667,2.788333333,2.3151666669999997, +2015-01-31 12:00:00,0.0,977.9258332999999,196.4,83.91666667,3.905416667,2.185666667, +2015-01-31 13:00:00,0.0,977.9775,155.55833330000002,81.65833333,4.196666667,1.7496666669999998, +2015-01-31 14:00:00,0.0,978.0391667000001,123.05,80.17416667,3.722333333,1.5329166669999998, +2015-01-31 15:00:00,0.0,978.3433332999999,139.1608333,77.38583333,4.28,1.317916667, +2015-01-31 16:00:00,0.0,978.72,38.7975,82.82416667,3.08425,0.906333333, +2015-01-31 17:00:00,0.0,979.1683332999999,5.189333333,90.31666667,1.332166667,0.465, +2015-01-31 18:00:00,0.0,979.8125,0.0,93.575,-0.044000000000000004,0.527416667, +2015-01-31 19:00:00,0.0,980.19,0.0,95.8,-1.16725,0.1615, +2015-01-31 20:00:00,0.0,980.6375,0.0,98.95,-1.3494166669999998,0.21925, +2015-01-31 21:00:00,0.0,980.87,0.0,100.0,-2.273083333,0.08900000000000001, +2015-01-31 22:00:00,0.0,981.0725,0.0,100.0,-2.92625,0.081916667, +2015-01-31 23:00:00,0.0,981.2925,0.0,100.0,-3.09475,0.027416667000000002, +2015-01-02 00:00:00,0.0,981.6,0.0,100.0,-2.384,0.1685, +2015-01-02 01:00:00,0.0,981.6,0.0,100.0,-1.8035,0.163666667, +2015-01-02 02:00:00,0.0,981.7033332999998,0.0,100.0,-1.650333333,0.142166667, +2015-01-02 03:00:00,0.0,981.5416667000002,0.0,100.0,-1.24425,0.00825, +2015-01-02 04:00:00,0.0,981.8091667000001,0.0,100.0,-1.29775,0.196583333, +2015-01-02 05:00:00,0.0,982.2791667000001,0.0,100.0,-1.3905833330000001,0.24733333300000002, +2015-01-02 06:00:00,0.0,982.785,0.0,100.0,-1.268333333,0.0775, +2015-01-02 07:00:00,0.0,983.1341667000002,0.094833333,100.0,-1.4498333330000002,0.19675, +2015-01-02 08:00:00,0.0,983.5875,7.00025,100.0,-1.8360833330000002,0.07883333299999999, +2015-01-02 09:00:00,0.0,984.3691667000002,38.06333333,100.0,-1.223833333,0.092833333, +2015-01-02 10:00:00,2.582234304,984.9683332999999,104.325,97.90833333,0.837583333,0.7443333329999999, +2015-01-02 11:00:00,4.989218952,985.5866667000001,187.75,90.775,0.925166667,0.9079166670000001, +2015-01-02 12:00:00,0.0,985.7225,228.175,84.8,2.56425,1.044833333, +2015-01-02 13:00:00,0.0,985.8675,113.53666670000001,84.05833333,2.7181666669999998,0.7120000000000001, +2015-01-02 14:00:00,0.0,986.1425,43.78,90.66666667,2.1131666669999998,1.18875, +2015-01-02 15:00:00,0.0,986.4591667000001,35.50166667,92.51666667,1.8675,0.6133333329999999, +2015-01-02 16:00:00,0.0,986.8675,25.69666667,91.14166667,2.1534166669999997,0.471416667, +2015-01-02 17:00:00,0.0,987.3466667000001,2.25575,93.10833333,1.855833333,0.32858333300000003, +2015-01-02 18:00:00,0.0,987.8341667000001,0.0,95.71666667,1.413,0.17600000000000002, +2015-01-02 19:00:00,0.0,988.33,0.0,96.75833333,0.87475,0.20875, +2015-01-02 20:00:00,0.0,988.9175,0.0,97.875,0.81425,0.122083333, +2015-01-02 21:00:00,0.0,989.245,0.0,99.50833333,0.9279166670000001,0.7090833329999999, +2015-01-02 22:00:00,0.0,989.7266667000001,0.0,100.0,0.8723333329999999,0.174916667, +2015-01-02 23:00:00,0.0,990.0291667000001,0.0,100.0,1.072333333,0.620583333, +2015-02-02 00:00:00,0.0,990.5058332999998,0.0,100.0,0.534416667,0.363833333, +2015-02-02 01:00:00,0.0,990.9075,0.0,100.0,-0.45525,0.288166667, +2015-02-02 02:00:00,0.0,991.535,0.0,98.825,0.564,0.859833333, +2015-02-02 03:00:00,0.0,991.9091667000001,0.0,99.075,0.5093333329999999,0.95225, +2015-02-02 04:00:00,0.0,992.1933332999998,0.0,98.49166667,0.14400000000000002,0.871583333, +2015-02-02 05:00:00,0.0,992.8933332999999,0.0,96.71666667,0.230416667,0.758416667, +2015-02-02 06:00:00,0.0,993.4616667000001,0.0,96.94166667,0.41,0.172, +2015-02-02 07:00:00,0.0,993.7816667000001,0.062916667,99.39166667,0.5429166670000001,0.830666667, +2015-02-02 08:00:00,0.0,994.0116667000001,9.98475,99.14166667,0.7264166670000001,0.5529166670000001, +2015-02-02 09:00:00,0.0,994.3875,69.92583333,96.56666667,1.183833333,1.199916667, +2015-02-02 10:00:00,2.592219744,994.6175,104.1075,95.8,1.55125,1.524666667, +2015-02-02 11:00:00,5.339525472,994.9083332999999,132.6916667,92.925,1.95075,1.8273333330000001, +2015-02-02 12:00:00,0.0,994.9141667000001,163.6333333,88.90833333,2.9441666669999997,2.1115, +2015-02-02 13:00:00,0.0,994.9941667000002,171.56666669999998,89.14166667,2.4465,2.098666667, +2015-02-02 14:00:00,0.0,994.8216667000002,166.1333333,87.85,3.0346666669999998,2.103416667, +2015-02-02 15:00:00,0.0,994.7646396,73.90166667,88.35,2.653166667,2.232916667, +2015-02-02 16:00:00,0.0,994.8583332999999,28.49083333,92.975,1.74275,2.1675, +2015-02-02 17:00:00,0.0,995.0583332999998,1.7670833330000002,94.95833333,1.226333333,1.9095, +2015-02-02 18:00:00,0.0,995.4041667000001,0.0,96.29166667,1.115583333,1.8388333330000002, +2015-02-02 19:00:00,0.0,995.7291667000002,0.0,96.45,1.045833333,1.852916667, +2015-02-02 20:00:00,0.0,995.9708332999999,0.0,96.06666667,0.976916667,1.894833333, +2015-02-02 21:00:00,0.0,996.1375,0.0,95.50833333,0.840666667,1.4445, +2015-02-02 22:00:00,0.0,996.15,0.0,96.525,0.756416667,1.6699166669999999, +2015-02-02 23:00:00,0.0,996.1583332999999,0.0,98.0,0.4535,0.8859999999999999, +2015-03-02 00:00:00,0.0,996.55,0.0,97.59166667,0.546666667,0.692666667,238.01828600000002 +2015-03-02 01:00:00,0.0,996.5333332999999,0.0,95.14166667,0.7085,1.6540000000000001,238.01793600000005 +2015-03-02 02:00:00,0.0,996.6708332999999,0.0,93.48333333,0.683416667,1.5594166669999998,238.018986 +2015-03-02 03:00:00,0.0,996.6208332999998,0.0,93.53333333,0.604166667,1.137166667,238.01931933333333 +2015-03-02 04:00:00,0.0,996.4,0.0,93.625,0.467,0.82325,238.018286 +2015-03-02 05:00:00,0.0,996.5625,0.0,93.73333333,0.331833333,0.858,238.017236 +2015-03-02 06:00:00,0.0,996.5875,0.0,94.13333333,0.276833333,1.36725,238.018986 +2015-03-02 07:00:00,0.0,996.7416667000001,0.18833333300000002,94.275,0.19066666699999998,1.030333333,238.01758600000002 +2015-03-02 08:00:00,0.0,997.225,9.400416667,93.98333333,0.18675,1.726666667,238.015886 +2015-03-02 09:00:00,0.0,997.7458332999998,35.09833333,93.30833333,0.45033333299999995,1.75625,238.013836 +2015-03-02 10:00:00,0.0,998.1375,81.09333333,91.93333333,0.7706666670000001,1.7345,238.01278599999998 +2015-03-02 11:00:00,2.681085504,998.55,113.0,90.45,1.2640833329999999,1.59725,238.010436 +2015-03-02 12:00:00,2.7363933119999997,998.425,156.3,88.03333333,1.8081666669999998,1.781833333,238.00868599999998 +2015-03-02 13:00:00,0.0,998.5125,120.10833329999998,86.025,2.46425,1.084166667,238.00668599999997 +2015-03-02 14:00:00,0.0,998.7916667000002,44.805,91.78333333,2.030333333,1.30075,238.00665266666667 +2015-03-02 15:00:00,0.0,998.675,121.28416670000001,95.7,1.9965,1.0464166670000001,238.00528599999998 +2015-03-02 16:00:00,0.0,998.8208332999999,55.33083333,88.26666667,2.105833333,0.734916667,238.00598599999998 +2015-03-02 17:00:00,0.0,999.1625,3.105916667,89.75833333,0.9925,0.55175,238.00698599999998 +2015-03-02 18:00:00,0.0,999.8083332999998,0.0,90.50833333,0.688083333,0.625583333,238.00220266666665 +2015-03-02 19:00:00,0.0,1000.3,0.0,92.28333333,0.49225,0.6409999999999999,237.99806933333332 +2015-03-02 20:00:00,0.0,1000.7625,0.0,98.875,-0.6940000000000001,0.238416667,237.991236 +2015-03-02 21:00:00,0.0,1001.104167,0.0,100.0,-1.751416667,0.222333333,237.98678600000002 +2015-03-02 22:00:00,0.0,1001.333333,0.0,100.0,-1.920333333,0.192333333,237.9854193333333 +2015-03-02 23:00:00,0.0,1001.55,0.0,100.0,-2.4895,0.11941666699999999,237.9844193333333 +2015-04-02 00:00:00,0.0,1001.8,0.0,100.0,-3.009,0.38483333299999994,238.05155089999997 +2015-04-02 01:00:00,0.0,1002.083333,0.0,100.0,-2.491333333,0.4145,238.0514215666667 +2015-04-02 02:00:00,0.0,1002.6875,0.0,99.68333333,-2.003166667,0.18508333300000002,238.0512725333334 +2015-04-02 03:00:00,0.0,1003.2541669999999,0.0,98.23333333,-1.533916667,0.187,238.05114443333335 +2015-04-02 04:00:00,0.0,1003.616667,0.0,97.66666667,-1.490833333,0.997583333,238.0510927 +2015-04-02 05:00:00,0.0,1004.241667,0.0,91.29166667,-1.236416667,2.285,238.05106684999998 +2015-04-02 06:00:00,0.0,1004.3708330000001,0.0,88.60833333,-1.95475,1.676833333,238.0511185833333 +2015-04-02 07:00:00,0.0,1005.05,0.131083333,83.65833333,-1.24875,2.768583333,238.05154843333335 +2015-04-02 08:00:00,0.0,1005.7,5.287333333,83.925,-1.321916667,3.4441666669999997,238.0520546166667 +2015-04-02 09:00:00,0.0,1006.554167,32.05,81.57166667,-1.2824166670000001,2.3065,238.05245980000004 +2015-04-02 10:00:00,0.0,1007.354167,68.23166667,78.64333333,-0.868166667,2.055166667,238.05271353333333 +2015-04-02 11:00:00,0.0,1007.9333330000001,115.88,76.11583333,-0.611666667,2.813166667,238.052918 +2015-04-02 12:00:00,0.0,1007.975,183.6333333,74.48166667,-0.188,3.1975833330000003,238.05289213333333 +2015-04-02 13:00:00,0.0,1008.1125,233.66666669999998,72.16333333,0.468916667,2.396416667,238.05286626666668 +2015-04-02 14:00:00,0.0,1008.325,204.0291667,69.2625,0.868583333,1.851083333,238.0527628 +2015-04-02 15:00:00,0.0,1008.6916669999999,171.075,67.65583333,1.20025,1.423583333,238.05248566666668 +2015-04-02 16:00:00,0.0,1009.108333,68.5575,67.99166667,1.000666667,0.695416667,238.05228120000004 +2015-04-02 17:00:00,0.0,1009.383333,4.824166667,87.12416667,-0.700833333,0.065166667,238.05210509999998 +2015-04-02 18:00:00,0.0,1009.920833,0.0,92.10833333,-1.278666667,0.033,238.05187729999997 +2015-04-02 19:00:00,0.0,1010.5041669999999,0.0,90.91666667,-1.328083333,0.728916667,238.0516494333333 +2015-04-02 20:00:00,0.0,1011.325,0.0,84.73333333,-1.094083333,1.8421666669999999,238.05142279999998 +2015-04-02 21:00:00,0.0,1011.858333,0.0,91.91666667,-2.35875,0.4805,238.0512479 +2015-04-02 22:00:00,0.0,1012.341667,0.0,97.325,-3.8424166669999997,0.098416667,238.05101514999998 +2015-04-02 23:00:00,0.0,1012.679167,0.0,98.71666667,-4.8644166669999995,0.01275,238.05091418333336 +2015-05-02 00:00:00,0.0,1012.65,0.0,99.24166667,-5.4603333329999995,0.021833332999999996, +2015-05-02 01:00:00,0.0,1012.5666669999999,0.0,99.61666667,-6.0709166670000005,0.035, +2015-05-02 02:00:00,0.0,1012.675,0.0,99.84166667,-6.34875,0.04075, +2015-05-02 03:00:00,0.0,1012.608333,0.0,99.525,-6.134583332999999,0.13525, +2015-05-02 04:00:00,0.0,1012.679167,0.0,99.83333333,-5.07925,0.293416667, +2015-05-02 05:00:00,0.0,1012.8166669999999,0.0,98.45,-4.163333333,0.1255, +2015-05-02 06:00:00,0.0,1013.016667,0.0,96.86666667,-3.6011666669999998,0.022166667, +2015-05-02 07:00:00,0.0,1013.4416669999999,0.10241666699999999,93.59166667,-3.28425,0.239333333, +2015-05-02 08:00:00,0.0,1013.920833,24.63533333,90.83333333,-2.5,0.8335, +2015-05-02 09:00:00,0.0,1014.3083330000001,66.79416667,86.025,-1.5566666669999998,3.1550833330000003, +2015-05-02 10:00:00,0.0,1014.75,108.98333329999998,85.94166667,-1.330333333,3.11725, +2015-05-02 11:00:00,0.0,1014.979167,154.4083333,84.85,-0.840916667,3.573083333, +2015-05-02 12:00:00,0.0,1014.825,226.70833330000002,79.08166667,0.00975,4.9110000000000005, +2015-05-02 13:00:00,0.0,1015.1208330000001,162.05,77.32416667,0.335583333,5.085083333, +2015-05-02 14:00:00,0.0,1015.008333,76.345,76.67833333,-0.14,5.25525, +2015-05-02 15:00:00,0.0,1015.1375,38.19333333,80.9525,-0.330916667,4.433, +2015-05-02 16:00:00,2.73565644,1015.141667,16.18133333,82.775,-0.55425,4.569666667, +2015-05-02 17:00:00,0.0,1015.5125,2.449416667,80.26,-0.5628333329999999,4.599416667, +2015-05-02 18:00:00,0.0,1016.225,0.0,76.73333333,-0.6004166670000001,5.267583333, +2015-05-02 19:00:00,0.0,1016.604167,0.0,76.3175,-0.706583333,6.183583333, +2015-05-02 20:00:00,0.0,1016.9,0.0,76.54583333,-0.948333333,6.2285, +2015-05-02 21:00:00,0.0,1016.958333,0.0,77.85583333,-1.0284166670000001,5.995083332999999, +2015-05-02 22:00:00,0.0,1016.945833,0.0,78.71333333,-1.066333333,5.313333333, +2015-05-02 23:00:00,0.0,1017.2125,0.0,79.42166667,-1.110583333,5.227333333, +2015-06-02 00:00:00,0.0,1017.529167,0.0,78.96083333,-1.073916667,5.473833332999999,237.82033803333331 +2015-06-02 01:00:00,0.0,1017.575,0.0,78.2125,-1.257583333,6.048083332999999,237.82292368333336 +2015-06-02 02:00:00,0.0,1017.554167,0.0,78.2675,-1.453416667,6.323083333,237.8213723 +2015-06-02 03:00:00,0.0,1017.4333330000001,0.0,80.07583333,-1.6231666669999998,5.392916667000001,237.82361318333335 +2015-06-02 04:00:00,0.0,1017.804167,0.0,80.58583333,-1.67125,5.770916667000001,237.82637121666664 +2015-06-02 05:00:00,0.0,1018.091667,0.0,80.33166667,-1.604416667,4.800833333,237.82550933333334 +2015-06-02 06:00:00,0.0,1018.241667,0.0,80.6775,-1.5084166669999999,5.7961666670000005,237.82430268333337 +2015-06-02 07:00:00,0.0,1018.1125,0.18933333300000002,81.04166667,-1.4576666669999998,5.052083333,237.82447505000005 +2015-06-02 08:00:00,0.0,1018.3708330000001,10.36883333,79.25166667,-1.385583333,5.761083332999999,237.8241303166667 +2015-06-02 09:00:00,0.0,1018.758333,50.55333333,77.40166667,-1.217416667,6.49025,237.82137230000004 +2015-06-02 10:00:00,0.0,1019.1916669999999,142.2575,76.73083333,-0.684,7.083583332999999,237.81654574999996 +2015-06-02 11:00:00,0.0,1019.791667,227.43333330000002,74.3225,0.02325,6.6471666670000005,237.81154683333332 +2015-06-02 12:00:00,0.0,1019.8166669999999,264.7,70.58083333,0.733916667,6.687666667,237.80740978333333 +2015-06-02 13:00:00,0.0,1019.991667,260.6083333,68.31666667,0.88525,6.95775,237.80310036666665 +2015-06-02 14:00:00,0.0,1019.8625,229.8,65.31333333,1.36975,6.303833332999999,237.79930808333336 +2015-06-02 15:00:00,0.0,1020.220833,170.075,62.01,1.4536666669999998,5.340166667,237.79586055000001 +2015-06-02 16:00:00,0.0,1020.233333,75.9125,62.76,0.873083333,4.651916667,237.79430914999998 +2015-06-02 17:00:00,0.0,1020.570833,6.036833333,67.20583333,-0.354416667,3.465,237.79293015 +2015-06-02 18:00:00,0.0,1021.108333,0.005166667,73.99166667,-1.5995833330000002,2.888,237.79189586666666 +2015-06-02 19:00:00,0.0,1021.591667,0.0,78.07833333,-2.1590000000000003,4.385833333,237.7896549666667 +2015-06-02 20:00:00,0.0,1022.029167,0.0,81.50166667,-2.8849166669999997,2.211083333,237.78896550000002 +2015-06-02 21:00:00,0.0,1022.525,0.0,83.45,-3.491666667,1.67525,237.79275776666665 +2015-06-02 22:00:00,0.0,1022.9,0.0,83.85,-3.52575,2.836833333,237.79551578333334 +2015-06-02 23:00:00,0.0,1023.1375,0.0,87.425,-3.8816666669999997,2.1141666669999997,237.7968948166667 +2015-07-02 00:00:00,0.0,1023.195833,0.0,89.025,-4.196916667,1.292166667,237.62503526666669 +2015-07-02 01:00:00,0.0,1023.5583330000001,0.0,88.83333333,-4.316833333,1.4144166669999998,237.62934470000002 +2015-07-02 02:00:00,0.0,1024.079167,0.0,89.025,-4.400083333,2.3585833330000003,237.63417125 +2015-07-02 03:00:00,0.0,1024.475,0.0,88.75,-4.508916667,2.266166667,237.6377911666667 +2015-07-02 04:00:00,0.0,1024.166667,0.0,90.475,-4.8935,0.9966666670000001,237.6388254 +2015-07-02 05:00:00,0.0,1024.208333,0.0,92.35,-5.111833333,0.786083333,237.64192819999997 +2015-07-02 06:00:00,0.0,1024.083333,0.0,96.5,-6.531083333,0.174583333,237.64210059999996 +2015-07-02 07:00:00,0.0,1024.345833,0.618583333,98.075,-6.430916667000001,0.143916667,237.64365196666668 +2015-07-02 08:00:00,0.0,1024.3375,11.53383333,98.45833333,-6.38975,0.016333333000000002,237.63951491666663 +2015-07-02 09:00:00,0.0,1024.683333,31.97166667,95.41666667,-4.0258333330000005,0.7325,237.6295170666667 +2015-07-02 10:00:00,0.0,1025.204167,173.15,82.95416667,-2.194666667,1.7003333330000001,237.61572693333335 +2015-07-02 11:00:00,0.0,1025.575,233.8416667,76.585,-0.6699166670000001,2.660416667,237.60400531666664 +2015-07-02 12:00:00,0.0,1025.379167,274.1083333,67.32083333,1.3565833330000001,1.528,237.59819720000002 +2015-07-02 13:00:00,0.0,1024.35,274.4833333,58.35166667,3.161833333,0.71225,237.59605098333336 +2015-07-02 14:00:00,0.0,1023.6125,232.5333333,50.73666667,4.475333333,0.656833333,237.5935419 +2015-07-02 15:00:00,0.0,1022.625,156.2416667,45.025,5.285,0.523,237.59117221666668 +2015-07-02 16:00:00,0.0,1022.645833,75.33583333,50.65666667,4.072,0.983083333,237.5890813 +2015-07-02 17:00:00,0.0,1022.304167,5.511583333,78.385,0.43775,0.2095,237.59089340000003 +2015-07-02 18:00:00,0.0,1022.633333,0.01125,80.33166667,1.160416667,1.4805833330000002,237.58936010000002 +2015-07-02 19:00:00,0.0,1022.404167,0.0,85.71666667,1.6034166669999999,0.7190000000000001,237.5886631333333 +2015-07-02 20:00:00,0.0,1021.758333,0.0,87.46666667,2.099583333,1.067,237.59186918333333 +2015-07-02 21:00:00,0.0,1021.554167,0.0,90.50833333,2.582833333,1.1610833329999999,237.59549341666664 +2015-07-02 22:00:00,0.0,1021.070833,0.0,92.4,2.82925,1.183416667,237.59939641666665 +2015-07-02 23:00:00,0.0,1020.204167,0.0,95.71666667,2.351666667,1.410333333,237.60357823333334 +2015-08-02 00:00:00,0.0,1019.579167,0.0,97.69166667,1.993916667,1.310083333,237.4862087666667 +2015-08-02 01:00:00,0.0,1019.3791669999999,0.0,96.39166667,2.8569166669999997,1.46725,237.49025118333336 +2015-08-02 02:00:00,0.0,1018.804167,0.0,94.8,2.958333333,1.69025,237.4940148166667 +2015-08-02 03:00:00,0.0,1018.2875,0.0,90.83333333,3.4841666669999998,2.687,237.49875418333332 +2015-08-02 04:00:00,0.0,1017.8708330000001,0.0,91.58333333,2.881916667,2.9605,237.50196025 +2015-08-02 05:00:00,0.0,1017.895833,0.0,86.56666667,2.880083333,2.0125833330000003,237.50335418333336 +2015-08-02 06:00:00,0.0,1018.579167,0.0,77.79,3.339833333,3.64625,237.50628145 +2015-08-02 07:00:00,0.0,1019.083333,0.26716666699999997,74.57583333,2.95075,2.8569999999999998,237.50906931666665 +2015-08-02 08:00:00,0.0,1019.658333,11.11208333,70.92583333,2.889166667,3.414666667,237.50837233333334 +2015-08-02 09:00:00,0.0,1020.258333,26.32333333,76.53583333,2.4265,3.390666667,237.50223905000004 +2015-08-02 10:00:00,0.0,1021.4125,128.12583329999998,79.96666667,2.25375,4.44425,237.49080875 +2015-08-02 11:00:00,0.0,1021.970833,227.5,66.43916667,2.93475,6.317833332999999,237.47770573333332 +2015-08-02 12:00:00,0.0,1022.2458330000001,229.175,58.5075,3.3295,5.7595,237.46613606666668 +2015-08-02 13:00:00,0.0,1022.466667,250.66666669999998,54.3325,3.691583333,4.923166667,237.45930580000004 +2015-08-02 14:00:00,0.0,1022.65,193.8,50.49833333,3.664583333,4.52925,237.45582095000006 +2015-08-02 15:00:00,0.0,1022.9958330000001,179.06666669999998,47.92083333,3.78525,3.5295,237.45247551666662 +2015-08-02 16:00:00,0.0,1023.4416669999999,88.4375,50.2725,3.187416667,3.95125,237.4520573166667 +2015-08-02 17:00:00,0.0,1023.9625,5.33575,53.85416667,1.853083333,2.776833333,237.45303308333328 +2015-08-02 18:00:00,0.0,1024.679167,0.007083333000000001,66.77333333,0.41116666700000004,1.148416667,237.45219669999997 +2015-08-02 19:00:00,0.0,1025.05,0.0,84.02833333,-1.476666667,0.061916667,237.45456639999998 +2015-08-02 20:00:00,0.0,1025.3,0.0,85.70166667,-1.944333333,0.2435,237.4591664166667 +2015-08-02 21:00:00,0.0,1025.8,0.0,75.40333333,-0.550583333,0.575,237.46362699999997 +2015-08-02 22:00:00,0.0,1025.620833,0.0,75.6025,0.719583333,1.1495,237.46934215 +2015-08-02 23:00:00,0.0,1025.283333,0.0,78.91666667,0.79525,1.7029166669999998,237.47422093333333 +2015-09-02 00:00:00,0.0,1025.0875,0.0,82.81666667,0.83875,1.4958333330000002,237.57888486666664 +2015-09-02 01:00:00,0.0,1024.6375,0.0,86.89166667,1.110416667,1.755333333,237.57903998333333 +2015-09-02 02:00:00,0.0,1024.241667,0.0,91.25833333,1.4313333330000002,1.5409166669999999,237.5798155 +2015-09-02 03:00:00,0.0,1023.3791669999999,0.0,92.66666667,1.735,1.7038333330000002,237.58369325 +2015-09-02 04:00:00,0.0,1022.7625,0.0,96.0,1.855666667,1.148833333,237.5846238833333 +2015-09-02 05:00:00,0.0,1022.35,0.0,96.69166667,2.0291666669999997,1.499916667,237.58555454999998 +2015-09-02 06:00:00,0.0,1022.333333,0.0,97.975,2.287416667,1.275916667,237.58524431666663 +2015-09-02 07:00:00,0.0,1022.291667,0.16825,98.61666667,2.5819166669999998,1.1510833329999999,237.58726073333332 +2015-09-02 08:00:00,0.0,1022.520833,4.3070833330000005,96.825,3.097,1.050583333,237.58601986666665 +2015-09-02 09:00:00,0.0,1022.408333,20.10416667,95.41666667,3.452583333,1.239166667,237.58695051666663 +2015-09-02 10:00:00,0.0,1022.0375,54.025,93.975,3.708,1.4399166669999999,237.5863300833333 +2015-09-02 11:00:00,0.0,1021.9375,64.10666667,91.875,4.386083333,1.47375,237.58570965 +2015-09-02 12:00:00,0.0,1022.020833,43.5025,91.76666667,4.802333333,1.9875833330000001,237.58493408333334 +2015-09-02 13:00:00,0.0,1021.766667,41.17083333,90.23333333,4.899416667,2.7905,237.58245236666667 +2015-09-02 14:00:00,0.0,1021.866667,34.52666667,89.38333333,4.9239999999999995,2.1823333330000003,237.5793502 +2015-09-02 15:00:00,0.0,1021.970833,25.15083333,95.88333333,4.614583333,1.4596666669999998,237.57826445 +2015-09-02 16:00:00,0.0,1022.025,14.86541667,99.84166667,4.07575,1.4258333330000001,237.57547250000002 +2015-09-02 17:00:00,0.0,1022.0875,2.3480000000000003,99.31666667,3.914666667,1.13,237.5753173833333 +2015-09-02 18:00:00,0.0,1022.4625,0.0014166670000000001,99.64166667,3.922166667,1.349833333,237.57361118333336 +2015-09-02 19:00:00,0.0,1022.9416669999999,0.0,99.425,3.894583333,1.07,237.5731458666667 +2015-09-02 20:00:00,0.0,1023.420833,0.0,99.31666667,3.8603333330000003,0.902,237.57485208333335 +2015-09-02 21:00:00,0.0,1023.720833,0.0,99.66666667,3.833333333,1.30425,237.57531738333333 +2015-09-02 22:00:00,0.0,1023.670833,0.0,99.99166667,3.5085833330000002,1.6716666669999998,237.57733378333333 +2015-09-02 23:00:00,0.0,1023.766667,0.0,100.0,3.302833333,1.288333333,237.57903998333333 +2015-10-02 00:00:00,0.0,1023.9375,0.0,100.0,3.45,1.486,237.57997063333335 +2015-10-02 01:00:00,0.0,1023.8375,0.0,100.0,3.5185,1.19625,237.58074618333333 +2015-10-02 02:00:00,0.0,1023.883333,0.0,100.0,3.562416667,0.961,237.58431365 +2015-10-02 03:00:00,0.0,1023.891667,0.0,100.0,3.475083333,0.6669166670000001,237.58586474999996 +2015-10-02 04:00:00,0.0,1024.125,0.0,100.0,3.483166667,0.757916667,237.5866403 +2015-10-02 05:00:00,0.0,1024.3375,0.0,100.0,3.467083333,0.782666667,237.58819136666668 +2015-10-02 06:00:00,0.0,1024.275,0.0,100.0,3.404,0.610166667,237.59020778333334 +2015-10-02 07:00:00,0.0,1024.441667,0.5166666670000001,100.0,3.320916667,0.452583333,237.59082821666672 +2015-10-02 08:00:00,0.0,1024.895833,12.01716667,100.0,3.442416667,0.450666667,237.58974243333338 +2015-10-02 09:00:00,0.0,1025.275,35.9225,99.65,4.14825,0.644166667,237.58850158333334 +2015-10-02 10:00:00,0.0,1025.633333,73.85833333,97.14166667,4.964916667,0.817583333,237.58803625 +2015-10-02 11:00:00,0.0,1025.920833,93.025,93.84166667,5.59225,1.694833333,237.5888118 +2015-10-02 12:00:00,0.0,1025.579167,92.45666667,88.78333333,5.8020000000000005,2.2221666669999998,237.58508919999997 +2015-10-02 13:00:00,0.0,1025.266667,87.06083333,86.025,5.9879999999999995,1.6839166669999999,237.58074616666667 +2015-10-02 14:00:00,0.0,1025.1625,105.275,85.0,6.23375,1.2844166670000001,237.57764401666668 +2015-10-02 15:00:00,0.0,1025.025,57.535,83.95,6.094333333,1.7069999999999999,237.57423161666668 +2015-10-02 16:00:00,0.0,1024.725,25.2925,83.65,5.743333333,1.7059166669999999,237.57330098333333 +2015-10-02 17:00:00,0.0,1024.758333,3.325583333,85.85833333,5.288166667,1.10875,237.57407651666668 +2015-10-02 18:00:00,0.0,1025.004167,0.0,92.90833333,4.779166667,0.608833333,237.57423160000005 +2015-10-02 19:00:00,0.0,1025.416667,0.0,95.13333333,4.127,0.170166667,237.57407650000002 +2015-10-02 20:00:00,0.0,1025.245833,0.0,97.225,3.391833333,0.11983333300000001,237.57547250000002 +2015-10-02 21:00:00,0.0,1025.2125,0.0,98.61666667,3.431833333,0.18600000000000003,237.57562761666668 +2015-10-02 22:00:00,0.0,1025.145833,0.0,97.2,4.138666667,1.187083333,237.57717866666664 +2015-10-02 23:00:00,0.0,1024.8375,0.0,91.45833333,4.116916667,1.24025,237.58028083333332 +2015-11-02 00:00:00,0.0,1024.5375,0.0,90.89166667,4.07125,1.2819999999999998,237.72705955 +2015-11-02 01:00:00,0.0,1024.1875,0.0,89.975,3.953833333,0.90225,237.72767931666667 +2015-11-02 02:00:00,0.0,1023.9125,0.0,90.125,3.9625,1.0231666670000001,237.72829906666664 +2015-11-02 03:00:00,0.0,1023.55,0.0,90.73333333,3.74525,1.12925,237.72489038333336 +2015-11-02 04:00:00,0.0,1023.170833,0.0,91.18333333,3.3883333330000003,1.064583333,237.7275243666667 +2015-11-02 05:00:00,0.0,1022.866667,0.0,91.83333333,3.089666667,1.160083333,237.7289188166667 +2015-11-02 06:00:00,0.0,1022.708333,0.0,92.48333333,2.876583333,1.01725,237.7264398 +2015-11-02 07:00:00,0.0,1022.770833,0.326916667,93.34166667,2.5205,1.244333333,237.72597495 +2015-11-02 08:00:00,0.0,1022.983333,8.6055,94.08333333,2.151416667,1.193166667,237.72520026666666 +2015-11-02 09:00:00,0.0,1023.041667,30.1475,93.85833333,1.9125,1.559333333,237.72612990000002 +2015-11-02 10:00:00,0.0,1022.9625,50.9425,93.15833333,2.0950833330000003,1.25475,237.7247354333334 +2015-11-02 11:00:00,0.0,1022.85,67.99583333,92.61666667,2.4243333330000003,1.6566666669999999,237.72411565000002 +2015-11-02 12:00:00,0.0,1022.625,71.0325,92.36666667,2.407083333,1.526083333,237.72473541666668 +2015-11-02 13:00:00,0.0,1022.141667,81.81,91.39166667,2.404583333,1.428166667,237.72256625 +2015-11-02 14:00:00,0.0,1021.295833,85.86833333,90.83333333,2.5604166669999997,1.458083333,237.72210141666667 +2015-11-02 15:00:00,0.0,1020.608333,70.20166667,90.675,2.610666667,1.41125,237.72442555 +2015-11-02 16:00:00,0.0,1020.208333,30.32416667,91.575,2.42475,1.4811666669999999,237.72659473333331 +2015-11-02 17:00:00,0.0,1020.0583330000001,4.273833333,92.79166667,2.08775,1.5906666669999998,237.72752436666667 +2015-11-02 18:00:00,0.0,1020.041667,0.020666667,93.61666667,1.84825,1.56025,237.7278342333333 +2015-11-02 19:00:00,0.0,1019.929167,0.0,93.875,1.81,1.309916667,237.72860893333336 +2015-11-02 20:00:00,0.0,1019.891667,0.0,94.53333333,1.5138333330000002,1.714083333,237.72876388333336 +2015-11-02 21:00:00,0.0,1019.758333,0.0,95.91666667,1.2385,1.69275,237.72551015 +2015-11-02 22:00:00,0.0,1019.445833,0.0,97.05833333,0.97475,1.57475,237.72566508333333 +2015-11-02 23:00:00,0.0,1019.2625,0.0,98.11666667,0.8311666670000001,1.704,237.7259749666667 +2015-12-02 00:00:00,0.0,1019.0375,0.0,99.14166667,0.770166667,1.94275,238.17731901666664 +2015-12-02 01:00:00,0.0,1018.9,0.0,99.85,0.7020000000000001,1.8799166669999998,238.17437514999997 +2015-12-02 02:00:00,0.0,1018.729167,0.0,100.0,0.62675,2.323833333,238.16957198333333 +2015-12-02 03:00:00,0.0,1018.429167,0.0,100.0,0.59625,1.732666667,238.1653885833333 +2015-12-02 04:00:00,0.0,1018.270833,0.0,100.0,0.3725,1.938166667,238.16105021666667 +2015-12-02 05:00:00,0.0,1017.970833,0.0,100.0,0.18991666699999998,1.6804166669999998,238.1582612666667 +2015-12-02 06:00:00,0.0,1017.7625,0.0,100.0,0.1605,1.446916667,238.15485253333335 +2015-12-02 07:00:00,0.0,1018.0583330000001,0.358333333,100.0,0.109083333,1.56675,238.15144383333333 +2015-12-02 08:00:00,0.0,1018.354167,6.9075,100.0,0.091916667,2.104666667,238.14695053333332 +2015-12-02 09:00:00,0.0,1018.520833,22.16333333,100.0,0.278916667,1.9565,238.14400666666666 +2015-12-02 10:00:00,0.0,1018.75,41.94,99.675,0.534333333,2.021833333,238.14044301666664 +2015-12-02 11:00:00,0.0,1018.908333,57.87416667,98.425,0.774666667,1.8559166669999998,238.13780899999998 +2015-12-02 12:00:00,0.0,1018.4875,77.40666667,97.29166667,1.095166667,1.5754166669999998,238.13440028333335 +2015-12-02 13:00:00,0.0,1018.041667,73.38,96.51666667,1.368,1.391,238.13130143333333 +2015-12-02 14:00:00,0.0,1017.695833,68.07083333,95.875,1.536583333,1.177,238.12789275 +2015-12-02 15:00:00,0.0,1017.270833,58.81416667,95.14166667,1.6404166669999998,1.1401666670000001,238.12634333333338 +2015-12-02 16:00:00,0.0,1017.208333,27.3275,95.45,1.37375,1.4743333330000001,238.12448406666667 +2015-12-02 17:00:00,0.0,1017.366667,3.75125,96.25,1.115583333,1.6845,238.12185006666664 +2015-12-02 18:00:00,0.0,1017.5,0.016416667,97.33333333,0.958833333,1.648916667,238.12092041666668 +2015-12-02 19:00:00,0.0,1017.6125,0.0,97.3,0.869916667,1.78675,238.11689191666665 +2015-12-02 20:00:00,0.0,1017.7,0.0,97.53333333,0.838333333,2.09125,238.11580733333332 +2015-12-02 21:00:00,0.0,1017.491667,0.0,97.78333333,0.786833333,2.197166667,238.1123986166667 +2015-12-02 22:00:00,0.0,1017.295833,0.0,98.36666667,0.593666667,2.235666667,238.10960968333333 +2015-12-02 23:00:00,0.0,1017.2375,0.0,98.91666667,0.26925,1.956,238.10790533333332 +2015-02-13 00:00:00,0.0,1016.979167,0.0,99.35,0.0505,1.6686666669999999,238.024486 +2015-02-13 01:00:00,0.0,1016.45,0.0,99.98333333,-0.208666667,2.108833333,238.02551933333334 +2015-02-13 02:00:00,0.0,1016.270833,0.0,100.0,-0.179166667,1.8675,238.02585266666668 +2015-02-13 03:00:00,0.0,1015.9416669999999,0.0,100.0,-0.22275,1.587833333,238.02585266666668 +2015-02-13 04:00:00,0.0,1015.445833,0.0,100.0,-0.428333333,2.03075,238.02585266666665 +2015-02-13 05:00:00,0.0,1015.229167,0.0,100.0,-0.65725,1.93975,238.02753600000003 +2015-02-13 06:00:00,0.0,1014.9875,0.0,100.0,-0.7503333329999999,2.007083333,238.028236 +2015-02-13 07:00:00,0.0,1014.8375,0.5745,100.0,-0.743583333,2.0459166669999997,238.028236 +2015-02-13 08:00:00,0.0,1014.7541669999999,10.45891667,100.0,-0.725,1.99725,238.028586 +2015-02-13 09:00:00,0.0,1014.9416669999999,32.2375,100.0,-0.655416667,1.963583333,238.0289193333333 +2015-02-13 10:00:00,0.0,1014.591667,58.22166667,100.0,-0.471083333,2.174583333,238.02961933333333 +2015-02-13 11:00:00,0.0,1014.4625,83.89833333,99.61666667,-0.279666667,2.549666667,238.02928599999998 +2015-02-13 12:00:00,0.0,1013.858333,108.38333329999999,98.3,0.193,2.70775,238.03028599999996 +2015-02-13 13:00:00,0.0,1013.141667,119.675,96.13333333,0.893083333,2.46775,238.03028599999996 +2015-02-13 14:00:00,0.0,1012.345833,136.7583333,93.75833333,2.180916667,2.4129166669999997,238.03028599999996 +2015-02-13 15:00:00,0.0,1011.729167,138.7416667,87.025,3.3360000000000003,2.6335833330000002,238.02995266666665 +2015-02-13 16:00:00,0.0,1011.133333,76.67416667,85.375,3.325166667,1.967333333,238.02961933333333 +2015-02-13 17:00:00,0.0,1010.5583330000001,13.89658333,88.0,2.70225,1.575166667,238.02961933333333 +2015-02-13 18:00:00,0.0,1010.4375,0.045083332999999996,92.4,1.8519999999999999,1.6081666669999999,238.02995266666665 +2015-02-13 19:00:00,0.0,1010.145833,0.0,93.65,1.0225,2.3305833330000003,238.02995266666665 +2015-02-13 20:00:00,0.0,1009.858333,0.0,95.86666667,0.295,1.682083333,238.02928599999998 +2015-02-13 21:00:00,0.0,1009.625,0.0,97.475,-0.311666667,1.237166667,238.02961933333333 +2015-02-13 22:00:00,0.0,1009.108333,0.0,96.73333333,-0.30675,1.9155,238.02995266666665 +2015-02-13 23:00:00,0.0,1008.725,0.0,96.03333333,-0.314833333,2.219666667,238.02928599999998 +2015-02-14 00:00:00,0.0,1008.5666669999999,0.0,96.40833333,-0.2815,1.6935,238.03028599999996 +2015-02-14 01:00:00,0.0,1007.954167,0.0,98.70833333,-0.796666667,0.855833333,238.03061933333333 +2015-02-14 02:00:00,0.0,1007.5041669999999,0.0,98.35,-0.942583333,1.5554166669999998,238.03061933333333 +2015-02-14 03:00:00,0.0,1006.854167,0.0,98.70833333,-1.175166667,0.885416667,238.02928599999998 +2015-02-14 04:00:00,0.0,1006.825,0.0,99.98333333,-1.83,0.593833333,238.03095266666665 +2015-02-14 05:00:00,0.0,1006.75,0.0,100.0,-1.873666667,0.633416667,238.03028599999996 +2015-02-14 06:00:00,0.0,1006.645833,0.0,100.0,-1.556416667,0.929416667,238.03163599999996 +2015-02-14 07:00:00,0.0,1006.658333,1.290166667,100.0,-1.520583333,0.9085,238.03163600000002 +2015-02-14 08:00:00,0.0,1006.6875,33.0375,99.6,-1.286666667,0.95375,238.032686 +2015-02-14 09:00:00,0.0,1006.954167,102.4358333,96.15833333,0.13016666699999999,1.160583333,238.03268599999998 +2015-02-14 10:00:00,0.0,1006.991667,170.2666667,91.85833333,1.916,1.375,238.03338599999998 +2015-02-14 11:00:00,0.0,1006.8791669999999,244.7833333,88.18333333,3.063916667,1.678666667,238.03336933333333 +2015-02-14 12:00:00,0.0,1006.529167,285.59166669999996,84.925,3.697666667,2.5693333330000003,238.03371933333332 +2015-02-14 13:00:00,0.0,1006.3083330000001,164.6083333,84.38333333,4.432583333,2.1568333330000002,238.03371933333332 +2015-02-14 14:00:00,0.0,1005.883333,115.66666670000001,84.69166667,4.2859166669999995,1.6520833330000002,238.03405266666667 +2015-02-14 15:00:00,0.0,1005.6291669999999,202.95833330000002,79.97166667,5.577583333,1.365,238.03405266666667 +2015-02-14 16:00:00,0.0,1004.966667,36.11833333,83.7125,5.052666667,0.89425,238.03338599999998 +2015-02-14 17:00:00,0.0,1005.05,6.9938333329999995,87.01666667,3.902083333,0.662083333,238.03338599999998 +2015-02-14 18:00:00,0.0,1005.341667,0.036583332999999996,91.10833333,2.941166667,1.055083333,238.034386 +2015-02-14 19:00:00,0.0,1005.545833,0.0,97.75833333,-0.02425,0.2655,238.035386 +2015-02-14 20:00:00,0.0,1005.616667,0.0,100.0,-0.369166667,0.8205,238.03608599999998 +2015-02-14 21:00:00,0.0,1005.8125,0.0,99.99166667,0.057916667000000005,1.249083333,238.03643599999998 +2015-02-14 22:00:00,0.0,1005.8375,0.0,99.975,-1.2415,0.368666667,238.03678599999998 +2015-02-14 23:00:00,0.0,1006.0875,0.0,100.0,-2.3680000000000003,0.08641666699999999,238.03781933333332 +2015-02-15 00:00:00,0.0,1006.229167,0.0,100.0,-3.019666667,0.061,238.03780266666664 +2015-02-15 01:00:00,0.0,1006.333333,0.0,100.0,-3.5373333330000003,0.051666667,238.03748599999997 +2015-02-15 02:00:00,0.0,1006.220833,0.0,100.0,-4.1205,0.050166667000000005,238.03881933333332 +2015-02-15 03:00:00,0.0,1006.2,0.0,100.0,-4.578666667,0.04975,238.03915266666664 +2015-02-15 04:00:00,0.0,1006.220833,0.0,100.0,-4.7575,0.11691666699999999,238.03948599999998 +2015-02-15 05:00:00,0.0,1006.233333,0.0,100.0,-4.9335833330000005,0.10316666699999999,238.03983599999995 +2015-02-15 06:00:00,0.0,1006.458333,0.0,100.0,-3.751666667,0.0935,238.040536 +2015-02-15 07:00:00,0.0,1006.9125,1.40725,100.0,-3.3298333330000003,0.08708333300000001,238.040886 +2015-02-15 08:00:00,0.0,1007.475,23.78816667,100.0,-3.145083333,0.04825,238.04123600000003 +2015-02-15 09:00:00,0.0,1007.8625,61.93416667,100.0,-1.638333333,0.053916667,238.04158600000002 +2015-02-15 10:00:00,0.0,1008.375,192.94166669999998,98.80833333,0.421833333,0.799083333,238.04228600000002 +2015-02-15 11:00:00,0.0,1008.604167,267.2666667,92.80833333,2.223416667,1.2835,238.042286 +2015-02-15 12:00:00,0.0,1008.5375,293.0166667,84.48333333,4.9125,0.822583333,238.04158600000002 +2015-02-15 13:00:00,0.0,1008.354167,294.1416667,78.13916667,5.152583333,1.542666667,238.04333599999998 +2015-02-15 14:00:00,0.0,1008.158333,255.44166669999998,74.71166667,6.23425,1.502666667,238.04263600000002 +2015-02-15 15:00:00,0.0,1008.383333,186.85,70.87333333,6.991916667000001,2.321166667,238.042986 +2015-02-15 16:00:00,0.0,1008.358333,100.7216667,72.25,6.6398333329999994,1.9795833330000001,238.042986 +2015-02-15 17:00:00,0.0,1008.866667,17.35408333,84.02166667,4.8019166669999995,0.9109999999999999,238.04468599999998 +2015-02-15 18:00:00,0.0,1009.7,0.131,95.06666667,2.363666667,1.54875,238.04568599999996 +2015-02-15 19:00:00,0.0,1010.491667,0.0,96.24166667,0.444666667,0.24583333300000001,238.04568599999996 +2015-02-15 20:00:00,0.0,1011.2,0.0,92.225,0.173416667,1.102833333,238.04638599999998 +2015-02-15 21:00:00,0.0,1011.75,0.0,96.48333333,-0.831416667,0.288333333,238.046736 +2015-02-15 22:00:00,0.0,1012.0583330000001,0.0,97.79166667,-1.351666667,0.15225,238.04743599999998 +2015-02-15 23:00:00,0.0,1012.1291669999999,0.0,99.83333333,-2.390666667,0.120333333,238.04743599999998 +2015-02-16 00:00:00,0.0,1012.25,0.0,100.0,-3.2235,0.052583332999999996,238.04776933333332 +2015-02-16 01:00:00,0.0,1012.3375,0.0,100.0,-3.845416667,0.028583333,238.04845266666666 +2015-02-16 02:00:00,0.0,1012.670833,0.0,100.0,-3.6525,0.0125,238.04811933333335 +2015-02-16 03:00:00,0.0,1012.9333330000001,0.0,100.0,-4.156416667,0.030666667,238.04811933333335 +2015-02-16 04:00:00,0.0,1013.2375,0.0,100.0,-4.384083333,0.00275,238.04911933333335 +2015-02-16 05:00:00,0.0,1013.733333,0.0,100.0,-2.858666667,0.13016666699999999,238.049786 +2015-02-16 06:00:00,0.0,1013.7458330000001,0.0,100.0,-2.0945,0.11808333300000001,238.04945266666667 +2015-02-16 07:00:00,0.0,1013.8791669999999,1.438916667,100.0,-1.885,0.012833333,238.05013600000004 +2015-02-16 08:00:00,0.0,1014.341667,33.04,100.0,-1.946916667,0.10875,238.050836 +2015-02-16 09:00:00,0.0,1014.583333,89.29833333,99.425,-0.799,0.15133333300000001,238.05153599999997 +2015-02-16 10:00:00,0.0,1014.758333,155.1166667,96.05,1.106583333,0.2,238.050486 +2015-02-16 11:00:00,0.0,1015.0375,176.16666669999998,91.34166667,2.2430000000000003,0.521416667,238.051186 +2015-02-16 12:00:00,0.0,1014.9,143.6083333,88.75833333,2.4933333330000003,0.8390833329999999,238.051886 +2015-02-16 13:00:00,0.0,1014.741667,113.41666670000001,88.08333333,2.9805,1.097916667,238.051886 +2015-02-16 14:00:00,0.0,1014.429167,80.62583333,88.05,2.99075,1.3295,238.05153599999997 +2015-02-16 15:00:00,0.0,1014.354167,43.11,89.11666667,2.68825,1.4611666669999999,238.051186 +2015-02-16 16:00:00,0.0,1014.583333,17.29083333,90.725,2.4306666669999997,1.50725,238.051886 +2015-02-16 17:00:00,0.0,1014.8375,3.717666667,91.575,2.215,1.40325,238.051886 +2015-02-16 18:00:00,0.0,1015.204167,0.02725,91.74166667,2.0459166669999997,1.053,238.051886 +2015-02-16 19:00:00,0.0,1015.5625,0.0,91.69166667,2.059333333,0.695083333,238.05288599999997 +2015-02-16 20:00:00,0.0,1016.0,0.0,92.51666667,2.0211666669999997,0.7979166670000001,238.05355266666663 +2015-02-16 21:00:00,0.0,1016.3708330000001,0.0,92.65833333,1.959,0.736,238.05388599999995 +2015-02-16 22:00:00,0.0,1016.795833,0.0,92.78333333,1.757333333,0.49875,238.05321933333332 +2015-02-16 23:00:00,0.0,1017.0583330000001,0.0,92.775,1.6499166669999998,0.5013333329999999,238.05423599999997 +2015-02-17 00:00:00,0.0,1017.616667,0.0,93.35833333,1.4113333330000002,0.539083333,238.05458599999997 +2015-02-17 01:00:00,0.0,1018.079167,0.0,93.8,1.329416667,0.41675,238.054936 +2015-02-17 02:00:00,0.0,1018.616667,0.0,93.36666667,1.094416667,0.136,238.054586 +2015-02-17 03:00:00,0.0,1018.766667,0.0,93.81666667,1.08875,0.177,238.054936 +2015-02-17 04:00:00,0.0,1019.4416669999999,0.0,94.15833333,1.204,0.43158333299999996,238.055986 +2015-02-17 05:00:00,0.0,1020.0375,0.0,94.83333333,1.12975,0.70975,238.05665266666665 +2015-02-17 06:00:00,0.0,1021.029167,0.0,95.71666667,0.98425,0.7685833329999999,238.05665266666668 +2015-02-17 07:00:00,0.0,1022.1833330000001,0.494666667,96.78333333,0.654166667,0.922,238.05835266666665 +2015-02-17 08:00:00,0.0,1023.320833,7.079666667000001,97.50833333,0.29733333300000003,1.064083333,238.05833600000003 +2015-02-17 09:00:00,0.0,1024.529167,28.63583333,94.65,0.43241666700000003,0.97325,238.059386 +2015-02-17 10:00:00,0.0,1025.7125,46.59583333,93.175,1.02825,1.534083333,238.059386 +2015-02-17 11:00:00,0.0,1026.666667,75.195,91.4,1.4625833330000002,1.507333333,238.059036 +2015-02-17 12:00:00,0.0,1027.266667,116.4,87.71666667,2.24525,1.204833333,238.059036 +2015-02-17 13:00:00,0.0,1027.633333,154.29166669999998,85.6,3.020083333,0.92875,238.06008599999998 +2015-02-17 14:00:00,0.0,1027.866667,176.025,84.25,4.508916667,0.5025,238.059386 +2015-02-17 15:00:00,0.0,1028.504167,89.5875,84.0,4.706166667,1.092166667,238.06008599999998 +2015-02-17 16:00:00,0.0,1028.9875,41.8375,84.975,4.725083333,0.642916667,238.06041933333333 +2015-02-17 17:00:00,0.0,1029.7125,5.859583333,89.1,4.426833333,0.535666667,238.06141933333333 +2015-02-17 18:00:00,0.0,1030.654167,0.06433333299999999,91.4,3.816833333,0.3345,238.0621193333333 +2015-02-17 19:00:00,0.0,1031.625,0.0,91.1,3.808583333,0.299583333,238.06348599999998 +2015-02-17 20:00:00,0.0,1032.579167,0.0,92.93333333,3.576166667,0.613,238.06243599999996 +2015-02-17 21:00:00,0.0,1033.304167,0.0,94.68333333,3.321916667,0.317833333,238.06243599999996 +2015-02-17 22:00:00,0.0,1033.675,0.0,96.18333333,2.9971666669999997,0.26899999999999996,238.06348599999998 +2015-02-17 23:00:00,0.0,1033.891667,0.0,97.28333333,2.9755833330000003,0.24608333300000002,238.063486 +2015-02-18 00:00:00,0.0,1034.408333,0.0,97.34166667,3.030916667,0.215,238.06418599999998 +2015-02-18 01:00:00,0.0,1034.541667,0.0,97.475,3.0716666669999997,0.166416667,238.06418599999998 +2015-02-18 02:00:00,0.0,1034.5,0.0,98.90833333,3.042416667,0.113666667,238.06418599999998 +2015-02-18 03:00:00,0.0,1034.441667,0.0,99.64166667,2.9285,0.027999999999999997,238.06418599999998 +2015-02-18 04:00:00,0.0,1034.616667,0.0,99.60833333,2.898583333,0.025666667,238.06453599999998 +2015-02-18 05:00:00,0.0,1034.666667,0.0,99.89166667,2.6605,0.007666666999999999,238.065236 +2015-02-18 06:00:00,0.0,1034.708333,0.0,100.0,2.54725,0.179666667,238.065936 +2015-02-18 07:00:00,0.0,1034.8625,2.182666667,100.0,2.486333333,0.09116666699999999,238.065936 +2015-02-18 08:00:00,0.0,1035.3125,20.3925,99.93333333,2.75025,0.10266666699999999,238.066286 +2015-02-18 09:00:00,0.0,1035.895833,41.73333333,98.00833333,3.3153333330000003,0.29733333300000003,238.066286 +2015-02-18 10:00:00,0.0,1035.9375,87.13416667,94.99166667,4.053333333,0.353916667,238.066286 +2015-02-18 11:00:00,0.0,1035.6375,149.7416667,88.63333333,4.7665,0.71175,238.06695266666665 +2015-02-18 12:00:00,0.0,1035.141667,201.4,86.41666667,6.03275,1.04725,238.0666193333333 +2015-02-18 13:00:00,0.0,1034.341667,230.35,82.1125,6.20775,1.4898333330000002,238.066286 +2015-02-18 14:00:00,0.0,1033.741667,110.23333329999998,81.06,5.91025,1.6034166669999999,238.066286 +2015-02-18 15:00:00,0.0,1033.279167,74.10583333,77.49083333,5.5445,1.279666667,238.066286 +2015-02-18 16:00:00,0.0,1032.908333,39.755,78.46333333,4.89075,1.565666667,238.066286 +2015-02-18 17:00:00,0.0,1032.408333,11.85308333,80.6775,4.365333333,1.093333333,238.0666193333333 +2015-02-18 18:00:00,0.0,1032.258333,0.39075,82.3,3.930333333,1.3460833330000002,238.06695266666665 +2015-02-18 19:00:00,0.0,1032.229167,0.0,85.56666667,3.124833333,1.092833333,238.0666193333333 +2015-02-18 20:00:00,0.0,1032.05,0.0,93.78333333,1.9140000000000001,1.4715,238.0666193333333 +2015-02-18 21:00:00,0.0,1031.5,0.0,98.18333333,-0.081666667,1.623083333,238.06795266666666 +2015-02-18 22:00:00,0.0,1031.233333,0.0,99.75,-1.381833333,0.68975,238.06828599999997 +2015-02-18 23:00:00,0.0,1030.841667,0.0,100.0,-1.38175,0.82,238.06828599999997 +2015-02-19 00:00:00,0.0,1030.425,0.0,100.0,-0.95925,1.119666667,238.06828599999997 +2015-02-19 01:00:00,0.0,1030.008333,0.0,100.0,-0.307666667,1.05975,238.06828599999997 +2015-02-19 02:00:00,0.0,1029.85,0.0,100.0,-0.7270833329999999,0.140833333,238.06828599999997 +2015-02-19 03:00:00,0.0,1029.35,0.0,100.0,-0.099,0.233833333,238.06828599999997 +2015-02-19 04:00:00,0.0,1028.841667,0.0,97.35833333,0.3225,0.25425,238.06828599999997 +2015-02-19 05:00:00,0.0,1028.404167,0.0,95.25833333,0.293666667,0.37725,238.06761933333334 +2015-02-19 06:00:00,0.0,1027.891667,0.0,95.00833333,0.195583333,0.59225,238.066286 +2015-02-19 07:00:00,0.0,1027.379167,1.014,95.33333333,-0.0615,1.384416667,238.066286 +2015-02-19 08:00:00,0.0,1027.508333,12.10016667,95.50833333,-0.19675,1.69075,238.066286 +2015-02-19 09:00:00,0.0,1027.604167,41.18833333,93.85833333,0.040416667,1.038333333,238.0666193333333 +2015-02-19 10:00:00,0.0,1027.091667,77.02166667,91.55833333,0.46883333299999996,1.76475,238.0666193333333 +2015-02-19 11:00:00,0.0,1026.645833,107.54166670000001,90.475,0.8490000000000001,1.97375,238.066286 +2015-02-19 12:00:00,0.0,1025.979167,129.8333333,88.20833333,1.368416667,2.2328333330000003,238.066286 +2015-02-19 13:00:00,0.0,1024.875,144.3583333,85.94166667,1.7029166669999998,2.4780833330000003,238.066286 +2015-02-19 14:00:00,0.0,1023.958333,102.7175,86.73333333,1.838416667,2.421333333,238.066286 +2015-02-19 15:00:00,0.0,1023.291667,54.60166667,88.45833333,1.7361666669999998,1.77475,238.06558600000002 +2015-02-19 16:00:00,0.0,1022.266667,38.93833333,88.15833333,1.6121666669999999,2.3565,238.06418599999998 +2015-02-19 17:00:00,0.0,1021.5583330000001,8.210833333,88.225,1.02425,2.135166667,238.06418599999998 +2015-02-19 18:00:00,0.0,1021.275,0.141,89.76666667,0.9288333329999999,1.293166667,238.06418599999998 +2015-02-19 19:00:00,0.0,1021.145833,0.0,89.63333333,0.806666667,1.065416667,238.06418599999998 +2015-02-19 20:00:00,0.0,1020.925,0.0,90.675,0.7244166670000001,1.279083333,238.065236 +2015-02-19 21:00:00,0.0,1020.391667,0.0,90.44166667,0.560916667,1.1295,238.065936 +2015-02-19 22:00:00,0.0,1019.733333,0.0,90.125,0.33,1.005416667,238.065236 +2015-02-19 23:00:00,0.0,1018.904167,0.0,92.14166667,-0.22241666699999998,1.0989166670000001,238.065936 +2015-02-20 00:00:00,0.0,1018.375,0.0,96.29166667,-0.8198333329999999,0.515333333,238.066286 +2015-02-20 01:00:00,0.0,1017.3083330000001,0.0,94.38333333,-0.065,1.297166667,238.065236 +2015-02-20 02:00:00,0.0,1016.208333,0.0,94.30833333,0.768,2.482166667,238.065236 +2015-02-20 03:00:00,0.0,1015.479167,0.0,92.775,1.17625,3.0825,238.06418599999998 +2015-02-20 04:00:00,0.0,1014.466667,0.0,88.69166667,1.4804166669999999,3.182666667,238.06418599999998 +2015-02-20 05:00:00,0.0,1013.6208330000001,0.0,86.91666667,1.8975,2.021416667,238.062786 +2015-02-20 06:00:00,0.0,1012.625,0.0,87.46666667,1.673416667,1.54425,238.06243599999996 +2015-02-20 07:00:00,0.0,1012.154167,17.93333333,89.575,1.235333333,2.031166667,238.062086 +2015-02-20 08:00:00,0.0,1011.966667,47.47666667,85.85833333,2.344,2.21225,238.062086 +2015-02-20 09:00:00,0.0,1011.4375,61.75416667,85.13333333,3.30925,1.597833333,238.06243599999996 +2015-02-20 10:00:00,0.0,1010.720833,194.625,83.275,6.66825,2.61875,238.062086 +2015-02-20 11:00:00,0.0,1009.895833,186.80833330000002,81.23666667,7.213333333,3.031,238.062086 +2015-02-20 12:00:00,0.0,1008.891667,307.96666669999996,77.1875,8.793333333,2.670416667,238.06108599999996 +2015-02-20 13:00:00,0.0,1007.883333,250.06666669999998,75.33166667,8.721666667000001,3.281666667,238.06008599999998 +2015-02-20 14:00:00,0.0,1006.6,86.3,74.87833333,9.395,2.997666667,238.06041933333333 +2015-02-20 15:00:00,0.0,1005.7541669999999,41.7625,73.82,9.416666667000001,2.0499166669999997,238.06008599999998 +2015-02-20 16:00:00,0.0,1004.6,31.43083333,71.9175,9.535833333,1.8599166669999998,238.06041933333333 +2015-02-20 17:00:00,0.0,1003.4416669999999,13.55783333,69.4425,9.101833333,1.4240000000000002,238.06008599999998 +2015-02-20 18:00:00,0.0,1002.525,0.08775,68.06,8.097999999999999,1.09675,238.06008599999998 +2015-02-20 19:00:00,0.0,1001.725,0.0,63.13,8.6075,2.318,238.06041933333333 +2015-02-20 20:00:00,0.0,1000.645833,0.0,62.35,8.4275,2.5878333330000003,238.06008599999998 +2015-02-20 21:00:00,0.0,999.8083332999998,0.0,61.00583333,8.576666667000001,2.3785,238.06008599999998 +2015-02-20 22:00:00,0.0,998.9708332999999,0.0,62.5025,8.49,1.575666667,238.05973599999996 +2015-02-20 23:00:00,0.0,997.6875,0.0,64.62916667,9.380833333,1.7919999999999998,238.059386 +2015-02-21 00:00:00,0.0,996.5333332999999,0.0,65.5625,9.068,1.668916667,238.05765266666666 +2015-02-21 01:00:00,0.0,995.4916667000001,0.0,64.2875,7.722916667000001,1.856416667,238.058686 +2015-02-21 02:00:00,0.0,994.4666667000001,0.0,68.1425,8.19425,2.278166667,238.057986 +2015-02-21 03:00:00,0.0,993.6333332999999,0.0,76.26083333,8.139416667,3.395333333,238.05731933333334 +2015-02-21 04:00:00,0.0,992.825,0.0,80.73916667,7.509333333,2.748583333,238.05731933333334 +2015-02-21 05:00:00,0.0,992.0875,0.0,82.49166667,7.221666667,2.7665833330000003,238.05698600000002 +2015-02-21 06:00:00,0.0,991.5208332999998,0.0,84.28333333,6.894666667,2.877416667,238.057986 +2015-02-21 07:00:00,0.0,991.1541667000001,2.67825,89.21666667,6.283833333,2.654666667,238.05731933333334 +2015-02-21 08:00:00,0.0,991.4125,15.12083333,90.38333333,6.195666667,2.3064166669999997,238.057986 +2015-02-21 09:00:00,12.46708896,992.4958332999998,61.4625,93.56666667,5.025916667,2.0325833330000003,238.057986 +2015-02-21 10:00:00,0.0,993.1083332999999,82.6175,91.39166667,4.463666667,1.3626666669999998,238.05833600000003 +2015-02-21 11:00:00,0.0,993.6958332999999,109.17416670000001,89.6,4.4968333330000005,1.6185833330000001,238.05833599999997 +2015-02-21 12:00:00,0.0,994.1416667000001,200.6,84.54166667,5.05725,1.9825,238.059036 +2015-02-21 13:00:00,0.0,994.2458332999998,154.1083333,79.6875,5.636333333,2.115333333,238.059386 +2015-02-21 14:00:00,0.0,994.5458332999999,108.7325,79.24833333,5.868416667000001,1.326416667,238.059386 +2015-02-21 15:00:00,0.0,994.7541667000002,66.22416667,83.51666667,5.1363333330000005,1.49675,238.06040266666665 +2015-02-21 16:00:00,0.0,995.075,57.1475,84.75,4.810833333,1.258416667,238.06108599999996 +2015-02-21 17:00:00,2.651098008,995.4791667000002,13.52758333,89.64166667,4.17625,0.9115,238.0614193333333 +2015-02-21 18:00:00,2.3865511440000002,996.1041667000002,0.355,96.29166667,2.3729166669999997,0.138333333,238.06243600000002 +2015-02-21 19:00:00,0.0,996.3791667000002,0.0,100.0,1.498583333,0.345,238.062086 +2015-02-21 20:00:00,0.0,996.6666667000002,0.0,99.79166667,0.682583333,0.040416667,238.063836 +2015-02-21 21:00:00,0.0,997.2416667000001,0.0,93.0,0.991833333,0.487416667,238.063486 +2015-02-21 22:00:00,0.0,997.9416667000002,0.0,93.925,0.4765,0.230416667,238.063836 +2015-02-21 23:00:00,0.0,998.15,0.0,99.14166667,-0.42825,0.083083333,238.06418599999998 +2015-02-22 00:00:00,0.0,998.7375,0.0,100.0,-1.0985,0.142666667,238.066286 +2015-02-22 01:00:00,0.0,999.175,0.0,100.0,-1.325916667,0.146083333,238.066286 +2015-02-22 02:00:00,0.0,999.5,0.0,100.0,-1.4250833330000001,0.10058333300000001,238.0666193333333 +2015-02-22 03:00:00,0.0,1000.333333,0.0,100.0,-1.38775,0.051916667,238.06728599999997 +2015-02-22 04:00:00,0.0,1001.175,0.0,100.0,-1.01475,0.03875,238.06828599999997 +2015-02-22 05:00:00,0.0,1002.016667,0.0,100.0,-0.32858333300000003,0.047333333,238.06795266666666 +2015-02-22 06:00:00,0.0,1002.5583330000001,0.0,100.0,0.37875,0.34825,238.06968599999996 +2015-02-22 07:00:00,0.0,1003.2,1.7031666669999999,99.99166667,0.8121666670000001,0.518,238.07038599999996 +2015-02-22 08:00:00,0.0,1004.2875,33.5825,99.60833333,1.156666667,0.79775,238.07038599999996 +2015-02-22 09:00:00,0.0,1005.108333,86.25416667,96.38333333,1.979,1.111916667,238.07038599999996 +2015-02-22 10:00:00,0.0,1005.7,146.6525,83.98333333,3.233083333,0.873,238.07105266666667 +2015-02-22 11:00:00,0.0,1005.9875,309.4583333,76.78666667,4.582333333,1.285583333,238.071386 +2015-02-22 12:00:00,0.0,1006.1125,308.2333333,69.86833333,5.926583333,1.578,238.07171933333333 +2015-02-22 13:00:00,0.0,1005.920833,122.65583329999998,74.1625,5.3505,1.5368333330000001,238.07205266666668 +2015-02-22 14:00:00,0.0,1005.375,195.55833330000002,69.46666667,5.88075,1.689416667,238.07238600000002 +2015-02-22 15:00:00,0.0,1005.0666669999999,192.0658333,64.33333333,6.9066666670000005,1.263416667,238.071386 +2015-02-22 16:00:00,0.0,1004.9125,125.82166670000001,64.66,6.024666667000001,1.240583333,238.07171933333336 +2015-02-22 17:00:00,0.0,1004.795833,29.57783333,69.27333333,4.303083333,0.41100000000000003,238.07238600000002 +2015-02-22 18:00:00,0.0,1004.6875,0.33925,85.0025,2.7408333330000003,1.265916667,238.07343600000002 +2015-02-22 19:00:00,0.0,1004.470833,0.0,82.26666667,1.587083333,1.8859166669999998,238.07448599999998 +2015-02-22 20:00:00,0.0,1004.420833,0.0,83.99166667,0.962833333,2.364416667,238.07448599999998 +2015-02-22 21:00:00,0.0,1003.570833,0.0,89.11666667,0.337083333,2.107583333,238.07448599999998 +2015-02-22 22:00:00,0.0,1002.804167,0.0,91.275,-0.6313333329999999,1.04625,238.07413599999998 +2015-02-22 23:00:00,0.0,1001.795833,0.0,96.51666667,-1.430666667,0.764166667,238.07448599999998 +2015-02-23 00:00:00,0.0,1000.920833,0.0,99.54166667,-2.17275,0.225916667,238.07448599999998 +2015-02-23 01:00:00,0.0,999.7625,0.0,99.76666667,-1.5833333330000001,0.42466666700000005,238.07448599999998 +2015-02-23 02:00:00,0.0,998.6666667000002,0.0,79.50083333,0.671416667,0.700333333,238.072736 +2015-02-23 03:00:00,0.0,997.7458332999998,0.0,78.66083333,1.6580000000000001,2.183833333,238.072736 +2015-02-23 04:00:00,0.0,996.5291667000001,0.0,74.72,2.3311666669999997,3.51325,238.07238600000002 +2015-02-23 05:00:00,0.0,995.8291667000001,0.0,76.3375,2.600166667,1.4179166669999999,238.07205266666665 +2015-02-23 06:00:00,0.0,995.1875,0.0,96.375,1.3753333330000002,1.012166667,238.07105266666667 +2015-02-23 07:00:00,0.0,994.5041667000002,1.273,100.0,0.598333333,0.829916667,238.07038599999996 +2015-02-23 08:00:00,0.0,993.9208332999999,5.846083332999999,100.0,0.652083333,0.783083333,238.0707193333333 +2015-02-23 09:00:00,2.500532352,993.8041667000001,13.91066667,100.0,0.746833333,0.765083333,238.07038599999996 +2015-02-23 10:00:00,0.0,993.5833332999998,26.275,100.0,0.900416667,0.586,238.07038599999996 +2015-02-23 11:00:00,25.38431117,993.175,38.83916667,100.0,1.10575,0.92925,238.06518599999995 +2015-02-23 12:00:00,25.40819808,992.7333332999999,47.78166667,100.0,1.243833333,0.950416667,238.06453599999998 +2015-02-23 13:00:00,23.43120115,992.2541667000002,60.43166667,100.0,1.190833333,1.3113333329999999,238.06660266666665 +2015-02-23 14:00:00,25.78778916,992.05,88.02916667,100.0,1.627833333,1.213416667,238.07035266666665 +2015-02-23 15:00:00,14.86734458,992.3291667000001,77.91916667,97.76666667,1.920166667,0.581,238.065936 +2015-02-23 16:00:00,15.564518300000001,992.1875,63.1,98.025,1.8385,1.081583333,238.06558600000002 +2015-02-23 17:00:00,9.75466308,992.6208332999998,12.56341667,97.9,1.7065,0.26616666699999997,238.06178599999998 +2015-02-23 18:00:00,4.853802024,993.1208332999998,0.11791666699999999,99.90833333,1.463583333,0.191,238.05526933333329 +2015-02-23 19:00:00,2.462639592,993.4416667000002,0.0,100.0,1.210333333,0.203916667,238.05151933333332 +2015-02-23 20:00:00,2.4384845040000003,993.7458332999998,0.0,100.0,1.080333333,0.24991666699999998,238.04810266666664 +2015-02-23 21:00:00,4.853398272,994.1875,0.0,100.0,1.110416667,0.169833333,238.050486 +2015-02-23 22:00:00,0.0,994.3708332999998,0.0,100.0,0.838916667,0.169666667,238.04776933333332 +2015-02-23 23:00:00,2.3865511440000002,994.65,0.0,100.0,0.67375,0.10158333300000001,238.05015266666666 +2015-02-24 00:00:00,0.0,995.1875,0.0,97.78333333,0.35266666700000004,0.053833333,238.050836 +2015-02-24 01:00:00,0.0,995.5541667000001,0.0,95.38333333,0.8886666670000001,0.11441666699999999,238.0501526666667 +2015-02-24 02:00:00,0.0,996.0125,0.0,96.15833333,1.8481666669999999,0.639916667,238.0460526666666 +2015-02-24 03:00:00,0.0,996.4083332999999,0.0,91.59166667,0.8936666670000001,0.708916667,238.047086 +2015-02-24 04:00:00,0.0,997.1083332999999,0.0,91.15,1.242416667,0.8255,238.049786 +2015-02-24 05:00:00,5.505133896,997.6166667000001,0.0,92.56666667,2.718833333,1.4298333330000002,238.04570266666667 +2015-02-24 06:00:00,0.0,997.8541667000002,0.0,92.66666667,1.900166667,1.199,238.041936 +2015-02-24 07:00:00,0.0,998.325,4.1216666669999995,92.025,1.55125,1.6075833330000002,238.03848599999995 +2015-02-24 08:00:00,2.49804792,999.475,34.67333333,89.35833333,1.99375,1.8953333330000002,238.047086 +2015-02-24 09:00:00,11.81616142,999.5916667000001,116.66,85.15,3.6519999999999997,1.8555833330000002,238.05735266666667 +2015-02-24 10:00:00,17.818497100000002,1000.329167,255.4,81.98333333,4.709416667,1.84775,238.06558600000002 +2015-02-24 11:00:00,0.0,1001.025,270.225,78.36333333,5.340666667,2.1589166669999997,238.05766933333334 +2015-02-24 12:00:00,0.0,1001.695833,146.5916667,77.39916667,5.7961666670000005,2.21275,238.05561933333334 +2015-02-24 13:00:00,0.0,1002.2875,87.47916667,82.0025,5.085083333,2.80925,238.04980266666666 +2015-02-24 14:00:00,0.0,1002.904167,77.17916667,85.38333333,5.14475,2.441083333,238.04640266666664 +2015-02-24 15:00:00,0.0,1003.5,60.75916667,81.99166667,6.09375,1.3926666669999999,238.04810266666664 +2015-02-24 16:00:00,2.9601943680000002,1004.141667,34.035,83.85,5.765166667000001,1.3895,238.04158600000002 +2015-02-24 17:00:00,0.0,1005.116667,13.33141667,86.74166667,5.43925,1.42875,238.03781933333332 +2015-02-24 18:00:00,0.0,1006.0375,0.547166667,90.34166667,4.51,1.7684166669999999,238.03130266666665 +2015-02-24 19:00:00,0.0,1007.1625,0.0,89.96666667,4.408166667,1.44925,238.03096933333333 +2015-02-24 20:00:00,0.0,1007.85,0.0,92.45,3.63725,1.5894166669999998,238.02136933333335 +2015-02-24 21:00:00,0.0,1008.3166669999999,0.0,96.56666667,1.980833333,0.691666667,238.01725266666668 +2015-02-24 22:00:00,0.0,1008.758333,0.0,100.0,0.763083333,0.145,238.00973599999998 +2015-02-24 23:00:00,0.0,1008.8875,0.0,100.0,-0.746,0.057999999999999996,238.00698599999998 +2015-02-25 00:00:00,0.0,1009.329167,0.0,96.79166667,-1.4060833330000002,0.276,238.018286 +2015-02-25 01:00:00,0.0,1009.8791669999999,0.0,99.10833333,-1.5490833330000002,0.15766666699999998,238.0145193333333 +2015-02-25 02:00:00,0.0,1010.383333,0.0,99.2,-1.468833333,0.22108333300000002,238.00938599999995 +2015-02-25 03:00:00,0.0,1010.633333,0.0,99.56666667,-1.936083333,0.048166667,238.01451933333337 +2015-02-25 04:00:00,0.0,1011.2541669999999,0.0,96.31666667,-1.307,0.029666667,238.023086 +2015-02-25 05:00:00,0.0,1011.758333,0.0,96.375,-0.6213333329999999,0.024666667000000003,238.025186 +2015-02-25 06:00:00,0.0,1011.9375,0.0,98.975,-1.0535,0.31025,238.02310266666666 +2015-02-25 07:00:00,0.0,1012.108333,5.028333333,100.0,-1.7495,0.234333333,238.0145193333333 +2015-02-25 08:00:00,0.0,1012.725,32.4775,100.0,-0.782,0.320833333,238.01760266666668 +2015-02-25 09:00:00,0.0,1013.145833,109.66666670000001,100.0,0.26716666699999997,0.45141666700000005,238.03850266666666 +2015-02-25 10:00:00,0.0,1013.541667,200.1333333,100.0,1.05425,1.049666667,238.053236 +2015-02-25 11:00:00,0.0,1013.733333,308.775,99.13333333,1.8135,0.923666667,238.05698599999997 +2015-02-25 12:00:00,0.0,1013.608333,190.8275,97.85,3.242,1.5301666669999998,238.04878599999998 +2015-02-25 13:00:00,0.0,1013.3625,222.2833333,90.4,5.97375,1.05025,238.04501933333333 +2015-02-25 14:00:00,0.0,1012.983333,170.30583330000002,85.31333333,7.69125,0.849833333,238.04603599999996 +2015-02-25 15:00:00,0.0,1013.008333,203.05833330000002,62.35916667,8.116416667000001,1.50675,238.04603599999996 +2015-02-25 16:00:00,0.0,1012.920833,92.68166667,66.3425,7.988333333,0.934416667,238.04708599999995 +2015-02-25 17:00:00,0.0,1013.295833,19.38916667,79.1625,6.675916667,1.202833333,238.04811933333335 +2015-02-25 18:00:00,0.0,1013.658333,0.90275,86.975,3.875833333,0.36791666700000003,238.04945266666667 +2015-02-25 19:00:00,0.0,1014.25,0.0,96.36666667,2.631916667,0.156,238.05013599999998 +2015-02-25 20:00:00,0.0,1014.6916669999999,0.0,90.55,2.61925,0.28475,238.050836 +2015-02-25 21:00:00,0.0,1015.0875,0.0,94.20833333,4.212166667,0.986916667,238.051886 +2015-02-25 22:00:00,2.850651144,1015.395833,0.0,93.5,3.807416667,0.737583333,238.05221933333334 +2015-02-25 23:00:00,2.409616224,1015.270833,0.0,95.59166667,3.74175,0.739583333,238.05255266666666 +2015-02-26 00:00:00,4.9337604960000006,1015.391667,0.0,97.39166667,3.268166667,0.29975,238.05388599999995 +2015-02-26 01:00:00,0.0,1015.508333,0.0,100.0,3.0173333330000003,0.305166667,238.05423599999997 +2015-02-26 02:00:00,0.0,1015.3708330000001,0.0,100.0,2.7818333330000002,0.14925,238.054936 +2015-02-26 03:00:00,2.4050227680000003,1015.2541669999999,0.0,100.0,2.79825,0.017666667,238.055286 +2015-02-26 04:00:00,0.0,1015.170833,0.0,100.0,2.743666667,0.011916666999999999,238.055986 +2015-02-26 05:00:00,0.0,1015.2458330000001,0.0,100.0,2.80875,0.18,238.055986 +2015-02-26 06:00:00,0.0,1015.3,0.0,100.0,2.62975,0.272083333,238.055986 +2015-02-26 07:00:00,0.0,1015.266667,3.062916667,100.0,2.4579166669999997,0.143833333,238.057986 +2015-02-26 08:00:00,0.0,1015.470833,26.54,100.0,2.752416667,0.203083333,238.057986 +2015-02-26 09:00:00,0.0,1015.3166669999999,85.5425,99.03333333,4.02475,0.916333333,238.057986 +2015-02-26 10:00:00,0.0,1014.75,165.45833330000002,90.38333333,5.4044166670000005,1.8295833330000002,238.05765266666666 +2015-02-26 11:00:00,0.0,1014.5625,270.4,84.76666667,6.920083332999999,2.711416667,238.05631933333333 +2015-02-26 12:00:00,0.0,1014.229167,184.0333333,82.94916667,7.054666667,3.12775,238.05698600000002 +2015-02-26 13:00:00,0.0,1013.4375,118.9575,79.45166667,7.556,3.380083333,238.05631933333333 +2015-02-26 14:00:00,0.0,1012.8166669999999,145.2675,78.73916667,7.630583333,3.477666667,238.05665266666665 +2015-02-26 15:00:00,0.0,1012.0375,41.9375,81.8375,7.0076666670000005,1.9284166669999998,238.05731933333334 +2015-02-26 16:00:00,0.0,1011.425,36.13833333,79.6075,7.020583332999999,0.9338333329999999,238.05631933333333 +2015-02-26 17:00:00,0.0,1010.654167,16.8065,77.56916667,6.74225,1.342166667,238.05698600000002 +2015-02-26 18:00:00,0.0,1010.320833,0.5631666670000001,91.6,5.28125,0.134833333,238.05833599999997 +2015-02-26 19:00:00,0.0,1009.554167,0.0,95.525,4.605333333,0.444333333,238.05833599999997 +2015-02-26 20:00:00,0.0,1008.679167,0.0,96.675,3.99725,1.142916667,238.05833599999997 +2015-02-26 21:00:00,0.0,1007.916667,0.0,96.79166667,4.115666667,1.127916667,238.05833599999997 +2015-02-26 22:00:00,0.0,1007.283333,0.0,94.01666667,4.406083333,1.74,238.05833600000003 +2015-02-26 23:00:00,0.0,1006.583333,0.0,73.43916667,4.5405,1.7908333330000001,238.057986 +2015-02-27 00:00:00,0.0,1006.054167,0.0,69.69333333,4.658333333,1.865833333,238.057986 +2015-02-27 01:00:00,0.0,1005.345833,0.0,79.04666667,4.6595,1.531,238.057986 +2015-02-27 02:00:00,0.0,1004.85,0.0,90.08333333,4.0505833330000005,0.063166667,238.05833600000003 +2015-02-27 03:00:00,0.0,1004.216667,0.0,96.29166667,3.535416667,0.24833333300000002,238.057986 +2015-02-27 04:00:00,12.67492711,1003.75,0.0,99.43333333,3.3625,0.701666667,238.057986 +2015-02-27 05:00:00,17.81598682,1003.65,0.0,99.65833333,3.249833333,0.704583333,238.057986 +2015-02-27 06:00:00,19.909272100000003,1003.720833,0.0,100.0,2.814666667,0.39225,238.055986 +2015-02-27 07:00:00,28.68143362,1004.2,3.070083333,100.0,2.767416667,0.877833333,238.05563599999996 +2015-02-27 08:00:00,28.782303600000002,1004.8875,20.34666667,100.0,2.8723302360000003,0.960333333,238.04980266666664 +2015-02-27 09:00:00,13.01025595,1005.591667,47.66083333,100.0,3.160666667,0.883166667,238.042286 +2015-02-27 10:00:00,13.11650796,1006.325,69.41833333,99.93333333,3.067333333,0.829333333,238.03370266666664 +2015-02-27 11:00:00,7.752711696,1007.054167,82.41416667,100.0,3.074833333,0.892,238.023086 +2015-02-27 12:00:00,0.0,1007.575,139.025,97.58333333,3.8650833330000003,1.0125,238.0145193333333 +2015-02-27 13:00:00,5.983523448,1008.095833,99.22333333,95.36666667,4.773833333,2.075166667,238.00596933333335 +2015-02-27 14:00:00,18.21093295,1008.670833,93.82,94.64166667,4.89825,3.1414166669999997,238.000136 +2015-02-27 15:00:00,3.6864094080000003,1009.354167,59.55,94.2,4.98475,3.0439999999999996,237.99636933333332 +2015-02-27 16:00:00,3.4103022239999996,1010.5,34.21333333,94.09166667,4.617,3.406416667,237.99156933333333 +2015-02-27 17:00:00,5.916308256000001,1011.3,11.31325,95.275,4.23475,2.03875,237.98713599999996 +2015-02-27 18:00:00,0.0,1012.1916669999999,0.6445,94.64166667,4.101,1.312083333,237.98475266666662 +2015-02-27 19:00:00,0.0,1012.954167,0.0,95.45833333,3.9043333330000003,0.914333333,237.983386 +2015-02-27 20:00:00,0.0,1013.545833,0.0,96.13333333,3.610083333,0.544083333,237.980986 +2015-02-27 21:00:00,0.0,1014.195833,0.0,97.01666667,3.36425,0.709333333,237.98233599999995 +2015-02-27 22:00:00,0.0,1014.841667,0.0,94.45833333,3.596083333,0.917,237.98408599999996 +2015-02-27 23:00:00,0.0,1015.095833,0.0,95.08333333,3.2295,0.553583333,237.98441933333334 +2015-02-28 00:00:00,0.0,1015.525,0.0,97.04166667,1.901416667,0.38491666700000005,237.986436 +2015-02-28 01:00:00,0.0,1015.7,0.0,99.89166667,0.864166667,0.254916667,237.988186 +2015-02-28 02:00:00,0.0,1015.483333,0.0,100.0,0.10516666699999999,0.485333333,237.98985266666668 +2015-02-28 03:00:00,0.0,1015.633333,0.0,100.0,0.363416667,0.937416667,237.99088599999996 +2015-02-28 04:00:00,0.0,1015.825,0.0,99.875,0.03325,0.819583333,237.99261933333332 +2015-02-28 05:00:00,0.0,1015.791667,0.0,99.875,-0.441666667,0.522083333,237.994636 +2015-02-28 06:00:00,0.0,1015.8,0.009833333,100.0,-1.402166667,0.163916667,237.99705266666663 +2015-02-28 07:00:00,0.0,1016.0125,7.1175,100.0,-1.8860833330000002,0.16875,237.99873599999998 +2015-02-28 08:00:00,0.0,1016.2375,39.83583333,100.0,-0.6053333329999999,0.06875,238.00083600000002 +2015-02-28 09:00:00,0.0,1016.829167,62.36416667,100.0,0.18100000000000002,0.9238333329999999,238.003586 +2015-02-28 10:00:00,2.422434216,1016.6291669999999,139.6416667,100.0,0.7656666670000001,0.785666667,238.004586 +2015-02-28 11:00:00,0.0,1016.1625,265.09166669999996,96.4,2.094833333,0.9375,238.00633599999995 +2015-02-28 12:00:00,0.0,1015.470833,333.40833330000004,86.775,4.909666667,1.087416667,238.00668599999997 +2015-02-28 13:00:00,0.0,1014.595833,422.11666669999994,70.72666667,6.92925,1.022333333,238.00701933333332 +2015-02-28 14:00:00,0.0,1013.8,284.78333330000004,62.5725,7.584333332999999,1.7564166669999999,238.00868599999998 +2015-02-28 15:00:00,0.0,1013.295833,203.05833330000002,59.64416667,7.442583332999999,1.837083333,238.010086 +2015-02-28 16:00:00,0.0,1012.6125,161.97,56.36833333,7.37075,1.57775,238.01078600000002 +2015-02-28 17:00:00,0.0,1011.695833,35.56166667,63.605,5.70725,1.310833333,238.011786 +2015-02-28 18:00:00,0.0,1011.4333330000001,1.1915,78.52333333,2.3170833330000002,0.8665,238.01453599999994 +2015-02-28 19:00:00,0.0,1010.883333,0.0,94.35,0.5735,0.822666667,238.01655266666663 +2015-02-28 20:00:00,0.0,1010.470833,0.0,94.41666667,0.003833333,0.755166667,238.01758600000002 +2015-02-28 21:00:00,0.0,1009.8083330000001,0.0,94.73333333,0.048,0.688416667,238.018286 +2015-02-28 22:00:00,0.0,1008.833333,0.0,98.91666667,-1.2575,0.12558333300000002,238.018986 +2015-02-28 23:00:00,0.0,1007.75,0.0,98.74166667,-1.452083333,0.124083333,238.018986 +2015-01-03 00:00:00,0.0,1006.804167,0.0,75.83583333,-0.603916667,0.35333333299999997, +2015-01-03 01:00:00,0.0,1005.779167,0.0,70.5175,1.52575,1.035333333, +2015-01-03 02:00:00,0.0,1004.708333,0.0,71.2025,2.8605,2.506, +2015-01-03 03:00:00,0.0,1003.5041669999999,0.0,69.52333333,2.4485,1.8065, +2015-01-03 04:00:00,7.93785504,1002.325,0.0,84.60916667,2.52225,1.1786666670000001, +2015-01-03 05:00:00,27.23801923,1001.65,0.0,93.225,2.193,1.304166667, +2015-01-03 06:00:00,11.04765463,1001.0625,0.0,99.4,2.266833333,1.305833333, +2015-01-03 07:00:00,27.798499100000004,1000.7458330000001,1.117416667,99.44166667,2.443,2.08575, +2015-01-03 08:00:00,2.736297216,1000.708333,19.22175,96.375,2.593916667,1.7165, +2015-01-03 09:00:00,0.0,1000.3,54.71166667,96.3,3.95025,1.68475, +2015-01-03 10:00:00,0.0,1000.4875,42.74583333,97.33333333,5.306833333,1.7990000000000002, +2015-01-03 11:00:00,0.0,1000.6,88.66,96.51666667,5.971333333,1.0393333329999999, +2015-01-03 12:00:00,0.0,1000.258333,288.7333333,91.5,8.719,1.8446666669999998, +2015-01-03 13:00:00,0.0,999.7666667000001,219.18333330000002,86.925,10.075,2.7095833330000003, +2015-01-03 14:00:00,0.0,999.6041667000002,255.675,78.55083333,10.965,2.909333333, +2015-01-03 15:00:00,0.0,999.6375,168.43333330000002,65.02416667,11.18333333,2.7141666669999998, +2015-01-03 16:00:00,0.0,999.4208332999999,119.54916670000001,66.41416667,10.8,2.6438333330000003, +2015-01-03 17:00:00,13.47847435,999.4333332999998,18.31858333,77.48083333,9.965333333,2.67375, +2015-01-03 18:00:00,5.68396236,1000.0125,0.5795,94.65833333,6.87825,1.171083333, +2015-01-03 19:00:00,0.0,1000.133333,0.0,98.14166667,5.00025,0.7110833329999999, +2015-01-03 20:00:00,2.493844344,999.2458332999998,0.0,98.6,3.5180000000000002,0.242333333, +2015-01-03 21:00:00,0.0,998.875,0.0,84.44666667,2.4533333330000002,0.311166667, +2015-01-03 22:00:00,0.0,998.0416667000002,0.0,79.43916667,6.465666667000001,1.449583333, +2015-01-03 23:00:00,0.0,997.2083332999998,0.0,84.00833333,7.127916667,1.83025, +2015-02-03 00:00:00,0.0,995.7291667000002,0.0,85.2,7.874333332999999,1.646916667, +2015-02-03 01:00:00,0.0,994.9375,0.0,86.41666667,8.13875,2.204583333, +2015-02-03 02:00:00,15.15340891,994.0791667000001,0.0,91.35,7.656916667000001,2.030166667, +2015-02-03 03:00:00,50.51754098,994.9458332999999,0.0,89.80833333,6.826083333,3.3258333330000003, +2015-02-03 04:00:00,0.0,995.7541667000002,0.0,88.33333333,5.459166667000001,1.9609166669999998, +2015-02-03 05:00:00,0.0,996.1416667000001,0.0,88.10833333,5.402166667,1.4335, +2015-02-03 06:00:00,0.0,996.7208332999999,0.047,88.275,4.943833333,1.288166667, +2015-02-03 07:00:00,3.382306488,997.4791667000002,5.412083332999999,89.46666667,4.255166667,1.4655, +2015-02-03 08:00:00,3.093667656,998.3083332999998,26.58741667,90.60833333,4.189166667,1.96425, +2015-02-03 09:00:00,0.0,999.0125,95.67583333,92.80833333,4.854,2.133083333, +2015-02-03 10:00:00,0.0,1000.416667,214.2833333,89.9,5.419416667,2.783416667, +2015-02-03 11:00:00,0.0,1001.3125,339.71666669999996,79.06416667,6.548166667,3.09125, +2015-02-03 12:00:00,0.0,1001.6625,344.6916667,68.68083333,7.524916667,2.8889166669999997, +2015-02-03 13:00:00,0.0,1001.866667,192.25,63.5225,7.9298333329999995,2.5278333330000002, +2015-02-03 14:00:00,0.0,1001.9333330000001,283.3916667,58.89916667,8.3375,2.365916667, +2015-02-03 15:00:00,0.0,1001.895833,253.125,54.42333333,9.208333332999999,2.584083333, +2015-02-03 16:00:00,0.0,1001.883333,55.813,62.48916667,8.206333333,3.06225, +2015-02-03 17:00:00,50.44417658,1003.266667,15.93141667,94.5,3.73625,2.33, +2015-02-03 18:00:00,25.95168547,1004.491667,0.583833333,95.50833333,3.1528333330000002,2.777166667, +2015-02-03 19:00:00,0.0,1006.258333,0.0,91.8,2.6814166669999997,2.0829166669999997, +2015-02-03 20:00:00,0.0,1007.016667,0.0,91.675,2.531416667,1.94475, +2015-02-03 21:00:00,0.0,1008.283333,0.0,91.9,2.28125,2.7744166669999997, +2015-02-03 22:00:00,0.0,1009.479167,0.0,92.43333333,2.04825,3.312666667, +2015-02-03 23:00:00,0.0,1010.783333,0.0,94.425,1.72575,2.971833333, +2015-03-03 00:00:00,0.0,1011.645833,0.0,91.4,1.8965833330000001,2.820666667,237.98408599999996 +2015-03-03 01:00:00,0.0,1012.579167,0.0,88.5,1.87,2.2039166669999997,237.98575266666663 +2015-03-03 02:00:00,0.0,1013.083333,0.0,87.625,1.6500833330000002,1.9530833330000001,237.987136 +2015-03-03 03:00:00,0.0,1013.304167,0.0,88.80833333,1.4231666669999998,1.8,237.98985266666668 +2015-03-03 04:00:00,0.0,1013.729167,0.0,89.44166667,1.369666667,2.329583333,237.99158599999996 +2015-03-03 05:00:00,0.0,1013.708333,0.0,90.075,0.9835,1.68025,237.99261933333332 +2015-03-03 06:00:00,0.0,1014.05,0.09625,89.7,1.112,1.993416667,237.99428600000002 +2015-03-03 07:00:00,0.0,1014.458333,8.613916667,88.80833333,1.434916667,1.7250833330000002,237.994986 +2015-03-03 08:00:00,0.0,1014.725,24.97333333,86.60833333,2.459333333,2.826916667,237.996386 +2015-03-03 09:00:00,0.0,1015.154167,154.39583330000002,83.99166667,3.64625,2.4954166669999998,237.99805266666667 +2015-03-03 10:00:00,0.0,1015.2125,289.3166667,79.03583333,5.224666667,2.083916667,237.99838599999998 +2015-03-03 11:00:00,0.0,1014.9416669999999,350.1666667,69.55916667,7.05225,2.1975833330000003,237.99908599999995 +2015-03-03 12:00:00,0.0,1014.4333330000001,313.025,67.32166667,8.112083333,3.1183333330000003,238.000486 +2015-03-03 13:00:00,0.0,1013.479167,265.4166667,65.505,8.734166667,2.7079166669999997,238.000486 +2015-03-03 14:00:00,0.0,1012.3875,318.65833330000004,63.91,9.429166667,2.5245833330000003,238.001886 +2015-03-03 15:00:00,0.0,1011.541667,176.2583333,60.82666667,9.738333333,3.3193333330000003,238.00258599999998 +2015-03-03 16:00:00,0.0,1010.866667,56.97333333,59.1375,9.279166667,2.751833333,238.00391933333333 +2015-03-03 17:00:00,0.0,1010.720833,16.89316667,59.65916667,8.940833332999999,2.927,238.00528599999998 +2015-03-03 18:00:00,0.0,1010.525,0.750416667,64.5875,8.193166667,2.603416667,238.00668599999997 +2015-03-03 19:00:00,47.19036571,1011.4875,0.0,80.54,6.6798333329999995,3.1223333330000003,238.00701933333332 +2015-03-03 20:00:00,6.37535208,1011.858333,0.0,92.75,3.99425,2.465416667,238.00528599999998 +2015-03-03 21:00:00,0.0,1012.204167,0.0,95.75833333,3.916583333,1.329333333,238.00598599999998 +2015-03-03 22:00:00,2.869613184,1012.983333,0.0,95.33333333,3.853916667,1.5905,238.00668599999997 +2015-03-03 23:00:00,0.0,1013.625,0.0,93.85833333,3.6318333330000003,1.565,238.00701933333332 +2015-04-03 00:00:00,0.0,1014.1916669999999,0.0,93.19166667,3.3178333330000003,1.709,238.05076270000004 +2015-04-03 01:00:00,0.0,1014.595833,0.0,93.74166667,2.8255,1.84675,238.05066046666664 +2015-04-03 02:00:00,0.0,1015.2125,0.0,95.58333333,2.425166667,1.7349166669999998,238.05048680000002 +2015-04-03 03:00:00,0.0,1015.7541669999999,0.0,94.51666667,2.49475,1.89375,238.05038333333334 +2015-04-03 04:00:00,0.0,1016.333333,0.0,95.73333333,1.4645833330000002,0.945916667,238.05020843333332 +2015-04-03 05:00:00,0.0,1016.8083330000001,0.0,94.675,1.108833333,0.542666667,238.05005455 +2015-04-03 06:00:00,0.0,1017.208333,0.123083333,95.40833333,1.345833333,1.24475,238.05000406666667 +2015-04-03 07:00:00,0.0,1017.5,10.55875,95.21666667,0.580333333,0.43791666700000004,238.04990553333334 +2015-04-03 08:00:00,0.0,1018.070833,35.05916667,93.79166667,2.140166667,1.0865833329999999,238.04985503333333 +2015-04-03 09:00:00,0.0,1018.741667,148.6725,89.09166667,3.3016666669999997,1.661666667,238.04972569999998 +2015-04-03 10:00:00,0.0,1019.429167,219.94166669999998,85.0,4.560416667,2.31475,238.04962716666668 +2015-04-03 11:00:00,0.0,1019.741667,245.04166669999998,80.46333333,4.966916667,2.09775,238.0495779 +2015-04-03 12:00:00,0.0,1019.875,348.65833330000004,75.52333333,6.255333332999999,2.415833333,238.04955203333336 +2015-04-03 13:00:00,0.0,1020.016667,303.75,72.19583333,7.004833333,2.392833333,238.0494227 +2015-04-03 14:00:00,0.0,1019.9125,164.7791667,71.35916667,6.785583333,1.8975,238.04937096666666 +2015-04-03 15:00:00,0.0,1020.0,119.15833329999998,68.5725,6.920583333,1.62875,238.0492675 +2015-04-03 16:00:00,3.60573372,1020.3166669999999,106.3775,72.02583333,6.507916667000001,2.4105,238.04924286666665 +2015-04-03 17:00:00,2.902754208,1021.170833,19.36475,85.80416667,4.662083333,2.272833333,238.04916896666666 +2015-04-03 18:00:00,12.0324359,1022.116667,0.52875,97.80833333,2.631583333,1.863583333,238.04904214999996 +2015-04-03 19:00:00,2.6018506319999997,1022.283333,0.0,96.425,2.040333333,1.2820833329999999,238.0489153333333 +2015-04-03 20:00:00,0.0,1022.570833,0.0,95.70833333,2.2440833330000003,1.358,238.0489399666667 +2015-04-03 21:00:00,0.0,1023.054167,0.0,93.675,3.03425,1.558,238.04881556666666 +2015-04-03 22:00:00,0.0,1023.625,0.0,94.18333333,2.9865,1.391,238.0487392 +2015-04-03 23:00:00,0.0,1024.25,0.0,92.48333333,2.9725,1.164416667,238.04873920000003 +2015-05-03 00:00:00,0.0,1025.05,0.0,91.625,3.3504166669999997,1.270416667, +2015-05-03 01:00:00,0.0,1025.75,0.0,89.41666667,3.317583333,1.299166667, +2015-05-03 02:00:00,0.0,1026.6875,0.0,86.34166667,3.016333333,1.01475, +2015-05-03 03:00:00,0.0,1027.604167,0.0,89.825,2.797333333,0.943416667, +2015-05-03 04:00:00,0.0,1028.141667,0.0,90.525,2.476333333,1.204083333, +2015-05-03 05:00:00,0.0,1028.825,0.0,88.80833333,2.8855,1.3860833330000002, +2015-05-03 06:00:00,0.0,1029.495833,0.16725,87.40833333,2.76375,0.971583333, +2015-05-03 07:00:00,0.0,1029.729167,12.34875,90.375,2.1109166669999997,0.736583333, +2015-05-03 08:00:00,0.0,1030.445833,72.54083333,88.41666667,3.2039166669999997,1.6915, +2015-05-03 09:00:00,0.0,1031.004167,158.2166667,84.00833333,4.176833333,2.19175, +2015-05-03 10:00:00,0.0,1031.479167,154.1333333,81.84333333,4.651083333,1.5355833330000002, +2015-05-03 11:00:00,0.0,1031.370833,265.775,73.10333333,5.683,2.196416667, +2015-05-03 12:00:00,0.0,1031.508333,311.625,66.33,6.625583333,3.262916667, +2015-05-03 13:00:00,0.0,1031.216667,200.7,66.09,6.768,2.887166667, +2015-05-03 14:00:00,0.0,1030.991667,270.7916667,64.95583333,7.0425,2.78625, +2015-05-03 15:00:00,0.0,1030.854167,163.69166669999998,62.55333333,7.1319166670000005,2.7141666669999998, +2015-05-03 16:00:00,0.0,1030.841667,93.73583333,64.7375,7.13375,2.8738333330000003, +2015-05-03 17:00:00,0.0,1031.129167,38.77416667,68.27916667,6.684,2.301, +2015-05-03 18:00:00,0.0,1031.458333,1.4499166669999999,83.47083333,4.802666667,0.6788333329999999, +2015-05-03 19:00:00,0.0,1031.666667,0.0,91.25,3.0015,0.12625, +2015-05-03 20:00:00,0.0,1031.783333,0.0,95.5,1.6046666669999998,0.060833332999999996, +2015-05-03 21:00:00,0.0,1031.883333,0.0,97.375,0.717333333,0.07875, +2015-05-03 22:00:00,0.0,1032.045833,0.0,99.25833333,0.00325,0.040583333, +2015-05-03 23:00:00,0.0,1031.975,0.0,99.99166667,-0.258833333,0.074083333, +2015-06-03 00:00:00,0.0,1031.9375,0.0,100.0,0.07175,0.08716666699999999,237.79810145000002 +2015-06-03 01:00:00,0.0,1031.925,0.0,100.0,0.03975,0.0545,237.79637768333336 +2015-06-03 02:00:00,0.0,1031.508333,0.0,100.0,-0.850916667,0.033416667000000004,237.80103186666668 +2015-06-03 03:00:00,0.0,1031.166667,0.0,100.0,-1.333916667,0.18916666699999998,237.80344513333333 +2015-06-03 04:00:00,0.0,1031.35,0.0,100.0,-1.772416667,0.15566666699999998,237.80310036666665 +2015-06-03 05:00:00,0.0,1031.741667,0.0,100.0,-2.219166667,0.027999999999999997,237.8036175 +2015-06-03 06:00:00,0.0,1031.695833,0.24808333300000002,100.0,-2.55625,0.041416667000000004,237.80172133333335 +2015-06-03 07:00:00,0.0,1031.854167,15.822000000000001,100.0,-2.42875,0.011166667,237.79879098333336 +2015-06-03 08:00:00,0.0,1032.008333,40.27333333,99.95833333,-0.191833333,0.21125,237.79344728333334 +2015-06-03 09:00:00,0.0,1032.3625,145.87083330000002,91.3,3.0805833330000003,0.696416667,237.79137876666664 +2015-06-03 10:00:00,0.0,1032.270833,239.7416667,84.23166667,5.184083333,0.575666667,237.78879311666665 +2015-06-03 11:00:00,0.0,1032.220833,182.30833330000002,77.65916667,6.765166667000001,1.3733333330000002,237.78775886666662 +2015-06-03 12:00:00,0.0,1032.095833,131.38333329999998,74.005,6.834166667000001,1.4515,237.7841389333333 +2015-06-03 13:00:00,0.0,1031.741667,135.875,66.50583333,7.2345,1.027166667,237.7806914 +2015-06-03 14:00:00,0.0,1031.05,140.80833330000002,64.47333333,7.5385,1.218166667,237.77879525 +2015-06-03 15:00:00,0.0,1030.695833,159.925,61.94333333,8.187583333,0.73825,237.77776101666666 +2015-06-03 16:00:00,0.0,1030.041667,101.355,61.27333333,8.23325,1.149666667,237.7760372666667 +2015-06-03 17:00:00,0.0,1029.770833,23.2975,74.09333333,6.80425,0.915,237.77500298333334 +2015-06-03 18:00:00,0.0,1029.9625,2.45525,87.12083333,5.459416667,0.47616666700000004,237.77483061666666 +2015-06-03 19:00:00,0.0,1030.25,0.0,93.325,4.258083333,0.269416667,237.77431346666663 +2015-06-03 20:00:00,0.0,1029.920833,0.0,96.30833333,3.04675,0.33916666700000003,237.77672673333333 +2015-06-03 21:00:00,0.0,1029.65,0.0,97.175,1.4455,0.208833333,237.7789676333333 +2015-06-03 22:00:00,0.0,1029.4375,0.0,99.61666667,0.035833332999999995,0.11508333300000001,237.78103615 +2015-06-03 23:00:00,0.0,1029.125,0.0,100.0,-0.493666667,0.173083333,237.78344941666663 +2015-07-03 00:00:00,0.0,1029.420833,0.0,100.0,-0.670333333,0.368833333,237.6066449 +2015-07-03 01:00:00,0.0,1029.316667,0.0,100.0,-1.204,0.11641666699999999,237.60971156666665 +2015-07-03 02:00:00,0.0,1029.1125,0.0,100.0,-2.0789166669999997,0.022166667,237.61236005 +2015-07-03 03:00:00,0.0,1028.545833,0.0,100.0,-2.43925,0.028083333,237.61472975 +2015-07-03 04:00:00,0.0,1028.375,0.0,100.0,-2.71775,0.0025,237.6193297166667 +2015-07-03 05:00:00,0.0,1028.141667,0.0,100.0,-2.983,0.001583333,237.62072365000003 +2015-07-03 06:00:00,0.0,1027.7625,0.32758333300000003,100.0,-3.117833333,0.0015,237.62183881666667 +2015-07-03 07:00:00,0.0,1027.683333,20.0245,100.0,-2.726416667,0.07875,237.62295395 +2015-07-03 08:00:00,0.0,1028.108333,69.01833333,100.0,-0.638333333,0.001166667,237.62197820000003 +2015-07-03 09:00:00,0.0,1028.395833,143.54166669999998,99.725,1.076916667,0.273666667,237.6140327666666 +2015-07-03 10:00:00,0.0,1028.275,215.19166669999998,93.80833333,3.36775,0.273916667,237.60120855 +2015-07-03 11:00:00,0.0,1028.35,222.55833330000002,87.33833333,4.92975,0.35716666700000005,237.5893600833334 +2015-07-03 12:00:00,0.0,1028.05,279.8166667,77.97916667,7.155583332999999,1.3605,237.5826691666667 +2015-07-03 13:00:00,0.0,1027.408333,333.5,69.96,9.320833333,1.9045,237.58057826666666 +2015-07-03 14:00:00,0.0,1026.933333,263.175,65.32833333,9.680833332999999,2.265916667,237.5761176666667 +2015-07-03 15:00:00,3.223812912,1026.3,163.35,59.90333333,9.798333332999999,2.252583333,237.57514191666667 +2015-07-03 16:00:00,0.0,1025.941667,100.8666667,57.08166667,9.305,2.404833333,237.57235403333334 +2015-07-03 17:00:00,0.0,1025.6375,39.68333333,62.5325,8.459,2.4003333330000003,237.57291161666663 +2015-07-03 18:00:00,0.0,1025.7375,4.118416667,82.58583333,7.14,2.135416667,237.57346918333334 +2015-07-03 19:00:00,0.0,1025.641667,0.0,90.15,3.536166667,0.37158333299999996,237.57402678333335 +2015-07-03 20:00:00,0.0,1025.095833,0.0,94.71666667,1.44325,0.23,237.57709343333337 +2015-07-03 21:00:00,0.0,1024.916667,0.0,96.25833333,0.50075,0.142833333,237.58197220000002 +2015-07-03 22:00:00,0.0,1024.820833,0.0,98.34166667,-0.162583333,0.07741666700000001,237.58420248333334 +2015-07-03 23:00:00,0.0,1024.5375,0.0,99.55,-0.45141666700000005,0.012666667,237.58824493333336 +2015-08-03 00:00:00,0.0,1024.195833,0.0,99.88333333,-0.948333333,0.0,237.47854211666666 +2015-08-03 01:00:00,0.0,1023.841667,0.0,100.0,-1.337166667,0.0,237.48286330000005 +2015-08-03 02:00:00,0.0,1023.5041669999999,0.0,100.0,-1.54975,0.0,237.48648755000002 +2015-08-03 03:00:00,0.0,1023.1916669999999,0.0,100.0,-1.819083333,0.0,237.49025118333336 +2015-08-03 04:00:00,0.0,1022.741667,0.0,100.0,-2.226416667,0.000166667,237.49303903333336 +2015-08-03 05:00:00,0.0,1022.275,0.0,100.0,-2.491166667,0.0,237.49526935000003 +2015-08-03 06:00:00,0.0,1022.0125,0.273916667,100.0,-2.7515,0.0,237.49680268333336 +2015-08-03 07:00:00,0.0,1022.0041669999999,16.49541667,100.0,-2.7120833330000003,0.0,237.49819663333335 +2015-08-03 08:00:00,0.0,1022.25,49.90333333,100.0,-0.18025,8.329999999999999e-05,237.49819661666666 +2015-08-03 09:00:00,0.0,1022.304167,189.8583333,96.43333333,2.7366666669999997,0.161666667,237.49387539999998 +2015-08-03 10:00:00,0.0,1022.341667,308.375,84.3575,6.768333332999999,0.44025,237.48049363333334 +2015-08-03 11:00:00,0.0,1022.266667,335.5166667,72.30333333,10.02583333,1.55175,237.46432395 +2015-08-03 12:00:00,0.0,1021.7625,331.2666667,63.80416667,11.53916667,1.5801666669999999,237.4514997166667 +2015-08-03 13:00:00,0.0,1021.279167,292.05,61.55833333,11.56583333,2.2200833330000003,237.44564521666666 +2015-08-03 14:00:00,0.0,1020.770833,243.6,59.26666667,12.33333333,1.7258333330000002,237.44285731666665 +2015-08-03 15:00:00,0.0,1020.091667,172.30833330000002,57.75416667,12.7425,1.6145,237.44006945 +2015-08-03 16:00:00,0.0,1019.3,104.93166670000001,59.10666667,12.27083333,1.5521666669999998,237.436724 +2015-08-03 17:00:00,0.0,1018.979167,40.28166667,70.60583333,11.24416667,0.44299999999999995,237.43895429999998 +2015-08-03 18:00:00,0.0,1018.779167,3.98325,86.675,8.66275,0.547083333,237.43797855 +2015-08-03 19:00:00,0.0,1019.145833,0.0,92.05833333,6.877000000000001,0.29775,237.43895429999998 +2015-08-03 20:00:00,0.0,1019.1208330000001,0.0,94.68333333,4.3225,0.232333333,237.44202096666666 +2015-08-03 21:00:00,0.0,1018.9958330000001,0.0,96.425,3.113916667,0.18941666699999998,237.44564520000003 +2015-08-03 22:00:00,0.0,1019.175,0.0,96.30833333,2.13625,0.43958333299999997,237.45024518333335 +2015-08-03 23:00:00,0.0,1019.325,0.0,96.36666667,1.334083333,0.245166667,237.45512398333335 +2015-09-03 00:00:00,0.0,1019.479167,0.0,98.8,0.564916667,0.197833333,237.58074618333333 +2015-09-03 01:00:00,0.0,1019.616667,0.0,99.63333333,0.1525,0.10125,237.58276258333333 +2015-09-03 02:00:00,0.0,1019.954167,0.0,99.89166667,-0.38691666700000005,0.214416667,237.58415854999998 +2015-09-03 03:00:00,0.0,1020.016667,0.0,99.725,-0.813083333,0.2815,237.58446876666665 +2015-09-03 04:00:00,0.0,1020.325,0.0,100.0,-1.131,0.091083333,237.58772603333333 +2015-09-03 05:00:00,0.0,1021.170833,0.0,99.275,-1.635083333,0.07616666700000001,237.58974243333338 +2015-09-03 06:00:00,0.0,1021.65,0.255583333,99.98333333,-1.923416667,0.12066666699999999,237.58943224999996 +2015-09-03 07:00:00,0.0,1021.9958330000001,17.71591667,100.0,-1.106166667,0.080916667,237.58757094999999 +2015-09-03 08:00:00,0.0,1022.758333,45.84416667,100.0,0.822666667,0.183416667,237.58819136666662 +2015-09-03 09:00:00,0.0,1022.720833,139.9666667,97.13333333,3.506333333,0.607666667,237.58788114999996 +2015-09-03 10:00:00,0.0,1022.8125,267.6416667,88.14166667,7.870666667,0.713583333,237.58586473333332 +2015-09-03 11:00:00,0.0,1022.575,237.95,80.67333333,10.5975,1.121416667,237.58601984999999 +2015-09-03 12:00:00,0.0,1022.266667,361.7666667,74.04416667,12.34416667,2.4515,237.58183193333332 +2015-09-03 13:00:00,0.0,1021.770833,418.95,68.22083333,13.75416667,1.15875,237.57640313333334 +2015-09-03 14:00:00,0.0,1021.104167,380.0416667,65.06416667,14.11916667,1.4664166669999998,237.5746969666667 +2015-09-03 15:00:00,0.0,1020.766667,282.2916667,63.60416667,14.59583333,1.2805,237.57143968333332 +2015-09-03 16:00:00,0.0,1020.7458330000001,192.05,59.95666667,14.63333333,1.13525,237.56678646666663 +2015-09-03 17:00:00,0.0,1020.704167,41.8975,70.85416667,13.485,0.755416667,237.56601093333336 +2015-09-03 18:00:00,0.0,1020.641667,2.90325,89.61666667,8.379583333,0.285416667,237.56352921666667 +2015-09-03 19:00:00,0.0,1020.716667,0.0,96.44166667,5.662000000000001,0.24716666699999998,237.56306386666665 +2015-09-03 20:00:00,0.0,1020.516667,0.0,99.28333333,4.03125,0.195416667,237.56259855000005 +2015-09-03 21:00:00,0.0,1020.716667,0.0,99.975,3.047416667,0.173666667,237.56321898333337 +2015-09-03 22:00:00,0.0,1020.5666669999999,0.0,100.0,2.036916667,0.073083333,237.56352919999998 +2015-09-03 23:00:00,0.0,1020.2375,0.0,100.0,1.1415,0.241166667,237.56383943333336 +2015-10-03 00:00:00,0.0,1020.258333,0.0,100.0,0.6206666670000001,0.069833333,237.58229724999998 +2015-10-03 01:00:00,0.0,1020.545833,0.0,100.0,-0.10291666699999999,0.0025,237.5830728 +2015-10-03 02:00:00,0.0,1020.325,0.0,100.0,-0.35808333299999995,0.11433333300000001,237.58322791666663 +2015-10-03 03:00:00,0.0,1020.154167,0.0,100.0,-0.9635,0.009583333000000001,237.58772603333333 +2015-10-03 04:00:00,0.0,1020.291667,0.0,100.0,-1.026916667,0.048166667,237.58927713333333 +2015-10-03 05:00:00,0.0,1020.470833,0.0,100.0,-0.9009166670000001,0.198333333,237.59113843333333 +2015-10-03 06:00:00,0.0,1020.5666669999999,1.126916667,100.0,-0.913166667,0.053333333,237.5925344 +2015-10-03 07:00:00,0.0,1021.091667,24.30141667,100.0,-0.233166667,0.06308333299999999,237.5900526833333 +2015-10-03 08:00:00,2.466036864,1021.783333,51.30166667,100.0,1.330833333,0.141166667,237.58989756666668 +2015-10-03 09:00:00,0.0,1022.291667,63.79166667,100.0,2.804166667,0.440666667,237.58943223333333 +2015-10-03 10:00:00,2.4492017280000002,1022.15,111.975,99.76666667,4.67925,0.405416667,237.58958736666662 +2015-10-03 11:00:00,2.432953056,1022.2541669999999,138.94166669999998,97.85833333,7.4345,0.5924166670000001,237.58710559999997 +2015-10-03 12:00:00,0.0,1022.470833,111.35166670000001,97.3,8.8775,1.110583333,237.58291770000002 +2015-10-03 13:00:00,0.0,1022.25,111.43583329999998,97.98333333,9.2575,1.10925,237.58167681666666 +2015-10-03 14:00:00,0.0,1022.258333,79.1525,98.525,9.221666667000001,0.89025,237.57609293333334 +2015-10-03 15:00:00,0.0,1022.241667,58.67833333,98.85833333,9.070833333,0.421333333,237.5728356333333 +2015-10-03 16:00:00,0.0,1022.2458330000001,49.76166667,97.94166667,9.225,0.9188333329999999,237.57097435 +2015-10-03 17:00:00,0.0,1022.295833,32.63166667,97.91666667,9.4075,0.82525,237.57097434999994 +2015-10-03 18:00:00,0.0,1022.516667,1.666833333,99.45833333,9.180833332999999,0.6851666670000001,237.57066413333334 +2015-10-03 19:00:00,0.0,1022.908333,0.0,99.35,8.411,0.91525,237.57035391666668 +2015-10-03 20:00:00,0.0,1023.2125,0.0,99.675,6.72575,0.668333333,237.5714396666667 +2015-10-03 21:00:00,0.0,1023.575,0.0,100.0,4.155916667,0.132583333,237.57283563333337 +2015-10-03 22:00:00,0.0,1023.766667,0.0,100.0,2.278333333,0.054000000000000006,237.57423161666668 +2015-10-03 23:00:00,0.0,1023.708333,0.0,100.0,1.8081666669999998,0.236666667,237.57516230000002 +2015-11-03 00:00:00,0.0,1023.741667,0.0,100.0,1.040666667,0.284333333,237.72520025000003 +2015-11-03 01:00:00,0.0,1023.958333,0.0,100.0,0.15433333300000002,0.12175,237.72612990000002 +2015-11-03 02:00:00,0.0,1023.8625,0.0,100.0,-0.561333333,0.164583333,237.72705953333335 +2015-11-03 03:00:00,0.0,1023.929167,0.0,100.0,-1.1494166670000001,0.07766666700000001,237.72752436666664 +2015-11-03 04:00:00,0.0,1024.1875,0.0,100.0,-1.7198333330000002,0.10241666699999999,237.72783425000003 +2015-11-03 05:00:00,0.0,1024.345833,0.0,100.0,-2.4,0.097666667,237.72736939999996 +2015-11-03 06:00:00,0.0,1024.729167,0.71475,100.0,-2.85725,0.038166667,237.72736941666668 +2015-11-03 07:00:00,0.0,1025.483333,16.7325,100.0,-2.8239166669999998,0.03075,237.7289188166667 +2015-11-03 08:00:00,0.0,1026.020833,41.7425,100.0,0.37391666700000004,0.068166667,237.72705956666667 +2015-11-03 09:00:00,2.549335488,1026.379167,237.31666669999998,94.675,3.1118333330000003,0.56825,237.7276793 +2015-11-03 10:00:00,0.0,1026.2375,283.7416667,84.16666667,4.375,2.124333333,237.72783423333337 +2015-11-03 11:00:00,0.0,1026.083333,371.3666667,76.80666667,5.351416667,2.348416667,237.7276793 +2015-11-03 12:00:00,0.0,1025.575,438.1,68.22916667,6.996583332999999,1.2035,237.72752436666667 +2015-11-03 13:00:00,0.0,1024.9,431.53333330000004,63.03416667,7.759333333,1.1975833329999999,237.72721448333334 +2015-11-03 14:00:00,0.0,1024.4875,393.5666667,54.68083333,8.76,1.165916667,237.72736945 +2015-11-03 15:00:00,0.0,1024.408333,320.075,50.98416667,10.00916667,0.9674166670000001,237.72907375 +2015-11-03 16:00:00,0.0,1024.216667,214.94166669999998,48.8575,10.41,0.77275,237.72907375000003 +2015-11-03 17:00:00,0.0,1024.054167,45.96416667,55.53,9.6475,0.502416667,237.72984845000005 +2015-11-03 18:00:00,0.0,1024.2375,4.666083333,83.77083333,5.262416667,0.262333333,237.72891879999997 +2015-11-03 19:00:00,0.0,1024.541667,0.0,90.56666667,2.200333333,0.139416667,237.73077810000004 +2015-11-03 20:00:00,0.0,1024.929167,0.0,94.0,0.875083333,0.11891666699999999,237.72845400000003 +2015-11-03 21:00:00,0.0,1025.454167,0.0,96.275,-0.255166667,0.006,237.72659471666665 +2015-11-03 22:00:00,0.0,1025.829167,0.0,97.85833333,-0.212666667,0.086,237.72721448333334 +2015-11-03 23:00:00,0.0,1025.908333,0.0,99.03333333,-0.8803333329999999,0.075083333,237.72752438333336 +2015-12-03 00:00:00,0.0,1026.020833,0.0,99.79166667,-1.369583333,0.094333333,238.10449658333332 +2015-12-03 01:00:00,0.0,1026.05,0.0,100.0,-1.6664166669999998,0.0455,238.10310213333335 +2015-12-03 02:00:00,0.0,1025.8125,0.0,100.0,-2.55625,0.050166667000000005,238.10077801666668 +2015-12-03 03:00:00,0.0,1025.7375,0.0,100.0,-2.6189166669999997,0.045916667,238.09783416666664 +2015-12-03 04:00:00,0.0,1025.825,0.0,100.0,-2.947666667,0.01925,238.09628473333336 +2015-12-03 05:00:00,0.0,1025.9875,0.0,100.0,-3.5869999999999997,0.00075,238.09365075000002 +2015-12-03 06:00:00,0.0,1026.079167,0.8809999999999999,100.0,-3.9068333330000002,0.000166667,238.09256615 +2015-12-03 07:00:00,0.0,1026.279167,16.77933333,100.0,-3.4089166669999997,0.0,238.09101671666667 +2015-12-03 08:00:00,0.0,1026.820833,42.42333333,100.0,-0.388166667,0.111,238.08915741666667 +2015-12-03 09:00:00,0.0,1027.045833,235.225,93.9,3.4555,0.46425,238.08652341666667 +2015-12-03 10:00:00,0.0,1026.808333,331.45,83.16833333,4.9825,1.4038333330000001,238.08342456666665 +2015-12-03 11:00:00,0.0,1026.429167,404.21666669999996,75.84,7.87575,0.84675,238.08079058333337 +2015-12-03 12:00:00,3.10362804,1025.829167,435.6416666999999,68.31833333,8.9905,2.384416667,238.07924116666666 +2015-12-03 13:00:00,0.0,1025.145833,357.6,62.5125,10.17666667,2.730916667,238.08093006 +2015-12-03 14:00:00,0.0,1024.483333,412.0166667,58.11416667,10.96833333,2.1676666669999998,238.08900871666665 +2015-12-03 15:00:00,0.0,1023.841667,312.1833333,55.43083333,11.39666667,2.25475,238.09079825 +2015-12-03 16:00:00,0.0,1023.375,218.83333330000002,52.30666667,11.19666667,2.2704166669999997,238.08936661666667 +2015-12-03 17:00:00,0.0,1022.9875,51.84083333,57.39833333,10.25083333,2.255666667,238.09205095000002 +2015-12-03 18:00:00,0.0,1022.8166669999999,6.2656666670000005,77.8025,7.7635,1.3720833330000002,238.0906193 +2015-12-03 19:00:00,0.0,1022.9875,0.0,78.10416667,6.121166667000001,0.46075,238.08918766666667 +2015-12-03 20:00:00,0.0,1023.141667,0.0,71.27916667,4.988333333,1.40925,238.08721918333336 +2015-12-03 21:00:00,0.0,1023.1833330000001,0.0,84.88666667,1.9079166669999998,0.40625,238.08632441666668 +2015-12-03 22:00:00,0.0,1023.3125,0.0,85.26666667,2.4096666669999998,1.598333333,238.08328219999999 +2015-12-03 23:00:00,0.0,1022.958333,0.0,91.46666667,0.80025,0.732583333,238.08417698333332 +2015-03-13 00:00:00,0.0,1022.666667,0.0,97.38333333,-0.691,0.02625,238.06795266666666 +2015-03-13 01:00:00,0.0,1022.4125,0.0,99.75833333,-1.8599166669999998,0.07933333299999999,238.06828599999997 +2015-03-13 02:00:00,0.0,1022.033333,0.0,100.0,-2.191583333,0.013333333000000001,238.06828599999997 +2015-03-13 03:00:00,0.0,1021.654167,0.0,100.0,-2.294666667,0.0019166670000000002,238.06761933333334 +2015-03-13 04:00:00,0.0,1021.008333,0.0,100.0,-2.3801666669999997,0.006,238.06828599999997 +2015-03-13 05:00:00,0.0,1020.391667,0.0,100.0,-3.120333333,0.057416667000000005,238.06828599999997 +2015-03-13 06:00:00,0.0,1020.225,1.0929166670000001,100.0,-3.5284166669999997,0.022333332999999997,238.068636 +2015-03-13 07:00:00,0.0,1020.35,16.72416667,100.0,-2.5756666669999997,0.020583333,238.06828599999997 +2015-03-13 08:00:00,0.0,1020.320833,55.74583333,100.0,-0.34775,0.006583333,238.06795266666666 +2015-03-13 09:00:00,0.0,1020.075,180.7333333,91.275,2.778916667,1.66525,238.06728599999997 +2015-03-13 10:00:00,0.0,1020.0875,259.275,74.83416667,5.243166667,4.1080000000000005,238.06795266666666 +2015-03-13 11:00:00,0.0,1020.1375,182.05,73.96583333,5.08525,3.765666667,238.06761933333328 +2015-03-13 12:00:00,0.0,1019.675,204.175,72.84,5.5460833329999994,3.3785,238.067286 +2015-03-13 13:00:00,0.0,1019.05,171.8916667,70.3275,5.80225,2.882833333,238.06695266666665 +2015-03-13 14:00:00,0.0,1018.583333,177.3,67.11583333,6.347333333,2.775083333,238.0666193333333 +2015-03-13 15:00:00,0.0,1018.2125,117.17333329999998,67.30333333,6.263833332999999,3.490583333,238.06695266666665 +2015-03-13 16:00:00,0.0,1018.133333,40.8825,70.18333333,5.651833333,4.054666667,238.06761933333334 +2015-03-13 17:00:00,0.0,1018.375,19.49083333,74.97166667,5.0425,3.73975,238.06795266666666 +2015-03-13 18:00:00,0.0,1018.841667,2.0404166669999997,78.7025,4.476333333,4.0679166669999995,238.068636 +2015-03-13 19:00:00,0.0,1019.0583330000001,0.0,79.54166667,4.010083333,3.776833333,238.06863599999997 +2015-03-13 20:00:00,0.0,1019.416667,0.0,80.91666667,3.554916667,3.420416667,238.06863599999997 +2015-03-13 21:00:00,0.0,1019.5041669999999,0.0,81.375,3.229833333,2.753916667,238.06968599999996 +2015-03-13 22:00:00,0.0,1019.75,0.0,80.55833333,3.022583333,2.582666667,238.06898599999997 +2015-03-13 23:00:00,0.0,1019.775,0.0,79.49666667,3.079916667,2.707083333,238.06968599999996 +2015-03-14 00:00:00,0.0,1019.833333,0.0,80.16583333,2.988666667,2.325583333,238.069336 +2015-03-14 01:00:00,0.0,1019.658333,0.0,82.54166667,2.755416667,1.066333333,238.06863599999997 +2015-03-14 02:00:00,0.0,1019.725,0.0,92.16666667,0.48200000000000004,0.22108333300000002,238.070036 +2015-03-14 03:00:00,0.0,1019.554167,0.0,97.90833333,-0.739916667,0.579833333,238.07038599999996 +2015-03-14 04:00:00,0.0,1019.716667,0.0,99.85833333,0.486333333,1.178083333,238.071386 +2015-03-14 05:00:00,0.0,1019.966667,0.0,98.46666667,1.3561666669999999,1.2625,238.07171933333333 +2015-03-14 06:00:00,0.0,1020.204167,0.733666667,93.44166667,1.3486666669999998,1.277833333,238.07205266666668 +2015-03-14 07:00:00,0.0,1020.545833,17.557000000000002,91.24166667,1.235166667,1.199666667,238.07205266666668 +2015-03-14 08:00:00,0.0,1020.8375,36.405,87.95833333,1.777916667,1.6388333330000002,238.07238600000002 +2015-03-14 09:00:00,0.0,1020.9416669999999,41.19666667,87.86666667,2.246166667,1.7039166669999999,238.07238600000002 +2015-03-14 10:00:00,0.0,1020.958333,60.90083333,91.475,2.40375,1.19375,238.07238600000002 +2015-03-14 11:00:00,0.0,1021.0625,74.91833333,94.4,3.2635,1.3505,238.07205266666665 +2015-03-14 12:00:00,3.244294968,1020.666667,112.98583329999998,94.81666667,3.872833333,2.302833333,238.07205266666668 +2015-03-14 13:00:00,0.0,1020.325,101.3166667,92.6,4.1385,2.443333333,238.07238600000002 +2015-03-14 14:00:00,0.0,1020.1291669999999,71.39416667,91.66666667,4.400666667,1.9515,238.072736 +2015-03-14 15:00:00,0.0,1020.2125,81.03416667,91.95833333,4.77225,2.110583333,238.07343600000002 +2015-03-14 16:00:00,0.0,1020.345833,36.92166667,94.06666667,4.523583333,3.569666667,238.07238600000002 +2015-03-14 17:00:00,3.8128010160000003,1020.658333,22.72341667,98.0,3.59825,3.4811666669999997,238.07343600000002 +2015-03-14 18:00:00,0.0,1021.15,1.67075,98.8,3.297166667,2.49825,238.07413599999998 +2015-03-14 19:00:00,2.930578824,1021.475,0.0,99.66666667,3.1655833330000003,1.9080833330000002,238.07343600000002 +2015-03-14 20:00:00,0.0,1021.616667,0.0,100.0,3.1510833330000003,2.226416667,238.07448599999998 +2015-03-14 21:00:00,0.0,1021.491667,0.0,99.08333333,3.251583333,2.330083333,238.07343600000002 +2015-03-14 22:00:00,0.0,1021.5666669999999,0.0,96.7,3.14275,2.2079166669999997,238.07413599999998 +2015-03-14 23:00:00,0.0,1021.633333,0.0,97.11666667,3.156583333,2.20775,238.07448599999998 +2015-03-15 00:00:00,0.0,1021.383333,0.0,97.96666667,3.1470833330000003,1.89925,238.07448599999998 +2015-03-15 01:00:00,0.0,1021.2,0.0,98.29166667,2.9555833330000003,1.096666667,238.07448599999998 +2015-03-15 02:00:00,2.7703067760000004,1021.0,0.0,99.86666667,2.904083333,1.456833333,238.07413599999998 +2015-03-15 03:00:00,2.882930736,1020.6625,0.0,100.0,2.899083333,1.42325,238.073786 +2015-03-15 04:00:00,2.81541048,1020.533333,0.0,100.0,2.9003333330000003,1.4211666669999998,238.07413599999998 +2015-03-15 05:00:00,6.08475816,1020.4416669999999,0.0,100.0,2.960333333,1.93675,238.07171933333333 +2015-03-15 06:00:00,19.51270258,1020.5583330000001,0.270083333,100.0,2.9289166669999998,2.505,238.07238600000002 +2015-03-15 07:00:00,6.71191152,1020.875,5.828583332999999,100.0,2.88025,2.558416667,238.07171933333333 +2015-03-15 08:00:00,3.341766984,1021.145833,22.065,100.0,3.30125,2.684583333,238.071386 +2015-03-15 09:00:00,0.0,1021.179167,41.33833333,99.5,3.813166667,2.8925,238.071386 +2015-03-15 10:00:00,0.0,1020.970833,65.41333333,97.6,4.603166667,3.322666667,238.0761693333333 +2015-03-15 11:00:00,0.0,1020.6,97.12833333,93.15833333,5.195,3.041666667,238.08061933333332 +2015-03-15 12:00:00,0.0,1020.3,78.95,90.175,5.638666667000001,2.8255,238.0833693333333 +2015-03-15 13:00:00,0.0,1019.954167,157.4533333,85.58333333,6.298166667,2.356416667,238.09123599999998 +2015-03-15 14:00:00,0.0,1019.6125,60.09,83.85833333,6.1965833329999995,3.020166667,238.08543599999996 +2015-03-15 15:00:00,0.0,1019.454167,20.81,85.425,5.890083333,3.343583333,238.08095266666666 +2015-03-15 16:00:00,0.0,1019.291667,20.29583333,85.65833333,5.7525,3.0010000000000003,238.080586 +2015-03-15 17:00:00,0.0,1019.1916669999999,9.038416667,86.05833333,5.505166667,2.351333333,238.07925266666666 +2015-03-15 18:00:00,0.0,1019.241667,2.362083333,89.375,5.189666667,2.076333333,238.07411933333333 +2015-03-15 19:00:00,0.0,1019.333333,0.0,92.28333333,4.9875,1.748083333,238.0707193333333 +2015-03-15 20:00:00,0.0,1019.466667,0.0,95.18333333,4.268916667,0.781416667,238.06695266666668 +2015-03-15 21:00:00,0.0,1019.633333,0.0,99.125,4.358666667,1.353083333,238.06040266666665 +2015-03-15 22:00:00,0.0,1019.6125,0.0,99.98333333,2.0855,0.11483333300000001,238.05288599999997 +2015-03-15 23:00:00,0.0,1019.341667,0.0,100.0,0.7354166670000001,0.34083333299999996,238.05046933333335 +2015-03-16 00:00:00,0.0,1019.179167,0.0,100.0,0.349583333,0.321083333,238.04946933333335 +2015-03-16 01:00:00,0.0,1019.4,0.0,99.525,0.42425,0.124666667,238.05220266666663 +2015-03-16 02:00:00,0.0,1019.175,0.0,98.475,0.728916667,0.364833333,238.05561933333334 +2015-03-16 03:00:00,0.0,1019.108333,0.0,99.09166667,0.9955,0.573916667,238.05493599999997 +2015-03-16 04:00:00,0.0,1018.9125,0.0,99.975,0.035666667,0.061166667,238.05425266666666 +2015-03-16 05:00:00,0.0,1018.833333,0.0,100.0,0.255833333,0.097416667,238.05288599999997 +2015-03-16 06:00:00,0.0,1018.833333,2.112833333,100.0,0.260666667,0.11233333300000001,238.051186 +2015-03-16 07:00:00,0.0,1019.116667,30.78333333,100.0,0.6559999999999999,0.26308333300000003,238.056286 +2015-03-16 08:00:00,0.0,1019.091667,67.23583333,99.175,1.5361666669999998,0.6845,238.06178599999998 +2015-03-16 09:00:00,3.066350424,1018.825,202.8416667,94.425,3.4121666669999997,2.3858333330000003,238.07960266666666 +2015-03-16 10:00:00,0.0,1018.445833,279.2,86.93333333,5.622416667,2.426416667,238.10528599999998 +2015-03-16 11:00:00,0.0,1018.4625,243.7333333,80.66166667,7.886416667000001,1.502666667,238.05585746000003 +2015-03-16 12:00:00,0.0,1018.2625,417.1,68.11666667,10.46666667,2.100083333,238.04441260000002 +2015-03-16 13:00:00,0.0,1017.729167,427.9333333000001,58.07666667,11.97916667,2.505583333,238.04436090000002 +2015-03-16 14:00:00,0.0,1017.491667,386.3916667,53.83083333,12.92083333,1.870333333,238.04433505 +2015-03-16 15:00:00,0.0,1017.445833,232.5083333,52.89916667,13.5325,2.133416667,238.04438675000003 +2015-03-16 16:00:00,0.0,1017.6125,123.3,54.86083333,12.62666667,1.5621666669999998,238.04430920000001 +2015-03-16 17:00:00,0.0,1017.783333,47.25916667,63.225,12.1375,0.891833333,238.04420823333336 +2015-03-16 18:00:00,0.0,1018.2375,9.882416667000001,85.6625,8.323083333,0.282916667,238.0441097 +2015-03-16 19:00:00,0.0,1018.645833,0.0014166670000000001,94.55,5.2915,0.33575,238.0440838333333 +2015-03-16 20:00:00,0.0,1018.95,0.0,97.54166667,2.854333333,0.16775,238.04403209999998 +2015-03-16 21:00:00,0.0,1019.4333330000001,0.0,99.44166667,1.8775,0.15483333300000002,238.04398036666666 +2015-03-16 22:00:00,0.0,1019.345833,0.0,100.0,1.58675,0.178583333,238.04398036666666 +2015-03-16 23:00:00,0.0,1019.5041669999999,0.0,100.0,1.4411666669999998,0.227083333,238.04398036666666 +2015-03-17 00:00:00,0.0,1019.366667,0.0,100.0,0.801666667,0.14425,238.04392986666664 +2015-03-17 01:00:00,0.0,1019.516667,0.0,100.0,0.171333333,0.18233333300000001,238.04388059999997 +2015-03-17 02:00:00,0.0,1019.4333330000001,0.0,100.0,0.007666666999999999,0.291666667,238.04388059999997 +2015-03-17 03:00:00,0.0,1019.6291669999999,0.0,100.0,-0.7081666670000001,0.107,238.04390523333328 +2015-03-17 04:00:00,0.0,1019.6916669999999,0.0,100.0,-1.015083333,0.10158333300000001,238.04383133333332 +2015-03-17 05:00:00,0.0,1019.758333,0.0,100.0,-1.040833333,0.0235,238.04378083333333 +2015-03-17 06:00:00,0.0,1019.991667,1.9385833330000002,100.0,-0.7805,0.012166666999999999,238.04380669999998 +2015-03-17 07:00:00,0.0,1020.1291669999999,34.71583333,100.0,-0.17800000000000002,0.006,238.04378083333333 +2015-03-17 08:00:00,0.0,1020.3,79.21916667,100.0,3.440666667,0.168166667,238.04375496666663 +2015-03-17 09:00:00,0.0,1020.641667,201.81666669999998,92.96666667,6.165666667000001,1.170583333,238.04380669999998 +2015-03-17 10:00:00,0.0,1020.4625,291.05,80.78916667,8.511000000000001,1.1625,238.04378083333333 +2015-03-17 11:00:00,0.0,1020.116667,349.925,70.12416667,11.11916667,1.162916667,238.04380546666667 +2015-03-17 12:00:00,0.0,1019.7375,379.8666667,64.38,13.12583333,1.2535,238.04334976666667 +2015-03-17 13:00:00,0.0,1019.429167,374.075,59.99166667,14.71,1.5866666669999998,238.0433731833333 +2015-03-17 14:00:00,0.0,1019.1,358.8583333,54.54083333,15.84333333,1.4185833330000002,238.04370446666667 +2015-03-17 15:00:00,0.0,1018.666667,309.4333333,48.39916667,17.29416667,1.16,238.04383133333332 +2015-03-17 16:00:00,0.0,1018.5,199.7,47.8025,17.18166667,0.84975,238.04383133333332 +2015-03-17 17:00:00,0.0,1018.383333,51.89333333,57.78083333,16.0275,0.43575,238.04388059999997 +2015-03-17 18:00:00,0.0,1018.716667,7.347083333,82.51833333,11.64583333,0.408416667,238.04378083333333 +2015-03-17 19:00:00,0.0,1019.025,0.013583333000000001,91.10833333,8.232999999999999,0.37041666700000003,238.04365150000004 +2015-03-17 20:00:00,0.0,1019.233333,0.0,95.09166667,6.053833332999999,0.35175,238.04360223333333 +2015-03-17 21:00:00,0.0,1019.366667,0.0,97.91666667,4.584416667,0.2255,238.04355296666668 +2015-03-17 22:00:00,0.0,1019.541667,0.0,99.58333333,3.513833333,0.161333333,238.04355296666668 +2015-03-17 23:00:00,0.0,1019.475,0.0,99.99166667,2.738416667,0.21600000000000003,238.04347783333333 +2015-03-18 00:00:00,0.0,1019.3625,0.0,100.0,2.1055833330000002,0.1395,238.04350246666664 +2015-03-18 01:00:00,0.0,1019.425,0.0,100.0,1.518,0.12175,238.04347659999996 +2015-03-18 02:00:00,0.0,1019.341667,0.0,100.0,1.0715,0.08875,238.0435037 +2015-03-18 03:00:00,0.0,1019.366667,0.0,100.0,0.6495,0.09525,238.04347783333333 +2015-03-18 04:00:00,0.0,1019.4375,0.0,100.0,0.40433333299999996,0.049583333,238.04337436666665 +2015-03-18 05:00:00,0.0,1019.525,0.0,100.0,0.255583333,0.029166667,238.0434002333333 +2015-03-18 06:00:00,0.0,1019.716667,1.87275,100.0,-0.321,0.02475,238.04334849999995 +2015-03-18 07:00:00,0.0,1020.0625,23.92416667,100.0,0.10099999999999999,0.0,238.04334849999995 +2015-03-18 08:00:00,0.0,1020.404167,74.82083333,100.0,3.14975,0.09916666699999999,238.04276601666666 +2015-03-18 09:00:00,0.0,1020.6833330000001,215.275,93.78333333,6.413666667,0.44641666700000004,238.04198273333336 +2015-03-18 10:00:00,0.0,1020.6291669999999,324.2333333,78.38416667,10.17583333,0.443833333,238.0419815 +2015-03-18 11:00:00,0.0,1020.329167,400.3083333,69.54166667,12.6375,0.462,238.04200736666667 +2015-03-18 12:00:00,0.0,1020.1291669999999,435.7,60.15666667,15.5125,0.600583333,238.0427155166667 +2015-03-18 13:00:00,0.0,1019.608333,433.0583333000001,53.025,16.4375,1.309833333,238.0434002333333 +2015-03-18 14:00:00,0.0,1019.2125,359.28333330000004,50.205,17.23,1.168,238.0434261 +2015-03-18 15:00:00,0.0,1018.85,268.6416667,48.74833333,18.02583333,0.6525,238.0434261 +2015-03-18 16:00:00,0.0,1018.7,170.9916667,50.6525,17.91333333,0.8865833329999999,238.04347783333333 +2015-03-18 17:00:00,0.0,1018.6875,63.735,58.44916667,16.52333333,1.232666667,238.04337436666665 +2015-03-18 18:00:00,0.0,1018.9375,6.2795,72.28166667,14.49333333,1.155916667,238.04329679999998 +2015-03-18 19:00:00,0.0,1019.345833,0.00425,83.525,12.0525,0.8111666670000001,238.04327094999996 +2015-03-18 20:00:00,0.0,1019.720833,0.0,87.025,10.02583333,0.4325,238.04319461666668 +2015-03-18 21:00:00,0.0,1019.6916669999999,0.0,89.44166667,9.391666667,0.333916667,238.04319339999998 +2015-03-18 22:00:00,0.0,1019.670833,0.0,92.025,8.467333333,0.528,238.04319339999998 +2015-03-18 23:00:00,0.0,1019.7541669999999,0.0,95.525,5.894583333,0.29275,238.04321925 +2015-03-19 00:00:00,0.0,1019.6875,0.0,98.675,4.092833333,0.0,238.0431195 +2015-03-19 01:00:00,0.0,1019.804167,0.0,99.96666667,3.375333333,0.0,238.04311949999996 +2015-03-19 02:00:00,0.0,1019.533333,0.0,100.0,4.497,0.268416667,238.04314413333336 +2015-03-19 03:00:00,0.0,1019.716667,0.0,98.08333333,6.475083333,0.398583333,238.0431195 +2015-03-19 04:00:00,0.0,1019.858333,0.0,99.80833333,5.5795,0.4245,238.04306899999997 +2015-03-19 05:00:00,0.0,1020.0666669999999,0.0,99.975,4.759833333,0.36491666700000003,238.0430936333333 +2015-03-19 06:00:00,0.0,1020.233333,4.476416667,100.0,1.7756666669999999,0.06625,238.04332266666665 +2015-03-19 07:00:00,0.0,1020.854167,49.44416667,100.0,2.4355,0.091666667,238.04279188333336 +2015-03-19 08:00:00,0.0,1021.4416669999999,121.335,100.0,5.973083333,0.21733333300000002,238.0416539 +2015-03-19 09:00:00,0.0,1021.770833,238.2416667,89.24166667,8.214833333,1.88175,238.04155041666664 +2015-03-19 10:00:00,0.0,1021.916667,321.85,85.81666667,8.835833333,2.659916667,238.04175365 +2015-03-19 11:00:00,0.0,1021.9375,369.03333330000004,80.12916667,9.823333332999999,2.834666667,238.0426908833333 +2015-03-19 12:00:00,0.0,1021.783333,399.6166667,74.64916667,11.2175,2.615333333,238.04299386666665 +2015-03-19 13:00:00,0.0,1021.2,433.9833333000001,66.435,12.5975,2.304333333,238.04299386666665 +2015-03-19 14:00:00,0.0,1020.554167,394.4333333,61.02833333,13.75083333,2.5653333330000003,238.0430197333333 +2015-03-19 15:00:00,0.0,1020.25,313.05,55.06166667,14.37416667,2.61675,238.04301973333327 +2015-03-19 16:00:00,0.0,1019.975,205.6166667,54.815,14.40333333,2.497416667,238.04304559999994 +2015-03-19 17:00:00,0.0,1019.975,55.83666667,63.2075,13.69833333,1.786083333,238.042968 +2015-03-19 18:00:00,0.0,1020.25,12.63933333,79.95166667,10.97666667,0.523083333,238.04294213333333 +2015-03-19 19:00:00,0.0,1020.7,0.037083332999999996,90.225,7.284333332999999,0.44475,238.04284113333333 +2015-03-19 20:00:00,0.0,1020.9875,0.0,94.99166667,4.8935833330000005,0.278333333,238.0428165 +2015-03-19 21:00:00,0.0,1021.216667,0.0,97.69166667,3.731083333,0.42658333299999995,238.04279186666668 +2015-03-19 22:00:00,0.0,1021.125,0.0,98.88333333,2.5718333330000003,0.159833333,238.04279186666668 +2015-03-19 23:00:00,0.0,1021.0875,0.0,99.14166667,1.8525,0.182416667,238.04274260000003 +2015-03-20 00:00:00,0.0,1021.0125,0.0,100.0,1.5158333330000002,0.191333333,238.04274260000003 +2015-03-20 01:00:00,0.0,1021.079167,0.0,100.0,1.006916667,0.094583333,238.04263913333332 +2015-03-20 02:00:00,0.0,1020.8708330000001,0.0,100.0,0.071333333,0.02275,238.04266499999997 +2015-03-20 03:00:00,0.0,1020.5041669999999,0.0,100.0,-0.7100833329999999,0.002166667,238.04263913333332 +2015-03-20 04:00:00,0.0,1020.270833,0.0,100.0,-1.292333333,0.019083333,238.04261326666665 +2015-03-20 05:00:00,0.0,1020.3125,0.0,100.0,-2.056083333,0.0,238.04261326666665 +2015-03-20 06:00:00,0.0,1020.4333330000001,2.6716666669999998,100.0,-0.98325,0.059166667,238.04258739999997 +2015-03-20 07:00:00,0.0,1020.5583330000001,31.50916667,100.0,-0.013000000000000001,0.540333333,238.0425627666666 +2015-03-20 08:00:00,0.0,1020.95,83.9775,100.0,1.260833333,0.784416667,238.04208371666667 +2015-03-20 09:00:00,0.0,1020.9375,138.30833330000002,100.0,3.168916667,0.867833333,238.04142483333337 +2015-03-20 10:00:00,0.0,1020.516667,112.09666670000001,100.0,4.381333333,1.22075,238.04208371666667 +2015-03-20 11:00:00,0.0,1020.2458330000001,259.05,99.65833333,5.34775,1.273583333,238.04203323333334 +2015-03-20 12:00:00,0.0,1019.875,446.725,90.34166667,8.582416667,1.399416667,238.04258863333334 +2015-03-20 13:00:00,0.0,1018.85,448.36666669999994,67.605,11.55166667,0.726333333,238.04269086666667 +2015-03-20 14:00:00,0.0,1017.904167,412.0166667,52.8325,12.7775,0.780166667,238.04274260000003 +2015-03-20 15:00:00,0.0,1017.0875,339.9333333,48.45833333,13.8875,0.57175,238.04274260000003 +2015-03-20 16:00:00,0.0,1016.108333,221.525,45.0625,14.05166667,0.615166667,238.04276723333336 +2015-03-20 17:00:00,0.0,1015.65,53.29416667,52.63083333,12.97833333,0.38125,238.0428165 +2015-03-20 18:00:00,0.0,1015.1833330000001,10.74633333,77.17916667,8.867416667,0.273583333,238.04269086666667 +2015-03-20 19:00:00,0.0,1015.145833,0.047,89.25833333,5.157833333,0.042583333,238.04258739999997 +2015-03-20 20:00:00,0.0,1015.208333,0.0,94.59166667,4.1980833330000005,0.10466666699999999,238.04258739999997 +2015-03-20 21:00:00,0.0,1014.9,0.0,95.63333333,3.017666667,0.069333333,238.04258739999997 +2015-03-20 22:00:00,0.0,1014.454167,0.0,97.96666667,1.920166667,0.148166667,238.04256276666663 +2015-03-20 23:00:00,0.0,1013.904167,0.0,99.15833333,2.66125,0.27875,238.04261326666665 +2015-03-21 00:00:00,0.0,1013.3791669999999,0.0,99.9,3.194083333,0.246666667,238.04261326666665 +2015-03-21 01:00:00,0.0,1012.9416669999999,0.0,100.0,3.5565,0.3,238.04261326666665 +2015-03-21 02:00:00,0.0,1012.366667,0.0,100.0,2.828083333,0.719666667,238.04258863333334 +2015-03-21 03:00:00,0.0,1012.2458330000001,0.0,100.0,2.745,1.809333333,238.04211083333334 +2015-03-21 04:00:00,0.0,1012.154167,0.0,100.0,2.913166667,1.513916667,238.0420849666667 +2015-03-21 05:00:00,0.0,1011.508333,0.0,99.86666667,3.325416667,0.95925,238.0423879 +2015-03-21 06:00:00,0.0,1011.3375,1.33725,99.19166667,3.659416667,1.01625,238.04261326666665 +2015-03-21 07:00:00,0.0,1011.554167,44.42416667,95.45,3.706666667,1.616166667,238.04261326666665 +2015-03-21 08:00:00,0.0,1011.704167,47.0325,94.775,3.4529166669999998,1.699416667,238.04261326666665 +2015-03-21 09:00:00,0.0,1011.704167,92.42333333,94.04166667,3.91675,1.195916667,238.04256276666663 +2015-03-21 10:00:00,0.0,1011.625,124.325,92.53333333,4.51275,1.038583333,238.04256276666663 +2015-03-21 11:00:00,0.0,1011.579167,81.00583333,91.325,5.1075,0.978,238.04263913333332 +2015-03-21 12:00:00,0.0,1011.454167,135.04166669999998,88.23333333,5.6079166670000005,1.61575,238.0426391333333 +2015-03-21 13:00:00,0.0,1011.4958330000001,78.91416667,84.51666667,6.53625,2.91625,238.04258739999997 +2015-03-21 14:00:00,0.0,1011.416667,201.2666667,76.13833333,7.121833333,2.3536666669999997,238.04269086666667 +2015-03-21 15:00:00,0.0,1011.175,110.1,79.23333333,7.103083333,1.01475,238.04268963333334 +2015-03-21 16:00:00,0.0,1010.9958330000001,45.1,88.86,6.742000000000001,0.958833333,238.04264038333335 +2015-03-21 17:00:00,0.0,1010.970833,51.00833333,90.84166667,6.377583333,0.49691666700000003,238.0424630166667 +2015-03-21 18:00:00,0.0,1011.429167,3.0260000000000002,90.88333333,6.127000000000001,1.000416667,238.04258739999997 +2015-03-21 19:00:00,0.0,1012.025,0.05125,94.21666667,5.429416667000001,0.74575,238.0425381333333 +2015-03-21 20:00:00,9.96863184,1012.5666669999999,0.0,95.96666667,4.491833333,0.376,238.04253813333332 +2015-03-21 21:00:00,0.0,1013.133333,0.0,99.45,2.300416667,0.210583333,238.0424125333333 +2015-03-21 22:00:00,2.45764164,1013.904167,0.0,100.0,0.801083333,0.271833333,238.0423879 +2015-03-21 23:00:00,0.0,1014.175,0.0,100.0,0.107833333,0.14525,238.04233741666667 +2015-03-22 00:00:00,0.0,1014.929167,0.0,100.0,0.629916667,0.105583333,238.0422106 +2015-03-22 01:00:00,0.0,1015.4,0.0,100.0,1.081416667,0.099,238.04231035 +2015-03-22 02:00:00,0.0,1015.7541669999999,0.0,100.0,1.5163333330000002,0.006666666999999999,238.04216010000005 +2015-03-22 03:00:00,0.0,1015.958333,0.0,100.0,2.195833333,0.134333333,238.0417302333333 +2015-03-22 04:00:00,0.0,1016.545833,0.0,98.10833333,3.512666667,3.0194166669999998,238.04165263333334 +2015-03-22 05:00:00,0.0,1016.9333330000001,0.0,95.38333333,3.50575,3.4626666669999997,238.04170436666666 +2015-03-22 06:00:00,0.0,1017.6916669999999,0.8783333329999999,92.0,3.330666667,4.20875,238.04206033333335 +2015-03-22 07:00:00,0.0,1018.3166669999999,20.21233333,88.54166667,3.037666667,4.79325,238.0420849666667 +2015-03-22 08:00:00,0.0,1019.125,62.88583333,87.89166667,3.014333333,4.083416667,238.04203323333334 +2015-03-22 09:00:00,0.0,1019.825,78.715,88.125,3.2063333330000003,4.5048333330000006,238.0419815 +2015-03-22 10:00:00,0.0,1020.154167,148.3966667,86.23333333,3.1760833330000002,4.03325,238.04195686666665 +2015-03-22 11:00:00,0.0,1020.208333,150.3583333,86.43333333,3.108916667,4.438833333,238.0419815 +2015-03-22 12:00:00,0.0,1019.633333,261.925,83.825,3.449,4.53225,238.0420086 +2015-03-22 13:00:00,0.0,1019.3166669999999,176.58333330000002,82.88333333,3.45875,5.195583333,238.04195686666662 +2015-03-22 14:00:00,0.0,1018.9416669999999,179.8,81.27,3.710666667,4.6895,238.04195686666665 +2015-03-22 15:00:00,0.0,1018.5125,155.25,78.485,4.099083333,4.5515,238.04195686666665 +2015-03-22 16:00:00,0.0,1018.166667,145.68333330000002,77.8,4.137166667,4.229083333,238.04188296666666 +2015-03-22 17:00:00,0.0,1017.575,47.8075,78.69833333,4.084833333,3.519083333,238.04188296666666 +2015-03-22 18:00:00,0.0,1017.6916669999999,13.01441667,83.1925,3.048083333,2.846083333,238.0418337 +2015-03-22 19:00:00,0.0,1017.641667,0.129583333,91.075,1.89825,2.23325,238.04178196666666 +2015-03-22 20:00:00,0.0,1017.825,0.0,97.14166667,0.86925,1.4091666669999998,238.0418078333333 +2015-03-22 21:00:00,0.0,1017.9958330000001,0.0,98.25,-0.8866666670000001,0.278666667,238.04178196666666 +2015-03-22 22:00:00,0.0,1017.716667,0.0,99.95833333,-1.4424166669999998,0.21558333300000002,238.04167850000002 +2015-03-22 23:00:00,0.0,1017.229167,0.0,100.0,-2.4449166669999998,0.11691666699999999,238.0417302333333 +2015-03-23 00:00:00,0.0,1016.533333,0.0,100.0,-3.080833333,0.021333333,238.04167850000002 +2015-03-23 01:00:00,0.0,1016.1,0.0,100.0,-3.5404166669999997,0.018000000000000002,238.04175610000001 +2015-03-23 02:00:00,0.0,1015.679167,0.0,100.0,-3.781416667,0.028333333,238.04178196666666 +2015-03-23 03:00:00,0.0,1015.133333,0.0,100.0,-3.933416667,0.02675,238.04175610000001 +2015-03-23 04:00:00,0.0,1014.8875,0.0,100.0,-4.383833333,0.007416666999999999,238.0417302333333 +2015-03-23 05:00:00,0.0,1014.6375,0.0,100.0,-4.553166667,0.02125,238.0417302333333 +2015-03-23 06:00:00,0.0,1014.3708330000001,7.877166667000001,100.0,-4.6160000000000005,0.0005,238.04170436666666 +2015-03-23 07:00:00,0.0,1014.416667,56.41833333,100.0,-3.2595,0.0,238.04165263333334 +2015-03-23 08:00:00,0.0,1014.366667,91.31583333,99.89166667,-1.302333333,0.063416667,238.04152580000002 +2015-03-23 09:00:00,2.44102152,1014.1125,219.1416667,96.58333333,1.003666667,0.41133333299999997,238.04079299999998 +2015-03-23 10:00:00,0.0,1013.991667,239.33333330000002,91.05833333,2.41225,0.49016666700000006,238.04099620000002 +2015-03-23 11:00:00,0.0,1013.270833,366.0416667,83.23666667,4.676083333,0.684583333,238.04198273333336 +2015-03-23 12:00:00,0.0,1012.3791669999999,470.8583333000001,71.26083333,8.089666667000001,1.21525,238.0420591 +2015-03-23 13:00:00,0.0,1011.529167,464.9833333000001,66.84333333,9.396666667,2.450166667,238.04205910000005 +2015-03-23 14:00:00,0.0,1010.729167,405.2,65.815,9.7125,2.6085,238.04203323333334 +2015-03-23 15:00:00,0.0,1009.920833,245.3666667,68.57416667,9.103333333,2.6438333330000003,238.0420332333333 +2015-03-23 16:00:00,0.0,1009.179167,214.25,69.41083333,8.884166667,2.4043333330000003,238.04200736666667 +2015-03-23 17:00:00,0.0,1008.645833,67.9575,70.51916667,8.5275,1.946333333,238.04205909999996 +2015-03-23 18:00:00,0.0,1008.1833330000001,10.6975,78.12666667,6.2504166670000005,1.8574166669999999,238.0420332333333 +2015-03-23 19:00:00,0.0,1008.0666669999999,0.094916667,89.70833333,4.413583333,0.699416667,238.0419815 +2015-03-23 20:00:00,0.0,1008.033333,0.0,94.96666667,2.830083333,0.10800000000000001,238.04195686666665 +2015-03-23 21:00:00,0.0,1007.866667,0.0,97.56666667,1.5236666669999999,0.204416667,238.04195686666665 +2015-03-23 22:00:00,0.0,1007.325,0.0,99.525,0.15308333300000002,0.11175,238.0419322333333 +2015-03-23 23:00:00,0.0,1006.8166669999999,0.0,100.0,-0.9675,0.03975,238.04195686666665 +2015-03-24 00:00:00,0.0,1006.225,0.0,100.0,-1.8016666669999999,0.0125,238.04195686666662 +2015-03-24 01:00:00,0.0,1005.820833,0.0,100.0,-2.047166667,0.0035833329999999997,238.04190759999997 +2015-03-24 02:00:00,0.0,1005.429167,0.0,100.0,-2.319,0.0,238.0419815 +2015-03-24 03:00:00,0.0,1005.279167,0.0,100.0,-1.856333333,0.005583333,238.04190759999997 +2015-03-24 04:00:00,0.0,1004.9958330000001,0.0,100.0,-1.51375,0.060583332999999996,238.04190759999997 +2015-03-24 05:00:00,0.0,1004.716667,0.0,100.0,-2.343,0.06625,238.0418337 +2015-03-24 06:00:00,0.0,1004.704167,2.3370833330000003,100.0,-1.2365,0.092333333,238.0418337 +2015-03-24 07:00:00,0.0,1004.9,26.53166667,100.0,0.072583333,0.050166667000000005,238.04190759999997 +2015-03-24 08:00:00,0.0,1004.9,73.2775,99.93333333,1.54025,0.319083333,238.04185833333335 +2015-03-24 09:00:00,0.0,1004.7875,121.38333329999999,96.7,3.137333333,0.273333333,238.04195686666665 +2015-03-24 10:00:00,0.0,1004.395833,242.30833330000002,90.96666667,5.326583333,0.584666667,238.04195686666662 +2015-03-24 11:00:00,0.0,1003.908333,186.7166667,81.9825,7.798666667000001,1.4518333330000002,238.0419322333333 +2015-03-24 12:00:00,0.0,1003.770833,299.90833330000004,72.78583333,9.245,1.6955,238.04193223333334 +2015-03-24 13:00:00,0.0,1003.6125,181.725,71.31666667,9.738333333,1.535916667,238.0419322333333 +2015-03-24 14:00:00,0.0,1003.395833,137.4666667,70.7325,10.44916667,0.775083333,238.04188296666666 +2015-03-24 15:00:00,0.0,1003.1833330000001,109.03666670000001,71.45916667,10.50333333,1.0100833329999999,238.04185833333335 +2015-03-24 16:00:00,0.0,1002.858333,133.75833329999998,71.08583333,10.6175,1.4570833330000001,238.04190759999997 +2015-03-24 17:00:00,0.0,1002.5625,73.395,72.67833333,10.5525,1.397416667,238.04185833333335 +2015-03-24 18:00:00,0.0,1002.383333,15.6465,85.24916667,8.056583332999999,0.24375,238.0418337 +2015-03-24 19:00:00,0.0,1002.358333,0.08591666699999999,95.1,4.33875,0.3125,238.0418337 +2015-03-24 20:00:00,0.0,1002.233333,0.0,97.7,2.840166667,0.271583333,238.04170436666666 +2015-03-24 21:00:00,0.0,1002.2541669999999,0.0,99.275,2.907083333,0.12558333300000002,238.04170436666666 +2015-03-24 22:00:00,0.0,1002.116667,0.0,99.05833333,3.852416667,0.315,238.0417302333333 +2015-03-24 23:00:00,0.0,1001.579167,0.0,99.95833333,2.021083333,0.17800000000000002,238.04170436666672 +2015-03-25 00:00:00,0.0,1001.170833,0.0,100.0,0.6719166670000001,0.11591666699999999,238.04167850000002 +2015-03-25 01:00:00,0.0,1000.8375,0.0,100.0,0.095833333,0.15966666699999998,238.04170436666672 +2015-03-25 02:00:00,0.0,1000.625,0.0,100.0,-0.445666667,0.08516666699999999,238.04167850000002 +2015-03-25 03:00:00,0.0,1000.175,0.0,100.0,-0.547583333,0.15591666699999998,238.04173023333337 +2015-03-25 04:00:00,0.0,1000.104167,0.0,100.0,-0.14375,0.2115,238.04167850000002 +2015-03-25 05:00:00,0.0,1000.045833,0.0,100.0,0.782666667,0.12166666699999999,238.04167850000002 +2015-03-25 06:00:00,0.0,1000.0,5.56525,100.0,1.495166667,0.130333333,238.04167850000002 +2015-03-25 07:00:00,0.0,999.7833332999999,43.45166667,100.0,2.507583333,0.005916667,238.04170436666672 +2015-03-25 08:00:00,0.0,999.9541667000001,118.08583329999999,95.16666667,5.107916667,0.756083333,238.04173023333337 +2015-03-25 09:00:00,0.0,999.95,276.925,80.10416667,8.249416667,1.171,238.0418337 +2015-03-25 10:00:00,0.0,999.8916667000001,353.0,70.75583333,11.51166667,0.8815,238.0418337 +2015-03-25 11:00:00,0.0,999.625,424.975,61.78833333,14.03583333,0.959833333,238.04178196666666 +2015-03-25 12:00:00,0.0,999.4291667000001,478.775,54.92166667,15.7775,1.118416667,238.0418337 +2015-03-25 13:00:00,0.0,999.0708332999999,442.7333333000001,51.63416667,16.42333333,1.19625,238.04180659999997 +2015-03-25 14:00:00,0.0,998.5666667000002,383.1916667,51.79666667,16.88666667,0.9475,238.0418337 +2015-03-25 15:00:00,0.0,998.4,285.2583333,50.64333333,16.95583333,1.31575,238.0418078333333 +2015-03-25 16:00:00,0.0,998.4458332999999,135.8833333,61.28916667,16.15666667,2.380416667,238.04170436666666 +2015-03-25 17:00:00,0.0,999.3833332999999,64.17833333,76.30583333,12.1925,3.325416667,238.04167850000002 +2015-03-25 18:00:00,0.0,1000.083333,10.3665,83.68333333,9.283333333,3.0765833330000003,238.04160089999996 +2015-03-25 19:00:00,0.0,1000.5875,0.11325,87.41666667,7.76025,2.2800833330000003,238.04152329999997 +2015-03-25 20:00:00,0.0,1000.791667,0.0,88.93333333,6.9685,1.438916667,238.04142483333337 +2015-03-25 21:00:00,0.0,1000.7875,0.0,88.31666667,6.754083333,1.661416667,238.04144945000004 +2015-03-25 22:00:00,0.0,1001.025,0.0,87.64166667,6.698833333,1.5205,238.04142483333337 +2015-03-25 23:00:00,0.0,1001.241667,0.0,87.31666667,6.723833332999999,1.906833333,238.0413756 +2015-03-26 00:00:00,0.0,1001.291667,0.0,86.95833333,6.643666667000001,1.651583333,238.0413756 +2015-03-26 01:00:00,0.0,1001.35,0.0,87.59166667,6.5309166670000005,2.02825,238.0413756 +2015-03-26 02:00:00,0.0,1001.55,0.0,88.96666667,6.298166667,1.404333333,238.0413756 +2015-03-26 03:00:00,0.0,1001.8,0.0,88.55833333,6.145666667,1.688916667,238.0413756 +2015-03-26 04:00:00,0.0,1002.166667,0.0,88.38333333,5.968583333,1.4111666669999998,238.04129799999998 +2015-03-26 05:00:00,0.0,1002.591667,0.0,87.85,5.956833333,1.332333333,238.0412721333333 +2015-03-26 06:00:00,0.0,1003.095833,1.470166667,87.25833333,5.868583332999999,1.514583333,238.0412462666666 +2015-03-26 07:00:00,0.0,1003.445833,24.53333333,85.78333333,5.848416667,1.188583333,238.04122039999996 +2015-03-26 08:00:00,0.0,1003.8083330000001,38.56333333,85.36666667,6.127666667000001,1.561833333,238.04117113333334 +2015-03-26 09:00:00,0.0,1004.275,56.60333333,86.16666667,6.319166667,0.994166667,238.0412216333333 +2015-03-26 10:00:00,0.0,1004.295833,69.0125,90.525,6.222333333,1.46625,238.04122039999996 +2015-03-26 11:00:00,0.0,1004.1833330000001,130.3825,87.775,6.2896666670000005,1.3895,238.04122039999996 +2015-03-26 12:00:00,0.0,1004.054167,150.6583333,82.16666667,6.939,1.6865833330000002,238.0412462666666 +2015-03-26 13:00:00,0.0,1003.6375,266.7583333,75.59583333,7.983416667,1.5116666669999999,238.04122039999996 +2015-03-26 14:00:00,0.0,1003.229167,334.5583333,66.1,9.2325,1.534083333,238.04132386666666 +2015-03-26 15:00:00,0.0,1002.541667,210.68333330000002,61.09333333,10.36583333,1.5209166669999998,238.04134973333336 +2015-03-26 16:00:00,0.0,1002.204167,141.6166667,59.175,10.42666667,1.436833333,238.041298 +2015-03-26 17:00:00,0.0,1001.9958330000001,30.68583333,59.1275,10.0925,1.49225,238.04132386666666 +2015-03-26 18:00:00,0.0,1002.875,5.1825,58.23,8.98925,2.5516666669999997,238.04122039999996 +2015-03-26 19:00:00,0.0,1004.341667,0.11841666699999999,92.79166667,4.78225,2.38275,238.0410972333333 +2015-03-26 20:00:00,0.0,1004.375,0.0,96.64166667,4.134916667,0.87425,238.04117113333328 +2015-03-26 21:00:00,0.0,1004.083333,0.0,90.96666667,4.5904166669999995,1.4159166669999999,238.0410972333333 +2015-03-26 22:00:00,0.0,1004.133333,0.0,91.91666667,5.1245,1.187916667,238.04117113333334 +2015-03-26 23:00:00,0.0,1004.375,0.0,92.5,5.109333333,1.5101666669999998,238.04112186666666 +2015-03-27 00:00:00,3.1009058639999996,1004.758333,0.0,93.71666667,5.194416667,2.036333333,238.04117113333334 +2015-03-27 01:00:00,0.0,1005.291667,0.0,95.16666667,5.296,2.055333333,238.04109723333332 +2015-03-27 02:00:00,5.4243601439999996,1005.670833,0.0,97.36666667,5.172583333,1.295833333,238.0410972333333 +2015-03-27 03:00:00,0.0,1005.875,0.0,97.33333333,4.334583333,0.754833333,238.04109723333332 +2015-03-27 04:00:00,2.413249608,1006.391667,0.0,96.85833333,4.107333333,0.741083333,238.04107259999998 +2015-03-27 05:00:00,0.0,1007.0041669999999,0.002333333,95.075,4.7460833330000005,1.6174166669999999,238.04107259999998 +2015-03-27 06:00:00,0.0,1007.85,9.041166667,93.225,4.976166667,1.739916667,238.04096913333333 +2015-03-27 07:00:00,0.0,1009.020833,54.69083333,91.85,5.422999999999999,2.34575,238.04091740000004 +2015-03-27 08:00:00,0.0,1009.5875,159.35416669999998,86.89166667,6.061083332999999,3.3,238.04099499999998 +2015-03-27 09:00:00,0.0,1010.554167,99.05666667,90.325,5.704083333,2.232916667,238.04089276666664 +2015-03-27 10:00:00,0.0,1011.283333,205.1583333,84.96666667,6.566083333,2.5045,238.04091740000004 +2015-03-27 11:00:00,0.0,1011.7541669999999,458.4,75.97083333,7.9355,2.889,238.04089276666664 +2015-03-27 12:00:00,0.0,1012.3166669999999,217.275,76.47833333,8.675833333,2.545416667,238.04086813333333 +2015-03-27 13:00:00,6.576949992,1012.795833,166.2191667,79.81333333,7.755666667000001,2.266,238.0407696 +2015-03-27 14:00:00,0.0,1013.25,143.60166669999998,73.55416667,7.85475,2.0659166669999998,238.04076836666664 +2015-03-27 15:00:00,0.0,1013.741667,127.175,66.39916667,8.328916667,2.045833333,238.0407696 +2015-03-27 16:00:00,0.0,1014.366667,82.1225,64.93916667,8.789166667,2.125416667,238.04071786666668 +2015-03-27 17:00:00,0.0,1014.891667,66.78666667,64.86833333,8.8975,2.053083333,238.04071786666665 +2015-03-27 18:00:00,0.0,1015.1833330000001,12.68225,67.34333333,8.435833333,1.5901666669999999,238.0406661333333 +2015-03-27 19:00:00,0.0,1016.175,0.161083333,69.75,7.89075,1.1875,238.0405405 +2015-03-27 20:00:00,0.0,1016.904167,0.0,72.78416667,7.377083333,0.7908333329999999,238.04046659999997 +2015-03-27 21:00:00,0.0,1017.395833,0.0,77.41083333,6.485916667000001,0.379666667,238.0404912333333 +2015-03-27 22:00:00,0.0,1017.658333,0.0,86.06666667,4.958666667,0.10308333300000001,238.04046659999997 +2015-03-27 23:00:00,0.0,1017.925,0.0,89.25833333,4.399333333,0.064666667,238.04038905000002 +2015-03-28 00:00:00,0.0,1018.1,0.0,91.49166667,4.268166667,0.041333333,238.04038905000002 +2015-03-28 01:00:00,0.0,1018.475,0.0,92.95833333,4.404916667,0.134333333,238.0403115 +2015-03-28 02:00:00,0.0,1018.1875,0.0,94.775,3.9945,0.1105,238.04033735 +2015-03-28 03:00:00,0.0,1018.0041669999999,0.0,96.09166667,2.910666667,0.08816666699999999,238.0403115 +2015-03-28 04:00:00,0.0,1017.916667,0.0,94.90833333,3.223666667,0.37625,238.04023389999998 +2015-03-28 05:00:00,0.0,1017.6625,0.01975,95.78333333,3.307416667,0.24808333300000002,238.04018216666668 +2015-03-28 06:00:00,0.0,1017.458333,8.827166667,98.26666667,1.28075,0.235333333,238.0401563 +2015-03-28 07:00:00,0.0,1017.266667,32.35833333,99.93333333,2.59825,0.073166667,238.04013166666667 +2015-03-28 08:00:00,0.0,1016.966667,119.69416670000001,75.77083333,6.727416667000001,0.42458333299999995,238.0401329 +2015-03-28 09:00:00,0.0,1016.716667,231.925,61.19,8.880833333,1.9703333330000001,238.04020803333333 +2015-03-28 10:00:00,0.0,1016.204167,365.9916667,56.73,9.866666667,2.124583333,238.04018216666668 +2015-03-28 11:00:00,0.0,1015.270833,421.8,53.6525,11.00166667,2.204416667,238.04020803333333 +2015-03-28 12:00:00,0.0,1014.345833,502.90833330000004,51.95333333,12.0325,2.345916667,238.04023389999998 +2015-03-28 13:00:00,0.0,1013.1375,373.0666667,52.4125,12.86166667,2.278,238.04020803333333 +2015-03-28 14:00:00,0.0,1012.108333,221.1583333,52.44083333,12.58416667,2.47575,238.04020803333336 +2015-03-28 15:00:00,0.0,1011.4416669999999,113.61666670000001,57.5,12.05333333,2.531333333,238.04020803333336 +2015-03-28 16:00:00,0.0,1011.008333,84.18416667,70.8175,10.57666667,2.088833333,238.0401563 +2015-03-28 17:00:00,0.0,1010.3375,44.16833333,73.41,10.58,1.933,238.04018216666668 +2015-03-28 18:00:00,0.0,1009.9416669999999,8.05625,85.36666667,9.535,1.99725,238.04013166666664 +2015-03-28 19:00:00,0.0,1009.6833330000001,0.05775,89.525,8.93,1.43125,238.04010703333333 +2015-03-28 20:00:00,0.0,1009.5625,0.0,93.39166667,8.558333333,1.4758333330000002,238.04013166666667 +2015-03-28 21:00:00,0.0,1008.8375,0.0,91.2,8.948333332999999,1.42775,238.04010703333336 +2015-03-28 22:00:00,0.0,1007.641667,0.0,90.83333333,9.298333332999999,1.31425,238.04010703333336 +2015-03-28 23:00:00,0.0,1006.9375,0.0,95.45833333,9.711666667000001,1.8235833330000002,238.0401563 +2015-03-29 00:00:00,2.9626892160000002,1006.133333,0.0,96.70833333,9.755833333,2.6429166669999997,238.0401563 +2015-03-29 01:00:00,9.840085536,1004.945833,0.0,96.4,10.08083333,2.68025,238.04023390000006 +2015-03-29 02:00:00,0.0,1004.195833,0.0,93.25,10.9825,2.918916667,238.0402597666667 +2015-03-29 03:00:00,0.0,1003.6833330000001,0.0,92.06666667,11.03666667,2.171833333,238.04020803333333 +2015-03-29 04:00:00,0.0,1002.95,0.0,92.075,11.12583333,2.40425,238.04023390000006 +2015-03-29 05:00:00,0.0,1002.595833,0.017833333,88.66666667,11.10166667,2.5996666669999997,238.04020803333336 +2015-03-29 06:00:00,0.0,1002.675,5.183,85.16666667,11.14916667,2.556166667,238.0402597666667 +2015-03-29 07:00:00,0.0,1002.445833,41.29083333,82.86666667,11.16916667,2.335833333,238.04023390000006 +2015-03-29 08:00:00,0.0,1001.741667,107.1175,80.45333333,11.42833333,3.213833333,238.0403115 +2015-03-29 09:00:00,0.0,1001.283333,144.85,83.60916667,10.87416667,3.52225,238.0403115 +2015-03-29 10:00:00,3.5355353760000003,1000.6875,168.3416667,89.70833333,10.28916667,3.341333333,238.0403115 +2015-03-29 11:00:00,10.24862758,999.7791667000001,153.94166669999998,92.56666667,10.18083333,2.87275,238.04033735 +2015-03-29 12:00:00,30.68915978,998.7083332999998,103.8316667,95.16666667,9.976666667,2.843833333,238.04038905000002 +2015-03-29 13:00:00,44.77682014,997.5458332999999,101.6383333,95.34166667,10.12666667,2.96925,238.04049001666667 +2015-03-29 14:00:00,49.45521038,995.85,80.50333333,94.41666667,10.23916667,3.008166667,238.04079299999998 +2015-03-29 15:00:00,32.15156429,993.9791667000002,95.08,94.20833333,10.46166667,3.055916667,238.04119576666662 +2015-03-29 16:00:00,27.58180603,992.5125,31.5575,94.64166667,10.48,2.9641666669999998,238.04160216666665 +2015-03-29 17:00:00,66.31753034,991.05,14.815,94.85833333,10.67833333,3.404833333,238.04266503333335 +2015-03-29 18:00:00,3.9316967519999997,990.1291667000002,5.779166667,90.625,11.45833333,3.886666667,238.0434249 +2015-03-29 19:00:00,0.0,989.4541667000001,0.061916667,87.9,11.79916667,3.992416667,238.0439557333333 +2015-03-29 20:00:00,13.6912229,988.7708332999998,0.0,91.8,11.35416667,4.394,238.04458875 +2015-03-29 21:00:00,16.13190103,989.8916667000001,0.0,92.53333333,9.549666667,3.921583333,238.0465137333333 +2015-03-29 22:00:00,10.16424826,990.9083332999999,0.0,90.70833333,7.6624166670000005,3.008083333,238.05007915000002 +2015-03-29 23:00:00,6.942498383999999,991.4833332999999,0.0,84.40916667,8.529166667,2.9561666669999997,238.05139693333334 +2015-03-30 00:00:00,6.639707424,992.5625,0.0,79.66416667,8.320833333,2.54175,238.05147330000003 +2015-03-30 01:00:00,2.88253716,992.5541667000001,0.0,81.86,7.849583332999999,1.8765,238.05119493333336 +2015-03-30 02:00:00,3.354157248,992.1458332999998,0.0,91.325,7.456333333,2.717666667,238.05081320000002 +2015-03-30 03:00:00,7.358908607999999,992.2333332999999,0.0,93.86666667,6.9684166670000005,3.21175,238.0505360666667 +2015-03-30 04:00:00,0.0,992.3583332999999,0.0,86.00833333,7.088583333,2.878083333,238.05018136666664 +2015-03-30 05:00:00,6.693146088,993.4708332999999,0.053083332999999996,80.60083333,6.840833333,2.5595,238.04990553333334 +2015-03-30 06:00:00,0.0,994.1625,15.652000000000001,79.29916667,6.572916667,2.863333333,238.04972693333332 +2015-03-30 07:00:00,3.5740862160000004,995.2291667000002,59.41083333,76.32666667,7.1260833329999995,2.5825,238.04937096666666 +2015-03-30 08:00:00,3.54060132,996.0875,127.25833329999999,74.31583333,7.808333332999999,2.939166667,238.04916896666666 +2015-03-30 09:00:00,0.0,996.8375,143.0016667,81.23916667,6.5760000000000005,3.67975,238.0489153333333 +2015-03-30 10:00:00,4.370026151999999,997.8375,383.5833333,70.49666667,7.242083332999999,4.024416667,238.04866406666665 +2015-03-30 11:00:00,5.647874448,998.9583332999998,406.9,57.60833333,9.311666667,4.43325,238.04843620000005 +2015-03-30 12:00:00,0.0,999.7083332999998,366.4916667,58.10416667,8.329333333,4.582916667,238.04820958333335 +2015-03-30 13:00:00,18.12513156,1000.983333,279.14416669999997,73.71166667,7.320666667,5.548916667,238.0479313 +2015-03-30 14:00:00,7.547026128,1001.8625,335.2083333,83.5525,6.56725,4.029083333,238.04770096666664 +2015-03-30 15:00:00,0.0,1002.65,413.7083333,65.54583333,8.656,3.7625,238.04749896666667 +2015-03-30 16:00:00,0.0,1003.8625,218.0083333,53.80833333,8.845833333,4.621166667,238.04722190000004 +2015-03-30 17:00:00,0.0,1004.766667,54.97166667,54.52583333,8.230833333,3.500416667,238.0470692 +2015-03-30 18:00:00,0.0,1005.6625,20.51991667,58.13666667,7.529583333,2.430333333,238.0468438 +2015-03-30 19:00:00,0.0,1006.133333,0.3185,62.4975,6.212000000000001,1.159,238.04666396666664 +2015-03-30 20:00:00,0.0,1006.1625,0.0,66.22416667,5.391,1.3033333329999999,238.04641146666668 +2015-03-30 21:00:00,0.0,1005.704167,0.0,79.77083333,3.25125,0.3525,238.04628220000004 +2015-03-30 22:00:00,0.0,1004.508333,0.0,70.3175,5.493583332999999,1.4166666669999999,238.04608023333333 +2015-03-30 23:00:00,0.0,1003.2125,0.0,69.71583333,5.771583333,1.131,238.0460051 +2015-03-31 00:00:00,25.20432223,1001.804167,0.0,87.81083333,5.226333333,2.441333333,238.04582896666662 +2015-03-31 01:00:00,15.33652183,998.2875,0.0,96.65833333,4.10475,2.127583333,238.0458536 +2015-03-31 02:00:00,10.8873209,995.2083332999998,0.0,93.69166667,4.935,1.372916667,238.04587823333335 +2015-03-31 03:00:00,11.93762818,992.0625,0.0,93.65833333,7.895,3.32,238.0459028666667 +2015-03-31 04:00:00,19.31568715,989.8708332999998,0.0,89.58333333,10.185,4.73125,238.04572673333337 +2015-03-31 05:00:00,5.184626016,987.8916667000001,0.0,84.61666667,11.54416667,4.649333333,238.04527351666664 +2015-03-31 06:00:00,56.35194521,988.3958332999998,4.162583333,92.86666667,11.255,4.242916667,238.04557523333332 +2015-03-31 07:00:00,3.86101584,988.6333332999999,59.8775,85.09333333,11.83916667,3.83925,238.04567746666666 +2015-03-31 08:00:00,0.0,989.8541667000002,92.31333333,83.38333333,11.71166667,4.577833333,238.04635978333332 +2015-03-31 09:00:00,61.79624491,991.2625,87.855,91.36666667,10.12166667,4.633916667,238.04765046666668 +2015-03-31 10:00:00,133.36898490000002,992.55,145.1825,94.06666667,8.20975,3.6190833330000003,238.05830489999997 +2015-03-31 11:00:00,4.489090176,993.6291667000002,256.85,78.81833333,10.38666667,4.238,238.06230259999998 +2015-03-31 12:00:00,27.02962433,994.6083332999999,271.5416667,84.82083333,9.848333333,3.97825,238.06308711666665 +2015-03-31 13:00:00,0.0,995.7541667000002,302.9916667,70.92833333,10.66666667,4.206,238.06258218333332 +2015-03-31 14:00:00,22.19966933,997.4791667000002,257.375,67.355,9.7975,5.452833332999999,238.06184814999997 +2015-03-31 15:00:00,0.0,998.2083332999998,283.5666667,68.20083333,10.345,4.14125,238.06078408333335 +2015-03-31 16:00:00,0.0,999.5708332999999,211.305,55.87583333,10.615,4.879416667,238.05995028333328 +2015-03-31 17:00:00,0.0,1000.929167,71.3575,54.88916667,9.573333332999999,4.338666667,238.05931850000002 +2015-03-31 18:00:00,0.0,1002.095833,22.65041667,59.21,9.076666667000001,3.544333333,238.05875934999997 +2015-03-31 19:00:00,0.0,1002.954167,0.36825,77.435,6.567666667,3.3898333330000003,238.05820389999997 +2015-03-31 20:00:00,39.32014068,1003.854167,0.0,89.66666667,5.1435833330000005,3.524833333,238.0577494833333 +2015-03-31 21:00:00,3.712281936,1003.833333,0.0,89.16666667,4.747916667,2.4668333330000003,238.05739353333334 +2015-03-31 22:00:00,0.0,1003.7875,0.0,88.6,4.6906666669999995,2.5059166669999997,238.05698831666666 +2015-03-31 23:00:00,0.0,1004.5875,0.0,80.535,5.312,2.332833333,238.0565339 +2015-01-04 00:00:00,0.0,1005.2625,0.0,77.4075,5.138083333,2.598583333, +2015-01-04 01:00:00,0.0,1005.420833,0.0,86.55833333,4.221416667,2.47125, +2015-01-04 02:00:00,13.22578368,1005.975,0.0,91.84166667,2.349166667,3.973833333, +2015-01-04 03:00:00,22.75538042,1006.133333,0.0,95.05833333,1.6950833330000001,2.243083333, +2015-01-04 04:00:00,12.25521852,1006.720833,0.0,86.575,2.687083333,2.0670833330000002, +2015-01-04 05:00:00,6.881737032,1007.179167,0.08591666699999999,90.53333333,2.632083333,2.9481666669999997, +2015-01-04 06:00:00,3.307060752,1007.8083330000001,13.6995,88.075,2.733333333,2.994333333, +2015-01-04 07:00:00,6.696314256,1009.116667,40.83333333,81.185,3.5510833330000002,2.724416667, +2015-01-04 08:00:00,0.0,1010.170833,76.06333333,81.1925,3.995,3.007666667, +2015-01-04 09:00:00,3.346404672,1011.225,164.9,86.025,3.9725,2.6869166669999998, +2015-01-04 10:00:00,0.0,1012.258333,252.05833330000002,90.95,5.21075,3.186583333, +2015-01-04 11:00:00,0.0,1012.5375,408.3333333,85.63333333,5.728166667000001,3.306083333, +2015-01-04 12:00:00,0.0,1012.6875,350.65,84.49833333,6.2455,3.25625, +2015-01-04 13:00:00,13.21222058,1012.670833,252.16916669999998,92.15,4.7685,2.80625, +2015-01-04 14:00:00,0.0,1012.320833,385.7666667,81.84,6.2445,3.127416667, +2015-01-04 15:00:00,16.03813039,1012.3791669999999,295.41,74.6825,7.080416667000001,3.702416667, +2015-01-04 16:00:00,0.0,1012.5625,187.2491667,81.3675,5.196833333,3.0318333330000002, +2015-01-04 17:00:00,28.23929606,1012.7875,36.4025,91.4,3.5158333330000002,3.071583333, +2015-01-04 18:00:00,3.05793156,1013.329167,13.25925,89.03333333,3.875166667,2.6189999999999998, +2015-01-04 19:00:00,0.0,1013.4125,0.437833333,87.50833333,3.412666667,1.330416667, +2015-01-04 20:00:00,0.0,1013.4416669999999,0.0,85.25416667,3.270166667,1.29825, +2015-01-04 21:00:00,0.0,1013.35,0.0,80.67,3.805166667,2.0924166669999997, +2015-01-04 22:00:00,0.0,1012.645833,0.0,87.675,3.68,1.772583333, +2015-01-04 23:00:00,0.0,1011.7,0.0,83.275,4.579083333,2.806916667, +2015-02-04 00:00:00,0.0,1010.7875,0.0,85.06666667,4.7780000000000005,3.39125, +2015-02-04 01:00:00,0.0,1009.8,0.0,85.125,4.82675,3.282666667, +2015-02-04 02:00:00,0.0,1008.7458330000001,0.0,88.90833333,4.7140833330000005,3.140583333, +2015-02-04 03:00:00,3.3299622,1007.475,0.0,93.59166667,4.199083333,2.8561666669999997, +2015-02-04 04:00:00,3.4783404960000004,1006.229167,0.0,95.875,3.866,2.7991666669999997, +2015-02-04 05:00:00,21.93518599,1005.0041669999999,0.043666667,96.4,3.876833333,3.03225, +2015-02-04 06:00:00,36.87503566,1004.1,5.240666667,97.35,3.578833333,3.342916667, +2015-02-04 07:00:00,10.83129074,1003.3875,50.35083333,97.56666667,3.7753333330000003,3.0550833330000002, +2015-02-04 08:00:00,11.09443865,1003.325,81.985,97.1,4.0945,3.2839166669999997, +2015-02-04 09:00:00,6.650227056,1004.375,119.76666670000002,96.24166667,4.4135,2.5331666669999997, +2015-02-04 10:00:00,3.7195497360000003,1005.666667,293.90833330000004,87.93333333,5.5701666670000005,4.2605833330000005, +2015-02-04 11:00:00,6.629856672000001,1006.929167,311.16833330000003,83.31666667,5.360166667,4.546583333, +2015-02-04 12:00:00,7.01177832,1008.0125,429.38333330000006,75.0925,5.709,4.828166667, +2015-02-04 13:00:00,0.0,1009.0625,452.95,64.80583333,6.725583332999999,5.89075, +2015-02-04 14:00:00,4.47808932,1009.891667,375.9166667,67.69,6.783833333,4.801416667, +2015-02-04 15:00:00,0.0,1010.625,196.1166667,60.71666667,6.82875,5.56775, +2015-02-04 16:00:00,0.0,1011.575,129.2866667,59.71,6.94525,5.3075, +2015-02-04 17:00:00,0.0,1012.616667,40.9425,63.70083333,6.100166667000001,4.704583333, +2015-02-04 18:00:00,0.0,1013.445833,22.76725,57.8225,6.4211666670000005,3.007916667, +2015-02-04 19:00:00,0.0,1014.295833,0.591916667,60.08666667,5.53325,2.0780000000000003, +2015-02-04 20:00:00,0.0,1015.225,0.0,65.0325,4.281833333,0.87075, +2015-02-04 21:00:00,0.0,1015.858333,0.0,71.24416667,3.01375,0.482833333, +2015-02-04 22:00:00,0.0,1016.295833,0.0,76.71666667,2.206666667,0.458583333, +2015-02-04 23:00:00,0.0,1016.554167,0.0,88.13333333,0.250916667,0.136166667, +2015-03-04 00:00:00,0.0,1016.6833330000001,0.0,93.14166667,0.208666667,0.320833333,238.0080193333333 +2015-03-04 01:00:00,0.0,1017.2,0.0,86.19166667,-0.061083333,0.24475,238.00835266666664 +2015-03-04 02:00:00,0.0,1017.1916669999999,0.0,88.625,2.013666667,1.104833333,238.00868599999998 +2015-03-04 03:00:00,0.0,1017.425,0.0,88.4,2.678,1.4380000000000002,238.00868599999998 +2015-03-04 04:00:00,0.0,1017.458333,0.0,88.91666667,2.6800833330000002,1.4509999999999998,238.00868599999998 +2015-03-04 05:00:00,0.0,1017.333333,0.36825,91.21666667,2.25925,1.4079166669999998,238.00868599999998 +2015-03-04 06:00:00,0.0,1017.35,14.80375,94.13333333,1.470666667,1.2046666670000001,238.010086 +2015-03-04 07:00:00,0.0,1017.7,69.74583333,92.50833333,2.3584166669999997,1.632916667,238.01043600000003 +2015-03-04 08:00:00,0.0,1017.4416669999999,139.9833333,82.89583333,3.789583333,1.6698333330000001,238.01078600000002 +2015-03-04 09:00:00,0.0,1017.158333,244.1683333,77.12,4.790083333,1.606916667,238.01078600000002 +2015-03-04 10:00:00,0.0,1016.720833,399.5416667,72.47583333,5.353916667,1.4451666669999998,238.011786 +2015-03-04 11:00:00,0.0,1016.195833,477.4333333000001,67.535,7.082333332999999,1.44725,238.01245266666663 +2015-03-04 12:00:00,0.0,1015.3791669999999,422.1916666999999,62.16166667,8.01475,2.1815833330000003,238.01278599999998 +2015-03-04 13:00:00,0.0,1014.483333,467.21666669999996,54.1925,9.0075,1.836416667,238.01383599999997 +2015-03-04 14:00:00,0.0,1013.670833,409.4916667,45.98166667,9.990833333,2.026333333,238.01488599999996 +2015-03-04 15:00:00,0.0,1012.770833,342.53333330000004,45.51916667,11.22166667,1.18725,238.01555266666665 +2015-03-04 16:00:00,0.0,1012.0625,277.3583333,42.8075,11.6475,0.649083333,238.01688599999997 +2015-03-04 17:00:00,0.0,1011.541667,59.99166667,43.29666667,10.74,0.8215,238.017936 +2015-03-04 18:00:00,0.0,1011.241667,24.53608333,60.155,8.418416667,1.283416667,238.01758600000002 +2015-03-04 19:00:00,0.0,1011.220833,0.62975,75.55833333,7.2089166670000004,0.7343333329999999,238.01863600000001 +2015-03-04 20:00:00,0.0,1011.345833,0.0,84.5,6.364583333,0.201833333,238.01863600000001 +2015-03-04 21:00:00,0.0,1011.345833,0.0,88.275,5.913333333,0.1115,238.01863600000001 +2015-03-04 22:00:00,0.0,1011.225,0.0,88.33333333,6.22975,0.7775833329999999,238.01863600000001 +2015-03-04 23:00:00,0.0,1011.1833330000001,0.0,79.31583333,6.3274166670000005,2.008,238.018986 +2015-04-04 00:00:00,0.0,1010.791667,0.0,77.27,5.6495,0.5781666670000001,238.04868870000004 +2015-04-04 01:00:00,0.0,1010.4333330000001,0.0,83.39166667,5.375833332999999,0.8121666670000001,238.0485877 +2015-04-04 02:00:00,0.0,1009.9333330000001,0.0,86.99166667,5.19275,0.6759999999999999,238.0485877 +2015-04-04 03:00:00,0.0,1009.8625,0.0,78.66583333,5.13175,1.176,238.04863820000003 +2015-04-04 04:00:00,0.0,1009.733333,0.0,77.76833333,4.906083333,1.187833333,238.04871333333335 +2015-04-04 05:00:00,0.0,1009.5375,0.08883333300000001,78.54416667,4.796083333,2.089333333,238.04871333333335 +2015-04-04 06:00:00,0.0,1009.733333,8.33775,79.59416667,4.572666667,1.6546666669999999,238.04866160000003 +2015-04-04 07:00:00,0.0,1009.85,22.31666667,90.6,4.240583333,1.134416667,238.04866160000003 +2015-04-04 08:00:00,3.0040266719999997,1010.141667,58.63833333,90.06666667,4.351333333,1.9831666669999999,238.04861233333335 +2015-04-04 09:00:00,0.0,1010.279167,101.8875,86.55,4.588833333,1.4775,238.0485138 +2015-04-04 10:00:00,0.0,1010.454167,165.5,80.61333333,5.490666667,0.967583333,238.0485138 +2015-04-04 11:00:00,0.0,1010.654167,307.1833333,74.4775,6.346916667,2.113666667,238.0484620666667 +2015-04-04 12:00:00,0.0,1010.608333,376.4916667,65.90083333,7.41375,2.4169166669999997,238.04833396666666 +2015-04-04 13:00:00,0.0,1010.4416669999999,256.15,62.94333333,7.803333332999999,3.335333333,238.04826006666667 +2015-04-04 14:00:00,0.0,1010.320833,295.25,65.96333333,7.526666667000001,4.596416667,238.04823543333336 +2015-04-04 15:00:00,0.0,1010.654167,386.90833330000004,54.48583333,7.959416667,4.395583333,238.04815910000002 +2015-04-04 16:00:00,0.0,1010.883333,246.525,50.92666667,7.6175,4.093,238.0480557 +2015-04-04 17:00:00,0.0,1011.270833,88.80583333,52.74833333,7.258166667,4.0975,238.04803106666668 +2015-04-04 18:00:00,0.0,1011.75,39.23416667,54.17916667,6.451166667000001,3.342333333,238.04790789999996 +2015-04-04 19:00:00,0.0,1012.429167,1.4424166669999998,66.73083333,4.531666667,1.56925,238.0477785666667 +2015-04-04 20:00:00,0.0,1013.295833,0.0,83.39166667,1.83125,0.245416667,238.04764923333335 +2015-04-04 21:00:00,0.0,1013.729167,0.0,87.8,0.40416666700000003,0.003916667,238.04759750000002 +2015-04-04 22:00:00,0.0,1014.320833,0.0,89.775,0.194916667,0.145416667,238.04757286666668 +2015-04-04 23:00:00,0.0,1014.733333,0.0,89.64166667,1.656166667,0.39533333299999995,238.04747433333333 +2015-05-04 00:00:00,0.0,1014.945833,0.0,93.21666667,0.961583333,0.42991666700000003, +2015-05-04 01:00:00,0.0,1015.15,0.0,96.3,0.321583333,0.054416667, +2015-05-04 02:00:00,0.0,1015.241667,0.0,98.09166667,-0.940333333,0.049666667000000005, +2015-05-04 03:00:00,0.0,1015.479167,0.0,99.36666667,-1.604916667,0.0, +2015-05-04 04:00:00,0.0,1015.854167,0.0,99.90833333,-2.08275,0.006416666999999999, +2015-05-04 05:00:00,0.0,1016.541667,0.470916667,100.0,-2.502166667,0.01875, +2015-05-04 06:00:00,0.0,1017.0875,21.22,100.0,-2.278166667,0.0, +2015-05-04 07:00:00,0.0,1017.979167,65.7225,99.5,1.222166667,0.033083333, +2015-05-04 08:00:00,0.0,1018.6875,120.8825,83.80166667,3.777333333,0.982583333, +2015-05-04 09:00:00,0.0,1019.1833330000001,368.71666669999996,72.5025,5.504166667000001,1.60625, +2015-05-04 10:00:00,0.0,1019.35,436.58333330000005,56.25916667,6.84375,3.110666667, +2015-05-04 11:00:00,0.0,1019.329167,577.2333332999999,49.42333333,7.237083332999999,3.9105, +2015-05-04 12:00:00,0.0,1019.095833,436.36666669999994,51.54333333,7.832000000000001,2.799416667, +2015-05-04 13:00:00,0.0,1018.9416669999999,473.8583333000001,44.59916667,8.764166667000001,3.69025, +2015-05-04 14:00:00,0.0,1018.8166669999999,397.3,40.1875,9.318333333,3.349333333, +2015-05-04 15:00:00,0.0,1018.758333,242.125,40.19166667,9.463333333,3.5695, +2015-05-04 16:00:00,0.0,1018.833333,248.58333330000002,42.96583333,9.241666667,3.415833333, +2015-05-04 17:00:00,0.0,1019.008333,92.04416667,45.49583333,8.9075,2.653916667, +2015-05-04 18:00:00,0.0,1019.404167,20.62908333,57.59916667,7.845333332999999,1.272333333, +2015-05-04 19:00:00,0.0,1019.758333,0.901833333,78.40666667,5.528083333,0.6655, +2015-05-04 20:00:00,0.0,1020.0666669999999,0.0,87.7,2.27675,0.105, +2015-05-04 21:00:00,0.0,1020.3166669999999,0.0,90.01666667,0.52375,0.095083333, +2015-05-04 22:00:00,0.0,1020.445833,0.0,89.85,-0.704416667,0.008, +2015-05-04 23:00:00,0.0,1020.5,0.0,90.625,-1.355083333,0.04425, +2015-06-04 00:00:00,0.0,1020.625,0.0,89.99166667,-1.939416667,0.00475,237.78603508333333 +2015-06-04 01:00:00,0.0,1020.658333,0.0,91.44166667,-2.318916667,0.0,237.78948261666667 +2015-06-04 02:00:00,0.0,1020.5625,0.0,91.24166667,-1.393666667,0.010416667,237.78965498333332 +2015-06-04 03:00:00,0.0,1020.425,0.0,92.075,-0.519083333,0.036333332999999995,237.78965498333332 +2015-06-04 04:00:00,0.0,1020.283333,0.0,86.95,-0.198583333,0.008666667,237.79068926666665 +2015-06-04 05:00:00,0.0,1020.5375,0.311416667,87.70833333,0.15766666699999998,0.051916667,237.79155116666672 +2015-06-04 06:00:00,0.0,1021.0666669999999,15.74733333,82.67083333,0.5591666670000001,0.110083333,237.7925853833333 +2015-06-04 07:00:00,0.0,1021.320833,45.21583333,78.07833333,2.2565,0.272166667,237.792413 +2015-06-04 08:00:00,0.0,1021.9416669999999,103.0725,73.42,3.4160000000000004,0.711833333,237.78775884999996 +2015-06-04 09:00:00,0.0,1022.35,137.3833333,71.8725,5.054666667,0.754,237.78103616666667 +2015-06-04 10:00:00,0.0,1022.9333330000001,167.825,69.0825,5.311,1.534416667,237.77414109999995 +2015-06-04 11:00:00,0.0,1023.383333,311.2916667,63.04,6.619166667000001,1.4591666669999999,237.76810790000002 +2015-06-04 12:00:00,0.0,1023.75,255.525,66.70083333,7.048416667000001,2.597,237.76672888333337 +2015-06-04 13:00:00,0.0,1023.95,277.1833333,68.05416667,7.76775,2.618083333,237.76293660000002 +2015-06-04 14:00:00,0.0,1024.216667,402.1333333,61.14333333,8.680833332999999,3.778083333,237.76259185 +2015-06-04 15:00:00,0.0,1024.379167,320.5083333,55.50916667,8.906666667,3.32875,237.75811005 +2015-06-04 16:00:00,0.0,1024.633333,214.5783333,54.86083333,9.426666667000001,3.01425,237.75707580000002 +2015-06-04 17:00:00,0.0,1025.091667,65.1225,56.31083333,9.285833333,2.573583333,237.75948906666667 +2015-06-04 18:00:00,0.0,1025.733333,35.50166667,60.3525,8.439,1.500583333,237.7591443 +2015-06-04 19:00:00,0.0,1026.370833,1.52,82.02916667,4.61025,0.33825,237.75793766666666 +2015-06-04 20:00:00,0.0,1027.2,0.0,91.175,1.6471666669999998,0.225166667,237.76000618333333 +2015-06-04 21:00:00,0.0,1027.816667,0.0,93.64166667,0.303583333,0.135,237.76310898333335 +2015-06-04 22:00:00,0.0,1028.4125,0.0,95.375,-0.7245,0.035333333,237.76448800000003 +2015-06-04 23:00:00,0.0,1029.120833,0.0,96.25833333,-1.4850833330000002,0.01275,237.76896980000004 +2015-07-04 00:00:00,0.0,1029.791667,0.0,97.36666667,-1.868166667,0.031916667,237.59228735 +2015-07-04 01:00:00,0.0,1030.041667,0.0,97.80833333,-2.524166667,0.0,237.59814189999997 +2015-07-04 02:00:00,0.0,1030.1625,0.0,98.39166667,-2.979916667,0.0,237.60218428333334 +2015-07-04 03:00:00,0.0,1030.216667,0.0,98.88333333,-3.32625,0.0,237.60594791666662 +2015-07-04 04:00:00,0.0,1030.433333,0.0,99.475,-3.62675,0.0375,237.6085964166667 +2015-07-04 05:00:00,0.0,1030.775,0.6925,99.71666667,-3.951833333,0.042083333,237.6116630666667 +2015-07-04 06:00:00,0.0,1031.283333,15.87208333,99.89166667,-3.41425,0.024083333,237.6119418666667 +2015-07-04 07:00:00,0.0,1031.895833,80.83083333,97.33333333,-0.37858333299999997,0.134,237.6134751666667 +2015-07-04 08:00:00,0.0,1032.033333,154.1,82.60833333,3.047333333,0.604166667,237.61180245000003 +2015-07-04 09:00:00,0.0,1032.175,330.1833333,72.3175,6.1711666670000005,0.75,237.60162673333332 +2015-07-04 10:00:00,0.0,1032.129167,469.1916666999999,55.15416667,9.346916667,1.309083333,237.58852373333335 +2015-07-04 11:00:00,0.0,1031.854167,558.175,48.90166667,10.84416667,1.163,237.57458436666664 +2015-07-04 12:00:00,0.0,1031.316667,533.4833333,44.55,11.8925,1.381,237.56859043333336 +2015-07-04 13:00:00,0.0,1030.7125,462.5583333000001,46.22333333,12.5575,1.74125,237.56482679999996 +2015-07-04 14:00:00,0.0,1029.958333,341.3083333,46.09083333,12.81416667,1.7045833330000002,237.56245709999996 +2015-07-04 15:00:00,0.0,1029.254167,221.4,45.67416667,12.82416667,1.5845,237.55952985 +2015-07-04 16:00:00,0.0,1028.7375,155.675,43.16,12.74583333,1.3995,237.55855408333332 +2015-07-04 17:00:00,0.0,1028.483333,92.02833333,44.24,12.48,1.038666667,237.55716013333333 +2015-07-04 18:00:00,0.0,1028.2375,35.92833333,46.4125,10.85666667,0.846166667,237.5581359 +2015-07-04 19:00:00,0.0,1028.3625,1.3885833330000001,74.49833333,6.288666667,0.18233333300000001,237.55980863333332 +2015-07-04 20:00:00,0.0,1028.491667,0.0,85.92166667,3.406666667,0.010333333,237.56022681666664 +2015-07-04 21:00:00,0.0,1028.608333,0.0,89.925,2.2975,0.0,237.56245709999996 +2015-07-04 22:00:00,0.0,1028.570833,0.0,90.54166667,2.10775,0.051416667,237.56691768333334 +2015-07-04 23:00:00,0.0,1028.225,0.0,91.525,1.7283333330000001,0.036666667,237.56928739999998 +2015-08-04 00:00:00,0.0,1028.233333,0.0,93.49166667,1.61425,0.08783333300000001,237.45958455000002 +2015-08-04 01:00:00,0.0,1028.158333,0.0,96.71666667,1.142666667,0.068333333,237.46306941666668 +2015-08-04 02:00:00,0.0,1027.95,0.0,97.28333333,0.65975,0.016333333000000002,237.4680876 +2015-08-04 03:00:00,0.0,1027.608333,0.0,98.0,0.021416667,0.007666666999999999,237.47143303333334 +2015-08-04 04:00:00,0.0,1027.4625,0.0,98.73333333,-0.322833333,0.05,237.47505728333337 +2015-08-04 05:00:00,0.0,1027.479167,0.5628333329999999,98.375,-0.643416667,0.08491666699999999,237.47812394999997 +2015-08-04 06:00:00,0.0,1027.908333,23.62975,97.71666667,-0.541666667,0.013833333,237.47993605000002 +2015-08-04 07:00:00,0.0,1028.2,86.52833333,91.5,1.7658333330000002,0.040166667,237.48216634999997 +2015-08-04 08:00:00,0.0,1028.483333,141.3833333,81.89333333,6.2423333329999995,0.8625,237.4841178666667 +2015-08-04 09:00:00,0.0,1028.641667,288.6166667,78.05083333,7.83725,1.46125,237.47951786666667 +2015-08-04 10:00:00,0.0,1028.804167,421.1833333000001,76.09333333,8.802583333,2.157083333,237.46864518333334 +2015-08-04 11:00:00,0.0,1028.7125,503.25,73.71833333,10.35416667,1.486,237.45637851666672 +2015-08-04 12:00:00,0.0,1028.575,536.4,71.80333333,11.4225,1.8886666669999999,237.44550581666667 +2015-08-04 13:00:00,0.0,1028.333333,546.75,68.31666667,12.77333333,1.096833333,237.44243916666667 +2015-08-04 14:00:00,0.0,1027.925,501.54166669999995,64.17333333,13.92166667,1.274583333,237.44508765 +2015-08-04 15:00:00,0.0,1027.458333,417.825,59.08,15.01166667,0.9228333329999999,237.44745733333332 +2015-08-04 16:00:00,0.0,1026.8625,250.3916667,56.65583333,15.49083333,0.905333333,237.45512396666666 +2015-08-04 17:00:00,0.0,1026.241667,68.625,57.74416667,15.3325,0.66275,237.46125729999997 +2015-08-04 18:00:00,0.0,1026.158333,35.425,61.90333333,13.8625,0.6579166670000001,237.46585728333332 +2015-08-04 19:00:00,0.0,1026.391667,1.680083333,86.3525,9.41175,0.13225,237.4705966833333 +2015-08-04 20:00:00,0.0,1026.591667,0.0,93.225,6.52275,0.147,237.47547545 +2015-08-04 21:00:00,0.0,1026.4875,0.0,96.725,5.204833333,0.212416667,237.4789603 +2015-08-04 22:00:00,0.0,1026.454167,0.0,99.025,4.1985,0.12733333300000002,237.48272391666663 +2015-08-04 23:00:00,0.0,1026.3375,0.0,100.0,4.264583333,0.34033333299999996,237.48704515 +2015-09-04 00:00:00,0.0,1026.1625,0.0,100.0,3.720333333,0.166583333,237.5636843 +2015-09-04 01:00:00,0.0,1025.766667,0.0,100.0,3.185666667,0.1605,237.56663135 +2015-09-04 02:00:00,0.0,1025.508333,0.0,100.0,2.3385833330000003,0.12616666699999998,237.56694156666666 +2015-09-04 03:00:00,0.0,1025.308333,0.0,100.0,1.788083333,0.08325,237.56864776666666 +2015-09-04 04:00:00,0.0,1024.916667,0.0,100.0,1.130916667,0.08575,237.57050901666665 +2015-09-04 05:00:00,0.0,1024.804167,1.003333333,100.0,0.55475,0.035083333,237.5701988 +2015-09-04 06:00:00,0.0,1024.933333,23.06483333,100.0,0.793416667,0.039,237.5722152333333 +2015-09-04 07:00:00,0.0,1025.091667,84.15333333,100.0,4.04375,0.131666667,237.57237031666668 +2015-09-04 08:00:00,0.0,1024.758333,136.1166667,95.49166667,7.79175,0.7305,237.57314586666666 +2015-09-04 09:00:00,0.0,1024.520833,300.55,84.12166667,10.44166667,0.8545,237.57252543333334 +2015-09-04 10:00:00,0.0,1024.025,446.46666669999996,77.9875,12.6725,1.3395,237.57159478333332 +2015-09-04 11:00:00,0.0,1023.391667,529.5166667,65.89916667,15.04083333,1.70225,237.5700437 +2015-09-04 12:00:00,0.0,1022.783333,554.275,61.19583333,16.63583333,2.012916667,237.56414961666667 +2015-09-04 13:00:00,0.0,1022.258333,546.6583333,57.9825,17.67583333,1.628333333,237.56042703333333 +2015-09-04 14:00:00,0.0,1021.8166669999999,502.875,56.16083333,18.22833333,1.4445833330000002,237.55701465 +2015-09-04 15:00:00,0.0,1021.233333,421.04166669999995,53.4925,19.02083333,0.904666667,237.55143075 +2015-09-04 16:00:00,0.0,1020.525,260.375,53.82416667,18.92416667,0.849833333,237.55112055000004 +2015-09-04 17:00:00,0.0,1019.904167,85.65833333,55.91833333,17.77833333,1.316083333,237.54832858333336 +2015-09-04 18:00:00,0.0,1019.541667,40.005,59.95416667,15.2375,2.143166667,237.54786325 +2015-09-04 19:00:00,0.0,1019.5625,2.1005833330000003,81.04583333,11.6775,1.26025,237.54584683333334 +2015-09-04 20:00:00,0.0,1019.75,0.0,89.63333333,9.289166667,0.17600000000000002,237.54522640000002 +2015-09-04 21:00:00,0.0,1019.6,0.0,89.60833333,7.93675,0.036833332999999996,237.54615705000003 +2015-09-04 22:00:00,0.0,1019.475,0.0,95.25,6.81975,0.02,237.54538153333328 +2015-09-04 23:00:00,0.0,1019.475,0.0,98.70833333,5.63975,0.094916667,237.54631216666667 +2015-10-04 00:00:00,0.0,1019.333333,0.0,99.65,4.8783333330000005,0.0725,237.5767133666667 +2015-10-04 01:00:00,0.0,1019.0583330000001,0.0,99.96666667,4.243916667,0.078416667,237.57748889999996 +2015-10-04 02:00:00,0.0,1018.8,0.0,100.0,3.3545,0.07075,237.57779913333331 +2015-10-04 03:00:00,0.0,1018.508333,0.0,100.0,2.792333333,0.05925,237.57966041666666 +2015-10-04 04:00:00,0.0,1018.3708330000001,0.0,100.0,2.216333333,0.010333333,237.58136661666666 +2015-10-04 05:00:00,0.0,1018.4416669999999,1.4298333330000002,100.0,1.7463333330000002,0.0,237.58183193333332 +2015-10-04 06:00:00,0.0,1018.554167,22.74333333,100.0,1.91975,0.0,237.58059106666664 +2015-10-04 07:00:00,0.0,1018.633333,88.7725,100.0,5.433916667,0.066916667,237.58090126666664 +2015-10-04 08:00:00,0.0,1018.616667,115.19666670000001,93.05833333,8.95225,0.5329999999999999,237.58090126666664 +2015-10-04 09:00:00,0.0,1018.520833,330.6866667,80.8775,12.30083333,0.51375,237.58059106666667 +2015-10-04 10:00:00,0.0,1018.275,466.74166669999994,71.14416667,15.14916667,0.870083333,237.58105638333333 +2015-10-04 11:00:00,0.0,1017.6916669999999,524.4166667,62.4675,18.58166667,0.700333333,237.58245234999995 +2015-10-04 12:00:00,0.0,1017.125,543.0833332999999,53.69083333,19.73916667,1.5138333330000002,237.58012571666666 +2015-10-04 13:00:00,0.0,1016.454167,548.2666667000001,49.09833333,20.69666667,1.51075,237.58012573333335 +2015-10-04 14:00:00,0.0,1015.675,505.8166666999999,41.2925,21.09166667,1.667416667,237.57857464999998 +2015-10-04 15:00:00,0.0,1015.029167,432.6083333000001,32.84916667,22.33833333,1.062666667,237.57702360000005 +2015-10-04 16:00:00,0.0,1014.291667,282.825,32.89,22.50583333,1.196583333,237.5757827166667 +2015-10-04 17:00:00,0.0,1013.8625,76.62833333,33.23833333,20.92,1.626166667,237.57671335 +2015-10-04 18:00:00,0.0,1013.533333,35.6875,51.6375,17.65416667,1.5330000000000001,237.57686845 +2015-10-04 19:00:00,0.0,1013.695833,2.155,69.54,13.57583333,1.032916667,237.57857463333332 +2015-10-04 20:00:00,0.0,1013.6916669999999,0.0,84.335,11.01916667,0.38058333299999997,237.5801257333333 +2015-10-04 21:00:00,0.0,1013.575,0.0,67.8975,9.51,0.402916667,237.58214214999998 +2015-10-04 22:00:00,0.0,1013.483333,0.0,56.895,10.23916667,0.978166667,237.58384835 +2015-10-04 23:00:00,0.0,1013.5375,0.0,38.165,14.18333333,1.61975,237.58570963333332 +2015-11-04 00:00:00,0.0,1013.525,0.0,47.04833333,13.8225,1.177583333,237.72845400000003 +2015-11-04 01:00:00,0.0,1013.429167,0.0,68.0175,7.650666667,0.038083333,237.72953858333335 +2015-11-04 02:00:00,0.0,1013.1125,0.0,84.65,5.804416667000001,0.016666667,237.7272144833333 +2015-11-04 03:00:00,0.0,1013.204167,0.0,89.48333333,4.692583333,0.09783333300000001,237.7272144833333 +2015-11-04 04:00:00,0.0,1013.1375,0.0,92.21666667,3.9514166669999997,0.042,237.72674965 +2015-11-04 05:00:00,0.0,1013.283333,0.959583333,87.31666667,3.742416667,0.031416667,237.7278342333333 +2015-11-04 06:00:00,0.0,1013.716667,26.92583333,87.525,4.404833333,0.0,237.72674964999996 +2015-11-04 07:00:00,0.0,1014.1916669999999,52.71916667,82.26083333,6.8288333329999995,0.01625,237.7276793 +2015-11-04 08:00:00,0.0,1014.641667,119.89583329999999,66.11333333,11.1825,0.9205,237.72659473333337 +2015-11-04 09:00:00,0.0,1015.158333,272.55,60.9225,15.97416667,2.672333333,237.72736939999996 +2015-11-04 10:00:00,0.0,1015.333333,229.525,62.8375,15.96166667,2.076083333,237.72520024999997 +2015-11-04 11:00:00,0.0,1015.345833,204.93333330000002,60.38666667,16.92,2.033666667,237.72612990000002 +2015-11-04 12:00:00,0.0,1015.279167,147.65083330000002,64.8225,15.8075,2.656916667,237.72783421666668 +2015-11-04 13:00:00,0.0,1015.6625,169.4,67.50833333,15.64916667,2.6375,237.72705955 +2015-11-04 14:00:00,0.0,1016.104167,202.375,75.78,14.44583333,2.336083333,237.72736945 +2015-11-04 15:00:00,0.0,1016.3083330000001,171.8225,71.03666667,15.51666667,2.3025,237.72721449999997 +2015-11-04 16:00:00,3.4429790639999998,1016.525,183.55333330000002,73.66,15.6675,2.69925,237.72876388333336 +2015-11-04 17:00:00,0.0,1016.858333,63.29,71.75166667,15.04083333,2.775583333,237.72814414999996 +2015-11-04 18:00:00,0.0,1017.216667,11.52583333,74.33666667,14.24916667,2.455833333,237.72984845 +2015-11-04 19:00:00,0.0,1017.954167,1.9359166669999999,75.355,13.4675,1.940666667,237.72938363333333 +2015-11-04 20:00:00,0.0,1019.2,0.0,78.23166667,12.94333333,1.8728333330000002,237.7292287 +2015-11-04 21:00:00,0.0,1020.333333,0.0,89.0025,11.445,1.9265833330000002,237.73000338333335 +2015-11-04 22:00:00,0.0,1021.4,0.0,92.16666667,10.35166667,1.133416667,237.7315528 +2015-11-04 23:00:00,0.0,1022.466667,0.0,83.03416667,10.08083333,1.072833333,237.72953856666663 +2015-12-04 00:00:00,0.0,1023.583333,0.0,72.48083333,9.070833333,2.1091666669999998,238.08167163333334 +2015-12-04 01:00:00,0.0,1023.979167,0.0,71.24333333,8.161,1.099666667,238.08238744999997 +2015-12-04 02:00:00,0.0,1024.125,0.0,85.47416667,6.377583333,0.34775,238.07862943333336 +2015-12-04 03:00:00,0.0,1024.4,0.0,94.18333333,3.620916667,0.111666667,238.07612408333333 +2015-12-04 04:00:00,0.0,1024.791667,0.0,97.26666667,1.68125,0.107583333,238.07522931666665 +2015-12-04 05:00:00,0.0,1025.15,1.2279166670000001,97.58333333,2.19225,0.03975,238.0718292 +2015-12-04 06:00:00,0.0,1025.316667,33.3,98.33333333,2.275833333,0.09066666699999999,238.06753431666667 +2015-12-04 07:00:00,0.0,1025.808333,102.4408333,89.26666667,4.698333333,0.061416667,238.06628164999998 +2015-12-04 08:00:00,0.0,1026.058333,149.30833330000002,74.68333333,7.384416667000001,0.256833333,238.06485001666667 +2015-12-04 09:00:00,0.0,1026.033333,328.8916667,63.84,9.623333333,0.908333333,238.06162884999995 +2015-12-04 10:00:00,0.0,1025.804167,436.75,58.02916667,12.045,1.119166667,238.05966038333335 +2015-12-04 11:00:00,0.0,1025.5875,522.25,57.6475,13.8975,1.119166667,238.05966038333335 +2015-12-04 12:00:00,0.0,1024.875,550.1833333,50.33916667,14.92,1.729333333,238.05590235 +2015-12-04 13:00:00,0.0,1024.016667,540.2,46.34583333,16.16416667,1.65225,238.05500759999998 +2015-12-04 14:00:00,0.0,1023.491667,492.8,43.11916667,16.8175,1.921416667,238.05447073333335 +2015-12-04 15:00:00,0.0,1022.95,421.71666669999996,38.21166667,17.26166667,2.149916667,238.0528601333333 +2015-12-04 16:00:00,0.0,1022.5625,298.7083333,39.51583333,17.54583333,1.929,238.05482865 +2015-12-04 17:00:00,0.0,1021.775,90.6675,43.36166667,16.9525,1.5955833330000002,238.05429178333335 +2015-12-04 18:00:00,0.0,1021.304167,41.2825,47.42666667,15.4575,1.097583333,238.05321805000003 +2015-12-04 19:00:00,0.0,1021.133333,3.391916667,59.57833333,11.67666667,0.149833333,238.05357596666667 +2015-12-04 20:00:00,0.0,1021.3125,0.0,64.12833333,11.01916667,0.650333333,238.05178641666666 +2015-12-04 21:00:00,0.0,1021.079167,0.0,63.99666667,11.88333333,1.127083333,238.05178641666666 +2015-12-04 22:00:00,0.0,1021.116667,0.0,63.83083333,11.36583333,0.6445833329999999,238.05124956666666 +2015-12-04 23:00:00,0.0,1021.141667,0.0,65.50166667,10.47833333,1.094083333,238.0487442333333 +2015-04-13 00:00:00,0.0,1020.9958330000001,0.0,69.3325,11.62666667,2.069666667,238.04256276666663 +2015-04-13 01:00:00,0.0,1020.654167,0.0,74.66916667,10.91666667,1.7701666669999998,238.04258739999997 +2015-04-13 02:00:00,0.0,1020.5625,0.0,76.385,11.29666667,1.743416667,238.04261326666665 +2015-04-13 03:00:00,0.0,1020.8875,0.0,76.9275,11.38166667,1.3256666670000001,238.04258739999997 +2015-04-13 04:00:00,0.0,1021.658333,0.0,73.18166667,11.41083333,1.6904166669999998,238.04258739999997 +2015-04-13 05:00:00,0.0,1022.3166669999999,0.90775,73.4125,10.9025,1.8894166669999999,238.0425135 +2015-04-13 06:00:00,0.0,1022.975,16.86441667,75.1675,10.71916667,1.278666667,238.04248886666664 +2015-04-13 07:00:00,0.0,1023.833333,40.4375,78.01583333,10.61,1.796,238.04248886666664 +2015-04-13 08:00:00,0.0,1024.775,121.875,75.15166667,10.65,2.645,238.04243959999994 +2015-04-13 09:00:00,0.0,1025.404167,156.56666669999998,75.40083333,10.585,3.3016666669999997,238.0423879 +2015-04-13 10:00:00,0.0,1026.1125,406.34166669999996,62.5525,11.13333333,2.5845833330000003,238.04231035 +2015-04-13 11:00:00,0.0,1026.275,526.225,54.83333333,12.28583333,2.829416667,238.04228450000002 +2015-04-13 12:00:00,0.0,1026.058333,555.5583333,51.21416667,13.36333333,2.21125,238.04228450000002 +2015-04-13 13:00:00,0.0,1026.058333,490.53333330000004,48.70333333,13.92166667,2.0373333330000003,238.04228450000002 +2015-04-13 14:00:00,0.0,1025.558333,467.49166669999994,46.24333333,14.275,2.137916667,238.04223523333337 +2015-04-13 15:00:00,0.0,1025.158333,336.1666667,44.50333333,14.12,1.8893333330000002,238.0422106 +2015-04-13 16:00:00,0.0,1024.845833,314.4916667,44.47916667,14.465,1.82875,238.0422106 +2015-04-13 17:00:00,0.0,1024.65,102.525,44.7425,13.65916667,1.348416667,238.0421367 +2015-04-13 18:00:00,0.0,1024.608333,44.12583333,47.09583333,12.495,1.319083333,238.0421367 +2015-04-13 19:00:00,0.0,1025.1375,2.8595,48.18,10.70166667,2.0945,238.04203323333334 +2015-04-13 20:00:00,0.0,1025.516667,0.0,74.39083333,9.020833332999999,0.94625,238.04205909999996 +2015-04-13 21:00:00,0.0,1025.8,0.0,81.29083333,5.81625,0.302416667,238.04216133333338 +2015-04-13 22:00:00,0.0,1025.695833,0.0,84.98333333,4.403583333,0.15425,238.04216133333338 +2015-04-13 23:00:00,0.0,1025.8,0.0,87.68333333,2.9415,0.162,238.0421367 +2015-04-14 00:00:00,0.0,1026.05,0.0,89.75,2.556333333,0.06308333299999999,238.0421367 +2015-04-14 01:00:00,0.0,1025.845833,0.0,91.9,1.70975,0.063,238.0421367 +2015-04-14 02:00:00,0.0,1025.458333,0.0,92.675,1.107333333,0.020083333000000002,238.0421367 +2015-04-14 03:00:00,0.0,1025.075,0.0,94.00833333,0.744416667,0.0305,238.0421367 +2015-04-14 04:00:00,0.0,1024.883333,0.0,95.46666667,1.2508333329999999,0.0,238.04216010000005 +2015-04-14 05:00:00,0.0,1024.745833,1.8571666669999998,97.86666667,0.845,0.0,238.0421367 +2015-04-14 06:00:00,0.0,1024.725,27.78916667,98.80833333,0.864666667,0.0,238.0421367 +2015-04-14 07:00:00,0.0,1024.720833,108.32083329999999,87.885,4.885666667,0.1255,238.0422106 +2015-04-14 08:00:00,0.0,1024.570833,147.65,73.16,7.147666667,0.504166667,238.0422106 +2015-04-14 09:00:00,0.0,1024.3625,293.5083333,71.105,10.8425,1.074833333,238.0421367 +2015-04-14 10:00:00,0.0,1024.270833,483.33333330000005,68.4575,14.25833333,1.275916667,238.0421859666667 +2015-04-14 11:00:00,0.0,1023.454167,516.5083333,64.46083333,15.8475,1.852416667,238.0421859666667 +2015-04-14 12:00:00,0.0,1022.725,592.9166667000001,59.58083333,17.64083333,2.0438333330000003,238.04228450000002 +2015-04-14 13:00:00,0.0,1022.033333,560.5916667,56.26416667,19.13833333,2.0345,238.04228450000002 +2015-04-14 14:00:00,0.0,1021.1125,515.1333333,50.6875,20.32083333,2.31675,238.04225986666668 +2015-04-14 15:00:00,0.0,1019.925,400.925,48.95666667,21.40416667,2.232916667,238.04228450000002 +2015-04-14 16:00:00,0.0,1019.154167,305.1416667,48.065,21.9675,1.973,238.04228450000002 +2015-04-14 17:00:00,0.0,1018.4416669999999,72.68666667,37.70416667,22.17583333,1.7890833330000002,238.04225986666668 +2015-04-14 18:00:00,0.0,1018.029167,44.10916667,38.05583333,20.90666667,1.396166667,238.0421367 +2015-04-14 19:00:00,0.0,1017.791667,4.194166667,57.29833333,16.0775,0.18816666699999998,238.0421367 +2015-04-14 20:00:00,0.0,1018.15,0.0,78.86416667,11.37583333,0.345916667,238.04200736666667 +2015-04-14 21:00:00,0.0,1018.3125,0.0,83.28916667,9.546666667,0.33975,238.0419815 +2015-04-14 22:00:00,0.0,1018.025,0.0,88.15833333,8.54,0.030166667,238.04200736666667 +2015-04-14 23:00:00,0.0,1017.8,0.0,92.95833333,7.651,0.09658333300000001,238.0419815 +2015-04-15 00:00:00,0.0,1017.583333,0.0,91.11666667,6.34475,0.006583333,238.0419815 +2015-04-15 01:00:00,0.0,1017.270833,0.0,91.53333333,5.728166667000001,0.016166667,238.0419815 +2015-04-15 02:00:00,0.0,1017.158333,0.0,93.325,5.07975,0.039083333,238.0419815 +2015-04-15 03:00:00,0.0,1016.625,0.0,96.475,4.415333333,0.065416667,238.0419815 +2015-04-15 04:00:00,0.0,1016.091667,0.0,99.43333333,3.87175,0.133416667,238.0420591 +2015-04-15 05:00:00,0.0,1016.016667,2.648583333,100.0,3.062916667,0.055,238.0419322333333 +2015-04-15 06:00:00,0.0,1016.125,24.18916667,100.0,3.972,0.012333333,238.0418337 +2015-04-15 07:00:00,0.0,1016.1833330000001,133.3958333,92.49083333,8.538,0.5003333329999999,238.0418337 +2015-04-15 08:00:00,0.0,1016.083333,122.96916670000002,70.71916667,13.11166667,0.741166667,238.04195686666665 +2015-04-15 09:00:00,0.0,1016.158333,299.4541667,59.575,17.47,0.964666667,238.0419322333333 +2015-04-15 10:00:00,0.0,1015.8166669999999,507.24166669999994,53.14083333,19.8475,1.5455,238.04193223333334 +2015-04-15 11:00:00,0.0,1015.204167,571.225,46.57416667,21.33916667,1.57975,238.0419815 +2015-04-15 12:00:00,0.0,1014.458333,597.9333333,44.23833333,22.3275,1.871833333,238.0419815 +2015-04-15 13:00:00,0.0,1013.445833,588.575,40.79333333,23.3475,1.8020833330000001,238.04193223333334 +2015-04-15 14:00:00,0.0,1012.4,546.225,35.09166667,24.38583333,1.7079166669999999,238.04185833333335 +2015-04-15 15:00:00,0.0,1011.3166669999999,474.15,28.62666667,25.12416667,1.828,238.0418337 +2015-04-15 16:00:00,0.0,1010.3,347.6416667,27.61083333,25.52583333,1.5930000000000002,238.0418337 +2015-04-15 17:00:00,0.0,1009.404167,69.17333333,28.75833333,24.7825,1.6141666669999999,238.0418337 +2015-04-15 18:00:00,0.0,1008.983333,44.33,32.72083333,22.4725,0.9833333329999999,238.04170436666666 +2015-04-15 19:00:00,0.0,1008.958333,5.259333333,50.84,16.38916667,0.107083333,238.04154916666667 +2015-04-15 20:00:00,0.0,1009.175,0.0,68.19833333,13.3325,0.205583333,238.04154916666667 +2015-04-15 21:00:00,0.0,1009.35,0.0,77.72666667,12.08583333,0.17025,238.04152329999997 +2015-04-15 22:00:00,0.0,1009.366667,0.0,80.48416667,10.73416667,0.22675,238.04144945 +2015-04-15 23:00:00,0.0,1009.116667,0.0,87.08333333,9.905833333,0.091416667,238.04142483333337 +2015-04-16 00:00:00,0.0,1009.1,0.0,90.2,8.10125,0.15633333300000002,238.0413756 +2015-04-16 01:00:00,0.0,1008.9416669999999,0.0,91.44166667,6.93275,0.0445,238.0413756 +2015-04-16 02:00:00,0.0,1008.704167,0.0,93.70833333,6.23825,0.110833333,238.0412721333333 +2015-04-16 03:00:00,0.0,1008.7875,0.0,95.44166667,5.729166667,0.026083332999999997,238.0412721333333 +2015-04-16 04:00:00,0.0,1008.804167,0.0,95.06666667,5.188666667,0.17075,238.0413756 +2015-04-16 05:00:00,0.0,1009.2458330000001,3.224583333,98.35,4.874166667,0.201666667,238.0414002166667 +2015-04-16 06:00:00,0.0,1009.65,38.83833333,98.15,5.766666667000001,0.06875,238.04129799999998 +2015-04-16 07:00:00,0.0,1010.3791669999999,125.43416670000002,88.2825,10.12425,0.08275,238.04134973333336 +2015-04-16 08:00:00,0.0,1010.4958330000001,140.56666669999998,67.30333333,14.10416667,0.38933333299999995,238.04140021666663 +2015-04-16 09:00:00,0.0,1010.525,280.21666669999996,60.51416667,15.76916667,0.8091666670000001,238.04152329999997 +2015-04-16 10:00:00,0.0,1010.541667,471.225,54.0825,17.80166667,0.829916667,238.04144945 +2015-04-16 11:00:00,0.0,1010.45,536.325,51.41416667,20.20083333,1.185583333,238.04152329999997 +2015-04-16 12:00:00,0.0,1009.9416669999999,543.1083332999999,47.09833333,21.41416667,1.445583333,238.04149868333334 +2015-04-16 13:00:00,0.0,1009.366667,544.225,46.42916667,22.29916667,1.65225,238.04147406666667 +2015-04-16 14:00:00,0.0,1008.7125,424.4333333000001,45.2275,22.375,1.5800833330000001,238.04142483333337 +2015-04-16 15:00:00,0.0,1008.145833,372.0666667,43.34166667,22.63083333,1.456083333,238.0413756 +2015-04-16 16:00:00,0.0,1007.525,268.9,41.64666667,22.56,1.881833333,238.0413497333333 +2015-04-16 17:00:00,0.0,1007.0583330000001,106.34666670000001,47.29666667,20.305,3.014166667,238.04129799999998 +2015-04-16 18:00:00,0.0,1007.3166669999999,31.90833333,66.52416667,17.61916667,3.3850833330000003,238.04122039999996 +2015-04-16 19:00:00,0.0,1007.804167,2.521583333,69.63583333,15.37416667,3.15325,238.04122039999996 +2015-04-16 20:00:00,0.0,1008.491667,0.0,69.9125,13.725,3.268916667,238.04112186666666 +2015-04-16 21:00:00,0.0,1009.020833,0.0,67.34666667,12.1125,3.14875,238.04119576666662 +2015-04-16 22:00:00,0.0,1009.4625,0.0,65.16583333,11.14,2.961416667,238.04122039999996 +2015-04-16 23:00:00,0.0,1009.5875,0.0,67.80333333,9.5975,2.303,238.04122039999996 +2015-04-17 00:00:00,36.63749266,1009.783333,0.0,90.84,7.873583332999999,0.8311666670000001,238.04122039999996 +2015-04-17 01:00:00,5.10717852,1009.095833,0.0,98.80833333,7.636416667000001,0.403583333,238.04132386666666 +2015-04-17 02:00:00,0.0,1008.954167,0.0,100.0,7.330083332999999,0.48666666700000005,238.0413756 +2015-04-17 03:00:00,0.0,1008.6875,0.0,100.0,6.172833333,0.28800000000000003,238.0414248333333 +2015-04-17 04:00:00,0.0,1008.75,0.0,100.0,5.44425,0.28,238.04149868333332 +2015-04-17 05:00:00,0.0,1009.216667,1.75775,100.0,6.164,1.0765,238.0415504166667 +2015-04-17 06:00:00,0.0,1009.7625,24.36358333,91.41666667,6.553666667000001,1.4453333330000002,238.04152455 +2015-04-17 07:00:00,0.0,1010.354167,74.7725,81.94916667,6.786083333,2.1375,238.04129799999998 +2015-04-17 08:00:00,0.0,1010.575,97.855,79.31333333,7.381666667,2.8810000000000002,238.04107136666667 +2015-04-17 09:00:00,0.0,1010.841667,230.65,71.31166667,9.085833333,3.2254166669999997,238.0409432666667 +2015-04-17 10:00:00,0.0,1011.1916669999999,301.4,65.53166667,10.28333333,3.09275,238.04096913333333 +2015-04-17 11:00:00,0.0,1011.3,595.3666667,56.125,11.64333333,2.73275,238.04127213333334 +2015-04-17 12:00:00,0.0,1011.1375,618.8833333,49.87083333,12.62083333,3.9859166669999997,238.04122039999996 +2015-04-17 13:00:00,0.0,1011.133333,627.8166667,48.8375,12.9925,4.792916667,238.04122039999996 +2015-04-17 14:00:00,0.0,1011.258333,500.59166669999996,50.085,12.8425,4.61625,238.04122039999996 +2015-04-17 15:00:00,0.0,1011.4958330000001,351.7083333,55.20666667,12.12666667,4.943333333,238.04117113333328 +2015-04-17 16:00:00,0.0,1011.829167,281.84166669999996,53.53333333,11.7,5.120666667,238.04117113333328 +2015-04-17 17:00:00,0.0,1012.2,81.64333333,54.69833333,11.18666667,4.5599166669999995,238.04114649999997 +2015-04-17 18:00:00,0.0,1013.029167,42.39,56.78916667,10.39583333,3.78225,238.04104549999997 +2015-04-17 19:00:00,0.0,1013.875,3.330833333,70.65083333,8.848833333,1.563833333,238.04081886666665 +2015-04-17 20:00:00,0.0,1014.654167,0.0,86.825,5.6471666670000005,0.181333333,238.0405405 +2015-04-17 21:00:00,0.0,1015.458333,0.0,91.14166667,4.147083333,0.28325,238.04038905000002 +2015-04-17 22:00:00,0.0,1015.979167,0.0,93.70833333,3.4355833330000003,0.351416667,238.04028563333335 +2015-04-17 23:00:00,0.0,1016.716667,0.0,94.35833333,2.202833333,0.26858333300000004,238.0403115 +2015-04-18 00:00:00,0.0,1017.470833,0.0,96.35,1.503416667,0.17925,238.0403115 +2015-04-18 01:00:00,0.0,1017.791667,0.0,97.625,0.775083333,0.10641666699999999,238.04020803333336 +2015-04-18 02:00:00,0.0,1018.008333,0.0,98.26666667,0.2565,0.049666667000000005,238.0401575333333 +2015-04-18 03:00:00,0.0,1018.320833,0.0,99.08333333,-0.225916667,0.051833332999999995,238.04013166666667 +2015-04-18 04:00:00,0.0,1018.491667,0.0,99.96666667,-0.51975,0.1385,238.04015753333337 +2015-04-18 05:00:00,0.0,1018.904167,3.992833333,100.0,0.236916667,0.02875,238.0401563 +2015-04-18 06:00:00,0.0,1019.7458330000001,28.645,100.0,1.7728333330000001,0.011333333000000001,238.0402597666667 +2015-04-18 07:00:00,0.0,1020.420833,153.36583330000002,91.5,4.89225,1.245,238.0402339 +2015-04-18 08:00:00,0.0,1020.708333,130.0116667,77.17166667,6.996083333,2.981833333,238.0403115 +2015-04-18 09:00:00,0.0,1021.2875,175.88666669999998,72.12416667,8.480166667,3.640166667,238.0402597666667 +2015-04-18 10:00:00,0.0,1021.525,458.90833330000004,60.315,9.111666667,3.923333333,238.04020803333336 +2015-04-18 11:00:00,0.0,1021.65,424.0166666999999,55.28416667,10.0525,3.937583333,238.04028563333335 +2015-04-18 12:00:00,0.0,1021.4875,527.5083333,50.47,10.22833333,3.6289999999999996,238.04028563333335 +2015-04-18 13:00:00,0.0,1021.275,510.0,46.92833333,11.18166667,3.410333333,238.04107013333336 +2015-04-18 14:00:00,0.0,1020.8083330000001,552.0083333,46.44,11.90166667,2.902333333,238.04157503333332 +2015-04-18 15:00:00,0.0,1020.2375,491.33333330000005,44.35833333,12.53583333,2.403916667,238.0412721333333 +2015-04-18 16:00:00,0.0,1019.904167,350.675,42.35333333,12.73333333,2.6010000000000004,238.04104673333327 +2015-04-18 17:00:00,0.0,1019.4125,58.825,43.16166667,12.44166667,2.7206666669999997,238.04081886666665 +2015-04-18 18:00:00,0.0,1019.2458330000001,46.97,47.75166667,11.38833333,1.4835833330000001,238.04064026666666 +2015-04-18 19:00:00,0.0,1019.095833,8.875,70.04583333,7.442166667,0.033083333,238.0404149 +2015-04-18 20:00:00,0.0,1019.4,0.0,84.42416667,3.721916667,0.094166667,238.03995553333334 +2015-04-18 21:00:00,0.0,1019.5,0.0,89.95833333,2.217083333,0.045833333,238.03985330000003 +2015-04-18 22:00:00,0.0,1019.6625,0.0,91.85,0.8395,0.0,238.03993090000003 +2015-04-18 23:00:00,0.0,1019.6125,0.0,93.125,0.122916667,0.02825,238.04005776666668 +2015-04-19 00:00:00,0.0,1019.233333,0.0,95.15833333,-0.197833333,0.0,238.04000850000003 +2015-04-19 01:00:00,0.0,1018.6375,0.0,96.325,-0.8315,0.000916667,238.04003313333337 +2015-04-19 02:00:00,0.0,1017.970833,0.0,98.21666667,-1.3898333330000001,0.0,238.03998263333335 +2015-04-19 03:00:00,0.0,1017.6916669999999,0.0,99.475,-1.7355833330000001,0.0,238.03993090000003 +2015-04-19 04:00:00,0.0,1017.2875,0.0,99.99166667,-2.207583333,0.0,238.03980403333335 +2015-04-19 05:00:00,0.0,1017.15,5.101583333,100.0,-2.4925833330000002,0.0,238.0398299 +2015-04-19 06:00:00,0.0,1017.2541669999999,31.88333333,100.0,-1.0513333329999999,0.00033333300000000006,238.0397301333334 +2015-04-19 07:00:00,0.0,1017.5125,165.5008333,91.97166667,2.67975,0.03975,238.03973013333336 +2015-04-19 08:00:00,0.0,1017.595833,159.04166669999998,74.77916667,5.893083333,0.454583333,238.03985330000003 +2015-04-19 09:00:00,0.0,1017.5666669999999,306.05,64.13416667,8.694666667,0.690083333,238.03980403333335 +2015-04-19 10:00:00,0.0,1017.383333,474.475,49.5325,10.98166667,1.129916667,238.03973013333336 +2015-04-19 11:00:00,0.0,1017.220833,567.475,48.97083333,12.975,1.63125,238.03970550000005 +2015-04-19 12:00:00,0.0,1016.8375,626.7416667,45.38916667,13.83,1.5165,238.03970550000005 +2015-04-19 13:00:00,0.0,1016.545833,616.15,43.06416667,15.395,1.5018333330000002,238.03970550000005 +2015-04-19 14:00:00,0.0,1016.1625,569.9083333,39.76666667,16.0875,1.5450833330000002,238.03990503333333 +2015-04-19 15:00:00,0.0,1015.891667,491.79166669999995,40.37083333,16.76583333,1.082166667,238.03975476666673 +2015-04-19 16:00:00,0.0,1015.670833,356.25,38.60666667,17.06916667,1.3785833330000001,238.03973013333336 +2015-04-19 17:00:00,0.0,1015.666667,57.12666667,40.16083333,16.3725,1.903666667,238.03970550000005 +2015-04-19 18:00:00,0.0,1015.966667,47.55333333,41.13,14.9825,2.153083333,238.03965130000003 +2015-04-19 19:00:00,0.0,1016.6125,11.08791667,62.99083333,11.2475,0.8071666670000001,238.03960203333335 +2015-04-19 20:00:00,0.0,1016.9416669999999,0.0,77.5575,6.975333332999999,0.181333333,238.03947645000002 +2015-04-19 21:00:00,0.0,1017.695833,0.0,86.525,4.883416667,0.109833333,238.039325 +2015-04-19 22:00:00,0.0,1018.483333,0.0,91.0,3.5331666669999997,0.09758333300000001,238.03932499999996 +2015-04-19 23:00:00,0.0,1018.858333,0.0,93.63333333,2.678583333,0.0775,238.03932499999996 +2015-04-20 00:00:00,0.0,1019.158333,0.0,95.40833333,1.805083333,0.015166667,238.03940135000002 +2015-04-20 01:00:00,0.0,1019.391667,0.0,97.00833333,1.182916667,0.005416666999999999,238.03970550000005 +2015-04-20 02:00:00,0.0,1019.6916669999999,0.0,97.11666667,0.736583333,0.020416667,238.03965376666667 +2015-04-20 03:00:00,0.0,1019.854167,0.0,98.31666667,0.47600000000000003,0.035416667,238.03960203333335 +2015-04-20 04:00:00,0.0,1020.05,0.0,99.49166667,0.394166667,0.08075,238.03945183333335 +2015-04-20 05:00:00,0.0,1020.2,8.091416667,99.46666667,0.675666667,0.0,238.03937673333334 +2015-04-20 06:00:00,0.0,1020.929167,39.215,98.975,2.015333333,0.00625,238.0392745 +2015-04-20 07:00:00,0.0,1021.491667,180.5175,81.33333333,6.88175,0.051666667,238.03930036666668 +2015-04-20 08:00:00,0.0,1021.8,129.01,64.03083333,10.10333333,0.66675,238.0392474 +2015-04-20 09:00:00,0.0,1022.141667,327.9991667,57.84666667,11.81,2.08225,238.03917349999998 +2015-04-20 10:00:00,0.0,1022.454167,533.1583333000001,51.5575,13.82916667,2.5066666669999997,238.03922276666663 +2015-04-20 11:00:00,0.0,1022.3083330000001,599.05,47.2875,15.17083333,1.994083333,238.03922276666665 +2015-04-20 12:00:00,0.0,1022.075,626.7333332999999,44.8125,16.52916667,1.9058333330000001,238.03921931999997 +2015-04-20 13:00:00,0.0,1021.6875,622.3833333,39.47583333,17.56833333,3.256416667,238.03950231666667 +2015-04-20 14:00:00,0.0,1021.3708330000001,578.1166667,36.695,18.39583333,2.8835,238.03919813333334 +2015-04-20 15:00:00,0.0,1020.983333,495.325,35.8075,18.98583333,3.2560833330000003,238.03909960000001 +2015-04-20 16:00:00,0.0,1020.8625,350.125,38.33,19.025,3.3689166669999997,238.03902200000002 +2015-04-20 17:00:00,0.0,1020.625,59.07583333,40.38416667,18.6175,2.823666667,238.03891976666668 +2015-04-20 18:00:00,0.0,1020.904167,50.66166667,44.78833333,17.50833333,2.148916667,238.0387448666667 +2015-04-20 19:00:00,0.0,1021.554167,11.47,61.82583333,14.89,1.5263333330000002,238.038538 +2015-04-20 20:00:00,0.0,1022.275,0.0,82.89,10.165,0.502833333,238.03848629999996 +2015-04-20 21:00:00,0.0,1022.5375,0.0,85.30833333,7.814666667000001,0.201916667,238.03848629999996 +2015-04-20 22:00:00,0.0,1022.829167,0.0,89.31666667,6.082583333,0.069333333,238.03846166666665 +2015-04-20 23:00:00,0.0,1022.966667,0.0,92.11666667,4.7685833330000005,0.032166667,238.03833849999998 +2015-04-21 00:00:00,0.0,1023.204167,0.0,94.25,3.698,0.020583333,238.03836313333332 +2015-04-21 01:00:00,0.0,1023.3791669999999,0.0,95.79166667,2.919666667,0.025583333,238.03841239999997 +2015-04-21 02:00:00,0.0,1023.695833,0.0,96.9,2.38525,0.07,238.03828676666663 +2015-04-21 03:00:00,0.0,1023.783333,0.0,98.20833333,1.83125,0.024833333,238.03831263333333 +2015-04-21 04:00:00,0.0,1023.858333,0.0,99.1,1.287833333,0.028666667000000003,238.03833849999998 +2015-04-21 05:00:00,0.0,1023.9958330000001,7.68175,99.96666667,0.884,0.01175,238.03828676666663 +2015-04-21 06:00:00,0.0,1024.454167,37.605,99.44166667,2.514916667,0.040583333,238.03826089999998 +2015-04-21 07:00:00,0.0,1024.916667,177.1058333,85.85833333,6.822166667,0.10116666699999999,238.03833849999998 +2015-04-21 08:00:00,0.0,1025.395833,129.24916670000002,65.42166667,11.3975,0.4925,238.03846166666662 +2015-04-21 09:00:00,0.0,1025.45,327.835,57.70416667,14.05,0.9045833329999999,238.03838776666666 +2015-04-21 10:00:00,0.0,1025.479167,539.975,40.90166667,16.22666667,0.892916667,238.03833849999998 +2015-04-21 11:00:00,0.0,1025.470833,604.9833332999999,34.68416667,18.2075,1.069583333,238.03833849999998 +2015-04-21 12:00:00,0.0,1024.795833,640.4916667,29.66,20.49916667,0.8625,238.03833849999998 +2015-04-21 13:00:00,0.0,1024.141667,631.1666667000001,26.94833333,21.8125,1.104333333,238.03833849999998 +2015-04-21 14:00:00,0.0,1023.425,582.5083333,27.56083333,22.9875,1.3898333330000001,238.03833849999998 +2015-04-21 15:00:00,0.0,1022.875,498.40833330000004,28.345,23.895,1.692666667,238.03833849999998 +2015-04-21 16:00:00,0.0,1022.516667,361.37,22.74916667,24.00083333,2.546916667,238.03831263333333 +2015-04-21 17:00:00,0.0,1022.25,55.56583333,27.65916667,22.50083333,3.3290833330000003,238.03818453333338 +2015-04-21 18:00:00,0.0,1022.4375,48.93,31.66083333,20.11083333,2.854666667,238.0380355 +2015-04-21 19:00:00,0.0,1022.791667,11.75525,47.89666667,15.54,0.523833333,238.03795790000004 +2015-04-21 20:00:00,0.0,1023.295833,0.008916667,71.20083333,11.03833333,0.29941666699999997,238.03788030000007 +2015-04-21 21:00:00,0.0,1023.654167,0.0,75.4725,8.0925,0.13225,238.03788030000007 +2015-04-21 22:00:00,0.0,1024.058333,0.0,84.15833333,7.113666667,0.145666667,238.03788030000007 +2015-04-21 23:00:00,0.0,1023.9875,0.0,87.89166667,6.9635,0.396083333,238.03788030000007 +2015-04-22 00:00:00,0.0,1023.9958330000001,0.0,89.21666667,5.4916666670000005,0.064666667,238.03788030000007 +2015-04-22 01:00:00,0.0,1023.575,0.0,93.05,4.571583333,0.09525,238.0377817666667 +2015-04-22 02:00:00,0.0,1023.233333,0.0,94.43333333,3.1974166669999997,0.072333333,238.03773250000003 +2015-04-22 03:00:00,0.0,1023.166667,0.0,96.6,2.2168333330000003,0.14225,238.03773250000003 +2015-04-22 04:00:00,0.0,1022.825,0.0,97.75833333,1.555166667,0.009416667,238.0377817666667 +2015-04-22 05:00:00,0.0,1022.829167,6.57675,98.25833333,0.686083333,0.012333333,238.03775713333334 +2015-04-22 06:00:00,0.0,1022.679167,36.86583333,97.43333333,2.655583333,0.165416667,238.03785566666673 +2015-04-22 07:00:00,0.0,1022.916667,197.46333330000002,83.86083333,6.242999999999999,2.25275,238.03788030000007 +2015-04-22 08:00:00,0.0,1022.7125,130.8658333,73.645,7.766166667,1.4385833330000002,238.03793203333336 +2015-04-22 09:00:00,0.0,1022.3791669999999,346.4541667,64.49,9.89,0.7546666670000001,238.03800963333336 +2015-04-22 10:00:00,0.0,1021.7875,548.8166667,55.76416667,11.88583333,1.498666667,238.03790616666674 +2015-04-22 11:00:00,0.0,1021.0041669999999,609.3416667,50.81416667,13.35416667,2.534916667,238.03788030000007 +2015-04-22 12:00:00,0.0,1020.3083330000001,539.8916667000001,51.08416667,14.2775,3.05275,238.03788030000007 +2015-04-22 13:00:00,0.0,1020.116667,622.5916667,58.6675,12.79583333,5.60725,238.03788030000007 +2015-04-22 14:00:00,0.0,1020.075,519.5833333,59.60333333,12.7225,4.892166667,238.0378310333334 +2015-04-22 15:00:00,0.0,1019.945833,431.65833330000004,58.235,12.43083333,4.873166667,238.03775713333334 +2015-04-22 16:00:00,0.0,1019.7875,367.9,54.935,12.24333333,3.443083333,238.03773250000003 +2015-04-22 17:00:00,0.0,1019.283333,72.29833333,57.54916667,12.25583333,2.584666667,238.03773250000003 +2015-04-22 18:00:00,0.0,1019.020833,53.99833333,59.95833333,11.68916667,2.1045833330000003,238.03770663333333 +2015-04-22 19:00:00,0.0,1019.0583330000001,9.02625,76.18833333,9.264083333,0.3005,238.03757730000004 +2015-04-22 20:00:00,0.0,1018.95,0.022083332999999997,87.38333333,5.577666667000001,0.11491666699999999,238.03750345000003 +2015-04-22 21:00:00,0.0,1018.9958330000001,0.0,92.38333333,4.2373333330000005,0.023416667000000002,238.03747883333335 +2015-04-22 22:00:00,0.0,1018.7625,0.0,92.83333333,4.40175,0.012666667,238.03757730000004 +2015-04-22 23:00:00,0.0,1018.479167,0.0,95.43333333,3.27725,0.010166666999999999,238.03757730000004 +2015-04-23 00:00:00,0.0,1018.354167,0.0,97.86666667,2.1968333330000003,0.00033333300000000006,238.03757730000004 +2015-04-23 01:00:00,0.0,1017.895833,0.0,98.75833333,2.614666667,0.013833333,238.03757730000004 +2015-04-23 02:00:00,0.0,1017.375,0.0,99.0,2.537083333,0.0,238.03757730000004 +2015-04-23 03:00:00,0.0,1016.7375,0.0,99.94166667,0.8125,0.0,238.03757855000003 +2015-04-23 04:00:00,0.0,1016.25,0.009416667,100.0,0.03475,0.0,238.03755268333336 +2015-04-23 05:00:00,0.0,1015.795833,7.394166667,100.0,-0.33883333299999996,0.013999999999999999,238.03757730000004 +2015-04-23 06:00:00,0.0,1015.791667,47.16333333,100.0,1.289666667,0.022083332999999997,238.03757730000004 +2015-04-23 07:00:00,0.0,1015.966667,192.985,89.27833333,4.9814166669999995,0.062583333,238.03757730000004 +2015-04-23 08:00:00,0.0,1015.7875,140.46,78.19833333,8.38425,0.62975,238.03773250000003 +2015-04-23 09:00:00,0.0,1015.725,347.95,73.87166667,10.38583333,0.907333333,238.03775713333334 +2015-04-23 10:00:00,0.0,1015.366667,539.6833333,62.99166667,12.99,1.315,238.03775713333334 +2015-04-23 11:00:00,0.0,1014.8708330000001,595.1083332999999,57.72833333,14.22083333,1.3024166670000001,238.03775713333334 +2015-04-23 12:00:00,0.0,1014.141667,561.2333332999999,57.3675,15.60416667,0.928583333,238.03765366666673 +2015-04-23 13:00:00,0.0,1013.541667,609.3583332999999,51.4825,15.84666667,1.185583333,238.03757730000004 +2015-04-23 14:00:00,0.0,1012.8,579.15,45.84,17.04666667,1.102666667,238.03757730000004 +2015-04-23 15:00:00,0.0,1012.179167,499.15833330000004,43.78666667,17.7525,1.065583333,238.03757730000004 +2015-04-23 16:00:00,0.0,1011.8875,355.1333333,41.78083333,18.525,1.035083333,238.03757730000004 +2015-04-23 17:00:00,0.0,1011.3,65.83083333,43.32166667,17.7625,0.8765,238.03757730000004 +2015-04-23 18:00:00,0.0,1011.1291669999999,53.94083333,45.91666667,15.745,1.2425,238.03755268333336 +2015-04-23 19:00:00,0.0,1011.3791669999999,10.05983333,71.98333333,11.87583333,0.40416666700000003,238.0374296 +2015-04-23 20:00:00,0.0,1011.4333330000001,0.023,85.09666667,8.788333332999999,0.178583333,238.0374296 +2015-04-23 21:00:00,0.0,1011.404167,0.0,90.21666667,6.39525,0.1235,238.03735199999997 +2015-04-23 22:00:00,0.0,1011.4416669999999,0.0,94.375,5.398166667000001,0.068416667,238.03727440000003 +2015-04-23 23:00:00,0.0,1011.516667,0.0,96.0,4.803583333,0.07825,238.03727440000003 +2015-04-24 00:00:00,0.0,1011.429167,0.0,96.76666667,3.731666667,0.05875,238.03727440000003 +2015-04-24 01:00:00,0.0,1011.041667,0.0,96.08333333,2.6709166669999997,0.003166667,238.03730026666668 +2015-04-24 02:00:00,0.0,1010.958333,0.0,98.85,1.9778333330000002,0.01925,238.03730026666668 +2015-04-24 03:00:00,0.0,1010.9333330000001,0.0,99.85,1.287833333,0.00275,238.03732613333332 +2015-04-24 04:00:00,0.0,1010.9,0.024916667000000003,100.0,0.687583333,0.0,238.03732613333332 +2015-04-24 05:00:00,0.0,1010.741667,8.568166667,100.0,0.40966666700000004,0.0,238.03740373333335 +2015-04-24 06:00:00,0.0,1010.970833,54.7475,100.0,2.2984166669999997,0.004166667,238.0374296 +2015-04-24 07:00:00,0.0,1011.216667,213.05833330000002,86.3975,6.571833333,0.33399999999999996,238.03727440000003 +2015-04-24 08:00:00,0.0,1011.016667,131.725,75.6425,10.39,0.875916667,238.0374296 +2015-04-24 09:00:00,0.0,1010.7375,349.2675,62.35,14.27416667,1.18875,238.0374296 +2015-04-24 10:00:00,0.0,1010.591667,539.3583332999999,52.16666667,16.01,2.011916667,238.0374296 +2015-04-24 11:00:00,0.0,1010.020833,605.2666667000001,44.07666667,18.0481524,2.24725,238.0374296 +2015-04-24 12:00:00,0.0,1009.541667,638.225,37.58083333,18.86666667,2.65725,238.03732613333332 +2015-04-24 13:00:00,0.0,1008.9333330000001,626.1833333,38.52666667,19.70583333,2.095916667,238.03724853333335 +2015-04-24 14:00:00,0.0,1008.5041669999999,568.7666667000001,38.38,21.2175,1.158833333,238.03704530000002 +2015-04-24 15:00:00,0.0,1007.716667,483.475,36.64,21.26831193,0.943583333,238.0369184333333 +2015-04-24 16:00:00,0.0,1007.204167,350.7083333,35.9225,22.01416667,0.93425,238.03671645 +2015-04-24 17:00:00,0.0,1006.6833330000001,79.1025,35.34166667,21.87166667,0.504583333,238.03631253333333 +2015-04-24 18:00:00,0.0,1006.545833,47.64333333,43.99916667,19.80916667,0.6499166670000001,238.03618566666668 +2015-04-24 19:00:00,0.0,1006.5,8.9805,54.71916667,16.00083333,1.0493333329999999,238.03590606666663 +2015-04-24 20:00:00,0.0,1006.458333,0.007083333000000001,58.105,14.09916667,1.62375,238.0356290166667 +2015-04-24 21:00:00,0.0,1006.520833,0.0,61.74583333,15.53083333,1.076083333,238.0354763 +2015-04-24 22:00:00,0.0,1006.4125,0.0,69.93583333,10.20833333,0.33325,238.03550216666667 +2015-04-24 23:00:00,0.0,1006.491667,0.0,85.59833333,7.75675,0.213,238.03539993333334 +2015-04-25 00:00:00,0.0,1006.325,0.0,92.375,5.939416667000001,0.02025,238.0353506666667 +2015-04-25 01:00:00,0.0,1005.904167,0.0,95.575,4.746416667,0.0,238.03509693333334 +2015-04-25 02:00:00,0.0,1005.6875,0.0,97.51666667,4.108166667,0.00175,238.03456736666666 +2015-04-25 03:00:00,0.0,1005.358333,0.0,98.69166667,4.158166667,0.0,238.03439249999997 +2015-04-25 04:00:00,0.0,1005.1,0.005166667,98.86666667,5.221416667,0.0,238.03436416666668 +2015-04-25 05:00:00,0.0,1005.083333,5.085083333,98.68333333,5.732083332999999,0.0,238.0343149 +2015-04-25 06:00:00,0.0,1005.016667,47.26916667,96.91666667,6.992583333,0.000166667,238.03393183333333 +2015-04-25 07:00:00,0.0,1005.079167,84.09083333,88.31666667,8.9825,0.00125,238.03377909999998 +2015-04-25 08:00:00,0.0,1005.4958330000001,117.29166670000001,82.37083333,10.53166667,0.36108333299999995,238.0335784166667 +2015-04-25 09:00:00,0.0,1005.583333,160.94166669999998,72.02166667,12.04416667,0.36641666700000003,238.03337643333336 +2015-04-25 10:00:00,0.0,1005.741667,212.91666669999998,76.7575,13.42166667,0.753916667,238.03565360000002 +2015-04-25 11:00:00,2.648229504,1005.583333,255.7333333,87.1,14.38916667,0.825416667,238.03464250000002 +2015-04-25 12:00:00,0.0,1005.2125,343.9416667,78.45916667,16.09833333,0.637,238.03408456666668 +2015-04-25 13:00:00,0.0,1004.6833330000001,65.50833333,78.73333333,15.4075,0.62775,238.03388135 +2015-04-25 14:00:00,0.0,1004.6291669999999,115.28916670000001,87.075,14.70333333,0.212666667,238.03322493333334 +2015-04-25 15:00:00,0.0,1004.070833,242.43333330000002,78.37833333,15.8825,1.6414166669999999,238.0330254 +2015-04-25 16:00:00,0.0,1004.0583330000001,121.195,83.87083333,15.92166667,1.40475,238.0326916833333 +2015-04-25 17:00:00,0.0,1004.095833,42.2975,86.10833333,15.33083333,0.729916667,238.03297123333334 +2015-04-25 18:00:00,19.77500906,1004.158333,37.935,94.075,13.69416667,0.29233333300000003,238.03236406666664 +2015-04-25 19:00:00,0.0,1004.45,5.3065,98.23333333,12.88833333,0.313583333,238.03198471666664 +2015-04-25 20:00:00,0.0,1004.779167,0.013583333000000001,99.99166667,11.96333333,0.145,238.0315549333333 +2015-04-25 21:00:00,2.44198608,1004.854167,0.0,100.0,10.10166667,0.237833333,238.03137386666666 +2015-04-25 22:00:00,0.0,1004.8125,0.0,100.0,8.118416667,0.02675,238.0311226 +2015-04-25 23:00:00,0.0,1004.795833,0.0,100.0,6.832666667000001,0.055833333,238.03084549999997 +2015-04-26 00:00:00,0.0,1005.054167,0.0,100.0,6.1395,0.004083333,238.03059306666668 +2015-04-26 01:00:00,0.0,1004.829167,0.0,100.0,5.6015,0.0019166670000000002,238.0306928 +2015-04-26 02:00:00,0.0,1004.5666669999999,0.0,100.0,5.879416667,0.0,238.03069283333332 +2015-04-26 03:00:00,0.0,1004.258333,0.0,100.0,6.706416667,0.032666667,238.0302642 +2015-04-26 04:00:00,0.0,1003.954167,0.017833333,100.0,7.717166667000001,0.042166667000000005,238.02998215000002 +2015-04-26 05:00:00,0.0,1004.020833,6.406000000000001,100.0,7.955416667000001,0.035083333,238.03026421666664 +2015-04-26 06:00:00,0.0,1004.008333,37.02416667,99.78333333,8.915833333,0.013999999999999999,238.02960406666662 +2015-04-26 07:00:00,0.0,1004.070833,111.685,92.63333333,11.2025,0.191083333,238.0289981 +2015-04-26 08:00:00,0.0,1004.083333,126.375,88.38333333,13.46333333,0.569333333,238.0287432 +2015-04-26 09:00:00,0.0,1004.025,329.96666669999996,83.55,15.21166667,0.8211666670000001,238.02858926666667 +2015-04-26 10:00:00,0.0,1003.991667,359.8333333,80.84666667,16.46,1.01125,238.02836263333333 +2015-04-26 11:00:00,0.0,1003.55,364.975,75.49833333,17.4775,0.842333333,238.02788356666665 +2015-04-26 12:00:00,0.0,1002.954167,321.0,80.68166667,16.52833333,2.443833333,238.0279587 +2015-04-26 13:00:00,0.0,1002.591667,297.1166667,79.105,16.8175,2.594166667,238.02742786666667 +2015-04-26 14:00:00,0.0,1002.029167,375.8166667,73.09583333,18.2625,1.9570833330000001,238.02783181666666 +2015-04-26 15:00:00,0.0,1001.45,426.425,65.11166667,19.88916667,1.181333333,238.02747836666666 +2015-04-26 16:00:00,0.0,1000.583333,277.3666667,58.14666667,20.28583333,1.108833333,238.02689585 +2015-04-26 17:00:00,0.0,999.9291667000001,126.40833329999998,57.94333333,19.94833333,0.778166667,238.02636500000003 +2015-04-26 18:00:00,0.0,999.7458332999998,52.56916667,68.64166667,17.52166667,1.64925,238.02646723333336 +2015-04-26 19:00:00,0.0,999.6125,7.434666667,79.72083333,14.65416667,1.1158333329999999,238.02674436666666 +2015-04-26 20:00:00,0.0,999.5666667000002,0.025333333,92.95,12.43083333,0.130583333,238.02585514999998 +2015-04-26 21:00:00,0.0,999.2166667000001,0.0,95.86666667,12.70833333,0.144666667,238.02567903333332 +2015-04-26 22:00:00,2.484376512,998.925,0.0,96.81666667,13.16833333,0.325833333,238.02530089999996 +2015-04-26 23:00:00,46.98794635,999.1458332999998,0.0,99.71666667,13.2475,0.44191666700000004,238.02572953333333 +2015-04-27 00:00:00,4.847744688,998.275,0.0,100.0,12.70166667,0.3415,238.0254277833333 +2015-04-27 01:00:00,66.6145991,997.7291667000002,0.0,100.0,12.30916667,0.8105,238.02448930000003 +2015-04-27 02:00:00,25.79942064,997.0083332999999,0.0,100.0,12.00083333,0.613583333,238.02477136666667 +2015-04-27 03:00:00,0.0,996.8208332999999,0.0,100.0,11.78666667,0.068583333,238.0248711 +2015-04-27 04:00:00,0.0,996.5333332999999,0.0,100.0,11.68666667,0.2605,238.02451516666665 +2015-04-27 05:00:00,0.0,996.5791667000001,1.338333333,100.0,11.65666667,0.1315,238.0238329 +2015-04-27 06:00:00,7.733187984,996.9458332999999,10.02641667,100.0,11.84833333,0.594916667,238.0234042666667 +2015-04-27 07:00:00,20.51846239,997.4791667000002,45.20833333,100.0,11.85416667,1.7085,238.02324910000002 +2015-04-27 08:00:00,5.426072952,998.0375,59.78166667,99.70833333,11.88416667,1.141916667,238.02302006666665 +2015-04-27 09:00:00,2.6305973999999996,998.5625,65.04583333,99.35,12.40583333,2.14375,238.02266656666663 +2015-04-27 10:00:00,0.0,998.9625,92.99833333,98.625,12.44666667,3.021833333,238.02243993333332 +2015-04-27 11:00:00,7.485700512,999.3625,95.42333333,95.575,12.32083333,3.0639999999999996,238.0224399333334 +2015-04-27 12:00:00,43.51011948,999.4875,95.78166667,97.1,11.715,2.6196666669999997,238.02195964999999 +2015-04-27 13:00:00,40.969178899999996,999.8125,93.3475,98.81666667,11.20833333,2.832083333,238.0217047 +2015-04-27 14:00:00,43.46365327,1000.033333,70.86083333,99.325,10.805,3.248416667, +2015-04-27 15:00:00,55.70725212,1000.5,57.09583333,99.39166667,9.703333333,3.742916667, +2015-04-27 16:00:00,22.83053254,1000.708333,67.8125,99.75833333,8.835,3.605, +2015-04-27 17:00:00,3.494851488,1001.079167,44.78916667,97.60833333,8.348333333,3.915, +2015-04-27 18:00:00,7.1635064879999995,1001.1833330000001,18.52833333,98.20833333,7.981083333,3.1516666669999998, +2015-04-27 19:00:00,3.79400676,1001.658333,4.177,98.3,7.643583333,3.1615, +2015-04-27 20:00:00,0.0,1002.3,0.0,96.74166667,7.206833333,3.1010000000000004, +2015-04-27 21:00:00,0.0,1002.766667,0.0,94.79166667,7.07125,2.964416667, +2015-04-27 22:00:00,0.0,1002.979167,0.0,92.35,7.147,2.9, +2015-04-27 23:00:00,0.0,1003.391667,0.0,92.06666667,7.14,2.388416667, +2015-04-28 00:00:00,0.0,1003.829167,0.0,92.33333333,7.099583332999999,2.4185, +2015-04-28 01:00:00,0.0,1003.954167,0.0,88.26666667,7.07625,2.743583333, +2015-04-28 02:00:00,0.0,1004.4875,0.0,87.625,6.841,2.475166667, +2015-04-28 03:00:00,0.0,1004.7458330000001,0.0,89.30833333,6.4535,2.42225, +2015-04-28 04:00:00,0.0,1005.25,0.02725,91.99166667,6.3085,1.8419166669999998, +2015-04-28 05:00:00,0.0,1005.908333,7.476666667000001,93.83333333,5.714416667,1.652166667, +2015-04-28 06:00:00,0.0,1007.033333,80.93083333,94.03333333,5.614833332999999,1.732833333, +2015-04-28 07:00:00,0.0,1008.175,210.58333330000002,86.90833333,6.761916667,1.9518333330000002, +2015-04-28 08:00:00,0.0,1008.970833,147.88166669999998,77.74583333,8.226,2.272416667, +2015-04-28 09:00:00,0.0,1009.458333,324.525,69.2875,9.375833333,3.584916667, +2015-04-28 10:00:00,0.0,1010.170833,470.65833330000004,62.90166667,10.18833333,3.3815, +2015-04-28 11:00:00,0.0,1010.85,583.5,56.45166667,11.0525,2.1855, +2015-04-28 12:00:00,0.0,1011.104167,524.6833333000001,48.09916667,11.91083333,2.365583333, +2015-04-28 13:00:00,0.0,1011.570833,618.275,48.3425,12.35416667,2.83575, +2015-04-28 14:00:00,0.0,1011.804167,290.875,52.12,12.55583333,1.555916667, +2015-04-28 15:00:00,0.0,1011.9875,287.25,52.4075,13.16,2.35775, +2015-04-28 16:00:00,0.0,1012.470833,270.9625,51.54083333,12.69166667,2.719833333, +2015-04-28 17:00:00,0.0,1013.375,102.8425,53.58333333,11.75416667,2.274666667, +2015-04-28 18:00:00,0.0,1013.833333,63.95583333,51.75833333,11.595,1.882916667, +2015-04-28 19:00:00,0.0,1014.6375,14.55891667,55.03166667,9.805,1.00625, +2015-04-28 20:00:00,0.0,1015.4416669999999,0.09908333300000001,87.85083333,5.93275,0.064416667, +2015-04-28 21:00:00,0.0,1015.929167,0.0,94.68333333,3.573666667,0.147416667, +2015-04-28 22:00:00,0.0,1016.1916669999999,0.0,97.125,2.392833333,0.11716666699999999, +2015-04-28 23:00:00,0.0,1016.541667,0.0,98.65833333,1.637583333,0.078, +2015-04-29 00:00:00,0.0,1016.6833330000001,0.0,99.925,0.413083333,0.000833333, +2015-04-29 01:00:00,0.0,1016.4625,0.0,100.0,-0.069333333,0.0, +2015-04-29 02:00:00,0.0,1016.429167,0.0,100.0,-0.529083333,0.0, +2015-04-29 03:00:00,0.0,1016.366667,0.0,100.0,-0.951333333,0.0, +2015-04-29 04:00:00,0.0,1016.35,0.149833333,100.0,-1.2429999999999999,0.0, +2015-04-29 05:00:00,0.0,1016.345833,12.52683333,100.0,-1.40775,0.008083333, +2015-04-29 06:00:00,0.0,1016.3791669999999,82.00833333,99.81666667,0.4755,0.00225, +2015-04-29 07:00:00,0.0,1016.358333,212.45,91.96666667,2.3695,0.331833333, +2015-04-29 08:00:00,0.0,1016.3625,161.8,86.24166667,5.159166667,0.503583333, +2015-04-29 09:00:00,0.0,1016.158333,342.0583333,77.81666667,8.317416667,0.548416667, +2015-04-29 10:00:00,0.0,1015.5875,463.00833330000006,63.455,11.95,2.304083333, +2015-04-29 11:00:00,0.0,1014.8791669999999,479.4,50.46916667,13.05916667,2.129, +2015-04-29 12:00:00,0.0,1013.983333,619.4416667,47.68333333,13.80166667,2.540916667, +2015-04-29 13:00:00,0.0,1013.1875,514.8333333,46.36833333,14.29916667,2.331666667, +2015-04-29 14:00:00,0.0,1012.375,418.3916667,45.33833333,14.315,2.2825833330000003, +2015-04-29 15:00:00,0.0,1011.758333,451.9,44.47166667,15.15666667,1.807166667, +2015-04-29 16:00:00,0.0,1011.145833,221.2583333,44.29583333,14.77666667,1.183166667, +2015-04-29 17:00:00,0.0,1010.954167,117.8,47.67416667,14.46583333,0.46683333299999996, +2015-04-29 18:00:00,0.0,1010.591667,58.62833333,58.0475,13.47166667,0.197833333, +2015-04-29 19:00:00,0.0,1010.458333,5.852583332999999,83.135,10.58333333,0.054000000000000006, +2015-04-29 20:00:00,0.0,1010.466667,0.062083333,88.38333333,8.028416667,0.131083333, +2015-04-29 21:00:00,0.0,1010.4416669999999,0.0,88.36666667,6.8205,0.083583333, +2015-04-29 22:00:00,0.0,1010.483333,0.0,92.55833333,6.2975833329999995,0.01275, +2015-04-29 23:00:00,0.0,1010.291667,0.0,96.7,5.927416667,0.011916666999999999, +2015-04-30 00:00:00,0.0,1010.3708330000001,0.0,92.675,5.702583333,0.0, +2015-04-30 01:00:00,0.0,1010.2458330000001,0.0,91.71666667,5.0735,0.009083333, +2015-04-30 02:00:00,0.0,1010.145833,0.0,91.8,4.582833333,0.0, +2015-04-30 03:00:00,0.0,1009.8,0.0,98.4,3.677666667,0.012, +2015-04-30 04:00:00,0.0,1009.783333,0.09625,84.05833333,2.609666667,0.0, +2015-04-30 05:00:00,0.0,1010.075,11.39333333,80.45916667,1.983416667,0.00033333300000000006, +2015-04-30 06:00:00,0.0,1010.416667,51.46833333,80.41,4.677083333,0.049916667000000005, +2015-04-30 07:00:00,0.0,1010.55,241.45,76.16916667,9.494166667,0.512833333, +2015-04-30 08:00:00,0.0,1010.329167,193.4916667,71.985,11.415,0.6599166670000001, +2015-04-30 09:00:00,0.0,1010.329167,355.7583333,68.70083333,12.305,0.818333333, +2015-04-30 10:00:00,0.0,1009.9,391.0666667,65.38916667,13.4525,1.165333333, +2015-04-30 11:00:00,0.0,1009.5041669999999,303.45,69.5125,13.20416667,1.159166667, +2015-04-30 12:00:00,10.70816717,1008.966667,462.3166666999999,82.9975,12.4375,1.220333333, +2015-04-30 13:00:00,0.0,1008.033333,363.075,71.16333333,14.59083333,1.414333333, +2015-04-30 14:00:00,19.32890287,1007.6208330000001,168.3558333,80.32166667,12.9725,1.3385833329999999, +2015-04-30 15:00:00,24.91778179,1007.795833,127.84166670000002,92.60833333,9.864670826000001,0.9341666670000001, +2015-04-30 16:00:00,5.143530456000001,1007.4125,111.59083329999999,91.85833333,10.51833333,0.695, +2015-04-30 17:00:00,10.12546034,1007.3166669999999,67.12416667,91.725,10.29833333,0.67125, +2015-04-30 18:00:00,15.37322321,1007.195833,45.36,94.55833333,9.476666667,0.665333333, +2015-04-30 19:00:00,0.0,1007.141667,7.2425,93.85,8.911666667,0.532166667, +2015-04-30 20:00:00,0.0,1007.079167,0.11458333300000001,93.925,8.500833333,0.3535, +2015-04-30 21:00:00,7.348265616,1006.679167,0.0,96.8,8.177833332999999,0.28300000000000003, +2015-04-30 22:00:00,7.445890296,1006.529167,0.0,98.98333333,7.3281666670000005,0.5165833329999999, +2015-04-30 23:00:00,7.488915887999999,1006.3708330000001,0.0,99.675,7.046333333,0.18766666699999998, +2015-01-05 00:00:00,2.4348701040000003,1006.175,0.0,100.0,5.7190833329999995,0.1375, +2015-01-05 01:00:00,0.0,1005.8625,0.0,100.0,4.918666667,0.18833333300000002, +2015-01-05 02:00:00,0.0,1005.420833,0.0,100.0,4.887833333000001,0.251416667, +2015-01-05 03:00:00,0.0,1005.3791669999999,0.0,100.0,4.394083333,0.278333333, +2015-01-05 04:00:00,0.0,1005.133333,0.147,100.0,5.301,0.092, +2015-01-05 05:00:00,2.409616224,1004.854167,14.63658333,100.0,5.4589166670000004,0.178416667, +2015-01-05 06:00:00,0.0,1005.020833,68.20666667,98.44166667,5.6260833329999995,0.391083333, +2015-01-05 07:00:00,0.0,1004.85,138.1416667,94.15,6.36075,0.5934166670000001, +2015-01-05 08:00:00,0.0,1004.716667,152.1,93.525,6.387916667000001,0.93525, +2015-01-05 09:00:00,0.0,1004.645833,201.8583333,93.58333333,7.122833332999999,1.056, +2015-01-05 10:00:00,0.0,1004.570833,244.0333333,90.8,7.684,0.963, +2015-01-05 11:00:00,0.0,1004.275,327.2333333,88.79166667,8.71475,1.024916667, +2015-01-05 12:00:00,0.0,1004.166667,433.04166669999995,75.42,10.71916667,0.7406666670000001, +2015-01-05 13:00:00,0.0,1003.520833,425.00833330000006,61.9,12.18416667,0.946666667, +2015-01-05 14:00:00,0.0,1003.2625,239.45,59.525,12.17083333,1.002666667, +2015-01-05 15:00:00,0.0,1002.75,180.9083333,52.38,12.00833333,0.5575, +2015-01-05 16:00:00,0.0,1002.3166669999999,133.96666670000002,52.92333333,11.965,0.46883333299999996, +2015-01-05 17:00:00,0.0,1002.05,95.46,57.97916667,11.81416667,0.269083333, +2015-01-05 18:00:00,0.0,1001.8708330000001,77.6575,60.4225,11.85,0.261, +2015-01-05 19:00:00,0.0,1001.925,18.734,80.43916667,10.10333333,0.10383333300000001, +2015-01-05 20:00:00,0.0,1002.2541669999999,0.21,96.31666667,6.8095,0.22175, +2015-01-05 21:00:00,0.0,1002.625,0.0,98.2,5.084333333,0.022583332999999997, +2015-01-05 22:00:00,0.0,1003.483333,0.0,99.55833333,4.212416667,0.11433333300000001, +2015-01-05 23:00:00,0.0,1003.991667,0.0,100.0,3.21125,0.019583333, +2015-02-05 00:00:00,0.0,1004.454167,0.0,100.0,2.58275,0.02875, +2015-02-05 01:00:00,0.0,1004.841667,0.0,100.0,2.8336666669999997,0.00275, +2015-02-05 02:00:00,0.0,1004.85,0.0,100.0,2.13975,0.0, +2015-02-05 03:00:00,0.0,1005.125,0.0,100.0,0.909833333,0.0, +2015-02-05 04:00:00,0.0,1005.666667,0.265833333,100.0,0.42916666700000006,0.0, +2015-02-05 05:00:00,0.0,1006.258333,14.60266667,100.0,0.34816666700000004,0.00041666699999999996, +2015-02-05 06:00:00,0.0,1007.283333,97.39833333,99.725,2.5931666669999998,0.274416667, +2015-02-05 07:00:00,0.0,1007.75,237.925,85.9725,5.8455,0.5565, +2015-02-05 08:00:00,0.0,1008.1625,130.61416670000003,72.41166667,8.830166667,0.765916667, +2015-02-05 09:00:00,0.0,1008.108333,351.5033333,68.55166667,11.08416667,0.9291666670000001, +2015-02-05 10:00:00,0.0,1007.866667,503.9833333000001,59.5575,13.57,1.062583333, +2015-02-05 11:00:00,0.0,1007.845833,318.15,57.91583333,14.57916667,0.97025, +2015-02-05 12:00:00,0.0,1007.758333,372.55,52.1375,15.07,0.796583333, +2015-02-05 13:00:00,0.0,1007.533333,356.8666667,53.9025,15.455,0.9560833329999999, +2015-02-05 14:00:00,0.0,1007.329167,387.475,47.8375,16.01083333,0.784416667, +2015-02-05 15:00:00,0.0,1006.895833,357.1416667,49.8975,15.8775,1.101333333, +2015-02-05 16:00:00,0.0,1006.6208330000001,122.45833329999999,53.56333333,15.355,1.1643333329999999, +2015-02-05 17:00:00,0.0,1006.266667,103.0166667,52.40166667,14.97333333,0.939583333, +2015-02-05 18:00:00,0.0,1006.133333,60.25083333,59.4,14.52416667,0.24975, +2015-02-05 19:00:00,0.0,1006.05,11.75591667,77.085,12.865,0.1695, +2015-02-05 20:00:00,0.0,1006.108333,0.131916667,92.63333333,9.459166667,0.15, +2015-02-05 21:00:00,0.0,1006.079167,0.0,96.54166667,7.250833332999999,0.08966666699999999, +2015-02-05 22:00:00,0.0,1005.75,0.0,97.24166667,6.6075,0.011666667, +2015-02-05 23:00:00,0.0,1005.4416669999999,0.0,99.375,6.233916667000001,0.0, +2015-03-05 00:00:00,0.0,1004.741667,0.0,99.55833333,6.7816666670000005,0.007833333,238.018986 +2015-03-05 01:00:00,0.0,1003.8875,0.0,98.95,7.305916667000001,0.0,238.018986 +2015-03-05 02:00:00,0.0,1003.241667,0.0,99.00833333,7.306833332999999,0.03425,238.019986 +2015-03-05 03:00:00,0.0,1003.045833,0.0,99.075,7.8389999999999995,0.016666667,238.021336 +2015-03-05 04:00:00,0.0,1002.616667,0.070916667,99.625,8.04625,0.03575,238.020986 +2015-03-05 05:00:00,0.0,1002.466667,4.625333333,99.81666667,8.2425,0.000833333,238.02168599999996 +2015-03-05 06:00:00,0.0,1002.166667,25.85083333,96.71666667,8.735,0.06433333299999999,238.02168599999996 +2015-03-05 07:00:00,0.0,1002.483333,55.05333333,94.75,9.8875,0.11608333300000001,238.02273599999998 +2015-03-05 08:00:00,0.0,1002.2541669999999,100.8891667,95.14166667,10.80083333,0.3045,238.02238599999995 +2015-03-05 09:00:00,0.0,1001.8791669999999,148.7166667,94.84166667,11.955,1.329083333,238.02308599999995 +2015-03-05 10:00:00,0.0,1001.608333,168.2333333,94.575,12.53166667,2.021,238.02308599999995 +2015-03-05 11:00:00,0.0,1001.345833,203.8916667,91.35833333,13.74583333,2.193333333,238.02376933333332 +2015-03-05 12:00:00,0.0,1001.4416669999999,315.65,89.79166667,15.03833333,2.088,238.02478599999998 +2015-03-05 13:00:00,0.0,1001.0666669999999,113.865,87.50833333,15.58916667,1.891666667,238.0248193333333 +2015-03-05 14:00:00,0.0,1000.55,85.5375,92.04166667,14.72666667,2.120166667,238.026536 +2015-03-05 15:00:00,27.1002294,1000.333333,79.70333333,95.775,14.9425,1.544416667,238.02583600000003 +2015-03-05 16:00:00,48.0137227,1000.041667,50.72166667,98.15,15.02833333,0.62625,238.02618600000002 +2015-03-05 17:00:00,18.28582253,1000.116667,84.8025,98.05,15.21333333,0.9570000000000001,238.02651933333334 +2015-03-05 18:00:00,7.397619144,1000.1375,29.94083333,98.86666667,15.35333333,0.267416667,238.027886 +2015-03-05 19:00:00,7.268695847999999,1000.216667,11.8565,99.95833333,14.86,0.378833333,238.02928599999998 +2015-03-05 20:00:00,0.0,1000.404167,0.132916667,99.44166667,14.15166667,0.26508333300000003,238.0285693333333 +2015-03-05 21:00:00,2.9261065680000002,1000.7875,0.0,97.73333333,14.18916667,0.8321666670000001,238.02928599999998 +2015-03-05 22:00:00,0.0,1001.1833330000001,0.0,97.45,14.0575,0.4805,238.02928599999998 +2015-03-05 23:00:00,0.0,1001.725,0.0,99.6,12.58416667,0.123583333,238.03095266666662 +2015-04-05 00:00:00,0.0,1002.0875,0.0,99.05,11.84333333,0.232916667,238.0474497 +2015-04-05 01:00:00,0.0,1002.8708330000001,0.0,98.81666667,11.085,0.089083333,238.04737209999996 +2015-04-05 02:00:00,2.41598904,1003.1625,0.0,99.25833333,12.17666667,0.110833333,238.0472945 +2015-04-05 03:00:00,0.0,1003.45,0.0,99.34166667,12.115,0.1045,238.0472945 +2015-04-05 04:00:00,0.0,1003.675,0.243666667,99.8,10.5625,0.0365,238.0472698833333 +2015-04-05 05:00:00,0.0,1004.083333,26.20991667,97.71666667,10.21,0.12683333300000002,238.04714680000004 +2015-04-05 06:00:00,0.0,1004.533333,81.67916667,93.93333333,13.8625,0.6829999999999999,238.04712093333333 +2015-04-05 07:00:00,0.0,1005.083333,226.1416667,89.33333333,15.56916667,1.188833333,238.04701746666663 +2015-04-05 08:00:00,0.0,1005.645833,139.5525,83.175,16.9575,1.20125,238.04704333333333 +2015-04-05 09:00:00,0.0,1005.8875,355.2916667,76.7625,17.62333333,0.894166667,238.04701746666663 +2015-04-05 10:00:00,0.0,1005.954167,533.65,67.9125,18.86083333,0.963916667,238.0469423333333 +2015-04-05 11:00:00,0.0,1006.341667,632.2833333,61.72333333,19.74166667,1.2631666670000001,238.0469423333333 +2015-04-05 12:00:00,0.0,1005.929167,657.6,61.5475,20.655,1.147666667,238.04686843333334 +2015-04-05 13:00:00,0.0,1005.525,529.55,60.8475,21.7325,0.958666667,238.04681793333336 +2015-04-05 14:00:00,0.0,1005.2458330000001,581.7833333,56.98916667,21.82916667,1.24425,238.0467403333333 +2015-04-05 15:00:00,0.0,1004.8083330000001,319.9583333,56.69833333,21.98416667,0.9565,238.04668859999995 +2015-04-05 16:00:00,0.0,1004.666667,225.9666667,58.50833333,21.595,0.934416667,238.04668859999995 +2015-04-05 17:00:00,0.0,1004.275,112.38,62.23,20.04916667,1.173583333,238.04666396666664 +2015-04-05 18:00:00,0.0,1003.383333,61.44083333,72.51416667,18.74833333,1.11225,238.04654080000003 +2015-04-05 19:00:00,0.0,1002.7,17.96091667,86.68666667,16.94083333,0.6975,238.04651493333336 +2015-04-05 20:00:00,0.0,1002.0,0.132083333,92.98333333,14.67666667,0.050666667,238.04641146666668 +2015-04-05 21:00:00,0.0,1001.525,0.0,93.65833333,14.46083333,0.004916667,238.04638560000004 +2015-04-05 22:00:00,9.823219128,1000.758333,0.0,99.46666667,14.53416667,0.16041666699999999,238.04633390000004 +2015-04-05 23:00:00,2.4299435519999997,999.5833332999998,0.0,99.56666667,14.51833333,0.09125,238.04625635000002 +2015-05-05 00:00:00,2.8778232239999997,998.7708332999998,0.0,93.35,14.9975,1.125916667, +2015-05-05 01:00:00,2.78260296,997.6208332999998,0.0,92.54166667,15.18083333,1.210166667, +2015-05-05 02:00:00,0.0,997.0916667000001,0.0,91.75,15.44666667,1.7609166669999998, +2015-05-05 03:00:00,0.0,996.6666667000002,0.0,97.16666667,16.64416667,2.2566666669999997, +2015-05-05 04:00:00,0.0,996.2375,0.270916667,98.125,16.06833333,2.0531666669999997, +2015-05-05 05:00:00,0.0,996.5791667000001,13.73366667,99.86666667,14.96916667,0.470916667, +2015-05-05 06:00:00,0.0,996.4416667000002,17.70666667,100.0,15.87416667,0.91175, +2015-05-05 07:00:00,2.484376512,997.0208332999998,31.41083333,100.0,16.12166667,0.493166667, +2015-05-05 08:00:00,0.0,997.5333332999999,77.99583333,100.0,16.6175,0.49308333299999996, +2015-05-05 09:00:00,0.0,997.8958332999998,120.25083329999998,86.52,17.84416667,1.056833333, +2015-05-05 10:00:00,0.0,998.5375,177.05,73.89833333,18.96916667,1.7801666669999998, +2015-05-05 11:00:00,0.0,998.6583332999999,480.13333330000006,67.98666667,21.84083333,2.172333333, +2015-05-05 12:00:00,8.986552152,998.4583332999998,595.7833333,60.69083333,24.02166667,2.97325, +2015-05-05 13:00:00,0.0,998.9833332999999,504.8916666999999,56.12333333,24.04916667,3.4410000000000003, +2015-05-05 14:00:00,0.0,999.3875,399.95,52.38666667,23.98083333,2.6374166669999997, +2015-05-05 15:00:00,0.0,1000.195833,523.9916667,48.275,24.16833333,2.985, +2015-05-05 16:00:00,0.0,1000.9958330000001,270.3333333,50.6325,23.0125,2.222583333, +2015-05-05 17:00:00,0.0,1002.154167,119.15833329999998,58.58,21.0625,2.284166667, +2015-05-05 18:00:00,0.0,1003.479167,63.11083333,72.08166667,17.87666667,2.245333333, +2015-05-05 19:00:00,0.0,1004.154167,12.24891667,75.51833333,17.30333333,0.861, +2015-05-05 20:00:00,0.0,1005.4375,0.224916667,84.54833333,15.49416667,0.93525, +2015-05-05 21:00:00,0.0,1006.225,0.0,95.9,12.30583333,0.018416667, +2015-05-05 22:00:00,0.0,1006.716667,0.0,99.64166667,10.34083333,0.292916667, +2015-05-05 23:00:00,0.0,1007.075,0.0,90.8,8.928333333,0.015666667, +2015-06-05 00:00:00,0.0,1007.216667,0.0,85.525,7.475,0.0385,237.7705212 +2015-06-05 01:00:00,0.0,1007.45,0.0,82.84833333,7.197166667,0.0265,237.77362396666663 +2015-06-05 02:00:00,0.0,1007.375,0.0,87.775,6.839833333,0.02525,237.7756925 +2015-06-05 03:00:00,0.0,1007.425,0.0,90.83333333,6.11175,0.043833332999999995,237.7770715 +2015-06-05 04:00:00,0.0,1007.516667,0.464083333,89.96666667,6.019416667000001,0.00875,237.7793123833333 +2015-06-05 05:00:00,0.0,1007.9333330000001,27.93458333,85.49166667,6.543333333,0.029833332999999997,237.77931239999998 +2015-06-05 06:00:00,0.0,1008.5583330000001,120.24583329999999,78.53166667,11.61333333,0.794416667,237.78000189999997 +2015-06-05 07:00:00,0.0,1009.1916669999999,248.14,69.8225,13.9125,1.041666667,237.77948478333334 +2015-06-05 08:00:00,0.0,1009.545833,185.45,62.15916667,14.95333333,1.305083333,237.77534774999995 +2015-06-05 09:00:00,0.0,1009.595833,298.5875,60.3425,15.79916667,1.423,237.76862505 +2015-06-05 10:00:00,0.0,1009.4625,583.4833332999999,56.62583333,16.14,2.3135,237.75862719999998 +2015-06-05 11:00:00,0.0,1009.229167,701.6333333,51.10333333,17.17083333,1.8143333330000002,237.75138738333337 +2015-06-05 12:00:00,0.0,1009.0,565.5416667000001,47.55833333,17.72583333,1.717416667,237.74759508333332 +2015-06-05 13:00:00,0.0,1008.8,387.1416667,49.70583333,17.54166667,1.9829166669999998,237.7448370666667 +2015-06-05 14:00:00,0.0,1008.679167,424.99166669999994,52.03583333,17.59083333,1.942166667,237.74225140000001 +2015-06-05 15:00:00,0.0,1008.545833,459.8583333000001,49.8525,17.42666667,2.1543333330000003,237.73897626666667 +2015-06-05 16:00:00,0.0,1008.3375,313.4833333,49.15083333,17.34333333,2.324666667,237.73983815000005 +2015-06-05 17:00:00,3.131547528,1008.833333,85.69583333,57.48833333,16.15833333,2.0131666669999997,237.7401829 +2015-06-05 18:00:00,0.0,1009.5666669999999,59.3425,65.29083333,14.38166667,1.165666667,237.73983815 +2015-06-05 19:00:00,0.0,1010.179167,22.95925,67.22083333,13.39666667,0.603583333,237.74087240000003 +2015-06-05 20:00:00,0.0,1010.583333,0.41416666700000004,87.88583333,9.408166667,0.022666667,237.7422514166667 +2015-06-05 21:00:00,0.0,1010.729167,0.0,74.55666667,8.721583333,0.10316666699999999,237.74552658333332 +2015-06-05 22:00:00,0.0,1011.3625,0.0,73.68,9.968333333,0.40283333299999996,237.7482846 +2015-06-05 23:00:00,0.0,1011.570833,0.0,78.60166667,10.15333333,0.49708333299999996,237.7493188666667 +2015-07-05 00:00:00,0.0,1011.766667,0.0,79.48,10.1475,0.6629999999999999,237.57360860000003 +2015-07-05 01:00:00,0.0,1011.616667,0.0,84.33333333,9.508333333,0.45491666700000005,237.57960251666665 +2015-07-05 02:00:00,0.0,1011.7,0.0,82.85,9.1575,0.29575,237.5807177 +2015-07-05 03:00:00,0.0,1011.8166669999999,0.0,86.825,8.26625,0.342,237.58378433333334 +2015-07-05 04:00:00,0.0,1012.095833,0.65525,89.55833333,8.763333333,0.695666667,237.58587525000004 +2015-07-05 05:00:00,0.0,1012.679167,28.0595,88.675,7.27,0.048416667000000004,237.5869904 +2015-07-05 06:00:00,0.0,1013.283333,115.00083329999998,84.78333333,9.850583333,0.47125,237.58754796666665 +2015-07-05 07:00:00,0.0,1014.091667,187.6008333,80.71166667,11.1775,0.945583333,237.58880251666665 +2015-07-05 08:00:00,0.0,1014.458333,151.0166667,75.29833333,12.065,0.9325,237.582251 +2015-07-05 09:00:00,0.0,1014.604167,281.55,71.1375,13.43666667,1.395,237.57263284999996 +2015-07-05 10:00:00,0.0,1014.783333,453.875,66.9175,14.3975,1.303166667,237.55980863333332 +2015-07-05 11:00:00,0.0,1014.829167,554.2333332999999,57.61166667,15.22833333,1.6171666669999998,237.55144499999997 +2015-07-05 12:00:00,0.0,1014.604167,455.65,53.43666667,16.06333333,1.190416667,237.54837835 +2015-07-05 13:00:00,0.0,1014.65,692.2166667,48.2025,17.55833333,1.144583333,237.54531169999998 +2015-07-05 14:00:00,0.0,1014.420833,549.1083332999999,47.7275,18.08083333,1.13,237.5450329 +2015-07-05 15:00:00,0.0,1014.208333,454.21666669999996,45.05,17.43333333,1.029833333,237.54489351666666 +2015-07-05 16:00:00,0.0,1014.091667,387.09166669999996,43.71083333,17.74333333,1.257416667,237.54391776666668 +2015-07-05 17:00:00,0.0,1013.920833,72.01416667,47.09916667,17.77666667,0.755,237.54336018333333 +2015-07-05 18:00:00,0.0,1013.7541669999999,49.40083333,49.8275,17.03833333,0.32558333300000003,237.54336016666664 +2015-07-05 19:00:00,0.0,1014.025,16.01441667,73.44166667,12.93083333,0.05775,237.54517231666668 +2015-07-05 20:00:00,0.0,1014.2625,0.34375,86.36666667,8.74525,0.0014166670000000001,237.54572986666668 +2015-07-05 21:00:00,0.0,1014.145833,0.0,91.05,7.025583332999999,0.017416667,237.5507480166667 +2015-07-05 22:00:00,0.0,1014.179167,0.0,96.01666667,6.365,0.000833333,237.55562681666666 +2015-07-05 23:00:00,0.0,1014.170833,0.0,97.74166667,5.978833333,0.0055,237.5599480333333 +2015-08-05 00:00:00,0.0,1014.0375,0.0,98.925,5.638166667,0.0055,237.49136631666667 +2015-08-05 01:00:00,0.0,1013.65,0.0,99.44166667,5.519083332999999,0.0,237.49582695000004 +2015-08-05 02:00:00,0.0,1013.295833,0.0,99.96666667,5.673416667000001,0.00225,237.49875416666669 +2015-08-05 03:00:00,0.0,1013.166667,0.0,99.88333333,6.010333332999999,0.030333332999999997,237.50237845 +2015-08-05 04:00:00,0.0,1012.858333,0.360333333,100.0,6.472666667,0.0035833329999999997,237.5029360166667 +2015-08-05 05:00:00,0.0,1012.791667,14.30816667,100.0,6.717416667,0.0,237.5048875 +2015-08-05 06:00:00,0.0,1012.6625,75.87083333,98.05,7.828583332999999,0.003833333,237.50837236666666 +2015-08-05 07:00:00,0.0,1012.529167,160.0083333,84.9,9.006666667000001,0.814666667,237.51004508333332 +2015-08-05 08:00:00,0.0,1012.1916669999999,164.18333330000002,74.49333333,11.15083333,1.045666667,237.51185721666664 +2015-08-05 09:00:00,0.0,1011.575,355.5,66.04,14.415,0.732,237.51352991666667 +2015-08-05 10:00:00,0.0,1011.108333,442.25833330000006,58.9625,16.03666667,1.047916667,237.51269355 +2015-08-05 11:00:00,0.0,1010.716667,525.3083333000001,54.01666667,17.70833333,1.2409999999999999,237.50739661666668 +2015-08-05 12:00:00,0.0,1010.2875,554.7583333,52.16666667,18.64333333,1.4453333330000002,237.49763905 +2015-08-05 13:00:00,0.0,1010.2458330000001,629.0833332999999,50.35,19.66166667,1.295166667,237.4876027 +2015-08-05 14:00:00,0.0,1009.8875,592.3083333,48.7675,20.00416667,1.683583333,237.47561485000003 +2015-08-05 15:00:00,0.0,1009.304167,534.5083333,44.52166667,21.12583333,1.168666667,237.46334818333332 +2015-08-05 16:00:00,0.0,1009.2625,286.5416667,48.28833333,20.73666667,0.861916667,237.45554216666667 +2015-08-05 17:00:00,0.0,1009.0,78.27,60.10583333,19.52,0.6729999999999999,237.44801491666666 +2015-08-05 18:00:00,0.0,1008.95,33.44833333,72.93083333,18.64416667,0.44025,237.44508765 +2015-08-05 19:00:00,0.0,1009.329167,7.195666667,82.42583333,16.63916667,0.07,237.44689975000003 +2015-08-05 20:00:00,0.0,1010.0,0.130083333,85.41666667,15.1725,0.025,237.45177853333337 +2015-08-05 21:00:00,0.0,1010.7625,0.0,83.81666667,14.65666667,0.12658333300000002,237.45651791666663 +2015-08-05 22:00:00,0.0,1010.729167,0.0,80.87666667,13.6225,0.052666667,237.46097853333333 +2015-08-05 23:00:00,0.0,1010.95,0.0,77.3,12.35,0.0245,237.46669366666666 +2015-09-05 00:00:00,0.0,1011.104167,0.0,89.85833333,9.810833333,0.017166667,237.54739793333331 +2015-09-05 01:00:00,0.0,1011.154167,0.0,98.26666667,8.023083332999999,0.00375,237.55003478333336 +2015-09-05 02:00:00,0.0,1011.179167,0.0,99.99166667,7.3405,0.03875,237.55158585 +2015-09-05 03:00:00,0.0,1011.3875,0.0,100.0,6.7264166670000005,0.018416667,237.55189604999998 +2015-09-05 04:00:00,0.0,1011.5666669999999,0.7905833329999999,100.0,6.952083332999999,0.002166667,237.55468801666666 +2015-09-05 05:00:00,0.0,1011.833333,18.52475,100.0,7.37275,0.0055,237.55654933333332 +2015-09-05 06:00:00,0.0,1012.354167,53.5575,99.95833333,9.5025,0.09983333300000001,237.5559289 +2015-09-05 07:00:00,0.0,1012.833333,93.30583333,84.3,11.62833333,0.1055,237.55654933333332 +2015-09-05 08:00:00,0.0,1013.1833330000001,195.2166667,81.56166667,15.60083333,0.7180833329999999,237.55794531666666 +2015-09-05 09:00:00,0.0,1013.395833,324.4416667,77.5775,16.81,0.922083333,237.55484313333332 +2015-09-05 10:00:00,0.0,1013.470833,380.1333333,73.36333333,18.22916667,1.138916667,237.55267161666666 +2015-09-05 11:00:00,0.0,1013.583333,396.71666669999996,69.03416667,18.7325,1.418166667,237.55081031666668 +2015-09-05 12:00:00,0.0,1013.6625,329.3916667,65.335,19.06083333,1.25075,237.54677750000005 +2015-09-05 13:00:00,0.0,1013.704167,489.5666666999999,62.24333333,20.31333333,1.459333333,237.54367534999997 +2015-09-05 14:00:00,0.0,1013.6625,510.90833330000004,57.71583333,20.91083333,1.5980833330000002,237.53979763333334 +2015-09-05 15:00:00,0.0,1013.4625,425.3,55.74666667,20.82,1.4709999999999999,237.53685058333335 +2015-09-05 16:00:00,0.0,1013.3083330000001,260.65,55.36916667,20.34666667,1.6499166669999998,237.5342137166667 +2015-09-05 17:00:00,48.38112202,1013.833333,62.22666667,75.29916667,16.61166667,2.246416667,237.53452395 +2015-09-05 18:00:00,47.82685368,1014.445833,63.6825,93.59166667,13.52833333,2.242083333,237.53529949999998 +2015-09-05 19:00:00,7.387168104,1015.741667,13.72816667,96.075,12.48,0.555083333,237.53638526666668 +2015-09-05 20:00:00,0.0,1016.154167,0.542333333,99.05,10.875,0.159583333,237.5371608 +2015-09-05 21:00:00,0.0,1016.758333,0.0,99.95833333,9.384166667,0.3775,237.53731589999998 +2015-09-05 22:00:00,0.0,1017.425,0.0,97.54166667,8.58875,0.107083333,237.54103848333338 +2015-09-05 23:00:00,2.4050227680000003,1017.508333,0.0,98.69166667,7.537916667,0.04325,237.54414066666664 +2015-10-05 00:00:00,0.0,1018.0125,0.0,98.65,6.840666667000001,0.00033333300000000006,237.58633006666665 +2015-10-05 01:00:00,0.0,1018.391667,0.0,97.91666667,6.56725,0.013833333,237.58834649999997 +2015-10-05 02:00:00,0.0,1018.7375,0.0,96.48333333,6.39125,0.054916667,237.58772605000001 +2015-10-05 03:00:00,0.0,1019.3708330000001,0.0,97.03333333,6.439083332999999,0.134583333,237.58741581666663 +2015-10-05 04:00:00,0.0,1020.0125,0.9398333329999999,97.13333333,7.22325,0.399416667,237.5875709333333 +2015-10-05 05:00:00,0.0,1020.5583330000001,26.61475,97.61666667,7.78825,0.6755,237.58850159999997 +2015-10-05 06:00:00,0.0,1021.133333,127.74166670000001,93.50833333,9.211666667000001,0.256333333,237.59098331666667 +2015-10-05 07:00:00,0.0,1021.6,209.6416667,90.15833333,11.58083333,0.608583333,237.59098333333336 +2015-10-05 08:00:00,0.0,1022.104167,182.4,83.56833333,13.36166667,0.9875,237.5926895 +2015-10-05 09:00:00,2.651736768,1022.295833,347.5083333,80.7325,14.16666667,1.069416667,237.59346503333333 +2015-10-05 10:00:00,0.0,1022.720833,410.625,72.53583333,14.85833333,1.6810833330000001,237.59299973333336 +2015-10-05 11:00:00,0.0,1023.0375,531.6916666999999,66.13166667,15.72833333,1.7810833330000002,237.59191398333334 +2015-10-05 12:00:00,0.0,1022.929167,494.53333330000004,60.07666667,16.76333333,1.6766666669999999,237.59222418333334 +2015-10-05 13:00:00,0.0,1022.791667,681.4,55.39083333,17.91166667,1.5775833330000002,237.58912203333333 +2015-10-05 14:00:00,0.0,1022.7,638.075,53.34666667,18.955,1.08275,237.58788116666665 +2015-10-05 15:00:00,0.0,1022.5041669999999,506.4333333000001,52.36166667,19.24166667,0.989916667,237.58788116666668 +2015-10-05 16:00:00,0.0,1022.225,413.125,48.20916667,19.47916667,1.113416667,237.58633009999997 +2015-10-05 17:00:00,0.0,1021.775,93.64083333,50.47333333,19.79833333,0.531666667,237.5871056333333 +2015-10-05 18:00:00,0.0,1021.5375,51.27416667,63.5225,18.22916667,0.26225,237.58726073333332 +2015-10-05 19:00:00,0.0,1021.6125,25.88916667,82.9875,15.2625,0.007916666999999999,237.58819138333334 +2015-10-05 20:00:00,0.0,1021.820833,0.43891666700000004,91.59166667,11.155,0.2125,237.59005266666668 +2015-10-05 21:00:00,0.0,1022.104167,0.0,95.225,9.438333333,0.043333332999999995,237.5886566833334 +2015-10-05 22:00:00,0.0,1022.0125,0.0,98.45,8.23325,0.023583332999999998,237.59098331666667 +2015-10-05 23:00:00,0.0,1021.779167,0.0,99.83333333,7.388,0.03575,237.591914 +2015-11-05 00:00:00,0.0,1021.483333,0.0,100.0,6.482166667,0.031916667,237.7289188166667 +2015-11-05 01:00:00,0.0,1021.070833,0.0,100.0,5.8834166670000005,0.0,237.7264397833333 +2015-11-05 02:00:00,0.0,1020.841667,0.0,100.0,5.312083333,0.006083333000000001,237.72845398333334 +2015-11-05 03:00:00,0.0,1020.804167,0.0,100.0,5.038,0.0225,237.72736939999996 +2015-11-05 04:00:00,0.0,1020.85,0.827666667,100.0,4.9565,0.0,237.72938365000002 +2015-11-05 05:00:00,0.0,1020.825,26.60816667,100.0,5.259833333,0.0,237.73186271666665 +2015-11-05 06:00:00,0.0,1020.8625,130.7575,99.46666667,7.473,0.03925,237.73170773333334 +2015-11-05 07:00:00,0.0,1020.8708330000001,211.83333330000002,90.34166667,10.36916667,0.44725,237.73155280000003 +2015-11-05 08:00:00,0.0,1020.645833,204.16666669999998,84.25833333,12.29583333,0.736,237.72690458333332 +2015-11-05 09:00:00,0.0,1020.5375,318.0,75.4725,15.14916667,1.133333333,237.72597495 +2015-11-05 10:00:00,0.0,1020.145833,497.525,65.58083333,17.86666667,1.699416667,237.72566506666666 +2015-11-05 11:00:00,0.0,1019.708333,518.9333333000001,60.34916667,19.59083333,2.260166667,237.72504531666667 +2015-11-05 12:00:00,0.0,1019.1625,523.1,59.74166667,20.76916667,2.1189166669999997,237.72829906666666 +2015-11-05 13:00:00,0.0,1018.55,521.7,54.36583333,22.0675,2.66475,237.72659471666665 +2015-11-05 14:00:00,0.0,1018.204167,516.7,50.43916667,23.20166667,2.2254166669999997,237.72721448333337 +2015-11-05 15:00:00,0.0,1017.633333,512.4916667,47.54833333,24.0675,1.7608333330000001,237.72953856666663 +2015-11-05 16:00:00,0.0,1016.7625,436.1833333000001,46.59666667,24.50666667,1.98475,237.73062313333335 +2015-11-05 17:00:00,0.0,1016.3708330000001,99.25416667,42.73916667,24.55833333,1.817333333,237.73139786666664 +2015-11-05 18:00:00,0.0,1016.3625,49.725,64.83916667,22.44416667,0.031,237.73186268333336 +2015-11-05 19:00:00,0.0,1016.65,14.49408333,81.4425,18.17166667,0.042416667000000005,237.73170776666666 +2015-11-05 20:00:00,0.0,1016.4375,0.38733333299999995,87.525,15.60833333,0.254833333,237.73248245 +2015-11-05 21:00:00,0.0,1016.079167,0.0,93.34166667,13.7975,0.1065,237.73062316666665 +2015-11-05 22:00:00,0.0,1016.141667,0.0,97.18333333,12.305,0.00925,237.73093304999998 +2015-11-05 23:00:00,0.0,1015.883333,0.0,99.18333333,10.88166667,0.0755,237.72969351666669 +2015-12-05 00:00:00,0.0,1015.704167,0.0,100.0,10.03583333,0.029333333,238.0489231833333 +2015-12-05 01:00:00,0.0,1015.366667,0.0,100.0,9.184166667000001,0.006999999999999999,238.04928109999994 +2015-12-05 02:00:00,0.0,1014.883333,0.0,100.0,9.260833332999999,0.014916667,238.04820736666667 +2015-12-05 03:00:00,0.0,1014.404167,0.0,100.0,9.261666667,0.003666667,238.04641784999998 +2015-12-05 04:00:00,0.0,1014.0375,0.625166667,100.0,9.483333333,0.0,238.04713363333335 +2015-12-05 05:00:00,0.0,1013.758333,22.66808333,100.0,9.8025,0.032,238.04802843333331 +2015-12-05 06:00:00,0.0,1013.483333,83.3125,99.81666667,11.48166667,0.15783333300000002,238.04713363333335 +2015-12-05 07:00:00,0.0,1013.266667,173.6416667,92.49166667,15.13916667,0.5305833329999999,238.04659678333334 +2015-12-05 08:00:00,0.0,1012.916667,201.8916667,82.4725,17.54583333,0.8290000000000001,238.04480725 +2015-12-05 09:00:00,0.0,1012.429167,341.0833333,73.52916667,20.73333333,0.49208333299999996,238.0417650333333 +2015-12-05 10:00:00,0.0,1011.533333,477.00833330000006,53.68083333,22.93666667,2.3264166669999997,238.0421229333333 +2015-12-05 11:00:00,0.0,1011.5,516.825,54.245,25.56833333,1.582416667,238.04087028333333 +2015-12-05 12:00:00,0.0,1011.070833,581.9833332999999,56.39833333,26.29083333,1.4358333330000002,238.03997551666666 +2015-12-05 13:00:00,0.0,1010.429167,631.5916667,51.89416667,27.51666667,1.4580000000000002,238.03908075 +2015-12-05 14:00:00,0.0,1009.783333,370.8333333,51.04833333,27.9925,1.18625,238.0387228333334 +2015-12-05 15:00:00,23.79395064,1009.991667,107.295,75.14833333,22.09916667,1.8154166669999998,238.03997549999997 +2015-12-05 16:00:00,0.0,1011.083333,220.275,82.53583333,20.19,1.851666667,238.03961758333335 +2015-12-05 17:00:00,0.0,1011.658333,79.72083333,77.23666667,19.54833333,1.284,238.04069130000002 +2015-12-05 18:00:00,0.0,1012.258333,47.80916667,73.80166667,18.46,0.723583333,238.0403334 +2015-12-05 19:00:00,0.0,1013.220833,28.6665,63.71916667,18.1075,2.343416667,238.03908073333332 +2015-12-05 20:00:00,0.0,1014.1833330000001,1.038583333,70.23833333,15.92583333,1.4216666669999998,238.03782806666666 +2015-12-05 21:00:00,0.0,1015.229167,0.0,74.70833333,14.4175,1.16625,238.03747016666668 +2015-12-05 22:00:00,0.0,1016.1208330000001,0.0,86.45416667,12.82916667,1.287416667,238.03872283333337 +2015-12-05 23:00:00,0.0,1016.820833,0.0,93.99166667,9.29,0.14800000000000002,238.03818598333336 +2015-05-13 00:00:00,0.0,1017.4875,0.0,91.00833333,9.0825,0.296666667,238.00081638333327 +2015-05-13 01:00:00,0.0,1017.791667,0.0,97.13333333,8.038916667,0.169333333,238.00116116666666 +2015-05-13 02:00:00,0.0,1017.695833,0.0,99.86666667,6.57625,0.1055,238.00185069999995 +2015-05-13 03:00:00,0.0,1017.6833330000001,0.0,100.0,5.5729999999999995,0.0015,238.00012690000003 +2015-05-13 04:00:00,0.0,1017.416667,1.6008333330000002,100.0,4.808833333,0.0725,238.0015059 +2015-05-13 05:00:00,0.0,1017.616667,59.85516667,99.725,5.138916667,0.0010833330000000001,238.0008164 +2015-05-13 06:00:00,0.0,1017.866667,167.8916667,88.66,9.033833332999999,0.204416667,237.99771363333335 +2015-05-13 07:00:00,0.0,1017.8875,255.2425,77.22916667,11.46666667,0.818583333,237.99633461666667 +2015-05-13 08:00:00,0.0,1017.45,139.5283333,62.6325,14.23916667,0.8736666670000001,237.99374896666666 +2015-05-13 09:00:00,0.0,1016.970833,418.5341667,53.6925,15.39192836,0.854833333,237.9949556 +2015-05-13 10:00:00,0.0,1016.0875,611.6916667,53.91583333,16.09,1.456833333,237.99254231666666 +2015-05-13 11:00:00,0.0,1015.1833330000001,678.6166667,49.1175,18.10333333,0.918416667,237.99150805 +2015-05-13 12:00:00,0.0,1014.220833,702.4583332999999,46.78166667,18.78666667,1.314,237.99202520000003 +2015-05-13 13:00:00,0.0,1013.0875,690.375,40.49333333,19.22833333,1.7045,237.99030143333334 +2015-05-13 14:00:00,0.0,1011.6875,640.2916667000001,38.82083333,20.0225,1.4590833330000001,237.98926715000002 +2015-05-13 15:00:00,0.0,1010.975,494.3583333000001,38.8775,20.99583333,1.214416667,237.98754339999996 +2015-05-13 16:00:00,0.0,1009.458333,186.16666669999998,47.70083333,19.8375,0.96875,237.99047381666665 +2015-05-13 17:00:00,0.0,1008.929167,96.5025,54.41,18.54416667,0.9209999999999999,237.99116333333333 +2015-05-13 18:00:00,0.0,1008.145833,55.63416667,71.12166667,17.7775,0.5206666670000001,237.99081856666666 +2015-05-13 19:00:00,0.0,1007.3375,22.23083333,79.88416667,15.70333333,0.34375,237.99374898333335 +2015-05-13 20:00:00,0.0,1007.2,0.99725,89.78333333,13.22833333,0.15733333300000002,237.99219758333334 +2015-05-13 21:00:00,0.0,1007.6208330000001,0.0,92.06666667,13.44333333,1.098083333,237.9920252166667 +2015-05-13 22:00:00,0.0,1007.725,0.0,94.475,12.07333333,0.18233333300000001,237.99357659999998 +2015-05-13 23:00:00,0.0,1007.95,0.0,93.95,11.3725,0.063166667,237.99392134999997 +2015-05-14 00:00:00,0.0,1008.204167,0.0,93.975,11.65166667,0.842333333,237.9935766 +2015-05-14 01:00:00,0.0,1008.0666669999999,0.0,86.34166667,11.2525,1.5155833330000001,237.99685173333333 +2015-05-14 02:00:00,0.0,1008.1,0.0,95.25,8.809166667000001,0.33616666700000003,237.99547271666665 +2015-05-14 03:00:00,0.0,1008.416667,0.0,98.93333333,8.977916667,0.9530833329999999,237.99633461666664 +2015-05-14 04:00:00,0.0,1008.708333,1.6736666669999998,99.55,6.2495833329999995,0.089333333,237.99702415 +2015-05-14 05:00:00,0.0,1009.0625,51.15666667,99.35,6.1631666670000005,0.012083333,237.99667938333332 +2015-05-14 06:00:00,0.0,1009.604167,151.6083333,90.33333333,9.243166667,1.4485833330000002,237.99512800000002 +2015-05-14 07:00:00,0.0,1009.9875,246.9175,82.26416667,10.27,2.088916667,237.99254233333332 +2015-05-14 08:00:00,0.0,1010.0,172.30833330000002,75.90083333,11.4375,1.7983333330000002,237.99254233333332 +2015-05-14 09:00:00,0.0,1009.779167,330.5083333,72.815,12.68333333,1.231416667,237.99150806666668 +2015-05-14 10:00:00,0.0,1009.354167,547.5166667000001,66.26,14.03416667,1.4610833330000002,237.99012904999998 +2015-05-14 11:00:00,0.0,1009.116667,685.9833332999999,59.46083333,14.91166667,1.7781666669999998,237.98840528333335 +2015-05-14 12:00:00,0.0,1008.545833,659.3,52.18333333,16.14583333,1.6983333330000001,237.98633675 +2015-05-14 13:00:00,0.0,1007.8125,561.2833333,49.20416667,16.95833333,1.6259166669999998,237.98426823333338 +2015-05-14 14:00:00,0.0,1007.270833,504.29166669999995,49.745,17.54333333,1.4576666669999998,237.98202735000004 +2015-05-14 15:00:00,0.0,1006.583333,336.075,47.63333333,18.37916667,0.9065833329999999,237.98219973333332 +2015-05-14 16:00:00,0.0,1006.0125,333.45,46.54583333,18.63916667,0.993,237.9801312 +2015-05-14 17:00:00,0.0,1005.641667,153.08333330000002,50.075,17.62833333,1.351,237.98254448333333 +2015-05-14 18:00:00,0.0,1005.429167,53.06,58.71916667,16.2925,0.864166667,237.9853025 +2015-05-14 19:00:00,0.0,1005.554167,11.92691667,73.3975,14.8175,0.645833333,237.98564725000003 +2015-05-14 20:00:00,0.0,1005.65,0.639916667,86.175,13.69,0.142666667,237.98771580000002 +2015-05-14 21:00:00,0.0,1005.845833,0.0,89.20833333,12.99666667,0.018416667,237.98754343333334 +2015-05-14 22:00:00,0.0,1005.9333330000001,0.0,92.98333333,12.5025,0.07275,237.98633676666668 +2015-05-14 23:00:00,0.0,1005.858333,0.0,94.05833333,12.11666667,0.0405,237.98616438333337 +2015-05-15 00:00:00,0.0,1005.8125,0.0,94.775,11.9675,0.033416667000000004,237.98754341666668 +2015-05-15 01:00:00,0.0,1005.6833330000001,0.0,91.15,11.84166667,0.34916666700000004,237.9870263 +2015-05-15 02:00:00,0.0,1005.7458330000001,0.0,87.8,11.5725,0.53125,237.98616438333337 +2015-05-15 03:00:00,0.0,1005.904167,0.0,84.0575,11.555,1.339666667,237.9861644 +2015-05-15 04:00:00,0.0,1006.466667,0.616083333,78.6575,11.2675,1.25075,237.98616439999998 +2015-05-15 05:00:00,0.0,1007.195833,13.17583333,80.54166667,10.95416667,0.818666667,237.98478540000005 +2015-05-15 06:00:00,0.0,1007.6208330000001,59.14,81.30166667,10.9225,1.774583333,237.98495776666664 +2015-05-15 07:00:00,0.0,1008.3166669999999,156.8666667,78.875,11.195,2.3690833330000003,237.98409586666665 +2015-05-15 08:00:00,0.0,1009.025,184.375,75.6775,11.93666667,2.1385,237.98133786666668 +2015-05-15 09:00:00,0.0,1009.604167,433.08333330000005,66.73083333,14.725,2.1935,237.9796140666667 +2015-05-15 10:00:00,0.0,1010.145833,612.3416667,56.80333333,16.68,2.517416667,237.97737318333336 +2015-05-15 11:00:00,0.0,1010.325,631.2833333,50.5125,17.67583333,3.3555,237.97564939999998 +2015-05-15 12:00:00,0.0,1010.645833,607.9,52.64416667,18.1825,2.882083333,237.9765113 +2015-05-15 13:00:00,0.0,1010.766667,690.9833332999999,50.0225,19.33,2.392833333,237.97289139999998 +2015-05-15 14:00:00,0.0,1010.679167,648.0666667,47.51333333,19.90666667,3.067416667,237.9696162166667 +2015-05-15 15:00:00,0.0,1010.75,550.525,46.26833333,20.26,3.220416667,237.9692715 +2015-05-15 16:00:00,0.0,1010.925,377.78333330000004,46.605,20.53416667,2.819666667,237.97030575 +2015-05-15 17:00:00,0.0,1011.45,84.49833333,47.36833333,19.88583333,2.88175,237.96944386666664 +2015-05-15 18:00:00,0.0,1011.85,42.525,50.31666667,18.28333333,2.75325,237.96961623333334 +2015-05-15 19:00:00,0.0,1012.616667,20.97025,60.43166667,16.985,1.975916667,237.97065051666664 +2015-05-15 20:00:00,0.0,1013.695833,0.92325,69.90666667,14.675,1.7634166669999998,237.9720295 +2015-05-15 21:00:00,0.0,1014.7458330000001,0.0,86.45,12.18,0.716,237.9711676166667 +2015-05-15 22:00:00,0.0,1015.4333330000001,0.0,90.45,8.703333333,0.124,237.97289138333335 +2015-05-15 23:00:00,0.0,1015.75,0.0,93.025,7.196166667000001,0.04725,237.97409801666666 +2015-05-16 00:00:00,0.0,1016.179167,0.0,95.09166667,6.230583332999999,0.135166667,237.97375328333337 +2015-05-16 01:00:00,0.0,1016.35,0.0,97.75,5.605916667000001,0.02075,237.97323615000002 +2015-05-16 02:00:00,0.0,1016.425,0.0,99.84166667,5.0985833330000006,0.022833332999999997,237.97392565000004 +2015-05-16 03:00:00,0.0,1016.554167,0.0,100.0,4.4575833330000005,0.01475,237.97427038333333 +2015-05-16 04:00:00,0.0,1016.741667,3.31625,100.0,4.796,0.10025,237.97547701666667 +2015-05-16 05:00:00,0.0,1016.829167,36.65666667,100.0,5.711666667,0.18175,237.97323613333333 +2015-05-16 06:00:00,0.0,1017.225,114.81083329999998,93.54166667,7.942,0.337916667,237.97082286666668 +2015-05-16 07:00:00,0.0,1017.6625,210.525,83.525,10.20916667,0.645333333,237.9684096 +2015-05-16 08:00:00,0.0,1018.133333,152.125,77.00833333,12.30666667,0.847833333,237.96754771666667 +2015-05-16 09:00:00,0.0,1018.079167,433.425,68.855,14.48916667,0.871416667,237.96651345 +2015-05-16 10:00:00,0.0,1018.145833,559.4833332999999,63.045,15.405,0.9089166670000001,237.96220403333334 +2015-05-16 11:00:00,0.0,1017.966667,371.46666669999996,63.015,15.77083333,1.109583333,237.9639278 +2015-05-16 12:00:00,0.0,1017.6291669999999,222.56666669999998,64.3675,14.96666667,0.9745,237.9641002 +2015-05-16 13:00:00,0.0,1017.708333,191.20833330000002,61.52916667,14.15916667,0.92775,237.96392781666668 +2015-05-16 14:00:00,0.0,1017.7125,106.2175,66.27333333,14.1225,0.871916667,237.96289354999996 +2015-05-16 15:00:00,0.0,1017.866667,88.95333333,69.57083333,14.2175,0.35233333299999997,237.96151455000003 +2015-05-16 16:00:00,0.0,1018.041667,122.7175,69.3475,15.10583333,0.580666667,237.95961838333335 +2015-05-16 17:00:00,0.0,1018.416667,97.6975,74.41583333,14.7875,0.8091666670000001,237.95892888333333 +2015-05-16 18:00:00,0.0,1018.595833,57.57833333,81.80583333,14.2125,1.100416667,237.9591012666667 +2015-05-16 19:00:00,0.0,1018.7541669999999,9.42275,86.95,13.44,0.827916667,237.95979075000002 +2015-05-16 20:00:00,0.0,1019.266667,0.3545,91.65,13.015,0.39191666700000005,237.95875651666668 +2015-05-16 21:00:00,10.93080619,1019.7125,0.0,96.25833333,12.4475,0.52125,237.95823940000002 +2015-05-16 22:00:00,0.0,1020.166667,0.0,97.66666667,11.4875,0.7726666670000001,237.95979078333332 +2015-05-16 23:00:00,0.0,1020.4625,0.0,97.21666667,10.78,0.246166667,237.96082503333332 +2015-05-17 00:00:00,0.0,1020.733333,0.0,99.49166667,9.480833333,0.0465,237.96116976666667 +2015-05-17 01:00:00,0.0,1020.7,0.0,100.0,8.01275,0.10825,237.96254878333332 +2015-05-17 02:00:00,0.0,1020.883333,0.0,100.0,7.612666667,0.051333332999999995,237.96237641666664 +2015-05-17 03:00:00,2.4050227680000003,1021.0666669999999,0.0,100.0,6.53675,0.004916667,237.96272116666668 +2015-05-17 04:00:00,0.0,1021.25,2.009583333,100.0,5.225916667,0.0065,237.96306591666666 +2015-05-17 05:00:00,0.0,1021.529167,47.11416667,100.0,5.353833333,0.00625,237.96358306666664 +2015-05-17 06:00:00,0.0,1021.8083330000001,160.6333333,99.54166667,8.25275,0.287833333,237.9618592833333 +2015-05-17 07:00:00,0.0,1021.958333,231.69166669999998,83.71416667,10.82083333,0.274083333,237.96013551666667 +2015-05-17 08:00:00,0.0,1022.020833,168.5,72.8475,12.53583333,0.285333333,237.95927361666668 +2015-05-17 09:00:00,0.0,1021.6833330000001,433.125,58.98,14.02416667,0.7729166670000001,237.95634323333334 +2015-05-17 10:00:00,0.0,1021.266667,632.65,52.93416667,15.035,1.168416667,237.95548135 +2015-05-17 11:00:00,0.0,1020.958333,616.7833333,51.73166667,15.61916667,1.177666667,237.95289568333337 +2015-05-17 12:00:00,0.0,1020.3708330000001,687.225,51.4025,16.28083333,1.427583333,237.9511719333333 +2015-05-17 13:00:00,0.0,1019.666667,485.0,49.18333333,16.45333333,1.5124166669999999,237.95186145 +2015-05-17 14:00:00,0.0,1019.0625,506.075,50.5875,17.18166667,1.5893333330000001,237.9491034 +2015-05-17 15:00:00,0.0,1018.475,436.975,51.2475,18.055,1.046916667,237.947552 +2015-05-17 16:00:00,0.0,1017.858333,391.59166669999996,49.29583333,17.87833333,1.318666667,237.94669013333336 +2015-05-17 17:00:00,0.0,1017.383333,121.55,53.10166667,18.08583333,0.614166667,237.9473796166667 +2015-05-17 18:00:00,0.0,1016.7458330000001,76.5125,60.605,17.28916667,0.18808333300000002,237.94686249999998 +2015-05-17 19:00:00,0.0,1016.325,25.92,83.66833333,14.73083333,0.08541666699999999,237.94737965 +2015-05-17 20:00:00,0.0,1016.233333,1.963333333,89.99166667,11.89583333,0.017416667,237.94755201666666 +2015-05-17 21:00:00,0.0,1016.020833,0.0,92.39166667,9.569166667000001,0.0025833329999999997,237.94979293333333 +2015-05-17 22:00:00,0.0,1015.6125,0.0,94.21666667,8.823333332999999,0.0,237.94962055 +2015-05-17 23:00:00,0.0,1015.141667,0.0,97.48333333,8.568333333,0.09925,237.9508271666667 +2015-05-18 00:00:00,0.0,1014.641667,0.0,98.625,7.480833333,0.043083333,237.95082718333333 +2015-05-18 01:00:00,0.0,1013.945833,0.0,99.95,6.4669166670000005,0.0,237.9511719333333 +2015-05-18 02:00:00,0.0,1013.145833,0.0,100.0,5.576083333,0.047833333,237.95237856666668 +2015-05-18 03:00:00,0.0,1012.45,0.0,100.0,4.672333333,0.005333333000000001,237.95324045000004 +2015-05-18 04:00:00,0.0,1011.8708330000001,1.62625,100.0,4.27225,0.009833333,237.95324043333335 +2015-05-18 05:00:00,0.0,1011.633333,56.51533333,100.0,4.685083333,0.005583333,237.95255096666665 +2015-05-18 06:00:00,0.0,1011.225,165.6166667,91.46666667,8.495333333,0.123916667,237.95237856666668 +2015-05-18 07:00:00,0.0,1010.6916669999999,242.9683333,82.70916667,10.52,0.73775,237.94979293333333 +2015-05-18 08:00:00,0.0,1009.8083330000001,147.1733333,72.19916667,13.59166667,0.7383333329999999,237.94806915000004 +2015-05-18 09:00:00,0.0,1009.05,410.15833330000004,63.6825,16.095,0.94,237.94600065 +2015-05-18 10:00:00,0.0,1008.395833,538.2,59.29583333,17.74333333,1.122583333,237.94324261666668 +2015-05-18 11:00:00,0.0,1007.279167,497.1083333000001,57.31166667,18.46416667,1.268916667,237.94238073333335 +2015-05-18 12:00:00,0.0,1006.208333,627.675,53.8775,19.7825,1.4305,237.94100170000002 +2015-05-18 13:00:00,0.0,1005.25,640.9,50.535,20.56,1.60175,237.9385884333333 +2015-05-18 14:00:00,0.0,1004.041667,610.95,46.57416667,21.5675,1.344416667,237.9361751666667 +2015-05-18 15:00:00,0.0,1002.854167,534.2416667,43.5,21.945,1.850333333,237.93514089999996 +2015-05-18 16:00:00,0.0,1001.929167,360.1,41.50583333,21.99583333,2.016166667,237.93393426666663 +2015-05-18 17:00:00,0.0,1001.1625,85.56833333,42.34666667,22.24583333,1.312166667,237.93548566666664 +2015-05-18 18:00:00,0.0,1000.783333,44.405,44.88416667,21.46833333,0.622583333,237.93496853333332 +2015-05-18 19:00:00,0.0,1000.583333,10.36058333,52.0325,17.06333333,0.027416667000000002,237.93514091666665 +2015-05-18 20:00:00,0.0,1000.545833,1.189833333,70.6525,13.5275,0.004,237.9373818 +2015-05-18 21:00:00,0.0,1000.658333,0.0,70.405,11.42583333,0.023833332999999998,237.9382436833333 +2015-05-18 22:00:00,0.0,1000.6833330000001,0.0,70.865,12.56333333,0.108083333,237.93651993333333 +2015-05-18 23:00:00,0.0,1000.3375,0.0,72.0925,14.28083333,0.615916667,237.93841605 +2015-05-19 00:00:00,0.0,999.9583332999998,0.0,68.80083333,12.76833333,0.456583333,237.9385884333333 +2015-05-19 01:00:00,0.0,1000.533333,0.0,77.30333333,13.01416667,1.073166667,237.93514089999996 +2015-05-19 02:00:00,0.0,1001.008333,0.0,81.41333333,11.7175,1.5521666669999998,237.9368646833333 +2015-05-19 03:00:00,0.0,1001.325,0.0,82.58083333,11.06666667,0.372333333,237.93789891666665 +2015-05-19 04:00:00,0.0,1001.5666669999999,1.083,96.15,9.6775,0.3195,237.9385884333333 +2015-05-19 05:00:00,2.405181144,1001.7875,9.692916667,98.53333333,9.155833333,0.09575,237.94013983333332 +2015-05-19 06:00:00,0.0,1002.6875,127.68916670000002,92.975,9.809166667000001,0.38683333299999995,237.93807130000002 +2015-05-19 07:00:00,0.0,1003.575,214.1,80.9425,10.82166667,1.00875,237.93531326666667 +2015-05-19 08:00:00,0.0,1004.0125,167.65,71.3825,11.59333333,1.206916667,237.93427901666666 +2015-05-19 09:00:00,0.0,1004.4333330000001,356.5,68.16666667,12.6525,1.02475,237.93376186666663 +2015-05-19 10:00:00,0.0,1004.4333330000001,458.175,59.94833333,13.77583333,1.187,237.9344513666667 +2015-05-19 11:00:00,0.0,1004.475,702.225,55.49416667,14.90666667,1.2411666670000001,237.93141756 +2015-05-19 12:00:00,0.0,1004.4333330000001,661.7916667000001,51.71416667,16.11916667,1.37375,237.92721156666664 +2015-05-19 13:00:00,0.0,1004.3,640.0416667000001,48.4325,16.26333333,1.379083333,237.92876295 +2015-05-19 14:00:00,0.0,1004.454167,560.05,48.095,16.8025,1.127583333,237.92617729999998 +2015-05-19 15:00:00,0.0,1004.475,483.4416666999999,46.47916667,16.7075,0.980916667,237.9237640166667 +2015-05-19 16:00:00,0.0,1004.283333,345.1,46.35333333,17.22166667,1.069416667,237.9249706833333 +2015-05-19 17:00:00,0.0,1004.275,96.09666667,46.9625,16.4275,0.9425,237.92428116666665 +2015-05-19 18:00:00,0.0,1004.404167,63.025,50.045,15.29,0.5255,237.9239364166667 +2015-05-19 19:00:00,0.0,1004.791667,24.49991667,55.9375,13.9075,0.367166667,237.92186786666662 +2015-05-19 20:00:00,0.0,1005.3166669999999,1.7735833330000002,72.70083333,11.0975,0.124083333,237.92272975 +2015-05-19 21:00:00,0.0,1005.820833,0.0,73.32583333,10.7025,0.199916667,237.9229021333333 +2015-05-19 22:00:00,0.0,1006.179167,0.0,72.95666667,10.26916667,0.141666667,237.92341924999997 +2015-05-19 23:00:00,0.0,1006.0875,0.0,86.95,8.449166667,0.11608333300000001,237.92548781666665 +2015-05-20 00:00:00,0.0,1006.1375,0.0,92.18333333,6.824166667,0.005166667,237.92583255 +2015-05-20 01:00:00,0.0,1006.141667,0.0,90.31333333,7.236916667000001,0.04,237.9261773333333 +2015-05-20 02:00:00,0.0,1006.3083330000001,0.0,85.73333333,6.349583332999999,0.07400000000000001,237.922385 +2015-05-20 03:00:00,0.0,1006.345833,0.0,87.45833333,5.626,0.029833332999999997,237.92669444999999 +2015-05-20 04:00:00,0.0,1006.8375,0.492666667,84.45833333,7.2743333329999995,0.299166667,237.92445353333335 +2015-05-20 05:00:00,0.0,1007.0583330000001,9.575333333,92.65833333,7.736833333,0.01125,237.92669445 +2015-05-20 06:00:00,0.0,1007.575,87.38,90.175,8.377333333,0.09225,237.92634969999997 +2015-05-20 07:00:00,0.0,1008.179167,108.75,88.475,9.865833333,0.167333333,237.92376404999996 +2015-05-20 08:00:00,0.0,1008.529167,184.65,80.72,11.03666667,0.61025,237.9239364 +2015-05-20 09:00:00,0.0,1008.775,153.4833333,76.30333333,11.45083333,0.69725,237.92169555 +2015-05-20 10:00:00,0.0,1009.154167,239.56666669999998,72.69583333,11.3825,0.514,237.92031648333332 +2015-05-20 11:00:00,0.0,1009.429167,338.8333333,64.3475,13.22916667,0.59125,237.91824800000003 +2015-05-20 12:00:00,0.0,1009.729167,384.775,61.155,13.09833333,0.746416667,237.91721375 +2015-05-20 13:00:00,0.0,1009.866667,689.5916667,53.655,14.84083333,0.702833333,237.9156623166667 +2015-05-20 14:00:00,0.0,1010.0375,193.54166669999998,58.05416667,13.59083333,1.316333333,237.91617944999996 +2015-05-20 15:00:00,2.461739112,1010.579167,174.11833330000002,76.71,12.505,0.699583333,237.9165242 +2015-05-20 16:00:00,0.0,1010.845833,319.3333333,65.4525,14.245,0.453666667,237.91411093333332 +2015-05-20 17:00:00,0.0,1010.883333,133.9416667,63.78,14.80416667,0.9956666670000001,237.91497283333334 +2015-05-20 18:00:00,3.30857952,1011.404167,87.32416667,55.3225,14.25833333,2.6654166669999997,237.91445569999996 +2015-05-20 19:00:00,0.0,1012.275,21.91666667,66.59,12.55916667,1.1109166670000001,237.9146281 +2015-05-20 20:00:00,0.0,1013.220833,2.581583333,85.83333333,8.821916667,0.018333333,237.91376621666663 +2015-05-20 21:00:00,0.0,1013.8125,0.0,95.46666667,6.179416667000001,0.019833333,237.91583473333333 +2015-05-20 22:00:00,0.0,1014.458333,0.0,98.51666667,5.152583333,0.081166667,237.91738611666668 +2015-05-20 23:00:00,0.0,1014.979167,0.0,99.79166667,4.3869166669999995,0.04175,237.9179032333333 +2015-05-21 00:00:00,0.0,1015.3625,0.0,99.94166667,3.60625,0.0,237.91807561666664 +2015-05-21 01:00:00,0.0,1015.758333,0.0,100.0,3.568083333,0.044333332999999996,237.91704136666667 +2015-05-21 02:00:00,0.0,1016.2875,0.0,100.0,4.11525,0.149833333,237.91600709999997 +2015-05-21 03:00:00,0.0,1016.508333,0.0,100.0,4.445583333,0.522083333,237.91635186666667 +2015-05-21 04:00:00,0.0,1017.1625,2.988833333,100.0,3.74725,0.09875,237.91652423333335 +2015-05-21 05:00:00,0.0,1017.866667,74.74666667,99.55,4.923166667,0.195,237.91635184999996 +2015-05-21 06:00:00,0.0,1018.6208330000001,185.2,92.26666667,7.4459166670000005,0.421833333,237.91342145 +2015-05-21 07:00:00,0.0,1019.329167,259.0616667,83.2275,9.345,1.415583333,237.91118056666673 +2015-05-21 08:00:00,0.0,1019.516667,147.8833333,69.39833333,10.75166667,2.206583333,237.90911201666668 +2015-05-21 09:00:00,0.0,1019.708333,223.7333333,64.92,11.8,2.2840000000000003,237.91014630000004 +2015-05-21 10:00:00,0.0,1020.179167,408.65833330000004,58.26,12.22,2.4300833330000002,237.90876728333333 +2015-05-21 11:00:00,0.0,1020.4375,415.925,57.68166667,12.8025,2.127583333,237.90618163333338 +2015-05-21 12:00:00,0.0,1020.466667,642.2833333,53.29833333,14.1675,2.69225,237.90480260000004 +2015-05-21 13:00:00,0.0,1020.3625,570.7833333,50.65166667,14.85583333,2.296916667,237.90238933333333 +2015-05-21 14:00:00,0.0,1020.408333,471.375,47.5025,15.43416667,2.659583333,237.8998037 +2015-05-21 15:00:00,0.0,1020.291667,350.2333333,46.1775,15.73416667,2.725666667,237.89704566666668 +2015-05-21 16:00:00,0.0,1020.3125,283.5416667,45.07416667,15.1125,1.6226666669999998,237.89583903333332 +2015-05-21 17:00:00,0.0,1020.295833,98.66416667,50.81583333,15.775,1.131916667,237.8982523 +2015-05-21 18:00:00,0.0,1020.533333,58.12,53.19916667,16.33333333,1.071916667,237.89825228333336 +2015-05-21 19:00:00,0.0,1020.9416669999999,24.77525,74.445,14.15083333,0.625916667,237.89670091666667 +2015-05-21 20:00:00,0.0,1021.404167,1.39375,84.75,11.5725,0.023166667000000002,237.89876941666668 +2015-05-21 21:00:00,0.0,1021.966667,0.0,88.04166667,8.591333333,0.040416667,237.89945893333334 +2015-05-21 22:00:00,0.0,1022.220833,0.0,92.325,6.0083333329999995,0.011333333000000001,237.90135508333333 +2015-05-21 23:00:00,0.0,1022.345833,0.0,95.63333333,4.500416667,0.013999999999999999,237.9006655833333 +2015-05-22 00:00:00,0.0,1022.333333,0.0,97.31666667,3.546166667,0.0,237.90049318333334 +2015-05-22 01:00:00,0.0,1022.3625,0.0,98.69166667,3.4595,0.015833333,237.90152743333337 +2015-05-22 02:00:00,0.0,1022.470833,0.0,98.775,5.0578333330000005,0.0,237.89997605000005 +2015-05-22 03:00:00,0.0,1022.358333,0.0,98.16666667,5.574666667000001,0.0,237.89997605000005 +2015-05-22 04:00:00,0.0,1022.0125,3.23375,99.59166667,4.048833333,0.0105,237.90256173333339 +2015-05-22 05:00:00,0.0,1022.158333,55.04583333,99.43333333,4.12775,0.00425,237.90187221666667 +2015-05-22 06:00:00,0.0,1022.383333,157.56666669999998,86.585,7.7024166670000005,0.17275,237.8996313166667 +2015-05-22 07:00:00,0.0,1022.595833,239.83333330000002,74.41666667,9.6825,0.45125,237.89756278333334 +2015-05-22 08:00:00,0.0,1022.5625,169.9083333,62.185,13.02166667,0.660083333,237.89532188333337 +2015-05-22 09:00:00,0.0,1022.3791669999999,422.3583333000001,56.45416667,15.0275,1.05775,237.8929086166667 +2015-05-22 10:00:00,0.0,1021.908333,430.95,58.2925,16.41416667,1.050583333,237.88980581666667 +2015-05-22 11:00:00,0.0,1021.395833,739.7083332999999,51.635,17.185,1.306666667,237.88946106666666 +2015-05-22 12:00:00,0.0,1020.7875,741.3916667000001,47.22416667,18.61083333,1.067,237.88635828333338 +2015-05-22 13:00:00,0.0,1019.9958330000001,421.825,47.63166667,18.98416667,1.113916667,237.88618591666668 +2015-05-22 14:00:00,0.0,1019.533333,509.25833330000006,43.79583333,20.00416667,0.897166667,237.88394505 +2015-05-22 15:00:00,0.0,1018.891667,400.78333330000004,43.89416667,19.3125,1.2675,237.88342788333333 +2015-05-22 16:00:00,0.0,1018.295833,158.58333330000002,51.38583333,18.97166667,0.957666667,237.88308313333334 +2015-05-22 17:00:00,0.0,1017.770833,125.43333329999999,51.92916667,19.9775,0.6625,237.88135936666663 +2015-05-22 18:00:00,0.0,1017.3791669999999,84.07166667,51.03333333,19.24583333,0.887416667,237.88032510000002 +2015-05-22 19:00:00,0.0,1017.425,23.21916667,74.47166667,16.9575,0.078,237.8808422333333 +2015-05-22 20:00:00,0.0,1017.695833,1.6226666669999998,81.17583333,14.35833333,0.011166667,237.88101461666665 +2015-05-22 21:00:00,0.0,1017.779167,0.0,83.55833333,13.3575,0.001166667,237.88049749999996 +2015-05-22 22:00:00,0.0,1017.516667,0.0,85.8,12.71166667,0.026000000000000002,237.8815317333333 +2015-05-22 23:00:00,0.0,1017.508333,0.0,88.58333333,12.0825,0.043083333,237.88204886666665 +2015-05-23 00:00:00,0.0,1017.233333,0.0,92.46666667,11.22916667,0.0115,237.88170411666667 +2015-05-23 01:00:00,0.0,1016.8708330000001,0.0,93.64166667,10.965,0.0025833329999999997,237.88222124999996 +2015-05-23 02:00:00,0.0,1016.508333,0.0,94.38333333,11.15666667,0.009666667,237.88342788333333 +2015-05-23 03:00:00,0.0,1016.229167,0.0,95.05,11.15583333,0.00625,237.88549643333332 +2015-05-23 04:00:00,0.0,1015.858333,1.8719999999999999,95.56666667,10.9725,0.001166667,237.88653068333335 +2015-05-23 05:00:00,0.0,1015.8,20.4475,94.98333333,11.0725,0.032666667,237.88687543333336 +2015-05-23 06:00:00,0.0,1016.25,42.61666667,93.025,12.06,0.09175,237.88532403333332 +2015-05-23 07:00:00,0.0,1016.545833,96.66333333,86.78583333,13.66583333,0.046916667,237.88601353333334 +2015-05-23 08:00:00,0.0,1016.6,189.75,75.54333333,15.535,0.539333333,237.88291076666667 +2015-05-23 09:00:00,0.0,1016.516667,285.1833333,66.005,16.60833333,1.344333333,237.88049748333336 +2015-05-23 10:00:00,0.0,1016.5583330000001,302.5833333,61.83416667,17.57416667,1.587083333,237.87480908333336 +2015-05-23 11:00:00,0.0,1016.1125,246.70833330000002,61.5025,17.47083333,2.09975,237.87429195 +2015-05-23 12:00:00,0.0,1015.725,478.4416666999999,56.60666667,18.3375,1.522416667,237.87343005000002 +2015-05-23 13:00:00,0.0,1015.054167,378.5416667,57.38333333,19.30333333,1.53125,237.87067201666665 +2015-05-23 14:00:00,0.0,1014.708333,193.70833330000002,60.81833333,18.545,2.2206666669999997,237.87256818333336 +2015-05-23 15:00:00,0.0,1014.479167,211.0916667,59.30166667,18.69,1.852583333,237.87136153333333 +2015-05-23 16:00:00,0.0,1014.279167,157.7666667,63.19,18.48916667,2.177083333,237.86946538333333 +2015-05-23 17:00:00,0.0,1014.0875,112.025,65.02083333,18.28583333,1.5643333330000002,237.867914 +2015-05-23 18:00:00,0.0,1013.845833,58.4225,67.60333333,18.1175,1.106333333,237.8680863666667 +2015-05-23 19:00:00,0.0,1014.179167,10.40916667,74.19416667,17.28333333,2.098416667,237.867914 +2015-05-23 20:00:00,0.0,1014.5125,1.0805,75.56833333,16.35833333,2.126833333,237.86894825000005 +2015-05-23 21:00:00,0.0,1015.1,0.0,80.41166667,15.6175,2.195666667,237.86877586666665 +2015-05-23 22:00:00,0.0,1015.166667,0.0,84.38333333,14.5825,2.2791666669999997,237.86894825000002 +2015-05-23 23:00:00,0.0,1015.333333,0.0,87.99166667,13.89666667,1.4331666669999998,237.87049963333337 +2015-05-24 00:00:00,0.0,1015.425,0.0,90.33333333,13.28583333,0.976583333,237.87015488333336 +2015-05-24 01:00:00,0.0,1015.225,0.0,91.325,12.73833333,1.039833333,237.87118915000005 +2015-05-24 02:00:00,0.0,1015.091667,0.0,93.125,12.31916667,0.75225,237.87222340000002 +2015-05-24 03:00:00,0.0,1014.8083330000001,0.0,96.98333333,11.53416667,0.574916667,237.87411956666665 +2015-05-24 04:00:00,0.0,1014.6875,2.829333333,99.3,11.07916667,0.195416667,237.87239579999996 +2015-05-24 05:00:00,0.0,1014.7458330000001,35.1275,99.80833333,10.9225,0.2085,237.87239578333333 +2015-05-24 06:00:00,0.0,1015.1375,99.67333333,92.23333333,11.80166667,1.23675,237.87049963333334 +2015-05-24 07:00:00,0.0,1015.2875,159.33333330000002,88.125,12.48916667,1.928666667,237.87118913333336 +2015-05-24 08:00:00,0.0,1015.645833,175.9916667,85.84166667,13.16333333,1.288666667,237.86860351666667 +2015-05-24 09:00:00,0.0,1015.5625,322.53333330000004,81.39166667,14.5525,0.949583333,237.8667073666667 +2015-05-24 10:00:00,0.0,1015.3125,361.65833330000004,78.24,15.84,0.904666667,237.86429408333333 +2015-05-24 11:00:00,0.0,1015.025,475.4,74.60166667,17.19,1.026916667,237.8625703 +2015-05-24 12:00:00,0.0,1014.758333,407.21666669999996,71.86916667,18.48583333,0.9159999999999999,237.85963991666668 +2015-05-24 13:00:00,0.0,1014.208333,498.6916666999999,67.10583333,20.1975,0.849166667,237.8592951666667 +2015-05-24 14:00:00,0.0,1013.758333,529.2583333,61.75166667,20.6275,0.633166667,237.85774378333335 +2015-05-24 15:00:00,0.0,1013.204167,215.8,60.8225,20.20083333,0.7745833329999999,237.8572266333333 +2015-05-24 16:00:00,0.0,1012.791667,78.80333333,66.95583333,19.32916667,0.774833333,237.85774379999998 +2015-05-24 17:00:00,0.0,1012.35,34.0375,78.50166667,18.50916667,0.357416667,237.85912281666666 +2015-05-24 18:00:00,0.0,1012.225,19.63916667,87.45833333,16.9525,0.022000000000000002,237.85860566666668 +2015-05-24 19:00:00,0.0,1012.0666669999999,5.832083333,91.19166667,15.86583333,0.0105,237.86032941666667 +2015-05-24 20:00:00,0.0,1012.229167,1.051916667,95.0,15.4925,0.1935,237.8599846666667 +2015-05-24 21:00:00,0.0,1012.225,0.0,97.13333333,14.50583333,0.050083333,237.86153606666664 +2015-05-24 22:00:00,0.0,1012.275,0.0,91.10833333,14.38083333,0.146666667,237.8629150666666 +2015-05-24 23:00:00,0.0,1012.2375,0.0,92.53333333,14.51583333,0.563666667,237.86084655000002 +2015-05-25 00:00:00,12.42783226,1011.675,0.0,99.45833333,13.92916667,0.402583333,237.86170844999995 +2015-05-25 01:00:00,0.0,1011.445833,0.0,100.0,13.36166667,0.150416667,237.86343219999995 +2015-05-25 02:00:00,0.0,1011.1,0.0,100.0,13.06,0.3535,237.8636045666666 +2015-05-25 03:00:00,0.0,1010.858333,0.0,100.0,12.4,0.050583333,237.8648112 +2015-05-25 04:00:00,0.0,1010.6833330000001,2.29225,100.0,10.72666667,0.06275,237.86756924999997 +2015-05-25 05:00:00,0.0,1010.85,17.13808333,100.0,11.5425,0.162083333,237.8680863666667 +2015-05-25 06:00:00,0.0,1010.766667,71.11833333,100.0,12.48333333,0.414,237.8672244833333 +2015-05-25 07:00:00,0.0,1010.866667,170.2666667,98.18333333,13.54583333,0.658666667,237.86653496666665 +2015-05-25 08:00:00,0.0,1010.845833,190.70833330000002,92.75,15.28,0.572416667,237.86722446666667 +2015-05-25 09:00:00,0.0,1010.775,265.7916667,82.93833333,15.241212699999998,1.186166667,237.86463884999998 +2015-05-25 10:00:00,0.0,1010.416667,234.5916667,76.405,15.72583333,2.0605833330000003,237.8636046 +2015-05-25 11:00:00,0.0,1010.175,386.1416667,74.4875,15.78416667,1.8668333330000002,237.8618808 +2015-05-25 12:00:00,3.267971256,1010.0583330000001,508.75,64.67833333,17.21166667,1.896166667,237.8567095 +2015-05-25 13:00:00,0.0,1009.708333,207.875,80.99583333,15.04416667,1.04625,237.8568819 +2015-05-25 14:00:00,2.621306232,1009.4875,339.03333330000004,83.86416667,14.82083333,1.468833333,237.85515813333333 +2015-05-25 15:00:00,0.0,1009.408333,242.0166667,82.47333333,15.15666667,2.402666667,237.85343435000001 +2015-05-25 16:00:00,0.0,1009.091667,192.16666669999998,80.50166667,14.9025,2.661166667,237.8539515 +2015-05-25 17:00:00,0.0,1008.854167,156.3583333,72.37083333,16.1325,1.9200833330000002,237.8522277333333 +2015-05-25 18:00:00,0.0,1008.820833,72.04166667,71.41416667,15.75083333,2.409416667,237.8501592 +2015-05-25 19:00:00,0.0,1009.0625,26.56416667,73.45583333,14.31833333,1.9265833330000002,237.85153820000005 +2015-05-25 20:00:00,0.0,1009.483333,2.31975,73.12083333,13.75166667,1.194916667,237.85205533333337 +2015-05-25 21:00:00,0.0,1010.1875,0.0,75.905,13.0175,1.6105833330000001,237.85446860000002 +2015-05-25 22:00:00,0.0,1010.358333,0.0,80.78916667,12.02166667,0.7565,237.85464098333333 +2015-05-25 23:00:00,0.0,1010.25,0.0,89.96666667,11.23833333,0.47,237.85636476666664 +2015-05-26 00:00:00,0.0,1010.216667,0.0,97.05,10.14166667,0.650083333,237.8572266333333 +2015-05-26 01:00:00,0.0,1010.425,0.0,96.24166667,11.3,1.39225,237.85791616666666 +2015-05-26 02:00:00,0.0,1010.595833,0.0,95.84166667,10.8925,0.991583333,237.85757136666666 +2015-05-26 03:00:00,0.0,1010.95,0.0,90.66666667,10.62583333,0.392,237.85826091666664 +2015-05-26 04:00:00,0.0,1011.4333330000001,1.259666667,85.7,10.5825,0.809333333,237.85860566666668 +2015-05-26 05:00:00,0.0,1011.825,23.65,87.06666667,10.41416667,0.5611666670000001,237.8599846666667 +2015-05-26 06:00:00,0.0,1012.4875,71.8,84.35,10.755,0.602166667,237.85739901666668 +2015-05-26 07:00:00,0.0,1013.229167,152.925,78.97166667,11.08333333,1.126583333,237.85567525 +2015-05-26 08:00:00,0.0,1013.704167,198.975,72.31416667,11.47,1.793166667,237.85446863333334 +2015-05-26 09:00:00,0.0,1013.920833,237.41666669999998,72.22166667,11.50183236,2.221833333,237.85240011666664 +2015-05-26 10:00:00,0.0,1014.2458330000001,287.675,62.32416667,12.35583333,2.782666667,237.84946971666662 +2015-05-26 11:00:00,0.0,1014.5625,397.775,53.9925,12.72333333,2.792916667,237.84929733333334 +2015-05-26 12:00:00,0.0,1014.820833,487.0,49.91333333,13.25333333,3.004416667,237.84602216666664 +2015-05-26 13:00:00,0.0,1014.783333,531.5916666999999,48.05583333,14.16666667,2.87925,237.84447076666666 +2015-05-26 14:00:00,0.0,1015.125,223.5916667,57.40416667,13.23833333,3.737166667,237.84602213333332 +2015-05-26 15:00:00,0.0,1015.541667,176.8,60.77083333,12.9175,3.516833333,237.84378126666664 +2015-05-26 16:00:00,0.0,1015.8083330000001,142.30833330000002,64.51333333,12.4575,2.77075,237.84257465000005 +2015-05-26 17:00:00,0.0,1015.85,118.01666670000002,68.87916667,12.23166667,1.32825,237.8432641333333 +2015-05-26 18:00:00,0.0,1016.341667,52.50833333,68.7425,12.16416667,1.420833333,237.83981658333332 +2015-05-26 19:00:00,0.0,1016.6208330000001,23.71333333,68.09583333,11.8875,1.174833333,237.84016135000002 +2015-05-26 20:00:00,0.0,1017.016667,2.54,73.04333333,11.18916667,1.1925,237.84102321666668 +2015-05-26 21:00:00,0.0,1017.4333330000001,0.0,91.10833333,9.453333333,0.148333333,237.84240226666665 +2015-05-26 22:00:00,0.0,1017.5666669999999,0.0,96.89166667,6.5035,0.166916667,237.84481549999998 +2015-05-26 23:00:00,0.0,1017.783333,0.0,99.24166667,5.068583333,0.06383333299999999,237.84636688333333 +2015-05-27 00:00:00,0.0,1018.1375,0.0,100.0,4.60325,0.14525,237.84809068333334 +2015-05-27 01:00:00,0.0,1018.4416669999999,0.0,100.0,4.095583333,0.011166667,237.84705641666665 +2015-05-27 02:00:00,0.0,1018.695833,0.0,100.0,3.826166667,0.015083333,237.84757355 +2015-05-27 03:00:00,0.0,1018.7541669999999,0.0,100.0,3.428666667,0.09775,237.84860783333332 +2015-05-27 04:00:00,0.0,1019.025,2.391916667,100.0,5.319583333,0.36925,237.8486078 +2015-05-27 05:00:00,0.0,1019.2,21.40916667,100.0,6.615833332999999,0.370666667,237.8486078 +2015-05-27 06:00:00,0.0,1019.608333,67.5175,95.85833333,7.606666667000001,0.33983333299999996,237.84964206666666 +2015-05-27 07:00:00,0.0,1019.908333,126.29166670000001,89.35,8.817416667,0.43775,237.84791833333335 +2015-05-27 08:00:00,0.0,1020.2625,210.9666667,80.28083333,10.1925,0.39,237.84757358333334 +2015-05-27 09:00:00,0.0,1020.3166669999999,334.0083333,68.04416667,11.68083333,0.917,237.84326415 +2015-05-27 10:00:00,0.0,1020.175,338.825,62.26916667,11.94916667,1.2345,237.83895475 +2015-05-27 11:00:00,0.0,1019.95,225.58333330000002,59.78833333,12.47083333,0.759083333,237.83912709999996 +2015-05-27 12:00:00,0.0,1019.679167,336.0,59.12,13.14083333,0.6948333329999999,237.83843760000002 +2015-05-27 13:00:00,0.0,1019.3791669999999,333.95,58.82416667,13.65,0.85075,237.83705858333335 +2015-05-27 14:00:00,0.0,1018.929167,471.625,55.29333333,14.39916667,0.930666667,237.83464531666664 +2015-05-27 15:00:00,0.0,1018.475,316.35,53.12416667,14.08166667,1.0865833329999999,237.83516244999998 +2015-05-27 16:00:00,0.0,1018.275,222.7166667,55.51083333,14.38666667,0.47066666700000004,237.83292155 +2015-05-27 17:00:00,0.0,1017.8708330000001,120.54166670000001,57.48166667,14.57166667,0.20025,237.83274918333333 +2015-05-27 18:00:00,0.0,1017.529167,83.0475,61.26666667,13.93916667,0.253833333,237.83137015 +2015-05-27 19:00:00,0.0,1017.05,45.67833333,66.29583333,13.4525,0.45825,237.83188726666666 +2015-05-27 20:00:00,0.0,1016.8708330000001,2.76675,86.75583333,9.627833333,0.192583333,237.8339558 +2015-05-27 21:00:00,0.0,1016.5125,0.0,91.925,6.7896666670000005,0.209333333,237.83740331666664 +2015-05-27 22:00:00,0.0,1015.983333,0.0,96.45,5.6295,0.052000000000000005,237.83860994999998 +2015-05-27 23:00:00,0.0,1015.529167,0.0,96.76666667,5.19825,0.02125,237.84050609999997 +2015-05-28 00:00:00,0.0,1015.025,0.0,98.01666667,4.752083333,0.00325,237.84240225 +2015-05-28 01:00:00,0.0,1014.6916669999999,0.0,93.13333333,5.15,0.02575,237.84154034999997 +2015-05-28 02:00:00,0.0,1014.2125,0.0,89.43333333,5.80325,0.043166667,237.8432641333333 +2015-05-28 03:00:00,0.0,1013.645833,0.0,92.45,6.339583332999999,0.00025,237.8439536333333 +2015-05-28 04:00:00,0.0,1013.1291669999999,3.638083333,96.63333333,5.95425,0.078166667,237.84533266666668 +2015-05-28 05:00:00,0.0,1012.966667,32.22833333,95.65,6.340833333,0.06383333299999999,237.84584980000002 +2015-05-28 06:00:00,0.0,1012.875,74.71416667,90.125,8.011833333,0.338916667,237.84464315 +2015-05-28 07:00:00,0.0,1012.7458330000001,143.8608333,88.38333333,9.9175,0.307916667,237.8429193833333 +2015-05-28 08:00:00,0.0,1012.366667,189.19166669999998,70.8125,12.58416667,0.5325833329999999,237.84171273333334 +2015-05-28 09:00:00,0.0,1011.9333330000001,298.03333330000004,63.82833333,15.935,0.872,237.83826521666663 +2015-05-28 10:00:00,0.0,1011.270833,500.6833333000001,60.915,17.47583333,1.199083333,237.83378341666665 +2015-05-28 11:00:00,0.0,1010.5875,592.1833333,59.33333333,18.38583333,2.194,237.83016351666666 +2015-05-28 12:00:00,0.0,1010.0625,591.6166667,58.87333333,19.9575,2.407083333,237.8270607333333 +2015-05-28 13:00:00,0.0,1009.579167,162.0358333,57.87166667,19.415,1.523916667,237.82516460000002 +2015-05-28 14:00:00,0.0,1009.233333,75.165,58.1425,18.45333333,0.599583333,237.82619886666666 +2015-05-28 15:00:00,0.0,1009.045833,155.0283333,58.95916667,18.435,0.2785,237.82585410000002 +2015-05-28 16:00:00,0.0,1008.954167,131.3216667,58.51833333,19.03083333,0.707916667,237.82275131666668 +2015-05-28 17:00:00,0.0,1008.625,124.3125,66.18666667,18.33,0.766333333,237.82378558333335 +2015-05-28 18:00:00,0.0,1008.55,52.79833333,68.83916667,18.43833333,0.270416667,237.82292370000005 +2015-05-28 19:00:00,0.0,1008.820833,19.825,69.2675,16.8625,0.61075,237.82447508333337 +2015-05-28 20:00:00,0.0,1009.15,2.747,65.25666667,15.5575,0.400583333,237.82550933333331 +2015-05-28 21:00:00,0.0,1009.491667,0.0,73.33916667,11.96166667,0.029583333,237.82671598333332 +2015-05-28 22:00:00,0.0,1009.970833,0.0,87.575,11.88333333,0.245,237.82688835 +2015-05-28 23:00:00,0.0,1009.9875,0.0,95.04166667,10.19583333,0.023,237.8293016 +2015-05-29 00:00:00,0.0,1009.9875,0.0,96.58333333,9.415,0.015916667,237.8301635 +2015-05-29 01:00:00,0.0,1009.679167,0.0,98.18333333,9.41,0.12791666699999998,237.8339558 +2015-05-29 02:00:00,0.0,1009.2875,0.0,99.9,8.463333333,0.075416667,237.83378343333334 +2015-05-29 03:00:00,0.0,1008.9,0.0,100.0,7.973666667000001,0.169333333,237.83309391666668 +2015-05-29 04:00:00,0.0,1008.445833,6.3975,100.0,6.95,0.04275,237.83688619999998 +2015-05-29 05:00:00,0.0,1008.595833,87.50166667,99.05,7.534833333,0.06125,237.83464531666667 +2015-05-29 06:00:00,0.0,1008.75,168.0166667,82.66083333,11.31583333,0.243916667,237.83292155 +2015-05-29 07:00:00,0.0,1008.6916669999999,202.2583333,76.405,13.51416667,0.4085,237.83274918333336 +2015-05-29 08:00:00,0.0,1008.458333,207.85,70.54666667,14.54583333,0.81825,237.83085303333334 +2015-05-29 09:00:00,0.0,1008.195833,378.5666667,66.20583333,15.85583333,0.735833333,237.82688835 +2015-05-29 10:00:00,0.0,1008.091667,158.275,67.3425,15.13833333,0.70925,237.82378556666671 +2015-05-29 11:00:00,0.0,1007.766667,352.6833333,67.72,15.6425,0.56625,237.82171703333333 +2015-05-29 12:00:00,0.0,1006.9375,253.1583333,67.1625,16.76166667,0.612166667,237.82068278333335 +2015-05-29 13:00:00,0.0,1005.804167,130.50833329999998,70.43,15.85583333,0.249,237.8213723 +2015-05-29 14:00:00,5.018446728,1005.4125,138.7091667,78.605,15.72,0.32858333300000003,237.8130982166667 +2015-05-29 15:00:00,12.13631518,1005.041667,149.91416669999998,92.13333333,14.24166667,0.147416667,237.81085731666667 +2015-05-29 16:00:00,0.0,1004.520833,144.675,89.4,14.23416667,0.4935,237.81171923333332 +2015-05-29 17:00:00,0.0,1004.483333,150.91666669999998,89.1,15.18333333,0.496333333,237.81206398333336 +2015-05-29 18:00:00,0.0,1004.166667,96.91833333,84.68333333,15.18583333,0.523083333,237.81223635000003 +2015-05-29 19:00:00,0.0,1004.483333,49.18083333,80.75416667,14.49333333,0.472416667,237.81430488333334 +2015-05-29 20:00:00,0.0,1004.770833,3.6195,88.075,12.66666667,0.523,237.81516675000003 +2015-05-29 21:00:00,0.0,1004.8708330000001,0.0,85.825,12.2075,0.734583333,237.816201 +2015-05-29 22:00:00,0.0,1005.025,0.0,78.6975,11.87583333,0.847916667,237.81516675000003 +2015-05-29 23:00:00,0.0,1004.608333,0.0,81.43916667,12.44666667,1.05975,237.81740765000004 +2015-05-30 00:00:00,0.0,1004.3083330000001,0.0,78.77083333,12.34083333,0.820083333,237.81671813333332 +2015-05-30 01:00:00,35.52657874,1006.029167,0.0,90.81916667,9.574166667,2.14025,237.81758000000002 +2015-05-30 02:00:00,2.414751624,1005.820833,0.0,96.8,8.1325,0.111583333,237.82085515000003 +2015-05-30 03:00:00,2.45344656,1005.7375,0.0,97.61666667,8.0365,0.201583333,237.82309605000003 +2015-05-30 04:00:00,0.0,1006.05,4.1645,98.8,6.8995,0.024166667000000003,237.8229236666667 +2015-05-30 05:00:00,0.0,1006.929167,82.35,98.19166667,6.857166667,0.056666667000000004,237.82326843333337 +2015-05-30 06:00:00,0.0,1007.529167,206.4666667,93.54166667,9.795833333,0.260916667,237.82292368333336 +2015-05-30 07:00:00,0.0,1008.325,227.61333330000002,87.55833333,11.07833333,0.7719166670000001,237.82275130000005 +2015-05-30 08:00:00,2.7436471439999996,1008.766667,144.91666669999998,81.68,12.2525,1.158083333,237.82171705000005 +2015-05-30 09:00:00,0.0,1009.1291669999999,268.0166667,74.72666667,13.05416667,1.181583333,237.82137230000004 +2015-05-30 10:00:00,0.0,1009.3791669999999,378.075,67.67,14.065,0.912,237.8168905 +2015-05-30 11:00:00,0.0,1009.5375,326.8583333,64.30416667,14.20666667,0.9445,237.81551148333332 +2015-05-30 12:00:00,0.0,1009.991667,532.025,58.91916667,15.25666667,1.071166667,237.80999543333334 +2015-05-30 13:00:00,0.0,1010.341667,533.2666667,50.74416667,16.27833333,1.295583333,237.80689266666664 +2015-05-30 14:00:00,0.0,1010.633333,478.53333330000004,49.44833333,16.13833333,1.365,237.80344513333338 +2015-05-30 15:00:00,0.0,1010.825,178.36833330000002,50.14666667,15.87916667,1.22325,237.80310036666665 +2015-05-30 16:00:00,0.0,1011.491667,107.74916670000002,53.78083333,14.7125,1.708083333,237.80223848333333 +2015-05-30 17:00:00,0.0,1012.125,134.35,62.57666667,13.96333333,2.9329166669999998,237.80258325 +2015-05-30 18:00:00,0.0,1012.45,83.40666667,63.85,13.2275,2.42625,237.80344509999998 +2015-05-30 19:00:00,0.0,1012.770833,32.36416667,69.01416667,12.08833333,0.726833333,237.80344511666667 +2015-05-30 20:00:00,0.0,1012.9,3.965,88.41666667,9.65325,0.00875,237.80585838333332 +2015-05-30 21:00:00,0.0,1012.8708330000001,0.0,95.39166667,7.0709166670000005,0.012416667,237.80844404999996 +2015-05-30 22:00:00,0.0,1013.041667,0.0,97.975,5.643416667,0.048083333,237.80999541666665 +2015-05-30 23:00:00,0.0,1013.091667,0.0,99.9,4.194,0.00525,237.81120206666665 +2015-05-31 00:00:00,0.0,1012.866667,0.0,100.0,3.405166667,0.0,237.81327058333332 +2015-05-31 01:00:00,0.0,1012.625,0.0,100.0,2.97025,0.00425,237.81327060000004 +2015-05-31 02:00:00,0.0,1012.3083330000001,0.0,100.0,2.594416667,0.0,237.81551148333332 +2015-05-31 03:00:00,0.0,1011.9625,0.00375,100.0,2.558666667,0.0,237.81637336666668 +2015-05-31 04:00:00,0.0,1011.891667,3.9245,100.0,2.628666667,0.0,237.8170629 +2015-05-31 05:00:00,0.0,1011.766667,58.00916667,100.0,3.3175,0.0,237.8175800166667 +2015-05-31 06:00:00,0.0,1011.716667,184.2416667,93.63333333,6.646166667,0.211916667,237.81620101666667 +2015-05-31 07:00:00,0.0,1011.6625,179.95833330000002,87.91666667,9.421666667,0.202833333,237.81533913333337 +2015-05-31 08:00:00,0.0,1011.320833,220.975,84.05833333,11.21,0.43458333299999996,237.81585625000002 +2015-05-31 09:00:00,0.0,1011.008333,321.6833333,76.45666667,14.6275,0.57825,237.81378775 +2015-05-31 10:00:00,0.0,1010.554167,376.34166669999996,63.78583333,17.61,0.669,237.8096506833333 +2015-05-31 11:00:00,0.0,1010.0875,371.875,62.18333333,18.22916667,1.1401666670000001,237.80637554999998 +2015-05-31 12:00:00,0.0,1009.858333,471.625,60.89833333,18.98,1.514666667,237.80051473333333 +2015-05-31 13:00:00,0.0,1009.520833,321.0083333,61.41083333,19.2475,2.066083333,237.79775668333335 +2015-05-31 14:00:00,0.0,1008.908333,324.3,59.24833333,19.91,2.358166667,237.79689481666665 +2015-05-31 15:00:00,0.0,1008.366667,414.2416667,56.48666667,21.055,2.499166667,237.79465391666668 +2015-05-31 16:00:00,0.0,1007.854167,254.05,56.96583333,21.19166667,2.09075,237.79534345000002 +2015-05-31 17:00:00,0.0,1007.508333,85.88083333,55.55666667,20.7275,1.458666667,237.79637768333336 +2015-05-31 18:00:00,0.0,1007.3125,49.98666667,58.03333333,20.09166667,0.926166667,237.7963777 +2015-05-31 19:00:00,0.0,1007.65,27.43166667,68.58416667,19.0175,0.88275,237.7955158166667 +2015-05-31 20:00:00,0.0,1007.791667,5.069583333,79.84166667,17.2925,0.5469166670000001,237.79723958333332 +2015-05-31 21:00:00,0.0,1007.85,0.0,82.24083333,15.99083333,0.759916667,237.79758435 +2015-05-31 22:00:00,0.0,1007.595833,0.0,81.26666667,15.44916667,0.76025,237.79982520000002 +2015-05-31 23:00:00,0.0,1007.716667,0.0,80.48833333,16.37083333,0.632166667,237.7991357 +2015-01-06 00:00:00,0.0,1007.733333,0.0,83.54583333,16.44833333,0.886916667, +2015-01-06 01:00:00,2.668184112,1007.358333,0.0,93.09166667,15.35333333,1.044833333, +2015-01-06 02:00:00,8.088800688,1007.5041669999999,0.0,97.4,14.66916667,1.248916667, +2015-01-06 03:00:00,22.31970468,1007.904167,0.0,97.2,14.80166667,1.453416667, +2015-01-06 04:00:00,7.53379068,1008.9958330000001,1.594583333,98.35833333,12.87916667,0.309583333, +2015-01-06 05:00:00,0.0,1009.5583330000001,27.50733333,98.25833333,12.24666667,0.314833333, +2015-01-06 06:00:00,2.430876192,1010.3125,62.31916667,98.44166667,12.63666667,0.178916667, +2015-01-06 07:00:00,0.0,1010.945833,135.5916667,96.56666667,13.16583333,0.44708333299999997, +2015-01-06 08:00:00,0.0,1011.55,159.3416667,90.36666667,13.66916667,1.0070000000000001, +2015-01-06 09:00:00,0.0,1011.9333330000001,95.50083333,89.64166667,12.48416667,2.393333333, +2015-01-06 10:00:00,0.0,1012.266667,86.65583333,91.35833333,11.74916667,1.9875833330000001, +2015-01-06 11:00:00,0.0,1012.55,113.61666670000001,87.60833333,12.09583333,1.55825, +2015-01-06 12:00:00,2.744701248,1013.025,116.56666670000001,88.43333333,12.21916667,0.963916667, +2015-01-06 13:00:00,0.0,1013.091667,340.0583333,82.54916667,12.87833333,1.02975, +2015-01-06 14:00:00,0.0,1013.1375,356.7333333,76.85833333,14.44166667,0.972166667, +2015-01-06 15:00:00,0.0,1013.15,407.3333333,71.71083333,15.5625,0.880166667, +2015-01-06 16:00:00,0.0,1012.645833,301.46666669999996,69.05833333,15.46916667,1.4031666669999998, +2015-01-06 17:00:00,0.0,1012.170833,152.05,81.775,15.13416667,1.949, +2015-01-06 18:00:00,0.0,1011.7541669999999,89.15083333,85.13333333,14.37666667,2.0876666669999997, +2015-01-06 19:00:00,0.0,1011.541667,72.12833333,88.28333333,14.0175,2.253, +2015-01-06 20:00:00,0.0,1011.1916669999999,4.692416667,94.85,12.51833333,2.03925, +2015-01-06 21:00:00,0.0,1011.2458330000001,0.0,99.73333333,10.37416667,1.147833333, +2015-01-06 22:00:00,0.0,1011.158333,0.0,100.0,8.441166667000001,0.10275, +2015-01-06 23:00:00,0.0,1011.125,0.0,96.33333333,8.2445,0.33916666700000003, +2015-02-06 00:00:00,0.0,1011.070833,0.0,96.24166667,10.18833333,0.722333333, +2015-02-06 01:00:00,0.0,1010.920833,0.0,90.70833333,8.681666667,0.71525, +2015-02-06 02:00:00,0.0,1011.041667,0.0,90.91666667,7.586583332999999,0.15675, +2015-02-06 03:00:00,0.0,1010.458333,0.005166667,96.73333333,6.7455,0.067166667, +2015-02-06 04:00:00,0.0,1010.133333,5.88225,100.0,6.108166667000001,0.058083333, +2015-02-06 05:00:00,0.0,1010.1916669999999,37.15166667,93.025,7.10375,0.072083333, +2015-02-06 06:00:00,0.0,1010.1291669999999,67.59083333,87.075,10.22741667,0.5708333329999999, +2015-02-06 07:00:00,0.0,1010.4416669999999,98.69416667,86.56666667,13.92916667,1.90375, +2015-02-06 08:00:00,0.0,1010.533333,194.6,81.315,14.68083333,1.683, +2015-02-06 09:00:00,0.0,1010.675,255.525,73.62583333,15.85833333,1.895666667, +2015-02-06 10:00:00,0.0,1010.720833,250.2583333,73.03,16.16666667,2.373416667, +2015-02-06 11:00:00,0.0,1010.858333,203.8583333,71.16083333,16.90916667,1.93725, +2015-02-06 12:00:00,0.0,1010.85,224.65,62.815,18.14083333,1.739333333, +2015-02-06 13:00:00,0.0,1010.645833,629.1333333,54.7075,20.7975,2.22625, +2015-02-06 14:00:00,0.0,1010.304167,611.6,48.91916667,22.92,2.4755, +2015-02-06 15:00:00,0.0,1010.0583330000001,553.3416667,47.915,23.67916667,2.251833333, +2015-02-06 16:00:00,0.0,1010.166667,436.66666669999995,49.8125,24.8275,1.9536666669999998, +2015-02-06 17:00:00,0.0,1010.070833,100.2375,49.18583333,24.64666667,2.128833333, +2015-02-06 18:00:00,0.0,1009.891667,85.085,47.42083333,24.20083333,2.113083333, +2015-02-06 19:00:00,0.0,1010.208333,24.18825,50.67833333,22.95583333,1.4885, +2015-02-06 20:00:00,0.0,1010.733333,3.35175,57.62,20.94166667,1.137166667, +2015-02-06 21:00:00,0.0,1011.341667,0.025333333,64.80166667,18.92083333,0.74825, +2015-02-06 22:00:00,0.0,1011.658333,0.0,74.72333333,14.085,0.09225, +2015-02-06 23:00:00,0.0,1011.675,0.0,78.0725,14.08583333,0.39816666700000003, +2015-03-06 00:00:00,0.0,1011.866667,0.0,68.48,16.62083333,0.746583333,238.03095266666665 +2015-03-06 01:00:00,0.0,1012.125,0.0,71.34583333,17.2525,0.6878333329999999,238.03028599999996 +2015-03-06 02:00:00,0.0,1012.1,0.0,82.83083333,14.24333333,0.260083333,238.03198599999996 +2015-03-06 03:00:00,0.0,1012.1916669999999,0.03475,82.38333333,11.01666667,0.068833333,238.03268599999998 +2015-03-06 04:00:00,0.0,1012.625,7.134583332999999,88.55833333,9.583333332999999,0.028833333,238.033036 +2015-03-06 05:00:00,0.0,1013.195833,87.915,81.8075,11.26166667,0.070666667,238.03405266666664 +2015-03-06 06:00:00,0.0,1014.05,180.325,77.65583333,17.95583333,0.559666667,238.03471933333333 +2015-03-06 07:00:00,0.0,1014.833333,197.8116667,75.84666667,18.90916667,0.988166667,238.03540266666664 +2015-03-06 08:00:00,0.0,1015.375,174.1125,73.565,20.13583333,0.886833333,238.03643599999998 +2015-03-06 09:00:00,0.0,1015.95,199.625,75.79416667,19.64666667,0.6545833329999999,238.05355266666663 +2015-03-06 10:00:00,0.0,1016.825,334.1833333,76.50583333,18.49833333,2.866583333,238.0552693333333 +2015-03-06 11:00:00,0.0,1017.529167,200.375,77.50833333,17.26666667,2.948416667,238.03850266666666 +2015-03-06 12:00:00,0.0,1018.1,490.0166666999999,74.38333333,19.36166667,1.3845,238.03370266666664 +2015-03-06 13:00:00,0.0,1018.3708330000001,489.34166669999996,68.5875,19.89916667,1.414333333,238.034036 +2015-03-06 14:00:00,0.0,1018.3625,449.125,63.6275,20.965,1.786583333,238.035736 +2015-03-06 15:00:00,0.0,1018.45,372.2083333,59.9275,21.695,1.67375,238.035736 +2015-03-06 16:00:00,0.0,1018.666667,326.5083333,58.37333333,20.96416667,3.27275,238.03473599999998 +2015-03-06 17:00:00,0.0,1018.854167,108.49666670000002,57.965,20.0125,3.0910833330000003,238.03471933333333 +2015-03-06 18:00:00,0.0,1019.304167,64.74833333,55.78833333,19.82,2.7355,238.034386 +2015-03-06 19:00:00,0.0,1019.904167,33.215,58.73833333,18.06666667,2.3914166669999997,238.035386 +2015-03-06 20:00:00,0.0,1020.6833330000001,4.33675,76.16166667,15.47916667,0.5379999999999999,238.03505266666664 +2015-03-06 21:00:00,0.0,1021.229167,0.02725,88.10833333,14.02,0.029083333,238.035386 +2015-03-06 22:00:00,0.0,1021.545833,0.0,92.41666667,12.45583333,0.05125,238.035386 +2015-03-06 23:00:00,0.0,1022.108333,0.0,95.60833333,11.7275,0.225833333,238.03678599999998 +2015-04-06 00:00:00,0.0,1022.429167,0.0,98.14166667,9.425833333,0.090583333,238.0462305 +2015-04-06 01:00:00,0.0,1022.5125,0.0,99.93333333,8.371666667000001,0.0,238.0462305 +2015-04-06 02:00:00,0.0,1022.833333,0.0,99.95,9.335833333,0.0,238.0462305 +2015-04-06 03:00:00,0.0,1022.95,0.021583333,99.91666667,10.12083333,0.0,238.04613196666665 +2015-04-06 04:00:00,0.0,1023.1916669999999,4.78025,99.725,10.45916667,0.02025,238.0462058666667 +2015-04-06 05:00:00,0.0,1023.454167,54.16666667,98.63333333,10.70833333,0.0030833329999999997,238.04613196666665 +2015-04-06 06:00:00,0.0,1023.704167,182.0083333,83.19,12.655,0.859666667,238.04608269999997 +2015-04-06 07:00:00,0.0,1023.766667,209.2233333,74.59583333,14.25416667,1.527916667,238.04608269999997 +2015-04-06 08:00:00,0.0,1023.875,81.62333333,69.14666667,16.1525,1.432666667,238.04603096666665 +2015-04-06 09:00:00,0.0,1023.779167,439.49166669999994,64.03833333,18.16166667,1.602916667,238.04603096666665 +2015-04-06 10:00:00,0.0,1023.5375,626.1583333,56.38583333,19.38333333,1.9864166669999999,238.0460051 +2015-04-06 11:00:00,0.0,1023.1833330000001,683.3583332999999,52.53583333,20.4925,2.183416667,238.0460051 +2015-04-06 12:00:00,0.0,1022.633333,718.7583333,48.97666667,22.12916667,1.503166667,238.04598046666663 +2015-04-06 13:00:00,0.0,1022.2375,709.5833332999999,47.17666667,22.67833333,1.2025,238.04587823333335 +2015-04-06 14:00:00,0.0,1021.720833,663.95,44.01,23.48583333,1.378333333,238.04587823333335 +2015-04-06 15:00:00,0.0,1021.1291669999999,574.6416667000001,42.78833333,24.40666667,1.097666667,238.0458536 +2015-04-06 16:00:00,0.0,1020.420833,467.15,44.58666667,24.52166667,1.526,238.0458536 +2015-04-06 17:00:00,0.0,1019.491667,66.54333333,45.52,25.04916667,0.885833333,238.04577969999994 +2015-04-06 18:00:00,0.0,1019.0125,43.2,48.325,24.8975,0.94325,238.0457538333333 +2015-04-06 19:00:00,0.0,1018.9333330000001,35.27166667,61.08333333,22.55666667,1.3746666669999998,238.0456245 +2015-04-06 20:00:00,2.6776724880000002,1018.85,5.583416667000001,83.39416667,18.3575,0.409916667,238.0456245 +2015-04-06 21:00:00,0.0,1018.991667,0.029583333,91.64166667,13.965,0.024833333,238.04552596666667 +2015-04-06 22:00:00,0.0,1019.145833,0.0,96.225,12.19,0.01825,238.04550133333336 +2015-04-06 23:00:00,0.0,1018.9125,0.0,98.60833333,10.85083333,0.0,238.04547670000002 +2015-05-06 00:00:00,0.0,1018.829167,0.0,99.99166667,9.8,0.0, +2015-05-06 01:00:00,0.0,1018.645833,0.0,100.0,8.905,0.0025, +2015-05-06 02:00:00,0.0,1018.3375,0.0,100.0,8.323333332999999,0.000833333, +2015-05-06 03:00:00,0.0,1017.983333,0.049333333,100.0,7.792333332999999,0.002416667, +2015-05-06 04:00:00,0.0,1017.858333,9.4855,100.0,7.468916667,0.00033333300000000006, +2015-05-06 05:00:00,0.0,1018.0,101.9683333,99.21666667,9.945,0.001, +2015-05-06 06:00:00,0.0,1018.016667,200.4083333,84.9775,14.19833333,0.45333333299999995, +2015-05-06 07:00:00,0.0,1017.9125,201.15083330000002,74.81916667,16.1125,1.227833333, +2015-05-06 08:00:00,0.0,1017.670833,73.53166667,68.42333333,19.15916667,0.897333333, +2015-05-06 09:00:00,0.0,1017.4625,429.775,61.80833333,22.11666667,1.5830000000000002, +2015-05-06 10:00:00,0.0,1017.179167,624.0333333,57.46833333,24.3725,1.76475,238.03391274999998 +2015-05-06 11:00:00,0.0,1016.833333,679.85,56.35,26.55916667,1.683583333,238.04184203333338 +2015-05-06 12:00:00,0.0,1016.145833,704.825,51.38083333,28.61583333,1.5145,238.04356579999998 +2015-05-06 13:00:00,0.0,1015.483333,682.0583333,49.58416667,29.9875,2.260416667,238.04597909999998 +2015-05-06 14:00:00,0.0,1014.958333,614.5166667000001,48.52666667,31.07166667,3.3279166669999998,238.04701336666668 +2015-05-06 15:00:00,0.0,1014.354167,575.1916667,43.62083333,31.65166667,2.5465,238.04425533333333 +2015-05-06 16:00:00,0.0,1013.483333,483.65,40.05083333,32.03666667,2.56425,238.0446000833333 +2015-05-06 17:00:00,0.0,1012.416667,84.19,45.83083333,31.78666667,2.3170833330000002,238.04425533333335 +2015-05-06 18:00:00,0.0,1012.1875,49.38666667,49.71666667,31.02916667,1.3345,238.04425533333333 +2015-05-06 19:00:00,0.0,1012.104167,32.56833333,68.015,28.62916667,0.397,238.0432210666667 +2015-05-06 20:00:00,0.0,1012.2875,4.010083333,78.865,23.03416667,0.082833333,238.0420144166667 +2015-05-06 21:00:00,0.0,1012.7625,0.0,87.675,19.85083333,0.03725,238.04408296666665 +2015-05-06 22:00:00,0.0,1012.604167,0.0,88.25,20.65166667,0.690583333,238.0420144166667 +2015-05-06 23:00:00,0.0,1012.925,0.0,69.20166667,21.40166667,1.408916667,238.04235918333333 +2015-06-06 00:00:00,0.0,1013.425,0.0,76.91166667,19.26916667,0.42275,237.75104265000002 +2015-06-06 01:00:00,0.0,1014.541667,0.0,69.9725,22.63916667,1.448083333,237.75104260000003 +2015-06-06 02:00:00,0.0,1014.283333,0.0,85.62,20.72916667,0.517083333,237.7550073 +2015-06-06 03:00:00,0.0,1015.045833,0.0,88.03,17.7825,0.372666667,237.7563863 +2015-06-06 04:00:00,17.84554466,1016.208333,0.203333333,92.605,19.22833333,0.6010833329999999,237.75586916666666 +2015-06-06 05:00:00,26.75503224,1015.225,3.6880833330000002,99.90833333,17.845,1.08375,237.76052335 +2015-06-06 06:00:00,2.64568776,1015.541667,56.36016667,100.0,17.74666667,0.67925,237.76138525 +2015-06-06 07:00:00,0.0,1016.0875,147.735,98.01666667,19.29333333,0.410416667,237.75966146666664 +2015-06-06 08:00:00,0.0,1016.891667,98.99166667,91.45,20.82666667,0.4695,237.7601786 +2015-06-06 09:00:00,0.0,1017.220833,373.2083333,84.5,23.08166667,0.959916667,237.75966144999998 +2015-06-06 10:00:00,0.0,1017.658333,429.6833333000001,82.02166667,24.52916667,0.820083333,237.753973 +2015-06-06 11:00:00,0.0,1018.4416669999999,365.7,81.0675,24.57833333,1.044083333,237.74518179999998 +2015-06-06 12:00:00,0.0,1018.833333,523.125,78.18666667,24.48,1.26475,237.73932100000002 +2015-06-06 13:00:00,0.0,1019.020833,426.16666669999995,77.0175,23.38,2.718333333,237.73725249999998 +2015-06-06 14:00:00,0.0,1019.2541669999999,477.7333333000001,75.9325,22.75416667,2.673666667,237.73346018333334 +2015-06-06 15:00:00,0.0,1019.3166669999999,501.28333330000004,73.94,23.53,1.53775,237.73018505000002 +2015-06-06 16:00:00,0.0,1019.216667,424.05,71.21333333,24.36083333,1.098833333,237.72777176666668 +2015-06-06 17:00:00,0.0,1018.883333,84.65166667,67.54833333,23.94166667,2.161333333,237.72932316666663 +2015-06-06 18:00:00,0.0,1019.15,83.2825,64.43583333,22.50666667,1.8405,237.72949553333333 +2015-06-06 19:00:00,0.0,1019.425,50.6525,67.41333333,22.03,1.102083333,237.72915079999999 +2015-06-06 20:00:00,0.0,1020.033333,9.242583332999999,77.59916667,20.07083333,0.286083333,237.73121931666665 +2015-06-06 21:00:00,0.0,1020.891667,0.062416667,83.94166667,17.5375,0.062083333,237.73552873333333 +2015-06-06 22:00:00,0.0,1021.3875,0.0,87.49166667,16.51833333,0.08741666699999999,237.73811438333337 +2015-06-06 23:00:00,0.0,1021.525,0.0,96.30833333,15.41916667,0.133,237.74207903333334 +2015-07-06 00:00:00,0.0,1021.95,0.0,99.3,13.5375,0.041583333,237.56566315 +2015-07-06 01:00:00,0.0,1022.304167,0.0,100.0,13.50583333,0.55375,237.5708207 +2015-07-06 02:00:00,0.0,1022.520833,0.0,100.0,11.74166667,0.031666667,237.57611768333334 +2015-07-06 03:00:00,0.0,1022.9625,0.023,100.0,10.90583333,0.026833332999999997,237.5807176666667 +2015-07-06 04:00:00,0.0,1023.1875,4.20675,100.0,10.4875,0.09475,237.58448130000002 +2015-07-06 05:00:00,0.0,1023.475,42.39166667,100.0,11.2275,0.277833333,237.58671159999997 +2015-07-06 06:00:00,0.0,1023.7625,93.18083333,94.55833333,13.2825,0.609583333,237.58977823333336 +2015-07-06 07:00:00,0.0,1023.95,152.275,74.31916667,14.19083333,1.594583333,237.59005703333332 +2015-07-06 08:00:00,0.0,1024.05,106.24166670000001,58.61416667,16.095,2.39225,237.59284491666668 +2015-07-06 09:00:00,0.0,1024.091667,451.16666669999995,52.51583333,17.915,2.835833333,237.58991765000005 +2015-07-06 10:00:00,0.0,1023.8708330000001,622.6083332999999,50.91583333,19.26083333,2.792583333,237.57890556666663 +2015-07-06 11:00:00,0.0,1023.641667,693.5333333,49.3625,20.5425,2.7261666669999998,237.56636014999995 +2015-07-06 12:00:00,0.0,1023.3166669999999,721.1666667000001,47.8275,21.55333333,2.221333333,237.55395409999997 +2015-07-06 13:00:00,0.0,1022.775,703.7083332999999,46.82,22.53166667,2.2640000000000002,237.5446147166667 +2015-07-06 14:00:00,0.0,1022.533333,663.7333332999999,43.13083333,23.35916667,2.278333333,237.54015411666668 +2015-07-06 15:00:00,0.0,1022.029167,552.175,41.39916667,23.865,2.1215,237.53722685000002 +2015-07-06 16:00:00,0.0,1021.7458330000001,439.3,41.30583333,24.07666667,1.882333333,237.53513591666663 +2015-07-06 17:00:00,0.0,1021.275,97.67,41.08,23.99916667,2.321333333,237.53527531666668 +2015-07-06 18:00:00,0.0,1021.166667,74.015,41.8325,22.75416667,2.6985,237.53583289999997 +2015-07-06 19:00:00,0.0,1021.420833,55.81666667,44.74166667,21.28833333,3.0765,237.53764505 +2015-07-06 20:00:00,0.0,1021.775,9.06775,55.175,18.79833333,1.261583333,237.54085106666665 +2015-07-06 21:00:00,0.0,1022.283333,0.08775,72.595,16.435,1.009083333,237.54531169999998 +2015-07-06 22:00:00,0.0,1022.454167,0.0,83.48333333,15.075,0.9774166670000001,237.55060863333333 +2015-07-06 23:00:00,0.0,1022.5625,0.0,88.6,13.76,0.44191666700000004,237.55479043333332 +2015-08-06 00:00:00,0.0,1022.6125,0.0,92.38333333,11.835,0.40375,237.47115426666667 +2015-08-06 01:00:00,0.0,1022.429167,0.0,91.13333333,13.01666667,1.190583333,237.47505726666668 +2015-08-06 02:00:00,0.0,1022.445833,0.0,80.2825,13.28,2.432833333,237.4796572666667 +2015-08-06 03:00:00,0.0,1022.529167,0.077083333,81.22333333,12.35333333,2.291833333,237.48411783333336 +2015-08-06 04:00:00,0.0,1022.708333,9.008333333,85.38333333,11.47416667,1.809666667,237.4884390666667 +2015-08-06 05:00:00,0.0,1022.795833,44.04,84.89166667,11.05833333,2.301416667,237.4917845166667 +2015-08-06 06:00:00,0.0,1022.8125,112.28666670000001,82.15333333,11.35583333,2.87575,237.49359663333337 +2015-08-06 07:00:00,0.0,1022.820833,180.45,77.92083333,12.0925,3.2985,237.49582695000004 +2015-08-06 08:00:00,0.0,1023.0125,197.6083333,72.205,13.52666667,3.597,237.49722086666668 +2015-08-06 09:00:00,0.0,1022.7625,344.625,65.575,15.12416667,3.62575,237.49596633333337 +2015-08-06 10:00:00,0.0,1022.491667,321.59166669999996,64.3875,15.70333333,4.363166667,237.49178451666668 +2015-08-06 11:00:00,0.0,1022.2375,280.7666667,66.3875,16.03333333,3.8841666669999997,237.48174815000002 +2015-08-06 12:00:00,0.0,1021.979167,305.21666669999996,68.16916667,15.82916667,4.013583333,237.46599666666668 +2015-08-06 13:00:00,0.0,1021.833333,379.5083333,66.88583333,16.095,3.849416667,237.4495482333333 +2015-08-06 14:00:00,0.0,1021.658333,499.16666669999995,64.655,16.66166667,4.37725,237.44090581666669 +2015-08-06 15:00:00,0.0,1021.2541669999999,596.1583333,61.3275,17.90083333,4.845166667,237.4343543 +2015-08-06 16:00:00,0.0,1020.6916669999999,443.75,59.28583333,18.23416667,4.403583333,237.43212403333334 +2015-08-06 17:00:00,0.0,1020.3125,205.5,60.935,17.8575,4.32125,237.43463311666665 +2015-08-06 18:00:00,0.0,1020.179167,86.76833333,61.22,17.0775,4.0205,237.43296036666663 +2015-08-06 19:00:00,0.0,1020.366667,35.86,62.55833333,16.36166667,4.378,237.4335179333333 +2015-08-06 20:00:00,0.0,1020.570833,3.427666667,65.58916667,15.60083333,3.17925,237.43756039999997 +2015-08-06 21:00:00,0.0,1021.1875,0.053083332999999996,67.6675,14.73833333,2.334083333,237.44034825000003 +2015-08-06 22:00:00,0.0,1021.466667,0.0,69.8325,13.15,1.314416667,237.44285733333334 +2015-08-06 23:00:00,0.0,1021.591667,0.0,75.62666667,11.88083333,1.344416667,237.44731793333335 +2015-09-06 00:00:00,0.0,1021.716667,0.0,70.98166667,12.27666667,1.8119999999999998,237.54615706666664 +2015-09-06 01:00:00,0.0,1021.65,0.0,74.26583333,11.54166667,2.29325,237.54708773333334 +2015-09-06 02:00:00,0.0,1021.4416669999999,0.0,77.62083333,10.71,1.809333333,237.54677751666668 +2015-09-06 03:00:00,0.0,1021.1875,0.043166667,82.14,9.931666667,1.296583333,237.5505001 +2015-09-06 04:00:00,0.0,1021.304167,6.5999166670000005,87.875,8.934166667000001,0.916166667,237.55189606666667 +2015-09-06 05:00:00,0.0,1021.35,52.59916667,88.275,9.2675,1.3860833330000002,237.5525165 +2015-09-06 06:00:00,0.0,1021.783333,142.7175,83.41583333,10.34083333,2.390916667,237.55313693333332 +2015-09-06 07:00:00,0.0,1022.0625,160.5916667,78.91,11.50833333,3.269666667,237.55515334999998 +2015-09-06 08:00:00,0.0,1022.329167,200.1333333,74.66916667,12.41666667,3.7479166669999997,237.55608400000003 +2015-09-06 09:00:00,0.0,1022.2625,466.13333330000006,68.63333333,14.135,3.805416667,237.55623911666666 +2015-09-06 10:00:00,0.0,1022.229167,611.1083332999999,64.78666667,14.975,4.115166667,237.5542227 +2015-09-06 11:00:00,0.0,1022.2125,390.6,62.25166667,15.58416667,4.191,237.55081031666668 +2015-09-06 12:00:00,0.0,1021.929167,530.7916667,59.49083333,15.95833333,4.022083333,237.54662240000002 +2015-09-06 13:00:00,0.0,1021.641667,399.03333330000004,57.4725,16.63833333,4.45375,237.5444508666667 +2015-09-06 14:00:00,0.0,1021.4958330000001,461.1916666999999,57.44416667,16.64916667,4.1215,237.53886698333335 +2015-09-06 15:00:00,0.0,1021.595833,489.0583333000001,56.9075,16.68333333,4.28275,237.53607503333333 +2015-09-06 16:00:00,0.0,1021.420833,427.8,55.805,16.895,4.10875,237.53405861666667 +2015-09-06 17:00:00,0.0,1021.208333,185.1,57.53583333,16.53666667,4.1675,237.5340586166667 +2015-09-06 18:00:00,0.0,1021.2875,103.7666667,59.30416667,15.94583333,3.232916667,237.5337484 +2015-09-06 19:00:00,0.0,1021.491667,42.2225,61.20333333,15.31416667,3.15175,237.53297286666668 +2015-09-06 20:00:00,0.0,1021.583333,6.7885,67.04416667,14.3925,3.004666667,237.53328306666666 +2015-09-06 21:00:00,0.0,1021.895833,0.084,85.6025,12.33666667,0.90675,237.53716078333332 +2015-09-06 22:00:00,0.0,1021.9375,0.0,94.59166667,9.560833333,0.159583333,237.5365403333333 +2015-09-06 23:00:00,0.0,1021.8083330000001,0.0,97.475,8.581666667,0.057083333,237.53778123333333 +2015-10-06 00:00:00,0.0,1021.5375,0.0,99.16666667,8.625,0.06483333299999999,237.59393038333334 +2015-10-06 01:00:00,0.0,1021.4875,0.0,98.90833333,9.325,0.018916666999999998,237.59672235000002 +2015-10-06 02:00:00,0.0,1021.320833,0.0,99.21666667,9.923333332999999,0.23675,237.59904898333332 +2015-10-06 03:00:00,0.0,1021.258333,0.032416667,99.0,12.36833333,1.049166667,237.60106535 +2015-10-06 04:00:00,0.0,1021.091667,12.27066667,88.84333333,12.63666667,1.503416667,237.60028981666665 +2015-10-06 05:00:00,0.0,1020.9958330000001,95.965,75.4225,12.6725,1.93375,237.60199601666667 +2015-10-06 06:00:00,0.0,1021.020833,169.6583333,75.60666667,13.21833333,1.431,237.60215113333334 +2015-10-06 07:00:00,0.0,1021.041667,211.89,72.72333333,14.4075,3.073833333,237.60463285 +2015-10-06 08:00:00,0.0,1021.0583330000001,163.7,72.26166667,15.5825,3.22225,237.60571861666665 +2015-10-06 09:00:00,0.0,1021.170833,288.1833333,72.275,16.465,2.712416667,237.60695948333333 +2015-10-06 10:00:00,0.0,1021.1833330000001,277.625,71.35916667,16.82166667,3.1350833330000003,237.60680436666667 +2015-10-06 11:00:00,0.0,1021.304167,421.5583333000001,68.91083333,17.53,2.88175,237.60587369999993 +2015-10-06 12:00:00,0.0,1020.8791669999999,656.9666667,66.06833333,18.68916667,2.749333333,237.60680435000003 +2015-10-06 13:00:00,0.0,1020.391667,670.7333332999999,62.165,19.9125,2.310666667,237.6049430666666 +2015-10-06 14:00:00,0.0,1019.825,458.46666669999996,59.91833333,20.85,1.6086666669999998,237.60866568333327 +2015-10-06 15:00:00,0.0,1019.320833,252.56666669999998,57.615,20.74083333,2.4561666669999997,237.60959635000003 +2015-10-06 16:00:00,0.0,1018.729167,253.04166669999998,54.34916667,21.60666667,2.152666667,237.61052698333333 +2015-10-06 17:00:00,0.0,1018.170833,135.9358333,53.95,21.38666667,2.662666667,237.61192293333332 +2015-10-06 18:00:00,0.0,1018.1625,87.75583333,53.76416667,21.0,2.707166667,237.61269848333333 +2015-10-06 19:00:00,0.0,1018.1125,33.73916667,56.915,20.03583333,3.12125,237.61347401666663 +2015-10-06 20:00:00,0.0,1018.295833,4.8745,61.8425,19.1775,2.417416667,237.61347401666663 +2015-10-06 21:00:00,0.0,1018.579167,0.053083332999999996,64.8225,18.36666667,2.363333333,237.61502513333335 +2015-10-06 22:00:00,0.0,1018.858333,0.0,72.5625,17.57166667,1.416916667,237.61580064999998 +2015-10-06 23:00:00,0.0,1018.654167,0.0,72.65333333,17.00916667,0.8624166670000001,237.6158006666667 +2015-11-06 00:00:00,0.0,1018.375,0.0,77.1125,16.53833333,1.024583333,237.73062316666665 +2015-11-06 01:00:00,0.0,1018.2,0.0,78.4525,16.3375,0.96425,237.72953856666672 +2015-11-06 02:00:00,0.0,1017.9958330000001,0.0,76.19083333,16.15666667,1.3419999999999999,237.72876388333336 +2015-11-06 03:00:00,0.0,1017.7458330000001,0.017333333,70.995,15.86666667,1.19675,237.7292286833333 +2015-11-06 04:00:00,0.0,1017.3125,3.8824166669999998,72.2125,15.35916667,1.08575,237.73031328333334 +2015-11-06 05:00:00,0.0,1017.070833,26.4375,77.68333333,15.27583333,1.421416667,237.73062315 +2015-11-06 06:00:00,0.0,1017.0375,55.1975,74.38333333,15.70583333,1.427583333,237.73031326666668 +2015-11-06 07:00:00,0.0,1017.1208330000001,84.56166667,73.1575,15.93416667,1.5495,237.73000338333335 +2015-11-06 08:00:00,0.0,1017.258333,230.2583333,68.92666667,16.9825,2.12575,237.7279891833333 +2015-11-06 09:00:00,0.0,1017.125,406.5833333,64.295,18.0625,2.438916667,237.72736945 +2015-11-06 10:00:00,0.0,1016.7458330000001,622.575,59.95333333,19.12833333,2.36725,237.72659471666665 +2015-11-06 11:00:00,0.0,1016.258333,572.6333333,55.92083333,21.43833333,2.3675,237.7269046 +2015-11-06 12:00:00,0.0,1015.6833330000001,498.775,55.13916667,22.27916667,1.5368333330000001,237.72473541666668 +2015-11-06 13:00:00,0.0,1015.158333,452.5,54.2025,22.49833333,1.565666667,237.7250453 +2015-11-06 14:00:00,0.0,1014.595833,352.53333330000004,56.29333333,22.6025,1.72475,237.72705953333335 +2015-11-06 15:00:00,0.0,1014.029167,447.725,53.3325,23.0175,1.611833333,237.72814411666664 +2015-11-06 16:00:00,0.0,1013.2125,395.175,52.35833333,23.16083333,1.745916667,237.72659471666665 +2015-11-06 17:00:00,0.0,1012.4,136.76166669999998,52.70083333,23.3275,1.804,237.72674965000002 +2015-11-06 18:00:00,0.0,1012.0125,92.58083333,54.73416667,22.99666667,1.7696666669999999,237.72721446666665 +2015-11-06 19:00:00,0.0,1011.833333,26.31833333,66.2175,20.40083333,0.170166667,237.72659471666665 +2015-11-06 20:00:00,0.0,1011.5583330000001,9.988833332999999,85.775,18.465,0.123916667,237.72597495000002 +2015-11-06 21:00:00,0.0,1011.916667,0.0765,92.425,14.95166667,0.041333333,237.72535518333333 +2015-11-06 22:00:00,0.0,1011.841667,0.0,97.80833333,12.10916667,0.027583332999999998,237.72473541666668 +2015-11-06 23:00:00,0.0,1011.554167,0.0,99.84166667,10.7475,0.0395,237.72628483333332 +2015-12-06 00:00:00,0.0,1011.1625,0.0,100.0,10.72416667,0.14375,238.03890178333336 +2015-12-06 01:00:00,0.0,1010.6125,0.0,100.0,11.15416667,0.09325,238.03747016666668 +2015-12-06 02:00:00,0.0,1010.091667,0.0,100.0,9.995,0.000583333,238.03782809999998 +2015-12-06 03:00:00,0.0,1009.4958330000001,0.05025,100.0,9.115,0.007333333,238.03711225000004 +2015-12-06 04:00:00,0.0,1009.404167,7.521666667000001,100.0,8.603333333,0.02425,238.0349648 +2015-12-06 05:00:00,0.0,1009.679167,60.46833333,100.0,10.43833333,0.022166667,238.03317528333335 +2015-12-06 06:00:00,0.0,1009.733333,162.79166669999998,91.025,14.4175,0.165833333,238.03281736666668 +2015-12-06 07:00:00,0.0,1009.904167,185.95833330000002,79.0175,15.385,1.043083333,238.0308488833333 +2015-12-06 08:00:00,0.0,1009.6,98.675,73.62583333,17.705,1.167,238.0295962 +2015-12-06 09:00:00,0.0,1009.216667,429.86666669999994,69.535,20.48166667,0.941416667,238.02870144999997 +2015-12-06 10:00:00,0.0,1008.825,610.0083333,65.92583333,22.53083333,1.153916667,238.02834354999996 +2015-12-06 11:00:00,0.0,1008.358333,668.9166667000001,63.135,24.65333333,1.255083333,238.02548028333334 +2015-12-06 12:00:00,0.0,1007.791667,693.875,61.375,26.30666667,1.184416667,238.02512236666666 +2015-12-06 13:00:00,0.0,1007.275,649.7416667,56.83666667,27.48416667,1.37975,238.02333285 +2015-12-06 14:00:00,0.0,1006.8791669999999,396.625,56.00083333,27.6175,1.209166667,238.02261705 +2015-12-06 15:00:00,0.0,1005.958333,339.55,57.54583333,28.77,1.3265,238.02440656666667 +2015-12-06 16:00:00,0.0,1005.6291669999999,294.05,55.09833333,28.80666667,1.3835,238.02601715 +2015-12-06 17:00:00,0.0,1005.3875,78.455,70.22083333,27.37416667,0.9824166670000001,238.022796 +2015-12-06 18:00:00,0.0,1005.279167,16.22916667,76.72,24.22166667,0.121,238.0236907666667 +2015-12-06 19:00:00,0.0,1005.8125,29.23083333,71.915,23.28416667,0.5116666670000001,238.0215433333333 +2015-12-06 20:00:00,0.0,1006.2875,6.494583333,77.9925,22.05916667,0.6143333329999999,238.02046956666666 +2015-12-06 21:00:00,0.0,1006.2875,0.020666667,81.7825,20.9625,0.306916667,238.0208275 +2015-12-06 22:00:00,0.0,1005.5875,0.0,92.675,18.89833333,0.06975,238.018859 +2015-12-06 23:00:00,0.0,1005.7,0.0,98.24166667,16.77083333,0.11991666699999999,238.01903794999998 +2015-06-13 00:00:00,0.0,1005.4125,0.0,99.94166667,16.38166667,0.065583333,237.67657591666662 +2015-06-13 01:00:00,0.0,1005.395833,0.0,99.225,16.57333333,0.065916667,237.68071295000001 +2015-06-13 02:00:00,0.0,1005.458333,0.0,98.14166667,17.17166667,0.240916667,237.68226431666665 +2015-06-13 03:00:00,0.0,1005.075,0.0,99.225,17.1825,0.1695,237.68691849999996 +2015-06-13 04:00:00,0.0,1004.5875,4.935,98.43333333,17.04166667,0.509166667,237.68915941666668 +2015-06-13 05:00:00,0.0,1004.725,33.7325,99.96666667,16.11666667,0.1945,237.69191743333337 +2015-06-13 06:00:00,0.0,1004.8708330000001,57.57083333,99.20833333,17.0425,0.04475,237.69277933333333 +2015-06-13 07:00:00,0.0,1005.5,85.83333333,95.24166667,18.81833333,0.1195,237.69226216666667 +2015-06-13 08:00:00,0.0,1005.9125,112.83333329999999,88.93333333,20.28833333,0.297,237.69174505 +2015-06-13 09:00:00,0.0,1006.1833330000001,206.81666669999998,85.89166667,21.06333333,0.513333333,237.69122791666666 +2015-06-13 10:00:00,0.0,1006.229167,280.3583333,85.275,21.3425,0.9105833329999999,237.68502234999997 +2015-06-13 11:00:00,0.0,1006.5875,238.4833333,85.125,20.57666667,0.33058333300000003,237.67898920000002 +2015-06-13 12:00:00,0.0,1007.075,322.3083333,83.675,22.27333333,0.535083333,237.66795706666667 +2015-06-13 13:00:00,0.0,1007.279167,392.6083333,79.8725,22.68416667,0.802166667,237.6612343666667 +2015-06-13 14:00:00,0.0,1007.3166669999999,214.7633333,77.92333333,21.42416667,0.806333333,237.65502879999997 +2015-06-13 15:00:00,0.0,1006.954167,536.45,70.22083333,22.86916667,0.888916667,237.65158128333337 +2015-06-13 16:00:00,0.0,1006.4,422.90833330000004,66.0325,23.8575,0.749166667,237.64692714999998 +2015-06-13 17:00:00,0.0,1005.8166669999999,111.93333329999999,67.45916667,23.92833333,0.49391666700000003,237.64589285 +2015-06-13 18:00:00,0.0,1005.904167,74.07583333,65.16166667,24.155,0.415916667,237.64537573333334 +2015-06-13 19:00:00,0.0,1005.958333,40.91083333,61.45666667,22.96833333,0.09225,237.6455481 +2015-06-13 20:00:00,0.0,1006.104167,6.794833333,77.3825,19.07166667,0.0,237.64882325 +2015-06-13 21:00:00,0.0,1006.608333,0.08966666699999999,92.03333333,15.08166667,0.00275,237.65433930000003 +2015-06-13 22:00:00,0.0,1007.095833,0.0,96.60833333,13.4975,0.017,237.6574420833333 +2015-06-13 23:00:00,0.0,1007.216667,0.0,99.15833333,13.2325,0.062,237.66157915 +2015-06-14 00:00:00,0.0,1007.033333,0.0,99.99166667,12.89083333,0.046416667,237.66640568333335 +2015-06-14 01:00:00,0.0,1007.025,0.0,100.0,11.9825,0.070416667,237.66968085 +2015-06-14 02:00:00,0.0,1007.1875,0.0,100.0,10.82,0.064166667,237.67450738333335 +2015-06-14 03:00:00,0.0,1007.0666669999999,0.106583333,100.0,10.88333333,0.153,237.6772654 +2015-06-14 04:00:00,0.0,1007.070833,11.57641667,100.0,10.00333333,0.10525,237.67985106666666 +2015-06-14 05:00:00,0.0,1007.2375,85.12166667,98.975,11.8675,0.113916667,237.68209193333337 +2015-06-14 06:00:00,0.0,1007.4375,160.79166669999998,88.8025,15.01833333,0.269916667,237.68295383333336 +2015-06-14 07:00:00,0.0,1007.5625,183.275,77.10916667,16.37083333,0.603583333,237.68484996666666 +2015-06-14 08:00:00,0.0,1007.675,90.325,68.21333333,18.46583333,0.60575,237.68260906666669 +2015-06-14 09:00:00,0.0,1007.5875,444.4416666999999,57.49833333,20.20333333,0.672,237.6720941 +2015-06-14 10:00:00,0.0,1007.4,643.8416667,53.405,21.63166667,0.7050833329999999,237.65899348333335 +2015-06-14 11:00:00,0.0,1007.045833,699.6583333,48.21666667,22.58583333,0.906416667,237.64554809999996 +2015-06-14 12:00:00,0.0,1006.5,728.35,43.02916667,23.38583333,1.322416667,237.63968730000002 +2015-06-14 13:00:00,0.0,1006.041667,717.175,39.00833333,24.64916667,1.103416667,237.63623976666668 +2015-06-14 14:00:00,0.0,1005.679167,678.6166667,37.9025,25.37166667,1.16375,237.63296461666667 +2015-06-14 15:00:00,0.0,1005.258333,600.9333333,36.57333333,25.85166667,0.957416667,237.62934468333333 +2015-06-14 16:00:00,0.0,1004.8125,483.79166669999995,36.47416667,26.45583333,0.8208333329999999,237.62744855000003 +2015-06-14 17:00:00,0.0,1004.458333,74.73083333,36.01583333,26.04666667,1.270333333,237.62848281666663 +2015-06-14 18:00:00,0.0,1004.095833,46.13583333,41.43833333,25.64833333,0.74425,237.6276209166667 +2015-06-14 19:00:00,0.0,1004.420833,26.79083333,50.9525,23.66833333,0.97775,237.62589718333334 +2015-06-14 20:00:00,0.0,1005.2375,11.90383333,62.78416667,21.46,1.39175,237.62796568333331 +2015-06-14 21:00:00,0.0,1006.2125,0.15866666699999998,79.475,19.2075,1.611666667,237.63227511666665 +2015-06-14 22:00:00,0.0,1006.829167,0.0,77.47166667,18.2,2.03075,237.6353778833333 +2015-06-14 23:00:00,0.0,1007.2875,0.0,82.0975,17.26666667,1.9190833330000001,237.6414110666667 +2015-06-15 00:00:00,0.0,1007.616667,0.0,87.11666667,16.26333333,1.57875,237.64640998333334 +2015-06-15 01:00:00,0.0,1008.170833,0.0,94.28333333,15.01,0.980833333,237.65106415 +2015-06-15 02:00:00,0.0,1008.770833,0.0,99.15,13.86083333,0.576333333,237.65589068333335 +2015-06-15 03:00:00,0.0,1009.0041669999999,0.098166667,100.0,13.13833333,0.838833333,237.65830396666664 +2015-06-15 04:00:00,0.0,1009.220833,9.373333333,100.0,12.98916667,0.6296666670000001,237.6633029 +2015-06-15 05:00:00,0.0,1009.75,52.70083333,99.94166667,12.86,0.7375,237.66416478333335 +2015-06-15 06:00:00,0.0,1010.579167,143.83333330000002,91.24166667,14.0525,2.090833333,237.66519903333332 +2015-06-15 07:00:00,0.0,1011.15,168.9666667,86.46666667,14.76833333,2.786666667,237.66606093333337 +2015-06-15 08:00:00,0.0,1011.6916669999999,203.8583333,84.0,15.40583333,2.80925,237.66606090000005 +2015-06-15 09:00:00,0.0,1012.404167,184.70833330000002,82.24166667,15.62083333,3.346666667,237.65847636666663 +2015-06-15 10:00:00,0.0,1013.075,269.34166669999996,79.74,15.6275,3.80725,237.6476166333333 +2015-06-15 11:00:00,0.0,1013.741667,422.4,75.2675,15.99916667,4.124333333,237.63934253333332 +2015-06-15 12:00:00,0.0,1014.1375,489.5,72.04333333,16.7025,3.094083333,237.63037895 +2015-06-15 13:00:00,0.0,1014.258333,632.8416667,68.35666667,17.64,3.118833333,237.62141534999998 +2015-06-15 14:00:00,0.0,1014.125,628.0916667,63.15416667,18.56833333,3.723416667,237.61796781666666 +2015-06-15 15:00:00,0.0,1013.954167,478.71666669999996,61.40583333,18.98083333,3.336166667,237.61434791666667 +2015-06-15 16:00:00,0.0,1013.6375,317.0416667,61.69833333,19.04416667,3.072333333,237.61676118333332 +2015-06-15 17:00:00,0.0,1013.679167,161.18333330000002,59.24083333,19.35666667,2.737083333,237.61417551666668 +2015-06-15 18:00:00,0.0,1013.675,57.78333333,58.07583333,19.40666667,3.04825,237.61383078333336 +2015-06-15 19:00:00,0.0,1013.966667,32.66166667,60.75916667,18.31166667,2.410083333,237.6152098 +2015-06-15 20:00:00,0.0,1014.5625,5.696416667,79.15083333,15.5075,0.625166667,237.61951921666665 +2015-06-15 21:00:00,0.0,1015.425,0.066666667,90.61666667,12.05083333,0.1295,237.6231391 +2015-06-15 22:00:00,0.0,1015.954167,0.0,91.625,12.05666667,0.04,237.62744853333336 +2015-06-15 23:00:00,0.0,1016.179167,0.0,90.94166667,12.77583333,0.06575,237.63175794999998 +2015-06-16 00:00:00,0.0,1016.475,0.0,88.4,13.04666667,0.491333333,237.63520549999998 +2015-06-16 01:00:00,0.0,1016.5041669999999,0.0,94.74166667,11.5825,0.29991666699999997,237.64227295 +2015-06-16 02:00:00,0.0,1016.720833,0.0,95.80833333,9.2375,0.265916667,237.64606521666667 +2015-06-16 03:00:00,0.0,1017.133333,0.040416667,96.46666667,8.299416667000001,0.18175,237.65071938333335 +2015-06-16 04:00:00,0.0,1017.391667,6.839583332999999,96.3,7.5381666670000005,0.06383333299999999,237.6536498 +2015-06-16 05:00:00,0.0,1017.6875,91.64083333,90.875,9.0305,0.09225,237.65399455 +2015-06-16 06:00:00,0.0,1017.929167,206.6416667,76.62083333,11.08083333,1.6175,237.65554593333331 +2015-06-16 07:00:00,0.0,1017.945833,199.24,72.18166667,12.06083333,2.695583333,237.65640781666661 +2015-06-16 08:00:00,0.0,1017.8708330000001,75.02416667,67.24583333,13.38,2.675166667,237.65330505 +2015-06-16 09:00:00,0.0,1017.783333,447.81416669999993,62.7275,15.2825,2.147583333,237.64279006666666 +2015-06-16 10:00:00,0.0,1017.795833,648.1166667,53.3325,17.11416667,2.4483333330000003,237.62744855000003 +2015-06-16 11:00:00,0.0,1017.358333,467.0583333000001,51.87583333,17.94833333,2.4409166669999998,237.61779548333334 +2015-06-16 12:00:00,0.0,1017.325,433.5,51.65833333,18.3075,2.5639999999999996,237.61296891666666 +2015-06-16 13:00:00,0.0,1017.170833,369.5833333,50.25083333,18.36416667,2.4194166669999997,237.61176228333338 +2015-06-16 14:00:00,0.0,1017.195833,216.875,52.0275,17.76166667,3.3075,237.61072803333334 +2015-06-16 15:00:00,0.0,1017.283333,286.675,57.15083333,16.87416667,3.965166667,237.60779761666672 +2015-06-16 16:00:00,0.0,1017.291667,373.0583333,54.71916667,16.74833333,4.181666667,237.60555671666668 +2015-06-16 17:00:00,0.0,1017.279167,164.8675,52.33416667,16.725,4.073166667,237.60452245 +2015-06-16 18:00:00,0.0,1017.6625,44.46333333,53.19416667,16.09666667,3.867666667,237.60297106666667 +2015-06-16 19:00:00,0.0,1018.0625,34.37666667,56.66166667,15.18416667,3.2485,237.60297104999998 +2015-06-16 20:00:00,0.0,1018.5375,9.59075,66.415,13.81916667,1.7263333330000001,237.6046948333333 +2015-06-16 21:00:00,0.0,1019.325,0.07,76.4925,12.3625,1.704,237.60745286666668 +2015-06-16 22:00:00,0.0,1019.625,0.0,90.18333333,10.03583333,0.75575,237.6136584333333 +2015-06-16 23:00:00,0.0,1020.05,0.0,94.80833333,7.282083332999999,0.020833333,237.61779546666665 +2015-06-17 00:00:00,0.0,1020.125,0.0,97.79166667,6.067583332999999,0.000166667,237.6245181666667 +2015-06-17 01:00:00,0.0,1020.304167,0.0,99.05,5.077833333,0.007166667,237.62934469999996 +2015-06-17 02:00:00,0.0,1020.283333,0.0,99.91666667,4.188166667,0.0195,237.63365409999997 +2015-06-17 03:00:00,0.0,1020.375,0.12116666699999999,100.0,3.5173333330000003,0.0075,237.63744640000002 +2015-06-17 04:00:00,0.0,1020.608333,13.95066667,100.0,3.28025,0.00725,237.64192821666668 +2015-06-17 05:00:00,0.0,1021.079167,99.27666667,98.68333333,6.01925,0.0025,237.64365196666668 +2015-06-17 06:00:00,0.0,1021.395833,190.8,88.53083333,9.885833332999999,0.169666667,237.64227295 +2015-06-17 07:00:00,0.0,1021.341667,201.815,73.93583333,11.32916667,0.815,237.64313479999998 +2015-06-17 08:00:00,0.0,1021.0125,77.51916667,64.04583333,13.59833333,0.7415,237.6426177 +2015-06-17 09:00:00,0.0,1020.920833,450.5116666999999,53.87583333,15.04333333,1.204166667,237.63330935 +2015-06-17 10:00:00,0.0,1020.454167,638.9583332999999,46.50333333,16.28583333,1.3315,237.61986398333332 +2015-06-17 11:00:00,0.0,1019.758333,712.325,46.265,17.50166667,1.37625,237.60762523333332 +2015-06-17 12:00:00,0.0,1019.3708330000001,738.075,44.21916667,18.45,1.6339166669999998,237.5990064 +2015-06-17 13:00:00,0.0,1018.8625,657.9833332999999,40.46583333,19.87,1.302583333,237.59607598333332 +2015-06-17 14:00:00,0.0,1018.141667,537.65,43.93416667,20.64416667,1.217666667,237.59469696666665 +2015-06-17 15:00:00,0.0,1017.283333,410.6833333,47.76916667,20.94,0.86625,237.59331795000003 +2015-06-17 16:00:00,0.0,1016.7541669999999,350.85,45.14416667,20.77333333,0.7805833329999999,237.5917665666667 +2015-06-17 17:00:00,0.0,1016.075,163.5166667,47.10083333,21.42833333,0.589583333,237.59073230000004 +2015-06-17 18:00:00,0.0,1015.5125,49.91166667,50.85583333,20.61416667,0.348,237.59124943333336 +2015-06-17 19:00:00,0.0,1015.05,39.25083333,62.60916667,18.69333333,0.018166667,237.59331796666663 +2015-06-17 20:00:00,0.0,1014.891667,6.407,76.26833333,16.53083333,0.0,237.59642076666668 +2015-06-17 21:00:00,0.0,1014.775,0.057833333,82.6475,14.31416667,0.0,237.60210916666665 +2015-06-17 22:00:00,0.0,1014.408333,0.0,87.11666667,13.43416667,0.0,237.6064186166667 +2015-06-17 23:00:00,0.0,1013.770833,0.0,73.17916667,13.3825,0.0,237.61158988333332 +2015-06-18 00:00:00,0.0,1013.345833,0.0,64.525,13.88333333,0.002833333,237.61400316666666 +2015-06-18 01:00:00,0.0,1012.575,0.0,64.47833333,14.285,0.02525,237.61831256666667 +2015-06-18 02:00:00,0.0,1011.9,0.0,78.57416667,14.71916667,0.02675,237.62003635 +2015-06-18 03:00:00,12.06248071,1011.25,0.0,96.54166667,14.61666667,0.05275,237.62503528333332 +2015-06-18 04:00:00,9.707593152000001,1010.904167,2.89025,99.56666667,14.17166667,0.16825,237.62848281666666 +2015-06-18 05:00:00,24.21655558,1010.75,14.94166667,98.96666667,14.44166667,0.35283333299999997,237.63158561666668 +2015-06-18 06:00:00,19.41910534,1010.6375,47.40583333,100.0,14.8275,0.21841666699999998,237.63606738333337 +2015-06-18 07:00:00,29.552909999999997,1010.7375,69.3425,100.0,15.16416667,0.37341666700000004,237.6405491666667 +2015-06-18 08:00:00,2.433716616,1010.679167,146.49333330000002,99.85,15.98833333,0.251916667,237.64606523333336 +2015-06-18 09:00:00,0.0,1010.65,223.7,97.84166667,17.39583333,0.335166667,237.64847853333333 +2015-06-18 10:00:00,6.0855892560000004,1010.8375,158.4775,97.68333333,17.43583333,1.043416667,237.6507194333333 +2015-06-18 11:00:00,0.0,1010.791667,511.925,87.66666667,18.4425,1.51725,237.6531326666667 +2015-06-18 12:00:00,0.0,1010.85,439.2333333000001,74.94916667,19.93833333,2.160666667,237.64899565 +2015-06-18 13:00:00,0.0,1010.670833,573.8333332999999,64.3825,19.8925,2.6775,237.64451383333335 +2015-06-18 14:00:00,0.0,1010.633333,538.6416667000001,59.53083333,20.40083333,2.421416667,237.6369292333333 +2015-06-18 15:00:00,0.0,1010.445833,560.0,51.23333333,20.86666667,2.135166667,237.6269314333333 +2015-06-18 16:00:00,0.0,1010.05,338.59166669999996,51.81583333,20.285,2.600666667,237.6191744833333 +2015-06-18 17:00:00,0.0,1010.079167,174.8833333,54.21083333,19.7075,3.108666667,237.61555456666667 +2015-06-18 18:00:00,0.0,1010.208333,82.09583333,56.51916667,18.35916667,3.0749166669999997,237.61107278333336 +2015-06-18 19:00:00,0.0,1010.4875,50.6725,60.485,17.32,2.437166667,237.61262415 +2015-06-18 20:00:00,0.0,1011.154167,10.69125,62.51916667,16.09583333,2.854916667,237.61417555000003 +2015-06-18 21:00:00,0.0,1011.633333,0.2005,69.79833333,14.41916667,1.260666667,237.61882973333334 +2015-06-18 22:00:00,0.0,1012.0583330000001,0.0,78.00666667,12.8225,0.671666667,237.6214153666667 +2015-06-18 23:00:00,0.0,1012.141667,0.0,86.16666667,11.3275,0.441166667,237.62658668333336 +2015-06-19 00:00:00,0.0,1012.220833,0.0,85.11666667,11.16083333,0.54875,237.6307237166667 +2015-06-19 01:00:00,0.0,1012.0875,0.0,83.975,11.45166667,0.537166667,237.63365409999997 +2015-06-19 02:00:00,0.0,1012.1208330000001,0.0,84.95,11.19083333,0.5105833329999999,237.6377911333333 +2015-06-19 03:00:00,0.0,1011.908333,0.016916667,88.825,11.00666667,0.94975,237.64296243333334 +2015-06-19 04:00:00,0.0,1012.083333,1.9015,89.59166667,10.25416667,0.15883333300000002,237.6465823833333 +2015-06-19 05:00:00,0.0,1012.508333,22.55233333,89.95833333,10.23166667,0.170166667,237.64744425 +2015-06-19 06:00:00,0.0,1013.020833,50.77083333,88.43333333,10.79666667,0.1345,237.65071939999999 +2015-06-19 07:00:00,0.0,1013.425,110.865,84.71666667,11.55333333,0.1465,237.65054701666668 +2015-06-19 08:00:00,0.0,1013.445833,139.4916667,79.95583333,12.5425,0.5519166670000001,237.65106415 +2015-06-19 09:00:00,0.0,1013.3875,230.8833333,78.48333333,13.0025,1.0070000000000001,237.64899565 +2015-06-19 10:00:00,0.0,1013.420833,168.50916669999998,78.07,13.0925,0.625,237.64537570000005 +2015-06-19 11:00:00,0.0,1013.4875,151.80833330000002,80.39916667,13.565,0.39083333299999995,237.64175579999997 +2015-06-19 12:00:00,0.0,1013.45,209.525,78.69666667,14.155,0.5930833329999999,237.63848065000002 +2015-06-19 13:00:00,0.0,1013.0125,360.8666667,75.645,14.31333333,1.125333333,237.63348173333335 +2015-06-19 14:00:00,2.411944176,1012.895833,104.5558333,90.875,13.03833333,1.12225,237.63003421666667 +2015-06-19 15:00:00,0.0,1012.825,51.49666667,94.325,13.1825,1.337416667,237.63348171666667 +2015-06-19 16:00:00,0.0,1012.904167,61.68,88.25,12.69166667,1.4435,237.63589499999998 +2015-06-19 17:00:00,0.0,1012.9416669999999,88.05583333,87.76666667,13.4675,0.68075,237.6386530166667 +2015-06-19 18:00:00,0.0,1013.358333,33.21291667,84.79166667,13.08,1.2259166670000001,237.63934251666663 +2015-06-19 19:00:00,0.0,1013.445833,21.31083333,87.275,11.70083333,1.286166667,237.64451383333335 +2015-06-19 20:00:00,0.0,1013.5041669999999,4.958833333,86.85,11.48583333,0.34175,237.6465823666667 +2015-06-19 21:00:00,0.0,1013.908333,0.05075,87.925,11.325,0.171083333,237.64968513333335 +2015-06-19 22:00:00,0.0,1013.958333,0.0,90.75,10.9425,0.141083333,237.6514089 +2015-06-19 23:00:00,0.0,1013.970833,0.0,93.84166667,10.53916667,0.177,237.65468405 +2015-06-20 00:00:00,0.0,1013.820833,0.0,94.525,10.54,0.132833333,237.65761446666667 +2015-06-20 01:00:00,0.0,1013.5375,0.0,97.74166667,10.33166667,0.045583333,237.6605448833334 +2015-06-20 02:00:00,0.0,1013.4375,0.0,98.28333333,10.00333333,0.3085,237.6614067666667 +2015-06-20 03:00:00,0.0,1013.3875,0.0,97.11666667,10.23166667,0.502166667,237.6627857666667 +2015-06-20 04:00:00,0.0,1013.416667,1.493416667,97.41666667,10.06333333,0.581833333,237.66554378333333 +2015-06-20 05:00:00,0.0,1013.65,10.54325,97.20833333,10.205,0.423333333,237.66640568333335 +2015-06-20 06:00:00,0.0,1013.9416669999999,48.03333333,96.925,10.47166667,0.27925,237.66795705000004 +2015-06-20 07:00:00,0.0,1014.516667,65.87,91.14166667,10.845,0.7646666670000001,237.66675041666667 +2015-06-20 08:00:00,0.0,1014.9,124.8,85.66666667,11.45583333,1.7269166669999998,237.66709520000003 +2015-06-20 09:00:00,0.0,1015.233333,141.54166669999998,83.39166667,11.99583333,2.017416667,237.66606093333334 +2015-06-20 10:00:00,0.0,1015.5375,340.8833333,76.20833333,13.35,1.798583333,237.66330291666668 +2015-06-20 11:00:00,0.0,1015.5875,271.8333333,72.895,13.39166667,1.71625,237.6591658333333 +2015-06-20 12:00:00,3.9114093839999997,1015.666667,332.03333330000004,69.17,14.2625,2.2061666669999997,237.65537356666667 +2015-06-20 13:00:00,0.0,1015.658333,365.5416667,67.10333333,14.65666667,3.09725,237.64796136666666 +2015-06-20 14:00:00,0.0,1015.35,505.20833330000005,64.10083333,15.51,2.0535,237.63985966666667 +2015-06-20 15:00:00,0.0,1015.425,115.75833329999999,67.61,15.21,1.57425,237.63210273333334 +2015-06-20 16:00:00,0.0,1015.258333,270.55,65.64166667,14.99333333,2.3279166669999998,237.6295170666667 +2015-06-20 17:00:00,0.0,1015.275,139.1258333,65.96666667,15.72,1.65325,237.6231391166667 +2015-06-20 18:00:00,0.0,1015.133333,71.05166667,68.70083333,15.1325,2.335583333,237.6202087 +2015-06-20 19:00:00,0.0,1015.4625,13.74483333,70.275,14.17583333,1.250333333,237.6181402 +2015-06-20 20:00:00,0.0,1015.5041669999999,2.8745,81.32083333,13.5025,0.5785,237.62176011666668 +2015-06-20 21:00:00,0.0,1015.666667,0.077916667,90.6,11.73916667,0.003666667,237.62469053333336 +2015-06-20 22:00:00,0.0,1015.716667,0.0,98.21666667,9.929166667,0.000833333,237.63037898333334 +2015-06-20 23:00:00,0.0,1015.7125,0.0,99.7,9.835833333,0.00025,237.63330936666668 +2015-06-21 00:00:00,0.0,1015.466667,0.0,90.10833333,10.29916667,0.0,237.63503311666668 +2015-06-21 01:00:00,0.0,1015.0125,0.0,87.26666667,10.38,0.0,237.63917018333328 +2015-06-21 02:00:00,0.0,1014.679167,0.0,88.475,10.39,0.01025,237.64210054999998 +2015-06-21 03:00:00,0.0,1014.133333,0.0,95.95833333,10.44333333,0.0,237.64554808333332 +2015-06-21 04:00:00,0.0,1013.925,2.10575,99.4,10.33583333,0.0,237.64882326666665 +2015-06-21 05:00:00,2.4050227680000003,1013.825,10.235,100.0,10.5125,0.017583333,237.65020225 +2015-06-21 06:00:00,0.0,1013.658333,19.03,100.0,10.75583333,0.042416667000000005,237.65123655 +2015-06-21 07:00:00,0.0,1013.766667,36.79166667,100.0,11.21333333,0.123916667,237.65313265 +2015-06-21 08:00:00,4.918975248,1013.708333,48.97333333,99.45833333,11.585,0.31625,237.65537355 +2015-06-21 09:00:00,0.0,1013.5,83.11416667,99.00833333,11.61,1.338833333,237.65692496666665 +2015-06-21 10:00:00,0.0,1012.958333,115.575,95.78333333,12.61416667,1.277083333,237.65916585 +2015-06-21 11:00:00,0.0,1012.445833,148.4,92.69166667,13.23,1.403,237.65847636666663 +2015-06-21 12:00:00,0.0,1012.108333,206.9433333,90.73333333,14.32833333,0.96175,237.65951063333333 +2015-06-21 13:00:00,0.0,1011.695833,317.21666669999996,85.925,16.53833333,1.097916667,237.65778684999998 +2015-06-21 14:00:00,0.0,1011.258333,143.37916669999998,86.80833333,17.07916667,1.577083333,237.65537356666664 +2015-06-21 15:00:00,2.430876192,1010.766667,161.8908333,83.24333333,17.92166667,1.01725,237.65261556666667 +2015-06-21 16:00:00,2.427190224,1010.070833,282.15833330000004,90.99166667,17.62666667,0.34025,237.6538222 +2015-06-21 17:00:00,5.328356976,1009.6291669999999,108.65416670000002,86.125,18.53333333,0.936916667,237.65158129999998 +2015-06-21 18:00:00,5.110602096,1009.55,25.15866667,93.26666667,15.79916667,0.600166667,237.6586487 +2015-06-21 19:00:00,2.4145991280000003,1009.1625,28.59166667,98.91666667,14.46416667,0.182166667,237.68347096666665 +2015-06-21 20:00:00,4.868953992,1009.0,9.671333333,99.99166667,13.915,0.076833333,237.6972610833333 +2015-06-21 21:00:00,2.415832704,1009.366667,0.21875,100.0,13.04916667,0.34066666700000003,237.70294953333334 +2015-06-21 22:00:00,2.454090576,1009.458333,0.0,100.0,12.15583333,0.212333333,237.7045009166667 +2015-06-21 23:00:00,2.481039144,1009.4625,0.0,99.59166667,11.97166667,0.359333333,237.70484568333333 +2015-06-22 00:00:00,0.0,1009.329167,0.0,99.875,11.17916667,0.1055,237.7055351833333 +2015-06-22 01:00:00,2.4050227680000003,1009.1208330000001,0.0,100.0,10.07916667,0.044083332999999995,237.7069142 +2015-06-22 02:00:00,0.0,1008.75,0.0,100.0,9.420833333,0.223083333,237.70760369999996 +2015-06-22 03:00:00,2.4155214480000002,1008.533333,0.01125,100.0,9.660833333,0.36591666700000003,237.7070865833333 +2015-06-22 04:00:00,0.0,1008.304167,4.464333333,100.0,9.663333332999999,0.051,237.70656945 +2015-06-22 05:00:00,0.0,1008.108333,23.085,99.49166667,10.4375,0.0165,237.7048457 +2015-06-22 06:00:00,2.48895804,1007.6208330000001,67.27333333,95.175,11.36666667,0.39233333299999995,237.7058799166667 +2015-06-22 07:00:00,0.0,1007.408333,88.905,92.79166667,12.36083333,0.14675,237.7051904333333 +2015-06-22 08:00:00,0.0,1007.3,93.315,93.8,13.10083333,0.11808333300000001,237.70415618333334 +2015-06-22 09:00:00,2.493107304,1007.0125,160.16666669999998,95.35833333,13.63583333,0.4065,237.70312193333334 +2015-06-22 10:00:00,0.0,1006.704167,119.65083329999999,95.35,13.61833333,0.394583333,237.70346665 +2015-06-22 11:00:00,0.0,1006.2458330000001,260.25,93.90833333,13.9,0.5731666670000001,237.70553518333335 +2015-06-22 12:00:00,0.0,1005.883333,265.7083333,92.90833333,14.47916667,0.68575,237.70450094999998 +2015-06-22 13:00:00,2.600950992,1005.5041669999999,229.95,91.6,14.54083333,0.726166667,237.70432855 +2015-06-22 14:00:00,0.0,1005.125,237.83333330000002,92.94166667,14.4875,0.589333333,237.70536280000002 +2015-06-22 15:00:00,0.0,1004.8375,82.68416667,98.55,13.1725,0.622166667,237.71122361666667 +2015-06-22 16:00:00,2.425929096,1004.133333,166.04,97.76666667,13.00666667,0.318583333,237.74793983333328 +2015-06-22 17:00:00,0.0,1003.4125,56.5175,96.65,12.87166667,0.21766666699999998,237.76638415000002 +2015-06-22 18:00:00,0.0,1002.5125,41.04166667,98.075,12.35416667,0.22175,237.77103831666668 +2015-06-22 19:00:00,0.0,1001.666667,10.923,99.7,12.0175,0.574666667,237.77207256666665 +2015-06-22 20:00:00,0.0,1001.1208330000001,1.128833333,100.0,11.18916667,0.587583333,237.77517534999996 +2015-06-22 21:00:00,0.0,1000.725,0.0,100.0,10.61333333,0.13925,237.78120855 +2015-06-22 22:00:00,0.0,1000.633333,0.0,100.0,10.47916667,0.09475,237.78189805 +2015-06-22 23:00:00,0.0,1000.775,0.0,100.0,10.49166667,0.0965,237.7863798333333 +2015-06-23 00:00:00,2.4155214480000002,1001.275,0.0,100.0,9.975833332999999,0.29183333300000003,237.79499865 +2015-06-23 01:00:00,0.0,1002.354167,0.0,98.93333333,9.253333332999999,0.49008333299999995,237.7943091666667 +2015-06-23 02:00:00,0.0,1003.420833,0.0,99.40833333,9.016666667,0.144833333,237.79586056666668 +2015-06-23 03:00:00,0.0,1003.858333,0.0385,99.95833333,8.873333333,0.21758333300000002,237.79758433333333 +2015-06-23 04:00:00,0.0,1004.520833,6.026666667000001,100.0,8.643333333,0.145,237.79792908333334 +2015-06-23 05:00:00,0.0,1005.1291669999999,46.61166667,99.84166667,8.970833333,0.170833333,237.79586058333334 +2015-06-23 06:00:00,2.45799348,1005.741667,176.6083333,96.6,10.34583333,0.283916667,237.79310253333333 +2015-06-23 07:00:00,0.0,1006.283333,95.6875,96.19166667,10.6375,0.271083333,237.79258541666664 +2015-06-23 08:00:00,0.0,1006.625,232.075,88.68333333,12.23833333,0.409083333,237.79103399999997 +2015-06-23 09:00:00,194.5056428,1006.9333330000001,108.64666670000001,93.19166667,11.87583333,0.426333333,237.79017209999995 +2015-06-23 10:00:00,34.1997619,1007.270833,242.0866667,97.05833333,11.2425,0.46216666700000003,237.79172351666668 +2015-06-23 11:00:00,2.548505976,1007.579167,378.075,92.91666667,12.74166667,0.712166667,237.79499866666666 +2015-06-23 12:00:00,0.0,1007.654167,577.075,81.4225,14.80833333,1.29175,237.79499868333335 +2015-06-23 13:00:00,0.0,1008.016667,501.125,74.2125,14.46583333,2.2615,237.7932749 +2015-06-23 14:00:00,0.0,1008.775,187.6175,80.2225,14.255,1.595083333,237.79275776666668 +2015-06-23 15:00:00,5.166023903999999,1009.45,245.18333330000002,94.175,13.10666667,0.79075,237.79310251666666 +2015-06-23 16:00:00,0.0,1009.8,243.65,87.54166667,14.55166667,1.123,237.79120638333333 +2015-06-23 17:00:00,0.0,1010.1916669999999,102.7691667,86.3,14.4425,1.350583333,237.7912064 +2015-06-23 18:00:00,0.0,1010.5875,42.16916667,93.96666667,12.95666667,0.7516666670000001,237.79241299999998 +2015-06-23 19:00:00,4.9369800239999995,1011.0875,10.26041667,96.375,12.55083333,0.275083333,237.79258539999998 +2015-06-23 20:00:00,2.410687512,1011.85,4.4555,99.8,11.8575,0.3525,237.79241303333333 +2015-06-23 21:00:00,2.7468125039999998,1012.741667,0.12066666699999999,98.06666667,11.58,0.45725,237.79327488333334 +2015-06-23 22:00:00,0.0,1013.3,0.0,96.26666667,11.66916667,0.212083333,237.7931025 +2015-06-23 23:00:00,0.0,1013.658333,0.0,95.84166667,11.54166667,0.015333333000000001,237.7936196333333 +2015-06-24 00:00:00,0.0,1014.154167,0.0,94.65833333,11.37083333,0.22399999999999998,237.79155113333331 +2015-06-24 01:00:00,0.0,1014.270833,0.0,95.69166667,11.33416667,0.365,237.79361963333335 +2015-06-24 02:00:00,0.0,1014.3875,0.0,97.16666667,10.59416667,0.40133333299999996,237.7943091666667 +2015-06-24 03:00:00,0.0,1014.791667,0.046916667,97.79166667,10.9575,0.2675,237.7927578 +2015-06-24 04:00:00,0.0,1015.3708330000001,4.0555,96.95,10.61833333,0.058833333,237.79293015 +2015-06-24 05:00:00,0.0,1016.1208330000001,14.575,97.70833333,11.03666667,0.032583333,237.79068926666665 +2015-06-24 06:00:00,0.0,1016.541667,49.66083333,96.425,11.46833333,0.090583333,237.79034449999997 +2015-06-24 07:00:00,0.0,1017.091667,78.63916667,94.21666667,12.01666667,0.196833333,237.78948259999996 +2015-06-24 08:00:00,0.0,1017.729167,104.7,92.275,12.57833333,0.17600000000000002,237.78931023333328 +2015-06-24 09:00:00,0.0,1018.354167,119.63333329999999,88.60833333,12.81583333,0.386083333,237.78689694999994 +2015-06-24 10:00:00,0.0,1018.604167,156.8833333,85.49166667,13.06666667,0.3195,237.78741409999998 +2015-06-24 11:00:00,0.0,1018.766667,248.375,81.15833333,14.13583333,0.35133333299999997,237.78879311666665 +2015-06-24 12:00:00,0.0,1018.775,238.91666669999998,80.63583333,14.7425,0.449666667,237.78706935 +2015-06-24 13:00:00,0.0,1018.6833330000001,258.05,78.66,15.41666667,0.51025,237.78620744999998 +2015-06-24 14:00:00,0.0,1018.616667,360.575,74.8725,15.97583333,0.6345833329999999,237.78310466666665 +2015-06-24 15:00:00,0.0,1018.5625,423.925,70.80583333,16.93166667,0.88875,237.7801742833333 +2015-06-24 16:00:00,0.0,1018.233333,461.24166669999994,69.17916667,17.06166667,1.53175,237.77845048333333 +2015-06-24 17:00:00,0.0,1017.9625,85.8325,70.4725,17.72666667,1.446333333,237.77655436666666 +2015-06-24 18:00:00,0.0,1017.9125,42.48083333,71.34916667,17.94916667,1.2845,237.77603723333334 +2015-06-24 19:00:00,0.0,1018.1291669999999,29.82,80.33166667,17.79,0.44891666700000005,237.77293444999998 +2015-06-24 20:00:00,0.0,1018.320833,5.317416667,95.90833333,14.02833333,0.165833333,237.77310681666665 +2015-06-24 21:00:00,0.0,1018.658333,0.066166667,99.99166667,11.8175,0.0245,237.77241733333332 +2015-06-24 22:00:00,0.0,1018.804167,0.0,100.0,11.61666667,0.032333333,237.77293446666667 +2015-06-24 23:00:00,0.0,1018.658333,0.0,100.0,10.84166667,0.013166667,237.77293444999998 +2015-06-25 00:00:00,0.0,1018.616667,0.0,100.0,9.615833333,0.023916667000000003,237.77414110000004 +2015-06-25 01:00:00,0.0,1018.654167,0.0,100.0,9.32,0.0025,237.77396869999998 +2015-06-25 02:00:00,0.0,1018.6291669999999,0.0,100.0,8.453333333,0.019083333,237.7744858333333 +2015-06-25 03:00:00,0.0,1018.516667,0.041333333,100.0,7.436333332999999,0.0,237.77500298333334 +2015-06-25 04:00:00,0.0,1018.520833,7.1275,100.0,7.0035,0.00075,237.77362395 +2015-06-25 05:00:00,0.0,1018.633333,51.615,100.0,7.982333333,0.013416667,237.77465823333333 +2015-06-25 06:00:00,0.0,1018.820833,95.19666667,100.0,10.1,0.12916666699999999,237.77224496666665 +2015-06-25 07:00:00,0.0,1018.908333,152.575,99.83333333,11.30333333,0.614166667,237.77069358333333 +2015-06-25 08:00:00,0.0,1018.945833,213.45,92.44166667,13.38916667,0.62975,237.77069356666667 +2015-06-25 09:00:00,0.0,1019.1375,343.475,82.7,15.84833333,0.486333333,237.76534988333333 +2015-06-25 10:00:00,0.0,1019.1208330000001,576.325,73.455,18.6025,1.0765833329999999,237.76241948333333 +2015-06-25 11:00:00,0.0,1018.929167,526.35,63.69083333,21.065,0.858666667,237.75948904999998 +2015-06-25 12:00:00,0.0,1018.65,677.6166667,55.10333333,21.96,0.86675,237.75569678333332 +2015-06-25 13:00:00,0.0,1018.408333,698.6583333,49.77666667,23.25916667,1.112083333,237.75018071666668 +2015-06-25 14:00:00,0.0,1017.979167,495.85,49.68416667,23.9625,0.82925,237.74690555000004 +2015-06-25 15:00:00,0.0,1017.8625,429.28333330000004,48.24083333,24.605,0.64425,237.74242378333335 +2015-06-25 16:00:00,0.0,1017.7625,435.28333330000004,43.77333333,24.66333333,0.55925,237.7386315166667 +2015-06-25 17:00:00,0.0,1017.6625,100.2266667,46.885,24.89166667,0.529166667,237.73483923333333 +2015-06-25 18:00:00,0.0,1017.341667,81.04916667,56.7325,23.70333333,0.123916667,237.73501161666664 +2015-06-25 19:00:00,0.0,1017.4375,54.29916667,75.35333333,23.94333333,0.0,237.7315640833333 +2015-06-25 20:00:00,0.0,1017.479167,9.449666667,87.68333333,18.54916667,0.042833333,237.73363258333333 +2015-06-25 21:00:00,0.0,1017.866667,0.1615,91.36666667,14.49916667,0.000833333,237.73397733333334 +2015-06-25 22:00:00,0.0,1017.825,0.0,96.49166667,12.82333333,0.0,237.73432209999999 +2015-06-25 23:00:00,0.0,1017.791667,0.0,99.45833333,11.98666667,0.044166667,237.73604585 +2015-06-26 00:00:00,0.0,1017.6208330000001,0.0,100.0,11.55833333,0.031916667,237.73759723333333 +2015-06-26 01:00:00,0.0,1017.279167,0.0,100.0,11.03,0.020083333000000002,237.74018290000004 +2015-06-26 02:00:00,0.0,1017.0875,0.0,100.0,10.68166667,0.017,237.7412171666667 +2015-06-26 03:00:00,0.0,1017.141667,0.0075,100.0,11.30083333,0.00475,237.74138953333338 +2015-06-26 04:00:00,0.0,1017.016667,4.256166667,100.0,11.77083333,0.022333332999999997,237.7413895166667 +2015-06-26 05:00:00,0.0,1016.954167,31.34333333,99.70833333,12.5375,0.055166667,237.74001051666667 +2015-06-26 06:00:00,0.0,1017.2541669999999,86.0775,96.24166667,13.955,0.0275,237.73914865000003 +2015-06-26 07:00:00,0.0,1017.3791669999999,187.8416667,79.86666667,16.97833333,0.37275,237.73845913333335 +2015-06-26 08:00:00,0.0,1017.395833,226.425,72.96,19.78166667,0.793416667,237.73656296666664 +2015-06-26 09:00:00,0.0,1017.1291669999999,353.6,68.6825,22.1075,0.5065,237.73363258333328 +2015-06-26 10:00:00,0.0,1016.679167,650.675,59.3125,24.36583333,0.625166667,237.72811651666666 +2015-06-26 11:00:00,0.0,1016.25,632.425,57.98416667,25.1625,0.7586666670000001,237.7231176 +2015-06-26 12:00:00,0.0,1015.670833,604.2833333,54.8725,25.80416667,1.29375,237.71846344999997 +2015-06-26 13:00:00,0.0,1015.166667,413.1916667,52.9725,26.785,0.6235,237.71725681666666 +2015-06-26 14:00:00,0.0,1014.9416669999999,332.225,55.10916667,26.2425,0.46816666700000004,237.71484351666666 +2015-06-26 15:00:00,0.0,1014.8166669999999,213.7666667,59.24416667,25.74166667,0.439333333,237.71380924999997 +2015-06-26 16:00:00,0.0,1014.595833,148.33333330000002,62.34666667,24.97416667,0.09225,237.71053408333333 +2015-06-26 17:00:00,0.0,1014.3166669999999,105.94833329999999,68.04583333,24.05666667,0.01025,237.71087883333334 +2015-06-26 18:00:00,0.0,1014.095833,60.9275,81.36916667,22.79333333,0.0185,237.71156836666663 +2015-06-26 19:00:00,0.0,1014.079167,37.10166667,87.325,21.58,0.022583332999999997,237.71243023333332 +2015-06-26 20:00:00,0.0,1013.9375,10.93858333,91.28333333,20.32166667,0.0,237.712775 +2015-06-26 21:00:00,0.0,1014.020833,0.043666667,92.30833333,18.51166667,0.0,237.71536066666667 +2015-06-26 22:00:00,0.0,1013.75,0.0,93.4,17.81916667,0.008,237.71863581666665 +2015-06-26 23:00:00,0.0,1013.55,0.0,95.89166667,17.35666667,0.027083332999999998,237.7184634333333 +2015-06-27 00:00:00,0.0,1012.966667,0.0,97.7,17.175,0.251833333,237.72053195 +2015-06-27 01:00:00,0.0,1012.341667,0.0,98.65833333,16.83916667,0.08458333300000001,237.72415185 +2015-06-27 02:00:00,0.0,1012.6375,0.0,99.34166667,16.66583333,0.204916667,237.72622034999998 +2015-06-27 03:00:00,2.4050227680000003,1012.491667,0.0,100.0,16.4275,0.263333333,237.7260479833333 +2015-06-27 04:00:00,12.07334784,1012.25,1.050833333,100.0,16.21333333,0.083416667,237.72949551666667 +2015-06-27 05:00:00,15.11166806,1012.1625,6.764333333,100.0,16.0925,0.580583333,237.72897839999996 +2015-06-27 06:00:00,24.80262802,1012.0125,15.42475,100.0,16.14916667,0.43541666700000003,237.72932316666663 +2015-06-27 07:00:00,47.69777952,1011.920833,21.145,100.0,16.1625,0.604666667,237.73208118333332 +2015-06-27 08:00:00,32.10104018,1011.9958330000001,138.0108333,99.91666667,16.62,0.7134166670000001,237.73277066666665 +2015-06-27 09:00:00,0.0,1011.8625,253.7416667,94.1,18.69333333,0.91225,237.73328779999997 +2015-06-27 10:00:00,0.0,1011.979167,253.7666667,88.6,19.77666667,0.514083333,237.73328781666666 +2015-06-27 11:00:00,0.0,1012.283333,301.7583333,85.01666667,20.45,0.44041666700000004,237.73225356666663 +2015-06-27 12:00:00,0.0,1012.0875,268.75,83.365,20.7475,1.076166667,237.73173640000002 +2015-06-27 13:00:00,0.0,1012.033333,254.68333330000002,73.81083333,21.34583333,0.858083333,237.73225356666663 +2015-06-27 14:00:00,4.120396128,1012.520833,463.7666666999999,64.88416667,22.19916667,3.095916667,237.72708224999997 +2015-06-27 15:00:00,0.0,1012.3,518.175,58.94,23.32583333,1.968833333,237.72380711666665 +2015-06-27 16:00:00,0.0,1012.791667,348.175,57.9525,23.22916667,2.847833333,237.7194977 +2015-06-27 17:00:00,0.0,1013.170833,110.4016667,65.8875,21.80833333,2.347333333,237.71656729999998 +2015-06-27 18:00:00,0.0,1013.583333,74.3375,65.88083333,21.20416667,1.9898333330000002,237.7148435 +2015-06-27 19:00:00,0.0,1014.1375,42.71583333,63.46416667,21.12,2.202083333,237.71294736666664 +2015-06-27 20:00:00,0.0,1014.7875,10.95875,72.58166667,19.17,1.186,237.7138092666667 +2015-06-27 21:00:00,0.0,1015.783333,0.183166667,90.68333333,15.40166667,0.17875,237.7160501333333 +2015-06-27 22:00:00,0.0,1016.533333,0.0,92.84166667,13.395,0.08825,237.71932531666667 +2015-06-27 23:00:00,0.0,1016.858333,0.0,96.48333333,12.7375,0.260916667,237.72104908333333 +2015-06-28 00:00:00,0.0,1017.3,0.0,99.23333333,11.74833333,0.13275,237.7229452 +2015-06-28 01:00:00,0.0,1017.458333,0.0,100.0,10.68333333,0.052916667,237.72397948333332 +2015-06-28 02:00:00,0.0,1017.345833,0.0,100.0,9.741666667,0.062166667,237.72518609999997 +2015-06-28 03:00:00,0.0,1017.2125,0.048333333,100.0,8.735833332999999,0.020666667,237.726048 +2015-06-28 04:00:00,0.0,1017.579167,8.740416667,100.0,8.288333332999999,0.003,237.72690988333332 +2015-06-28 05:00:00,0.0,1018.041667,98.2525,99.93333333,10.27,0.08991666699999999,237.72656511666665 +2015-06-28 06:00:00,0.0,1018.541667,203.6166667,90.50416667,13.06,0.45833333299999995,237.72622036666667 +2015-06-28 07:00:00,0.0,1018.845833,203.91916669999998,77.46,16.05333333,0.622,237.72449659999998 +2015-06-28 08:00:00,0.0,1018.7125,66.65583333,68.51833333,18.1525,0.5595,237.72346235 +2015-06-28 09:00:00,0.0,1018.579167,419.64083330000005,58.7875,19.44083333,0.935583333,237.7213938333333 +2015-06-28 10:00:00,0.0,1018.366667,625.9916667,54.1625,20.45083333,1.031333333,237.71794628333336 +2015-06-28 11:00:00,0.0,1018.125,721.7333332999999,53.24166667,21.62166667,0.6729166670000001,237.71191311666666 +2015-06-28 12:00:00,0.0,1017.7625,652.775,50.90416667,22.20416667,0.96675,237.70846559999998 +2015-06-28 13:00:00,0.0,1017.333333,680.775,48.16833333,23.43916667,0.744416667,237.7038114333333 +2015-06-28 14:00:00,0.0,1017.15,601.9166667000001,48.415,23.75,0.987833333,237.69829538333332 +2015-06-28 15:00:00,0.0,1016.733333,462.46666669999996,49.71083333,23.58666667,0.922083333,237.69726111666662 +2015-06-28 16:00:00,0.0,1016.666667,291.71666669999996,49.18166667,23.46,0.955583333,237.69312408333334 +2015-06-28 17:00:00,0.0,1016.6,125.0525,57.47833333,22.5025,0.494166667,237.69174505 +2015-06-28 18:00:00,0.0,1016.5625,79.95583333,73.51666667,20.92166667,0.061583333,237.6920898 +2015-06-28 19:00:00,0.0,1016.654167,49.4675,82.89166667,20.84166667,0.011416667,237.69398593333332 +2015-06-28 20:00:00,0.0,1016.5,4.954583333,90.46666667,18.12666667,0.004166667,237.69519258333332 +2015-06-28 21:00:00,0.0,1016.725,0.058666667,90.00833333,16.8,0.052416667,237.69622685 +2015-06-28 22:00:00,0.0,1016.783333,0.0,93.28333333,16.51,0.10033333300000001,237.69950200000002 +2015-06-28 23:00:00,0.0,1016.35,0.0,95.95833333,15.90666667,0.08975,237.7007086333333 +2015-06-29 00:00:00,0.0,1016.216667,0.0,96.425,15.5225,0.030083332999999997,237.7058799 +2015-06-29 01:00:00,0.0,1016.1875,0.0,97.6,15.2825,0.107333333,237.7079484333333 +2015-06-29 02:00:00,0.0,1015.883333,0.0,97.775,14.9225,0.04225,237.71053408333333 +2015-06-29 03:00:00,0.0,1015.6,0.0,99.11666667,14.26333333,0.00625,237.71208550000003 +2015-06-29 04:00:00,0.0,1015.679167,6.87525,99.8,14.24,0.002,237.71346451666668 +2015-06-29 05:00:00,0.0,1015.929167,54.20083333,97.96666667,14.85666667,0.0,237.71243023333332 +2015-06-29 06:00:00,0.0,1016.091667,135.7833333,89.95333333,16.93583333,0.049416667000000004,237.71122359999995 +2015-06-29 07:00:00,0.0,1016.3875,202.2666667,76.4525,18.9925,0.494333333,237.71053406666667 +2015-06-29 08:00:00,0.0,1016.545833,211.8,67.04833333,20.605,0.6738333329999999,237.7088103166667 +2015-06-29 09:00:00,0.0,1016.708333,351.0416667,61.88666667,23.12083333,0.755,237.70467326666665 +2015-06-29 10:00:00,0.0,1016.7541669999999,399.2333333,62.69833333,23.765,0.740166667,237.69777823333334 +2015-06-29 11:00:00,0.0,1016.7458330000001,480.1416666999999,60.845,25.04666667,0.53925,237.69174505 +2015-06-29 12:00:00,0.0,1016.583333,657.5833332999999,56.12416667,26.19916667,0.80475,237.68622898333334 +2015-06-29 13:00:00,0.0,1016.195833,579.0,53.83333333,27.12666667,0.902166667,237.68174720000002 +2015-06-29 14:00:00,0.0,1016.008333,626.9416667,54.11583333,27.27916667,1.081,237.67743778333337 +2015-06-29 15:00:00,0.0,1016.1208330000001,368.5833333,52.1775,26.69916667,1.36325,237.67330073333338 +2015-06-29 16:00:00,0.0,1015.975,451.6833333000001,44.1775,26.49,2.09375,237.67226648333335 +2015-06-29 17:00:00,0.0,1016.045833,99.035,44.625,26.46166667,2.096916667,237.66985321666667 +2015-06-29 18:00:00,0.0,1016.2625,52.92666667,46.3475,26.01083333,1.2615,237.66812946666673 +2015-06-29 19:00:00,0.0,1016.604167,32.77666667,56.31166667,24.40583333,0.5831666670000001,237.66554380000002 +2015-06-29 20:00:00,0.0,1017.0875,7.659666667000001,77.52333333,19.49583333,0.037166667,237.6655437833334 +2015-06-29 21:00:00,0.0,1017.525,0.275583333,89.96666667,16.305,0.070666667,237.66933608333332 +2015-06-29 22:00:00,0.0,1018.0125,0.0,93.525,15.05583333,0.10400000000000001,237.67105983333337 +2015-06-29 23:00:00,0.0,1018.045833,0.0,95.2,14.385,0.027583332999999998,237.67381788333333 +2015-06-30 00:00:00,0.0,1017.9125,0.0,96.83333333,14.51166667,0.024583333,237.67709305000002 +2015-06-30 01:00:00,0.0,1017.8083330000001,0.0,99.33333333,13.52,0.008833333,237.67864445 +2015-06-30 02:00:00,0.0,1017.545833,0.0,99.88333333,12.5375,0.0,237.68105768333336 +2015-06-30 03:00:00,0.0,1017.529167,0.01975,100.0,11.1125,0.0,237.68226433333334 +2015-06-30 04:00:00,0.0,1017.658333,5.475,100.0,10.71833333,0.026583332999999997,237.68571185 +2015-06-30 05:00:00,0.0,1017.983333,91.18583333,98.76666667,12.42916667,0.0,237.68347098333334 +2015-06-30 06:00:00,0.0,1018.1208330000001,195.79166669999998,89.26833333,16.36166667,0.226833333,237.68312621666666 +2015-06-30 07:00:00,0.0,1018.4875,204.4691667,76.88083333,18.15083333,0.834666667,237.6832985833333 +2015-06-30 08:00:00,0.0,1018.6208330000001,67.30416667,70.23166667,20.28416667,0.74575,237.68226433333336 +2015-06-30 09:00:00,0.0,1018.533333,404.1225,59.74166667,23.17642763,0.723,237.67761016666668 +2015-06-30 10:00:00,0.0,1018.25,627.0333333,53.53416667,23.99166667,1.58825,237.66830183333335 +2015-06-30 11:00:00,0.0,1018.0875,688.9916667,48.1775,24.87,1.7063333330000001,237.66088963333334 +2015-06-30 12:00:00,0.0,1017.658333,715.925,46.625,25.97166667,1.4729166669999998,237.65537356666667 +2015-06-30 13:00:00,0.0,1017.4125,701.3583332999999,42.39833333,26.67,1.55,237.64951274999999 +2015-06-30 14:00:00,0.0,1016.891667,658.9666667,39.94166667,28.03833333,1.2491666670000001,237.64606523333336 +2015-06-30 15:00:00,0.0,1016.470833,592.1916667,37.71416667,28.42583333,1.096666667,237.6424453 +2015-06-30 16:00:00,0.0,1015.983333,493.6833333000001,37.84166667,29.0325,1.069583333,237.63985966666667 +2015-06-30 17:00:00,0.0,1015.466667,76.45666667,37.3625,28.7675,1.32925,237.63779115000003 +2015-06-30 18:00:00,0.0,1015.170833,33.46416667,41.27083333,28.12833333,1.355833333,237.6369292833334 +2015-06-30 19:00:00,0.0,1015.4,24.63833333,54.09166667,27.695,0.2145,237.63468836666664 +2015-06-30 20:00:00,0.0,1015.604167,9.95475,80.88416667,21.88583333,0.00425,237.63658451666666 +2015-06-30 21:00:00,0.0,1015.954167,0.16525,92.64166667,17.42583333,0.021583333,237.64003205000003 +2015-06-30 22:00:00,0.0,1016.008333,0.0,95.30833333,15.72416667,0.006166667,237.64451381666672 +2015-06-30 23:00:00,0.0,1016.15,0.0,97.30833333,14.66,0.037833333,237.64675473333332 +2015-01-07 00:00:00,0.0,1016.2,0.0,98.125,13.91916667,0.009916666999999999, +2015-01-07 01:00:00,0.0,1016.1375,0.0,99.79166667,13.13416667,0.007166667, +2015-01-07 02:00:00,0.0,1016.1916669999999,0.0,100.0,12.61083333,0.004416667, +2015-01-07 03:00:00,0.0,1016.216667,0.04975,100.0,12.3025,0.01175, +2015-01-07 04:00:00,0.0,1016.404167,7.6895,99.96666667,12.07,0.016, +2015-01-07 05:00:00,0.0,1016.645833,91.48416667,93.90833333,14.30583333,0.03575, +2015-01-07 06:00:00,0.0,1016.770833,194.5333333,80.605,18.4925,0.18791666699999998, +2015-01-07 07:00:00,0.0,1016.804167,205.5791667,73.41083333,19.95916667,1.062583333, +2015-01-07 08:00:00,0.0,1016.65,60.2125,66.87416667,22.5325,1.020333333, +2015-01-07 09:00:00,0.0,1016.583333,399.2783333,59.3125,25.21666667,1.4350833330000001, +2015-01-07 10:00:00,0.0,1016.4875,623.125,54.3325,26.935,1.4135, +2015-01-07 11:00:00,0.0,1016.2625,683.1166667,49.20166667,28.87583333,1.6619166669999998, +2015-01-07 12:00:00,0.0,1015.975,713.325,45.515,29.9475,2.0380833330000003, +2015-01-07 13:00:00,0.0,1015.5625,694.4416667,43.15416667,30.52166667,1.8201666669999998, +2015-01-07 14:00:00,0.0,1014.958333,661.6083332999999,42.24083333,31.26416667,1.876333333, +2015-01-07 15:00:00,0.0,1014.725,561.7833333,41.55916667,31.6075,2.11925, +2015-01-07 16:00:00,0.0,1014.404167,488.99166669999994,41.27416667,31.73583333,1.7608333330000001, +2015-01-07 17:00:00,0.0,1014.016667,111.05166670000001,42.98666667,31.88583333,1.5801666669999999, +2015-01-07 18:00:00,0.0,1013.733333,38.95333333,44.39166667,31.68,1.099166667, +2015-01-07 19:00:00,0.0,1013.9625,28.06,57.98583333,30.0825,0.313916667, +2015-01-07 20:00:00,0.0,1014.2541669999999,10.04675,79.93666667,24.65416667,0.0645, +2015-01-07 21:00:00,0.0,1014.708333,0.12116666699999999,88.775,20.2325,0.01825, +2015-01-07 22:00:00,0.0,1015.1291669999999,0.0,95.14166667,18.5825,0.048166667, +2015-01-07 23:00:00,0.0,1015.383333,0.0,97.25,17.71083333,0.0355, +2015-02-07 00:00:00,0.0,1015.579167,0.0,97.45,16.88583333,0.009916666999999999, +2015-02-07 01:00:00,0.0,1015.670833,0.0,97.70833333,16.27416667,0.016916667, +2015-02-07 02:00:00,0.0,1015.85,0.0,98.725,15.65583333,0.11783333300000001, +2015-02-07 03:00:00,0.0,1015.795833,0.035666667,98.99166667,15.06833333,0.003833333, +2015-02-07 04:00:00,0.0,1015.991667,6.106166667,98.95,14.78166667,0.00375, +2015-02-07 05:00:00,0.0,1016.4125,79.8575,93.38333333,16.60833333,0.0, +2015-02-07 06:00:00,0.0,1016.775,184.41666669999998,80.04083333,21.2875,0.034333333, +2015-02-07 07:00:00,0.0,1016.720833,204.1883333,73.8725,23.12416667,0.697583333, +2015-02-07 08:00:00,0.0,1016.675,66.2525,61.92333333,25.70666667,1.6001666669999999, +2015-02-07 09:00:00,0.0,1016.804167,392.9691667,54.95083333,28.26083333,1.793333333, +2015-02-07 10:00:00,0.0,1016.820833,613.1666667000001,50.27166667,30.04333333,2.2745833330000003, +2015-02-07 11:00:00,0.0,1016.645833,672.6333333,47.935,31.73333333,2.5573333330000003, +2015-02-07 12:00:00,0.0,1016.55,700.425,43.99666667,32.805,2.4660833330000003, +2015-02-07 13:00:00,0.0,1016.179167,694.8666667,40.1875,33.65583333,2.4041666669999997, +2015-02-07 14:00:00,0.0,1016.0,653.6416667000001,39.72333333,34.1,2.253916667, +2015-02-07 15:00:00,0.0,1015.904167,574.6416667000001,39.80166667,34.32416667,2.235583333, +2015-02-07 16:00:00,0.0,1015.64575,473.53333330000004,39.46416667,34.42666667,2.233916667, +2015-02-07 17:00:00,0.0,1015.175,107.9225,40.38416667,34.31916667,1.70225, +2015-02-07 18:00:00,0.0,1015.192167,47.96916667,43.2975,33.84666667,1.231666667, +2015-02-07 19:00:00,0.0,1015.418167,26.4575,63.61666667,31.25333333,0.716, +2015-02-07 20:00:00,0.0,1015.937333,4.7626666669999995,81.745,24.93333333,0.048083333, +2015-02-07 21:00:00,0.0,1016.3505,0.0465,88.99166667,21.675,0.021416667, +2015-02-07 22:00:00,0.0,1016.35,0.0,93.975,20.0575,0.0, +2015-02-07 23:00:00,0.0,1016.517167,0.0,96.625,19.2725,0.0, +2015-03-07 00:00:00,0.0,1016.634833,0.0,98.18333333,18.74,0.0,238.03746933333332 +2015-03-07 01:00:00,0.0,1016.908833,0.0,98.625,18.47666667,0.0,238.03748599999997 +2015-03-07 02:00:00,0.0,1017.278,0.0,98.35833333,18.87333333,0.0,238.03883599999998 +2015-03-07 03:00:00,0.0,1017.574,0.030083332999999997,98.51666667,18.84583333,0.02775,238.03983599999995 +2015-03-07 04:00:00,0.0,1017.7123330000001,4.285833333,99.325,18.44416667,0.049416667000000004,238.03950266666664 +2015-03-07 05:00:00,0.0,1018.4775,17.47416667,97.88333333,19.3875,0.140583333,238.039836 +2015-03-07 06:00:00,0.0,1019.028,89.17416667,94.625,21.03416667,0.356333333,238.040536 +2015-03-07 07:00:00,0.0,1019.594167,193.0333333,84.27333333,23.835,0.743916667,238.04331933333333 +2015-03-07 08:00:00,0.0,1019.725,111.60833329999998,74.12,25.52666667,1.4578333330000002,238.04435266666664 +2015-03-07 09:00:00,0.0,1019.959333,382.225,67.25666667,26.87166667,1.7704166669999999,238.05013599999998 +2015-03-07 10:00:00,0.0,1020.133833,582.4,61.02416667,28.23333333,1.53775,238.04741933333335 +2015-03-07 11:00:00,0.0,1019.990167,644.5166667000001,57.39916667,30.16833333,1.472083333,238.04123600000003 +2015-03-07 12:00:00,0.0,1019.564667,675.75,53.1825,32.02916667,1.137666667,238.04158600000002 +2015-03-07 13:00:00,0.0,1019.0725,669.3916667000001,49.13583333,33.37916667,1.063833333,238.04158600000002 +2015-03-07 14:00:00,0.0,1018.932333,620.8166667,45.83166667,34.30416667,0.939916667,238.04158600000002 +2015-03-07 15:00:00,0.0,1018.531333,542.35,44.68166667,34.29333333,1.157833333,238.04158600000002 +2015-03-07 16:00:00,0.0,1017.929833,434.225,43.78,35.09833333,0.616083333,238.042286 +2015-03-07 17:00:00,0.0,1017.331833,112.4258333,47.33083333,34.48833333,0.984833333,238.042286 +2015-03-07 18:00:00,0.0,1017.141167,66.94083333,53.78916667,34.425,0.48908333299999995,238.042986 +2015-03-07 19:00:00,0.0,1017.216667,53.115,69.83083333,32.78583333,0.078083333,238.04333599999998 +2015-03-07 20:00:00,0.0,1017.377,7.067166667,85.29583333,27.07,0.110666667,238.04333599999998 +2015-03-07 21:00:00,0.0,1017.456833,0.06575,87.79166667,23.7575,0.234583333,238.04368599999998 +2015-03-07 22:00:00,0.0,1017.491667,0.0,89.55,21.99833333,0.065166667,238.04435266666664 +2015-03-07 23:00:00,0.0,1017.4416669999999,0.0,93.875,20.86083333,0.07825,238.04435266666664 +2015-04-07 00:00:00,0.0,1017.2485,0.0,96.775,20.03583333,0.027333332999999998,238.04547670000002 +2015-04-07 01:00:00,0.0,1016.881333,0.0,99.10833333,19.57083333,0.016583333000000002,238.04547670000002 +2015-04-07 02:00:00,0.0,1016.5245,0.0,100.0,18.95,0.012916667,238.04547670000002 +2015-04-07 03:00:00,0.0,1016.3489999999999,0.006083333000000001,100.0,18.46333333,0.040833333,238.04539909999994 +2015-04-07 04:00:00,0.0,1016.2485,5.69575,100.0,18.1625,0.0,238.04545083333332 +2015-04-07 05:00:00,0.0,1016.2775,58.855,99.925,19.2725,8.329999999999999e-05,238.04545083333335 +2015-04-07 06:00:00,0.0,1016.4495,156.225,91.91666667,23.17083333,0.106333333,238.04537323333332 +2015-04-07 07:00:00,0.0,1016.265167,202.66666669999998,82.06083333,25.725,0.500083333,238.04534736666665 +2015-04-07 08:00:00,0.0,1016.057333,108.43333329999999,64.99666667,28.32833333,1.515333333,238.04545083333335 +2015-04-07 09:00:00,0.0,1015.740167,380.65,57.3225,30.68833333,2.3515,238.04542496666667 +2015-04-07 10:00:00,0.0,1015.456833,548.3916667000001,52.15166667,32.3,2.558166667,238.04539909999997 +2015-04-07 11:00:00,0.0,1015.3739999999999,629.2,47.50416667,33.83333333,2.619583333,238.04539910000003 +2015-04-07 12:00:00,0.0,1015.2,655.6166667,45.6625,35.6725,2.04375,238.04537323333332 +2015-04-07 13:00:00,0.0,1015.032833,648.025,44.97083333,35.7325,0.760083333,238.04537323333332 +2015-04-07 14:00:00,0.0,1014.881833,623.575,39.61916667,35.6825,1.037666667,238.04532149999997 +2015-04-07 15:00:00,0.0,1014.674,554.075,41.3125,36.4625,0.614083333,238.04532149999997 +2015-04-07 16:00:00,0.0,1014.4735,463.99166669999994,39.7575,36.53583333,0.634416667,238.04532149999997 +2015-04-07 17:00:00,0.0,1014.2843330000001,87.18666667,37.71583333,35.87,0.9025,238.04532149999997 +2015-04-07 18:00:00,0.0,1014.5015,59.0275,52.89916667,33.48083333,0.8595,238.0452968833333 +2015-04-07 19:00:00,0.0,1014.6239999999999,27.3475,59.085,29.69583333,0.054583333,238.04517379999996 +2015-04-07 20:00:00,0.0,1014.492667,9.620583332999999,58.6475,28.6575,0.383166667,238.04517379999996 +2015-04-07 21:00:00,0.0,1014.657333,0.046916667,78.93666667,26.32333333,0.04675,238.04517379999996 +2015-04-07 22:00:00,0.0,1014.540667,0.0,85.975,23.1725,0.09475,238.04517379999996 +2015-04-07 23:00:00,0.0,1014.653,0.0,88.38333333,21.91166667,0.131666667,238.04517379999996 +2015-05-07 00:00:00,0.0,1014.932833,0.0,90.99166667,22.11833333,0.159583333,238.04080778333332 +2015-05-07 01:00:00,0.0,1014.817667,0.0,91.6,21.11916667,0.0215,238.04235916666667 +2015-05-07 02:00:00,0.0,1014.8563330000001,0.0,94.33333333,21.015,0.0,238.0421868 +2015-05-07 03:00:00,0.0,1014.481833,0.0,95.20833333,20.75083333,0.0,238.0409801666667 +2015-05-07 04:00:00,0.0,1014.257833,4.743083333,96.50833333,19.81,0.003416667,238.04218678333336 +2015-05-07 05:00:00,0.0,1014.183833,56.8675,94.86666667,20.50166667,0.03225,238.04132493333336 +2015-05-07 06:00:00,0.0,1014.165167,74.885,91.03333333,23.2925,0.028666667000000003,238.0402906666667 +2015-05-07 07:00:00,0.0,1013.931833,204.1166667,77.9075,25.7125,0.36616666700000006,238.0392564166667 +2015-05-07 08:00:00,0.0,1013.530333,114.11666670000001,71.67583333,28.1575,0.6585833329999999,238.03701548333333 +2015-05-07 09:00:00,0.0,1012.797,380.5833333,62.8425,30.09166667,0.7979999999999999,238.03684311666666 +2015-05-07 10:00:00,0.0,1012.179333,587.0583333,52.5325,32.8625,1.5985,238.03546409999998 +2015-05-07 11:00:00,0.0,1011.447,642.8666667,43.96833333,34.965,1.991416667,238.03511938333335 +2015-05-07 12:00:00,0.0,1010.921,554.4666667,39.64666667,36.035,2.3809166669999997,238.03460221666663 +2015-05-07 13:00:00,0.0,1010.072,665.8333332999999,34.255,36.56166667,2.48375,238.03167183333335 +2015-05-07 14:00:00,0.0,1008.926333,526.9,33.5775,37.355,2.851833333,238.03115468333337 +2015-05-07 15:00:00,39.76280311,1008.075,183.0766667,47.5375,35.03916667,2.443666667,238.03167183333335 +2015-05-07 16:00:00,0.0,1007.609667,394.05,76.76666667,30.42583333,1.282666667,238.03132708333337 +2015-05-07 17:00:00,0.0,1006.991667,106.785,62.40333333,33.55916667,0.5621666670000001,238.03098233333336 +2015-05-07 18:00:00,0.0,1007.666833,71.68916667,58.42416667,32.45666667,2.035916667,238.03339561666667 +2015-05-07 19:00:00,0.0,1008.5005,33.4975,69.44083333,27.48916667,3.187916667,238.03287848333335 +2015-05-07 20:00:00,0.0,1009.5360000000001,4.384083333,80.77,25.20416667,2.1141666669999997,238.03253373333334 +2015-05-07 21:00:00,0.0,1010.868167,0.0,84.70833333,23.64833333,1.4605833330000002,238.03408513333338 +2015-05-07 22:00:00,0.0,1011.396167,0.0,96.66666667,21.72666667,1.389083333,238.03425748333333 +2015-05-07 23:00:00,12.18783355,1012.842333,0.0,96.88333333,19.90916667,1.6185833330000001,238.03322321666664 +2015-06-07 00:00:00,13.57470454,1014.590833,0.0,96.80833333,18.34916667,0.581,237.74552658333332 +2015-06-07 01:00:00,2.54273352,1015.870667,0.0,99.04166667,17.52333333,0.6034166670000001,237.74793985 +2015-06-07 02:00:00,0.0,1015.975,0.0,99.925,17.00833333,0.21833333300000002,237.75018076666666 +2015-06-07 03:00:00,0.0,1016.3936669999999,0.0,100.0,16.0425,0.19033333300000002,237.75224923333337 +2015-06-07 04:00:00,0.0,1016.809333,4.479583333,100.0,15.44833333,0.255083333,237.75535205000003 +2015-06-07 05:00:00,0.0,1017.035833,63.9775,99.53333333,15.95583333,0.378666667,237.75707580000002 +2015-06-07 06:00:00,0.0,1017.5785,168.2416667,95.39166667,17.985,0.138916667,237.75742056666664 +2015-06-07 07:00:00,0.0,1018.344167,193.5225,88.66666667,18.96333333,0.38783333299999995,237.75759293333337 +2015-06-07 08:00:00,0.0,1018.718167,79.12583333,81.72916667,19.73166667,0.48875,237.75535203333334 +2015-06-07 09:00:00,0.0,1018.7760000000001,389.0083333,69.80833333,20.66416667,0.7465,237.7474227 +2015-06-07 10:00:00,0.0,1018.613667,617.625,61.855,21.6925,0.8420833329999999,237.73811435000002 +2015-06-07 11:00:00,0.0,1018.2235,679.2166667,56.08416667,22.50083333,1.27375,237.72794414999996 +2015-06-07 12:00:00,0.0,1017.931833,712.2083332999999,49.06916667,23.54416667,1.242166667,237.72397951666665 +2015-06-07 13:00:00,0.0,1017.5975,705.65,48.80416667,24.10333333,1.42,237.72139383333334 +2015-06-07 14:00:00,0.0,1017.2485,665.0,44.32666667,24.84416667,1.434166667,237.7179463 +2015-06-07 15:00:00,0.0,1016.705333,593.1666667000001,42.11916667,25.57,1.006666667,237.71673968333334 +2015-06-07 16:00:00,0.0,1016.054833,495.125,41.47666667,26.03333333,0.877416667,237.71484353333335 +2015-06-07 17:00:00,0.0,1015.330333,72.64833333,43.53583333,26.35166667,0.9165,237.71380928333335 +2015-06-07 18:00:00,0.0,1014.905333,34.28333333,45.47083333,26.18416667,0.883,237.7143264166667 +2015-06-07 19:00:00,0.0,1014.506833,27.1425,54.08333333,25.34166667,0.6459999999999999,237.71294738333333 +2015-06-07 20:00:00,0.0,1014.493667,7.536166667000001,80.80083333,20.4825,0.03375,237.71311975 +2015-06-07 21:00:00,0.0,1014.684333,0.0775,87.71666667,16.18666667,0.0085,237.71587778333333 +2015-06-07 22:00:00,0.0,1014.4475,0.0,91.15,14.57,0.038916667,237.72035959999997 +2015-06-07 23:00:00,0.0,1014.1995,0.0,95.6,13.51166667,0.035333333,237.72535849999997 +2015-07-07 00:00:00,0.0,1013.6965,0.0,97.71666667,12.72916667,0.04025,237.56189949999995 +2015-07-07 01:00:00,0.0,1013.280333,0.0,98.88333333,11.83166667,0.008,237.56538438333334 +2015-07-07 02:00:00,0.0,1012.865167,0.0,99.98333333,11.26333333,0.068666667,237.5697055833333 +2015-07-07 03:00:00,0.0,1012.3725,0.00375,100.0,10.65583333,0.007666666999999999,237.57402678333332 +2015-07-07 04:00:00,0.0,1012.015167,4.89125,100.0,10.43333333,0.0,237.576954 +2015-07-07 05:00:00,0.0,1011.891167,87.2425,96.41666667,12.48583333,0.0,237.5798813333333 +2015-07-07 06:00:00,0.0,1011.5725,189.975,81.35083333,16.45666667,0.37291666700000003,237.58127526666667 +2015-07-07 07:00:00,0.0,1010.964167,226.3916667,74.46083333,17.96416667,0.496,237.58197223333335 +2015-07-07 08:00:00,0.0,1010.3715,67.77333333,66.1425,21.5325,0.65575,237.58043888333336 +2015-07-07 09:00:00,0.0,1009.587167,300.6175,57.27416667,25.32583333,0.91875,237.57514191666667 +2015-07-07 10:00:00,0.0,1008.527833,518.2416667,47.0825,28.04,1.44825,237.56301468333334 +2015-07-07 11:00:00,0.0,1007.789167,667.125,38.41333333,30.68916667,2.346,237.54614803333334 +2015-07-07 12:00:00,0.0,1006.976833,573.85,38.56166667,31.84583333,2.024916667,237.5340208 +2015-07-07 13:00:00,0.0,1005.7705,478.625,43.30083333,32.49833333,0.80075,237.52844506666665 +2015-07-07 14:00:00,0.0,1004.7636669999999,479.3083333000001,42.81083333,32.70416667,0.795416667,237.52551778333336 +2015-07-07 15:00:00,0.0,1004.026333,181.94166669999998,45.60083333,32.07,0.931083333,237.52509959999998 +2015-07-07 16:00:00,0.0,1002.9985,199.0,45.615,31.46916667,1.296583333,237.52426325 +2015-07-07 17:00:00,0.0,1003.747167,112.87833329999998,58.82333333,28.0625,2.356666667,237.52147536666666 +2015-07-07 18:00:00,7.9876542960000005,1004.067167,26.58483333,64.58083333,25.38666667,1.3946666669999999,237.52342686666665 +2015-07-07 19:00:00,7.52532804,1004.087167,14.23416667,76.8575,22.04333333,0.640833333,237.5241238333333 +2015-07-07 20:00:00,10.24008895,1003.241667,8.465083332999999,86.325,19.90833333,0.336,237.53025718333333 +2015-07-07 21:00:00,0.0,1003.7603330000001,0.053083332999999996,96.85,17.79083333,0.35808333299999995,237.53499655 +2015-07-07 22:00:00,0.0,1003.784833,0.0,93.41666667,17.89583333,0.561,237.54112986666667 +2015-07-07 23:00:00,0.0,1003.891167,0.0,96.50833333,17.33,0.12375,237.54572986666665 +2015-08-07 00:00:00,0.0,1003.842167,0.0,98.525,16.38166667,0.024166667000000003,237.44982701666672 +2015-08-07 01:00:00,0.0,1004.9271669999999,0.0,90.74166667,16.81166667,0.5645,237.4566573 +2015-08-07 02:00:00,2.421899448,1005.965167,0.0,87.75833333,15.70833333,0.54075,237.46083911666668 +2015-08-07 03:00:00,0.0,1005.9515,0.0,87.375,14.1775,0.304333333,237.46529968333334 +2015-08-07 04:00:00,0.0,1006.092167,5.1521666669999995,93.68333333,13.05333333,0.12566666699999998,237.47073606666666 +2015-08-07 05:00:00,0.0,1006.4275,26.6225,88.7,14.01083333,0.18625,237.47310576666666 +2015-08-07 06:00:00,0.0,1006.9025,53.91333333,84.675,14.43,0.37191666700000003,237.47547543333334 +2015-08-07 07:00:00,0.0,1007.293667,165.2583333,80.18333333,15.46,0.4115,237.4768693833333 +2015-08-07 08:00:00,0.0,1007.617667,160.675,74.60666667,16.52666667,0.8190000000000001,237.47659058333332 +2015-08-07 09:00:00,0.0,1007.8255,377.4,66.91583333,17.47666667,0.8793333329999999,237.4710148666667 +2015-08-07 10:00:00,0.0,1007.958333,379.55,62.66416667,18.02416667,0.739083333,237.45819063333337 +2015-08-07 11:00:00,0.0,1008.285833,344.28333330000004,62.21083333,18.97583333,1.006166667,237.44285734999997 +2015-08-07 12:00:00,0.0,1008.383333,506.46666669999996,64.51583333,19.1175,1.04225,237.43198463333331 +2015-08-07 13:00:00,0.0,1008.45,267.5416667,61.26583333,19.84,0.9804166670000001,237.42668768333337 +2015-08-07 14:00:00,0.0,1008.418167,506.3583333000001,56.28833333,21.13583333,1.25525,237.42389978333333 +2015-08-07 15:00:00,0.0,1008.7,383.1916667,59.68333333,20.48166667,1.301833333,237.42264523333333 +2015-08-07 16:00:00,0.0,1008.657833,262.1,64.23166667,19.8675,0.8975833329999999,237.41943921666666 +2015-08-07 17:00:00,0.0,1008.3480000000001,110.13083329999999,63.69333333,19.56833333,1.0091666670000001,237.42055436666666 +2015-08-07 18:00:00,0.0,1008.494167,57.925,70.2725,18.805,0.593833333,237.42153011666664 +2015-08-07 19:00:00,2.424860664,1008.791167,21.4625,85.3525,16.33833333,0.36416666700000005,237.42320283333333 +2015-08-07 20:00:00,0.0,1008.8936669999999,5.379833333,93.26666667,15.32666667,0.321333333,237.4265483 +2015-08-07 21:00:00,0.0,1009.4025,0.067166667,93.2,14.685,0.3355,237.42961493333334 +2015-08-07 22:00:00,2.46041064,1009.7525,0.0,95.59166667,14.715,0.45983333299999996,237.43365738333333 +2015-08-07 23:00:00,2.411802048,1010.016667,0.0,98.26666667,14.17666667,0.124583333,237.43714218333335 +2015-09-07 00:00:00,0.0,1009.917167,0.0,96.2,14.18416667,0.11491666699999999,237.53964250000004 +2015-09-07 01:00:00,0.0,1010.05,0.0,95.03333333,14.52916667,0.22241666699999998,237.54057315 +2015-09-07 02:00:00,0.0,1009.8225,0.0,93.28333333,14.56666667,0.423,237.54088338333335 +2015-09-07 03:00:00,0.0,1009.6775,0.0,91.175,14.61083333,0.303166667,237.54289978333335 +2015-09-07 04:00:00,0.0,1010.1025,1.71125,96.425,14.13083333,0.342583333,237.54538151666665 +2015-09-07 05:00:00,0.0,1011.1305,38.62075,88.44416667,14.04833333,2.1743333330000003,237.54801838333336 +2015-09-07 06:00:00,0.0,1012.273667,149.80833330000002,77.62916667,14.1825,2.35325,237.54925925 +2015-09-07 07:00:00,0.0,1013.2765,241.2166667,71.01083333,14.4225,3.1116666669999997,237.54894903333332 +2015-09-07 08:00:00,0.0,1013.686333,162.7166667,71.94166667,14.89333333,3.533583333,237.5497245666667 +2015-09-07 09:00:00,0.0,1014.403,342.675,65.6925,15.51083333,1.9855,237.54972456666667 +2015-09-07 10:00:00,0.0,1014.794167,234.25,66.27666667,16.2275,1.6519166669999998,237.54770814999998 +2015-09-07 11:00:00,0.0,1015.192667,390.7916667,61.8275,16.64166667,2.3850833330000003,237.54538153333337 +2015-09-07 12:00:00,0.0,1015.6035,520.7416667,56.26333333,17.625,2.165083333,237.54336511666665 +2015-09-07 13:00:00,0.0,1016.0260000000001,377.2966667,62.35,16.23333333,3.3698333330000003,237.53979761666665 +2015-09-07 14:00:00,0.0,1016.443167,160.3908333,67.88416667,16.04333333,1.3004166670000001,237.53654035 +2015-09-07 15:00:00,0.0,1016.525,173.7583333,67.04833333,17.51916667,0.730833333,237.5354546 +2015-09-07 16:00:00,0.0,1016.684833,228.20833330000002,69.46916667,17.6725,0.525083333,237.53188708333334 +2015-09-07 17:00:00,0.0,1016.867667,125.26916670000001,65.79,17.31083333,0.94925,237.53173198333334 +2015-09-07 18:00:00,0.0,1017.169667,61.17666667,61.61666667,17.9075,1.419416667,237.53421373333333 +2015-09-07 19:00:00,0.0,1017.55,34.4725,57.8625,17.36166667,1.42725,237.53529949999998 +2015-09-07 20:00:00,0.0,1017.962833,6.694916667,70.6575,14.49583333,0.4265,237.53591993333336 +2015-09-07 21:00:00,0.0,1018.7265,0.072333333,87.79166667,11.35583333,0.21608333300000002,237.53871188333335 +2015-09-07 22:00:00,0.0,1019.221167,0.0,93.55833333,9.484166667,0.054166667,237.5399527333333 +2015-09-07 23:00:00,0.0,1019.616167,0.0,96.58333333,8.112166667,0.034333333,237.54274466666666 +2015-10-07 00:00:00,0.0,1019.633333,0.0,98.875,7.275583332999999,0.081583333,237.61735171666666 +2015-10-07 01:00:00,0.0,1019.8515,0.0,99.95,6.424083333,0.0125,237.6178170166667 +2015-10-07 02:00:00,0.0,1019.7745,0.0,100.0,5.431833332999999,0.004583333,237.61781703333335 +2015-10-07 03:00:00,0.0,1019.7739999999999,0.0,100.0,4.395916667,0.033083333,237.6175068 +2015-10-07 04:00:00,0.0,1019.810833,3.749833333,100.0,3.82575,0.002,237.6190578666667 +2015-10-07 05:00:00,0.0,1020.3275,113.83166670000001,99.03333333,6.3746666670000005,0.00875,237.6195232 +2015-10-07 06:00:00,0.0,1020.441167,193.675,86.7,11.1125,0.487333333,237.6185925666667 +2015-10-07 07:00:00,0.0,1020.641667,247.2491667,76.815,12.8225,0.643333333,237.61812724999996 +2015-10-07 08:00:00,0.0,1020.6010000000001,64.15916667,61.63166667,14.13666667,1.207416667,237.6189027833333 +2015-10-07 09:00:00,0.0,1020.5485,382.4675,51.8825,15.88583333,0.761083333,237.61967831666666 +2015-10-07 10:00:00,0.0,1020.214167,614.35,45.475,17.84166667,0.981666667,237.6189027833333 +2015-10-07 11:00:00,0.0,1019.806333,679.7,42.44083333,18.63083333,1.29175,237.61843745 +2015-10-07 12:00:00,0.0,1019.363167,712.975,39.38166667,20.69416667,1.032166667,237.61487001666663 +2015-10-07 13:00:00,0.0,1018.656333,708.2416667,36.01833333,21.09666667,1.226666667,237.61502513333332 +2015-10-07 14:00:00,0.0,1018.080833,665.2916667000001,35.8225,22.59333333,0.80675,237.61347403333332 +2015-10-07 15:00:00,0.0,1017.513167,590.9833332999999,36.43166667,22.79333333,1.291916667,237.61192295 +2015-10-07 16:00:00,0.0,1016.788167,490.475,37.2625,24.05,0.8215,237.61192295 +2015-10-07 17:00:00,0.0,1016.122,75.11916667,37.585,23.97083333,0.98975,237.60975143333334 +2015-10-07 18:00:00,0.0,1015.7735,31.77083333,39.605,24.00416667,0.742,237.60959633333331 +2015-10-07 19:00:00,0.0,1015.699,31.2225,48.6225,23.31083333,0.052833332999999996,237.60959634999998 +2015-10-07 20:00:00,0.0,1015.3755,6.991416667,73.30916667,18.13166667,0.00825,237.60975145 +2015-10-07 21:00:00,0.0,1015.701,0.051666667,84.665,13.2875,0.012166666999999999,237.60928611666668 +2015-10-07 22:00:00,0.0,1015.625,0.0,89.85833333,11.31666667,0.01,237.60990656666664 +2015-10-07 23:00:00,0.0,1015.455833,0.0,91.66666667,10.31583333,0.040583333,237.61161274999998 +2015-11-07 00:00:00,0.0,1015.031333,0.0,93.83333333,9.685833333,0.054833333,237.72612990000002 +2015-11-07 01:00:00,0.0,1014.490167,0.0,97.35833333,8.928333333,0.01875,237.72520024999997 +2015-11-07 02:00:00,0.0,1014.206833,0.0,98.80833333,8.394166667,0.03175,237.72504531666664 +2015-11-07 03:00:00,0.0,1013.930333,0.0,99.91666667,8.099666667000001,0.11283333300000001,237.72705955 +2015-11-07 04:00:00,0.0,1013.6146669999999,5.2678333330000005,100.0,7.994083333,0.026333332999999997,237.7265947 +2015-11-07 05:00:00,0.0,1013.168167,51.60333333,98.775,9.924166667,0.028333333,237.7258200166667 +2015-11-07 06:00:00,0.0,1013.256833,77.6725,92.36666667,12.1125,0.13625,237.72597493333333 +2015-11-07 07:00:00,0.0,1013.006833,188.43333330000002,78.66083333,14.49333333,0.6446666670000001,237.72566506666666 +2015-11-07 08:00:00,0.0,1012.790167,138.9666667,62.58083333,18.05083333,0.86675,237.72489038333336 +2015-11-07 09:00:00,0.0,1012.364167,265.7666667,51.01666667,20.68583333,1.79375,237.7248903666667 +2015-11-07 10:00:00,0.0,1012.225,454.49166669999994,49.36416667,21.98833333,1.746666667,237.72427060000004 +2015-11-07 11:00:00,0.0,1011.9730000000001,644.0416667000001,44.48583333,24.25666667,1.5216666669999999,237.72458048333337 +2015-11-07 12:00:00,0.0,1011.3985,706.05,39.23833333,26.22333333,1.6533333330000002,237.72551011666664 +2015-11-07 13:00:00,0.0,1011.25,697.925,37.29333333,27.87666667,1.5845,237.7258200166667 +2015-11-07 14:00:00,0.0,1011.416667,594.025,36.41,28.88583333,1.110416667,237.72551013333336 +2015-11-07 15:00:00,0.0,1011.442167,547.4833332999999,35.4375,28.89666667,1.57325,237.72705953333335 +2015-11-07 16:00:00,0.0,1011.1235,415.6083333,35.96416667,29.18833333,1.3728333330000002,237.72721446666665 +2015-11-07 17:00:00,0.0,1011.2,100.2,34.78416667,28.685,1.9865,237.72876386666667 +2015-11-07 18:00:00,0.0,1011.359833,66.72666667,32.79,28.1425,2.386666667,237.73000338333335 +2015-11-07 19:00:00,0.0,1011.7525,37.0875,38.57,26.84833333,1.7416666669999998,237.7279892 +2015-11-07 20:00:00,0.0,1012.1436669999999,6.89175,64.6825,22.65166667,0.39375,237.72783425 +2015-11-07 21:00:00,0.0,1012.434333,0.0225,73.91833333,17.43333333,0.068583333,237.72767931666667 +2015-11-07 22:00:00,0.0,1012.7843330000001,0.0,80.5225,15.59416667,0.11875,237.7272144833333 +2015-11-07 23:00:00,0.0,1013.077,0.0,85.45,15.59666667,0.017416667,237.72953858333335 +2015-12-07 00:00:00,0.0,1013.1745,0.0,86.95833333,15.99166667,0.007083333000000001,238.01832215 +2015-12-07 01:00:00,0.0,1013.227,0.0,89.78333333,16.23166667,0.0805,238.0201116833333 +2015-12-07 02:00:00,0.0,1013.3745,0.0,81.9875,16.18166667,0.35625,238.01671158333332 +2015-12-07 03:00:00,0.0,1013.4005,0.0,86.2625,14.68666667,0.08541666699999999,238.01617471666668 +2015-12-07 04:00:00,0.0,1013.4,2.133166667,89.53333333,14.97916667,0.620916667,238.01635366666665 +2015-12-07 05:00:00,0.0,1013.709833,48.83333333,90.625,15.68166667,0.7344166670000001,238.01724843333332 +2015-12-07 06:00:00,0.0,1013.8005,148.7166667,76.69,17.8225,0.441,238.01724843333338 +2015-12-07 07:00:00,0.0,1014.177,220.825,71.70833333,19.395,0.38991666700000005,238.0159957666667 +2015-12-07 08:00:00,0.0,1014.241667,155.80833330000002,67.72583333,21.04916667,0.424916667,238.01617471666668 +2015-12-07 09:00:00,0.0,1014.0485,353.8,64.425,22.0475,0.605666667,238.01545891666663 +2015-12-07 10:00:00,0.0,1013.991167,555.975,56.4525,23.535,0.6645,238.01080609999997 +2015-12-07 11:00:00,0.0,1013.6985,566.95,47.75333333,24.42,1.034583333,238.00847969999998 +2015-12-07 12:00:00,0.0,1013.290667,376.85,46.37583333,24.20333333,0.861083333,238.0090165833333 +2015-12-07 13:00:00,0.0,1013.426,335.2333333,51.63166667,23.11,1.344333333,238.00830076666668 +2015-12-07 14:00:00,0.0,1013.4739999999999,185.175,51.32416667,22.155,1.6479166669999998,238.00991135 +2015-12-07 15:00:00,0.0,1013.670667,114.59166670000002,64.50333333,20.91416667,3.082666667,238.01044823333334 +2015-12-07 16:00:00,0.0,1014.434833,85.25666667,80.23916667,18.6825,3.0630833330000002,238.01098506666668 +2015-12-07 17:00:00,5.624572512,1014.55,53.77083333,90.30833333,17.5325,1.93625,238.01187983333332 +2015-12-07 18:00:00,7.335712344,1014.4573330000001,34.97416667,96.21666667,16.545,0.313916667,238.01044819999996 +2015-12-07 19:00:00,2.4050227680000003,1014.333333,30.25666667,96.91666667,16.35833333,0.10383333300000001,238.01098508333334 +2015-12-07 20:00:00,2.44690404,1014.25,6.4895,95.15,15.8425,0.17600000000000002,238.0093745 +2015-12-07 21:00:00,0.0,1014.544667,0.029083333,95.775,14.83666667,0.024333333,238.00794284999998 +2015-12-07 22:00:00,0.0,1014.807833,0.0,96.76666667,14.46416667,0.007916666999999999,238.0090165833333 +2015-12-07 23:00:00,0.0,1014.532333,0.0,98.75833333,13.91,0.024083333,238.00794284999998 +2015-07-13 00:00:00,0.0,1014.264167,0.0,99.275,13.6575,0.003666667,237.51603899999998 +2015-07-13 01:00:00,0.0,1014.140167,0.0,95.91666667,14.1925,0.027333332999999998,237.51924506666668 +2015-07-13 02:00:00,0.0,1013.6985,0.0,95.95,14.45916667,0.032833333,237.52384506666667 +2015-07-13 03:00:00,0.0,1013.816167,0.0,94.70833333,14.72083333,0.0075,237.5252389833333 +2015-07-13 04:00:00,0.0,1013.536333,2.233083333,95.6,14.95666667,0.023916667000000003,237.52969961666668 +2015-07-13 05:00:00,0.0,1013.8,23.69666667,95.04166667,15.18333333,0.0765,237.53165111666667 +2015-07-13 06:00:00,0.0,1013.833333,43.11166667,91.75833333,15.85916667,0.11716666699999999,237.53276624999998 +2015-07-13 07:00:00,0.0,1013.9176669999999,76.37583333,89.25833333,16.35416667,0.11941666699999999,237.53429955 +2015-07-13 08:00:00,0.0,1014.116667,103.50916670000001,85.24166667,17.03916667,0.287833333,237.53499651666667 +2015-07-13 09:00:00,2.5704604559999997,1014.075,175.6583333,84.675,17.7025,0.41633333299999997,237.5351359166667 +2015-07-13 10:00:00,0.0,1014.2505,188.175,87.38333333,18.25166667,0.503833333,237.53095416666665 +2015-07-13 11:00:00,0.0,1014.180833,170.4083333,90.09166667,18.18416667,0.55875,237.52621476666664 +2015-07-13 12:00:00,0.0,1013.538667,182.2666667,91.79166667,18.17166667,0.49058333299999995,237.5253784 +2015-07-13 13:00:00,2.51999136,1013.166167,209.0916667,92.23333333,18.19166667,0.570083333,237.5228693 +2015-07-13 14:00:00,0.0,1013.065667,166.3725,88.03333333,19.33583333,0.6545833329999999,237.52077841666667 +2015-07-13 15:00:00,0.0,1012.832833,114.57,89.93333333,18.92,0.413083333,237.51896626666664 +2015-07-13 16:00:00,0.0,1012.783333,108.245,95.63333333,18.58583333,0.460916667,237.5189662833333 +2015-07-13 17:00:00,0.0,1012.489167,110.6758333,94.19166667,18.92333333,0.30191666699999997,237.51980265 +2015-07-13 18:00:00,0.0,1012.5260000000001,44.25666667,96.25833333,18.4125,0.252916667,237.52049961666663 +2015-07-13 19:00:00,9.672898056000001,1012.3646669999999,21.53916667,100.0,17.33416667,0.090833333,237.52482079999996 +2015-07-13 20:00:00,4.841907912,1012.1260000000001,5.054916667,99.975,16.97833333,0.12516666699999998,237.52816624999994 +2015-07-13 21:00:00,0.0,1012.3015,0.014083333,99.01666667,16.92916667,0.227666667,237.53165109999998 +2015-07-13 22:00:00,2.422242576,1012.5823330000001,0.0,98.76666667,17.23166667,0.196833333,237.53429956666665 +2015-07-13 23:00:00,0.0,1012.341667,0.0,99.9,16.96916667,0.1805,237.53903893333333 +2015-07-14 00:00:00,0.0,1012.181833,0.0,99.99166667,16.57333333,0.1455,237.54099046666667 +2015-07-14 01:00:00,0.0,1011.8646669999999,0.0,99.73333333,16.47916667,0.16425,237.54489348333334 +2015-07-14 02:00:00,0.0,1011.6916669999999,0.0,98.49166667,16.7675,0.214916667,237.54768136666667 +2015-07-14 03:00:00,4.825689408,1011.581833,0.0,98.04166667,16.92,0.10041666699999999,237.54949346666663 +2015-07-14 04:00:00,0.0,1011.357833,1.67625,97.48333333,16.78583333,0.096666667,237.55256014999998 +2015-07-14 05:00:00,0.0,1011.467667,33.2575,95.13333333,17.005,0.205166667,237.5540934833333 +2015-07-14 06:00:00,0.0,1011.390167,93.53916667,92.475,18.135,0.336416667,237.5557662 +2015-07-14 07:00:00,0.0,1011.4946669999999,44.33583333,93.00833333,18.0025,0.41583333299999997,237.55688138333332 +2015-07-14 08:00:00,0.0,1011.766667,88.675,92.60833333,19.03666667,0.427833333,237.55729953333332 +2015-07-14 09:00:00,0.0,1011.993167,150.975,88.35,19.58634308,0.88,237.5552086333333 +2015-07-14 10:00:00,0.0,1012.242667,306.8833333,84.81666667,20.6575,1.241666667,237.55381466666665 +2015-07-14 11:00:00,0.0,1012.4010000000001,304.65833330000004,81.5625,21.33083333,1.199666667,237.54949348333332 +2015-07-14 12:00:00,0.0,1012.5005,280.0925,81.40166667,21.09333333,1.217166667,237.5441965166667 +2015-07-14 13:00:00,3.233539056,1012.801,238.025,78.12916667,21.82333333,1.557916667,237.53527533333332 +2015-07-14 14:00:00,0.0,1012.6833330000001,150.0075,76.69083333,21.75666667,1.34775,237.5290026333333 +2015-07-14 15:00:00,0.0,1013.0015,203.0475,81.50166667,21.64166667,2.072833333,237.5228693 +2015-07-14 16:00:00,0.0,1013.259833,109.06333329999998,77.74333333,21.905,1.4351666669999998,237.52008143333333 +2015-07-14 17:00:00,0.0,1013.290667,97.0625,77.08,21.73916667,1.079416667,237.5181299333333 +2015-07-14 18:00:00,0.0,1013.2,62.65666667,77.76083333,21.41416667,1.44125,237.51562083333332 +2015-07-14 19:00:00,0.0,1013.444167,28.9425,78.46166667,20.55833333,0.5538333329999999,237.51339055000003 +2015-07-14 20:00:00,0.0,1013.860833,3.310166667,79.4325,19.9525,0.6266666670000001,237.51283296666668 +2015-07-14 21:00:00,0.0,1014.496167,0.0075,81.675,19.35583333,0.39433333299999995,237.5139481 +2015-07-14 22:00:00,0.0,1014.9989999999999,0.0,83.29166667,18.93666667,0.44799999999999995,237.51422688333332 +2015-07-14 23:00:00,0.0,1015.0260000000001,0.0,86.23333333,18.46083333,0.252916667,237.51924506666668 +2015-07-15 00:00:00,0.0,1015.0989999999999,0.0,88.825,17.70916667,0.035333333,237.52189355 +2015-07-15 01:00:00,0.0,1015.093167,0.0,89.98333333,17.27,0.0355,237.52746931666664 +2015-07-15 02:00:00,0.0,1015.317667,0.0,92.48333333,17.01,0.025666667,237.52914201666667 +2015-07-15 03:00:00,0.0,1015.4176669999999,0.0,92.36666667,16.9125,0.11558333300000001,237.53360261666668 +2015-07-15 04:00:00,0.0,1015.633333,1.215166667,93.61666667,16.99666667,0.054083333,237.53513593333332 +2015-07-15 05:00:00,0.0,1015.709833,22.17966667,93.36666667,17.10416667,0.028416667000000003,237.5376450166667 +2015-07-15 06:00:00,0.0,1016.102,66.51333333,91.375,18.33416667,0.171166667,237.53820261666667 +2015-07-15 07:00:00,0.0,1016.434333,120.31333329999998,87.8,18.3925,0.43200000000000005,237.53694806666667 +2015-07-15 08:00:00,0.0,1016.414167,166.4833333,80.2775,20.13166667,0.58975,237.53597231666672 +2015-07-15 09:00:00,0.0,1016.133333,381.825,70.25166667,20.88583333,0.51375,237.5302571666667 +2015-07-15 10:00:00,0.0,1015.8995,492.63333330000006,64.925,22.97583333,0.8390000000000001,237.51938444999996 +2015-07-15 11:00:00,0.0,1015.613667,574.1666667000001,61.62583333,23.66,0.984916667,237.49150571666667 +2015-07-15 12:00:00,0.0,1014.962667,588.15,55.405,25.26416667,1.032,237.49903298333336 +2015-07-15 13:00:00,0.0,1014.390667,574.4833332999999,54.70166667,26.37,0.905,237.4910875666667 +2015-07-15 14:00:00,0.0,1014.139667,363.325,55.2325,26.0025,0.79275,237.4848148 +2015-07-15 15:00:00,0.0,1013.9005,497.8916666999999,52.69416667,26.7375,0.68975,237.48063301666664 +2015-07-15 16:00:00,0.0,1013.538167,248.3583333,55.08333333,26.73,0.915333333,237.47798451666668 +2015-07-15 17:00:00,0.0,1013.081333,131.9491667,57.56583333,26.43833333,0.791083333,237.47937846666665 +2015-07-15 18:00:00,0.0,1012.85,37.57916667,62.455,25.12,0.05875,237.47909968333332 +2015-07-15 19:00:00,0.0,1013.0010000000001,19.61583333,65.83916667,24.06,0.089083333,237.48021483333332 +2015-07-15 20:00:00,0.0,1013.2769999999999,4.02125,77.15583333,23.12916667,0.0355,237.48272391666669 +2015-07-15 21:00:00,0.0,1013.769167,0.00375,81.41583333,21.40833333,0.068333333,237.4860693666667 +2015-07-15 22:00:00,0.0,1014.067667,0.0,85.625,21.285,0.40633333299999996,237.48955420000001 +2015-07-15 23:00:00,0.0,1014.15,0.0,94.54166667,19.31416667,0.167833333,237.49317843333333 +2015-07-16 00:00:00,0.0,1014.242167,0.0,97.61666667,18.08416667,0.007833333,237.49889358333334 +2015-07-16 01:00:00,0.0,1014.316167,0.0,99.95,16.83916667,0.002416667,237.50460875 +2015-07-16 02:00:00,0.0,1014.308833,0.0,100.0,16.2975,0.0,237.50948753333333 +2015-07-16 03:00:00,0.0,1014.267667,0.0,100.0,16.01916667,0.068833333,237.51394811666668 +2015-07-16 04:00:00,0.0,1014.3739999999999,2.122583333,100.0,15.7325,0.0735,237.51771171666664 +2015-07-16 05:00:00,0.0,1014.560833,50.7975,100.0,16.1325,0.054416667,237.52105718333334 +2015-07-16 06:00:00,0.0,1014.883333,154.0916667,96.70833333,18.885,0.30225,237.5231481 +2015-07-16 07:00:00,0.0,1014.842167,223.415,87.11666667,20.71416667,0.62,237.52509960000006 +2015-07-16 08:00:00,0.0,1015.017667,213.6166667,80.85833333,22.27083333,0.71175,237.5253784 +2015-07-16 09:00:00,0.0,1014.964667,390.09166669999996,73.51666667,23.875,0.664666667,237.52133594999998 +2015-07-16 10:00:00,0.0,1014.75,578.4666667,65.47083333,25.42333333,1.043583333,237.50920873333334 +2015-07-16 11:00:00,0.0,1014.555833,534.45,59.28333333,26.9575,0.874916667,237.4923421 +2015-07-16 12:00:00,0.0,1013.9985,610.0583333,56.36166667,28.13083333,0.9209166670000001,237.48077241666667 +2015-07-16 13:00:00,0.0,1013.590167,608.4666667,50.9275,29.02666667,1.4964166669999999,237.47394210000002 +2015-07-16 14:00:00,0.0,1013.179333,625.675,47.18583333,29.53333333,1.35475,237.47045730000002 +2015-07-16 15:00:00,0.0,1012.6735,429.075,47.4725,30.75583333,1.1118333329999999,237.46989969999996 +2015-07-16 16:00:00,0.0,1012.080333,345.1666667,47.72166667,30.7725,0.7505,237.4698997 +2015-07-16 17:00:00,0.0,1011.546,99.505,49.6075,31.16416667,0.7150833329999999,237.46906335000006 +2015-07-16 18:00:00,0.0,1010.955833,45.58333333,51.225,30.73833333,1.0100833329999999,237.4679482 +2015-07-16 19:00:00,0.0,1010.75,26.83333333,61.4025,29.5825,0.47125,237.46906336666666 +2015-07-16 20:00:00,0.0,1010.919667,4.3415,80.52083333,24.02666667,0.033,237.47226938333333 +2015-07-16 21:00:00,0.0,1011.392667,0.0,87.875,20.0175,0.017416667,237.47575423333333 +2015-07-16 22:00:00,0.0,1011.45,0.0,94.68333333,18.23916667,0.025166667,237.4823057333333 +2015-07-16 23:00:00,0.0,1011.333333,0.0,97.43333333,17.51,0.010333333,237.48634816666666 +2015-07-17 00:00:00,0.0,1011.240667,0.0,98.28333333,16.9375,0.0025833329999999997,237.49094815 +2015-07-17 01:00:00,0.0,1010.946,0.0,98.61666667,16.4375,0.002833333,237.49568753333332 +2015-07-17 02:00:00,0.0,1010.718167,0.0,99.875,15.90666667,0.0,237.49972995 +2015-07-17 03:00:00,0.0,1011.094167,0.0,99.675,16.6625,0.07641666700000001,237.50251785 +2015-07-17 04:00:00,0.0,1010.8489999999999,0.523083333,96.775,17.75416667,0.516916667,237.50460875000002 +2015-07-17 05:00:00,0.0,1011.165167,6.699166667,92.70833333,18.48333333,0.588,237.50795418333334 +2015-07-17 06:00:00,0.0,1010.363667,20.45666667,90.15833333,19.2425,0.9079166670000001,237.51129964999998 +2015-07-17 07:00:00,0.0,1010.105833,73.57916667,91.68333333,20.06083333,0.421916667,237.51352989999998 +2015-07-17 08:00:00,0.0,1009.8760000000001,100.94666670000001,84.88333333,22.24583333,1.041166667,237.51297235 +2015-07-17 09:00:00,0.0,1010.3373330000001,333.4741667,72.49833333,24.52583333,1.26775,237.51436628333332 +2015-07-17 10:00:00,0.0,1010.583333,472.4833333000001,48.56333333,28.95166667,1.7198333330000002,237.5053057 +2015-07-17 11:00:00,0.0,1010.556833,630.5333333,41.36083333,32.01583333,0.744083333,237.4884390666667 +2015-07-17 12:00:00,0.0,1010.299,503.4416666999999,40.8025,32.34333333,1.125916667,237.47366335 +2015-07-17 13:00:00,0.0,1010.106833,651.7,35.53583333,33.42,1.2175833329999999,237.46488155 +2015-07-17 14:00:00,0.0,1009.8245,616.8833333,28.48916667,34.675,1.079333333,237.46083911666668 +2015-07-17 15:00:00,0.0,1009.4235,540.2583333,28.32666667,35.29,0.855916667,237.4591664 +2015-07-17 16:00:00,0.0,1008.972,438.09166669999996,30.30666667,35.1825,0.800583333,237.45609975000002 +2015-07-17 17:00:00,0.0,1008.404833,109.2775,31.54666667,35.00666667,0.581583333,237.45637851666672 +2015-07-17 18:00:00,0.0,1008.216667,52.49583333,34.43166667,33.505,0.588583333,237.45637853333332 +2015-07-17 19:00:00,0.0,1008.328,28.51833333,37.63333333,31.16333333,0.11691666699999999,237.45609975000002 +2015-07-17 20:00:00,0.0,1008.835833,5.597833333,49.25083333,27.11,0.001583333,237.45707548333337 +2015-07-17 21:00:00,0.0,1009.275,0.0,55.73166667,22.73166667,0.038083333,237.45916640000004 +2015-07-17 22:00:00,0.0,1009.3005,0.0,72.33166667,21.05166667,0.05075,237.46223305 +2015-07-17 23:00:00,0.0,1009.546667,0.0,70.68083333,20.38166667,0.036333332999999995,237.46390576666667 +2015-07-18 00:00:00,0.0,1009.940667,0.0,58.60833333,22.28416667,0.42508333299999995,237.46418455000003 +2015-07-18 01:00:00,0.0,1010.016667,0.0,68.6,22.22916667,0.1255,237.46850576666665 +2015-07-18 02:00:00,0.0,1010.084833,0.0,81.97166667,19.96,0.135333333,237.47338456666668 +2015-07-18 03:00:00,0.0,1010.889833,0.0,82.16916667,17.29083333,0.091583333,237.47547545 +2015-07-18 04:00:00,0.0,1011.465167,1.88525,84.93583333,16.48416667,0.061,237.47951786666667 +2015-07-18 05:00:00,0.0,1011.771167,48.96416667,80.70666667,17.71583333,0.21933333300000002,237.48216633333337 +2015-07-18 06:00:00,0.0,1012.443167,147.0166667,79.81833333,21.6375,0.686416667,237.48397845000002 +2015-07-18 07:00:00,0.0,1012.7,145.21083330000002,79.325,22.47666667,0.58675,237.48579058333334 +2015-07-18 08:00:00,0.0,1012.491667,110.76916670000001,80.36666667,22.58833333,0.19925,237.48690573333337 +2015-07-18 09:00:00,0.0,1013.020667,357.9916667,75.63583333,23.8475,0.623833333,237.48119058333336 +2015-07-18 10:00:00,0.0,1013.576,450.825,67.71333333,25.66666667,0.8018333329999999,237.47115423333332 +2015-07-18 11:00:00,0.0,1013.254833,447.8166666999999,62.8525,26.60583333,0.8663333329999999,237.46042091666666 +2015-07-18 12:00:00,0.0,1012.613667,486.0666666999999,54.11833333,28.2175,0.786416667,237.454427 +2015-07-18 13:00:00,0.0,1012.289667,515.1083333,47.39416667,28.9275,0.836833333,237.45289365 +2015-07-18 14:00:00,0.0,1011.755833,445.6833333000001,46.525,29.2475,1.52125,237.45177850000002 +2015-07-18 15:00:00,0.0,1011.416667,495.875,45.4325,29.31416667,1.83825,237.4484330666667 +2015-07-18 16:00:00,0.0,1010.930333,349.8916667,47.50916667,28.47083333,2.4905,237.44885125000005 +2015-07-18 17:00:00,0.0,1010.664167,92.99416667,49.18416667,27.38916667,2.32525,237.45010578333336 +2015-07-18 18:00:00,0.0,1010.5103330000001,63.88083333,49.60583333,26.5875,1.57475,237.4495482 +2015-07-18 19:00:00,0.0,1010.733333,44.19916667,52.73666667,26.16666667,0.968166667,237.4501058 +2015-07-18 20:00:00,0.0,1010.937333,5.70325,69.75083333,23.70833333,0.487916667,237.45010580000005 +2015-07-18 21:00:00,0.0,1011.457833,0.0,79.79833333,19.81666667,0.0515,237.45540275 +2015-07-18 22:00:00,0.0,1011.324,0.0,84.05833333,20.33583333,0.5275,237.4597239666667 +2015-07-18 23:00:00,0.0,1011.174,0.0,81.795,20.805,1.083,237.46362698333334 +2015-07-19 00:00:00,0.0,1010.653833,0.0,68.5975,20.21416667,1.6606666669999999,237.4650209 +2015-07-19 01:00:00,0.0,1009.677333,0.0,75.87666667,18.27166667,0.42,237.46739061666668 +2015-07-19 02:00:00,0.0,1008.595,0.0,83.54166667,16.74166667,0.1895,237.47115423333332 +2015-07-19 03:00:00,0.0,1007.637167,0.0,79.19,17.52666667,0.22625,237.47422091666667 +2015-07-19 04:00:00,0.0,1006.891667,0.092916667,76.59333333,18.34,0.52425,237.47840271666666 +2015-07-19 05:00:00,377.6499673,1006.884167,1.103083333,97.5,15.99333333,0.962833333,237.51966323333332 +2015-07-19 06:00:00,12.56171129,1005.448167,15.922,100.0,15.82416667,0.520916667,237.74589915 +2015-07-19 07:00:00,39.08431961,1006.3925,51.87375,100.0,16.2875,0.61175,237.79496573333336 +2015-07-19 08:00:00,5.197756104,1005.521167,106.55333329999999,100.0,17.2325,0.7190000000000001,237.7999839 +2015-07-19 09:00:00,2.433143544,1006.015167,276.575,93.85833333,19.41166667,0.243583333,237.79775361666668 +2015-07-19 10:00:00,2.614561944,1005.9760000000001,466.50833330000006,84.81666667,23.115,0.460083333,237.79273543333332 +2015-07-19 11:00:00,0.0,1006.025,351.4416667,79.51083333,24.53166667,0.61375,237.78799605000003 +2015-07-19 12:00:00,0.0,1005.9235,311.6166667,78.56083333,24.33666667,0.72725,237.78548696666667 +2015-07-19 13:00:00,0.0,1005.6465,447.125,72.695,25.305,0.850833333,237.7780991 +2015-07-19 14:00:00,0.0,1005.48,168.5,72.88583333,25.20583333,0.770083333,237.7746142666667 +2015-07-19 15:00:00,0.0,1006.116667,414.175,80.90416667,22.10416667,2.97375,237.7688991166667 +2015-07-19 16:00:00,0.0,1006.193667,110.87166670000002,85.575,21.90583333,1.4805,237.76541428333334 +2015-07-19 17:00:00,2.989559256,1006.794167,37.2325,93.275,20.49,0.8713333329999999,237.75983855 +2015-07-19 18:00:00,0.0,1007.461333,87.00416667,88.61666667,20.425,0.9268333329999999,237.75607490000002 +2015-07-19 19:00:00,2.668184112,1007.834833,35.15416667,83.58333333,20.54,0.871166667,237.74952340000004 +2015-07-19 20:00:00,0.0,1007.967667,6.151666667000001,85.7,19.74833333,0.36708333299999996,237.74826886666668 +2015-07-19 21:00:00,0.0,1008.519667,0.0,90.91666667,18.00916667,0.014333333,237.74408703333336 +2015-07-19 22:00:00,0.0,1008.8265,0.0,95.325,16.3725,0.009416667,237.7422749 +2015-07-19 23:00:00,0.0,1009.303,0.0,96.44166667,15.165,0.014416667,237.73851131666663 +2015-07-20 00:00:00,0.0,1009.566167,0.0,99.68333333,14.6475,0.214916667,237.73488708333332 +2015-07-20 01:00:00,0.0,1009.518167,0.0,100.0,14.355,0.0295,237.73446888333334 +2015-07-20 02:00:00,0.0,1009.733833,0.0,100.0,13.9525,0.0,237.73251734999997 +2015-07-20 03:00:00,0.0,1009.740167,0.0,100.0,13.53083333,0.016666667,237.7291719166667 +2015-07-20 04:00:00,0.0,1009.810333,1.92075,100.0,13.735,0.033333333,237.72749918333338 +2015-07-20 05:00:00,0.0,1010.034833,23.69583333,100.0,14.29833333,0.013000000000000001,237.7255476833333 +2015-07-20 06:00:00,0.0,1010.3083330000001,31.46666667,100.0,15.7925,0.0275,237.72248101666665 +2015-07-20 07:00:00,0.0,1010.584833,49.77166667,100.0,16.52916667,0.172416667,237.72025075 +2015-07-20 08:00:00,0.0,1010.8015,129.7675,99.50833333,17.625,0.18233333300000001,237.71983255 +2015-07-20 09:00:00,2.40948564,1010.841667,148.3916667,96.36666667,19.06166667,0.147833333,237.71885681666666 +2015-07-20 10:00:00,0.0,1011.033833,150.2333333,93.85833333,19.43583333,0.18708333300000002,237.71704466666665 +2015-07-20 11:00:00,0.0,1010.840167,301.25,86.9,21.6775,0.622166667,237.7145356 +2015-07-20 12:00:00,0.0,1010.5136669999999,274.34166669999996,84.84,22.25833333,1.142583333,237.7125841 +2015-07-20 13:00:00,0.0,1010.2926669999999,212.34916669999998,83.04416667,22.96833333,0.72925,237.71244468333336 +2015-07-20 14:00:00,0.0,1010.114167,135.3125,82.17916667,23.565,0.519333333,237.70923860000002 +2015-07-20 15:00:00,12.2349155,1009.925,130.3083333,94.90833333,22.29166667,0.438833333,237.70882043333336 +2015-07-20 16:00:00,0.0,1009.859833,166.05,95.36666667,22.71166667,0.257333333,237.70589318333336 +2015-07-20 17:00:00,0.0,1009.797,126.38333329999999,91.25,23.56833333,0.169916667,237.70199015000003 +2015-07-20 18:00:00,0.0,1009.382333,67.31416667,91.975,23.58416667,0.207583333,237.70254773333338 +2015-07-20 19:00:00,0.0,1009.2495,31.605,97.66666667,23.41583333,0.001,237.7033840666667 +2015-07-20 20:00:00,0.0,1009.403,3.526916667,99.63333333,22.10583333,0.044583332999999996,237.70408105 +2015-07-20 21:00:00,2.430315744,1009.791667,0.0,99.00833333,21.24666667,0.10158333300000001,237.70268711666668 +2015-07-20 22:00:00,0.0,1009.994167,0.0,99.61666667,20.59916667,0.050916667,237.70226893333333 +2015-07-20 23:00:00,0.0,1010.325,0.0,99.475,19.44333333,0.012333333,237.70199015000003 +2015-07-21 00:00:00,0.0,1010.258333,0.0,99.18333333,18.62333333,0.031333333,237.7028265166667 +2015-07-21 01:00:00,0.0,1010.216667,0.0,100.0,17.93083333,0.0,237.70296590000007 +2015-07-21 02:00:00,0.0,1010.0235,0.0,100.0,16.9975,0.0,237.70296593333333 +2015-07-21 03:00:00,0.0,1010.067167,0.0,100.0,16.49416667,0.01375,237.7017113833333 +2015-07-21 04:00:00,0.0,1010.141667,1.726083333,100.0,15.84,0.0135,237.70129318333332 +2015-07-21 05:00:00,0.0,1010.319167,46.09,97.70833333,16.80416667,0.011833333,237.700875 +2015-07-21 06:00:00,0.0,1010.684833,56.47666667,94.48333333,18.8525,0.0185,237.69948110000004 +2015-07-21 07:00:00,0.0,1011.018167,222.9341667,86.475,21.06,0.239,237.69794775 +2015-07-21 08:00:00,0.0,1011.216167,182.9391667,81.1975,24.0375,0.47316666700000004,237.69488108333334 +2015-07-21 09:00:00,0.0,1011.067167,198.46,75.12416667,25.40083333,0.714833333,237.69502048333334 +2015-07-21 10:00:00,0.0,1011.209833,265.8666667,74.80916667,25.62333333,0.751416667,237.69362654999998 +2015-07-21 11:00:00,0.0,1011.457833,443.625,69.315,26.36666667,0.892416667,237.69125684999995 +2015-07-21 12:00:00,0.0,1011.4416669999999,579.6666667000001,64.6225,27.28083333,0.767916667,237.68721444999997 +2015-07-21 13:00:00,0.0,1011.2239999999999,595.9416667,59.33166667,28.99666667,0.80275,237.68317201666665 +2015-07-21 14:00:00,0.0,1010.872,579.85,55.1525,29.0925,1.180083333,237.67871143333332 +2015-07-21 15:00:00,0.0,1010.238667,389.675,54.58333333,29.92583333,0.775083333,237.67606295 +2015-07-21 16:00:00,0.0,1009.765167,215.225,55.22,30.20416667,0.48258333299999995,237.67313566666667 +2015-07-21 17:00:00,0.0,1009.297,95.2425,55.94666667,30.3475,0.5355833329999999,237.67118418333334 +2015-07-21 18:00:00,0.0,1009.0495,46.30166667,55.16333333,30.27083333,0.41808333299999995,237.66811748333336 +2015-07-21 19:00:00,0.0,1009.092667,26.54583333,62.55333333,29.27416667,0.1975,237.66519021666667 +2015-07-21 20:00:00,0.0,1009.486833,3.75575,84.92083333,24.49,0.22108333300000002,237.66379631666666 +2015-07-21 21:00:00,0.0,1010.2525,0.0,92.85,21.655,0.0285,237.66212358333334 +2015-07-21 22:00:00,0.0,1010.551,0.0,97.90833333,20.18666667,0.0025833329999999997,237.66128720000003 +2015-07-21 23:00:00,0.0,1010.709833,0.0,99.86666667,19.21333333,0.0,237.66128720000003 +2015-07-22 00:00:00,0.0,1010.875,0.0,100.0,18.525,0.02375,237.66100840000001 +2015-07-22 01:00:00,0.0,1010.665667,0.0,100.0,17.97166667,0.025333333,237.66337810000002 +2015-07-22 02:00:00,0.0,1010.423,0.0,100.0,17.38583333,0.08808333300000001,237.66393568333334 +2015-07-22 03:00:00,0.0,1010.3166669999999,0.0,100.0,16.855,0.020916667,237.66449328333337 +2015-07-22 04:00:00,0.0,1010.140667,1.5853333330000001,100.0,16.24,0.020916667,237.66449326666668 +2015-07-22 05:00:00,0.0,1010.334833,50.96083333,100.0,16.8475,0.004333333,237.66421449999999 +2015-07-22 06:00:00,0.0,1010.468167,145.3833333,96.56666667,19.5875,0.34983333299999997,237.66463265000002 +2015-07-22 07:00:00,0.0,1010.6235,181.7666667,90.15833333,21.88083333,0.6505,237.66477206666664 +2015-07-22 08:00:00,0.0,1010.442167,169.6,77.52166667,24.43583333,0.386666667,237.6632387 +2015-07-22 09:00:00,0.0,1010.5255,315.9416667,67.32583333,26.93416667,0.41583333299999997,237.6610084166667 +2015-07-22 10:00:00,0.0,1010.490167,427.3,66.4225,27.43833333,1.2099166670000001,237.65738416666667 +2015-07-22 11:00:00,0.0,1010.155833,447.15,67.53333333,27.17666667,1.654916667,237.65417813333332 +2015-07-22 12:00:00,0.0,1009.925,652.6833333,58.85333333,28.97666667,0.989583333,237.65041450000004 +2015-07-22 13:00:00,0.0,1009.663667,516.8666667,58.39083333,29.68666667,1.04025,237.64595391666668 +2015-07-22 14:00:00,0.0,1009.2225,474.54166669999995,58.54666667,29.57833333,2.021583333,237.6417721 +2015-07-22 15:00:00,0.0,1008.7245,183.45,61.0225,28.35833333,2.452,237.63982058333332 +2015-07-22 16:00:00,0.0,1008.668167,252.2416667,64.46916667,27.03,2.48025,237.63703271666665 +2015-07-22 17:00:00,0.0,1008.6735,140.2833333,65.45166667,26.71583333,2.62375,237.6329903 +2015-07-22 18:00:00,0.0,1008.617167,94.51333333,66.00583333,26.015,2.688416667,237.62922668333337 +2015-07-22 19:00:00,0.0,1008.903,47.9025,64.96833333,25.6,2.736,237.62657818333335 +2015-07-22 20:00:00,0.0,1009.779,4.29325,64.64666667,23.9575,2.816666667,237.6247660666667 +2015-07-22 21:00:00,0.0,1010.259833,0.0,69.61666667,22.79666667,1.948083333,237.62295396666664 +2015-07-22 22:00:00,0.0,1010.585833,0.0,74.4875,21.3775,0.523083333,237.62281458333328 +2015-07-22 23:00:00,0.0,1011.244167,0.0,71.65,21.27833333,1.733416667,237.62295396666664 +2015-07-23 00:00:00,0.0,1011.409833,0.0,77.67,20.51666667,0.876416667,237.62295395 +2015-07-23 01:00:00,0.0,1011.5823330000001,0.0,84.75,19.46666667,0.18333333300000001,237.62392971666668 +2015-07-23 02:00:00,0.0,1011.6265,0.0,93.725,17.15833333,0.049666667000000005,237.62546303333338 +2015-07-23 03:00:00,0.0,1011.7260000000001,0.0,97.925,15.47166667,0.0,237.62755393333336 +2015-07-23 04:00:00,0.0,1011.993167,1.112083333,99.20833333,15.00333333,0.150333333,237.62769335 +2015-07-23 05:00:00,0.0,1012.183833,13.7935,99.78333333,14.83333333,0.094416667,237.62852970000003 +2015-07-23 06:00:00,0.0,1012.695167,150.125,86.13583333,17.07083333,0.325416667,237.6283903 +2015-07-23 07:00:00,0.0,1013.2005,233.4075,72.59916667,18.51666667,1.8686666669999998,237.62741453333334 +2015-07-23 08:00:00,0.0,1013.494167,195.6775,66.65916667,19.59333333,0.99475,237.62504485000002 +2015-07-23 09:00:00,0.0,1013.658333,337.0708333,61.875,20.64916667,1.108166667,237.62030546666668 +2015-07-23 10:00:00,0.0,1013.5735,580.1333333,57.15166667,21.78916667,1.619666667,237.61486911666665 +2015-07-23 11:00:00,0.0,1013.324,565.2333332999999,56.16916667,22.67416667,1.4969999999999999,237.61082670000005 +2015-07-23 12:00:00,0.0,1013.081833,609.95,52.53083333,23.55166667,1.18825,237.60776003333334 +2015-07-23 13:00:00,0.0,1012.815167,543.05,51.08166667,23.505,1.422,237.6037176333333 +2015-07-23 14:00:00,0.0,1012.430833,305.03333330000004,49.3875,23.45583333,1.436833333,237.60065095000002 +2015-07-23 15:00:00,0.0,1011.9985,281.6166667,50.13166667,24.0325,0.93225,237.59786311666667 +2015-07-23 16:00:00,0.0,1011.732833,180.875,49.86083333,23.50916667,0.742416667,237.59521463333337 +2015-07-23 17:00:00,0.0,1011.3975,145.7183333,48.76083333,23.74416667,1.285666667,237.59172978333334 +2015-07-23 18:00:00,0.0,1011.091167,69.61333333,53.08166667,23.5125,0.735916667,237.59005703333332 +2015-07-23 19:00:00,0.0,1011.259833,26.375,59.0375,22.465,0.98175,237.58838431666666 +2015-07-23 20:00:00,0.0,1011.468667,2.138416667,80.42,19.13083333,0.229666667,237.58838434999998 +2015-07-23 21:00:00,0.0,1011.859833,0.0,87.68333333,15.98,0.064166667,237.58936006666667 +2015-07-23 22:00:00,0.0,1011.982833,0.0,93.20833333,14.5375,0.00275,237.59117218333333 +2015-07-23 23:00:00,0.0,1012.1,0.0,96.65,13.67166667,0.000166667,237.5922873333333 +2015-07-24 00:00:00,0.0,1011.690167,0.0,98.89166667,12.85833333,0.0105,237.59451766666666 +2015-07-24 01:00:00,0.0,1011.413667,0.0,99.675,12.2525,0.0,237.59688734999997 +2015-07-24 02:00:00,0.0,1011.048,0.0,100.0,11.71583333,0.008166666999999999,237.5982812666667 +2015-07-24 03:00:00,0.0,1010.556833,0.0,100.0,11.12583333,0.01025,237.59869946666666 +2015-07-24 04:00:00,0.0,1010.4,1.624166667,100.0,11.33333333,0.001166667,237.59883886666663 +2015-07-24 05:00:00,0.0,1010.382833,21.07416667,100.0,11.87666667,0.0155,237.59814188333334 +2015-07-24 06:00:00,0.0,1010.174,150.3208333,90.55,14.8625,0.447166667,237.5995358166667 +2015-07-24 07:00:00,0.0,1010.082833,232.3908333,77.61916667,17.14833333,1.93725,237.6016267166667 +2015-07-24 08:00:00,0.0,1009.7975,191.2691667,70.04833333,19.33916667,1.540416667,237.59981459999997 +2015-07-24 09:00:00,0.0,1009.137667,330.9375,61.19,22.1675,1.1325,237.59800246666666 +2015-07-24 10:00:00,0.0,1008.564667,525.925,53.66916667,24.7325,1.211333333,237.5911722 +2015-07-24 11:00:00,0.0,1007.7710000000001,541.7166667,49.8925,26.435,1.506083333,237.5839237166667 +2015-07-24 12:00:00,0.0,1006.903333,412.2416667,49.5225,27.60416667,1.533333333,237.57932373333333 +2015-07-24 13:00:00,0.0,1006.0965,293.2916667,48.1775,27.94833333,1.5701666669999998,237.5754207 +2015-07-24 14:00:00,0.0,1005.411667,333.65,46.04083333,28.7175,1.2545,237.57096011666667 +2015-07-24 15:00:00,0.0,1004.347,265.0416667,45.28666667,28.7525,1.321,237.56747526666666 +2015-07-24 16:00:00,0.0,1003.576333,197.43333330000002,46.07,29.36583333,1.692833333,237.56371165 +2015-07-24 17:00:00,0.0,1002.354333,114.875,55.11333333,29.01833333,0.9105,237.5642692333333 +2015-07-24 18:00:00,0.0,1001.740167,86.21916667,54.18583333,28.75833333,0.978916667,237.56120256666665 +2015-07-24 19:00:00,0.0,1001.3886669999999,38.0725,71.73666667,25.45333333,0.05675,237.56120256666665 +2015-07-24 20:00:00,0.0,1000.864167,5.479166667,83.665,22.00083333,0.0615,237.5620389333333 +2015-07-24 21:00:00,0.0,1000.439667,0.0,88.29166667,19.6675,0.039583333,237.56510558333332 +2015-07-24 22:00:00,0.0,999.5946667000002,0.0,90.76666667,18.755,0.043666667,237.5684510333333 +2015-07-24 23:00:00,27.88189793,1001.658833,0.0,90.04,19.70416667,0.849833333,237.56831164999997 +2015-07-25 00:00:00,50.90866178,1000.138167,0.0,99.675,18.00166667,0.357833333,237.57346921666667 +2015-07-25 01:00:00,2.41295556,1000.306333,0.0,100.0,17.85,0.94475,237.57681463333336 +2015-07-25 02:00:00,0.0,999.7760000000001,0.0,99.84166667,17.72916667,1.195333333,237.58322673333336 +2015-07-25 03:00:00,0.0,999.8308332999999,0.0,100.0,17.33916667,0.201333333,237.58517825 +2015-07-25 04:00:00,0.0,999.3401667000002,0.611916667,100.0,16.15416667,0.1545,237.58852371666663 +2015-07-25 05:00:00,0.0,999.4613332999999,12.45708333,97.95833333,16.8,0.7305,237.59061459999998 +2015-07-25 06:00:00,0.0,999.5386667000001,63.28333333,93.375,18.62,1.500666667,237.59005703333332 +2015-07-25 07:00:00,0.0,999.3,197.3375,86.26416667,19.94166667,1.6951666669999998,237.59214793333334 +2015-07-25 08:00:00,6.472545384,999.1745,149.965,76.575,20.67833333,2.32075,237.59409946666668 +2015-07-25 09:00:00,0.0,999.3535,294.27916669999996,71.39416667,20.75083333,1.9929166669999998,237.59214795 +2015-07-25 10:00:00,3.620258208,1000.170667,500.86666669999994,70.85333333,20.98833333,2.492,237.5879661166667 +2015-07-25 11:00:00,13.85898718,1000.9863330000001,382.25,77.68916667,19.5925,1.39525,237.58336615 +2015-07-25 12:00:00,0.0,1001.809,482.90833330000004,70.36416667,20.61416667,1.838,237.57653586666666 +2015-07-25 13:00:00,2.679318336,1002.919667,420.63333330000006,83.29916667,18.17083333,1.380416667,237.57263285 +2015-07-25 14:00:00,0.0,1003.987333,296.5666667,76.07666667,18.53583333,1.685,237.5694268 +2015-07-25 15:00:00,0.0,1004.9075,157.00916669999998,66.34,18.4475,1.482666667,237.5664995333333 +2015-07-25 16:00:00,2.858357832,1006.279,95.46833333,80.0225,15.80416667,1.184583333,237.56371166666665 +2015-07-25 17:00:00,2.7990788639999997,1007.1555,108.2725,77.54416667,16.3875,1.263333333,237.5632934833333 +2015-07-25 18:00:00,0.0,1008.198667,30.16983333,75.64166667,15.74416667,1.531333333,237.56385105 +2015-07-25 19:00:00,25.38949745,1009.5805,19.74558333,92.55833333,12.91,0.910083333,237.56371166666665 +2015-07-25 20:00:00,2.750340408,1010.368667,5.581916667000001,91.1,12.63583333,0.6203333329999999,237.5667783 +2015-07-25 21:00:00,0.0,1010.919667,0.0,85.6,12.73083333,0.53475,237.56900861666665 +2015-07-25 22:00:00,0.0,1011.451,0.0,84.025,12.60833333,0.5085833329999999,237.5710995333333 +2015-07-25 23:00:00,0.0,1011.929,0.0,85.675,11.97,0.49425,237.57402678333332 +2015-07-26 00:00:00,0.0,1012.3,0.0,87.55833333,11.19583333,0.139416667,237.57611768333334 +2015-07-26 01:00:00,0.0,1012.081833,0.0,89.15833333,10.6125,0.050916667,237.57862676666664 +2015-07-26 02:00:00,0.0,1012.2015,0.0,92.63333333,9.95,0.012,237.5804389 +2015-07-26 03:00:00,0.0,1012.366667,0.0,95.625,9.453333333,0.00975,237.58406313333333 +2015-07-26 04:00:00,0.0,1012.360333,1.65675,97.79166667,8.183583333,0.018416667,237.58587525 +2015-07-26 05:00:00,0.0,1012.9025,31.85416667,96.525,8.133833333,0.057333333,237.58685101666666 +2015-07-26 06:00:00,0.0,1013.175,111.01916670000001,91.56666667,10.03333333,0.044166667,237.58880251666665 +2015-07-26 07:00:00,0.0,1013.125,206.5966667,83.27333333,13.03916667,0.407916667,237.59005705 +2015-07-26 08:00:00,0.0,1013.122,182.3233333,76.5725,14.495,0.7565,237.5893601 +2015-07-26 09:00:00,0.0,1012.347,330.6991667,62.48333333,16.23833333,1.150833333,237.58712979999999 +2015-07-26 10:00:00,0.0,1011.805333,613.2666667000001,53.265,18.06666667,0.848,237.58294796666667 +2015-07-26 11:00:00,0.0,1010.627833,592.7416667,47.36083333,19.13833333,0.77025,237.57653585 +2015-07-26 12:00:00,0.0,1009.827833,669.4166667000001,44.58166667,19.5825,1.7890000000000001,237.56928736666669 +2015-07-26 13:00:00,0.0,1008.7685,557.8916667000001,47.3625,21.31333333,1.500833333,237.56189951666667 +2015-07-26 14:00:00,0.0,1007.428333,588.0833332999999,44.95166667,21.2675,1.591833333,237.55646316666665 +2015-07-26 15:00:00,0.0,1006.277833,402.8083333,43.165,21.67,1.34875,237.55242078333333 +2015-07-26 16:00:00,0.0,1005.329333,233.3416667,43.88166667,21.66666667,1.797833333,237.54837835 +2015-07-26 17:00:00,0.0,1004.790667,104.6,43.55,20.89583333,1.8898333330000001,237.5447541 +2015-07-26 18:00:00,0.0,1004.6745,25.62,47.12666667,19.32916667,0.50475,237.54336016666664 +2015-07-26 19:00:00,2.437795368,1004.3985,6.29925,77.38583333,16.32083333,0.3835,237.54391773333336 +2015-07-26 20:00:00,4.83934608,1003.929333,0.769166667,97.48333333,13.7025,0.08975,237.54572986666665 +2015-07-26 21:00:00,7.27790928,1003.580833,0.0,99.40833333,13.14666667,0.09275,237.54754196666667 +2015-07-26 22:00:00,7.43619552,1002.955333,0.0,98.96666667,12.99833333,0.25525,237.55228138333334 +2015-07-26 23:00:00,2.583485784,1002.036167,0.0,93.65833333,13.20083333,1.384416667,237.5557662 +2015-07-27 00:00:00,0.0,1001.054333,0.0,94.38333333,13.46,2.60425,237.55897224999998 +2015-07-27 01:00:00,3.424705344,1000.3563330000001,0.0,94.94166667,13.62333333,2.01125,237.56315406666667 +2015-07-27 02:00:00,0.0,999.7533332999999,0.0,92.04166667,13.77166667,1.2780833329999999,237.56636015 +2015-07-27 03:00:00,0.0,999.1318332999999,0.0,91.88333333,14.06,0.9620833329999999,237.56872983333326 +2015-07-27 04:00:00,0.0,998.8235,0.35966666700000005,93.81666667,14.2575,0.718333333,237.5722146666666 +2015-07-27 05:00:00,43.26228761,998.3823332999999,4.54975,99.15833333,13.9175,0.48908333299999995,237.57625705 +2015-07-27 06:00:00,7.25595996,998.5151667000001,33.5025,98.125,14.3775,0.43858333299999996,237.57806916666667 +2015-07-27 07:00:00,0.0,998.2593332999999,90.95916667,96.45,15.4275,0.712166667,237.58183280000003 +2015-07-27 08:00:00,38.8206503,998.122,50.85916667,97.14166667,16.03916667,1.266166667,237.58434190000003 +2015-07-27 09:00:00,11.83504884,998.4069999999999,168.225,96.775,15.88083333,2.04325,237.58754796666665 +2015-07-27 10:00:00,0.0,999.2265,443.525,88.325,17.8525,0.725583333,237.58936004999998 +2015-07-27 11:00:00,0.0,999.7363332999998,479.91666669999995,79.81416667,18.75833333,0.945416667,237.58740856666665 +2015-07-27 12:00:00,0.0,999.9676667000001,266.425,76.86083333,19.46416667,0.881833333,237.5855964333333 +2015-07-27 13:00:00,0.0,999.949,342.4916667,72.67166667,19.88833333,0.9943333329999999,237.58280856666667 +2015-07-27 14:00:00,0.0,1000.285833,301.2,79.60666667,18.9175,0.988,237.57946313333332 +2015-07-27 15:00:00,0.0,1000.442167,233.5633333,78.00166667,20.08833333,0.905333333,237.57500253333333 +2015-07-27 16:00:00,2.571320736,1000.559333,300.53333330000004,83.11,19.02666667,0.899666667,237.57500255 +2015-07-27 17:00:00,0.0,1000.7755,118.7575,73.83083333,19.53333333,1.27175,237.57179648333332 +2015-07-27 18:00:00,0.0,1000.8245,69.36416667,75.53666667,19.785,0.862916667,237.57332981666661 +2015-07-27 19:00:00,0.0,1000.958833,17.51158333,77.72166667,18.5375,0.49825,237.57416619999995 +2015-07-27 20:00:00,0.0,1001.0265,1.114166667,77.02333333,18.27333333,0.887416667,237.5756994666667 +2015-07-27 21:00:00,2.425929096,1001.225,0.0,81.86083333,17.49666667,0.26875,237.57792978333336 +2015-07-27 22:00:00,2.440176792,1001.207833,0.0,95.83333333,15.35083333,0.08125,237.57890553333334 +2015-07-27 23:00:00,2.582901408,1001.4795,0.0,91.13333333,14.0675,0.309,237.58169343333336 +2015-07-28 00:00:00,2.428650216,1001.931833,0.0,93.36666667,14.6675,0.18733333300000002,237.58364495 +2015-07-28 01:00:00,0.0,1001.9015,0.0,94.64166667,13.84166667,0.108583333,237.58615403333337 +2015-07-28 02:00:00,0.0,1002.017667,0.0,92.675,13.80333333,0.18233333300000001,237.58922070000003 +2015-07-28 03:00:00,0.0,1001.890667,0.0,88.99166667,13.94666667,0.622166667,237.59172978333334 +2015-07-28 04:00:00,0.0,1002.0260000000001,0.847666667,79.805,13.46083333,0.52425,237.59437828333333 +2015-07-28 05:00:00,0.0,1002.209833,39.44425,77.2675,13.3475,0.30725,237.59507523333332 +2015-07-28 06:00:00,0.0,1002.593167,145.475,74.73166667,14.67,0.753916667,237.59535403333334 +2015-07-28 07:00:00,0.0,1002.909833,187.0141667,70.54416667,15.57,0.729583333,237.59535403333336 +2015-07-28 08:00:00,0.0,1003.360833,174.525,66.72583333,16.405,0.909833333,237.5934025 +2015-07-28 09:00:00,2.862615864,1003.5583330000001,271.8583333,63.12166667,17.44833333,1.090666667,237.59172978333334 +2015-07-28 10:00:00,0.0,1003.5505,403.8583333,58.06,18.35333333,0.906166667,237.5821116 +2015-07-28 11:00:00,0.0,1003.6916669999999,320.75,56.09166667,19.2025,1.2405,237.57723283333337 +2015-07-28 12:00:00,0.0,1003.858333,409.625,52.76166667,19.47916667,1.020916667,237.57249343333334 +2015-07-28 13:00:00,0.0,1003.8265,460.38333330000006,49.4725,19.86416667,1.282583333,237.5673358833333 +2015-07-28 14:00:00,0.0,1003.7745,381.5416667,50.215,19.5925,0.929416667,237.55925104999997 +2015-07-28 15:00:00,0.0,1003.7156669999999,225.68333330000002,48.86666667,19.86583333,0.766333333,237.5557662 +2015-07-28 16:00:00,0.0,1003.608333,188.18333330000002,48.9625,19.48083333,0.892166667,237.55186318333332 +2015-07-28 17:00:00,0.0,1003.8760000000001,98.80916667,51.61916667,18.895,0.521333333,237.54740260000003 +2015-07-28 18:00:00,0.0,1004.033833,54.4375,52.99666667,18.19583333,0.37175,237.5450329 +2015-07-28 19:00:00,0.0,1004.294167,20.93783333,55.85416667,17.42083333,0.194083333,237.54461471666664 +2015-07-28 20:00:00,0.0,1004.5260000000001,1.7129166669999998,60.63916667,16.17333333,0.040416667,237.54461471666664 +2015-07-28 21:00:00,0.0,1004.903,0.0,58.94166667,15.5125,0.12025,237.54489350000003 +2015-07-28 22:00:00,0.0,1005.359833,0.0,64.08916667,15.40916667,0.10158333300000001,237.54628745 +2015-07-28 23:00:00,0.0,1005.6,0.0,69.86166667,14.48166667,0.095083333,237.54768136666667 +2015-07-29 00:00:00,0.0,1005.481833,0.0,79.58833333,12.51333333,0.009166667,237.54949348333332 +2015-07-29 01:00:00,0.0,1005.283833,0.0,87.45,9.820833333,0.012333333,237.55297831666664 +2015-07-29 02:00:00,0.0,1005.391167,0.0,79.79833333,9.646666667,0.08275,237.5540934833333 +2015-07-29 03:00:00,0.0,1005.4,0.0,78.0525,12.71333333,0.26175,237.5553480166666 +2015-07-29 04:00:00,0.0,1005.418167,0.3165,80.94,12.78,0.0885,237.5581358833333 +2015-07-29 05:00:00,0.0,1005.455833,24.35008333,81.18416667,12.76666667,0.087,237.5602267833333 +2015-07-29 06:00:00,0.0,1005.309333,66.7375,81.08583333,13.57333333,0.20199999999999999,237.56134194999996 +2015-07-29 07:00:00,0.0,1005.275,168.4375,77.51666667,14.3875,0.583,237.56203891666664 +2015-07-29 08:00:00,0.0,1004.965167,162.9916667,71.40583333,15.8025,0.66825,237.56176011666662 +2015-07-29 09:00:00,0.0,1004.764167,294.21666669999996,63.87,16.96416667,0.682583333,237.55771768333332 +2015-07-29 10:00:00,0.0,1004.347,406.8583333,57.915,17.405,1.220583333,237.5521419833333 +2015-07-29 11:00:00,0.0,1003.9416669999999,496.00833330000006,52.50583333,18.09583333,1.258916667,237.5454510666667 +2015-07-29 12:00:00,0.0,1003.8989999999999,518.1166667,49.34166667,19.52416667,1.149,237.53764503333335 +2015-07-29 13:00:00,0.0,1004.010833,542.575,45.16916667,20.08583333,1.606333333,237.53151171666664 +2015-07-29 14:00:00,0.0,1004.369167,505.59166669999996,46.79666667,19.6625,1.883833333,237.5287238333333 +2015-07-29 15:00:00,0.0,1004.810333,476.15,44.1425,20.00166667,2.1745,237.52482083333334 +2015-07-29 16:00:00,0.0,1005.295167,331.35,42.19833333,20.1325,1.5396666669999999,237.51952384999996 +2015-07-29 17:00:00,0.0,1006.185333,79.62083333,55.55416667,17.97583333,3.325916667,237.51701475000002 +2015-07-29 18:00:00,0.0,1006.4383330000001,41.25,58.735,17.56166667,1.218916667,237.5163178 +2015-07-29 19:00:00,0.0,1007.1005,33.3225,66.90166667,16.4475,0.626083333,237.51534205 +2015-07-29 20:00:00,0.0,1007.644667,2.1623333330000003,75.4175,13.98833333,0.051666667,237.51589961666664 +2015-07-29 21:00:00,0.0,1008.2785,0.0,86.84166667,11.015,0.0305,237.51687534999996 +2015-07-29 22:00:00,0.0,1008.827,0.0,88.53333333,9.426666667000001,0.0275,237.51980265 +2015-07-29 23:00:00,0.0,1009.142667,0.0,97.125,8.840833332999999,0.00875,237.52398445000003 +2015-07-30 00:00:00,0.0,1009.3265,0.0,99.575,8.05275,0.00125,237.52858445 +2015-07-30 01:00:00,0.0,1009.3985,0.0,100.0,7.6655,0.00075,237.53206926666667 +2015-07-30 02:00:00,0.0,1009.292167,0.0,100.0,7.563083333,0.043666667,237.53736623333336 +2015-07-30 03:00:00,0.0,1009.543167,0.0,99.775,7.266083332999999,0.0865,237.53931773333332 +2015-07-30 04:00:00,0.0,1009.769167,0.815916667,96.525,7.347916667000001,0.29600000000000004,237.54224501666667 +2015-07-30 05:00:00,0.0,1010.0265,42.68633333,94.20833333,8.440833332999999,0.3005,237.54489350000003 +2015-07-30 06:00:00,0.0,1010.391667,147.2833333,84.52166667,11.25666667,0.33375,237.5469844 +2015-07-30 07:00:00,0.0,1010.694167,222.2033333,77.88083333,13.685,0.34066666700000003,237.54879653333333 +2015-07-30 08:00:00,0.0,1010.9255,195.4716667,74.47083333,14.9475,1.2588333329999999,237.54963288333332 +2015-07-30 09:00:00,0.0,1010.916667,282.33666669999997,68.1825,16.6525,1.07875,237.54670561666669 +2015-07-30 10:00:00,0.0,1011.0666669999999,454.36666669999994,63.12916667,17.14083333,1.4498333330000002,237.53764503333335 +2015-07-30 11:00:00,0.0,1011.1676669999999,622.0083333,58.1275,18.27833333,1.216083333,237.52816625 +2015-07-30 12:00:00,0.0,1011.115667,350.8083333,56.72666667,18.90416667,1.54425,237.5200814166666 +2015-07-30 13:00:00,0.0,1011.219167,450.38083330000006,54.7175,18.5775,1.66575,237.51088144999997 +2015-07-30 14:00:00,4.991309304,1011.55,201.2,66.7425,16.225,0.9075,237.50934811666664 +2015-07-30 15:00:00,0.0,1011.525,370.825,54.895,17.6475,1.38375,237.50502691666668 +2015-07-30 16:00:00,0.0,1011.678,262.58916669999996,54.78833333,18.36166667,1.6279166669999998,237.50293601666667 +2015-07-30 17:00:00,2.466443184,1011.966167,42.36416667,80.24833333,15.32333333,1.13175,237.50265721666668 +2015-07-30 18:00:00,0.0,1012.143167,32.81833333,89.71666667,14.01833333,0.25625,237.50405116666664 +2015-07-30 19:00:00,0.0,1012.586333,14.63508333,90.125,14.84166667,1.122666667,237.50642085 +2015-07-30 20:00:00,0.0,1012.9775,0.661166667,93.65,13.78833333,0.2075,237.51060264999998 +2015-07-30 21:00:00,0.0,1013.442667,0.0,96.6,12.85916667,0.152416667,237.51366931666666 +2015-07-30 22:00:00,0.0,1013.811333,0.0,96.43333333,12.06583333,0.06383333299999999,237.5168753833333 +2015-07-30 23:00:00,0.0,1014.460333,0.0,99.11666667,10.76,0.10316666699999999,237.51896626666664 +2015-07-31 00:00:00,0.0,1014.809833,0.0,99.94166667,10.57,0.454583333,237.52245113333333 +2015-07-31 01:00:00,0.0,1015.143167,0.0,100.0,10.78416667,0.269916667,237.52565718333332 +2015-07-31 02:00:00,0.0,1015.192667,0.0,100.0,10.63833333,0.208833333,237.52942081666666 +2015-07-31 03:00:00,0.0,1015.265667,0.0,100.0,10.45583333,0.22316666699999999,237.53304505000003 +2015-07-31 04:00:00,0.0,1015.116667,0.59175,100.0,10.01583333,0.02075,237.53666926666668 +2015-07-31 05:00:00,0.0,1015.443667,32.23975,100.0,9.494166667,0.006666666999999999,237.54001473333335 +2015-07-31 06:00:00,0.0,1016.0795,126.50166670000002,97.41666667,11.57416667,0.15533333300000002,237.54057228333332 +2015-07-31 07:00:00,0.0,1016.4255,181.91,85.15,12.87916667,0.515833333,237.54126926666666 +2015-07-31 08:00:00,0.0,1016.406333,172.575,77.03666667,14.24666667,1.474166667,237.54224501666667 +2015-07-31 09:00:00,0.0,1016.258833,348.0716667,65.73416667,15.36416667,1.57125,237.54043288333332 +2015-07-31 10:00:00,0.0,1016.216667,621.075,59.67416667,16.5475,1.6019166669999998,237.53471776666666 +2015-07-31 11:00:00,0.0,1016.063167,664.2833333,52.94833333,18.085,1.113583333,237.52342688333331 +2015-07-31 12:00:00,0.0,1015.539167,696.6666667000001,45.84333333,19.01916667,1.11525,237.51269356666668 +2015-07-31 13:00:00,0.0,1014.6705,628.2,44.8525,19.34583333,2.03225,237.50349358333335 +2015-07-31 14:00:00,0.0,1014.074,616.9083333,45.25083333,20.415,1.57175,237.4962451166667 +2015-07-31 15:00:00,0.0,1013.706333,520.025,42.8425,20.4575,2.257583333,237.49206328333335 +2015-07-31 16:00:00,0.0,1013.289667,403.84166669999996,42.53583333,20.60416667,2.022583333,237.49066935 +2015-07-31 17:00:00,0.0,1012.863667,86.62666667,43.62416667,20.6525,2.28675,237.48746331666666 +2015-07-31 18:00:00,0.0,1012.256833,33.72,45.6625,20.31,2.411666667,237.48565118333332 +2015-07-31 19:00:00,0.0,1012.075,17.89708333,53.29416667,19.00416667,2.35925,237.48467543333334 +2015-07-31 20:00:00,0.0,1012.2073330000001,1.393666667,75.9525,16.26666667,1.012833333,237.48690573333332 +2015-07-31 21:00:00,0.0,1012.2260000000001,0.0,87.09166667,11.65416667,0.024916667000000003,237.49094813333338 +2015-07-31 22:00:00,0.0,1012.167167,0.0,92.9,9.855833333,0.000583333,237.4951299666667 +2015-07-31 23:00:00,0.0,1012.2485,0.0,94.71666667,9.943333333,0.074333333,237.49931176666666 +2015-01-08 00:00:00,0.0,1011.932833,0.0,95.48333333,11.41666667,0.270083333, +2015-01-08 01:00:00,0.0,1011.730333,0.0,94.69166667,12.86,1.2015, +2015-01-08 02:00:00,0.0,1011.507833,0.0,91.08333333,12.89666667,1.4618333330000002, +2015-01-08 03:00:00,0.0,1011.0985,0.0,88.99916667,12.79,1.682333333, +2015-01-08 04:00:00,0.0,1010.9995,0.1775,84.85333333,12.635,1.7223333330000001, +2015-01-08 05:00:00,0.0,1010.9416669999999,12.11625,82.43833333,12.47666667,1.3480833330000002, +2015-01-08 06:00:00,0.0,1010.725,34.14916667,76.08166667,12.71416667,1.7263333330000001, +2015-01-08 07:00:00,0.0,1011.169167,85.39083333,77.64416667,13.15666667,1.706166667, +2015-01-08 08:00:00,0.0,1011.4765,158.18333330000002,69.70666667,14.31166667,2.2455, +2015-01-08 09:00:00,0.0,1011.525,346.34166669999996,64.11416667,16.3025,2.171333333, +2015-01-08 10:00:00,0.0,1011.531833,571.3333332999999,56.44833333,18.9075,1.6105, +2015-01-08 11:00:00,0.0,1011.1475,631.5583333,51.5075,21.1425,1.365, +2015-01-08 12:00:00,0.0,1010.907833,661.3083333,49.07083333,22.63416667,1.5893333330000001, +2015-01-08 13:00:00,0.0,1010.3225,656.325,43.80416667,24.60916667,1.13425, +2015-01-08 14:00:00,0.0,1010.199,619.2083332999999,38.02583333,25.98083333,1.39875, +2015-01-08 15:00:00,0.0,1009.964667,361.4333333,36.21666667,26.665,1.1865, +2015-01-08 16:00:00,0.0,1009.640667,255.69166669999998,36.3125,26.56333333,1.023333333, +2015-01-08 17:00:00,0.0,1009.6515,115.98333329999998,38.53,26.16333333,0.6255, +2015-01-08 18:00:00,0.0,1009.943167,47.47916667,39.605,26.42166667,0.40975, +2015-01-08 19:00:00,0.0,1010.285833,13.42916667,61.13916667,21.2825,0.08516666699999999, +2015-01-08 20:00:00,0.0,1011.087833,0.95275,72.43333333,16.825,0.07725, +2015-01-08 21:00:00,0.0,1011.794667,0.0,78.62333333,15.30083333,0.013083333, +2015-01-08 22:00:00,0.0,1012.3775,0.0,86.61666667,13.62666667,0.03125, +2015-01-08 23:00:00,0.0,1012.8265,0.0,91.25,12.77083333,0.009000000000000001, +2015-02-08 00:00:00,0.0,1013.218167,0.0,94.03333333,12.3575,0.054833333, +2015-02-08 01:00:00,0.0,1013.4775,0.0,96.19166667,12.52666667,0.070916667, +2015-02-08 02:00:00,0.0,1013.7,0.0,96.775,12.135,0.062583333, +2015-02-08 03:00:00,0.0,1014.044667,0.0,98.1,11.2875,0.048916667000000004, +2015-02-08 04:00:00,0.0,1014.512333,0.342416667,99.075,10.73083333,0.011833333, +2015-02-08 05:00:00,0.0,1015.168167,24.99283333,97.50833333,10.645,0.00175, +2015-02-08 06:00:00,0.0,1015.568167,123.96083329999999,89.98333333,13.42833333,0.09425, +2015-02-08 07:00:00,0.0,1015.909833,202.55,74.7275,16.72583333,0.6376666670000001, +2015-02-08 08:00:00,0.0,1016.235333,190.2666667,65.90833333,18.68833333,2.04475, +2015-02-08 09:00:00,0.0,1016.5255,317.1,59.60916667,20.81833333,2.506, +2015-02-08 10:00:00,0.0,1016.4745,564.8833333,55.67333333,22.72083333,2.0819166669999998, +2015-02-08 11:00:00,0.0,1016.365167,614.0083333,49.83,24.18416667,2.391916667, +2015-02-08 12:00:00,0.0,1015.955833,649.325,45.40916667,25.83,1.999916667, +2015-02-08 13:00:00,0.0,1015.5485,648.9083333,41.94416667,27.005,1.365, +2015-02-08 14:00:00,0.0,1014.9975,598.2666667000001,38.67916667,27.46083333,1.9178333330000001, +2015-02-08 15:00:00,0.0,1014.6985,550.1416667000001,37.97916667,28.14,2.224333333, +2015-02-08 16:00:00,0.0,1014.079333,421.88333330000006,37.47416667,28.42416667,1.667583333, +2015-02-08 17:00:00,0.0,1013.6916669999999,81.9975,39.15666667,28.6225,0.957583333, +2015-02-08 18:00:00,0.0,1013.616167,62.0175,45.71083333,27.3525,0.901833333, +2015-02-08 19:00:00,0.0,1013.567167,27.81166667,62.58333333,24.18416667,0.09991666699999999, +2015-02-08 20:00:00,0.0,1013.743167,1.5968333330000002,75.86,19.0225,0.036583332999999996, +2015-02-08 21:00:00,0.0,1014.015667,0.0,85.71666667,15.94333333,0.009666667, +2015-02-08 22:00:00,0.0,1013.958333,0.0,91.075,14.39416667,0.002666667, +2015-02-08 23:00:00,0.0,1013.9255,0.0,93.7,13.53666667,0.018833333, +2015-03-08 00:00:00,0.0,1013.815667,0.0,96.05,12.60333333,0.000833333,238.04435266666664 +2015-03-08 01:00:00,0.0,1013.7489999999999,0.0,97.625,11.85,0.0,238.04435266666664 +2015-03-08 02:00:00,0.0,1013.416167,0.0,99.225,11.30416667,0.009083333,238.0440193333333 +2015-03-08 03:00:00,0.0,1013.375,0.0,99.73333333,10.8725,0.049416667000000004,238.0440193333333 +2015-03-08 04:00:00,0.0,1013.199,0.5325833329999999,100.0,10.6925,0.15475,238.04468599999996 +2015-03-08 05:00:00,0.0,1013.469167,31.46941667,99.775,10.9925,0.028916667000000004,238.04468599999996 +2015-03-08 06:00:00,0.0,1013.7495,116.79916670000001,89.81666667,14.3325,0.02225,238.04568599999996 +2015-03-08 07:00:00,0.0,1013.827,207.405,77.99166667,17.60083333,0.41175,238.04603599999996 +2015-03-08 08:00:00,0.0,1014.015167,183.385,66.1675,21.455,0.7354166670000001,238.04603599999996 +2015-03-08 09:00:00,0.0,1013.725,306.6691667,52.66,25.63583333,1.8086666669999998,238.05083599999998 +2015-03-08 10:00:00,0.0,1013.5495,564.625,42.26583333,28.09083333,2.64075,238.04638599999996 +2015-03-08 11:00:00,0.0,1013.3886669999999,628.475,39.8075,29.41916667,3.56175,238.04568599999996 +2015-03-08 12:00:00,0.0,1012.8975,652.975,39.16083333,30.42666667,3.2239999999999998,238.04535266666664 +2015-03-08 13:00:00,0.0,1012.3739999999999,647.5833332999999,36.70833333,31.405,2.3705,238.04501933333333 +2015-03-08 14:00:00,0.0,1011.9813330000001,602.925,33.67666667,31.85583333,2.52,238.04468599999996 +2015-03-08 15:00:00,0.0,1011.464167,527.625,31.37833333,32.5825,1.744083333,238.04501933333333 +2015-03-08 16:00:00,0.0,1011.1386669999999,432.5166666999999,29.58833333,32.47,1.5274166669999998,238.04501933333333 +2015-03-08 17:00:00,0.0,1010.405833,89.345,30.34083333,32.3925,1.49475,238.04568599999996 +2015-03-08 18:00:00,0.0,1010.2073330000001,29.97,32.40333333,31.45833333,0.885166667,238.04708599999995 +2015-03-08 19:00:00,0.0,1010.166167,12.45616667,53.7875,26.68916667,0.12591666699999998,238.047786 +2015-03-08 20:00:00,0.0,1010.410333,0.730666667,69.2075,20.1675,0.055,238.047786 +2015-03-08 21:00:00,0.0,1010.425,0.0,78.35916667,17.35583333,0.0545,238.04845266666666 +2015-03-08 22:00:00,0.0,1010.4333330000001,0.0,85.725,15.74583333,0.07858333299999999,238.04845266666666 +2015-03-08 23:00:00,0.0,1010.391667,0.0,88.625,14.41833333,0.002833333,238.04878599999998 +2015-04-08 00:00:00,0.0,1010.189667,0.0,91.18333333,13.685,0.01975,238.04517379999996 +2015-04-08 01:00:00,0.0,1009.889167,0.0,94.41666667,13.02333333,0.003333333,238.04517379999996 +2015-04-08 02:00:00,0.0,1009.415167,0.0,97.44166667,12.42083333,0.02225,238.04529688333332 +2015-04-08 03:00:00,0.0,1009.114167,0.0,99.375,11.9375,0.007333333,238.0451984166666 +2015-04-08 04:00:00,0.0,1008.765167,0.8976666670000001,100.0,11.52083333,0.0,238.0450703333333 +2015-04-08 05:00:00,0.0,1008.467667,27.22291667,99.88333333,12.07833333,0.036333332999999995,238.04496933333334 +2015-04-08 06:00:00,0.0,1008.574,129.9808333,89.85833333,16.1875,0.020916667,238.0448954333333 +2015-04-08 07:00:00,0.0,1008.3485,232.3608333,76.97916667,20.035,0.334083333,238.04487079999998 +2015-04-08 08:00:00,0.0,1008.055333,187.20833330000002,68.34083333,24.31416667,1.440916667,238.04487079999998 +2015-04-08 09:00:00,12.44489621,1007.594167,302.725,51.0775,26.93916667,2.15125,238.0447932 +2015-04-08 10:00:00,0.0,1008.536833,328.53333330000004,52.80666667,28.2025,1.8385,238.0447156 +2015-04-08 11:00:00,0.0,1009.1775,350.6666667,54.23166667,27.15,1.023833333,238.044638 +2015-04-08 12:00:00,0.0,1009.704,231.3833333,62.12083333,25.25416667,1.4876666669999998,238.044537 +2015-04-08 13:00:00,36.66302911,1010.6045,53.96,86.88333333,21.83666667,0.5428333329999999,238.04446186666667 +2015-04-08 14:00:00,29.77120994,1011.278,107.20166670000002,97.78333333,19.4375,0.567916667,238.04443723333335 +2015-04-08 15:00:00,0.0,1011.532833,148.55583330000002,95.05,20.635,0.9946666670000001,238.04438675000003 +2015-04-08 16:00:00,0.0,1011.1489999999999,91.48083333,93.48333333,21.42333333,1.5446666669999998,238.0442575 +2015-04-08 17:00:00,47.74032235,1011.546167,63.34333333,94.43333333,20.00583333,1.3555,238.0442575 +2015-04-08 18:00:00,0.0,1012.595667,47.22083333,94.28333333,17.79166667,0.5185833329999999,238.04418360000003 +2015-04-08 19:00:00,0.0,1013.194667,14.93666667,93.35833333,17.05416667,0.587666667,238.04405796666666 +2015-04-08 20:00:00,0.0,1013.7275,1.13725,92.51666667,15.98416667,0.420333333,238.0440062333333 +2015-04-08 21:00:00,0.0,1014.211333,0.0,94.66666667,14.42666667,0.25,238.04398036666666 +2015-04-08 22:00:00,0.0,1014.844167,0.0,99.8,13.00916667,0.028916667000000004,238.04395449999996 +2015-04-08 23:00:00,0.0,1015.318167,0.0,100.0,11.58416667,0.027666667000000002,238.04395449999996 +2015-05-08 00:00:00,0.0,1015.391667,0.0,100.0,10.61916667,0.067166667,238.03356798333334 +2015-05-08 01:00:00,0.0,1015.4,0.0,100.0,10.04333333,0.00725,238.03322319999998 +2015-05-08 02:00:00,0.0,1015.593167,0.0,100.0,10.09083333,0.000166667,238.03253369999996 +2015-05-08 03:00:00,0.0,1015.759333,0.0,100.0,11.24,0.065,238.03270609999996 +2015-05-08 04:00:00,0.0,1015.984833,0.21425,100.0,11.2875,0.110833333,238.03253371666665 +2015-05-08 05:00:00,0.0,1016.125,12.11,100.0,11.13583333,0.178916667,238.03201658333333 +2015-05-08 06:00:00,0.0,1016.3765,48.345,100.0,11.2825,0.461416667,238.03149945000004 +2015-05-08 07:00:00,0.0,1016.483833,99.37,100.0,12.0175,0.6928333329999999,238.03012043333334 +2015-05-08 08:00:00,0.0,1016.725,178.4666667,100.0,13.14416667,0.407916667,238.02874141666666 +2015-05-08 09:00:00,0.0,1016.406333,347.925,98.675,14.92416667,0.61525,238.02805191666667 +2015-05-08 10:00:00,0.0,1015.9975,562.575,79.96916667,18.85,0.8161666670000001,238.02615575000002 +2015-05-08 11:00:00,0.0,1015.658333,625.825,57.88833333,22.29583333,1.55675,238.02581101666667 +2015-05-08 12:00:00,0.0,1015.338167,659.4083333,50.53416667,23.53166667,1.40025,238.02512151666664 +2015-05-08 13:00:00,0.0,1014.495,652.4916667,46.785,24.58833333,1.27275,238.02443201666665 +2015-05-08 14:00:00,0.0,1013.704833,608.2916667000001,45.03166667,25.06083333,1.588916667,238.02253586666666 +2015-05-08 15:00:00,0.0,1013.031333,535.6,42.02333333,26.17833333,1.495166667,238.02201873333334 +2015-05-08 16:00:00,0.0,1012.2955,356.8583333,44.8675,26.43083333,1.491416667,238.02167398333333 +2015-05-08 17:00:00,0.0,1011.689167,88.59583333,46.17666667,26.70666667,1.5016666669999998,238.0249491666667 +2015-05-08 18:00:00,0.0,1011.4245,57.54916667,57.395,25.525,0.674583333,238.0232253833333 +2015-05-08 19:00:00,0.0,1011.240667,22.05058333,75.70333333,21.88416667,0.019083333,238.02425966666667 +2015-05-08 20:00:00,0.0,1011.141667,0.796333333,88.49166667,18.11583333,0.0785,238.02512153333336 +2015-05-08 21:00:00,0.0,1011.420667,0.0,93.2,16.24666667,0.013416667,238.02425965 +2015-05-08 22:00:00,0.0,1011.730833,0.0,95.55833333,15.47083333,0.06725,238.02546626666665 +2015-05-08 23:00:00,0.0,1011.466667,0.0,98.51666667,14.09,0.005333333000000001,238.02650053333332 +2015-06-08 00:00:00,0.0,1011.484333,0.0,99.975,13.24083333,0.0,237.73018503333333 +2015-06-08 01:00:00,0.0,1011.6489999999999,0.0,100.0,12.7075,0.017,237.73363256666667 +2015-06-08 02:00:00,0.0,1011.340167,0.0,100.0,11.925,0.0,237.73587344999999 +2015-06-08 03:00:00,0.0,1011.2260000000001,0.0,100.0,11.20166667,0.005916667,237.73518396666668 +2015-06-08 04:00:00,0.0,1011.418167,0.43258333299999996,100.0,10.76833333,0.016333333000000002,237.73914863333334 +2015-06-08 05:00:00,0.0,1011.608833,25.19391667,100.0,11.16,0.006416666999999999,237.74207901666668 +2015-06-08 06:00:00,0.0,1012.0525,73.215,99.325,13.81333333,0.0,237.7424237666667 +2015-06-08 07:00:00,0.0,1012.166667,155.8416667,90.89166667,16.145,0.225,237.74104478333334 +2015-06-08 08:00:00,0.0,1012.384833,188.33333330000002,76.2975,18.91,0.7373333329999999,237.73466683333334 +2015-06-08 09:00:00,0.0,1012.4235,171.7833333,72.8175,21.90333333,0.361416667,237.72656511666665 +2015-06-08 10:00:00,0.0,1012.2995,404.46666669999996,64.66416667,24.80166667,0.41233333299999997,237.72173859999998 +2015-06-08 11:00:00,0.0,1011.963667,580.2166667,48.95666667,29.37916667,1.077583333,237.71794631666668 +2015-06-08 12:00:00,0.0,1011.4475,606.325,38.03833333,32.2125,2.359333333,237.71484353333332 +2015-06-08 13:00:00,0.0,1010.9985,551.2416667,35.59333333,33.4175,2.316166667,237.71139598333332 +2015-06-08 14:00:00,0.0,1010.741667,406.2083333,37.56666667,33.08833333,2.3079166669999998,237.70777606666664 +2015-06-08 15:00:00,0.0,1010.841667,514.1833333000001,33.8525,34.1325,1.380416667,237.70432853333332 +2015-06-08 16:00:00,0.0,1010.7735,398.0,33.97166667,34.39583333,0.6055,237.70432853333332 +2015-06-08 17:00:00,0.0,1010.173,86.63083333,33.84166667,34.0825,0.572916667,237.70398378333334 +2015-06-08 18:00:00,0.0,1010.016167,62.27166667,43.67333333,32.5725,0.367833333,237.70519041666668 +2015-06-08 19:00:00,0.0,1010.319667,29.39166667,64.26333333,28.98166667,0.181916667,237.70553518333335 +2015-06-08 20:00:00,0.0,1010.819167,1.142666667,74.05083333,24.82083333,0.12675,237.70656944999996 +2015-06-08 21:00:00,0.0,1011.1765,0.0,76.88416667,21.91666667,0.08583333300000001,237.70863796666666 +2015-06-08 22:00:00,0.0,1011.3255,0.0,85.48333333,19.83916667,0.09875,237.71225786666665 +2015-06-08 23:00:00,0.0,1011.407833,0.0,89.20833333,18.63083333,0.039416667,237.71587778333333 +2015-07-08 00:00:00,0.0,1011.432333,0.0,93.15,17.56416667,0.15433333300000002,237.55116621666664 +2015-07-08 01:00:00,0.0,1011.106833,0.0,95.43333333,16.90583333,0.03925,237.55367529999998 +2015-07-08 02:00:00,0.0,1010.782333,0.0,98.225,16.10166667,0.015083333,237.55869346666665 +2015-07-08 03:00:00,0.0,1010.5465,0.0,99.69166667,15.65333333,0.0,237.56245708333333 +2015-07-08 04:00:00,0.0,1010.177,0.18741666699999998,100.0,15.535,0.0,237.56580253333337 +2015-07-08 05:00:00,0.0,1010.634833,12.96325,100.0,15.57416667,0.0,237.56775405000005 +2015-07-08 06:00:00,0.0,1010.844167,114.71583329999999,92.16666667,18.3825,0.0,237.56928739999998 +2015-07-08 07:00:00,0.0,1011.518167,177.725,74.88333333,22.4875,0.0,237.56984496666664 +2015-07-08 08:00:00,0.0,1012.022167,176.19166669999998,69.49,24.17416667,1.105083333,237.56914803333328 +2015-07-08 09:00:00,0.0,1012.5343330000001,304.1083333,65.23166667,26.7,3.8529166669999997,237.56399043333332 +2015-07-08 10:00:00,0.0,1012.7510000000001,526.3416666999999,61.95583333,27.29416667,4.6235,237.55451168333332 +2015-07-08 11:00:00,0.0,1012.546,587.6666667000001,58.02833333,28.04583333,4.102666667,237.54266320000002 +2015-07-08 12:00:00,0.0,1011.922,624.1,51.8675,29.89416667,3.2719166669999997,237.53416018333328 +2015-07-08 13:00:00,0.0,1011.4475,623.6333333,47.37083333,31.89333333,2.247,237.52621474999998 +2015-07-08 14:00:00,0.0,1011.165667,594.4,43.88333333,33.06,2.675416667,237.52022079999998 +2015-07-08 15:00:00,0.0,1010.732833,404.75,44.22166667,34.19166667,2.8395,237.51938444999996 +2015-07-08 16:00:00,0.0,1010.480833,384.525,40.5625,34.85583333,2.7969999999999997,237.51924505 +2015-07-08 17:00:00,0.0,1009.904333,67.89333333,43.0325,34.97583333,2.8985,237.51826928333332 +2015-07-08 18:00:00,0.0,1009.6010000000001,37.73583333,48.21,34.18916667,2.806833333,237.51812989999996 +2015-07-08 19:00:00,0.0,1009.834833,15.44666667,62.55333333,32.17,1.530583333,237.5217541333333 +2015-07-08 20:00:00,0.0,1010.160333,0.47975,78.2225,26.33333333,0.350083333,237.52858443333335 +2015-07-08 21:00:00,0.0,1010.391667,0.0,83.5,22.96583333,0.15683333300000002,237.53262685 +2015-07-08 22:00:00,0.0,1010.4176669999999,0.0,90.30833333,21.37,0.106,237.5380632 +2015-07-08 23:00:00,0.0,1010.733833,0.0,91.15833333,19.96583333,0.09733333300000001,237.54377835 +2015-08-08 00:00:00,0.0,1010.859333,0.0,90.98333333,20.46166667,0.139166667,237.44271794999997 +2015-08-08 01:00:00,0.0,1010.985833,0.0,89.74166667,22.9425,0.7909999999999999,237.44313615 +2015-08-08 02:00:00,0.0,1012.602167,0.0,84.48333333,23.0175,0.669166667,237.4475967166667 +2015-08-08 03:00:00,0.0,1013.054833,0.0,81.5775,23.04083333,1.9485833330000002,237.44982701666666 +2015-08-08 04:00:00,0.0,1012.924,0.08925,79.54,23.0025,1.7745,237.45233610000002 +2015-08-08 05:00:00,0.0,1013.196167,11.42508333,78.625,22.83583333,1.203833333,237.45470580000003 +2015-08-08 06:00:00,20.12887855,1013.6289999999999,11.73916667,94.18333333,21.22,1.255333333,237.4569361166667 +2015-08-08 07:00:00,0.0,1014.409833,148.71333330000002,91.55,20.8875,0.686583333,237.45986336666667 +2015-08-08 08:00:00,0.0,1014.9035,177.4358333,76.56666667,23.50583333,2.405583333,237.46083911666668 +2015-08-08 09:00:00,0.0,1015.444167,298.03333330000004,69.00166667,24.80416667,2.433416667,237.45749366666664 +2015-08-08 10:00:00,0.0,1015.809833,534.5166667,62.7575,26.18416667,2.684916667,237.44899066666665 +2015-08-08 11:00:00,0.0,1016.125,574.95,60.27166667,27.80333333,2.974583333,237.43505128333334 +2015-08-08 12:00:00,0.0,1015.680833,629.3916667000001,53.33666667,28.69,2.414916667,237.42571191666664 +2015-08-08 13:00:00,0.0,1015.4573330000001,548.7166667,53.29083333,29.4475,1.666333333,237.419718 +2015-08-08 14:00:00,0.0,1015.232833,243.9833333,56.26,28.9975,1.9338333330000002,237.4184634333333 +2015-08-08 15:00:00,0.0,1015.687333,343.575,60.4375,28.665,3.3375,237.41776646666665 +2015-08-08 16:00:00,0.0,1016.057333,398.4833333,62.83416667,27.67166667,3.869333333,237.41581493333334 +2015-08-08 17:00:00,0.0,1016.3025,90.43666667,69.03333333,25.5825,4.306333333,237.41456041666672 +2015-08-08 18:00:00,0.0,1016.592167,33.88833333,74.375,23.9525,3.794333333,237.4148392166667 +2015-08-08 19:00:00,0.0,1016.9275,8.690416667000001,79.34833333,22.61166667,2.981833333,237.4170695 +2015-08-08 20:00:00,0.0,1017.2363330000001,0.956,80.99166667,21.4475,3.238833333,237.41957861666666 +2015-08-08 21:00:00,0.0,1017.817667,0.0,83.29166667,20.63666667,2.025,237.42278466666667 +2015-08-08 22:00:00,0.0,1017.7313330000001,0.0,84.93333333,20.1225,1.9610833330000002,237.42696644999998 +2015-08-08 23:00:00,0.0,1017.525,0.0,85.73333333,19.82083333,1.878166667,237.43114826666667 +2015-09-08 00:00:00,0.0,1017.3485,0.0,87.1,19.5125,1.738583333,237.54383045 +2015-09-08 01:00:00,0.0,1017.0980000000001,0.0,87.49166667,19.27166667,2.23375,237.54724281666668 +2015-09-08 02:00:00,0.0,1016.556333,0.0,88.44166667,18.87583333,2.171833333,237.54863881666668 +2015-09-08 03:00:00,0.0,1016.307833,0.0,90.36666667,18.55333333,2.701916667,237.55112051666666 +2015-09-08 04:00:00,0.0,1015.890667,0.066166667,92.375,18.12666667,1.840583333,237.55391246666662 +2015-09-08 05:00:00,0.0,1015.916667,5.516083332999999,95.175,17.83,1.5185,237.5559289 +2015-09-08 06:00:00,0.0,1015.941167,35.5,92.04166667,18.17,1.7024166669999998,237.55856573333335 +2015-09-08 07:00:00,0.0,1015.959833,93.09166667,89.55,18.8725,2.968583333,237.55825553333332 +2015-09-08 08:00:00,0.0,1015.981833,199.5166667,84.15833333,20.355,2.56375,237.55856574999999 +2015-09-08 09:00:00,0.0,1015.7485,225.675,80.12083333,21.68666667,2.644166667,237.55903106666665 +2015-09-08 10:00:00,0.0,1015.3989999999999,212.9833333,80.10083333,22.14916667,2.774083333,237.55453291666666 +2015-09-08 11:00:00,0.0,1015.2235,304.1,77.385,22.9,3.0678333330000003,237.55360224999995 +2015-09-08 12:00:00,0.0,1014.889667,558.2583333,70.06416667,24.65166667,3.37375,237.55158586666667 +2015-09-08 13:00:00,0.0,1014.3563330000001,542.2416667,66.79583333,26.29833333,3.477583333,237.54786325 +2015-09-08 14:00:00,0.0,1014.089667,464.8083333000001,62.69333333,27.50583333,3.2885,237.54522641666668 +2015-09-08 15:00:00,0.0,1013.538667,240.30833330000002,62.09166667,27.77833333,3.205166667,237.5427447 +2015-09-08 16:00:00,0.0,1013.115667,160.0333333,61.655,27.91083333,3.175916667,237.5411936 +2015-09-08 17:00:00,0.0,1012.680833,145.81666669999998,59.48166667,27.94166667,3.033666667,237.53855674999997 +2015-09-08 18:00:00,0.0,1012.533333,61.0225,62.8125,27.78,2.402166667,237.53762609999998 +2015-09-08 19:00:00,0.0,1012.766667,15.54808333,67.37,26.4325,2.3496666669999997,237.53809141666667 +2015-09-08 20:00:00,0.0,1012.9863330000001,0.35825,80.24166667,25.01833333,1.3734166669999999,237.53886698333335 +2015-09-08 21:00:00,0.0,1013.3,0.0,86.375,21.76416667,0.143916667,237.53933229999998 +2015-09-08 22:00:00,0.0,1013.0485,0.0,91.89166667,21.75,0.8341666670000001,237.54134869999996 +2015-09-08 23:00:00,0.0,1012.8745,0.0,94.15833333,20.62416667,0.281333333,237.54305491666665 +2015-10-08 00:00:00,0.0,1013.009833,0.0,94.2,18.65916667,0.092666667,237.61238828333333 +2015-10-08 01:00:00,0.0,1012.890167,0.0,97.45,18.22916667,0.12075,237.61316380000002 +2015-10-08 02:00:00,0.0,1012.314667,0.0,97.98333333,17.62333333,0.052000000000000005,237.61316380000002 +2015-10-08 03:00:00,0.0,1012.747167,0.0,97.35,17.99666667,0.284666667,237.61409446666664 +2015-10-08 04:00:00,0.0,1012.852833,0.093916667,94.24166667,19.42916667,0.7475,237.6128535833333 +2015-10-08 05:00:00,0.0,1012.332833,10.09725,95.925,19.5225,0.753583333,237.61362913333332 +2015-10-08 06:00:00,0.0,1012.2073330000001,51.05,94.525,20.11,0.11425,237.61378424999998 +2015-10-08 07:00:00,0.0,1011.990167,193.95,81.43666667,21.68666667,1.7815,237.6144046833333 +2015-10-08 08:00:00,0.0,1011.9010000000001,218.55833330000002,68.76,23.2625,3.1309166669999997,237.61518021666663 +2015-10-08 09:00:00,0.0,1011.882833,191.95,67.67166667,23.92166667,2.796583333,237.6144047 +2015-10-08 10:00:00,0.0,1011.5965,407.05,67.72833333,25.275,2.8376666669999997,237.61316383333335 +2015-10-08 11:00:00,0.0,1010.9896669999999,552.6,62.67083333,27.01166667,3.217666667,237.61223316666667 +2015-10-08 12:00:00,0.0,1010.639167,582.4166667000001,59.28833333,28.62583333,2.812916667,237.60990653333332 +2015-10-08 13:00:00,0.0,1010.115167,541.0166667000001,56.6425,30.0775,3.333166667,237.61006164999995 +2015-10-08 14:00:00,0.0,1009.629333,295.75,55.95166667,30.72583333,3.0909166669999997,237.60711459999996 +2015-10-08 15:00:00,0.0,1009.073,222.08333330000002,55.33083333,31.00583333,2.8325,237.6068043833333 +2015-10-08 16:00:00,0.0,1008.7495,266.5083333,55.88083333,30.79333333,2.427666667,237.60633903333328 +2015-10-08 17:00:00,7.189900896,1009.014833,209.4266667,64.93333333,29.685,1.8691666669999998,237.60602881666668 +2015-10-08 18:00:00,435.7810177,1009.9765,49.65083333,94.72833333,21.5475,2.11075,237.60525328333335 +2015-10-08 19:00:00,0.0,1010.3755,15.62425,91.8,21.08916667,0.54325,237.6055635 +2015-10-08 20:00:00,0.0,1010.938833,0.072333333,92.36666667,19.28916667,0.859833333,237.60602885 +2015-10-08 21:00:00,0.0,1011.432333,0.0,88.74166667,19.95583333,1.2724166670000001,237.6075799333333 +2015-10-08 22:00:00,0.0,1011.432833,0.0,98.01666667,19.34416667,0.124666667,237.6083554833333 +2015-10-08 23:00:00,0.0,1011.519167,0.0,100.0,18.51166667,0.11958333300000001,237.60866568333333 +2015-11-08 00:00:00,0.0,1011.608833,0.0,99.81666667,18.22583333,0.14975,237.72984845000005 +2015-11-08 01:00:00,0.0,1011.490167,0.0,97.75,17.8025,0.517083333,237.72876386666667 +2015-11-08 02:00:00,0.0,1011.7015,0.0,98.93333333,17.4675,0.48825,237.7279891833333 +2015-11-08 03:00:00,0.0,1011.9010000000001,0.0,99.85,16.9775,0.48308333299999995,237.72767931666667 +2015-11-08 04:00:00,0.0,1012.0755,0.060083332999999996,100.0,16.70833333,0.47700000000000004,237.7276793 +2015-11-08 05:00:00,2.425037928,1012.2525,8.935083333,100.0,16.94583333,0.142,237.72829906666666 +2015-11-08 06:00:00,0.0,1012.684333,71.49916667,99.5,17.99916667,0.254,237.7279892 +2015-11-08 07:00:00,2.464416888,1013.305,142.05833330000002,90.90833333,19.55416667,0.5398333329999999,237.7281441333333 +2015-11-08 08:00:00,0.0,1013.767667,164.9833333,87.8,20.38,0.797333333,237.72814411666664 +2015-11-08 09:00:00,0.0,1013.992667,210.6,85.48333333,21.53416667,1.646,237.7248903666667 +2015-11-08 10:00:00,0.0,1014.2005,236.625,82.7575,22.10916667,1.68075,237.7239607166667 +2015-11-08 11:00:00,0.0,1013.9985,351.9416667,76.76833333,23.665,1.9418333330000002,237.7239607 +2015-11-08 12:00:00,0.0,1013.781833,339.28333330000004,73.59833333,24.945,1.9615,237.7255101333333 +2015-11-08 13:00:00,0.0,1013.6495,368.03333330000004,69.06333333,26.08416667,2.224916667,237.72674966666668 +2015-11-08 14:00:00,0.0,1013.406833,516.325,64.5875,27.03916667,2.7374166669999997,237.72814413333333 +2015-11-08 15:00:00,0.0,1013.258333,364.03333330000004,61.19166667,27.46333333,3.1470833330000003,237.72938363333333 +2015-11-08 16:00:00,0.0,1013.165167,325.25,59.38666667,27.51666667,3.0645833330000003,237.73310223333337 +2015-11-08 17:00:00,0.0,1012.741167,86.17583333,60.35916667,27.12666667,3.55575,237.7334121 +2015-11-08 18:00:00,0.0,1012.934833,46.80833333,63.3675,26.30083333,3.129416667,237.73387695 +2015-11-08 19:00:00,0.0,1013.461833,10.13508333,69.7425,24.63583333,2.18075,237.736356 +2015-11-08 20:00:00,0.0,1014.271167,0.1925,77.87333333,22.94,1.7291666669999999,237.73604610000004 +2015-11-08 21:00:00,0.0,1015.128,0.0,78.035,22.665,1.837666667,237.73604611666667 +2015-11-08 22:00:00,0.0,1015.533833,0.0,80.0775,22.11083333,1.92725,237.73806035000004 +2015-11-08 23:00:00,0.0,1015.4995,0.0,82.53333333,21.06833333,1.076833333,237.7396097666667 +2015-12-08 00:00:00,0.0,1015.432333,0.0,89.98333333,20.0225,0.539333333,238.0081218 +2015-12-08 01:00:00,0.0,1015.166167,0.0,96.41666667,18.495,0.109916667,238.00937448333332 +2015-12-08 02:00:00,0.0,1015.175,0.0,99.46666667,17.87583333,0.232333333,238.0090165833333 +2015-12-08 03:00:00,0.0,1015.067167,0.0,100.0,17.33416667,0.067833333,238.00794284999998 +2015-12-08 04:00:00,0.0,1015.166667,0.09625,100.0,16.65666667,0.062583333,238.00812181666666 +2015-12-08 05:00:00,0.0,1015.2926669999999,12.349,100.0,16.47416667,0.10475,238.00919555 +2015-12-08 06:00:00,0.0,1015.737833,65.42166667,99.83333333,18.49583333,0.9855,238.00722704999998 +2015-12-08 07:00:00,0.0,1016.384833,216.1,89.55833333,20.32666667,2.024666667,238.00651123333333 +2015-12-08 08:00:00,0.0,1016.717667,185.2166667,84.1875,21.55583333,2.046833333,238.00597439999999 +2015-12-08 09:00:00,0.0,1016.758333,352.53333330000004,77.02166667,23.7275,1.8865833330000001,238.00490065 +2015-12-08 10:00:00,0.0,1016.7313330000001,467.6416666999999,72.45166667,24.77916667,2.049583333,238.00275320000003 +2015-12-08 11:00:00,0.0,1016.4573330000001,371.8583333,70.32,25.85583333,1.985416667,238.0034690166667 +2015-12-08 12:00:00,0.0,1016.375,421.625,66.46583333,27.00083333,2.399166667,238.00221636666666 +2015-12-08 13:00:00,0.0,1016.0485,280.8,66.17083333,27.09416667,2.3729166669999997,238.00060580000002 +2015-12-08 14:00:00,0.0,1015.6735,355.5166667,63.47333333,27.76,2.636,237.99988998333333 +2015-12-08 15:00:00,0.0,1015.516167,414.4833333,59.4775,28.52083333,2.488833333,238.00185845 +2015-12-08 16:00:00,0.0,1015.467167,362.75,57.97583333,28.94833333,2.6156666669999997,238.00257424999998 +2015-12-08 17:00:00,0.0,1015.089167,103.07,59.3375,28.6425,2.090583333,238.0023953 +2015-12-08 18:00:00,0.0,1015.016167,71.52416667,62.98583333,28.10416667,2.1974166669999997,238.0023953 +2015-12-08 19:00:00,0.0,1015.0505,24.36016667,70.26083333,26.93,2.468583333,238.00239530000002 +2015-12-08 20:00:00,0.0,1015.487833,0.644083333,85.86666667,24.785,1.146,238.00221635 +2015-12-08 21:00:00,0.0,1015.8995,0.0,91.54166667,23.28416667,0.9099166670000001,238.00006889999997 +2015-12-08 22:00:00,0.0,1015.983333,0.0,86.26666667,22.71166667,1.7361666669999998,237.99863728333332 +2015-12-08 23:00:00,0.0,1015.807333,0.0,92.95833333,20.67916667,0.33875,237.99702671666668 +2015-08-13 00:00:00,0.0,1015.566167,0.0,96.53333333,19.34416667,0.160833333,237.57862676666664 +2015-08-13 01:00:00,0.0,1015.3215,0.0,99.76666667,18.97333333,0.34366666700000004,237.57946311666663 +2015-08-13 02:00:00,0.0,1014.7995,0.0,100.0,17.27166667,0.048666667000000004,237.58169343333336 +2015-08-13 03:00:00,0.0,1014.6235,0.0,100.0,16.53083333,0.007916666999999999,237.5816934333333 +2015-08-13 04:00:00,0.0,1014.230833,0.040833333,100.0,16.01416667,0.026000000000000002,237.58294796666667 +2015-08-13 05:00:00,0.0,1014.009333,8.910833333,100.0,15.84083333,0.053583333,237.5846207 +2015-08-13 06:00:00,0.0,1014.115667,62.41666667,99.375,17.65416667,0.7225,237.58420250000003 +2015-08-13 07:00:00,0.0,1013.9475,178.48833330000002,86.925,19.49,2.548,237.58420250000003 +2015-08-13 08:00:00,0.0,1013.5745,173.6583333,82.0375,21.025,3.04575,237.58448128333336 +2015-08-13 09:00:00,0.0,1013.390167,279.3333333,76.985,22.915,2.6845,237.58141464999997 +2015-08-13 10:00:00,0.0,1012.722,492.96666669999996,71.05916667,24.99333333,2.579416667,237.57806921666665 +2015-08-13 11:00:00,0.0,1012.003333,560.4416667,65.8275,27.0525,2.7785833330000003,237.57277223333332 +2015-08-13 12:00:00,0.0,1011.1955,585.5416667000001,60.66,29.22666667,2.4755,237.56761468333332 +2015-08-13 13:00:00,0.0,1010.212667,590.9666667,53.785,30.855,2.745166667,237.5631540833333 +2015-08-13 14:00:00,0.0,1009.554833,463.9416666999999,51.90833333,31.73916667,2.7825833330000003,237.5582753 +2015-08-13 15:00:00,0.0,1008.980833,423.725,49.14416667,32.7,2.355666667,237.55283895 +2015-08-13 16:00:00,0.0,1008.1195,314.84166669999996,47.7525,32.94333333,2.028166667,237.54865715000003 +2015-08-13 17:00:00,0.0,1007.028833,99.69083333,50.87666667,32.43666667,3.2286666669999997,237.54572986666668 +2015-08-13 18:00:00,0.0,1006.5255,52.95166667,54.77166667,31.34333333,3.9189999999999996,237.5426632 +2015-08-13 19:00:00,0.0,1006.615667,12.40408333,55.9725,29.43333333,2.1349166669999997,237.5400147 +2015-08-13 20:00:00,0.0,1006.382833,0.10466666699999999,74.28083333,24.69166667,0.18683333300000002,237.53750563333335 +2015-08-13 21:00:00,0.0,1006.464167,0.0,83.78333333,22.4075,0.16699999999999998,237.53666926666665 +2015-08-13 22:00:00,0.0,1005.941167,0.0,87.70833333,25.13333333,0.805333333,237.53597230000003 +2015-08-13 23:00:00,0.0,1005.680833,0.0,78.03,25.43583333,1.233166667,237.53597228333334 +2015-08-14 00:00:00,0.0,1005.812333,0.0,78.13166667,23.5175,0.49208333299999996,237.5361116833333 +2015-08-14 01:00:00,0.0,1006.2515,0.0,73.9425,23.29916667,0.300833333,237.53750563333332 +2015-08-14 02:00:00,0.0,1006.290167,0.0,75.1825,22.74416667,0.564666667,237.5394571666667 +2015-08-14 03:00:00,0.0,1006.283333,0.0,81.8275,21.43166667,0.46825,237.54085108333334 +2015-08-14 04:00:00,0.0,1005.955833,0.0005,88.79166667,20.50583333,0.2205,237.53987535000002 +2015-08-14 05:00:00,0.0,1005.693167,7.28275,93.73333333,19.62916667,0.093666667,237.5423843833333 +2015-08-14 06:00:00,0.0,1006.0775,26.47583333,89.54166667,20.11,0.21666666699999998,237.54154803333333 +2015-08-14 07:00:00,0.0,1006.5505,138.1108333,83.67,21.15333333,0.2375,237.54043291666665 +2015-08-14 08:00:00,0.0,1006.5343330000001,192.85,72.495,24.16583333,0.3965,237.54001473333335 +2015-08-14 09:00:00,0.0,1006.614167,170.8583333,68.0375,25.585,1.64375,237.53388141666667 +2015-08-14 10:00:00,0.0,1006.181833,350.1,63.445,26.46666667,1.37725,237.53137233333328 +2015-08-14 11:00:00,0.0,1005.857833,235.025,66.25833333,26.20333333,0.516,237.52677235000002 +2015-08-14 12:00:00,0.0,1005.8083330000001,238.675,65.98916667,26.3525,0.71025,237.52217233333332 +2015-08-14 13:00:00,0.0,1005.5823330000001,177.5083333,64.75333333,26.25833333,0.5245,237.51938445 +2015-08-14 14:00:00,0.0,1005.254333,127.225,66.4175,26.255,1.8739166669999998,237.51589961666664 +2015-08-14 15:00:00,0.0,1004.656333,257.6833333,66.54416667,26.085,1.879,237.51534205 +2015-08-14 16:00:00,0.0,1004.488167,266.03333330000004,58.64833333,27.77333333,1.111666667,237.50934811666664 +2015-08-14 17:00:00,0.0,1003.817667,75.5,65.70166667,27.13333333,0.730916667,237.5083723333333 +2015-08-14 18:00:00,0.0,1003.85,46.4,66.63083333,26.42416667,0.839666667,237.5054451 +2015-08-14 19:00:00,0.0,1004.018167,11.19491667,77.44,24.51333333,0.45583333299999995,237.50558446666665 +2015-08-14 20:00:00,2.4050227680000003,1004.333333,0.016,80.7725,22.89333333,0.26916666699999997,237.50642085 +2015-08-14 21:00:00,4.8100455360000005,1004.030333,0.0,96.85,20.51666667,0.15975,237.50906931666665 +2015-08-14 22:00:00,0.0,1003.7769999999999,0.0,96.475,20.2575,1.1165,237.51255416666663 +2015-08-14 23:00:00,0.0,1004.210333,0.0,97.58333333,20.18166667,0.38241666700000004,237.51408751666668 +2015-08-15 00:00:00,0.0,1004.031333,0.0,99.35,19.63083333,0.07616666700000001,237.51673598333332 +2015-08-15 01:00:00,0.0,1003.906833,0.0,100.0,19.00416667,0.202083333,237.51812991666665 +2015-08-15 02:00:00,0.0,1003.733333,0.0,100.0,18.16916667,0.10325,237.52189355000004 +2015-08-15 03:00:00,0.0,1003.717667,0.0,100.0,17.04833333,0.034916667,237.52496018333332 +2015-08-15 04:00:00,0.0,1003.783833,0.0,100.0,16.39583333,0.1395,237.52746929999998 +2015-08-15 05:00:00,2.427553392,1004.362333,6.682416667000001,100.0,15.72,0.11975,237.5302571666667 +2015-08-15 06:00:00,0.0,1004.7745,74.065,100.0,16.57166667,0.055999999999999994,237.53151171666664 +2015-08-15 07:00:00,0.0,1004.843667,152.20833330000002,92.21666667,19.29833333,0.255333333,237.53206928333336 +2015-08-15 08:00:00,0.0,1005.259833,100.7116667,80.81583333,21.15916667,0.194833333,237.53360263333332 +2015-08-15 09:00:00,0.0,1005.434333,194.9666667,75.82666667,22.16916667,0.44191666700000004,237.53262686666667 +2015-08-15 10:00:00,0.0,1005.415167,248.275,69.08583333,22.76666667,1.016583333,237.53179050000003 +2015-08-15 11:00:00,0.0,1005.283333,391.0833333,61.5475,23.72833333,1.132083333,237.52705111666663 +2015-08-15 12:00:00,0.0,1005.25,306.3166667,60.645,24.75833333,2.0915,237.51994201666662 +2015-08-15 13:00:00,0.0,1005.2760000000001,219.675,62.32833333,23.5975,1.44475,237.51339053333334 +2015-08-15 14:00:00,0.0,1005.6005,241.2,62.51666667,23.885,0.606166667,237.50586326666667 +2015-08-15 15:00:00,0.0,1005.583333,222.7416667,58.7875,24.53416667,0.943416667,237.50042691666667 +2015-08-15 16:00:00,0.0,1005.657833,185.075,56.045,24.2325,0.962916667,237.49499056666664 +2015-08-15 17:00:00,0.0,1005.483833,103.12,55.88083333,24.1625,0.627,237.49359660000002 +2015-08-15 18:00:00,0.0,1005.734333,33.23083333,59.88833333,23.04333333,0.66575,237.49025118333338 +2015-08-15 19:00:00,0.0,1006.312833,6.86225,67.12833333,20.78916667,0.03325,237.48843906666664 +2015-08-15 20:00:00,0.0,1007.0265,0.090583333,75.665,19.01333333,0.014916667,237.48634816666672 +2015-08-15 21:00:00,0.0,1007.017667,0.0,84.21666667,17.14583333,0.0565,237.48829966666668 +2015-08-15 22:00:00,0.0,1007.418167,0.0,84.325,15.98583333,0.03075,237.48829966666668 +2015-08-15 23:00:00,0.0,1007.5239999999999,0.0,92.325,14.79333333,0.012916667,237.49094813333338 +2015-08-16 00:00:00,0.0,1007.5260000000001,0.0,90.56666667,14.92416667,0.032,237.49359661666665 +2015-08-16 01:00:00,0.0,1007.802,0.0,91.26666667,16.74083333,0.24891666699999998,237.49512995 +2015-08-16 02:00:00,0.0,1007.915167,0.0,94.90833333,16.68416667,0.225333333,237.49736026666667 +2015-08-16 03:00:00,0.0,1007.582833,0.0,95.91666667,16.3725,0.3065,237.50223901666666 +2015-08-16 04:00:00,0.0,1007.542167,0.0,96.58333333,16.4475,0.10183333300000001,237.50502691666668 +2015-08-16 05:00:00,2.4064164,1007.5010000000001,1.537333333,97.625,16.36583333,0.08508333300000001,237.50739661666668 +2015-08-16 06:00:00,14.84556487,1007.583333,13.85683333,99.55,16.0325,0.2385,237.51004509999999 +2015-08-16 07:00:00,19.61421941,1007.858333,38.91083333,100.0,15.9525,0.307916667,237.51255414999994 +2015-08-16 08:00:00,22.01340989,1007.843167,53.36666667,99.975,16.27666667,0.228333333,237.51548143333332 +2015-08-16 09:00:00,46.82953654,1008.083333,47.91833333,99.975,16.4125,0.349916667,237.5191056333333 +2015-08-16 10:00:00,43.20782587,1008.2,92.80833333,100.0,16.5625,0.66575,237.52356628333334 +2015-08-16 11:00:00,15.95467202,1008.208833,120.70833329999999,99.55,17.41416667,0.93475,237.52802684999997 +2015-08-16 12:00:00,22.7680549,1008.241667,102.67833329999999,98.29166667,17.63083333,0.66025,237.53206928333336 +2015-08-16 13:00:00,41.26618145,1007.966167,81.2225,99.05833333,17.35666667,0.8926666670000001,237.5384814 +2015-08-16 14:00:00,29.74156889,1008.0765,83.58666667,99.225,17.15083333,1.082666667,237.54336020000002 +2015-08-16 15:00:00,50.4648097,1007.938667,64.665,99.99166667,16.87916667,1.068666667,237.54935411666668 +2015-08-16 16:00:00,15.75282696,1007.9005,70.97916667,99.96666667,16.85333333,0.782333333,237.5554874333333 +2015-08-16 17:00:00,10.33213882,1007.891667,48.59916667,100.0,16.54083333,0.7596666670000001,237.5605055833333 +2015-08-16 18:00:00,0.0,1007.8235,19.92833333,100.0,16.23333333,1.159166667,237.56329346666666 +2015-08-16 19:00:00,0.0,1008.009833,7.691833333,99.66666667,15.98583333,0.7110833329999999,237.56663890000002 +2015-08-16 20:00:00,0.0,1008.092667,0.018333333,99.86666667,15.61166667,0.472083333,237.56998438333326 +2015-08-16 21:00:00,0.0,1008.358333,0.0,99.94166667,15.28666667,0.395083333,237.57068134999997 +2015-08-16 22:00:00,0.0,1008.092167,0.0,99.98333333,14.87916667,0.42066666700000005,237.57346918333334 +2015-08-16 23:00:00,0.0,1008.132833,0.0,100.0,14.62666667,0.299583333,237.5730510333333 +2015-08-17 00:00:00,0.0,1007.830833,0.0,100.0,14.47166667,0.3885,237.57514193333336 +2015-08-17 01:00:00,0.0,1007.406333,0.0,100.0,14.41,0.415916667,237.57737219999999 +2015-08-17 02:00:00,0.0,1007.242167,0.0,100.0,14.54666667,0.455166667,237.57723279999996 +2015-08-17 03:00:00,0.0,1007.267667,0.0,100.0,14.56333333,0.64875,237.57890551666665 +2015-08-17 04:00:00,0.0,1007.3985,0.0,100.0,14.3925,0.49708333299999996,237.58002069999998 +2015-08-17 05:00:00,0.0,1007.133833,1.569916667,100.0,14.0175,0.506083333,237.58183281666666 +2015-08-17 06:00:00,4.877029608,1007.333333,7.738916667000001,100.0,13.78583333,0.195083333,237.58294796666667 +2015-08-17 07:00:00,17.02458926,1007.451,23.39416667,100.0,13.66916667,0.192916667,237.58434188333334 +2015-08-17 08:00:00,17.26501241,1007.558833,48.07083333,100.0,13.73,0.284416667,237.58629343333334 +2015-08-17 09:00:00,9.799893767999999,1007.9275,84.53583333,100.0,14.205,0.40516666700000004,237.58740856666665 +2015-08-17 10:00:00,2.489930136,1008.242167,87.1075,99.775,14.28916667,0.60975,237.58880249999996 +2015-08-17 11:00:00,0.0,1008.3005,91.46833333,98.6,14.55583333,0.6975,237.58908128333334 +2015-08-17 12:00:00,2.4684846,1008.433833,68.0275,98.61666667,14.545,0.5678333329999999,237.58991765 +2015-08-17 13:00:00,14.63071315,1008.517667,82.1475,99.91666667,14.56333333,0.212583333,237.59326311666666 +2015-08-17 14:00:00,75.65954143,1008.440667,67.21333333,100.0,14.49583333,0.288833333,237.59563279999998 +2015-08-17 15:00:00,77.85088111,1008.3760000000001,61.20416667,100.0,14.51333333,0.241833333,237.59911763333332 +2015-08-17 16:00:00,41.77711651,1008.5,63.2225,100.0,14.57333333,0.292666667,237.6037176333333 +2015-08-17 17:00:00,24.34219315,1008.389167,36.81833333,100.0,14.59916667,0.148333333,237.60789945000002 +2015-08-17 18:00:00,12.14488298,1008.2,34.71916667,100.0,14.46583333,0.159333333,237.61236005 +2015-08-17 19:00:00,4.818797856000001,1008.293667,4.403916667,100.0,14.1375,0.07983333299999999,237.61542669999994 +2015-08-17 20:00:00,4.8177817439999995,1008.582833,0.023,100.0,13.8925,0.048,237.61793580000003 +2015-08-17 21:00:00,0.0,1008.6265,0.0,100.0,13.7475,0.034166667000000005,237.61877213333335 +2015-08-17 22:00:00,0.0,1008.742667,0.0,100.0,13.6775,0.020083333000000002,237.61974790000002 +2015-08-17 23:00:00,2.4050227680000003,1008.689167,0.0,100.0,13.5975,0.018333333,237.62100244999996 +2015-08-18 00:00:00,0.0,1008.5583330000001,0.0,100.0,13.56333333,0.034083333,237.62281456666665 +2015-08-18 01:00:00,0.0,1008.583333,0.0,99.63333333,13.3975,0.178833333,237.62365093333332 +2015-08-18 02:00:00,0.0,1008.668167,0.0,99.29166667,13.23,0.021416667,237.6242085 +2015-08-18 03:00:00,0.0,1008.775,0.0,99.39166667,13.20666667,0.06433333299999999,237.62546303333338 +2015-08-18 04:00:00,0.0,1008.716667,0.0,99.5,13.21583333,0.091333333,237.62602060000003 +2015-08-18 05:00:00,0.0,1008.8275,1.35375,99.125,13.16833333,0.050583333,237.62769333333335 +2015-08-18 06:00:00,0.0,1009.168167,14.37916667,98.125,13.11666667,0.37541666700000004,237.6283903166667 +2015-08-18 07:00:00,0.0,1009.694167,35.3975,96.75833333,13.41166667,0.50175,237.62755395000002 +2015-08-18 08:00:00,0.0,1010.052,51.98083333,97.225,13.70666667,0.303083333,237.62797211666668 +2015-08-18 09:00:00,0.0,1010.6015,63.16333333,99.75833333,13.69,0.238583333,237.62755395 +2015-08-18 10:00:00,0.0,1010.909833,277.7,93.04166667,14.82666667,0.257166667,237.6283903166667 +2015-08-18 11:00:00,0.0,1011.1005,512.1333333,82.1875,16.9175,0.972666667,237.62727516666666 +2015-08-18 12:00:00,0.0,1011.335333,513.475,76.44833333,17.92416667,0.953333333,237.62462668333333 +2015-08-18 13:00:00,0.0,1011.425,312.59166669999996,75.24583333,18.03916667,0.734583333,237.62406911666667 +2015-08-18 14:00:00,0.0,1011.684833,223.18333330000002,71.71333333,18.66083333,0.466583333,237.62086306666671 +2015-08-18 15:00:00,0.0,1011.817667,148.425,73.21333333,18.4825,0.39591666700000006,237.62030546666668 +2015-08-18 16:00:00,0.0,1012.203,103.8258333,74.77166667,17.81583333,1.4245,237.61863273333336 +2015-08-18 17:00:00,0.0,1012.4989999999999,14.02583333,82.06166667,16.79166667,1.883833333,237.61779636666668 +2015-08-18 18:00:00,0.0,1012.451,17.1725,88.28333333,15.76333333,0.17775,237.6189115 +2015-08-18 19:00:00,0.0,1012.753,7.479083332999999,93.30833333,15.15166667,0.039416667,237.61765698333338 +2015-08-18 20:00:00,0.0,1013.2843330000001,0.066666667,95.94166667,14.64083333,0.08891666699999999,237.61709941666666 +2015-08-18 21:00:00,0.0,1013.560333,0.0,97.60833333,14.34166667,0.044666667,237.61765698333338 +2015-08-18 22:00:00,0.0,1013.701,0.0,99.53333333,14.12083333,0.134916667,237.61863273333336 +2015-08-18 23:00:00,0.0,1014.109833,0.0,98.94166667,14.0075,0.149083333,237.61946910000003 +2015-08-19 00:00:00,0.0,1014.5343330000001,0.0,99.625,13.58,0.1045,237.62002668333335 +2015-08-19 01:00:00,0.0,1014.458333,0.0,100.0,13.1675,0.12975,237.62142063333332 +2015-08-19 02:00:00,0.0,1014.55,0.0,100.0,11.59833333,0.06308333299999999,237.62156001666662 +2015-08-19 03:00:00,0.0,1014.608333,0.0,100.0,10.42583333,0.09983333300000001,237.62253578333332 +2015-08-19 04:00:00,0.0,1014.710333,0.0,100.0,10.2675,0.08608333300000001,237.6229539666667 +2015-08-19 05:00:00,0.0,1015.095667,6.8435,100.0,9.618333332999999,0.007166667,237.62323273333334 +2015-08-19 06:00:00,0.0,1015.791667,39.33166667,100.0,10.62916667,0.36691666700000003,237.62072365000003 +2015-08-19 07:00:00,0.0,1016.059833,106.04333329999999,100.0,12.2325,0.338416667,237.6212812166667 +2015-08-19 08:00:00,0.0,1016.209833,145.4666667,98.35833333,14.41166667,0.8653333329999999,237.62086305000003 +2015-08-19 09:00:00,0.0,1016.467667,288.3333333,83.48,16.51333333,1.324166667,237.61905093333337 +2015-08-19 10:00:00,0.0,1016.375,361.35,74.12333333,18.27833333,1.00575,237.61974789999996 +2015-08-19 11:00:00,2.4958168080000003,1016.432833,575.4083333,64.33666667,19.83166667,0.743166667,237.61709943333332 +2015-08-19 12:00:00,0.0,1016.566167,494.13333330000006,61.65916667,20.19083333,1.4909166669999998,237.61500850000002 +2015-08-19 13:00:00,0.0,1016.568667,562.8666667,60.08583333,19.98,1.47925,237.61138428333334 +2015-08-19 14:00:00,0.0,1016.515167,455.9,59.4275,20.54416667,1.777166667,237.60678428333335 +2015-08-19 15:00:00,0.0,1016.3323330000001,219.93333330000002,64.91666667,20.45833333,1.198166667,237.6042752333333 +2015-08-19 16:00:00,0.0,1016.3765,145.6166667,66.32416667,20.62083333,0.518166667,237.6026025 +2015-08-19 17:00:00,0.0,1016.618167,93.54583333,64.39,20.35666667,0.501833333,237.59911765 +2015-08-19 18:00:00,0.0,1016.961333,63.76083333,74.19333333,19.69666667,0.7335,237.59716615 +2015-08-19 19:00:00,0.0,1017.325,15.56,84.40833333,18.225,0.09908333300000001,237.59702673333334 +2015-08-19 20:00:00,0.0,1017.670667,0.025833332999999997,92.86666667,15.95416667,0.0875,237.59716611666667 +2015-08-19 21:00:00,0.0,1017.940167,0.0,95.825,15.23333333,0.001583333,237.59716611666667 +2015-08-19 22:00:00,0.0,1018.135833,0.0,97.925,14.92666667,0.032416667,237.59842064999998 +2015-08-19 23:00:00,0.0,1018.282833,0.0,98.66666667,14.33416667,0.04225,237.59939643333334 +2015-08-20 00:00:00,0.0,1018.217667,0.0,99.90833333,14.11416667,0.00525,237.60134791666667 +2015-08-20 01:00:00,0.0,1018.416667,0.0,99.88333333,14.02416667,0.014083333,237.60288123333328 +2015-08-20 02:00:00,0.0,1018.5,0.0,100.0,13.8825,0.000666667,237.60302066666665 +2015-08-20 03:00:00,0.0,1018.441167,0.0,100.0,13.6975,0.009916666999999999,237.60552973333336 +2015-08-20 04:00:00,0.0,1018.283833,0.0,100.0,13.54083333,0.0,237.60803881666666 +2015-08-20 05:00:00,0.0,1018.7275,4.508666667,100.0,13.12583333,0.006666666999999999,237.60748125 +2015-08-20 06:00:00,0.0,1019.0765,29.2725,100.0,13.46833333,0.013166667,237.60803880000003 +2015-08-20 07:00:00,0.0,1019.6275,47.8875,100.0,14.50333333,0.069083333,237.6078994166667 +2015-08-20 08:00:00,0.0,1019.9005,81.79666667,96.025,15.42,0.735666667,237.60803883333332 +2015-08-20 09:00:00,0.0,1020.009333,139.925,91.38333333,16.51583333,0.15383333300000002,237.60873579999998 +2015-08-20 10:00:00,0.0,1020.2005,241.0083333,84.55833333,18.1,0.469,237.60845699999996 +2015-08-20 11:00:00,0.0,1020.266667,391.8333333,74.8825,19.92666667,0.518,237.60776005 +2015-08-20 12:00:00,0.0,1020.1,569.5,67.6575,21.22333333,0.783666667,237.60511156666664 +2015-08-20 13:00:00,0.0,1019.872,356.65,64.88916667,22.52333333,0.903833333,237.60274188333332 +2015-08-20 14:00:00,0.0,1019.666667,306.0,61.92166667,22.23166667,0.546333333,237.59856005000003 +2015-08-20 15:00:00,0.0,1019.516167,429.4833333000001,53.0,22.81833333,0.5205833329999999,237.59284489999996 +2015-08-20 16:00:00,0.0,1019.281833,288.475,45.305,23.54333333,0.304583333,237.59131156666663 +2015-08-20 17:00:00,0.0,1019.2255,83.8025,58.90083333,22.54916667,1.342416667,237.5886631 +2015-08-20 18:00:00,0.0,1019.484333,38.2475,70.77,20.92083333,1.37925,237.586851 +2015-08-20 19:00:00,0.0,1019.709833,12.3905,82.62166667,19.44666667,0.6585,237.58629341666665 +2015-08-20 20:00:00,0.0,1020.178,0.01875,94.93333333,15.67166667,0.049083333,237.5874086 +2015-08-20 21:00:00,0.0,1020.509833,0.0,99.35,13.95166667,0.000833333,237.58685101666666 +2015-08-20 22:00:00,0.0,1020.835833,0.0,100.0,12.965,0.008916667,237.58726918333332 +2015-08-20 23:00:00,0.0,1020.982333,0.0,100.0,12.20333333,0.000833333,237.58922070000003 +2015-08-21 00:00:00,0.0,1021.066167,0.0,100.0,11.62833333,0.01975,237.59131161666664 +2015-08-21 01:00:00,0.0,1020.9333330000001,0.0,100.0,11.1575,0.0,237.59242673333335 +2015-08-21 02:00:00,0.0,1020.756833,0.0,100.0,10.65666667,0.0,237.5940995 +2015-08-21 03:00:00,0.0,1020.692167,0.0,100.0,10.2225,0.0,237.59632974999997 +2015-08-21 04:00:00,0.0,1020.8,0.0,100.0,9.860833332999999,0.0,237.5967479166667 +2015-08-21 05:00:00,0.0,1020.934833,3.6814166669999997,100.0,9.465,0.0,237.5984206833333 +2015-08-21 06:00:00,0.0,1021.4525,31.93083333,100.0,11.05833333,0.018833333,237.59814189999997 +2015-08-21 07:00:00,0.0,1021.5755,92.36416667,100.0,12.595,0.169333333,237.59814188333334 +2015-08-21 08:00:00,0.0,1021.7760000000001,146.7016667,97.9,14.02166667,0.26108333300000003,237.5978631 +2015-08-21 09:00:00,0.0,1021.85,273.3666667,77.0475,17.925,0.651083333,237.5971661333333 +2015-08-21 10:00:00,0.0,1021.739167,505.1083333000001,64.97416667,21.28083333,0.914333333,237.59577221666666 +2015-08-21 11:00:00,0.0,1021.131333,573.225,55.675,22.3025,2.0034166669999998,237.59326309999997 +2015-08-21 12:00:00,0.0,1020.831833,599.05,52.91833333,23.26416667,1.8605833330000001,237.58796615000003 +2015-08-21 13:00:00,0.0,1020.3475,597.325,49.03833333,23.87583333,1.3680833330000002,237.58378431666668 +2015-08-21 14:00:00,0.0,1019.8975,550.2166667,46.17833333,24.50666667,1.4591666669999999,237.57876613333335 +2015-08-21 15:00:00,0.0,1019.423,467.8166666999999,42.02666667,25.14583333,1.402833333,237.5755601 +2015-08-21 16:00:00,0.0,1018.955833,340.28333330000004,42.1575,25.03583333,1.207833333,237.57277223333332 +2015-08-21 17:00:00,0.0,1018.5485,44.8675,45.6925,24.50583333,1.133,237.5716570666667 +2015-08-21 18:00:00,0.0,1018.4505,28.23583333,54.985,23.03333333,0.5601666670000001,237.5688692333333 +2015-08-21 19:00:00,0.0,1018.6515,7.67475,79.15916667,18.2025,0.0605,237.56886921666668 +2015-08-21 20:00:00,0.0,1018.883333,0.016916667,85.49166667,15.0925,0.030666667,237.56859045 +2015-08-21 21:00:00,0.0,1018.858333,0.0,93.4,13.37666667,0.033083333,237.56970559999993 +2015-08-21 22:00:00,0.0,1018.756833,0.0,96.80833333,12.34916667,0.0,237.57082071666665 +2015-08-21 23:00:00,0.0,1018.6245,0.0,99.19166667,11.68583333,0.0,237.57319041666665 +2015-08-22 00:00:00,0.0,1018.2396669999999,0.0,99.95,10.945,0.0,237.57528133333335 +2015-08-22 01:00:00,0.0,1017.941167,0.0,100.0,10.32666667,0.00041666699999999996,237.57792978333336 +2015-08-22 02:00:00,0.0,1017.8245,0.0,100.0,9.855833333,0.046416667,237.5789055333333 +2015-08-22 03:00:00,0.0,1017.640667,0.0,100.0,9.390833333,0.003916667,237.582251 +2015-08-22 04:00:00,0.0,1017.455833,0.0,100.0,8.886666667,0.0,237.58308736666666 +2015-08-22 05:00:00,0.0,1017.309333,4.637583333,100.0,8.509166667,0.0,237.58448130000002 +2015-08-22 06:00:00,0.0,1017.383833,30.09,100.0,9.540833333,0.0,237.58517826666665 +2015-08-22 07:00:00,0.0,1017.484833,158.5216667,97.76666667,12.94583333,0.022583332999999997,237.58434188333334 +2015-08-22 08:00:00,0.0,1017.582833,162.53916669999998,78.40916667,16.30416667,1.207333333,237.58336613333336 +2015-08-22 09:00:00,0.0,1017.380833,270.9833333,67.80583333,18.97916667,1.1540000000000001,237.58322671666667 +2015-08-22 10:00:00,0.0,1016.939667,495.425,58.295,21.7425,0.933916667,237.58225100000004 +2015-08-22 11:00:00,0.0,1016.212667,565.9166667000001,49.70333333,24.00666667,1.204083333,237.57834796666666 +2015-08-22 12:00:00,0.0,1015.696,572.0583333,41.57166667,25.14583333,1.69775,237.57277221666666 +2015-08-22 13:00:00,0.0,1015.0995,495.75833330000006,39.59666667,25.36833333,1.2545,237.56622073333332 +2015-08-22 14:00:00,0.0,1014.629833,499.6916666999999,36.88083333,25.815,2.4699166669999997,237.55897224999998 +2015-08-22 15:00:00,0.0,1014.0980000000001,472.4,36.1925,26.3325,1.5686666669999998,237.55618436666666 +2015-08-22 16:00:00,0.0,1013.47,343.3916667,35.64583333,25.9425,1.8125,237.55228136666665 +2015-08-22 17:00:00,0.0,1012.663667,46.82583333,39.2425,25.0725,1.1966666670000001,237.55088743333332 +2015-08-22 18:00:00,0.0,1012.1833330000001,28.10583333,52.25333333,23.4125,0.92125,237.54879651666667 +2015-08-22 19:00:00,0.0,1012.2156669999999,5.972916667000001,76.3475,18.995,0.108666667,237.54754195 +2015-08-22 20:00:00,0.0,1012.166667,0.007083333000000001,84.89166667,15.015,0.095916667,237.54684503333337 +2015-08-22 21:00:00,0.0,1011.9485,0.0,91.78333333,13.34916667,0.003833333,237.54879651666667 +2015-08-22 22:00:00,0.0,1011.6146669999999,0.0,96.39166667,13.00916667,0.26966666699999997,237.55005104999998 +2015-08-22 23:00:00,0.0,1011.063167,0.0,98.7,12.92666667,0.241833333,237.55283895 +2015-08-23 00:00:00,0.0,1010.4465,0.0,99.91666667,11.5575,0.020583333,237.55799649999997 +2015-08-23 01:00:00,0.0,1009.990167,0.0,100.0,10.45916667,0.000166667,237.56106318333332 +2015-08-23 02:00:00,0.0,1009.6239999999999,0.0,100.0,9.870833333,0.009166667,237.56357228333331 +2015-08-23 03:00:00,0.0,1009.165167,0.0,100.0,9.466666667,0.08866666699999999,237.5649662 +2015-08-23 04:00:00,0.0,1008.863667,0.0,100.0,9.091666667,0.230083333,237.56705708333337 +2015-08-23 05:00:00,0.0,1008.759833,4.249666667,100.0,9.7375,0.623083333,237.5685904333333 +2015-08-23 06:00:00,0.0,1008.680833,29.23,100.0,11.3425,0.471083333,237.56928738333332 +2015-08-23 07:00:00,0.0,1008.3989999999999,147.2,90.88916667,14.05916667,0.75575,237.56984499999996 +2015-08-23 08:00:00,0.0,1007.8715,160.2966667,73.08166667,17.2225,0.8079999999999999,237.5697055666666 +2015-08-23 09:00:00,0.0,1007.230333,274.1,61.78333333,20.17666667,1.175833333,237.56970558333333 +2015-08-23 10:00:00,0.0,1006.336667,502.58333330000005,50.63166667,22.99083333,2.1345,237.56663890000002 +2015-08-23 11:00:00,0.0,1005.698,565.2416667,43.6025,24.06583333,3.2095833330000003,237.56092376666663 +2015-08-23 12:00:00,0.0,1005.054833,572.45,41.27833333,24.7625,2.779,237.55423286666667 +2015-08-23 13:00:00,0.0,1004.488667,558.525,39.08666667,24.9375,2.18375,237.54572986666668 +2015-08-23 14:00:00,0.0,1003.603833,495.09166669999996,37.29833333,25.715,2.577416667,237.5404329 +2015-08-23 15:00:00,0.0,1002.9215,313.40833330000004,38.20333333,25.41666667,2.391916667,237.53652986666668 +2015-08-23 16:00:00,0.0,1002.2719999999999,129.5,40.90416667,24.96166667,1.61975,237.53569349999998 +2015-08-23 17:00:00,0.0,1001.655333,57.13833333,42.37333333,24.4825,1.44825,237.53416014999996 +2015-08-23 18:00:00,0.0,1001.206833,20.51275,62.68666667,23.46916667,0.555666667,237.5334632 +2015-08-23 19:00:00,0.0,1001.362833,1.341,66.97416667,21.69916667,0.3085,237.53290565 +2015-08-23 20:00:00,0.0,1002.0583330000001,0.0,71.20333333,20.48166667,0.61,237.53234806666669 +2015-08-23 21:00:00,2.4438146880000002,1002.008333,0.0,93.48333333,18.79916667,0.46375,237.53304503333334 +2015-08-23 22:00:00,0.0,1001.747,0.0,99.98333333,17.40833333,0.6375833329999999,237.53541470000002 +2015-08-23 23:00:00,0.0,1001.593167,0.0,99.96666667,17.3125,1.472833333,237.53876016666666 +2015-08-24 00:00:00,0.0,1001.592667,0.0,98.925,17.44416667,0.80425,237.54210559999999 +2015-08-24 01:00:00,0.0,1001.446,0.0,96.55833333,17.29333333,0.976833333,237.54489348333334 +2015-08-24 02:00:00,0.0,1001.141667,0.0,96.50833333,16.9925,1.020333333,237.54754196666667 +2015-08-24 03:00:00,0.0,1001.258833,0.0,99.41666667,15.735,0.10083333300000001,237.54963286666666 +2015-08-24 04:00:00,0.0,1001.283333,0.0,100.0,15.22666667,0.390666667,237.55214196666665 +2015-08-24 05:00:00,0.0,1001.160333,3.20325,100.0,14.53916667,0.200916667,237.55520861666665 +2015-08-24 06:00:00,0.0,1001.541667,34.48,100.0,14.56416667,0.047916667,237.55534799999998 +2015-08-24 07:00:00,0.0,1001.592167,133.5075,99.65833333,17.04416667,1.985333333,237.55479046666665 +2015-08-24 08:00:00,17.11407802,1001.641667,146.3833333,92.65833333,18.25416667,2.454583333,237.55660254999998 +2015-08-24 09:00:00,0.0,1001.716667,226.2333333,85.05,19.80083333,2.006916667,237.55590558333333 +2015-08-24 10:00:00,0.0,1001.5245,194.675,82.41583333,20.24833333,3.00325,237.55242074999998 +2015-08-24 11:00:00,0.0,1001.104833,312.9416667,79.535,21.13416667,3.59525,237.55492983333332 +2015-08-24 12:00:00,0.0,1000.773,146.39583330000002,79.39666667,21.43416667,3.257583333,237.5533965333333 +2015-08-24 13:00:00,0.0,1000.743667,191.1333333,80.5575,21.7275,3.324166667,237.55088743333332 +2015-08-24 14:00:00,0.0,1000.773,128.6641667,83.47166667,21.325,2.689333333,237.55019044999997 +2015-08-24 15:00:00,0.0,1000.425,90.61583333,83.9,20.97,3.802166667,237.54977228333334 +2015-08-24 16:00:00,9.472242768,1001.447667,30.56333333,83.59166667,20.14833333,2.161,237.54991168333333 +2015-08-24 17:00:00,11.34743986,1001.411167,19.62083333,92.8,18.21083333,1.336416667,237.55005106666667 +2015-08-24 18:00:00,0.0,1000.9025,30.31083333,92.875,17.48416667,2.022833333,237.55200258333332 +2015-08-24 19:00:00,0.0,1001.336333,10.22641667,90.425,17.75666667,3.546333333,237.55367531666664 +2015-08-24 20:00:00,0.0,1002.113833,0.0,88.59166667,17.13333333,2.9115833330000003,237.55381471666666 +2015-08-24 21:00:00,0.0,1002.8166669999999,0.0,87.30833333,16.8525,3.229166667,237.55534801666667 +2015-08-24 22:00:00,0.0,1002.985833,0.0,83.55,16.17333333,3.431333333,237.55660256666667 +2015-08-24 23:00:00,95.55663163,1003.561333,0.0,93.83333333,15.45833333,1.452666667,237.55980861666663 +2015-08-25 00:00:00,0.0,1003.933833,0.0,91.96666667,14.815,1.3628333330000002,237.5673358833333 +2015-08-25 01:00:00,0.0,1004.102,0.0,81.05166667,14.81916667,1.737333333,237.57291161666663 +2015-08-25 02:00:00,0.0,1004.6005,0.0,76.95916667,14.83583333,1.3325,237.57332978333338 +2015-08-25 03:00:00,0.0,1004.787833,0.0,73.455,15.22833333,1.873666667,237.57374798333333 +2015-08-25 04:00:00,0.0,1005.511833,0.0,79.13416667,14.695,1.257583333,237.5748631166667 +2015-08-25 05:00:00,0.0,1006.3795,0.721333333,84.03333333,14.56,1.362916667,237.57528130000003 +2015-08-25 06:00:00,0.0,1007.4810000000001,12.03558333,87.11666667,14.545,1.4580000000000002,237.57514190000003 +2015-08-25 07:00:00,0.0,1008.713833,51.28533333,87.175,14.51,1.028,237.57486315000003 +2015-08-25 08:00:00,0.0,1010.0315,182.6033333,82.85,16.14833333,0.978583333,237.57291160000003 +2015-08-25 09:00:00,0.0,1010.871167,319.15833330000004,79.79666667,17.82666667,1.164083333,237.57012378333332 +2015-08-25 10:00:00,0.0,1011.543167,244.275,81.48916667,17.75583333,1.5168333330000001,237.56998435 +2015-08-25 11:00:00,0.0,1012.219667,235.3666667,82.6625,17.05583333,1.255,237.5683116333333 +2015-08-25 12:00:00,0.0,1012.702,577.875,75.155,17.49583333,1.4829166669999998,237.56329344999997 +2015-08-25 13:00:00,0.0,1012.865667,322.0,71.685,18.22833333,0.778833333,237.5596692 +2015-08-25 14:00:00,0.0,1012.933833,421.08333330000005,65.45333333,19.19416667,0.96725,237.55632378333334 +2015-08-25 15:00:00,0.0,1012.867667,344.15833330000004,59.83583333,19.99666667,0.5245833329999999,237.55116621666664 +2015-08-25 16:00:00,0.0,1012.464167,266.15,57.11,19.98333333,1.154833333,237.54963286666666 +2015-08-25 17:00:00,0.0,1012.198,49.775,54.3675,19.85166667,1.8330000000000002,237.54670563333335 +2015-08-25 18:00:00,0.0,1012.184833,22.98666667,56.06416667,18.81916667,1.323916667,237.5450329 +2015-08-25 19:00:00,0.0,1012.358833,3.514333333,63.87166667,16.67083333,0.8320833329999999,237.54210559999999 +2015-08-25 20:00:00,0.0,1012.710833,0.0,80.98833333,15.99416667,0.86525,237.54377835000003 +2015-08-25 21:00:00,0.0,1012.865167,0.0,86.8975,15.76083333,0.998,237.54531168333335 +2015-08-25 22:00:00,0.0,1012.842667,0.0,76.86416667,15.62,1.1278333329999999,237.54656621666666 +2015-08-25 23:00:00,0.0,1013.0515,0.0,63.73666667,16.3625,0.5870000000000001,237.546845 +2015-08-26 00:00:00,0.0,1012.9989999999999,0.0,63.77666667,17.82083333,1.057083333,237.54670561666669 +2015-08-26 01:00:00,0.0,1012.681333,0.0,67.83583333,15.88583333,0.414916667,237.5492146833333 +2015-08-26 02:00:00,0.0,1012.4755,0.0,69.48416667,14.38666667,0.18925,237.55186319999999 +2015-08-26 03:00:00,0.0,1012.532333,0.0,66.87416667,15.225,1.001583333,237.55116621666664 +2015-08-26 04:00:00,0.0,1012.367667,0.0,72.45166667,13.71666667,0.6303333329999999,237.55283891666667 +2015-08-26 05:00:00,0.0,1012.340167,3.320333333,84.2775,12.19583333,0.272666667,237.55437224999994 +2015-08-26 06:00:00,0.0,1012.2505,24.78583333,91.675,14.44833333,0.915,237.55576618333336 +2015-08-26 07:00:00,0.0,1012.711833,129.3291667,80.31583333,16.99833333,2.4529166669999998,237.5552086 +2015-08-26 08:00:00,0.0,1013.336333,159.3425,68.1725,19.15666667,2.8245,237.55395406666665 +2015-08-26 09:00:00,0.0,1013.4985,273.9166667,65.93916667,20.55666667,1.564583333,237.55228139999997 +2015-08-26 10:00:00,0.0,1013.105333,475.84166669999996,62.63,22.13166667,2.64925,237.54865711666665 +2015-08-26 11:00:00,0.0,1012.6386669999999,530.2083333,60.1175,23.425,2.5235,237.54419653333335 +2015-08-26 12:00:00,0.0,1011.914167,557.1583333,55.5725,24.8775,3.422916667,237.53625108333333 +2015-08-26 13:00:00,0.0,1011.355833,566.925,51.67416667,25.53166667,3.427083333,237.53025714999998 +2015-08-26 14:00:00,0.0,1010.964667,527.35,49.47166667,26.11916667,2.653083333,237.52523899999997 +2015-08-26 15:00:00,0.0,1010.5725,439.78333330000004,48.07416667,26.5325,3.205166667,237.51896624999998 +2015-08-26 16:00:00,0.0,1009.879333,316.0416667,47.53583333,26.66916667,3.2873333330000003,237.5174329333333 +2015-08-26 17:00:00,0.0,1009.128833,60.265,49.59166667,25.68083333,2.64325,237.51799053333332 +2015-08-26 18:00:00,0.0,1008.5239999999999,49.26083333,51.20833333,24.78416667,1.36075,237.5161783833333 +2015-08-26 19:00:00,0.0,1008.390667,6.5745,75.5875,20.2225,0.0845,237.51534203333333 +2015-08-26 20:00:00,0.0,1008.265167,0.0,88.15,16.90916667,0.08025,237.51715414999998 +2015-08-26 21:00:00,0.0,1007.882833,0.0,86.9575,15.765,0.037583333,237.52022081666667 +2015-08-26 22:00:00,0.0,1007.5235,0.0,63.025,15.12416667,0.01275,237.52077838333332 +2015-08-26 23:00:00,0.0,1007.231833,0.0,83.42,14.51833333,0.0335,237.52356625000002 +2015-08-27 00:00:00,0.0,1006.838167,0.0,92.6,14.0675,0.016833333,237.52635415 +2015-08-27 01:00:00,0.0,1006.666667,0.0,95.00833333,13.67416667,0.121083333,237.52942080000003 +2015-08-27 02:00:00,0.0,1006.482833,0.0,97.90833333,13.32083333,0.276333333,237.53304505000003 +2015-08-27 03:00:00,0.0,1006.3989999999999,0.0,96.91416667,13.55166667,0.13075,237.53499655 +2015-08-27 04:00:00,0.0,1006.621667,0.0,62.62,14.425,0.172083333,237.5362511 +2015-08-27 05:00:00,0.0,1007.1005,1.7921666669999998,63.0875,18.56,0.23625,237.53583290000003 +2015-08-27 06:00:00,0.0,1007.342667,30.56,65.16666667,20.58583333,0.39541666700000005,237.53527535 +2015-08-27 07:00:00,0.0,1007.710333,65.41333333,66.76583333,21.10833333,0.44358333299999997,237.53485716666668 +2015-08-27 08:00:00,0.0,1008.1535,69.665,67.61,21.03416667,0.434833333,237.53262686666667 +2015-08-27 09:00:00,0.0,1008.852,65.63083333,70.15166667,20.91583333,0.34066666700000003,237.52997836666668 +2015-08-27 10:00:00,0.0,1008.780333,56.7175,72.3975,20.40666667,0.21600000000000003,237.52788748333333 +2015-08-27 11:00:00,0.0,1008.416667,156.9175,73.4375,20.84583333,0.236333333,237.5250996 +2015-08-27 12:00:00,0.0,1007.802833,282.59166669999996,70.4275,22.27916667,0.514416667,237.52231171666665 +2015-08-27 13:00:00,0.0,1007.029333,355.8333333,66.10416667,24.035,0.7445,237.5185480833333 +2015-08-27 14:00:00,0.0,1006.314667,145.025,69.1175,23.03666667,1.4405,237.51659658333332 +2015-08-27 15:00:00,0.0,1005.8235,209.1416667,71.16,22.84416667,1.6511666669999998,237.51450566666665 +2015-08-27 16:00:00,0.0,1005.439667,103.8375,73.03,22.96833333,0.8865,237.51325111666665 +2015-08-27 17:00:00,0.0,1005.318667,39.8275,77.68333333,22.08,0.621833333,237.51325111666665 +2015-08-27 18:00:00,2.620075632,1006.312833,8.1015,86.69666667,20.70083333,1.214666667,237.51283293333333 +2015-08-27 19:00:00,14.47957421,1006.791667,0.776666667,97.98333333,18.71583333,0.09699999999999999,237.5142269 +2015-08-27 20:00:00,16.83936336,1006.590167,0.0,100.0,18.28583333,0.009166667,237.51617839999997 +2015-08-27 21:00:00,29.00830078,1006.4765,0.0,99.86666667,18.09416667,0.225833333,237.52091778333332 +2015-08-27 22:00:00,14.62399814,1006.719167,0.0,99.79166667,17.89333333,0.268,237.5253783666667 +2015-08-27 23:00:00,55.41314448,1007.544667,0.0,99.95833333,16.30166667,1.265333333,237.53095413333335 +2015-08-28 00:00:00,72.38977939,1008.144667,0.0,100.0,15.505,0.167333333,237.53903895 +2015-08-28 01:00:00,24.4349436,1008.594667,0.0,100.0,14.88583333,0.373,237.55019046666666 +2015-08-28 02:00:00,25.24969603,1009.3025,0.0,100.0,14.32416667,0.545166667,237.55688138333332 +2015-08-28 03:00:00,4.881981912,1009.684833,0.0,100.0,14.0275,0.258083333,237.56203891666664 +2015-08-28 04:00:00,0.0,1010.204,0.0,100.0,13.8825,0.096083333,237.56594195 +2015-08-28 05:00:00,0.0,1010.768167,0.658416667,100.0,14.025,0.35725,237.56928739999998 +2015-08-28 06:00:00,0.0,1011.270667,12.52975,100.0,14.025,0.40625,237.57179648333332 +2015-08-28 07:00:00,2.629352304,1011.8853330000001,38.1075,99.94166667,14.23416667,0.57275,237.57360858333334 +2015-08-28 08:00:00,0.0,1012.512333,98.75583333,97.55,14.74416667,0.35975,237.57472374999998 +2015-08-28 09:00:00,0.0,1012.967667,185.775,90.775,15.63166667,0.481833333,237.57528131666672 +2015-08-28 10:00:00,2.4815138880000003,1013.420167,275.4583333,82.06666667,17.22416667,0.60325,237.57723281666668 +2015-08-28 11:00:00,0.0,1013.985333,247.6333333,82.895,18.52333333,0.466916667,237.57667525 +2015-08-28 12:00:00,0.0,1014.453,330.95,82.16166667,19.18083333,0.519083333,237.57723280000002 +2015-08-28 13:00:00,0.0,1014.741667,374.40833330000004,78.94333333,19.83666667,0.833666667,237.57500253333333 +2015-08-28 14:00:00,0.0,1014.9176669999999,357.4916667,78.3425,20.2575,1.039833333,237.57388736666667 +2015-08-28 15:00:00,0.0,1014.9505,286.025,77.10166667,20.38166667,1.159166667,237.57249343333334 +2015-08-28 16:00:00,0.0,1015.267167,140.6333333,80.31583333,20.37583333,0.436,237.57263283333336 +2015-08-28 17:00:00,0.0,1015.326,91.63833333,78.89166667,19.85083333,0.5920000000000001,237.57388736666667 +2015-08-28 18:00:00,0.0,1015.6025,23.855,83.93083333,19.23333333,0.255166667,237.57360858333334 +2015-08-28 19:00:00,0.0,1016.161333,3.309916667,95.075,17.00166667,0.0445,237.5737479833333 +2015-08-28 20:00:00,0.0,1016.770667,0.0,99.70833333,14.83833333,0.097416667,237.5748631166667 +2015-08-28 21:00:00,0.0,1017.443667,0.0,100.0,13.58583333,0.054000000000000006,237.57653584999994 +2015-08-28 22:00:00,0.0,1017.7765,0.0,100.0,12.64166667,0.009833333,237.57932373333335 +2015-08-28 23:00:00,0.0,1018.0343330000001,0.0,100.0,11.75583333,0.023833332999999998,237.58029950000002 +2015-08-29 00:00:00,0.0,1018.234833,0.0,100.0,10.93,0.000166667,237.5821116 +2015-08-29 01:00:00,0.0,1018.5495,0.0,100.0,10.80833333,0.12658333300000002,237.58336613333336 +2015-08-29 02:00:00,0.0,1018.5505,0.0,100.0,11.64916667,0.092333333,237.58531765 +2015-08-29 03:00:00,0.0,1018.634333,0.0,100.0,11.80833333,0.121833333,237.58545704999997 +2015-08-29 04:00:00,0.0,1018.985333,0.0,100.0,11.85416667,0.03125,237.58587523333335 +2015-08-29 05:00:00,0.0,1019.0755,1.495,100.0,11.84166667,0.454583333,237.586851 +2015-08-29 06:00:00,0.0,1019.3005,20.45583333,100.0,11.755,0.282583333,237.5874086 +2015-08-29 07:00:00,0.0,1019.4333330000001,74.02916667,100.0,12.31333333,0.33866666700000003,237.58838434999998 +2015-08-29 08:00:00,0.0,1019.442667,118.85,99.875,13.2675,0.626416667,237.59005705 +2015-08-29 09:00:00,0.0,1019.516667,275.9216667,92.00833333,16.27166667,0.791583333,237.58922071666666 +2015-08-29 10:00:00,0.0,1019.248,479.6,80.94666667,19.635,1.091916667,237.58922068333334 +2015-08-29 11:00:00,0.0,1018.915167,535.9833333,76.34333333,22.5475,1.36625,237.58754798333334 +2015-08-29 12:00:00,0.0,1018.472,560.775,75.94083333,24.295,0.94575,237.58448128333336 +2015-08-29 13:00:00,0.0,1018.006333,566.6083332999999,71.35083333,25.4925,1.068833333,237.58099645000001 +2015-08-29 14:00:00,0.0,1017.4126669999999,507.125,65.83,26.6225,1.076333333,237.5758389 +2015-08-29 15:00:00,0.0,1016.8735,421.04166669999995,64.75,27.5075,0.938333333,237.57193586666668 +2015-08-29 16:00:00,0.0,1016.279333,285.10583330000003,64.06333333,27.8,0.9470000000000001,237.56900859999996 +2015-08-29 17:00:00,0.0,1015.6386669999999,33.3975,72.84583333,27.30833333,0.765833333,237.5680328333333 +2015-08-29 18:00:00,0.0,1015.509833,16.88566667,83.145,25.87666667,0.6805,237.56608135 +2015-08-29 19:00:00,0.0,1015.584833,1.8999166669999998,95.875,21.92916667,0.0315,237.56733588333336 +2015-08-29 20:00:00,0.0,1015.917167,0.0,99.575,19.31416667,0.023166667000000002,237.56789345 +2015-08-29 21:00:00,0.0,1015.840167,0.0,100.0,18.26833333,0.068416667,237.56942676666662 +2015-08-29 22:00:00,0.0,1015.8166669999999,0.0,100.0,17.3675,0.007166667,237.57082071666665 +2015-08-29 23:00:00,0.0,1015.5823330000001,0.0,100.0,16.90583333,0.006166667,237.57249343333334 +2015-08-30 00:00:00,0.0,1015.3235,0.0,100.0,16.36666667,0.01475,237.57430555 +2015-08-30 01:00:00,0.0,1015.2245,0.0,100.0,16.36666667,0.025083333,237.57611765000001 +2015-08-30 02:00:00,0.0,1015.0735,0.0,100.0,16.91833333,0.036833332999999996,237.57792978333336 +2015-08-30 03:00:00,0.0,1014.655333,0.0,100.0,16.70916667,0.096,237.5798813 +2015-08-30 04:00:00,0.0,1014.15,0.0,100.0,16.00666667,0.063666667,237.58378431666668 +2015-08-30 05:00:00,0.0,1014.1916669999999,1.734666667,100.0,15.59916667,0.0,237.58364491666669 +2015-08-30 06:00:00,0.0,1014.234833,18.49725,100.0,15.89333333,0.0,237.5857358333333 +2015-08-30 07:00:00,0.0,1014.634833,101.9983333,100.0,18.44583333,0.179,237.5842025166667 +2015-08-30 08:00:00,0.0,1014.909833,140.8016667,95.95833333,20.85083333,0.7000833329999999,237.5840631166667 +2015-08-30 09:00:00,0.0,1014.9235,249.2183333,84.81,24.35833333,0.58275,237.58476008333335 +2015-08-30 10:00:00,0.0,1014.673,470.025,75.56583333,26.6075,0.9834166670000001,237.5839237 +2015-08-30 11:00:00,0.0,1014.264667,531.6583333000001,70.77416667,28.38833333,1.38175,237.5802995 +2015-08-30 12:00:00,0.0,1013.7396669999999,555.3833333,64.9675,29.83916667,1.660166667,237.5763964833333 +2015-08-30 13:00:00,0.0,1013.105333,546.5083333,55.95416667,31.4675,2.121333333,237.57165709999995 +2015-08-30 14:00:00,0.0,1012.7735,493.425,43.88583333,32.98416667,1.837666667,237.5649662 +2015-08-30 15:00:00,0.0,1012.248,305.8,48.14666667,32.23916667,0.276333333,237.56120256666665 +2015-08-30 16:00:00,0.0,1011.988667,185.9,53.12583333,31.55083333,0.625833333,237.55632379999997 +2015-08-30 17:00:00,0.0,1011.716667,90.67666667,65.175,30.72333333,0.41858333299999995,237.55353589999996 +2015-08-30 18:00:00,0.0,1011.7260000000001,28.73916667,78.11083333,28.23416667,0.41825,237.55214196666665 +2015-08-30 19:00:00,0.0,1012.0269999999999,1.713416667,88.925,23.7825,0.08800000000000001,237.55005106666667 +2015-08-30 20:00:00,0.0,1012.393167,0.0,94.28333333,22.30833333,0.1695,237.55046921666667 +2015-08-30 21:00:00,0.0,1012.363667,0.0,97.075,20.23333333,0.080833333,237.5525601333333 +2015-08-30 22:00:00,0.0,1011.655333,0.0,99.43333333,18.97416667,0.03675,237.55604498333332 +2015-08-30 23:00:00,0.0,1011.584833,0.0,100.0,17.8975,0.025583333,237.5572995166667 +2015-08-31 00:00:00,0.0,1011.557333,0.0,100.0,17.3775,0.023833332999999998,237.5592510333333 +2015-08-31 01:00:00,0.0,1011.2225,0.0,100.0,16.7275,0.01775,237.56259649999996 +2015-08-31 02:00:00,0.0,1010.9495,0.0,100.0,16.42833333,0.028916667000000004,237.56357224999996 +2015-08-31 03:00:00,0.0,1010.908333,0.0,100.0,16.79083333,0.0,237.56552376666664 +2015-08-31 04:00:00,0.0,1010.630833,0.0,100.0,16.61916667,0.02075,237.56649953333329 +2015-08-31 05:00:00,0.0,1010.281333,1.512083333,100.0,16.24666667,0.064666667,237.5698449833333 +2015-08-31 06:00:00,0.0,1010.033833,22.06975,100.0,16.39833333,0.028083333,237.5708207333333 +2015-08-31 07:00:00,0.0,1010.0235,97.19166667,100.0,19.02666667,0.241916667,237.56984498333335 +2015-08-31 08:00:00,2.7425940719999997,1009.725,148.89333330000002,93.55,21.39833333,0.8019166670000001,237.57179648333332 +2015-08-31 09:00:00,0.0,1009.666167,255.79166669999998,84.85666667,24.54666667,0.7050833329999999,237.5722146666666 +2015-08-31 10:00:00,0.0,1009.346,457.5666666999999,74.005,27.63583333,0.85725,237.5712389 +2015-08-31 11:00:00,0.0,1008.664167,534.9916667,50.34166667,30.1175,0.88,237.55978326 +2015-08-31 12:00:00,0.0,1008.105333,557.8166667,41.3375,31.14416667,1.3845833330000001,237.5498796833334 +2015-08-31 13:00:00,0.0,1007.6386669999999,547.8833333,34.16,32.09,1.78975,237.54367534999997 +2015-08-31 14:00:00,0.0,1007.0225,495.9,34.15333333,32.21083333,1.96775,237.53607501666667 +2015-08-31 15:00:00,0.0,1006.2538529999999,409.05,34.33916667,32.45833333,1.5295833330000002,237.52707873333335 +2015-08-31 16:00:00,0.0,1005.597667,237.5358333,35.78416667,32.25833333,1.922916667,237.52149486666667 +2015-08-31 17:00:00,0.0,1005.2625830000001,35.7875,34.2975,31.0475,1.0240833329999999,237.5157558833333 +2015-08-31 18:00:00,0.0,1004.992833,19.24025,38.20416667,28.405,0.43541666700000003,237.5124986 +2015-08-31 19:00:00,0.0,1005.193417,1.5821666669999999,61.6525,23.33583333,0.016,237.51001688333335 +2015-08-31 20:00:00,0.0,1005.12325,0.0,81.91583333,20.63916667,0.169833333,237.51001686666666 +2015-08-31 21:00:00,0.0,1005.538583,0.0,56.84416667,20.07416667,0.21791666699999998,237.50784536666666 +2015-08-31 22:00:00,0.0,1005.791667,0.0,67.375,20.65,0.096416667,237.50613915 +2015-08-31 23:00:00,0.0,1005.966667,0.0,81.015,19.80416667,0.145833333,237.50846579999998 +2015-01-09 00:00:00,0.0,1006.270167,0.0,90.19166667,19.89583333,0.110583333, +2015-01-09 01:00:00,0.0,1006.2715,0.0,95.45833333,18.80666667,0.1125, +2015-01-09 02:00:00,0.0,1005.891083,0.0,98.325,18.0675,0.059416667, +2015-01-09 03:00:00,0.0,1005.977333,0.0,100.0,16.89083333,0.05225, +2015-01-09 04:00:00,0.0,1005.922667,0.0,100.0,17.73583333,0.10825, +2015-01-09 05:00:00,0.0,1005.708333,0.5781666670000001,100.0,18.18833333,0.11616666699999999, +2015-01-09 06:00:00,32.36792801,1005.6560000000001,28.85433333,99.96666667,18.66916667,0.34033333299999996, +2015-01-09 07:00:00,2.448991752,1005.1215,105.86416670000001,99.20833333,19.6175,0.161666667, +2015-01-09 08:00:00,0.0,1004.73275,158.54166669999998,95.00833333,20.76833333,0.310666667, +2015-01-09 09:00:00,0.0,1004.775583,163.4,91.08333333,21.42583333,0.650083333, +2015-01-09 10:00:00,29.03892847,1004.572667,96.79666667,91.625,21.80583333,0.738833333, +2015-01-09 11:00:00,113.9400007,1004.770167,76.07333333,96.60833333,18.71333333,1.63575, +2015-01-09 12:00:00,57.29286343,1005.323083,54.00333333,95.95833333,17.86833333,1.0525, +2015-01-09 13:00:00,161.348248,1006.479667,70.99916667,99.925,16.65416667,1.20275, +2015-01-09 14:00:00,27.27392335,1007.355833,124.9725,98.18333333,16.90083333,1.288333333, +2015-01-09 15:00:00,2.827803072,1008.22075,94.1325,96.04166667,16.8575,1.480166667, +2015-01-09 16:00:00,0.0,1008.912417,77.71833333,95.13333333,16.8575,1.031583333, +2015-01-09 17:00:00,0.0,1009.654667,26.50583333,96.00833333,16.965,0.517083333, +2015-01-09 18:00:00,16.9402919,1010.3285,47.71333333,96.49166667,15.82,1.4696666669999998, +2015-01-09 19:00:00,0.0,1011.205833,2.2294166669999997,96.35833333,15.2475,1.188, +2015-01-09 20:00:00,0.0,1011.8939999999999,0.0,97.94166667,13.53416667,0.02475, +2015-01-09 21:00:00,0.0,1012.369583,0.0,100.0,12.5725,0.082416667, +2015-01-09 22:00:00,0.0,1012.752917,0.0,100.0,12.1875,0.091833333, +2015-01-09 23:00:00,0.0,1012.991667,0.0,100.0,11.9025,0.01275, +2015-02-09 00:00:00,0.0,1013.2,0.0,100.0,11.78166667,0.19725, +2015-02-09 01:00:00,0.0,1013.461833,0.0,100.0,11.62833333,0.038166667, +2015-02-09 02:00:00,0.0,1013.5905,0.0,100.0,11.905,0.166583333, +2015-02-09 03:00:00,0.0,1013.499417,0.0,100.0,10.97916667,0.010083333, +2015-02-09 04:00:00,2.4050227680000003,1013.54225,0.0,100.0,10.30583333,0.027999999999999997, +2015-02-09 05:00:00,0.0,1013.516667,0.9,100.0,11.33166667,0.21483333300000002, +2015-02-09 06:00:00,0.0,1013.785083,18.36275,100.0,10.875,0.43908333299999996, +2015-02-09 07:00:00,0.0,1013.867833,70.075,100.0,11.36916667,0.2475, +2015-02-09 08:00:00,0.0,1013.966083,124.75,100.0,12.17333333,0.24175, +2015-02-09 09:00:00,0.0,1013.925583,247.0916667,91.09166667,14.25083333,0.6466666670000001, +2015-02-09 10:00:00,0.0,1013.78875,460.775,78.28666667,16.32833333,1.073, +2015-02-09 11:00:00,0.0,1013.497667,438.5166666999999,74.38166667,16.96583333,0.863916667, +2015-02-09 12:00:00,0.0,1012.830417,514.1,70.27583333,17.90583333,0.9794166670000001, +2015-02-09 13:00:00,0.0,1012.36375,398.09166669999996,64.90666667,18.94666667,0.791166667, +2015-02-09 14:00:00,0.0,1011.931583,303.8,64.19333333,18.78083333,1.142916667, +2015-02-09 15:00:00,0.0,1011.539917,309.5833333,67.38833333,19.34,1.6776666669999998, +2015-02-09 16:00:00,0.0,1011.222083,159.945,66.69583333,19.12333333,1.581833333, +2015-02-09 17:00:00,0.0,1010.95,72.73,70.30166667,18.55083333,1.242083333, +2015-02-09 18:00:00,0.0,1010.991667,25.53416667,84.07833333,16.95833333,0.363, +2015-02-09 19:00:00,0.0,1011.302917,1.044,91.48333333,14.87583333,0.093166667, +2015-02-09 20:00:00,0.0,1011.458333,0.0,95.74166667,13.8575,0.061833333, +2015-02-09 21:00:00,0.0,1011.2905,0.0,97.71666667,12.92166667,0.04175, +2015-02-09 22:00:00,0.0,1010.904833,0.0,99.71666667,12.93,0.135416667, +2015-02-09 23:00:00,0.0,1010.8,0.0,99.99166667,11.91916667,0.129833333, +2015-03-09 00:00:00,0.0,1010.591083,0.0,100.0,11.25333333,0.1755,238.04945266666667 +2015-03-09 01:00:00,0.0,1010.397083,0.0,100.0,10.4475,0.022166667,238.04911933333332 +2015-03-09 02:00:00,0.0,1010.27675,0.0,100.0,10.45916667,0.1665,238.05013599999998 +2015-03-09 03:00:00,0.0,1010.38275,0.0,100.0,10.58416667,0.15425,238.04945266666664 +2015-03-09 04:00:00,0.0,1010.072083,0.0,100.0,9.831666667,0.068916667,238.049786 +2015-03-09 05:00:00,0.0,1009.810083,0.721,100.0,9.3925,0.09325,238.05083599999998 +2015-03-09 06:00:00,0.0,1010.195167,20.00058333,100.0,9.063333333,0.23925,238.051886 +2015-03-09 07:00:00,0.0,1010.48275,127.4975,100.0,11.1925,0.53325,238.051886 +2015-03-09 08:00:00,0.0,1010.516667,160.2333333,92.125,14.16583333,0.393583333,238.05423599999997 +2015-03-09 09:00:00,0.0,1010.718417,238.6083333,81.0925,16.06833333,0.729916667,238.073086 +2015-03-09 10:00:00,0.0,1010.595333,392.3,74.56083333,17.57,0.789416667,238.05220266666666 +2015-03-09 11:00:00,0.0,1010.06375,328.525,70.47333333,17.90416667,0.8101666670000001,238.05048599999998 +2015-03-09 12:00:00,0.0,1009.825,453.59166669999996,64.34583333,19.0525,0.5479166670000001,238.05221933333334 +2015-03-09 13:00:00,0.0,1009.70775,416.8666667,60.56083333,19.59416667,0.679,238.051886 +2015-03-09 14:00:00,0.0,1009.213167,363.3583333,58.54083333,19.43083333,0.804916667,238.05221933333334 +2015-03-09 15:00:00,0.0,1008.883917,297.125,55.92166667,19.19916667,0.872916667,238.05221933333334 +2015-03-09 16:00:00,0.0,1008.89825,236.3775,50.55416667,19.76333333,0.952333333,238.05255266666666 +2015-03-09 17:00:00,0.0,1008.801167,51.6875,53.02583333,18.78666667,1.124,238.05321933333332 +2015-03-09 18:00:00,0.0,1009.016667,18.28633333,59.13,17.32666667,0.779333333,238.05388599999995 +2015-03-09 19:00:00,0.0,1009.320167,1.086166667,78.22833333,13.54166667,0.09475,238.05388599999995 +2015-03-09 20:00:00,0.0,1009.8285,0.0,92.00833333,10.98583333,0.043833332999999995,238.05388599999995 +2015-03-09 21:00:00,0.0,1010.141667,0.0,90.65,10.94,0.08533333300000001,238.055286 +2015-03-09 22:00:00,0.0,1010.38625,0.0,92.30833333,10.0725,0.001833333,238.05493599999997 +2015-03-09 23:00:00,0.0,1010.735667,0.0,91.71666667,9.6375,0.064666667,238.05563600000002 +2015-04-09 00:00:00,0.0,1010.847667,0.0,89.85,10.23083333,0.009666667,238.04395449999996 +2015-04-09 01:00:00,0.0,1010.675583,0.0,96.45833333,10.5975,0.006083333000000001,238.04395449999996 +2015-04-09 02:00:00,0.0,1010.716083,0.0,98.35833333,10.86166667,0.033416667000000004,238.04395449999996 +2015-04-09 03:00:00,0.0,1010.658333,0.0,99.53333333,10.62416667,0.037000000000000005,238.04395449999996 +2015-04-09 04:00:00,0.0,1010.32325,0.0,100.0,10.56333333,0.0,238.04390523333328 +2015-04-09 05:00:00,0.0,1010.419,0.6965,95.58333333,10.47916667,0.048916667000000004,238.04392986666664 +2015-04-09 06:00:00,0.0,1010.6095,12.80133333,95.50833333,9.699166667,0.005,238.04392986666664 +2015-04-09 07:00:00,0.0,1010.99225,76.6925,92.29166667,11.72916667,0.280666667,238.04395449999996 +2015-04-09 08:00:00,0.0,1011.177333,94.56083333,91.2,13.04416667,0.26025,238.0440062333333 +2015-04-09 09:00:00,0.0,1011.435083,251.85416669999998,76.08916667,14.69583333,0.513,238.04405796666666 +2015-04-09 10:00:00,0.0,1011.607167,207.185,68.8475,15.80666667,0.752166667,238.0441097 +2015-04-09 11:00:00,0.0,1011.366083,463.09166669999996,63.435,16.47166667,0.6469166670000001,238.04403209999998 +2015-04-09 12:00:00,0.0,1011.416667,374.03333330000004,62.16416667,16.51583333,1.195416667,238.04408383333336 +2015-04-09 13:00:00,0.0,1011.382167,210.67583330000002,67.79583333,16.06333333,0.68375,238.04405796666666 +2015-04-09 14:00:00,0.0,1011.074417,243.5866667,66.98166667,15.45333333,0.937,238.0441097 +2015-04-09 15:00:00,0.0,1010.712583,263.3916667,64.465,16.2925,0.842583333,238.0441097 +2015-04-09 16:00:00,0.0,1010.079833,147.075,60.915,16.46833333,0.651083333,238.04403209999998 +2015-04-09 17:00:00,0.0,1009.966667,63.78916667,61.38333333,15.5625,0.42208333299999995,238.0440062333333 +2015-04-09 18:00:00,0.0,1009.858333,15.73758333,61.69333333,14.14083333,0.137583333,238.0439311 +2015-04-09 19:00:00,0.0,1009.9695830000001,0.9205,73.44833333,11.4075,0.0035833329999999997,238.04383133333332 +2015-04-09 20:00:00,0.0,1010.232167,0.0,89.99166667,9.163333332999999,0.08733333300000001,238.04375496666663 +2015-04-09 21:00:00,0.0,1010.05,0.0,94.43333333,8.179666667000001,0.010416667,238.04367736666669 +2015-04-09 22:00:00,0.0,1010.402917,0.0,84.30833333,7.300583333,0.070833333,238.04365150000004 +2015-04-09 23:00:00,0.0,1010.5155,0.0,86.9,8.381583333,0.159583333,238.04365150000004 +2015-05-09 00:00:00,0.0,1010.391083,0.0,88.89166667,8.3245,0.063416667,238.02477676666663 +2015-05-09 01:00:00,0.0,1010.258333,0.0,88.96666667,7.70325,0.11841666699999999,238.02701765000003 +2015-05-09 02:00:00,0.0,1009.989917,0.0,88.85,8.980416667,0.18591666699999998,238.02667291666668 +2015-05-09 03:00:00,0.0,1009.7560000000001,0.0,88.29166667,10.36083333,0.251333333,238.02684531666668 +2015-05-09 04:00:00,0.0,1009.5583330000001,0.0,89.84166667,10.175,0.288666667,238.0271900666667 +2015-05-09 05:00:00,0.0,1009.752917,0.618166667,90.00833333,10.185,0.290166667,238.02770718333338 +2015-05-09 06:00:00,0.0,1010.477917,7.8143333329999995,90.575,10.9525,0.286666667,238.02615578333337 +2015-05-09 07:00:00,0.0,1010.90175,37.90333333,92.01666667,11.53416667,0.2535,238.02425965 +2015-05-09 08:00:00,0.0,1011.00175,107.9625,88.03333333,12.97416667,0.645,238.02391486666667 +2015-05-09 09:00:00,0.0,1011.40175,173.88416669999998,82.94166667,15.22833333,0.572333333,238.02081208333334 +2015-05-09 10:00:00,0.0,1011.591667,368.575,81.54666667,15.71916667,0.654833333,238.02081210000003 +2015-05-09 11:00:00,0.0,1011.601167,279.71666669999996,86.05833333,14.975,0.557583333,238.01960544999997 +2015-05-09 12:00:00,0.0,1011.733333,256.675,82.35833333,16.195,0.881583333,238.01874358333336 +2015-05-09 13:00:00,0.0,1011.5905,301.71666669999996,76.0675,16.12833333,1.173833333,238.01908831666665 +2015-05-09 14:00:00,0.0,1011.48275,377.2416667,69.165,17.10333333,1.252166667,238.01546841666664 +2015-05-09 15:00:00,0.0,1011.25,191.71,66.28416667,16.88416667,1.6251666669999998,238.0151236833333 +2015-05-09 16:00:00,9.244115184,1011.60175,32.15166667,83.96666667,14.09083333,2.376083333,238.01633031666665 +2015-05-09 17:00:00,2.605460328,1011.76725,20.23083333,91.2,13.07583333,0.7180833329999999,238.01770931666667 +2015-05-09 18:00:00,0.0,1011.73275,12.86933333,90.43333333,13.07,0.578666667,238.01857121666663 +2015-05-09 19:00:00,0.0,1011.885667,0.563583333,90.475,12.685,0.626,238.02029496666668 +2015-05-09 20:00:00,38.33624234,1012.452917,0.0,91.83333333,12.15916667,1.1665,238.02046736666668 +2015-05-09 21:00:00,0.0,1012.87675,0.0,90.59166667,11.345,0.618,238.02029498333332 +2015-05-09 22:00:00,0.0,1013.23625,0.0,90.2,10.90833333,1.295666667,238.02081209999997 +2015-05-09 23:00:00,0.0,1013.585083,0.0,91.625,10.24583333,0.790416667,238.02081209999997 +2015-06-09 00:00:00,0.0,1013.793417,0.0,91.65833333,9.378333332999999,0.181166667,237.71605015000003 +2015-06-09 01:00:00,0.0,1013.966667,0.0,93.44166667,9.248333333,0.11808333300000001,237.71863581666665 +2015-06-09 02:00:00,0.0,1014.276167,0.0,93.675,9.065,0.097166667,237.72397949999996 +2015-06-09 03:00:00,0.0,1014.193417,0.0,95.71666667,8.0605,0.034333333,237.72863365 +2015-06-09 04:00:00,0.0,1014.5189999999999,0.0,93.98333333,7.777416667000001,0.08666666699999999,237.73001266666668 +2015-06-09 05:00:00,0.0,1015.03625,0.692333333,94.55833333,7.725916667000001,0.060416667,237.7339773333333 +2015-06-09 06:00:00,0.0,1015.6785,28.77483333,93.48333333,8.411583333,0.18633333300000002,237.73208118333332 +2015-06-09 07:00:00,0.0,1016.194583,62.895,90.69166667,10.56666667,0.90525,237.73070214999998 +2015-06-09 08:00:00,0.0,1016.770167,143.725,82.78583333,11.285,1.367833333,237.72690988333332 +2015-06-09 09:00:00,0.0,1017.368417,224.075,77.24083333,12.01416667,2.0580000000000003,237.71760156666667 +2015-06-09 10:00:00,0.0,1017.7285,244.7166667,72.34833333,13.4625,1.8964166669999998,237.7079484666667 +2015-06-09 11:00:00,0.0,1017.983333,233.8,70.73833333,13.92583333,2.613916667,237.70294953333334 +2015-06-09 12:00:00,0.0,1018.2595,276.525,68.91083333,14.4625,2.923166667,237.70036388333332 +2015-06-09 13:00:00,0.0,1018.402917,241.85,69.61083333,15.1075,1.8591666669999998,237.6977782166667 +2015-06-09 14:00:00,0.0,1018.77675,352.3916667,70.71416667,15.64583333,1.7230833330000002,237.6963992 +2015-06-09 15:00:00,0.0,1018.814917,151.6675,71.33916667,14.4375,1.6398333330000001,237.69329645000002 +2015-06-09 16:00:00,22.57974106,1019.002333,48.38333333,77.07,13.07166667,1.333833333,237.69295168333335 +2015-06-09 17:00:00,0.0,1019.108333,43.29333333,78.2875,12.52,0.785833333,237.69277929999998 +2015-06-09 18:00:00,0.0,1019.135083,12.19408333,79.95333333,12.61,0.7104166670000001,237.69174505 +2015-06-09 19:00:00,0.0,1019.660667,0.691416667,83.325,11.83166667,0.349,237.69140030000003 +2015-06-09 20:00:00,0.0,1020.118417,0.0,86.98333333,11.0525,0.250166667,237.69398593333332 +2015-06-09 21:00:00,0.0,1020.031583,0.0,90.9,9.971666667000001,0.326,237.6972610833333 +2015-06-09 22:00:00,0.0,1020.19575,0.0,87.475,10.90583333,0.431333333,237.70329429999995 +2015-06-09 23:00:00,0.0,1020.324417,0.0,86.625,11.39666667,0.551083333,237.70605231666664 +2015-07-09 00:00:00,0.0,1020.19825,0.0,87.90833333,11.29333333,0.47316666700000004,237.54921471666668 +2015-07-09 01:00:00,0.0,1020.041667,0.0,88.33333333,11.2775,0.41066666700000004,237.55451168333332 +2015-07-09 02:00:00,0.0,1019.705417,0.0,89.01666667,11.32333333,0.232333333,237.5582752833333 +2015-07-09 03:00:00,0.0,1019.313167,0.0,93.225,11.19,0.316166667,237.5631540833333 +2015-07-09 04:00:00,0.0,1018.966667,0.0,95.20833333,11.0875,0.33025,237.56524496666665 +2015-07-09 05:00:00,0.0,1018.730417,0.301083333,95.4,11.135,0.22108333300000002,237.56775405 +2015-07-09 06:00:00,4.899031992,1018.72675,10.96375,94.69166667,11.27,0.176333333,237.56817226666666 +2015-07-09 07:00:00,0.0,1019.018417,53.69166667,94.94166667,11.83416667,0.313833333,237.5663601166667 +2015-07-09 08:00:00,0.0,1019.43625,69.41083333,92.575,12.6125,0.540166667,237.56357224999996 +2015-07-09 09:00:00,0.0,1019.8535,113.14916670000001,90.44166667,13.63666667,0.858,237.55897225 +2015-07-09 10:00:00,0.0,1020.226167,377.925,86.975,15.18166667,0.6678333329999999,237.5493541 +2015-07-09 11:00:00,0.0,1020.2905,323.09166669999996,85.46666667,15.5075,1.548,237.53917835000001 +2015-07-09 12:00:00,0.0,1020.3540830000001,307.2666667,86.61666667,16.00833333,1.318416667,237.52858445 +2015-07-09 13:00:00,0.0,1020.555417,285.4,87.55,15.91833333,0.957583333,237.52203295 +2015-07-09 14:00:00,0.0,1020.375,228.66666669999998,85.40833333,16.11833333,1.28575,237.51896626666664 +2015-07-09 15:00:00,2.695266096,1020.231583,170.135,87.03333333,15.19083333,1.3986666669999999,237.5203602 +2015-07-09 16:00:00,0.0,1020.27675,138.2508333,83.36666667,16.19416667,1.245916667,237.5189662833333 +2015-07-09 17:00:00,0.0,1020.2988330000001,54.52166667,93.48333333,15.60166667,0.9289166670000001,237.5161783833333 +2015-07-09 18:00:00,0.0,1020.318417,12.38816667,92.65833333,14.78916667,0.211333333,237.5163177833333 +2015-07-09 19:00:00,0.0,1020.879083,0.531666667,95.56666667,14.3175,0.526416667,237.51603899999998 +2015-07-09 20:00:00,0.0,1021.335667,0.0,95.99166667,13.6175,0.34225,237.51687533333333 +2015-07-09 21:00:00,0.0,1021.489917,0.0,97.85833333,13.58333333,0.17175,237.5203601833333 +2015-07-09 22:00:00,0.0,1021.627917,0.0,98.84166667,13.09916667,0.24100000000000002,237.52426324999996 +2015-07-09 23:00:00,0.0,1021.758333,0.0,99.89166667,11.78,0.048583333,237.52872383333337 +2015-08-09 00:00:00,0.0,1021.58875,0.0,100.0,12.24,0.14775,237.43644519999998 +2015-08-09 01:00:00,0.0,1021.35775,0.0,100.0,12.5375,0.16575,237.43965128333335 +2015-08-09 02:00:00,0.0,1021.325583,0.0,100.0,12.2625,0.04125,237.44313611666664 +2015-08-09 03:00:00,0.0,1021.072667,0.0,100.0,12.235,0.0,237.4466209666667 +2015-08-09 04:00:00,0.0,1020.983917,0.0,100.0,12.01166667,0.0014166670000000001,237.45108153333334 +2015-08-09 05:00:00,0.0,1020.764917,0.254083333,100.0,11.63583333,0.005166667,237.45386943333335 +2015-08-09 06:00:00,0.0,1020.910083,13.98525,100.0,11.805,0.010666667,237.45665731666668 +2015-08-09 07:00:00,0.0,1021.075,57.31916667,98.81666667,12.8175,0.066416667,237.4569361 +2015-08-09 08:00:00,5.545296144,1020.9416669999999,161.925,87.275,14.30083333,0.80425,237.45582095000006 +2015-08-09 09:00:00,0.0,1021.2345,171.8833333,83.00833333,14.9675,2.071916667,237.45233608333334 +2015-08-09 10:00:00,0.0,1021.164917,491.75833330000006,73.8825,15.92916667,1.8688333330000002,237.4480149 +2015-08-09 11:00:00,0.0,1020.822667,133.9416667,73.95166667,16.13666667,2.344,237.43867551666665 +2015-08-09 12:00:00,0.0,1020.726167,191.7583333,72.80416667,16.65583333,1.206833333,237.4297543166667 +2015-08-09 13:00:00,0.0,1020.563167,281.2416667,69.98416667,16.7925,1.2429999999999999,237.4208331166667 +2015-08-09 14:00:00,0.0,1020.055417,241.55833330000002,65.93333333,17.57916667,1.742583333,237.41400283333334 +2015-08-09 15:00:00,0.0,1019.589917,212.6,67.23583333,17.57333333,2.120583333,237.41260888333338 +2015-08-09 16:00:00,0.0,1019.056583,135.0083333,65.59333333,17.7,2.0259166669999997,237.41344526666668 +2015-08-09 17:00:00,0.0,1018.722083,62.3575,65.56666667,17.13333333,2.126583333,237.41316648333336 +2015-08-09 18:00:00,0.0,1018.491667,18.78883333,72.96666667,16.5,1.674333333,237.41233013333337 +2015-08-09 19:00:00,0.0,1018.68625,0.37291666700000003,83.36333333,15.61583333,0.69775,237.41400284999997 +2015-08-09 20:00:00,0.0,1018.8166669999999,0.0,89.80833333,14.17166667,0.243416667,237.41679069999998 +2015-08-09 21:00:00,0.0,1018.993417,0.0,94.9,12.73666667,0.039,237.42139068333333 +2015-08-09 22:00:00,0.0,1019.108333,0.0,97.875,13.5175,0.915,237.42389978333335 +2015-08-09 23:00:00,0.0,1019.2595,0.0,99.74166667,12.3225,0.060916667,237.42794219999996 +2015-09-09 00:00:00,0.0,1019.473833,0.0,99.6,12.36416667,0.02425,237.54352024999994 +2015-09-09 01:00:00,0.0,1019.256583,0.0,99.96666667,12.6025,0.436666667,237.54584685 +2015-09-09 02:00:00,0.0,1018.847083,0.0,99.88333333,12.94,0.432333333,237.54786328333333 +2015-09-09 03:00:00,0.0,1018.457167,0.0,99.99166667,12.705,0.202083333,237.55112053333335 +2015-09-09 04:00:00,0.0,1018.28275,0.0,100.0,12.39333333,0.359333333,237.55251651666666 +2015-09-09 05:00:00,0.0,1018.21725,0.5445,99.88333333,11.58333333,0.526333333,237.55499825 +2015-09-09 06:00:00,0.0,1018.074417,16.43175,100.0,9.8775,0.077833333,237.55856573333332 +2015-09-09 07:00:00,0.0,1018.53625,59.33916667,100.0,11.77416667,0.6748333329999999,237.55841063333332 +2015-09-09 08:00:00,0.0,1018.835083,94.76416667,96.675,13.2,2.40775,237.5581004333333 +2015-09-09 09:00:00,0.0,1019.000583,146.1258333,91.41666667,14.30416667,3.378083333,237.55965148333334 +2015-09-09 10:00:00,0.0,1019.10775,360.1,84.40333333,15.34416667,3.25575,237.55825551666666 +2015-09-09 11:00:00,0.0,1019.008917,521.9583333,73.46166667,16.29416667,3.259,237.55484313333332 +2015-09-09 12:00:00,0.0,1018.956583,302.0,70.38,16.82,3.4595,237.55112053333335 +2015-09-09 13:00:00,0.0,1018.714917,359.7,61.51666667,17.91333333,3.9594166669999997,237.54615705 +2015-09-09 14:00:00,0.0,1018.289917,384.125,59.4725,18.1,4.041916667,237.54057316666663 +2015-09-09 15:00:00,0.0,1018.333333,377.1666667,53.4925,18.325,3.7719166669999997,237.53390350000004 +2015-09-09 16:00:00,0.0,1017.96375,189.9041667,51.91333333,18.4375,3.57975,237.53080135000002 +2015-09-09 17:00:00,0.0,1017.7095,41.81333333,55.40333333,17.45916667,3.3819999999999997,237.52847473333335 +2015-09-09 18:00:00,0.0,1017.758333,10.395,66.0725,15.76,2.1315,237.52707875 +2015-09-09 19:00:00,0.0,1018.086833,0.44525,88.21333333,11.42416667,0.11558333300000001,237.5252174333333 +2015-09-09 20:00:00,0.0,1018.391083,0.0,95.88333333,8.980833333,0.10300000000000001,237.52583789999997 +2015-09-09 21:00:00,0.0,1018.416667,0.0,99.08333333,7.799666667,0.034416667000000005,237.52800938333337 +2015-09-09 22:00:00,0.0,1018.635083,0.0,100.0,6.942833332999999,0.0235,237.53064623333333 +2015-09-09 23:00:00,0.0,1018.71725,0.0,100.0,6.454833333,0.09891666699999999,237.53328306666666 +2015-10-09 00:00:00,0.0,1018.65775,0.0,100.0,6.418083332999999,0.174583333,237.61068208333333 +2015-10-09 01:00:00,0.0,1018.6155,0.0,100.0,6.087000000000001,0.1825,237.61207806666667 +2015-10-09 02:00:00,0.0,1018.416667,0.0,100.0,5.657416667000001,0.15416666699999998,237.61487001666663 +2015-10-09 03:00:00,0.0,1018.525,0.0,100.0,5.2465,0.075666667,237.61611086666667 +2015-10-09 04:00:00,0.0,1018.53275,0.0,100.0,5.035083333,0.067833333,237.62216005000002 +2015-10-09 05:00:00,0.0,1018.643417,0.464583333,100.0,5.805833333,0.301083333,237.62774395 +2015-10-09 06:00:00,0.0,1018.718417,11.22891667,100.0,6.2925,0.242416667,237.63503403333334 +2015-10-09 07:00:00,0.0,1018.891667,34.71333333,100.0,9.665833333,2.09025,237.64201391666666 +2015-10-09 08:00:00,0.0,1019.06725,136.3833333,95.275,11.50666667,3.108833333,237.64790803333335 +2015-10-09 09:00:00,0.0,1019.2011669999999,277.6666667,87.05,12.97083333,3.137916667,237.65163061666667 +2015-10-09 10:00:00,0.0,1019.01375,418.975,78.42416667,14.4825,3.460666667,237.6527163833333 +2015-10-09 11:00:00,0.0,1018.538167,470.4833333000001,70.81,16.30833333,3.50425,237.65380215000002 +2015-10-09 12:00:00,0.0,1017.913167,524.0666666999999,62.64416667,17.43833333,2.839666667,237.65550835 +2015-10-09 13:00:00,0.0,1017.213167,326.025,61.425,17.65583333,3.732166667,237.65643898333335 +2015-10-09 14:00:00,0.0,1016.822083,353.3166667,59.12916667,18.36166667,4.045083333,237.6587656 +2015-10-09 15:00:00,0.0,1016.31375,260.1916667,59.2525,18.26833333,4.22525,237.65969628333335 +2015-10-09 16:00:00,0.0,1015.79825,125.765,59.50083333,17.86083333,4.247583333,237.66031671666667 +2015-10-09 17:00:00,0.0,1015.57325,31.305,60.67583333,17.51916667,3.55675,237.66155756666663 +2015-10-09 18:00:00,0.0,1015.517833,12.43233333,68.59333333,16.2725,2.26375,237.66233308333335 +2015-10-09 19:00:00,0.0,1015.885667,0.324916667,82.65083333,14.14416667,1.206583333,237.6624881833333 +2015-10-09 20:00:00,0.0,1016.066083,0.0,94.15833333,10.81916667,0.208916667,237.66264331666665 +2015-10-09 21:00:00,0.0,1015.95,0.0,98.31666667,8.568916667,0.0875,237.66357393333337 +2015-10-09 22:00:00,0.0,1015.748833,0.0,99.79166667,7.57575,0.059833332999999995,237.66434946666666 +2015-10-09 23:00:00,0.0,1015.69825,0.0,100.0,6.924666667,0.10416666699999999,237.66590053333334 +2015-11-09 00:00:00,0.0,1015.398833,0.0,100.0,7.281166667000001,0.23399999999999999,237.7383702333333 +2015-11-09 01:00:00,0.0,1015.0310000000001,0.0,100.0,7.21875,0.292916667,237.73790541666665 +2015-11-09 02:00:00,0.0,1014.757167,0.0,100.0,6.1348333329999996,0.12300000000000001,237.73728565000002 +2015-11-09 03:00:00,0.0,1014.54825,0.0,100.0,6.58425,0.26866666699999997,237.73666588333333 +2015-11-09 04:00:00,0.0,1014.299417,0.0,100.0,5.433083333,0.133166667,237.73666590000002 +2015-11-09 05:00:00,0.0,1014.24225,0.3565,100.0,4.662333333,0.00425,237.73620105 +2015-11-09 06:00:00,0.0,1014.517833,14.66675,100.0,5.166666667,0.145333333,237.73573623333334 +2015-11-09 07:00:00,0.0,1014.700583,51.89416667,100.0,7.540833332999999,0.26458333300000003,237.73356705 +2015-11-09 08:00:00,0.0,1014.835083,112.375,96.56666667,10.38583333,1.8640833330000002,237.73527141666668 +2015-11-09 09:00:00,0.0,1014.839917,315.5083333,86.64166667,12.11916667,1.7324166669999999,237.73465163333336 +2015-11-09 10:00:00,0.0,1014.514333,426.375,78.22583333,14.13166667,1.47625,237.73356703333334 +2015-11-09 11:00:00,0.0,1013.828667,489.65,72.12083333,16.26,1.509333333,237.7323275166667 +2015-11-09 12:00:00,0.0,1013.306583,525.2833333000001,65.04,17.88833333,1.644833333,237.73387693333336 +2015-11-09 13:00:00,0.0,1012.989917,451.09166669999996,56.57166667,19.46333333,1.113166667,237.73294729999998 +2015-11-09 14:00:00,0.0,1012.6060000000001,394.5083333,52.32166667,20.0675,1.476833333,237.73403188333336 +2015-11-09 15:00:00,0.0,1012.291083,378.5166667,46.8125,20.5525,1.1490833329999999,237.73186268333336 +2015-11-09 16:00:00,0.0,1011.998833,173.86833330000002,48.42666667,20.30833333,0.583333333,237.73279233333335 +2015-11-09 17:00:00,0.0,1011.94825,37.29416667,55.37916667,19.2425,0.761166667,237.73108796666668 +2015-11-09 18:00:00,0.0,1011.851167,11.71658333,78.07583333,16.08666667,0.037166667,237.73310221666668 +2015-11-09 19:00:00,0.0,1012.2189999999999,0.193,90.16666667,11.70583333,0.061166667,237.7334121166667 +2015-11-09 20:00:00,0.0,1012.518417,0.0,96.60833333,9.9025,0.031166667000000002,237.7318627 +2015-11-09 21:00:00,0.0,1012.414917,0.0,99.45,8.694166667000001,0.006333333000000001,237.7313978666667 +2015-11-09 22:00:00,0.0,1012.266083,0.0,100.0,7.670916667,0.0,237.73201765 +2015-11-09 23:00:00,0.0,1012.283917,0.0,100.0,6.998416667000001,0.0,237.7340318666667 +2015-12-09 00:00:00,0.0,1012.088167,0.0,100.0,6.391083332999999,0.0,237.99613194999998 +2015-12-09 01:00:00,0.0,1011.824417,0.0,100.0,5.9205,0.0,237.99577405 +2015-12-09 02:00:00,0.0,1011.775583,0.0,100.0,6.128083332999999,0.003666667,237.99577405 +2015-12-09 03:00:00,0.0,1011.664917,0.0,100.0,6.726083332999999,0.0,237.99577403333333 +2015-12-09 04:00:00,0.0,1011.65,0.0,100.0,6.94025,0.010083333,237.9954161333333 +2015-12-09 05:00:00,0.0,1011.574417,0.394166667,100.0,6.891166667,0.0295,237.99470031666667 +2015-12-09 06:00:00,0.0,1011.636833,21.46791667,100.0,6.9843333329999995,0.042,237.99559508333334 +2015-12-09 07:00:00,0.0,1011.8155,68.965,100.0,8.954833333,0.11175,237.99648985 +2015-12-09 08:00:00,0.0,1011.6833330000001,103.16666670000001,99.49166667,10.925,0.810333333,237.99541611666666 +2015-12-09 09:00:00,0.0,1011.589917,285.9416667,84.48,14.5575,1.341833333,237.9921949666667 +2015-12-09 10:00:00,0.0,1011.499417,283.5,69.72416667,17.40333333,1.7608333330000001,237.99344763333337 +2015-12-09 11:00:00,0.0,1011.13875,350.96666669999996,64.04333333,18.53,2.121,237.99147915 +2015-12-09 12:00:00,0.0,1010.6619999999999,471.84166669999996,60.02833333,20.83583333,2.5758333330000003,237.9916581 +2015-12-09 13:00:00,0.0,1010.089333,481.13333330000006,60.15833333,22.34,2.789666667,237.9909422833333 +2015-12-09 14:00:00,0.0,1009.456,204.55833330000002,59.4475,22.8425,2.6983333330000003,237.99201601666667 +2015-12-09 15:00:00,0.0,1009.122667,136.2466667,61.23666667,22.42416667,1.110083333,237.99255286666667 +2015-12-09 16:00:00,0.0,1008.731583,131.22833329999997,60.1,22.85833333,0.828,237.99362661666666 +2015-12-09 17:00:00,0.0,1008.172083,28.30283333,78.4725,21.41583333,0.212583333,237.99219494999997 +2015-12-09 18:00:00,0.0,1007.914917,2.19525,88.08333333,18.61416667,0.00675,237.9927318333333 +2015-12-09 19:00:00,0.0,1008.052333,0.0,91.72583333,18.695,0.536,237.99344763333337 +2015-12-09 20:00:00,0.0,1008.755833,0.0,82.61833333,18.55083333,2.3,237.99434239999997 +2015-12-09 21:00:00,0.0,1009.108333,0.0,90.15833333,17.69916667,1.243083333,237.9952371666666 +2015-12-09 22:00:00,0.0,1009.258917,0.0,87.16666667,18.10666667,1.8259999999999998,237.9950582 +2015-12-09 23:00:00,0.0,1009.249417,0.0,87.925,17.47,0.976583333,237.99487926666666 +2015-09-13 00:00:00,0.0,1009.133917,0.0,89.225,16.6675,0.78225,237.50365745000002 +2015-09-13 01:00:00,0.0,1009.14825,0.0,89.90833333,16.415,0.777416667,237.5047432 +2015-09-13 02:00:00,0.0,1008.947667,0.0,90.31666667,16.4475,0.727583333,237.50722491666667 +2015-09-13 03:00:00,0.0,1008.4905,0.0,91.03333333,16.31166667,1.054583333,237.50877601666664 +2015-09-13 04:00:00,0.0,1008.12325,0.0,96.7,16.07416667,0.91275,237.5107924166667 +2015-09-13 05:00:00,0.0,1007.875,0.075083333,99.76666667,15.4225,0.636916667,237.51451501666665 +2015-09-13 06:00:00,0.0,1008.0,5.9764166670000005,100.0,15.25416667,0.071666667,237.51467011666668 +2015-09-13 07:00:00,0.0,1008.12675,39.63666667,96.38333333,15.8975,1.2785,237.51591100000005 +2015-09-13 08:00:00,0.0,1008.098833,119.87916670000001,87.00833333,18.00416667,1.82975,237.5160661 +2015-09-13 09:00:00,0.0,1007.77925,202.725,83.31666667,18.98916667,1.7149166669999998,237.51451501666665 +2015-09-13 10:00:00,0.0,1007.180417,130.11666670000002,86.4,18.885,1.5848333330000002,237.51622121666665 +2015-09-13 11:00:00,0.0,1006.714917,133.9333333,85.9,19.10833333,1.6796666669999998,237.51389458333333 +2015-09-13 12:00:00,3.1159309680000002,1006.388167,121.72166670000001,91.00833333,18.6325,1.9656666669999998,237.5120332833333 +2015-09-13 13:00:00,8.497720103999999,1005.92925,89.59083333,95.35,18.115,1.7914166669999998,237.51358436666666 +2015-09-13 14:00:00,13.60229503,1005.314917,84.83916667,97.4,18.04666667,1.05975,237.51544568333335 +2015-09-13 15:00:00,0.0,1004.51025,102.3916667,97.93333333,18.14,0.561,237.51792740000005 +2015-09-13 16:00:00,0.0,1003.8465,136.3916667,94.61666667,18.51166667,0.723916667,237.51978871666668 +2015-09-13 17:00:00,0.0,1002.895333,82.93416667,94.3,18.53083333,1.018,237.52102956666667 +2015-09-13 18:00:00,0.0,1002.213167,12.30466667,97.525,17.83,0.48758333299999995,237.52382148333334 +2015-09-13 19:00:00,0.0,1001.956583,0.077,100.0,15.09583333,0.061416667,237.5276991666667 +2015-09-13 20:00:00,0.0,1001.354833,0.0,100.0,13.21916667,0.0495,237.5295604833333 +2015-09-13 21:00:00,0.0,1000.79825,0.0,100.0,12.20916667,0.12675,237.53204218333335 +2015-09-13 22:00:00,0.0,1000.7905,0.0,100.0,12.58333333,0.073833333,237.53312796666668 +2015-09-13 23:00:00,0.0,1000.65175,0.0,100.0,13.99833333,0.069916667,237.53312796666668 +2015-09-14 00:00:00,14.61821494,1000.864333,0.0,100.0,14.68916667,0.193833333,237.53343818333335 +2015-09-14 01:00:00,4.903424832,1000.181583,0.0,100.0,14.84,0.16625,237.53607503333333 +2015-09-14 02:00:00,0.0,999.8625832999999,0.0,100.0,14.61166667,0.124583333,237.53793631666665 +2015-09-14 03:00:00,2.431815984,999.6761667000002,0.0,100.0,14.56,0.149583333,237.53933229999996 +2015-09-14 04:00:00,0.0,999.7,0.0,100.0,14.56833333,0.28975,237.54041804999997 +2015-09-14 05:00:00,2.4050227680000003,999.3416667000001,0.032416667,100.0,14.50416667,0.43700000000000006,237.5435202333333 +2015-09-14 06:00:00,4.866096768,999.6083332999999,3.986333333,100.0,14.35583333,0.326916667,237.54507131666665 +2015-09-14 07:00:00,2.5985574000000002,999.71725,11.31966667,100.0,14.55,0.369333333,237.54755303333332 +2015-09-14 08:00:00,0.0,999.7511667000001,28.21083333,99.475,14.72,0.41808333299999995,237.54755305000003 +2015-09-14 09:00:00,0.0,999.9821667000001,73.13666667,96.45833333,15.40166667,1.057833333,237.54817346666667 +2015-09-14 10:00:00,0.0,999.9994167000001,247.0,87.65,17.04166667,1.101583333,237.5503449833333 +2015-09-14 11:00:00,0.0,999.7321667000001,405.9333333,79.945,18.75666667,2.49225,237.55003478333333 +2015-09-14 12:00:00,0.0,999.2381667000001,446.29166669999995,72.735,20.2975,1.973916667,237.54770814999998 +2015-09-14 13:00:00,0.0,998.5970832999999,355.05,63.9725,21.40666667,1.77725,237.54414066666664 +2015-09-14 14:00:00,3.10908528,998.5195832999999,294.3383333,72.06666667,19.06916667,2.687083333,237.54103848333332 +2015-09-14 15:00:00,0.0,998.4465,199.9083333,71.07,19.605,2.123916667,237.53669545 +2015-09-14 16:00:00,0.0,998.8385832999999,68.28,74.84583333,18.57,1.7735833330000002,237.53421373333333 +2015-09-14 17:00:00,0.0,999.2184167000001,47.99333333,80.62416667,17.14166667,0.977833333,237.53436883333333 +2015-09-14 18:00:00,0.0,1000.004667,11.15558333,88.40833333,15.78833333,0.820583333,237.53312796666668 +2015-09-14 19:00:00,2.8221547680000003,1000.519583,0.08125,94.525,13.9275,1.8965833330000001,237.53281773333333 +2015-09-14 20:00:00,0.0,1001.029667,0.0,85.28333333,14.46416667,2.694083333,237.53297283333333 +2015-09-14 21:00:00,0.0,1001.888583,0.0,79.70083333,13.91416667,1.773916667,237.53328308333334 +2015-09-14 22:00:00,0.0,1002.86125,0.0,79.06,13.0725,1.393,237.53390349999998 +2015-09-14 23:00:00,0.0,1003.3439999999999,0.0,79.50666667,12.6575,1.219416667,237.5345239333333 +2015-09-15 00:00:00,0.0,1003.392833,0.0,82.61666667,12.45333333,1.6711666669999998,237.5357648 +2015-09-15 01:00:00,0.0,1003.685667,0.0,86.29166667,11.625,2.037666667,237.53623015000002 +2015-09-15 02:00:00,0.0,1003.816083,0.0,87.20833333,10.93,1.072333333,237.53638523333333 +2015-09-15 03:00:00,0.0,1003.7405,0.0,87.80833333,9.500833333,1.27675,237.53638525 +2015-09-15 04:00:00,0.0,1003.52325,0.0,88.375,9.183333333,1.89775,237.53917719999995 +2015-09-15 05:00:00,0.0,1003.376167,0.095833333,91.125,9.123333333,1.324916667,237.5413487 +2015-09-15 06:00:00,0.0,1003.303667,5.855333333,99.54166667,9.9575,1.971333333,237.5436753166667 +2015-09-15 07:00:00,0.0,1002.958333,51.9375,93.46666667,11.00333333,2.8258333330000003,237.54383044999997 +2015-09-15 08:00:00,0.0,1002.935083,106.43333329999999,82.775,11.74333333,2.704166667,237.54305490000002 +2015-09-15 09:00:00,0.0,1003.039917,137.875,81.1675,13.26,3.628083333,237.54181403333337 +2015-09-15 10:00:00,7.551903887999999,1002.814917,120.55583329999999,82.19833333,13.92666667,3.49725,237.54165895000003 +2015-09-15 11:00:00,0.0,1002.744583,117.88833329999999,82.21333333,14.07666667,2.585583333,237.54026295000003 +2015-09-15 12:00:00,0.0,1002.8071669999999,175.375,79.48833333,14.8175,2.252166667,237.53855675 +2015-09-15 13:00:00,0.0,1002.732167,271.525,77.53916667,15.36416667,2.387333333,237.53731589999998 +2015-09-15 14:00:00,3.58038216,1002.50775,387.275,68.2975,17.20666667,2.54625,237.53142176666668 +2015-09-15 15:00:00,0.0,1002.456583,350.78333330000004,63.45583333,17.91833333,2.2325,237.52754405 +2015-09-15 16:00:00,0.0,1002.223833,151.9916667,62.84166667,17.35416667,2.462416667,237.52444189999997 +2015-09-15 17:00:00,0.0,1001.839333,37.93583333,65.29,16.72333333,2.024166667,237.5211846666667 +2015-09-15 18:00:00,0.0,1001.962417,7.371333333,72.21666667,15.20166667,1.0300833329999999,237.51684164999998 +2015-09-15 19:00:00,0.0,1002.05425,0.033833333,87.94166667,12.0775,1.050333333,237.51591098333333 +2015-09-15 20:00:00,0.0,1001.616667,0.0,97.69166667,10.47416667,1.422333333,237.51761720000002 +2015-09-15 21:00:00,0.0,1001.4,0.0,99.99166667,11.60833333,1.664916667,237.5180825166667 +2015-09-15 22:00:00,0.0,1001.25425,0.0,100.0,10.735,1.8945833330000001,237.51808251666668 +2015-09-15 23:00:00,0.0,1000.839917,0.0,100.0,10.3825,1.5913333330000001,237.51932338333333 +2015-09-16 00:00:00,0.0,1000.036417,0.0,98.45,10.5825,0.26825,237.52180511666668 +2015-09-16 01:00:00,7.203857952000001,999.6255832999999,0.0,98.09166667,10.86083333,0.08716666699999999,237.5245970166666 +2015-09-16 02:00:00,41.25573142,999.5726667000001,0.0,99.99166667,10.9575,0.15408333300000002,237.52816450000003 +2015-09-16 03:00:00,32.41472436,999.0453332999999,0.0,100.0,10.9075,0.467,237.53111153333336 +2015-09-16 04:00:00,34.75239665,997.893,0.0,100.0,11.02,0.521416667,237.53560968333332 +2015-09-16 05:00:00,14.70006017,996.7674167000001,0.0,100.0,11.34583333,1.7076666669999998,237.54212425 +2015-09-16 06:00:00,41.65027361,996.1845,1.61475,99.64166667,11.79083333,1.90925,237.54615708333333 +2015-09-16 07:00:00,11.41097138,995.9821667000001,7.4065833329999995,98.9,12.05333333,1.64525,237.55205118333333 +2015-09-16 08:00:00,8.83204392,995.9804167000001,26.92666667,98.25833333,12.58,2.54525,237.5539124833333 +2015-09-16 09:00:00,7.37066448,995.6178332999999,37.95166667,98.53333333,13.18833333,3.585583333,237.5588759666667 +2015-09-16 10:00:00,12.8805126,995.4131667000001,40.5325,99.69166667,13.56416667,2.54125,237.56120256666668 +2015-09-16 11:00:00,12.70329072,995.0554167000001,59.3325,98.66666667,14.1175,2.6489999999999996,237.5638394166667 +2015-09-16 12:00:00,60.39528106,994.60775,69.54666667,98.11666667,14.6075,3.178666667,237.5674069 +2015-09-16 13:00:00,3.3453731760000003,994.3726667000001,93.20333333,96.53333333,14.98666667,3.201166667,237.57252543333337 +2015-09-16 14:00:00,0.0,994.0215,158.50916669999998,94.34166667,15.93333333,3.4405,237.5756276 +2015-09-16 15:00:00,0.0,993.2953332999999,76.1725,95.00833333,16.50333333,3.5415,237.57981551666663 +2015-09-16 16:00:00,0.0,992.9790832999998,89.04583333,94.35833333,16.98333333,2.86375,237.57981551666663 +2015-09-16 17:00:00,0.0,992.3121667000001,17.48041667,92.41666667,16.71333333,2.858166667,237.583383 +2015-09-16 18:00:00,19.66341554,992.8479167000002,1.7696666669999999,94.70833333,16.14333333,1.919,237.58369323333332 +2015-09-16 19:00:00,41.848960299999995,992.9358332999999,0.0,95.45,16.2025,3.359916667,237.58726071666663 +2015-09-16 20:00:00,3.797754912,993.06125,0.0,93.5,16.87916667,4.618583333,237.58741583333332 +2015-09-16 21:00:00,0.0,993.6581667000002,0.0,94.04166667,16.25916667,2.73275,237.58896691666666 +2015-09-16 22:00:00,0.0,994.7184167000001,0.0,93.575,15.6575,0.38783333299999995,237.58958735 +2015-09-16 23:00:00,7.821302208,995.6118332999998,0.0,93.975,15.78166667,0.93375,237.59237929999998 +2015-09-17 00:00:00,28.24641449,995.1918332999999,0.0,96.43333333,15.25166667,1.5138333330000002,237.59455081666667 +2015-09-17 01:00:00,0.0,994.61125,0.0,99.5,14.92,1.234416667,237.59780809999998 +2015-09-17 02:00:00,0.0,994.9178332999999,0.0,98.0,14.8,2.459833333,237.60122046666663 +2015-09-17 03:00:00,0.0,994.4875832999999,0.0,97.475,14.63,1.5456666669999999,237.60385731666665 +2015-09-17 04:00:00,0.0,994.48625,0.0,99.08333333,13.64916667,0.270916667,237.6049430833333 +2015-09-17 05:00:00,0.0,994.8195832999999,0.03525,100.0,12.91666667,0.09833333300000001,237.60664926666666 +2015-09-17 06:00:00,0.0,995.2618332999999,5.707833333,100.0,12.91666667,0.28675,237.60633906666666 +2015-09-17 07:00:00,0.0,995.5083332999999,19.94833333,100.0,14.26083333,1.129916667,237.60680436666667 +2015-09-17 08:00:00,2.589947304,995.9796667000002,44.0275,98.15833333,14.9025,1.372166667,237.60680440000002 +2015-09-17 09:00:00,10.37359846,996.5773332999999,68.09,94.33333333,15.49666667,0.791333333,237.6075799333333 +2015-09-17 10:00:00,10.79117275,997.2713332999999,70.52916667,96.025,15.535,1.17975,237.60851058333333 +2015-09-17 11:00:00,17.09111251,998.2618332999999,66.21,95.58333333,15.12916667,0.43808333299999996,237.60913101666665 +2015-09-17 12:00:00,2.430502272,999.07425,54.52666667,94.4,14.69833333,0.951583333,237.60928610000005 +2015-09-17 13:00:00,0.0,999.8850832999999,59.71333333,92.2,14.60416667,1.5375833330000002,237.6108371833333 +2015-09-17 14:00:00,0.0,1000.288,54.45,92.25,14.6075,2.0124166669999997,237.61130249999997 +2015-09-17 15:00:00,0.0,1000.870167,27.6725,92.63333333,14.4425,2.1078333330000003,237.61471488333336 +2015-09-17 16:00:00,0.0,1001.419583,18.5425,93.71666667,14.3125,1.63,237.61347403333332 +2015-09-17 17:00:00,8.755675056,1002.170167,28.52166667,96.43333333,14.01,2.003833333,237.61362914999998 +2015-09-17 18:00:00,28.78534668,1002.98025,7.059,96.54166667,13.6725,1.673,237.6150251 +2015-09-17 19:00:00,0.0,1003.771333,0.016416667,95.69166667,13.69333333,1.4795,237.6193681166667 +2015-09-17 20:00:00,2.632156464,1004.949833,0.0,96.59166667,13.46333333,0.589,237.61936811666666 +2015-09-17 21:00:00,0.0,1006.123083,0.0,95.51666667,12.6525,0.066416667,237.61874766666668 +2015-09-17 22:00:00,0.0,1007.2564169999999,0.0,99.75,10.81833333,0.165416667,237.61952321666664 +2015-09-17 23:00:00,2.4050227680000003,1008.129667,0.0,100.0,9.520833332999999,0.1005,237.62107428333331 +2015-09-18 00:00:00,0.0,1008.4238330000001,0.0,100.0,8.375833333,0.004,237.62107428333334 +2015-09-18 01:00:00,0.0,1008.2595,0.0,100.0,8.085583332999999,0.065166667,237.62247026666668 +2015-09-18 02:00:00,0.0,1008.8285,0.0,100.0,7.45775,0.131166667,237.62278046666668 +2015-09-18 03:00:00,0.0,1009.295167,0.0,100.0,8.303166667000001,0.10358333300000001,237.62216005000002 +2015-09-18 04:00:00,0.0,1009.575,0.0,100.0,8.620833333,0.16725,237.62247026666668 +2015-09-18 05:00:00,0.0,1009.760083,0.03525,100.0,9.305,0.10341666699999999,237.62216004999996 +2015-09-18 06:00:00,0.0,1010.3535,5.77675,100.0,9.6475,0.16175,237.62122941666667 +2015-09-18 07:00:00,0.0,1010.8285,43.83916667,100.0,10.13583333,0.03425,237.62122941666667 +2015-09-18 08:00:00,0.0,1011.437417,80.12583333,100.0,11.315,0.205,237.62153963333336 +2015-09-18 09:00:00,0.0,1011.935083,162.4033333,99.09166667,13.25166667,0.530666667,237.6213845 +2015-09-18 10:00:00,0.0,1012.418417,201.6875,88.61666667,15.08166667,0.537166667,237.62076406666665 +2015-09-18 11:00:00,2.7450528480000003,1012.5155,229.1391667,81.47416667,16.50833333,1.06725,237.61921298333334 +2015-09-18 12:00:00,0.0,1012.577333,310.6666667,82.59333333,16.8575,0.26208333300000003,237.62076408333334 +2015-09-18 13:00:00,17.59141622,1012.925583,96.3375,84.6175,17.16833333,0.660833333,237.6185925666667 +2015-09-18 14:00:00,12.11889055,1012.8,276.3,86.925,15.9925,0.35025,237.61952320000003 +2015-09-18 15:00:00,0.0,1012.614917,289.8,77.91083333,18.36333333,0.617083333,237.6179721166667 +2015-09-18 16:00:00,0.0,1012.5571669999999,158.5783333,71.87333333,18.25333333,0.9540000000000001,237.6167313 +2015-09-18 17:00:00,0.0,1012.5095,41.09916667,77.8325,16.5625,0.4985,237.6173517166667 +2015-09-18 18:00:00,0.0,1012.861833,4.20575,93.79166667,14.65333333,0.36458333299999995,237.6162659833333 +2015-09-18 19:00:00,0.0,1013.602917,0.005166667,99.48333333,12.24333333,0.0035833329999999997,237.61564553333332 +2015-09-18 20:00:00,0.0,1014.011833,0.0,99.9,11.08416667,0.250916667,237.61564553333332 +2015-09-18 21:00:00,0.0,1014.4345,0.0,97.30833333,10.1875,0.07200000000000001,237.61455979999997 +2015-09-18 22:00:00,0.0,1014.348833,0.0,99.25833333,9.490833333,0.15358333300000002,237.61781701666666 +2015-09-18 23:00:00,0.0,1014.333333,0.0,100.0,8.413333332999999,0.047416667,237.61859256666665 +2015-09-19 00:00:00,0.0,1014.383333,0.0,100.0,8.120083333,0.09991666699999999,237.61952320000003 +2015-09-19 01:00:00,0.0,1014.58625,0.0,100.0,8.488333333,0.235166667,237.6193681 +2015-09-19 02:00:00,0.0,1014.783333,0.0,100.0,9.405833333,0.055166667,237.61843745000002 +2015-09-19 03:00:00,0.0,1014.92675,0.0,100.0,9.769166667,0.225333333,237.61781703333335 +2015-09-19 04:00:00,0.0,1015.00775,0.0,100.0,9.9275,0.02225,237.61905791666666 +2015-09-19 05:00:00,0.0,1015.217833,0.039916667,100.0,10.13583333,0.072833333,237.6193681 +2015-09-19 06:00:00,0.0,1015.477333,8.09475,100.0,10.5025,0.24766666699999998,237.61983343333335 +2015-09-19 07:00:00,0.0,1015.8439999999999,37.43666667,100.0,11.20833333,0.26725,237.61983343333335 +2015-09-19 08:00:00,0.0,1016.294583,103.9683333,99.875,12.44333333,0.5579999999999999,237.6185925666667 +2015-09-19 09:00:00,0.0,1016.60175,160.9666667,89.85833333,14.4125,0.77025,237.61843745000002 +2015-09-19 10:00:00,0.0,1016.876167,181.1583333,85.53333333,14.97333333,0.62525,237.61828236666668 +2015-09-19 11:00:00,0.0,1017.01725,271.35,82.54083333,15.92,0.485916667,237.61719660000003 +2015-09-19 12:00:00,0.0,1016.991083,136.2833333,79.99666667,16.575,0.462916667,237.61735171666666 +2015-09-19 13:00:00,0.0,1016.90775,367.3333333,75.59416667,17.0525,0.833833333,237.61518021666666 +2015-09-19 14:00:00,0.0,1016.764917,276.8833333,70.93666667,17.78166667,1.151166667,237.6119229666667 +2015-09-19 15:00:00,3.175446792,1016.717833,220.8833333,76.06083333,15.82,2.1215833330000002,237.61176781666666 +2015-09-19 16:00:00,0.0,1016.841667,158.04166669999998,68.4125,16.8825,0.471916667,237.60820034999998 +2015-09-19 17:00:00,2.801662416,1017.002917,25.51083333,85.1075,15.02083333,0.781666667,237.60944121666662 +2015-09-19 18:00:00,0.0,1017.4939999999999,7.4226666670000006,91.85833333,13.77333333,0.280416667,237.6086657 +2015-09-19 19:00:00,0.0,1018.12075,0.000916667,99.70833333,12.685,0.1955,237.6083554833333 +2015-09-19 20:00:00,0.0,1018.669,0.0,100.0,12.57083333,0.09116666699999999,237.60975143333334 +2015-09-19 21:00:00,0.0,1019.019583,0.0,100.0,12.4075,0.083083333,237.60913099999996 +2015-09-19 22:00:00,0.0,1019.443417,0.0,100.0,12.45083333,0.025333333,237.6085105666667 +2015-09-19 23:00:00,0.0,1019.589917,0.0,99.28333333,12.43916667,0.382333333,237.60913099999996 +2015-09-20 00:00:00,0.0,1019.485083,0.0,99.28333333,11.70416667,0.08325,237.6105269666667 +2015-09-20 01:00:00,0.0,1019.499417,0.0,99.34166667,11.70083333,0.048583333,237.61238826666667 +2015-09-20 02:00:00,0.0,1019.439333,0.0,99.79166667,11.33666667,0.059166667,237.61393936666664 +2015-09-20 03:00:00,0.0,1019.351167,0.0,99.93333333,11.1375,0.147333333,237.61424956666667 +2015-09-20 04:00:00,0.0,1019.208333,0.0,99.90833333,11.21583333,0.42766666700000006,237.61580064999998 +2015-09-20 05:00:00,0.0,1019.291667,0.030083332999999997,100.0,11.12666667,0.042166667000000005,237.61611086666665 +2015-09-20 06:00:00,0.0,1019.78625,7.44475,100.0,10.90166667,0.22016666699999998,237.61549043333332 +2015-09-20 07:00:00,0.0,1019.935083,33.46916667,99.875,11.36416667,0.47483333299999997,237.61549043333332 +2015-09-20 08:00:00,0.0,1020.193417,88.06666667,98.525,12.22583333,0.367666667,237.61642108333334 +2015-09-20 09:00:00,0.0,1020.375,179.20833330000002,90.54166667,13.53333333,0.966916667,237.61626596666665 +2015-09-20 10:00:00,0.0,1020.341667,317.525,74.53416667,14.42916667,2.008166667,237.61642106666667 +2015-09-20 11:00:00,0.0,1020.248833,462.6833333000001,68.51916667,15.64083333,2.1775833330000003,237.61378424999998 +2015-09-20 12:00:00,0.0,1020.141083,474.3166666999999,64.68916667,16.48,2.07225,237.61021675000003 +2015-09-20 13:00:00,0.0,1019.880417,356.1833333,64.16583333,16.15083333,2.16025,237.60664926666664 +2015-09-20 14:00:00,0.0,1019.379833,245.675,64.39583333,16.13666667,2.634,237.60571861666662 +2015-09-20 15:00:00,0.0,1018.89825,147.2475,67.23666667,16.25166667,1.5888333330000002,237.6040124333333 +2015-09-20 16:00:00,0.0,1018.725583,41.89083333,73.75,14.99416667,1.6128333330000002,237.6030817833333 +2015-09-20 17:00:00,0.0,1018.67325,18.4025,77.545,14.2725,1.906333333,237.60199601666667 +2015-09-20 18:00:00,0.0,1018.4238330000001,3.6965,82.68333333,13.34,0.5615,237.60230623333334 +2015-09-20 19:00:00,0.0,1018.433917,0.0,92.48333333,10.91583333,0.063166667,237.6021511333333 +2015-09-20 20:00:00,0.0,1018.443417,0.0,90.675,10.7125,0.22575,237.60370219999996 +2015-09-20 21:00:00,0.0,1018.464917,0.0,88.28333333,11.11583333,0.10800000000000001,237.60184089999998 +2015-09-20 22:00:00,0.0,1018.255417,0.0,88.225,11.11083333,0.067166667,237.60277155000003 +2015-09-20 23:00:00,0.0,1017.6715,0.0,89.35,11.09083333,0.129833333,237.6044777333333 +2015-09-21 00:00:00,0.0,1017.122083,0.0,94.39166667,11.45666667,0.106,237.60757991666665 +2015-09-21 01:00:00,0.0,1016.731583,0.0,96.425,10.695,0.013083333,237.60820034999998 +2015-09-21 02:00:00,0.0,1016.272083,0.0,99.76666667,8.986666667,0.016416667,237.61021673333335 +2015-09-21 03:00:00,0.0,1015.814917,0.0,100.0,8.191583332999999,0.079666667,237.61068206666667 +2015-09-21 04:00:00,0.0,1015.464333,0.0,100.0,8.729166667000001,0.09125,237.61083718333336 +2015-09-21 05:00:00,0.0,1015.258917,0.029083333,100.0,8.935,0.072833333,237.61300873333334 +2015-09-21 06:00:00,0.0,1015.383333,6.1325,100.0,8.855833333,0.0665,237.61192295 +2015-09-21 07:00:00,0.0,1014.970333,26.97916667,100.0,8.836666667000001,0.004333333,237.61362913333332 +2015-09-21 08:00:00,0.0,1014.876167,122.4325,98.3,11.77833333,0.195833333,237.61254338333333 +2015-09-21 09:00:00,0.0,1014.61375,288.03333330000004,83.13583333,14.59,0.46399999999999997,237.61192295 +2015-09-21 10:00:00,0.0,1014.053667,293.59166669999996,75.1775,16.02833333,1.074,237.61083718333336 +2015-09-21 11:00:00,0.0,1013.036417,156.7666667,79.99333333,17.555,1.4709166669999998,237.61238826666667 +2015-09-21 12:00:00,0.0,1012.361417,161.5916667,75.99083333,16.83083333,1.109666667,237.6103718833333 +2015-09-21 13:00:00,0.0,1011.48875,183.80833330000002,74.38583333,16.77083333,0.27975,237.60897588333333 +2015-09-21 14:00:00,0.0,1010.9119999999999,411.2916667,64.36333333,17.47666667,0.134416667,237.60416751666662 +2015-09-21 15:00:00,0.0,1010.045333,138.9591667,63.02666667,18.25833333,0.5638333329999999,237.59920406666663 +2015-09-21 16:00:00,0.0,1009.247667,101.0525,71.76666667,17.37916667,0.897083333,237.60075516666666 +2015-09-21 17:00:00,0.0,1008.644167,43.6,84.875,15.96,0.539416667,237.6024613333333 +2015-09-21 18:00:00,0.0,1008.064917,5.254583333,93.325,13.48583333,0.12125,237.60370219999996 +2015-09-21 19:00:00,0.0,1007.6310000000001,0.0,96.04166667,10.9225,0.039833333,237.60277154999994 +2015-09-21 20:00:00,0.0,1007.129833,0.0,96.65833333,10.38,0.0705,237.60432264999997 +2015-09-21 21:00:00,0.0,1006.607167,0.0,94.725,10.225,0.021,237.6060288333333 +2015-09-21 22:00:00,0.0,1006.313167,0.0,89.80833333,11.00666667,0.238083333,237.60494306666666 +2015-09-21 23:00:00,0.0,1005.694167,0.0,89.425,11.26666667,0.120333333,237.60633906666666 +2015-09-22 00:00:00,0.0,1004.789917,0.0,94.06666667,11.20583333,0.045416667,237.6083554666667 +2015-09-22 01:00:00,0.0,1004.41025,0.0,89.29166667,11.4425,0.053416667,237.6092861 +2015-09-22 02:00:00,0.0,1003.581583,0.0,91.43333333,10.75083333,0.010166666999999999,237.61238828333333 +2015-09-22 03:00:00,0.0,1003.047667,0.0,94.79166667,10.14666667,0.01425,237.6128536 +2015-09-22 04:00:00,2.7383920560000004,1002.57925,0.0,85.2,11.47083333,0.8653333329999999,237.6126985 +2015-09-22 05:00:00,0.0,1001.95425,0.0,88.09166667,12.05,1.332333333,237.61362913333332 +2015-09-22 06:00:00,0.0,1001.505417,6.994916667000001,86.6,12.18333333,1.779166667,237.61316380000002 +2015-09-22 07:00:00,0.0,1001.0488330000001,22.07666667,85.88333333,12.21666667,2.19275,237.61300871666666 +2015-09-22 08:00:00,9.154104456,1000.756583,50.515,86.56666667,12.74333333,2.018333333,237.61254336666664 +2015-09-22 09:00:00,0.0,1000.522667,74.08416667,87.05,13.09666667,1.9398333330000002,237.6126985 +2015-09-22 10:00:00,0.0,1000.089333,95.445,89.14166667,13.95916667,2.350166667,237.61192293333332 +2015-09-22 11:00:00,10.1710806,999.5125832999998,126.60833329999998,93.24166667,14.28833333,2.1145,237.6130087 +2015-09-22 12:00:00,14.23500792,999.0304167000002,148.30833330000002,93.64166667,14.2525,3.101833333,237.61331893333332 +2015-09-22 13:00:00,0.0,998.5988332999999,137.0683333,92.49166667,14.49416667,2.1109166669999997,237.61238828333333 +2015-09-22 14:00:00,64.6713767,998.2829167000001,34.59833333,95.73333333,13.475,1.4718333330000002,237.61704151666672 +2015-09-22 15:00:00,19.36306481,997.1868332999999,221.6283333,90.73333333,13.56,2.211666667,237.61874766666668 +2015-09-22 16:00:00,0.0,997.3899167000002,144.4575,84.48333333,13.94083333,2.600083333,237.61921298333337 +2015-09-22 17:00:00,0.0,996.8304167000001,27.48583333,92.9,12.88166667,1.14875,237.62402135000002 +2015-09-22 18:00:00,0.0,996.7,4.31975,94.13333333,12.52,0.987916667,237.62386625 +2015-09-22 19:00:00,42.03352435,997.0600832999999,0.0,96.09166667,12.65916667,1.5248333330000001,237.6232458166667 +2015-09-22 20:00:00,17.39359699,997.2856667000001,0.0,98.3,11.51416667,0.38391666700000004,237.6303808 +2015-09-22 21:00:00,2.407397088,997.6290832999998,0.0,96.88333333,9.68,0.4085,237.63472381666665 +2015-09-22 22:00:00,0.0,998.0184167000001,0.0,96.98333333,8.63,0.234583333,237.63674025 +2015-09-22 23:00:00,0.0,998.5261667000001,0.0,97.33333333,8.466416667,0.351583333,237.63549935 +2015-09-23 00:00:00,0.0,998.8445832999998,0.0,98.89166667,7.455916667,0.356833333,237.63611980000005 +2015-09-23 01:00:00,2.412086928,999.0005832999999,0.0,100.0,6.844916667000001,0.137833333,237.63767086666667 +2015-09-23 02:00:00,0.0,999.40175,0.0,100.0,6.8579166670000005,0.09091666699999999,237.63565446666667 +2015-09-23 03:00:00,0.0,999.7040832999999,0.0,100.0,7.5309166670000005,0.206833333,237.63565446666667 +2015-09-23 04:00:00,0.0,1000.208917,0.0,100.0,7.71275,0.171333333,237.63472383333337 +2015-09-23 05:00:00,0.0,1000.538583,0.0,100.0,8.105,0.052416667,237.63611978333333 +2015-09-23 06:00:00,0.0,1001.394583,2.9493333330000002,100.0,8.648333333,0.22316666699999999,237.63410341666668 +2015-09-23 07:00:00,0.0,1001.919583,35.39416667,99.94166667,9.363333333,0.28875,237.63348295 +2015-09-23 08:00:00,0.0,1003.0415,43.66833333,97.53333333,10.43416667,0.22899999999999998,237.63441361666665 +2015-09-23 09:00:00,0.0,1003.95525,96.30583333,95.4,11.11916667,0.12475,237.63317273333337 +2015-09-23 10:00:00,0.0,1004.768417,164.8,95.525,11.84166667,0.235833333,237.6339482833333 +2015-09-23 11:00:00,0.0,1005.070167,300.85,89.05833333,13.61333333,0.558333333,237.63394828333335 +2015-09-23 12:00:00,0.0,1005.526167,288.6666667,89.775,14.19833333,0.748416667,237.63301763333334 +2015-09-23 13:00:00,0.0,1005.73625,203.75,85.13333333,14.8325,0.60825,237.63193188333332 +2015-09-23 14:00:00,0.0,1006.04225,130.34166670000002,90.26666667,14.64083333,0.547416667,237.63084609999999 +2015-09-23 15:00:00,2.550166176,1006.360083,128.53,94.98333333,14.06416667,0.516416667,237.63084611666667 +2015-09-23 16:00:00,0.0,1006.863,74.085,92.375,14.53583333,0.29825,237.6306910333333 +2015-09-23 17:00:00,0.0,1007.595167,22.14325,93.46666667,13.6425,0.28775,237.63084611666667 +2015-09-23 18:00:00,0.0,1008.406417,1.78325,94.91666667,12.80916667,0.167583333,237.6294501333333 +2015-09-23 19:00:00,2.42957256,1009.329667,0.0,99.00833333,12.05416667,0.095,237.62867458333335 +2015-09-23 20:00:00,2.4050627280000003,1010.144583,0.0,99.96666667,11.07083333,0.042916667,237.6289848166667 +2015-09-23 21:00:00,0.0,1010.679083,0.0,100.0,11.62916667,0.164166667,237.6282092833333 +2015-09-23 22:00:00,12.15661867,1011.21125,0.0,100.0,11.93166667,0.141583333,237.62945015 +2015-09-23 23:00:00,0.0,1011.770167,0.0,100.0,11.78333333,0.111083333,237.62867461666667 +2015-09-24 00:00:00,0.0,1012.310083,0.0,100.0,11.5625,0.2235,237.62913991666667 +2015-09-24 01:00:00,0.0,1012.6345,0.0,99.96666667,11.41166667,0.0975,237.63069099999998 +2015-09-24 02:00:00,0.0,1012.724417,0.0,99.96666667,11.35,0.096916667,237.6323971833333 +2015-09-24 03:00:00,0.0,1012.658917,0.0,99.81666667,10.9775,0.145333333,237.6336380833333 +2015-09-24 04:00:00,0.0,1013.01125,0.0,100.0,10.70083333,0.144833333,237.63348296666666 +2015-09-24 05:00:00,0.0,1013.343417,0.0005,99.15,10.995,0.39816666700000003,237.63332785000003 +2015-09-24 06:00:00,2.537562552,1013.7535,3.307833333,98.93333333,11.03583333,0.875416667,237.63348296666672 +2015-09-24 07:00:00,0.0,1014.286833,35.85083333,96.79166667,11.95,0.296083333,237.6328625333333 +2015-09-24 08:00:00,0.0,1014.829667,110.6525,92.59166667,12.8325,0.588,237.63239721666665 +2015-09-24 09:00:00,0.0,1015.2405,266.5583333,86.31666667,14.355,0.665166667,237.62976038333332 +2015-09-24 10:00:00,0.0,1015.1833330000001,350.1666667,81.3625,15.8875,0.792,237.63038078333332 +2015-09-24 11:00:00,0.0,1015.064333,295.025,77.9625,17.13583333,0.680333333,237.62913991666667 +2015-09-24 12:00:00,0.0,1014.850583,294.40833330000004,72.80583333,17.4525,0.629416667,237.62789906666669 +2015-09-24 13:00:00,0.0,1014.756583,139.5791667,74.4425,17.335,0.876916667,237.62541731666667 +2015-09-24 14:00:00,0.0,1014.497667,175.55,73.69166667,16.98083333,1.112583333,237.62231516666668 +2015-09-24 15:00:00,0.0,1014.391667,200.19166669999998,70.295,17.13083333,1.191666667,237.61874768333334 +2015-09-24 16:00:00,0.0,1014.375,116.22083329999998,71.25666667,17.12333333,1.079333333,237.61719658333334 +2015-09-24 17:00:00,0.0,1014.518417,43.61916667,74.30166667,16.40083333,1.013583333,237.61626596666665 +2015-09-24 18:00:00,0.0,1014.6439999999999,5.384416667000001,85.16666667,13.87083333,0.500833333,237.61595575 +2015-09-24 19:00:00,0.0,1015.044583,0.0,96.48333333,10.76,0.06925,237.61487001666663 +2015-09-24 20:00:00,0.0,1015.351167,0.0,91.825,9.554166667,0.11791666699999999,237.61362913333332 +2015-09-24 21:00:00,0.0,1015.616667,0.0,85.875,8.800833333,0.08858333300000001,237.61362914999998 +2015-09-24 22:00:00,0.0,1015.675,0.0,87.63333333,8.2125,0.047916667,237.61331895 +2015-09-24 23:00:00,0.0,1015.4238330000001,0.0,97.21666667,7.919,0.083666667,237.61595575 +2015-09-25 00:00:00,0.0,1015.400583,0.0,100.0,7.410416667000001,0.071,237.6198334166667 +2015-09-25 01:00:00,0.0,1015.4845,0.0,100.0,7.166583332999999,0.049,237.62045385000002 +2015-09-25 02:00:00,0.0,1015.649417,0.0,100.0,8.651666667,0.01075,237.62014363333333 +2015-09-25 03:00:00,0.0,1015.66725,0.0,100.0,9.718333333,0.043916667,237.62014364999996 +2015-09-25 04:00:00,0.0,1015.885083,0.0,100.0,10.20916667,0.0335,237.6193681 +2015-09-25 05:00:00,0.0,1016.0761669999999,0.0,100.0,10.11583333,0.014583333,237.62122938333334 +2015-09-25 06:00:00,0.0,1016.20175,6.69125,100.0,8.883333333,0.034666667000000005,237.62371115 +2015-09-25 07:00:00,0.0,1016.711833,34.28583333,100.0,9.5025,0.054416667,237.6234009166667 +2015-09-25 08:00:00,0.0,1017.267833,98.46583333,98.75,11.3175,0.152916667,237.62029875 +2015-09-25 09:00:00,0.0,1017.493417,263.6,84.17583333,14.68083333,0.767916667,237.62060896666662 +2015-09-25 10:00:00,0.0,1017.6655,237.19166669999998,77.1275,16.26333333,0.705666667,237.6189027833333 +2015-09-25 11:00:00,0.0,1017.489917,323.1,72.1125,17.4075,0.590583333,237.61750683333332 +2015-09-25 12:00:00,0.0,1017.275,283.3166667,64.7675,16.99416667,0.708666667,237.6147149 +2015-09-25 13:00:00,0.0,1017.410083,413.6083333,59.71,17.1375,2.241666667,237.61021676666664 +2015-09-25 14:00:00,0.0,1017.306583,275.1333333,55.3875,17.2025,2.1430000000000002,237.60726971666668 +2015-09-25 15:00:00,0.0,1017.166083,237.3916667,52.43833333,17.63,2.1356666669999997,237.60478794999995 +2015-09-25 16:00:00,0.0,1017.286833,119.25083329999998,56.26583333,17.0975,2.058333333,237.60323688333332 +2015-09-25 17:00:00,0.0,1017.57675,29.60583333,69.26,15.70666667,1.13825,237.6009102666667 +2015-09-25 18:00:00,0.0,1018.010083,1.95875,85.22666667,13.18583333,0.12475,237.60091025 +2015-09-25 19:00:00,0.0,1018.671917,0.0,92.35,12.10083333,0.059583332999999995,237.5999796 +2015-09-25 20:00:00,0.0,1019.05,0.0,95.30833333,11.6825,0.11683333300000001,237.59997959999998 +2015-09-25 21:00:00,0.0,1019.2689999999999,0.0,96.18333333,10.97166667,0.019083333,237.6004449333333 +2015-09-25 22:00:00,0.0,1019.5583330000001,0.0,97.775,10.795,0.12666666699999998,237.60122046666663 +2015-09-25 23:00:00,0.0,1019.4333330000001,0.0,98.63333333,10.88083333,0.09783333300000001,237.6040124333333 +2015-09-26 00:00:00,0.0,1019.607167,0.0,99.05833333,10.49166667,0.025,237.6035471 +2015-09-26 01:00:00,0.0,1019.5678330000001,0.0,99.76666667,10.2075,0.072333333,237.60571861666665 +2015-09-26 02:00:00,0.0,1019.59225,0.0,100.0,9.9575,0.045166667,237.60649415 +2015-09-26 03:00:00,0.0,1019.625,0.0,100.0,9.84,0.011000000000000001,237.60773504999997 +2015-09-26 04:00:00,0.0,1019.6,0.0,100.0,9.77,0.04275,237.60897591666665 +2015-09-26 05:00:00,0.0,1019.693417,0.0,100.0,9.774166667000001,0.047333333,237.60959634999998 +2015-09-26 06:00:00,0.0,1020.194583,3.242083333,100.0,9.7825,0.001,237.61068208333333 +2015-09-26 07:00:00,0.0,1020.569583,29.06416667,100.0,10.23583333,0.00175,237.61037186666667 +2015-09-26 08:00:00,0.0,1020.985083,78.96333333,98.30833333,11.33916667,0.27399999999999997,237.60913098333333 +2015-09-26 09:00:00,0.0,1021.29225,149.4083333,90.975,12.80916667,1.159166667,237.60835545 +2015-09-26 10:00:00,0.0,1021.4,242.525,82.95416667,13.68083333,2.260333333,237.60835543333334 +2015-09-26 11:00:00,0.0,1021.367833,266.15833330000004,80.24,14.4075,2.4195,237.60726968333333 +2015-09-26 12:00:00,0.0,1021.4405,280.59166669999996,75.03916667,15.2475,2.8031666669999997,237.60478796666666 +2015-09-26 13:00:00,0.0,1021.4095,246.1333333,69.5525,15.83166667,3.33275,237.60091025 +2015-09-26 14:00:00,0.0,1021.264917,241.0333333,66.86,16.15,2.763833333,237.59997959999998 +2015-09-26 15:00:00,0.0,1021.241083,186.5008333,69.35083333,15.95333333,3.4594166669999997,237.59780808333332 +2015-09-26 16:00:00,0.0,1021.367833,32.38583333,79.05416667,14.89833333,2.658666667,237.5981183166667 +2015-09-26 17:00:00,0.0,1021.677917,22.40083333,81.83916667,14.30083333,2.1414166669999997,237.59858363333333 +2015-09-26 18:00:00,0.0,1022.177917,1.7516666669999998,86.6,13.30166667,0.4845,237.59703255 +2015-09-26 19:00:00,0.0,1022.552333,0.0,92.65,12.8075,0.642166667,237.59780810000004 +2015-09-26 20:00:00,0.0,1022.944583,0.0,97.49166667,11.54666667,0.070166667,237.59796321666667 +2015-09-26 21:00:00,0.0,1023.335083,0.0,99.36666667,10.9175,0.018416667,237.5990489666667 +2015-09-26 22:00:00,0.0,1023.535083,0.0,100.0,10.36583333,0.10133333300000001,237.6004449333333 +2015-09-26 23:00:00,0.0,1023.708917,0.0,100.0,10.20083333,0.6153333329999999,237.60075514999997 +2015-09-27 00:00:00,0.0,1023.86725,0.0,100.0,9.944166667000001,0.854666667,237.6021511333333 +2015-09-27 01:00:00,0.0,1024.058917,0.0,100.0,8.535083333,0.253416667,237.60323686666666 +2015-09-27 02:00:00,0.0,1024.185083,0.0,100.0,6.5774166670000005,0.15466666699999998,237.60478796666666 +2015-09-27 03:00:00,0.0,1024.275,0.0,100.0,5.40875,0.0055,237.60726969999996 +2015-09-27 04:00:00,0.0,1024.585083,0.0,100.0,4.65375,0.028666667000000003,237.60820035000003 +2015-09-27 05:00:00,0.0,1024.969583,0.0,100.0,3.862333333,0.111,237.60897588333333 +2015-09-27 06:00:00,0.0,1025.4118330000001,4.769416667,100.0,3.554416667,0.0555,237.60975141666665 +2015-09-27 07:00:00,0.0,1026.044583,18.70333333,100.0,5.54075,0.002916667,237.6097514333333 +2015-09-27 08:00:00,0.0,1026.629083,106.725,99.8,9.180833332999999,1.024166667,237.60959631666665 +2015-09-27 09:00:00,0.0,1027.1595,297.46666669999996,91.425,11.27916667,2.1035,237.60757991666665 +2015-09-27 10:00:00,0.0,1027.45175,381.46666669999996,84.55,13.17416667,3.154833333,237.60680438333327 +2015-09-27 11:00:00,0.0,1027.374417,449.3,74.1875,14.69666667,3.407833333,237.6063390666667 +2015-09-27 12:00:00,0.0,1027.35,266.325,66.90416667,14.87583333,3.68775,237.6060288166666 +2015-09-27 13:00:00,0.0,1027.28875,292.7333333,63.83833333,15.46666667,3.323,237.6021511333333 +2015-09-27 14:00:00,0.0,1027.135083,284.825,60.70833333,15.53083333,3.2311666669999997,237.59966938333332 +2015-09-27 15:00:00,0.0,1027.249417,203.6725,64.27666667,15.8975,3.409583333,237.59749786666669 +2015-09-27 16:00:00,0.0,1027.310083,134.57166669999998,66.25583333,15.77583333,2.903166667,237.59563658333332 +2015-09-27 17:00:00,0.0,1027.583917,22.22583333,74.78916667,14.5625,1.8248333330000002,237.59501615000002 +2015-09-27 18:00:00,0.0,1028.030833,2.385,90.925,13.54416667,1.34175,237.59548145 +2015-09-27 19:00:00,0.0,1028.57675,0.0,95.60833333,12.13583333,0.912666667,237.5940855 +2015-09-27 20:00:00,0.0,1028.894583,0.0,98.89166667,10.9325,1.078833333,237.5961019 +2015-09-27 21:00:00,0.0,1029.4285,0.0,100.0,8.6025,0.35458333299999995,237.59687743333333 +2015-09-27 22:00:00,0.0,1029.841083,0.0,100.0,7.616166667000001,0.289083333,237.59718765 +2015-09-27 23:00:00,0.0,1029.858917,0.0,100.0,7.19025,0.304833333,237.5979631833333 +2015-09-28 00:00:00,0.0,1029.825,0.0,100.0,7.0315,0.068916667,237.5993591666667 +2015-09-28 01:00:00,0.0,1030.033917,0.0,100.0,5.281166667,0.063,237.60013471666664 +2015-09-28 02:00:00,0.0,1029.999417,0.0,100.0,4.258416667,0.10091666699999999,237.60339199999999 +2015-09-28 03:00:00,0.0,1029.935083,0.0,100.0,3.55325,0.0195,237.60416751666662 +2015-09-28 04:00:00,0.0,1030.175,0.0,100.0,2.906,0.00675,237.60370219999996 +2015-09-28 05:00:00,0.0,1030.418417,0.0,100.0,2.430166667,0.0048333329999999996,237.6044777333333 +2015-09-28 06:00:00,0.0,1030.6345,4.147666667,100.0,2.20975,0.015166667,237.60494306666666 +2015-09-28 07:00:00,0.0,1031.14575,16.64916667,100.0,4.452083333,0.045416667,237.60494308333332 +2015-09-28 08:00:00,0.0,1031.593417,106.59666670000001,99.94166667,8.152000000000001,1.362333333,237.60339201666662 +2015-09-28 09:00:00,0.0,1031.944583,297.925,91.95833333,10.28916667,1.7950833330000002,237.60246136666663 +2015-09-28 10:00:00,0.0,1032.19825,381.15,82.77333333,12.6175,2.5075,237.60215111666665 +2015-09-28 11:00:00,0.0,1031.806,415.05,72.84833333,14.56333333,3.229333333,237.60106535 +2015-09-28 12:00:00,0.0,1031.48875,484.13333330000006,59.61666667,16.11666667,2.725166667,237.59889385 +2015-09-28 13:00:00,0.0,1030.925,413.5,56.8525,16.25916667,3.073083333,237.59656721666667 +2015-09-28 14:00:00,0.0,1030.545917,361.9833333,54.4,16.48416667,3.9005,237.59237928333334 +2015-09-28 15:00:00,0.0,1030.2131669999999,297.6833333,51.97916667,16.62166667,3.5485833330000003,237.58989756666665 +2015-09-28 16:00:00,0.0,1029.841667,128.15916670000001,55.16916667,16.06916667,3.39125,237.58896691666666 +2015-09-28 17:00:00,0.0,1030.045167,15.53583333,62.41583333,15.00083333,2.125166667,237.58664029999997 +2015-09-28 18:00:00,0.0,1030.519583,1.49975,81.665,11.6575,0.327916667,237.58710561666666 +2015-09-28 19:00:00,0.0,1030.808333,0.0,94.73333333,7.526666667000001,0.053333333,237.58788114999996 +2015-09-28 20:00:00,0.0,1030.791667,0.0,98.20833333,6.277916667,0.073083333,237.5891220333333 +2015-09-28 21:00:00,0.0,1030.94225,0.0,99.95833333,5.558333332999999,0.132,237.5891220333333 +2015-09-28 22:00:00,0.0,1030.908917,0.0,100.0,7.077000000000001,0.34775,237.58989756666665 +2015-09-28 23:00:00,0.0,1030.856583,0.0,100.0,5.590583333,0.13575,237.59113843333333 +2015-09-29 00:00:00,0.0,1030.522667,0.0,100.0,4.405583333,0.033666667000000004,237.59330995000002 +2015-09-29 01:00:00,0.0,1030.4,0.0,100.0,3.749083333,0.08075,237.59424061666667 +2015-09-29 02:00:00,0.0,1030.524417,0.0,100.0,3.28625,0.043,237.5961019166667 +2015-09-29 03:00:00,0.0,1030.031583,0.0,100.0,3.152166667,0.0295,237.5976529666667 +2015-09-29 04:00:00,0.0,1029.942833,0.0,100.0,2.991666667,0.14225,237.59842851666667 +2015-09-29 05:00:00,0.0,1030.117833,0.0,100.0,3.4475,0.28475,237.59780808333332 +2015-09-29 06:00:00,0.0,1030.392833,3.732916667,100.0,2.8283333330000002,0.091833333,237.5993591833333 +2015-09-29 07:00:00,0.0,1030.643417,16.135,100.0,5.014166667,0.2735,237.59966938333332 +2015-09-29 08:00:00,0.0,1030.766667,101.0108333,100.0,9.114083333,1.86775,237.5987387166667 +2015-09-29 09:00:00,0.0,1030.831583,291.2583333,89.50833333,11.76916667,2.057583333,237.59656721666667 +2015-09-29 10:00:00,0.0,1030.608917,376.1333333,74.54166667,14.10583333,3.8290833330000003,237.59703256666668 +2015-09-29 11:00:00,0.0,1030.466083,415.8916667,66.60833333,15.11416667,3.74025,237.59625703333336 +2015-09-29 12:00:00,0.0,1030.020917,345.575,63.92666667,15.6275,3.83225,237.59501615 +2015-09-29 13:00:00,0.0,1029.655417,299.5666667,61.545,15.8375,3.8289166669999997,237.59113843333333 +2015-09-29 14:00:00,0.0,1029.231,341.5083333,61.08,15.97333333,4.084666667,237.58927715000002 +2015-09-29 15:00:00,0.0,1028.714917,195.16666669999998,61.0975,16.01333333,4.4885,237.58819136666662 +2015-09-29 16:00:00,0.0,1028.583333,114.27916670000002,61.2225,15.40333333,4.646166667,237.58586474999996 +2015-09-29 17:00:00,0.0,1028.5,19.95,65.20833333,14.66,4.261833333,237.58477898333334 +2015-09-29 18:00:00,0.0,1028.5595,2.2280833330000003,71.65916667,13.2025,3.09275,237.5847789833333 +2015-09-29 19:00:00,0.0,1028.556583,0.0,79.16333333,11.92416667,2.9083333330000003,237.58431366666665 +2015-09-29 20:00:00,0.0,1028.619,0.0,84.05,10.92166667,2.129083333,237.58508919999997 +2015-09-29 21:00:00,0.0,1028.924417,0.0,94.75833333,9.064166667,0.21425,237.58431364999998 +2015-09-29 22:00:00,0.0,1028.993417,0.0,99.15,8.30575,0.297,237.58726073333332 +2015-09-29 23:00:00,0.0,1028.94825,0.0,99.825,6.761,0.2875,237.58927713333335 +2015-09-30 00:00:00,0.0,1028.960083,0.0,100.0,5.1695,0.167666667,237.5908282 +2015-09-30 01:00:00,0.0,1029.1,0.0,100.0,3.98925,0.027416667000000002,237.59082821666664 +2015-09-30 02:00:00,0.0,1028.9655,0.0,100.0,3.258416667,0.028999999999999998,237.59191396666668 +2015-09-30 03:00:00,0.0,1028.856583,0.0,100.0,3.391166667,0.197666667,237.59330993333333 +2015-09-30 04:00:00,0.0,1028.7410830000001,0.0,100.0,4.31225,0.226416667,237.59517125000002 +2015-09-30 05:00:00,0.0,1028.585083,0.0,100.0,4.938666667,0.321,237.5959468 +2015-09-30 06:00:00,0.0,1029.1035,3.5059166669999997,100.0,4.7139166669999994,0.250166667,237.59548146666668 +2015-09-30 07:00:00,0.0,1029.3155,15.60666667,100.0,6.0955833329999995,0.569333333,237.59656723333333 +2015-09-30 08:00:00,0.0,1029.452333,91.94833333,99.59166667,9.19,2.566083333,237.597653 +2015-09-30 09:00:00,0.0,1029.675583,285.8916667,83.92583333,11.09866562,4.4023333330000005,237.59548146666666 +2015-09-30 10:00:00,0.0,1029.547667,369.2333333,71.92916667,12.80166667,4.010166667,237.5961019 +2015-09-30 11:00:00,0.0,1029.130417,369.15833330000004,64.185,14.11083333,3.8115,237.59486103333333 +2015-09-30 12:00:00,0.0,1028.630417,416.1833333,61.53416667,14.74583333,3.317333333,237.59393036666668 +2015-09-30 13:00:00,0.0,1027.962583,415.2666667,56.63416667,15.58,3.6689999999999996,237.59051798333337 +2015-09-30 14:00:00,0.0,1027.28875,346.7,54.66083333,15.76,5.001,237.5880362833333 +2015-09-30 15:00:00,0.0,1027.041667,280.3,53.1625,15.73583333,5.562416667000001,237.58384831666663 +2015-09-30 16:00:00,0.0,1026.81375,127.51416670000002,54.36916667,15.16333333,4.865583333,237.58245236666664 +2015-09-30 17:00:00,0.0,1026.792833,16.10075,58.40416667,14.19916667,3.7559166669999997,237.58043598333336 +2015-09-30 18:00:00,0.0,1026.84225,1.495916667,64.64166667,12.63916667,3.0445,237.58105638333333 +2015-09-30 19:00:00,0.0,1027.027917,0.0,71.29833333,11.03666667,2.27425,237.58059108333336 +2015-09-30 20:00:00,0.0,1027.266083,0.0,76.89166667,10.32833333,2.56425,237.5810564 +2015-09-30 21:00:00,0.0,1027.358917,0.0,89.38333333,8.145666667,0.7105,237.58291768333333 +2015-09-30 22:00:00,0.0,1027.458333,0.0,92.79166667,5.17775,0.1525,237.58338301666666 +2015-09-30 23:00:00,0.0,1027.339917,0.0,98.20833333,3.97175,0.037083332999999996,237.58477898333334 +2015-01-10 00:00:00,0.0,1026.948833,0.0,99.725,2.978916667,0.009333333000000001, +2015-01-10 01:00:00,0.0,1026.656,0.0,99.79166667,3.005583333,0.273166667, +2015-01-10 02:00:00,0.0,1026.264333,0.0,99.98333333,2.7415,0.201083333, +2015-01-10 03:00:00,0.0,1025.964917,0.0,100.0,2.529666667,0.15491666699999998, +2015-01-10 04:00:00,0.0,1025.656583,0.0,100.0,2.385916667,0.259916667, +2015-01-10 05:00:00,0.0,1025.65175,0.0,100.0,3.216333333,0.73675, +2015-01-10 06:00:00,0.0,1025.791083,3.3225833330000003,97.45,4.9095,2.19975, +2015-01-10 07:00:00,0.0,1025.79225,15.4425,96.08333333,5.761666667,3.414416667, +2015-01-10 08:00:00,0.0,1025.876167,85.08416667,90.60833333,7.388583333,3.7744166669999997, +2015-01-10 09:00:00,0.0,1025.848833,287.3333333,79.22416667,9.601666667,3.872583333, +2015-01-10 10:00:00,0.0,1025.647667,373.15,64.63916667,11.43583333,3.596916667, +2015-01-10 11:00:00,0.0,1025.306583,423.95,57.52833333,12.96,3.0995, +2015-01-10 12:00:00,0.0,1025.047667,439.9416666999999,54.5825,13.87333333,4.589916667, +2015-01-10 13:00:00,0.0,1024.67325,416.925,53.52083333,14.5975,4.549416667, +2015-01-10 14:00:00,0.0,1024.40775,363.8333333,52.6775,15.1075,4.180833333, +2015-01-10 15:00:00,0.0,1023.8965,279.7083333,50.09333333,15.44333333,4.392333333, +2015-01-10 16:00:00,0.0,1023.539917,122.17,53.15833333,15.0275,3.7473333330000003, +2015-01-10 17:00:00,0.0,1023.375583,18.66416667,57.45333333,14.14416667,3.320916667, +2015-01-10 18:00:00,0.0,1023.794,1.602583333,77.33666667,12.435,2.17175, +2015-01-10 19:00:00,0.0,1023.91725,0.0,81.985,10.29333333,0.76925, +2015-01-10 20:00:00,0.0,1024.075583,0.0,92.7,6.750666667000001,0.177083333, +2015-01-10 21:00:00,0.0,1024.05775,0.0,96.21666667,5.260333333,0.172583333, +2015-01-10 22:00:00,0.0,1023.8905,0.0,97.3,4.3396666669999995,0.08941666699999999, +2015-01-10 23:00:00,0.0,1023.773833,0.0,99.61666667,3.154416667,0.031583333, +2015-02-10 00:00:00,0.0,1023.3560000000001,0.0,100.0,2.494166667,0.008666667, +2015-02-10 01:00:00,0.0,1023.098833,0.0,100.0,2.05375,0.0145, +2015-02-10 02:00:00,0.0,1022.822667,0.0,100.0,1.63075,0.0155, +2015-02-10 03:00:00,0.0,1022.457167,0.0,100.0,1.018,0.04075, +2015-02-10 04:00:00,0.0,1022.139917,0.0,100.0,0.5670000000000001,0.011000000000000001, +2015-02-10 05:00:00,0.0,1021.939917,0.0,100.0,0.164583333,0.011333333000000001, +2015-02-10 06:00:00,0.0,1021.681583,3.010583333,100.0,0.046083333,0.0035, +2015-02-10 07:00:00,0.0,1021.56725,14.5325,100.0,1.9356666669999998,0.015083333, +2015-02-10 08:00:00,0.0,1021.566083,76.94083333,99.03333333,6.283916667000001,1.37675, +2015-02-10 09:00:00,0.0,1021.47325,277.96666669999996,83.99166667,8.756583333,1.9479166669999999, +2015-02-10 10:00:00,0.0,1020.928667,362.95,74.62083333,11.22083333,1.7341666669999998, +2015-02-10 11:00:00,0.0,1020.129833,415.7916667,67.455,13.925,2.49525, +2015-02-10 12:00:00,0.0,1019.3775,434.6416666999999,60.19583333,16.3,2.704583333, +2015-02-10 13:00:00,0.0,1018.4025,417.71666669999996,52.63916667,18.00833333,2.732416667, +2015-02-10 14:00:00,0.0,1017.3875830000001,365.03333330000004,48.88916667,18.98833333,2.623166667, +2015-02-10 15:00:00,0.0,1016.776917,280.40833330000004,50.84166667,18.66166667,3.340666667, +2015-02-10 16:00:00,0.0,1015.604833,120.82666670000002,55.11166667,17.9225,3.8789999999999996, +2015-02-10 17:00:00,0.0,1015.039917,12.76675,62.99083333,16.78583333,2.3868333330000002, +2015-02-10 18:00:00,0.0,1015.276167,0.9966666670000001,82.62833333,12.54916667,0.584833333, +2015-02-10 19:00:00,0.0,1015.2405,0.0,93.59166667,8.389333333,0.164833333, +2015-02-10 20:00:00,0.0,1014.930417,0.0,97.175,7.5004166670000005,0.1135, +2015-02-10 21:00:00,0.0,1014.514333,0.0,98.79166667,7.722083333,0.29025, +2015-02-10 22:00:00,0.0,1014.1905,0.0,99.75,6.409916667,0.10416666699999999, +2015-02-10 23:00:00,0.0,1013.8655,0.0,99.41666667,6.107083332999999,0.113416667, +2015-03-10 00:00:00,0.0,1013.6310000000001,0.0,99.99166667,5.12325,0.032583333,238.05563600000002 +2015-03-10 01:00:00,0.0,1013.1738330000001,0.0,100.0,4.900083333,0.037166667,238.055986 +2015-03-10 02:00:00,0.0,1012.837,0.0,100.0,4.83525,0.032583333,238.05631933333336 +2015-03-10 03:00:00,0.0,1012.316083,0.0,100.0,4.206333333,0.087,238.055986 +2015-03-10 04:00:00,0.0,1012.106583,0.0,100.0,3.703583333,0.061,238.05631933333333 +2015-03-10 05:00:00,0.0,1011.9155,0.0,100.0,3.318916667,0.029416667,238.05698600000002 +2015-03-10 06:00:00,0.0,1011.775,3.4819999999999998,100.0,3.519583333,0.033833333,238.05765266666666 +2015-03-10 07:00:00,0.0,1011.875,24.47166667,100.0,5.692,0.04475,238.0586693333333 +2015-03-10 08:00:00,0.0,1011.95,74.48083333,99.88333333,9.519083333,0.33766666700000003,238.071386 +2015-03-10 09:00:00,0.0,1011.9511669999999,258.5416667,84.41583333,12.37166667,0.402083333,238.08028599999997 +2015-03-10 10:00:00,0.0,1011.814917,334.35,76.365,14.76166667,0.61075,238.09125266666663 +2015-03-10 11:00:00,0.0,1011.532167,408.9416667,68.40166667,16.5325,0.977,238.09605266666668 +2015-03-10 12:00:00,0.0,1011.095333,317.34166669999996,66.56833333,17.7675,1.1803333329999999,238.05836933333333 +2015-03-10 13:00:00,0.0,1010.438167,369.15,60.87916667,17.81833333,1.7455,238.055986 +2015-03-10 14:00:00,0.0,1010.1,329.375,57.58833333,19.14,1.03475,238.05698600000002 +2015-03-10 15:00:00,0.0,1009.989917,211.0083333,58.5725,19.29583333,1.124916667,238.05698600000002 +2015-03-10 16:00:00,0.0,1009.7,108.96833329999998,64.06083333,18.78666667,0.728916667,238.05765266666666 +2015-03-10 17:00:00,0.0,1009.700583,17.772000000000002,82.7475,15.97416667,0.057833333,238.05631933333336 +2015-03-10 18:00:00,0.0,1009.574417,0.815666667,93.45,12.38833333,0.098,238.05631933333333 +2015-03-10 19:00:00,0.0,1009.900583,0.0,97.25,10.11,0.029583333,238.05631933333333 +2015-03-10 20:00:00,0.0,1009.910667,0.0,99.8,8.738333333,0.041916667000000005,238.05765266666666 +2015-03-10 21:00:00,0.0,1010.082167,0.0,100.0,7.599833332999999,0.077833333,238.05800266666665 +2015-03-10 22:00:00,0.0,1009.924417,0.0,100.0,7.03525,0.054416667,238.05833600000003 +2015-03-10 23:00:00,0.0,1010.194,0.0,100.0,6.40775,0.02325,238.05833600000003 +2015-04-10 00:00:00,0.0,1010.392833,0.0,100.0,5.975833333,0.005083333,238.04375496666668 +2015-04-10 01:00:00,0.0,1010.693417,0.0,100.0,5.749333332999999,0.019666667,238.04380669999998 +2015-04-10 02:00:00,0.0,1010.900583,0.0,100.0,5.96575,0.0,238.04372909999998 +2015-04-10 03:00:00,0.0,1010.866083,0.0,100.0,5.77125,0.032583333,238.04375496666663 +2015-04-10 04:00:00,0.0,1010.883333,0.0,100.0,4.9495,0.0,238.04372909999998 +2015-04-10 05:00:00,0.0,1011.1285,0.0,100.0,4.992666667,0.009416667,238.04378083333333 +2015-04-10 06:00:00,0.0,1011.820167,2.8264166669999997,100.0,5.5141666670000005,0.00625,238.04365150000004 +2015-04-10 07:00:00,0.0,1012.3540830000001,36.0325,100.0,6.35725,0.081083333,238.04375496666663 +2015-04-10 08:00:00,0.0,1012.82675,84.90916667,100.0,8.195,0.0815,238.04375496666668 +2015-04-10 09:00:00,0.0,1013.318417,112.95833329999999,96.575,9.855,0.301333333,238.04380669999998 +2015-04-10 10:00:00,0.0,1013.560667,162.7166667,90.075,11.96583333,0.45191666700000005,238.04380669999998 +2015-04-10 11:00:00,0.0,1013.539917,269.6916667,86.50833333,15.99916667,0.4835,238.04383133333332 +2015-04-10 12:00:00,0.0,1013.364917,268.175,81.4375,17.05833333,0.5003333329999999,238.04383133333332 +2015-04-10 13:00:00,0.0,1013.014333,175.6166667,78.58083333,16.67,1.055,238.04380669999998 +2015-04-10 14:00:00,0.0,1012.783333,140.525,79.0525,16.71666667,1.3256666670000001,238.04385596666665 +2015-04-10 15:00:00,0.0,1012.706,95.73666667,78.77916667,16.77333333,0.46175,238.0438806 +2015-04-10 16:00:00,0.0,1012.314333,72.26,80.295,16.27416667,0.718666667,238.04380669999998 +2015-04-10 17:00:00,0.0,1012.02675,14.21225,86.45,15.02083333,0.2295,238.04380669999998 +2015-04-10 18:00:00,0.0,1012.1738330000001,0.42208333299999995,97.09166667,11.2925,0.027083332999999998,238.04367736666669 +2015-04-10 19:00:00,0.0,1012.093417,0.0,99.83333333,9.6475,0.036583332999999996,238.04362686666664 +2015-04-10 20:00:00,0.0,1012.368417,0.0,100.0,8.97,0.068916667,238.04355296666665 +2015-04-10 21:00:00,0.0,1012.439917,0.0,100.0,8.0185,0.0395,238.04357760000002 +2015-04-10 22:00:00,0.0,1012.199417,0.0,100.0,6.967833333,0.011833333,238.04362686666664 +2015-04-10 23:00:00,0.0,1012.175583,0.0,100.0,6.990333333,0.028916667000000004,238.04360223333333 +2015-05-10 00:00:00,0.0,1012.1560000000001,0.0,100.0,7.69475,0.00041666699999999996,238.0201226 +2015-05-10 01:00:00,0.0,1012.023833,0.0,100.0,8.500833333,0.081416667,238.02098448333334 +2015-05-10 02:00:00,0.0,1011.9428330000001,0.0,100.0,9.299166667,0.001833333,238.02115686666664 +2015-05-10 03:00:00,0.0,1011.966667,0.0,100.0,10.70916667,0.429333333,238.0228806333333 +2015-05-10 04:00:00,0.0,1011.756583,0.0,100.0,11.3625,0.616916667,238.02270824999997 +2015-05-10 05:00:00,0.0,1011.689333,0.0,100.0,11.3425,1.266583333,238.02288059999998 +2015-05-10 06:00:00,0.0,1011.149417,1.58675,100.0,11.165,1.262166667,238.02046735 +2015-05-10 07:00:00,0.0,1011.385083,37.40916667,100.0,11.10916667,0.8290000000000001,238.02063971666666 +2015-05-10 08:00:00,0.0,1011.8083330000001,75.48833333,96.525,11.7175,0.97275,238.01770931666667 +2015-05-10 09:00:00,0.0,1011.519583,139.9916667,92.73333333,12.28416667,2.21075,238.01719218333332 +2015-05-10 10:00:00,0.0,1011.422083,297.0,88.25,13.53916667,3.041833333,238.01546841666664 +2015-05-10 11:00:00,0.0,1011.14475,322.84166669999996,80.545,15.25833333,3.236583333,238.01391704999995 +2015-05-10 12:00:00,0.0,1010.2715,262.5083333,78.9925,15.72333333,2.132166667,238.01374466666664 +2015-05-10 13:00:00,0.0,1009.62925,241.6416667,74.67583333,17.01083333,2.335083333,238.01460654999997 +2015-05-10 14:00:00,0.0,1008.811417,257.28333330000004,70.59416667,17.26333333,2.7119999999999997,238.01236566666668 +2015-05-10 15:00:00,0.0,1008.289917,141.2,71.3275,17.50666667,2.912666667,238.01271041666666 +2015-05-10 16:00:00,0.0,1007.661417,37.915,73.465,16.885,2.085333333,238.0111590166667 +2015-05-10 17:00:00,0.0,1006.82925,5.88925,75.42,16.29583333,1.97975,238.01150376666666 +2015-05-10 18:00:00,0.0,1006.525,0.223083333,83.46416667,15.35916667,1.292916667,238.01357229999996 +2015-05-10 19:00:00,0.0,1006.061417,0.0,92.54166667,13.9525,0.58375,238.01529606666665 +2015-05-10 20:00:00,0.0,1005.339917,0.0,97.975,12.05333333,0.048166667,238.01529606666665 +2015-05-10 21:00:00,4.8100455360000005,1004.954833,0.0,99.11666667,12.0125,0.052833332999999996,238.01598556666661 +2015-05-10 22:00:00,14.43013661,1004.345917,0.0,100.0,12.30083333,0.0,238.01684741666665 +2015-05-10 23:00:00,2.4050227680000003,1003.839333,0.0,99.79166667,12.4425,0.39441666700000005,238.01667506666664 +2015-06-10 00:00:00,24.21722042,1003.322083,0.0,99.64166667,12.80166667,0.094166667,237.71001699999997 +2015-06-10 01:00:00,7.236581016000001,1002.603083,0.0,100.0,12.70333333,0.41316666700000004,237.71225788333334 +2015-06-10 02:00:00,13.220674300000002,1001.812,0.0,100.0,12.87416667,2.8445,237.71449878333337 +2015-06-10 03:00:00,0.0,1001.257167,0.0,100.0,12.97333333,3.20975,237.71656729999998 +2015-06-10 04:00:00,0.0,1001.1310000000001,0.0,100.0,13.225,3.154,237.7186358166667 +2015-06-10 05:00:00,0.0,1000.968417,0.0,100.0,13.54333333,3.452833333,237.71915296666668 +2015-06-10 06:00:00,0.0,1001.125,0.6045,100.0,13.79583333,2.652666667,237.72191096666666 +2015-06-10 07:00:00,0.0,1000.983333,12.28741667,99.98333333,14.07,2.3885,237.7226004833333 +2015-06-10 08:00:00,0.0,1000.839917,48.34,99.93333333,14.91666667,3.057416667,237.71742918333334 +2015-06-10 09:00:00,0.0,1000.985083,91.68666667,96.96666667,15.91083333,3.329916667,237.70984460000003 +2015-06-10 10:00:00,0.0,1001.133917,183.5166667,92.85,17.275,3.3735,237.70226001666666 +2015-06-10 11:00:00,0.0,1001.342833,140.1583333,90.34166667,17.73666667,3.2275,237.69226219999996 +2015-06-10 12:00:00,0.0,1001.4,147.7333333,90.175,18.015,3.0074166669999998,237.68709086666664 +2015-06-10 13:00:00,0.0,1001.062,107.7275,88.8,18.70083333,2.188333333,237.68416050000005 +2015-06-10 14:00:00,28.89536431,1000.431,49.57916667,98.175,17.58583333,1.657083333,237.68209196666666 +2015-06-10 15:00:00,32.09336899,1000.198833,68.475,98.95833333,17.52833333,1.8645,237.68123008333336 +2015-06-10 16:00:00,0.0,999.7804167000002,73.72666667,98.85,17.71,1.5919999999999999,237.6798510666667 +2015-06-10 17:00:00,0.0,1000.333167,19.86891667,98.80833333,17.7325,1.284583333,237.67829970000003 +2015-06-10 18:00:00,0.0,1001.14575,0.22066666699999998,100.0,16.44666667,0.654416667,237.67761016666668 +2015-06-10 19:00:00,0.0,1001.802333,0.0,100.0,15.55083333,0.540333333,237.67864443333337 +2015-06-10 20:00:00,0.0,1002.0666669999999,0.0,100.0,15.39333333,0.394583333,237.68088533333332 +2015-06-10 21:00:00,0.0,1002.2095,0.0,99.95,14.0675,0.06283333299999999,237.68416046666667 +2015-06-10 22:00:00,0.0,1002.243417,0.0,100.0,12.90416667,0.144833333,237.68709090000002 +2015-06-10 23:00:00,0.0,1002.383333,0.0,100.0,12.64166667,0.18725,237.69140028333334 +2015-07-10 00:00:00,0.0,1002.494583,0.0,100.0,11.69166667,0.11783333300000001,237.53652986666668 +2015-07-10 01:00:00,0.0,1002.850583,0.0,100.0,11.42916667,0.11966666699999999,237.54112986666667 +2015-07-10 02:00:00,0.0,1003.2595,0.0,100.0,11.7075,0.11225,237.54531166666666 +2015-07-10 03:00:00,0.0,1003.543417,0.0,100.0,12.52666667,0.0865,237.54907531666663 +2015-07-10 04:00:00,0.0,1003.72675,0.0,100.0,12.525,0.036166667,237.5542328833333 +2015-07-10 05:00:00,0.0,1004.052917,0.0,100.0,12.3925,0.004166667,237.55562681666663 +2015-07-10 06:00:00,0.0,1004.602333,1.103916667,100.0,12.64333333,0.14325,237.55688136666663 +2015-07-10 07:00:00,0.0,1005.120167,34.50583333,99.36666667,13.53083333,0.09725,237.55869348333331 +2015-07-10 08:00:00,0.0,1005.77075,88.73916667,93.49166667,15.41083333,0.36941666700000003,237.5581359 +2015-07-10 09:00:00,0.0,1006.462417,188.225,90.25833333,17.68166667,0.42708333299999995,237.54963286666668 +2015-07-10 10:00:00,0.0,1006.944583,269.7083333,83.1,17.74416667,0.438333333,237.53708745000003 +2015-07-10 11:00:00,0.0,1007.3445830000001,234.2833333,80.43166667,19.00583333,0.47958333299999995,237.52482079999996 +2015-07-10 12:00:00,0.0,1007.943417,320.5583333,77.79666667,17.93916667,0.5445,237.51380871666666 +2015-07-10 13:00:00,0.0,1008.175583,161.81666669999998,79.9375,17.11916667,0.48408333299999995,237.50948749999998 +2015-07-10 14:00:00,0.0,1008.427917,123.7,78.22166667,17.61583333,0.3005,237.50656023333332 +2015-07-10 15:00:00,0.0,1008.910083,40.04,80.76666667,16.4325,0.136166667,237.5029360166667 +2015-07-10 16:00:00,0.0,1009.044583,54.30666667,80.99666667,16.66333333,0.209416667,237.50182083333334 +2015-07-10 17:00:00,0.0,1009.62675,11.28691667,83.58333333,15.53083333,0.053416667,237.50196021666667 +2015-07-10 18:00:00,0.0,1010.288,0.10516666699999999,86.7,14.64916667,0.108333333,237.4990329666667 +2015-07-10 19:00:00,0.0,1010.8285,0.0,89.3,14.0075,0.09991666699999999,237.4976390666667 +2015-07-10 20:00:00,0.0,1011.386833,0.0,91.73333333,13.14583333,0.12591666699999998,237.50056628333334 +2015-07-10 21:00:00,0.0,1011.8261669999999,0.0,94.79166667,12.69416667,0.080833333,237.50377236666668 +2015-07-10 22:00:00,0.0,1012.17675,0.0,92.58333333,12.87166667,0.333666667,237.50795415000002 +2015-07-10 23:00:00,0.0,1012.308917,0.0,92.00833333,12.92833333,0.20925,237.5139481 +2015-08-10 00:00:00,0.0,1012.36725,0.0,92.01666667,12.77416667,0.13875,237.43226343333333 +2015-08-10 01:00:00,0.0,1012.558917,0.0,92.40833333,12.53333333,0.382166667,237.43574826666665 +2015-08-10 02:00:00,0.0,1012.575583,0.0,93.375,12.2475,0.135083333,237.44104521666668 +2015-08-10 03:00:00,0.0,1012.6439999999999,0.0,94.28333333,11.7525,0.027583332999999998,237.44508766666664 +2015-08-10 04:00:00,0.0,1012.957167,0.0,94.81666667,11.60583333,0.023333332999999998,237.4470391333334 +2015-08-10 05:00:00,0.0,1013.02675,0.0,94.15,11.625,0.00675,237.4523361 +2015-08-10 06:00:00,0.0,1013.545167,0.308083333,94.90833333,11.69833333,0.001333333,237.45512398333335 +2015-08-10 07:00:00,0.0,1013.908917,27.02441667,97.94166667,11.95,0.045416667,237.45833003333334 +2015-08-10 08:00:00,0.0,1014.3540830000001,84.125,91.66666667,13.255,0.33633333299999996,237.4570755 +2015-08-10 09:00:00,0.0,1014.785083,158.3,88.1,14.81833333,0.33933333299999996,237.45122095000002 +2015-08-10 10:00:00,0.0,1015.244583,188.0,85.56666667,14.7025,0.408,237.44243916666665 +2015-08-10 11:00:00,0.0,1015.476167,232.29166669999998,80.9075,15.79666667,0.53175,237.4305907 +2015-08-10 12:00:00,0.0,1015.608333,188.58333330000002,80.42166667,15.2375,0.94,237.41762706666668 +2015-08-10 13:00:00,0.0,1015.508333,160.80833330000002,79.58666667,15.74833333,0.43200000000000005,237.40926345 +2015-08-10 14:00:00,0.0,1015.708333,140.8416667,77.50666667,15.85,0.41225,237.4073119666667 +2015-08-10 15:00:00,0.0,1015.61725,72.00166667,80.06416667,15.13666667,1.1095,237.40870588333334 +2015-08-10 16:00:00,0.0,1015.7,43.91,84.175,14.41333333,0.9361666670000001,237.40759075000005 +2015-08-10 17:00:00,0.0,1015.776167,11.08433333,87.21666667,14.035,0.990583333,237.40661498333336 +2015-08-10 18:00:00,0.0,1016.245167,0.141833333,90.0,13.4025,1.114583333,237.47923906666665 +2015-08-10 19:00:00,7.434670056,1016.45,0.0,94.7,12.6175,0.291916667,237.70115379999996 +2015-08-10 20:00:00,16.877844699999997,1016.625,0.0,98.825,12.14,0.068333333,237.74088098333334 +2015-08-10 21:00:00,7.215068304,1016.72675,0.0,100.0,12.03666667,0.0355,237.74450520000002 +2015-08-10 22:00:00,2.4050227680000003,1016.801167,0.0,100.0,11.90833333,0.056083333,237.7403234 +2015-08-10 23:00:00,4.8100455360000005,1016.85775,0.0,100.0,11.83666667,0.065083333,237.7358628166667 +2015-09-10 00:00:00,4.811439168,1016.67325,0.0,100.0,11.59583333,0.182083333,237.53623011666664 +2015-09-10 01:00:00,12.05179121,1016.674417,0.0,100.0,11.5075,0.034583333,237.53809141666662 +2015-09-10 02:00:00,12.03077858,1016.55,0.0,100.0,11.365,0.034083333,237.5415038166667 +2015-09-10 03:00:00,40.81353202,1016.499417,0.0,100.0,11.26416667,0.008416667,237.5436753166667 +2015-09-10 04:00:00,16.82125123,1016.35775,0.0,100.0,11.22833333,0.004666667,237.5455366333333 +2015-09-10 05:00:00,26.42641073,1016.181583,0.0,100.0,11.1525,0.013999999999999999,237.54569174999997 +2015-09-10 06:00:00,21.67930025,1016.20175,0.5265,100.0,11.0875,0.028916667000000004,237.54739795 +2015-09-10 07:00:00,7.263418416,1016.376167,10.775,100.0,11.06833333,0.091416667,237.54739793333331 +2015-09-10 08:00:00,0.0,1016.558917,45.2675,100.0,11.53416667,0.073416667,237.54786326666667 +2015-09-10 09:00:00,0.0,1016.6595,39.45583333,100.0,11.73416667,0.5975,237.54832858333336 +2015-09-10 10:00:00,8.057578368,1016.782167,94.95833333,100.0,12.02416667,1.000916667,237.54538151666665 +2015-09-10 11:00:00,0.0,1016.7,126.99166670000001,97.95833333,12.89666667,0.65025,237.54336511666668 +2015-09-10 12:00:00,0.0,1016.431583,77.7175,97.25833333,13.4,0.765166667,237.53824653333334 +2015-09-10 13:00:00,0.0,1016.189333,54.24583333,98.3,13.80416667,0.4475,237.5335933 +2015-09-10 14:00:00,0.0,1015.9155,54.8125,98.46666667,14.10333333,0.391083333,237.5233562 +2015-09-10 15:00:00,0.0,1015.716667,79.01833333,95.25,14.0275,1.27425,237.51901314999998 +2015-09-10 16:00:00,0.0,1015.541083,49.9975,96.15,14.10333333,0.489,237.51761718333333 +2015-09-10 17:00:00,0.0,1015.583917,13.6375,99.14166667,13.72833333,0.699416667,237.51482523333334 +2015-09-10 18:00:00,2.4050227680000003,1015.741667,0.0765,100.0,12.87666667,0.204333333,237.5140497 +2015-09-10 19:00:00,0.0,1015.742833,0.0,100.0,12.78666667,0.8281666670000001,237.51311904999997 +2015-09-10 20:00:00,0.0,1015.8155,0.0,100.0,12.59666667,0.48575,237.51451501666668 +2015-09-10 21:00:00,0.0,1015.741667,0.0,100.0,12.67416667,0.6569166670000001,237.51746205000003 +2015-09-10 22:00:00,0.0,1015.63275,0.0,100.0,12.49833333,0.563,237.51963358333333 +2015-09-10 23:00:00,0.0,1015.464333,0.0,100.0,12.02666667,0.176333333,237.52133978333333 +2015-10-10 00:00:00,0.0,1015.241667,0.0,100.0,12.04916667,0.56725,237.66496990000005 +2015-10-10 01:00:00,0.0,1015.3178330000001,0.0,100.0,11.86666667,0.907166667,237.6652801166667 +2015-10-10 02:00:00,0.0,1015.175,0.0,100.0,11.85166667,1.071416667,237.66621078333336 +2015-10-10 03:00:00,0.0,1015.163167,0.0,100.0,11.64916667,1.127916667,237.66683120000002 +2015-10-10 04:00:00,0.0,1015.018417,0.0,100.0,11.25916667,2.056083333,237.6672965166667 +2015-10-10 05:00:00,0.0,1014.9238330000001,0.0,99.6,10.8825,1.4869999999999999,237.66776183333334 +2015-10-10 06:00:00,0.0,1014.941083,0.38799999999999996,99.43333333,10.68083333,2.053583333,237.66667606666667 +2015-10-10 07:00:00,0.0,1014.9595,8.96,99.94166667,10.615,2.096166667,237.66822718333333 +2015-10-10 08:00:00,0.0,1015.04225,37.78166667,98.55833333,10.4775,2.852833333,237.66760673333332 +2015-10-10 09:00:00,0.0,1014.973833,119.625,95.49166667,10.60083333,3.49225,237.6669863 +2015-10-10 10:00:00,0.0,1014.69825,250.19166669999998,86.475,11.1475,3.33725,237.66776183333334 +2015-10-10 11:00:00,0.0,1014.289333,353.4333333,77.66916667,12.34916667,3.1920833330000002,237.66683118333333 +2015-10-10 12:00:00,0.0,1013.828667,352.8666667,73.70333333,12.9375,3.361916667,237.66559031666668 +2015-10-10 13:00:00,0.0,1013.425,337.34166669999996,71.12416667,13.53166667,3.285416667,237.66434946666672 +2015-10-10 14:00:00,0.0,1013.157167,289.15,69.10833333,13.31416667,3.8689166669999997,237.66388413333334 +2015-10-10 15:00:00,0.0,1013.039917,201.775,70.1425,12.8575,3.718083333,237.66341883333334 +2015-10-10 16:00:00,0.0,1012.841083,93.19333333,74.56583333,12.115,3.20975,237.66233309999998 +2015-10-10 17:00:00,0.0,1012.783917,14.89575,80.45916667,11.25416667,3.32925,237.66233309999998 +2015-10-10 18:00:00,0.0,1013.21125,0.068583333,82.44166667,10.15166667,3.3698333330000003,237.66124734999997 +2015-10-10 19:00:00,0.0,1013.283333,0.0,86.375,8.82,3.27,237.66140245 +2015-10-10 20:00:00,0.0,1013.366667,0.0,91.36666667,7.913666667,2.194833333,237.66171266666663 +2015-10-10 21:00:00,0.0,1013.373833,0.0,94.475,7.781416667,2.152666667,237.66078199999995 +2015-10-10 22:00:00,0.0,1013.37675,0.0,85.23333333,7.94875,1.7383333330000001,237.65985138333335 +2015-10-10 23:00:00,0.0,1013.079833,0.0,83.675,7.694583333,2.0065,237.66031669999998 +2015-11-10 00:00:00,0.0,1012.714917,0.0,84.91666667,7.122333332999999,1.7903333330000002,237.73310221666668 +2015-11-10 01:00:00,0.0,1012.447083,0.0,85.31666667,6.817916667,1.9069999999999998,237.7332571666667 +2015-11-10 02:00:00,0.0,1011.989917,0.0,85.225,6.41,1.7890000000000001,237.73372198333334 +2015-11-10 03:00:00,0.0,1011.73275,0.0,92.925,5.438166667000001,1.6869999999999998,237.73372199999997 +2015-11-10 04:00:00,0.0,1011.87675,0.0,89.83333333,4.682166667,1.7189166669999998,237.73356705 +2015-11-10 05:00:00,0.0,1012.033333,0.0,87.00833333,3.735833333,1.498583333,237.73325716666668 +2015-11-10 06:00:00,0.0,1012.210667,1.070166667,87.20833333,3.230416667,1.6853333330000002,237.7334121 +2015-11-10 07:00:00,0.0,1012.527333,14.96025,84.85,3.128666667,2.063916667,237.7331022333333 +2015-11-10 08:00:00,0.0,1012.94225,41.13333333,82.83333333,3.7879166669999997,2.9893333330000003,237.73170773333334 +2015-11-10 09:00:00,0.0,1013.143417,226.45833330000002,77.13916667,5.026,3.010333333,237.73186268333336 +2015-11-10 10:00:00,0.0,1013.208333,306.90833330000004,72.24166667,6.30975,3.497833333,237.73046821666665 +2015-11-10 11:00:00,0.0,1013.039917,326.2583333,69.5975,7.27275,3.28475,237.73108798333337 +2015-11-10 12:00:00,0.0,1012.663167,376.0833333,65.22166667,9.263333333,3.365416667,237.72922870000002 +2015-11-10 13:00:00,0.0,1012.172083,353.25,61.30583333,10.365,3.863,237.73093303333334 +2015-11-10 14:00:00,0.0,1011.78275,300.71666669999996,58.96,11.13583333,4.028416667,237.73170773333334 +2015-11-10 15:00:00,0.0,1011.7,218.325,58.30416667,11.14583333,4.1865,237.73449671666665 +2015-11-10 16:00:00,0.0,1011.768417,93.53333333,59.0425,9.9025,4.469666667,237.73403186666667 +2015-11-10 17:00:00,0.0,1012.1189999999999,10.475999999999999,67.2525,8.318999999999999,3.222416667,237.7334121 +2015-11-10 18:00:00,0.0,1012.585667,0.11975,80.25416667,6.5388333329999995,1.131,237.73356703333334 +2015-11-10 19:00:00,0.0,1012.933917,0.0,87.19166667,6.159083333,1.23375,237.7321725666667 +2015-11-10 20:00:00,0.0,1013.093417,0.0,93.675,5.11425,0.713333333,237.7331022333333 +2015-11-10 21:00:00,0.0,1013.318417,0.0,97.69166667,3.705083333,0.45725,237.73356706666667 +2015-11-10 22:00:00,0.0,1013.37325,0.0,99.68333333,2.04325,0.15716666699999998,237.7332571666667 +2015-11-10 23:00:00,0.0,1013.216667,0.0,99.33333333,3.0789166669999997,0.88675,237.7341868166667 +2015-12-10 00:00:00,0.0,1013.241667,0.0,97.15833333,1.9091666669999998,0.11491666699999999,237.99452136666665 +2015-12-10 01:00:00,0.0,1013.242833,0.0,96.33333333,0.223333333,0.00475,237.99022648333334 +2015-12-10 02:00:00,0.0,1013.391667,0.0,94.50833333,-0.29833333300000003,0.041666667000000004,237.98986858333333 +2015-12-10 03:00:00,0.0,1013.198833,0.0,98.36666667,-0.587916667,0.11666666699999999,237.9898685833333 +2015-12-10 04:00:00,0.0,1013.18275,0.0,99.975,-0.802083333,0.078083333,237.98986858333333 +2015-12-10 05:00:00,0.0,1013.410667,0.0,100.0,-0.944916667,0.060333332999999996,237.9886159166667 +2015-12-10 06:00:00,0.0,1013.676167,1.4880000000000002,100.0,-0.483916667,0.536333333,237.99094228333334 +2015-12-10 07:00:00,0.0,1013.902333,13.84125,100.0,0.031583333,0.46425,237.99004753333335 +2015-12-10 08:00:00,5.2822999919999996,1014.3439999999999,41.08083333,95.39166667,1.375833333,1.521333333,237.99040545000003 +2015-12-10 09:00:00,0.0,1014.4,238.04166669999998,84.65,3.113333333,1.725333333,237.98968965000003 +2015-12-10 10:00:00,0.0,1014.38875,301.8833333,77.4775,5.40625,0.8876666670000001,237.98951066666666 +2015-12-10 11:00:00,0.0,1014.133333,369.125,70.98166667,7.2595,1.2944166670000001,237.9873632 +2015-12-10 12:00:00,0.0,1013.805417,381.0833333,63.70416667,8.934166667000001,1.637583333,237.9895107 +2015-12-10 13:00:00,0.0,1013.389333,295.78333330000004,58.22083333,10.35333333,0.776666667,237.9900475666667 +2015-12-10 14:00:00,0.0,1012.87325,199.2166667,59.1525,10.31333333,1.278583333,237.98933171666667 +2015-12-10 15:00:00,0.0,1012.42925,138.4,60.19166667,10.31,1.331083333,237.99219494999997 +2015-12-10 16:00:00,0.0,1012.031583,58.15166667,72.705,9.754166667,1.68225,237.992016 +2015-12-10 17:00:00,0.0,1011.901167,9.9315,85.52333333,8.32775,0.786833333,237.99434239999997 +2015-12-10 18:00:00,0.0,1012.208917,0.0615,93.51666667,7.370583333,0.561666667,237.99326870000002 +2015-12-10 19:00:00,0.0,1012.2011669999999,0.0,94.18333333,6.271666667000001,0.494166667,237.99434239999997 +2015-12-10 20:00:00,0.0,1011.972083,0.0,93.04166667,6.0295,0.6366666670000001,237.99487928333335 +2015-12-10 21:00:00,0.0,1011.891083,0.0,96.78333333,5.2226666669999995,0.8644166670000001,237.99183705 +2015-12-10 22:00:00,0.0,1011.622667,0.0,99.49166667,3.113666667,0.23725,237.992016 +2015-12-10 23:00:00,0.0,1011.258917,0.0,100.0,1.14475,0.018166667,237.99291074999996 +2015-10-13 00:00:00,0.0,1011.306,0.0,100.0,-0.073916667,0.0025833329999999997,237.656439 +2015-10-13 01:00:00,0.0,1011.0,0.0,100.0,-0.63625,0.0,237.65767986666665 +2015-10-13 02:00:00,0.0,1010.804833,0.0,100.0,-1.111333333,0.0,237.65690431666667 +2015-10-13 03:00:00,0.0,1010.466083,0.0,100.0,-1.4396666669999998,0.008916667,237.65907583333333 +2015-10-13 04:00:00,0.0,1010.22325,0.0,100.0,-1.686333333,0.003666667,237.66000649999998 +2015-10-13 05:00:00,0.0,1010.116667,0.0,100.0,-1.588583333,0.03825,237.66062691666664 +2015-10-13 06:00:00,0.0,1010.033917,0.87325,100.0,-0.724833333,0.145166667,237.6609371333333 +2015-10-13 07:00:00,0.0,1010.3035,19.29783333,100.0,0.542583333,0.995083333,237.66047181666667 +2015-10-13 08:00:00,0.0,1010.818417,75.04916667,99.55833333,1.6665833330000002,1.65375,237.65752476666668 +2015-10-13 09:00:00,0.0,1011.279083,220.0166667,92.95,3.407083333,3.060333333,237.65550835 +2015-10-13 10:00:00,0.0,1011.505417,127.03333329999998,91.58333333,3.5676666669999997,3.2366666669999997,237.6551981166667 +2015-10-13 11:00:00,0.0,1011.0583330000001,207.0083333,88.84166667,4.871583333,3.145666667,237.65581856666665 +2015-10-13 12:00:00,0.0,1010.93275,185.3833333,86.74166667,5.545666667000001,3.636,237.65550835000002 +2015-10-13 13:00:00,0.0,1010.973833,194.475,84.80833333,5.843,4.138166667,237.65411235000002 +2015-10-13 14:00:00,0.0,1010.9333330000001,138.2833333,84.16666667,5.9925,3.753333333,237.65457768333332 +2015-10-13 15:00:00,0.0,1010.975,44.66916667,85.23333333,5.561666667000001,3.620166667,237.65566345000002 +2015-10-13 16:00:00,0.0,1011.0945830000001,17.22591667,86.60833333,5.195083333,3.164916667,237.6565941 +2015-10-13 17:00:00,0.0,1011.443417,1.79475,88.18333333,4.767583333,2.976916667,237.65643901666667 +2015-10-13 18:00:00,3.6888049439999997,1011.85175,0.0,90.39166667,4.4775,3.170666667,237.65597366666668 +2015-10-13 19:00:00,0.0,1012.2189999999999,0.0,91.25,4.1304166669999995,2.9315,237.6551981166667 +2015-10-13 20:00:00,0.0,1012.324417,0.0,94.475,3.787083333,2.327583333,237.65597366666668 +2015-10-13 21:00:00,3.231102888,1012.635667,0.0,96.46666667,3.385583333,2.5459166669999997,237.65597368333331 +2015-10-13 22:00:00,0.0,1012.45775,0.0,95.94166667,3.379666667,2.34975,237.65566343333333 +2015-10-13 23:00:00,0.0,1012.7011669999999,0.0,94.15833333,3.4035,2.252583333,237.65442258333334 +2015-10-14 00:00:00,0.0,1012.6655,0.0,93.71666667,3.363,2.01225,237.6545777 +2015-10-14 01:00:00,0.0,1012.716667,0.0,93.025,3.34675,1.9896666669999998,237.65426746666665 +2015-10-14 02:00:00,0.0,1012.3215,0.0,92.575,3.259666667,2.36825,237.65566345 +2015-10-14 03:00:00,0.0,1012.0155,0.0,94.05,3.141083333,2.129166667,237.65581856666665 +2015-10-14 04:00:00,0.0,1011.80775,0.0,94.45,2.910166667,2.5213333330000003,237.65705941666667 +2015-10-14 05:00:00,0.0,1011.716667,0.0,96.325,2.74225,2.183833333,237.65767985 +2015-10-14 06:00:00,0.0,1011.66725,0.1005,98.0,2.6889999999999996,1.7335833330000001,237.65783495000002 +2015-10-14 07:00:00,0.0,1011.741083,2.22575,98.21666667,2.771666667,1.83775,237.65876561666664 +2015-10-14 08:00:00,3.1095408239999998,1011.893417,8.30775,97.66666667,2.85075,1.868916667,237.65892071666664 +2015-10-14 09:00:00,12.66246425,1012.0,42.7325,98.38333333,2.747,2.267833333,237.65736963333333 +2015-10-14 10:00:00,3.32740488,1011.8405,51.69083333,98.33333333,2.8704166669999998,2.288833333,237.6565941 +2015-10-14 11:00:00,9.644806992000001,1011.976167,87.97,98.31666667,3.16075,2.2965,237.65535323333336 +2015-10-14 12:00:00,0.0,1011.8905,66.195,97.85,3.5825,1.97475,237.65535323333333 +2015-10-14 13:00:00,0.0,1011.7095,50.93333333,97.48333333,3.875166667,1.62475,237.65736966666668 +2015-10-14 14:00:00,0.0,1011.773833,54.5925,95.1,4.325833333,1.76275,237.65581856666668 +2015-10-14 15:00:00,0.0,1011.8166669999999,21.4275,96.43333333,4.397666667,1.932083333,237.6565941166667 +2015-10-14 16:00:00,0.0,1011.943417,8.134416667,96.18333333,4.194916667,2.0813333330000003,237.65736963333333 +2015-10-14 17:00:00,0.0,1012.133333,1.325833333,96.88333333,4.0515,1.6428333330000002,237.65876563333333 +2015-10-14 18:00:00,0.0,1012.292833,0.0,98.225,4.026,1.67975,237.65923095000002 +2015-10-14 19:00:00,0.0,1012.577917,0.0,99.19166667,3.93925,1.8379166669999998,237.65923093333333 +2015-10-14 20:00:00,0.0,1012.943417,0.0,99.3,3.5198333330000002,1.819333333,237.65876563333333 +2015-10-14 21:00:00,0.0,1013.310083,0.0,99.05833333,3.50275,1.59125,237.65767988333334 +2015-10-14 22:00:00,0.0,1013.148833,0.0,98.71666667,3.2686666669999997,1.832333333,237.65861051666664 +2015-10-14 23:00:00,0.0,1013.149417,0.0,98.80833333,3.10575,2.224583333,237.65923096666666 +2015-10-15 00:00:00,0.0,1013.02325,0.0,98.59166667,3.055,1.6665,237.6579901 +2015-10-15 01:00:00,0.0,1012.7905,0.0,98.3,2.967166667,1.8768333330000002,237.65861051666664 +2015-10-15 02:00:00,0.0,1012.26375,0.0,98.66666667,2.74275,1.18875,237.65938604999997 +2015-10-15 03:00:00,0.0,1011.908333,0.0,97.825,2.9493333330000002,1.767166667,237.65892071666667 +2015-10-15 04:00:00,0.0,1012.0310000000001,0.0,97.30833333,3.085833333,2.2665,237.65783496666666 +2015-10-15 05:00:00,2.9143823760000003,1011.6155,0.0,98.68333333,2.9363333330000003,2.0869166669999997,237.66062689999998 +2015-10-15 06:00:00,46.51261992,1011.222083,0.067583333,99.98333333,2.43875,1.78275,237.66155756666663 +2015-10-15 07:00:00,25.80016903,1010.9595,2.35025,100.0,1.238333333,1.0051666670000001,237.66326373333334 +2015-10-15 08:00:00,41.05092223,1011.28275,9.044916667,100.0,1.01425,0.202833333,237.66512500000002 +2015-10-15 09:00:00,36.42723096,1010.997667,16.88583333,100.0,1.42,0.275333333,237.6660556666667 +2015-10-15 10:00:00,44.01199219,1010.606583,38.115,100.0,2.2455,0.325833333,237.67039868333333 +2015-10-15 11:00:00,10.08621442,1010.391083,40.57,100.0,3.001083333,0.581833333,237.68094606666668 +2015-10-15 12:00:00,4.921402032,1010.108333,37.35333333,100.0,3.563333333,0.512833333,237.69211385000003 +2015-10-15 13:00:00,2.441582328,1009.937583,22.235,100.0,4.06325,0.40299999999999997,237.70126524999998 +2015-10-15 14:00:00,0.0,1009.93625,13.63583333,100.0,4.353666667,0.3805,237.7048327333333 +2015-10-15 15:00:00,0.0,1009.713167,15.41275,100.0,4.561,0.49066666700000006,237.70731448333333 +2015-10-15 16:00:00,0.0,1009.4321669999999,9.64875,100.0,4.8463333330000005,0.308166667,237.70746959999997 +2015-10-15 17:00:00,7.426049832,1009.562417,1.04325,100.0,4.772166667,0.280416667,237.7079349166667 +2015-10-15 18:00:00,45.86820948,1010.220167,0.0,100.0,4.738916667,0.1095,237.70886555 +2015-10-15 19:00:00,50.91683558,1010.54225,0.0,100.0,4.723166667,0.165166667,237.72003329999998 +2015-10-15 20:00:00,51.2744208,1010.8345,0.0,100.0,4.379916667,0.2625,237.7400422833333 +2015-10-15 21:00:00,24.57926618,1010.86725,0.0,100.0,4.284833333,0.316166667,237.76485958333333 +2015-10-15 22:00:00,4.825193784,1011.302333,0.0,100.0,4.280666667,0.350916667,237.7792846166667 +2015-10-15 23:00:00,0.0,1011.458333,0.0,100.0,4.272916667,0.608166667,237.78812583333334 +2015-10-16 00:00:00,0.0,1011.450583,0.0,100.0,4.223833333,0.4625,237.79091774999998 +2015-10-16 01:00:00,0.0,1011.551167,0.0,100.0,4.207666667,0.21975,237.7920035 +2015-10-16 02:00:00,0.0,1011.473833,0.0,100.0,4.230583333,0.36708333299999996,237.79091776666664 +2015-10-16 03:00:00,0.0,1011.5845,0.0,100.0,4.319083333,0.1305,237.79091776666667 +2015-10-16 04:00:00,0.0,1011.683917,0.0,100.0,4.422666667,0.03875,237.78843605 +2015-10-16 05:00:00,2.413102296,1011.726167,0.0,100.0,4.499,0.06975,237.7862645166667 +2015-10-16 06:00:00,0.0,1012.008917,0.215666667,100.0,4.657583333,0.04025,237.78331743333334 +2015-10-16 07:00:00,0.0,1012.26125,6.32175,100.0,4.803999999999999,0.15833333300000002,237.78161126666666 +2015-10-16 08:00:00,0.0,1013.029667,22.35916667,100.0,5.18175,0.040416667,237.77866419999998 +2015-10-16 09:00:00,0.0,1013.375,43.41666667,100.0,5.715916667,0.11283333300000001,237.77649269999998 +2015-10-16 10:00:00,0.0,1013.323833,56.01833333,99.96666667,6.1639166670000005,0.07725,237.77571715 +2015-10-16 11:00:00,0.0,1013.216083,101.1725,99.275,6.86325,0.258583333,237.77385585000002 +2015-10-16 12:00:00,0.0,1013.175583,106.81666670000001,98.10833333,7.285666667,0.23,237.77199453333333 +2015-10-16 13:00:00,0.0,1013.131583,66.93666667,97.15833333,7.131416667000001,0.338916667,237.76951283333335 +2015-10-16 14:00:00,0.0,1012.92675,44.87166667,96.60833333,7.423583333,0.027666667000000002,237.76796173333332 +2015-10-16 15:00:00,0.0,1013.125,24.85916667,95.40833333,7.4371666670000005,0.0195,237.76501466666664 +2015-10-16 16:00:00,0.0,1013.141083,7.006333333,96.71666667,7.151166667000001,0.132666667,237.7643942333333 +2015-10-16 17:00:00,0.0,1013.0155,0.758083333,98.275,6.806666667000001,0.011083333,237.76361869999997 +2015-10-16 18:00:00,0.0,1013.110083,0.0,99.75833333,6.42725,0.034083333,237.76315336666667 +2015-10-16 19:00:00,0.0,1013.3595,0.0,98.13333333,6.263583333,0.08783333300000001,237.76036141666665 +2015-10-16 20:00:00,0.0,1013.49225,0.0,98.81666667,6.16675,0.004583333,237.76005120000002 +2015-10-16 21:00:00,0.0,1013.708917,0.0,99.325,6.084333332999999,0.0,237.75896545 +2015-10-16 22:00:00,0.0,1013.574417,0.0,98.21666667,6.005333332999999,0.010833333,237.75710413333334 +2015-10-16 23:00:00,0.0,1013.48275,0.0,98.58333333,5.9225833329999995,0.034916667,237.75648373333334 +2015-10-17 00:00:00,0.0,1013.1821669999999,0.0,99.69166667,5.879583332999999,0.201583333,237.75679393333334 +2015-10-17 01:00:00,0.0,1013.242833,0.0,100.0,5.800583333,0.10166666699999999,237.75462248333338 +2015-10-17 02:00:00,0.0,1013.17325,0.0,100.0,5.667999999999999,0.096083333,237.75322648333335 +2015-10-17 03:00:00,0.0,1012.948833,0.0,100.0,5.607833332999999,0.075083333,237.75291625 +2015-10-17 04:00:00,0.0,1012.741667,0.0,100.0,5.54775,0.124333333,237.75229583333336 +2015-10-17 05:00:00,0.0,1012.614917,0.0,100.0,5.438333332999999,0.29391666699999996,237.74965899999998 +2015-10-17 06:00:00,0.0,1012.658333,0.22216666699999998,100.0,5.325583333,0.205,237.74841815 +2015-10-17 07:00:00,0.0,1012.938,6.50125,100.0,5.359833333,0.3285,237.7474875 +2015-10-17 08:00:00,0.0,1013.443417,33.41916667,100.0,5.832166667,0.260083333,237.74485065000002 +2015-10-17 09:00:00,0.0,1013.708333,65.29,99.20833333,6.3979166670000005,0.910333333,237.74314445000002 +2015-10-17 10:00:00,0.0,1013.850583,97.61666667,94.35,6.888166667,1.049083333,237.7419035833333 +2015-10-17 11:00:00,0.0,1013.833333,89.08833333,87.325,7.319666667000001,1.09275,237.7391116166667 +2015-10-17 12:00:00,0.0,1013.597667,22.26,92.61666667,7.049333333,1.055916667,237.7389565166667 +2015-10-17 13:00:00,0.0,1013.4155,81.02583333,88.625,7.184416667000001,0.076,237.7384912 +2015-10-17 14:00:00,0.0,1013.401167,96.57833333,85.65,7.772,0.586666667,237.73476859999997 +2015-10-17 15:00:00,0.0,1013.425,29.50166667,92.725,7.459333332999999,0.64075,237.73492371666666 +2015-10-17 16:00:00,0.0,1013.5678330000001,13.53583333,96.36666667,7.106083333,0.6878333329999999,237.7361645833333 +2015-10-17 17:00:00,0.0,1013.675583,3.548333333,97.89166667,6.79725,0.38891666700000005,237.7358543833333 +2015-10-17 18:00:00,0.0,1013.582167,0.0,99.85833333,6.31925,0.44641666700000004,237.73554415000004 +2015-10-17 19:00:00,0.0,1013.6345,0.0,100.0,5.931166667,0.013916666999999999,237.73569925 +2015-10-17 20:00:00,0.0,1013.885083,0.0,100.0,5.635333332999999,0.02475,237.73383793333332 +2015-10-17 21:00:00,0.0,1014.142833,0.0,100.0,5.624083333,0.069083333,237.7327521833333 +2015-10-17 22:00:00,0.0,1014.158333,0.0,100.0,5.505166667,0.00525,237.73182153333332 +2015-10-17 23:00:00,0.0,1013.931,0.0,100.0,5.353083333,0.01175,237.73151133333332 +2015-10-18 00:00:00,0.0,1013.80775,0.0,100.0,5.353083333,0.017,237.73135623333334 +2015-10-18 01:00:00,0.0,1013.750583,0.0,100.0,5.398083333,0.29375,237.73027048333336 +2015-10-18 02:00:00,0.0,1013.649417,0.0,100.0,5.386083332999999,0.11741666699999999,237.73011533333332 +2015-10-18 03:00:00,0.0,1013.623833,0.0,100.0,5.337833333,0.137166667,237.72794385 +2015-10-18 04:00:00,0.0,1013.617833,0.0,100.0,5.4110000000000005,0.06175,237.72809895000003 +2015-10-18 05:00:00,0.0,1013.624417,0.0,100.0,5.371833333,0.004583333,237.7265478666667 +2015-10-18 06:00:00,0.0,1013.40775,0.12825,100.0,5.207000000000001,0.12975,237.72639275000003 +2015-10-18 07:00:00,0.0,1013.871333,5.706333333,100.0,5.317666667,0.205583333,237.72623761666668 +2015-10-18 08:00:00,0.0,1014.4845,16.11833333,100.0,5.486666667000001,0.259,237.72515188333333 +2015-10-18 09:00:00,2.496559104,1014.743417,21.41333333,100.0,5.635083333,0.22575,237.72344570000004 +2015-10-18 10:00:00,32.83574417,1014.908333,32.87,100.0,5.791333333,0.985166667,237.7225150666667 +2015-10-18 11:00:00,0.0,1014.7405,61.24916667,99.75,6.355333333,0.057833333,237.72220483333334 +2015-10-18 12:00:00,0.0,1014.474417,142.2666667,94.61666667,7.04575,0.693416667,237.72220483333334 +2015-10-18 13:00:00,0.0,1014.257167,154.3833333,86.45,8.09,0.254666667,237.7217395 +2015-10-18 14:00:00,0.0,1014.275,100.4358333,86.78333333,8.5975,0.23175,237.7201884 +2015-10-18 15:00:00,0.0,1014.40175,60.50583333,84.6,8.623333333,0.035,237.72065373333336 +2015-10-18 16:00:00,0.0,1014.247667,27.115,93.075,7.850166667000001,0.005,237.72111908333332 +2015-10-18 17:00:00,0.0,1014.18275,3.450333333,95.58333333,7.199333332999999,0.00525,237.72080885 +2015-10-18 18:00:00,0.0,1014.26125,0.0,99.09166667,6.578583332999999,0.063166667,237.7211190666667 +2015-10-18 19:00:00,0.0,1014.491667,0.0,100.0,6.081833333,0.10375,237.72080886666666 +2015-10-18 20:00:00,0.0,1014.693417,0.0,100.0,5.719583332999999,0.134,237.72080885 +2015-10-18 21:00:00,0.0,1014.8845,0.0,100.0,4.322833333,0.122083333,237.72127418333332 +2015-10-18 22:00:00,0.0,1015.133917,0.0,100.0,3.065083333,0.109083333,237.72080885 +2015-10-18 23:00:00,0.0,1015.1916669999999,0.0,100.0,2.7705833330000003,0.024333333,237.71941286666666 +2015-10-19 00:00:00,0.0,1015.149417,0.0,100.0,3.5469999999999997,0.00825,237.71832713333333 +2015-10-19 01:00:00,0.0,1015.16725,0.0,100.0,3.83075,0.036833332999999996,237.71708625 +2015-10-19 02:00:00,0.0,1015.35775,0.0,100.0,3.972916667,0.013416667,237.71693115000002 +2015-10-19 03:00:00,0.0,1015.225583,0.0,100.0,3.803416667,0.009916666999999999,237.71662090000004 +2015-10-19 04:00:00,0.0,1015.181583,0.0,100.0,3.6375,0.0245,237.71832709999998 +2015-10-19 05:00:00,0.0,1015.2195830000001,0.0,100.0,3.124166667,0.047416667,237.7198782 +2015-10-19 06:00:00,0.0,1015.47675,0.11225,100.0,3.0364166669999997,0.037083332999999996,237.71817201666667 +2015-10-19 07:00:00,0.0,1015.986833,3.843916667,100.0,3.67025,0.122916667,237.7163107166667 +2015-10-19 08:00:00,0.0,1016.40175,52.22,100.0,4.416166667,0.271833333,237.71491473333333 +2015-10-19 09:00:00,0.0,1016.819,106.4625,99.8,5.513999999999999,0.4035,237.71413918333334 +2015-10-19 10:00:00,0.0,1017.008917,114.55833329999999,95.71666667,6.762666667,0.46566666700000003,237.71336365000002 +2015-10-19 11:00:00,0.0,1017.024417,159.15,92.3,8.325416667,0.387166667,237.71320856666668 +2015-10-19 12:00:00,7.74440064,1016.83875,99.89416667,89.425,8.975,0.560583333,237.71258810000003 +2015-10-19 13:00:00,0.0,1016.616667,85.53666667,88.39166667,9.498333333,0.34375,237.7119676666667 +2015-10-19 14:00:00,0.0,1016.3405,48.74166667,89.39166667,9.088333333,0.888083333,237.71336365 +2015-10-19 15:00:00,0.0,1016.249417,31.37333333,94.825,8.6925,0.881416667,237.71491473333333 +2015-10-19 16:00:00,0.0,1016.133333,29.36833333,98.075,8.518333333,0.631,237.71491475000002 +2015-10-19 17:00:00,0.0,1016.200583,2.423083333,99.99166667,8.18,0.0016666670000000001,237.71351876666668 +2015-10-19 18:00:00,0.0,1016.48625,0.0,100.0,7.994666667000001,0.039,237.71367388333337 +2015-10-19 19:00:00,0.0,1016.9095,0.0,100.0,7.940166667000001,0.001583333,237.71227788333331 +2015-10-19 20:00:00,2.4105511440000003,1017.008917,0.0,100.0,7.8746666670000005,0.014083333,237.71382895 +2015-10-19 21:00:00,0.0,1016.966083,0.0,100.0,7.831,0.067916667,237.71243301666667 +2015-10-19 22:00:00,0.0,1016.983917,0.0,100.0,7.755166667,0.090083333,237.71289833333336 +2015-10-19 23:00:00,0.0,1016.93275,0.0,100.0,7.559166667,0.045083332999999996,237.71196768333334 +2015-10-20 00:00:00,0.0,1016.9321669999999,0.0,100.0,7.765,0.076833333,237.71258811666667 +2015-10-20 01:00:00,0.0,1016.700583,0.0,100.0,7.784833333,0.08741666699999999,237.71134723333333 +2015-10-20 02:00:00,0.0,1016.85775,0.0,100.0,7.774833332999999,0.21875,237.71227788333337 +2015-10-20 03:00:00,0.0,1016.883333,0.0,100.0,7.7495,0.210833333,237.71212278333334 +2015-10-20 04:00:00,0.0,1016.732167,0.0,100.0,7.688833333,0.41700000000000004,237.71367386666668 +2015-10-20 05:00:00,0.0,1016.624417,0.0,99.99166667,7.606166667,0.431666667,237.71367385 +2015-10-20 06:00:00,7.41891192,1016.618417,0.18600000000000003,99.99166667,7.372999999999999,0.309166667,237.71274321666667 +2015-10-20 07:00:00,0.0,1016.901167,6.9450833329999995,99.45,7.19025,0.5056666670000001,237.71367386666665 +2015-10-20 08:00:00,2.4350633040000003,1017.286833,43.69416667,98.30833333,7.0815,0.74175,237.71351875000002 +2015-10-20 09:00:00,0.0,1017.66725,101.0725,96.425,7.198666667,0.67575,237.70979619999994 +2015-10-20 10:00:00,0.0,1017.860083,243.3416667,89.95833333,8.83775,0.903083333,237.70948598333334 +2015-10-20 11:00:00,0.0,1017.729833,303.28333330000004,82.21666667,10.92416667,0.9813333329999999,237.70917576666662 +2015-10-20 12:00:00,0.0,1017.399417,295.4333333,75.94083333,11.71666667,1.278833333,237.7082451166667 +2015-10-20 13:00:00,0.0,1016.979833,114.07,74.75833333,11.83916667,1.5098333330000002,237.70886553333335 +2015-10-20 14:00:00,0.0,1016.875583,250.5333333,68.08666667,12.19416667,0.9155833329999999,237.7077798 +2015-10-20 15:00:00,0.0,1016.908333,149.4991667,72.66416667,11.70416667,0.7305,237.7060736333333 +2015-10-20 16:00:00,0.0,1016.918417,67.6975,79.5925,11.0,1.134416667,237.70669404999998 +2015-10-20 17:00:00,0.0,1017.360083,3.089666667,87.51666667,10.03833333,0.1325,237.70591849999997 +2015-10-20 18:00:00,0.0,1017.6095,0.0,93.29166667,9.4275,0.10491666699999999,237.7059184833333 +2015-10-20 19:00:00,0.0,1017.708917,0.0,93.90833333,9.294166667,0.250166667,237.7056082833333 +2015-10-20 20:00:00,0.0,1017.801167,0.0,95.14166667,9.006666667000001,0.046583333,237.70529806666664 +2015-10-20 21:00:00,0.0,1017.958917,0.0,96.44166667,8.656666667,0.0505,237.7046776333333 +2015-10-20 22:00:00,0.0,1017.7810000000001,0.0,97.80833333,8.441666667,0.031333333,237.70467761666666 +2015-10-20 23:00:00,0.0,1017.464917,0.0,98.94166667,8.188333333,0.04325,237.7060736 +2015-10-21 00:00:00,0.0,1017.17675,0.0,99.16666667,8.027416667,0.019333333,237.70638383333332 +2015-10-21 01:00:00,0.0,1017.616667,0.0,98.31666667,7.963916667,0.09891666699999999,237.70514294999998 +2015-10-21 02:00:00,0.0,1017.403667,0.0,97.14166667,7.935166667000001,0.002916667,237.70560826666664 +2015-10-21 03:00:00,0.0,1017.043417,0.0,97.70833333,7.670583333,0.147333333,237.70653891666666 +2015-10-21 04:00:00,0.0,1017.074417,0.0,99.46666667,6.053833332999999,0.095333333,237.70669406666664 +2015-10-21 05:00:00,0.0,1017.06725,0.0,100.0,5.823666667,0.120833333,237.70653891666666 +2015-10-21 06:00:00,0.0,1016.94825,0.11183333300000001,100.0,6.268333332999999,0.04725,237.7057634 +2015-10-21 07:00:00,0.0,1016.631583,6.553666667000001,100.0,6.571666667000001,0.020416667,237.70638381666666 +2015-10-21 08:00:00,0.0,1017.088583,29.38583333,99.94166667,7.057083333,0.42891666700000003,237.7056082833333 +2015-10-21 09:00:00,0.0,1017.054833,60.93833333,97.23333333,7.78275,0.146583333,237.70545318333333 +2015-10-21 10:00:00,0.0,1017.17675,71.42666667,94.68333333,8.470833333,0.658666667,237.7045225333333 +2015-10-21 11:00:00,0.0,1016.939333,138.5,92.675,9.423333332999999,0.29333333300000003,237.70560826666664 +2015-10-21 12:00:00,0.0,1016.430417,190.69166669999998,88.06666667,11.055,0.451166667,237.70343676666664 +2015-10-21 13:00:00,0.0,1015.812,222.19166669999998,81.35333333,12.00083333,0.5066666670000001,237.7046776333333 +2015-10-21 14:00:00,0.0,1015.0465,107.41916670000002,78.335,11.89166667,0.12683333300000002,237.70653891666666 +2015-10-21 15:00:00,0.0,1014.54825,68.05916667,77.75583333,11.145,0.7785833329999999,237.70715934999998 +2015-10-21 16:00:00,0.0,1014.431583,35.78416667,82.15583333,10.73,0.929666667,237.70607359999997 +2015-10-21 17:00:00,219.67887830000004,1014.408917,2.912083333,94.475,9.595833333,0.546166667,237.70591848333333 +2015-10-21 18:00:00,0.0,1014.164917,0.0,99.05,8.325,0.0105,237.70700424999998 +2015-10-21 19:00:00,0.0,1013.8905,0.0,93.70833333,7.79525,0.0,237.70653893333335 +2015-10-21 20:00:00,0.0,1013.691083,0.0,91.05833333,6.913333333,0.021583333,237.70607361666666 +2015-10-21 21:00:00,0.0,1013.430417,0.0,93.65833333,6.000666667000001,0.06025,237.7077797833333 +2015-10-21 22:00:00,0.0,1013.166083,0.0,94.45,5.111000000000001,0.065083333,237.7082451166667 +2015-10-21 23:00:00,0.0,1013.02325,0.0,99.65833333,5.1355,0.017833333,237.70793489999997 +2015-10-22 00:00:00,0.0,1012.445917,0.0,100.0,4.659083333,0.007833333,237.70855533333335 +2015-10-22 01:00:00,0.0,1012.141083,0.0,100.0,5.14175,0.04325,237.70715936666662 +2015-10-22 02:00:00,0.0,1011.9405,0.0,95.9,5.802416667,0.009000000000000001,237.70669403333332 +2015-10-22 03:00:00,0.0,1011.479833,0.0,92.05,6.089416667,0.0045,237.70762471666663 +2015-10-22 04:00:00,0.0,1011.14225,0.0,91.525,6.825333333,0.283333333,237.70746958333334 +2015-10-22 05:00:00,0.0,1011.141083,0.0,90.24166667,7.956166667000001,0.204916667,237.70607359999997 +2015-10-22 06:00:00,0.0,1011.1405,0.227333333,92.375,8.8725,0.6446666670000001,237.70607361666666 +2015-10-22 07:00:00,0.0,1011.05,14.02958333,92.50833333,8.4725,0.6815,237.70576338333333 +2015-10-22 08:00:00,0.0,1011.175,57.3425,93.65,8.6775,0.328416667,237.70452253333335 +2015-10-22 09:00:00,0.0,1011.1439999999999,61.8625,93.75,9.763333333,0.426833333,237.70390206666661 +2015-10-22 10:00:00,0.0,1011.39225,108.4275,93.49166667,10.53416667,0.348583333,237.70281635 +2015-10-22 11:00:00,0.0,1011.573833,93.47083333,95.325,10.72166667,0.318416667,237.70312654999998 +2015-10-22 12:00:00,0.0,1011.392833,98.75,94.65833333,10.92416667,0.407083333,237.70142036666667 +2015-10-22 13:00:00,0.0,1011.22325,108.84166670000002,93.01666667,11.43333333,0.37125,237.70095504999998 +2015-10-22 14:00:00,0.0,1011.32675,77.57583333,92.475,11.89666667,0.342916667,237.7001794833333 +2015-10-22 15:00:00,0.0,1011.518417,47.9425,93.175,12.165,0.287416667,237.70002440000005 +2015-10-22 16:00:00,0.0,1011.6916669999999,27.83083333,95.575,12.01166667,0.18675,237.69940393333331 +2015-10-22 17:00:00,0.0,1012.211833,3.7471666669999997,99.65,11.365,0.12791666699999998,237.70048970000002 +2015-10-22 18:00:00,0.0,1012.787417,0.0,99.975,10.92333333,0.13675,237.69986926666664 +2015-10-22 19:00:00,0.0,1013.360667,0.0,99.9,10.82333333,0.178333333,237.70033458333333 +2015-10-22 20:00:00,0.0,1013.913,0.0,99.54166667,10.90083333,0.16525,237.69924883333337 +2015-10-22 21:00:00,0.0,1014.6035,0.0,99.9,11.0275,0.33775,237.69847331666665 +2015-10-22 22:00:00,0.0,1015.170167,0.0,100.0,10.9075,0.3465,237.69816308333336 +2015-10-22 23:00:00,0.0,1015.667833,0.0,100.0,10.80416667,0.258916667,237.6989386166667 +2015-10-23 00:00:00,0.0,1016.229667,0.0,100.0,10.765,0.4065,237.69831818333333 +2015-10-23 01:00:00,0.0,1016.996333,0.0,99.625,10.37166667,0.12216666699999999,237.69800796666667 +2015-10-23 02:00:00,0.0,1017.343417,0.0,99.73333333,9.9875,0.232833333,237.69893863333334 +2015-10-23 03:00:00,0.0,1017.65,0.0,99.76666667,9.8975,0.42716666700000006,237.69847328333333 +2015-10-23 04:00:00,0.0,1017.870167,0.0,99.13333333,9.695833333,0.130416667,237.6998692666667 +2015-10-23 05:00:00,0.0,1018.3445830000001,0.0,99.98333333,9.1525,0.09325,237.69955905000003 +2015-10-23 06:00:00,0.0,1018.919,0.12116666699999999,100.0,8.930833332999999,0.182916667,237.69754265000003 +2015-10-23 07:00:00,0.0,1019.3975,5.675916667,100.0,8.7,0.042166667000000005,237.69847328333333 +2015-10-23 08:00:00,0.0,1020.202333,41.16583333,99.68333333,9.253333332999999,0.04025,237.69692220000002 +2015-10-23 09:00:00,0.0,1020.694,156.9075,90.15,11.12666667,0.275083333,237.69444048333335 +2015-10-23 10:00:00,0.0,1020.916667,255.0333333,70.06833333,13.045,0.8188333329999999,237.6942853666667 +2015-10-23 11:00:00,0.0,1020.847083,314.7666667,67.56166667,14.8125,0.59275,237.69459560000004 +2015-10-23 12:00:00,0.0,1020.331583,332.1333333,63.65166667,15.555,0.489833333,237.69444046666663 +2015-10-23 13:00:00,0.0,1019.9405,292.75,62.79416667,15.17333333,1.002083333,237.69273429999998 +2015-10-23 14:00:00,0.0,1019.638167,258.7583333,62.43333333,15.105,1.039833333,237.69180365 +2015-10-23 15:00:00,0.0,1019.105417,136.525,64.10083333,14.135,0.8241666670000001,237.69444048333335 +2015-10-23 16:00:00,0.0,1018.85,59.34083333,76.7975,13.3025,0.380333333,237.69211386666666 +2015-10-23 17:00:00,0.0,1018.689333,4.73125,93.875,10.06666667,0.03725,237.6941302666667 +2015-10-23 18:00:00,0.0,1018.51725,0.0,98.26666667,7.885583333,0.13275,237.69490580000002 +2015-10-23 19:00:00,0.0,1018.717833,0.0,99.875,6.431416667000001,0.034833333,237.69428538333332 +2015-10-23 20:00:00,0.0,1018.61725,0.0,100.0,5.520333333,0.06433333299999999,237.69568135 +2015-10-23 21:00:00,0.0,1018.8083330000001,0.0,100.0,4.3629166669999995,0.04675,237.69350983333334 +2015-10-23 22:00:00,0.0,1018.741083,0.0,100.0,3.4900833330000003,0.01625,237.69413028333338 +2015-10-23 23:00:00,0.0,1018.481583,0.0,100.0,3.019916667,0.012916667,237.69599155 +2015-10-24 00:00:00,0.0,1018.012,0.0,100.0,2.7925,0.000166667,237.6961466666667 +2015-10-24 01:00:00,0.0,1017.473833,0.0,100.0,3.9595,0.0,237.69692220000002 +2015-10-24 02:00:00,0.0,1017.27325,0.0,100.0,3.8730833330000003,0.10208333300000001,237.69692221666665 +2015-10-24 03:00:00,0.0,1017.031583,0.0,100.0,3.734333333,0.212666667,237.69847330000002 +2015-10-24 04:00:00,0.0,1016.454833,0.0,100.0,3.585916667,0.34533333299999996,237.69831820000002 +2015-10-24 05:00:00,0.0,1015.878667,0.0,100.0,3.931,0.16091666699999999,237.6998692666667 +2015-10-24 06:00:00,0.0,1015.239917,0.20625,100.0,4.16425,0.174666667,237.70002438333333 +2015-10-24 07:00:00,0.0,1015.123833,10.70375,100.0,4.36075,0.128583333,237.70017948333336 +2015-10-24 08:00:00,0.0,1015.126167,63.9775,100.0,4.99775,0.08616666699999999,237.70204078333333 +2015-10-24 09:00:00,0.0,1014.997083,52.94083333,100.0,5.400916667000001,0.882166667,237.69924883333331 +2015-10-24 10:00:00,0.0,1014.624417,91.96583333,100.0,6.450583332999999,1.64775,237.70017948333336 +2015-10-24 11:00:00,0.0,1014.262,85.41666667,98.75,7.7750833329999995,2.26575,237.70017950000002 +2015-10-24 12:00:00,0.0,1013.66375,85.02166667,96.225,8.615,1.8465,237.70095503333334 +2015-10-24 13:00:00,0.0,1013.216667,79.9175,94.36666667,9.285,2.030166667,237.70111015 +2015-10-24 14:00:00,0.0,1012.94825,83.46166667,93.56666667,9.785,1.666166667,237.6998692666667 +2015-10-24 15:00:00,0.0,1012.80775,52.82416667,94.0,10.29333333,1.49225,237.70048969999996 +2015-10-24 16:00:00,0.0,1012.6833330000001,23.6,94.925,10.19416667,1.5355833330000002,237.70048968333333 +2015-10-24 17:00:00,0.0,1012.573833,2.084333333,97.51666667,9.246666667000001,1.707583333,237.702351 +2015-10-24 18:00:00,0.0,1012.6595,0.0,99.96666667,7.5365,0.22108333300000002,237.70328166666664 +2015-10-24 19:00:00,0.0,1012.866667,0.0,100.0,5.593583333,0.018833333,237.70421231666663 +2015-10-24 20:00:00,0.0,1013.095167,0.0,100.0,4.521583333,0.04475,237.70467764999998 +2015-10-24 21:00:00,0.0,1013.6285,0.0,100.0,4.0418333330000005,0.032166667,237.70266123333332 +2015-10-24 22:00:00,0.0,1013.916667,0.0,100.0,4.333833333,0.01775,237.70095501666665 +2015-10-24 23:00:00,0.0,1014.093417,0.0,100.0,5.17675,0.035416667,237.70002436666667 +2015-10-25 00:00:00,0.0,1014.47675,0.0,100.0,5.448333333,0.00275,237.69986928333333 +2015-10-25 01:00:00,0.0,1014.518417,0.0,100.0,5.637833333,0.052083332999999996,237.70017948333336 +2015-10-25 02:00:00,0.0,1015.0945830000001,0.0,100.0,6.223,0.080833333,237.69893863333334 +2015-10-25 03:00:00,0.0,1015.226167,0.0,100.0,6.193,0.164333333,237.69909373333334 +2015-10-25 04:00:00,0.0,1015.568417,0.0,100.0,6.152333333,0.068,237.69862840000005 +2015-10-25 05:00:00,0.0,1016.2975,0.0,100.0,6.52625,0.132,237.6978528666667 +2015-10-25 06:00:00,4.799840808,1017.0939999999999,0.0,100.0,6.782166667,0.025666667,237.696612 +2015-10-25 07:00:00,2.443406688,1017.543417,1.4696666669999998,100.0,7.0095,0.08825,237.69707731666668 +2015-10-25 08:00:00,0.0,1018.4665,21.53391667,100.0,7.421333333,0.071,237.696612 +2015-10-25 09:00:00,0.0,1019.0785,66.80333333,100.0,8.252333333,0.616,237.69459560000004 +2015-10-25 10:00:00,0.0,1019.643417,76.78666667,99.575,9.019166667,0.494833333,237.69273426666663 +2015-10-25 11:00:00,0.0,1020.143417,103.63083329999999,96.25833333,10.3175,0.181666667,237.69273429999998 +2015-10-25 12:00:00,0.0,1020.32675,124.71666670000002,92.51666667,11.58916667,0.69175,237.6928894 +2015-10-25 13:00:00,0.0,1020.524417,76.59666667,92.23333333,12.62833333,0.42791666700000003,237.69242408333332 +2015-10-25 14:00:00,0.0,1020.416667,68.14916667,91.75833333,13.27,0.25375,237.69288939999998 +2015-10-25 15:00:00,0.0,1020.543417,80.53833333,90.29166667,13.60833333,0.166916667,237.69226894999997 +2015-10-25 16:00:00,0.0,1020.6845,10.314,95.75,12.445,0.701833333,237.6928893833333 +2015-10-25 17:00:00,0.0,1020.875583,0.585333333,99.63333333,11.69166667,0.462,237.6952160166667 +2015-10-25 18:00:00,0.0,1021.160083,0.0,100.0,11.28333333,0.577666667,237.69413026666666 +2015-10-25 19:00:00,0.0,1021.435083,0.0,100.0,10.70166667,0.053666667,237.69459558333332 +2015-10-25 20:00:00,0.0,1021.616083,0.0,100.0,10.17166667,0.05275,237.69428536666666 +2015-10-25 21:00:00,0.0,1021.408333,0.0,100.0,10.19833333,0.110916667,237.69583645000003 +2015-10-25 22:00:00,0.0,1020.853667,0.0,100.0,9.7175,0.07675,237.69568135 +2015-10-25 23:00:00,0.0,1020.3465,0.0,100.0,9.633333333,0.04375,237.69754263333334 +2015-10-26 00:00:00,0.0,1019.929833,0.0,100.0,9.274166667000001,0.004333333,237.69785286666664 +2015-10-26 01:00:00,0.0,1019.5845,0.0,100.0,9.105,0.406916667,237.7006448333333 +2015-10-26 02:00:00,0.0,1019.732167,0.0,100.0,9.340833332999999,0.030083332999999997,237.69847330000002 +2015-10-26 03:00:00,0.0,1019.095333,0.0,100.0,8.610833332999999,0.03025,237.69986928333333 +2015-10-26 04:00:00,0.0,1018.531583,0.0,100.0,6.965166667,0.039166667,237.70281633333332 +2015-10-26 05:00:00,0.0,1018.122083,0.0,100.0,6.581916667000001,0.040333333,237.70297144999998 +2015-10-26 06:00:00,0.0,1017.9405,0.08125,100.0,6.294916667000001,0.023833332999999998,237.70157546666667 +2015-10-26 07:00:00,0.0,1017.894583,9.500833333,100.0,6.345,0.0075,237.70126525 +2015-10-26 08:00:00,0.0,1017.9905,35.905,100.0,6.864333332999999,0.002333333,237.70002438333333 +2015-10-26 09:00:00,0.0,1017.83275,79.72833333,100.0,9.625916667,0.11208333300000001,237.70126525 +2015-10-26 10:00:00,0.0,1017.588167,208.44166669999998,96.98333333,12.72416667,0.46533333299999996,237.69940396666667 +2015-10-26 11:00:00,0.0,1017.14825,284.225,84.56666667,14.58083333,1.253333333,237.70126523333332 +2015-10-26 12:00:00,0.0,1016.494167,279.9166667,76.32,15.15333333,1.9033333330000002,237.70048971666665 +2015-10-26 13:00:00,0.0,1015.687,289.2583333,72.19083333,14.445,1.458166667,237.70017950000002 +2015-10-26 14:00:00,0.0,1015.157167,226.7666667,69.35,14.69083333,1.08475,237.70095501666665 +2015-10-26 15:00:00,0.0,1014.882167,179.4083333,67.965,14.965,0.84875,237.70048970000002 +2015-10-26 16:00:00,0.0,1014.539917,58.62666667,78.60416667,14.50583333,0.529333333,237.70064481666668 +2015-10-26 17:00:00,0.0,1014.348833,2.83225,95.01666667,11.19916667,0.035083333,237.70343676666667 +2015-10-26 18:00:00,0.0,1014.28275,0.0,99.66666667,7.525666667,0.0075,237.70281633333332 +2015-10-26 19:00:00,0.0,1014.21725,0.0,100.0,6.264083332999999,0.078333333,237.70390209999997 +2015-10-26 20:00:00,0.0,1014.191083,0.0,100.0,5.291416667,0.0315,237.702351 +2015-10-26 21:00:00,0.0,1014.258333,0.0,100.0,4.53625,0.001833333,237.70359188333336 +2015-10-26 22:00:00,0.0,1014.268417,0.0,100.0,4.023416667,0.112416667,237.70467765 +2015-10-26 23:00:00,0.0,1014.347083,0.0,100.0,3.398166667,0.012833333,237.70343674999995 +2015-10-27 00:00:00,0.0,1013.89825,0.0,100.0,3.080833333,0.010833333,237.70328164999998 +2015-10-27 01:00:00,0.0,1013.87675,0.0,100.0,3.043166667,0.0,237.7021959 +2015-10-27 02:00:00,0.0,1013.856583,0.0,100.0,4.540166667,0.0,237.7021959 +2015-10-27 03:00:00,0.0,1013.666667,0.0,100.0,4.919916667,0.292083333,237.70297144999998 +2015-10-27 04:00:00,0.0,1013.41375,0.0,100.0,4.719333333,0.41475,237.70405719999997 +2015-10-27 05:00:00,0.0,1013.358333,0.0,100.0,4.8543333330000005,0.687916667,237.70483276666664 +2015-10-27 06:00:00,0.0,1013.319583,0.033333333,100.0,4.629583333,0.434833333,237.70452254999998 +2015-10-27 07:00:00,0.0,1013.6095,6.714833333,100.0,4.5485,0.38983333299999995,237.70374698333333 +2015-10-27 08:00:00,0.0,1014.20175,35.19,100.0,4.794,0.6406666670000001,237.70266123333332 +2015-10-27 09:00:00,0.0,1014.250583,81.41333333,100.0,5.140833333,0.685333333,237.70250611666665 +2015-10-27 10:00:00,2.643153624,1014.266083,155.625,100.0,5.971333333,0.806333333,237.70793488333334 +2015-10-27 11:00:00,0.0,1013.853667,293.4166667,100.0,8.263416667000001,0.997583333,237.71088193333335 +2015-10-27 12:00:00,0.0,1013.1215,294.71666669999996,91.675,11.41333333,1.81,237.71134725000002 +2015-10-27 13:00:00,0.0,1012.539917,277.0583333,78.2975,13.73,1.8571666669999998,237.71119211666667 +2015-10-27 14:00:00,0.0,1012.230417,225.06666669999998,74.15916667,14.01333333,1.9685833330000002,237.71088193333335 +2015-10-27 15:00:00,0.0,1011.82325,145.2833333,74.94083333,13.2825,1.449,237.71227788333331 +2015-10-27 16:00:00,0.0,1011.47325,48.30833333,85.12916667,12.46083333,0.924416667,237.71336365 +2015-10-27 17:00:00,0.0,1011.348833,1.5321666669999998,96.59166667,10.48583333,1.544583333,237.7144494 +2015-10-27 18:00:00,0.0,1011.45175,0.0,99.98333333,8.328583333,0.979583333,237.71538006666665 +2015-10-27 19:00:00,0.0,1011.566083,0.0,100.0,5.905666667,0.203083333,237.71475963333333 +2015-10-27 20:00:00,0.0,1011.458333,0.0,100.0,4.408583333,0.0815,237.71600048333335 +2015-10-27 21:00:00,0.0,1011.4333330000001,0.0,100.0,4.92275,0.113166667,237.71398408333334 +2015-10-27 22:00:00,0.0,1011.164333,0.0,100.0,7.607666667,0.629916667,237.71367386666665 +2015-10-27 23:00:00,0.0,1011.066083,0.0,99.66666667,8.053416667,0.682,237.71212278333334 +2015-10-28 00:00:00,0.0,1010.764917,0.0,99.26666667,8.185833333,0.475083333,237.7121228 +2015-10-28 01:00:00,0.0,1010.46725,0.0,98.54166667,8.154166667,0.38158333299999997,237.71336365 +2015-10-28 02:00:00,0.0,1010.051333,0.0,97.71666667,8.456666667,0.507083333,237.71506983333333 +2015-10-28 03:00:00,0.0,1009.256583,0.0,97.74166667,8.525,0.629083333,237.71522495000002 +2015-10-28 04:00:00,0.0,1008.88875,0.0,97.30833333,8.728333333,0.7566666670000001,237.71569026666666 +2015-10-28 05:00:00,0.0,1008.53275,0.0,96.71666667,8.813333333,0.89275,237.71569028333332 +2015-10-28 06:00:00,0.0,1008.675583,0.012666667,96.075,8.824166667,1.183333333,237.71538005 +2015-10-28 07:00:00,0.0,1008.6928330000001,2.717916667,95.48333333,8.698333332999999,1.0300833329999999,237.71553516666665 +2015-10-28 08:00:00,0.0,1008.648833,14.8105,94.90833333,8.631666667000001,1.4783333330000001,237.71600048333335 +2015-10-28 09:00:00,0.0,1008.480417,30.545,94.825,8.623333333,1.4844166669999999,237.71460449999998 +2015-10-28 10:00:00,0.0,1008.417833,40.14,94.23333333,8.875,1.7801666669999998,237.71475961666667 +2015-10-28 11:00:00,0.0,1008.222083,63.23583333,93.03333333,9.110833332999999,1.31475,237.71600051666667 +2015-10-28 12:00:00,0.0,1007.881583,49.72833333,92.45833333,9.191666667,1.3155,237.71600048333332 +2015-10-28 13:00:00,0.0,1007.716667,42.25333333,93.61666667,9.299166667,1.353083333,237.71708626666666 +2015-10-28 14:00:00,0.0,1007.6916669999999,29.7175,94.575,9.3725,1.46875,237.71615559999998 +2015-10-28 15:00:00,0.0,1007.354833,31.01416667,94.775,9.554166667,1.020833333,237.71553516666665 +2015-10-28 16:00:00,0.0,1007.30175,25.01333333,95.43333333,9.5475,0.55,237.71475963333333 +2015-10-28 17:00:00,0.0,1007.2345,2.904666667,98.925,8.929166667,0.24858333300000002,237.71646583333333 +2015-10-28 18:00:00,0.0,1007.60175,0.0,100.0,8.405833333,0.235833333,237.71693113333333 +2015-10-28 19:00:00,0.0,1007.72325,0.0,100.0,8.229833333,0.147083333,237.71538005000002 +2015-10-28 20:00:00,0.0,1007.902333,0.0,100.0,7.069666667000001,0.2,237.7152249333333 +2015-10-28 21:00:00,0.0,1008.051167,0.0,100.0,6.269583333,0.171416667,237.71538005 +2015-10-28 22:00:00,0.0,1008.419583,0.0,100.0,6.136,0.209666667,237.71584538333332 +2015-10-28 23:00:00,0.0,1008.777333,0.0,100.0,6.30175,0.0835,237.71506983333333 +2015-10-29 00:00:00,0.0,1008.976167,0.0,100.0,7.104166667,0.12325,237.71398408333334 +2015-10-29 01:00:00,0.0,1009.427917,0.0,100.0,7.6021666670000005,0.09116666699999999,237.71212278333334 +2015-10-29 02:00:00,0.0,1009.935667,0.0,100.0,7.811916667,0.162083333,237.7142943166667 +2015-10-29 03:00:00,0.0,1010.0666669999999,0.0,100.0,8.07125,0.013916666999999999,237.7118125833333 +2015-10-29 04:00:00,0.0,1010.18625,0.0,100.0,8.485833332999999,0.09125,237.7116574833333 +2015-10-29 05:00:00,0.0,1010.85175,0.0,100.0,8.566666667,0.013000000000000001,237.71196768333334 +2015-10-29 06:00:00,0.0,1011.245167,0.008416667,100.0,8.534166667000001,0.033916667000000005,237.71088193333333 +2015-10-29 07:00:00,0.0,1011.95525,7.089916667000001,100.0,8.688333333,0.0005,237.7107268166667 +2015-10-29 08:00:00,0.0,1012.839167,29.09916667,100.0,9.1725,0.40666666700000004,237.70964108333337 +2015-10-29 09:00:00,7.39070388,1013.419,65.63166667,100.0,10.19083333,0.286666667,237.70840023333335 +2015-10-29 10:00:00,0.0,1013.894583,118.075,98.675,11.355,0.29175,237.70840023333335 +2015-10-29 11:00:00,0.0,1014.452917,97.27333333,95.99166667,12.1875,0.572916667,237.70638383333332 +2015-10-29 12:00:00,0.0,1014.591667,127.275,92.88333333,12.71583333,0.869083333,237.71652351666668 +2015-10-29 13:00:00,0.0,1014.8178330000001,116.7,90.96666667,13.01416667,0.48208333299999995,237.72039705 +2015-10-29 14:00:00,0.0,1015.0594570000001,137.3125,86.38333333,13.83333333,0.85325,237.72024213333336 +2015-10-29 15:00:00,0.0,1015.2168949999999,106.0275,80.27333333,13.79666667,1.3173333329999999,237.72132671666668 +2015-10-29 16:00:00,0.0,1015.77425,27.71725,89.81166667,12.65333333,0.851916667,237.72179153333335 +2015-10-29 17:00:00,0.0,1016.48275,0.882583333,98.25,11.59166667,0.9894166670000001,237.72241128333334 +2015-10-29 18:00:00,0.0,1016.9915,0.0,99.075,10.475,0.8625,237.72241128333334 +2015-10-29 19:00:00,0.0,1017.532833,0.0,100.0,9.395833332999999,0.20625,237.7207069333333 +2015-10-29 20:00:00,0.0,1017.8665,0.0,100.0,9.106666667,0.0,237.72039705 +2015-10-29 21:00:00,0.0,1018.399083,0.0,100.0,8.554166667,0.08675,237.72024209999998 +2015-10-29 22:00:00,0.0,1019.05,0.0,100.0,9.013333333,0.013583333000000001,237.71931246666668 +2015-10-29 23:00:00,0.0,1019.166417,0.0,100.0,7.992916667,0.09916666699999999,237.72101681666666 +2015-10-30 00:00:00,0.0,1019.449833,0.0,100.0,6.525583332999999,0.093916667,237.72179153333332 +2015-10-30 01:00:00,0.0,1019.758,0.0,100.0,7.0335,0.049083333,237.72163659999998 +2015-10-30 02:00:00,0.0,1020.008167,0.0,100.0,7.463166667,0.021916667,237.72024209999998 +2015-10-30 03:00:00,0.0,1020.233083,0.0,100.0,7.694666667000001,0.0014166670000000001,237.71962235 +2015-10-30 04:00:00,0.0,1020.324917,0.0,100.0,8.063916667,0.004666667,237.72024209999998 +2015-10-30 05:00:00,0.0,1020.64975,0.0,100.0,8.264166667000001,0.078083333,237.7205520166667 +2015-10-30 06:00:00,0.0,1021.074833,0.026333332999999997,100.0,8.271666667,0.004583333,237.71962234999998 +2015-10-30 07:00:00,0.0,1021.365917,4.4799166669999995,100.0,8.31,0.03025,237.7197773 +2015-10-30 08:00:00,0.0,1022.057917,17.885,100.0,8.660833333,0.0,237.7196223666667 +2015-10-30 09:00:00,0.0,1022.475083,29.86083333,100.0,9.1725,0.040583333,237.71931248333337 +2015-10-30 10:00:00,0.0,1022.383083,91.255,100.0,9.871666667000001,0.51125,237.71962235 +2015-10-30 11:00:00,0.0,1022.5666669999999,99.33333333,98.21666667,11.12083333,1.007916667,237.71900260000004 +2015-10-30 12:00:00,0.0,1022.366833,198.725,84.265,12.92333333,1.5635833330000002,237.71900260000004 +2015-10-30 13:00:00,0.0,1022.22525,229.7416667,75.50916667,14.1725,1.775,237.7176081 +2015-10-30 14:00:00,0.0,1022.133333,161.2666667,74.75583333,14.13416667,1.678833333,237.71776306666672 +2015-10-30 15:00:00,0.0,1021.916917,83.5275,77.4925,13.4425,1.41675,237.72086188333333 +2015-10-30 16:00:00,0.0,1022.1080000000001,26.14891667,85.395,11.83083333,1.0656666670000001,237.72117178333335 +2015-10-30 17:00:00,0.0,1022.283167,0.80275,97.30833333,9.408333333,0.031833333,237.72117176666669 +2015-10-30 18:00:00,0.0,1022.707667,0.0,99.975,8.418583332999999,0.37591666700000004,237.72163658333332 +2015-10-30 19:00:00,0.0,1023.116833,0.0,100.0,6.829333332999999,0.052416667,237.72225635000004 +2015-10-30 20:00:00,0.0,1023.233083,0.0,100.0,5.360416667,0.029416667,237.72117176666666 +2015-10-30 21:00:00,0.0,1023.58275,0.0,100.0,4.477416667,0.022416667,237.72132671666668 +2015-10-30 22:00:00,0.0,1023.658917,0.0,100.0,3.8275,0.01725,237.72194646666665 +2015-10-30 23:00:00,0.0,1023.3250830000001,0.0,100.0,3.06925,0.008166666999999999,237.72179153333332 +2015-10-31 00:00:00,0.0,1023.1916669999999,0.0,100.0,2.6125,0.0,237.72303106666666 +2015-10-31 01:00:00,0.0,1023.1833330000001,0.0,100.0,2.407833333,0.0,237.7221014 +2015-10-31 02:00:00,0.0,1023.100417,0.0,100.0,3.257666667,0.08525,237.72334096666665 +2015-10-31 03:00:00,0.0,1022.724833,0.0,100.0,3.695666667,0.142,237.72411566666665 +2015-10-31 04:00:00,0.0,1022.81675,0.0,100.0,5.26725,0.40299999999999997,237.7228761333333 +2015-10-31 05:00:00,0.0,1022.958167,0.0,100.0,5.6015,0.9926666670000001,237.72241129999998 +2015-10-31 06:00:00,0.0,1023.066417,0.0,100.0,6.143,1.606333333,237.72194648333337 +2015-10-31 07:00:00,0.0,1023.54125,2.7640833330000003,100.0,6.66625,0.654416667,237.72148166666668 +2015-10-31 08:00:00,0.0,1024.049583,15.7225,99.5,6.465833333,1.307,237.71993223333334 +2015-10-31 09:00:00,0.0,1024.3165,29.8875,99.83333333,6.7960833329999994,0.885166667,237.72008716666667 +2015-10-31 10:00:00,0.0,1024.424917,60.29416667,96.5,7.77625,1.43125,237.71993224999997 +2015-10-31 11:00:00,0.0,1024.533333,111.10083329999999,91.275,8.64,1.68025,237.71962235 +2015-10-31 12:00:00,0.0,1024.059,208.2833333,84.8375,10.50916667,1.3571666669999998,237.71900258333335 +2015-10-31 13:00:00,0.0,1023.367333,252.4833333,78.93833333,12.23833333,1.3459999999999999,237.71946741666667 +2015-10-31 14:00:00,0.0,1023.083333,201.65,75.56666667,12.33666667,1.653,237.72086188333333 +2015-10-31 15:00:00,0.0,1022.89175,127.09166670000002,76.87333333,11.475,1.626416667,237.72179155 +2015-10-31 16:00:00,0.0,1023.091417,34.8025,86.18333333,10.19666667,0.63025,237.72194648333334 +2015-10-31 17:00:00,0.0,1023.507833,1.6646666669999999,97.88333333,6.776583333,0.062333333,237.72349588333336 +2015-10-31 18:00:00,0.0,1023.966417,0.0,99.96666667,4.97275,0.16016666699999998,237.7239607166667 +2015-10-31 19:00:00,0.0,1024.15,0.0,100.0,3.821583333,0.06875,237.72380578333335 +2015-10-31 20:00:00,0.0,1024.29125,0.0,100.0,3.218666667,0.112166667,237.72442555 +2015-10-31 21:00:00,0.0,1024.575,0.0,100.0,2.215416667,0.017,237.72411566666668 +2015-10-31 22:00:00,0.0,1024.616583,0.0,100.0,1.484,0.0,237.72520025000003 +2015-10-31 23:00:00,0.0,1024.766583,0.0,100.0,1.017333333,0.018333333,237.72473541666668 +2015-01-11 00:00:00,0.0,1025.024667,0.0,100.0,0.732083333,0.0, +2015-01-11 01:00:00,0.0,1025.158333,0.0,100.0,0.596916667,0.0, +2015-01-11 02:00:00,0.0,1025.258333,0.0,100.0,1.277666667,0.03225, +2015-01-11 03:00:00,0.0,1025.216583,0.0,100.0,2.2785833330000003,0.003, +2015-01-11 04:00:00,0.0,1025.366583,0.0,100.0,1.8894166669999999,0.0455, +2015-01-11 05:00:00,0.0,1025.53325,0.0,100.0,1.3685,0.26558333300000003, +2015-01-11 06:00:00,0.0,1025.558083,0.018333333,100.0,0.9035,0.023666667000000002, +2015-01-11 07:00:00,0.0,1026.249417,5.762166667000001,100.0,0.429333333,0.263, +2015-01-11 08:00:00,0.0,1026.7995,35.3125,100.0,0.653083333,0.0905, +2015-01-11 09:00:00,0.0,1027.433,94.32166667,100.0,1.21525,0.396, +2015-01-11 10:00:00,0.0,1027.575083,183.3916667,100.0,2.824833333,0.19175, +2015-01-11 11:00:00,0.0,1027.15025,249.325,100.0,4.34925,0.241166667, +2015-01-11 12:00:00,0.0,1026.717167,273.7333333,95.89166667,8.278166667,0.5845, +2015-01-11 13:00:00,0.0,1026.5335,254.875,83.21333333,11.64583333,1.011833333, +2015-01-11 14:00:00,0.0,1026.141833,204.33333330000002,72.5225,14.18166667,0.94125, +2015-01-11 15:00:00,0.0,1025.683833,132.46666670000002,68.47916667,13.6925,1.03025, +2015-01-11 16:00:00,0.0,1025.491667,31.51741667,86.97833333,11.53,0.23075, +2015-01-11 17:00:00,0.0,1025.416667,1.135333333,97.0,7.0855,0.226666667, +2015-01-11 18:00:00,0.0,1025.691417,0.0,99.80833333,4.749916667,0.1805, +2015-01-11 19:00:00,0.0,1025.949583,0.0,100.0,3.232416667,0.10825, +2015-01-11 20:00:00,0.0,1026.141833,0.0,100.0,2.25525,0.08575, +2015-01-11 21:00:00,0.0,1026.016917,0.0,100.0,1.494666667,0.10158333300000001, +2015-01-11 22:00:00,0.0,1025.691833,0.0,100.0,0.935333333,0.032916667000000004, +2015-01-11 23:00:00,0.0,1025.4669999999999,0.0,100.0,0.316666667,0.006166667, +2015-02-11 00:00:00,0.0,1025.07525,0.0,100.0,-0.255666667,0.005, +2015-02-11 01:00:00,0.0,1024.741917,0.0,100.0,-0.605666667,0.0, +2015-02-11 02:00:00,0.0,1024.533333,0.0,100.0,-0.23525,0.0, +2015-02-11 03:00:00,0.0,1024.74125,0.0,100.0,0.638083333,0.0, +2015-02-11 04:00:00,0.0,1024.359167,0.0,100.0,0.658416667,0.001, +2015-02-11 05:00:00,0.0,1023.983583,0.0,100.0,0.4095,0.037833333, +2015-02-11 06:00:00,0.0,1024.116417,0.0,100.0,0.255833333,0.11075, +2015-02-11 07:00:00,0.0,1024.22475,5.15875,100.0,-0.18591666699999998,0.27775, +2015-02-11 08:00:00,0.0,1024.5,36.73916667,100.0,0.380333333,0.1845, +2015-02-11 09:00:00,2.4350633040000003,1024.37525,95.64583333,100.0,1.5350833330000002,0.242833333, +2015-02-11 10:00:00,0.0,1024.383333,155.4083333,100.0,2.587333333,0.17, +2015-02-11 11:00:00,0.0,1023.90025,255.5916667,100.0,4.083833333,0.450666667, +2015-02-11 12:00:00,0.0,1023.3755,281.3666667,96.925,7.525666667,0.317916667, +2015-02-11 13:00:00,0.0,1022.883833,257.7583333,76.95083333,10.31083333,1.072833333, +2015-02-11 14:00:00,0.0,1022.467083,203.70833330000002,61.8075,12.81416667,1.272666667, +2015-02-11 15:00:00,0.0,1022.225,137.81666669999998,58.6925,12.14166667,1.227, +2015-02-11 16:00:00,0.0,1021.941833,27.99783333,82.35083333,9.952083333,0.57625, +2015-02-11 17:00:00,0.0,1021.883417,1.037666667,95.875,5.281583333,0.3115, +2015-02-11 18:00:00,0.0,1021.9,0.0,98.51666667,2.802916667,0.192083333, +2015-02-11 19:00:00,0.0,1021.683583,0.0,99.925,0.9301666670000001,0.04375, +2015-02-11 20:00:00,0.0,1021.466583,0.0,100.0,1.5044166669999999,0.293166667, +2015-02-11 21:00:00,0.0,1021.674833,0.0,100.0,3.187166667,0.809583333, +2015-02-11 22:00:00,0.0,1021.558583,0.0,100.0,3.459916667,1.077833333, +2015-02-11 23:00:00,0.0,1021.4751669999999,0.0,100.0,3.432416667,0.745, +2015-03-11 00:00:00,0.0,1021.300083,0.0,100.0,3.333916667,0.52275,238.058686 +2015-03-11 01:00:00,0.0,1020.992083,0.0,100.0,3.237833333,0.535166667,238.059036 +2015-03-11 02:00:00,0.0,1020.541917,0.0,100.0,3.027333333,0.687416667,238.06008599999998 +2015-03-11 03:00:00,0.0,1019.925667,0.0,100.0,2.902583333,0.634166667,238.06008599999998 +2015-03-11 04:00:00,0.0,1019.2835,0.0,100.0,2.422583333,0.856916667,238.06075266666664 +2015-03-11 05:00:00,0.0,1019.2000830000001,0.0,100.0,1.991416667,0.48475,238.06041933333333 +2015-03-11 06:00:00,0.0,1019.00025,0.0,100.0,1.7814166669999998,0.39625,238.06075266666664 +2015-03-11 07:00:00,0.0,1018.8585,2.78,100.0,1.53475,0.34683333299999997,238.06141933333333 +2015-03-11 08:00:00,0.0,1019.074833,22.3775,100.0,1.444916667,0.453166667,238.06141933333333 +2015-03-11 09:00:00,0.0,1018.783583,53.205,100.0,1.428166667,0.5195,238.07616933333335 +2015-03-11 10:00:00,0.0,1018.47525,73.03416667,100.0,1.91625,0.238833333,238.0748193333333 +2015-03-11 11:00:00,0.0,1017.99225,105.49833329999998,100.0,2.267,0.701666667,238.05973600000002 +2015-03-11 12:00:00,0.0,1017.433833,161.8416667,100.0,2.996916667,0.43558333299999996,238.059036 +2015-03-11 13:00:00,0.0,1016.9005,164.66666669999998,100.0,3.95225,0.395583333,238.059036 +2015-03-11 14:00:00,0.0,1016.383583,160.5341667,97.99166667,5.832166667,0.3995,238.059036 +2015-03-11 15:00:00,0.0,1015.941833,62.76166667,99.825,5.50825,0.20125,238.059386 +2015-03-11 16:00:00,0.0,1016.15,19.58233333,99.94166667,5.007833333,0.150416667,238.059386 +2015-03-11 17:00:00,0.0,1015.9416669999999,0.4735,100.0,2.956833333,0.11425,238.06008599999998 +2015-03-11 18:00:00,0.0,1016.091667,0.0,100.0,1.7355,0.060333332999999996,238.06175266666665 +2015-03-11 19:00:00,0.0,1015.875,0.0,100.0,1.9106666669999999,0.1105,238.06243600000002 +2015-03-11 20:00:00,0.0,1016.208083,0.0,100.0,3.433416667,0.845166667,238.062786 +2015-03-11 21:00:00,0.0,1016.632917,0.0,100.0,3.088,0.8615,238.06243600000002 +2015-03-11 22:00:00,0.0,1016.99125,0.0,100.0,2.92075,0.84275,238.06278599999996 +2015-03-11 23:00:00,0.0,1017.23325,0.0,100.0,3.1045,0.340416667,238.063836 +2015-04-11 00:00:00,0.0,1017.391667,0.0,100.0,3.2061666669999997,0.6426666670000001,238.04355296666665 +2015-04-11 01:00:00,0.0,1017.208333,0.0,100.0,3.2999166669999997,1.007333333,238.0435037 +2015-04-11 02:00:00,0.0,1017.208583,0.0,100.0,3.5339166669999997,1.095666667,238.04347783333333 +2015-04-11 03:00:00,0.0,1017.100083,0.0,100.0,3.7039166669999997,1.024833333,238.0435037 +2015-04-11 04:00:00,0.0,1017.091417,0.0,100.0,3.71525,1.08025,238.04345196666665 +2015-04-11 05:00:00,0.0,1017.158583,0.0,100.0,3.85025,1.265916667,238.04329679999992 +2015-04-11 06:00:00,0.0,1017.133,0.0,100.0,3.9628333330000003,1.100166667,238.04332264999994 +2015-04-11 07:00:00,0.0,1017.383167,2.5451666669999997,100.0,4.0745833330000005,1.158,238.04327094999996 +2015-04-11 08:00:00,0.0,1017.683083,21.41108333,100.0,4.184,1.575083333,238.04332264999994 +2015-04-11 09:00:00,0.0,1017.77525,52.84833333,100.0,4.3615833330000005,1.517333333,238.04324509999995 +2015-04-11 10:00:00,0.0,1017.816417,76.09666667,100.0,4.6281666669999995,1.5303333330000002,238.0432451 +2015-04-11 11:00:00,0.0,1017.542083,100.95833329999999,100.0,5.00425,1.130083333,238.04410818000002 +2015-04-11 12:00:00,0.0,1017.100333,108.275,100.0,5.553083332999999,1.154916667,238.04438675000003 +2015-04-11 13:00:00,0.0,1016.717167,86.0125,100.0,5.93825,0.8414166670000001,238.04433505 +2015-04-11 14:00:00,0.0,1016.316833,42.91166667,100.0,6.317416667000001,0.9675,238.04428335 +2015-04-11 15:00:00,0.0,1016.2,34.75583333,100.0,6.8129166670000005,1.4456666669999998,238.04420823333336 +2015-04-11 16:00:00,0.0,1015.9835,13.21683333,100.0,6.7184166670000005,1.19475,238.0441836 +2015-04-11 17:00:00,0.0,1015.9,0.21558333300000002,100.0,6.463583333,0.12633333300000002,238.04413433333335 +2015-04-11 18:00:00,0.0,1016.0915,0.0,100.0,6.03075,0.11525,238.04405796666666 +2015-04-11 19:00:00,0.0,1016.099917,0.0,100.0,5.5156666670000005,0.07375,238.04405796666666 +2015-04-11 20:00:00,0.0,1016.2,0.0,100.0,5.673583333,0.24375,238.04392986666664 +2015-04-11 21:00:00,0.0,1016.441417,0.0,100.0,5.580416667000001,0.18475,238.04383133333332 +2015-04-11 22:00:00,0.0,1016.558417,0.0,100.0,4.460333333,0.053083332999999996,238.04360346666667 +2015-04-11 23:00:00,0.0,1016.624917,0.0,100.0,3.310833333,0.048,238.04342609999995 +2015-05-11 00:00:00,0.0,1016.758167,0.0,100.0,3.0379166669999997,0.026166667,238.01667504999998 +2015-05-11 01:00:00,0.0,1017.083083,0.0,100.0,3.428,0.033333333,238.01753693333333 +2015-05-11 02:00:00,0.0,1017.158167,0.0,100.0,3.8969166669999997,0.176583333,238.01650269999996 +2015-05-11 03:00:00,0.0,1017.041833,0.0,100.0,4.381833333,0.24475,238.01633031666665 +2015-05-11 04:00:00,0.0,1017.050083,0.0,100.0,4.34975,0.18516666699999998,238.01736456666666 +2015-05-11 05:00:00,0.0,1017.091583,0.0,100.0,3.1889999999999996,0.060166667,238.0178817 +2015-05-11 06:00:00,0.0,1017.091667,0.0,100.0,2.2295,0.032833333,238.0156408 +2015-05-11 07:00:00,0.0,1017.2165,2.228,100.0,2.102,0.062083333,238.01288278333334 +2015-05-11 08:00:00,0.0,1017.84925,29.56166667,100.0,3.355333333,0.047833333,238.01184851666667 +2015-05-11 09:00:00,4.842032376000001,1018.133417,60.85083333,100.0,4.514333333,0.1155,238.01064188333336 +2015-05-11 10:00:00,0.0,1018.333083,102.1266667,100.0,5.90925,0.292916667,238.00822859999997 +2015-05-11 11:00:00,0.0,1018.208667,182.0,100.0,8.565083332999999,0.373666667,238.00771146666668 +2015-05-11 12:00:00,0.0,1017.683833,241.19166669999998,97.50833333,12.1575,0.42941666700000003,238.00702196666666 +2015-05-11 13:00:00,0.0,1017.1505,223.55,86.29166667,14.05833333,0.42508333299999995,238.0061600833333 +2015-05-11 14:00:00,0.0,1016.775167,160.98166669999998,82.425,15.59416667,1.052666667,238.00322968333333 +2015-05-11 15:00:00,0.0,1016.308583,63.21166667,88.93333333,14.8625,1.074,238.00357443333334 +2015-05-11 16:00:00,0.0,1016.325,8.576166667,98.04166667,11.52,0.26566666699999997,238.00391921666662 +2015-05-11 17:00:00,0.0,1016.199917,0.2725,100.0,9.125833333,0.120583333,238.0047810833333 +2015-05-11 18:00:00,0.0,1016.250083,0.0,100.0,8.0415,0.16675,238.00460871666658 +2015-05-11 19:00:00,0.0,1016.283417,0.0,100.0,7.455,0.04975,238.00460871666664 +2015-05-11 20:00:00,0.0,1016.033333,0.0,100.0,6.412583333,0.082083333,238.0068496166666 +2015-05-11 21:00:00,0.0,1016.18325,0.0,100.0,6.3281666670000005,0.06625,238.00788386666667 +2015-05-11 22:00:00,0.0,1016.466417,0.0,100.0,6.31775,0.01875,238.00857336666664 +2015-05-11 23:00:00,0.0,1016.7080000000001,0.0,100.0,6.39425,0.020333333000000002,238.00788386666667 +2015-06-11 00:00:00,0.0,1016.716917,0.0,100.0,6.446833333,0.0030833329999999997,237.69450304999998 +2015-06-11 01:00:00,0.0,1016.691833,0.0,100.0,6.5889999999999995,0.046833333,237.6972610833333 +2015-06-11 02:00:00,0.0,1016.866167,0.0,100.0,6.86525,0.001833333,237.7001915 +2015-06-11 03:00:00,0.0,1016.783667,0.0,100.0,7.1595,0.023666667000000002,237.7027771666667 +2015-06-11 04:00:00,0.0,1016.500417,0.0,100.0,7.272583332999999,0.0765,237.70501803333335 +2015-06-11 05:00:00,0.0,1016.349833,0.0,100.0,8.152916667000001,0.24933333300000002,237.7088103333333 +2015-06-11 06:00:00,0.0,1016.324917,0.0,100.0,8.6075,0.24325,237.70898273333333 +2015-06-11 07:00:00,0.0,1016.599917,2.543166667,100.0,8.354166667000001,0.10166666699999999,237.70622468333332 +2015-06-11 08:00:00,0.0,1017.041,28.56583333,100.0,9.008333333,0.069833333,237.70346666666663 +2015-06-11 09:00:00,0.0,1017.391667,78.89,100.0,10.71916667,0.074833333,237.69398594999998 +2015-06-11 10:00:00,0.0,1017.5165,115.35,98.88333333,12.5025,0.56625,237.68398808333336 +2015-06-11 11:00:00,0.0,1017.400167,118.24166670000001,85.50833333,14.25166667,0.881833333,237.67554161666666 +2015-06-11 12:00:00,0.0,1017.44175,107.17416670000001,83.5,16.175,0.966833333,237.67364548333333 +2015-06-11 13:00:00,0.0,1017.2251669999999,124.07166670000001,82.21666667,17.02583333,0.870833333,237.6689913166667 +2015-06-11 14:00:00,0.0,1017.174833,34.04416667,85.4,16.39666667,1.214416667,237.6689913166667 +2015-06-11 15:00:00,0.0,1017.241583,16.53808333,89.61666667,15.135,0.7825,237.66726758333334 +2015-06-11 16:00:00,0.0,1017.6415,12.6345,89.66666667,14.84833333,0.642,237.6664056666667 +2015-06-11 17:00:00,0.0,1017.757833,0.22925,94.275,13.92583333,0.754166667,237.66468188333337 +2015-06-11 18:00:00,0.0,1017.916833,0.0,93.24166667,13.71583333,0.8835,237.66347526666672 +2015-06-11 19:00:00,0.0,1018.158167,0.0,94.80833333,12.665,1.0,237.66313051666666 +2015-06-11 20:00:00,0.0,1018.27475,0.0,89.25833333,13.10666667,1.057833333,237.67002560000003 +2015-06-11 21:00:00,0.0,1018.5165,0.0,92.66666667,14.1375,0.642083333,237.67381788333333 +2015-06-11 22:00:00,2.46041064,1018.55,0.0,96.09166667,13.435,0.765833333,237.6772654 +2015-06-11 23:00:00,2.47353708,1018.441833,0.0,99.03333333,13.00333333,0.36608333299999996,237.68347096666665 +2015-07-11 00:00:00,11.99693088,1018.383417,0.0,100.0,12.8075,0.0495,237.51826929999996 +2015-07-11 01:00:00,0.0,1018.42475,0.0,99.86666667,12.90166667,0.10075,237.52398444999997 +2015-07-11 02:00:00,0.0,1018.592,0.0,98.76666667,13.46166667,0.059000000000000004,237.5280269 +2015-07-11 03:00:00,0.0,1018.40825,0.0,98.06666667,14.72916667,0.243166667,237.53151173333336 +2015-07-11 04:00:00,0.0,1018.408333,0.0,97.81666667,14.5,0.389166667,237.53639048333332 +2015-07-11 05:00:00,0.0,1018.691167,0.0,97.20833333,14.0675,0.13525,237.53750563333335 +2015-07-11 06:00:00,0.0,1019.116583,0.0,99.1,15.07083333,0.165333333,237.53876018333335 +2015-07-11 07:00:00,0.0,1019.574333,2.48825,99.90833333,15.15666667,0.09775,237.54085106666665 +2015-07-11 08:00:00,0.0,1020.482667,28.56033333,98.975,15.5725,0.195166667,237.5404329 +2015-07-11 09:00:00,2.436033192,1020.700167,49.85416667,98.20833333,16.35166667,0.294,237.53081475 +2015-07-11 10:00:00,0.0,1020.69125,95.71333333,94.925,17.03416667,0.578583333,237.51854809999998 +2015-07-11 11:00:00,0.0,1020.808583,106.55583329999999,92.825,18.31,0.757166667,237.50349360000004 +2015-07-11 12:00:00,0.0,1020.492083,111.20833329999999,90.225,18.70166667,0.7174166670000001,237.49610573333337 +2015-07-11 13:00:00,0.0,1020.300083,67.94833333,87.38333333,18.945,1.239166667,237.49066935000005 +2015-07-11 14:00:00,0.0,1020.099917,38.125,88.41666667,18.66,0.880166667,237.48955421666673 +2015-07-11 15:00:00,0.0,1019.941917,58.71916667,89.0,18.395,0.986083333,237.48690573333337 +2015-07-11 16:00:00,0.0,1019.716833,14.08416667,90.65833333,17.76583333,0.83325,237.48634818333332 +2015-07-11 17:00:00,0.0,1019.849917,0.15633333300000002,94.61666667,16.29916667,0.806333333,237.48439665 +2015-07-11 18:00:00,0.0,1019.866667,0.0,93.25,15.4975,1.200833333,237.4835603 +2015-07-11 19:00:00,0.0,1019.949917,0.0,91.99166667,16.595,1.51625,237.4831421166667 +2015-07-11 20:00:00,0.0,1019.841917,0.0,90.925,18.0975,1.8400833330000002,237.48467545000003 +2015-07-11 21:00:00,0.0,1019.958167,0.0,89.44166667,18.2875,1.3735,237.48843905000004 +2015-07-11 22:00:00,0.0,1020.191333,0.0,89.61666667,17.76916667,1.029666667,237.49248148333334 +2015-07-11 23:00:00,0.0,1020.399583,0.0,92.35833333,16.495,0.8009166670000001,237.49624508333332 +2015-08-11 00:00:00,0.0,1020.816417,0.0,94.25833333,15.20166667,0.18641666699999998,237.73028706666665 +2015-08-11 01:00:00,0.0,1021.574083,0.0,97.11666667,13.33833333,0.19066666699999998,237.72610524999996 +2015-08-11 02:00:00,0.0,1022.33275,0.0,96.70833333,12.09166667,0.12633333300000002,237.7184386166667 +2015-08-11 03:00:00,0.0,1022.733333,0.0,94.28333333,12.21916667,0.22066666699999998,237.71174773333334 +2015-08-11 04:00:00,0.0,1023.399167,0.0,92.65,11.29166667,0.251583333,237.70491743333332 +2015-08-11 05:00:00,0.0,1023.941333,0.0,93.94166667,10.69583333,0.21383333300000001,237.70045681666662 +2015-08-11 06:00:00,0.0,1024.374667,0.0,99.05833333,10.7325,0.52375,237.69237198333335 +2015-08-11 07:00:00,0.0,1024.81625,4.5134166669999995,100.0,8.979166667000001,0.08941666699999999,237.6872144166667 +2015-08-11 08:00:00,0.0,1025.12475,30.95833333,100.0,8.875833333,0.109833333,237.67926898333334 +2015-08-11 09:00:00,0.0,1025.741167,79.9675,100.0,11.57166667,0.08708333300000001,237.67452961666666 +2015-08-11 10:00:00,0.0,1025.741917,131.80666670000002,94.625,13.335,0.735666667,237.66979025 +2015-08-11 11:00:00,0.0,1025.30875,172.6416667,84.6225,14.7725,0.971666667,237.65794175 +2015-08-11 12:00:00,0.0,1024.625833,170.775,81.8,15.62833333,1.212166667,237.66268115000003 +2015-08-11 13:00:00,0.0,1023.809083,202.5083333,78.67416667,16.34416667,1.5149166669999998,237.65863871666667 +2015-08-11 14:00:00,0.0,1022.859083,133.2083333,78.30416667,16.575,1.6586666669999999,237.65362056666666 +2015-08-11 15:00:00,0.0,1022.12525,63.88666667,81.345,15.9625,1.3840833330000002,237.648463 +2015-08-11 16:00:00,0.0,1021.467583,17.202,89.35,14.52416667,1.5081666669999998,237.6442812 +2015-08-11 17:00:00,0.0,1020.73375,0.68675,98.75,11.99916667,0.659416667,237.64093573333332 +2015-08-11 18:00:00,0.0,1020.0505,0.0,100.0,10.19083333,0.169833333,237.63647515000002 +2015-08-11 19:00:00,0.0,1019.225917,0.0,100.0,9.240833333,0.12941666699999999,237.63257209999998 +2015-08-11 20:00:00,0.0,1018.733583,0.0,100.0,8.7625,0.10525,237.62866908333334 +2015-08-11 21:00:00,0.0,1017.917583,0.0,100.0,8.23375,0.0715,237.62504485 +2015-08-11 22:00:00,0.0,1016.875667,0.0,100.0,7.5745,0.06925,237.6232327333333 +2015-08-11 23:00:00,0.0,1016.250333,0.0,100.0,7.213916667,0.11575,237.62211758333333 +2015-09-11 00:00:00,0.0,1016.175167,0.0,99.59166667,7.23775,0.21641666699999998,237.52459701666666 +2015-09-11 01:00:00,0.0,1016.24975,0.0,86.4,7.120166667,0.1355,237.52785428333334 +2015-09-11 02:00:00,0.0,1016.233333,0.0,85.36666667,8.005916667000001,0.176916667,237.52971556666668 +2015-09-11 03:00:00,0.0,1016.533417,0.0,83.76666667,13.25583333,0.737166667,237.53297286666668 +2015-09-11 04:00:00,0.0,1016.37475,0.0,85.23333333,15.395,0.8763333329999999,237.53591991666667 +2015-09-11 05:00:00,0.0,1016.50825,0.0,86.63333333,15.65833333,0.93175,237.53762611666664 +2015-09-11 06:00:00,0.0,1016.766333,0.0,87.45833333,15.71166667,1.356333333,237.53886699999998 +2015-09-11 07:00:00,22.31779579,1017.482583,0.9966666670000001,90.25,15.47166667,1.365583333,237.53964251666665 +2015-09-11 08:00:00,0.0,1017.92475,9.996,90.81666667,14.86416667,0.923083333,237.5391772 +2015-09-11 09:00:00,5.289648936,1018.4995,59.71916667,90.71666667,15.71166667,1.047916667,237.53948743333333 +2015-09-11 10:00:00,0.0,1019.066333,123.4725,87.99166667,15.78666667,0.989583333,237.5390221 +2015-09-11 11:00:00,0.0,1019.366583,150.55,78.19583333,17.2525,1.462666667,237.5365403333333 +2015-09-11 12:00:00,0.0,1018.958583,145.6333333,74.20666667,17.3475,1.879833333,237.53002578333334 +2015-09-11 13:00:00,0.0,1018.916833,107.70833329999999,73.4575,16.68166667,1.7504166669999999,237.52428680000003 +2015-09-11 14:00:00,0.0,1019.066417,107.40416670000002,67.59,16.53583333,1.436166667,237.51730696666667 +2015-09-11 15:00:00,0.0,1019.383167,71.22833333,65.73,16.30166667,1.496583333,237.51048220000004 +2015-09-11 16:00:00,0.0,1019.51625,17.02741667,67.53916667,15.365,1.618166667,237.50598406666666 +2015-09-11 17:00:00,0.0,1020.23325,0.32225,72.04666667,14.675,0.92975,237.50412275 +2015-09-11 18:00:00,0.0,1019.95,0.0,72.47833333,14.3225,1.123416667,237.50381251666667 +2015-09-11 19:00:00,0.0,1020.058167,0.0,72.29,14.27,1.7590000000000001,237.5031921 +2015-09-11 20:00:00,0.0,1020.34975,0.0,74.38416667,13.745,1.3979166669999998,237.50489831666667 +2015-09-11 21:00:00,0.0,1020.15875,0.0,77.8975,13.8925,1.5761666669999999,237.50738003333333 +2015-09-11 22:00:00,0.0,1020.049583,0.0,78.26833333,14.12916667,2.010333333,237.5101719833333 +2015-09-11 23:00:00,0.0,1019.700917,0.0,75.9125,14.08333333,2.9315833330000003,237.51327415 +2015-10-11 00:00:00,0.0,1019.483083,0.0,74.46583333,13.855,2.599583333,237.66264329999998 +2015-10-11 01:00:00,0.0,1019.500083,0.0,72.47,13.85666667,2.11225,237.66326373333334 +2015-10-11 02:00:00,0.0,1019.450167,0.0,72.535,13.62833333,1.8493333330000001,237.66372903333334 +2015-10-11 03:00:00,0.0,1019.3250830000001,0.0,74.545,13.57916667,1.8559166669999998,237.66496988333333 +2015-10-11 04:00:00,0.0,1019.367,0.0,75.46916667,13.52083333,1.875083333,237.66512501666668 +2015-10-11 05:00:00,0.0,1019.174583,0.0,74.755,13.44666667,1.8454166669999998,237.66388415000006 +2015-10-11 06:00:00,0.0,1019.258333,0.0,76.40416667,13.32833333,1.5981666669999999,237.66341883333334 +2015-10-11 07:00:00,0.0,1019.441333,0.928583333,77.61416667,13.21083333,1.054583333,237.6627984 +2015-10-11 08:00:00,0.0,1019.791667,12.75591667,78.99916667,13.36833333,1.3793333330000002,237.6615575666667 +2015-10-11 09:00:00,0.0,1020.01625,52.035,80.5575,13.53083333,1.6359166669999998,237.66047179999998 +2015-10-11 10:00:00,0.0,1020.2915,81.5275,81.07,14.25833333,1.66125,237.65969628333335 +2015-10-11 11:00:00,0.0,1020.1916669999999,199.225,81.06583333,14.84,2.048083333,237.6589207333333 +2015-10-11 12:00:00,0.0,1020.12525,121.91666670000001,82.96666667,15.0075,2.003166667,237.65736966666668 +2015-10-11 13:00:00,0.0,1020.025,98.65,84.43333333,14.73166667,2.136,237.65597365 +2015-10-11 14:00:00,0.0,1019.592333,81.97666667,84.68333333,14.98,1.67925,237.65349193333336 +2015-10-11 15:00:00,0.0,1019.433,30.84916667,86.5,14.16416667,1.6033333330000001,237.6522510666667 +2015-10-11 16:00:00,0.0,1019.516833,14.13308333,87.93333333,13.73666667,0.832833333,237.65209598333334 +2015-10-11 17:00:00,0.0,1019.54975,0.16016666699999998,88.825,13.29916667,1.4045,237.65132043333335 +2015-10-11 18:00:00,0.0,1019.6,0.0,89.85,12.72,0.591833333,237.6511653 +2015-10-11 19:00:00,0.0,1020.216417,0.0,90.09166667,12.97083333,0.66,237.65147553333335 +2015-10-11 20:00:00,0.0,1020.116833,0.0,91.375,12.83583333,0.671333333,237.65101018333334 +2015-10-11 21:00:00,0.0,1020.21625,0.0,92.625,12.86166667,0.826583333,237.6511653166667 +2015-10-11 22:00:00,0.0,1020.591417,0.0,93.25833333,12.79916667,1.8775,237.6533368 +2015-10-11 23:00:00,0.0,1020.4335,0.0,93.73333333,12.64416667,1.330333333,237.65380215000002 +2015-11-11 00:00:00,0.0,1020.425083,0.0,93.275,12.76083333,1.109333333,237.73387693333336 +2015-11-11 01:00:00,0.0,1020.150167,0.0,93.575,12.65083333,0.9328333329999999,237.7343417666667 +2015-11-11 02:00:00,0.0,1020.258417,0.0,94.03333333,12.7525,0.982666667,237.73449670000002 +2015-11-11 03:00:00,0.0,1020.125,0.0,95.35,12.49416667,0.9640833329999999,237.73542635 +2015-11-11 04:00:00,0.0,1019.883583,0.0,96.01666667,12.41333333,1.35325,237.73589115000001 +2015-11-11 05:00:00,0.0,1019.6835,0.0,95.25,12.27583333,1.4120833330000002,237.73697575000003 +2015-11-11 06:00:00,0.0,1019.96625,0.0,95.28333333,12.18833333,0.9540000000000001,237.73589118333334 +2015-11-11 07:00:00,0.0,1020.13325,0.7929166670000001,95.7,12.03833333,0.8673333329999999,237.73620106666667 +2015-11-11 08:00:00,0.0,1020.657917,12.00966667,95.48333333,11.98833333,0.9813333329999999,237.73604611666667 +2015-11-11 09:00:00,0.0,1020.966167,35.52416667,95.90833333,12.09,0.912,237.73604611666667 +2015-11-11 10:00:00,0.0,1021.674333,87.36583333,89.13333333,12.3025,1.475583333,237.73263740000002 +2015-11-11 11:00:00,0.0,1021.658667,155.1083333,79.11666667,13.12083333,1.54775,237.73403188333336 +2015-11-11 12:00:00,0.0,1021.483667,165.0333333,76.495,13.6575,1.4875,237.73294729999998 +2015-11-11 13:00:00,0.0,1021.058667,195.5,71.67333333,14.39333333,1.34575,237.73248246666665 +2015-11-11 14:00:00,0.0,1020.625583,165.8833333,69.7375,14.2725,1.304333333,237.7344967 +2015-11-11 15:00:00,0.0,1020.14175,84.82666667,72.42,13.20666667,1.3145,237.73604611666667 +2015-11-11 16:00:00,0.0,1020.083333,15.05366667,79.26583333,11.42666667,0.742416667,237.73899000000003 +2015-11-11 17:00:00,0.0,1020.13325,0.2075,90.78333333,7.989166667,0.005333333000000001,237.7392999 +2015-11-11 18:00:00,0.0,1020.06675,0.0,98.49166667,5.527666667,0.093666667,237.7394548166667 +2015-11-11 19:00:00,0.0,1020.249917,0.0,100.0,4.8775,0.235583333,237.74022956666667 +2015-11-11 20:00:00,0.0,1020.233167,0.0,90.64166667,5.059083333,0.232583333,237.73868013333333 +2015-11-11 21:00:00,0.0,1020.54975,0.0,84.61666667,8.882166667,0.88375,237.73666588333333 +2015-11-11 22:00:00,0.0,1020.808167,0.0,84.0,9.9925,0.763416667,237.73713068333336 +2015-11-11 23:00:00,0.0,1020.816833,0.0,84.575,9.853333333,0.082833333,237.73604611666667 +2015-12-11 00:00:00,0.0,1020.65025,0.0,84.575,10.39333333,0.675,237.99505821666665 +2015-12-11 01:00:00,0.0,1020.43325,0.0,84.83333333,10.55333333,0.33683333299999996,237.99434239999997 +2015-12-11 02:00:00,0.0,1020.699583,0.0,85.70833333,10.41416667,0.333583333,237.99416346666666 +2015-12-11 03:00:00,0.0,1020.75025,0.0,87.425,10.75833333,0.200333333,237.99416348333332 +2015-12-11 04:00:00,0.0,1020.883333,0.0,89.24166667,11.0475,0.47533333299999997,237.9921949333333 +2015-12-11 05:00:00,0.0,1021.066167,0.0,93.46666667,11.16166667,0.736083333,237.99004753333335 +2015-12-11 06:00:00,0.0,1021.225,0.0,95.29166667,10.75416667,0.206416667,237.98915275000002 +2015-12-11 07:00:00,0.0,1021.49975,2.74475,98.525,9.545,0.192,237.9891527666667 +2015-12-11 08:00:00,0.0,1021.84975,25.285,100.0,8.896666667,0.104833333,237.98843693333333 +2015-12-11 09:00:00,0.0,1022.382667,74.18833333,95.2,10.3575,0.39741666700000006,237.98682636666663 +2015-12-11 10:00:00,0.0,1022.783167,119.85,87.88333333,12.27166667,0.721166667,237.98951068333335 +2015-12-11 11:00:00,0.0,1022.90825,131.2,82.96666667,13.95,0.8645,237.98682636666663 +2015-12-11 12:00:00,0.0,1022.542167,166.4391667,80.22333333,14.34666667,0.791666667,237.98700531666665 +2015-12-11 13:00:00,0.0,1022.266833,212.69166669999998,73.7325,15.66583333,1.284333333,237.9855737 +2015-12-11 14:00:00,0.0,1021.933667,110.13416670000001,73.62916667,15.36333333,0.723,237.98485786666672 +2015-12-11 15:00:00,0.0,1021.625167,27.92416667,77.035,14.46916667,0.5319166670000001,237.98485788333332 +2015-12-11 16:00:00,0.0,1021.300333,5.53825,86.20833333,13.28583333,1.031666667,237.98485791666664 +2015-12-11 17:00:00,0.0,1021.12525,0.0545,91.0,12.155,0.20575,237.98467895 +2015-12-11 18:00:00,0.0,1020.9416669999999,0.0,93.55,11.9775,0.918583333,237.9859316 +2015-12-11 19:00:00,0.0,1020.7585,0.0,92.71666667,10.62833333,1.3571666669999998,237.9862895 +2015-12-11 20:00:00,0.0,1020.167333,0.0,98.48333333,8.996333332999999,1.160333333,237.98790010000002 +2015-12-11 21:00:00,0.0,1020.0415,0.0,100.0,7.11375,0.122666667,237.9866474 +2015-12-11 22:00:00,0.0,1019.816833,0.0,100.0,7.816666667000001,0.131166667,237.99452134999999 +2015-12-11 23:00:00,0.0,1019.633667,0.0,100.0,8.496666667000001,0.10241666699999999,238.00293218333331 +2015-11-13 00:00:00,0.0,1019.242083,0.0,100.0,8.37325,0.316166667,237.74239873333337 +2015-11-13 01:00:00,0.0,1018.958333,0.0,100.0,6.925083333,0.11558333300000001,237.74518768333328 +2015-11-13 02:00:00,0.0,1018.775167,0.0,100.0,5.172166667,0.023666667000000002,237.74518766666665 +2015-11-13 03:00:00,0.0,1018.558667,0.0,100.0,6.221166667,0.08125,237.74363826666664 +2015-11-13 04:00:00,0.0,1018.13375,0.0,100.0,6.955083332999999,0.2625,237.74394813333333 +2015-11-13 05:00:00,0.0,1017.983083,0.0,100.0,6.1485833329999995,0.092833333,237.74487778333332 +2015-11-13 06:00:00,0.0,1018.366417,0.0,100.0,6.355833333,0.081916667,237.74255366666662 +2015-11-13 07:00:00,0.0,1018.416667,0.89725,100.0,5.803999999999999,0.038166667,237.74410308333336 +2015-11-13 08:00:00,0.0,1018.59975,12.84633333,100.0,6.883083332999999,0.065666667,237.74193391666668 +2015-11-13 09:00:00,0.0,1019.024583,18.53916667,90.95833333,7.995166667,0.133,237.74162401666663 +2015-11-13 10:00:00,0.0,1019.349833,78.8825,85.46666667,9.904166667,0.627916667,237.74007461666667 +2015-11-13 11:00:00,0.0,1019.191833,66.55666667,82.5,13.16166667,1.916833333,237.74177894999994 +2015-11-13 12:00:00,0.0,1019.15025,52.14333333,85.69166667,12.77583333,2.203416667,237.74177895 +2015-11-13 13:00:00,0.0,1018.592083,73.40166667,86.80833333,12.635,1.84425,237.74286354999995 +2015-11-13 14:00:00,0.0,1018.083833,68.81583333,86.73333333,12.5225,1.6019166669999998,237.74239871666666 +2015-11-13 15:00:00,0.0,1017.591917,38.73166667,86.84166667,12.98,1.7024166669999998,237.74332836666667 +2015-11-13 16:00:00,0.0,1017.30875,5.566583333,90.7,12.27583333,2.011583333,237.74503274999998 +2015-11-13 17:00:00,3.1901591039999997,1016.858583,0.06625,94.64166667,11.63083333,2.447916667,237.74611733333333 +2015-11-13 18:00:00,0.0,1016.8083330000001,0.0,91.90833333,11.9025,2.118833333,237.74425801666663 +2015-11-13 19:00:00,19.72516013,1017.5160000000001,0.0,89.76666667,11.48166667,1.3645,237.74317343333334 +2015-11-13 20:00:00,8.953715568,1018.390417,0.0,84.54166667,10.44583333,3.0811666669999997,237.74208883333327 +2015-11-13 21:00:00,2.9139798,1018.9333330000001,0.0,89.3,8.376666667,1.782666667,237.74239873333332 +2015-11-13 22:00:00,0.0,1019.399333,0.0,85.4,8.378333332999999,1.821083333,237.74301849999998 +2015-11-13 23:00:00,0.0,1020.058083,0.0,84.23333333,7.851,1.4496666669999998,237.74394815000002 +2015-11-14 00:00:00,0.0,1020.666083,0.0,82.73333333,7.290833332999999,1.399083333,237.74363826666664 +2015-11-14 01:00:00,0.0,1021.465833,0.0,80.035,7.558916667,2.119583333,237.74286355 +2015-11-14 02:00:00,0.0,1022.033167,0.0,79.70833333,7.172333332999999,2.159416667,237.74224378333335 +2015-11-14 03:00:00,0.0,1022.041833,0.0,78.81583333,6.474,1.7305833330000002,237.7434833166666 +2015-11-14 04:00:00,0.0,1021.758417,0.0,84.83333333,6.015333332999999,1.7109166669999998,237.74301851666664 +2015-11-14 05:00:00,0.0,1021.891583,0.0,89.14166667,6.431666667000001,1.835166667,237.74177896666666 +2015-11-14 06:00:00,0.0,1021.77525,0.0,88.56666667,6.7438333329999995,1.88625,237.74208885 +2015-11-14 07:00:00,0.0,1021.683167,1.197333333,87.38333333,6.9445,1.7111666669999999,237.74146908333333 +2015-11-14 08:00:00,0.0,1021.99975,24.86666667,84.95,7.7135,2.3551666669999998,237.74038448333332 +2015-11-14 09:00:00,0.0,1022.333167,65.31666667,82.96666667,8.389166667000001,2.510916667,237.73945485000004 +2015-11-14 10:00:00,0.0,1022.491333,163.30833330000002,78.96916667,9.52,2.492833333,237.7386801166667 +2015-11-14 11:00:00,0.0,1022.57525,153.05,76.23166667,9.806666667,2.7305833330000002,237.7383702333333 +2015-11-14 12:00:00,0.0,1022.12525,78.255,76.18083333,9.689166667,2.4365,237.74053943333334 +2015-11-14 13:00:00,0.0,1021.500667,75.35416667,76.5125,9.775833333,2.181333333,237.73976471666666 +2015-11-14 14:00:00,0.0,1021.07525,65.46833333,78.47166667,9.784166667000001,2.247833333,237.7406943666667 +2015-11-14 15:00:00,0.0,1020.717333,32.69416667,83.30833333,9.66,2.31925,237.73852518333334 +2015-11-14 16:00:00,0.0,1020.200333,4.663,90.825,8.58,1.9884166669999999,237.74177895 +2015-11-14 17:00:00,0.0,1019.641833,0.0305,93.13333333,8.310833333,2.1005,237.74286356666667 +2015-11-14 18:00:00,0.0,1019.325417,0.0,96.05833333,7.916166667000001,1.4956666669999998,237.74348333333333 +2015-11-14 19:00:00,2.631220656,1018.642417,0.0,93.44166667,8.110083333,1.45825,237.7442580333333 +2015-11-14 20:00:00,0.0,1017.800667,0.0,90.48333333,8.376666667,1.5115833330000001,237.74580744999994 +2015-11-14 21:00:00,3.0186283919999997,1016.9175,0.0,89.175,8.524166667000001,1.90625,237.74627226666667 +2015-11-14 22:00:00,0.0,1016.208667,0.0,87.59166667,8.695833333,1.8049166669999999,237.7456525 +2015-11-14 23:00:00,0.0,1015.259333,0.0,94.31666667,8.00225,1.869583333,237.74720191666668 +2015-11-15 00:00:00,2.7976050480000003,1013.959667,0.0,97.78333333,7.371416667,1.6368333330000002,237.74844143333337 +2015-11-15 01:00:00,2.998479192,1012.742583,0.0,97.79166667,7.721583333,1.5813333330000001,237.7506106333333 +2015-11-15 02:00:00,0.0,1012.12525,0.0,96.4,8.51,2.326666667,237.74813156666667 +2015-11-15 03:00:00,3.466309032,1011.225667,0.0,95.30833333,9.259166667,2.8015,237.74968096666666 +2015-11-15 04:00:00,0.0,1010.242667,0.0,93.33333333,9.904166667,3.0410000000000004,237.7507655666667 +2015-11-15 05:00:00,0.0,1009.3839999999999,0.0,95.3,10.02,2.487833333,237.75107546666666 +2015-11-15 06:00:00,0.0,1008.891917,0.0,93.78333333,10.59,2.6235,237.75169521666666 +2015-11-15 07:00:00,0.0,1008.516917,0.178083333,91.775,11.04083333,2.481,237.75231495000003 +2015-11-15 08:00:00,0.0,1008.275167,5.8805,89.075,11.6075,2.912083333,237.75107545 +2015-11-15 09:00:00,0.0,1008.33325,29.95166667,87.71666667,12.13083333,2.82225,237.75277976666666 +2015-11-15 10:00:00,0.0,1008.541417,62.43583333,85.99166667,12.67583333,2.9055,237.75092050000003 +2015-11-15 11:00:00,0.0,1008.367083,122.75,84.15,13.5125,2.773916667,237.74937108333336 +2015-11-15 12:00:00,4.0786212719999995,1007.716833,184.025,80.74333333,14.82833333,3.121833333,237.75138531666667 +2015-11-15 13:00:00,0.0,1007.625583,209.1583333,78.4125,15.68583333,3.6270833330000003,237.75076558333333 +2015-11-15 14:00:00,0.0,1007.341417,152.80833330000002,78.34833333,15.75833333,3.493833333,237.7496809666667 +2015-11-15 15:00:00,0.0,1007.316833,44.69333333,80.54166667,14.83833333,3.5485,237.75200508333333 +2015-11-15 16:00:00,0.0,1007.7995,3.8856666669999997,80.75,14.48,3.1505,237.75154026666667 +2015-11-15 17:00:00,0.0,1008.324417,0.00325,81.24166667,14.36583333,2.999083333,237.75076558333333 +2015-11-15 18:00:00,0.0,1009.257333,0.0,83.125,14.00333333,2.8345833330000003,237.74859640000003 +2015-11-15 19:00:00,0.0,1009.858167,0.0,85.96666667,13.48666667,2.22275,237.74797661666665 +2015-11-15 20:00:00,0.0,1010.124667,0.0,85.28333333,13.38166667,2.002333333,237.74751179999998 +2015-11-15 21:00:00,0.0,1010.5995,0.0,83.55833333,13.24833333,2.402666667,237.7467370833333 +2015-11-15 22:00:00,0.0,1010.958167,0.0,84.18333333,12.84666667,2.8105833330000003,237.74844145 +2015-11-15 23:00:00,0.0,1011.283167,0.0,86.275,12.09333333,1.7318333330000002,237.7462722833333 +2015-11-16 00:00:00,0.0,1011.516667,0.0,89.69166667,11.14083333,0.66,237.74689203333332 +2015-11-16 01:00:00,0.0,1011.7080000000001,0.0,91.59166667,10.27,0.524166667,237.74596238333334 +2015-11-16 02:00:00,0.0,1011.67525,0.0,91.01666667,10.79333333,0.617,237.74704696666663 +2015-11-16 03:00:00,0.0,1011.258583,0.0,90.40833333,8.628333332999999,0.211166667,237.74766675 +2015-11-16 04:00:00,0.0,1011.125417,0.0,88.35,10.75666667,1.215,237.74720193333337 +2015-11-16 05:00:00,0.0,1010.5834169999999,0.0,94.675,9.333333332999999,1.5620833330000001,237.74890624999998 +2015-11-16 06:00:00,0.0,1010.641667,0.0,91.84166667,9.143333333,1.388166667,237.74828653333336 +2015-11-16 07:00:00,0.0,1010.957667,0.5995,91.43333333,9.105,0.852833333,237.74813156666667 +2015-11-16 08:00:00,0.0,1011.200417,16.24083333,90.475,9.886666667,1.075833333,237.74611733333333 +2015-11-16 09:00:00,0.0,1011.341,37.88833333,87.43333333,10.30666667,1.3619166669999998,237.7458074333333 +2015-11-16 10:00:00,0.0,1011.766583,67.73083333,83.13333333,10.52,1.759333333,237.7450327166667 +2015-11-16 11:00:00,0.0,1012.066417,98.40166667,79.35416667,10.85166667,1.883666667,237.74503273333332 +2015-11-16 12:00:00,0.0,1011.933667,112.98333329999998,79.03416667,11.30916667,1.961416667,237.74549754999998 +2015-11-16 13:00:00,0.0,1011.416917,98.14916667,80.3275,11.69916667,2.148666667,237.74704698333335 +2015-11-16 14:00:00,0.0,1011.092,63.655,81.25833333,11.6,1.477333333,237.74518766666665 +2015-11-16 15:00:00,0.0,1011.083167,33.74091667,83.1,11.44,1.459416667,237.74580746666666 +2015-11-16 16:00:00,0.0,1010.916917,1.9498333330000002,84.825,11.20333333,1.58775,237.74611731666667 +2015-11-16 17:00:00,0.0,1010.666917,0.0,89.20833333,10.90916667,1.323166667,237.74720193333334 +2015-11-16 18:00:00,0.0,1010.60825,0.0,96.3,9.9725,1.415583333,237.74797663333337 +2015-11-16 19:00:00,0.0,1010.641667,0.0,92.23333333,10.04083333,1.011416667,237.74689203333332 +2015-11-16 20:00:00,0.0,1010.658167,0.0,90.81666667,10.79416667,1.066666667,237.74549756666667 +2015-11-16 21:00:00,0.0,1010.467083,0.0,91.05833333,11.28583333,1.76375,237.7467371 +2015-11-16 22:00:00,0.0,1010.5165,0.0,94.75833333,11.21,1.427583333,237.74549754999998 +2015-11-16 23:00:00,5.782512336,1010.35875,0.0,96.03333333,11.255,1.63225,237.74596236666665 +2015-11-17 00:00:00,5.942552807999999,1009.767333,0.0,97.475,11.03166667,1.807166667,237.74797663333334 +2015-11-17 01:00:00,2.856041064,1008.942167,0.0,97.31666667,10.945,1.85325,237.74999085000002 +2015-11-17 02:00:00,3.021651336,1008.10075,0.0,96.0,11.0775,2.090833333,237.75061063333337 +2015-11-17 03:00:00,0.0,1008.033333,0.0,95.80833333,11.42916667,1.9938333330000002,237.74952603333335 +2015-11-17 04:00:00,9.059308872,1007.575417,0.0,96.54166667,11.46916667,1.85225,237.75138531666667 +2015-11-17 05:00:00,65.07720214,1006.884083,0.0,98.18333333,11.21,1.57375,237.75618848333332 +2015-11-17 06:00:00,3.333035184,1006.050417,0.0,96.10833333,11.5125,2.2030000000000003,237.76269604999996 +2015-11-17 07:00:00,0.0,1005.70025,0.358833333,94.66666667,11.92416667,1.936916667,237.76269604999996 +2015-11-17 08:00:00,24.89030412,1005.8415,3.150583333,96.69166667,11.70083333,1.2905,237.76207626666667 +2015-11-17 09:00:00,3.02511312,1005.866583,41.56958333,97.3,12.22666667,1.915,237.7636257 +2015-11-17 10:00:00,9.556373472,1005.84175,47.99666667,97.775,12.59083333,2.265666667,237.76594980000002 +2015-11-17 11:00:00,11.80379364,1006.1080000000001,52.15166667,99.65,12.62916667,1.9855,237.76718934999997 +2015-11-17 12:00:00,0.0,1006.241667,68.42916667,99.34166667,13.24166667,1.619833333,237.76982335 +2015-11-17 13:00:00,9.190923648,1006.3334169999999,54.4325,99.86666667,13.2875,1.9803333330000001,237.77245734999997 +2015-11-17 14:00:00,2.713525536,1006.308,59.5525,96.55,13.76666667,1.218333333,237.77524628333333 +2015-11-17 15:00:00,0.0,1006.308583,37.0675,94.73333333,14.05666667,1.5421666669999998,237.77788026666667 +2015-11-17 16:00:00,0.0,1006.033417,6.777666667,90.44166667,14.1,1.9595,237.78066921666667 +2015-11-17 17:00:00,0.0,1005.9335,0.022083332999999997,90.29166667,14.02916667,2.027583333,237.78175381666668 +2015-11-17 18:00:00,5.509484976,1005.966667,0.0,94.64166667,13.755,1.396833333,237.77989450000004 +2015-11-17 19:00:00,2.904752232,1004.892833,0.0,94.2,13.47833333,1.7603333330000002,237.78206368333335 +2015-11-17 20:00:00,9.53903688,1004.242167,0.0,93.83333333,14.19166667,2.256333333,237.78330321666667 +2015-11-17 21:00:00,20.66043394,1003.642167,0.0,97.225,13.86,2.90825,237.7846977 +2015-11-17 22:00:00,3.581528664,1003.291833,0.0,95.79166667,14.41416667,3.261666667,237.78624713333332 +2015-11-17 23:00:00,10.11632801,1002.466917,0.0,94.63333333,14.50416667,2.949833333,237.78888111666666 +2015-11-18 00:00:00,42.12780077,1002.974583,0.0,87.975,15.22083333,2.894916667,237.79074043333335 +2015-11-18 01:00:00,0.0,1003.08375,0.0,75.76666667,15.38583333,4.183833333,237.79352936666666 +2015-11-18 02:00:00,0.0,1003.182583,0.0,72.89,15.35166667,4.03875,237.79337445000002 +2015-11-18 03:00:00,0.0,1004.757,0.0,70.63583333,15.14833333,3.57075,237.79182501666665 +2015-11-18 04:00:00,0.0,1005.615917,0.0,68.53833333,14.47166667,3.806666667,237.7947689166667 +2015-11-18 05:00:00,0.0,1006.80725,0.0,71.265,13.78666667,3.486333333,237.79259971666667 +2015-11-18 06:00:00,0.0,1007.841083,0.0,72.18666667,13.45416667,3.548833333,237.7925997166667 +2015-11-18 07:00:00,0.0,1008.782417,0.884,73.08666667,13.25416667,3.2898333330000002,237.79414915000004 +2015-11-18 08:00:00,0.0,1010.1655,19.532,76.15833333,12.99833333,3.258416667,237.79043054999997 +2015-11-18 09:00:00,0.0,1011.398917,44.34083333,75.42416667,12.87416667,2.718916667,237.79043053333336 +2015-11-18 10:00:00,0.0,1012.39075,72.56166667,74.145,12.96666667,2.3338333330000003,237.7890360833333 +2015-11-18 11:00:00,0.0,1013.257917,79.82083333,74.91333333,13.45,1.673416667,237.78671193333332 +2015-11-18 12:00:00,0.0,1013.350333,99.37666667,71.1875,13.7725,2.6150833330000003,237.7873317 +2015-11-18 13:00:00,0.0,1013.058583,68.69833333,71.2,13.49083333,2.8153333330000003,237.78872618333332 +2015-11-18 14:00:00,0.0,1012.866917,56.01,69.68666667,13.26,3.0185,237.78795146666667 +2015-11-18 15:00:00,0.0,1012.45025,67.8125,70.8125,13.01,2.7030000000000003,237.78888111666666 +2015-11-18 16:00:00,0.0,1012.0005,8.91225,74.77583333,12.20916667,1.986666667,237.78950089999998 +2015-11-18 17:00:00,0.0,1011.741667,0.06383333299999999,75.675,11.67583333,1.9384166669999998,237.7887262 +2015-11-18 18:00:00,0.0,1011.5335,0.0,75.27916667,11.39,1.85625,237.78934594999998 +2015-11-18 19:00:00,0.0,1011.433667,0.0,76.335,11.265,2.2095833330000003,237.78965583333334 +2015-11-18 20:00:00,0.0,1010.850667,0.0,78.68916667,11.31083333,2.4635833330000003,237.79197996666667 +2015-11-18 21:00:00,0.0,1010.4,0.0,77.77333333,11.47333333,2.515083333,237.78950089999998 +2015-11-18 22:00:00,0.0,1010.125583,0.0,77.32916667,12.10916667,2.474416667,237.789191 +2015-11-18 23:00:00,0.0,1009.583583,0.0,76.85916667,12.68166667,2.2560833330000003,237.7879515 +2015-11-19 00:00:00,0.0,1009.067,0.0,77.42916667,13.58166667,2.941916667,237.78810640000003 +2015-11-19 01:00:00,0.0,1008.291917,0.0,79.53083333,13.93666667,3.483916667,237.79167008333334 +2015-11-19 02:00:00,6.431338127999999,1008.35875,0.0,90.05,12.73666667,2.446416667,237.78981078333334 +2015-11-19 03:00:00,0.0,1008.0835,0.0,80.98833333,13.96583333,3.302166667,237.7895009 +2015-11-19 04:00:00,0.0,1008.282917,0.0,82.35833333,13.77,2.337166667,237.78779654999997 +2015-11-19 05:00:00,0.0,1008.658083,0.0,84.81666667,13.43916667,3.136916667,237.78841628333336 +2015-11-19 06:00:00,0.0,1008.75,0.0,77.845,13.49166667,3.1840833330000002,237.78903604999996 +2015-11-19 07:00:00,6.304905864,1009.399333,0.38141666700000004,86.175,12.43083333,2.87525,237.78671193333335 +2015-11-19 08:00:00,3.271945248,1010.140917,9.18025,91.56666667,11.73833333,2.6445,237.78671195 +2015-11-19 09:00:00,3.098640648,1010.383417,27.55,87.225,11.76583333,2.312583333,237.78609219999998 +2015-11-19 10:00:00,0.0,1010.757833,129.9325,76.17166667,12.98666667,3.954583333,237.78485265000003 +2015-11-19 11:00:00,0.0,1010.8166669999999,165.7166667,70.21166667,13.82583333,3.83225,237.78671195000004 +2015-11-19 12:00:00,0.0,1010.666917,107.245,77.99833333,13.66,3.75925,237.7860921666667 +2015-11-19 13:00:00,3.468491784,1010.242083,55.225,86.75,12.145,3.06,237.78686688333335 +2015-11-19 14:00:00,0.0,1010.0834169999999,60.94,86.11666667,12.51666667,2.8930000000000002,237.78702181666668 +2015-11-19 15:00:00,51.4620107,1009.750167,29.63658333,93.40833333,11.0025,2.468666667,237.78655698333333 +2015-11-19 16:00:00,150.1220563,1009.1425830000001,0.68375,99.26666667,9.780833333,1.59225,237.80360054999997 +2015-11-19 17:00:00,31.02879996,1007.875917,0.0,99.525,9.495833333,0.750916667,237.83908211666665 +2015-11-19 18:00:00,36.64051099,1006.551417,0.0,99.61666667,9.543333333,1.6088333330000002,237.85813991666666 +2015-11-19 19:00:00,29.96004593,1005.451,0.0,99.925,9.251666667,1.3834166669999999,237.8754933 +2015-11-19 20:00:00,45.22603795,1004.0425,0.0,100.0,9.171666667,0.56825,237.89176218333333 +2015-11-19 21:00:00,71.54273815,1004.36575,0.0,100.0,9.110833332999999,0.4745,237.9097353666667 +2015-11-19 22:00:00,0.0,1005.340833,0.0,99.08333333,9.0375,2.0499166669999997,237.93251173333337 +2015-11-19 23:00:00,0.0,1005.8580000000001,0.0,97.76666667,8.593333333,1.182166667,237.94769596666666 +2015-11-20 00:00:00,0.0,1006.050083,0.0,98.38333333,8.645,1.301583333,237.95420353333336 +2015-11-20 01:00:00,0.0,1006.266333,0.0,98.30833333,8.540833333,1.6455,237.95714743333335 +2015-11-20 02:00:00,0.0,1006.20075,0.0,99.775,8.3575,1.86375,237.95900671666664 +2015-11-20 03:00:00,0.0,1005.991417,0.0,99.525,8.615,1.9764166669999998,237.95652765 +2015-11-20 04:00:00,0.0,1005.783417,0.0,99.2,8.874166667,1.284,237.9551331833333 +2015-11-20 05:00:00,0.0,1005.475,0.0,97.55833333,8.885,1.055416667,237.95296400000004 +2015-11-20 06:00:00,0.0,1005.117333,0.0,94.625,8.805833332999999,1.377583333,237.95280905 +2015-11-20 07:00:00,0.0,1004.300833,0.174166667,94.79166667,8.745,2.5545,237.9532738833333 +2015-11-20 08:00:00,0.0,1004.083583,8.32875,95.6,8.710833333,2.116,237.95094976666667 +2015-11-20 09:00:00,0.0,1003.558417,30.50916667,92.925,8.8725,1.841166667,237.94692128333335 +2015-11-20 10:00:00,0.0,1003.367333,41.18,92.3,8.715,1.839,237.94521693333334 +2015-11-20 11:00:00,0.0,1002.192583,53.37666667,93.325,8.6375,1.9484166669999998,237.9442872666667 +2015-11-20 12:00:00,8.527191864,1000.959583,28.80083333,97.41666667,8.163583333,1.7096666669999998,237.94490705 +2015-11-20 13:00:00,0.0,999.39275,43.51916667,97.66666667,7.950083332999999,0.9355,237.9461465666667 +2015-11-20 14:00:00,18.55015066,998.2923332999999,15.19916667,97.68333333,7.42575,0.94825,237.94754103333335 +2015-11-20 15:00:00,43.80615115,998.0,6.82375,97.48333333,6.547333332999999,1.259583333,237.95590789999997 +2015-11-20 16:00:00,13.64092596,997.4928332999999,1.230666667,96.75833333,5.77925,1.0295,237.96520435 +2015-11-20 17:00:00,0.0,996.3753332999999,0.0,96.26666667,5.311416667,1.249416667,237.97806448333336 +2015-11-20 18:00:00,0.0,996.3083332999998,0.0,97.225,5.256333333,1.411083333,237.98643131666665 +2015-11-20 19:00:00,0.0,996.1085,0.0,97.93333333,5.292333333,0.7855833329999999,237.98968506666662 +2015-11-20 20:00:00,0.0,995.9919167000002,0.0,97.10833333,4.974916667,0.623083333,237.99402345 +2015-11-20 21:00:00,0.0,995.8585832999999,0.0,98.00833333,4.99075,1.094166667,237.99371356666668 +2015-11-20 22:00:00,0.0,995.53325,0.0,97.325,4.824,1.48325,237.9927839166667 +2015-11-20 23:00:00,0.0,995.2755,0.0,96.1,4.4094166669999995,1.41525,237.99169931666665 +2015-11-21 00:00:00,0.0,994.9500832999998,0.0,96.24166667,3.7174166669999997,1.10575,237.99076966666667 +2015-11-21 01:00:00,0.0,994.6420832999999,0.0,96.14166667,3.811583333,1.63375,237.98922025 +2015-11-21 02:00:00,0.0,994.0673332999999,0.0,95.725,3.4610000000000003,1.613583333,237.98782579999997 +2015-11-21 03:00:00,0.0,993.1089999999999,0.0,95.025,3.437,1.859833333,237.98767083333334 +2015-11-21 04:00:00,0.0,992.2921667000002,0.0,94.95833333,3.323083333,2.0259166669999997,237.9856566166667 +2015-11-21 05:00:00,2.76922812,991.9086667000001,0.0,93.65833333,3.23,1.415583333,237.98209296666667 +2015-11-21 06:00:00,0.0,991.9830000000001,0.0,93.18333333,3.61225,2.2833333330000003,237.9796139166667 +2015-11-21 07:00:00,0.0,992.067,1.0585,94.35833333,3.31425,2.4845833330000002,237.9785293333333 +2015-11-21 08:00:00,0.0,992.2495,17.4795,94.73333333,3.0965,1.9180000000000001,237.97620518333335 +2015-11-21 09:00:00,0.0,992.15025,43.45833333,93.35,3.642416667,1.4825833330000002,237.97341625 +2015-11-21 10:00:00,0.0,991.9918332999998,80.20916667,92.05833333,4.401833333,0.898166667,237.97062731666668 +2015-11-21 11:00:00,0.0,991.6419999999999,110.125,88.95,5.010166667,0.790333333,237.96845811666665 +2015-11-21 12:00:00,0.0,991.0923332999998,163.225,84.05,6.075916667,0.7314166670000001,237.96690869999998 +2015-11-21 13:00:00,0.0,990.6916667000002,96.08416667,84.9,5.619833333,1.4451666669999998,237.96566916666666 +2015-11-21 14:00:00,0.0,990.5501667000001,34.6375,83.50833333,5.5149166670000005,0.6285,237.96582413333337 +2015-11-21 15:00:00,0.0,990.8661667000001,10.14941667,91.6,5.27,0.644333333,237.9650494 +2015-11-21 16:00:00,24.54701186,991.5244167000001,1.490833333,97.09166667,3.8563333330000003,0.912166667,237.9627252666667 +2015-11-21 17:00:00,2.573332584,992.0164167000001,0.0,99.30833333,3.037833333,0.652083333,237.9607110666667 +2015-11-21 18:00:00,0.0,992.24975,0.0,99.84166667,2.5505,0.6095,237.95869685 +2015-11-21 19:00:00,0.0,992.7995,0.0,100.0,1.842416667,0.44675,237.9588517666667 +2015-11-21 20:00:00,0.0,993.1664167000001,0.0,100.0,0.93625,0.32666666699999997,237.95745731666668 +2015-11-21 21:00:00,2.472045408,993.6078332999999,0.0,100.0,0.552416667,0.853,237.95575293333332 +2015-11-21 22:00:00,0.0,994.1995832999999,0.0,99.925,0.33625,0.63425,237.95342883333333 +2015-11-21 23:00:00,0.0,994.6665,0.0,97.675,0.565,0.6625,237.95218928333335 +2015-11-22 00:00:00,0.0,995.1411667000001,0.0,97.575,1.133583333,0.542083333,237.95048495 +2015-11-22 01:00:00,0.0,995.4578332999998,0.0,98.475,1.4416666669999998,0.85775,237.94831575 +2015-11-22 02:00:00,2.527469328,995.9829167000001,0.0,99.88333333,1.5150833330000002,0.89975,237.94676633333336 +2015-11-22 03:00:00,0.0,996.2915832999998,0.0,100.0,1.162,0.678416667,237.94785091666668 +2015-11-22 04:00:00,0.0,996.66625,0.0,99.90833333,0.49066666700000006,0.7334166670000001,237.94738610000002 +2015-11-22 05:00:00,0.0,997.2161667000001,0.0,99.91666667,0.32616666699999997,0.6476666670000001,237.94552681666667 +2015-11-22 06:00:00,0.0,997.9493332999999,0.0,97.64166667,0.902833333,0.931916667,237.9411884166667 +2015-11-22 07:00:00,0.0,998.5576667000001,0.26258333300000003,93.69166667,1.39225,0.79175,237.93839949999997 +2015-11-22 08:00:00,0.0,999.5574167000001,9.523083332999999,91.45,1.7876666669999999,0.6709999999999999,237.93654023333332 +2015-11-22 09:00:00,0.0,1000.72425,30.70333333,87.975,2.220333333,1.4524166669999998,237.93530069999997 +2015-11-22 10:00:00,0.0,1000.9,142.8108333,84.51666667,3.4708333330000003,1.7961666669999998,237.9335963333333 +2015-11-22 11:00:00,0.0,1001.491417,132.38333329999998,83.45,4.345416667,1.960833333,237.93189198333334 +2015-11-22 12:00:00,0.0,1001.816,165.3,80.98333333,4.44,1.7538333330000002,237.9311172833333 +2015-11-22 13:00:00,0.0,1002.166667,145.2666667,78.02916667,4.442083333,2.604083333,237.92879315000002 +2015-11-22 14:00:00,0.0,1002.166667,92.82666667,81.53166667,4.13325,1.81575,237.92879314999996 +2015-11-22 15:00:00,0.0,1002.449917,36.09666667,84.25,3.351416667,1.7498333330000002,237.92770853333332 +2015-11-22 16:00:00,0.0,1002.998833,4.961666667,88.11666667,3.03025,1.96,237.92584926666663 +2015-11-22 17:00:00,0.0,1003.625,0.0,99.45833333,0.79025,1.305833333,237.92476468333334 +2015-11-22 18:00:00,0.0,1004.016083,0.0,97.64166667,0.650333333,0.90025,237.9242998166667 +2015-11-22 19:00:00,0.0,1004.990917,0.0,97.525,0.26208333300000003,0.5920000000000001,237.92135595000002 +2015-11-22 20:00:00,0.0,1005.907667,0.0,98.90833333,0.815916667,1.016333333,237.91872193333336 +2015-11-22 21:00:00,0.0,1005.949917,0.0,98.25,0.850916667,1.4976666669999998,237.9173274666667 +2015-11-22 22:00:00,0.0,1006.36625,0.0,97.64166667,0.982666667,1.891583333,237.915933 +2015-11-22 23:00:00,0.0,1006.824583,0.0,95.1,1.115333333,1.7634166669999998,237.91562313333336 +2015-11-23 00:00:00,0.0,1007.79925,0.0,95.18333333,1.3019999999999998,1.9124166669999998,237.91314409999998 +2015-11-23 01:00:00,0.0,1008.249333,0.0,96.95,1.239416667,1.5019999999999998,237.91066501666668 +2015-11-23 02:00:00,2.698042656,1009.257583,0.0,97.425,1.362333333,1.28475,237.90911563333336 +2015-11-23 03:00:00,2.583300504,1010.066417,0.0,97.6,1.45725,1.34,237.90710138333336 +2015-11-23 04:00:00,2.61642984,1010.64925,0.0,98.15,1.456833333,1.192583333,237.9057069 +2015-11-23 05:00:00,0.0,1011.441,0.0,97.775,1.57,0.517416667,237.9043124166667 +2015-11-23 06:00:00,0.0,1012.4740830000001,0.0,97.73333333,1.757916667,0.82375,237.90214321666667 +2015-11-23 07:00:00,2.5030332719999997,1013.316167,0.44741666700000005,98.13333333,1.974666667,0.861583333,237.9010586333333 +2015-11-23 08:00:00,0.0,1014.49025,12.31583333,97.86666667,2.128583333,0.661833333,237.89764991666667 +2015-11-23 09:00:00,0.0,1015.8574169999999,33.74083333,97.20833333,2.533083333,0.82475,237.8964104 +2015-11-23 10:00:00,0.0,1016.791,52.17083333,94.58333333,3.1783333330000003,0.64225,237.89315663333335 +2015-11-23 11:00:00,0.0,1017.457833,69.40666667,94.175,3.6164166669999998,1.048666667,237.89269180000005 +2015-11-23 12:00:00,0.0,1017.675,61.17333333,93.125,3.8365,1.30525,237.8923819 +2015-11-23 13:00:00,0.0,1017.849667,133.28333329999998,84.18333333,4.946000000000001,1.457333333,237.89067758333331 +2015-11-23 14:00:00,0.0,1018.133167,164.25,80.35166667,5.021083333,1.227083333,237.88943804999997 +2015-11-23 15:00:00,0.0,1018.533167,92.3525,82.43,4.634666667,1.25125,237.88897323333333 +2015-11-23 16:00:00,0.0,1018.774583,5.833833332999999,91.75,3.10175,0.6970833329999999,237.89021276666665 +2015-11-23 17:00:00,0.0,1019.2330000000001,0.028666667000000003,97.55833333,0.718166667,0.235166667,237.89067758333337 +2015-11-23 18:00:00,0.0,1019.699667,0.0,99.88333333,0.09983333300000001,0.108166667,237.88990288333335 +2015-11-23 19:00:00,0.0,1020.066583,0.0,100.0,-0.039583333,0.0375,237.8886633666667 +2015-11-23 20:00:00,0.0,1020.0,0.0,100.0,-0.42508333299999995,0.044416667,237.88819853333334 +2015-11-23 21:00:00,0.0,1019.825,0.0,100.0,-1.4771666669999999,0.059666667,237.8892831166667 +2015-11-23 22:00:00,0.0,1019.958167,0.0,100.0,-2.349583333,0.035833332999999995,237.8891282 +2015-11-23 23:00:00,0.0,1020.083333,0.0,100.0,-2.594,0.108583333,237.8877337166667 +2015-11-24 00:00:00,0.0,1019.966917,0.0,100.0,-2.952,0.068083333,237.88664913333332 +2015-11-24 01:00:00,0.0,1019.592,0.0,100.0,-2.65,0.10516666699999999,237.88556451666668 +2015-11-24 02:00:00,0.0,1019.4416669999999,0.0,100.0,-2.4635833330000003,0.129083333,237.88401513333335 +2015-11-24 03:00:00,0.0,1019.208667,0.0,100.0,-2.69175,0.053833333,237.88417003333336 +2015-11-24 04:00:00,0.0,1018.65875,0.0,100.0,-3.053833333,0.08858333300000001,237.88401513333335 +2015-11-24 05:00:00,0.0,1018.267083,0.0,100.0,-3.183333333,0.032166667,237.88386016666672 +2015-11-24 06:00:00,0.0,1018.0248330000001,0.0,100.0,-3.5165833330000003,0.21533333300000002,237.8847898 +2015-11-24 07:00:00,0.0,1017.833833,0.783416667,100.0,-3.910916667,0.025666667,237.8843249833333 +2015-11-24 08:00:00,0.0,1017.5750830000001,19.58983333,100.0,-3.128083333,0.062583333,237.88293051666665 +2015-11-24 09:00:00,0.0,1017.541833,60.95916667,100.0,-1.973583333,0.0,237.87905694999998 +2015-11-24 10:00:00,0.0,1017.291833,95.7375,100.0,0.02775,0.191583333,237.8776625 +2015-11-24 11:00:00,0.0,1016.52575,107.44166670000001,97.26666667,1.5794166669999998,1.88425,237.87859216666664 +2015-11-24 12:00:00,2.885078016,1015.567583,111.20833329999999,86.175,1.9226666669999999,2.1221666669999997,237.87890205 +2015-11-24 13:00:00,0.0,1014.600917,112.30833329999999,86.35833333,2.497,1.70075,237.87828228333333 +2015-11-24 14:00:00,0.0,1013.434083,57.6725,86.21666667,2.58075,1.363083333,237.87905696666664 +2015-11-24 15:00:00,0.0,1012.467583,23.49583333,87.13333333,2.411666667,1.4943333330000002,237.87998661666666 +2015-11-24 16:00:00,0.0,1011.500667,2.59975,87.65,2.187833333,1.6351666669999998,237.8799866333333 +2015-11-24 17:00:00,0.0,1010.809,0.0,88.48333333,2.0306666669999998,1.6019999999999999,237.87983168333335 +2015-11-24 18:00:00,0.0,1010.05075,0.0,92.68333333,1.531833333,1.674916667,237.88076133333334 +2015-11-24 19:00:00,0.0,1009.159083,0.0,96.93333333,0.882916667,1.8095833330000002,237.88091630000005 +2015-11-24 20:00:00,0.0,1008.142333,0.0,97.71666667,0.80375,1.6755,237.88153605000002 +2015-11-24 21:00:00,0.0,1007.325667,0.0,99.83333333,0.5155,0.840916667,237.8812261666667 +2015-11-24 22:00:00,0.0,1006.45075,0.0,100.0,0.45533333299999995,0.751166667,237.88184591666672 +2015-11-24 23:00:00,0.0,1005.733917,0.0,99.55833333,0.44783333299999994,0.391583333,237.88153605000002 +2015-11-25 00:00:00,0.0,1005.14225,0.0,99.90833333,0.41325,0.38308333299999997,237.8807613166667 +2015-11-25 01:00:00,0.0,1004.284,0.0,99.13333333,0.428,0.8370833329999999,237.88169098333336 +2015-11-25 02:00:00,0.0,1003.691917,0.0,97.95,0.44683333299999994,0.758083333,237.88169098333333 +2015-11-25 03:00:00,0.0,1003.167167,0.0,97.35833333,0.4695,0.523833333,237.88107121666667 +2015-11-25 04:00:00,0.0,1002.658667,0.0,97.43333333,0.555583333,0.689333333,237.88200088333335 +2015-11-25 05:00:00,0.0,1002.483583,0.0,98.45833333,0.568916667,0.10066666699999999,237.88091626666667 +2015-11-25 06:00:00,0.0,1002.083583,0.0,99.55,0.682583333,0.436333333,237.88107120000004 +2015-11-25 07:00:00,0.0,1001.958167,0.11616666699999999,99.89166667,0.7719166670000001,0.558916667,237.87967673333333 +2015-11-25 08:00:00,2.412936072,1002.041833,4.517666667,98.84166667,0.8028333329999999,0.229916667,237.87998661666666 +2015-11-25 09:00:00,7.411615896,1002.19975,15.21583333,98.51666667,0.9750833329999999,0.250833333,237.87843721666664 +2015-11-25 10:00:00,17.1513918,1002.24175,38.53333333,98.76666667,1.3076666670000001,0.40925,237.87735263333332 +2015-11-25 11:00:00,17.50966363,1001.9005,105.77,97.80833333,1.9718333330000002,0.487833333,237.87750755 +2015-11-25 12:00:00,8.026595184,1001.500417,72.80666667,97.325,2.42225,0.937,237.87781743333332 +2015-11-25 13:00:00,2.559383112,1000.9751669999999,79.41833333,96.63333333,3.207083333,0.852,237.87983169999998 +2015-11-25 14:00:00,0.0,1000.783583,37.5675,95.81666667,3.7984166669999997,0.726916667,237.87859215 +2015-11-25 15:00:00,0.0,1000.625,9.58475,97.60833333,3.42875,0.6375833329999999,237.87983170000004 +2015-11-25 16:00:00,7.4904684239999995,1000.516667,3.230833333,100.0,3.479333333,0.550166667,237.88076134999997 +2015-11-25 17:00:00,19.19487622,1000.824583,0.0,100.0,3.430333333,0.033666667000000004,237.88045146666664 +2015-11-25 18:00:00,0.0,1001.124917,0.0,100.0,3.73525,0.277583333,237.8823107666667 +2015-11-25 19:00:00,2.45280444,1001.641083,0.0,99.99166667,3.760583333,0.592833333,237.8823107666667 +2015-11-25 20:00:00,0.0,1002.116333,0.0,100.0,3.561083333,0.7144166670000001,237.88308546666667 +2015-11-25 21:00:00,0.0,1002.533083,0.0,100.0,3.2351666669999997,0.659083333,237.88277560000003 +2015-11-25 22:00:00,0.0,1002.833167,0.0,100.0,3.19925,0.251416667,237.8840151166667 +2015-11-25 23:00:00,0.0,1003.332833,0.0,100.0,3.104916667,0.486416667,237.88355030000002 +2015-11-26 00:00:00,0.0,1003.483083,0.0,100.0,2.7471666669999997,0.600666667,237.88525463333335 +2015-11-26 01:00:00,0.0,1004.03275,0.0,100.0,2.3805,0.492666667,237.8833953666667 +2015-11-26 02:00:00,0.0,1004.7245,0.0,99.93333333,3.200583333,0.653666667,237.88370523333336 +2015-11-26 03:00:00,0.0,1005.158,0.0,99.54166667,3.429083333,0.43708333299999996,237.88308546666667 +2015-11-26 04:00:00,0.0,1005.541333,0.0,99.1,3.4805,0.392,237.88386016666664 +2015-11-26 05:00:00,0.0,1006.074667,0.0,99.65,3.23825,0.545166667,237.88525463333335 +2015-11-26 06:00:00,0.0,1006.749083,0.0,100.0,3.433166667,0.654166667,237.88525464999998 +2015-11-26 07:00:00,0.0,1007.599333,0.163,100.0,3.131916667,0.580666667,237.8861843 +2015-11-26 08:00:00,0.0,1008.7239999999999,4.96975,99.825,3.816083333,0.76975,237.88339533333337 +2015-11-26 09:00:00,0.0,1009.849167,29.69416667,96.96666667,4.381166667,0.8885,237.88339533333337 +2015-11-26 10:00:00,0.0,1010.632833,93.28,94.675,5.301416667,1.756833333,237.88153603333333 +2015-11-26 11:00:00,0.0,1011.432667,81.98416667,93.13333333,5.5025,2.10375,237.88169098333336 +2015-11-26 12:00:00,0.0,1011.874667,112.84666670000001,89.08333333,6.047000000000001,2.044083333,237.88076133333337 +2015-11-26 13:00:00,2.652695784,1012.225,126.16916670000002,81.55833333,6.899083332999999,1.604916667,237.8802965 +2015-11-26 14:00:00,0.0,1012.549333,33.54916667,85.63333333,6.459416667,1.816416667,237.88200086666666 +2015-11-26 15:00:00,0.0,1013.041417,45.90416667,84.28333333,5.5885,1.107416667,237.88215580000005 +2015-11-26 16:00:00,0.0,1013.815833,6.125166667,93.59166667,4.91575,0.556083333,237.88231076666668 +2015-11-26 17:00:00,0.0,1014.57425,0.012666667,98.86666667,2.9090833330000003,0.18925,237.88200086666666 +2015-11-26 18:00:00,0.0,1015.341167,0.0,100.0,2.052083333,0.22108333300000002,237.88184593333338 +2015-11-26 19:00:00,0.0,1016.132667,0.0,100.0,2.72025,0.14300000000000002,237.87998661666666 +2015-11-26 20:00:00,0.0,1016.632833,0.0,100.0,3.52575,0.29533333300000003,237.8795217833333 +2015-11-26 21:00:00,0.0,1017.041917,0.0,99.41666667,3.700416667,0.59625,237.8795217833333 +2015-11-26 22:00:00,0.0,1016.741667,0.0,100.0,2.0579166669999998,0.317416667,237.88215581666668 +2015-11-26 23:00:00,0.0,1016.516833,0.0,100.0,0.180833333,0.169416667,237.8824657 +2015-11-27 00:00:00,0.0,1016.683167,0.0,100.0,-0.99675,0.11541666699999999,237.88370525000002 +2015-11-27 01:00:00,0.0,1016.6833330000001,0.0,100.0,-1.266,0.1335,237.8833953666667 +2015-11-27 02:00:00,0.0,1016.874917,0.0,100.0,-0.08608333300000001,0.272083333,237.88169100000002 +2015-11-27 03:00:00,0.0,1016.8501669999999,0.0,100.0,0.7303333329999999,0.5508333329999999,237.88014156666668 +2015-11-27 04:00:00,0.0,1016.467,0.0,100.0,0.617416667,0.426333333,237.87998665 +2015-11-27 05:00:00,0.0,1016.233583,0.0,100.0,0.39183333299999995,0.870916667,237.87983168333332 +2015-11-27 06:00:00,0.0,1015.966917,0.0,100.0,0.045,0.971333333,237.8820008666667 +2015-11-27 07:00:00,0.0,1015.84175,0.18791666699999998,100.0,-0.224083333,0.8470833329999999,237.88231075000002 +2015-11-27 08:00:00,0.0,1015.6665830000001,7.966333333,100.0,-0.09699999999999999,0.602166667,237.88200086666666 +2015-11-27 09:00:00,0.0,1015.508667,30.32083333,100.0,-0.44508333299999997,0.77225,237.88091628333336 +2015-11-27 10:00:00,0.0,1015.283333,53.0025,100.0,-0.318583333,0.39233333299999995,237.88169096666664 +2015-11-27 11:00:00,0.0,1015.00875,71.20916667,100.0,0.11575,0.307,237.88014155 +2015-11-27 12:00:00,0.0,1014.442333,71.02416667,100.0,0.47375,0.278166667,237.88014155 +2015-11-27 13:00:00,0.0,1013.425667,57.88083333,100.0,0.6875,0.5529999999999999,237.87998661666666 +2015-11-27 14:00:00,0.0,1012.7005,38.035,100.0,1.0344166670000001,0.883083333,237.88045145 +2015-11-27 15:00:00,0.0,1012.050667,23.475,100.0,1.342083333,1.181833333,237.8793668666667 +2015-11-27 16:00:00,0.0,1011.600417,3.4813333330000003,100.0,1.423583333,1.5350833330000002,237.88076133333334 +2015-11-27 17:00:00,0.0,1011.116917,0.008416667,100.0,0.885416667,1.504083333,237.88184591666666 +2015-11-27 18:00:00,0.0,1010.642167,0.0,100.0,0.60075,1.4705,237.88417003333333 +2015-11-27 19:00:00,0.0,1010.500083,0.0,100.0,0.763333333,0.931333333,237.88107121666667 +2015-11-27 20:00:00,0.0,1010.075667,0.0,100.0,0.78225,0.7865833329999999,237.88045145 +2015-11-27 21:00:00,0.0,1009.4005,0.0,100.0,0.913083333,0.37975,237.88184593333335 +2015-11-27 22:00:00,0.0,1008.55875,0.0,100.0,1.087833333,1.099666667,237.88277556666665 +2015-11-27 23:00:00,0.0,1007.875667,0.0,100.0,0.313583333,1.887666667,237.88447994999999 +2015-11-28 00:00:00,0.0,1007.30075,0.0,100.0,-0.38391666700000004,1.064166667,237.88463488333332 +2015-11-28 01:00:00,0.0,1006.325667,0.0,100.0,-0.172166667,0.52775,237.88556451666668 +2015-11-28 02:00:00,0.0,1005.783833,0.0,100.0,0.24933333300000002,0.777666667,237.8832404 +2015-11-28 03:00:00,0.0,1004.77575,0.0,100.0,0.41016666700000004,1.78525,237.88324039999998 +2015-11-28 04:00:00,0.0,1003.96725,0.0,100.0,0.367833333,2.1005,237.88370523333336 +2015-11-28 05:00:00,0.0,1003.650083,0.0,100.0,0.6000833329999999,1.42775,237.88339535 +2015-11-28 06:00:00,0.0,1003.566833,0.0,100.0,0.679916667,0.829666667,237.88293053333334 +2015-11-28 07:00:00,4.85963136,1003.857667,0.020166667,99.99166667,0.9824166670000001,0.303833333,237.88060638333332 +2015-11-28 08:00:00,2.40643956,1004.607583,2.626416667,100.0,1.80625,0.895416667,237.87998661666666 +2015-11-28 09:00:00,3.019491504,1005.682417,22.955,100.0,2.5724166669999997,1.598583333,237.87874708333334 +2015-11-28 10:00:00,0.0,1006.882417,98.86666667,97.81666667,4.300666667,1.336416667,237.8771976666667 +2015-11-28 11:00:00,0.0,1007.815917,59.63416667,96.96666667,5.1668333330000005,1.3575,237.8761130833333 +2015-11-28 12:00:00,2.5140145919999997,1008.815833,91.05,94.4,5.135333333,1.09425,237.87456368333332 +2015-11-28 13:00:00,2.904352392,1009.682583,99.9525,90.25833333,5.923666667000001,1.803833333,237.8734790666667 +2015-11-28 14:00:00,0.0,1010.291417,55.2525,85.83333333,5.473916667,1.496666667,237.87378896666667 +2015-11-28 15:00:00,0.0,1010.8660000000001,31.38666667,83.13333333,5.321000000000001,1.2125,237.87487356666665 +2015-11-28 16:00:00,0.0,1011.39975,5.256583333,85.95833333,3.8915833330000003,0.858166667,237.87518344999998 +2015-11-28 17:00:00,0.0,1011.6498330000001,0.0,87.725,1.5660833330000001,0.319083333,237.87518343333332 +2015-11-28 18:00:00,0.0,1011.75825,0.0,84.76666667,3.187833333,1.3633333330000001,237.8734790833333 +2015-11-28 19:00:00,0.0,1011.750333,0.0,84.34166667,3.5844166669999997,1.696333333,237.87394388333328 +2015-11-28 20:00:00,0.0,1011.724667,0.0,83.775,3.8325,1.7643333330000002,237.87192965 +2015-11-28 21:00:00,0.0,1011.7005,0.0,84.31666667,4.145,1.3719999999999999,237.87223955 +2015-11-28 22:00:00,0.0,1011.034,0.0,87.725,4.33125,2.202,237.87254941666666 +2015-11-28 23:00:00,0.0,1010.067417,0.0,87.35,4.465083333,2.8145833330000003,237.87316919999998 +2015-11-29 00:00:00,0.0,1009.392083,0.0,85.90833333,4.73925,2.2385,237.87239448333332 +2015-11-29 01:00:00,0.0,1008.808833,0.0,88.025,4.87775,2.731416667,237.8717747333333 +2015-11-29 02:00:00,39.69857371,1007.8755,0.0,92.4,4.564833333,2.5185,237.87223956666665 +2015-11-29 03:00:00,75.86700014,1007.5505,0.0,94.80833333,4.294416667,2.331083333,237.87425378333333 +2015-11-29 04:00:00,61.38017609,1007.216667,0.0,96.55833333,4.362416667,2.116,237.88308545000004 +2015-11-29 05:00:00,37.51287648,1006.950167,0.0,97.03333333,4.711,2.218666667,237.89873451666674 +2015-11-29 06:00:00,16.01300333,1007.183083,0.0,96.13333333,5.3805,2.455916667,237.91314408333335 +2015-11-29 07:00:00,0.0,1007.275,0.053083332999999996,95.175,5.9226666670000006,2.3816666669999997,237.9315821 +2015-11-29 08:00:00,0.0,1007.4665,6.7416666670000005,94.25,6.532,2.310083333,237.9484707 +2015-11-29 09:00:00,3.0294508560000004,1007.4835,34.4475,95.9,6.852916667000001,1.8926666669999999,237.96102093333334 +2015-11-29 10:00:00,18.07774925,1007.383333,45.70916667,97.28333333,7.139583332999999,2.0105,237.97047235 +2015-11-29 11:00:00,6.347159184,1007.441417,70.9825,96.775,7.72175,2.179333333,237.98131825 +2015-11-29 12:00:00,3.037724784,1007.533583,97.93333333,94.325,8.728333333,2.12225,237.98922024999993 +2015-11-29 13:00:00,3.07258104,1007.34175,79.425,92.53333333,9.250833333,2.369333333,237.99727719999998 +2015-11-29 14:00:00,25.79707567,1007.15,35.3425,93.175,9.3675,2.4900833330000003,238.0030100666667 +2015-11-29 15:00:00,13.42903752,1006.575583,13.475,94.86666667,9.158333333,2.6469166669999997,238.01339108333332 +2015-11-29 16:00:00,7.396994832000001,1006.47475,1.162083333,91.66666667,9.8175,3.468916667,238.01989865000004 +2015-11-29 17:00:00,0.0,1006.924667,0.0,88.41666667,10.25166667,3.8965,238.02423701666666 +2015-11-29 18:00:00,3.989430384,1007.025167,0.0,89.31666667,9.9775,4.07275,238.02888525 +2015-11-29 19:00:00,8.651779512000001,1007.174833,0.0,89.01666667,9.81,4.10025,238.03523781666664 +2015-11-29 20:00:00,12.16836818,1006.825583,0.0,91.35,9.7,3.842333333,238.03725206666664 +2015-11-29 21:00:00,29.92741994,1006.616417,0.0,92.525,9.735833332999999,4.016583333,238.0411255833333 +2015-11-29 22:00:00,4.176302088,1006.574833,0.0,88.91666667,10.23833333,4.430083333,238.0429849 +2015-11-29 23:00:00,0.0,1007.14125,0.0,89.61666667,10.265,4.46375,238.04685843333337 +2015-11-30 00:00:00,4.345816008,1007.192083,0.0,88.36666667,10.18416667,4.480333333,238.05290116666666 +2015-11-30 01:00:00,4.029940824,1007.466,0.0,90.16666667,10.12666667,4.209166667,238.05553515 +2015-11-30 02:00:00,200.34872099999998,1009.356417,0.0,95.40833333,8.84,3.206083333,238.0572395 +2015-11-30 03:00:00,63.3191748,1010.541,0.0,96.08333333,8.084666667,2.325333333,238.0820301166667 +2015-11-30 04:00:00,28.65540504,1011.2745,0.0,92.60833333,7.504833333,1.646,238.12030063333336 +2015-11-30 05:00:00,7.259155487999999,1011.7745,0.0,93.8,7.539083333,2.7006666669999997,238.13858371666666 +2015-11-30 06:00:00,6.418204704,1012.5160000000001,0.0,92.5,7.4695,2.308833333,238.14230231666662 +2015-11-30 07:00:00,0.0,1013.174333,0.05825,93.10833333,7.09275,2.1716666669999998,238.1401331333333 +2015-11-30 08:00:00,0.0,1014.257333,7.622333332999999,92.83333333,7.135416667,1.9171666669999998,238.1333157 +2015-11-30 09:00:00,0.0,1014.97475,39.61083333,88.29166667,7.697166667,1.79625,238.12603345000002 +2015-11-30 10:00:00,0.0,1015.649667,49.89833333,90.61666667,7.881,1.813666667,238.12076545 +2015-11-30 11:00:00,0.0,1015.21725,82.49416667,95.33333333,7.901666667000001,1.02625,238.11658205 +2015-11-30 12:00:00,10.84653221,1014.250917,49.3725,97.46666667,8.191666667,1.135416667,238.11224368333333 +2015-11-30 13:00:00,29.69099014,1013.059583,31.81333333,98.45,8.595833333,1.247416667,238.1102294333333 +2015-11-30 14:00:00,3.8021345039999996,1011.950417,21.49916667,96.50833333,9.665833333,3.205083333,238.10929978333334 +2015-11-30 15:00:00,31.51206168,1011.17575,13.51525,97.275,9.5,3.731583333,238.11053931666666 +2015-11-30 16:00:00,3.787771704,1010.72525,1.42975,96.96666667,9.381666667000001,3.5745,238.11286345 +2015-11-30 17:00:00,4.499337336,1010.12575,0.0,95.3,9.598333333,3.9019999999999997,238.11549745000002 +2015-11-30 18:00:00,12.29885923,1009.8501669999999,0.0,93.73333333,9.695833333,3.9325,238.11906111666667 +2015-11-30 19:00:00,60.87194352,1009.38375,0.0,93.63333333,9.804166667,3.9245,238.1213852333333 +2015-11-30 20:00:00,85.80410143,1009.308083,0.0,96.9,9.435833333,3.984916667,238.12913228333335 +2015-11-30 21:00:00,53.2119414,1009.2665,0.0,97.03333333,9.525,4.546333333,238.15206361666665 +2015-11-30 22:00:00,13.39331162,1009.58325,0.0,97.76666667,9.611666667,4.477666667,238.17623445000004 +2015-11-30 23:00:00,8.696376048,1009.924583,0.0,98.3,9.628333332999999,4.44325,238.1849111833333 +2015-01-12 00:00:00,4.282376712,1010.383083,0.0,98.775,9.625833333,4.24475, +2015-01-12 01:00:00,0.0,1010.857833,0.0,99.05833333,9.764166667000001,3.9505, +2015-01-12 02:00:00,0.0,1011.615583,0.0,99.55,9.888333333,3.45925, +2015-01-12 03:00:00,0.0,1012.607667,0.0,99.825,10.09333333,3.0825, +2015-01-12 04:00:00,0.0,1013.158083,0.0,99.98333333,10.12583333,2.6289999999999996, +2015-01-12 05:00:00,0.0,1014.140667,0.0,100.0,10.07583333,1.915, +2015-01-12 06:00:00,16.7141706,1015.190833,0.0,100.0,9.950833333,1.5523333330000002, +2015-01-12 07:00:00,24.71483402,1016.257583,0.02775,100.0,9.871666667000001,1.287666667, +2015-01-12 08:00:00,15.75239309,1017.16575,2.836166667,100.0,9.8575,0.9235, +2015-01-12 09:00:00,2.5343222880000003,1017.899333,20.52666667,100.0,9.628333332999999,0.86675, +2015-01-12 10:00:00,7.6400626560000005,1018.6495,43.8225,100.0,9.379166667,0.715, +2015-01-12 11:00:00,7.510698624,1019.0415830000001,42.0575,100.0,9.4225,0.708416667, +2015-01-12 12:00:00,10.34913439,1019.0666669999999,36.19333333,100.0,9.431666667,0.8221666670000001, +2015-01-12 13:00:00,22.0661688,1019.4830000000001,27.45333333,100.0,9.621666667000001,0.28925, +2015-01-12 14:00:00,19.44818854,1019.69975,26.9975,100.0,9.785833333,0.21916666699999998, +2015-01-12 15:00:00,19.25353308,1019.866667,12.51166667,100.0,9.864166667000001,0.034083333, +2015-01-12 16:00:00,4.8100455360000005,1020.091583,2.505083333,100.0,9.788333332999999,0.10416666699999999, +2015-01-12 17:00:00,2.4138441840000002,1020.274333,0.0,100.0,10.25416667,0.59175, +2015-01-12 18:00:00,0.0,1020.832917,0.0,100.0,11.04083333,1.69825, +2015-01-12 19:00:00,0.0,1021.1916669999999,0.0,99.81666667,11.12166667,2.3515, +2015-01-12 20:00:00,0.0,1021.433083,0.0,99.01666667,11.125,2.086666667, +2015-01-12 21:00:00,0.0,1021.549667,0.0,98.75833333,11.12166667,1.988583333, +2015-01-12 22:00:00,0.0,1021.9415,0.0,97.975,10.96083333,1.390916667, +2015-01-12 23:00:00,0.0,1022.27475,0.0,98.78333333,10.7425,1.5968333330000002, +2015-02-12 00:00:00,0.0,1022.599833,0.0,97.41666667,10.4675,1.665083333, +2015-02-12 01:00:00,2.804621832,1022.5499169999999,0.0,95.79166667,10.18583333,1.23625, +2015-02-12 02:00:00,0.0,1022.675,0.0,94.96666667,10.0575,0.970166667, +2015-02-12 03:00:00,0.0,1022.9915,0.0,91.40833333,10.0725,1.125083333, +2015-02-12 04:00:00,0.0,1022.891833,0.0,87.11666667,10.03166667,1.163666667, +2015-02-12 05:00:00,0.0,1022.675,0.0,86.39166667,9.62,0.52525, +2015-02-12 06:00:00,0.0,1022.8165,0.0,85.15,9.643333333,0.799666667, +2015-02-12 07:00:00,0.0,1023.058083,0.030083332999999997,87.95833333,9.3575,0.58175, +2015-02-12 08:00:00,0.0,1023.44975,3.852583333,84.49166667,9.106666667,0.607833333, +2015-02-12 09:00:00,0.0,1023.791417,15.69333333,90.80833333,9.180833332999999,0.367666667, +2015-02-12 10:00:00,0.0,1024.1995,24.31166667,90.5,9.106666667,0.244583333, +2015-02-12 11:00:00,0.0,1024.333417,37.72666667,86.60833333,9.659166667000001,0.408, +2015-02-12 12:00:00,0.0,1024.2835,42.64916667,82.30583333,10.045,0.959333333, +2015-02-12 13:00:00,0.0,1024.108333,38.05833333,79.82583333,10.1125,1.049916667, +2015-02-12 14:00:00,0.0,1024.008333,21.25166667,82.875,9.939166667,0.722166667, +2015-02-12 15:00:00,0.0,1023.86675,8.938916667,85.18333333,9.336666667000001,0.129833333,238.01555266666665 +2015-02-12 16:00:00,0.0,1023.991667,0.97175,86.53333333,8.8475,0.294166667,238.01863600000001 +2015-02-12 17:00:00,0.0,1024.04975,0.0,87.55833333,8.731666667,0.4605,238.01965266666664 +2015-02-12 18:00:00,0.0,1024.3085,0.0,87.51666667,8.1185,0.18841666699999998,238.02065266666668 +2015-02-12 19:00:00,0.0,1024.308083,0.0,83.91666667,8.493166667,0.5864166670000001,238.021336 +2015-02-12 20:00:00,0.0,1024.41675,0.0,84.775,7.93625,0.1355,238.02238599999998 +2015-02-12 21:00:00,0.0,1024.59975,0.0,83.43333333,7.966666667,0.49741666700000003,238.02308599999995 +2015-02-12 22:00:00,0.0,1024.45,0.0,84.875,7.682583332999999,0.4645,238.024136 +2015-02-12 23:00:00,0.0,1024.566667,0.0,88.075,7.5090833329999995,0.45291666700000005,238.02378599999997 +2015-03-12 00:00:00,0.0,1024.833083,0.0,86.55833333,7.662833332999999,0.36791666700000003,238.06383599999995 +2015-03-12 01:00:00,0.0,1024.925083,0.0,88.45833333,7.100083333,0.214,238.06418599999998 +2015-03-12 02:00:00,0.0,1024.90825,0.0,94.99166667,6.844333333,0.039916667,238.06418599999998 +2015-03-12 03:00:00,0.0,1024.983333,0.0,91.03333333,6.69625,0.064416667,238.06523599999994 +2015-03-12 04:00:00,0.0,1024.84175,0.0,87.65,7.299083333,0.45425,238.065236 +2015-03-12 05:00:00,0.0,1024.983167,0.0,88.63333333,7.4276666670000004,0.4365,238.06453599999998 +2015-03-12 06:00:00,0.0,1025.1415,0.0,87.775,6.792416667,0.091083333,238.065936 +2015-03-12 07:00:00,0.0,1025.199833,0.054000000000000006,92.025,6.504,0.20199999999999999,238.066286 +2015-03-12 08:00:00,0.0,1025.341667,10.14333333,88.09166667,6.569166667,0.640833333,238.066286 +2015-03-12 09:00:00,2.471689704,1025.50825,28.79666667,83.0225,7.31575,1.062666667,238.06626933333334 +2015-03-12 10:00:00,0.0,1026.091167,42.39416667,81.67416667,8.07225,0.198083333,238.06418599999998 +2015-03-12 11:00:00,0.0,1025.7505,77.38333333,77.235,8.61,0.8565,238.063836 +2015-03-12 12:00:00,0.0,1025.050333,109.55,74.37,8.9725,1.6700833330000002,238.063836 +2015-03-12 13:00:00,0.0,1024.9255,95.785,73.78583333,9.409166667000001,1.3946666669999999,238.063836 +2015-03-12 14:00:00,0.0,1024.483667,117.88333329999999,70.45833333,8.5725,1.394166667,238.063836 +2015-03-12 15:00:00,0.0,1023.883417,54.30166667,75.2025,8.117833333,1.3846666669999999,238.063136 +2015-03-12 16:00:00,0.0,1023.757,4.6144166669999995,89.825,5.687583332999999,1.119083333,238.06453599999998 +2015-03-12 17:00:00,0.0,1023.049,0.0,96.90833333,3.54125,0.631416667,238.06418599999998 +2015-03-12 18:00:00,0.0,1022.6415,0.0,99.48333333,2.505083333,0.236583333,238.065236 +2015-03-12 19:00:00,0.0,1022.365833,0.0,100.0,1.99225,0.18333333300000001,238.066286 +2015-03-12 20:00:00,0.0,1021.891333,0.0,100.0,1.525333333,0.24100000000000002,238.0666193333333 +2015-03-12 21:00:00,0.0,1021.307333,0.0,100.0,1.63125,0.423916667,238.066286 +2015-03-12 22:00:00,0.0,1020.906833,0.0,100.0,1.655416667,0.198083333,238.06795266666666 +2015-03-12 23:00:00,0.0,1020.315667,0.0,100.0,1.1158333329999999,0.178583333,238.06728599999997 +2015-04-12 00:00:00,0.0,1019.741167,0.0,100.0,0.858083333,0.260666667,238.0432451 +2015-04-12 01:00:00,0.0,1019.432833,0.0,100.0,0.20425,0.2365,238.0431441333333 +2015-04-12 02:00:00,0.0,1019.208667,0.0,100.0,-0.046416667,0.320833333,238.042968 +2015-04-12 03:00:00,0.0,1019.383333,0.0,100.0,1.04075,0.6778333329999999,238.04274260000003 +2015-04-12 04:00:00,0.0,1019.107833,0.0,100.0,1.96575,1.0415,238.04274260000003 +2015-04-12 05:00:00,0.0,1019.0665,0.0,100.0,2.7639166669999997,2.39475,238.04271673333332 +2015-04-12 06:00:00,0.0,1019.217167,0.0,100.0,3.086666667,1.465583333,238.04266500000003 +2015-04-12 07:00:00,0.0,1019.593167,0.0,87.56666667,3.64025,0.8696666670000001,238.04261326666665 +2015-04-12 08:00:00,0.0,1020.3925,2.772583333,92.74166667,5.698833333,1.3774166669999999,238.04269086666667 +2015-04-12 09:00:00,10.73657849,1021.310667,12.27808333,97.71666667,6.380833332999999,1.118083333,238.04261326666665 +2015-04-12 10:00:00,22.3554053,1022.2508330000001,29.49833333,98.88333333,6.87275,0.41633333299999997,238.04261326666665 +2015-04-12 11:00:00,2.4050227680000003,1022.834,42.75833333,99.825,7.534083333,0.823333333,238.04266499999997 +2015-04-12 12:00:00,0.0,1023.46,46.9675,99.03333333,8.13825,1.5608333330000002,238.04274260000003 +2015-04-12 13:00:00,0.0,1024.234,26.85916667,98.425,8.441666667,2.15425,238.04274260000003 +2015-04-12 14:00:00,0.0,1024.7845,30.66083333,97.175,8.598333333,1.4595,238.04269086666667 +2015-04-12 15:00:00,0.0,1025.568167,27.06333333,95.29166667,8.4975,1.49225,238.04269086666667 +2015-04-12 16:00:00,0.0,1026.3010000000002,3.60925,97.09166667,7.707916667,1.698166667,238.04271673333335 +2015-04-12 17:00:00,0.0,1026.875833,0.002333333,97.90833333,5.4995833329999995,0.3445,238.04258739999997 +2015-04-12 18:00:00,0.0,1027.4425,0.0,99.98333333,2.8184166669999997,0.260833333,238.04258739999997 +2015-04-12 19:00:00,0.0,1028.009333,0.0,100.0,2.091916667,0.245,238.04258739999997 +2015-04-12 20:00:00,0.0,1028.417333,0.0,100.0,1.00025,0.20199999999999999,238.04258739999997 +2015-04-12 21:00:00,0.0,1028.499833,0.0,100.0,0.26966666699999997,0.12783333300000002,238.0425135 +2015-04-12 22:00:00,0.0,1028.475333,0.0,100.0,-0.21483333300000002,0.051416667,238.04246423333333 +2015-04-12 23:00:00,0.0,1028.5165,0.0,96.89166667,-0.11975,0.22175,238.04253813333332 +2015-05-12 00:00:00,0.0,1028.324333,0.0,96.11666667,1.959416667,0.498,238.00857338333333 +2015-05-12 01:00:00,0.0,1028.1075,0.0,98.00833333,0.588166667,0.452,238.00909049999999 +2015-05-12 02:00:00,0.0,1027.959167,0.0,97.86666667,-0.180083333,0.210333333,238.00995238333334 +2015-05-12 03:00:00,0.0,1027.932,0.0,97.51666667,0.093916667,0.163,238.0089181 +2015-05-12 04:00:00,0.0,1026.748667,0.0,97.475,-0.509416667,0.351416667,238.00960761666667 +2015-05-12 05:00:00,0.0,1026.400167,0.0,99.96666667,0.18783333300000002,0.7759999999999999,238.00874575 +2015-05-12 06:00:00,0.0,1026.533667,0.0,100.0,-0.48991666700000003,0.75625,238.0070219833333 +2015-05-12 07:00:00,0.0,1026.7585,0.078,100.0,-0.376166667,0.900166667,238.0065048333333 +2015-05-12 08:00:00,0.0,1026.832333,15.28683333,100.0,0.45299999999999996,0.6346666670000001,238.0047810833333 +2015-05-12 09:00:00,2.621912088,1026.667833,54.30416667,96.05833333,1.5759166669999998,1.077,238.00460871666664 +2015-05-12 10:00:00,0.0,1026.606667,105.60833329999998,90.74166667,3.7399166669999997,1.608416667,238.00322966666667 +2015-05-12 11:00:00,0.0,1025.9489999999998,106.65,89.53333333,4.700416667,1.6799166669999999,238.0011611333333 +2015-05-12 12:00:00,0.0,1025.157,127.475,87.825,6.23525,1.246416667,238.00029926666664 +2015-05-12 13:00:00,0.0,1024.373833,106.03333329999998,86.70833333,6.920333332999999,1.087916667,237.99788600000002 +2015-05-12 14:00:00,0.0,1023.907333,74.23166667,86.83333333,7.090083333,0.873,237.99650698333335 +2015-05-12 15:00:00,0.0,1023.258,38.65,88.83333333,6.4836666670000005,0.701833333,237.9977136333333 +2015-05-12 16:00:00,0.0,1023.0745,3.1515,93.05833333,4.507083333,0.670666667,237.99667936666665 +2015-05-12 17:00:00,0.0,1022.565667,0.0,98.30833333,3.341166667,0.743916667,237.99788601666663 +2015-05-12 18:00:00,0.0,1022.434,0.0,100.0,2.508416667,0.777333333,237.99909266666668 +2015-05-12 19:00:00,0.0,1022.558167,0.0,94.95,1.49975,0.23975,237.99909265 +2015-05-12 20:00:00,0.0,1022.332167,0.0,94.94166667,2.371833333,0.8235,237.99892026666666 +2015-05-12 21:00:00,0.0,1021.858333,0.0,98.88333333,1.6245,0.39716666700000003,237.99909265 +2015-05-12 22:00:00,0.0,1021.757833,0.0,100.0,0.6639166670000001,0.29991666699999997,237.99978215 +2015-05-12 23:00:00,0.0,1021.4739999999999,0.0,100.0,-0.33325,0.229166667,238.00236779999997 +2015-06-12 00:00:00,0.0,1020.9495,0.0,100.0,-0.790166667,0.20075,237.68709088333333 +2015-06-12 01:00:00,0.0,1020.632833,0.0,100.0,-0.76375,0.472583333,237.69071076666668 +2015-06-12 02:00:00,0.0,1020.332833,0.0,100.0,-0.7516666670000001,0.27899999999999997,237.69536494999997 +2015-06-12 03:00:00,0.0,1019.974333,0.0,100.0,-0.3945,0.9585,237.6996743666667 +2015-06-12 04:00:00,0.0,1019.599833,0.0,99.13333333,0.02275,0.6385833329999999,237.70243240000002 +2015-06-12 05:00:00,0.0,1019.533333,0.0,98.88333333,-0.7789166670000001,0.33733333299999996,237.70105339999998 +2015-06-12 06:00:00,0.0,1019.7760000000001,0.0,100.0,-1.4870833330000002,0.230833333,237.70277716666666 +2015-06-12 07:00:00,0.0,1020.342167,0.209,100.0,-0.71475,0.438666667,237.7027771666666 +2015-06-12 08:00:00,2.80610424,1020.483333,5.130583333,95.2,3.014583333,1.5490000000000002,237.6991572333333 +2015-06-12 09:00:00,0.0,1020.549833,26.64416667,91.5,4.159916667,1.968083333,237.69071078333332 +2015-06-12 10:00:00,0.0,1020.7675,69.16333333,89.25,5.322333333,2.020916667,237.67795493333333 +2015-06-12 11:00:00,0.0,1021.134333,77.48416667,87.76666667,7.324416667,1.0816666670000001,237.66364763333334 +2015-06-12 12:00:00,0.0,1021.391333,43.01333333,88.75833333,8.520833332999999,1.281333333,237.65675258333331 +2015-06-12 13:00:00,0.0,1021.0989999999999,65.28416667,88.28333333,9.259166667,1.257333333,237.65227076666667 +2015-06-12 14:00:00,0.0,1020.641333,116.17833329999999,83.925,10.22416667,1.879833333,237.6512365333333 +2015-06-12 15:00:00,0.0,1020.459167,51.34166667,84.775,10.1,1.617,237.65227078333336 +2015-06-12 16:00:00,0.0,1021.108667,3.823,86.70833333,9.015,1.7010833330000001,237.64865088333332 +2015-06-12 17:00:00,0.0,1021.4505,0.0,86.25833333,9.000833333,1.49875,237.6500298833333 +2015-06-12 18:00:00,2.79539772,1021.868,0.0,86.76666667,8.359416667,1.08375,237.65382218333332 +2015-06-12 19:00:00,0.0,1022.584833,0.0,85.00833333,9.801666667000001,2.0749166669999997,237.65744209999994 +2015-06-12 20:00:00,0.0,1023.2335,0.0,85.94166667,10.215,2.197,237.6591658666667 +2015-06-12 21:00:00,0.0,1023.3425,0.0,86.94166667,9.960833333,1.249333333,237.66157915 +2015-06-12 22:00:00,0.0,1024.050833,0.0,88.18333333,9.545833333,0.956416667,237.66761230000006 +2015-06-12 23:00:00,0.0,1024.475667,0.0,89.55833333,9.686666667,1.19125,237.67243885000002 +2015-07-12 00:00:00,0.0,1024.499833,0.0,92.76666667,9.809166667000001,1.050166667,237.50028753333333 +2015-07-12 01:00:00,0.0,1024.558333,0.0,97.69166667,7.639583332999999,0.525166667,237.50237845 +2015-07-12 02:00:00,0.0,1024.9260000000002,0.0,86.55,6.245333333,0.317416667,237.50405115 +2015-07-12 03:00:00,0.0,1025.2,0.0,85.49166667,7.185083333,0.625166667,237.50628145 +2015-07-12 04:00:00,0.0,1025.308667,0.0,95.425,6.5185,0.18475,237.51074206666667 +2015-07-12 05:00:00,0.0,1025.692333,0.0,99.5,6.34675,0.386083333,237.51352995000002 +2015-07-12 06:00:00,0.0,1025.967167,0.0,100.0,6.753833332999999,0.524416667,237.51687536666665 +2015-07-12 07:00:00,0.0,1026.542833,0.04975,100.0,6.678166667,0.273583333,237.51701476666665 +2015-07-12 08:00:00,0.0,1027.059333,7.087416667,100.0,5.958083332999999,0.35708333299999995,237.51394811666668 +2015-07-12 09:00:00,0.0,1027.575833,30.94166667,100.0,6.069333332999999,0.367333333,237.50419055 +2015-07-12 10:00:00,0.0,1028.075667,103.7858333,99.70833333,8.961416667,0.492666667,237.49206330000004 +2015-07-12 11:00:00,0.0,1028.324833,69.8975,95.18333333,11.15333333,1.106083333,237.48342088333334 +2015-07-12 12:00:00,0.0,1028.032667,161.94166669999998,91.35833333,9.873333333,1.125333333,237.48202695 +2015-07-12 13:00:00,0.0,1027.666333,158.66666669999998,86.425,11.76583333,1.056083333,237.48091179999997 +2015-07-12 14:00:00,0.0,1027.3075,84.68916667,86.49166667,11.93916667,1.050833333,237.47951788333333 +2015-07-12 15:00:00,0.0,1027.1415,47.72083333,88.15833333,10.43583333,1.107333333,237.47868151666668 +2015-07-12 16:00:00,0.0,1027.117,4.26825,96.88333333,7.921583332999999,0.429833333,237.47979665 +2015-07-12 17:00:00,0.0,1027.216833,0.0,100.0,5.4305833329999995,0.32916666699999997,237.48230575 +2015-07-12 18:00:00,0.0,1027.559,0.0,100.0,4.154166667,0.282833333,237.4884390666667 +2015-07-12 19:00:00,0.0,1027.9505,0.0,100.0,3.2645,0.218,237.49276025000003 +2015-07-12 20:00:00,0.0,1028.133833,0.0,100.0,2.415,0.142583333,237.4984754 +2015-07-12 21:00:00,0.0,1028.232833,0.0,100.0,1.8119999999999998,0.12116666699999999,237.50321478333333 +2015-07-12 22:00:00,0.0,1028.276,0.0,100.0,1.629083333,0.04275,237.5073966 +2015-07-12 23:00:00,0.0,1028.391,0.0,100.0,2.038583333,0.0,237.51213599999997 +2015-08-12 00:00:00,0.0,1028.108,0.0,100.0,2.132333333,0.013666667,237.62030548333337 +2015-08-12 01:00:00,0.0,1027.8828330000001,0.0,100.0,1.761333333,0.0,237.62030546666668 +2015-08-12 02:00:00,0.0,1027.7335,0.0,100.0,1.8019999999999998,0.035583332999999995,237.61974788333336 +2015-08-12 03:00:00,0.0,1027.424,0.0,100.0,1.3119999999999998,0.047083333,237.62016606666668 +2015-08-12 04:00:00,0.0,1027.057833,0.0,100.0,1.168916667,0.018583333,237.6193297 +2015-08-12 05:00:00,0.0,1026.95,0.0,100.0,1.42675,0.09425,237.61891151666669 +2015-08-12 06:00:00,0.0,1026.916667,0.0,100.0,1.193833333,0.031333333,237.61723880000002 +2015-08-12 07:00:00,0.0,1026.967167,0.039,100.0,0.916166667,0.10775,237.6152873333333 +2015-08-12 08:00:00,0.0,1027.141167,5.527916667,100.0,0.9605,0.208416667,237.61389338333333 +2015-08-12 09:00:00,0.0,1027.217167,30.22583333,100.0,1.1845,0.27575,237.61263885000002 +2015-08-12 10:00:00,0.0,1027.1085,58.2425,100.0,1.714833333,0.48716666700000005,237.6091539833333 +2015-08-12 11:00:00,2.5985574000000002,1027.057167,86.98583333,100.0,2.584333333,0.38941666700000005,237.60762064999997 +2015-08-12 12:00:00,0.0,1026.4825,94.25,100.0,3.3841666669999997,0.284916667,237.60329944999998 +2015-08-12 13:00:00,0.0,1025.899333,93.96333333,100.0,3.8155,0.568333333,237.60120855000002 +2015-08-12 14:00:00,0.0,1025.624,62.30166667,100.0,4.469083333,0.507833333,237.5970267333333 +2015-08-12 15:00:00,0.0,1024.95,31.79916667,100.0,4.607833333,0.541333333,237.591451 +2015-08-12 16:00:00,0.0,1024.799167,2.349333333,100.0,4.4486666669999995,0.45916666700000003,237.58587525 +2015-08-12 17:00:00,0.0,1024.733333,0.0,100.0,4.156333333,0.500916667,237.58559645000003 +2015-08-12 18:00:00,0.0,1024.7335,0.0,100.0,3.7408333330000003,0.317833333,237.58350555 +2015-08-12 19:00:00,0.0,1024.875167,0.0,100.0,3.1655,0.17800000000000002,237.5802995 +2015-08-12 20:00:00,0.0,1024.683167,0.0,100.0,3.249666667,0.483833333,237.57848735000002 +2015-08-12 21:00:00,0.0,1024.8671669999999,0.0,100.0,3.5731666669999997,0.56125,237.57625703333335 +2015-08-12 22:00:00,0.0,1024.849833,0.0,100.0,3.847,0.552666667,237.57542071666668 +2015-08-12 23:00:00,0.0,1024.749667,0.0,100.0,4.13925,0.40266666700000003,237.57723283333334 +2015-09-12 00:00:00,12.00852746,1025.0925,0.0,100.0,4.350833333,0.07725,237.51498033333334 +2015-09-12 01:00:00,4.8100455360000005,1025.125,0.0,100.0,4.515583333,0.038583333,237.51808253333334 +2015-09-12 02:00:00,2.4050227680000003,1025.383833,0.0,100.0,4.611416667,0.038583333,237.51885806666667 +2015-09-12 03:00:00,0.0,1025.709167,0.0,100.0,4.617916667,0.18933333300000002,237.5210295666667 +2015-09-12 04:00:00,9.6609576,1026.2085,0.0,100.0,4.623666667,0.072416667,237.52366636666662 +2015-09-12 05:00:00,9.815743536,1026.492833,0.0,100.0,4.654,0.229583333,237.52428679999994 +2015-09-12 06:00:00,0.0,1027.125667,0.0,100.0,4.320583333,0.075333333,237.52831963333333 +2015-09-12 07:00:00,2.4262878480000003,1027.617833,0.022583332999999997,100.0,3.694666667,0.11458333300000001,237.52785426666665 +2015-09-12 08:00:00,0.0,1028.452,1.874416667,100.0,3.2769999999999997,0.276166667,237.52847471666666 +2015-09-12 09:00:00,0.0,1029.560167,21.15583333,99.86666667,5.71925,0.6166666670000001,237.52769916666662 +2015-09-12 10:00:00,0.0,1030.601333,65.07,98.91666667,6.8245,0.916666667,237.5261480833333 +2015-09-12 11:00:00,0.0,1031.117333,85.29333333,93.54166667,8.029,1.148666667,237.52258065 +2015-09-12 12:00:00,0.0,1031.533667,111.64583329999999,87.725,9.206666667,1.7794166669999998,237.51591098333333 +2015-09-12 13:00:00,0.0,1031.9505,167.3416667,80.675,9.025833333,1.999416667,237.50722491666667 +2015-09-12 14:00:00,0.0,1031.883333,57.14083333,82.21833333,8.763333333,1.261833333,237.50040015 +2015-09-12 15:00:00,0.0,1032.234333,34.04833333,82.18166667,7.451916667000001,0.68825,237.49807353333333 +2015-09-12 16:00:00,0.0,1032.892667,4.835,91.01666667,5.413666667,0.467416667,237.49419581666666 +2015-09-12 17:00:00,0.0,1033.242,0.0,99.71666667,2.691916667,0.190833333,237.49295495 +2015-09-12 18:00:00,0.0,1033.241333,0.0,100.0,0.9278333329999999,0.368,237.4938856 +2015-09-12 19:00:00,0.0,1033.559167,0.0,100.0,0.19,0.24916666699999998,237.49497138333334 +2015-09-12 20:00:00,0.0,1033.566333,0.0,100.0,-0.42775,0.136166667,237.49311004999996 +2015-09-12 21:00:00,0.0,1033.6175,0.0,100.0,-0.94625,0.059916667,237.4952816 +2015-09-12 22:00:00,0.0,1033.4660000000001,0.0,100.0,-1.374,0.04225,237.49791843333333 +2015-09-12 23:00:00,0.0,1033.3915,0.0,100.0,-1.653083333,0.071416667,237.50024503333336 +2015-10-12 00:00:00,0.0,1033.458667,0.0,100.0,-1.961916667,0.15275,237.6536470166667 +2015-10-12 01:00:00,0.0,1033.682833,0.0,100.0,-0.60675,0.137666667,237.65442258333337 +2015-10-12 02:00:00,0.0,1033.374667,0.0,100.0,1.9723333330000001,0.146083333,237.655043 +2015-10-12 03:00:00,0.0,1032.924667,0.0,100.0,2.32775,0.827666667,237.65628388333334 +2015-10-12 04:00:00,0.0,1032.482333,0.0,100.0,2.445833333,1.4345,237.65721453333333 +2015-10-12 05:00:00,0.0,1032.208167,0.0,99.71666667,2.3403333330000002,2.09775,237.65721455000002 +2015-10-12 06:00:00,0.0,1031.999833,0.0,99.4,2.080833333,1.9929166669999998,237.65690429999998 +2015-10-12 07:00:00,0.0,1031.8493330000001,0.044583332999999996,99.86666667,1.301083333,1.366166667,237.65659408333332 +2015-10-12 08:00:00,0.0,1031.6915,6.943583332999999,100.0,0.6589166670000001,0.87775,237.65488790000003 +2015-10-12 09:00:00,0.0,1031.374,36.80083333,100.0,1.313166667,0.21741666699999998,237.65256129999997 +2015-10-12 10:00:00,0.0,1031.150167,81.17666667,100.0,2.3471666669999998,0.709666667,237.65225108333334 +2015-10-12 11:00:00,0.0,1030.874,106.96,100.0,3.23525,0.16275,237.6531817166667 +2015-10-12 12:00:00,0.0,1029.982,96.83416667,97.825,4.330083333,0.8125,237.65256128333337 +2015-10-12 13:00:00,0.0,1029.231833,89.5725,96.5,4.03875,1.443583333,237.65163065000002 +2015-10-12 14:00:00,0.0,1028.398667,66.555,97.98333333,4.068166667,1.359666667,237.6525613 +2015-10-12 15:00:00,0.0,1027.807333,32.83833333,99.3,3.566916667,1.7629166669999998,237.65178576666668 +2015-10-12 16:00:00,0.0,1027.274,3.0596666669999997,100.0,2.1575833330000003,1.17225,237.65209595000002 +2015-10-12 17:00:00,0.0,1026.482833,0.0,100.0,1.7143333330000001,1.35725,237.6531817166667 +2015-10-12 18:00:00,0.0,1026.316333,0.0,100.0,1.1450833329999999,2.365166667,237.65364705000002 +2015-10-12 19:00:00,0.0,1025.7815,0.0,100.0,1.5301666669999998,2.343666667,237.6531817166667 +2015-10-12 20:00:00,0.0,1025.025,0.0,100.0,1.433416667,2.51725,237.65349193333336 +2015-10-12 21:00:00,0.0,1025.140833,0.0,100.0,1.271416667,1.23125,237.65550835000002 +2015-10-12 22:00:00,0.0,1024.657833,0.0,100.0,0.642166667,0.45033333299999995,237.65535325000005 +2015-10-12 23:00:00,0.0,1024.0905,0.0,100.0,-0.254083333,0.500166667,237.65535323333336 +2015-11-12 00:00:00,0.0,1023.532667,0.0,100.0,-0.36691666700000003,0.8440000000000001,237.73542633333332 +2015-11-12 01:00:00,0.0,1023.148833,0.0,100.0,-0.140833333,1.9538333330000002,237.73682081666666 +2015-11-12 02:00:00,0.0,1022.633333,0.0,100.0,-0.50075,1.7164166669999998,237.73558128333335 +2015-11-12 03:00:00,0.0,1022.5665,0.0,100.0,-0.903083333,0.565,237.7363560166667 +2015-11-12 04:00:00,0.0,1022.282833,0.0,100.0,-0.583416667,1.164416667,237.73573623333334 +2015-11-12 05:00:00,0.0,1022.2665,0.0,100.0,-0.440166667,1.5625,237.73558128333335 +2015-11-12 06:00:00,0.0,1022.125333,0.0,100.0,-0.297666667,1.7050833330000001,237.7355813 +2015-11-12 07:00:00,0.0,1021.8323330000001,0.049333333,100.0,-0.06725,1.340416667,237.73728565 +2015-11-12 08:00:00,0.0,1021.7251669999999,2.898166667,100.0,0.37625,0.507,237.73790541666665 +2015-11-12 09:00:00,0.0,1021.883333,19.55725,100.0,0.850583333,0.87575,237.73527140000002 +2015-11-12 10:00:00,2.5637175119999998,1021.6241669999999,48.605,100.0,1.5435,1.16775,237.7281441 +2015-11-12 11:00:00,0.0,1021.333333,47.98583333,99.78333333,3.226416667,0.80725,237.73356705 +2015-11-12 12:00:00,0.0,1020.949167,29.42083333,99.90833333,3.878833333,0.99275,237.73511646666668 +2015-11-12 13:00:00,2.74786968,1020.415667,39.44083333,99.975,4.39775,0.94575,237.73387691666667 +2015-11-12 14:00:00,13.6487533,1019.9995,26.69416667,99.43333333,4.868083333,1.13325,237.7375955166667 +2015-11-12 15:00:00,24.13557492,1019.9165,11.73208333,99.91666667,5.052166667,1.056166667,237.73868011666664 +2015-11-12 16:00:00,20.00317894,1019.958167,0.703833333,99.95833333,5.061333333,1.6165,237.7392999 +2015-11-12 17:00:00,2.7097787999999996,1019.783167,0.0,99.99166667,5.196416667,1.328,237.73976471666666 +2015-11-12 18:00:00,8.40013368,1019.474667,0.0,100.0,5.3765,1.415666667,237.73929990000002 +2015-11-12 19:00:00,2.881750368,1018.722667,0.0,100.0,5.64825,1.236333333,237.73991968333334 +2015-11-12 20:00:00,5.080505448,1017.983167,0.0,99.99166667,5.893083333,0.8211666670000001,237.74255365 +2015-11-12 21:00:00,27.23338495,1017.9075,0.0,100.0,5.929333333,0.430833333,237.74301851666664 +2015-11-12 22:00:00,10.45547587,1017.107167,0.0,99.84166667,6.555666667000001,1.15475,237.7427086 +2015-11-12 23:00:00,3.11455968,1016.8835,0.0,99.20833333,7.513333332999999,1.7430833330000002,237.7410042666667 +2015-12-12 00:00:00,0.0,1016.967167,0.0,99.94166667,7.794583332999999,2.2608333330000003,238.01098508333334 +2015-12-12 01:00:00,0.0,1016.983167,0.0,100.0,7.895166667000001,1.802583333,238.0170694666667 +2015-12-12 02:00:00,9.807755376,1017.535,0.0,99.05833333,7.64825,2.3730833330000003,238.02064853333334 +2015-12-12 03:00:00,2.69660712,1017.983167,0.0,97.9,6.540166667,0.954416667,238.02870144999997 +2015-12-12 04:00:00,2.506590072,1018.033833,0.0,98.825,5.934,0.40433333299999996,238.03693330000002 +2015-12-12 05:00:00,0.0,1018.3335,0.0,99.975,5.525416667000001,0.165083333,238.03908073333332 +2015-12-12 06:00:00,9.847539072,1018.425333,0.0,100.0,5.4655,0.233,238.04480725 +2015-12-12 07:00:00,0.0,1018.775833,0.0,100.0,5.592333332999999,0.35075,238.04749154999993 +2015-12-12 08:00:00,0.0,1018.950167,1.9165833330000002,100.0,5.588166667,0.49241666700000003,238.05357595 +2015-12-12 09:00:00,0.0,1019.2425,16.66033333,99.525,5.755166667,0.202083333,238.0553655 +2015-12-12 10:00:00,0.0,1019.859333,46.4625,98.96666667,6.439166667,0.390666667,238.05590236666663 +2015-12-12 11:00:00,0.0,1020.032667,69.11916667,97.65833333,7.043833332999999,0.9670000000000001,238.05697606666664 +2015-12-12 12:00:00,0.0,1019.640833,86.95083333,96.71666667,7.5325,0.69625,238.05733398333334 +2015-12-12 13:00:00,0.0,1018.940833,61.84166667,94.725,7.61475,0.7979999999999999,238.06019725000002 +2015-12-12 14:00:00,0.0,1018.5906669999999,52.03333333,90.325,7.698583332999999,0.923416667,238.06144989999999 +2015-12-12 15:00:00,0.0,1018.241167,18.16575,93.88333333,7.457999999999999,0.672666667,238.06288151666664 +2015-12-12 16:00:00,0.0,1017.732333,2.371166667,99.11666667,7.0025,0.914083333,238.06413419999998 +2015-12-12 17:00:00,0.0,1017.149167,0.0,99.95,6.809166667,1.03675,238.06610268333336 +2015-12-12 18:00:00,0.0,1016.574333,0.0,95.75,7.069666667000001,1.251,238.06306049999998 +2015-12-12 19:00:00,0.0,1016.174167,0.0,95.40833333,8.694166667000001,1.9825,238.06341838333333 +2015-12-12 20:00:00,0.0,1015.390333,0.0,95.55,8.9575,1.874,238.06288153333333 +2015-12-12 21:00:00,0.0,1014.8825,0.0,93.65,9.211666667000001,1.3045,238.06323944999997 +2015-12-12 22:00:00,0.0,1014.0735,0.0,92.46666667,9.528333332999999,1.984666667,238.06431318333333 +2015-12-12 23:00:00,0.0,1013.299,0.0,91.10833333,9.681666667,1.8395833330000002,238.06323944999997 +2015-12-13 00:00:00,0.0,1012.9495,0.0,89.71666667,9.664166667,2.016,238.0630604666666 +2015-12-13 01:00:00,0.0,1012.39,0.0,90.54166667,9.5075,2.48175,238.06270258333328 +2015-12-13 02:00:00,0.0,1011.883667,0.0,89.60833333,9.1775,2.20875,238.06270258333328 +2015-12-13 03:00:00,0.0,1011.857333,0.0,89.05833333,8.996666667000001,2.000833333,238.06323943333328 +2015-12-13 04:00:00,0.0,1011.45,0.0,89.65,8.465833332999999,2.250833333,238.06306048333332 +2015-12-13 05:00:00,0.0,1011.5089999999999,0.0,90.2,8.341666667,2.38275,238.06091305000004 +2015-12-13 06:00:00,0.0,1011.858667,0.0,89.66666667,8.330833333,2.707666667,238.05804978333333 +2015-12-13 07:00:00,0.0,1012.3510000000001,0.0,92.03333333,8.074583333,2.734083333,238.05751295000002 +2015-12-13 08:00:00,0.0,1013.0015,1.6838333330000002,94.68333333,7.892333333,2.3073333330000003,238.0569760666667 +2015-12-13 09:00:00,0.0,1013.7589999999999,10.03225,98.68333333,7.6705,2.084916667,238.05375491666666 +2015-12-13 10:00:00,0.0,1014.5269999999999,29.42583333,98.925,7.897083332999999,2.2858333330000002,238.05303908333335 +2015-12-13 11:00:00,0.0,1015.2925,66.78333333,98.03333333,8.485833332999999,1.9580000000000002,238.05053375 +2015-12-13 12:00:00,0.0,1015.7085,30.625,97.925,8.321666667,1.189416667,238.04749155 +2015-12-13 13:00:00,2.5756395359999997,1015.958833,44.81833333,99.99166667,8.002166667000001,0.775333333,238.0467757166667 +2015-12-13 14:00:00,0.0,1016.108667,20.22416667,100.0,7.620166667,1.311833333,238.04552308333334 +2015-12-13 15:00:00,0.0,1016.3755,5.451083333,100.0,6.891666667000001,1.8966666669999999,238.0449862 +2015-12-13 16:00:00,0.0,1016.934333,0.797083333,100.0,5.91975,2.1615,238.04641781666666 +2015-12-13 17:00:00,2.508880752,1017.317167,0.0,100.0,5.490666667,1.060833333,238.04605990000002 +2015-12-13 18:00:00,0.0,1017.658667,0.0,100.0,5.291166667,0.05775,238.04552305 +2015-12-13 19:00:00,0.0,1017.934167,0.0,100.0,5.2924166669999995,0.18808333300000002,238.04552306666668 +2015-12-13 20:00:00,0.0,1018.0585,0.0,100.0,5.403333333,0.634083333,238.0442704 +2015-12-13 21:00:00,0.0,1018.091333,0.0,100.0,5.337666667,0.11333333300000001,238.04409145000002 +2015-12-13 22:00:00,0.0,1018.175167,0.0,100.0,5.012,0.81375,238.04337561666668 +2015-12-13 23:00:00,0.0,1018.1335,0.0,100.0,4.78075,0.64525,238.04194396666665 +2015-12-14 00:00:00,0.0,1018.082833,0.0,100.0,4.684,0.907333333,238.04140711666665 +2015-12-14 01:00:00,0.0,1017.7495,0.0,100.0,4.7140833330000005,0.405916667,238.03925969999997 +2015-12-14 02:00:00,0.0,1017.641667,0.0,100.0,4.73325,0.797416667,238.04158606666667 +2015-12-14 03:00:00,0.0,1017.533,0.0,100.0,4.7405,0.597166667,238.03961761666665 +2015-12-14 04:00:00,0.0,1017.258167,0.0,100.0,4.742333333,0.883833333,238.03908075 +2015-12-14 05:00:00,0.0,1017.2330000000001,0.0,100.0,4.783333333,0.2095,238.03747016666662 +2015-12-14 06:00:00,0.0,1017.1005,0.0,100.0,4.902833333,0.15108333300000001,238.03943865 +2015-12-14 07:00:00,0.0,1017.091,0.0,100.0,4.951083333,0.4395,238.03961759999996 +2015-12-14 08:00:00,2.45712048,1017.117333,2.823,100.0,5.110166667,0.178166667,238.03693330000002 +2015-12-14 09:00:00,0.0,1017.4333330000001,20.78091667,100.0,5.452583333,0.511416667,238.0358595666667 +2015-12-14 10:00:00,2.4050227680000003,1017.6505,58.4975,100.0,6.176916667,0.523333333,238.0355016666667 +2015-12-14 11:00:00,0.0,1017.566,118.46666670000002,100.0,7.378416667000001,0.4205,238.03478585000002 +2015-12-14 12:00:00,0.0,1017.1410000000001,150.1583333,100.0,7.9935,1.7045833330000002,238.03317528333332 +2015-12-14 13:00:00,0.0,1016.682333,155.325,94.20833333,9.005833333,1.63,238.03335423333337 +2015-12-14 14:00:00,0.0,1016.308167,118.125,89.725,8.879166667,1.867666667,238.0315647 +2015-12-14 15:00:00,0.0,1015.999667,45.0925,89.84166667,7.797166667000001,1.7796666669999999,238.03335425 +2015-12-14 16:00:00,0.0,1015.9495,3.2791666669999997,99.05833333,6.8660000000000005,1.187333333,238.03550165000001 +2015-12-14 17:00:00,0.0,1015.9425,0.0,96.9,6.26425,1.811916667,238.03424900000002 +2015-12-14 18:00:00,0.0,1016.158333,0.0,91.50833333,6.8065,2.08725,238.03102785 +2015-12-14 19:00:00,0.0,1016.3585,0.0,95.99166667,5.717166667000001,1.674333333,238.03210156666668 +2015-12-14 20:00:00,0.0,1016.483667,0.0,100.0,3.675166667,0.181333333,238.03245948333333 +2015-12-14 21:00:00,0.0,1016.708833,0.0,100.0,2.124083333,0.193166667,238.03245948333335 +2015-12-14 22:00:00,0.0,1016.841667,0.0,100.0,1.4981666669999998,0.295083333,238.0324595 +2015-12-14 23:00:00,0.0,1016.908333,0.0,100.0,0.867166667,0.12708333300000002,238.03228051666667 +2015-12-15 00:00:00,0.0,1016.958833,0.0,100.0,0.22675,0.061833333,238.03228049999998 +2015-12-15 01:00:00,0.0,1017.016333,0.0,100.0,-0.149416667,0.028166667000000003,238.03174364999998 +2015-12-15 02:00:00,0.0,1016.9085,0.0,100.0,-0.017,0.017583333,238.03245946666667 +2015-12-15 03:00:00,0.0,1017.3255,0.0,100.0,0.577916667,0.045666667,238.02941724999997 +2015-12-15 04:00:00,0.0,1017.241333,0.0,100.0,0.8614166670000001,0.06333333299999999,238.0274487833333 +2015-12-15 05:00:00,0.0,1017.259167,0.0,100.0,1.207166667,0.070833333,238.02726980000003 +2015-12-15 06:00:00,0.0,1017.6669999999999,0.0,100.0,1.516666667,0.15708333300000002,238.02530135000003 +2015-12-15 07:00:00,0.0,1018.051167,0.0,100.0,1.696333333,0.250333333,238.02512236666666 +2015-12-15 08:00:00,0.0,1018.6005,3.023416667,100.0,2.239666667,0.110166667,238.0238697 +2015-12-15 09:00:00,0.0,1019.1255,38.505,100.0,2.7608333330000003,0.306416667,238.02351179999997 +2015-12-15 10:00:00,0.0,1019.459167,30.55166667,100.0,3.075333333,0.7031666670000001,238.02208018333337 +2015-12-15 11:00:00,0.0,1019.725333,55.65666667,100.0,3.46875,0.5558333329999999,238.02225913333336 +2015-12-15 12:00:00,0.0,1019.615833,61.13416667,100.0,4.122166667,1.048083333,238.0213643666667 +2015-12-15 13:00:00,0.0,1019.3585,84.25083333,100.0,5.020333333,0.5675,238.01939586666666 +2015-12-15 14:00:00,0.0,1019.383167,54.98083333,100.0,5.559166667,0.44108333299999997,238.01885900000002 +2015-12-15 15:00:00,0.0,1019.5008330000001,9.225833332999999,100.0,5.794416667,0.433833333,238.01885901666665 +2015-12-15 16:00:00,0.0,1019.850667,1.22875,100.0,4.212666667,0.105583333,238.01903796666667 +2015-12-15 17:00:00,0.0,1020.233333,0.0,100.0,2.9635,0.128333333,238.01903794999998 +2015-12-15 18:00:00,0.0,1020.5008330000001,0.0,100.0,3.51475,0.07666666700000001,238.01903796666667 +2015-12-15 19:00:00,0.0,1020.8755,0.0,100.0,4.230416667,0.18983333300000002,238.01921691666664 +2015-12-15 20:00:00,0.0,1020.9416669999999,0.0,100.0,4.586666667,0.08883333300000001,238.01903794999998 +2015-12-15 21:00:00,0.0,1020.999833,0.0,100.0,4.5755,0.252,238.01689055 +2015-12-15 22:00:00,0.0,1020.833333,0.0,100.0,4.4945833330000005,0.035166667,238.01689053333334 +2015-12-15 23:00:00,0.0,1021.208833,0.0,100.0,4.5785,0.00975,238.01635368333334 +2015-12-16 00:00:00,0.0,1021.3335,0.0,100.0,4.635416667,0.057999999999999996,238.01653263333333 +2015-12-16 01:00:00,0.0,1021.2245,0.0,100.0,4.643666667,0.021,238.01474311666664 +2015-12-16 02:00:00,0.0,1021.025333,0.0,100.0,4.623166667,0.16116666699999999,238.01527995 +2015-12-16 03:00:00,0.0,1020.991167,0.0,100.0,4.54,0.09175,238.01402726666666 +2015-12-16 04:00:00,0.0,1020.5571669999999,0.0,100.0,4.502,0.003666667,238.01366938333334 +2015-12-16 05:00:00,0.0,1020.300333,0.0,100.0,4.555666667,0.055166667,238.01438516666667 +2015-12-16 06:00:00,2.4050227680000003,1020.1995,0.0,100.0,4.6609166669999995,0.045583333,238.01331144999997 +2015-12-16 07:00:00,26.54480491,1019.9830000000001,0.0,100.0,4.827166667,0.05925,238.0131325 +2015-12-16 08:00:00,14.53734696,1019.967,0.8946666670000001,100.0,5.5225,0.675333333,238.0134904 +2015-12-16 09:00:00,14.60205763,1020.150167,7.832083333,100.0,6.74825,1.800583333,238.01456413333332 +2015-12-16 10:00:00,2.81391672,1020.2005,11.23333333,100.0,7.07275,1.6560833330000002,238.01671158333332 +2015-12-16 11:00:00,0.0,1020.316,17.955,100.0,7.769416667000001,1.8766666669999998,238.01563785 +2015-12-16 12:00:00,0.0,1019.9830000000001,27.60833333,100.0,8.475,1.027416667,238.01689055 +2015-12-16 13:00:00,0.0,1019.991667,13.6975,100.0,8.548333332999999,0.6030833329999999,238.01868004999997 +2015-12-16 14:00:00,2.442188304,1019.8083330000001,26.14666667,100.0,8.639166667000001,0.6345833329999999,238.0197537833333 +2015-12-16 15:00:00,0.0,1019.958667,21.88358333,100.0,8.8825,0.75375,238.01832215 +2015-12-16 16:00:00,0.0,1019.949667,1.657083333,100.0,8.754166667,0.35758333299999995,238.0211854 +2015-12-16 17:00:00,0.0,1019.866667,0.0,100.0,8.485833332999999,0.63175,238.02297495000002 +2015-12-16 18:00:00,0.0,1019.9416669999999,0.0,100.0,8.378333332999999,0.1705,238.02225915 +2015-12-16 19:00:00,0.0,1020.109167,0.0,100.0,8.248333333,0.332,238.0238697 +2015-12-16 20:00:00,0.0,1020.4416669999999,0.0,100.0,8.780833333,0.075333333,238.02333285 +2015-12-16 21:00:00,2.413397448,1020.517167,0.0,99.81666667,9.770833332999999,0.324416667,238.0247644666667 +2015-12-16 22:00:00,0.0,1020.633167,0.0,100.0,10.91,1.041166667,238.0261961 +2015-12-16 23:00:00,0.0,1020.709,0.0,100.0,11.29416667,1.312833333,238.0251223666667 +2015-12-17 00:00:00,0.0,1020.641167,0.0,100.0,11.6775,1.205083333,238.0272698333333 +2015-12-17 01:00:00,0.0,1020.758,0.0,100.0,11.78666667,1.652,238.02834354999996 +2015-12-17 02:00:00,0.0,1020.725833,0.0,99.91666667,11.72666667,0.9540000000000001,238.02834353333333 +2015-12-17 03:00:00,0.0,1021.0165,0.0,99.525,11.82416667,1.1320000000000001,238.0278067 +2015-12-17 04:00:00,2.603051904,1020.858167,0.0,100.0,11.52166667,1.115166667,238.0295962 +2015-12-17 05:00:00,0.0,1020.633167,0.0,99.14166667,11.7075,1.163166667,238.03013306666662 +2015-12-17 06:00:00,0.0,1020.515833,0.0,97.80833333,11.63916667,0.78475,238.03066993333331 +2015-12-17 07:00:00,0.0,1020.5675,0.0,97.55,11.57833333,1.111416667,238.03138575 +2015-12-17 08:00:00,0.0,1020.9010000000001,3.3736666669999997,97.5,11.24916667,0.608833333,238.03299631666667 +2015-12-17 09:00:00,0.0,1021.166667,27.375,96.56666667,10.59833333,0.71425,238.03120678333332 +2015-12-17 10:00:00,0.0,1021.3005,44.86416667,95.375,11.77083333,0.4625,238.03031201666667 +2015-12-17 11:00:00,0.0,1020.948833,83.33833333,94.725,13.1675,0.83175,238.0315647 +2015-12-17 12:00:00,0.0,1020.4655,83.5225,92.68333333,13.8175,1.292916667,238.03102785 +2015-12-17 13:00:00,0.0,1019.9910000000001,71.46083333,93.28333333,13.9975,1.45225,238.03245946666667 +2015-12-17 14:00:00,0.0,1019.825,31.9975,93.85833333,14.07916667,1.13075,238.0338911 +2015-12-17 15:00:00,0.0,1019.524333,26.67583333,94.95833333,13.4325,1.346333333,238.03371213333335 +2015-12-17 16:00:00,0.0,1019.316833,3.26225,99.63333333,11.355,0.864666667,238.03514375 +2015-12-17 17:00:00,0.0,1019.074167,0.0,100.0,10.63916667,0.5578333329999999,238.0355016666667 +2015-12-17 18:00:00,0.0,1018.908,0.0,100.0,8.670583333,0.122083333,238.03764911666667 +2015-12-17 19:00:00,0.0,1018.758167,0.0,100.0,7.3753333329999995,0.149166667,238.03711223333335 +2015-12-17 20:00:00,0.0,1018.732833,0.0,100.0,7.3805,0.09225,238.03693330000002 +2015-12-17 21:00:00,0.0,1018.308,0.0,100.0,7.174416667000001,0.163916667,238.03729121666666 +2015-12-17 22:00:00,0.0,1017.765667,0.0,100.0,7.3768333329999995,0.255583333,238.03729120000003 +2015-12-17 23:00:00,0.0,1017.6585,0.0,100.0,7.44675,0.237333333,238.0356806166667 +2015-12-18 00:00:00,2.44836312,1017.490667,0.0,100.0,8.087166667,0.173083333,238.0338911 +2015-12-18 01:00:00,0.0,1016.941167,0.0,100.0,8.483833333,0.764833333,238.0351437666667 +2015-12-18 02:00:00,0.0,1016.5075,0.0,100.0,9.66,1.297,238.0346069 +2015-12-18 03:00:00,0.0,1016.242,0.0,100.0,9.79,0.8905833329999999,238.03335423333337 +2015-12-18 04:00:00,2.472611976,1016.349667,0.0,100.0,8.839166667,0.42008333299999995,238.03245948333335 +2015-12-18 05:00:00,0.0,1016.425333,0.0,99.28333333,8.486666667,0.313583333,238.0315647 +2015-12-18 06:00:00,4.955007168,1016.700833,0.0,94.89166667,8.152416667,0.244666667,238.0297751833333 +2015-12-18 07:00:00,4.849838832,1017.117333,0.0,98.26666667,8.788333332999999,0.27675,238.03031199999998 +2015-12-18 08:00:00,0.0,1017.809833,1.196416667,98.70833333,9.8525,1.285583333,238.0278066833333 +2015-12-18 09:00:00,0.0,1018.551333,27.89416667,98.75,10.18916667,1.13275,238.02744876666665 +2015-12-18 10:00:00,0.0,1019.100333,50.475,98.475,11.16666667,0.955,238.02780668333332 +2015-12-18 11:00:00,0.0,1019.275,45.0725,97.05833333,11.46416667,1.78275,238.02673296666663 +2015-12-18 12:00:00,0.0,1019.249667,49.92583333,96.40833333,11.75583333,1.6480833330000002,238.02780668333332 +2015-12-18 13:00:00,0.0,1019.0666669999999,74.38416667,93.76666667,12.01833333,0.882916667,238.02762774999997 +2015-12-18 14:00:00,0.0,1019.108333,51.54083333,91.58333333,12.06583333,1.031333333,238.02637504999998 +2015-12-18 15:00:00,0.0,1019.225333,22.14666667,93.98333333,11.35333333,0.5385833329999999,238.02744876666665 +2015-12-18 16:00:00,0.0,1019.475333,4.56075,96.35,10.625,0.46083333299999996,238.02780668333332 +2015-12-18 17:00:00,0.0,1019.6505,0.0,96.95,9.766666667,0.110166667,238.02691191666668 +2015-12-18 18:00:00,0.0,1019.716833,0.0,99.11666667,9.4925,0.14575,238.02762775 +2015-12-18 19:00:00,0.0,1019.967,0.0,97.16666667,9.425833333,0.11866666699999999,238.02548028333334 +2015-12-18 20:00:00,0.0,1019.866167,0.0,97.91666667,9.465,0.320666667,238.02261704999998 +2015-12-18 21:00:00,0.0,1019.6498330000001,0.0,96.0,9.401666667,0.673333333,238.02476446666665 +2015-12-18 22:00:00,0.0,1019.683167,0.0,94.525,9.748333333,1.132083333,238.02261705 +2015-12-18 23:00:00,0.0,1019.666667,0.0,91.525,10.07416667,1.8514166669999998,238.02208018333337 +2015-12-19 00:00:00,0.0,1019.299,0.0,94.725,9.5425,1.58075,238.0231539 +2015-12-19 01:00:00,0.0,1018.925167,0.0,93.84166667,9.574166667,1.377833333,238.0238697166667 +2015-12-19 02:00:00,0.0,1018.949833,0.0,96.68333333,9.308333333,0.2335,238.02261703333338 +2015-12-19 03:00:00,0.0,1018.582,0.0,99.99166667,9.4875,0.562583333,238.02351180000002 +2015-12-19 04:00:00,0.0,1018.342,0.0,99.2,9.731666667,0.7586666670000001,238.0215433 +2015-12-19 05:00:00,0.0,1018.608833,0.0,94.71666667,9.915833333,0.25525,238.0185011 +2015-12-19 06:00:00,0.0,1018.574667,0.0,94.44166667,10.7075,0.8833333329999999,238.01921691666666 +2015-12-19 07:00:00,0.0,1018.575,0.0,96.81666667,9.935833333,1.4729166669999998,238.01760634999997 +2015-12-19 08:00:00,0.0,1018.676,2.139583333,96.10833333,9.6325,1.312416667,238.0201116833333 +2015-12-19 09:00:00,0.0,1019.083167,19.19808333,95.34166667,9.804166667,1.193833333,238.01760635000002 +2015-12-19 10:00:00,0.0,1019.1925,70.6175,91.10833333,10.9475,0.514083333,238.01832215000002 +2015-12-19 11:00:00,0.0,1019.332667,83.33916667,88.66666667,11.91,1.172416667,238.01653261666664 +2015-12-19 12:00:00,0.0,1019.032833,94.32583333,85.625,13.2275,1.3648333330000002,238.01760635000002 +2015-12-19 13:00:00,0.0,1018.891667,39.48416667,86.25833333,12.20416667,0.858083333,238.01599575 +2015-12-19 14:00:00,0.0,1018.566,25.79916667,88.25833333,11.89333333,0.648666667,238.01617473333332 +2015-12-19 15:00:00,0.0,1018.166333,14.12475,89.88333333,11.71166667,1.10625,238.01850109999998 +2015-12-19 16:00:00,0.0,1017.941333,1.5754166669999998,96.05,11.34666667,1.918333333,238.01993273333335 +2015-12-19 17:00:00,0.0,1017.9915,0.0,97.69166667,10.79583333,1.95575,238.01868006666666 +2015-12-19 18:00:00,0.0,1017.783,0.0,97.90833333,9.469166667,2.38025,238.01939586666666 +2015-12-19 19:00:00,0.0,1017.675,0.0,97.35833333,9.326666667000001,2.188916667,238.01778529999999 +2015-12-19 20:00:00,0.0,1017.633167,0.0,99.80833333,7.78925,0.315666667,238.01903794999998 +2015-12-19 21:00:00,0.0,1017.441167,0.0,100.0,5.9450833329999995,0.1435,238.02172225 +2015-12-19 22:00:00,0.0,1016.9739999999999,0.0,100.0,5.483,0.19125,238.01975376666667 +2015-12-19 23:00:00,0.0,1016.633,0.0,100.0,6.518916667,0.323666667,238.01706948333333 +2015-12-20 00:00:00,0.0,1016.190833,0.0,100.0,7.4858333329999995,0.6406666670000001,238.01706946666664 +2015-12-20 01:00:00,0.0,1015.4813330000001,0.0,100.0,6.914833333,0.36475,238.01599576666663 +2015-12-20 02:00:00,0.0,1015.042333,0.0,100.0,6.009916667000001,0.315416667,238.01832215 +2015-12-20 03:00:00,0.0,1015.175167,0.0,100.0,5.433916667,0.128333333,238.01420620000002 +2015-12-20 04:00:00,0.0,1015.492167,0.0,100.0,5.42575,0.16575,238.01420620000002 +2015-12-20 05:00:00,0.0,1015.248833,0.0,100.0,6.18875,0.6034166670000001,238.01366936666668 +2015-12-20 06:00:00,0.0,1014.782833,0.0,100.0,6.51825,0.5115,238.01456413333332 +2015-12-20 07:00:00,0.0,1014.783833,0.0,100.0,6.857583332999999,1.591,238.0134904 +2015-12-20 08:00:00,0.0,1014.933167,5.484666667000001,100.0,6.709833333,1.128416667,238.01134298333332 +2015-12-20 09:00:00,0.0,1015.217667,22.2925,100.0,6.657083332999999,1.30275,238.0108061 +2015-12-20 10:00:00,0.0,1015.709833,47.79083333,100.0,6.990583332999999,0.383666667,238.00865865 +2015-12-20 11:00:00,0.0,1015.957167,83.28333333,100.0,7.34875,0.767833333,238.0077639 +2015-12-20 12:00:00,0.0,1015.408,92.94166667,100.0,8.402083333,0.660666667,238.00830075 +2015-12-20 13:00:00,0.0,1015.441833,67.1425,100.0,8.918333333,0.474916667,238.0059744 +2015-12-20 14:00:00,0.0,1015.307667,53.005,100.0,9.31,0.8514166670000001,238.00507961666668 +2015-12-20 15:00:00,0.0,1015.042167,23.425,100.0,8.854166667000001,0.93225,238.00507961666668 +2015-12-20 16:00:00,0.0,1015.3415,1.8500833330000002,100.0,8.309416667,1.054916667,238.00525856666664 +2015-12-20 17:00:00,0.0,1015.492167,0.0,100.0,7.853,0.604833333,238.0081218 +2015-12-20 18:00:00,0.0,1015.758333,0.0,100.0,7.317333333,0.6890000000000001,238.00597438333332 +2015-12-20 19:00:00,0.0,1016.025667,0.0,100.0,7.145,0.701666667,238.00686914999997 +2015-12-20 20:00:00,0.0,1016.1,0.0,100.0,7.302916667000001,0.66525,238.00651123333333 +2015-12-20 21:00:00,0.0,1016.217,0.0,100.0,7.103,0.38225,238.00346903333335 +2015-12-20 22:00:00,0.0,1016.4255,0.0,100.0,7.218666667000001,0.2435,238.0034690166667 +2015-12-20 23:00:00,0.0,1016.591833,0.0,100.0,6.834916667000001,0.18558333300000002,238.00418483333337 +2015-12-21 00:00:00,0.0,1016.407333,0.0,100.0,6.54525,0.136083333,238.00418483333337 +2015-12-21 01:00:00,0.0,1016.092167,0.0,97.01666667,6.53725,0.288666667,238.00257425000004 +2015-12-21 02:00:00,0.0,1016.250333,0.0,89.54166667,7.6006666670000005,0.406583333,238.00114265000002 +2015-12-21 03:00:00,2.473768824,1016.575,0.0,89.75,9.469166667,0.398083333,238.00024788333334 +2015-12-21 04:00:00,2.518946376,1016.7175,0.0,93.975,9.920833333,0.5815,237.9998899666667 +2015-12-21 05:00:00,17.21971855,1017.017333,0.0,98.04166667,9.751666667,1.5155,238.0011426333333 +2015-12-21 06:00:00,34.10207035,1017.483667,0.0,98.325,9.345833333,1.4945,238.0000689166667 +2015-12-21 07:00:00,2.73699504,1017.5585,0.0,97.825,8.756666667000001,1.1345,238.0023953 +2015-12-21 08:00:00,0.0,1018.0425,0.45141666700000005,95.21666667,8.679166667,1.34725,238.0023953 +2015-12-21 09:00:00,0.0,1018.6010000000001,15.98733333,93.35833333,8.869166667,2.014416667,238.00078471666666 +2015-12-21 10:00:00,0.0,1019.025333,40.92583333,92.19166667,9.374166667,2.057,237.9993531 +2015-12-21 11:00:00,0.0,1018.857833,110.77083329999999,87.53333333,10.88416667,2.342666667,238.00006891666666 +2015-12-21 12:00:00,0.0,1018.357333,81.3325,84.10833333,10.865,2.52325,237.99935306666666 +2015-12-21 13:00:00,0.0,1017.8325,45.88583333,79.75083333,10.86,3.02075,238.0004268166667 +2015-12-21 14:00:00,0.0,1017.557833,53.37833333,78.79583333,10.61333333,2.4275,237.99917415000002 +2015-12-21 15:00:00,0.0,1017.5505,30.95583333,79.19833333,10.5125,2.97575,238.00132159999998 +2015-12-21 16:00:00,0.0,1017.717167,3.534,79.435,10.38916667,2.51,238.00006889999997 +2015-12-21 17:00:00,0.0,1017.6995,0.0,80.5825,10.11,2.6189999999999998,238.00185843333335 +2015-12-21 18:00:00,0.0,1017.784167,0.0,81.98333333,9.828333333,2.116083333,238.00132156666666 +2015-12-21 19:00:00,0.0,1018.2835,0.0,80.595,10.15583333,2.38025,237.99827936666665 +2015-12-21 20:00:00,0.0,1018.216667,0.0,79.855,10.36083333,2.5186666669999997,237.99863728333332 +2015-12-21 21:00:00,0.0,1018.133833,0.0,80.0875,10.62166667,2.940583333,237.99792146666664 +2015-12-21 22:00:00,0.0,1018.609333,0.0,90.36666667,9.9275,2.587333333,237.99720564999998 +2015-12-21 23:00:00,0.0,1019.234167,0.0,89.28333333,10.3425,2.622583333,237.99631088333334 +2015-12-22 00:00:00,0.0,1019.8755,0.0,90.45833333,10.44,2.7745833330000003,237.99666879999998 +2015-12-22 01:00:00,0.0,1020.3015,0.0,89.1,10.63916667,2.5950833330000003,237.99487926666666 +2015-12-22 02:00:00,0.0,1020.924667,0.0,91.80833333,10.50166667,2.455083333,237.99452134999999 +2015-12-22 03:00:00,0.0,1020.758833,0.0,90.10833333,10.6875,2.294166667,237.9957740333333 +2015-12-22 04:00:00,0.0,1020.899667,0.0,89.13333333,10.88583333,2.133,237.9947003333333 +2015-12-22 05:00:00,0.0,1020.633333,0.0,94.24166667,10.43916667,1.623583333,237.9948792833333 +2015-12-22 06:00:00,8.154822432000001,1020.6005,0.0,97.125,9.709166667,1.376,237.99684776666663 +2015-12-22 07:00:00,24.54122311,1020.690667,0.0,98.21666667,9.510833332999999,1.320833333,237.99953205 +2015-12-22 08:00:00,6.10000416,1020.375167,1.481416667,97.96666667,9.344166667,1.541166667,238.00418483333337 +2015-12-22 09:00:00,0.0,1020.4755,16.3825,95.6,10.045,1.255333333,238.00203739999998 +2015-12-22 10:00:00,0.0,1021.050833,25.03083333,94.43333333,10.69833333,1.590416667,238.00024788333337 +2015-12-22 11:00:00,0.0,1021.007667,31.48083333,93.65833333,11.12666667,1.6345833330000001,238.0000689166667 +2015-12-22 12:00:00,0.0,1020.448833,37.18666667,89.24166667,12.13333333,1.814583333,238.00150053333334 +2015-12-22 13:00:00,0.0,1020.208333,51.8075,87.5,12.4575,1.57675,238.00203738333335 +2015-12-22 14:00:00,0.0,1020.024333,53.8525,84.38333333,12.79833333,1.616916667,238.00096369999997 +2015-12-22 15:00:00,0.0,1019.841667,31.66,82.35833333,12.35833333,1.7216666669999998,238.0025742833333 +2015-12-22 16:00:00,0.0,1019.616333,4.481583333000001,83.025,11.4425,1.3759166669999998,238.0063322666667 +2015-12-22 17:00:00,0.0,1019.3245,0.0,81.11,11.27666667,1.424916667,238.00686915000003 +2015-12-22 18:00:00,0.0,1018.857,0.0,78.975,11.22,1.692166667,238.00669018333335 +2015-12-22 19:00:00,0.0,1018.5755,0.0,79.16666667,11.16833333,1.224166667,238.00847971666664 +2015-12-22 20:00:00,0.0,1018.6495,0.0,78.98916667,11.24166667,1.6368333330000002,238.0100902833333 +2015-12-22 21:00:00,0.0,1018.741667,0.0,78.28,11.24083333,2.0645833330000003,238.00812183333335 +2015-12-22 22:00:00,0.0,1018.215833,0.0,77.825,11.07,2.56825,238.00955345 +2015-12-22 23:00:00,0.0,1018.275667,0.0,78.06,10.70333333,2.566833333,238.0100902833333 +2015-12-23 00:00:00,0.0,1018.15,0.0,78.40416667,10.36333333,2.358166667,238.00991133333332 +2015-12-23 01:00:00,0.0,1017.974167,0.0,86.3,9.554166667,1.374333333,238.011343 +2015-12-23 02:00:00,0.0,1017.5825,0.0,81.6075,9.279166667,1.3025,238.01187983333332 +2015-12-23 03:00:00,0.0,1017.207833,0.0,78.6625,9.749166667,1.5621666669999998,238.01170088333333 +2015-12-23 04:00:00,0.0,1017.199833,0.0,75.6575,9.173333332999999,1.65075,238.01044819999996 +2015-12-23 05:00:00,0.0,1017.292333,0.0,78.135,10.04333333,2.14825,238.00973238333333 +2015-12-23 06:00:00,0.0,1017.508833,0.0,84.75833333,9.899166667000001,2.137666667,238.00937448333332 +2015-12-23 07:00:00,0.0,1018.142833,0.0,87.04166667,10.19833333,2.16825,238.00991133333332 +2015-12-23 08:00:00,0.0,1018.901833,4.867416667,87.925,10.50583333,2.48975,238.0097324 +2015-12-23 09:00:00,0.0,1019.917833,48.16,93.8,10.16916667,2.61475,238.00901656666665 +2015-12-23 10:00:00,0.0,1020.668333,55.29416667,94.675,10.47166667,2.318666667,238.00937448333335 +2015-12-23 11:00:00,0.0,1021.4505,82.07583333,91.85,11.27083333,2.4893333330000003,238.00722704999998 +2015-12-23 12:00:00,0.0,1021.550167,92.5875,90.06666667,11.98916667,2.204166667,238.00651123333333 +2015-12-23 13:00:00,0.0,1021.608667,128.2108333,86.01666667,12.2125,1.972083333,238.00686914999997 +2015-12-23 14:00:00,0.0,1021.7335,68.295,80.90166667,12.1825,1.504583333,238.00579543333333 +2015-12-23 15:00:00,0.0,1022.092333,21.8175,79.185,11.6475,1.504,238.00847971666667 +2015-12-23 16:00:00,0.0,1022.884833,4.755916667,83.45833333,10.90333333,1.22075,238.00937448333332 +2015-12-23 17:00:00,0.0,1023.509167,0.0,85.89166667,9.878333332999999,0.821,238.00847971666667 +2015-12-23 18:00:00,0.0,1024.059,0.0,91.65,6.846583333,0.17925,238.00794286666667 +2015-12-23 19:00:00,0.0,1024.083333,0.0,95.28333333,5.032916667,0.241916667,238.00919553333333 +2015-12-23 20:00:00,0.0,1024.116333,0.0,95.60833333,6.90725,0.902166667,238.00812181666666 +2015-12-23 21:00:00,0.0,1023.950333,0.0,96.03333333,5.127166667,0.252,238.00973238333333 +2015-12-23 22:00:00,0.0,1023.874333,0.0,98.675,3.371083333,0.32766666699999997,238.0081218 +2015-12-23 23:00:00,0.0,1023.566333,0.0,100.0,2.649083333,0.34033333299999996,238.00937446666663 +2015-12-24 00:00:00,0.0,1023.382833,0.0,100.0,1.4665833330000002,0.15633333300000002,238.0095534333333 +2015-12-24 01:00:00,0.0,1022.924167,0.0,100.0,1.1966666670000001,0.168416667,238.00991134999995 +2015-12-24 02:00:00,0.0,1022.491167,0.0,100.0,0.8745,0.229416667,238.0100902833333 +2015-12-24 03:00:00,0.0,1022.291167,0.0,100.0,2.778083333,0.35700000000000004,238.00919551666664 +2015-12-24 04:00:00,0.0,1021.798667,0.0,100.0,5.06625,0.929,238.00651125000002 +2015-12-24 05:00:00,0.0,1021.082667,0.0,100.0,5.690083333,0.49991666700000004,238.00669018333335 +2015-12-24 06:00:00,0.0,1020.791667,0.0,100.0,6.506333333,0.51075,238.0054375 +2015-12-24 07:00:00,0.0,1020.4321669999999,0.0,100.0,5.80075,0.291333333,238.00490063333336 +2015-12-24 08:00:00,0.0,1020.083167,1.823916667,100.0,5.9785,0.67675,238.00507960000002 +2015-12-24 09:00:00,0.0,1019.8741669999999,13.69066667,100.0,5.712000000000001,1.427416667,238.0066902 +2015-12-24 10:00:00,0.0,1019.558167,88.09333333,100.0,7.739333332999999,2.281166667,238.00507960000004 +2015-12-24 11:00:00,0.0,1019.0395,91.86,100.0,9.3475,1.690833333,238.00418485 +2015-12-24 12:00:00,0.0,1018.0995,138.6083333,93.29166667,10.63583333,2.2294166669999997,238.0023953 +2015-12-24 13:00:00,0.0,1017.799167,103.145,88.43333333,11.16333333,1.8148333330000002,238.00203740000003 +2015-12-24 14:00:00,0.0,1017.2415,82.13583333,87.225,11.83333333,1.5875,238.00257425000004 +2015-12-24 15:00:00,0.0,1017.358833,24.29116667,86.28333333,11.125,0.98725,238.00239530000002 +2015-12-24 16:00:00,0.0,1017.3325,5.579833333,86.225,10.53416667,1.7024166669999998,238.0013216 +2015-12-24 17:00:00,0.0,1017.258667,0.0,87.10833333,10.19166667,1.4436666669999998,238.00150055000003 +2015-12-24 18:00:00,0.0,1017.592167,0.0,84.2,9.858333333,1.1555,238.00257425000004 +2015-12-24 19:00:00,0.0,1017.692333,0.0,84.075,9.728333333,1.226083333,238.00024788333334 +2015-12-24 20:00:00,0.0,1017.849833,0.0,83.33333333,11.8625,2.3418333330000003,238.00132158333335 +2015-12-24 21:00:00,0.0,1018.1510000000001,0.0,83.825,11.7425,2.19225,237.99953205 +2015-12-24 22:00:00,0.0,1018.491667,0.0,83.14166667,11.52083333,1.688083333,237.99953205 +2015-12-24 23:00:00,0.0,1018.600833,0.0,80.03166667,12.1225,2.410333333,237.99810043333332 +2015-12-25 00:00:00,0.0,1018.8585,0.0,83.95666667,11.94416667,2.412583333,237.9977425 +2015-12-25 01:00:00,0.0,1019.2260000000001,0.0,88.85833333,11.26333333,2.38675,237.99845831666667 +2015-12-25 02:00:00,0.0,1020.193333,0.0,87.75833333,10.925,2.5373333330000003,237.99505821666665 +2015-12-25 03:00:00,20.75416291,1021.284833,0.0,95.26666667,9.094166667,0.905666667,237.99720564999998 +2015-12-25 04:00:00,2.6691611280000003,1021.7,0.0,95.375,8.8225,1.061416667,237.99756355 +2015-12-25 05:00:00,2.7994476,1022.034667,0.0,97.15,8.9775,1.4645833330000002,237.99738461666664 +2015-12-25 06:00:00,0.0,1022.567167,0.0,94.86666667,8.880833333,1.46725,237.99434241666665 +2015-12-25 07:00:00,0.0,1023.151667,0.0,94.29166667,8.4325,1.0593333329999999,237.99541615 +2015-12-25 08:00:00,0.0,1023.6255,1.992083333,95.45,8.298333332999999,0.654833333,237.9952371833333 +2015-12-25 09:00:00,3.00702192,1024.342167,18.96358333,94.48333333,8.6875,1.7903333330000002,237.99219496666672 +2015-12-25 10:00:00,0.0,1024.567667,25.045,94.675,8.708333332999999,1.226916667,237.99201601666667 +2015-12-25 11:00:00,0.0,1024.373833,15.055,99.15,8.524166667000001,0.3655,237.9923739 +2015-12-25 12:00:00,19.62333535,1023.891333,18.93916667,100.0,8.469166667,0.292083333,237.9921949666667 +2015-12-25 13:00:00,21.91978673,1023.5571669999999,40.24583333,100.0,8.875,0.135833333,237.9923739333333 +2015-12-25 14:00:00,14.90986106,1023.258167,23.40416667,99.74166667,9.558333333,0.5195,237.99487928333335 +2015-12-25 15:00:00,5.568929232,1023.041333,23.726,96.04166667,10.67,1.3594166669999999,237.99613194999998 +2015-12-25 16:00:00,0.0,1023.1,1.77325,91.70833333,11.0925,1.3985,237.9989952 +2015-12-25 17:00:00,0.0,1023.141833,0.0,90.18333333,11.18166667,1.083416667,238.00060580000002 +2015-12-25 18:00:00,0.0,1023.2251669999999,0.0,90.69166667,10.88,0.977666667,238.00042683333334 +2015-12-25 19:00:00,0.0,1023.341833,0.0,90.575,10.4325,1.4689166669999998,238.0013216 +2015-12-25 20:00:00,0.0,1023.45,0.0,90.075,10.61,1.3675,238.0016795 +2015-12-25 21:00:00,0.0,1023.383833,0.0,89.20833333,10.935,1.26225,238.00418483333337 +2015-12-25 22:00:00,0.0,1023.658333,0.0,87.48333333,11.8,0.6928333329999999,238.00382691666667 +2015-12-25 23:00:00,0.0,1023.7835,0.0,86.43333333,12.13833333,0.782,238.00615333333334 +2015-12-26 00:00:00,0.0,1023.424667,0.0,88.06666667,10.61166667,0.98575,238.00812181666666 +2015-12-26 01:00:00,2.48798856,1023.2080000000001,0.0,88.91666667,8.3605,0.735916667,238.01223773333334 +2015-12-26 02:00:00,0.0,1023.450333,0.0,87.26666667,7.121583332999999,0.35658333299999995,238.01223773333334 +2015-12-26 03:00:00,0.0,1023.55,0.0,86.63333333,6.870333333,0.35316666700000005,238.01223774999997 +2015-12-26 04:00:00,0.0,1023.508333,0.0,86.16666667,7.595666667000001,0.396,238.01366936666662 +2015-12-26 05:00:00,0.0,1023.466667,0.0,85.64166667,8.44575,0.7536666670000001,238.01474308333334 +2015-12-26 06:00:00,0.0,1023.283333,0.0,85.375,7.363416667,0.460583333,238.0154589166667 +2015-12-26 07:00:00,0.0,1023.357833,0.0,85.5,9.020916667,0.43158333299999996,238.01563785 +2015-12-26 08:00:00,0.0,1023.141667,5.06525,95.825,8.375916667,0.46175,238.01939586666666 +2015-12-26 09:00:00,0.0,1023.2755,19.19666667,90.775,9.639166667000001,0.742,238.01957481666668 +2015-12-26 10:00:00,0.0,1023.684167,67.83333333,78.83916667,12.6975,1.5954166669999998,238.01671158333338 +2015-12-26 11:00:00,0.0,1023.6405,94.6,75.96916667,13.4525,2.286666667,238.01706948333333 +2015-12-26 12:00:00,0.0,1023.074,137.1416667,74.47666667,14.14583333,2.1455,238.01742739999997 +2015-12-26 13:00:00,0.0,1022.491167,141.55,73.0575,14.85166667,1.9605833330000002,238.01814321666666 +2015-12-26 14:00:00,0.0,1022.166167,108.78333329999998,72.34166667,15.26583333,1.11925,238.01724843333332 +2015-12-26 15:00:00,0.0,1022.141667,50.4575,73.4425,13.91,1.364333333,238.01760633333333 +2015-12-26 16:00:00,0.0,1022.359333,3.8465833330000003,82.3025,11.735,1.298166667,238.01939586666666 +2015-12-26 17:00:00,0.0,1022.532833,0.0,89.8,10.8225,0.959916667,238.02064853333334 +2015-12-26 18:00:00,0.0,1022.533333,0.0,86.74166667,9.9075,1.26125,238.02046958333332 +2015-12-26 19:00:00,0.0,1022.575167,0.0,87.58333333,9.736666667,0.909083333,238.01975376666667 +2015-12-26 20:00:00,0.0,1022.516667,0.0,89.575,7.218166667,0.481833333,238.02100643333335 +2015-12-26 21:00:00,0.0,1022.541833,0.0,92.325,5.06875,0.319583333,238.0208275 +2015-12-26 22:00:00,0.0,1022.508,0.0,95.56666667,3.802333333,0.18708333300000002,238.02118541666667 +2015-12-26 23:00:00,0.0,1022.475,0.0,98.41666667,2.9506666669999997,0.19125,238.02243810000002 +2015-12-27 00:00:00,0.0,1022.541833,0.0,100.0,2.188583333,0.163583333,238.02154331666668 +2015-12-27 01:00:00,0.0,1022.374667,0.0,100.0,1.75375,0.129083333,238.02064853333331 +2015-12-27 02:00:00,0.0,1022.199667,0.0,100.0,1.4810833330000002,0.12575,238.0211854 +2015-12-27 03:00:00,0.0,1021.95,0.0,100.0,1.309416667,0.10166666699999999,238.01993271666666 +2015-12-27 04:00:00,0.0,1022.0,0.0,100.0,1.0596666670000001,0.135916667,238.01903795 +2015-12-27 05:00:00,0.0,1022.125,0.0,100.0,1.066666667,0.3675,238.02082751666669 +2015-12-27 06:00:00,0.0,1022.183833,0.0,100.0,0.737916667,0.11258333300000001,238.01939586666666 +2015-12-27 07:00:00,0.0,1022.508667,0.0,100.0,0.2965,0.09525,238.01832215 +2015-12-27 08:00:00,0.0,1022.717333,4.27925,100.0,0.376,0.285666667,238.01868005000003 +2015-12-27 09:00:00,0.0,1022.983333,36.46166667,100.0,2.143333333,0.43558333299999996,238.01545890000003 +2015-12-27 10:00:00,0.0,1023.359667,77.11416667,100.0,4.615416667,0.174333333,238.0154588833333 +2015-12-27 11:00:00,0.0,1023.958333,109.825,99.40833333,6.938333332999999,0.2555,238.0138483166667 +2015-12-27 12:00:00,0.0,1023.958167,120.48333329999998,82.875,8.47925,0.547416667,238.01170088333333 +2015-12-27 13:00:00,0.0,1023.658,133.8,79.46666667,10.12666667,0.980666667,238.01170086666664 +2015-12-27 14:00:00,0.0,1023.625333,110.20833329999999,77.48,10.38416667,1.158,238.01026923333333 +2015-12-27 15:00:00,0.0,1023.925667,58.66583333,76.87833333,11.31666667,0.676416667,238.00901658333336 +2015-12-27 16:00:00,0.0,1024.292167,7.0245,80.40666667,9.08375,0.34075,238.0100903166667 +2015-12-27 17:00:00,0.0,1024.683833,0.0,92.59166667,6.079833333,0.207666667,238.0120588 +2015-12-27 18:00:00,0.0,1024.742,0.0,95.04166667,4.6905,0.297083333,238.0131325 +2015-12-27 19:00:00,0.0,1025.151167,0.0,95.8,4.4110000000000005,0.284333333,238.01026925 +2015-12-27 20:00:00,0.0,1025.750167,0.0,99.90833333,3.5835,0.23800000000000002,238.0095534333333 +2015-12-27 21:00:00,0.0,1025.800167,0.0,100.0,2.3085,0.13975,238.00919551666664 +2015-12-27 22:00:00,0.0,1026.151167,0.0,100.0,1.69575,0.19699999999999998,238.00686914999997 +2015-12-27 23:00:00,0.0,1026.374667,0.0,100.0,1.265583333,0.289666667,238.00830075 +2015-12-28 00:00:00,0.0,1026.267,0.0,100.0,0.772416667,0.07575,238.00919551666664 +2015-12-28 01:00:00,0.0,1026.115833,0.0,100.0,0.2385,0.15275,238.00919556666668 +2015-12-28 02:00:00,0.0,1026.033333,0.0,100.0,0.241583333,0.05075,238.00704810000002 +2015-12-28 03:00:00,0.0,1026.0,0.0,100.0,1.000916667,0.05125,238.00669018333335 +2015-12-28 04:00:00,0.0,1026.116833,0.0,100.0,1.913416667,0.0045,238.00436380000005 +2015-12-28 05:00:00,0.0,1025.974833,0.0,100.0,2.292333333,0.078166667,238.0023953 +2015-12-28 06:00:00,0.0,1025.782667,0.0,100.0,2.7448333330000003,0.022666667,238.00203739999998 +2015-12-28 07:00:00,0.0,1025.633667,0.0,100.0,3.020083333,0.06308333299999999,238.00024786666665 +2015-12-28 08:00:00,0.0,1025.8665,1.618333333,100.0,3.243833333,0.049,238.00042683333334 +2015-12-28 09:00:00,0.0,1025.833833,14.14233333,100.0,3.497083333,1.3854166669999999,238.00150055000003 +2015-12-28 10:00:00,0.0,1026.008333,31.5575,100.0,3.3618333330000003,1.39525,237.99935309999998 +2015-12-28 11:00:00,0.0,1025.7575,64.74583333,100.0,3.810166667,1.12375,237.99971101666665 +2015-12-28 12:00:00,0.0,1025.182333,73.94583333,100.0,4.278166667,1.315083333,237.99917413333333 +2015-12-28 13:00:00,0.0,1024.4569999999999,55.05333333,100.0,4.631666667,1.135416667,237.99881626666664 +2015-12-28 14:00:00,0.0,1023.832833,49.35166667,100.0,4.989166667,0.43825,237.99810043333332 +2015-12-28 15:00:00,0.0,1023.365333,34.00416667,100.0,4.7995,0.82075,237.9981004166667 +2015-12-28 16:00:00,0.0,1022.849833,5.83,100.0,4.603833333,0.465,237.9993531166667 +2015-12-28 17:00:00,0.0,1022.6825,0.0,100.0,4.345166667,0.50725,237.9993531166667 +2015-12-28 18:00:00,0.0,1022.4416669999999,0.0,100.0,3.6295833330000002,0.62525,237.99971101666668 +2015-12-28 19:00:00,2.483419608,1022.199333,0.0,100.0,3.11575,0.3825,237.99917415000002 +2015-12-28 20:00:00,0.0,1021.908,0.0,100.0,2.749583333,0.581666667,237.99953206666666 +2015-12-28 21:00:00,0.0,1021.741333,0.0,100.0,2.588,0.45983333299999996,237.99971100000002 +2015-12-28 22:00:00,0.0,1021.683167,0.0,100.0,2.123166667,0.491,237.9986373 +2015-12-28 23:00:00,0.0,1021.366333,0.0,100.0,1.0656666670000001,0.144333333,237.99863726666663 +2015-12-29 00:00:00,0.0,1021.358667,0.0,100.0,-0.41316666700000004,0.044833332999999996,237.99881621666665 +2015-12-29 01:00:00,0.0,1020.948333,0.0,100.0,-0.314,0.255666667,237.99899518333334 +2015-12-29 02:00:00,0.0,1020.532833,0.0,100.0,-0.643333333,0.539,237.9952372 +2015-12-29 03:00:00,0.0,1020.342,0.0,100.0,-0.972916667,0.095916667,237.99613194999998 +2015-12-29 04:00:00,0.0,1020.324667,0.0,100.0,-1.290833333,0.121083333,237.99631091666663 +2015-12-29 05:00:00,0.0,1020.116167,0.0,100.0,-1.4869999999999999,0.13375,237.9977425 +2015-12-29 06:00:00,0.0,1020.092167,0.0,100.0,-1.644333333,0.182166667,237.9957740333333 +2015-12-29 07:00:00,0.0,1020.342167,0.0,100.0,-1.9924166669999999,0.0125,237.99559510000003 +2015-12-29 08:00:00,0.0,1020.6675,4.796833333,100.0,-1.002583333,0.63175,237.99291080000003 +2015-12-29 09:00:00,0.0,1021.308833,27.73916667,100.0,0.04475,0.15416666699999998,237.99076334999998 +2015-12-29 10:00:00,2.824034712,1021.7843330000001,74.25083333,100.0,2.906166667,0.715833333,237.98897380000002 +2015-12-29 11:00:00,0.0,1022.092833,82.19333333,100.0,5.72775,0.327,237.98718426666665 +2015-12-29 12:00:00,0.0,1022.332833,134.8833333,100.0,8.626333333,0.6276666670000001,237.9855737 +2015-12-29 13:00:00,0.0,1022.5675,146.04166669999998,98.45833333,10.3425,0.38458333299999997,237.98342625 +2015-12-29 14:00:00,0.0,1023.084,79.23333333,97.23333333,7.743916667000001,1.200333333,237.9827104166667 +2015-12-29 15:00:00,0.0,1023.4760000000001,48.32833333,95.95833333,5.548583333,1.205833333,237.98503685 +2015-12-29 16:00:00,0.0,1024.034333,7.989666667000001,99.95833333,4.547166667,0.47766666700000004,237.98467895 +2015-12-29 17:00:00,0.0,1024.6175,0.0,100.0,5.34425,0.5086666670000001,237.98306835000002 +2015-12-29 18:00:00,0.0,1025.109167,0.0,100.0,5.55575,0.610166667,237.98235251666668 +2015-12-29 19:00:00,0.0,1025.483833,0.0,100.0,5.845666667000001,0.4115,237.98181566666668 +2015-12-29 20:00:00,0.0,1025.6085,0.0,100.0,4.883833333,0.515166667,237.9844999833333 +2015-12-29 21:00:00,0.0,1026.058833,0.0,100.0,4.498083333,0.283666667,237.98467891666667 +2015-12-29 22:00:00,0.0,1026.142,0.0,100.0,4.674583333,0.77075,237.98324728333333 +2015-12-29 23:00:00,0.0,1026.233333,0.0,100.0,4.506833333,0.963833333,237.98414209999999 +2015-12-30 00:00:00,0.0,1026.408333,0.0,100.0,4.58675,1.085166667,237.98288938333334 +2015-12-30 01:00:00,0.0,1026.533833,0.0,100.0,4.533583333,1.299833333,237.98271046666665 +2015-12-30 02:00:00,0.0,1026.466667,0.0,99.875,4.489,0.973333333,237.98109986666668 +2015-12-30 03:00:00,0.0,1026.265333,0.0,99.68333333,4.480333333,0.8364166670000001,237.98074193333335 +2015-12-30 04:00:00,0.0,1026.250833,0.0,100.0,4.392583333,0.87325,237.97966825000003 +2015-12-30 05:00:00,0.0,1026.174167,0.0,100.0,4.516583333,0.478916667,237.97913136666668 +2015-12-30 06:00:00,0.0,1025.674333,0.0,99.64166667,4.708916667,1.4365833330000002,237.98074195 +2015-12-30 07:00:00,0.0,1025.625,0.0,97.34166667,4.478166667,1.242333333,237.97841558333334 +2015-12-30 08:00:00,0.0,1025.475167,2.5260833330000003,98.325,4.386666667,0.9268333329999999,237.9775208 +2015-12-30 09:00:00,0.0,1025.5165,15.065,96.38333333,4.405083333,0.968833333,237.97626813333332 +2015-12-30 10:00:00,0.0,1025.241167,25.54916667,94.975,4.889583333,0.696666667,237.97716286666665 +2015-12-30 11:00:00,0.0,1024.7235,34.26083333,95.30833333,5.124333333,0.94625,237.97698391666665 +2015-12-30 12:00:00,0.0,1023.681333,33.2225,95.375,5.405333333,1.7684166669999999,237.9782366166667 +2015-12-30 13:00:00,0.0,1022.615667,34.98666667,93.825,5.280583333,3.10625,237.97752076666666 +2015-12-30 14:00:00,0.0,1021.956833,22.95,93.03333333,4.984666667,2.974166667,237.9766260166667 +2015-12-30 15:00:00,0.0,1021.415833,9.907916667,92.01666667,4.750666667,2.369416667,237.97913140000003 +2015-12-30 16:00:00,0.0,1020.891167,0.9884166670000001,91.41666667,4.5578333330000005,2.290666667,237.98020510000003 +2015-12-30 17:00:00,0.0,1020.5075,0.0,89.6,4.364666667,2.331666667,237.97859451666667 +2015-12-30 18:00:00,0.0,1020.099167,0.0,88.08333333,4.255583333,2.6675,237.97931031666667 +2015-12-30 19:00:00,0.0,1019.591,0.0,87.78333333,4.279333333,2.3056666669999997,237.97734183333333 +2015-12-30 20:00:00,0.0,1018.697667,0.0,90.26666667,4.240333333,1.6811666669999998,237.97662601666664 +2015-12-30 21:00:00,0.0,1017.407333,0.0,92.34166667,4.489,2.035083333,237.97752078333335 +2015-12-30 22:00:00,0.0,1017.191167,0.0,91.125,4.724583333,2.092833333,237.9762681166667 +2015-12-30 23:00:00,0.0,1016.382167,0.0,90.46666667,4.740166667,2.041083333,237.9775208 +2015-12-31 00:00:00,0.0,1015.789833,0.0,89.34166667,4.434583333,3.126833333,237.97644706666668 +2015-12-31 01:00:00,0.0,1015.032667,0.0,90.03333333,3.375083333,3.113833333,237.97859453333334 +2015-12-31 02:00:00,0.0,1014.783,0.0,91.30833333,2.562166667,2.951083333,237.97734183333333 +2015-12-31 03:00:00,0.0,1014.591667,0.0,92.6,2.312416667,2.84325,237.9766260166667 +2015-12-31 04:00:00,0.0,1015.008833,0.0,92.38333333,2.70725,3.4841666669999998,237.9755523 +2015-12-31 05:00:00,0.0,1015.083667,0.0,91.99166667,2.6869166669999998,3.29125,237.97412068333333 +2015-12-31 06:00:00,3.718336992,1015.1585,0.0,94.2,2.504666667,2.920416667,237.97501545 +2015-12-31 07:00:00,3.183975168,1015.325833,0.0,97.74166667,2.516166667,2.5470833330000002,237.97143638333333 +2015-12-31 08:00:00,0.0,1016.001167,0.572416667,100.0,2.972583333,0.848666667,237.97233115000003 +2015-12-31 09:00:00,8.029533288,1016.7260000000001,7.03025,100.0,3.24225,1.12525,237.9716153333333 +2015-12-31 10:00:00,12.98937384,1017.317333,19.44583333,100.0,3.289083333,0.792666667,237.97018369999998 +2015-12-31 11:00:00,13.00936322,1017.742667,36.65,100.0,3.5410000000000004,0.8785,237.9701837 +2015-12-31 12:00:00,0.0,1017.9165,45.1725,100.0,3.7679166669999997,1.122,237.97054160000002 +2015-12-31 13:00:00,0.0,1018.034167,64.7775,100.0,4.233583333,1.0070000000000001,237.96964685 +2015-12-31 14:00:00,0.0,1018.567167,73.1475,100.0,4.481583333000001,1.30775,237.9680362833333 +2015-12-31 15:00:00,0.0,1018.934333,35.21333333,100.0,4.6735,1.056333333,237.96749939999998 +2015-12-31 16:00:00,0.0,1019.392167,3.8624166669999997,100.0,4.3710833330000005,0.84775,237.96928893333336 +2015-12-31 17:00:00,0.0,1019.683667,0.0,100.0,4.00475,1.106333333,237.97072054999998 +2015-12-31 18:00:00,0.0,1019.841833,0.0,100.0,3.94475,0.759916667,237.97054160000002 +2015-12-31 19:00:00,0.0,1020.008667,0.0,100.0,3.5205833330000003,0.617916667,237.97054160000002 +2015-12-31 20:00:00,0.0,1020.309,0.0,100.0,2.96525,0.2635,237.96893103333332 +2015-12-31 21:00:00,0.0,1020.358167,0.0,100.0,2.8035,0.21616666699999998,237.97000475000002 +2015-12-31 22:00:00,0.0,1020.4335,0.0,100.0,2.070916667,0.3805,237.96875208333336 +2015-12-31 23:00:00,0.0,1020.483333,0.0,100.0,1.25875,0.781083333,237.9682152 +2016-01-01 00:00:00,0.0,1020.700667,0.0,100.0,0.829583333,0.755166667,237.96875208333327 +2016-01-01 01:00:00,0.0,1020.983333,0.0,100.0,0.83725,0.47366666700000004,237.96785731666668 +2016-01-01 02:00:00,0.0,1021.042333,0.0,100.0,1.3665,0.46716666700000004,237.96839416666668 +2016-01-01 03:00:00,0.0,1021.4169999999999,0.0,100.0,1.5128333330000001,0.880583333,237.96678359999999 +2016-01-01 04:00:00,0.0,1021.633833,0.0,100.0,1.60975,0.48016666700000005,237.96642566666665 +2016-01-01 05:00:00,0.0,1021.5245,0.0,100.0,1.9251666669999998,0.201583333,237.96696255000003 +2016-01-01 06:00:00,0.0,1021.566333,0.0,100.0,2.1629166669999997,0.092416667,237.96535194999998 +2016-01-01 07:00:00,0.0,1021.333667,0.0,100.0,2.1695833330000003,0.44475,237.96481509999998 +2016-01-01 08:00:00,0.0,1021.659,2.482916667,100.0,2.504416667,0.092583333,237.96499404999997 +2016-01-01 09:00:00,0.0,1022.000333,11.25391667,100.0,3.173833333,0.176083333,237.96535196666665 +2016-01-01 10:00:00,0.0,1021.974667,23.29666667,100.0,3.5773333330000003,0.058166667000000005,237.96535194999998 +2016-01-01 11:00:00,0.0,1021.832833,41.4125,100.0,4.31725,0.194666667,237.96535196666665 +2016-01-01 12:00:00,0.0,1021.3739999999999,51.39333333,100.0,5.09175,0.33316666699999997,237.96517301666665 +2016-01-01 13:00:00,0.0,1020.807333,41.7875,100.0,5.4875,0.763333333,237.96588881666665 +2016-01-01 14:00:00,0.0,1020.324667,27.22,100.0,5.61025,1.265333333,237.96535196666665 +2016-01-01 15:00:00,0.0,1020.141167,14.08166667,100.0,5.596666667,1.153583333,237.96588881666665 +2016-01-01 16:00:00,0.0,1019.774333,3.009666667,100.0,5.519416667000001,0.974583333,237.96821523333332 +2016-01-01 17:00:00,0.0,1019.399167,0.0,100.0,5.363916667,1.3873333330000002,237.96857313333328 +2016-01-01 18:00:00,0.0,1018.6489999999999,0.0,100.0,5.10925,1.40575,237.9689310166667 +2016-01-01 19:00:00,0.0,1017.906667,0.0,100.0,4.898583333,1.957333333,237.97000473333333 +2016-01-01 20:00:00,0.0,1017.174167,0.0,98.75833333,4.69975,2.188416667,237.96839416666668 +2016-01-01 21:00:00,0.0,1016.531833,0.0,97.5,4.356916667,2.393333333,237.96821520000003 +2016-01-01 22:00:00,0.0,1015.865667,0.0,97.73333333,4.278166667,1.6645833330000002,237.9694679 +2016-01-01 23:00:00,0.0,1015.45,0.0,97.6,4.103,1.613666667,237.96928893333333 +2016-02-01 00:00:00,0.0,1014.764667,0.0,95.59166667,3.661333333,1.52825, +2016-02-01 01:00:00,0.0,1013.656667,0.0,96.54166667,3.1575833330000003,1.251583333, +2016-02-01 02:00:00,0.0,1012.948833,0.0,96.86666667,2.757916667,1.298083333, +2016-02-01 03:00:00,0.0,1012.207167,0.0,97.34166667,2.20675,1.74925, +2016-02-01 04:00:00,0.0,1011.7660000000001,0.0,97.16666667,1.967583333,1.5895833330000002, +2016-02-01 05:00:00,0.0,1011.0825,0.0,97.19166667,1.8008333330000001,1.4835, +2016-02-01 06:00:00,0.0,1010.549,0.0,95.95833333,1.6985,1.4589166669999998, +2016-02-01 07:00:00,0.0,1010.3330000000001,0.0,95.725,1.623083333,1.116666667, +2016-02-01 08:00:00,0.0,1009.983333,0.2735,96.61666667,1.57875,1.676166667, +2016-02-01 09:00:00,13.28328547,1009.974833,3.933833333,97.94166667,1.4524166669999998,1.694083333, +2016-02-01 10:00:00,38.37287782,1009.6405,13.99666667,100.0,1.15275,2.03675, +2016-02-01 11:00:00,19.13847732,1009.1665,23.2875,100.0,1.21025,2.009583333, +2016-02-01 12:00:00,13.37066438,1008.8739999999999,22.2175,100.0,1.28975,1.7176666669999998, +2016-02-01 13:00:00,13.25131061,1008.1821669999999,24.6825,100.0,1.446166667,1.5021666669999998, +2016-02-01 14:00:00,8.222482896,1007.800333,15.5625,100.0,1.5390833330000002,1.8808333330000002, +2016-02-01 15:00:00,18.17021162,1007.9751669999999,8.322000000000001,100.0,1.595833333,1.343833333, +2016-02-01 16:00:00,12.90907493,1008.183667,1.35125,100.0,1.4851666669999999,1.142583333, +2016-02-01 17:00:00,15.69742558,1008.4333330000001,0.0,100.0,1.5196666669999999,1.37775, +2016-02-01 18:00:00,30.70437535,1008.358333,0.0,100.0,1.420833333,1.045416667, +2016-02-01 19:00:00,12.57594096,1008.367167,0.0,100.0,1.45675,0.6980833329999999, +2016-02-01 20:00:00,0.0,1008.4665,0.0,100.0,1.481416667,0.534083333, +2016-02-01 21:00:00,0.0,1008.3075,0.0,100.0,1.4676666669999998,1.3540833330000002, +2016-02-01 22:00:00,2.533439352,1008.241667,0.0,100.0,1.554,1.131583333, +2016-02-01 23:00:00,2.62796916,1007.9991669999999,0.0,100.0,1.5743333330000002,1.175833333, +2016-03-01 00:00:00,2.564768472,1007.575,0.0,100.0,1.5680833330000001,1.317416667,238.22424938333333 +2016-03-01 01:00:00,5.3489725439999996,1007.474333,0.0,100.0,1.582583333,1.227,238.2246673 +2016-03-01 02:00:00,2.6551064159999997,1007.1916669999999,0.0,100.0,1.6380000000000001,1.8148333330000002,238.22424938333336 +2016-03-01 03:00:00,0.0,1006.7491669999999,0.0,100.0,1.7190833330000002,1.960833333,238.22487628333332 +2016-03-01 04:00:00,0.0,1006.474167,0.0,100.0,1.7819999999999998,1.5216666669999999,238.22404041666664 +2016-03-01 05:00:00,0.0,1006.0160000000001,0.0,100.0,1.8493333330000001,2.2305,238.22299563333334 +2016-03-01 06:00:00,0.0,1005.532667,0.0,100.0,1.92125,2.425,238.22320458333334 +2016-03-01 07:00:00,3.543984768,1005.149333,0.0,100.0,2.0445,3.0186666669999997,238.22111495000001 +2016-03-01 08:00:00,0.0,1004.808,0.6709999999999999,100.0,2.217666667,2.6005833330000003,238.22132393333334 +2016-03-01 09:00:00,0.0,1004.607667,10.857000000000001,100.0,2.434583333,2.74825,238.21651780000002 +2016-03-01 10:00:00,0.0,1003.998833,47.1925,100.0,2.709166667,3.331666667,238.21526401666668 +2016-03-01 11:00:00,0.0,1003.566167,49.805,100.0,2.821416667,3.562916667,238.21589093333333 +2016-03-01 12:00:00,0.0,1002.873167,54.95666667,100.0,2.9995,3.3185833330000003,238.21672678333334 +2016-03-01 13:00:00,0.0,1001.8985,44.47666667,100.0,3.109,2.6158333330000003,238.21484611666668 +2016-03-01 14:00:00,0.0,1000.9065,34.65833333,100.0,3.239583333,3.093333333,238.21526403333334 +2016-03-01 15:00:00,0.0,1000.182,19.275,100.0,3.09625,2.304083333,238.21651781666665 +2016-03-01 16:00:00,0.0,999.2488332999999,2.4475833330000003,100.0,2.998,1.9784166669999999,238.2167267666667 +2016-03-01 17:00:00,0.0,998.2981667000001,0.0005,100.0,2.758166667,2.7245,238.21944326666667 +2016-03-01 18:00:00,0.0,997.382,0.0,100.0,2.329333333,2.628083333,238.21735365000004 +2016-03-01 19:00:00,0.0,996.2310000000001,0.0,100.0,1.8985833330000002,2.824083333,238.21839846666668 +2016-03-01 20:00:00,0.0,994.8808332999998,0.0,100.0,1.6465833330000001,2.3845,238.21923431666667 +2016-03-01 21:00:00,0.0,993.6071667000001,0.0,100.0,1.4490833330000001,2.2935,238.21902535 +2016-03-01 22:00:00,0.0,992.798,0.0,100.0,1.3719166669999998,1.759416667,238.21986118333334 +2016-03-01 23:00:00,0.0,991.5060000000001,0.0,100.0,1.240333333,2.117,238.22027911666666 +2016-04-01 00:00:00,0.0,990.3733332999999,0.0,100.0,1.0220833329999999,2.1295833330000002,238.63256049999998 +2016-04-01 01:00:00,0.0,989.19,0.0,100.0,0.6355833329999999,1.1905,238.63318736666668 +2016-04-01 02:00:00,0.0,988.1316667000001,0.0,100.0,0.474083333,1.854333333,238.63506801666668 +2016-04-01 03:00:00,0.0,987.3151667000001,0.0,100.0,0.314666667,1.798583333,238.6390383 +2016-04-01 04:00:00,0.0,986.4403332999999,0.0,100.0,0.231083333,1.858916667,238.64070998333332 +2016-04-01 05:00:00,0.0,985.9911667000001,0.0,100.0,0.207,1.748083333,238.64279961666668 +2016-04-01 06:00:00,0.0,985.65,0.0,100.0,0.18591666699999998,1.543333333,238.6427996 +2016-04-01 07:00:00,0.0,985.6666667000002,0.0,100.0,0.215,1.313916667,238.64217273333335 +2016-04-01 08:00:00,0.0,985.7921667000002,0.579916667,100.0,0.30875,1.6095,238.64091895 +2016-04-01 09:00:00,0.0,985.9921667000001,2.99125,100.0,0.441166667,1.65425,238.6411279166667 +2016-04-01 10:00:00,0.0,986.2583332999999,12.7085,100.0,0.718666667,0.84125,238.63799350000002 +2016-04-01 11:00:00,0.0,986.2833332999999,36.79833333,100.0,0.920666667,0.5701666670000001,238.63694869999998 +2016-04-01 12:00:00,20.36236416,986.1498332999998,45.95416667,100.0,1.26825,0.957666667,238.63527698333334 +2016-04-01 13:00:00,17.10956503,986.125,65.42166667,100.0,1.753416667,0.36200000000000004,238.63402323333335 +2016-04-01 14:00:00,7.194975312,986.1246667000001,39.48833333,100.0,1.881666667,0.092333333,238.63193360000005 +2016-04-01 15:00:00,4.867533792,986.2671667000001,22.90333333,100.0,1.8788333330000002,0.38675,238.62984398333333 +2016-04-01 16:00:00,2.466198888,986.434,9.796,100.0,1.871666667,0.183666667,238.6294260666667 +2016-04-01 17:00:00,2.3865511440000002,986.7836667000001,0.039416667,100.0,1.831166667,0.0175,238.62838123333336 +2016-04-01 18:00:00,2.3865511440000002,986.959,0.0,100.0,1.8734166669999999,0.051583332999999995,238.62357515 +2016-04-01 19:00:00,2.406285312,987.3168332999999,0.0,100.0,1.712166667,0.07525,238.61312705 +2016-04-01 20:00:00,0.0,987.5838332999999,0.0,100.0,1.6034166669999999,0.09958333300000001,238.57530498333335 +2016-04-01 21:00:00,2.3865511440000002,987.7838332999999,0.0,100.0,1.55625,0.026916667000000002,238.54040841666668 +2016-04-01 22:00:00,0.0,988.2425,0.0,100.0,1.5534166669999998,0.013083333,238.52160183333334 +2016-04-01 23:00:00,2.3865511440000002,988.3165,0.0,99.525,1.68575,0.095416667,238.51115378333336 +2016-05-01 00:00:00,0.0,988.3501667000002,0.0,97.675,1.6466666669999999,0.003666667,238.14281801666667 +2016-05-01 01:00:00,0.0,988.2078332999998,0.0,97.10833333,1.6984166669999998,0.04425,238.14501453333332 +2016-05-01 02:00:00,2.466360912,988.0918332999998,0.0,100.0,1.22025,0.208666667,238.14501453333332 +2016-05-01 03:00:00,0.0,988.2668332999999,0.0,100.0,1.4835,0.05,238.14501453333332 +2016-05-01 04:00:00,0.0,988.1158332999998,0.0,100.0,1.5309166669999998,0.081333333,238.14366283333334 +2016-05-01 05:00:00,0.0,988.0423332999999,0.0,100.0,1.58625,0.0955,238.14416973333334 +2016-05-01 06:00:00,0.0,988.4085,0.0,100.0,1.799166667,0.17375,238.14281805 +2016-05-01 07:00:00,2.4306890880000003,988.7006667000002,0.0,100.0,2.426916667,0.44425,238.14146633333334 +2016-05-01 08:00:00,0.0,989.0005,2.0716666669999997,99.96666667,2.3658333330000003,1.01725,238.14045253333333 +2016-05-01 09:00:00,0.0,989.4758332999999,22.81975,99.9,3.27025,0.831583333,238.14079046666666 +2016-05-01 10:00:00,0.0,989.8505,72.19,99.01666667,4.27275,2.259833333,238.13926978333333 +2016-05-01 11:00:00,0.0,990.0086667000002,81.74083333,93.45833333,5.585833332999999,1.6434166669999999,238.13876289999996 +2016-05-01 12:00:00,0.0,989.8913332999998,49.24583333,93.2,5.803666667000001,0.9670833329999999,238.1377491333333 +2016-05-01 13:00:00,0.0,989.8663332999998,79.51083333,92.8,6.23425,0.981833333,238.13589051666668 +2016-05-01 14:00:00,0.0,989.8751667000001,50.98,92.68333333,6.471166667,1.0055,238.1360595 +2016-05-01 15:00:00,0.0,990.0173332999999,11.74166667,95.20833333,5.73725,0.941666667,238.1335250333333 +2016-05-01 16:00:00,0.0,990.2503332999999,3.0025,99.49166667,5.056333333,1.5460833330000001,238.13352501666665 +2016-05-01 17:00:00,2.636851608,990.559,0.043166667,100.0,4.5665,1.3395,238.13420086666667 +2016-05-01 18:00:00,0.0,990.8086667000001,0.0,100.0,4.71875,1.238666667,238.13386293333335 +2016-05-01 19:00:00,0.0,991.0585,0.0,100.0,5.01,1.285166667,238.13622846666667 +2016-05-01 20:00:00,0.0,991.192,0.0,100.0,5.069,0.90825,238.13639741666665 +2016-05-01 21:00:00,0.0,991.5588332999998,0.0,100.0,4.88075,0.71375,238.13690431666666 +2016-05-01 22:00:00,0.0,991.8255,0.0,100.0,4.5976666669999995,0.3915,238.13910081666666 +2016-05-01 23:00:00,0.0,992.0171667000001,0.0,100.0,4.304666667,0.094666667,238.13960771666666 +2016-06-01 00:00:00,0.0,992.1415,0.0,100.0,4.2669999999999995,0.4255,238.0933117666667 +2016-06-01 01:00:00,0.0,992.2005,0.0,100.0,4.12475,0.091083333,238.09432553333332 +2016-06-01 02:00:00,2.407170312,992.5843332999999,0.0,100.0,4.180333333,0.230166667,238.09348073333334 +2016-06-01 03:00:00,9.92518164,992.883,0.0,100.0,4.278916667,0.499,238.09196008333333 +2016-06-01 04:00:00,5.075277096000001,992.8668332999998,0.0,100.0,4.1521666669999995,0.518,238.09145316666664 +2016-06-01 05:00:00,0.0,992.8001667000001,0.0,100.0,3.907666667,0.3165,238.0895945666667 +2016-06-01 06:00:00,0.0,993.1003332999999,0.0,100.0,3.953583333,0.040916667000000004,238.08976355000001 +2016-06-01 07:00:00,2.448781992,993.2835,0.0,100.0,4.0105,0.21683333300000002,238.09162213333335 +2016-06-01 08:00:00,0.0,993.5508332999999,1.3276666670000001,100.0,3.9685,0.10016666699999999,238.0929738333333 +2016-06-01 09:00:00,0.0,993.9760000000001,17.69291667,100.0,4.096416667,0.135083333,238.09212903333332 +2016-06-01 10:00:00,2.4050227680000003,994.5921667000001,35.625,100.0,4.8025,0.00675,238.09145316666664 +2016-06-01 11:00:00,0.0,994.6916667000002,94.28083333,100.0,5.438666667000001,0.19625,238.08824285000003 +2016-06-01 12:00:00,0.0,994.7253332999999,70.2525,99.60833333,5.950833332999999,0.21,238.09027043333336 +2016-06-01 13:00:00,0.0,994.7666667000001,34.52166667,99.85,5.966416667000001,0.692083333,238.0909462666667 +2016-06-01 14:00:00,0.0,994.825,19.0125,99.99166667,5.662999999999999,0.8245,238.09128421666665 +2016-06-01 15:00:00,0.0,994.9921667000001,10.84083333,100.0,5.523916667000001,0.72825,238.0919600666667 +2016-06-01 16:00:00,0.0,995.2168332999998,4.82825,100.0,5.35675,0.59475,238.0941566 +2016-06-01 17:00:00,0.0,995.2503332999999,0.048333333,100.0,5.103916667,0.865166667,238.09838064999997 +2016-06-01 18:00:00,0.0,995.6171667000001,0.0,100.0,4.6616666669999995,0.048666667000000004,238.10412540000002 +2016-06-01 19:00:00,0.0,995.9171667000002,0.0,100.0,4.431666667,0.319666667,238.11240461666662 +2016-06-01 20:00:00,0.0,996.2416667000001,0.0,100.0,4.382666667,0.113166667,238.11645975000002 +2016-06-01 21:00:00,0.0,996.1753332999999,0.0,100.0,4.267166667,0.0,238.11798043333337 +2016-06-01 22:00:00,0.0,996.0328332999999,0.0,100.0,4.30425,0.195,238.11781145 +2016-06-01 23:00:00,0.0,995.9163332999999,0.0,100.0,4.32125,0.254333333,238.1171356 +2016-07-01 00:00:00,0.0,995.8838332999999,0.0,100.0,3.906666667,0.44841666700000005,238.0760123166667 +2016-07-01 01:00:00,0.0,995.9581667000001,0.0,100.0,3.7393333330000003,0.205833333,238.07422136666665 +2016-07-01 02:00:00,0.0,996.2505,0.0,100.0,3.502583333,0.07925,238.0738234 +2016-07-01 03:00:00,0.0,996.2583332999999,0.0,99.93333333,3.69475,0.4865,238.0750173333333 +2016-07-01 04:00:00,0.0,995.857,0.0,99.93333333,3.992166667,1.1625,238.07859921666667 +2016-07-01 05:00:00,0.0,995.3156667000002,0.0,100.0,4.311666667,1.28475,238.07740525 +2016-07-01 06:00:00,0.0,994.8328332999998,0.0,100.0,4.141083333,0.591916667,238.07521633333337 +2016-07-01 07:00:00,0.0,994.3403332999999,0.0,100.0,4.039166667,1.4195,238.07282843333334 +2016-07-01 08:00:00,0.0,993.8330000000001,2.8355,99.80833333,4.2235833330000006,2.169333333,238.0726294 +2016-07-01 09:00:00,0.0,993.4495,21.57166667,98.31666667,4.483166667,2.6885,238.07203243333336 +2016-07-01 10:00:00,0.0,992.8225,48.67,97.21666667,4.479666667,2.7935,238.07024149999998 +2016-07-01 11:00:00,0.0,991.3653332999999,94.78083333,96.84166667,4.779,2.102083333,238.06785358333335 +2016-07-01 12:00:00,0.0,990.7236667000001,81.24,94.725,5.142333333,1.133333333,238.06825155 +2016-07-01 13:00:00,0.0,989.6475,46.62833333,95.93333333,5.309666667,0.816083333,238.06884856666667 +2016-07-01 14:00:00,0.0,988.3988332999999,27.31083333,94.50833333,5.359916667,2.1375,238.06347573333335 +2016-07-01 15:00:00,26.72051426,987.9921667000001,11.33325,99.04166667,4.621583333,2.912583333,238.06387371666668 +2016-07-01 16:00:00,30.98498839,988.5258332999998,2.842083333,98.39166667,4.053833333,3.625833333,238.06248075000005 +2016-07-01 17:00:00,6.96549372,988.8,0.098166667,99.03333333,3.4579166669999997,2.872,238.06009283333336 +2016-07-01 18:00:00,7.111935192000001,988.5995,0.0,99.19166667,3.566583333,3.191166667,238.0585009 +2016-07-01 19:00:00,3.723191448,988.6505,0.0,98.51666667,4.182166667,2.6011666669999998,238.05949585000005 +2016-07-01 20:00:00,3.265987248,988.9588332999999,0.0,95.03333333,5.9865,2.505666667,238.0618837833334 +2016-07-01 21:00:00,15.49523568,989.8616667000001,0.0,93.875,6.4356666670000005,2.526583333,238.06546565 +2016-07-01 22:00:00,0.0,991.9021667000002,0.0,86.85,6.016,2.825166667,238.06646061666666 +2016-07-01 23:00:00,0.0,993.1358332999998,0.0,87.95833333,5.390333332999999,2.621083333,238.0650676666667 +2016-08-01 00:00:00,0.0,994.3766667000001,0.0,89.00833333,4.805833333,2.223166667,237.92796125000004 +2016-08-01 01:00:00,0.0,995.2093332999999,0.0,86.96666667,4.786833333,2.670833333,237.92995118333332 +2016-08-01 02:00:00,0.0,996.0848332999999,0.0,87.89166667,4.8865,2.111166667,237.93174211666667 +2016-08-01 03:00:00,0.0,996.6093332999999,0.0,89.85,4.196333333,1.6020833330000002,237.93393104999998 +2016-08-01 04:00:00,0.0,997.3175,0.0,89.71666667,3.802916667,1.307583333,237.93671698333333 +2016-08-01 05:00:00,0.0,997.7919999999999,0.0,89.86666667,3.28625,0.998,237.93711498333334 +2016-08-01 06:00:00,0.0,998.1851667000001,0.0,89.69166667,3.303416667,1.393,237.93711496666666 +2016-08-01 07:00:00,0.0,998.9760000000001,0.0,89.16666667,2.69825,0.961666667,237.93890591666664 +2016-08-01 08:00:00,0.0,999.6093332999999,3.5915,89.94166667,1.8105,0.1875,237.93810993333332 +2016-08-01 09:00:00,0.0,1000.359333,16.12833333,89.525,3.417,0.949916667,237.93731395 +2016-08-01 10:00:00,0.0,1000.775333,60.16833333,85.40833333,5.25975,1.607083333,237.93134415 +2016-08-01 11:00:00,0.0,1001.017167,84.765,83.33333333,6.127000000000001,1.23525,237.92676733333334 +2016-08-01 12:00:00,0.0,1001.016333,155.55,80.2175,6.553083332999999,1.75,237.92059849999998 +2016-08-01 13:00:00,0.0,1000.6155,167.7416667,75.21333333,7.374333332999999,1.2930000000000001,237.91622065 +2016-08-01 14:00:00,0.0,999.9075,136.875,68.20166667,8.568333333,0.49725,237.91124581666668 +2016-08-01 15:00:00,0.0,999.6255,79.48333333,68.33583333,6.909833333,0.37291666700000003,237.90686796666668 +2016-08-01 16:00:00,0.0,999.7911667000001,8.046,85.61083333,2.714916667,0.11641666699999999,237.90646998333332 +2016-08-01 17:00:00,0.0,999.9505,0.09066666699999999,97.925,0.38541666700000005,0.023583332999999998,237.90388308333334 +2016-08-01 18:00:00,0.0,999.8663332999998,0.0,100.0,-0.698583333,0.134,237.90328609999997 +2016-08-01 19:00:00,0.0,1000.050667,0.0,100.0,-1.01975,0.131833333,237.90348508333332 +2016-08-01 20:00:00,0.0,1000.116333,0.0,100.0,-1.5715,0.161333333,237.90467903333334 +2016-08-01 21:00:00,0.0,1000.116333,0.0,100.0,-2.09725,0.08483333300000001,237.90706698333335 +2016-08-01 22:00:00,0.0,999.8248332999999,0.0,100.0,-2.4441666669999997,0.12375,237.90945488333332 +2016-08-01 23:00:00,0.0,999.8668332999998,0.0,100.0,-2.66675,0.13125,237.91084783333335 +2016-09-01 00:00:00,0.0,999.7748332999998,0.0,100.0,-2.374083333,0.043833332999999995,237.89851025 +2016-09-01 01:00:00,0.0,999.7838332999999,0.0,100.0,-1.8831666669999998,0.044333332999999996,237.89910721666664 +2016-09-01 02:00:00,0.0,1000.008,0.0,100.0,-1.714083333,0.042833333,237.90069919999996 +2016-09-01 03:00:00,0.0,999.7669999999999,0.0,100.0,-2.0245833330000003,0.135583333,237.90368406666667 +2016-09-01 04:00:00,0.0,999.6911667000002,0.0,100.0,-2.4495,0.29825,237.90547503333335 +2016-09-01 05:00:00,0.0,999.5491667000001,0.0,100.0,-2.370666667,0.147833333,237.90766395 +2016-09-01 06:00:00,0.0,999.1583332999999,0.0,100.0,-2.625,0.145166667,237.90985286666668 +2016-09-01 07:00:00,0.0,999.2005,0.0,100.0,-2.464,0.09916666699999999,237.90806193333333 +2016-09-01 08:00:00,0.0,999.5003332999999,1.9105,100.0,-2.3233333330000003,0.070916667,237.9068679833333 +2016-09-01 09:00:00,0.0,999.7,21.89166667,100.0,-1.985416667,0.0515,237.90547503333335 +2016-09-01 10:00:00,0.0,999.6496667000001,43.64333333,100.0,-1.78425,0.153166667,237.9026891 +2016-09-01 11:00:00,0.0,999.3243332999999,71.64166667,100.0,-1.21025,0.20125,237.89751528333332 +2016-09-01 12:00:00,0.0,998.6988332999998,79.68,100.0,-0.480833333,0.137166667,237.89353543333334 +2016-09-01 13:00:00,2.388677184,998.3915,66.49583333,100.0,0.356833333,0.252916667,237.88875958333335 +2016-09-01 14:00:00,0.0,998.2083332999998,48.14833333,100.0,1.3708333330000002,0.6333333329999999,237.88557569999998 +2016-09-01 15:00:00,0.0,998.1495,25.08916667,100.0,1.4311666669999998,0.11733333300000001,237.87980486666666 +2016-09-01 16:00:00,0.0,998.2755,4.1754166669999995,100.0,1.54675,0.253916667,237.875626 +2016-09-01 17:00:00,0.0,998.0908332999999,0.030583332999999997,100.0,1.52925,0.014666667,237.87423303333333 +2016-09-01 18:00:00,0.0,997.6239999999999,0.0,100.0,1.6498333330000001,0.024083333,237.8726411 +2016-09-01 19:00:00,0.0,997.0246667000001,0.0,100.0,2.173083333,1.003333333,237.8680642833333 +2016-09-01 20:00:00,0.0,996.791,0.0,100.0,2.453666667,0.91775,237.86886023333332 +2016-09-01 21:00:00,0.0,996.1903332999999,0.0,100.0,2.792333333,1.777166667,237.86866124999997 +2016-09-01 22:00:00,0.0,995.3825,0.0,100.0,3.0099166669999997,1.9380000000000002,237.86965621666664 +2016-09-01 23:00:00,0.0,995.166,0.0,100.0,3.52675,1.944833333,237.86945721666666 +2016-10-01 00:00:00,0.0,994.6906667000002,0.0,100.0,4.060083333,3.161333333,237.88624836666668 +2016-10-01 01:00:00,0.0,993.8731667000002,0.0,100.0,4.18775,3.055583333,237.88935360000002 +2016-10-01 02:00:00,0.0,992.757,0.0,100.0,4.117916667,3.216416667,237.89016033333328 +2016-10-01 03:00:00,0.0,991.9818332999998,0.0,100.0,4.313583333,1.692083333,237.89195260000005 +2016-10-01 04:00:00,0.0,991.2738332999999,0.0,99.85,4.727583333,2.631333333,237.89305991666666 +2016-10-01 05:00:00,0.0,990.3488332999999,0.0,97.79166667,5.360083333,3.621416667,237.89407389999997 +2016-10-01 06:00:00,12.31408457,989.9580000000001,0.0,99.65833333,5.26475,3.48125,237.89587726666664 +2016-10-01 07:00:00,0.0,989.4496667000001,0.0,99.99166667,4.876,2.543,237.89800801666664 +2016-10-01 08:00:00,2.575062024,989.7423332999998,2.4386666669999997,95.475,5.139416667,1.246916667,237.90018943333334 +2016-10-01 09:00:00,0.0,990.3761667000001,16.43241667,92.65833333,6.7829999999999995,2.2174166669999997,237.9012730166667 +2016-10-01 10:00:00,0.0,990.9338332999998,68.77166667,89.96666667,7.52825,2.64775,237.90414413333335 +2016-10-01 11:00:00,0.0,990.9995,89.7,84.56666667,8.373333333,2.847916667,237.90573866666662 +2016-10-01 12:00:00,0.0,991.1421667000001,172.51,77.14416667,9.158333333,2.17875,237.90845316666665 +2016-10-01 13:00:00,0.0,991.209,118.7125,73.64833333,8.427666667,2.099,237.91060451666667 +2016-10-01 14:00:00,0.0,991.015,79.08166667,76.43666667,8.001,0.624416667,237.91349144999995 +2016-10-01 15:00:00,0.0,990.6748332999998,38.23333333,81.42833333,7.488833333,1.9891666669999999,237.91636414999996 +2016-10-01 16:00:00,0.0,990.0828332999998,6.78225,85.49166667,6.035916667,2.872583333,237.91969874999998 +2016-10-01 17:00:00,0.0,989.7658332999998,0.055916667,89.20833333,5.78125,2.367333333,237.92302226666666 +2016-10-01 18:00:00,27.48757188,989.5911667000001,0.0,96.96666667,5.7496666670000005,2.039083333,237.92494424999998 +2016-10-01 19:00:00,31.9838592,989.3246667000001,0.0,97.00833333,5.677833333,1.72225,237.92904448333334 +2016-10-01 20:00:00,17.16389062,989.3836667000002,0.0,96.05,5.406333332999999,1.453,237.92993190000004 +2016-10-01 21:00:00,2.715575064,989.3506667000001,0.0,96.49166667,5.208083333,1.078666667,237.93231421666667 +2016-10-01 22:00:00,0.0,989.8919999999999,0.0,96.58333333,5.1165,0.961666667,237.9329359 +2016-10-01 23:00:00,0.0,990.1510000000001,0.0,96.33333333,5.273166667,1.263,237.93496545000002 +2016-11-01 00:00:00,0.0,990.5161667000001,0.0,95.7,5.313583333,1.30075,238.00109113333335 +2016-11-01 01:00:00,0.0,990.1666667000002,0.0,97.625,5.012583333,0.61125,237.99942545000002 +2016-11-01 02:00:00,0.0,990.0578332999999,0.0,99.975,4.6514166669999994,1.002583333,237.99754613333332 +2016-11-01 03:00:00,0.0,989.5239999999999,0.0,99.725,3.57125,0.48100000000000004,237.99783246666667 +2016-11-01 04:00:00,0.0,989.0073332999999,0.0,100.0,2.42125,1.5445,237.99733416666666 +2016-11-01 05:00:00,0.0,988.0895,0.0,100.0,2.004416667,1.1109166670000001,237.99868033333328 +2016-11-01 06:00:00,0.0,986.9069999999999,0.0,100.0,1.05325,0.34625,237.9997291333333 +2016-11-01 07:00:00,0.0,986.45,0.0,100.0,2.5910833330000003,1.87275,237.99991579999997 +2016-11-01 08:00:00,0.0,986.4745,1.075916667,100.0,3.5019166669999997,1.591083333,237.99895086666672 +2016-11-01 09:00:00,0.0,986.3161667000002,14.03733333,100.0,4.2786666669999995,1.595083333,238.00008824999998 +2016-11-01 10:00:00,0.0,986.008,29.71583333,100.0,4.7935,2.052083333,237.99888754999998 +2016-11-01 11:00:00,3.1195930080000003,985.9998332999999,31.665,96.28333333,5.2515,3.28,237.9983608 +2016-11-01 12:00:00,3.2492038560000003,985.082,42.41583333,95.68333333,4.90675,3.261333333,237.99900938333334 +2016-11-01 13:00:00,0.0,984.2985,68.04166667,94.96666667,4.838416667,3.44875,237.99878318333336 +2016-11-01 14:00:00,0.0,983.5151667000001,56.38583333,95.58333333,4.773333333,3.206833333,237.9977834 +2016-11-01 15:00:00,0.0,983.008,15.85808333,97.125,4.59575,2.841333333,238.00024480000002 +2016-11-01 16:00:00,25.4532667,982.7669999999999,2.475083333,99.225,4.394083333,2.423833333,238.00151350000002 +2016-11-01 17:00:00,8.876747544,982.7663332999998,0.0,98.90833333,4.1215,1.9180833330000002,238.0020624166667 +2016-11-01 18:00:00,0.0,982.8003332999999,0.0,95.95,4.5565,1.31875,238.00285335 +2016-11-01 19:00:00,2.7118207439999997,983.0996667000002,0.0,95.03333333,5.303416667,1.265583333,238.00261923333335 +2016-11-01 20:00:00,2.5476776880000003,983.2175,0.0,95.43333333,5.300333333,1.186,238.0016938166667 +2016-11-01 21:00:00,14.430833999999999,983.45,0.0,96.64166667,5.444583333,1.6546666669999999,238.00191845000003 +2016-11-01 22:00:00,16.59430678,983.7678332999999,0.0,96.325,5.465416667,2.569833333,238.00115125000002 +2016-11-01 23:00:00,19.20247901,984.493,0.0,97.53333333,5.3795,2.3624166669999997,237.99999650000004 +2016-12-01 00:00:00,0.0,985.1426667000002,0.0,94.59166667,5.5920000000000005,2.533833333, +2016-12-01 01:00:00,3.08466264,985.6336667000002,0.0,94.025,5.321583333,1.884333333, +2016-12-01 02:00:00,0.0,985.8,0.0,94.91666667,4.98225,1.777916667, +2016-12-01 03:00:00,3.54850368,985.9088332999999,0.0,95.61666667,4.81625,1.54375, +2016-12-01 04:00:00,0.0,986.1003332999999,0.0,96.26666667,4.5615,1.226916667, +2016-12-01 05:00:00,0.0,986.5765,0.0,95.69166667,4.484,1.722833333, +2016-12-01 06:00:00,2.98702008,987.552,0.0,97.4,4.616083333,1.9778333330000002, +2016-12-01 07:00:00,5.40668904,988.7855,0.0,97.2,4.564416667,0.963, +2016-12-01 08:00:00,17.42749068,990.0931667000001,0.729916667,98.13333333,4.340333333,1.75725, +2016-12-01 09:00:00,2.72934408,990.9766667000001,11.26925,98.43333333,4.042083333,0.83975, +2016-12-01 10:00:00,0.0,991.6926667000001,50.33833333,94.99166667,4.852083333,1.5645, +2016-12-01 11:00:00,0.0,992.3256667000002,82.29083333,93.75833333,5.556916667,2.0531666669999997, +2016-12-01 12:00:00,0.0,991.1593332999998,73.18416667,92.71666667,6.036416667,2.602416667, +2016-12-01 13:00:00,0.0,998.1665,90.83916667,89.25,6.486916667000001,1.908833333, +2016-12-01 14:00:00,0.0,997.9108156,79.36333333,84.075,6.6325,1.9055,238.05014515 +2016-12-01 15:00:00,0.0,997.8200134,45.63583333,85.75833333,6.468833332999999,1.8906666669999999,238.0466713666667 +2016-12-01 16:00:00,0.0,997.8391964,10.53441667,84.09166667,6.087833333,2.195583333,238.04576970000002 +2016-12-01 17:00:00,0.0,997.8583794,0.15458333300000002,86.64166667,5.549333333,2.04775,238.047505 +2016-12-01 18:00:00,0.0,997.8775625,0.0,88.0,5.252916667,2.6205,238.04826908333334 +2016-12-01 19:00:00,0.0,997.8967455,0.0,89.275,4.578416667,2.18375,238.04691658333334 +2016-12-01 20:00:00,0.0,997.9159285000001,0.0,88.13333333,4.1575,2.2886666669999998,238.0483355166667 +2016-12-01 21:00:00,0.0,997.9351116,0.0,87.41666667,4.17175,2.440666667,238.04884171666671 +2016-12-01 22:00:00,0.0,997.9542946,0.0,86.24166667,4.5425833330000005,2.8710000000000004,238.04841618333333 +2016-12-01 23:00:00,3.00702192,997.9734776,0.0,87.61666667,4.3915,2.0611666669999997,238.04877528333336 +2016-01-13 00:00:00,0.0,997.9926607000001,0.0,87.90833333,4.677,2.64775, +2016-01-13 01:00:00,0.0,998.0118437000001,0.0,88.59166667,4.57575,3.039166667, +2016-01-13 02:00:00,0.0,998.0310267000001,0.0,86.75,4.679083333,3.252916667, +2016-01-13 03:00:00,4.071715728,998.0502097000001,0.0,87.75,4.720416667,3.4695, +2016-01-13 04:00:00,35.00517396,998.0693928,0.0,94.93333333,3.978583333,3.4841666669999998, +2016-01-13 05:00:00,24.55737816,998.0885758,0.0,96.21666667,3.94625,3.988416667, +2016-01-13 06:00:00,4.1727330480000004,998.1077587999999,0.0,97.49166667,3.8130833330000002,3.794333333, +2016-01-13 07:00:00,3.5372227919999997,998.1269419,0.0,97.89166667,4.068833333,2.759833333, +2016-01-13 08:00:00,0.0,998.1461249,1.1995,98.06666667,4.336333333,2.2494166669999998, +2016-01-13 09:00:00,0.0,998.165308,23.601,91.75,5.304333333,2.83475, +2016-01-13 10:00:00,0.0,998.184491,92.8675,87.99166667,5.552083333,3.06925, +2016-01-13 11:00:00,0.0,998.203674,93.35333333,83.65,6.088083332999999,2.0460833330000003, +2016-01-13 12:00:00,0.0,998.2228571,73.20916667,85.425,6.002166667000001,2.0870833330000003, +2016-01-13 13:00:00,0.0,998.2420401,84.29,84.21666667,6.696833333,2.206833333, +2016-01-13 14:00:00,3.1072643039999996,998.2612231,46.34083333,94.93333333,5.195166667,1.88, +2016-01-13 15:00:00,0.0,998.2804062000001,20.21583333,97.79166667,4.315,1.519333333, +2016-01-13 16:00:00,0.0,998.2995892000001,4.693416667,97.05833333,4.450333333000001,1.281666667, +2016-01-13 17:00:00,0.0,998.3187722000001,0.08741666699999999,94.00833333,4.46225,1.3349166670000001, +2016-01-13 18:00:00,0.0,998.3379552000001,0.0,90.83333333,4.600833333,1.8639166669999998, +2016-01-13 19:00:00,0.0,998.3571383,0.0,89.31666667,4.4880833330000005,1.93575, +2016-01-13 20:00:00,0.0,998.3763213,0.0,89.55,4.029083333,1.8425, +2016-01-13 21:00:00,0.0,998.3955043,0.0,89.81666667,3.536,2.11875, +2016-01-13 22:00:00,0.0,998.4146873999999,0.0,91.05,3.091,2.413833333, +2016-01-13 23:00:00,0.0,998.4338704,0.0,92.775,2.627416667,2.36825, +2016-01-14 00:00:00,0.0,998.4530534,0.0,93.0,2.08525,2.11725, +2016-01-14 01:00:00,0.0,998.4722365,0.0,93.56666667,1.5043333330000002,1.46825, +2016-01-14 02:00:00,0.0,998.4914195,0.0,97.50833333,0.6555833329999999,1.0225, +2016-01-14 03:00:00,0.0,998.5106025,0.0,95.11666667,0.685583333,0.799666667, +2016-01-14 04:00:00,0.0,998.5297856000001,0.0,98.9,-1.250666667,0.08416666699999999, +2016-01-14 05:00:00,0.0,998.5489686000001,0.0,97.58333333,-0.9824166670000001,1.051583333, +2016-01-14 06:00:00,0.0,998.5681516000001,0.0,100.0,-0.143416667,2.0365833330000003, +2016-01-14 07:00:00,0.0,998.5873347000002,0.0014166670000000001,100.0,0.07675,2.02425, +2016-01-14 08:00:00,0.0,998.6065177000002,5.794416667,100.0,-0.307666667,1.578416667, +2016-01-14 09:00:00,0.0,998.6257007000002,42.66083333,99.94166667,0.38733333299999995,1.8041666669999998, +2016-01-14 10:00:00,0.0,998.6448838,73.96333333,95.275,1.7608333330000001,3.7155, +2016-01-14 11:00:00,0.0,998.6640668,113.775,92.23333333,1.90625,2.596833333, +2016-01-14 12:00:00,0.0,998.6832498,96.6,94.4,2.4481666669999997,1.8225, +2016-01-14 13:00:00,0.0,998.7024329,108.18333329999999,92.58333333,3.0405833330000003,1.7828333330000001, +2016-01-14 14:00:00,0.0,998.7216159,55.5825,89.18333333,3.368833333,1.991166667, +2016-01-14 15:00:00,0.0,998.7407989,15.075999999999999,81.99166667,3.576833333,2.097333333, +2016-01-14 16:00:00,3.08601036,998.759982,3.104166667,89.275,3.131583333,2.5829166669999997, +2016-01-14 17:00:00,12.83441338,998.779165,0.028666667000000003,99.01666667,1.9431666669999998,0.885333333, +2016-01-14 18:00:00,2.409992832,998.798348,0.0,99.45833333,0.8975,0.10025, +2016-01-14 19:00:00,5.379253632,998.8175311000001,0.0,97.975,1.336083333,1.541916667, +2016-01-14 20:00:00,0.0,998.8367141000001,0.0,96.04166667,1.3528333330000002,1.333416667, +2016-01-14 21:00:00,5.282483544,998.8558971000001,0.0,98.09166667,1.138416667,1.3666666669999998, +2016-01-14 22:00:00,5.122903104,998.8750802000001,0.0,95.64166667,1.263583333,0.89725, +2016-01-14 23:00:00,0.0,998.8942632000001,0.0,94.675,2.184333333,1.6913333330000002, +2016-01-15 00:00:00,2.880964032,998.9134462000001,0.0,93.625,2.441833333,1.831083333, +2016-01-15 01:00:00,0.0,998.9326292999999,0.0,91.18333333,2.61975,1.985416667, +2016-01-15 02:00:00,0.0,998.9518122999999,0.0,88.75833333,2.6404166669999998,2.4474166669999997, +2016-01-15 03:00:00,0.0,998.9709953,0.0,85.60833333,2.7559166669999997,1.9675, +2016-01-15 04:00:00,0.0,998.9901784,0.0,94.125,1.9978333330000002,1.58375, +2016-01-15 05:00:00,5.419703352000001,999.0093614,0.0,99.35,1.121083333,1.833166667, +2016-01-15 06:00:00,0.0,999.0285444,0.0,98.25,1.13025,2.5678333330000003, +2016-01-15 07:00:00,0.0,999.0477274,0.0,98.21666667,1.195,2.2766666669999998, +2016-01-15 08:00:00,8.096074799999998,999.0669105000001,3.80175,99.70833333,1.116416667,1.8095, +2016-01-15 09:00:00,19.1619725,999.0860935000001,4.92125,100.0,0.8995833329999999,1.9113333330000002, +2016-01-15 10:00:00,17.16926098,999.1052765000001,28.5525,100.0,1.150666667,2.5789166669999997, +2016-01-15 11:00:00,2.668886304,999.1244596000001,23.96675,99.80833333,1.304,1.795833333, +2016-01-15 12:00:00,2.6427697919999997,999.1436426000001,38.098,100.0,1.334083333,1.557, +2016-01-15 13:00:00,0.0,999.1628256000001,51.85416667,99.45833333,1.776083333,1.2744166670000001, +2016-01-15 14:00:00,0.0,999.1820087000001,33.79083333,98.94166667,1.926333333,1.422166667, +2016-01-15 15:00:00,0.0,999.2011917000001,20.1875,99.04166667,1.81975,1.275, +2016-01-15 16:00:00,0.0,999.2203747000001,5.8915,98.7,1.964166667,1.1335, +2016-01-15 17:00:00,0.0,999.2395578,0.170583333,99.20833333,1.764,0.931333333, +2016-01-15 18:00:00,0.0,999.2587407999999,0.0,99.35833333,1.577166667,0.6605, +2016-01-15 19:00:00,0.0,999.2779237999999,0.0,98.09166667,1.7435833330000001,1.236083333, +2016-01-15 20:00:00,0.0,999.2971069,0.0,97.38333333,1.819166667,1.202333333, +2016-01-15 21:00:00,0.0,999.3162899,0.0,97.925,1.286166667,1.274916667, +2016-01-15 22:00:00,2.7150192960000004,999.3354729,0.0,94.96666667,1.6266666669999998,2.0598333330000003, +2016-01-15 23:00:00,0.0,999.3546560000001,0.0,93.30833333,1.459583333,2.023416667, +2016-01-16 00:00:00,2.6208138,999.3738390000001,0.0,92.71666667,1.25475,1.451583333, +2016-01-16 01:00:00,0.0,999.3930220000001,0.0,95.075,1.1125,0.687916667, +2016-01-16 02:00:00,0.0,999.4122051,0.0,95.90833333,1.116666667,0.774, +2016-01-16 03:00:00,0.0,999.4313881,0.0,97.56666667,0.923333333,0.37991666700000004, +2016-01-16 04:00:00,0.0,999.4505711000002,0.0,95.9,0.7915,0.402, +2016-01-16 05:00:00,0.0,999.4697542000001,0.0,97.775,0.473083333,0.681666667, +2016-01-16 06:00:00,0.0,999.4889372000001,0.0,96.89166667,0.586333333,0.558083333, +2016-01-16 07:00:00,0.0,999.5081202,0.0,95.4,0.5155833329999999,0.42458333299999995, +2016-01-16 08:00:00,0.0,999.5273032,2.3330833330000003,97.33333333,0.521,0.717333333, +2016-01-16 09:00:00,0.0,999.5464863,32.62583333,96.19166667,0.9405,1.261, +2016-01-16 10:00:00,0.0,999.5656693,59.11916667,92.95,1.499333333,0.912083333, +2016-01-16 11:00:00,0.0,999.5848524,87.43333333,92.6,1.956666667,1.534083333, +2016-01-16 12:00:00,0.0,999.6040354,89.83666667,98.65,2.261583333,2.304583333, +2016-01-16 13:00:00,0.0,999.6232184,110.45666670000001,96.325,2.443166667,2.879166667, +2016-01-16 14:00:00,2.860892088,999.6424015,47.86833333,93.38333333,2.5691666669999997,2.8881666669999997, +2016-01-16 15:00:00,2.9543291760000003,999.6615845000001,23.29,99.04166667,1.428833333,3.0035, +2016-01-16 16:00:00,0.0,999.6807675000001,2.790083333,95.15,1.8560833330000002,1.976, +2016-01-16 17:00:00,0.0,999.6999505000001,0.06525,91.08333333,2.128166667,2.253833333, +2016-01-16 18:00:00,0.0,999.7191336000001,0.0,94.825,1.4351666669999998,2.019083333, +2016-01-16 19:00:00,0.0,999.7383166000001,0.0,88.225,1.5474166669999998,3.192916667, +2016-01-16 20:00:00,0.0,999.7574996,0.0,85.03333333,1.0375,3.1349166669999997, +2016-01-16 21:00:00,0.0,999.7766826999999,0.0,89.525,0.317,1.3668333330000002, +2016-01-16 22:00:00,0.0,999.7958656999999,0.0,91.9,0.148416667,0.8118333329999999, +2016-01-16 23:00:00,0.0,999.8150486999999,0.0,93.725,0.309916667,1.4509999999999998, +2016-01-17 00:00:00,0.0,999.8342318,0.0,98.11666667,-0.26675,1.268166667, +2016-01-17 01:00:00,0.0,999.8534148,0.0,93.55,-0.16375,1.179166667, +2016-01-17 02:00:00,0.0,999.8725978,0.0,92.925,-0.073916667,1.14575, +2016-01-17 03:00:00,0.0,999.8917809000001,0.0,97.36666667,-0.5135,1.0065, +2016-01-17 04:00:00,0.0,999.9109639000001,0.0,99.325,-0.47708333299999994,1.227083333, +2016-01-17 05:00:00,0.0,999.9301469000001,0.0,98.81666667,-0.609166667,1.137333333, +2016-01-17 06:00:00,0.0,999.94933,0.0,97.04166667,-0.98725,1.867083333, +2016-01-17 07:00:00,0.0,999.968513,0.0019166670000000002,93.8,-1.4716666669999998,0.9913333329999999, +2016-01-17 08:00:00,0.0,999.9876960000001,4.5655,94.44166667,-1.6930833330000001,1.3501666669999999, +2016-01-17 09:00:00,0.0,1000.0068789999999,28.585,92.85,-1.148416667,1.177, +2016-01-17 10:00:00,0.0,1000.0260619999999,65.58166667,89.60833333,-0.7475,1.995416667, +2016-01-17 11:00:00,0.0,1000.0452449999999,92.55333333,89.08333333,-0.321833333,2.85225, +2016-01-17 12:00:00,0.0,1000.0644279999999,145.6741667,79.02916667,0.206583333,3.3704166669999998, +2016-01-17 13:00:00,0.0,1000.0836109999999,203.19666669999998,74.01166667,0.259916667,3.134, +2016-01-17 14:00:00,0.0,1000.1027939999999,58.91333333,76.44083333,-0.23600000000000002,2.757166667, +2016-01-17 15:00:00,0.0,1000.1219769999999,30.53916667,79.87083333,-0.4805,2.29625, +2016-01-17 16:00:00,0.0,1000.14116,4.773166667,79.72916667,-0.553666667,1.64625, +2016-01-17 17:00:00,0.0,1000.160343,0.2335,75.79083333,-0.743416667,2.439666667, +2016-01-17 18:00:00,0.0,1000.179526,0.0,71.40083333,-0.9570000000000001,2.241083333, +2016-01-17 19:00:00,0.0,1000.198709,0.0,70.0575,-1.139833333,1.755, +2016-01-17 20:00:00,0.0,1000.217892,0.0,76.1175,-1.2335,1.022166667, +2016-01-17 21:00:00,0.0,1000.237076,0.0,83.5275,-1.6524166669999998,0.292666667, +2016-01-17 22:00:00,0.0,1000.256259,0.0,87.69166667,-2.04025,0.08941666699999999, +2016-01-17 23:00:00,0.0,1000.275442,0.0,91.64166667,-2.258666667,0.197583333, +2016-01-18 00:00:00,0.0,1000.294625,0.0,92.19166667,-3.552833333,0.257, +2016-01-18 01:00:00,0.0,1000.313808,0.0,94.25833333,-5.520166667000001,0.2085, +2016-01-18 02:00:00,0.0,1000.332991,0.0,96.93333333,-6.564,0.196833333, +2016-01-18 03:00:00,0.0,1000.352174,0.0,98.38333333,-7.2329166670000005,0.15383333300000002, +2016-01-18 04:00:00,0.0,1000.371357,0.0,98.5,-7.53375,0.12875, +2016-01-18 05:00:00,0.0,1000.39054,0.0,98.75,-8.188083333,0.0425, +2016-01-18 06:00:00,0.0,1000.4097230000001,0.0,99.23333333,-8.494166667,0.08008333299999999, +2016-01-18 07:00:00,0.0,1000.4289060000001,0.014583333,99.04166667,-8.759166667,0.017833333, +2016-01-18 08:00:00,0.0,1000.4480890000001,4.8245833330000005,98.88333333,-8.861666667,0.030666667, +2016-01-18 09:00:00,0.0,1000.4672720000001,20.09583333,98.63333333,-6.928,0.03975, +2016-01-18 10:00:00,0.0,1000.4864550000001,92.34083333,98.825,-4.3230833330000005,0.35808333299999995, +2016-01-18 11:00:00,0.0,1000.5056380000001,119.96666670000002,91.40833333,-2.121,0.5515, +2016-01-18 12:00:00,0.0,1000.5248210000001,189.45,86.025,-2.242166667,1.318833333, +2016-01-18 13:00:00,0.0,1000.5440039999999,195.6416667,81.20833333,-1.195416667,1.250333333, +2016-01-18 14:00:00,0.0,1000.563187,178.075,79.86833333,-1.46975,1.28175, +2016-01-18 15:00:00,0.0,1000.58237,96.20083333,78.6925,-2.1743333330000003,0.876833333, +2016-01-18 16:00:00,0.0,1000.601553,13.63483333,83.6675,-3.614,0.52675, +2016-01-18 17:00:00,0.0,1000.620736,0.337916667,94.175,-4.727416667,0.40716666700000004, +2016-01-18 18:00:00,0.0,1000.639919,0.0,96.16666667,-4.752166667,1.297416667, +2016-01-18 19:00:00,0.0,1000.659102,0.0,94.525,-5.549833333,2.1805, +2016-01-18 20:00:00,0.0,1000.678285,0.0,94.39166667,-6.041333333,1.7103333330000001, +2016-01-18 21:00:00,0.0,1000.697468,0.0,94.475,-6.06575,1.1650833329999999, +2016-01-18 22:00:00,0.0,1000.716651,0.0,95.95,-6.349166667,0.547083333, +2016-01-18 23:00:00,0.0,1000.735834,0.0,98.025,-7.025416667000001,0.070416667, +2016-01-19 00:00:00,0.0,1000.755017,0.0,99.425,-8.07525,0.009333333000000001, +2016-01-19 01:00:00,0.0,1000.7742,0.0,99.025,-8.875833333,0.063, +2016-01-19 02:00:00,0.0,1000.7933830000001,0.0,98.68333333,-9.006666667000001,0.08833333300000001, +2016-01-19 03:00:00,0.0,1000.8125660000001,0.0,98.30833333,-8.34,0.29783333300000003, +2016-01-19 04:00:00,0.0,1000.83175,0.0,98.06666667,-8.614166667000001,0.047333333, +2016-01-19 05:00:00,0.0,1000.850933,0.0,97.95,-9.308333333,0.045666667, +2016-01-19 06:00:00,0.0,1000.870116,0.0,97.675,-9.414166667,0.38483333299999994, +2016-01-19 07:00:00,0.0,1000.889299,0.009416667,97.24166667,-9.924166667,0.034083333, +2016-01-19 08:00:00,0.0,1000.908482,5.0570833330000005,96.89166667,-9.999166667,0.199416667, +2016-01-19 09:00:00,0.0,1000.927665,28.9725,97.025,-9.269166667,0.276916667, +2016-01-19 10:00:00,0.0,1000.946848,60.06166667,96.88333333,-8.273416667000001,0.7665, +2016-01-19 11:00:00,0.0,1000.966031,65.22833333,96.625,-7.12925,0.723, +2016-01-19 12:00:00,0.0,1000.985214,69.24916667,96.13333333,-6.4080833329999995,1.02475, +2016-01-19 13:00:00,0.0,1001.004397,66.86166667,94.93333333,-6.136166667,1.01525, +2016-01-19 14:00:00,0.0,1001.02358,52.06666667,93.875,-5.9175,0.812416667, +2016-01-19 15:00:00,0.0,1001.042763,31.02083333,93.64166667,-5.809833332999999,0.7779166670000001, +2016-01-19 16:00:00,0.0,1001.061946,10.56483333,93.90833333,-5.80425,0.815416667, +2016-01-19 17:00:00,0.0,1001.0811289999999,0.488916667,94.5,-6.170333332999999,0.627083333, +2016-01-19 18:00:00,0.0,1001.1003119999999,0.0,94.575,-6.267583332999999,0.52225, +2016-01-19 19:00:00,0.0,1001.1194949999999,0.0,94.90833333,-6.463166667,0.582333333, +2016-01-19 20:00:00,0.0,1001.1386779999999,0.0,94.9,-6.436916667,0.575583333, +2016-01-19 21:00:00,0.0,1001.1578609999999,0.0,95.675,-6.4995833329999995,0.8645, +2016-01-19 22:00:00,0.0,1001.1770439999999,0.0,96.34166667,-6.54725,0.851833333, +2016-01-19 23:00:00,0.0,1001.1962269999999,0.0,96.66666667,-6.58,1.029166667, +2016-01-20 00:00:00,0.0,1001.2154099999999,0.0,96.68333333,-6.479166667,0.781166667, +2016-01-20 01:00:00,0.0,1001.234593,0.0,96.93333333,-6.167999999999999,0.1965, +2016-01-20 02:00:00,0.0,1001.253776,0.0,97.9,-5.97725,0.428833333, +2016-01-20 03:00:00,0.0,1001.272959,0.0,98.09166667,-5.91125,1.04975, +2016-01-20 04:00:00,0.0,1001.292142,0.0,97.38333333,-5.432583332999999,0.59475, +2016-01-20 05:00:00,0.0,1001.311325,0.0,96.19166667,-5.234083333,0.2945, +2016-01-20 06:00:00,0.0,1001.330508,0.0,94.35833333,-5.4139166670000005,0.767916667, +2016-01-20 07:00:00,0.0,1001.349691,0.00325,92.99166667,-5.241916667,0.7375, +2016-01-20 08:00:00,0.0,1001.368874,6.263,91.81666667,-5.1705,0.66425, +2016-01-20 09:00:00,0.0,1001.388057,35.43666667,92.55833333,-4.469333333,0.5820833329999999, +2016-01-20 10:00:00,0.0,1001.40724,65.94833333,88.74166667,-3.75375,1.079, +2016-01-20 11:00:00,0.0,1001.426424,105.89166670000002,85.45833333,-2.726833333,1.4099166669999998, +2016-01-20 12:00:00,0.0,1001.445606,94.13416667,85.84166667,-1.97875,0.9561666670000001, +2016-01-20 13:00:00,0.0,1001.46479,81.5425,88.16666667,-0.440666667,0.730166667, +2016-01-20 14:00:00,0.0,1001.483973,78.93916667,89.375,0.21908333300000002,0.7175, +2016-01-20 15:00:00,0.0,1001.5031560000001,39.635,90.41666667,0.290416667,0.7150833329999999, +2016-01-20 16:00:00,0.0,1001.5223390000001,9.95875,91.74166667,0.22575,0.816583333, +2016-01-20 17:00:00,0.0,1001.5415220000001,0.47925,94.93333333,0.12625,0.81625, +2016-01-20 18:00:00,0.0,1001.5607050000001,0.0,95.19166667,0.255916667,0.6306666670000001, +2016-01-20 19:00:00,0.0,1001.5798880000001,0.0,95.80833333,0.039583333,0.9594166670000001, +2016-01-20 20:00:00,0.0,1001.5990710000001,0.0,97.08333333,-0.1115,0.5830833329999999, +2016-01-20 21:00:00,0.0,1001.6182539999999,0.0,97.05,0.12375,0.649083333, +2016-01-20 22:00:00,0.0,1001.6374369999999,0.0,98.45,0.005166667,0.44408333299999997, +2016-01-20 23:00:00,0.0,1001.65662,0.0,98.70833333,-0.02325,0.551583333, +2016-01-21 00:00:00,0.0,1001.675803,0.0,98.21666667,-0.306416667,0.5781666670000001, +2016-01-21 01:00:00,0.0,1001.694986,0.0,98.625,0.390083333,1.391583333, +2016-01-21 02:00:00,0.0,1001.714169,0.0,99.08333333,0.258416667,0.725833333, +2016-01-21 03:00:00,0.0,1001.733352,0.0,99.95,0.168166667,0.72, +2016-01-21 04:00:00,0.0,1001.752535,0.0,100.0,0.001833333,0.32299999999999995, +2016-01-21 05:00:00,0.0,1001.771718,0.0,100.0,-1.2086666670000001,0.18483333300000002, +2016-01-21 06:00:00,0.0,1001.790901,0.0,100.0,-3.401583333,0.166083333, +2016-01-21 07:00:00,0.0,1001.810084,0.021166667000000004,100.0,-4.040583333,0.17025, +2016-01-21 08:00:00,0.0,1001.829267,3.1039999999999996,100.0,-2.55025,0.341916667, +2016-01-21 09:00:00,0.0,1001.84845,31.47333333,100.0,-2.5685,0.76175, +2016-01-21 10:00:00,0.0,1001.867633,66.69416667,100.0,-2.56175,1.101916667, +2016-01-21 11:00:00,0.0,1001.8868160000001,58.2,100.0,-2.804416667,1.688333333, +2016-01-21 12:00:00,0.0,1001.9059990000001,82.9225,100.0,-2.515083333,1.33075, +2016-01-21 13:00:00,0.0,1001.9251820000001,114.4225,100.0,-1.965916667,0.75075, +2016-01-21 14:00:00,0.0,1001.9443650000001,105.26083329999999,99.36666667,-1.3973333330000002,0.892916667, +2016-01-21 15:00:00,0.0,1001.9635480000001,50.86833333,99.15,-2.17975,1.6673333330000002, +2016-01-21 16:00:00,0.0,1001.9827310000001,16.96516667,99.875,-3.1395,0.947666667, +2016-01-21 17:00:00,0.0,1002.001914,0.6115,100.0,-3.641166667,1.030166667, +2016-01-21 18:00:00,0.0,1002.021098,0.0,100.0,-3.842166667,0.8683333329999999, +2016-01-21 19:00:00,0.0,1002.04028,0.0,100.0,-4.102666667,0.724333333, +2016-01-21 20:00:00,0.0,1002.059464,0.0,100.0,-4.2009166669999995,0.767333333, +2016-01-21 21:00:00,0.0,1002.078647,0.0,100.0,-4.292916667,0.838, +2016-01-21 22:00:00,0.0,1002.09783,0.0,100.0,-4.806666667,0.753416667, +2016-01-21 23:00:00,0.0,1002.117013,0.0,100.0,-5.1345,0.484, +2016-01-22 00:00:00,0.0,1002.136196,0.0,100.0,-5.58375,0.96325, +2016-01-22 01:00:00,0.0,1002.1553789999999,0.0,100.0,-6.2024166670000005,0.7475, +2016-01-22 02:00:00,0.0,1002.1745619999999,0.0,100.0,-6.857333333,0.534833333, +2016-01-22 03:00:00,0.0,1002.1937449999999,0.0,99.99166667,-6.989,0.22175, +2016-01-22 04:00:00,0.0,1002.2129279999999,0.0,100.0,-6.91075,0.56225, +2016-01-22 05:00:00,0.0,1002.2321109999999,0.0,100.0,-7.1625,0.52375, +2016-01-22 06:00:00,0.0,1002.2512939999999,0.0,100.0,-7.542166667,0.665333333, +2016-01-22 07:00:00,0.0,1002.2704769999999,0.039416667,99.6,-8.119166667,0.41133333299999997, +2016-01-22 08:00:00,0.0,1002.2896599999999,6.959166667000001,99.075,-8.460833333,0.1015, +2016-01-22 09:00:00,0.0,1002.308843,39.66666667,99.08333333,-7.901333332999999,0.29991666699999997, +2016-01-22 10:00:00,0.0,1002.328026,92.20833333,99.44166667,-6.6075,0.974833333, +2016-01-22 11:00:00,0.0,1002.347209,104.0725,99.98333333,-4.54825,1.4345833330000002, +2016-01-22 12:00:00,0.0,1002.366392,169.04166669999998,99.95833333,-3.8113333330000003,2.2555, +2016-01-22 13:00:00,0.0,1002.385575,136.65,98.84166667,-3.0630833330000002,2.339, +2016-01-22 14:00:00,0.0,1002.404758,140.975,94.58333333,-2.702833333,2.8496666669999997, +2016-01-22 15:00:00,0.0,1002.423941,93.95416667,89.91666667,-2.668166667,2.96275, +2016-01-22 16:00:00,0.0,1002.443124,15.07183333,92.83333333,-3.60725,2.926583333, +2016-01-22 17:00:00,0.0,1002.462307,0.547,95.3,-4.412166667,3.0956666669999997, +2016-01-22 18:00:00,0.0,1002.48149,0.0,97.00833333,-4.4640833330000005,3.243083333, +2016-01-22 19:00:00,0.0,1002.500673,0.0,97.15,-4.513666667,2.2688333330000003, +2016-01-22 20:00:00,0.0,1002.519856,0.0,97.16666667,-4.629583333,2.193833333, +2016-01-22 21:00:00,0.0,1002.5390390000001,0.0,97.3,-4.320333333,1.88425, +2016-01-22 22:00:00,0.0,1002.5582220000001,0.0,96.83333333,-3.5775,2.349916667, +2016-01-22 23:00:00,0.0,1002.5774050000001,0.0,98.03333333,-2.8515,2.764916667, +2016-01-23 00:00:00,0.0,1002.5965880000001,0.0,99.75,-2.28025,1.95925, +2016-01-23 01:00:00,0.0,1002.6157720000001,0.0,100.0,-1.778583333,1.4851666669999999, +2016-01-23 02:00:00,0.0,1002.6349539999999,0.0,100.0,-1.52025,0.244083333, +2016-01-23 03:00:00,0.0,1002.6541380000001,0.0,100.0,-1.3493333330000001,0.12025, +2016-01-23 04:00:00,0.0,1002.6733210000001,0.0,100.0,-1.168166667,0.010333333, +2016-01-23 05:00:00,0.0,1002.6925039999999,0.0,100.0,-0.991,0.02075, +2016-01-23 06:00:00,0.0,1002.7116869999999,0.0,100.0,-0.6346666670000001,0.316166667, +2016-01-23 07:00:00,0.0,1002.73087,0.0,100.0,-0.105833333,0.441833333, +2016-01-23 08:00:00,0.0,1002.750053,2.827666667,100.0,0.34175,0.502583333, +2016-01-23 09:00:00,0.0,1002.769236,14.41916667,100.0,1.8120833330000001,0.5855, +2016-01-23 10:00:00,0.0,1002.788419,40.71333333,100.0,2.7738333330000002,1.0590000000000002, +2016-01-23 11:00:00,41.35091717,1002.807602,55.39166667,100.0,3.3310000000000004,0.61225, +2016-01-23 12:00:00,2.571033864,1002.826785,78.32583333,100.0,3.939666667,1.001583333, +2016-01-23 13:00:00,0.0,1002.845968,69.82,100.0,4.340916667,1.14075, +2016-01-23 14:00:00,0.0,1002.865151,58.7225,100.0,4.74075,1.44275, +2016-01-23 15:00:00,0.0,1002.884334,54.2125,100.0,4.907666667,1.053, +2016-01-23 16:00:00,0.0,1002.903517,9.023666667,99.99166667,4.438833333,0.944666667, +2016-01-23 17:00:00,0.0,1002.9227,0.336416667,99.84166667,4.12075,0.753166667, +2016-01-23 18:00:00,0.0,1002.941883,0.0,99.73333333,2.991,0.45841666700000006, +2016-01-23 19:00:00,0.0,1002.961066,0.0,99.83333333,1.329583333,0.225333333, +2016-01-23 20:00:00,0.0,1002.9802490000001,0.0,99.94166667,1.6531666669999998,0.195333333, +2016-01-23 21:00:00,0.0,1002.9994320000001,0.0,100.0,1.9313333330000002,0.237416667, +2016-01-23 22:00:00,0.0,1003.0186150000001,0.0,100.0,2.35925,0.10566666699999999, +2016-01-23 23:00:00,0.0,1003.0377980000001,0.0,100.0,2.205166667,0.136583333, +2016-01-24 00:00:00,0.0,1003.0569810000001,0.0,100.0,2.26075,0.224666667, +2016-01-24 01:00:00,0.0,1003.0761640000001,0.0,99.975,2.548666667,0.929916667, +2016-01-24 02:00:00,0.0,1003.0953470000001,0.0,99.70833333,2.98325,0.665333333, +2016-01-24 03:00:00,0.0,1003.1145300000001,0.0,99.60833333,3.5660000000000003,0.865166667, +2016-01-24 04:00:00,0.0,1003.1337130000001,0.0,99.55833333,2.696583333,0.32799999999999996, +2016-01-24 05:00:00,0.0,1003.152896,0.0,100.0,1.628166667,0.298083333, +2016-01-24 06:00:00,0.0,1003.1720789999999,0.0,100.0,1.0465,1.301416667, +2016-01-24 07:00:00,0.0,1003.1912619999999,0.002833333,100.0,0.9125833329999999,0.6104166670000001, +2016-01-24 08:00:00,0.0,1003.210446,3.882833333,100.0,0.989833333,0.955916667, +2016-01-24 09:00:00,0.0,1003.2296289999999,30.8175,100.0,1.48025,0.266833333, +2016-01-24 10:00:00,0.0,1003.2488119999999,62.42083333,100.0,2.285583333,0.788416667, +2016-01-24 11:00:00,0.0,1003.2679949999999,105.08166670000001,100.0,3.0660000000000003,0.901083333, +2016-01-24 12:00:00,0.0,1003.2871779999999,117.68333329999999,98.25,3.688,1.131083333, +2016-01-24 13:00:00,0.0,1003.3063609999999,79.15333333,98.49166667,3.696916667,1.312083333, +2016-01-24 14:00:00,0.0,1003.3255439999999,71.0075,98.58333333,4.011666667,1.068333333, +2016-01-24 15:00:00,0.0,1003.3447269999999,30.66333333,99.11666667,3.983,0.998916667, +2016-01-24 16:00:00,0.0,1003.3639099999999,7.777333333,99.95833333,3.4946666669999997,0.541083333, +2016-01-24 17:00:00,0.0,1003.3830929999999,0.29925,100.0,3.2214166669999997,0.3945, +2016-01-24 18:00:00,4.82917776,1003.402276,0.0,100.0,2.890083333,0.0345, +2016-01-24 19:00:00,14.65176631,1003.421459,0.0,100.0,2.807583333,0.174583333, +2016-01-24 20:00:00,0.0,1003.440642,0.0,100.0,2.826916667,0.213083333, +2016-01-24 21:00:00,0.0,1003.459825,0.0,100.0,2.880833333,0.34116666700000003, +2016-01-24 22:00:00,0.0,1003.479008,0.0,100.0,3.137083333,0.5458333329999999, +2016-01-24 23:00:00,0.0,1003.498191,0.0,100.0,3.144166667,0.25875, +2016-01-25 00:00:00,2.487263184,1003.517374,0.0,100.0,3.1875,0.4435, +2016-01-25 01:00:00,2.503554912,1003.536557,0.0,100.0,3.47125,0.39616666700000003, +2016-01-25 02:00:00,0.0,1003.55574,0.0,100.0,3.335666667,0.29075, +2016-01-25 03:00:00,0.0,1003.574923,0.0,100.0,3.29175,0.48666666700000005, +2016-01-25 04:00:00,0.0,1003.594106,0.0,100.0,3.46675,0.640416667, +2016-01-25 05:00:00,0.0,1003.613289,0.0,100.0,3.3763333330000003,0.49891666700000004, +2016-01-25 06:00:00,0.0,1003.6324720000001,0.0,100.0,3.328083333,0.387666667, +2016-01-25 07:00:00,2.425393416,1003.6516550000001,0.0,100.0,3.4186666669999997,0.24941666699999998, +2016-01-25 08:00:00,0.0,1003.6708380000001,3.439916667,100.0,3.891833333,0.681583333, +2016-01-25 09:00:00,0.0,1003.6900210000001,24.23,100.0,4.174916667,0.490333333, +2016-01-25 10:00:00,0.0,1003.7092039999999,54.59583333,100.0,4.956916667,0.528416667, +2016-01-25 11:00:00,0.0,1003.7283869999999,81.0775,100.0,5.656416667,0.742833333, +2016-01-25 12:00:00,0.0,1003.7475699999999,61.55083333,100.0,6.198083333,0.8015, +2016-01-25 13:00:00,0.0,1003.7667529999999,132.85333329999997,99.94166667,7.425083333,0.8240000000000001, +2016-01-25 14:00:00,0.0,1003.785936,153.0,96.36666667,9.265,1.418166667, +2016-01-25 15:00:00,0.0,1003.805119,116.2,89.95,8.606666667,2.298083333, +2016-01-25 16:00:00,0.0,1003.824303,35.00583333,94.09166667,7.410583333,1.4035, +2016-01-25 17:00:00,0.0,1003.843486,1.9259166669999999,99.93333333,4.297416667,1.3726666669999998, +2016-01-25 18:00:00,0.0,1003.862669,0.0,100.0,2.942416667,0.310333333, +2016-01-25 19:00:00,0.0,1003.881852,0.0,100.0,1.366916667,0.18541666699999998, +2016-01-25 20:00:00,0.0,1003.901035,0.0,100.0,0.28675,0.204333333, +2016-01-25 21:00:00,0.0,1003.920218,0.0,100.0,-0.15975,0.293083333, +2016-01-25 22:00:00,0.0,1003.939401,0.0,100.0,0.071583333,0.24575, +2016-01-25 23:00:00,0.0,1003.958584,0.0,100.0,-0.035,0.21225, +2016-01-26 00:00:00,0.0,1003.977767,0.0,100.0,0.04375,0.11541666699999999, +2016-01-26 01:00:00,0.0,1003.99695,0.0,100.0,0.041583333,0.198833333, +2016-01-26 02:00:00,0.0,1004.016133,0.0,100.0,0.33733333299999996,0.148166667, +2016-01-26 03:00:00,0.0,1004.035316,0.0,100.0,0.32875,0.3505, +2016-01-26 04:00:00,0.0,1004.0544990000001,0.0,100.0,0.295,0.323416667, +2016-01-26 05:00:00,0.0,1004.0736820000001,0.0,100.0,0.198166667,0.38225, +2016-01-26 06:00:00,0.0,1004.0928650000001,0.0,100.0,0.307083333,0.46533333299999996, +2016-01-26 07:00:00,0.0,1004.1120480000001,0.021583333,100.0,-0.2625,0.335333333, +2016-01-26 08:00:00,0.0,1004.1312310000001,6.609666667000001,100.0,0.313916667,0.24925, +2016-01-26 09:00:00,0.0,1004.1504140000001,59.25,100.0,2.774666667,0.574, +2016-01-26 10:00:00,0.0,1004.1695970000001,84.91416667,100.0,4.578416667,0.626916667, +2016-01-26 11:00:00,0.0,1004.1887800000001,105.235,100.0,6.037333332999999,0.83225, +2016-01-26 12:00:00,0.0,1004.2079630000001,76.35166667,94.96666667,7.221583333,1.0075, +2016-01-26 13:00:00,0.0,1004.2271460000001,52.855,89.11666667,7.765833333,0.507166667, +2016-01-26 14:00:00,0.0,1004.246329,89.94833333,89.03333333,9.612,1.4915, +2016-01-26 15:00:00,0.0,1004.265512,67.55416667,88.8,11.10833333,1.6015, +2016-01-26 16:00:00,0.0,1004.2846949999999,10.84383333,88.925,10.66333333,1.7988333330000001, +2016-01-26 17:00:00,0.0,1004.3038779999999,0.96625,89.19166667,9.5875,1.161583333, +2016-01-26 18:00:00,0.0,1004.3230609999999,0.0,89.38333333,9.369166667,1.829083333, +2016-01-26 19:00:00,0.0,1004.3422439999999,0.0,86.13333333,9.05,2.042416667, +2016-01-26 20:00:00,0.0,1004.3614269999999,0.0,85.01666667,8.396833333,1.53925, +2016-01-26 21:00:00,0.0,1004.3806099999999,0.0,85.85,7.793583333,1.3481666669999999, +2016-01-26 22:00:00,0.0,1004.3997939999999,0.0,87.5,7.994333332999999,1.098083333, +2016-01-26 23:00:00,0.0,1004.4189769999999,0.0,86.58333333,8.453,1.551916667, +2016-01-27 00:00:00,0.0,1004.4381599999999,0.0,84.39166667,9.0325,2.36825, +2016-01-27 01:00:00,0.0,1004.4573429999999,0.0,84.625,9.178333333,1.8419999999999999, +2016-01-27 02:00:00,0.0,1004.4765259999999,0.0,83.79166667,9.281666667,1.5470833330000002, +2016-01-27 03:00:00,0.0,1004.495709,0.0,83.875,9.521666667,1.868916667, +2016-01-27 04:00:00,0.0,1004.514892,0.0,85.26666667,9.55,1.585083333, +2016-01-27 05:00:00,0.0,1004.534075,0.0,86.66666667,9.4825,1.53675, +2016-01-27 06:00:00,0.0,1004.553258,0.0,86.55,9.068333333,1.25925, +2016-01-27 07:00:00,0.0,1004.572441,0.021583333,85.59166667,8.225666667,1.52525, +2016-01-27 08:00:00,0.0,1004.591624,7.900916667000001,82.38333333,7.2583333329999995,1.239666667, +2016-01-27 09:00:00,0.0,1004.610807,58.24583333,79.07666667,7.997000000000001,1.4140833330000002, +2016-01-27 10:00:00,0.0,1004.62999,127.59166670000002,73.96333333,10.31333333,2.028833333, +2016-01-27 11:00:00,0.0,1004.649173,154.9833333,71.00333333,11.36166667,2.517833333, +2016-01-27 12:00:00,0.0,1004.668356,129.8,78.75833333,10.92833333,2.414416667, +2016-01-27 13:00:00,0.0,1004.687539,137.9,73.92416667,11.30833333,1.55025, +2016-01-27 14:00:00,0.0,1004.706722,78.5025,68.87083333,11.605,2.030333333, +2016-01-27 15:00:00,0.0,1004.7259050000001,58.24666667,70.44833333,11.6325,1.8065, +2016-01-27 16:00:00,0.0,1004.7450880000001,22.225,68.825,11.43166667,1.6033333330000001, +2016-01-27 17:00:00,0.0,1004.7642710000001,0.7989166670000001,62.26833333,11.8425,1.913, +2016-01-27 18:00:00,0.0,1004.7834539999999,0.0,59.71333333,11.91333333,2.3145, +2016-01-27 19:00:00,0.0,1004.8026369999999,0.0,58.99583333,11.6,2.302166667, +2016-01-27 20:00:00,0.0,1004.8218199999999,0.0,58.06333333,11.62333333,2.267416667, +2016-01-27 21:00:00,0.0,1004.8410029999999,0.0,57.76916667,12.085,1.982833333, +2016-01-27 22:00:00,0.0,1004.8601859999999,0.0,59.9975,12.05333333,2.62425, +2016-01-27 23:00:00,0.0,1004.879369,0.0,65.095,11.90166667,2.589833333, +2016-01-28 00:00:00,0.0,1004.898552,0.0,68.9725,11.79166667,2.064083333, +2016-01-28 01:00:00,0.0,1004.917735,0.0,70.975,11.65666667,2.120583333, +2016-01-28 02:00:00,0.0,1004.936918,0.0,72.53833333,11.455,2.387, +2016-01-28 03:00:00,0.0,1004.956101,0.0,83.72083333,10.58166667,2.6680833330000002, +2016-01-28 04:00:00,3.2078726160000004,1004.975284,0.0,96.08333333,9.725833332999999,2.296583333, +2016-01-28 05:00:00,6.6339065999999995,1004.994468,0.0,98.25,9.704166667,2.6395, +2016-01-28 06:00:00,25.73843126,1005.013651,0.0,96.1,9.04,2.538416667, +2016-01-28 07:00:00,8.414492952,1005.032834,0.010333333,93.625,7.808,1.45375, +2016-01-28 08:00:00,0.0,1005.052017,3.216583333,92.04166667,7.503833332999999,1.598583333, +2016-01-28 09:00:00,0.0,1005.0712,30.57916667,87.19166667,7.4930833329999995,1.6130000000000002, +2016-01-28 10:00:00,0.0,1005.090383,70.74083333,83.425,7.331416667,1.3871666669999998, +2016-01-28 11:00:00,0.0,1005.109566,182.2666667,78.63333333,8.238,2.1749166669999997, +2016-01-28 12:00:00,0.0,1005.128749,213.225,71.06416667,8.296166667,2.34825, +2016-01-28 13:00:00,0.0,1005.1479320000001,159.8,67.0475,8.525833333,2.06925, +2016-01-28 14:00:00,0.0,1005.1671150000001,145.20833330000002,66.26083333,8.5,2.033583333, +2016-01-28 15:00:00,0.0,1005.1862980000001,87.56666667,65.68416667,8.009583333,1.48875, +2016-01-28 16:00:00,0.0,1005.2054810000001,32.08416667,71.45666667,6.3659166670000005,0.417333333, +2016-01-28 17:00:00,0.0,1005.2246640000001,1.897416667,88.92416667,2.8145,0.16, +2016-01-28 18:00:00,0.0,1005.2438470000001,0.0,95.78333333,1.7710833330000002,0.33899999999999997, +2016-01-28 19:00:00,0.0,1005.2630300000001,0.0,98.74166667,0.985,0.24966666699999998, +2016-01-28 20:00:00,0.0,1005.2822130000001,0.0,99.525,0.857083333,0.308416667, +2016-01-28 21:00:00,0.0,1005.3013960000001,0.0,100.0,0.611666667,0.198166667, +2016-01-28 22:00:00,0.0,1005.320579,0.0,100.0,0.34133333299999996,0.067666667, +2016-01-28 23:00:00,0.0,1005.339762,0.0,100.0,-0.6124166670000001,0.231333333, +2016-01-29 00:00:00,0.0,1005.358945,0.0,100.0,-1.547833333,0.1045, +2016-01-29 01:00:00,0.0,1005.378128,0.0,100.0,-2.16575,0.10375, +2016-01-29 02:00:00,0.0,1005.397311,0.0,100.0,-2.185833333,0.15841666699999998, +2016-01-29 03:00:00,0.0,1005.416494,0.0,100.0,-2.769083333,0.129333333, +2016-01-29 04:00:00,0.0,1005.4356769999999,0.0,97.86666667,-2.961666667,0.15966666699999998, +2016-01-29 05:00:00,0.0,1005.4548599999999,0.0,95.83333333,-1.368333333,0.47866666700000005, +2016-01-29 06:00:00,0.0,1005.4740429999999,0.0,94.06666667,0.080416667,0.455666667, +2016-01-29 07:00:00,0.0,1005.4932259999999,0.11183333300000001,96.99166667,0.37308333299999996,0.71075, +2016-01-29 08:00:00,0.0,1005.5124089999999,11.23991667,98.93333333,0.2035,1.0355, +2016-01-29 09:00:00,2.589716136,1005.531592,24.86,86.23333333,2.548,0.546166667, +2016-01-29 10:00:00,0.0,1005.550775,111.94083329999998,83.0,5.476666667000001,1.072333333, +2016-01-29 11:00:00,0.0,1005.569958,180.66666669999998,79.6875,6.272666667,2.47125, +2016-01-29 12:00:00,0.0,1005.589142,207.3416667,78.28583333,7.49125,2.57925, +2016-01-29 13:00:00,0.0,1005.608325,211.8583333,73.29166667,8.9225,2.636083333, +2016-01-29 14:00:00,0.0,1005.627508,167.425,70.55416667,9.488333333,2.18725, +2016-01-29 15:00:00,0.0,1005.646691,86.77083333,72.125,9.4075,1.828583333, +2016-01-29 16:00:00,0.0,1005.665874,28.41833333,76.54416667,8.500833333,1.73075, +2016-01-29 17:00:00,0.0,1005.685057,2.209833333,77.74583333,8.09625,1.9145, +2016-01-29 18:00:00,0.0,1005.70424,0.0,78.91166667,7.951416667,2.051333333, +2016-01-29 19:00:00,0.0,1005.723423,0.0,80.16416667,7.892166667000001,1.9635, +2016-01-29 20:00:00,0.0,1005.742606,0.0,82.05833333,7.944833332999999,2.3930833330000003, +2016-01-29 21:00:00,0.0,1005.761789,0.0,84.01666667,7.885583333,2.36175, +2016-01-29 22:00:00,0.0,1005.780972,0.0,85.03333333,7.982416667000001,2.326916667, +2016-01-29 23:00:00,0.0,1005.800155,0.0,84.46666667,8.109333333,2.098833333, +2016-01-30 00:00:00,0.0,1005.8193380000001,0.0,83.79166667,8.223333333,2.480333333, +2016-01-30 01:00:00,0.0,1005.8385210000001,0.0,86.23333333,7.796666667,2.3745, +2016-01-30 02:00:00,0.0,1005.8577039999999,0.0,86.34166667,7.7985,1.912833333, +2016-01-30 03:00:00,0.0,1005.8768869999999,0.0,86.05833333,7.838666667000001,1.83275, +2016-01-30 04:00:00,0.0,1005.8960699999999,0.0,85.04166667,7.973833332999999,1.96075, +2016-01-30 05:00:00,0.0,1005.9152529999999,0.0,83.45,8.188333333,2.578083333, +2016-01-30 06:00:00,0.0,1005.9344359999999,0.0,85.28333333,7.9691666670000005,2.594, +2016-01-30 07:00:00,0.0,1005.953619,0.035666667,83.26666667,8.206666667,2.756916667, +2016-01-30 08:00:00,0.0,1005.972802,2.37975,82.99166667,8.35,2.65925, +2016-01-30 09:00:00,0.0,1005.991985,11.03908333,83.54166667,8.289166667,2.635416667, +2016-01-30 10:00:00,0.0,1006.011168,21.99333333,86.26666667,7.92275,2.587416667, +2016-01-30 11:00:00,0.0,1006.030351,41.36916667,88.71666667,7.375083332999999,3.24, +2016-01-30 12:00:00,0.0,1006.049534,35.3,87.86666667,7.2615,3.211583333, +2016-01-30 13:00:00,3.60168252,1006.068717,49.755,88.61666667,7.24725,3.4495, +2016-01-30 14:00:00,7.667319072000001,1006.0879,44.6175,89.40833333,7.31175,3.088, +2016-01-30 15:00:00,72.71724312,1006.107083,11.35016667,94.03333333,6.727666667,3.14875, +2016-01-30 16:00:00,55.51846286,1006.126266,5.47325,95.9,6.417000000000001,2.8555833330000002, +2016-01-30 17:00:00,18.36101813,1006.14545,0.51125,95.31666667,6.19775,3.320416667, +2016-01-30 18:00:00,9.124578672,1006.164632,0.0,96.84166667,5.93025,2.035333333, +2016-01-30 19:00:00,3.1445124,1006.183815,0.0,95.43333333,5.682916667000001,1.8486666669999998, +2016-01-30 20:00:00,0.0,1006.2029980000001,0.0,93.53333333,5.5301666670000005,2.94625, +2016-01-30 21:00:00,10.74655776,1006.222182,0.0,93.65833333,3.9588333330000003,2.76425, +2016-01-30 22:00:00,0.0,1006.2413650000001,0.0,94.58333333,2.85,2.224583333, +2016-01-30 23:00:00,0.0,1006.2605480000001,0.0,93.16666667,2.51625,1.60475, +2016-01-31 00:00:00,0.0,1006.2797310000001,0.0,93.125,1.63675,0.770083333, +2016-01-31 01:00:00,0.0,1006.2989140000001,0.0,92.78333333,0.773416667,0.36016666700000005, +2016-01-31 02:00:00,0.0,1006.3180970000001,0.0,92.03333333,1.863666667,0.940416667, +2016-01-31 03:00:00,0.0,1006.3372800000001,0.0,92.375,2.54775,1.574, +2016-01-31 04:00:00,0.0,1006.3564630000001,0.0,91.875,3.01725,1.57875, +2016-01-31 05:00:00,0.0,1006.3756460000001,0.0,92.60833333,3.1316666669999997,1.254583333, +2016-01-31 06:00:00,0.0,1006.394829,0.0,93.28333333,2.11125,0.7505, +2016-01-31 07:00:00,0.0,1006.414012,0.08125,93.75833333,0.849166667,0.18333333300000001, +2016-01-31 08:00:00,0.0,1006.433195,10.53116667,93.0,2.84075,1.1795, +2016-01-31 09:00:00,0.0,1006.452378,32.5675,90.95833333,3.843916667,1.7561666669999998, +2016-01-31 10:00:00,0.0,1006.471561,57.97416667,89.55,4.463416667,1.7355833330000001, +2016-01-31 11:00:00,0.0,1006.490744,83.1375,88.25833333,5.092666667,2.140666667, +2016-01-31 12:00:00,0.0,1006.509927,161.725,85.275,6.187,2.149166667, +2016-01-31 13:00:00,0.0,1006.52911,113.56666670000001,84.76666667,6.439666667000001,2.366166667, +2016-01-31 14:00:00,0.0,1006.548293,51.2425,86.76666667,6.396333332999999,1.585166667, +2016-01-31 15:00:00,0.0,1006.5674759999999,16.4725,90.175,5.977666667,1.0849166670000001, +2016-01-31 16:00:00,2.43818976,1006.5866589999999,12.24641667,94.5,5.566666667000001,0.85125, +2016-01-31 17:00:00,2.62531908,1006.6058419999999,1.065083333,96.51666667,5.336,0.613166667, +2016-01-31 18:00:00,0.0,1006.625025,0.0,96.18333333,5.81975,0.73975, +2016-01-31 19:00:00,0.0,1006.644208,0.0,97.68333333,6.492166667,1.1875, +2016-01-31 20:00:00,0.0,1006.663391,0.0,99.70833333,6.91625,1.413, +2016-01-31 21:00:00,0.0,1006.682574,0.0,99.975,7.677916667000001,2.013583333, +2016-01-31 22:00:00,2.9735481360000002,1006.701757,0.0,99.61666667,8.606666667,2.102, +2016-01-31 23:00:00,6.015475512,1006.72094,0.0,99.7,9.256666667000001,2.006166667, +2016-01-02 00:00:00,6.3007968,1006.740124,0.0,99.35833333,9.9725,2.1185,237.96964683333337 +2016-01-02 01:00:00,0.0,1006.759307,0.0,98.88333333,10.55,2.376083333,237.97215218333335 +2016-01-02 02:00:00,0.0,1006.778489,0.0,100.0,10.47,2.23275,237.97054161666665 +2016-01-02 03:00:00,3.25117092,1006.797673,0.0,100.0,10.8325,2.4659999999999997,237.96946788333332 +2016-01-02 04:00:00,0.0,1006.816856,0.0,99.9,11.115,2.83025,237.96946788333332 +2016-01-02 05:00:00,0.0,1006.836039,0.0,99.90833333,11.04,2.7715,237.9707205666667 +2016-01-02 06:00:00,3.252155184,1006.855222,0.0,100.0,10.82333333,2.6105,237.9716153333333 +2016-01-02 07:00:00,0.0,1006.874405,0.171916667,100.0,10.6825,2.393333333,237.96875208333336 +2016-01-02 08:00:00,0.0,1006.8935880000001,4.761583333,99.99166667,10.6075,2.4835833330000003,237.96946789999996 +2016-01-02 09:00:00,0.0,1006.9127710000001,30.59416667,99.96666667,10.76,2.752333333,237.96857313333336 +2016-01-02 10:00:00,3.807776112,1006.9319539999999,35.345,99.25,10.94833333,3.16675,237.96875208333336 +2016-01-02 11:00:00,0.0,1006.9511369999999,62.6725,93.21666667,11.66333333,2.510333333,237.97054161666668 +2016-01-02 12:00:00,0.0,1006.9703199999999,98.42166667,90.94166667,12.035,3.052166667,237.9716153333333 +2016-01-02 13:00:00,0.0,1006.9895029999999,61.1325,87.43333333,11.96416667,3.51625,237.97412068333333 +2016-01-02 14:00:00,0.0,1007.0086859999999,51.0875,85.21666667,11.72333333,3.52875,237.97662603333336 +2016-01-02 15:00:00,0.0,1007.0278689999999,33.7925,81.09916667,11.31916667,4.414833333,237.9787734666667 +2016-01-02 16:00:00,0.0,1007.047052,11.35016667,80.10666667,10.9675,3.3235,237.98217355000006 +2016-01-02 17:00:00,0.0,1007.066235,0.8215,79.33666667,10.95083333,2.9615,237.98611053333332 +2016-01-02 18:00:00,0.0,1007.085418,0.0,78.75,10.95166667,3.36775,237.99559510000003 +2016-01-02 19:00:00,0.0,1007.104601,0.0,78.7675,10.92083333,3.68725,238.01098506666665 +2016-01-02 20:00:00,0.0,1007.123784,0.0,79.19416667,11.04583333,3.551166667,238.03335423333337 +2016-01-02 21:00:00,0.0,1007.142967,0.0,78.95166667,11.21416667,3.885416667,238.05232329999998 +2016-01-02 22:00:00,0.0,1007.16215,0.0,81.46666667,11.11583333,3.505666667,238.06592376666663 +2016-01-02 23:00:00,0.0,1007.181333,0.0,88.96666667,10.4475,3.179833333,238.07540828333333 +2016-02-02 00:00:00,0.0,1007.200516,0.0,91.6,10.20416667,3.212916667, +2016-02-02 01:00:00,0.0,1007.219699,0.0,89.25,10.60333333,3.38575, +2016-02-02 02:00:00,0.0,1007.238882,0.0,87.275,10.8525,3.229333333, +2016-02-02 03:00:00,0.0,1007.258065,0.0,86.475,11.0075,3.2591666669999997, +2016-02-02 04:00:00,0.0,1007.2772480000001,0.0,86.70833333,11.04,3.106666667, +2016-02-02 05:00:00,0.0,1007.2964310000001,0.0,86.23333333,11.09416667,3.07125, +2016-02-02 06:00:00,0.0,1007.3156140000001,0.0,85.73333333,11.1475,3.01675, +2016-02-02 07:00:00,0.0,1007.3347980000001,0.043666667,87.75833333,10.97166667,3.1105, +2016-02-02 08:00:00,0.0,1007.3539810000001,2.5585,86.86666667,11.03833333,2.683916667, +2016-02-02 09:00:00,0.0,1007.3731630000001,17.37433333,85.56666667,11.25916667,2.726333333, +2016-02-02 10:00:00,0.0,1007.3923470000001,43.52166667,84.7,11.49,2.902083333, +2016-02-02 11:00:00,0.0,1007.4115300000001,124.00833329999999,84.25833333,11.86083333,3.1408333330000002, +2016-02-02 12:00:00,0.0,1007.4307130000001,122.76666670000002,83.23333333,12.11416667,3.5564166669999997, +2016-02-02 13:00:00,0.0,1007.4498960000001,81.86666667,82.075,12.17916667,3.723583333, +2016-02-02 14:00:00,0.0,1007.469079,44.67916667,82.55833333,12.08166667,3.753083333, +2016-02-02 15:00:00,0.0,1007.3300449999999,18.78833333,82.26666667,12.06083333,3.2353333330000003,238.06817856000004 +2016-02-02 16:00:00,4.042888608,1007.1,8.18975,83.65833333,11.56,3.5669999999999997,238.06825013333335 +2016-02-02 17:00:00,79.06327966,1008.338333,0.900416667,95.925,7.669,2.8104166669999997,238.06753431666667 +2016-02-02 18:00:00,42.09963353,1009.211333,0.0,97.75833333,6.691916667,1.479916667,238.07075546666667 +2016-02-02 19:00:00,37.07203063,1009.775,0.0,97.50833333,6.510666667000001,1.61,238.07522931666668 +2016-02-02 20:00:00,0.0,1009.7662220000001,0.0,95.18333333,6.676916667,2.1255,238.08399801666667 +2016-02-02 21:00:00,0.0,1010.485333,0.0,92.925,6.5294166670000005,1.813333333,238.0922298666666 +2016-02-02 22:00:00,0.0,1010.766667,0.0,91.36666667,6.22425,1.749916667,238.10064068333338 +2016-02-02 23:00:00,0.0,1011.285333,0.0,91.40833333,5.87,1.946166667,238.10797778333333 +2016-03-02 00:00:00,0.0,1011.801,0.0,91.06666667,5.569166667,1.982666667,238.21923431666664 +2016-03-02 01:00:00,0.0,1011.8441109999999,0.0,90.13333333,5.098666667,1.59175,238.21923433333328 +2016-03-02 02:00:00,0.0,1011.872556,0.0,91.10833333,4.50575,1.41,238.21798056666663 +2016-03-02 03:00:00,0.0,1011.8951109999999,0.0,91.68333333,4.3855833330000005,1.278833333,238.22027911666666 +2016-03-02 04:00:00,0.0,1011.556333,0.0,94.79166667,3.749916667,0.9864166670000001,238.21965221666665 +2016-03-02 05:00:00,0.0,1011.195556,0.0,92.525,4.011666667,0.8325,238.21965223333328 +2016-03-02 06:00:00,0.0,1010.880889,0.0,90.98333333,4.142333333,0.72675,238.21839846666663 +2016-03-02 07:00:00,0.0,1010.824,0.168166667,89.325,4.034,1.396333333,238.21839846666663 +2016-03-02 08:00:00,0.0,1010.666667,6.794333332999999,89.95833333,3.88275,1.21925,238.2188164 +2016-03-02 09:00:00,0.0,1010.884333,36.62166667,89.98333333,4.381666667,1.3581666669999999,238.2188164 +2016-03-02 10:00:00,0.0,1011.215222,111.64,87.23333333,5.346083333,1.5116666669999999,238.21798056666668 +2016-03-02 11:00:00,0.0,1011.451,166.575,82.81666667,6.475416667,2.030916667,238.22027911666666 +2016-03-02 12:00:00,27.84034454,1011.959333,81.51166667,90.82833333,3.921416667,2.520166667,238.22153289999997 +2016-03-02 13:00:00,0.0,1012.160333,163.7166667,92.40833333,4.42925,1.87425,238.22236875 +2016-03-02 14:00:00,0.0,1012.5367779999999,148.6083333,84.04166667,5.015333333,1.866416667,238.22090601666665 +2016-03-02 15:00:00,0.0,1013.200556,115.9825,81.82833333,4.87125,1.6566666669999999,238.2229956333333 +2016-03-02 16:00:00,0.0,1013.848556,36.62166667,79.78416667,4.526333333,1.562416667,238.22320458333334 +2016-03-02 17:00:00,0.0,1014.58,4.88925,83.26666667,3.833916667,1.8168333330000002,238.22299561666668 +2016-03-02 18:00:00,2.819422512,1015.366667,0.0,96.79166667,1.721416667,0.9501666670000001,238.22445835 +2016-03-02 19:00:00,0.0,1015.938778,0.0,92.76666667,1.7383333330000001,0.69625,238.22383146666667 +2016-03-02 20:00:00,0.0,1016.911333,0.0,87.9,2.8801666669999997,1.3625833330000001,238.22215976666666 +2016-03-02 21:00:00,0.0,1017.796111,0.0,88.45833333,3.30175,1.5044166669999999,238.22048808333332 +2016-03-02 22:00:00,0.0,1018.461333,0.0,91.38333333,3.019083333,1.60325,238.21986120000005 +2016-03-02 23:00:00,0.0,1018.7857779999999,0.0,91.05833333,3.23775,2.153666667,238.22090601666665 +2016-04-02 00:00:00,0.0,1019.063778,0.0,92.83333333,3.402916667,1.67,238.49757123333333 +2016-04-02 01:00:00,0.0,1019.4416669999999,0.0,94.84166667,3.289583333,1.585,238.4892127833334 +2016-04-02 02:00:00,5.321807736,1019.421556,0.0,96.76666667,2.8889166669999997,1.10325,238.48064535 +2016-04-02 03:00:00,2.974386672,1019.802,0.0,96.33333333,2.9786666669999997,1.736833333,238.47166 +2016-04-02 04:00:00,9.037123752000001,1019.674,0.0,98.625,2.45025,2.0445833330000003,238.460794 +2016-04-02 05:00:00,0.0,1019.5691109999999,0.0,98.70833333,2.375333333,1.9935,238.45327138333334 +2016-04-02 06:00:00,5.889774288,1019.2014439999999,0.0,98.28333333,2.403833333,1.817,238.44595771666664 +2016-04-02 07:00:00,0.0,1019.2735560000001,0.163083333,96.31666667,2.4321666669999997,2.10875,238.43613653333333 +2016-04-02 08:00:00,0.0,1019.375,12.30241667,93.34166667,2.680416667,2.834083333,238.4292407833333 +2016-04-02 09:00:00,0.0,1019.202889,40.2275,91.55,2.966916667,2.463833333,238.4194196166667 +2016-04-02 10:00:00,0.0,1018.412222,78.40583333,88.925,3.601833333,2.420833333,238.4127328 +2016-04-02 11:00:00,6.380941344,1018.0028890000001,49.6475,93.45,3.39425,2.26675,238.40855356666668 +2016-04-02 12:00:00,14.35105351,1016.812667,58.07166667,97.61666667,3.0838333330000003,1.648166667,238.4045833 +2016-04-02 13:00:00,23.04713359,1015.4415560000001,53.75833333,98.26666667,3.0865,1.6739166669999999,238.3976875666667 +2016-04-02 14:00:00,16.76656961,1013.8425560000001,51.295,97.8,2.8110000000000004,1.243083333,238.39434418333335 +2016-04-02 15:00:00,11.3582245,1013.015667,35.205,98.8,2.99575,1.557916667,238.39288143333332 +2016-04-02 16:00:00,5.86972428,1012.9176669999999,16.88591667,99.675,3.2865833330000003,1.702833333,238.38891118333333 +2016-04-02 17:00:00,0.0,1013.572111,1.177,100.0,3.66925,1.300083333,238.3836871166667 +2016-04-02 18:00:00,0.0,1014.7667779999999,0.0,100.0,4.07025,1.039416667,238.38264235 +2016-04-02 19:00:00,2.72623008,1016.0078890000001,0.0,99.225,4.4793333330000005,1.9509999999999998,238.37992583333335 +2016-04-02 20:00:00,0.0,1016.876556,0.0,97.85,4.2466666669999995,2.839916667,238.37804516666665 +2016-04-02 21:00:00,0.0,1017.894667,0.0,98.66666667,3.3976666669999998,1.162166667,238.37386596666667 +2016-04-02 22:00:00,0.0,1018.950556,0.0,98.20833333,3.456833333,0.6233333329999999,238.37135841666668 +2016-04-02 23:00:00,0.0,1019.974556,0.0,100.0,2.969583333,0.360833333,238.36780608333333 +2016-05-02 00:00:00,0.0,1020.7588890000001,0.0,98.40833333,2.722416667,0.63475,238.1384249833333 +2016-05-02 01:00:00,0.0,1021.355889,0.0,99.66666667,2.577,0.3975,238.13910081666666 +2016-05-02 02:00:00,0.0,1021.7828890000001,0.0,100.0,2.421166667,0.284833333,238.13876291666665 +2016-05-02 03:00:00,0.0,1022.247556,0.0,97.025,2.560666667,0.5285,238.13960769999997 +2016-05-02 04:00:00,0.0,1021.8989999999999,0.0,99.04166667,2.262166667,0.72175,238.13876289999996 +2016-05-02 05:00:00,0.0,1021.9201109999999,0.0,100.0,2.312166667,0.4745,238.13825600000004 +2016-05-02 06:00:00,0.0,1022.1808890000001,0.0,100.0,2.417583333,0.205916667,238.13504571666667 +2016-05-02 07:00:00,0.0,1022.367667,0.066166667,100.0,2.62875,0.35375,238.13386296666667 +2016-05-02 08:00:00,0.0,1022.1038890000001,3.871916667,100.0,2.817583333,0.08391666699999999,238.1318354166667 +2016-05-02 09:00:00,0.0,1021.9524439999999,23.75,99.68333333,3.592,0.313583333,238.1304837 +2016-05-02 10:00:00,0.0,1021.65,61.39583333,97.11666667,4.7394166669999995,1.091,238.12879405 +2016-05-02 11:00:00,0.0,1021.520556,53.94916667,96.75833333,5.270916667,1.044083333,238.12710443333333 +2016-05-02 12:00:00,0.0,1020.822,67.76583333,95.90833333,6.802333332999999,0.61775,238.12710445000002 +2016-05-02 13:00:00,0.0,1020.162222,85.6525,95.68333333,8.014166667000001,0.816333333,238.12507686666666 +2016-05-02 14:00:00,0.0,1019.5445560000001,44.96666667,96.59166667,7.880083332999999,0.693,238.12423205000002 +2016-05-02 15:00:00,0.0,1018.9357779999999,32.04583333,96.025,7.1776666670000004,0.41166666700000004,238.12558376666667 +2016-05-02 16:00:00,0.0,1018.888222,12.79,95.75,7.439666667000001,0.6183333329999999,238.12406308333334 +2016-05-02 17:00:00,0.0,1018.5931109999999,0.8909999999999999,95.33333333,6.958166667,0.40066666700000003,238.12507686666666 +2016-05-02 18:00:00,0.0,1018.5642220000001,0.0,95.29166667,6.948083333,0.32075,238.12761133333333 +2016-05-02 19:00:00,0.0,1018.525,0.0,93.175,8.8075,1.071416667,238.128963 +2016-05-02 20:00:00,0.0,1018.1288890000001,0.0,91.65,8.611666667,1.4339166669999999,238.13048369999998 +2016-05-02 21:00:00,0.0,1017.575444,0.0,92.55833333,7.84025,1.5434166669999998,238.13132851666668 +2016-05-02 22:00:00,0.0,1016.942111,0.0,94.18333333,6.497833332999999,1.099,238.1318354166667 +2016-05-02 23:00:00,0.0,1016.8058890000001,0.0,91.66666667,8.31,1.72175,238.13200436666668 +2016-06-02 00:00:00,0.0,1016.4004449999999,0.0,90.68333333,8.626666667,1.52475,238.1167977 +2016-06-02 01:00:00,0.0,1015.893111,0.0,89.875,8.568333333,1.1385,238.1159528666667 +2016-06-02 02:00:00,0.0,1015.3837779999999,0.0,88.04166667,7.792083333,1.4020833330000002,238.11544595 +2016-06-02 03:00:00,0.0,1014.3827779999999,0.0,94.54166667,5.844666667,1.6519166669999998,238.11443216666666 +2016-06-02 04:00:00,0.0,1013.3945560000001,0.0,99.64166667,4.4745,1.88975,238.1124046333333 +2016-06-02 05:00:00,0.0,1012.924,0.0,100.0,2.551583333,0.367833333,238.11139086666665 +2016-06-02 06:00:00,0.0,1012.283778,0.0,100.0,4.9745,1.527833333,238.10987016666664 +2016-06-02 07:00:00,0.0,1011.907333,0.49200000000000005,100.0,4.91775,2.270333333,238.10699778333333 +2016-06-02 08:00:00,0.0,1011.85,15.68658333,100.0,4.483666667,1.74425,238.10530816666665 +2016-06-02 09:00:00,0.0,1011.7739999999999,59.34583333,100.0,4.684083333,1.300583333,238.1056460833333 +2016-06-02 10:00:00,0.0,1011.3548890000001,108.60166670000001,99.875,5.657416667000001,2.0691666669999997,238.10429436666664 +2016-06-02 11:00:00,0.0,1010.8504439999999,198.775,89.975,7.809333333,2.383666667,238.1036185 +2016-06-02 12:00:00,0.0,1010.1661109999999,245.7333333,81.1925,11.05916667,1.83625,238.10023926666668 +2016-06-02 13:00:00,0.0,1009.155333,248.3666667,76.74,11.7175,2.7865833330000003,238.10023926666668 +2016-06-02 14:00:00,0.0,1008.1185550000001,200.575,72.905,12.43333333,1.759333333,238.09973236666667 +2016-06-02 15:00:00,0.0,1007.382333,144.70833330000002,70.52166667,11.71416667,2.48175,238.09973236666667 +2016-06-02 16:00:00,0.0,1006.5210000000001,66.79166667,72.98083333,10.28833333,2.744166667,238.09973236666667 +2016-06-02 17:00:00,0.0,1005.4185560000001,6.411666667,78.54916667,8.674,1.775916667,238.09888755 +2016-06-02 18:00:00,0.0,1004.823,0.0,79.65583333,5.2860833330000006,0.22475,238.09939444999998 +2016-06-02 19:00:00,0.0,1004.1882220000001,0.0,76.53833333,6.171,1.23475,238.09973236666667 +2016-06-02 20:00:00,0.0,1003.6352220000001,0.0,74.04666667,5.10675,1.57425,238.10142203333336 +2016-06-02 21:00:00,0.0,1002.844556,0.0,81.71833333,4.383166667,0.997416667,238.10175995 +2016-06-02 22:00:00,0.0,1002.290667,0.0,83.2425,5.0650833330000005,1.54275,238.10040823333335 +2016-06-02 23:00:00,0.0,1001.589667,0.0,94.25,5.137583333,0.990833333,238.09939444999998 +2016-07-02 00:00:00,0.0,1000.9730000000001,0.0,93.4,5.142916667,2.019916667,238.06367473333333 +2016-07-02 01:00:00,0.0,1000.5445560000001,0.0,87.025,5.440666667,1.938333333,238.06546565 +2016-07-02 02:00:00,0.0,999.5705556,0.0,81.37833333,6.228166667000001,2.296833333,238.06944553333335 +2016-07-02 03:00:00,0.0,999.0219999999999,0.0,71.18583333,5.748083332999999,1.7085833330000002,238.0666596166667 +2016-07-02 04:00:00,0.0,998.3313332999999,0.0,80.10916667,5.6535,1.01,238.06626163333337 +2016-07-02 05:00:00,0.0,997.5955556,0.0,80.63916667,6.918583333,2.5540000000000003,238.06526663333338 +2016-07-02 06:00:00,0.0,997.0813332999999,0.0,68.2275,6.12925,1.9235,238.0676546 +2016-07-02 07:00:00,0.0,996.9808889000001,0.132833333,64.66,6.3975,2.242666667,238.07143543333336 +2016-07-02 08:00:00,0.0,997.0166667000001,12.06025,66.07583333,6.4245,2.6476666669999998,238.06944554999995 +2016-07-02 09:00:00,0.0,996.5764444,50.48666667,67.81166667,8.731583333,3.0884166669999997,238.07183343333335 +2016-07-02 10:00:00,0.0,996.8818889,70.48083333,70.67083333,10.98916667,2.187083333,238.07243043333332 +2016-07-02 11:00:00,0.0,997.3711111,63.86916667,76.24166667,11.1425,2.92275,238.0700425 +2016-07-02 12:00:00,15.403786300000002,998.0363332999999,70.43166667,89.49166667,9.646666667,2.0164166669999997,238.07143548333332 +2016-07-02 13:00:00,8.626005096,998.2597777999999,79.0775,92.025,8.913333332999999,1.9244166669999998,238.06845056666666 +2016-07-02 14:00:00,0.0,998.3186667000001,84.2275,87.85,8.9825,1.608416667,238.0666596166667 +2016-07-02 15:00:00,0.0,999.0971111,62.8575,87.48333333,9.140833333,1.3819166669999998,238.06367471666667 +2016-07-02 16:00:00,0.0,999.6343332999999,30.19241667,81.87333333,8.996666667000001,1.4278333330000001,238.0636747 +2016-07-02 17:00:00,0.0,1000.278,4.343,74.7975,8.4275,1.8805833330000001,238.06307775000005 +2016-07-02 18:00:00,0.0,1000.9721109999999,0.0,73.96416667,7.9205,2.011333333,238.06486866666668 +2016-07-02 19:00:00,0.0,1001.6701109999999,0.0,75.51083333,7.7645,2.0436666669999997,238.06526665 +2016-07-02 20:00:00,3.411365832,1001.8760000000001,0.0,75.4325,7.322166667,2.4335,238.0636747333334 +2016-07-02 21:00:00,0.0,1001.984333,0.0,78.03666667,7.2410000000000005,1.94325,238.06387373333337 +2016-07-02 22:00:00,0.0,1001.8455560000001,0.0,81.59166667,6.787916667,1.905083333,238.06387371666668 +2016-07-02 23:00:00,0.0,1001.3788890000001,0.0,83.28333333,6.57975,3.1389166669999997,238.06427169999998 +2016-08-02 00:00:00,0.0,1000.9597779999999,0.0,82.64166667,6.783583332999999,2.782083333,237.91383276666667 +2016-08-02 01:00:00,0.0,999.9008889,0.0,81.21666667,6.793583333,2.7744166669999997,237.9150267 +2016-08-02 02:00:00,0.0,998.9563332999999,0.0,82.03333333,6.758916667,2.49375,237.91741461666666 +2016-08-02 03:00:00,0.0,998.3984445,0.0,80.45,6.9445,2.7445,237.91940455 +2016-08-02 04:00:00,0.0,997.2195556,0.0,80.60666667,7.017416667000001,2.62525,237.92238945 +2016-08-02 05:00:00,0.0,996.1018889000001,0.0,82.08333333,6.4025,3.487666667,237.92656831666667 +2016-08-02 06:00:00,0.0,994.8651110999999,0.0,84.36666667,6.07525,3.641666667,237.92716528333335 +2016-08-02 07:00:00,0.0,993.9362222000001,0.224166667,85.28333333,6.8106666670000005,4.2068333330000005,237.92915523333332 +2016-08-02 08:00:00,5.048527344,993.1587777999999,7.92025,88.475,6.2735,4.99675,237.93114516666665 +2016-08-02 09:00:00,0.0,992.2303332999999,31.15166667,87.05833333,6.841416667000001,3.967833333,237.93413005000002 +2016-08-02 10:00:00,4.75476768,991.4607777999998,40.5125,85.00833333,7.981,4.420833333,237.93552301666668 +2016-08-02 11:00:00,33.61306586,991.5666667000002,34.06083333,90.025,8.343916667,3.7686666669999997,237.93612 +2016-08-02 12:00:00,82.41495485,991.1382222000001,21.56583333,93.43333333,7.931916667,2.698416667,237.93910488333336 +2016-08-02 13:00:00,78.83603407,990.8534445,46.75583333,98.04166667,6.543083332999999,1.56075,237.9410948166667 +2016-08-02 14:00:00,55.88155171,991.0092222000001,94.75591667,89.575,6.8455,3.68525,237.93870691666666 +2016-08-02 15:00:00,0.0,990.8392222000001,55.72416667,83.16666667,7.98975,3.472916667,237.94208978333336 +2016-08-02 16:00:00,0.0,990.9377777999999,22.00416667,81.19583333,7.512416667,3.439166667,237.94149281666668 +2016-08-02 17:00:00,0.0,991.5456667000001,11.29216667,79.83916667,7.455916667,3.4933333330000003,237.94348275000004 +2016-08-02 18:00:00,0.0,992.6588889000001,0.002833333,78.15166667,7.058416667,3.60125,237.94308476666666 +2016-08-02 19:00:00,0.0,993.3853332999998,0.0,77.28,6.856083333,3.8905,237.9452736833333 +2016-08-02 20:00:00,0.0,993.9093332999998,0.0,76.1775,6.938166667000001,4.09475,237.94825860000003 +2016-08-02 21:00:00,3.760512864,994.327,0.0,74.03,7.054416667000001,3.90025,237.95064649999998 +2016-08-02 22:00:00,0.0,994.8877777999999,0.0,70.12416667,7.515083333,4.114583333,237.9516414666667 +2016-08-02 23:00:00,0.0,995.477,0.0,70.53333333,7.63825,3.858333333,237.9516414666667 +2016-09-02 00:00:00,0.0,996.0627777999999,0.0,70.4875,7.401583333,4.0835,237.86905923333333 +2016-09-02 01:00:00,0.0,996.4926667000001,0.0,74.7275,7.04425,3.720416667,237.87144718333332 +2016-09-02 02:00:00,0.0,996.6166667000001,0.0,76.07,7.073583332999999,3.2585,237.87403406666667 +2016-09-02 03:00:00,0.0,996.3573332999998,0.0,77.23916667,6.791333333,2.8609166669999997,237.87542701666666 +2016-09-02 04:00:00,0.0,996.4166667000002,0.0,80.96833333,6.605083333,3.131166667,237.87761594999998 +2016-09-02 05:00:00,0.0,996.1382222000001,0.0,80.005,6.849,2.8265833330000003,237.87920789999998 +2016-09-02 06:00:00,0.0,995.596,0.0,80.77,6.738166667000001,2.94175,237.88159579999999 +2016-09-02 07:00:00,0.0,994.7004444,0.44783333299999994,81.8,6.72375,2.46925,237.87980485000003 +2016-09-02 08:00:00,0.0,994.0813332999999,18.23283333,81.31666667,6.798166667,1.8898333330000001,237.88020286666665 +2016-09-02 09:00:00,0.0,993.0092222000001,29.66083333,82.80833333,6.405,1.9373333330000002,237.87920789999998 +2016-09-02 10:00:00,0.0,991.5939999999999,22.88083333,86.0,6.049833333,2.166833333,237.87781495000002 +2016-09-02 11:00:00,49.07112348,988.9331110999999,19.84083333,93.61666667,5.8026666670000004,2.5306666669999998,237.8730391 +2016-09-02 12:00:00,10.64980478,985.3375555,96.2575,95.3,5.947,4.804833333,237.86886023333332 +2016-09-02 13:00:00,0.0,983.0895556,97.16166667,94.4,6.392333333,5.362166666999999,237.8638854333333 +2016-09-02 14:00:00,9.700529207999999,980.5758889,56.59666667,92.70833333,8.119083332999999,4.46325,237.85871158333336 +2016-09-02 15:00:00,64.19952113,979.2316667000001,28.98416667,91.18333333,8.556666667,4.1588333330000005,237.85433375 +2016-09-02 16:00:00,58.70797644,978.0912222000001,19.18675,90.48333333,8.18,2.749666667,237.85254278333332 +2016-09-02 17:00:00,11.80206557,977.0939999999999,2.503083333,90.86666667,8.206666667,3.08175,237.85035385 +2016-09-02 18:00:00,0.0,976.5745555,0.0,87.71666667,8.496666667000001,3.363416667,237.84816494999998 +2016-09-02 19:00:00,5.599601712,977.8687777999999,0.0,82.51583333,8.26125,4.3004166669999995,237.84776696666668 +2016-09-02 20:00:00,0.0,980.5756667000002,0.0,87.16666667,5.16225,3.680333333,237.8487619 +2016-09-02 21:00:00,0.0,983.0903332999999,0.0,90.70833333,3.779666667,3.87625,237.84896091666667 +2016-09-02 22:00:00,0.0,984.6064444,0.0,89.675,4.09,3.97275,237.84816494999998 +2016-09-02 23:00:00,0.0,985.8314444,0.0,93.14166667,3.6365,3.16875,237.84935891666666 +2016-10-02 00:00:00,0.0,987.0647777999999,0.0,91.5,3.5476666669999997,1.51375,237.93657265000002 +2016-10-02 01:00:00,0.0,987.5211111,0.0,88.64166667,2.97825,1.34075,237.9368241666667 +2016-10-02 02:00:00,0.0,987.7666667000001,0.0,88.28333333,2.8369166669999997,1.479916667,237.93588768333336 +2016-10-02 03:00:00,0.0,987.9083332999999,0.0,87.44166667,2.32975,1.6065,237.93720695000002 +2016-10-02 04:00:00,0.0,988.0166667000001,0.0,86.95833333,1.916916667,1.263333333,237.93966836666664 +2016-10-02 05:00:00,0.0,988.0808889,0.0,88.2,2.04625,1.681416667,237.94089751666664 +2016-10-02 06:00:00,0.0,987.9926667000001,0.0,84.075,2.953166667,1.935,237.94230378333336 +2016-10-02 07:00:00,0.0,988.5117777999999,0.49025,82.35833333,3.3256666669999997,2.1375833330000003,237.94396634999998 +2016-10-02 08:00:00,3.271448064,988.7637777999998,15.70441667,84.64166667,3.438583333,1.614333333,237.94317696666667 +2016-10-02 09:00:00,2.953148112,989.0882222000001,61.01083333,94.85833333,2.629833333,1.7029166669999998,237.94013185000003 +2016-10-02 10:00:00,6.124299647999999,989.3760000000001,81.94916667,93.14166667,3.25,2.01725,237.94192255 +2016-10-02 11:00:00,0.0,989.5853332999999,90.10416667,86.39166667,4.1995,2.49075,237.94153183333333 +2016-10-02 12:00:00,2.95356168,990.1392222000001,92.0725,93.20833333,3.69,2.3305833330000003,237.94246515 +2016-10-02 13:00:00,3.1113642,990.2510000000001,104.905,96.91666667,3.374583333,2.236916667,237.9453916 +2016-10-02 14:00:00,3.55133244,990.4058889,102.2825,97.09166667,3.782916667,2.365583333,237.94154763333333 +2016-10-02 15:00:00,3.066350424,990.6044444,79.9625,97.03333333,3.8680000000000003,1.733916667,237.94410395 +2016-10-02 16:00:00,0.0,991.1044444,33.23333333,94.74166667,4.336833333,1.9450833330000001,237.94261543333334 +2016-10-02 17:00:00,2.9710353119999997,991.8162222000001,3.2341666669999998,94.925,4.126333333,2.0180000000000002,237.9433493833333 +2016-10-02 18:00:00,14.95357786,992.7304444,0.01225,95.34166667,3.956083333,0.528083333,237.94459751666668 +2016-10-02 19:00:00,15.486878400000002,993.4853332999999,0.0,95.96666667,3.934416667,0.9059999999999999,237.94386195 +2016-10-02 20:00:00,2.854113528,993.8877777999999,0.0,94.09166667,4.068166667,1.7318333330000002,237.94327348333331 +2016-10-02 21:00:00,0.0,994.3554444,0.0,92.525,4.2234166669999995,2.42625,237.94539318333332 +2016-10-02 22:00:00,0.0,995.2186667000001,0.0,95.54166667,3.844083333,2.151333333,237.94432225000003 +2016-10-02 23:00:00,0.0,995.9721111,0.0,97.43333333,3.4810000000000003,1.775166667,237.94560358333334 +2016-11-02 00:00:00,0.0,996.6412222000001,0.0,97.79166667,3.4554166669999997,1.6465833330000001,237.9998335166667 +2016-11-02 01:00:00,0.0,997.2461111,0.0,97.70833333,3.45175,1.38325,238.00112434999997 +2016-11-02 02:00:00,8.049604032000001,997.6961110999999,0.0,97.80833333,3.406333333,1.2285,237.99950608333333 +2016-11-02 03:00:00,2.73979092,998.2843332999998,0.0,96.675,3.259416667,1.353083333,238.00003285 +2016-11-02 04:00:00,0.0,998.8436667000001,0.0,97.475,2.82625,1.5854166669999998,238.0012192833333 +2016-11-02 05:00:00,0.0,999.1201110999999,0.0,97.08333333,2.988666667,1.726666667,238.00270938333333 +2016-11-02 06:00:00,0.0,999.3818889,0.0,96.025,2.6070833330000003,0.484916667,237.9996104666667 +2016-11-02 07:00:00,0.0,999.6951111,0.569916667,96.18333333,2.725166667,1.062666667,237.99992686666667 +2016-11-02 08:00:00,0.0,1000.087778,16.09008333,96.725,2.66075,1.28125,237.99900463333333 +2016-11-02 09:00:00,0.0,1000.5568890000001,67.48,94.675,3.41675,1.7058333330000002,237.99768849999998 +2016-11-02 10:00:00,0.0,1000.937778,159.075,90.41666667,4.435916667,1.896,237.9970668166667 +2016-11-02 11:00:00,0.0,1001.158333,232.79166669999998,85.26666667,5.28125,2.161166667,237.99912328333332 +2016-11-02 12:00:00,0.0,1001.074,128.935,84.475,5.8441666670000005,2.266,237.99776285 +2016-11-02 13:00:00,0.0,1000.7382220000001,151.5891667,81.8575,6.1945,1.5621666669999998,237.99596428333334 +2016-11-02 14:00:00,0.0,1000.5857779999999,89.45666667,82.59083333,5.962416667,2.204916667,237.99612085 +2016-11-02 15:00:00,0.0,1000.4416669999999,127.78083329999998,80.90916667,5.74575,2.193166667,237.99991423333333 +2016-11-02 16:00:00,0.0,1000.4465560000001,62.2,81.325,5.5185,1.815916667,238.00401126666665 +2016-11-02 17:00:00,0.0,1000.604444,6.578333333,88.725,4.831583333,1.164166667,238.00544920000004 +2016-11-02 18:00:00,0.0,1000.9392220000001,0.0,94.775,3.6660000000000004,1.041916667,238.0056912166667 +2016-11-02 19:00:00,2.83347684,1000.95,0.0,94.96666667,3.3249166669999997,1.229083333,238.00771603333328 +2016-11-02 20:00:00,0.0,1000.942667,0.0,96.075,3.272916667,0.64075,238.00564691666668 +2016-11-02 21:00:00,0.0,1001.158333,0.0,92.91666667,2.810916667,0.255666667,238.00429126666666 +2016-11-02 22:00:00,0.0,1001.127444,0.0,90.79166667,2.50275,0.243083333,238.00551563333332 +2016-11-02 23:00:00,0.0,1000.9632220000001,0.0,89.925,2.175416667,0.02725,238.0053558666667 +2016-12-02 00:00:00,0.0,1000.8024439999999,0.0,97.46666667,1.310083333,0.047416667,238.04947920000004 +2016-12-02 01:00:00,0.0,1000.6833330000001,0.0,95.85,1.8333333330000001,0.129833333,238.05103101666666 +2016-12-02 02:00:00,0.0,1000.632333,0.0,94.16666667,1.747416667,0.26475,238.05011355000002 +2016-12-02 03:00:00,0.0,1000.516667,0.0,93.6,1.88625,0.40700000000000003,238.05067826666664 +2016-12-02 04:00:00,0.0,1000.1288890000001,0.0,92.98333333,2.241583333,0.64275,238.04979083333333 +2016-12-02 05:00:00,0.0,999.7323332999998,0.0,99.35,-0.136583333,0.235083333,238.05145023333333 +2016-12-02 06:00:00,0.0,999.3455556,0.0,100.0,-1.166833333,0.34025,238.05145655 +2016-12-02 07:00:00,0.0,999.1024444,1.0100833329999999,100.0,-1.1390833329999999,0.47325,238.05146448333335 +2016-12-02 08:00:00,0.0,998.8583332999999,20.63341667,100.0,-0.614083333,0.327,238.04839720000004 +2016-12-02 09:00:00,0.0,998.7372222000001,34.87583333,100.0,0.6385,0.35558333299999995,238.0491580833333 +2016-12-02 10:00:00,0.0,998.2195556,114.41666670000001,99.99166667,2.008833333,0.979666667,238.04765055000004 +2016-12-02 11:00:00,0.0,997.3553332999999,154.4708333,95.675,3.293583333,1.4275,238.0482911833333 +2016-12-02 12:00:00,0.0,996.447,123.49166670000001,90.65,3.839083333,1.8259166669999998,238.05003601666667 +2016-12-02 13:00:00,0.0,995.4102222000001,161.3475,83.74166667,4.52575,2.014166667,238.05017996666666 +2016-12-02 14:00:00,0.0,994.3602222000001,205.7833333,78.445,5.485416667000001,2.143416667,238.05071783333335 +2016-12-02 15:00:00,0.0,993.3528889,158.5658333,74.32,5.550083333,1.521333333,238.05054698333333 +2016-12-02 16:00:00,0.0,992.5445556,39.605,81.05166667,4.713666667,0.6635833329999999,238.0522823 +2016-12-02 17:00:00,0.0,992.1073332999998,7.5675,91.16666667,3.35675,0.0425,238.05345605 +2016-12-02 18:00:00,0.0,991.8916667000001,0.045583333,97.28333333,2.628916667,0.140916667,238.0539100666667 +2016-12-02 19:00:00,0.0,991.8156667000002,0.0,97.65,1.686666667,0.070583333,238.05426438333333 +2016-12-02 20:00:00,0.0,991.6274444000001,0.0,99.44166667,-0.251333333,0.24225,238.05445581666666 +2016-12-02 21:00:00,0.0,991.5048889000001,0.0,100.0,-1.41175,0.21475,238.05673055 +2016-12-02 22:00:00,0.0,991.2406667000001,0.0,100.0,-1.951583333,0.179333333,238.0560709 +2016-12-02 23:00:00,0.0,990.7230000000001,0.0,100.0,-2.168416667,0.165583333,238.05601236666666 +2016-02-13 00:00:00,0.0,990.4926667000001,0.0,100.0,-2.458583333,0.195916667,238.15021074999996 +2016-02-13 01:00:00,0.0,990.5882222000001,0.0,100.0,-2.447833333,0.271666667,238.1496739 +2016-02-13 02:00:00,0.0,990.3739999999999,0.0,100.0,-2.780583333,0.252333333,238.14949493333336 +2016-02-13 03:00:00,0.0,990.1833332999998,0.0,100.0,-3.17725,0.26716666699999997,238.14913705 +2016-02-13 04:00:00,0.0,989.9396667000001,0.0,100.0,-3.664416667,0.15575,238.14752646666662 +2016-02-13 05:00:00,0.0,989.6833332999998,0.0,100.0,-4.0105833330000005,0.255083333,238.14788436666663 +2016-02-13 06:00:00,0.0,989.4465556,0.0,100.0,-4.267666667,0.264916667,238.14520008333332 +2016-02-13 07:00:00,0.0,989.6902222000001,1.082416667,100.0,-3.8279166669999998,0.238583333,238.14305263333333 +2016-02-13 08:00:00,0.0,989.573,25.19583333,100.0,-2.470166667,0.08199999999999999,238.1392946166667 +2016-02-13 09:00:00,0.0,989.0705556,61.50583333,100.0,-1.288916667,0.00033333300000000006,238.13875773333334 +2016-02-13 10:00:00,0.0,988.5122222000001,98.05,99.56666667,-0.551166667,0.48775,238.1378629666667 +2016-02-13 11:00:00,2.682043272,987.6935556,137.675,96.96666667,0.803333333,1.004583333,238.13589448333332 +2016-02-13 12:00:00,0.0,987.0989999999999,103.6925,89.95833333,1.944666667,1.332166667,238.13356808333333 +2016-02-13 13:00:00,0.0,986.1793332999998,79.40166667,89.70833333,2.113083333,1.35575,238.13428393333334 +2016-02-13 14:00:00,0.0,985.1528889,48.465,93.375,1.95825,1.243916667,238.13499975 +2016-02-13 15:00:00,5.074027008,984.2886667000001,38.39833333,99.06666667,1.92,0.7849166670000001,238.13482078333334 +2016-02-13 16:00:00,12.86069916,983.4102222000001,14.30041667,100.0,1.87025,1.046916667,238.13446286666667 +2016-02-13 17:00:00,12.57693852,982.5504445,2.0015,100.0,1.5064166669999999,0.856166667,238.13661030000003 +2016-02-13 18:00:00,4.889313984,981.9097777999999,0.014583333,100.0,1.638333333,0.305,238.13732609999997 +2016-02-13 19:00:00,2.473511376,981.4730000000001,0.0,100.0,1.869833333,0.777333333,238.13696819999996 +2016-02-13 20:00:00,2.441784096,980.6862222000001,0.0,100.0,2.15975,0.796333333,238.13714715 +2016-02-13 21:00:00,0.0,980.0288889000001,0.0,100.0,2.477166667,0.284166667,238.13804189999996 +2016-02-13 22:00:00,4.925712432,979.2719999999999,0.0,100.0,2.60325,0.356416667,238.13822086666664 +2016-02-13 23:00:00,9.707986632,978.8073332999999,0.0,100.0,2.826333333,0.18600000000000003,238.13768401666667 +2016-02-14 00:00:00,26.91744502,978.2705556,0.0,100.0,3.03625,0.369333333,238.14001043333334 +2016-02-14 01:00:00,2.4050227680000003,977.9823332999998,0.0,100.0,3.022416667,0.150333333,238.14376843333335 +2016-02-14 02:00:00,4.889913312,978.1402222000002,0.0,100.0,3.0331666669999997,0.37991666700000004,238.14842123333335 +2016-02-14 03:00:00,2.41354584,978.3784444,0.0,100.0,3.1966666669999997,0.26716666699999997,238.15217925 +2016-02-14 04:00:00,4.920091416,978.6294444,0.0,100.0,3.252416667,0.24758333300000002,238.15665310000006 +2016-02-14 05:00:00,5.007177024,979.077,0.0,100.0,3.1655833330000003,0.33825,238.15987423333334 +2016-02-14 06:00:00,4.844800176000001,979.6902222000001,0.0,100.0,3.1855833330000003,0.39225,238.16220064999996 +2016-02-14 07:00:00,2.4050227680000003,980.1294444,0.34433333299999996,100.0,3.296833333,0.1265,238.16524285 +2016-02-14 08:00:00,2.5153073040000002,980.6794444,9.6215,99.9,4.305333333,1.102833333,238.16900084999997 +2016-02-14 09:00:00,3.220904712,980.9760000000001,19.11416667,96.1,5.0905833330000005,2.289083333,238.17150621666667 +2016-02-14 10:00:00,0.0,981.8456667000002,57.20916667,94.95,5.511916667,1.993,238.17419051666664 +2016-02-14 11:00:00,0.0,982.4843332999999,77.13166667,95.75833333,5.835833332999999,1.7928333330000001,238.1765169166667 +2016-02-14 12:00:00,0.0,983.2731110999999,28.9675,95.75,5.510416667,1.8021666669999998,238.17687478333335 +2016-02-14 13:00:00,5.601481392,983.9794444,79.8825,97.775,5.124833333,1.6604166669999998,238.1854645666667 +2016-02-14 14:00:00,2.9289509519999997,984.5853332999999,83.84333333,95.01666667,5.046083333,1.38425,238.19960188333334 +2016-02-14 15:00:00,7.793641344,985.3897777999999,17.025,96.14166667,4.531333333,0.906083333,238.20962326666665 +2016-02-14 16:00:00,5.0703510960000004,986.5946667000002,16.73166667,97.58333333,4.25925,0.690416667,238.20890745 +2016-02-14 17:00:00,0.0,987.5231110999999,6.374166667000001,98.95,4.139916667,0.64075,238.20586525 +2016-02-14 18:00:00,0.0,988.5005556,0.0,99.36666667,3.917333333,0.84625,238.2030020166667 +2016-02-14 19:00:00,0.0,989.3912222000001,0.0,98.6,3.6895,1.216416667,238.19960186666665 +2016-02-14 20:00:00,0.0,990.3088889,0.0,98.98333333,3.636916667,1.510083333,238.19763336666665 +2016-02-14 21:00:00,0.0,991.1030000000001,0.0,98.91666667,3.47525,0.9328333329999999,238.19477014999998 +2016-02-14 22:00:00,0.0,991.9221110999999,0.0,99.58333333,3.319666667,0.8118333329999999,238.1922648 +2016-02-14 23:00:00,0.0,992.7637777999998,0.0,99.51666667,3.3311666669999997,1.0695,238.19119105000001 +2016-02-15 00:00:00,0.0,993.7946667000001,0.0,100.0,3.263833333,0.30141666699999997,238.18850676666668 +2016-02-15 01:00:00,2.588767944,994.7907777999999,0.0,100.0,3.096,0.42575,238.18600139999998 +2016-02-15 02:00:00,4.9848867839999995,995.9721111,0.0,100.0,2.769583333,0.522166667,238.1845698 +2016-02-15 03:00:00,0.0,996.6353332999998,0.0,100.0,2.3595833330000002,0.6970000000000001,238.18349609999999 +2016-02-15 04:00:00,2.447319816,997.4481111,0.0,100.0,2.303416667,0.8058333329999999,238.1842119 +2016-02-15 05:00:00,0.0,998.6991111,0.0,100.0,2.2631666669999997,0.63675,238.18242238333335 +2016-02-15 06:00:00,0.0,1000.062333,0.0,100.0,2.1755,0.56725,238.1808117666666 +2016-02-15 07:00:00,0.0,1001.251556,0.274833333,99.20833333,1.9878333330000002,0.745916667,238.17991701666668 +2016-02-15 08:00:00,0.0,1002.6039999999999,7.8445,99.13333333,1.97675,0.863083333,238.17938013333335 +2016-02-15 09:00:00,0.0,1003.849111,28.28583333,99.5,2.28925,0.807,238.17794855 +2016-02-15 10:00:00,3.0610283039999997,1005.143222,37.98916667,98.825,2.67225,1.575,238.17508526666666 +2016-02-15 11:00:00,0.0,1006.575111,44.20833333,95.20833333,3.043166667,2.3005,238.17257993333337 +2016-02-15 12:00:00,0.0,1007.919667,75.4725,89.74166667,3.30425,2.30325,238.16989563333334 +2016-02-15 13:00:00,0.0,1009.1824439999999,27.59916667,87.025,3.375,2.5455,238.1697166666667 +2016-02-15 14:00:00,0.0,1010.387333,26.3975,86.66666667,2.928083333,2.8363333330000002,238.16935876666665 +2016-02-15 15:00:00,0.0,1011.7182220000001,20.72166667,87.3,2.706416667,2.53025,238.1688219 +2016-02-15 16:00:00,0.0,1013.1417779999999,10.04558333,89.10833333,2.5693333330000003,2.74375,238.1666745 +2016-02-15 17:00:00,0.0,1014.850111,1.6328333330000002,93.375,1.963,2.343916667,238.16488491666667 +2016-02-15 18:00:00,0.0,1016.365778,0.008916667,97.675,1.43225,1.537,238.16345330000001 +2016-02-15 19:00:00,0.0,1017.8505560000001,0.0,96.84166667,1.0693333329999999,1.8281666669999999,238.16273750000002 +2016-02-15 20:00:00,0.0,1018.8397779999999,0.0,93.85,1.106083333,1.6585833330000002,238.16023213333335 +2016-02-15 21:00:00,0.0,1019.720667,0.0,91.16666667,1.098083333,1.4798333330000002,238.1588005 +2016-02-15 22:00:00,0.0,1021.062333,0.0,90.46666667,0.8115,2.403,238.15593726666665 +2016-02-15 23:00:00,0.0,1022.3241109999999,0.0,88.96666667,0.585833333,2.032916667,238.15611623333334 +2016-02-16 00:00:00,0.0,1023.5564449999999,0.0,85.64166667,0.24725,3.026166667,238.15432668333335 +2016-02-16 01:00:00,0.0,1024.393667,0.0,86.21666667,-0.26,2.315083333,238.15378981666666 +2016-02-16 02:00:00,0.0,1025.356444,0.0,86.11666667,-0.703583333,2.360833333,238.15361084999998 +2016-02-16 03:00:00,0.0,1026.247111,0.0,84.70833333,-1.279166667,1.94775,238.15235819999998 +2016-02-16 04:00:00,0.0,1026.792667,0.0,84.01666667,-1.334833333,2.275416667,238.15110554999998 +2016-02-16 05:00:00,0.0,1027.247111,0.0,84.125,-1.4024166669999998,2.274166667,238.15003181666668 +2016-02-16 06:00:00,0.0,1027.7617779999998,0.0,83.875,-1.5954166669999998,1.9040000000000001,238.14788435000003 +2016-02-16 07:00:00,0.0,1028.419667,1.3216666670000001,84.78333333,-1.54925,2.0825,238.14627380000002 +2016-02-16 08:00:00,2.610987192,1029.211333,26.63975,83.88333333,-1.704,2.525833333,238.1464527666666 +2016-02-16 09:00:00,0.0,1030.077,79.22833333,82.90833333,-1.4955,2.3929166669999997,238.14341051666668 +2016-02-16 10:00:00,0.0,1030.618667,123.30833329999999,82.275,-1.179333333,2.568833333,238.13983148333332 +2016-02-16 11:00:00,0.0,1031.1068890000001,159.91666669999998,82.4,-0.794166667,2.556666667,238.13804191666668 +2016-02-16 12:00:00,0.0,1031.140667,223.225,80.0525,-0.144166667,2.8915833330000003,238.1364313666667 +2016-02-16 13:00:00,0.0,1030.740667,323.71666669999996,75.56666667,1.339833333,1.9419166669999999,238.13571555 +2016-02-16 14:00:00,0.0,1030.582333,177.54166669999998,76.28416667,0.989666667,2.153083333,238.1346418166667 +2016-02-16 15:00:00,0.0,1030.1955560000001,180.15,74.5225,1.4758333330000002,2.2608333330000003,238.1349997166666 +2016-02-16 16:00:00,0.0,1029.9058890000001,107.45666670000001,73.8525,1.4618333330000002,2.21025,238.13464184999998 +2016-02-16 17:00:00,0.0,1029.665667,19.21583333,78.59833333,0.289833333,1.73875,238.13482078333334 +2016-02-16 18:00:00,0.0,1029.759333,0.18983333300000002,92.90833333,-1.764583333,0.137166667,238.13714715 +2016-02-16 19:00:00,0.0,1029.564667,0.0,97.50833333,-2.441666667,0.095666667,238.13661029999994 +2016-02-16 20:00:00,0.0,1029.726,0.0,99.41666667,-2.058333333,0.775666667,238.13499973333333 +2016-02-16 21:00:00,0.0,1029.596556,0.0,92.475,-1.343666667,2.048166667,238.133926 +2016-02-16 22:00:00,0.0,1029.075444,0.0,91.48333333,-1.6730833330000001,1.8791666669999998,238.13374706666664 +2016-02-16 23:00:00,0.0,1028.2518890000001,0.0,89.675,-1.4815833330000001,2.33575,238.13070485 +2016-02-17 00:00:00,0.0,1027.419556,0.0,89.05833333,-1.337166667,1.7441666669999998,238.13052589999998 +2016-02-17 01:00:00,0.0,1026.602889,0.0,89.19166667,-1.136833333,1.137166667,238.1298100833333 +2016-02-17 02:00:00,0.0,1025.583778,0.0,89.53333333,-0.872833333,1.952833333,238.12963115 +2016-02-17 03:00:00,0.0,1024.9004439999999,0.0,89.56666667,-0.8440000000000001,2.997583333,238.1281994833333 +2016-02-17 04:00:00,0.0,1024.0661109999999,0.0,90.13333333,-1.160083333,2.59875,238.12802054999997 +2016-02-17 05:00:00,0.0,1022.878333,0.0,91.19166667,-1.379666667,2.4409166669999998,238.12891531666665 +2016-02-17 06:00:00,0.0,1021.8597779999999,0.0,92.63333333,-1.492083333,1.2665,238.1308838 +2016-02-17 07:00:00,0.0,1021.3587779999999,1.0795,91.13333333,-1.11625,1.769833333,238.12927323333335 +2016-02-17 08:00:00,0.0,1020.32,21.42525,91.10833333,-0.9365,2.2134166669999997,238.12819950000002 +2016-02-17 09:00:00,0.0,1018.971,69.74666667,90.68333333,-0.3605,2.313916667,238.12748366666665 +2016-02-17 10:00:00,0.0,1017.8817779999999,203.125,87.30833333,0.57075,2.162083333,238.1244415 +2016-02-17 11:00:00,0.0,1016.546,266.025,83.29166667,1.852583333,1.90225,238.12640995 +2016-02-17 12:00:00,0.0,1015.0391109999999,278.3083333,79.15916667,2.92825,1.7543333330000002,238.12479940000003 +2016-02-17 13:00:00,0.0,1013.7602220000001,238.75,75.745,3.254333333,2.102416667,238.12408358333334 +2016-02-17 14:00:00,0.0,1012.735222,83.1125,78.215,2.675916667,2.38225,238.12640995 +2016-02-17 15:00:00,0.0,1011.9896669999999,64.99916667,77.92916667,2.516666667,2.124833333,238.12605205 +2016-02-17 16:00:00,0.0,1011.4872220000001,37.645,77.715,2.3218333330000003,1.81925,238.12497835 +2016-02-17 17:00:00,0.0,1010.857333,8.0625,79.8775,1.9941666669999998,1.1181666670000001,238.12676785 +2016-02-17 18:00:00,0.0,1010.875,0.08966666699999999,85.95833333,1.4916666669999998,0.2805,238.12658889999997 +2016-02-17 19:00:00,0.0,1010.565667,0.0,91.66666667,0.812416667,0.062583333,238.12676785 +2016-02-17 20:00:00,0.0,1010.2941109999999,0.0,93.425,0.661166667,0.006916667,238.1249783333333 +2016-02-17 21:00:00,0.0,1010.397556,0.0,93.11666667,0.7885,0.1905,238.12408360000003 +2016-02-17 22:00:00,0.0,1010.1239999999999,0.0,93.59166667,0.785416667,0.313583333,238.12408360000003 +2016-02-17 23:00:00,0.0,1009.9573330000001,0.0,95.35833333,0.8390000000000001,0.48,238.12265193333334 +2016-02-18 00:00:00,0.0,1010.079444,0.0,93.63333333,0.784833333,0.10033333300000001,238.1219361166667 +2016-02-18 01:00:00,0.0,1010.258333,0.0,92.84166667,0.816583333,0.17875,238.1197887 +2016-02-18 02:00:00,0.0,1010.074,0.0,93.61666667,1.339166667,0.7145,238.12139926666669 +2016-02-18 03:00:00,0.0,1010.0392220000001,0.0,92.03333333,1.243666667,1.89025,238.11907290000002 +2016-02-18 04:00:00,0.0,1010.010778,0.0,91.34166667,1.242,2.153916667,238.1178202 +2016-02-18 05:00:00,0.0,1010.0475560000001,0.0,91.13333333,1.181916667,1.8134166669999998,238.11835708333334 +2016-02-18 06:00:00,0.0,1010.2701109999999,0.0,86.425,1.15825,1.40225,238.11638856666664 +2016-02-18 07:00:00,0.0,1010.434333,0.458583333,83.17166667,1.8068333330000002,1.183166667,238.11764125000002 +2016-02-18 08:00:00,0.0,1010.868667,7.299833333,81.86083333,1.6698333330000001,1.190583333,238.1178202333334 +2016-02-18 09:00:00,0.0,1011.2784439999999,25.82,83.09833333,1.513916667,1.377583333,238.11656753333332 +2016-02-18 10:00:00,0.0,1011.375,71.245,79.38583333,2.308833333,0.91075,238.11638856666664 +2016-02-18 11:00:00,0.0,1011.4142220000001,108.71666670000002,72.09,2.98325,1.4850833330000002,238.11603065 +2016-02-18 12:00:00,0.0,1011.449,125.95833329999999,72.79583333,3.485583333,1.4476666669999998,238.11388321666666 +2016-02-18 13:00:00,0.0,1010.8788890000001,107.35916670000002,74.80916667,3.62575,1.039833333,238.11388325 +2016-02-18 14:00:00,0.0,1010.652444,79.2425,72.99916667,3.906166667,0.95675,238.1129884833333 +2016-02-18 15:00:00,0.0,1010.647556,114.20333329999998,71.405,4.171083333,1.367083333,238.11191475 +2016-02-18 16:00:00,0.0,1010.6239999999999,96.32916667,69.59416667,4.382166667,0.889,238.11227266666666 +2016-02-18 17:00:00,0.0,1010.5044439999999,22.38508333,77.50166667,2.79975,0.5405,238.11424115 +2016-02-18 18:00:00,0.0,1011.1010000000001,0.15541666699999998,94.20833333,0.095666667,0.26,238.11459906666664 +2016-02-18 19:00:00,0.0,1011.364222,0.0,95.93333333,-1.138583333,0.47200000000000003,238.11531485 +2016-02-18 20:00:00,0.0,1011.277444,0.0,96.625,-1.7024166669999998,0.23800000000000002,238.11549379999997 +2016-02-18 21:00:00,0.0,1011.454444,0.0,97.7,-1.898333333,0.30675,238.1137042833333 +2016-02-18 22:00:00,0.0,1011.658333,0.0,98.98333333,-2.1364166669999998,0.34475,238.11424115 +2016-02-18 23:00:00,0.0,1011.927,0.0,98.68333333,-2.049833333,0.179416667,238.1135253333333 +2016-02-19 00:00:00,0.0,1012.301,0.0,97.78333333,-1.9571666669999999,0.144916667,238.11119891666667 +2016-02-19 01:00:00,0.0,1012.440667,0.0,99.21666667,-2.155583333,0.0945,238.1104831 +2016-02-19 02:00:00,0.0,1012.5010000000001,0.0,98.93333333,-2.2381666669999998,0.110916667,238.10958835 +2016-02-19 03:00:00,0.0,1012.475,0.0,96.84166667,-1.9555,0.15825,238.10887255 +2016-02-19 04:00:00,0.0,1012.421556,0.0,98.25,-1.795833333,0.0435,238.10815673333332 +2016-02-19 05:00:00,0.0,1012.696111,0.0,98.475,-1.70625,0.13175,238.10726196666664 +2016-02-19 06:00:00,0.0,1013.1127779999999,0.0,98.75833333,-1.5728333330000002,0.0,238.10690406666666 +2016-02-19 07:00:00,0.0,1013.581889,1.282666667,99.56666667,-1.5375,0.041583333,238.10565138333337 +2016-02-19 08:00:00,0.0,1014.1544439999999,15.9875,98.9,-1.080416667,0.196416667,238.1063671833333 +2016-02-19 09:00:00,0.0,1014.7137779999999,32.1675,97.14166667,-0.23399999999999999,0.253333333,238.10386185000004 +2016-02-19 10:00:00,0.0,1015.1975560000001,53.39833333,96.24166667,0.32458333300000003,0.25525,238.10296709999997 +2016-02-19 11:00:00,0.0,1015.353444,153.8916667,92.40833333,1.442,0.543083333,238.10260918333336 +2016-02-19 12:00:00,0.0,1015.458333,141.4833333,92.73333333,2.042,0.78025,238.10332499999996 +2016-02-19 13:00:00,0.0,1015.6461109999999,132.38333329999998,92.85833333,2.3545833330000003,1.464666667,238.10099858333334 +2016-02-19 14:00:00,0.0,1015.8083330000001,146.75,91.875,2.8050833330000002,1.955,238.10081964999998 +2016-02-19 15:00:00,0.0,1016.009333,96.98583333,92.9,2.661333333,1.9869999999999999,238.10117755 +2016-02-19 16:00:00,0.0,1016.2808890000001,58.96416667,95.70833333,2.44675,1.9025833330000002,238.10117755000002 +2016-02-19 17:00:00,0.0,1016.5294439999999,17.89366667,96.925,2.3169999999999997,1.85325,238.1004617166667 +2016-02-19 18:00:00,0.0,1016.9176669999999,0.23399999999999999,97.73333333,1.8928333330000002,1.258416667,238.10278813333335 +2016-02-19 19:00:00,0.0,1017.209333,0.0,99.48333333,-0.166416667,0.253166667,238.10189336666667 +2016-02-19 20:00:00,0.0,1017.1146669999999,0.0,100.0,-1.56775,0.2135,238.1036829 +2016-02-19 21:00:00,0.0,1016.916667,0.0,100.0,-2.213,0.20800000000000002,238.10421975000006 +2016-02-19 22:00:00,0.0,1016.540667,0.0,100.0,-2.6060000000000003,0.38341666700000004,238.10475659999997 +2016-02-19 23:00:00,0.0,1016.039667,0.0,99.0,-3.284916667,0.228083333,238.10350395 +2016-02-20 00:00:00,0.0,1016.334333,0.0,99.925,-3.5211666669999997,0.271583333,238.10099858333334 +2016-02-20 01:00:00,0.0,1015.6695560000001,0.0,100.0,-3.8510000000000004,0.148333333,238.10207231666666 +2016-02-20 02:00:00,0.0,1014.8778890000001,0.0,95.26666667,-3.6289999999999996,0.10166666699999999,238.0999249 +2016-02-20 03:00:00,0.0,1014.3681109999999,0.0,92.125,-2.209666667,0.381,238.09813533333332 +2016-02-20 04:00:00,0.0,1013.950445,0.0,89.775,1.05375,1.363666667,238.09724058333333 +2016-02-20 05:00:00,0.0,1013.167111,0.0,90.10833333,3.234916667,1.8733333330000002,238.09688266666663 +2016-02-20 06:00:00,2.634978744,1012.091111,0.0,93.44166667,2.489583333,1.911583333,238.09777743333333 +2016-02-20 07:00:00,21.47885784,1011.2685560000001,0.687333333,95.90833333,1.4278333330000001,1.8805,238.09759848333331 +2016-02-20 08:00:00,15.91494466,1010.339667,12.61825,95.725,1.879,1.5395833330000002,238.09795640000002 +2016-02-20 09:00:00,3.110908176,1010.049,43.07416667,95.61666667,3.15,2.845166667,238.0983143 +2016-02-20 10:00:00,4.458533616,1009.921556,32.515,96.425,3.273166667,3.6284166669999998,238.10099858333334 +2016-02-20 11:00:00,0.0,1009.3181109999999,60.23666667,95.19166667,4.0565,2.704166667,238.1009985833333 +2016-02-20 12:00:00,3.767300832,1008.990667,62.23583333,95.7,4.88975,3.783416667,238.10081965000003 +2016-02-20 13:00:00,4.276470384,1008.3994449999999,70.81833333,97.45,5.2466666669999995,3.695,238.10278813333335 +2016-02-20 14:00:00,0.0,1007.782333,59.03666667,97.075,5.999833333,3.9,238.10225126666668 +2016-02-20 15:00:00,3.936956328,1007.725,35.5825,98.44166667,6.353416667,3.674083333,238.10243025 +2016-02-20 16:00:00,0.0,1007.5980000000001,16.05333333,100.0,6.417583333,1.829666667,238.1029670666667 +2016-02-20 17:00:00,24.89582832,1007.1701109999999,3.793166667,99.78333333,6.58875,1.8899166669999998,238.10421975 +2016-02-20 18:00:00,32.58256279,1006.896556,0.046,98.09166667,7.5919166670000005,2.522916667,238.10815673333332 +2016-02-20 19:00:00,25.8054378,1006.812222,0.0,99.19166667,8.060083333,3.437083333,238.11101998333334 +2016-02-20 20:00:00,29.10330019,1006.317111,0.0,99.24166667,8.4225,3.363833333,238.11746229999997 +2016-02-20 21:00:00,10.84506084,1005.528889,0.0,98.98333333,8.8425,3.2485,238.12712576666664 +2016-02-20 22:00:00,21.77523286,1005.199,0.0,99.49166667,9.16,3.70575,238.14090518333333 +2016-02-20 23:00:00,10.01392128,1005.133333,0.0,99.15,9.568333333,4.68375,238.1557583 +2016-02-21 00:00:00,0.0,1005.092667,0.0,99.775,9.799166667,4.383583333,238.1724009666667 +2016-02-21 01:00:00,0.0,1005.489222,0.0,99.99166667,10.1375,4.24575,238.18671725000002 +2016-02-21 02:00:00,0.0,1006.022111,0.0,99.875,10.45833333,3.901916667,238.19423326666666 +2016-02-21 03:00:00,0.0,1006.202,0.0,99.05833333,10.84333333,3.96075,238.20013873333338 +2016-02-21 04:00:00,0.0,1006.703444,0.0,97.50833333,11.01166667,3.746416667,238.20157038333332 +2016-02-21 05:00:00,0.0,1007.2260000000001,0.0,93.075,11.04333333,3.107166667,238.20192826666667 +2016-02-21 06:00:00,0.0,1007.6436669999999,0.0,92.23333333,10.96083333,3.207666667,238.20085456666666 +2016-02-21 07:00:00,0.0,1008.5245560000001,2.472583333,95.2,10.5025,3.15025,238.19727548333333 +2016-02-21 08:00:00,0.0,1008.7926669999999,16.93,94.69166667,10.56333333,3.7595,238.1976334 +2016-02-21 09:00:00,0.0,1009.117667,43.90916667,96.6,10.47,4.115833333,238.1958438833333 +2016-02-21 10:00:00,0.0,1009.325,100.9358333,98.40833333,10.5625,3.9765,238.19405435 +2016-02-21 11:00:00,0.0,1009.0239999999999,129.2666667,99.08333333,10.94083333,3.6934166669999997,238.1940543333333 +2016-02-21 12:00:00,0.0,1008.553889,137.3416667,98.1,11.3375,4.4255,238.1945911833333 +2016-02-21 13:00:00,4.942727784,1008.2455560000001,89.09416667,96.64166667,11.28916667,5.106666667,238.19477014999998 +2016-02-21 14:00:00,0.0,1007.7941109999999,77.02916667,90.85,12.28833333,5.498416667000001,238.19655965 +2016-02-21 15:00:00,0.0,1007.5583330000001,48.56166667,88.675,12.515,5.943083333,238.19817026666666 +2016-02-21 16:00:00,0.0,1007.766667,16.70333333,87.525,12.48333333,5.410666667,238.19620176666663 +2016-02-21 17:00:00,0.0,1007.629889,3.82675,87.33333333,12.345,5.71775,238.19834920000002 +2016-02-21 18:00:00,0.0,1007.725,0.11225,87.26666667,12.1225,5.423833332999999,238.1979913 +2016-02-21 19:00:00,0.0,1007.393111,0.0,86.24166667,12.05333333,5.66975,238.19870711666667 +2016-02-21 20:00:00,0.0,1007.1010000000001,0.0,85.8,11.90083333,5.398416667,238.19870711666667 +2016-02-21 21:00:00,0.0,1007.195556,0.0,86.21666667,11.60583333,5.26375,238.19584385 +2016-02-21 22:00:00,0.0,1006.945111,0.0,87.6,11.215,5.304166667,238.19369643333334 +2016-02-21 23:00:00,0.0,1007.054889,0.0,86.84166667,10.7775,5.174666666999999,238.19441223333334 +2016-02-22 00:00:00,0.0,1006.430333,0.0,84.85833333,10.55916667,5.17025,238.19333851666667 +2016-02-22 01:00:00,0.0,1005.8455560000001,0.0,81.05833333,10.59416667,4.742583333,238.1913700166667 +2016-02-22 02:00:00,0.0,1005.089667,0.0,81.45,10.41,4.4814166669999995,238.19011736666667 +2016-02-22 03:00:00,0.0,1004.7156669999999,0.0,81.625,10.20916667,4.689916667,238.18904365000003 +2016-02-22 04:00:00,0.0,1004.525,0.0,82.60833333,10.01416667,4.747583333,238.18725410000002 +2016-02-22 05:00:00,0.0,1004.5798890000001,0.0,83.35,9.880833333,5.274,238.1870751333333 +2016-02-22 06:00:00,0.0,1004.527444,0.0,83.55,9.789166667,5.5115,238.18492771666664 +2016-02-22 07:00:00,0.0,1004.264222,2.2391666669999997,83.55,9.775,5.228916667,238.18349608333335 +2016-02-22 08:00:00,0.0,1004.182333,34.30658333,83.71666667,9.791666667000001,5.0085,238.1806328166667 +2016-02-22 09:00:00,0.0,1004.140667,69.65083333,82.35,10.06166667,5.141833333,238.17794855000002 +2016-02-22 10:00:00,0.0,1004.1,100.6525,82.26666667,10.23083333,4.772333333,238.17723271666668 +2016-02-22 11:00:00,0.0,1004.130889,117.15833329999998,82.80833333,10.3925,4.779833333,238.17580106666662 +2016-02-22 12:00:00,0.0,1003.982333,94.43916667,83.325,10.61333333,4.665583333,238.17544318333333 +2016-02-22 13:00:00,0.0,1003.288667,41.8425,84.1,10.49,5.1475,238.17472736666664 +2016-02-22 14:00:00,0.0,1002.6489999999999,49.4825,86.84166667,10.11583333,4.834416667,238.17562213333335 +2016-02-22 15:00:00,8.377077048,1002.5666669999999,48.095,92.075,9.679166667,4.179166667,238.17150618333335 +2016-02-22 16:00:00,8.66397768,1002.567667,41.75666667,96.85833333,9.331666667,4.029833333,238.17204306666667 +2016-02-22 17:00:00,0.0,1002.4705560000001,9.571416667000001,94.94166667,9.555833332999999,4.117416667,238.17508526666666 +2016-02-22 18:00:00,0.0,1002.102444,0.211833333,94.54166667,9.48,4.39825,238.20604421666667 +2016-02-22 19:00:00,4.140798672,1002.146556,0.0,92.23333333,9.760833332999999,3.82425,238.21785511666667 +2016-02-22 20:00:00,31.20877222,1002.6981109999999,0.0,94.70833333,8.709333333,3.337583333,238.2237605833333 +2016-02-22 21:00:00,23.077204899999998,1004.010889,0.0,97.53333333,5.640333332999999,3.177666667,238.22895021666668 +2016-02-22 22:00:00,8.769699096,1004.834333,0.0,98.06666667,4.033,1.723583333,238.23413986666665 +2016-02-22 23:00:00,22.53028118,1005.447111,0.0,98.3,3.359,2.1925,238.23754 +2016-02-23 00:00:00,24.18939694,1005.847556,0.0,99.85,2.509083333,1.075916667,238.24219278333337 +2016-02-23 01:00:00,13.13121506,1005.757333,0.0,100.0,2.0836666669999997,0.87675,238.24935091666666 +2016-02-23 02:00:00,7.661020607999999,1005.8034439999999,0.0,100.0,1.853083333,1.0593333329999999,238.25919333333331 +2016-02-23 03:00:00,14.85164393,1005.646556,0.0,100.0,1.7078333330000002,0.532083333,238.26706726666666 +2016-02-23 04:00:00,12.24275863,1005.695111,0.0,100.0,1.295416667,0.325916667,238.27404646666665 +2016-02-23 05:00:00,7.275615672000001,1005.764222,0.0,100.0,1.298,0.211833333,238.2799519333333 +2016-02-23 06:00:00,7.35197004,1005.776444,0.0,100.0,1.28575,0.40575,238.28353100000004 +2016-02-23 07:00:00,7.325054136,1005.9162220000001,1.178,100.0,1.2945,0.396583333,238.28800481666667 +2016-02-23 08:00:00,9.86151408,1006.346111,14.100999999999999,100.0,1.361,0.439833333,238.29748935 +2016-02-23 09:00:00,9.954294383999999,1006.836778,28.52833333,100.0,1.416916667,0.559083333,238.31448991666664 +2016-02-23 10:00:00,4.94965272,1007.0808890000001,95.68333333,100.0,1.843083333,0.7905833329999999,238.31699528333334 +2016-02-23 11:00:00,0.0,1007.4044439999999,100.3616667,99.94166667,2.5459166669999997,1.061166667,238.32075326666666 +2016-02-23 12:00:00,0.0,1007.639222,83.575,99.225,3.396583333,1.4055,238.32653159999998 +2016-02-23 13:00:00,0.0,1007.5441109999999,67.61666667,97.74166667,3.41625,1.285583333,238.3586117333333 +2016-02-23 14:00:00,0.0,1007.6558890000001,174.1083333,92.79166667,4.376333333,1.678916667,238.3588207166667 +2016-02-23 15:00:00,0.0,1007.9971109999999,110.26333329999999,91.31666667,4.855333333,1.9295,238.35694003333333 +2016-02-23 16:00:00,0.0,1008.353444,66.84333333,90.00833333,4.34075,1.357666667,238.35631316666664 +2016-02-23 17:00:00,0.0,1008.824556,14.94341667,94.525,3.977416667,1.56525,238.3540146 +2016-02-23 18:00:00,6.248443632000001,1009.819167,0.4755,97.11666667,3.08775,2.187666667,238.3521339166667 +2016-02-23 19:00:00,0.0,1010.7611109999999,0.0,99.43333333,1.922916667,1.865583333,238.35088014999997 +2016-02-23 20:00:00,0.0,1011.635278,0.0,98.68333333,2.0346666669999998,0.96925,238.34670091666666 +2016-02-23 21:00:00,0.0,1012.2422220000001,0.0,99.73333333,1.6266666669999998,0.603166667,238.34502924999995 +2016-02-23 22:00:00,0.0,1012.609722,0.0,99.70833333,1.325583333,0.985583333,238.34273065 +2016-02-23 23:00:00,0.0,1013.109167,0.0,99.28333333,1.5880833330000002,1.43625,238.33938726666668 +2016-02-24 00:00:00,0.0,1013.285,0.0,98.51666667,1.502083333,0.928583333,238.33771554999998 +2016-02-24 01:00:00,0.0,1013.390833,0.0,98.475,1.099583333,0.7340000000000001,238.33583491666664 +2016-02-24 02:00:00,0.0,1013.6422220000001,0.0,99.95833333,0.489833333,0.449,238.33332736666662 +2016-02-24 03:00:00,0.0,1013.708333,0.0,99.99166667,0.935916667,0.327916667,238.3314467333333 +2016-02-24 04:00:00,0.0,1013.6169449999999,0.0,99.98333333,0.563583333,0.9015833329999999,238.32977505 +2016-02-24 05:00:00,0.0,1013.8419439999999,0.0,100.0,0.18075,0.399916667,238.33040191666666 +2016-02-24 06:00:00,0.0,1013.708056,0.0,100.0,0.354,0.515416667,238.32873021666668 +2016-02-24 07:00:00,0.0,1013.9097220000001,5.881666667,100.0,0.010833333,0.336583333,238.32496888333336 +2016-02-24 08:00:00,0.0,1014.393333,21.17666667,100.0,1.1005,0.783166667,238.32099864999998 +2016-02-24 09:00:00,2.456676648,1014.615833,62.43583333,100.0,1.7170833330000002,0.8261666670000001,238.31828213333335 +2016-02-24 10:00:00,0.0,1014.5077779999999,77.43333333,99.64166667,2.31425,1.3940000000000001,238.31640148333335 +2016-02-24 11:00:00,0.0,1014.1663890000001,161.8416667,94.50833333,3.1654166669999997,1.85675,238.31284913333334 +2016-02-24 12:00:00,0.0,1013.7638890000001,178.4,87.35833333,3.8698333330000003,1.331416667,238.31201328333336 +2016-02-24 13:00:00,5.143522872,1012.905833,126.15083329999999,92.0,2.136583333,1.921583333,238.31284911666668 +2016-02-24 14:00:00,0.0,1011.9719439999999,154.975,89.89166667,3.748583333,1.7131666669999999,238.31452081666666 +2016-02-24 15:00:00,0.0,1011.207778,237.2,76.28916667,4.991083333,1.6319166669999998,238.31284914999995 +2016-02-24 16:00:00,0.0,1010.648333,80.48,75.7775,5.0785,1.22925,238.313476 +2016-02-24 17:00:00,0.0,1010.1322220000001,28.39,83.91583333,3.9388333330000003,0.617,238.313476 +2016-02-24 18:00:00,0.0,1009.9080560000001,0.461916667,97.06666667,1.5363333330000002,0.21641666699999998,238.3151477 +2016-02-24 19:00:00,0.0,1009.716389,0.0,99.725,0.181833333,0.2815,238.3164015 +2016-02-24 20:00:00,0.0,1009.415,0.0,99.975,-0.38433333299999994,0.4015,238.31472978333332 +2016-02-24 21:00:00,0.0,1009.0077779999999,0.0,100.0,-1.3245,0.24658333300000002,238.31640146666666 +2016-02-24 22:00:00,0.0,1008.8575,0.0,100.0,-1.7375,0.39441666700000005,238.31556565000002 +2016-02-24 23:00:00,0.0,1008.481944,0.0,100.0,-1.7685,0.309083333,238.3141029 +2016-02-25 00:00:00,0.0,1008.0325,0.0,100.0,-2.380416667,0.152166667,238.31493875 +2016-02-25 01:00:00,0.0,1007.858056,0.0,100.0,-2.68475,0.15233333300000002,238.31243121666668 +2016-02-25 02:00:00,0.0,1007.54,0.0,100.0,-3.26825,0.2955,238.3111774333333 +2016-02-25 03:00:00,0.0,1007.1238890000001,0.0,100.0,-3.872583333,0.13975,238.31055055 +2016-02-25 04:00:00,0.0,1006.825,0.0,100.0,-4.438916667,0.044666667,238.31075953333337 +2016-02-25 05:00:00,0.0,1007.167222,0.0,100.0,-4.74175,0.058416667,238.30804301666663 +2016-02-25 06:00:00,0.0,1007.259167,0.0,100.0,-5.145166667,0.058833333,238.3074161333333 +2016-02-25 07:00:00,0.0,1007.275556,4.8255,100.0,-5.232333333,0.131416667,238.30407276666665 +2016-02-25 08:00:00,0.0,1007.7427779999999,21.69583333,100.0,-2.664083333,0.30041666699999997,238.3015652 +2016-02-25 09:00:00,0.0,1008.0763890000001,114.54666670000002,98.76666667,0.32375,0.72975,238.29822181666668 +2016-02-25 10:00:00,0.0,1008.634167,261.03333330000004,93.5,1.6905,1.4881666669999998,238.29195298333332 +2016-02-25 11:00:00,0.0,1008.8922220000001,303.21666669999996,88.825,2.9699166669999997,1.73075,238.29257985 +2016-02-25 12:00:00,0.0,1008.908611,369.3083333,83.75,2.999583333,1.624166667,238.29174401666668 +2016-02-25 13:00:00,0.0,1008.682222,275.15,76.78833333,3.989833333,2.077666667,238.2909081833333 +2016-02-25 14:00:00,0.0,1008.6752779999999,112.5116667,72.39416667,3.6350833330000003,2.655333333,238.2913260833333 +2016-02-25 15:00:00,4.3685077439999995,1008.766667,145.8325,72.9675,3.43325,4.076333333,238.29007230000002 +2016-02-25 16:00:00,0.0,1008.6833330000001,124.3925,70.60666667,3.6010000000000004,1.5369166669999998,238.2894454166667 +2016-02-25 17:00:00,0.0,1008.8425,20.98466667,78.81,2.851416667,1.183,238.28986335000002 +2016-02-25 18:00:00,0.0,1009.218056,0.705333333,87.25833333,1.047666667,0.340083333,238.28986335000002 +2016-02-25 19:00:00,0.0,1009.575,0.0,92.93333333,-0.29891666699999997,0.130333333,238.28965438333333 +2016-02-25 20:00:00,0.0,1009.91,0.0,93.10833333,0.419,0.9925,238.28777375 +2016-02-25 21:00:00,0.0,1010.158889,0.0,95.74166667,0.506,1.3295,238.28777375 +2016-02-25 22:00:00,0.0,1010.425833,0.0,96.36666667,0.23875,0.35758333299999995,238.28422138333335 +2016-02-25 23:00:00,0.0,1010.515833,0.0,94.89166667,-0.065083333,0.253666667,238.28108698333332 +2016-02-26 00:00:00,0.0,1010.391944,0.0,94.73333333,0.140666667,0.418416667,238.28108696666666 +2016-02-26 01:00:00,0.0,1010.341389,0.0,95.95833333,-0.034833333,0.7155,238.28108696666666 +2016-02-26 02:00:00,0.0,1010.299444,0.0,96.84166667,-0.623166667,0.246416667,238.28129591666666 +2016-02-26 03:00:00,0.0,1009.965833,0.0,96.73333333,-1.274833333,0.3095,238.28087801666666 +2016-02-26 04:00:00,0.0,1009.724444,0.0,98.06666667,-2.0085,0.0635,238.27899734999997 +2016-02-26 05:00:00,0.0,1009.432222,0.0,100.0,-1.8840833330000002,0.01475,238.2781615166667 +2016-02-26 06:00:00,0.0,1009.208333,0.0,100.0,-1.74325,0.0,238.27774358333332 +2016-02-26 07:00:00,0.0,1009.0666669999999,7.207916667,100.0,-2.068333333,0.034166667000000005,238.2781615 +2016-02-26 08:00:00,0.0,1009.559444,40.01166667,100.0,-1.6411666669999998,0.0,238.27398226666665 +2016-02-26 09:00:00,0.0,1009.625,85.35,99.49166667,-0.32675,0.034166667000000005,238.27356435 +2016-02-26 10:00:00,0.0,1009.6663890000001,146.3666667,94.825,0.750833333,0.358333333,238.2702209666667 +2016-02-26 11:00:00,0.0,1009.465833,200.56666669999998,91.50833333,2.2215833330000003,0.758916667,238.27022096666667 +2016-02-26 12:00:00,0.0,1009.031944,192.675,88.58333333,2.7515,1.0805,238.27063890000002 +2016-02-26 13:00:00,0.0,1008.381667,217.625,80.7575,4.3876666669999995,0.5730833329999999,238.27063890000002 +2016-02-26 14:00:00,0.0,1007.664444,119.61666670000001,78.75416667,3.909333333,1.211083333,238.27147471666663 +2016-02-26 15:00:00,0.0,1007.240278,93.61666667,69.2175,3.6989166669999998,0.70475,238.2716837 +2016-02-26 16:00:00,0.0,1006.5397220000001,63.05166667,65.59583333,3.680583333,0.3295,238.27001201666667 +2016-02-26 17:00:00,0.0,1005.940833,19.83983333,71.77166667,3.111916667,0.192083333,238.2710568 +2016-02-26 18:00:00,0.0,1005.9175,0.598166667,90.30833333,1.61775,0.11775,238.26959408333335 +2016-02-26 19:00:00,0.0,1005.9994439999999,0.0,95.63333333,0.10441666699999999,0.0,238.26980303333337 +2016-02-26 20:00:00,0.0,1005.9,0.0,97.45,-1.1461666670000001,0.0,238.26959408333335 +2016-02-26 21:00:00,0.0,1005.8,0.0,97.225,-0.24908333300000002,0.055166667,238.26708654999996 +2016-02-26 22:00:00,0.0,1005.581667,0.0,95.11666667,0.00125,0.036833332999999996,238.26645963333337 +2016-02-26 23:00:00,0.0,1005.165,0.0,96.33333333,-1.052166667,0.0,238.26813135 +2016-02-27 00:00:00,0.0,1004.7508330000001,0.0,98.95,-1.5961666669999999,0.0,238.2683403166667 +2016-02-27 01:00:00,0.0,1004.7075,0.0,97.40833333,-1.1935,0.069,238.2645789833333 +2016-02-27 02:00:00,0.0,1004.506389,0.0,97.68333333,-0.648333333,0.013166667,238.26562378333335 +2016-02-27 03:00:00,0.0,1003.7072220000001,0.0,99.18333333,-1.197333333,0.02975,238.2666686166667 +2016-02-27 04:00:00,0.0,1003.240278,0.0,100.0,-2.09725,0.093083333,238.26687758333333 +2016-02-27 05:00:00,0.0,1003.015833,0.0,100.0,-2.238916667,0.1945,238.26792238333334 +2016-02-27 06:00:00,0.0,1002.6916669999999,0.0,100.0,-2.5220833330000003,0.3165,238.26750445000002 +2016-02-27 07:00:00,0.0,1002.734167,5.292833333,100.0,-2.300916667,0.510083333,238.26729550000002 +2016-02-27 08:00:00,0.0,1003.2172220000001,22.8775,96.68333333,-1.201916667,1.016666667,238.2624893666667 +2016-02-27 09:00:00,0.0,1003.559167,129.5625,87.71666667,1.700166667,0.3775,238.2599818333333 +2016-02-27 10:00:00,0.0,1003.591667,261.1833333,76.9775,2.56125,2.664666667,238.25810121666666 +2016-02-27 11:00:00,0.0,1003.641944,324.0583333,73.11083333,3.1875,3.6975833330000003,238.25454883333336 +2016-02-27 12:00:00,0.0,1003.440556,352.0083333,68.9025,4.187666667,4.09075,238.25350403333331 +2016-02-27 13:00:00,0.0,1003.040278,347.8,64.7925,5.181583333,4.03575,238.25308611666665 +2016-02-27 14:00:00,0.0,1003.035,306.4,62.305,5.816333332999999,3.8535,238.25183231666665 +2016-02-27 15:00:00,0.0,1003.366667,236.68333330000002,60.2425,6.020916667000001,3.931833333,238.24974269999998 +2016-02-27 16:00:00,0.0,1003.4,126.18916670000002,60.0075,5.664166667000001,3.87525,238.25016061666665 +2016-02-27 17:00:00,0.0,1003.634722,44.12383333,67.0825,4.6845,3.202083333,238.25308610000002 +2016-02-27 18:00:00,0.0,1004.31,0.8434166670000001,78.14166667,2.993083333,1.3985833330000002,238.25329505 +2016-02-27 19:00:00,0.0,1004.843056,0.0,83.56666667,2.116083333,1.3585833330000001,238.2545488333333 +2016-02-27 20:00:00,0.0,1004.991944,0.0,92.75833333,1.36725,1.028333333,238.25559365 +2016-02-27 21:00:00,0.0,1005.3425,0.0,90.575,0.597583333,0.49608333299999996,238.25371299999998 +2016-02-27 22:00:00,0.0,1005.776945,0.0,94.975,0.452166667,0.84125,238.25496676666663 +2016-02-27 23:00:00,0.0,1006.0752779999999,0.0,94.25833333,0.279166667,1.208916667,238.25433986666667 +2016-02-28 00:00:00,0.0,1006.1747220000001,0.0,89.78333333,0.000166667,1.4151666669999998,238.2505785333333 +2016-02-28 01:00:00,0.0,1006.5175,0.0,87.44166667,-0.193416667,2.273583333,238.24786205 +2016-02-28 02:00:00,0.0,1006.500278,0.0,87.09166667,-0.69325,1.9970833330000002,238.25016061666665 +2016-02-28 03:00:00,0.0,1006.5247220000001,0.0,85.85,-1.238583333,0.8430833329999999,238.24702620000002 +2016-02-28 04:00:00,0.0,1006.550833,0.0,86.95833333,-1.27075,1.13975,238.24786206666667 +2016-02-28 05:00:00,0.0,1007.168333,0.0,86.91666667,-1.025583333,1.8913333330000002,238.24535451666665 +2016-02-28 06:00:00,0.0,1007.2913890000001,0.0,87.30833333,-1.13675,1.6174166669999999,238.2455635 +2016-02-28 07:00:00,0.0,1007.334444,6.990833332999999,86.725,-0.946583333,2.869416667,238.24410076666666 +2016-02-28 08:00:00,0.0,1008.060556,38.14666667,86.31666667,-0.61675,3.379916667,238.24180216666664 +2016-02-28 09:00:00,0.0,1008.684167,154.325,84.23333333,0.5854166670000001,3.285333333,238.23971253333332 +2016-02-28 10:00:00,0.0,1008.9430560000001,199.5166667,79.52666667,1.876166667,4.5425833330000005,238.2388766833333 +2016-02-28 11:00:00,0.0,1009.4094439999999,231.1083333,75.08333333,3.043,4.5679166669999995,238.23866775000002 +2016-02-28 12:00:00,0.0,1009.575,229.79166669999998,73.26333333,3.744916667,4.791,238.2361602 +2016-02-28 13:00:00,0.0,1009.801111,221.41666669999998,72.53416667,4.1705,4.761,238.23762293333334 +2016-02-28 14:00:00,0.0,1010.275833,227.1166667,69.8425,4.903166667,4.9263333330000005,238.2346974666667 +2016-02-28 15:00:00,0.0,1010.416667,106.74166670000001,71.89416667,4.6515,4.938916667,238.23595125 +2016-02-28 16:00:00,0.0,1010.618333,62.63,72.32833333,4.29725,5.057916667,238.23490643333332 +2016-02-28 17:00:00,0.0,1010.891944,21.43216667,73.98583333,3.8490833330000003,5.048833333,238.23616018333334 +2016-02-28 18:00:00,0.0,1011.671111,0.623083333,73.84166667,3.376083333,4.919916667,238.23260786666663 +2016-02-28 19:00:00,0.0,1012.600833,0.0,75.22416667,2.815833333,3.62825,238.23469748333332 +2016-02-28 20:00:00,0.0,1013.183889,0.0,77.04166667,2.4275833330000003,2.8681666669999997,238.23323474999998 +2016-02-28 21:00:00,0.0,1013.259167,0.0,77.46,2.2833333330000003,3.088,238.23365266666667 +2016-02-28 22:00:00,0.0,1013.400833,0.0,77.7675,2.1070833330000003,2.7061666669999997,238.23365263333335 +2016-02-28 23:00:00,0.0,1013.4486109999999,0.0,78.83833333,1.95075,2.522583333,238.23156305 +2016-02-29 00:00:00,0.0,1012.990833,0.0,79.86583333,1.7976666669999999,2.421916667,238.2346974666667 +2016-02-29 01:00:00,0.0,1013.050833,0.0,80.63333333,1.7083333330000001,2.763666667,238.23323476666667 +2016-02-29 02:00:00,0.0,1013.174167,0.0,81.60833333,1.5725,2.5306666669999998,238.23093616666665 +2016-02-29 03:00:00,0.0,1012.9588890000001,0.0,82.25833333,1.587166667,3.078583333,238.2323989 +2016-02-29 04:00:00,0.0,1013.108333,0.0,84.01666667,1.3705833330000001,2.932583333,238.23114511666665 +2016-02-29 05:00:00,0.0,1013.1425,0.0,84.04166667,1.163,2.675583333,238.23114513333334 +2016-02-29 06:00:00,0.0,1012.981944,0.0,83.86666667,0.969333333,2.59875,238.2303092666667 +2016-02-29 07:00:00,0.0,1012.834167,6.084083333,82.79166667,0.9793333329999999,2.9715833330000003,238.23051826666665 +2016-02-29 08:00:00,0.0,1013.4180560000001,38.49583333,81.5325,1.45125,3.654083333,238.22821965000003 +2016-02-29 09:00:00,0.0,1013.591667,86.10416667,75.27083333,1.9373333330000002,3.876666667,238.22738383333333 +2016-02-29 10:00:00,0.0,1014.0763890000001,139.33333330000002,70.10833333,2.4780833330000003,4.771333333,238.22529418333338 +2016-02-29 11:00:00,0.0,1014.3425,266.4,65.97166667,3.30825,5.878083332999999,238.22404043333336 +2016-02-29 12:00:00,0.0,1014.4319439999999,176.2166667,65.1325,3.49325,5.621333333,238.22424936666664 +2016-02-29 13:00:00,0.0,1013.765833,173.95,62.46416667,3.8176666669999997,6.074583333,238.22404041666667 +2016-02-29 14:00:00,0.0,1013.583056,125.975,61.82666667,3.952583333,5.747999999999999,238.2229956333333 +2016-02-29 15:00:00,0.0,1013.7422220000001,120.34166670000002,61.50833333,4.023666667,5.566583333,238.22153290000003 +2016-02-29 16:00:00,0.0,1014.0427779999999,72.14083333,62.4775,3.985416667,4.517166667,238.22153288333334 +2016-02-29 17:00:00,0.0,1014.501667,26.27666667,64.975,3.809916667,3.259416667,238.22195081666666 +2016-02-29 18:00:00,0.0,1015.2947220000001,1.3545,67.93,3.357166667,3.2705,238.22153288333334 +2016-02-29 19:00:00,0.0,1015.9927779999999,0.0,69.13,2.8705,3.331416667,238.22257770000002 +2016-02-29 20:00:00,0.0,1016.5172220000001,0.0,71.88416667,1.8234166669999998,2.845333333,238.22153288333334 +2016-02-29 21:00:00,0.0,1016.667222,0.0,73.97333333,1.3993333330000002,2.41125,238.22174185000003 +2016-02-29 22:00:00,0.0,1016.775278,0.0,76.73166667,0.7260833329999999,2.149666667,238.2219508166667 +2016-02-29 23:00:00,0.0,1016.8,0.0,80.51,-0.005416666999999999,1.3791666669999998,238.22215978333335 +2016-01-03 00:00:00,0.0,1016.5325,0.0,89.26666667,-0.842583333,0.243,238.0807768666666 +2016-01-03 01:00:00,0.0,1016.533611,0.0,91.84166667,-1.098416667,0.44608333299999997,238.08364011666663 +2016-01-03 02:00:00,0.0,1016.6833330000001,0.0,94.825,-2.1295833330000002,0.000583333,238.08632443333332 +2016-01-03 03:00:00,0.0,1016.398889,0.0,95.95,-3.1583333330000003,0.016416667,238.08847185000002 +2016-01-03 04:00:00,0.0,1016.6425,0.0,96.89166667,-3.7833333330000003,0.0,238.08954556666671 +2016-01-03 05:00:00,0.0,1016.6836109999999,0.0,97.51666667,-4.344916667,0.0,238.09222989999998 +2016-01-03 06:00:00,0.0,1016.608333,0.02725,98.375,-4.704666667,0.006166667,238.09384045 +2016-01-03 07:00:00,0.0,1016.725,9.4595,98.625,-4.630916667,0.01,238.09401939999998 +2016-01-03 08:00:00,0.0,1016.516389,43.90833333,98.675,-1.693416667,0.136666667,238.09419836666666 +2016-01-03 09:00:00,0.0,1016.708333,148.4133333,86.95833333,-0.07675,0.66275,238.09598788333332 +2016-01-03 10:00:00,0.0,1016.4075,271.9583333,78.12833333,0.8325,1.5483333330000002,238.0956299833333 +2016-01-03 11:00:00,0.0,1015.8644439999999,331.09166669999996,72.33083333,2.092,1.410166667,238.09509311666662 +2016-01-03 12:00:00,0.0,1014.871944,348.1416667,65.85583333,3.58675,1.333333333,238.09491416666663 +2016-01-03 13:00:00,0.0,1013.8133330000001,347.2916667,58.87083333,4.91125,1.5695,238.09527206666664 +2016-01-03 14:00:00,0.0,1012.630278,252.8833333,54.75666667,5.6254166670000005,1.060416667,238.09491418333332 +2016-01-03 15:00:00,0.0,1011.773611,151.15,53.70583333,6.2405,0.350916667,238.09563 +2016-01-03 16:00:00,0.0,1011.097778,54.80083333,55.94666667,5.872166667,0.340416667,238.09616686666666 +2016-01-03 17:00:00,0.0,1010.2388890000001,15.44483333,60.64083333,5.757083333,0.921583333,238.09724058333333 +2016-01-03 18:00:00,0.0,1009.8922220000001,0.412583333,68.87666667,4.3310833330000005,1.973916667,238.09759846666668 +2016-01-03 19:00:00,0.0,1009.446667,0.0,95.975,1.7630000000000001,0.602833333,238.09580895 +2016-01-03 20:00:00,0.0,1008.573333,0.0,93.5,1.6351666669999998,0.141916667,238.0970616333333 +2016-01-03 21:00:00,2.394925224,1007.923333,0.0,95.0,1.9435,0.856916667,238.09580894999996 +2016-01-03 22:00:00,0.0,1007.1055560000001,0.0,95.99166667,2.256333333,1.155916667,238.09401943333333 +2016-01-03 23:00:00,0.0,1006.131389,0.0,97.44166667,2.39025,1.3385833329999999,238.09384046666665 +2016-02-03 00:00:00,2.703677784,1005.331111,0.0,97.20833333,2.6725,1.0576666670000001,238.1117358 +2016-02-03 01:00:00,0.0,1004.263611,0.0,97.525,3.049833333,1.193666667,238.11406219999995 +2016-02-03 02:00:00,0.0,1003.288611,0.0,97.225,3.304416667,0.988666667,238.11620961666668 +2016-02-03 03:00:00,0.0,1002.1377779999999,0.0,96.025,3.5659166669999998,1.320916667,238.11513591666667 +2016-02-03 04:00:00,0.0,1001.073333,0.0,96.76666667,4.529833333,1.253666667,238.11603066666666 +2016-02-03 05:00:00,0.0,1000.380278,0.0,96.1,5.19475,1.90725,238.11620959999996 +2016-02-03 06:00:00,0.0,999.2641667000001,0.01225,94.48333333,5.686583333,2.356833333,238.11567275000002 +2016-02-03 07:00:00,0.0,998.3897222,6.22025,92.78333333,5.7035,2.034416667,238.11567276666665 +2016-02-03 08:00:00,0.0,997.8816667000001,45.82666667,94.125,5.432083333,2.1488333330000002,238.11603065 +2016-02-03 09:00:00,0.0,997.0219444,81.695,95.10833333,6.117916667,2.48325,238.11352533333334 +2016-02-03 10:00:00,7.510672992000001,995.9641667000001,75.17166667,94.325,6.917999999999999,3.4415,238.11316741666667 +2016-02-03 11:00:00,22.36194463,995.1891667000001,88.78916667,93.50833333,6.991416667,4.072416667,238.10958834999997 +2016-02-03 12:00:00,21.84170695,994.8186111,112.0,89.31666667,6.46725,4.01325,238.10851463333336 +2016-02-03 13:00:00,0.0,995.2497222000001,172.04166669999998,87.31666667,5.839333333,1.918916667,238.1077988333333 +2016-02-03 14:00:00,0.0,995.3002777999999,118.99166670000001,83.65833333,5.487166667,1.73975,238.107083 +2016-02-03 15:00:00,0.0,994.9733332999999,86.22583333,82.7725,5.4285,0.67375,238.10708301666662 +2016-02-03 16:00:00,0.0,994.6075,70.41916667,79.04,5.426833332999999,0.791583333,238.10672509999998 +2016-02-03 17:00:00,0.0,994.3916667000001,40.095,83.41666667,4.707333333,1.057416667,238.10511449999998 +2016-02-03 18:00:00,0.0,994.6166667000001,3.2735,89.125,3.460416667,2.072666667,238.10583033333333 +2016-02-03 19:00:00,0.0,994.6513889,0.0,87.40833333,2.167,1.9550833330000001,238.10368290000005 +2016-02-03 20:00:00,0.0,994.9416667000002,0.0,85.23333333,2.6661666669999997,2.5053333330000003,238.10386186666665 +2016-02-03 21:00:00,0.0,994.9669444,0.0,85.91666667,3.101416667,2.07875,238.10064068333335 +2016-02-03 22:00:00,0.0,994.9838889,0.0,88.55,3.6840833330000002,1.6085833330000001,238.10064068333335 +2016-02-03 23:00:00,6.632352384,994.7569444000001,0.0,95.11666667,2.857333333,2.591166667,238.099388 +2016-03-03 00:00:00,0.0,994.7755556,0.0,92.575,2.9186666669999997,2.980416667,238.22278666666668 +2016-03-03 01:00:00,0.0,995.0094444,0.0,89.44166667,3.0910833330000003,3.070333333,238.22069704999998 +2016-03-03 02:00:00,0.0,995.2166667000001,0.0,86.575,3.0035,2.173,238.22132393333334 +2016-03-03 03:00:00,0.0,995.2583332999999,0.0,86.75833333,2.93075,2.82125,238.21902536666664 +2016-03-03 04:00:00,0.0,995.5011111,0.0,87.65,2.81175,2.5118333330000002,238.21902536666667 +2016-03-03 05:00:00,0.0,995.7663889,0.0,89.40833333,2.6935,2.65625,238.2188164 +2016-03-03 06:00:00,0.0,995.6083332999999,0.025333333,88.74166667,2.5285833330000003,2.894583333,238.21756265 +2016-03-03 07:00:00,0.0,995.5580556,6.293833332999999,89.93333333,1.986666667,2.6920833330000002,238.21693575000003 +2016-03-03 08:00:00,0.0,995.65,67.79083333,87.025,3.0051666669999997,2.5895,238.21672676666665 +2016-03-03 09:00:00,0.0,995.6591667000001,137.8458333,81.57583333,4.0824166669999995,1.71125,238.21442818333333 +2016-03-03 10:00:00,0.0,995.6408332999998,113.275,84.15833333,3.683583333,2.195833333,238.21421923333332 +2016-03-03 11:00:00,0.0,995.5425,85.3225,86.14166667,3.87475,2.231,238.21442818333333 +2016-03-03 12:00:00,0.0,996.0180556,65.0625,87.33333333,3.847083333,2.4145,238.21296545000004 +2016-03-03 13:00:00,0.0,996.4594444,48.54583333,93.65,3.5585,0.8350833329999999,238.2142192166667 +2016-03-03 14:00:00,0.0,996.7255556,54.6875,96.725,3.379083333,0.23425,238.21233855 +2016-03-03 15:00:00,0.0,997.2522222000001,37.22333333,94.86666667,3.585916667,0.028583333,238.21212958333334 +2016-03-03 16:00:00,0.0,998.035,63.38,94.44166667,3.853,0.17425,238.21003998333336 +2016-03-03 17:00:00,0.0,998.6522222000001,11.23783333,93.69166667,3.6888333330000003,0.056416667000000004,238.20899518333337 +2016-03-03 18:00:00,0.0,999.5441667000001,1.6731666669999998,95.05,3.13375,0.054916667,238.21045793333334 +2016-03-03 19:00:00,0.0,1000.351667,0.0,99.41666667,0.712333333,0.028166667000000003,238.21275649999998 +2016-03-03 20:00:00,0.0,1000.976389,0.0,100.0,-0.833666667,0.0,238.20983103333333 +2016-03-03 21:00:00,0.0,1001.535,0.0,100.0,-0.94025,0.027666667000000002,238.21066688333337 +2016-03-03 22:00:00,0.0,1001.8755560000001,0.0,100.0,-0.94375,0.031333333,238.21066688333335 +2016-03-03 23:00:00,0.0,1002.034167,0.0,100.0,-0.565416667,0.020666667,238.21045791666668 +2016-04-03 00:00:00,0.0,1001.95,0.0,100.0,-1.9175,0.19775,238.3659254 +2016-04-03 01:00:00,0.0,1002.15,0.0,100.0,-2.186583333,0.0,238.36091031666663 +2016-04-03 02:00:00,0.0,1002.006944,0.0,100.0,-2.0659166669999998,0.004916667,238.35902968333332 +2016-04-03 03:00:00,0.0,1001.766389,0.0,100.0,-2.3795,0.042833333,238.3577759 +2016-04-03 04:00:00,0.0,1001.4738890000001,0.0,100.0,-2.369583333,0.58275,238.35464146666664 +2016-04-03 05:00:00,0.0,1000.688889,0.0,100.0,-2.007916667,0.5720000000000001,238.3506712 +2016-04-03 06:00:00,0.0,999.7144444,0.08508333300000001,100.0,-2.052083333,0.619583333,238.3467009166667 +2016-04-03 07:00:00,0.0,999.2069444,10.78308333,100.0,-1.293833333,0.6205,238.34523819999995 +2016-04-03 08:00:00,0.0,998.5725,58.235,100.0,0.0995,1.118083333,238.3385514 +2016-04-03 09:00:00,2.8444173360000002,997.6222222000001,104.1791667,100.0,0.8028333329999999,2.356416667,238.33479011666665 +2016-04-03 10:00:00,0.0,996.4633332999998,116.29166670000001,98.54166667,1.9909166669999998,2.221,238.32935713333336 +2016-04-03 11:00:00,0.0,995.3461110999999,131.8583333,91.06666667,3.4906666669999997,3.114,238.32622268333338 +2016-04-03 12:00:00,0.0,994.1141667000002,130.2,82.91416667,4.233416667,3.94025,238.32622268333333 +2016-04-03 13:00:00,0.0,992.8788889,158.16666669999998,76.415,5.331333333,4.1975,238.32267033333335 +2016-04-03 14:00:00,0.0,991.7727777999999,87.38583333,72.99916667,5.74025,4.251,238.32329721666665 +2016-04-03 15:00:00,4.997531232,991.1075,47.265,85.09166667,4.5555,5.022,238.32246139999998 +2016-04-03 16:00:00,16.82704853,990.8916667000001,17.61416667,95.56666667,3.20225,3.757583333,238.32099864999998 +2016-04-03 17:00:00,33.26132081,990.7572222000001,8.032583333,98.125,2.4003333330000003,2.71175,238.31932698333335 +2016-04-03 18:00:00,6.941140296,990.4758332999999,0.84325,99.48333333,2.684416667,2.79475,238.31849111666668 +2016-04-03 19:00:00,3.47888892,990.6158332999998,0.0,99.05,3.179833333,3.119916667,238.31890901666665 +2016-04-03 20:00:00,9.484604856,990.3744444,0.0,99.425,3.37975,2.591416667,238.31744631666666 +2016-04-03 21:00:00,6.62491308,990.2,0.0,100.0,3.457583333,2.5085,238.31452083333332 +2016-04-03 22:00:00,0.0,990.0408332999999,0.0,100.0,3.599166667,2.15675,238.31243121666662 +2016-04-03 23:00:00,12.85007935,989.7902777999999,0.0,100.0,3.688333333,0.889,238.30887888333334 +2016-05-03 00:00:00,11.31286505,989.6261111,0.0,100.0,3.799083333,1.45175,238.13132851666668 +2016-05-03 01:00:00,12.0349957,989.5652777999999,0.0,100.0,3.58475,0.050166667000000005,238.1294699 +2016-05-03 02:00:00,2.4862983119999997,989.2325,0.0,100.0,3.2039166669999997,0.078,238.1301457666667 +2016-05-03 03:00:00,0.0,988.8744444,0.0,100.0,3.402333333,0.070666667,238.12980783333333 +2016-05-03 04:00:00,4.918263504,988.7247222000001,0.0,100.0,3.7385,0.482333333,238.12913196666662 +2016-05-03 05:00:00,14.68466443,988.8008332999999,0.0,100.0,3.854333333,0.285833333,238.12963886666668 +2016-05-03 06:00:00,7.282888512,988.7991667000001,0.017416667,100.0,3.441666667,0.08416666699999999,238.12879404999998 +2016-05-03 07:00:00,7.238626104,988.9852778,3.0460833330000003,100.0,3.381333333,0.0525,238.12693546666665 +2016-05-03 08:00:00,4.8100455360000005,989.4088889000001,18.82,100.0,3.783833333,0.0,238.12541480000002 +2016-05-03 09:00:00,2.495569704,989.5841667000001,32.28833333,100.0,4.430333333,0.1615,238.1249079 +2016-05-03 10:00:00,0.0,989.9663889000001,85.6675,99.34166667,4.876333333,1.27725,238.12541480000002 +2016-05-03 11:00:00,0.0,990.4944444,108.405,93.10833333,5.77925,2.98075,238.12524583333334 +2016-05-03 12:00:00,0.0,990.5566667000002,82.165,92.375,5.68975,2.400583333,238.12271138333332 +2016-05-03 13:00:00,0.0,990.4841667000002,136.13666669999998,89.7,6.047333332999999,2.01575,238.12304930000002 +2016-05-03 14:00:00,0.0,990.725,114.90583329999998,88.925,6.026416667,1.19725,238.12220448333335 +2016-05-03 15:00:00,0.0,990.7347222000001,144.20833330000002,85.425,6.65625,0.9976666670000001,238.12321828333336 +2016-05-03 16:00:00,0.0,990.9583332999998,86.68166667,85.96666667,6.588333333,0.93825,238.12372515 +2016-05-03 17:00:00,0.0,991.1502777999999,41.15833333,87.875,6.0686666670000005,1.051666667,238.12102174999998 +2016-05-03 18:00:00,0.0,991.6186111,6.022083332999999,94.46666667,4.88425,0.24325,238.12203553333333 +2016-05-03 19:00:00,0.0,991.9266667000002,0.0,99.90833333,3.1358333330000003,0.436166667,238.12237345000003 +2016-05-03 20:00:00,0.0,992.3919444,0.0,100.0,2.7615,0.363,238.12304931666662 +2016-05-03 21:00:00,0.0,992.4338889,0.0,100.0,2.021083333,0.14675,238.12524583333334 +2016-05-03 22:00:00,0.0,992.7333332999999,0.0,100.0,1.109583333,0.19325,238.12423205000002 +2016-05-03 23:00:00,0.0,992.9425,0.0,100.0,0.8225,0.15183333300000001,238.12524583333334 +2016-06-03 00:00:00,0.0,993.2508332999998,0.0,100.0,0.881166667,0.21666666699999998,238.09854965 +2016-06-03 01:00:00,0.0,993.3922222000001,0.0,100.0,1.226666667,0.377833333,238.0973668833333 +2016-06-03 02:00:00,0.0,993.3994444,0.0,100.0,1.432166667,0.500583333,238.0995634 +2016-06-03 03:00:00,0.0,993.3172222000001,0.0,100.0,1.12375,0.963166667,238.09939444999998 +2016-06-03 04:00:00,0.0,993.6761111,0.0,100.0,1.498666667,1.34375,238.0992254833333 +2016-06-03 05:00:00,0.0,994.0927777999999,0.0,100.0,1.226,0.72325,238.09939443333334 +2016-06-03 06:00:00,0.0,994.2833332999999,0.12175,100.0,1.214916667,0.81425,238.0987185833333 +2016-06-03 07:00:00,0.0,994.3425,7.781333332999999,99.525,1.3528333330000002,0.213916667,238.09770483333332 +2016-06-03 08:00:00,0.0,994.7844444,47.77833333,97.69166667,1.6480000000000001,0.2615,238.09804275 +2016-06-03 09:00:00,0.0,994.9838889,136.7166667,94.0,3.394083333,0.82125,238.09669101666665 +2016-06-03 10:00:00,0.0,995.25,127.875,88.35833333,3.8489999999999998,1.051083333,238.09517036666668 +2016-06-03 11:00:00,0.0,995.2336111,121.74583329999999,85.55833333,4.350416667,1.200333333,238.09736686666665 +2016-06-03 12:00:00,0.0,995.14,108.70416670000002,89.95,3.863833333,1.4105833330000002,238.09770481666666 +2016-06-03 13:00:00,5.519656896,994.725,61.59333333,95.55,3.379916667,1.4236666669999998,238.09770479999997 +2016-06-03 14:00:00,23.72616302,994.6413889,131.725,98.65833333,3.007083333,1.8420833330000002,238.09483245 +2016-06-03 15:00:00,0.0,994.7091667000001,121.75833329999999,95.38333333,3.88,1.8455833330000002,238.09212903333332 +2016-06-03 16:00:00,0.0,994.7577777999999,70.46666667,95.44166667,3.883,2.071583333,238.09618414999997 +2016-06-03 17:00:00,0.0,994.8005555999999,28.43083333,99.35,2.5195,2.732583333,238.10851846666665 +2016-06-03 18:00:00,0.0,995.1761111,3.1774166669999997,99.15833333,2.144333333,1.694,238.1102081 +2016-06-03 19:00:00,0.0,995.5680556,0.0,99.2,1.978083333,1.28,238.1132494333333 +2016-06-03 20:00:00,0.0,996.0930556,0.0,99.95,1.712083333,1.178833333,238.1142632 +2016-06-03 21:00:00,2.676688608,996.5758332999999,0.0,99.91666667,1.503916667,1.4424166669999998,238.1117287833333 +2016-06-03 22:00:00,0.0,996.7252777999998,0.0,100.0,0.8843333329999999,0.564083333,238.110715 +2016-06-03 23:00:00,0.0,996.9436111,0.0,100.0,1.25925,0.544166667,238.11274258333333 +2016-07-03 00:00:00,0.0,997.2916667000002,0.0,99.99166667,0.9325,0.23025,238.06705758333337 +2016-07-03 01:00:00,0.0,997.4919444,0.0,99.95,0.96725,0.7285,238.06705760000003 +2016-07-03 02:00:00,0.0,997.4747222000001,0.0,100.0,0.38425,0.5914166670000001,238.06884854999998 +2016-07-03 03:00:00,0.0,997.2827777999998,0.0,100.0,-0.627583333,0.172416667,238.0704404833333 +2016-07-03 04:00:00,0.0,997.3180556,0.0,100.0,-1.324833333,0.058083333,238.06845056666668 +2016-07-03 05:00:00,0.0,997.8433332999999,0.0,100.0,-0.690583333,0.10400000000000001,238.0666596 +2016-07-03 06:00:00,0.0,998.2833332999999,0.174333333,100.0,-0.5775,0.023916667000000003,238.06546565 +2016-07-03 07:00:00,0.0,998.5263889,6.903333333,100.0,-0.35100000000000003,0.045166667,238.06466968333336 +2016-07-03 08:00:00,0.0,998.9927777999999,26.86166667,100.0,0.267416667,0.021833332999999996,238.0620827666667 +2016-07-03 09:00:00,2.492616744,999.3255556,139.9316667,99.8,1.8586666669999998,0.284166667,238.06128678333337 +2016-07-03 10:00:00,0.0,999.4169444,224.025,90.78333333,3.459166667,0.672333333,238.0592968666667 +2016-07-03 11:00:00,0.0,999.45,215.6333333,85.82333333,4.72125,1.313833333,238.06208276666666 +2016-07-03 12:00:00,18.012667699999998,999.5333332999999,109.06666670000001,91.575,2.568166667,0.968583333,238.0632767333333 +2016-07-03 13:00:00,9.894882312,999.3741667000002,100.97916670000001,95.5,2.219666667,1.077833333,238.06108780000002 +2016-07-03 14:00:00,2.672752464,999.5013889,71.90916667,96.49166667,2.942333333,1.089416667,238.05949586666668 +2016-07-03 15:00:00,2.676686376,999.9347222000001,174.33333330000002,98.05833333,2.7101666669999998,1.036666667,238.05949588333337 +2016-07-03 16:00:00,0.0,1000.2002779999999,211.85,92.69166667,2.8849166669999997,1.03275,238.05690895 +2016-07-03 17:00:00,0.0,1000.51,60.48166667,93.55833333,2.636,0.88225,238.06108780000002 +2016-07-03 18:00:00,0.0,1001.1936109999999,3.397166667,98.96666667,0.658833333,0.275916667,238.06427169999998 +2016-07-03 19:00:00,0.0,1001.843333,0.0,100.0,-0.613583333,0.178916667,238.06566465000003 +2016-07-03 20:00:00,0.0,1002.450833,0.0,100.0,-1.2685,0.258083333,238.06884855 +2016-07-03 21:00:00,0.0,1002.91,0.0,100.0,-1.7990000000000002,0.15825,238.07183343333338 +2016-07-03 22:00:00,0.0,1003.368333,0.0,100.0,-2.486916667,0.0995,238.07262941666667 +2016-07-03 23:00:00,0.0,1004.018611,0.0,100.0,-2.8095,0.08608333300000001,238.07123645000001 +2016-08-03 00:00:00,0.0,1004.508611,0.0,100.0,-2.722666667,0.0985,237.9544274 +2016-08-03 01:00:00,0.0,1004.8263890000001,0.0,100.0,-3.5339166669999997,0.268416667,237.95562133333337 +2016-08-03 02:00:00,0.0,1005.1594439999999,0.0,100.0,-4.03825,0.133583333,237.95860621666668 +2016-08-03 03:00:00,0.0,1005.5347220000001,0.0,100.0,-4.512416667,0.069583333,237.9594022 +2016-08-03 04:00:00,0.0,1006.194167,0.0,100.0,-4.7995,0.027083332999999998,237.96059616666665 +2016-08-03 05:00:00,0.0,1007.134722,0.0,100.0,-2.6245,0.618916667,237.96298408333334 +2016-08-03 06:00:00,0.0,1007.769167,0.24533333300000001,100.0,-1.9238333330000001,0.543166667,237.96338206666667 +2016-08-03 07:00:00,0.0,1008.585556,12.88641667,100.0,-1.434916667,0.319333333,237.96696396666664 +2016-08-03 08:00:00,0.0,1009.369167,61.2875,100.0,-1.054833333,0.581333333,237.9697498666667 +2016-08-03 09:00:00,0.0,1010.1513890000001,99.3825,100.0,-0.43325,1.247833333,237.9717398 +2016-08-03 10:00:00,2.580459288,1010.593056,195.7583333,100.0,0.9388333329999999,1.484833333,237.9723367833333 +2016-08-03 11:00:00,0.0,1010.909167,299.8916667,97.21666667,2.64425,1.37625,237.97372974999996 +2016-08-03 12:00:00,2.8300695119999997,1011.3419449999999,397.75,93.45,3.914166667,1.4685833330000002,237.97492369999998 +2016-08-03 13:00:00,0.0,1011.366389,385.8333333,89.04166667,4.78375,1.815166667,237.97691361666668 +2016-08-03 14:00:00,0.0,1011.233333,346.0166667,76.75416667,5.82625,1.8853333330000002,237.97910256666668 +2016-08-03 15:00:00,0.0,1011.409167,264.0666667,71.2575,5.97225,1.788583333,237.98009750000003 +2016-08-03 16:00:00,0.0,1011.358056,174.44166669999998,70.92083333,5.960916667,1.339083333,237.98149048333335 +2016-08-03 17:00:00,0.0,1011.5675,55.7725,76.935,4.579,1.01875,237.9802965166667 +2016-08-03 18:00:00,0.0,1011.9669439999999,2.403333333,93.45,0.9540833329999999,0.199916667,237.98109248333333 +2016-08-03 19:00:00,0.0,1012.243333,0.0,97.10833333,-0.253166667,0.228333333,237.98487335000002 +2016-08-03 20:00:00,0.0,1012.5513890000001,0.0,97.96666667,-0.9398333329999999,0.09025,237.9870622666667 +2016-08-03 21:00:00,0.0,1012.615278,0.0,99.45,-1.7249166669999998,0.073833333,237.98825625000003 +2016-08-03 22:00:00,0.0,1012.115,0.0,100.0,-2.09475,0.233916667,237.98905219999997 +2016-08-03 23:00:00,0.0,1011.5652779999999,0.0,100.0,-2.1875,0.133666667,237.99004718333333 +2016-09-03 00:00:00,0.0,1011.057222,0.0,100.0,-2.8755,0.05475,237.85154783333334 +2016-09-03 01:00:00,0.0,1010.799444,0.0,100.0,-3.142,0.096,237.8527418 +2016-09-03 02:00:00,0.0,1010.1969439999999,0.0,100.0,-3.582083333,0.181916667,237.85473171666663 +2016-09-03 03:00:00,0.0,1009.2572220000001,0.0,100.0,-4.054083333,0.068833333,237.85791561666667 +2016-09-03 04:00:00,0.0,1008.8486109999999,0.0,100.0,-4.05225,0.3225,237.85930856666667 +2016-09-03 05:00:00,0.0,1008.6161109999999,0.0,100.0,-2.235833333,0.239583333,237.86229346666664 +2016-09-03 06:00:00,0.0,1008.2813890000001,0.691916667,100.0,-2.2486666669999997,0.447166667,237.86368643333336 +2016-09-03 07:00:00,0.0,1007.740833,16.34316667,100.0,-1.047166667,1.06375,237.86468138333336 +2016-09-03 08:00:00,0.0,1007.1563890000001,50.30666667,100.0,-0.487833333,1.46625,237.86507938333338 +2016-09-03 09:00:00,0.0,1006.706667,86.02,99.56666667,0.05175,1.7710833330000002,237.8640844 +2016-09-03 10:00:00,0.0,1006.115,236.05,92.69166667,1.5733333330000001,2.176416667,237.85990555 +2016-09-03 11:00:00,0.0,1005.331667,303.59166669999996,85.75,2.929833333,2.7825,237.8579156333333 +2016-09-03 12:00:00,0.0,1004.6055560000001,276.6333333,78.58416667,4.741333333,2.923,237.85254278333332 +2016-09-03 13:00:00,0.0,1003.840833,323.7583333,72.3125,5.931833332999999,3.21375,237.84557801666668 +2016-09-03 14:00:00,0.0,1003.3147220000001,374.8833333,63.34666667,6.50675,3.57025,237.83821526666668 +2016-09-03 15:00:00,0.0,1002.8827779999999,284.7,60.97666667,6.401416667,3.116083333,237.8346334 +2016-09-03 16:00:00,0.0,1002.725,191.4083333,63.70583333,5.706583332999999,2.926,237.83125051666664 +2016-09-03 17:00:00,0.0,1002.6005560000001,63.00416667,67.68583333,5.119666667,1.944333333,237.8292605833333 +2016-09-03 18:00:00,0.0,1003.034167,5.094416667,79.06333333,3.540166667,0.6831666670000001,237.8278676333333 +2016-09-03 19:00:00,0.0,1003.366944,0.0,94.8,0.260916667,0.019833333,237.82926056666665 +2016-09-03 20:00:00,0.0,1003.6675,0.0,97.85,-0.43458333299999996,0.087,237.82985753333332 +2016-09-03 21:00:00,0.0,1004.034167,0.0,98.325,-0.17475,0.060916667,237.8306535 +2016-09-03 22:00:00,0.0,1004.368611,0.0,98.25,-0.243583333,0.074416667,237.8318475 +2016-09-03 23:00:00,0.0,1004.7675,0.0,99.575,-0.663333333,0.237166667,237.83085251666668 +2016-10-03 00:00:00,0.0,1005.285,0.0,100.0,-0.92175,0.10208333300000001,237.94568108333337 +2016-10-03 01:00:00,0.0,1005.8938890000001,0.0,100.0,-1.051166667,0.003833333,237.94539003333333 +2016-10-03 02:00:00,0.0,1006.484167,0.0,100.0,-2.066833333,0.01075,237.94657485000002 +2016-10-03 03:00:00,0.0,1007.044167,0.0,100.0,-2.54975,0.077083333,237.9445722 +2016-10-03 04:00:00,0.0,1007.777222,0.0,100.0,-2.6985,0.0,237.94552446666668 +2016-10-03 05:00:00,0.0,1008.7188890000001,0.0,100.0,-2.888,0.0,237.94660333333334 +2016-10-03 06:00:00,0.0,1009.393333,0.6205,100.0,-3.0140833330000003,0.0,237.94678839999997 +2016-10-03 07:00:00,0.0,1010.135833,19.09716667,100.0,-3.1840833330000002,0.0,237.9461699 +2016-10-03 08:00:00,0.0,1011.1447220000001,54.23083333,99.875,-0.646166667,0.45191666700000005,237.94599591666667 +2016-10-03 09:00:00,0.0,1012.219167,192.55833330000002,90.75,1.146666667,1.9898333330000002,237.9449028 +2016-10-03 10:00:00,0.0,1013.010278,282.4,86.35,2.6645,1.718833333,237.94589308333332 +2016-10-03 11:00:00,0.0,1013.541667,367.7333333,81.27666667,4.671666667,1.18,237.944539 +2016-10-03 12:00:00,0.0,1013.684167,396.1666667,76.73,6.066416667,1.17425,237.9457601666667 +2016-10-03 13:00:00,0.0,1014.001389,384.025,71.96,7.306583333,1.5640833330000001,237.94515588333334 +2016-10-03 14:00:00,0.0,1014.166667,271.5166667,69.95916667,8.403666667000001,1.4305833330000002,237.94491703333333 +2016-10-03 15:00:00,0.0,1014.391944,145.9833333,71.74,7.785333333,2.971083333,237.9433320166667 +2016-10-03 16:00:00,0.0,1014.618333,122.4425,70.3275,7.752999999999999,2.8130833330000002,237.94423208333333 +2016-10-03 17:00:00,0.0,1015.1686109999999,35.51833333,73.6525,7.00025,3.120083333,237.94310895 +2016-10-03 18:00:00,0.0,1015.885,3.5735,75.29666667,6.183416667,2.2294166669999997,237.94395525000002 +2016-10-03 19:00:00,0.0,1016.72,0.0,80.035,5.717166667000001,2.584916667,237.94445038333333 +2016-10-03 20:00:00,0.0,1017.5430560000001,0.0,83.625,5.276666667,2.39175,237.94390305000002 +2016-10-03 21:00:00,0.0,1018.2930550000001,0.0,86.20833333,3.2335,1.3895,237.9443618 +2016-10-03 22:00:00,0.0,1018.7344439999999,0.0,93.925,1.5030833330000002,0.076083333,237.94595791666666 +2016-10-03 23:00:00,0.0,1018.9163890000001,0.0,97.91666667,1.673583333,0.0,237.94636601666664 +2016-11-03 00:00:00,0.0,1018.934444,0.0,99.64166667,0.63375,0.033833333,238.0071006666667 +2016-11-03 01:00:00,0.0,1019.1497220000001,0.0,100.0,-0.46683333299999996,0.035333333,238.00708168333333 +2016-11-03 02:00:00,0.0,1019.209167,0.0,100.0,-1.0659999999999998,0.0,238.00637616666668 +2016-11-03 03:00:00,0.0,1019.350833,0.0,100.0,-1.43225,0.0,238.00561055000003 +2016-11-03 04:00:00,0.0,1019.5838890000001,0.0,100.0,-1.047416667,0.0,238.0077983 +2016-11-03 05:00:00,0.0,1019.934444,0.0,100.0,0.049416667000000004,0.013666667,238.00732056666666 +2016-11-03 06:00:00,0.0,1020.300556,0.48358333299999995,100.0,0.655,0.0,238.00711175000004 +2016-11-03 07:00:00,0.0,1020.668333,10.46191667,100.0,2.4275833330000003,0.075083333,238.00620535 +2016-11-03 08:00:00,0.0,1021.259722,26.935,100.0,3.846916667,0.1495,238.00527835 +2016-11-03 09:00:00,0.0,1021.583333,61.87333333,98.86666667,5.05425,1.036833333,238.00392110000004 +2016-11-03 10:00:00,0.0,1021.725833,123.44166670000001,91.90833333,6.100166667000001,1.976666667,238.00420111666665 +2016-11-03 11:00:00,0.0,1021.8577779999999,225.4666667,82.05583333,8.120916667000001,3.8489999999999998,238.00483386666664 +2016-11-03 12:00:00,0.0,1021.759167,281.46666669999996,67.8475,8.298333332999999,3.05175,238.0018441 +2016-11-03 13:00:00,0.0,1021.583056,208.5916667,68.38083333,8.295416667000001,3.2865833330000003,238.00364743333333 +2016-11-03 14:00:00,0.0,1021.716667,297.53333330000004,63.68083333,8.704166667,4.0033333330000005,238.00364588333332 +2016-11-03 15:00:00,0.0,1021.8083330000001,114.45083329999999,65.82333333,7.770666667,2.694583333,238.00252746666663 +2016-11-03 16:00:00,0.0,1021.766944,71.41333333,67.73416667,7.58975,1.9240833330000002,238.0046424666667 +2016-11-03 17:00:00,0.0,1021.8080560000001,31.5475,68.45,7.297083333,1.166083333,238.00571655 +2016-11-03 18:00:00,0.0,1022.0513890000001,4.205916666999999,71.435,6.732166667,0.42666666700000005,238.00591268333335 +2016-11-03 19:00:00,0.0,1022.576111,0.0,79.64416667,5.810833333,0.006999999999999999,238.00500311666667 +2016-11-03 20:00:00,0.0,1022.9772220000001,0.0,81.63,5.687333333,1.474666667,238.00649326666664 +2016-11-03 21:00:00,0.0,1023.6425,0.0,76.61833333,5.625916667,3.165083333,238.00480855 +2016-11-03 22:00:00,0.0,1023.9925,0.0,74.37,4.8331666669999995,2.972833333,238.00463451666667 +2016-11-03 23:00:00,0.0,1024.108333,0.0,76.15666667,4.136583333,3.1444166669999998,238.00585258333334 +2016-12-03 00:00:00,0.0,1024.166667,0.0,78.56,3.972333333,2.7195,238.05619111666667 +2016-12-03 01:00:00,0.0,1024.033056,0.0,77.38833333,3.839916667,2.06475,238.05657391666668 +2016-12-03 02:00:00,0.0,1023.631944,0.0,78.20916667,3.4779166669999997,0.600333333,238.0562448833333 +2016-12-03 03:00:00,0.0,1023.659167,0.0,81.21,3.480333333,1.285,238.05559000000002 +2016-12-03 04:00:00,0.0,1023.716667,0.0,82.81666667,3.5034166669999998,2.317416667,238.05621801666666 +2016-12-03 05:00:00,0.0,1023.9675,0.0,81.1075,3.303666667,2.962333333,238.05567858333328 +2016-12-03 06:00:00,0.0,1024.184167,0.197416667,80.235,3.04875,2.4283333330000003,238.05633031666665 +2016-12-03 07:00:00,0.0,1024.416667,5.108916667,81.05,2.93175,2.3296666669999997,238.0554049333333 +2016-12-03 08:00:00,0.0,1024.668056,16.56583333,82.58333333,3.03075,2.5060833330000003,238.05495726666666 +2016-12-03 09:00:00,0.0,1025.1013890000002,30.58916667,83.65833333,3.17225,2.504,238.05371708333334 +2016-12-03 10:00:00,0.0,1025.4919439999999,56.91916667,80.5725,3.320083333,2.657166667,238.05215891666668 +2016-12-03 11:00:00,0.0,1025.591667,63.305,81.1,3.3336666669999997,3.634083333,238.04929568333333 +2016-12-03 12:00:00,0.0,1025.45,86.37333333,80.10333333,3.6289999999999996,2.947,238.04816306666666 +2016-12-03 13:00:00,0.0,1025.273889,84.75666667,79.30666667,3.8845,2.7185,238.04697668333333 +2016-12-03 14:00:00,0.0,1024.8072220000001,80.31166667,77.97416667,4.164916667,3.1005,238.04755406666663 +2016-12-03 15:00:00,0.0,1024.8,42.8775,81.54916667,3.9329166669999998,3.300833333,238.04729146666668 +2016-12-03 16:00:00,0.0,1024.8,22.64833333,82.59166667,3.897416667,2.1495833330000003,238.05005818333328 +2016-12-03 17:00:00,0.0,1025.051389,9.888416667000001,81.88333333,3.9145,2.0905,238.05193745 +2016-12-03 18:00:00,0.0,1025.3175,1.0605,82.7,3.684333333,2.63775,238.05288815000003 +2016-12-03 19:00:00,0.0,1025.751389,0.0,83.19166667,3.43575,3.291416667,238.05164478333333 +2016-12-03 20:00:00,0.0,1026.075833,0.0,82.275,3.177083333,3.32325,238.05213833333335 +2016-12-03 21:00:00,0.0,1026.216944,0.0,81.825,3.011666667,3.6534166669999997,238.05069408333335 +2016-12-03 22:00:00,0.0,1026.299722,0.0,83.90833333,2.585666667,4.100666667,238.05101205000003 +2016-12-03 23:00:00,0.0,1026.098889,0.0,84.01666667,2.253083333,2.5278333330000002,238.04991736666668 +2016-03-13 00:00:00,0.0,1026.017778,0.0,84.74166667,1.9738333330000002,3.6115,238.1784868 +2016-03-13 01:00:00,0.0,1026.2,0.0,87.11666667,1.580583333,1.6269999999999998,238.1789047166667 +2016-03-13 02:00:00,0.0,1026.275,0.0,89.275,1.7195,1.29625,238.17994951666665 +2016-03-13 03:00:00,0.0,1026.274444,0.0,90.43333333,1.693583333,1.533916667,238.17806886666668 +2016-03-13 04:00:00,0.0,1026.126111,0.0,91.45,1.54575,1.393,238.18078536666667 +2016-03-13 05:00:00,0.0,1026.5336109999998,0.0,90.825,1.78325,2.4994166669999998,238.17932265000002 +2016-03-13 06:00:00,0.0,1026.7347220000001,0.827333333,89.99166667,1.7429166669999998,2.16525,238.17890473333338 +2016-03-13 07:00:00,0.0,1027.326389,18.945,89.56666667,2.463916667,2.486416667,238.17618819999998 +2016-03-13 08:00:00,0.0,1027.8094449999999,56.47916667,88.63333333,3.16975,3.187583333,238.17535235 +2016-03-13 09:00:00,0.0,1028.426667,57.85166667,87.775,3.832416667,4.80925,238.17388961666666 +2016-03-13 10:00:00,0.0,1028.8344439999998,80.02916667,87.75,4.33875,4.397333333,238.17263585 +2016-03-13 11:00:00,0.0,1028.908055,103.5241667,85.63333333,4.908166667,4.561916667,238.17347171666663 +2016-03-13 12:00:00,0.0,1028.623889,181.725,82.35,5.5425,4.8475,238.17221795 +2016-03-13 13:00:00,0.0,1028.315,227.9666667,82.04333333,5.8593333329999995,4.595333333,238.17451649999998 +2016-03-13 14:00:00,0.0,1027.7244449999998,369.5666667,77.00416667,7.011166667,4.374416667,238.17180001666668 +2016-03-13 15:00:00,0.0,1027.549167,291.8916667,73.42666667,6.967083333,4.533333333,238.17117313333333 +2016-03-13 16:00:00,0.0,1027.1911109999999,224.80833330000002,73.77833333,7.04875,4.212416667,238.17305379999996 +2016-03-13 17:00:00,0.0,1027.200556,88.2975,74.7725,6.703416667000001,3.907083333,238.17242690000003 +2016-03-13 18:00:00,0.0,1027.5275,7.167916667,79.63,4.961,3.814916667,238.17472546666667 +2016-03-13 19:00:00,0.0,1028.434167,0.0,85.29166667,2.75575,3.550166667,238.1747254666667 +2016-03-13 20:00:00,0.0,1028.708889,0.0,88.10833333,2.156416667,3.83175,238.17472548333333 +2016-03-13 21:00:00,0.0,1028.716667,0.0,86.35833333,1.6135,3.48075,238.17430756666667 +2016-03-13 22:00:00,0.0,1028.883611,0.0,88.10833333,0.8355,2.714833333,238.17263588333333 +2016-03-13 23:00:00,0.0,1028.883333,0.0,88.51666667,0.3055,2.44025,238.17493443333333 +2016-03-14 00:00:00,0.0,1028.8580550000001,0.0,90.2,-0.170166667,2.0605,238.17618819999998 +2016-03-14 01:00:00,0.0,1029.009445,0.0,90.8,0.245666667,2.135416667,238.1740985833333 +2016-03-14 02:00:00,0.0,1029.031667,0.0,89.46666667,0.751583333,2.884666667,238.17054625 +2016-03-14 03:00:00,0.0,1028.566389,0.0,87.85,0.546666667,2.3689166669999997,238.17117311666667 +2016-03-14 04:00:00,0.0,1028.4411109999999,0.0,85.625,0.36425,2.0306666669999998,238.17180001666665 +2016-03-14 05:00:00,0.0,1028.325278,0.0,85.71666667,0.224666667,2.3778333330000003,238.17284481666664 +2016-03-14 06:00:00,0.0,1028.467222,1.500583333,84.61666667,0.227416667,1.7770833330000002,238.17326273333333 +2016-03-14 07:00:00,0.0,1028.508333,24.14583333,86.55,0.37941666700000004,1.9889166669999998,238.1751434 +2016-03-14 08:00:00,0.0,1028.750833,56.67916667,81.37583333,1.7084166669999998,2.809416667,238.17284481666664 +2016-03-14 09:00:00,0.0,1028.816389,252.20833330000002,75.8125,2.882333333,3.968916667,238.16991936666668 +2016-03-14 10:00:00,0.0,1028.590833,323.4,72.99333333,3.460666667,4.0,238.16824765 +2016-03-14 11:00:00,0.0,1028.198333,419.28333330000004,68.61083333,4.7825,3.298333333,238.16720285000005 +2016-03-14 12:00:00,0.0,1027.548055,395.8916667,66.73833333,5.173916667,4.05325,238.16845665000005 +2016-03-14 13:00:00,0.0,1026.8477779999998,414.5666667,60.60833333,6.879916667000001,3.992916667,238.16824765 +2016-03-14 14:00:00,0.0,1025.9980560000001,327.1666667,53.80916667,8.05975,4.242,238.16636703333333 +2016-03-14 15:00:00,0.0,1025.5319439999998,311.0083333,48.015,9.026666667,4.69175,238.16678495 +2016-03-14 16:00:00,0.0,1025.073889,219.6166667,44.88,9.263333333,4.338166667,238.16657596666667 +2016-03-14 17:00:00,0.0,1024.640833,65.125,49.395,8.50475,2.85975,238.16887453333334 +2016-03-14 18:00:00,0.0,1024.583333,8.097166667,58.40833333,6.66325,2.32975,238.17200896666665 +2016-03-14 19:00:00,0.0,1024.5577779999999,0.010833333,79.28583333,3.293333333,0.094416667,238.17284481666664 +2016-03-14 20:00:00,0.0,1024.216111,0.0,87.45833333,1.4869999999999999,0.012916667,238.17535233333334 +2016-03-14 21:00:00,0.0,1024.117222,0.0,90.25833333,0.081416667,0.036333332999999995,238.17472546666667 +2016-03-14 22:00:00,0.0,1023.957778,0.0,91.74166667,-0.8655,0.0,238.17577028333335 +2016-03-14 23:00:00,0.0,1023.9075,0.0,94.14166667,-1.5354166669999998,0.0,238.1738896333333 +2016-03-15 00:00:00,0.0,1023.7494439999999,0.0,95.55833333,-1.9669999999999999,0.0,238.17430755 +2016-03-15 01:00:00,0.0,1023.5325,0.0,97.04166667,-2.204416667,0.0,238.17514338333334 +2016-03-15 02:00:00,0.0,1023.09,0.0,96.24166667,-2.50025,0.0,238.1740985833333 +2016-03-15 03:00:00,0.0,1022.5327779999999,0.0,97.51666667,-2.9075833330000003,0.0,238.17263584999998 +2016-03-15 04:00:00,0.0,1022.466111,0.0,98.08333333,-2.729833333,0.0,238.17284481666664 +2016-03-15 05:00:00,0.0,1022.283333,0.0,97.575,-2.447,0.0,238.17075521666666 +2016-03-15 06:00:00,0.0,1022.0819439999999,1.1723333329999999,98.51666667,-2.2551666669999997,8.329999999999999e-05,238.17242688333332 +2016-03-15 07:00:00,0.0,1021.707778,31.81333333,97.95,-1.681,0.0016666670000000001,238.1720089833333 +2016-03-15 08:00:00,0.0,1021.3738890000001,84.60166667,90.63333333,0.38983333299999995,0.006333333000000001,238.16866560000003 +2016-03-15 09:00:00,0.0,1021.0666669999999,98.46916667,80.1375,3.1045,0.012333333,238.16741183333338 +2016-03-15 10:00:00,0.0,1020.724167,148.35,77.07166667,4.558166667,1.294083333,238.16845663333334 +2016-03-15 11:00:00,0.0,1020.7661109999999,98.62416667,79.83583333,4.709333333,2.2014166669999997,238.16615805 +2016-03-15 12:00:00,0.0,1020.5244439999999,79.27,91.975,4.313916667,4.040416667,238.17117311666667 +2016-03-15 13:00:00,0.0,1020.4822220000001,81.61166667,95.25833333,4.485166667,3.7695,238.16866560000003 +2016-03-15 14:00:00,0.0,1020.082778,124.60833329999998,91.35833333,5.483166667000001,4.024,238.16720286666668 +2016-03-15 15:00:00,0.0,1020.0580560000001,168.20583330000002,83.59583333,6.628583333,3.561083333,238.16741181666666 +2016-03-15 16:00:00,0.0,1019.6661109999999,57.98583333,78.13083333,6.907666667000001,2.558333333,238.1674118166667 +2016-03-15 17:00:00,0.0,1019.608333,21.55583333,78.18583333,6.775666667,1.557916667,238.16991936666668 +2016-03-15 18:00:00,0.0,1019.7425,5.080833333,74.6575,6.396,2.11225,238.16908351666666 +2016-03-15 19:00:00,0.0,1020.085,0.0,83.18833333,4.131166667,0.6851666670000001,238.17033728333334 +2016-03-15 20:00:00,0.0,1020.751389,0.0,81.0,4.907083333,2.903,238.16657596666673 +2016-03-15 21:00:00,0.0,1020.8997220000001,0.0,87.46666667,4.1015,2.6534166669999997,238.16887458333335 +2016-03-15 22:00:00,0.0,1021.1427779999999,0.0,88.24166667,4.178083333,3.1545,238.16824768333336 +2016-03-15 23:00:00,0.0,1021.266667,0.0,85.75,3.816416667,4.19675,238.16991938333334 +2016-03-16 00:00:00,0.0,1021.233333,0.0,78.65833333,3.7105,4.151833333,238.16908351666675 +2016-03-16 01:00:00,0.0,1021.341667,0.0,82.14166667,3.451833333,4.21675,238.16950145 +2016-03-16 02:00:00,0.0,1021.433889,0.0,83.275,3.3024166669999997,3.9210000000000003,238.16887454999997 +2016-03-16 03:00:00,0.0,1021.3166669999999,0.0,83.05,3.185833333,3.59875,238.16866558333334 +2016-03-16 04:00:00,0.0,1021.1327779999999,0.0,82.13333333,3.0364166669999997,4.13025,238.1692925 +2016-03-16 05:00:00,0.0,1021.2255560000001,0.0,82.28333333,2.30225,4.0085,238.1688745666667 +2016-03-16 06:00:00,0.0,1021.709167,1.974833333,83.275,1.761,3.3770833330000003,238.16720286666668 +2016-03-16 07:00:00,0.0,1022.101667,26.85916667,84.99166667,2.0179166669999997,4.3781666669999995,238.16824768333336 +2016-03-16 08:00:00,0.0,1022.609722,64.57,82.875,3.036166667,5.265666667,238.16511323333336 +2016-03-16 09:00:00,0.0,1022.7577779999999,82.7925,80.21416667,3.757083333,5.490416667000001,238.1642773666667 +2016-03-16 10:00:00,0.0,1022.900833,132.50833329999998,74.2325,4.741333333,5.677333332999999,238.16469530000003 +2016-03-16 11:00:00,0.0,1023.1255560000001,157.7225,72.72166667,4.876416667,5.723666667000001,238.16385945000002 +2016-03-16 12:00:00,0.0,1022.8319439999999,249.7416667,69.01416667,5.463583333,6.55975,238.16323256666666 +2016-03-16 13:00:00,0.0,1022.758333,117.9,67.15916667,5.39875,7.194166667,238.16427738333337 +2016-03-16 14:00:00,0.0,1022.641667,218.0,65.7425,6.311333332999999,6.791166667000001,238.16365050000002 +2016-03-16 15:00:00,0.0,1022.641389,217.35,62.76916667,6.60475,5.91425,238.160934 +2016-03-16 16:00:00,0.0,1022.5747220000001,179.83333330000002,60.59333333,6.766166667,5.270166667,238.1607250333333 +2016-03-16 17:00:00,0.0,1022.3672220000001,70.18833333,61.58083333,6.793333333,4.479166667,238.1630236166667 +2016-03-16 18:00:00,0.0,1022.768056,12.35216667,65.385,5.940333333,3.6886666669999997,238.1636505 +2016-03-16 19:00:00,0.0,1023.275833,0.022083332999999997,71.36333333,4.8629166669999995,2.65075,238.16385945000002 +2016-03-16 20:00:00,0.0,1023.7508330000001,0.0,79.92,3.237666667,1.4210833330000001,238.16365048333333 +2016-03-16 21:00:00,0.0,1023.983611,0.0,86.69166667,1.275666667,0.0485,238.1653222166667 +2016-03-16 22:00:00,0.0,1024.267778,0.0,91.86666667,0.66975,0.0,238.16490428333336 +2016-03-16 23:00:00,0.0,1024.157778,0.0,97.35833333,-1.2379166670000001,0.0,238.16636701666667 +2016-03-17 00:00:00,0.0,1023.965833,0.0,98.99166667,-2.176,0.0,238.1659491 +2016-03-17 01:00:00,0.0,1023.8502779999999,0.0,99.825,-2.014166667,0.0,238.16615806666667 +2016-03-17 02:00:00,0.0,1023.6155560000001,0.0,99.91666667,-1.495333333,0.004416667,238.16636701666667 +2016-03-17 03:00:00,0.0,1023.4161109999999,0.0,100.0,-2.085,0.0,238.16678495 +2016-03-17 04:00:00,0.0,1023.35,0.0,100.0,-3.0355,0.0,238.16574013333334 +2016-03-17 05:00:00,0.0,1023.333333,0.0,100.0,-3.5773333330000003,0.0,238.1659491 +2016-03-17 06:00:00,0.0,1023.525833,2.451916667,100.0,-3.82025,0.0,238.16636701666667 +2016-03-17 07:00:00,0.0,1023.6847220000001,19.03,100.0,-2.7285,0.0,238.16657598333336 +2016-03-17 08:00:00,0.0,1023.975,66.62083333,97.8,1.278333333,0.697583333,238.16365050000002 +2016-03-17 09:00:00,0.0,1024.058333,275.9333333,83.4,3.429416667,1.12475,238.15800854999998 +2016-03-17 10:00:00,0.0,1023.974167,359.25,74.75583333,5.341666667,1.6455,238.15842648333333 +2016-03-17 11:00:00,0.0,1023.548889,425.95,67.1225,7.119083333,2.0284166669999997,238.1567547666667 +2016-03-17 12:00:00,0.0,1023.123056,450.38333330000006,63.65583333,8.441,2.545583333,238.15550101666668 +2016-03-17 13:00:00,0.0,1022.381667,447.0,59.6825,9.615833333,2.410583333,238.15591891666665 +2016-03-17 14:00:00,0.0,1021.6394439999999,405.4583333,54.16833333,10.92583333,1.8648333330000002,238.15487410000003 +2016-03-17 15:00:00,0.0,1020.881667,330.09166669999996,51.37833333,11.81666667,1.6046666669999998,238.15529204999999 +2016-03-17 16:00:00,0.0,1020.306111,225.725,53.32083333,11.63166667,2.0813333330000003,238.15675478333333 +2016-03-17 17:00:00,0.0,1019.8322220000001,72.28666667,58.47083333,10.97916667,1.787333333,238.15905335 +2016-03-17 18:00:00,0.0,1019.709167,10.04316667,74.49083333,7.792583333,0.3775,238.16218775000004 +2016-03-17 19:00:00,0.0,1019.6244439999999,0.036166667,89.175,3.960583333,0.0,238.16511326666668 +2016-03-17 20:00:00,0.0,1019.4825,0.0,93.85,2.038833333,0.0,238.1649042666667 +2016-03-17 21:00:00,0.0,1019.3,0.0,96.025,0.6416666670000001,0.0,238.1653221833334 +2016-03-17 22:00:00,0.0,1019.3075,0.0,97.70833333,-0.745916667,0.0,238.16511323333336 +2016-03-17 23:00:00,0.0,1019.166944,0.0,98.41666667,-1.40225,0.0,238.1657401166667 +2016-03-18 00:00:00,0.0,1018.9572220000001,0.0,98.55833333,-1.945416667,0.0,238.1651132166667 +2016-03-18 01:00:00,0.0,1018.623611,0.0,99.525,-2.564333333,0.0,238.16553116666668 +2016-03-18 02:00:00,0.0,1018.115278,0.0,99.99166667,-3.032333333,0.0,238.166367 +2016-03-18 03:00:00,0.0,1017.7327779999999,0.0,100.0,-3.46725,0.0,238.1642773666667 +2016-03-18 04:00:00,0.0,1017.1661109999999,0.0,100.0,-3.7289999999999996,0.0,238.16553116666668 +2016-03-18 05:00:00,0.0,1016.856389,0.0,100.0,-4.195,0.0,238.16511325000002 +2016-03-18 06:00:00,0.0,1016.7338890000001,2.816833333,100.0,-4.37175,0.0,238.16344155000002 +2016-03-18 07:00:00,0.0,1016.900278,23.81083333,99.95833333,-2.722333333,0.0,238.16281465 +2016-03-18 08:00:00,0.0,1017.000278,82.53166667,95.35,1.593083333,0.3255,238.16135191666663 +2016-03-18 09:00:00,0.0,1016.915556,265.2083333,81.85,5.68075,1.54575,238.15905335000002 +2016-03-18 10:00:00,0.0,1016.8083330000001,353.6,71.9325,8.496,1.83025,238.15570996666668 +2016-03-18 11:00:00,0.0,1016.4905560000001,418.875,64.97083333,10.6475,2.0346666669999998,238.1561279 +2016-03-18 12:00:00,0.0,1016.065833,452.33333330000005,60.01333333,12.09083333,2.1615,238.15529204999999 +2016-03-18 13:00:00,0.0,1015.3638890000001,443.90833330000004,51.72,13.6875,1.9638333330000002,238.15717271666668 +2016-03-18 14:00:00,0.0,1014.606389,419.8916666999999,44.44,14.94083333,1.72625,238.15633685 +2016-03-18 15:00:00,0.0,1013.99,292.1,45.3675,14.88333333,2.467333333,238.15779956666665 +2016-03-18 16:00:00,0.0,1013.525278,216.075,49.8225,13.91,2.7569999999999997,238.15968021666663 +2016-03-18 17:00:00,0.0,1013.759722,73.5575,55.38,12.41,2.04625,238.15947126666666 +2016-03-18 18:00:00,0.0,1014.2169439999999,11.27041667,66.79916667,10.21416667,1.794,238.15905335 +2016-03-18 19:00:00,0.0,1014.5938890000001,0.058666667,77.31583333,7.767,1.921416667,238.15968021666663 +2016-03-18 20:00:00,0.0,1015.293889,0.0,88.43333333,5.287416667,1.964083333,238.16156088333332 +2016-03-18 21:00:00,0.0,1015.9675,0.0,91.06666667,4.0976666669999995,1.68625,238.15968025000004 +2016-03-18 22:00:00,0.0,1016.325833,0.0,95.525,3.7926666669999998,0.7295,238.15926231666666 +2016-03-18 23:00:00,0.0,1016.641944,0.0,95.375,3.656666667,0.627416667,238.15738166666665 +2016-03-19 00:00:00,0.0,1016.5247220000001,0.0,92.06666667,3.81225,1.5195,238.15717271666668 +2016-03-19 01:00:00,0.0,1016.45,0.0,90.075,3.661166667,1.350416667,238.15738164999996 +2016-03-19 02:00:00,0.0,1016.3825,0.0,93.11666667,3.731583333,1.051083333,238.15529206666665 +2016-03-19 03:00:00,0.0,1015.9236109999999,0.0,94.7,3.758333333,0.15633333300000002,238.15633686666663 +2016-03-19 04:00:00,0.0,1015.733333,0.0,94.51666667,3.949666667,1.0590000000000002,238.15508308333332 +2016-03-19 05:00:00,0.0,1015.6916669999999,0.0,94.61666667,4.011083333,0.59175,238.15529204999999 +2016-03-19 06:00:00,0.0,1015.6925,0.593916667,96.23333333,3.864666667,0.90825,238.15633685 +2016-03-19 07:00:00,0.0,1016.018056,13.91966667,97.53333333,3.92225,0.047416667,238.1565458166667 +2016-03-19 08:00:00,0.0,1016.500278,34.51666667,96.08333333,4.274583333,0.18508333300000002,238.1540382833333 +2016-03-19 09:00:00,0.0,1016.834444,54.29416667,92.75833333,4.761833333,1.224583333,238.15299346666666 +2016-03-19 10:00:00,0.0,1017.0669439999999,77.87833333,84.425,5.207833333,1.6765833330000002,238.15299346666666 +2016-03-19 11:00:00,0.0,1017.099722,105.79166670000001,79.92333333,5.2765,1.525916667,238.15278449999997 +2016-03-19 12:00:00,0.0,1017.0583330000001,130.6916667,78.19,5.807333333,1.052833333,238.15236655 +2016-03-19 13:00:00,0.0,1016.815556,125.86666670000001,75.14583333,6.28425,1.189416667,238.1534113833333 +2016-03-19 14:00:00,0.0,1016.557778,152.70833330000002,72.06833333,7.175833333,0.5229166670000001,238.1523665666667 +2016-03-19 15:00:00,0.0,1016.358056,99.78333333,71.73416667,7.306,0.35725,238.1529934666667 +2016-03-19 16:00:00,0.0,1016.149167,57.49666667,73.01416667,7.146833332999999,0.14800000000000002,238.15320241666666 +2016-03-19 17:00:00,0.0,1015.958333,23.9175,74.21333333,6.95925,0.135666667,238.15633685 +2016-03-19 18:00:00,0.0,1016.0,5.252833333,74.47083333,6.5315,0.07933333299999999,238.15466516666666 +2016-03-19 19:00:00,0.0,1016.1925,0.01925,77.38333333,6.403416667,1.265,238.15487411666666 +2016-03-19 20:00:00,0.0,1016.417222,0.0,78.87,6.085916667,1.881833333,238.15508306666666 +2016-03-19 21:00:00,0.0,1016.4827779999999,0.0,80.01833333,5.806083332999999,1.5619999999999998,238.15633686666663 +2016-03-19 22:00:00,0.0,1016.5175,0.0,80.46666667,5.468166667,2.1358333330000003,238.155501 +2016-03-19 23:00:00,0.0,1016.499722,0.0,83.46666667,5.097416667,1.8054166669999998,238.1559189333333 +2016-03-20 00:00:00,0.0,1016.349167,0.0,84.2,4.625833333,2.336166667,238.15591891666668 +2016-03-20 01:00:00,0.0,1016.2327779999999,0.0,83.41666667,4.316,1.6393333330000002,238.15487411666672 +2016-03-20 02:00:00,0.0,1015.948889,0.0,83.25833333,4.168833333,1.246083333,238.15633684999997 +2016-03-20 03:00:00,0.0,1015.415555,0.0,82.86666667,4.059833333,0.731583333,238.1557099833333 +2016-03-20 04:00:00,0.0,1014.915,0.0,85.40833333,3.914083333,0.38191666700000004,238.1563368666667 +2016-03-20 05:00:00,0.0,1014.8505550000001,0.0,84.85,3.944,1.5221666669999998,238.15591893333337 +2016-03-20 06:00:00,0.0,1014.951111,0.907666667,84.875,3.83925,1.440666667,238.15654581666664 +2016-03-20 07:00:00,0.0,1015.3422220000001,9.62675,85.825,3.906166667,1.9316666669999998,238.15466516666666 +2016-03-20 08:00:00,0.0,1015.5425,27.6025,88.325,3.929,2.094166667,238.15278448333333 +2016-03-20 09:00:00,0.0,1015.716667,54.3325,87.79166667,4.334666667,1.2790000000000001,238.15173966666666 +2016-03-20 10:00:00,0.0,1015.649167,87.05583333,85.45,4.979583333,0.9395,238.15236656666664 +2016-03-20 11:00:00,0.0,1015.2491669999999,123.29166670000001,82.64,5.544333332999999,1.333083333,238.1523665666667 +2016-03-20 12:00:00,0.0,1015.057778,150.6166667,77.77,6.4715,1.87875,238.15111278333333 +2016-03-20 13:00:00,0.0,1014.64,156.1083333,74.0,6.7215,3.262916667,238.1511128 +2016-03-20 14:00:00,0.0,1014.233056,109.24166670000001,73.12916667,6.748333333,2.659333333,238.15236658333333 +2016-03-20 15:00:00,0.0,1014.2405560000001,121.58333329999999,72.93583333,6.950583332999999,1.300666667,238.15090383333336 +2016-03-20 16:00:00,0.0,1013.681667,71.31583333,71.58416667,6.981916667,0.80225,238.1511128 +2016-03-20 17:00:00,0.0,1013.233056,30.265,72.31,6.826166667000001,1.161666667,238.15445621666666 +2016-03-20 18:00:00,0.0,1013.166944,6.317083332999999,73.90583333,6.74775,1.053,238.15362036666667 +2016-03-20 19:00:00,0.0,1013.335,0.01975,76.735,6.380333332999999,1.3526666669999998,238.15445621666666 +2016-03-20 20:00:00,0.0,1013.599445,0.0,78.6225,6.178083332999999,1.5024166669999999,238.15550101666668 +2016-03-20 21:00:00,0.0,1013.608611,0.0,82.00166667,6.128166667,1.156,238.15550098333333 +2016-03-20 22:00:00,0.0,1013.691111,0.0,85.56666667,6.115833332999999,1.55175,238.15362034999998 +2016-03-20 23:00:00,0.0,1013.5330560000001,0.0,88.775,5.89825,1.268833333,238.15529205000004 +2016-03-21 00:00:00,0.0,1013.5011109999999,0.0,91.85833333,5.775583332999999,1.4359166669999999,238.15529204999999 +2016-03-21 01:00:00,0.0,1013.573333,0.0,93.71666667,5.612083332999999,1.5885,238.1542472333333 +2016-03-21 02:00:00,0.0,1013.1241669999999,0.0,96.725,5.411666667,1.7145833330000002,238.15382931666667 +2016-03-21 03:00:00,0.0,1012.883056,0.0,99.43333333,5.241083333,1.872166667,238.15445620000003 +2016-03-21 04:00:00,0.0,1012.858611,0.0,100.0,5.32325,1.2225,238.15591891666665 +2016-03-21 05:00:00,0.0,1013.109167,0.0,99.86666667,5.397083332999999,0.655083333,238.15257555000002 +2016-03-21 06:00:00,0.0,1013.309167,2.8551666669999998,99.31666667,4.385833333,0.11825,238.1542472333333 +2016-03-21 07:00:00,0.0,1013.659167,50.72,94.4,5.3065,0.6735,238.1534114 +2016-03-21 08:00:00,0.0,1013.876389,97.46583333,87.85,6.41,1.50025,238.15069488333336 +2016-03-21 09:00:00,0.0,1014.2422220000001,159.05,82.81666667,6.997333332999999,2.0074166669999998,238.14776943333334 +2016-03-21 10:00:00,0.0,1014.525278,188.25,79.89,7.444083332999999,2.813166667,238.1477694333333 +2016-03-21 11:00:00,0.0,1014.591389,253.30833330000002,76.46583333,8.261333333,2.65575,238.14693358333332 +2016-03-21 12:00:00,0.0,1014.240278,215.21,76.14416667,8.709166667,2.1069999999999998,238.14756046666665 +2016-03-21 13:00:00,0.0,1013.7811109999999,119.9883333,84.22833333,7.922416667,2.878166667,238.14881423333335 +2016-03-21 14:00:00,0.0,1013.550833,155.7258333,81.65083333,7.92675,2.85725,238.14944111666668 +2016-03-21 15:00:00,0.0,1013.2491669999999,119.25833329999999,75.8075,7.711416667000001,2.567583333,238.15132174999997 +2016-03-21 16:00:00,0.0,1012.890278,76.58916667,79.79416667,7.798166667,1.8535,238.150068 +2016-03-21 17:00:00,0.0,1012.5497220000001,42.08083333,77.315,7.542833333,1.31275,238.15278451666666 +2016-03-21 18:00:00,0.0,1012.5327779999999,1.7358333330000002,76.46833333,7.39025,1.0665,238.15299346666666 +2016-03-21 19:00:00,0.0,1012.6094439999999,0.0,76.13166667,7.313083333,1.25075,238.1544562 +2016-03-21 20:00:00,0.0,1012.6077779999999,0.0,78.11,6.988416667,1.072083333,238.15633685 +2016-03-21 21:00:00,0.0,1012.5819439999999,0.0,80.18916667,6.673416667000001,1.286,238.15466516666666 +2016-03-21 22:00:00,0.0,1012.024167,0.0,81.86666667,6.28875,1.189416667,238.15550101666668 +2016-03-21 23:00:00,0.0,1011.715833,0.0,83.525,6.0919166670000005,0.975833333,238.15529203333335 +2016-03-22 00:00:00,0.0,1011.1825,0.0,85.71666667,5.682333333,0.8946666670000001,238.15466515 +2016-03-22 01:00:00,0.0,1010.9825,0.0,86.45833333,5.401,0.62125,238.15487413333332 +2016-03-22 02:00:00,0.0,1010.724167,0.0,87.20833333,5.880666667000001,0.976166667,238.15424726666666 +2016-03-22 03:00:00,0.0,1010.3741669999999,0.0,88.98333333,5.496583332999999,1.3265,238.15487413333335 +2016-03-22 04:00:00,0.0,1010.3419439999999,0.0,91.175,4.6210833330000005,0.708,238.15529206666665 +2016-03-22 05:00:00,0.0,1010.140833,0.0,94.04166667,3.5630833330000002,0.7124166670000001,238.15675478333333 +2016-03-22 06:00:00,0.0,1009.9247220000001,4.652,94.79166667,2.695666667,0.9438333329999999,238.15696373333336 +2016-03-22 07:00:00,0.0,1010.175833,35.72083333,93.525,3.812583333,1.774583333,238.15424723333334 +2016-03-22 08:00:00,0.0,1010.090833,91.78083333,89.91666667,4.96925,2.254166667,238.15466516666666 +2016-03-22 09:00:00,0.0,1010.0669439999999,166.85,85.75,6.24075,2.340833333,238.15111278333333 +2016-03-22 10:00:00,0.0,1010.024167,121.93166670000001,83.45833333,7.2110833329999995,2.209916667,238.15236658333333 +2016-03-22 11:00:00,0.0,1009.481944,290.9416667,80.6825,7.923916667,2.261166667,238.1517397 +2016-03-22 12:00:00,0.0,1009.131667,192.2825,79.17416667,8.101166667000001,2.3610833330000003,238.15111281666665 +2016-03-22 13:00:00,0.0,1008.7072220000001,144.1391667,71.78,8.8675,2.696583333,238.15090383333333 +2016-03-22 14:00:00,0.0,1008.0988890000001,67.26833333,71.95583333,8.718333333,1.421416667,238.15278450000002 +2016-03-22 15:00:00,0.0,1007.649167,64.40166667,71.11666667,9.0275,2.0775,238.15278449999997 +2016-03-22 16:00:00,0.0,1007.3575,52.6575,71.11083333,9.048333332999999,1.388916667,238.15215761666664 +2016-03-22 17:00:00,0.0,1007.274167,23.45583333,72.15583333,8.755833333,2.13075,238.15362035 +2016-03-22 18:00:00,0.0,1007.091667,8.299166667,78.89333333,8.2825,1.574583333,238.15424725000003 +2016-03-22 19:00:00,0.0,1007.0838890000001,0.076083333,90.575,7.50125,0.571416667,238.15487411666666 +2016-03-22 20:00:00,2.4050227680000003,1007.166944,0.0,96.425,6.348583333,0.011833333,238.15257553333333 +2016-03-22 21:00:00,0.0,1006.9991669999999,0.0,100.0,5.886916667,0.01275,238.15278449999997 +2016-03-22 22:00:00,2.428650216,1006.531944,0.0,100.0,6.0141666670000005,0.44741666700000005,238.15424723333334 +2016-03-22 23:00:00,0.0,1006.349722,0.0,100.0,6.248333333,0.18,238.15382929999998 +2016-03-23 00:00:00,0.0,1006.156667,0.0,100.0,6.2183333329999995,0.0865,238.15299345000003 +2016-03-23 01:00:00,0.0,1005.875,0.0,100.0,6.39075,0.747083333,238.15424725 +2016-03-23 02:00:00,0.0,1005.658333,0.0,99.61666667,6.482,1.6340833330000002,238.15466516666666 +2016-03-23 03:00:00,0.0,1005.566111,0.0,100.0,5.7325,0.145,238.15341138333335 +2016-03-23 04:00:00,0.0,1005.474444,0.0,100.0,5.3115,0.0,238.15320241666666 +2016-03-23 05:00:00,0.0,1005.241667,0.0,100.0,5.216833333,0.0255,238.15487411666666 +2016-03-23 06:00:00,0.0,1005.291667,2.447916667,100.0,5.265333333,0.107583333,238.1536203666667 +2016-03-23 07:00:00,0.0,1005.7930550000001,27.1875,97.78333333,6.1535,0.6316666670000001,238.1490232 +2016-03-23 08:00:00,0.0,1005.9080560000001,79.74333333,90.01666667,6.870166667,1.1089166670000001,238.14839628333334 +2016-03-23 09:00:00,0.0,1005.9,104.6,84.11666667,7.481,2.043416667,238.14881421666666 +2016-03-23 10:00:00,0.0,1006.0502779999999,128.12,83.85833333,7.630083332999999,2.921916667,238.15027696666667 +2016-03-23 11:00:00,0.0,1005.975,181.375,80.29666667,8.4175,2.50575,238.14839631666666 +2016-03-23 12:00:00,0.0,1005.8997220000001,192.6083333,70.38833333,8.8675,3.105416667,238.14756045 +2016-03-23 13:00:00,0.0,1005.791667,215.3,65.315,9.5425,3.0811666669999997,238.14797836666665 +2016-03-23 14:00:00,0.0,1005.5905560000001,171.5,68.03333333,9.439166667,3.311416667,238.1481873333333 +2016-03-23 15:00:00,0.0,1005.643056,145.4916667,72.04416667,8.944166667000001,4.115833333,238.1490231833333 +2016-03-23 16:00:00,0.0,1005.773889,131.0583333,72.52666667,8.776666667,2.397833333,238.14860526666664 +2016-03-23 17:00:00,0.0,1005.868333,56.39083333,71.64166667,8.628333332999999,3.238083333,238.15111279999996 +2016-03-23 18:00:00,0.0,1006.385278,9.444833333,76.37166667,7.85025,2.274083333,238.1521576 +2016-03-23 19:00:00,0.0,1006.9094449999999,0.076083333,78.16833333,7.583083332999999,1.8925833330000001,238.1494411 +2016-03-23 20:00:00,0.0,1007.275833,0.0,81.6925,7.287666667000001,1.2985,238.14944110000002 +2016-03-23 21:00:00,0.0,1007.4336109999999,0.0,86.025,6.021083332999999,0.18308333300000001,238.150068 +2016-03-23 22:00:00,0.0,1007.700833,0.0,91.05833333,5.352916667,0.26358333300000003,238.14965005 +2016-03-23 23:00:00,0.0,1007.833056,0.0,93.15833333,5.698666667,0.096416667,238.15069486666664 +2016-03-24 00:00:00,0.0,1007.875,0.0,93.625,5.534083333,0.274916667,238.15048591666664 +2016-03-24 01:00:00,0.0,1007.9675,0.0,90.625,6.13025,0.795416667,238.15069488333336 +2016-03-24 02:00:00,0.0,1008.066111,0.0,89.90833333,6.015,0.713916667,238.14881421666666 +2016-03-24 03:00:00,0.0,1007.874722,0.0,87.48333333,5.5845,0.684416667,238.14902318333336 +2016-03-24 04:00:00,0.0,1007.908611,0.0,88.075,5.315166667,0.432166667,238.14818733333334 +2016-03-24 05:00:00,0.0,1008.1936109999999,0.0,92.76666667,4.74675,0.39625,238.1515307 +2016-03-24 06:00:00,0.0,1008.81,5.3020000000000005,98.075,3.171333333,0.36466666700000006,238.15027693333332 +2016-03-24 07:00:00,0.0,1009.350833,39.58916667,99.86666667,3.607166667,0.34333333299999996,238.15153071666666 +2016-03-24 08:00:00,0.0,1009.534167,74.35166667,84.39916667,6.05125,0.39483333299999995,238.14756045 +2016-03-24 09:00:00,0.0,1010.1513890000001,80.63416667,79.8675,6.123416667000001,0.935583333,238.14567981666667 +2016-03-24 10:00:00,0.0,1010.3502779999999,275.4,75.67416667,7.393333332999999,1.381,238.14400811666667 +2016-03-24 11:00:00,0.0,1010.383056,214.8916667,72.45666667,8.460833333,1.53275,238.14212746666666 +2016-03-24 12:00:00,0.0,1010.3083330000001,148.15,75.30333333,8.274166667000001,2.061083333,238.14567978333335 +2016-03-24 13:00:00,0.0,1010.4675,112.98333329999998,83.98833333,7.559083332999999,2.173,238.14756043333333 +2016-03-24 14:00:00,0.0,1010.4827779999999,115.05,85.5,7.7030833329999995,1.5600833330000001,238.1467246166667 +2016-03-24 15:00:00,0.0,1010.340833,71.445,80.74916667,8.018833333,1.25025,238.1452619 +2016-03-24 16:00:00,0.0,1010.334167,26.0375,88.16666667,6.8035,1.4976666669999998,238.14756046666665 +2016-03-24 17:00:00,0.0,1010.266389,26.99666667,89.44166667,6.70725,1.092833333,238.14797838333337 +2016-03-24 18:00:00,0.0,1010.3002779999999,8.126333333,86.86666667,6.502916667,1.015916667,238.1479783833333 +2016-03-24 19:00:00,0.0,1010.408889,0.010833333,86.35,6.31125,1.013833333,238.14693358333332 +2016-03-24 20:00:00,0.0,1010.709167,0.0,88.24166667,6.460583333,1.838,238.14714251666666 +2016-03-24 21:00:00,0.0,1010.640278,0.0,90.11666667,6.643166667000001,2.320333333,238.1456798 +2016-03-24 22:00:00,0.0,1010.2575,0.0,91.36666667,6.371666667,1.881083333,238.14547085 +2016-03-24 23:00:00,2.4050227680000003,1009.94,0.0,96.21666667,5.600833333,0.2145,238.14714251666666 +2016-03-25 00:00:00,0.0,1009.533333,0.0,100.0,4.499666667,0.005083333,238.1486052833333 +2016-03-25 01:00:00,0.0,1009.424167,0.0,100.0,4.448416667,0.01925,238.14881421666664 +2016-03-25 02:00:00,0.0,1009.091111,0.0,98.46666667,4.282,0.0,238.14756045000001 +2016-03-25 03:00:00,0.0,1008.9822220000001,0.0,94.225,4.264333333,0.007166667,238.144635 +2016-03-25 04:00:00,0.0,1008.7002779999999,0.0,88.6,4.667083333,0.027666667000000002,238.14567981666667 +2016-03-25 05:00:00,0.0,1008.833333,0.0,88.86666667,5.890833333,1.281583333,238.14484396666668 +2016-03-25 06:00:00,2.84911524,1008.624722,3.3363333330000002,91.3,5.939583333,1.9126666669999999,238.14484396666668 +2016-03-25 07:00:00,0.0,1008.3905560000001,30.38916667,93.89166667,5.9465,2.6319999999999997,238.14379913333335 +2016-03-25 08:00:00,3.824773416,1008.265833,104.9575,94.36666667,6.182083333,3.285916667,238.14484395 +2016-03-25 09:00:00,0.0,1008.0413890000001,139.55833330000002,92.025,6.765916667000001,3.350916667,238.14421708333336 +2016-03-25 10:00:00,14.29798022,1007.9425,128.4833333,93.53333333,6.6878333329999995,3.052333333,238.14442605000002 +2016-03-25 11:00:00,17.4823439,1007.915278,115.8075,93.93333333,6.847083333,2.85675,238.14338123333334 +2016-03-25 12:00:00,18.52564236,1007.565833,91.78333333,95.39166667,6.784416667,2.177666667,238.14630668333336 +2016-03-25 13:00:00,16.42420022,1007.375,92.9225,95.51666667,6.686,2.3905,238.14609773333336 +2016-03-25 14:00:00,18.57629256,1007.241667,88.4825,97.375,6.472083333,2.31375,238.14860524999997 +2016-03-25 15:00:00,15.57873053,1007.475833,81.25666667,97.53333333,6.293916667,2.2560833330000003,238.1496500833333 +2016-03-25 16:00:00,11.67474742,1007.692222,54.60416667,97.71666667,6.109,1.8,238.15194865 +2016-03-25 17:00:00,2.5979602319999997,1007.851111,24.22333333,98.75833333,6.1695,0.97125,238.15466516666666 +2016-03-25 18:00:00,5.26333308,1008.6530550000001,16.30383333,99.91666667,6.413583332999999,1.438083333,238.15487411666672 +2016-03-25 19:00:00,0.0,1009.652222,0.15183333300000001,98.65833333,6.6725833329999995,1.2365,238.15466516666666 +2016-03-25 20:00:00,0.0,1010.5702779999999,0.0,97.50833333,6.263083332999999,0.738083333,238.15717270000002 +2016-03-25 21:00:00,0.0,1011.5427779999999,0.0,99.25,6.06225,1.016,238.15403828333334 +2016-03-25 22:00:00,0.0,1011.901667,0.0,98.34166667,6.190833333,0.782166667,238.15403828333334 +2016-03-25 23:00:00,0.0,1012.8438890000001,0.0,98.36666667,6.032833332999999,0.6515,238.15153073333332 +2016-03-26 00:00:00,0.0,1013.334722,0.0,99.61666667,5.80075,0.8915,238.15403828333334 +2016-03-26 01:00:00,0.0,1013.9925,0.0,99.74166667,5.760333332999999,0.544333333,238.15215759999998 +2016-03-26 02:00:00,0.0,1014.192222,0.0,99.45,5.9051666670000005,0.749083333,238.15257553333333 +2016-03-26 03:00:00,0.0,1014.275833,0.0,100.0,5.760583333,0.500083333,238.15445623333332 +2016-03-26 04:00:00,0.0,1014.65,0.0,99.775,5.0705,0.841166667,238.15508308333332 +2016-03-26 05:00:00,0.0,1014.5425,0.004666667,100.0,2.7873333330000003,0.4835,238.15466515 +2016-03-26 06:00:00,0.0,1014.9419439999999,6.987333333,100.0,1.256333333,0.181916667,238.15445621666666 +2016-03-26 07:00:00,0.0,1015.2763890000001,54.68833333,100.0,2.421916667,0.10008333300000001,238.15215761666664 +2016-03-26 08:00:00,0.0,1015.4,123.54166670000001,100.0,5.1785,0.35616666700000005,238.15027693333332 +2016-03-26 09:00:00,0.0,1015.415278,266.275,95.24166667,7.5766666670000005,1.345166667,238.14693358333332 +2016-03-26 10:00:00,0.0,1015.1,370.4166667,84.84833333,9.606666667,2.66175,238.1463067 +2016-03-26 11:00:00,0.0,1014.824167,281.6833333,75.8675,11.00583333,2.664083333,238.14797836666665 +2016-03-26 12:00:00,0.0,1014.3727779999999,402.21666669999996,69.8475,11.68583333,2.758833333,238.1479783833333 +2016-03-26 13:00:00,0.0,1013.690833,495.3083333000001,64.90166667,12.97416667,3.091,238.14839630000003 +2016-03-26 14:00:00,0.0,1013.155833,445.3916666999999,61.7975,13.59833333,3.03575,238.14672463333338 +2016-03-26 15:00:00,0.0,1012.3894449999999,365.475,61.4725,13.73333333,3.191583333,238.14588876666667 +2016-03-26 16:00:00,0.0,1011.581111,261.9333333,64.60416667,13.10833333,3.108083333,238.150068 +2016-03-26 17:00:00,0.0,1010.623056,88.78833333,67.07583333,12.18166667,2.448666667,238.15236656666664 +2016-03-26 18:00:00,0.0,1010.148611,16.01575,69.07583333,10.54666667,2.3555833330000002,238.15341139999998 +2016-03-26 19:00:00,0.0,1009.6327779999999,0.165833333,80.36166667,9.538333332999999,2.096166667,238.15445621666666 +2016-03-26 20:00:00,0.0,1009.448889,0.0,77.11166667,9.494166667,2.045583333,238.15069488333333 +2016-03-26 21:00:00,0.0,1008.965,0.0,89.58333333,6.57625,0.720833333,238.15424723333334 +2016-03-26 22:00:00,0.0,1008.189445,0.0,86.325,5.536916667000001,0.485416667,238.15320240000003 +2016-03-26 23:00:00,0.0,1007.271944,0.0,80.135,7.9905,3.08125,238.15069486666667 +2016-03-27 00:00:00,0.0,1006.674444,0.0,80.9025,7.83925,3.175166667,238.15048591666664 +2016-03-27 01:00:00,0.0,1005.9386109999999,0.0,82.31666667,7.552416667,1.925,238.1523665666667 +2016-03-27 02:00:00,0.0,1005.3738890000001,0.0,84.775,6.419666667,1.6133333330000001,238.15194865 +2016-03-27 03:00:00,0.0,1004.2205560000001,0.0,87.58333333,6.325166667,2.6029166669999997,238.15278448333333 +2016-03-27 04:00:00,0.0,1003.4991669999999,0.0,86.46666667,6.278166667000001,2.864833333,238.15173968333332 +2016-03-27 05:00:00,0.0,1002.73,0.016416667,87.74166667,6.3673333329999995,2.7569999999999997,238.15132178333332 +2016-03-27 06:00:00,0.0,1002.160833,5.4450833329999995,87.38333333,6.452833332999999,2.332583333,238.15236658333333 +2016-03-27 07:00:00,0.0,1003.1680560000001,10.76566667,92.475,7.015166667000001,1.161833333,238.1490232 +2016-03-27 08:00:00,6.274298592,1003.6697220000001,18.70916667,89.825,7.407416667000001,1.5549166669999999,238.14985903333334 +2016-03-27 09:00:00,24.46550575,1005.096667,32.43083333,89.81666667,9.3275,3.19125,238.1479783833333 +2016-03-27 10:00:00,27.28105356,1006.6936109999999,70.885,95.725,8.715,3.700416667,238.14651564999997 +2016-03-27 11:00:00,0.0,1007.051667,107.88333329999999,90.475,8.721666667000001,3.0829166669999997,238.150068 +2016-03-27 12:00:00,0.0,1007.868333,153.2166667,84.75916667,9.641666667,3.141166667,238.14547085000004 +2016-03-27 13:00:00,0.0,1007.8319439999999,185.1908333,80.58166667,10.09583333,3.601333333,238.14630669999997 +2016-03-27 14:00:00,0.0,1007.675,280.6375,74.13,10.86583333,3.8510000000000004,238.14651563333334 +2016-03-27 15:00:00,0.0,1007.415833,207.2333333,67.25416667,11.3525,3.761916667,238.14651563333334 +2016-03-27 16:00:00,0.0,1007.149167,224.2833333,62.71,11.7025,3.5100833330000003,238.14902316666667 +2016-03-27 17:00:00,0.0,1006.791667,63.84166667,63.0025,11.30583333,2.245166667,238.1494411 +2016-03-27 18:00:00,0.0,1007.0747220000001,8.274166667000001,67.015,9.989166667000001,1.10625,238.14818733333334 +2016-03-27 19:00:00,0.0,1006.8502779999999,0.26025,79.2675,6.795333332999999,1.6035833330000002,238.15173968333332 +2016-03-27 20:00:00,0.0,1007.209167,0.0,77.49083333,5.373833332999999,0.7224166670000001,238.14839628333334 +2016-03-27 21:00:00,0.0,1007.1913890000001,0.0,78.08416667,5.0075,1.163833333,238.15006796666668 +2016-03-27 22:00:00,0.0,1006.931111,0.0,79.8625,7.086916667000001,1.3493333330000001,238.15027694999995 +2016-03-27 23:00:00,0.0,1006.466667,0.0,79.74166667,3.9815,0.38841666700000005,238.15069486666667 +2016-03-28 00:00:00,0.0,1006.140278,0.0,79.97333333,2.6555,1.0745833329999999,238.15048593333333 +2016-03-28 01:00:00,0.0,1005.706667,0.0,80.62916667,3.0180000000000002,2.36175,238.15006798333332 +2016-03-28 02:00:00,0.0,1004.9219439999999,0.0,89.95,2.737083333,2.44375,238.15257553333333 +2016-03-28 03:00:00,0.0,1004.106944,0.0,88.86666667,3.655,2.517583333,238.15278448333333 +2016-03-28 04:00:00,0.0,1003.398056,0.0,86.65,4.372166667,2.6639999999999997,238.15153073333332 +2016-03-28 05:00:00,0.0,1002.572222,0.024916667000000003,79.90583333,3.999916667,2.144166667,238.14881423333335 +2016-03-28 06:00:00,0.0,1001.673889,15.0235,78.65166667,4.382916667,2.43925,238.14923215 +2016-03-28 07:00:00,0.0,1001.1144449999999,56.46333333,76.89833333,5.69025,2.352083333,238.14965006666668 +2016-03-28 08:00:00,0.0,1000.313889,89.2125,73.0125,6.464166667000001,3.00725,238.14839628333334 +2016-03-28 09:00:00,0.0,999.8833332999999,99.9375,69.83083333,7.347833333,3.069083333,238.14797838333334 +2016-03-28 10:00:00,0.0,999.3308332999999,85.27,74.52,7.507916667000001,2.6775833330000003,238.14985905000003 +2016-03-28 11:00:00,5.109483192,998.2636110999999,188.7666667,77.30916667,8.37225,4.259083333,238.14756046666665 +2016-03-28 12:00:00,0.0,997.8497222000001,186.16666669999998,81.29166667,9.085833333,5.396166667,238.1469335666667 +2016-03-28 13:00:00,0.0,997.3638889,69.43333333,82.85833333,8.8125,4.876416667,238.14860526666664 +2016-03-28 14:00:00,0.0,996.4897222000001,57.47583333,80.395,9.343333333,4.42475,238.14839630000003 +2016-03-28 15:00:00,3.1209682560000003,995.4288889000001,47.47166667,80.32583333,9.950833333,3.92475,238.14839631666666 +2016-03-28 16:00:00,175.9698438,996.5038889,92.90416667,94.08333333,7.85125,3.9321666669999997,238.16260568333334 +2016-03-28 17:00:00,0.0,996.0433332999999,75.165,88.94166667,9.163333332999999,1.96125,238.1768150833333 +2016-03-28 18:00:00,0.0,996.5933332999999,20.95808333,86.01666667,9.168333333,1.7763333330000002,238.17681510000003 +2016-03-28 19:00:00,38.67406565,997.4602777999999,0.12166666699999999,91.56666667,7.154583333,2.434166667,238.30971471666666 +2016-03-28 20:00:00,48.38380332,998.0258332999998,0.0,98.01666667,6.19225,1.509166667,238.43906196666669 +2016-03-28 21:00:00,2.8210281839999998,997.8733332999999,0.0,99.95,5.402916667,1.7455833330000001,238.5011236 +2016-03-28 22:00:00,3.800256648,997.4591667000001,0.0,92.00833333,7.2625,1.494583333,238.37344803333337 +2016-03-28 23:00:00,9.041543352,997.7094444,0.0,94.06666667,7.373416667000001,2.6225,238.34126791666665 +2016-03-29 00:00:00,22.93543198,998.5591667000001,0.0,96.69166667,5.869416667,1.7031666669999999,238.33792455000003 +2016-03-29 01:00:00,0.0,998.9688889,0.0,93.775,5.746583332999999,3.492666667,238.35694004999996 +2016-03-29 02:00:00,0.0,999.5933332999999,0.0,93.23333333,5.48325,2.854333333,238.35944759999998 +2016-03-29 03:00:00,0.0,1000.1438890000001,0.0,91.83333333,5.702833332999999,3.585,238.3506712 +2016-03-29 04:00:00,0.0,1000.7022220000001,0.0,88.3,5.861916667000001,4.01725,238.34440234999997 +2016-03-29 05:00:00,0.0,1001.601389,0.0305,85.56666667,5.752583333,3.423166667,238.33458115 +2016-03-29 06:00:00,0.0,1002.210833,9.046166667,84.38333333,5.694916667,3.7735,238.33249151666666 +2016-03-29 07:00:00,0.0,1003.085,62.25333333,85.4,6.219666667,4.247,238.3241330666667 +2016-03-29 08:00:00,0.0,1003.626389,113.605,81.17333333,7.438333332999999,4.944166667,238.31890901666665 +2016-03-29 09:00:00,0.0,1004.318333,314.1166667,75.84166667,8.442166667,4.866416667,238.30950573333328 +2016-03-29 10:00:00,0.0,1004.8438890000001,375.65,71.4575,9.281666667,5.167333333,238.3053265 +2016-03-29 11:00:00,0.0,1005.200833,508.65,65.47333333,10.2075,4.915166667,238.29989349999997 +2016-03-29 12:00:00,0.0,1005.5583330000001,392.175,61.60333333,10.54833333,5.2595,238.29634115 +2016-03-29 13:00:00,0.0,1005.3741669999999,296.3583333,58.58833333,10.72583333,4.421333333,238.29383363333332 +2016-03-29 14:00:00,0.0,1005.4425,430.21666669999996,55.50166667,12.11416667,4.607333333,238.28860956666665 +2016-03-29 15:00:00,0.0,1005.3825,234.3416667,58.55,11.72333333,3.326083333,238.28631099999998 +2016-03-29 16:00:00,0.0,1005.3661109999999,263.7,55.9125,12.28833333,2.359916667,238.28234073333337 +2016-03-29 17:00:00,0.0,1005.042222,74.5825,56.9925,11.78666667,3.9355,238.2802511333333 +2016-03-29 18:00:00,0.0,1005.9030560000001,17.12941667,60.52666667,10.4425,3.030583333,238.27565395 +2016-03-29 19:00:00,0.0,1006.2075,0.35600000000000004,68.82416667,7.87325,0.849583333,238.2737733 +2016-03-29 20:00:00,0.0,1006.385,0.0,82.1575,4.954916667,0.279583333,238.27084786666668 +2016-03-29 21:00:00,0.0,1006.741667,0.0,81.685,4.031166667,0.11699999999999999,238.26583276666668 +2016-03-29 22:00:00,0.0,1006.540833,0.0,84.73333333,4.451416667,0.18483333300000002,238.26144455 +2016-03-29 23:00:00,0.0,1006.2661109999999,0.0,85.575,5.238166667,0.236083333,238.25851908333334 +2016-03-30 00:00:00,0.0,1005.538611,0.0,84.33666667,6.7535,1.317166667,238.25308611666665 +2016-03-30 01:00:00,44.46475687,1005.4922220000001,0.0,89.375,7.310583332999999,0.95725,238.2509964833333 +2016-03-30 02:00:00,2.563336776,1004.89,0.0,94.65833333,6.831333333,0.653,238.25057855 +2016-03-30 03:00:00,2.418224544,1004.5736109999999,0.0,97.81666667,6.616833333,0.279666667,238.24911581666666 +2016-03-30 04:00:00,0.0,1003.981944,0.0,91.63333333,7.298916667,0.842833333,238.24639930000004 +2016-03-30 05:00:00,0.0,1003.933889,0.016416667,89.725,8.064,1.2255,238.24284698333335 +2016-03-30 06:00:00,0.0,1003.9347220000001,9.337833332999999,88.63333333,8.384166667,1.8188333330000002,238.23971256666664 +2016-03-30 07:00:00,0.0,1004.7527779999999,51.01666667,87.275,8.96,2.290083333,238.23532435 +2016-03-30 08:00:00,0.0,1005.325556,83.14583333,85.86666667,9.638333333,2.514166667,238.23114511666665 +2016-03-30 09:00:00,38.34428789,1005.9525,47.20333333,91.33333333,8.297333333,2.055916667,238.23093618333328 +2016-03-30 10:00:00,18.50305272,1006.726389,95.58583333,96.325,7.7235,0.916416667,238.23386163333336 +2016-03-30 11:00:00,13.25768791,1007.259722,126.49416670000001,94.34166667,8.092583333,1.2399166670000001,238.24096633333332 +2016-03-30 12:00:00,8.50672992,1007.5836109999999,150.94166669999998,95.13333333,8.081416667000001,1.9595,238.24660830000002 +2016-03-30 13:00:00,3.61967556,1007.4575,270.21666669999996,92.25833333,9.189166667,2.5945,238.25245918333334 +2016-03-30 14:00:00,0.0,1007.35,276.7916667,85.575,10.46083333,2.3695,238.25371298333334 +2016-03-30 15:00:00,0.0,1007.1997220000001,260.78333330000004,81.91833333,11.17416667,2.498333333,238.25266816666667 +2016-03-30 16:00:00,0.0,1006.9994439999999,156.34,80.36166667,11.20166667,2.138416667,238.25204128333334 +2016-03-30 17:00:00,0.0,1006.875,47.41166667,79.09583333,10.745,2.53875,238.25225024999997 +2016-03-30 18:00:00,0.0,1007.091667,14.28025,84.01666667,9.97,2.68225,238.25057856666672 +2016-03-30 19:00:00,0.0,1007.234167,0.229666667,89.975,9.015833333,1.81575,238.24786205 +2016-03-30 20:00:00,0.0,1007.5597220000001,0.0,93.20833333,8.445,1.33725,238.24723516666668 +2016-03-30 21:00:00,0.0,1007.8911109999999,0.0,94.975,8.054666667000001,0.680666667,238.24514555000005 +2016-03-30 22:00:00,0.0,1007.6747220000001,0.0,98.59166667,7.827583333,0.502833333,238.24326489999999 +2016-03-30 23:00:00,0.0,1007.6425,0.0,99.79166667,7.418666667,0.04975,238.24222009999997 +2016-03-31 00:00:00,0.0,1007.515833,0.0,100.0,7.2489166670000005,0.5116666670000001,238.24159321666664 +2016-03-31 01:00:00,0.0,1007.6594439999999,0.0,100.0,7.22,0.253833333,238.23824981666664 +2016-03-31 02:00:00,0.0,1007.498333,0.0,100.0,7.132916667000001,0.30575,238.23511541666667 +2016-03-31 03:00:00,0.0,1006.965,0.0,100.0,7.1951666670000005,1.315416667,238.23553331666665 +2016-03-31 04:00:00,0.0,1006.9922220000001,0.0,99.775,7.074083333,0.18533333300000002,238.23302578333335 +2016-03-31 05:00:00,0.0,1006.958056,0.013666667,99.96666667,6.9356666670000005,1.170666667,238.23260786666663 +2016-03-31 06:00:00,2.899961784,1006.6747220000001,5.50525,98.675,6.961,1.6764166669999998,238.2296824166667 +2016-03-31 07:00:00,0.0,1006.834167,15.63416667,97.09166667,7.083083332999999,1.4841666669999998,238.22696586666666 +2016-03-31 08:00:00,0.0,1007.184167,42.07833333,93.44166667,7.18775,2.5380000000000003,238.22842863333335 +2016-03-31 09:00:00,0.0,1007.266667,84.60333333,89.775,7.545166667,3.115166667,238.22466731666668 +2016-03-31 10:00:00,3.5355353760000003,1007.3575,62.16666667,90.75833333,7.543916667,2.8785,238.22404041666667 +2016-03-31 11:00:00,56.51626495,1006.9161109999999,53.51166667,96.41666667,6.896,3.0758333330000003,238.22424938333336 +2016-03-31 12:00:00,24.640110699999997,1006.6913890000001,79.1875,98.2,6.679333333,3.9485,238.22759276666667 +2016-03-31 13:00:00,16.7240921,1006.8741669999999,38.7425,98.8,6.616833333,3.7085,238.23532438333334 +2016-03-31 14:00:00,3.8520688080000003,1006.450833,43.43333333,98.425,6.6965,3.701666667,238.24263801666666 +2016-03-31 15:00:00,25.3326901,1006.114167,20.7775,97.65833333,6.459083333,4.061333333,238.2476531 +2016-03-31 16:00:00,26.70476446,1005.1736109999999,18.42083333,99.5,6.05675,4.141583333,238.25580261666667 +2016-03-31 17:00:00,47.65058422,1005.542222,4.310083333,99.98333333,5.704416667,3.400416667,238.29822183333332 +2016-03-31 18:00:00,11.2990116,1005.383056,2.310333333,99.99166667,5.281666667,3.697,238.37407491666667 +2016-03-31 19:00:00,0.0,1005.4,0.045083332999999996,98.65833333,4.82575,3.991833333,238.33123776666665 +2016-03-31 20:00:00,0.0,1006.0277779999999,0.0,98.06666667,4.524416667,4.24925,238.32267036666667 +2016-03-31 21:00:00,64.41890402,1006.425,0.0,98.58333333,3.899666667,4.116416667,238.31681941666668 +2016-03-31 22:00:00,82.26429389,1006.616667,0.0,99.85833333,3.3425833330000003,4.574166667,238.52870653333335 +2016-03-31 23:00:00,74.92726646,1006.826667,0.0,99.95833333,2.7125,3.898666667,238.6175152333333 +2016-01-04 00:00:00,114.5331371,1007.5938890000001,0.0,100.0,2.50325,3.361416667,238.09545103333332 +2016-01-04 01:00:00,64.33012231,1008.3125,0.0,100.0,2.544166667,4.435166667,238.09276673333332 +2016-01-04 02:00:00,61.87606399,1009.376389,0.0,100.0,2.186833333,3.58275,238.09294569999997 +2016-01-04 03:00:00,50.99268862,1010.219722,0.0,100.0,2.3136666669999997,3.2015,238.09258779999996 +2016-01-04 04:00:00,18.67363586,1010.943333,0.0,100.0,2.7181666669999998,3.059916667,238.09079825 +2016-01-04 05:00:00,0.0,1011.6613890000001,0.0235,100.0,3.07525,2.699583333,238.08847185000002 +2016-01-04 06:00:00,0.0,1012.508333,6.676083332999999,99.84166667,3.419916667,2.1515,238.0875771 +2016-01-04 07:00:00,0.0,1013.4386109999999,32.6025,97.94166667,3.776416667,2.2769999999999997,238.08668233333333 +2016-01-04 08:00:00,0.0,1014.8272220000001,88.2725,95.45833333,4.393,2.2208333330000003,238.0843559 +2016-01-04 09:00:00,0.0,1015.5436109999999,161.2833333,92.41666667,5.331,2.767833333,238.08381908333334 +2016-01-04 10:00:00,0.0,1016.461111,249.2333333,87.28333333,6.311166667,3.53125,238.0807768666667 +2016-01-04 11:00:00,0.0,1017.150278,328.96666669999996,82.59166667,7.287666667000001,3.76925,238.08077686666664 +2016-01-04 12:00:00,0.0,1017.2088890000001,395.1833333,78.92333333,8.331583333,4.012583333,238.08077688333333 +2016-01-04 13:00:00,0.0,1017.3075,371.85,74.59583333,9.5525,3.992,238.08059793333334 +2016-01-04 14:00:00,0.0,1016.825,316.9,72.53833333,9.94,3.388,238.08185059999997 +2016-01-04 15:00:00,0.0,1016.7327779999999,271.6833333,71.0825,10.40416667,3.19375,238.0845348833333 +2016-01-04 16:00:00,0.0,1016.423333,248.275,69.46,10.78583333,3.3698333330000003,238.08793498333338 +2016-01-04 17:00:00,0.0,1015.898333,97.275,68.935,10.58166667,3.686833333,238.0904403333333 +2016-01-04 18:00:00,0.0,1015.8594439999999,37.74616667,74.4125,9.205833333,2.550916667,238.09670371666667 +2016-01-04 19:00:00,0.0,1016.2188890000001,0.5688333329999999,87.83333333,7.9139166670000005,2.522833333,238.1017144 +2016-01-04 20:00:00,0.0,1017.0425,0.0,92.85,6.482833332999999,1.500666667,238.10457766666664 +2016-01-04 21:00:00,0.0,1017.05,0.0,98.375,3.241083333,0.471416667,238.10976730000002 +2016-01-04 22:00:00,0.0,1016.89,0.0,99.96666667,1.66325,0.20425,238.10923045 +2016-01-04 23:00:00,0.0,1016.458333,0.0,100.0,0.7495,0.106833333,238.11263056666664 +2016-02-04 00:00:00,0.0,1016.449445,0.0,100.0,0.271083333,0.02725,238.09813535 +2016-02-04 01:00:00,0.0,1016.2830560000001,0.0,100.0,-0.284833333,0.038416667,238.09938799999998 +2016-02-04 02:00:00,0.0,1016.04,0.0,100.0,-0.6004166670000001,0.081916667,238.0970616333333 +2016-02-04 03:00:00,0.0,1015.3994449999999,0.0,100.0,-0.97525,0.0165,238.09813535 +2016-02-04 04:00:00,0.0,1014.974167,0.0,100.0,-1.011,0.04175,238.0986722 +2016-02-04 05:00:00,0.0,1015.133333,0.21575,100.0,-1.081333333,0.044083332999999995,238.09920905 +2016-02-04 06:00:00,0.0,1015.0583330000001,16.04283333,100.0,-1.158416667,0.042,238.09885115 +2016-02-04 07:00:00,0.0,1015.016667,53.7825,100.0,1.29975,0.078416667,238.1006406666667 +2016-02-04 08:00:00,0.0,1014.966667,129.925,97.85833333,4.625666667,0.10300000000000001,238.10099860000003 +2016-02-04 09:00:00,0.0,1014.983333,236.7333333,86.63333333,7.543083332999999,0.872833333,238.09867218333332 +2016-02-04 10:00:00,0.0,1014.840833,372.425,79.98,9.87,1.7265833330000002,238.09741955 +2016-02-04 11:00:00,0.0,1014.3469449999999,343.1083333,78.87333333,11.3725,1.92725,238.09741953333332 +2016-02-04 12:00:00,0.0,1013.674444,413.9166667,77.38333333,12.17166667,1.253333333,238.0999248666667 +2016-02-04 13:00:00,0.0,1013.214722,389.6833333,73.635,13.76833333,1.255916667,238.10064068333335 +2016-02-04 14:00:00,0.0,1012.5486109999999,284.78333330000004,71.44,14.32916667,1.428833333,238.10368291666668 +2016-02-04 15:00:00,0.0,1012.0469439999999,234.0916667,71.00083333,14.6575,1.076416667,238.1088725333333 +2016-02-04 16:00:00,0.0,1011.275556,193.675,70.52083333,15.3425,0.7140000000000001,238.11334638333332 +2016-02-04 17:00:00,0.0,1011.2994449999999,111.80833329999999,69.95,14.87,0.7373333329999999,238.11978870000004 +2016-02-04 18:00:00,0.0,1010.847778,29.03358333,81.57083333,12.755,0.214,238.12444150000002 +2016-02-04 19:00:00,0.0,1010.266389,0.48808333299999995,96.19166667,9.315833332999999,0.11508333300000001,238.12981008333335 +2016-02-04 20:00:00,0.0,1010.166667,0.0,99.45,7.73325,0.26158333300000003,238.1351786833333 +2016-02-04 21:00:00,0.0,1010.015,0.0,100.0,6.716583332999999,0.163416667,238.1382209 +2016-02-04 22:00:00,0.0,1009.633056,0.0,100.0,6.76025,0.257916667,238.14126310000003 +2016-02-04 23:00:00,0.0,1009.666667,0.0,100.0,6.81475,0.212416667,238.141621 +2016-03-04 00:00:00,0.0,1009.5583330000001,0.0,100.0,7.1455,0.201666667,238.20983105000002 +2016-03-04 01:00:00,0.0,1009.272222,0.0,100.0,7.63025,0.200833333,238.21108478333335 +2016-03-04 02:00:00,0.0,1008.9425,0.0,100.0,8.261666667,0.35858333299999995,238.2092041666667 +2016-03-04 03:00:00,0.0,1008.799444,0.0,100.0,7.857083332999999,0.311583333,238.20753246666663 +2016-03-04 04:00:00,0.0,1008.414444,0.0,100.0,7.281000000000001,0.180083333,238.20753246666663 +2016-03-04 05:00:00,0.0,1008.009722,0.07933333299999999,100.0,7.639416667000001,0.562,238.20795038333333 +2016-03-04 06:00:00,0.0,1008.475833,13.91383333,100.0,7.246083333,0.27525,238.20815935000005 +2016-03-04 07:00:00,0.0,1009.109167,57.54833333,99.75833333,8.0315,0.200833333,238.20920415 +2016-03-04 08:00:00,0.0,1008.9672220000001,103.5016667,95.43333333,9.85,0.56075,238.20627868333335 +2016-03-04 09:00:00,0.0,1009.551667,225.2333333,83.44583333,11.90083333,0.43108333299999996,238.20356218333333 +2016-03-04 10:00:00,0.0,1009.6241669999999,335.025,72.4075,14.99333333,0.7909166670000001,238.20565179999997 +2016-03-04 11:00:00,0.0,1009.299167,325.4583333,67.1025,16.5575,1.42275,238.20481596666664 +2016-03-04 12:00:00,0.0,1008.899167,267.825,67.88166667,17.12916667,1.8900833330000002,238.20711455 +2016-03-04 13:00:00,0.0,1008.339444,376.6916667,68.94833333,18.5975,1.34375,238.20627869999998 +2016-03-04 14:00:00,0.0,1007.856667,308.925,62.7575,19.16333333,1.52375,238.2066966166667 +2016-03-04 15:00:00,0.0,1007.189444,196.525,61.75833333,18.76166667,1.53825,238.20711455000003 +2016-03-04 16:00:00,0.0,1006.716111,156.2833333,61.41916667,18.335,1.501,238.20857726666668 +2016-03-04 17:00:00,0.0,1006.5580560000001,70.80166667,67.44916667,17.0125,1.207666667,238.20857726666668 +2016-03-04 18:00:00,0.0,1006.4077779999999,12.94925,83.0375,15.3075,0.613916667,238.21317439999999 +2016-03-04 19:00:00,0.0,1006.359167,0.26258333300000003,93.05,14.09833333,0.163333333,238.21442820000001 +2016-03-04 20:00:00,0.0,1006.3488890000001,0.0,94.71666667,13.2875,0.33799999999999997,238.21568196666666 +2016-03-04 21:00:00,0.0,1005.824444,0.0,97.675,12.52833333,0.24891666699999998,238.21484611666665 +2016-03-04 22:00:00,0.0,1005.4569439999999,0.0,98.825,12.20333333,0.21575,238.21881638333335 +2016-03-04 23:00:00,7.480853088,1005.6,0.0,99.51666667,11.99833333,0.309,238.22090599999999 +2016-04-04 00:00:00,4.919554008,1005.231667,0.0,100.0,11.95416667,0.160333333,238.30699821666667 +2016-04-04 01:00:00,0.0,1004.741389,0.0,100.0,11.715,0.255583333,238.30678924999998 +2016-04-04 02:00:00,0.0,1004.900833,0.0,97.79166667,12.34666667,0.8955,238.30261001666668 +2016-04-04 03:00:00,4.91390292,1004.6227779999999,0.0,99.14166667,11.86083333,0.252416667,238.30072934999998 +2016-04-04 04:00:00,32.0302146,1004.6244449999999,0.0,100.0,11.77916667,1.362333333,238.2994755833333 +2016-04-04 05:00:00,2.71386684,1003.8825,0.136166667,100.0,11.3675,0.551583333,238.3030279333333 +2016-04-04 06:00:00,0.0,1003.6833330000001,6.84925,100.0,10.55083333,0.5016666670000001,238.30553551666665 +2016-04-04 07:00:00,0.0,1003.9263890000001,39.86416667,100.0,11.54333333,2.218,238.30219208333335 +2016-04-04 08:00:00,0.0,1004.1925,90.64916667,97.56666667,13.0675,1.672833333,238.29738594999995 +2016-04-04 09:00:00,3.0010371360000003,1004.4333330000001,180.6333333,79.71666667,15.52,1.5590000000000002,238.29216193333332 +2016-04-04 10:00:00,0.0,1004.684167,201.0916667,74.58583333,16.3375,2.085083333,238.29216195000004 +2016-04-04 11:00:00,0.0,1004.849167,135.2933333,77.02583333,15.72416667,2.1535,238.2894454166667 +2016-04-04 12:00:00,5.56413612,1004.525556,251.2833333,78.775,15.80833333,1.03575,238.28986335000002 +2016-04-04 13:00:00,0.0,1004.531944,387.3916667,66.30333333,17.61,2.0838333330000003,238.2877737166667 +2016-04-04 14:00:00,0.0,1003.915,233.1083333,63.87666667,17.54666667,1.7256666669999998,238.2875647666667 +2016-04-04 15:00:00,0.0,1003.5919439999999,180.6083333,60.46833333,17.07833333,1.9405,238.28756475 +2016-04-04 16:00:00,10.81108406,1003.615833,82.73916667,77.1675,15.08416667,1.582583333,238.28631098333332 +2016-04-04 17:00:00,2.716943712,1003.7088890000001,54.14,80.50916667,13.8675,2.21525,238.2869378833333 +2016-04-04 18:00:00,0.0,1003.666667,34.05333333,87.55,13.12916667,1.17875,238.28401241666666 +2016-04-04 19:00:00,0.0,1003.809167,0.99525,89.91666667,11.9825,2.00375,238.28443033333335 +2016-04-04 20:00:00,0.0,1003.8577779999999,0.0,93.95833333,10.52666667,1.49075,238.28401241666666 +2016-04-04 21:00:00,0.0,1003.675,0.0,99.24166667,8.496916667,0.51025,238.28463929999998 +2016-04-04 22:00:00,0.0,1003.407222,0.0,100.0,8.256083333,0.29991666699999997,238.28254968333331 +2016-04-04 23:00:00,0.0,1003.334167,0.0,100.0,8.968333333,0.70475,238.28129593333333 +2016-05-04 00:00:00,0.0,1002.9638890000001,0.0,98.65,10.36416667,1.1530833329999999,238.12541480000002 +2016-05-04 01:00:00,2.9063526960000003,1002.5580560000001,0.0,99.03333333,10.61833333,1.328,238.12625963333335 +2016-05-04 02:00:00,7.58823612,1002.475833,0.0,100.0,10.04666667,0.440333333,238.12609066666667 +2016-05-04 03:00:00,41.16566124,1002.389167,0.0,100.0,9.909166667000001,0.567666667,238.12456996666666 +2016-05-04 04:00:00,2.4050227680000003,1002.3525,0.0,100.0,9.76,0.230083333,238.12693546666665 +2016-05-04 05:00:00,17.064148199999998,1002.8994439999999,0.05925,100.0,9.635,0.129,238.1272734 +2016-05-04 06:00:00,2.406314376,1003.018056,4.748333333,100.0,9.445,0.212,238.12423203333333 +2016-05-04 07:00:00,7.287348047999999,1002.8247220000001,21.19575,100.0,9.890833333,0.270833333,238.12203555 +2016-05-04 08:00:00,5.085198336,1003.041944,51.49916667,100.0,10.38833333,0.40783333299999996,238.11983900000004 +2016-05-04 09:00:00,2.82818052,1002.865278,62.14166667,100.0,11.05333333,1.3785,238.11865625000004 +2016-05-04 10:00:00,0.0,1002.9097220000001,96.20166667,100.0,11.44583333,1.8530000000000002,238.11848730000006 +2016-05-04 11:00:00,3.1977984239999997,1002.974722,116.51666670000002,97.59166667,12.86416667,2.224,238.11730458333332 +2016-05-04 12:00:00,0.0,1002.8911109999999,87.47583333,86.53333333,13.30083333,1.170833333,238.11865628333337 +2016-05-04 13:00:00,0.0,1002.682778,83.55833333,88.99166667,13.145,1.160666667,238.11764251666668 +2016-05-04 14:00:00,0.0,1002.5330560000001,103.8083333,90.54166667,13.33916667,1.385083333,238.11561491666666 +2016-05-04 15:00:00,0.0,1002.4430550000001,202.02333330000002,91.01666667,14.10916667,2.599583333,238.1151080333333 +2016-05-04 16:00:00,29.57461231,1003.301111,74.79166667,97.65833333,12.0575,2.080166667,238.11460113333337 +2016-05-04 17:00:00,2.7104589839999997,1003.810556,55.765,97.25,11.61,1.276916667,238.11696663333336 +2016-05-04 18:00:00,2.70604596,1004.4938890000001,16.27883333,97.36666667,10.99333333,0.893083333,238.11696663333336 +2016-05-04 19:00:00,0.0,1005.5022220000001,1.053166667,97.31666667,10.3,0.7404166670000001,238.11747351666668 +2016-05-04 20:00:00,0.0,1006.0925,0.0,98.51666667,9.725833332999999,0.699583333,238.12017693333334 +2016-05-04 21:00:00,0.0,1006.410833,0.0,99.94166667,8.273583333,0.203333333,238.12237344999997 +2016-05-04 22:00:00,0.0,1006.958333,0.0,100.0,7.541833333,0.06925,238.12051486666667 +2016-05-04 23:00:00,0.0,1007.2425,0.0,99.875,6.71475,0.04575,238.1216976166667 +2016-06-04 00:00:00,0.0,1007.408333,0.0,100.0,5.761666667,0.18383333300000002,238.11122186666668 +2016-06-04 01:00:00,0.0,1007.3,0.0,100.0,4.85275,0.201,238.11155981666664 +2016-06-04 02:00:00,0.0,1007.3505560000001,0.0,100.0,3.7715,0.015916667,238.1085184333333 +2016-06-04 03:00:00,2.405650608,1007.591667,0.0,100.0,3.066333333,0.040166667,238.1075046833333 +2016-06-04 04:00:00,0.0,1007.508333,0.0,100.0,2.339416667,0.05575,238.10834949999995 +2016-06-04 05:00:00,0.0,1007.6344439999999,0.5215833329999999,99.45833333,2.1245,0.11508333300000001,238.10547713333332 +2016-06-04 06:00:00,0.0,1008.0513890000001,14.74675,98.16666667,4.0055,0.92225,238.10530816666665 +2016-06-04 07:00:00,0.0,1008.458333,53.90916667,93.25,8.2475,2.4586666669999997,238.10311163333333 +2016-06-04 08:00:00,0.0,1008.826667,140.2216667,88.525,9.5475,2.962916667,238.1024358 +2016-06-04 09:00:00,0.0,1009.116389,275.4916667,85.34166667,10.52,3.092166667,238.10023928333337 +2016-06-04 10:00:00,0.0,1008.790556,357.4916667,79.1025,11.33833333,2.4035833330000003,238.10023926666668 +2016-06-04 11:00:00,0.0,1008.4825,496.95833330000005,71.83166667,12.6175,3.7600833330000003,238.09804271666664 +2016-06-04 12:00:00,0.0,1007.8063890000001,412.225,64.07833333,13.14583333,4.221166667,238.09686001666662 +2016-06-04 13:00:00,0.0,1007.097778,428.5666666999999,59.01666667,14.07083333,3.675833333,238.0975358333333 +2016-06-04 14:00:00,0.0,1006.164167,342.95,54.54333333,14.41666667,4.015416667,238.09702895 +2016-06-04 15:00:00,0.0,1005.322778,197.18333330000002,56.34916667,14.63583333,3.878166667,238.09432553333332 +2016-06-04 16:00:00,0.0,1005.040833,104.4091667,58.46666667,14.04666667,3.760416667,238.09280486666663 +2016-06-04 17:00:00,0.0,1004.6241669999999,42.80916667,61.1875,13.72,3.2744166669999997,238.09567726666668 +2016-06-04 18:00:00,0.0,1004.2827779999999,15.08066667,63.8025,13.395,2.902166667,238.0939876 +2016-06-04 19:00:00,0.0,1003.990833,1.4880000000000002,65.0075,12.94083333,2.4035833330000003,238.09280488333332 +2016-06-04 20:00:00,0.0,1003.799444,0.0,66.58583333,12.60416667,2.757916667,238.0939876 +2016-06-04 21:00:00,0.0,1003.658333,0.0,67.98916667,12.615,3.463666667,238.09415658333333 +2016-06-04 22:00:00,0.0,1003.665833,0.0,70.68583333,12.25166667,3.257916667,238.09483243333332 +2016-06-04 23:00:00,2.572469592,1004.111389,0.0,81.915,9.656916667,3.0678333330000003,238.0963531 +2016-07-04 00:00:00,19.44494158,1004.6255560000001,0.0,94.66666667,7.860666667,1.130083333,238.07282840000002 +2016-07-04 01:00:00,2.75423424,1004.524167,0.0,96.325,7.341833332999999,0.777666667,238.07422138333334 +2016-07-04 02:00:00,0.0,1004.2911109999999,0.0,99.1,6.75825,0.40666666700000004,238.07442038333332 +2016-07-04 03:00:00,0.0,1004.116667,0.0,96.775,6.4525,0.169083333,238.07521633333337 +2016-07-04 04:00:00,0.0,1004.158333,0.0,91.975,6.858166667000001,1.580583333,238.07601230000003 +2016-07-04 05:00:00,8.0791014,1004.31,0.054916667,95.3,6.802083333,1.146916667,238.07282841666665 +2016-07-04 06:00:00,23.21734872,1004.849722,3.747666667,95.525,5.6275,1.724,238.07282841666665 +2016-07-04 07:00:00,0.0,1005.11,53.79916667,94.86666667,5.669083333,1.5995,238.07223141666668 +2016-07-04 08:00:00,3.416158608,1005.518056,136.1116667,85.39166667,7.6035,2.620583333,238.06964453333333 +2016-07-04 09:00:00,0.0,1006.0177779999999,227.7033333,75.42583333,8.651666667,3.2345833330000002,238.06725661666667 +2016-07-04 10:00:00,0.0,1006.3755560000001,364.6916667,66.79833333,9.435833333,2.8235,238.06685860000002 +2016-07-04 11:00:00,0.0,1006.158333,397.0666667,63.11083333,9.615,3.445833333,238.0648686666667 +2016-07-04 12:00:00,0.0,1006.341667,552.8166667,60.33666667,10.57083333,3.0210000000000004,238.06526665 +2016-07-04 13:00:00,0.0,1006.140833,506.7333333000001,59.08333333,10.9375,3.407333333,238.0662616166667 +2016-07-04 14:00:00,0.0,1006.233611,508.11666669999994,51.62833333,11.925,2.8431666669999998,238.06466966666667 +2016-07-04 15:00:00,0.0,1006.116389,425.0166666999999,50.355,11.835,3.0238333330000002,238.0620827666667 +2016-07-04 16:00:00,0.0,1005.949167,330.0666667,47.8375,12.0125,2.755666667,238.0618837833334 +2016-07-04 17:00:00,0.0,1005.9925,93.0125,48.88416667,11.34,1.9965,238.06128680000003 +2016-07-04 18:00:00,0.0,1006.560556,21.905,67.70083333,8.569166667000001,1.43275,238.06128680000003 +2016-07-04 19:00:00,0.0,1007.351944,1.164416667,75.8075,7.340166667,1.6458333330000001,238.06029183333337 +2016-07-04 20:00:00,0.0,1007.809167,0.0,82.26666667,4.886,0.27775,238.06188378333334 +2016-07-04 21:00:00,0.0,1008.009167,0.0,83.0525,2.753583333,0.23925,238.06307775000005 +2016-07-04 22:00:00,0.0,1008.241667,0.0,84.20833333,3.3923333330000003,0.886833333,238.06407271666671 +2016-07-04 23:00:00,0.0,1008.1497220000001,0.0,87.725,2.80525,0.55975,238.06387370000002 +2016-08-04 00:00:00,0.0,1008.1255560000001,0.0,91.45,1.4996666669999998,0.19066666699999998,237.99144015 +2016-08-04 01:00:00,0.0,1008.3502779999999,0.0,97.51666667,0.455666667,0.275916667,237.99203713333335 +2016-08-04 02:00:00,0.0,1008.231944,0.0,99.85833333,-0.037666667,0.053,237.99084316666665 +2016-08-04 03:00:00,0.0,1007.9925,0.0,100.0,-0.65375,0.212083333,237.99303206666664 +2016-08-04 04:00:00,0.0,1007.815,0.0,100.0,-1.072,0.111916667,237.99522100000002 +2016-08-04 05:00:00,0.0,1007.7763890000001,0.825333333,100.0,-1.5408333330000001,0.0,237.99542 +2016-08-04 06:00:00,0.0,1008.2427779999999,18.00625,100.0,-0.95125,0.017083333,237.99601700000002 +2016-08-04 07:00:00,0.0,1008.650556,87.76083333,100.0,2.5125833330000003,0.176916667,237.99621598333331 +2016-08-04 08:00:00,0.0,1008.641389,149.5875,88.16833333,6.561916667,0.650083333,237.99939986666672 +2016-08-04 09:00:00,0.0,1008.6919439999999,243.4966667,74.8425,9.0075,1.182083333,238.00178780000002 +2016-08-04 10:00:00,0.0,1008.4736109999999,244.5,72.70083333,9.873333333,0.77025,238.00138980000006 +2016-08-04 11:00:00,0.0,1008.04,257.4916667,63.08583333,10.11083333,1.523916667,238.00258378333334 +2016-08-04 12:00:00,0.0,1007.665556,372.075,61.31083333,11.27416667,1.8374166669999998,238.00079283333335 +2016-08-04 13:00:00,0.0,1007.182778,377.96666669999996,61.255,11.745,1.5155,238.00099183333336 +2016-08-04 14:00:00,0.0,1006.8152779999999,299.8166667,56.7675,11.675,1.3608333330000002,238.00218576666668 +2016-08-04 15:00:00,0.0,1006.474167,234.31666669999998,51.84833333,11.87583333,0.99,238.0073596 +2016-08-04 16:00:00,0.0,1006.040833,160.2333333,53.51666667,11.80916667,1.154916667,238.00795659999997 +2016-08-04 17:00:00,0.0,1005.9675,94.6875,60.06166667,10.79916667,2.15,238.00994653333336 +2016-08-04 18:00:00,0.0,1006.2338890000001,25.99,64.07833333,10.14333333,1.1786666670000001,238.01293141666667 +2016-08-04 19:00:00,0.0,1006.500278,2.277333333,85.08166667,8.610083333,0.3485,238.01293140000004 +2016-08-04 20:00:00,0.0,1006.6422220000001,0.0,91.975,7.11375,0.2275,238.01512033333336 +2016-08-04 21:00:00,0.0,1006.449444,0.0,94.1,5.697166667,0.177333333,238.0171102666667 +2016-08-04 22:00:00,0.0,1006.5075,0.0,96.80833333,3.360416667,0.330833333,238.01790623333332 +2016-08-04 23:00:00,0.0,1006.2997220000001,0.0,98.39166667,1.607666667,0.111416667,238.01810521666667 +2016-09-04 00:00:00,0.0,1006.031944,0.0,99.925,0.6196666670000001,0.133833333,237.83224546666668 +2016-09-04 01:00:00,0.0,1005.766667,0.0,100.0,-0.059916667,0.027583332999999998,237.83682231666668 +2016-09-04 02:00:00,0.0,1005.4994439999999,0.0,100.0,-0.67725,0.00225,237.8372203 +2016-09-04 03:00:00,0.0,1005.3997220000001,0.0,100.0,-0.882833333,0.058333333,237.84080219999998 +2016-09-04 04:00:00,0.0,1005.366667,0.0,100.0,-1.19025,0.079666667,237.84299111666667 +2016-09-04 05:00:00,0.0,1005.2075,0.825333333,100.0,-1.5694166669999998,0.000166667,237.84657298333332 +2016-09-04 06:00:00,0.0,1005.1919439999999,18.55475,100.0,-1.154416667,0.0,237.846175 +2016-09-04 07:00:00,0.0,1005.3758330000001,78.10333333,100.0,2.1519999999999997,0.037916667,237.84677198333335 +2016-09-04 08:00:00,0.0,1005.475,141.4091667,87.925,5.653166667000001,0.43841666700000004,237.85214481666662 +2016-09-04 09:00:00,0.0,1005.3325,232.8733333,79.67666667,7.422000000000001,0.9545,237.85373674999997 +2016-09-04 10:00:00,0.0,1005.0575,471.15833330000004,66.28833333,10.56333333,0.738833333,237.85433371666667 +2016-09-04 11:00:00,0.0,1004.665833,534.5583333000001,52.32833333,13.22916667,0.956333333,237.85672163333334 +2016-09-04 12:00:00,0.0,1004.1902779999999,488.86666669999994,47.7275,14.16833333,1.733333333,237.85692066666664 +2016-09-04 13:00:00,0.0,1003.807222,485.34166669999996,44.715,14.9425,1.4929166669999998,237.85632368333333 +2016-09-04 14:00:00,0.0,1003.431667,287.1166667,46.29083333,14.8875,1.23,237.85711963333333 +2016-09-04 15:00:00,0.0,1003.041944,170.2333333,48.49666667,14.53916667,1.56725,237.85891059999997 +2016-09-04 16:00:00,0.0,1003.0838890000001,100.2425,51.93333333,13.08083333,1.4736666669999998,237.85990556666664 +2016-09-04 17:00:00,0.0,1003.400833,47.73583333,55.37416667,12.19083333,1.46875,237.86010453333336 +2016-09-04 18:00:00,0.0,1003.7677779999999,38.06916667,58.73333333,11.8975,1.70625,237.8646813833333 +2016-09-04 19:00:00,0.0,1004.3102779999999,3.5558333330000003,66.60416667,10.58833333,1.8228333330000002,237.86647233333338 +2016-09-04 20:00:00,0.0,1004.725,0.0,72.99,8.389916667,1.876416667,237.86826326666664 +2016-09-04 21:00:00,0.0,1004.801111,0.0,80.07166667,7.5789166670000006,0.511916667,237.8692582 +2016-09-04 22:00:00,0.0,1005.2422220000001,0.0,76.7975,9.316666667,0.730833333,237.86985521666668 +2016-09-04 23:00:00,0.0,1005.283333,0.0,87.29166667,8.375833333,0.2395,237.8722431333333 +2016-10-04 00:00:00,0.0,1005.509167,0.0,90.875,7.765916667000001,0.0030833329999999997,237.94730570000002 +2016-10-04 01:00:00,0.0,1005.6925,0.0,91.38333333,7.968666667000001,0.650166667,237.94801755 +2016-10-04 02:00:00,0.0,1005.766667,0.0,92.71666667,7.7885,0.6955,237.94845098333337 +2016-10-04 03:00:00,0.0,1006.059167,0.0,88.79166667,7.60525,0.291333333,237.94750185 +2016-10-04 04:00:00,0.0,1006.1663890000001,0.0,94.94166667,7.247166667,0.194083333,237.9479606 +2016-10-04 05:00:00,0.0,1006.266944,0.35233333299999997,96.94166667,6.935166667000001,0.08575,237.94667291666667 +2016-10-04 06:00:00,0.0,1006.384722,16.77091667,97.975,6.827666667000001,0.07875,237.94727721666666 +2016-10-04 07:00:00,0.0,1006.9522220000001,80.15083333,92.975,8.048833333,0.037916667,237.94553714999998 +2016-10-04 08:00:00,0.0,1007.534167,152.675,74.9875,10.71583333,0.805333333,237.94540268333333 +2016-10-04 09:00:00,0.0,1007.850833,249.68333330000002,69.50666667,12.12083333,1.476083333,237.94408815 +2016-10-04 10:00:00,0.0,1008.05,441.61666669999994,65.23083333,13.64,1.25875,237.9455497833333 +2016-10-04 11:00:00,0.0,1008.1833330000001,531.9166667,62.6275,14.16166667,1.6008333330000002,237.94555611666667 +2016-10-04 12:00:00,0.0,1007.9333330000001,563.6916667,60.885,15.11333333,1.8334166669999998,237.94680265 +2016-10-04 13:00:00,0.0,1007.7977779999999,485.3916666999999,56.36083333,16.02916667,1.707583333,237.9464752 +2016-10-04 14:00:00,0.0,1007.307222,341.325,53.2375,16.36166667,2.343,237.94554978333335 +2016-10-04 15:00:00,0.0,1006.983611,192.4,54.875,15.525,1.986666667,237.94436653333332 +2016-10-04 16:00:00,0.0,1007.183889,93.675,57.23416667,14.93916667,1.857,237.94507839999997 +2016-10-04 17:00:00,0.0,1007.284167,96.92666667,56.2925,14.805,1.7521666669999998,237.94485218333332 +2016-10-04 18:00:00,0.0,1007.325,30.56,59.77333333,14.03916667,0.8454166670000001,237.94501198333333 +2016-10-04 19:00:00,0.0,1007.425,2.785916667,70.59583333,12.265,0.107166667,237.94635813333332 +2016-10-04 20:00:00,0.0,1007.516944,0.0,89.04166667,8.581416667000001,0.147083333,237.94636445 +2016-10-04 21:00:00,0.0,1007.8097220000001,0.0,92.01666667,9.900833333,1.266583333,237.94581713333332 +2016-10-04 22:00:00,0.0,1008.469167,0.0,93.75,7.6195,0.451083333,237.94610346666664 +2016-10-04 23:00:00,0.0,1008.908889,0.0,98.825,5.800583333,0.14875,237.94647203333332 +2016-11-04 00:00:00,0.0,1009.225833,0.0,99.825,5.088666667,0.041916667000000005,238.0060614 +2016-11-04 01:00:00,0.0,1009.408333,0.0,99.46666667,3.9779166669999997,0.012916667,238.00840733333334 +2016-11-04 02:00:00,0.0,1009.4575,0.0,99.96666667,2.15075,0.04925,238.0085243666667 +2016-11-04 03:00:00,0.0,1009.241944,0.0,100.0,1.61,0.0005,238.00831241666666 +2016-11-04 04:00:00,0.0,1009.458333,0.0,100.0,1.276666667,0.039666667,238.0055457 +2016-11-04 05:00:00,0.0,1009.417222,1.701416667,100.0,1.30525,0.082416667,238.00476898333338 +2016-11-04 06:00:00,0.0,1009.6427779999999,21.10666667,98.64166667,2.039,0.34375,238.00398125 +2016-11-04 07:00:00,0.0,1010.041944,103.7466667,92.95833333,5.891083332999999,0.937666667,238.00423906666666 +2016-11-04 08:00:00,0.0,1010.0752779999999,140.4825,83.9725,8.12,2.031166667,238.00422323333336 +2016-11-04 09:00:00,0.0,1010.158333,244.38416669999998,72.61,10.85583333,2.0805,238.00424063333332 +2016-11-04 10:00:00,0.0,1009.806667,482.95833330000005,70.31416667,12.275,2.068833333,238.00367591666665 +2016-11-04 11:00:00,0.0,1009.198333,547.2333332999999,67.93416667,13.58583333,2.28775,238.0031713 +2016-11-04 12:00:00,0.0,1008.572222,575.775,61.565,14.7475,1.9949166669999998,238.00255438333332 +2016-11-04 13:00:00,0.0,1007.849722,566.6083332999999,59.28,15.68916667,1.7915,238.00216836666667 +2016-11-04 14:00:00,0.0,1007.523333,518.75,55.45416667,16.8625,1.200333333,238.00198648333333 +2016-11-04 15:00:00,0.0,1006.9811109999999,432.5666666999999,52.43583333,17.45,1.200833333,238.00230125 +2016-11-04 16:00:00,0.0,1006.391667,322.0666667,53.57166667,17.145,1.239416667,238.00401759999997 +2016-11-04 17:00:00,0.0,1006.5752779999999,123.5575,58.33166667,15.82583333,2.5660000000000003,238.00490980000004 +2016-11-04 18:00:00,0.0,1006.6172220000001,53.1,65.39583333,13.73583333,3.89475,238.00452065000002 +2016-11-04 19:00:00,0.0,1007.2525,4.704,73.725,11.35916667,2.81475,238.0061642166667 +2016-11-04 20:00:00,0.0,1007.7172220000001,0.0,83.47,8.565,0.612,238.00549033333337 +2016-11-04 21:00:00,0.0,1007.640833,0.0,94.65833333,6.6775,0.107833333,238.00539698333333 +2016-11-04 22:00:00,0.0,1007.390278,0.0,98.8,4.646,0.302166667,238.00549350000003 +2016-11-04 23:00:00,0.0,1007.1422220000001,0.0,99.85,4.298416667,0.124333333,238.00630974999999 +2016-12-04 00:00:00,0.0,1007.291667,0.0,99.99166667,4.152583333,0.222083333,238.05039668333333 +2016-12-04 01:00:00,0.0,1007.1327779999999,0.0,100.0,3.2966666669999998,0.021666667,238.05016573333333 +2016-12-04 02:00:00,0.0,1006.941111,0.0,100.0,2.67275,0.18025,238.0500455166667 +2016-12-04 03:00:00,0.0,1006.741389,0.0,100.0,3.1926666669999997,0.060583332999999996,238.05043151666666 +2016-12-04 04:00:00,0.0,1006.557778,0.0,100.0,2.3096666669999997,0.07775,238.04890813333336 +2016-12-04 05:00:00,0.0,1006.6763890000001,1.7919999999999998,100.0,2.534916667,0.107083333,238.04869618333336 +2016-12-04 06:00:00,0.0,1007.0675,35.83675,100.0,4.594083333,0.010666667,238.04884015000002 +2016-12-04 07:00:00,0.0,1007.408889,76.5875,99.49166667,6.19675,0.302416667,238.04906951666666 +2016-12-04 08:00:00,2.470082712,1007.608611,61.34,96.14166667,6.8899166670000005,0.255666667,238.04890024999997 +2016-12-04 09:00:00,0.0,1007.633333,111.41583329999999,97.425,7.700083332999999,0.276916667,238.04719656666666 +2016-12-04 10:00:00,0.0,1007.716667,235.2583333,95.25833333,9.4325,1.227166667,238.04683430000003 +2016-12-04 11:00:00,0.0,1007.365833,513.875,87.34166667,12.675,1.8546666669999998,238.04488068333333 +2016-12-04 12:00:00,0.0,1006.9811109999999,308.78333330000004,83.84166667,13.89166667,2.521583333,238.04210609999998 +2016-12-04 13:00:00,0.0,1006.440833,354.9333333,81.79166667,13.97416667,2.503916667,238.04171218333332 +2016-12-04 14:00:00,2.9942252160000002,1005.8822220000001,519.575,75.54583333,14.69583333,1.8926666669999999,238.04016034999998 +2016-12-04 15:00:00,0.0,1005.339445,440.625,66.715,16.34333333,2.687583333,238.04221045 +2016-12-04 16:00:00,0.0,1004.6986109999999,169.9666667,62.81916667,16.06416667,1.9910833330000002,238.04356298333332 +2016-12-04 17:00:00,0.0,1004.4163890000001,77.22416667,65.2675,14.62416667,1.327833333,238.04419256666668 +2016-12-04 18:00:00,0.0,1004.551111,29.45725,73.315,12.83916667,0.7214166670000001,238.04462758333332 +2016-12-04 19:00:00,61.45017811,1004.8822220000001,0.5096666670000001,94.03,10.79666667,1.069416667,238.0446623833333 +2016-12-04 20:00:00,0.0,1004.408333,0.0,100.0,9.13,0.567916667,238.04520178333337 +2016-12-04 21:00:00,0.0,1004.349444,0.0,100.0,7.846083332999999,0.313833333,238.04450261666668 +2016-12-04 22:00:00,0.0,1004.325556,0.0,100.0,7.323333333,0.25875,238.04470035 +2016-12-04 23:00:00,0.0,1004.5675,0.0,100.0,7.15575,0.34483333299999996,238.04310740000003 +2016-04-13 00:00:00,0.0,1004.733333,0.0,100.0,5.69675,0.258583333,238.19290515 +2016-04-13 01:00:00,0.0,1004.432778,0.0,100.0,4.579666667,0.26808333300000003,238.19332305 +2016-04-13 02:00:00,0.0,1004.5075,0.0,100.0,3.1405,0.12666666699999998,238.19186033333335 +2016-04-13 03:00:00,0.0,1004.376389,0.0,100.0,2.4355833330000003,0.15808333300000002,238.19269619999997 +2016-04-13 04:00:00,2.3865511440000002,1004.2825,0.0,100.0,1.867666667,0.165,238.19206929999999 +2016-04-13 05:00:00,0.0,1004.3002779999999,2.47725,100.0,3.302166667,0.167833333,238.18851693333332 +2016-04-13 06:00:00,0.0,1004.440833,27.77,100.0,4.9835,0.23199999999999998,238.18789003333336 +2016-04-13 07:00:00,0.0,1004.1833330000001,66.7475,100.0,5.792999999999999,0.13699999999999998,238.18559148333335 +2016-04-13 08:00:00,0.0,1004.0736109999999,105.025,100.0,7.074083333,0.3585,238.18433771666665 +2016-04-13 09:00:00,0.0,1003.9175,74.7375,100.0,7.5548333329999995,0.71575,238.18433771666665 +2016-04-13 10:00:00,0.0,1003.9330560000001,100.05333329999999,100.0,8.35325,0.70575,238.18600938333336 +2016-04-13 11:00:00,0.0,1004.041944,129.3916667,99.975,9.111666667,0.778166667,238.1853825166667 +2016-04-13 12:00:00,0.0,1003.940833,91.35583333,97.41666667,9.765,0.971666667,238.18580043333336 +2016-04-13 13:00:00,2.578534728,1003.7491669999999,115.06666670000001,94.88333333,10.3375,0.7293333329999999,238.1870542 +2016-04-13 14:00:00,0.0,1003.3755560000001,109.53166670000002,89.4,10.84333333,0.873,238.18789006666665 +2016-04-13 15:00:00,0.0,1003.408333,112.5275,87.84166667,11.50916667,0.615583333,238.18621835000002 +2016-04-13 16:00:00,0.0,1003.5077779999999,63.785,81.5625,11.11166667,1.32975,238.18726316666667 +2016-04-13 17:00:00,0.0,1003.651667,43.26583333,79.67,10.41666667,1.9220833330000002,238.18684525 +2016-04-13 18:00:00,0.0,1004.016667,22.85125,84.125,9.683333333,1.8445,238.18726316666667 +2016-04-13 19:00:00,0.0,1004.2102779999999,1.26125,93.825,9.256666667000001,0.853666667,238.1866362833333 +2016-04-13 20:00:00,0.0,1004.7002779999999,0.0,98.9,8.48,0.32275,238.1887259 +2016-04-13 21:00:00,0.0,1004.968333,0.0,99.075,8.265833333,0.8565,238.18747211666667 +2016-04-13 22:00:00,0.0,1005.4669449999999,0.0,95.475,8.383333333,0.737,238.18809901666665 +2016-04-13 23:00:00,0.0,1005.509167,0.0,96.69166667,8.0125,0.815083333,238.18956173333333 +2016-04-14 00:00:00,0.0,1005.775278,0.0,99.33333333,7.48975,0.453166667,238.18851693333337 +2016-04-14 01:00:00,0.0,1006.1005560000001,0.0,98.33333333,7.69275,1.29275,238.18747213333336 +2016-04-14 02:00:00,0.0,1006.05,0.0,98.625,7.00975,0.6216666670000001,238.18851691666669 +2016-04-14 03:00:00,0.0,1006.2677779999999,0.0,99.675,6.3055833329999995,0.945333333,238.18851693333337 +2016-04-14 04:00:00,0.0,1006.6005560000001,0.0,99.98333333,4.99875,0.584583333,238.18768106666667 +2016-04-14 05:00:00,2.660406096,1007.026667,1.769916667,100.0,5.018,0.794666667,238.18705418333332 +2016-04-14 06:00:00,0.0,1007.350833,38.00416667,100.0,6.740583332999999,0.8909999999999999,238.1849645833333 +2016-04-14 07:00:00,0.0,1007.809167,127.855,97.08333333,8.24,1.107416667,238.18433770000001 +2016-04-14 08:00:00,0.0,1008.427222,137.7666667,93.68333333,9.303333333,0.819583333,238.18162121666668 +2016-04-14 09:00:00,0.0,1008.935,275.3333333,87.25,10.7725,1.110333333,238.18015848333334 +2016-04-14 10:00:00,0.0,1009.0075,469.9833333000001,76.64833333,13.1425,1.037,238.17911365 +2016-04-14 11:00:00,0.0,1009.0,512.9,62.955,15.2,0.91725,238.17869573333329 +2016-04-14 12:00:00,0.0,1008.9247220000001,215.81666669999998,65.91166667,13.52583333,1.6640833330000002,238.17890473333338 +2016-04-14 13:00:00,0.0,1008.815833,353.8166667,56.3375,14.53166667,1.483,238.17827783333334 +2016-04-14 14:00:00,0.0,1008.356389,466.11666669999994,48.7725,16.16166667,1.3435,238.1768150833333 +2016-04-14 15:00:00,0.0,1007.858056,467.85,44.61333333,16.6275,1.48575,238.17744196666663 +2016-04-14 16:00:00,0.0,1007.5902779999999,322.9166667,39.625,16.1075,1.694833333,238.1755613 +2016-04-14 17:00:00,0.0,1007.35,149.55833330000002,50.83833333,15.76166667,1.6045,238.17869575 +2016-04-14 18:00:00,0.0,1007.1325,86.58833333,56.1725,14.14916667,1.57575,238.17806886666668 +2016-04-14 19:00:00,0.0,1006.815833,4.3595,75.2575,11.04166667,1.2339166670000001,238.1795315833334 +2016-04-14 20:00:00,0.0,1006.8744439999999,0.0,91.325,7.956083333,0.40425,238.1784868 +2016-04-14 21:00:00,0.0,1006.3825,0.0,93.7,7.694583333,0.131416667,238.18308393333334 +2016-04-14 22:00:00,0.0,1006.133333,0.0,97.04166667,7.211666667,0.079166667,238.18036745000003 +2016-04-14 23:00:00,0.0,1005.722778,0.0,98.16666667,7.211583332999999,0.032583333,238.18015848333332 +2016-04-15 00:00:00,0.0,1005.24,0.0,98.25,7.548166667,0.082166667,238.18036745000003 +2016-04-15 01:00:00,0.0,1004.4302779999999,0.0,97.4,7.759916667000001,0.05,238.18078540000002 +2016-04-15 02:00:00,0.0,1003.3975,0.0,97.69166667,7.773333332999999,0.3405,238.18141226666668 +2016-04-15 03:00:00,0.0,1002.6061109999999,0.0,95.20833333,8.253333332999999,1.020916667,238.1805764166667 +2016-04-15 04:00:00,0.0,1001.8163890000001,0.0,95.81666667,8.995,1.19925,238.1803674666667 +2016-04-15 05:00:00,2.5055759280000003,1001.606944,0.62775,97.38333333,8.4525,0.666583333,238.17994955000003 +2016-04-15 06:00:00,0.0,1000.906667,9.215,100.0,8.459166667,1.106833333,238.17806886666668 +2016-04-15 07:00:00,2.428834104,1000.750278,25.89166667,96.55833333,9.130833333,0.3345,238.1789047166667 +2016-04-15 08:00:00,3.48108396,1000.884167,115.15333329999999,86.225,11.30916667,2.4540833330000003,238.17660611666668 +2016-04-15 09:00:00,0.0,1001.0666669999999,197.3666667,84.46666667,12.29416667,3.342916667,238.17597925000004 +2016-04-15 10:00:00,0.0,1001.124722,262.9308333,82.16333333,12.75416667,3.228416667,238.17597923333335 +2016-04-15 11:00:00,0.0,1000.949444,292.325,72.90416667,13.85333333,3.749333333,238.17848676666668 +2016-04-15 12:00:00,0.0,1000.849722,324.75,68.3725,14.15083333,4.091083333,238.17493443333333 +2016-04-15 13:00:00,0.0,1000.6077779999999,434.40833330000004,64.32333333,14.96,3.392,238.17535236666663 +2016-04-15 14:00:00,0.0,1000.340833,518.925,52.0,16.21416667,4.4974166669999995,238.17347169999996 +2016-04-15 15:00:00,0.0,1000.1997220000001,454.525,48.4075,16.16583333,4.560416667,238.1724269 +2016-04-15 16:00:00,0.0,999.7477777999999,202.6416667,50.79916667,15.86083333,3.4289166669999998,238.17430755 +2016-04-15 17:00:00,0.0,999.2494444,127.61666670000001,49.58916667,15.97083333,3.32325,238.17535238333335 +2016-04-15 18:00:00,0.0,999.1663889,57.68583333,50.54083333,15.06666667,2.586666667,238.1728448166667 +2016-04-15 19:00:00,0.0,999.0916667000001,7.435,57.86,13.6475,2.1596666669999998,238.17430753333335 +2016-04-15 20:00:00,0.0,999.2925,0.0,71.37833333,11.25666667,1.110666667,238.1730537666667 +2016-04-15 21:00:00,0.0,999.4,0.0,84.43333333,10.1975,1.2106666670000001,238.17368066666666 +2016-04-15 22:00:00,0.0,999.1402777999999,0.0,84.89166667,8.206166667,1.02375,238.17326275000002 +2016-04-15 23:00:00,0.0,998.9747222000001,0.0,81.80833333,10.0775,1.214083333,238.17117313333333 +2016-04-16 00:00:00,0.0,998.7572222000001,0.0,82.90833333,12.035,1.158166667,238.17200895 +2016-04-16 01:00:00,0.0,998.4255555999999,0.0,82.325,10.83583333,1.523166667,238.17138208333336 +2016-04-16 02:00:00,0.0,998.0058332999998,0.0,92.29166667,10.91333333,2.1065,238.17054621666668 +2016-04-16 03:00:00,0.0,997.6491667000001,0.0,93.975,10.03583333,2.03,238.17138208333333 +2016-04-16 04:00:00,0.0,997.0911110999999,0.0,93.70833333,9.648333333,1.372333333,238.17075521666666 +2016-04-16 05:00:00,0.0,996.9994444,0.6745,93.875,9.9075,1.883666667,238.16950141666666 +2016-04-16 06:00:00,21.17815217,997.0666667000002,12.33641667,95.83333333,9.981666667,1.802416667,238.17159105 +2016-04-16 07:00:00,16.17900497,997.4427777999999,34.865,97.20833333,9.7625,1.7935,238.17159103333336 +2016-04-16 08:00:00,0.0,997.8102777999999,100.2491667,92.975,10.51416667,1.881666667,238.17326271666664 +2016-04-16 09:00:00,0.0,998.2591667000002,139.93333330000002,90.88333333,11.19333333,2.238333333,238.17221793333331 +2016-04-16 10:00:00,3.185400408,998.6597222000001,182.30833330000002,91.275,11.23666667,2.21425,238.17305376666664 +2016-04-16 11:00:00,0.0,998.9341667000001,314.7416667,85.79166667,12.26666667,2.428,238.17347171666665 +2016-04-16 12:00:00,0.0,999.0575,494.8166666999999,77.51583333,13.16916667,2.5645833330000003,238.17284481666664 +2016-04-16 13:00:00,0.0,999.175,513.15,72.7675,14.47416667,3.35975,238.17493445 +2016-04-16 14:00:00,0.0,998.8672222000001,453.3916666999999,66.69416667,14.79,3.197666667,238.17472548333333 +2016-04-16 15:00:00,0.0,998.8658332999998,422.5166666999999,63.65,15.18333333,3.70775,238.17451651666667 +2016-04-16 16:00:00,0.0,998.6666667000002,212.0083333,64.2475,14.525,3.1101666669999997,238.17597924999998 +2016-04-16 17:00:00,0.0,998.8919444,92.39333333,67.93333333,14.04083333,2.7926666669999998,238.17368066666666 +2016-04-16 18:00:00,0.0,999.5447222999999,16.22116667,81.51333333,11.51,1.900166667,238.17263588333333 +2016-04-16 19:00:00,0.0,1000.126389,1.4630833330000002,94.65833333,9.526666667,0.7435,238.17117313333335 +2016-04-16 20:00:00,2.52870012,1000.274167,0.0,96.78333333,9.1425,0.2275,238.1713821 +2016-04-16 21:00:00,9.605860296,1000.190556,0.0,98.925,9.053333333,0.028916667000000004,238.17305380000002 +2016-04-16 22:00:00,7.21560996,999.7583332999999,0.0,99.825,8.835833333,0.081,238.17388961666666 +2016-04-16 23:00:00,50.46082301,999.8927777999999,0.0,100.0,8.614166667000001,0.59875,238.17305379999996 +2016-04-17 00:00:00,35.544003000000004,1000.442778,0.0,99.08333333,7.992916667,0.633416667,238.17744198333335 +2016-04-17 01:00:00,38.47106278,1000.624722,0.0,99.44166667,7.58,0.0315,238.18977069999997 +2016-04-17 02:00:00,12.5293043,1000.508611,0.0,99.6,7.285166667,0.525833333,238.20586075000006 +2016-04-17 03:00:00,5.739461256,1000.951667,0.0,97.65833333,6.845916667000001,1.7544166669999999,238.21818951666668 +2016-04-17 04:00:00,0.0,1001.349722,0.0,97.09166667,6.315416667,0.959333333,238.21881638333335 +2016-04-17 05:00:00,0.0,1001.787222,0.6831666670000001,98.175,5.95875,0.686416667,238.21630885000002 +2016-04-17 06:00:00,0.0,1002.668889,16.9975,96.33333333,5.880083332999999,0.9228333329999999,238.21421921666663 +2016-04-17 07:00:00,0.0,1003.626944,41.37333333,93.20833333,6.029333332999999,1.0393333329999999,238.2133833833333 +2016-04-17 08:00:00,0.0,1004.3944439999999,99.46333333,85.88333333,6.57675,0.849916667,238.2106668833333 +2016-04-17 09:00:00,0.0,1005.368333,213.8583333,84.41666667,7.614,1.56075,238.20941310000003 +2016-04-17 10:00:00,0.0,1006.135833,364.84166669999996,78.2125,8.590666667,1.7015,238.20690558333334 +2016-04-17 11:00:00,0.0,1006.809167,312.59166669999996,72.67166667,9.181666667,1.84325,238.20795038333333 +2016-04-17 12:00:00,0.0,1007.1597220000001,481.1083333000001,62.03,9.875833333,1.5979166669999998,238.20774141666666 +2016-04-17 13:00:00,0.0,1007.675833,524.925,55.8925,10.89,1.81275,238.2056517833333 +2016-04-17 14:00:00,0.0,1007.650556,455.275,52.33,11.11083333,2.03525,238.2062786833333 +2016-04-17 15:00:00,0.0,1008.008611,192.3666667,50.90666667,10.9525,1.678333333,238.2050249166667 +2016-04-17 16:00:00,3.376018536,1008.186111,304.1083333,49.22583333,10.83416667,2.6735833330000003,238.20418906666666 +2016-04-17 17:00:00,0.0,1008.8925,169.2275,50.14916667,10.41166667,1.90875,238.20293531666667 +2016-04-17 18:00:00,0.0,1009.576667,117.58666670000001,44.4125,10.675,1.748083333,238.20272635 +2016-04-17 19:00:00,0.0,1010.343333,13.34158333,58.21666667,8.653666667000001,1.084833333,238.20439805 +2016-04-17 20:00:00,0.0,1010.9536109999999,0.0,87.65,5.377000000000001,0.40833333299999997,238.2058608 +2016-04-17 21:00:00,0.0,1012.011389,0.0,92.65,4.0569999999999995,0.5910833329999999,238.2029353 +2016-04-17 22:00:00,0.0,1012.8844439999999,0.0,95.40833333,2.381166667,0.42,238.20168151666667 +2016-04-17 23:00:00,0.0,1013.476389,0.0,97.75833333,1.2215,0.300083333,238.2006367166667 +2016-04-18 00:00:00,0.0,1013.984167,0.0,99.3,0.6495833329999999,0.086,238.19896501666668 +2016-04-18 01:00:00,0.0,1014.192778,0.0,100.0,0.237666667,0.045666667,238.20000985000001 +2016-04-18 02:00:00,0.0,1014.525556,0.0,100.0,-0.538666667,0.004083333,238.1972933333333 +2016-04-18 03:00:00,0.0,1014.700833,0.0,100.0,-0.876583333,0.017166667,238.19562161666667 +2016-04-18 04:00:00,0.0,1014.766389,0.0,100.0,-1.260916667,0.0,238.1947858 +2016-04-18 05:00:00,0.0,1014.7511109999999,4.5338333330000005,100.0,-1.4170833330000001,0.013083333,238.19499476666667 +2016-04-18 06:00:00,0.0,1015.4938890000001,25.64333333,100.0,-0.05925,0.043333332999999995,238.19081551666667 +2016-04-18 07:00:00,0.0,1016.159167,157.6441667,95.10833333,3.495666667,0.1535,238.18809903333332 +2016-04-18 08:00:00,0.0,1016.3672220000001,143.005,81.34583333,6.801,0.5821666670000001,238.18496459999997 +2016-04-18 09:00:00,0.0,1016.666944,288.3566667,69.1325,8.442833333,1.122916667,238.18183018333332 +2016-04-18 10:00:00,0.0,1016.633056,526.8916667,56.45166667,9.945833333,1.58025,238.17869575 +2016-04-18 11:00:00,0.0,1016.3911109999999,527.9666666999999,52.73,11.47583333,1.436333333,238.17994953333334 +2016-04-18 12:00:00,0.0,1016.2830560000001,422.95833330000005,54.645,12.145,1.608416667,238.18015849999998 +2016-04-18 13:00:00,0.0,1016.291667,339.0583333,50.7625,12.78583333,1.99025,238.1789047166667 +2016-04-18 14:00:00,0.0,1016.175,416.34166669999996,48.06333333,13.08416667,2.3801666669999997,238.17765093333333 +2016-04-18 15:00:00,0.0,1016.099444,405.40833330000004,47.25916667,13.69333333,1.719916667,238.1755613 +2016-04-18 16:00:00,0.0,1016.2255560000001,392.7083333,45.16166667,13.0525,2.2625,238.17430753333335 +2016-04-18 17:00:00,0.0,1016.133333,127.51083329999999,46.80916667,12.55583333,1.727333333,238.17597923333335 +2016-04-18 18:00:00,0.0,1016.284167,64.20416667,48.31416667,11.74083333,1.4795833330000001,238.17535235 +2016-04-18 19:00:00,0.0,1016.894167,11.12766667,56.40083333,8.724416667,0.5485,238.17618819999998 +2016-04-18 20:00:00,0.0,1017.71,0.0,85.62083333,5.157833333,0.150333333,238.1784868166667 +2016-04-18 21:00:00,0.0,1018.3019449999999,0.0,92.40833333,3.6955,0.071916667,238.17806886666662 +2016-04-18 22:00:00,0.0,1018.716667,0.0,93.75,2.4595,0.10258333300000001,238.17639716666667 +2016-04-18 23:00:00,0.0,1018.8927779999999,0.0,97.35833333,2.179666667,0.061833333,238.17785990000002 +2016-04-19 00:00:00,0.0,1019.167222,0.0,93.58333333,3.953083333,0.004166667,238.17514338333334 +2016-04-19 01:00:00,0.0,1019.308889,0.0,76.15166667,5.768416667,0.091916667,238.17221793333331 +2016-04-19 02:00:00,0.0,1019.575,0.0,75.67333333,6.428,0.238833333,238.1713821 +2016-04-19 03:00:00,0.0,1019.641944,0.0,77.16666667,6.72425,0.48316666700000005,238.16950143333335 +2016-04-19 04:00:00,0.0,1019.700556,0.0,79.15333333,6.77225,0.617583333,238.16929248333335 +2016-04-19 05:00:00,0.0,1020.059167,1.316583333,79.66083333,6.722916667000001,0.5708333329999999,238.16908351666666 +2016-04-19 06:00:00,0.0,1020.293333,41.0845,80.91666667,6.748333333,1.2335,238.16929248333338 +2016-04-19 07:00:00,0.0,1020.7088890000001,104.445,79.6075,7.363416667,1.66875,238.16553113333336 +2016-04-19 08:00:00,0.0,1020.9925,125.36666670000001,77.485,8.0465,1.5935833330000002,238.16448635000003 +2016-04-19 09:00:00,2.693258016,1021.2175,174.275,78.3625,8.553333333,1.640916667,238.16553116666668 +2016-04-19 10:00:00,0.0,1021.550833,149.845,77.09083333,9.095,1.4880000000000002,238.16532221666662 +2016-04-19 11:00:00,0.0,1021.523611,411.03333330000004,71.54083333,10.5475,2.072083333,238.16394301999998 +2016-04-19 12:00:00,0.0,1021.2422220000001,100.4858333,68.5175,10.82083333,0.8061666670000001,238.16596600000003 +2016-04-19 13:00:00,0.0,1021.3661109999999,161.9375,68.0375,11.24083333,1.33775,238.1668108166667 +2016-04-19 14:00:00,0.0,1021.4637880000001,236.7583333,59.9625,12.01083333,1.92375,238.16529015000003 +2016-04-19 15:00:00,0.0,1021.0317220000001,176.3666667,58.3375,12.20666667,1.442916667,238.17137283333332 +2016-04-19 16:00:00,0.0,1020.866667,106.24583329999999,60.1775,12.08,2.7125,238.16968318333338 +2016-04-19 17:00:00,0.0,1020.9416669999999,111.8475,58.72666667,11.99916667,2.36125,238.16900735000002 +2016-04-19 18:00:00,0.0,1020.9508060000001,46.595,61.56166667,11.38583333,1.272666667,238.16934526666668 +2016-04-19 19:00:00,0.0,1021.297306,7.89125,76.99333333,9.399083333,0.41433333299999997,238.170528 +2016-04-19 20:00:00,0.0,1021.9373609999999,0.0005,91.925,7.683916667,0.26075,238.17019006666666 +2016-04-19 21:00:00,0.0,1022.452417,0.0,94.54166667,6.1544166670000005,0.206333333,238.17019006666666 +2016-04-19 22:00:00,0.0,1022.830639,0.0,96.85,4.342083333,0.069916667,238.1703590333333 +2016-04-19 23:00:00,0.0,1023.462361,0.0,98.30833333,3.3948333330000002,0.00225,238.16850045 +2016-04-20 00:00:00,0.0,1023.943278,0.0,99.16666667,1.973583333,0.090333333,238.17086595 +2016-04-20 01:00:00,0.0,1024.150806,0.0,99.85,0.922083333,0.0048333329999999996,238.1691763 +2016-04-20 02:00:00,0.0,1024.377417,0.0,100.0,0.34666666700000004,0.0,238.16951421666667 +2016-04-20 03:00:00,0.0,1024.332528,0.0,100.0,-0.161916667,0.02475,238.17086593333332 +2016-04-20 04:00:00,0.0,1024.434139,0.0,100.0,-1.002416667,0.00075,238.1696831666667 +2016-04-20 05:00:00,0.0,1024.814778,4.842333333,100.0,-1.2319166670000001,0.0005,238.17069696666667 +2016-04-20 06:00:00,0.0,1025.723111,30.64916667,100.0,0.32375,0.045333332999999996,238.16816253333334 +2016-04-20 07:00:00,0.0,1026.363167,185.42833330000002,94.80833333,4.865333333,0.072166667,238.16613498333334 +2016-04-20 08:00:00,0.0,1026.643278,145.6191667,79.26083333,6.579666667000001,1.4125,238.16191088333335 +2016-04-20 09:00:00,0.0,1026.925,311.2608333,72.7675,7.869333332999999,1.149583333,238.16039021666668 +2016-04-20 10:00:00,0.0,1026.648389,536.4333333000001,67.83,9.240833333,1.095333333,238.16089710000003 +2016-04-20 11:00:00,0.0,1026.176889,599.575,63.85833333,10.43666667,1.68,238.1597143666667 +2016-04-20 12:00:00,0.0,1025.724195,628.875,53.76416667,11.54166667,1.47425,238.16022123333335 +2016-04-20 13:00:00,0.0,1025.420167,616.125,47.0025,12.67166667,1.280916667,238.15988331666668 +2016-04-20 14:00:00,0.0,1025.131722,570.5166667000001,44.36,13.46583333,1.5685,238.15937643333336 +2016-04-20 15:00:00,0.0,1024.770972,493.49166669999994,38.88,14.35416667,1.32775,238.15853160000003 +2016-04-20 16:00:00,0.0,1024.170167,384.425,36.36666667,14.99416667,1.2405,238.15903850000004 +2016-04-20 17:00:00,0.0,1023.511833,157.8416667,35.7375,14.49666667,1.6498333330000001,238.16039020000002 +2016-04-20 18:00:00,0.0,1022.9817220000001,75.08333333,41.795,13.0475,1.270583333,238.15954538333332 +2016-04-20 19:00:00,0.0,1022.9325279999999,13.17208333,65.67833333,9.566666667,0.034,238.15971435000003 +2016-04-20 20:00:00,0.0,1023.125,0.012666667,85.6675,5.925083333,0.007333333,238.16174193333336 +2016-04-20 21:00:00,0.0,1022.883333,0.0,93.80833333,4.057583333,0.008166666999999999,238.16106606666668 +2016-04-20 22:00:00,0.0,1022.977417,0.0,94.775,3.166583333,0.011166667,238.16072813333335 +2016-04-20 23:00:00,0.0,1023.2,0.0,96.74166667,2.6503333330000003,0.046833333,238.16174193333336 +2016-04-21 00:00:00,0.0,1023.0709720000001,0.0,98.78333333,1.6626666669999999,0.0,238.16089710000003 +2016-04-21 01:00:00,0.0,1022.5185560000001,0.0,99.84166667,0.669583333,0.0,238.16224883333336 +2016-04-21 02:00:00,0.0,1021.9325279999999,0.0,100.0,0.36458333299999995,0.0,238.16174193333336 +2016-04-21 03:00:00,0.0,1021.733333,0.0,100.0,0.030333332999999997,0.0,238.16343156666665 +2016-04-21 04:00:00,0.0,1021.530917,0.002833333,100.0,-0.5628333329999999,0.0,238.16224881666668 +2016-04-21 05:00:00,0.0,1021.331722,6.16025,100.0,-0.8745,0.0,238.16393843333333 +2016-04-21 06:00:00,0.0,1021.452417,31.58666667,100.0,1.33525,0.008,238.16275570000002 +2016-04-21 07:00:00,0.0,1021.7432779999999,193.14583330000002,89.63916667,5.162333333,0.43799999999999994,238.15954536666666 +2016-04-21 08:00:00,0.0,1021.7650560000001,144.19666669999998,77.04,8.025166667,1.516583333,238.15751783333334 +2016-04-21 09:00:00,0.0,1021.5991939999999,305.5,67.49833333,10.515,1.4409999999999998,238.15599716666665 +2016-04-21 10:00:00,0.0,1021.076083,540.6083332999999,59.7475,13.78583333,1.1145,238.15515233333335 +2016-04-21 11:00:00,0.0,1020.379306,606.6416667000001,46.96583333,15.8075,1.22025,238.1544764833333 +2016-04-21 12:00:00,0.0,1019.6435560000001,633.4583332999999,40.94083333,17.04833333,1.2660833329999999,238.15430751666668 +2016-04-21 13:00:00,0.0,1018.976889,624.6916667,39.26916667,17.94583333,1.297083333,238.15312479999997 +2016-04-21 14:00:00,0.0,1018.0352220000001,572.4333333,34.805,19.00416667,0.946416667,238.1529558 +2016-04-21 15:00:00,0.0,1017.209417,495.0583333000001,35.29,19.755,1.023583333,238.15211101666668 +2016-04-21 16:00:00,0.0,1016.376083,390.5083333,37.01,19.99166667,0.58675,238.15194205 +2016-04-21 17:00:00,0.0,1015.5026939999999,165.30833330000002,41.52416667,19.09916667,0.46533333299999996,238.1543075333333 +2016-04-21 18:00:00,0.0,1014.9217779999999,70.5825,48.8275,16.99416667,0.140166667,238.15515234999998 +2016-04-21 19:00:00,0.0,1014.7650560000001,5.800166667,76.96416667,10.56083333,0.4665,238.15616613333336 +2016-04-21 20:00:00,0.0,1014.6908609999999,0.0,87.51666667,7.654083332999999,0.202166667,238.15768680000005 +2016-04-21 21:00:00,0.0,1014.7198890000001,0.0,89.9,6.628666667,0.16899999999999998,238.15819368333334 +2016-04-21 22:00:00,0.0,1014.765861,0.0,92.18333333,6.092166667000001,0.1765,238.15751784999998 +2016-04-21 23:00:00,0.0,1014.9416669999999,0.0,94.30833333,5.45875,0.10216666699999999,238.15802473333335 +2016-04-22 00:00:00,0.0,1014.91075,0.0,93.7,5.4981666670000005,0.10291666699999999,238.15836263333333 +2016-04-22 01:00:00,0.0,1014.9709720000001,0.0,95.55833333,4.9965,0.0,238.15717991666665 +2016-04-22 02:00:00,0.0,1014.869083,0.0,95.64166667,5.6639166670000005,0.0,238.15616613333336 +2016-04-22 03:00:00,0.0,1014.747583,0.0,95.56666667,5.693916667000001,0.011833333,238.15701095 +2016-04-22 04:00:00,0.0,1014.455917,0.0,95.35833333,4.707916667,0.0,238.15853159999998 +2016-04-22 05:00:00,0.0,1014.444083,6.985583332999999,90.975,5.648333332999999,0.10225,238.1561661166667 +2016-04-22 06:00:00,0.0,1014.904833,52.9875,84.76916667,7.31575,1.248666667,238.15430751666668 +2016-04-22 07:00:00,0.0,1015.4448890000001,122.025,76.145,8.123416667,2.4795833330000003,238.1519420666667 +2016-04-22 08:00:00,0.0,1015.440056,188.9083333,73.14833333,8.965,3.3914166669999997,238.15075930000003 +2016-04-22 09:00:00,0.0,1015.4,255.4666667,71.2225,9.299166667,3.420666667,238.15008343333338 +2016-04-22 10:00:00,0.0,1015.2209720000001,287.225,68.22083333,10.37916667,2.667833333,238.14991446666667 +2016-04-22 11:00:00,0.0,1014.56775,518.7083333,62.54916667,12.06666667,2.399333333,238.14923863333334 +2016-04-22 12:00:00,0.0,1013.81425,508.95,59.49583333,12.935,2.584833333,238.14805586666662 +2016-04-22 13:00:00,0.0,1013.3185560000001,613.1166667,53.9325,13.96666667,2.35475,238.14687316666664 +2016-04-22 14:00:00,0.0,1012.348667,440.25833330000006,49.3425,14.83833333,1.262333333,238.14754900000003 +2016-04-22 15:00:00,0.0,1011.495972,391.3916667,48.88,15.69416667,0.96625,238.1492386166667 +2016-04-22 16:00:00,0.0,1010.76775,333.575,45.815,16.8025,0.648166667,238.14805586666662 +2016-04-22 17:00:00,0.0,1010.129306,143.08333330000002,47.30583333,16.1725,0.867416667,238.14856276666669 +2016-04-22 18:00:00,0.0,1009.757528,50.39083333,54.23166667,15.01416667,0.722916667,238.14974549999997 +2016-04-22 19:00:00,0.0,1009.709944,5.44625,61.7225,12.85333333,2.8085,238.1500834333333 +2016-04-22 20:00:00,0.0,1010.051611,0.0,73.97333333,11.56583333,0.83325,238.14957653333332 +2016-04-22 21:00:00,0.0,1010.040861,0.0,83.44166667,10.36666667,0.36908333299999996,238.14991446666667 +2016-04-22 22:00:00,0.0,1009.7317220000001,0.0,86.78333333,9.63,0.315,238.15143515 +2016-04-22 23:00:00,0.0,1009.5285,0.0,82.8,9.510833332999999,0.327,238.14991446666667 +2016-04-23 00:00:00,0.0,1009.1067220000001,0.0,83.06666667,8.429166667,0.072333333,238.1510972333334 +2016-04-23 01:00:00,0.0,1008.6634439999999,0.0,83.00916667,9.110833332999999,0.26766666699999997,238.15194205000003 +2016-04-23 02:00:00,0.0,1008.371778,0.0,72.92333333,8.476666667,1.4649166669999998,238.15160410000007 +2016-04-23 03:00:00,0.0,1008.0217779999999,0.0,76.9025,7.753416667000001,1.84575,238.15177308333332 +2016-04-23 04:00:00,0.0,1007.6317220000001,0.0,82.04666667,6.907166667,1.990083333,238.1524489333333 +2016-04-23 05:00:00,0.0,1007.3801109999999,2.592666667,84.78333333,6.41525,2.031666667,238.15194206666663 +2016-04-23 06:00:00,6.130595736,1007.38575,19.365,90.375,5.678583333,2.142,238.15211101666662 +2016-04-23 07:00:00,14.54501518,1007.625806,43.0925,92.66666667,5.481416667,1.7089166669999998,238.15278686666662 +2016-04-23 08:00:00,16.90281677,1007.4825279999999,71.52083333,95.70833333,4.741083333,2.838166667,238.15295584999998 +2016-04-23 09:00:00,3.101359272,1007.323389,135.2166667,94.34166667,5.056083333,2.6415833330000003,238.15312479999997 +2016-04-23 10:00:00,0.0,1007.494083,162.6516667,92.38333333,5.36075,2.695416667,238.15075929999998 +2016-04-23 11:00:00,0.0,1007.48925,194.93333330000002,85.54166667,6.29275,2.9645,238.15042136666662 +2016-04-23 12:00:00,0.0,1007.3,137.43333330000002,80.9225,6.676833332999999,2.0,238.1504213666667 +2016-04-23 13:00:00,0.0,1007.205917,147.8875,78.75416667,6.4155,2.636,238.1510972166667 +2016-04-23 14:00:00,0.0,1006.830917,212.675,70.34833333,7.587833333,0.7749166670000001,238.15211099999996 +2016-04-23 15:00:00,0.0,1006.666667,145.7191667,61.63666667,7.816416667,3.5173333330000003,238.1497455166667 +2016-04-23 16:00:00,0.0,1006.58925,164.8666667,60.48916667,7.7198333329999995,3.5340833330000003,238.1522799666667 +2016-04-23 17:00:00,0.0,1006.5782220000001,135.88666669999998,57.1725,7.821916667000001,3.172333333,238.15244893333332 +2016-04-23 18:00:00,0.0,1007.047306,46.2125,62.8375,7.0076666670000005,3.71925,238.1521109833334 +2016-04-23 19:00:00,0.0,1007.6215,17.99566667,70.12,5.854666667,1.8526666669999998,238.15244895 +2016-04-23 20:00:00,0.0,1008.4465,0.028166667000000003,78.3775,4.70475,2.0691666669999997,238.1529558166666 +2016-04-23 21:00:00,0.0,1008.88575,0.0,79.11666667,4.189083333,1.11225,238.1522799833333 +2016-04-23 22:00:00,0.0,1009.2706939999999,0.0,85.89166667,2.5379166669999997,0.08491666699999999,238.15278686666667 +2016-04-23 23:00:00,0.0,1009.602417,0.0,91.325,1.97775,0.10641666699999999,238.1544764833333 +2016-04-24 00:00:00,0.0,1009.806722,0.0,98.475,1.366416667,0.08883333300000001,238.15430750000004 +2016-04-24 01:00:00,0.0,1009.640861,0.0,99.30833333,-0.390083333,0.0010833330000000001,238.1544764666667 +2016-04-24 02:00:00,0.0,1009.3983890000001,0.0,99.34166667,-1.2379166670000001,0.000166667,238.1544764833333 +2016-04-24 03:00:00,0.0,1009.247583,0.0,100.0,-1.4539166669999999,0.0165,238.15549026666667 +2016-04-24 04:00:00,0.0,1009.15,0.028166667000000003,97.78333333,-1.954,0.0,238.1543075333333 +2016-04-24 05:00:00,0.0,1008.863444,11.64933333,97.675,-1.707583333,0.0,238.1531248 +2016-04-24 06:00:00,0.0,1008.878222,67.775,95.64166667,0.39433333299999995,0.11525,238.15042138333334 +2016-04-24 07:00:00,0.0,1009.0741939999999,188.4833333,92.275,2.7033333330000002,1.1109166670000001,238.1489007166667 +2016-04-24 08:00:00,0.0,1008.9508060000001,193.2583333,84.91333333,4.252416667,1.72325,238.14839381666664 +2016-04-24 09:00:00,0.0,1008.9416669999999,290.5833333,71.2225,5.338666667,2.057583333,238.14704211666663 +2016-04-24 10:00:00,5.017894944,1008.897583,295.555,70.66666667,4.978666667,2.322333333,238.1461973 +2016-04-24 11:00:00,2.79246096,1008.485222,506.15,71.1475,6.76975,2.010333333,238.14585935 +2016-04-24 12:00:00,0.0,1007.972583,275.135,75.22833333,5.532583333,3.59825,238.14906966666672 +2016-04-24 13:00:00,0.0,1007.41425,449.33333330000005,66.10666667,7.255583333,1.63875,238.14738006666667 +2016-04-24 14:00:00,0.0,1007.1035,341.59166669999996,65.64416667,7.127583333,2.409166667,238.1461973 +2016-04-24 15:00:00,0.0,1006.5666669999999,465.55,63.49833333,7.64225,2.25275,238.1483938166667 +2016-04-24 16:00:00,0.0,1006.766667,350.84166669999996,63.5875,8.102083333,2.51425,238.1477179666667 +2016-04-24 17:00:00,0.0,1006.681722,137.8875,68.24166667,6.275666667,1.7283333330000001,238.1495765666667 +2016-04-24 18:00:00,0.0,1006.998111,60.15666667,69.03833333,5.55275,2.67525,238.15092828333334 +2016-04-24 19:00:00,0.0,1007.344083,16.26533333,77.97083333,4.3395,1.597666667,238.1512662 +2016-04-24 20:00:00,0.0,1007.820694,0.032416667,91.11666667,2.2294166669999997,0.5125,238.15143515 +2016-04-24 21:00:00,0.0,1008.1758060000001,0.0,95.325,1.403083333,0.6881666670000001,238.15075928333331 +2016-04-24 22:00:00,0.0,1008.124194,0.0,94.91666667,0.954916667,0.680333333,238.1512662 +2016-04-24 23:00:00,0.0,1008.269083,0.0,96.30833333,0.558916667,0.62125,238.15261791666663 +2016-04-25 00:00:00,0.0,1008.291667,0.0,97.25833333,0.5375,0.673583333,238.1509282666667 +2016-04-25 01:00:00,0.0,1008.173389,0.0,97.00833333,0.37025,0.689333333,238.1507593166667 +2016-04-25 02:00:00,0.0,1008.132528,0.0,97.54166667,0.942083333,0.9521666670000001,238.1489007 +2016-04-25 03:00:00,0.0,1008.0626390000001,0.0,98.325,1.166,1.0805,238.14788695000001 +2016-04-25 04:00:00,0.0,1007.524194,0.029583333,97.51666667,0.36375,0.43891666700000004,238.14974549999997 +2016-04-25 05:00:00,0.0,1007.5174720000001,6.440666667,96.06666667,1.0120833329999999,0.425833333,238.14771796666665 +2016-04-25 06:00:00,2.60843052,1007.65,39.32583333,96.85833333,1.648916667,1.012833333,238.1482248666667 +2016-04-25 07:00:00,0.0,1007.659944,79.07083333,95.14166667,2.15275,1.432666667,238.1480559 +2016-04-25 08:00:00,0.0,1007.645972,179.1,92.025,3.221333333,2.21825,238.14602833333333 +2016-04-25 09:00:00,0.0,1007.26425,327.0166667,82.955,4.87825,2.03325,238.14670418333333 +2016-04-25 10:00:00,0.0,1006.804306,456.1916666999999,79.37166667,5.665,2.409333333,238.14602833333333 +2016-04-25 11:00:00,0.0,1006.01775,337.45,71.5075,6.220666667000001,2.1510833330000003,238.1461973 +2016-04-25 12:00:00,3.15663576,1005.1244720000001,268.3666667,69.23666667,6.73625,2.644333333,238.14636625000003 +2016-04-25 13:00:00,0.0,1004.5,292.3666667,72.2225,6.6784166670000005,3.03475,238.14738005 +2016-04-25 14:00:00,0.0,1003.882,223.08333330000002,70.50083333,6.979,2.516666667,238.14602833333333 +2016-04-25 15:00:00,0.0,1002.951889,189.16666669999998,71.6025,6.89575,3.215583333,238.14822483333333 +2016-04-25 16:00:00,6.2097375360000004,1002.1078060000001,120.73333329999998,89.24333333,5.1885,2.774833333,238.1502524 +2016-04-25 17:00:00,2.97900684,1000.848667,78.44083333,93.28333333,4.923916667,1.9119166669999998,238.1502524 +2016-04-25 18:00:00,6.357133104,999.4811945,36.85083333,93.65833333,5.013583333,2.111333333,238.15126618333338 +2016-04-25 19:00:00,25.25350675,998.4903332999999,4.252666667,94.75,4.595333333,2.210833333,238.15109721666667 +2016-04-25 20:00:00,9.659590968,997.4776945,0.031,94.875,4.574,2.351583333,238.15228 +2016-04-25 21:00:00,36.65804707,996.54275,0.0,96.075,4.63125,3.181166667,238.15329375000002 +2016-04-25 22:00:00,41.90901754,996.3016111,0.0,97.28333333,4.697083333,2.159166667,238.1548144 +2016-04-25 23:00:00,17.05508419,996.5440832999999,0.0,97.25833333,4.151666667,1.55775,238.15886953333333 +2016-04-26 00:00:00,2.584656072,996.3959722000001,0.0,98.475,3.298083333,0.843,238.16275570000002 +2016-04-26 01:00:00,0.0,995.8158611,0.0,98.975,2.81575,1.091083333,238.16478325000003 +2016-04-26 02:00:00,0.0,996.1174722000001,0.0,98.75833333,2.610416667,1.3405,238.16579703333332 +2016-04-26 03:00:00,2.884900272,996.1666667000002,0.0,97.58333333,2.5885,1.484666667,238.1663039166667 +2016-04-26 04:00:00,0.0,995.9666667000001,0.008,95.84166667,2.2233333330000002,1.3911666669999998,238.16714875000002 +2016-04-26 05:00:00,0.0,996.0932777999999,7.213833332999999,97.28333333,1.682166667,1.442083333,238.16833150000002 +2016-04-26 06:00:00,0.0,996.4798332999999,77.49416667,96.60833333,1.7524166669999999,1.573666667,238.16850043333332 +2016-04-26 07:00:00,0.0,996.8758056,209.5,91.025,3.1125,2.09125,238.1673177 +2016-04-26 08:00:00,0.0,997.0158610999999,164.175,87.225,3.8850833330000003,2.191333333,238.1669798 +2016-04-26 09:00:00,0.0,996.9983889,241.625,77.725,5.034666667,2.728166667,238.16579703333335 +2016-04-26 10:00:00,0.0,996.6408610999999,407.8833333,70.7875,5.86675,3.062583333,238.16697978333335 +2016-04-26 11:00:00,0.0,996.58575,510.33333330000005,67.75416667,7.0460833329999994,3.892,238.16647290000003 +2016-04-26 12:00:00,0.0,996.6709722,413.6416667,67.26416667,6.916583332999999,3.740916667,238.16478325000003 +2016-04-26 13:00:00,0.0,996.3075277999999,453.175,62.83916667,7.494833333,4.109166667,238.16410738333335 +2016-04-26 14:00:00,0.0,996.2626389000001,333.6333333,66.54916667,6.989416667,3.835416667,238.16545910000002 +2016-04-26 15:00:00,28.4857739,996.6421944,142.6266667,81.84083333,4.756,3.434583333,238.16427638333334 +2016-04-26 16:00:00,0.0,996.9258056,192.4525,92.95,4.1290833330000005,3.2335,238.1661349666667 +2016-04-26 17:00:00,3.09818796,996.7408611,126.68333329999999,92.54166667,4.639916667,2.536833333,238.165966 +2016-04-26 18:00:00,0.0,996.9956944,71.16,87.325,5.144666667,1.7345833330000002,238.1651211666667 +2016-04-26 19:00:00,0.0,997.5008056,6.082000000000001,87.89166667,3.81425,0.559916667,238.16579703333335 +2016-04-26 20:00:00,0.0,997.7706944,0.070916667,90.45833333,1.69125,0.176333333,238.1674866666667 +2016-04-26 21:00:00,0.0,997.9900556,0.0,84.36666667,3.0011666669999997,1.00275,238.16512118333333 +2016-04-26 22:00:00,0.0,997.9432777999999,0.0,84.38333333,2.7455,1.848583333,238.16579703333335 +2016-04-26 23:00:00,0.0,998.0690832999999,0.0,84.83333333,2.8725,2.121833333,238.16495220000002 +2016-04-27 00:00:00,0.0,998.1567222000001,0.0,84.41666667,3.094666667,3.20675,238.16292465 +2016-04-27 01:00:00,0.0,998.1016110999999,0.0,88.425,2.3835,2.682666667,238.1646142666667 +2016-04-27 02:00:00,0.0,998.3008056,0.0,92.51666667,2.023083333,2.962916667,238.16545910000002 +2016-04-27 03:00:00,0.0,998.6,0.0,89.19166667,2.4268333330000003,3.665916667,238.16461428333335 +2016-04-27 04:00:00,0.0,998.7698889000001,0.023,86.56666667,2.8271666669999997,4.060666667,238.16444533333333 +2016-04-27 05:00:00,0.0,998.9174722000001,3.2605,86.2,2.941166667,3.802083333,238.16224880000004 +2016-04-27 06:00:00,0.0,999.2215,29.32333333,83.05,3.333583333,4.4254166669999995,238.16123503333336 +2016-04-27 07:00:00,0.0,999.5083332999999,60.86083333,80.49083333,3.69275,4.650666667,238.16174191666667 +2016-04-27 08:00:00,0.0,999.5940832999999,149.01166669999998,78.42916667,4.340666667,4.3775,238.16140400000003 +2016-04-27 09:00:00,0.0,1000.087361,194.525,82.475,4.976333333,3.915,238.16039021666668 +2016-04-27 10:00:00,0.0,1000.7231109999999,143.1583333,90.24166667,4.332916667,3.1965,238.16022123333335 +2016-04-27 11:00:00,0.0,1001.3290279999999,197.79166669999998,90.03333333,5.071583333,3.398583333,238.15751783333334 +2016-04-27 12:00:00,0.0,1001.854833,244.825,88.65,5.482083332999999,3.179666667,238.1565040666666 +2016-04-27 13:00:00,0.0,1002.3215,229.95,83.80833333,6.007083333,2.5773333330000003,238.1551523166667 +2016-04-27 14:00:00,0.0,1002.833333,223.1083333,82.43583333,6.7285833329999996,2.65425,238.15582818333334 +2016-04-27 15:00:00,9.326708616,1003.298917,306.6,82.44166667,7.21175,2.72825,238.15464543333334 +2016-04-27 16:00:00,0.0,1003.9056390000001,221.5,80.46166667,7.52325,2.254083333,238.15363166666666 +2016-04-27 17:00:00,3.1278605760000002,1004.4008060000001,138.08,79.04166667,6.870583333,1.93925,238.15430751666668 +2016-04-27 18:00:00,0.0,1004.729028,74.30416667,84.09666667,6.281416667,1.130916667,238.15481441666665 +2016-04-27 19:00:00,0.0,1005.3481109999999,11.4425,79.94916667,5.6719166670000005,1.208083333,238.1553213 +2016-04-27 20:00:00,0.0,1006.0698890000001,0.083166667,84.35,4.139666667,0.776083333,238.1561661333334 +2016-04-27 21:00:00,0.0,1006.5290279999999,0.0,85.48333333,3.14175,0.985,238.15751785 +2016-04-27 22:00:00,0.0,1006.7599449999999,0.0,85.225,3.4315833330000003,1.153916667,238.1566730333333 +2016-04-27 23:00:00,0.0,1006.842472,0.0,91.35,2.05425,0.733916667,238.15582819999997 +2016-04-28 00:00:00,0.0,1007.21075,0.0,92.84166667,2.66375,1.106833333,238.1548144 +2016-04-28 01:00:00,0.0,1007.466667,0.0,92.98333333,2.329166667,1.109666667,238.15650406666668 +2016-04-28 02:00:00,0.0,1007.502417,0.0,93.90833333,1.8315833330000002,0.921166667,238.1558282 +2016-04-28 03:00:00,0.0,1007.684944,0.0,95.10833333,1.232916667,0.6905,238.1531247833333 +2016-04-28 04:00:00,0.0,1007.919083,0.10433333300000001,94.78333333,1.007833333,1.078916667,238.1538006333333 +2016-04-28 05:00:00,0.0,1008.523111,11.1015,94.44166667,1.2745,0.55425,238.15244891666666 +2016-04-28 06:00:00,0.0,1009.1715,61.13916667,92.64166667,2.732583333,1.249583333,238.15075930000003 +2016-04-28 07:00:00,0.0,1009.829833,132.21916670000002,89.33333333,3.956583333,0.975,238.15075930000003 +2016-04-28 08:00:00,0.0,1010.194083,181.56666669999998,84.73416667,5.15675,1.2219166670000001,238.1499144833334 +2016-04-28 09:00:00,0.0,1010.568278,299.6416667,80.74666667,5.873333333,1.5158333330000002,238.14636626666663 +2016-04-28 10:00:00,0.0,1010.8032220000001,487.6083333000001,73.79,6.769,1.8241666669999999,238.14771795 +2016-04-28 11:00:00,0.0,1010.7801109999999,250.95,66.94083333,6.833833332999999,1.6890833330000001,238.14788695000001 +2016-04-28 12:00:00,0.0,1010.8091390000001,349.4416667,67.27,8.223916667000001,2.0171666669999997,238.1475489833333 +2016-04-28 13:00:00,0.0,1010.491667,526.725,54.22416667,8.81075,1.6398333330000001,238.14873175 +2016-04-28 14:00:00,0.0,1010.522583,505.7,52.1875,9.954166667,1.810583333,238.14636624999994 +2016-04-28 15:00:00,0.0,1010.3408609999999,442.88333330000006,47.29583333,10.66833333,1.579166667,238.14771796666665 +2016-04-28 16:00:00,0.0,1010.225,373.8,43.89083333,11.13416667,1.626333333,238.1461973 +2016-04-28 17:00:00,0.0,1010.367472,175.0291667,43.82833333,10.4325,1.176916667,238.14636626666663 +2016-04-28 18:00:00,0.0,1010.3166669999999,80.18833333,43.90583333,9.658333333,1.185916667,238.1483938166667 +2016-04-28 19:00:00,0.0,1010.51075,16.90641667,64.21083333,6.181916667,0.2175,238.14974551666668 +2016-04-28 20:00:00,0.0,1010.995694,0.11508333300000001,87.43333333,2.56825,0.276666667,238.1502524 +2016-04-28 21:00:00,0.0,1011.4965,0.0,80.07333333,2.830833333,0.325416667,238.14940758333333 +2016-04-28 22:00:00,0.0,1011.826611,0.0,91.94166667,1.677416667,0.1945,238.1482248666667 +2016-04-28 23:00:00,0.0,1011.8567220000001,0.0,96.58333333,0.12716666699999998,0.223333333,238.14856278333332 +2016-04-29 00:00:00,0.0,1011.8241939999999,0.0,98.68333333,-0.84175,0.028916667000000004,238.14974550000002 +2016-04-29 01:00:00,0.0,1011.733333,0.0,99.95,-1.101166667,0.091333333,238.14957653333332 +2016-04-29 02:00:00,0.0,1011.488444,0.0,100.0,-1.6825,0.06725,238.1499145 +2016-04-29 03:00:00,0.0,1011.561556,0.0,100.0,-2.034166667,0.046166667,238.15059033333333 +2016-04-29 04:00:00,0.0,1011.766667,0.134916667,100.0,-1.3986666669999999,0.002166667,238.14704211666665 +2016-04-29 05:00:00,0.0,1011.8174720000001,12.13608333,100.0,-1.414833333,0.005583333,238.1480558833333 +2016-04-29 06:00:00,0.0,1012.08575,65.26166667,99.98333333,-0.43291666700000003,0.001583333,238.14738003333332 +2016-04-29 07:00:00,0.0,1012.422306,109.28333329999998,97.19166667,1.9513333330000002,0.12025,238.14602833333333 +2016-04-29 08:00:00,0.0,1012.6400560000001,136.5083333,91.225,5.022833333,0.38008333299999997,238.14383178333333 +2016-04-29 09:00:00,0.0,1012.641667,153.0166667,83.5275,7.650416667000001,0.722583333,238.1436628166667 +2016-04-29 10:00:00,0.0,1012.68575,321.5833333,56.04,9.879166667,2.7446666669999997,238.1440007333334 +2016-04-29 11:00:00,0.0,1012.6959720000001,349.6833333,54.21583333,10.295,2.754416667,238.14146633333334 +2016-04-29 12:00:00,0.0,1012.5182779999999,306.4,52.4975,11.37583333,2.786166667,238.14163528333333 +2016-04-29 13:00:00,0.0,1012.608333,279.45,50.33833333,11.09166667,2.408083333,238.14095943333334 +2016-04-29 14:00:00,0.0,1012.4983890000001,395.225,48.4225,11.5525,2.57125,238.14146633333334 +2016-04-29 15:00:00,0.0,1012.458333,324.4333333,48.02416667,11.82583333,2.6223333330000003,238.14095943333334 +2016-04-29 16:00:00,0.0,1012.3158609999999,320.7083333,47.7325,12.35666667,2.951833333,238.14062149999998 +2016-04-29 17:00:00,0.0,1012.020972,172.65,48.1225,12.15666667,2.063166667,238.14079046666666 +2016-04-29 18:00:00,0.0,1011.8432779999999,71.91333333,52.1525,10.885,1.5390000000000001,238.14095943333334 +2016-04-29 19:00:00,0.0,1012.075,12.50283333,68.05666667,7.314,0.31225,238.14248009999997 +2016-04-29 20:00:00,0.0,1012.21075,0.11791666699999999,82.34416667,4.418083333,0.11566666699999999,238.14248008333334 +2016-04-29 21:00:00,0.0,1012.2650560000001,0.0,89.6,3.112666667,0.17925,238.14400075000003 +2016-04-29 22:00:00,0.0,1011.955917,0.0,92.28333333,2.3209999999999997,0.159333333,238.14416970000002 +2016-04-29 23:00:00,0.0,1011.95,0.0,97.35833333,1.637083333,0.071416667,238.14332491666664 +2016-04-30 00:00:00,0.0,1011.891667,0.0,99.29166667,0.675083333,0.06383333299999999,238.14433868333333 +2016-04-30 01:00:00,0.0,1011.85,0.0,99.88333333,0.6595,0.067083333,238.14450763333332 +2016-04-30 02:00:00,0.0,1011.8083330000001,0.0,100.0,1.222083333,0.020083333000000002,238.14400078333333 +2016-04-30 03:00:00,0.0,1011.925,0.0,100.0,1.838,0.0115,238.14315593333333 +2016-04-30 04:00:00,0.0,1011.875,0.10291666699999999,99.85,1.9225833330000002,0.0,238.1421422 +2016-04-30 05:00:00,0.0,1011.877417,8.212916667,100.0,1.269666667,0.0,238.14332493333336 +2016-04-30 06:00:00,0.0,1012.327417,41.435,99.61666667,2.703583333,0.012416667,238.14146633333334 +2016-04-30 07:00:00,0.0,1012.576611,117.58333329999999,88.30833333,4.546916667,0.12641666699999998,238.13994565 +2016-04-30 08:00:00,0.0,1012.547583,142.35,83.065,6.525166667000001,0.41100000000000003,238.13893186666667 +2016-04-30 09:00:00,0.0,1012.3924720000001,314.475,78.12666667,9.429166667,0.543416667,238.13724224999999 +2016-04-30 10:00:00,0.0,1012.380917,534.8,59.55083333,12.505,1.02,238.13487676666668 +2016-04-30 11:00:00,0.0,1012.1741939999999,533.1833333000001,54.30833333,14.01166667,1.004583333,238.13403195 +2016-04-30 12:00:00,0.0,1011.806722,170.8666667,55.13666667,14.52166667,1.054583333,238.13622845 +2016-04-30 13:00:00,0.0,1011.8,223.20833330000002,52.47416667,14.51333333,0.7695833329999999,238.13572156666666 +2016-04-30 14:00:00,0.0,1011.865861,325.2333333,58.56583333,13.99416667,2.83,238.13369400000002 +2016-04-30 15:00:00,0.0,1011.78575,400.9166667,57.335,14.19666667,2.861333333,238.13403193333332 +2016-04-30 16:00:00,0.0,1011.9817220000001,153.475,61.64416667,13.37666667,2.6840833330000002,238.13436986666667 +2016-04-30 17:00:00,0.0,1012.0965,106.85833329999998,68.19583333,12.33,3.531333333,238.13521468333332 +2016-04-30 18:00:00,0.0,1012.4682779999999,42.4675,72.02916667,11.24333333,3.183166667,238.13555259999998 +2016-04-30 19:00:00,0.0,1012.779833,11.85441667,75.68916667,9.661666667,3.690583333,238.1343698666667 +2016-04-30 20:00:00,0.0,1013.548917,0.060166667,79.72916667,8.505,2.99325,238.1357215666667 +2016-04-30 21:00:00,3.8951563439999997,1014.1782220000001,0.0,82.44166667,8.04575,3.174583333,238.13656638333336 +2016-04-30 22:00:00,55.97580036,1014.3801109999999,0.0,92.26666667,6.8266666670000005,3.245083333,238.13741119999997 +2016-04-30 23:00:00,23.32400791,1014.2182779999999,0.0,96.225,6.617000000000001,3.449,238.13994565 +2016-01-05 00:00:00,0.0,1014.283333,0.0,94.35833333,6.626666667,3.952,238.11191475 +2016-01-05 01:00:00,0.0,1014.3932779999999,0.0,91.64166667,6.641666667000001,4.001666667,238.11280953333335 +2016-01-05 02:00:00,0.0,1014.7032220000001,0.0,91.15,6.5089999999999995,3.814833333,238.11442009999996 +2016-01-05 03:00:00,0.0,1014.93575,0.0,90.86666667,6.335166667,3.5100833330000003,238.11334639999995 +2016-01-05 04:00:00,0.0,1015.209139,0.057416667000000005,90.325,6.381,2.9761666669999998,238.11280953333335 +2016-01-05 05:00:00,0.0,1015.563167,10.43291667,89.75833333,6.437583332999999,3.216583333,238.11352533333334 +2016-01-05 06:00:00,0.0,1015.979833,41.26333333,89.875,6.725,3.478333333,238.11101998333334 +2016-01-05 07:00:00,3.8260368239999996,1016.6432779999999,75.01,89.24166667,7.27675,3.504083333,238.11191475 +2016-01-05 08:00:00,0.0,1017.004833,136.1583333,87.03333333,8.290583332999999,4.296166667,238.10958835 +2016-01-05 09:00:00,0.0,1017.342472,285.2916667,82.35333333,9.769166667,4.555333333,238.10815673333332 +2016-01-05 10:00:00,0.0,1017.6373609999999,530.2416667,76.72083333,11.52083333,4.321166667,238.10457765 +2016-01-05 11:00:00,0.0,1017.680917,570.2833333,73.50083333,12.8825,4.248666667,238.10368290000005 +2016-01-05 12:00:00,0.0,1017.609139,615.3916667000001,66.95583333,14.375,4.531833333,238.10260918333333 +2016-01-05 13:00:00,0.0,1017.7241939999999,606.4583332999999,62.66166667,15.54916667,4.744333333,238.09240881666668 +2016-01-05 14:00:00,0.0,1017.5174720000001,576.25,58.36333333,16.39583333,4.8260000000000005,238.09903010000002 +2016-01-05 15:00:00,0.0,1017.8889720000001,506.65833330000004,55.53916667,16.86666667,4.39075,238.09974593333334 +2016-01-05 16:00:00,0.0,1018.165056,395.925,55.12416667,16.95666667,4.179166667,238.09903011666665 +2016-01-05 17:00:00,0.0,1018.168278,228.55833330000002,53.715,16.7575,4.227333333,238.09920903333332 +2016-01-05 18:00:00,0.0,1018.61075,76.55833333,55.2975,15.82666667,3.42625,238.09813533333332 +2016-01-05 19:00:00,0.0,1019.1905830000001,19.94608333,61.7575,14.35083333,2.330083333,238.09491414999994 +2016-01-05 20:00:00,0.0,1019.862361,0.1935,71.95583333,12.295,1.480833333,238.0950931333333 +2016-01-05 21:00:00,0.0,1020.202417,0.0,89.15833333,9.552916667,0.5561666670000001,238.09240883333328 +2016-01-05 22:00:00,0.0,1020.369083,0.0,94.76666667,8.0695,0.832833333,238.09008245000004 +2016-01-05 23:00:00,0.0,1020.591667,0.0,97.73333333,8.514416667,0.557666667,238.08990346666667 +2016-02-05 00:00:00,0.0,1020.834944,0.0,99.74166667,6.5120000000000005,0.23175,238.14305261666664 +2016-02-05 01:00:00,0.0,1020.9333330000001,0.0,100.0,5.089916667,0.437333333,238.14251576666666 +2016-02-05 02:00:00,0.0,1020.958333,0.0,100.0,3.616083333,0.242083333,238.1405472666667 +2016-02-05 03:00:00,0.0,1020.875806,0.0,100.0,2.5765,0.233916667,238.13911565000004 +2016-02-05 04:00:00,0.0,1020.897583,0.345416667,100.0,2.056666667,0.208416667,238.13911565 +2016-02-05 05:00:00,0.0,1020.716667,15.44758333,100.0,1.7903333330000002,0.09758333300000001,238.1378629666667 +2016-02-05 06:00:00,0.0,1020.962361,99.88916667,100.0,5.017333333,0.00925,238.13535765000003 +2016-02-05 07:00:00,0.0,1021.1258050000001,231.9666667,91.75833333,9.087,0.68525,238.13338915 +2016-02-05 08:00:00,0.0,1021.0467779999999,152.025,79.46333333,11.26166667,1.231666667,238.13338913333334 +2016-02-05 09:00:00,0.0,1020.738444,358.26916669999997,69.15916667,13.20333333,1.279333333,238.13088378333336 +2016-02-05 10:00:00,0.0,1020.1967779999999,570.4166667000001,60.03166667,15.58416667,1.169083333,238.13142065 +2016-02-05 11:00:00,0.0,1019.584417,631.3416667,49.83666667,16.88666667,1.5408333330000001,238.12873636666666 +2016-02-05 12:00:00,0.0,1018.980111,658.35,45.1275,17.38,1.391583333,238.12730471666669 +2016-02-05 13:00:00,0.0,1018.486833,648.1583333,44.3825,18.1225,1.5495,238.12748366666665 +2016-02-05 14:00:00,0.0,1017.851889,603.15,42.425,18.82166667,1.596916667,238.12551519999997 +2016-02-05 15:00:00,0.0,1017.136833,522.4083333000001,38.8,19.57166667,1.171583333,238.12605204999997 +2016-02-05 16:00:00,0.0,1016.4035,421.34166669999996,38.26,19.575,1.647416667,238.12408358333334 +2016-02-05 17:00:00,0.0,1015.743556,263.0833333,39.86666667,19.6175,1.224416667,238.12533625 +2016-02-05 18:00:00,0.0,1015.0543050000001,78.33333333,42.82916667,19.04,0.6466666670000001,238.12300985000002 +2016-02-05 19:00:00,0.0,1015.05,10.06283333,75.605,11.59583333,0.27475,238.12265195 +2016-02-05 20:00:00,0.0,1015.1623609999999,0.16725,85.3,8.060166667,0.33316666699999997,238.1212203166667 +2016-02-05 21:00:00,0.0,1015.181722,0.0,89.61666667,6.498833332999999,0.050916667,238.12104135 +2016-02-05 22:00:00,0.0,1015.0717779999999,0.0,94.09166667,5.456333333,0.02425,238.12104138333336 +2016-02-05 23:00:00,0.0,1014.85,0.0,96.05,4.747833333,0.140083333,238.1183570666667 +2016-03-05 00:00:00,0.0,1014.66425,0.0,98.49166667,4.5595,0.181333333,238.2225776833333 +2016-03-05 01:00:00,0.0,1014.36425,0.0,96.075,4.748416667,0.161,238.22989136666664 +2016-03-05 02:00:00,0.0,1014.208333,0.0,97.675,4.42575,0.079666667,238.2382498333333 +2016-03-05 03:00:00,0.0,1014.3174720000001,0.0,99.00833333,4.632666667,0.01175,238.2420111 +2016-03-05 04:00:00,0.0,1014.13925,0.5648333329999999,99.75,5.296166667,0.024333333,238.2411753 +2016-03-05 05:00:00,0.0,1013.875,12.21941667,96.95833333,6.166333333,0.16,238.2436828333333 +2016-03-05 06:00:00,0.0,1014.051611,56.27166667,81.825,7.876333333,0.331916667,238.24911583333332 +2016-03-05 07:00:00,0.0,1014.513167,126.76416670000002,80.43916667,10.2625,0.207583333,238.25705638333338 +2016-03-05 08:00:00,0.0,1015.1905830000001,151.66666669999998,77.10666667,12.42,1.381666667,238.26144458333337 +2016-03-05 09:00:00,5.339980272,1015.8766109999999,118.875,88.74166667,10.84166667,2.02125,238.26708653333336 +2016-03-05 10:00:00,5.10006636,1016.276333,84.38083333,94.075,10.285,1.14975,238.27001199999998 +2016-03-05 11:00:00,0.0,1017.0575279999999,281.575,82.74,10.21,3.404583333,238.26980305000004 +2016-03-05 12:00:00,0.0,1017.16075,407.4916667,73.18,11.98416667,3.09525,238.2710568 +2016-03-05 13:00:00,0.0,1017.319083,277.53333330000004,67.12333333,12.355,2.022916667,238.26834033333338 +2016-03-05 14:00:00,0.0,1017.644889,392.0083333,60.4375,12.97833333,3.13675,238.26750448333334 +2016-03-05 15:00:00,0.0,1018.176611,198.95,77.20666667,10.92166667,3.943916667,238.26416108333333 +2016-03-05 16:00:00,0.0,1018.352417,114.99333329999999,66.09333333,11.6125,2.4860833330000003,238.26499691666666 +2016-03-05 17:00:00,0.0,1018.677417,202.64333330000002,61.8675,12.34166667,2.166583333,238.2654148666667 +2016-03-05 18:00:00,0.0,1018.81075,93.8575,63.2975,13.07666667,1.8911666669999998,238.26499691666666 +2016-03-05 19:00:00,0.0,1019.514778,30.52208333,51.06916667,11.41,1.9943333330000002,238.26562378333335 +2016-03-05 20:00:00,0.0,1020.5854720000001,0.367333333,61.62416667,7.29725,0.244583333,238.2622804 +2016-03-05 21:00:00,0.0,1021.597306,0.0,87.84083333,4.635083333,0.182416667,238.2618625 +2016-03-05 22:00:00,0.0,1022.2389720000001,0.0,93.64166667,3.178,0.054000000000000006,238.2622804 +2016-03-05 23:00:00,0.0,1022.694083,0.0,95.81666667,2.789666667,0.26366666699999997,238.26144456666665 +2016-04-05 00:00:00,0.0,1022.977417,0.0,97.825,2.031083333,0.12475,238.27732563333333 +2016-04-05 01:00:00,0.0,1023.108333,0.0,98.6,1.12275,0.039333333,238.27628083333332 +2016-04-05 02:00:00,0.0,1023.2365560000001,0.0,99.68333333,0.348083333,0.01025,238.27481811666664 +2016-04-05 03:00:00,0.0,1023.559944,0.0,100.0,-0.197083333,0.0,238.2746091333333 +2016-04-05 04:00:00,0.0,1023.7266109999999,0.417416667,100.0,-1.0756666670000001,0.00075,238.28401241666666 +2016-04-05 05:00:00,0.0,1024.1723060000002,19.66166667,100.0,-0.317583333,0.002666667,238.28505723333333 +2016-04-05 06:00:00,0.0,1024.7540279999998,126.34333329999998,96.51666667,2.769583333,0.08633333300000001,238.2929978 +2016-04-05 07:00:00,0.0,1025.175805,251.0575,80.41416667,5.7435,0.12116666699999999,238.2940426 +2016-04-05 08:00:00,0.0,1025.4349439999999,148.04166669999998,74.12333333,8.502083333,1.2795,238.29466948333334 +2016-04-05 09:00:00,0.0,1025.491667,388.4141667,70.29416667,9.744166667,1.80675,238.2946694833333 +2016-04-05 10:00:00,0.0,1025.205111,614.325,60.615,11.2425,1.332166667,238.2957143 +2016-04-05 11:00:00,0.0,1024.9717779999999,707.7583333,49.48583333,12.71333333,1.2615,238.2963411833333 +2016-04-05 12:00:00,0.0,1024.4801109999999,720.8166667,42.17916667,13.3175,1.49125,238.2967591 +2016-04-05 13:00:00,0.0,1024.2,661.6583333,41.6825,14.13416667,1.60625,238.29696805 +2016-04-05 14:00:00,0.0,1024.0785,634.975,39.7875,14.39416667,1.7645,238.2978039 +2016-04-05 15:00:00,0.0,1023.621778,562.3083333,38.35,14.62583333,2.180583333,238.29780389999996 +2016-04-05 16:00:00,0.0,1023.258333,398.6416667,37.23,14.85833333,1.7285833330000002,238.30031143333335 +2016-04-05 17:00:00,0.0,1023.097583,188.4833333,41.2125,14.07583333,1.9555,238.31326708333333 +2016-04-05 18:00:00,0.0,1022.984139,90.82083333,39.38916667,13.64,1.277666667,238.3191179833333 +2016-04-05 19:00:00,0.0,1023.125806,26.32725,60.835,9.859083333,0.289916667,238.31828215 +2016-04-05 20:00:00,0.0,1023.166667,0.3725,85.51,4.724,0.045,238.31849113333337 +2016-04-05 21:00:00,0.0,1023.386555,0.0,92.63333333,2.9675,0.033833333,238.31661046666667 +2016-04-05 22:00:00,0.0,1023.600806,0.0,95.38333333,1.7689166669999998,0.004333333,238.31514773333333 +2016-04-05 23:00:00,0.0,1023.675,0.0,97.55,1.03975,0.009333333000000001,238.31472978333332 +2016-05-05 00:00:00,0.0,1023.765861,0.0,98.21666667,0.622083333,0.000666667,238.12135968333337 +2016-05-05 01:00:00,0.0,1023.46425,0.0,99.28333333,-0.04425,0.0,238.12237346666666 +2016-05-05 02:00:00,0.0,1023.3241939999999,0.0,99.725,-0.296666667,0.0,238.12338724999998 +2016-05-05 03:00:00,0.0,1023.1483890000001,0.0,100.0,-0.840833333,0.0,238.12288033333334 +2016-05-05 04:00:00,0.0,1023.0666669999999,0.5658333329999999,100.0,-1.05875,0.0,238.12288034999997 +2016-05-05 05:00:00,0.0,1023.119083,22.62416667,100.0,-0.287583333,0.0016666670000000001,238.12186656666668 +2016-05-05 06:00:00,0.0,1023.4008060000001,128.0425,94.66666667,3.5789999999999997,0.0,238.11967003333336 +2016-05-05 07:00:00,0.0,1023.36425,245.6075,78.0425,6.09725,0.39883333299999996,238.11713560000007 +2016-05-05 08:00:00,0.0,1023.004306,144.6658333,72.64583333,9.456666667,0.6659999999999999,238.1147701166667 +2016-05-05 09:00:00,0.0,1022.436028,375.22333330000004,64.3325,12.91666667,2.148916667,238.1142632 +2016-05-05 10:00:00,0.0,1021.915861,585.4666667,60.54333333,14.71583333,2.12625,238.1134184 +2016-05-05 11:00:00,0.0,1021.276083,646.9416667,59.33583333,15.8675,2.291666667,238.1125736 +2016-05-05 12:00:00,0.0,1020.3935550000001,622.7333332999999,53.93166667,16.55083333,2.55525,238.11291149999997 +2016-05-05 13:00:00,0.0,1019.620167,664.625,50.6575,17.805,2.675833333,238.1118977333333 +2016-05-05 14:00:00,0.0,1018.927695,612.45,47.89083333,18.58333333,2.55725,238.1102080833333 +2016-05-05 15:00:00,0.0,1018.226083,515.25,48.53166667,19.47083333,2.016166667,238.1095322166667 +2016-05-05 16:00:00,0.0,1017.529306,422.00833330000006,45.83416667,19.85,2.152166667,238.10919429999998 +2016-05-05 17:00:00,0.0,1016.81775,258.4916667,45.5325,19.675,1.9405,238.1090253333333 +2016-05-05 18:00:00,0.0,1016.1602220000001,84.98083333,48.47,18.87,1.53725,238.1103770666667 +2016-05-05 19:00:00,0.0,1015.740861,26.76266667,63.42666667,15.67916667,0.36416666700000005,238.1122356833333 +2016-05-05 20:00:00,0.0,1015.68575,0.335333333,88.35,9.5675,0.0895,238.1147701 +2016-05-05 21:00:00,0.0,1015.6959720000001,0.0,94.94166667,7.227333333,0.072333333,238.11544596666667 +2016-05-05 22:00:00,0.0,1015.475806,0.0,98.225,6.110666667,0.0905,238.11730458333332 +2016-05-05 23:00:00,0.0,1015.330111,0.0,99.9,5.172083333,0.07525,238.11679768333337 +2016-06-05 00:00:00,0.0,1015.175,0.0,100.0,4.6384166669999995,0.1235,238.09432553333332 +2016-06-05 01:00:00,0.0,1014.922583,0.0,100.0,4.367,0.231083333,238.0955083 +2016-06-05 02:00:00,0.0,1014.561833,0.0,100.0,3.813583333,0.109083333,238.09466346666667 +2016-06-05 03:00:00,0.0,1013.988444,0.0,100.0,3.3410833330000003,0.094416667,238.09466346666667 +2016-06-05 04:00:00,0.0,1013.68925,1.1178333329999999,100.0,2.820583333,0.09275,238.09314278333332 +2016-06-05 05:00:00,0.0,1013.466667,36.19108333,100.0,3.6565,0.018833333,238.09162213333335 +2016-06-05 06:00:00,0.0,1013.382528,136.42583330000002,97.45,7.639333333,0.15075,238.09027043333336 +2016-06-05 07:00:00,0.0,1013.5174720000001,211.73833330000002,84.81666667,11.085,0.49175,238.08739803333336 +2016-06-05 08:00:00,0.0,1013.4325279999999,148.6625,71.74416667,15.07416667,2.066416667,238.08604635000003 +2016-06-05 09:00:00,0.0,1013.423389,382.2633333,67.94166667,16.81,2.1229166669999997,238.08384981666669 +2016-06-05 10:00:00,0.0,1013.0384439999999,589.6083332999999,65.65416667,17.91166667,3.05275,238.08283603333334 +2016-06-05 11:00:00,0.0,1012.6959720000001,646.6,62.675,19.52,2.484666667,238.08131536666664 +2016-06-05 12:00:00,0.0,1012.036833,674.1583333,55.77,21.00666667,2.264166667,238.08097745 +2016-06-05 13:00:00,0.0,1011.530917,661.5166667000001,50.10333333,22.06416667,2.439833333,238.08182225000004 +2016-06-05 14:00:00,0.0,1011.069361,616.225,42.9925,22.9175,2.426333333,238.07641541666666 +2016-06-05 15:00:00,0.0,1010.53925,504.125,37.8425,23.30083333,2.262833333,238.0745568333333 +2016-06-05 16:00:00,0.0,1010.121778,430.79166669999995,35.16666667,23.3775,1.9818333330000002,238.0745568333333 +2016-06-05 17:00:00,0.0,1009.7693609999999,265.25,37.54416667,22.96,1.5175833330000001,238.07506371666668 +2016-06-05 18:00:00,0.0,1009.197583,75.03666667,48.16,21.60666667,0.8161666670000001,238.0748947666666 +2016-06-05 19:00:00,0.0,1009.241667,16.18558333,75.88083333,15.63,0.030833332999999997,238.07523269999993 +2016-06-05 20:00:00,0.0,1009.320694,0.367333333,88.78333333,10.95416667,0.132,238.07641540000006 +2016-06-05 21:00:00,0.0,1009.5,0.0,92.70833333,8.963333333,0.00275,238.07726025000002 +2016-06-05 22:00:00,0.0,1009.415056,0.0,96.88333333,7.7615,0.0,238.07844296666667 +2016-06-05 23:00:00,0.0,1009.418278,0.0,98.40833333,7.013416667,0.005666666999999999,238.08232913333336 +2016-07-05 00:00:00,0.0,1009.516667,0.0,99.58333333,6.154666667000001,0.0,238.0636747166667 +2016-07-05 01:00:00,0.0,1009.431722,0.0,100.0,5.4850833329999995,0.00041666699999999996,238.06427168333335 +2016-07-05 02:00:00,0.0,1009.249194,0.0,100.0,4.938166667,0.0,238.06486866666668 +2016-07-05 03:00:00,0.0,1009.175,0.0,100.0,4.552916667,0.0,238.06705760000003 +2016-07-05 04:00:00,0.0,1009.133333,0.77375,100.0,4.293083333,0.0,238.06646063333335 +2016-07-05 05:00:00,0.0,1009.252417,35.043,100.0,4.96375,0.0,238.06646061666666 +2016-07-05 06:00:00,0.0,1009.577417,142.7841667,97.4,9.21175,0.0,238.06566465 +2016-07-05 07:00:00,0.0,1009.841667,247.17,78.43333333,12.79416667,0.048333333,238.06566465000003 +2016-07-05 08:00:00,0.0,1009.8432779999999,143.8875,69.43416667,16.02916667,1.234166667,238.06267976666666 +2016-07-05 09:00:00,0.0,1009.802694,380.1983333,60.79083333,18.95166667,0.7978333329999999,238.06148580000004 +2016-07-05 10:00:00,0.0,1009.36425,583.45,52.75666667,21.75166667,1.98,238.06148578333338 +2016-07-05 11:00:00,0.0,1008.880917,644.0083333,45.9525,22.8925,2.366916667,238.0577049 +2016-07-05 12:00:00,0.0,1008.488444,669.45,40.63666667,23.98083333,2.4765,238.055516 +2016-07-05 13:00:00,0.0,1008.077695,661.5416667000001,39.23416667,24.54666667,2.53725,238.05292910000003 +2016-07-05 14:00:00,0.0,1007.657528,589.8166667,37.62166667,25.25333333,2.02575,238.0517351 +2016-07-05 15:00:00,0.0,1007.095167,429.3583333000001,35.9325,25.2575,2.09225,238.05034216666664 +2016-07-05 16:00:00,0.0,1006.715056,350.025,35.035,25.04916667,1.943,238.04795425 +2016-07-05 17:00:00,0.0,1006.5876390000001,284.8833333,32.5375,24.67,1.8294166669999998,238.04894921666667 +2016-07-05 18:00:00,0.0,1006.3516109999999,81.57416667,37.67083333,23.6325,0.9175,238.04676028333336 +2016-07-05 19:00:00,0.0,1006.754833,26.52875,50.0175,19.30916667,0.2335,238.04636230000003 +2016-07-05 20:00:00,0.0,1007.3147779999999,0.682916667,82.9175,12.51583333,0.2275,238.04775525000002 +2016-07-05 21:00:00,0.0,1007.842472,0.0,88.83333333,10.5175,0.21833333300000002,238.0497452 +2016-07-05 22:00:00,0.0,1008.169889,0.0,92.05833333,8.835,0.238833333,238.04914821666668 +2016-07-05 23:00:00,0.0,1008.5965,0.0,95.0,7.542916667,0.26758333300000003,238.04914821666668 +2016-08-05 00:00:00,0.0,1008.833333,0.0,97.65,6.652833332999999,0.10391666699999999,238.01870223333333 +2016-08-05 01:00:00,0.0,1008.967472,0.0,99.14166667,5.884583332999999,0.133083333,238.02109015000005 +2016-08-05 02:00:00,0.0,1008.966667,0.0,99.09166667,5.670333332999999,0.198,238.02327908333334 +2016-08-05 03:00:00,0.0,1008.9416669999999,0.0,99.66666667,5.4299166670000005,0.133,238.02467203333333 +2016-08-05 04:00:00,0.0,1009.152417,0.905416667,99.875,4.941166667,0.068916667,238.0226821 +2016-08-05 05:00:00,0.0,1009.4540279999999,39.46133333,98.275,5.790083332999999,0.056916667000000004,238.0228810666667 +2016-08-05 06:00:00,0.0,1010.004028,142.6308333,84.755,10.02383333,0.31125,238.01989618333334 +2016-08-05 07:00:00,0.0,1010.51075,247.23,67.70666667,14.08833333,0.8181666670000001,238.0187022166667 +2016-08-05 08:00:00,0.0,1010.483333,145.6425,60.44666667,17.04916667,0.6699166670000001,238.01790625 +2016-08-05 09:00:00,0.0,1010.3543060000001,392.4191667,53.22916667,19.90416667,1.809916667,238.01512036666668 +2016-08-05 10:00:00,0.0,1009.7967779999999,601.45,43.01166667,21.81833333,2.306166667,238.01432438333336 +2016-08-05 11:00:00,0.0,1009.371778,663.975,35.52333333,22.51666667,2.9674166669999997,238.01293140000004 +2016-08-05 12:00:00,0.0,1009.1741939999999,689.6916667,35.13833333,23.00583333,3.179833333,238.01193646666664 +2016-08-05 13:00:00,0.0,1008.9543060000001,675.4333333,34.85333333,23.59833333,2.897416667,238.01133948333336 +2016-08-05 14:00:00,0.0,1008.7,629.6666667000001,33.5725,23.95333333,2.98175,238.0059666666667 +2016-08-05 15:00:00,0.0,1008.66425,550.2333332999999,33.12,24.22333333,2.76575,238.0037777166667 +2016-08-05 16:00:00,0.0,1008.4325279999999,439.83333330000005,34.72,24.14166667,2.818333333,237.99999683333337 +2016-08-05 17:00:00,0.0,1008.037639,267.03333330000004,36.08166667,23.725,2.5775,238.00079285000004 +2016-08-05 18:00:00,0.0,1007.852417,86.40833333,39.56583333,22.7875,1.96375,237.99920086666668 +2016-08-05 19:00:00,0.0,1008.344083,34.96208333,47.14416667,20.0825,0.7436666670000001,237.99760893333337 +2016-08-05 20:00:00,0.0,1008.8314439999999,0.863833333,64.51416667,14.87916667,0.05275,237.99760895 +2016-08-05 21:00:00,0.0,1009.5306390000001,0.0,85.38083333,10.4775,0.1365,237.99820590000002 +2016-08-05 22:00:00,0.0,1009.9932779999999,0.0,91.85,9.445,0.21991666699999998,237.99621598333331 +2016-08-05 23:00:00,0.0,1010.208333,0.0,96.03333333,8.350833332999999,0.10191666699999999,237.99442503333333 +2016-09-05 00:00:00,0.0,1010.2182779999999,0.0,98.66666667,7.4645,0.163666667,237.87483004999999 +2016-09-05 01:00:00,0.0,1010.173389,0.0,99.96666667,7.25825,0.3115,237.87582501666665 +2016-09-05 02:00:00,0.0,1010.007528,0.0,100.0,6.59675,0.251,237.87841191666666 +2016-09-05 03:00:00,0.0,1010.092472,0.0,100.0,6.292666667000001,0.307,237.88139681666667 +2016-09-05 04:00:00,0.0,1009.88925,1.039833333,100.0,5.9981666670000005,0.060833332999999996,237.88179481666668 +2016-09-05 05:00:00,0.0,1009.9965,48.63891667,99.89166667,6.8688333329999995,0.1345,237.8833867666667 +2016-09-05 06:00:00,0.0,1010.469083,159.075,86.77083333,11.92916667,0.078333333,237.88537668333333 +2016-09-05 07:00:00,0.0,1010.7766109999999,250.745,74.75916667,14.9825,0.488833333,237.8859736833333 +2016-09-05 08:00:00,0.0,1010.831722,143.2166667,67.9075,18.23583333,1.454833333,237.88398375 +2016-09-05 09:00:00,0.0,1010.597583,395.08416669999997,57.30083333,19.80666667,2.317916667,237.88378473333333 +2016-09-05 10:00:00,0.0,1010.221778,604.175,53.295,21.2,2.404583333,237.8851777 +2016-09-05 11:00:00,0.0,1009.959139,654.15,46.765,22.23416667,2.978583333,237.88617266666665 +2016-09-05 12:00:00,0.0,1009.936833,651.825,43.69916667,23.12916667,3.0239999999999996,237.88557568333337 +2016-09-05 13:00:00,0.0,1009.809944,640.325,41.52083333,23.78916667,2.86,237.88418273333335 +2016-09-05 14:00:00,0.0,1009.71425,619.2333332999999,39.59666667,24.71166667,2.592833333,237.88418275 +2016-09-05 15:00:00,0.0,1009.246778,484.3166666999999,39.17416667,24.93083333,2.548083333,237.88259076666668 +2016-09-05 16:00:00,0.0,1008.8535,305.6916667,39.8925,24.0525,2.10175,237.88179481666666 +2016-09-05 17:00:00,0.0,1008.533333,265.25,41.0175,23.9925,1.5981666669999999,237.87940688333333 +2016-09-05 18:00:00,0.0,1008.469083,78.69166667,46.6525,21.945,0.430166667,237.88020288333334 +2016-09-05 19:00:00,0.0,1008.75,30.79908333,66.42333333,17.68083333,0.107416667,237.8817948 +2016-09-05 20:00:00,0.0,1009.029833,0.687666667,84.52333333,13.33333333,0.11591666699999999,237.88358575000004 +2016-09-05 21:00:00,0.0,1009.293278,0.0,91.85833333,11.25083333,0.163083333,237.88537668333333 +2016-09-05 22:00:00,0.0,1009.405917,0.0,95.525,10.74916667,0.33066666699999997,237.88617266666665 +2016-09-05 23:00:00,0.0,1009.283333,0.0,97.88333333,9.719166667,0.240666667,237.88756560000002 +2016-10-05 00:00:00,0.0,1009.0317220000001,0.0,99.71666667,8.655,0.12783333300000002,237.94552446666668 +2016-10-05 01:00:00,0.0,1008.736833,0.0,100.0,8.139833333,0.13125,237.94512899999998 +2016-10-05 02:00:00,0.0,1008.3900560000001,0.0,99.44166667,9.341666667,0.34483333299999996,237.9453568166667 +2016-10-05 03:00:00,0.0,1008.055917,0.0,93.86666667,9.363333333,0.052333332999999996,237.94594843333334 +2016-10-05 04:00:00,0.0,1007.925,1.86075,86.74166667,9.501666667,0.146166667,237.94618573333332 +2016-10-05 05:00:00,0.0,1007.858333,29.45225,84.7,11.2125,0.35066666700000004,237.9468944166667 +2016-10-05 06:00:00,0.0,1007.7241939999999,142.925,78.75083333,14.27083333,0.204416667,237.9459168 +2016-10-05 07:00:00,0.0,1007.672583,179.1416667,74.91583333,15.9625,0.748416667,237.9447683666667 +2016-10-05 08:00:00,0.0,1007.425,215.6166667,68.98833333,17.78666667,1.99775,237.94531249999997 +2016-10-05 09:00:00,0.0,1007.2535,460.25833330000006,59.495,19.9275,1.6045833330000001,237.94495345000004 +2016-10-05 10:00:00,0.0,1006.8817220000001,577.2416667,53.15,22.07583333,1.2665,237.94523501666666 +2016-10-05 11:00:00,0.0,1006.555917,608.0083333,49.64166667,23.1775,1.5035,237.94406443333332 +2016-10-05 12:00:00,0.0,1006.197583,440.8916666999999,48.015,23.43916667,1.322416667,237.94573805000002 +2016-10-05 13:00:00,0.0,1006.0067220000001,430.45,44.42833333,23.93083333,1.251916667,237.94398218333333 +2016-10-05 14:00:00,0.0,1005.846778,380.35,46.34333333,23.27,1.316916667,237.94211238333332 +2016-10-05 15:00:00,0.0,1005.415056,243.2583333,55.13,22.55583333,1.14225,237.94333516666669 +2016-10-05 16:00:00,0.0,1005.35,169.675,64.18,20.47,1.3460833330000002,237.94333675 +2016-10-05 17:00:00,0.0,1005.342472,132.05,66.77583333,19.85916667,0.606,237.94253318333335 +2016-10-05 18:00:00,0.0,1005.31425,54.7525,74.73916667,19.125,0.277333333,237.94282423333337 +2016-10-05 19:00:00,0.0,1005.0908609999999,9.815666667,80.94083333,17.70083333,0.627583333,237.94119013333332 +2016-10-05 20:00:00,0.0,1005.277417,0.37425,83.2,16.27833333,1.218916667,237.9420728 +2016-10-05 21:00:00,0.0,1005.072583,0.0,93.10833333,14.89583333,0.278416667,237.94258534999997 +2016-10-05 22:00:00,0.0,1005.0341390000001,0.0,99.15,13.9325,0.110666667,237.942549 +2016-10-05 23:00:00,0.0,1005.25,0.0,100.0,12.62833333,0.1705,237.94424948333332 +2016-11-05 00:00:00,0.0,1005.21425,0.0,100.0,11.16166667,0.048,238.00483705 +2016-11-05 01:00:00,0.0,1004.749194,0.0,100.0,9.843333333,0.132833333,238.00578456666668 +2016-11-05 02:00:00,0.0,1004.575,0.0,100.0,8.698333332999999,0.10141666699999999,238.00410935000002 +2016-11-05 03:00:00,0.0,1004.419361,0.0,100.0,8.458333332999999,0.246916667,238.00538908333328 +2016-11-05 04:00:00,0.0,1003.855111,1.2471666670000001,100.0,7.818083333,0.014916667,238.00431026666664 +2016-11-05 05:00:00,0.0,1003.788167,18.33783333,100.0,7.861083333,0.024916667000000003,238.0056928 +2016-11-05 06:00:00,0.0,1004.0,94.49166667,100.0,11.0825,0.11966666699999999,238.00632396666666 +2016-11-05 07:00:00,0.0,1003.91425,231.55,99.475,13.3875,0.3115,238.00585101666664 +2016-11-05 08:00:00,0.0,1003.636833,203.4,87.61666667,17.05,0.47625,238.00641098333335 +2016-11-05 09:00:00,9.23967996,1003.2733890000001,406.65833330000004,78.39416667,19.52333333,1.614,238.00593796666666 +2016-11-05 10:00:00,0.0,1002.9709720000001,487.5166666999999,70.28333333,20.96666667,2.0605,238.00572605000002 +2016-11-05 11:00:00,0.0,1002.497583,575.5,63.08416667,21.89333333,2.5510833330000002,238.00644423333335 +2016-11-05 12:00:00,0.0,1002.077694,538.925,62.6625,21.4925,2.096916667,238.00907488333328 +2016-11-05 13:00:00,0.0,1001.201889,568.65,59.90166667,22.28833333,2.1888333330000003,238.01349621666665 +2016-11-05 14:00:00,0.0,1000.645167,328.0416667,58.955,22.88416667,1.829083333,238.02257461666662 +2016-11-05 15:00:00,0.0,999.9626389,252.9916667,59.28166667,22.60583333,1.6365833330000001,238.03172419999999 +2016-11-05 16:00:00,0.0,999.4951667000001,171.4083333,55.65083333,21.90916667,1.4811666669999999,238.03740156666663 +2016-11-05 17:00:00,0.0,998.9983889,158.7,49.67583333,21.0375,1.80025,238.04078360000003 +2016-11-05 18:00:00,0.0,998.8333332999998,97.30333333,55.10916667,20.84333333,0.63425,238.04356298333335 +2016-11-05 19:00:00,0.0,998.8325277999999,31.18383333,69.34333333,18.37416667,0.139916667,238.04511796666668 +2016-11-05 20:00:00,0.0,998.7317222000001,0.708416667,81.17833333,15.23666667,0.033583333,238.04436341666667 +2016-11-05 21:00:00,0.0,998.4459722000001,0.0,89.825,14.285,0.12916666699999999,238.04385246666666 +2016-11-05 22:00:00,0.0,998.5040277999999,0.0,90.10833333,16.01,0.4695,238.04135941666664 +2016-11-05 23:00:00,0.0,998.3709722000001,0.0,93.50833333,13.875,0.18725,238.04003066666667 +2016-12-05 00:00:00,0.0,998.0559167000001,0.0,95.66666667,11.98916667,0.162916667,238.04256638333334 +2016-12-05 01:00:00,0.0,997.6785,0.0,95.21666667,11.87166667,0.182083333,238.0435804 +2016-12-05 02:00:00,0.0,997.4016111,0.0,83.35833333,11.37916667,0.198,238.04324343333334 +2016-12-05 03:00:00,0.0,997.1301110999999,0.0,81.125,11.865,0.351416667,238.04338581666664 +2016-12-05 04:00:00,0.0,996.8225832999999,1.8605833330000001,81.96666667,10.61666667,0.24875,238.04231804999998 +2016-12-05 05:00:00,0.0,996.5559167000001,20.25833333,81.76666667,11.51916667,0.53325,238.04252843333333 +2016-12-05 06:00:00,0.0,996.6182777999999,80.67083333,81.08333333,12.49666667,0.438833333,238.04237024999998 +2016-12-05 07:00:00,0.0,996.5416667000002,190.7666667,76.81083333,15.07416667,1.877083333,238.04203330000004 +2016-12-05 08:00:00,0.0,996.4833332999999,220.25,68.51166667,17.08583333,3.254333333,238.04249521666665 +2016-12-05 09:00:00,0.0,996.6,363.775,66.14916667,18.3775,2.659166667,238.04232911666668 +2016-12-05 10:00:00,0.0,996.2959722,328.4583333,65.66333333,19.2375,1.9875,238.04093073333334 +2016-12-05 11:00:00,0.0,996.0725832999999,289.40833330000004,67.0,19.77666667,1.83975,238.0390467166667 +2016-12-05 12:00:00,0.0,995.71425,315.65833330000004,65.66583333,19.63583333,1.85125,238.0375123166667 +2016-12-05 13:00:00,0.0,995.5166667000001,384.96666669999996,64.13583333,20.98583333,1.81275,238.0345573666667 +2016-12-05 14:00:00,0.0,995.2725832999998,278.0083333,61.15333333,21.0,2.140333333,238.03341046666665 +2016-12-05 15:00:00,0.0,995.11425,236.7333333,60.99583333,20.975,2.242666667,238.03442763333337 +2016-12-05 16:00:00,0.0,994.9166667000002,337.9416667,61.32416667,21.9425,1.7821666669999998,238.0346491 +2016-12-05 17:00:00,0.0,994.5709722000001,179.54166669999998,60.15916667,21.31083333,1.5375833330000002,238.0352169833333 +2016-12-05 18:00:00,0.0,994.3666667000001,67.945,65.26916667,20.0925,1.8545833330000001,238.03782711666668 +2016-12-05 19:00:00,0.0,994.3233889,30.02583333,77.53583333,19.37416667,1.713416667,238.03697765 +2016-12-05 20:00:00,0.0,994.5639722000001,2.4925,88.1,16.14916667,0.523666667,238.03348483333332 +2016-12-05 21:00:00,0.0,995.01075,0.0,89.34166667,14.83416667,0.6519166670000001,238.03416346666666 +2016-12-05 22:00:00,0.0,995.3258056,0.0,88.5,14.49,0.164833333,238.0330672166667 +2016-12-05 23:00:00,0.0,995.2825277999999,0.0,95.15833333,12.4975,0.435666667,238.03073393333332 +2016-05-13 00:00:00,0.0,995.38575,0.0,98.60833333,10.97166667,0.13375,238.08841183333334 +2016-05-13 01:00:00,0.0,995.4483889,0.0,100.0,10.63416667,0.1435,238.08773598333335 +2016-05-13 02:00:00,0.0,995.5099444,0.0,100.0,9.529166667,0.203916667,238.08976353333335 +2016-05-13 03:00:00,0.0,995.5516111,0.0,100.0,9.089166667,0.193166667,238.09077733333334 +2016-05-13 04:00:00,0.0,995.7591389,1.155916667,100.0,8.340583333,0.16075,238.09145316666664 +2016-05-13 05:00:00,0.0,996.0290277999999,25.59416667,100.0,9.204166667,0.16699999999999998,238.09027043333333 +2016-05-13 06:00:00,0.0,996.4532222000001,64.035,99.99166667,11.07916667,0.135333333,238.09027043333336 +2016-05-13 07:00:00,0.0,996.7932777999999,144.925,91.475,14.75333333,1.311083333,238.08739806666668 +2016-05-13 08:00:00,0.0,996.9774167000002,189.0083333,78.305,16.5325,1.4985,238.08621530000005 +2016-05-13 09:00:00,0.0,997.15,384.71666669999996,69.85583333,18.435,2.011583333,238.0821602 +2016-05-13 10:00:00,0.0,997.2274167000002,522.5666666999999,66.47333333,19.66333333,2.277583333,238.08148433333335 +2016-05-13 11:00:00,0.0,997.2626389000001,640.425,64.77916667,20.61583333,3.677083333,238.07709128333332 +2016-05-13 12:00:00,0.0,997.0916667000001,441.9333333000001,63.95833333,20.92166667,4.306166667,238.07692233333333 +2016-05-13 13:00:00,0.0,996.85,330.6916667,62.80166667,20.6125,3.758333333,238.0764154333333 +2016-05-13 14:00:00,0.0,997.3080556,199.2583333,69.72666667,19.7325,2.9773333330000002,238.0769223 +2016-05-13 15:00:00,2.481989304,997.6916667000002,97.62333333,78.85083333,17.67416667,1.6485833330000002,238.07624646666667 +2016-05-13 16:00:00,5.115790344,997.8567222000001,63.81,85.185,16.55083333,1.26225,238.07996365 +2016-05-13 17:00:00,2.73107808,998.0290277999999,47.52166667,95.50833333,15.5875,0.9311666670000001,238.0811464 +2016-05-13 18:00:00,0.0,998.5381667000001,70.5825,97.16666667,15.72083333,0.571666667,238.0804705666667 +2016-05-13 19:00:00,0.0,999.1706944,65.42916667,91.55833333,16.02166667,0.425416667,238.08013263333336 +2016-05-13 20:00:00,0.0,999.6465,1.799916667,98.30833333,13.6125,0.41633333299999997,238.08300498333335 +2016-05-13 21:00:00,0.0,1000.229028,0.0,100.0,11.79,0.169583333,238.08520153333336 +2016-05-13 22:00:00,0.0,1000.577417,0.0,100.0,10.26333333,0.151416667,238.08587740000004 +2016-05-13 23:00:00,0.0,1000.877417,0.0,100.0,9.498333333,0.15575,238.08621531666668 +2016-05-14 00:00:00,0.0,1001.1841390000001,0.0,100.0,8.89,0.24508333300000001,238.08858080000002 +2016-05-14 01:00:00,0.0,1001.1991939999999,0.0,100.0,7.776333332999999,0.14800000000000002,238.08908768333336 +2016-05-14 02:00:00,0.0,1001.38225,0.0,100.0,6.604916667,0.26375,238.08925663333335 +2016-05-14 03:00:00,0.0,1002.052417,0.0,100.0,7.050666667000001,0.134583333,238.0890876666667 +2016-05-14 04:00:00,0.0,1002.6814439999999,1.373833333,100.0,8.410083333,1.21625,238.08604635000003 +2016-05-14 05:00:00,0.0,1003.648917,27.98583333,98.96666667,8.78,1.46875,238.0843567166667 +2016-05-14 06:00:00,0.0,1004.6330550000001,49.05583333,91.7,8.17075,1.200583333,238.08199123333335 +2016-05-14 07:00:00,3.5809553519999997,1005.2965,126.53333329999998,86.43333333,8.410833333,2.838,238.08283604999997 +2016-05-14 08:00:00,0.0,1005.7682779999999,154.91666669999998,82.70833333,8.7525,3.166583333,238.08283603333334 +2016-05-14 09:00:00,0.0,1006.019889,249.4083333,76.01666667,9.395833332999999,2.6475,238.08182226666668 +2016-05-14 10:00:00,0.0,1006.4373609999999,436.24166669999994,64.81666667,10.56083333,3.4410000000000003,238.08182226666668 +2016-05-14 11:00:00,0.0,1006.870694,591.1666667000001,57.97,11.115,3.87275,238.08097745 +2016-05-14 12:00:00,0.0,1007.1591390000001,665.4666667,53.88666667,11.87,3.693083333,238.0787809 +2016-05-14 13:00:00,0.0,1007.3932779999999,423.95833330000005,52.18416667,11.75166667,4.267166667,238.07742921666667 +2016-05-14 14:00:00,0.0,1007.63575,499.15,51.29916667,11.48916667,3.745083333,238.07742919999998 +2016-05-14 15:00:00,0.0,1007.716667,280.5583333,50.09416667,11.63666667,3.55075,238.07590854999998 +2016-05-14 16:00:00,0.0,1007.944083,107.89583329999999,56.265,10.97666667,3.7475,238.07675335000002 +2016-05-14 17:00:00,0.0,1008.254833,109.50833329999999,59.2025,10.70916667,2.169083333,238.07557063333329 +2016-05-14 18:00:00,0.0,1008.854028,49.98416667,60.08833333,10.14416667,2.64525,238.07641543333332 +2016-05-14 19:00:00,0.0,1009.227417,25.27033333,65.39,9.399166667000001,2.0118333330000002,238.07675336666662 +2016-05-14 20:00:00,0.0,1009.7873609999999,1.009666667,67.45583333,8.675833333,2.6675,238.07726025 +2016-05-14 21:00:00,0.0,1010.50725,0.0,71.96583333,7.41975,1.1935,238.07810505 +2016-05-14 22:00:00,0.0,1010.919083,0.0,76.48666667,6.166666667,1.008416667,238.08030158333335 +2016-05-14 23:00:00,0.0,1011.388167,0.0,80.0475,5.39175,0.649166667,238.0797947 +2016-05-15 00:00:00,0.0,1012.01075,0.0,84.51666667,4.382916667,0.432333333,238.08013261666665 +2016-05-15 01:00:00,0.0,1012.1099439999999,0.0,92.54166667,3.17725,0.303333333,238.08114641666666 +2016-05-15 02:00:00,0.0,1012.369083,0.0,91.75,3.531583333,0.501416667,238.08148434999998 +2016-05-15 03:00:00,0.0,1012.693278,0.0,91.35,4.8005,0.682583333,238.07979469999995 +2016-05-15 04:00:00,0.0,1012.858333,2.3456666669999997,93.11666667,4.3244166669999995,0.666166667,238.08063951666668 +2016-05-15 05:00:00,0.0,1013.0698890000001,22.77166667,91.88333333,4.754,0.631916667,238.08080846666664 +2016-05-15 06:00:00,0.0,1013.656444,55.28666667,92.15833333,5.683333332999999,0.71375,238.07894986666668 +2016-05-15 07:00:00,0.0,1014.091667,191.9833333,87.80833333,6.70325,0.910333333,238.07793608333336 +2016-05-15 08:00:00,0.0,1014.4290279999999,158.93333330000002,82.22916667,7.5221666670000005,1.39475,238.07776715 +2016-05-15 09:00:00,0.0,1014.594083,413.9166667,72.97166667,8.240583333,2.4785,238.07557061666668 +2016-05-15 10:00:00,0.0,1014.7317220000001,429.21666669999996,70.7875,8.21625,2.795833333,238.07320513333332 +2016-05-15 11:00:00,0.0,1014.625,415.25,66.89166667,9.458333332999999,2.313416667,238.07320513333335 +2016-05-15 12:00:00,0.0,1014.532528,511.8916666999999,61.59916667,10.44083333,2.0106666669999997,238.07100861666666 +2016-05-15 13:00:00,0.0,1014.4067220000001,481.09166669999996,56.58583333,10.86666667,3.3079166669999998,238.0694879333333 +2016-05-15 14:00:00,0.0,1014.479028,352.475,56.46916667,11.56666667,2.913583333,238.06948793333333 +2016-05-15 15:00:00,0.0,1014.46425,189.0141667,59.65,10.81166667,1.8459999999999999,238.06965691666664 +2016-05-15 16:00:00,0.0,1014.41425,160.45,60.54666667,10.5675,1.915,238.07067068333333 +2016-05-15 17:00:00,0.0,1014.225,107.685,59.16,10.50583333,1.5230833330000002,238.07236033333334 +2016-05-15 18:00:00,0.0,1014.275,50.72583333,59.62416667,9.760833332999999,1.739,238.07117756666665 +2016-05-15 19:00:00,0.0,1014.563167,26.46666667,66.62666667,9.018333333,0.11916666699999999,238.07219133333334 +2016-05-15 20:00:00,0.0,1014.834139,1.8186666669999998,70.16333333,7.081333333,0.08625,238.07388096666662 +2016-05-15 21:00:00,0.0,1015.077417,0.0,75.59666667,6.504666667,0.211416667,238.07472579999998 +2016-05-15 22:00:00,0.0,1015.345694,0.0,78.42416667,5.457999999999999,0.07200000000000001,238.07472579999998 +2016-05-15 23:00:00,0.0,1015.716667,0.0,79.1125,6.89775,0.321833333,238.07388096666668 +2016-05-16 00:00:00,0.0,1015.632528,0.0,83.825,5.7675,0.35966666700000005,238.07472579999992 +2016-05-16 01:00:00,0.0,1015.496778,0.0,88.71666667,4.3325833330000005,0.29725,238.0754016666666 +2016-05-16 02:00:00,0.0,1015.4016109999999,0.0,89.39166667,5.0120833330000005,0.11658333300000001,238.07573958333327 +2016-05-16 03:00:00,0.0,1015.222583,0.0,91.13333333,5.332166667,0.137666667,238.07641543333332 +2016-05-16 04:00:00,0.0,1015.1483890000001,0.975,88.7,5.552833333,0.133,238.0764154333333 +2016-05-16 05:00:00,0.0,1015.108333,12.47933333,89.0,5.8415,0.236166667,238.07793611666668 +2016-05-16 06:00:00,0.0,1015.08575,65.62416667,88.66666667,6.2595,0.34683333299999997,238.07878091666666 +2016-05-16 07:00:00,0.0,1015.3198890000001,190.3916667,81.43166667,7.70525,0.828,238.0765843833333 +2016-05-16 08:00:00,0.0,1015.4658609999999,215.2166667,69.24666667,8.87575,1.903416667,238.07573958333333 +2016-05-16 09:00:00,0.0,1015.484139,291.225,63.31583333,9.585,1.9445,238.07354303333332 +2016-05-16 10:00:00,0.0,1015.4051109999999,391.71666669999996,59.21,9.784166667000001,1.758833333,238.07219135 +2016-05-16 11:00:00,0.0,1015.115861,335.3333333,52.62583333,10.43833333,2.243666667,238.0728671833334 +2016-05-16 12:00:00,0.0,1015.041667,367.8,50.55,10.985,2.026916667,238.07219134999994 +2016-05-16 13:00:00,0.0,1015.005917,410.8583333,55.2575,10.95,2.717916667,238.0694879333333 +2016-05-16 14:00:00,0.0,1014.622583,248.8416667,57.3,11.45583333,1.737333333,238.07083965 +2016-05-16 15:00:00,0.0,1014.425,431.175,53.25666667,12.7125,1.734,238.06813623333332 +2016-05-16 16:00:00,0.0,1014.408333,290.9166667,52.3575,12.35583333,2.55325,238.0650949 +2016-05-16 17:00:00,0.0,1014.35,140.625,53.23083333,11.8325,1.7621666669999998,238.06762933333331 +2016-05-16 18:00:00,0.0,1014.3983890000001,69.2375,54.15666667,11.30833333,1.246416667,238.06746035 +2016-05-16 19:00:00,0.0,1014.451611,26.52666667,58.48916667,10.80083333,0.8075,238.0683051833333 +2016-05-16 20:00:00,0.0,1014.8198890000001,1.311916667,69.79833333,8.82,0.154,238.06881206666662 +2016-05-16 21:00:00,0.0,1015.06075,0.0,71.90083333,9.005833333,0.24975,238.07050173333334 +2016-05-16 22:00:00,0.0,1015.217472,0.0,74.94,8.410833333,0.050333333,238.07067068333333 +2016-05-16 23:00:00,0.0,1015.369083,0.0,78.46833333,7.904666667000001,0.23475,238.07151548333331 +2016-05-17 00:00:00,0.0,1015.415055,0.0,84.65,7.306833332999999,0.051166667,238.0730361333333 +2016-05-17 01:00:00,0.0,1015.2376390000001,0.0,89.775,6.0055,0.307333333,238.07303615 +2016-05-17 02:00:00,0.0,1015.025,0.0,84.79166667,6.331583332999999,0.519,238.0742189 +2016-05-17 03:00:00,0.0,1014.83925,0.0,85.15,6.720416667,0.122083333,238.0742189 +2016-05-17 04:00:00,0.0,1014.633333,0.5618333329999999,87.44166667,7.2035,0.412083333,238.07438786666663 +2016-05-17 05:00:00,0.0,1014.4741939999999,11.79766667,85.35833333,7.46,0.379333333,238.07438786666663 +2016-05-17 06:00:00,0.0,1014.5424720000001,39.98166667,83.575,7.94125,0.476416667,238.07371199999997 +2016-05-17 07:00:00,0.0,1014.744083,80.0125,81.75416667,8.6975,0.552083333,238.0725292666667 +2016-05-17 08:00:00,0.0,1014.9016109999999,166.70833330000002,77.9725,9.7825,0.711583333,238.07219133333334 +2016-05-17 09:00:00,0.0,1015.100806,186.6166667,75.81833333,10.615,0.9710833329999999,238.07151548333331 +2016-05-17 10:00:00,0.0,1015.0301109999999,279.4166667,72.79583333,11.55416667,1.0085,238.0699948333333 +2016-05-17 11:00:00,0.0,1014.63925,403.65,66.375,12.95583333,1.6899166669999999,238.0689810333333 +2016-05-17 12:00:00,0.0,1014.38925,458.9833333000001,57.49666667,14.13416667,1.4938333330000002,238.06712244999997 +2016-05-17 13:00:00,0.0,1013.9376390000001,283.9416667,54.42916667,14.135,1.536,238.06746038333333 +2016-05-17 14:00:00,0.0,1013.43925,254.3583333,52.69,14.40083333,1.196083333,238.06627765 +2016-05-17 15:00:00,0.0,1013.31425,300.1916667,50.28333333,14.82333333,1.667583333,238.06492593333334 +2016-05-17 16:00:00,0.0,1012.88925,285.3166667,49.61666667,15.08416667,1.862416667,238.06441903333334 +2016-05-17 17:00:00,0.0,1012.3935560000001,152.1416667,50.36916667,14.93833333,1.19475,238.06391213333333 +2016-05-17 18:00:00,0.0,1011.991667,107.07666670000002,52.8125,14.61083333,1.142916667,238.06577073333332 +2016-05-17 19:00:00,0.0,1011.831722,30.63258333,58.60333333,13.40833333,0.7979999999999999,238.0656018 +2016-05-17 20:00:00,0.0,1011.758333,1.2451666670000001,73.2225,12.79916667,1.187416667,238.06678453333333 +2016-05-17 21:00:00,0.0,1011.943278,0.0,68.34,12.97166667,2.2334166669999997,238.06746035 +2016-05-17 22:00:00,0.0,1011.86425,0.0,74.40583333,12.71166667,1.6128333330000002,238.06695346666666 +2016-05-17 23:00:00,0.0,1011.6483890000001,0.0,83.71583333,10.77166667,0.028416667000000003,238.06881206666665 +2016-05-18 00:00:00,0.0,1011.270972,0.0,83.55333333,9.775,0.041666667000000004,238.06982585 +2016-05-18 01:00:00,0.0,1010.9301109999999,0.0,85.49583333,9.435,0.031333333,238.07016378333333 +2016-05-18 02:00:00,0.0,1010.522583,0.0,77.9325,8.9475,0.15925,238.07050171666663 +2016-05-18 03:00:00,0.0,1009.9943609999999,0.0,89.675,8.73,0.052000000000000005,238.07185343333333 +2016-05-18 04:00:00,0.0,1009.532528,0.87775,95.225,8.435833333,0.021166667000000004,238.0740499333333 +2016-05-18 05:00:00,0.0,1009.4067220000001,11.05075,97.875,8.468333333,0.00025,238.0752326833333 +2016-05-18 06:00:00,0.0,1009.5206939999999,34.4425,96.94166667,9.2475,0.033333333,238.07455683333333 +2016-05-18 07:00:00,0.0,1009.505917,79.71166667,91.58333333,10.58666667,0.167333333,238.0725292666667 +2016-05-18 08:00:00,0.0,1009.340056,109.49166670000001,86.13333333,12.05833333,0.318333333,238.0725292666667 +2016-05-18 09:00:00,0.0,1009.122583,267.96666669999996,80.93833333,13.86416667,0.564333333,238.07185341666664 +2016-05-18 10:00:00,2.7214044960000003,1008.7884439999999,314.4416667,66.4325,15.89916667,1.32675,238.0699948333333 +2016-05-18 11:00:00,0.0,1008.118556,478.08333330000005,57.30166667,17.15083333,2.054916667,238.06898103333333 +2016-05-18 12:00:00,0.0,1007.554306,369.475,52.53166667,17.11416667,2.10075,238.00105779999998 +2016-05-18 13:00:00,0.0,1006.895167,386.8583333,54.4675,17.53833333,2.0725833330000003,237.9093107 +2016-05-18 14:00:00,0.0,1006.412639,180.45833330000002,55.7625,17.15583333,1.555333333,237.91066239999998 +2016-05-18 15:00:00,0.0,1005.8967779999999,215.35,56.76416667,17.52333333,1.4205833330000002,237.91268995 +2016-05-18 16:00:00,0.0,1005.258611,278.55,54.15083333,18.08916667,1.95525,237.90964861666666 +2016-05-18 17:00:00,0.0,1004.4435560000001,165.2166667,52.41083333,18.06166667,1.698166667,237.91015548333328 +2016-05-18 18:00:00,0.0,1003.686833,80.71583333,57.525,16.74833333,0.9914166670000001,237.91235203333335 +2016-05-18 19:00:00,0.0,1003.13925,19.2845,74.12416667,14.0675,0.19075,237.91556233333333 +2016-05-18 20:00:00,0.0,1003.11075,0.715833333,85.75833333,12.83666667,0.21525,237.91944848333333 +2016-05-18 21:00:00,0.0,1003.345167,0.0,86.72083333,13.30916667,0.881083333,237.92468638333332 +2016-05-18 22:00:00,0.0,1002.840056,0.0,97.375,11.92583333,0.274166667,237.9272208 +2016-05-18 23:00:00,0.0,1002.472583,0.0,99.73333333,11.13916667,0.1525,237.92941733333336 +2016-05-19 00:00:00,0.0,1002.1634439999999,0.0,100.0,10.38333333,0.12666666699999998,237.9324586666667 +2016-05-19 01:00:00,0.0,1001.883333,0.0,100.0,10.1375,0.198083333,237.93482415000003 +2016-05-19 02:00:00,0.0,1001.6916669999999,0.0,100.0,9.996666667000001,0.0435,237.93566898333336 +2016-05-19 03:00:00,4.8482770319999995,1002.0258060000001,0.0,100.0,10.27166667,0.209,237.93566898333336 +2016-05-19 04:00:00,7.215068304,1002.320694,0.42866666700000006,100.0,10.43666667,0.124583333,237.9373586 +2016-05-19 05:00:00,9.752347512,1002.889778,14.517999999999999,100.0,10.59416667,0.12616666699999998,237.93651378333334 +2016-05-19 06:00:00,2.4050227680000003,1003.673917,40.66833333,99.95833333,11.21,0.068416667,237.93499313333336 +2016-05-19 07:00:00,0.0,1004.5623609999999,46.025,97.71666667,11.1375,0.46766666700000004,237.93583795000004 +2016-05-19 08:00:00,2.476563288,1005.292194,124.79166670000001,96.36666667,11.63833333,0.541416667,237.93685170000003 +2016-05-19 09:00:00,0.0,1006.173917,197.2416667,91.875,12.8175,1.214916667,237.93718963333336 +2016-05-19 10:00:00,0.0,1007.123111,370.8666667,84.81666667,13.97333333,1.204416667,237.93127590000003 +2016-05-19 11:00:00,0.0,1007.8215,625.65,78.4425,14.79916667,1.340833333,237.92806563333332 +2016-05-19 12:00:00,0.0,1008.144889,742.1416667000001,66.76666667,15.59583333,1.828416667,237.9258691 +2016-05-19 13:00:00,0.0,1008.4766109999999,624.3666667,59.82666667,17.15166667,1.3786666669999998,237.92113811666664 +2016-05-19 14:00:00,0.0,1008.4658609999999,418.575,57.70666667,18.20916667,1.315166667,237.9235036 +2016-05-19 15:00:00,0.0,1008.844083,451.775,51.95333333,18.57083333,1.455,237.91944851666665 +2016-05-19 16:00:00,0.0,1008.992472,117.9,57.10916667,18.775,1.124,237.9213070833333 +2016-05-19 17:00:00,0.0,1009.3481109999999,86.76833333,58.27416667,17.29,0.9115,237.92282776666661 +2016-05-19 18:00:00,0.0,1010.1505279999999,58.1325,58.60416667,16.75583333,0.589833333,237.92316569999994 +2016-05-19 19:00:00,0.0,1010.879028,28.07833333,74.46416667,15.73166667,0.225583333,237.9226588 +2016-05-19 20:00:00,0.0,1011.680639,2.2926666669999998,89.90833333,12.0025,0.15891666699999998,237.92485530000002 +2016-05-19 21:00:00,0.0,1012.3532220000001,0.0,95.475,8.914916667,0.24708333300000002,237.92570013333332 +2016-05-19 22:00:00,0.0,1012.6591390000001,0.0,98.49166667,7.318583332999999,0.092833333,237.9277277 +2016-05-19 23:00:00,0.0,1012.716667,0.0,99.775,6.191583333,0.015916667,237.92722081666662 +2016-05-20 00:00:00,0.0,1013.248111,0.0,90.575,5.38025,0.032,237.92637599999998 +2016-05-20 01:00:00,0.0,1013.500806,0.0,92.63333333,4.9408333330000005,0.057416667000000005,237.92417946666663 +2016-05-20 02:00:00,0.0,1013.6908609999999,0.0,92.425,4.857916667,0.168583333,237.92215191666665 +2016-05-20 03:00:00,0.0,1013.2650560000001,0.0,97.75,5.35475,0.178833333,237.92401053333333 +2016-05-20 04:00:00,0.0,1013.9330560000001,1.9904166669999999,99.99166667,5.0315,0.11125,237.92248985 +2016-05-20 05:00:00,0.0,1014.2758060000001,41.96125,100.0,4.407416667,0.05,237.9221519 +2016-05-20 06:00:00,0.0,1014.6981109999999,151.8458333,94.175,8.431916667000001,0.29183333300000003,237.91944849999996 +2016-05-20 07:00:00,0.0,1015.1317220000001,275.8916667,79.24083333,11.74666667,1.133416667,237.91674509999999 +2016-05-20 08:00:00,0.0,1015.18575,163.5916667,74.31416667,14.7525,1.0765833329999999,237.91556233333333 +2016-05-20 09:00:00,0.0,1015.275,394.4166667,71.39666667,16.37416667,1.296333333,237.91353476666666 +2016-05-20 10:00:00,0.0,1015.233333,469.95,69.11166667,17.07333333,1.6879166669999999,237.91116929999998 +2016-05-20 11:00:00,0.0,1014.9491939999999,300.6833333,67.61166667,17.10166667,1.276916667,237.91218308333336 +2016-05-20 12:00:00,0.0,1014.9817220000001,562.6,62.22416667,18.2725,1.746583333,237.90762106666668 +2016-05-20 13:00:00,0.0,1014.891667,460.20833330000005,58.91583333,19.04666667,1.36475,237.90474868333334 +2016-05-20 14:00:00,0.0,1015.0016109999999,165.075,64.12416667,17.975,1.247833333,237.90356595 +2016-05-20 15:00:00,0.0,1015.0233890000001,218.7833333,69.95083333,17.42166667,1.16425,237.90525555 +2016-05-20 16:00:00,0.0,1014.925,254.525,68.87166667,17.49583333,1.373083333,237.9039038666667 +2016-05-20 17:00:00,0.0,1014.774194,112.74,69.65666667,17.125,1.442166667,237.90407283333334 +2016-05-20 18:00:00,0.0,1014.665056,70.35083333,71.66083333,16.945,0.79025,237.9050866 +2016-05-20 19:00:00,0.0,1014.7266109999999,28.0075,80.68333333,15.6875,0.75325,237.90542451666667 +2016-05-20 20:00:00,0.0,1014.959945,2.071916667,88.125,14.6325,0.6104166670000001,237.90677623333332 +2016-05-20 21:00:00,0.0,1015.0491939999999,0.0,91.28333333,13.79583333,0.08,237.90779003333333 +2016-05-20 22:00:00,0.0,1015.0758060000001,0.0,92.00833333,12.58,0.075416667,237.90762106666668 +2016-05-20 23:00:00,0.0,1015.084139,0.0,97.175,10.6275,0.179416667,237.907959 +2016-05-21 00:00:00,0.0,1015.075,0.0,89.66666667,10.5225,0.070416667,237.90779003333333 +2016-05-21 01:00:00,0.0,1014.811833,0.0,96.45833333,9.069166667000001,0.052833332999999996,237.90998654999996 +2016-05-21 02:00:00,0.0,1014.347583,0.0,100.0,8.825833333,0.138333333,237.91235203333335 +2016-05-21 03:00:00,0.0,1014.13575,0.0,100.0,9.305833332999999,0.0275,237.91268996666665 +2016-05-21 04:00:00,0.0,1014.305917,2.980666667,100.0,9.3425,0.139083333,237.91302786666665 +2016-05-21 05:00:00,0.0,1014.369083,36.7375,100.0,9.296666667,0.168083333,237.91268995 +2016-05-21 06:00:00,0.0,1014.592472,67.14,100.0,11.34083333,0.15341666699999998,237.91116926666663 +2016-05-21 07:00:00,0.0,1014.633333,223.85,89.625,14.62916667,0.631916667,237.91032444999996 +2016-05-21 08:00:00,0.0,1014.658333,220.7333333,80.1775,16.73083333,1.3799166669999998,237.9084659 +2016-05-21 09:00:00,0.0,1014.43925,306.3666667,76.0025,17.91416667,1.054833333,237.9069452 +2016-05-21 10:00:00,0.0,1014.1467779999999,346.2583333,72.49833333,18.585,0.797333333,237.90441075 +2016-05-21 11:00:00,0.0,1013.681722,406.175,68.03166667,19.61583333,1.8879166669999998,237.9025521666667 +2016-05-21 12:00:00,0.0,1013.5067220000001,321.6916667,65.3075,19.98,1.561083333,237.90103148333333 +2016-05-21 13:00:00,0.0,1013.3217779999999,551.25,60.7725,20.70583333,1.8945,237.89731430000003 +2016-05-21 14:00:00,0.0,1013.0459720000001,593.875,55.72666667,21.3925,1.93175,237.89494883333336 +2016-05-21 15:00:00,0.0,1012.505917,520.7416667,52.8775,22.6,2.27575,237.89376608333336 +2016-05-21 16:00:00,0.0,1011.843556,349.475,54.85333333,22.35916667,1.7725,237.8935971166666 +2016-05-21 17:00:00,0.0,1011.3575279999999,243.1583333,56.86416667,21.89166667,2.152166667,237.89376608333336 +2016-05-21 18:00:00,0.0,1011.1483890000001,119.04666670000002,59.57083333,21.45416667,1.4925,237.8934281666666 +2016-05-21 19:00:00,0.0,1010.9793050000001,25.71083333,78.22833333,17.47916667,0.195083333,237.8956246666667 +2016-05-21 20:00:00,0.0,1010.801611,1.968833333,91.475,13.2825,0.130333333,237.9000177 +2016-05-21 21:00:00,0.0,1010.654306,0.0,95.71666667,11.76916667,0.266916667,237.90356595000003 +2016-05-21 22:00:00,0.0,1010.346778,0.0,99.53333333,10.10083333,0.091083333,237.90677623333332 +2016-05-21 23:00:00,0.0,1009.7193609999999,0.0,100.0,9.830833333,0.09225,237.90931071666668 +2016-05-22 00:00:00,0.0,1008.826083,0.0,100.0,9.590833332999999,0.047916667,237.9104934333333 +2016-05-22 01:00:00,0.0,1007.9268890000001,0.0,100.0,8.878333332999999,0.10541666699999999,237.91268996666665 +2016-05-22 02:00:00,0.0,1007.390861,0.0,100.0,8.084833332999999,0.08558333300000001,237.91268996666668 +2016-05-22 03:00:00,0.0,1007.270972,0.0,100.0,7.734833332999999,0.1255,237.91336583333336 +2016-05-22 04:00:00,0.0,1006.736833,2.86225,100.0,7.268833333,0.12125,237.91590023333333 +2016-05-22 05:00:00,0.0,1006.467472,58.61416667,100.0,8.334583333,0.026666667,237.91539336666665 +2016-05-22 06:00:00,0.0,1006.274194,149.47916669999998,97.85,11.4025,0.318083333,237.91218306666667 +2016-05-22 07:00:00,0.0,1006.255917,261.3716667,82.93166667,17.18583333,2.444833333,237.91184513333334 +2016-05-22 08:00:00,0.0,1005.8293060000001,201.55833330000002,68.29166667,19.12166667,2.141833333,237.91015549999997 +2016-05-22 09:00:00,0.0,1005.505917,371.1083333,64.67083333,20.99,1.681583333,237.90762105 +2016-05-22 10:00:00,0.0,1005.030917,541.8,62.30833333,23.28166667,2.8405,237.90339698333332 +2016-05-22 11:00:00,0.0,1005.05,684.325,58.12416667,24.67833333,2.10425,237.90001771666667 +2016-05-22 12:00:00,0.0,1004.997583,520.1,55.16083333,24.80916667,1.43625,237.89579363333334 +2016-05-22 13:00:00,0.0,1004.33925,514.1083333,54.5675,25.00083333,1.69075,237.89444191666664 +2016-05-22 14:00:00,0.0,1004.052694,395.4333333,52.95,24.5725,2.1135,237.8908936833333 +2016-05-22 15:00:00,0.0,1003.6916669999999,225.9083333,54.59666667,24.41333333,1.8771666669999998,237.89072474999998 +2016-05-22 16:00:00,0.0,1003.9540279999999,66.75166667,51.80416667,23.53916667,3.160166667,237.88852821666663 +2016-05-22 17:00:00,0.0,1004.252417,57.55666667,53.5125,21.79083333,2.7334166669999997,237.8863316833333 +2016-05-22 18:00:00,6.119775504,1004.8064439999999,17.6075,69.3475,18.72666667,2.05075,237.88295241666665 +2016-05-22 19:00:00,2.45280444,1005.01425,10.74516667,78.42416667,16.31666667,0.782416667,237.88413515000002 +2016-05-22 20:00:00,0.0,1005.113167,0.841166667,74.1875,15.42416667,0.46866666700000004,237.8853179 +2016-05-22 21:00:00,0.0,1005.7349439999999,0.0,65.135,15.89916667,0.49700000000000005,237.8865006333333 +2016-05-22 22:00:00,18.13754899,1005.633333,0.0,81.22833333,14.7475,0.8290833329999999,237.88582476666667 +2016-05-22 23:00:00,18.03470628,1005.5959720000001,0.0,96.80833333,13.82666667,0.6958333329999999,237.88785235 +2016-05-23 00:00:00,5.294237328,1005.612361,0.0,100.0,13.44666667,0.937583333,237.88835925 +2016-05-23 01:00:00,5.595432912000001,1005.4026949999999,0.0,100.0,13.3775,1.336666667,237.88937303333333 +2016-05-23 02:00:00,0.0,1005.0741939999999,0.0,99.65833333,12.89833333,0.7565,237.88886614999998 +2016-05-23 03:00:00,0.0,1004.8209720000001,0.0,98.09166667,12.785,0.537083333,237.49501260000002 +2016-05-23 04:00:00,2.54905884,1004.9465,1.132416667,97.925,12.57083333,0.506083333,237.29681860000002 +2016-05-23 05:00:00,11.11010402,1005.16075,13.62733333,98.83333333,12.68916667,0.988583333,237.29766341666667 +2016-05-23 06:00:00,3.0623572560000003,1005.794889,52.02333333,98.34166667,12.68916667,1.891583333,237.29681861666668 +2016-05-23 07:00:00,0.0,1006.2465,136.975,95.23333333,13.21,1.9231666669999998,237.29766341666667 +2016-05-23 08:00:00,0.0,1006.375,228.8583333,91.80833333,13.82333333,1.8884166669999998,237.29867720000001 +2016-05-23 09:00:00,0.0,1006.477417,158.04166669999998,89.30833333,14.185,1.035,237.29850825000003 +2016-05-23 10:00:00,0.0,1006.669083,218.25,86.51666667,14.7625,1.087583333,237.29800133333333 +2016-05-23 11:00:00,0.0,1007.219083,239.115,82.89,14.98666667,1.051583333,237.29732548333334 +2016-05-23 12:00:00,0.0,1007.419083,200.2225,81.70916667,14.92333333,0.968666667,237.29681858333333 +2016-05-23 13:00:00,0.0,1007.625,244.3666667,77.85583333,15.80416667,0.9125833329999999,237.29529795 +2016-05-23 14:00:00,0.0,1007.540861,410.78333330000004,71.9375,16.47333333,1.3461666669999999,237.29276348333335 +2016-05-23 15:00:00,2.753525232,1007.391667,243.9916667,75.53666667,15.71,1.2365,237.29462209999997 +2016-05-23 16:00:00,0.0,1007.4983890000001,245.04166669999998,77.8275,15.6125,1.18725,237.29377726666667 +2016-05-23 17:00:00,0.0,1007.5932779999999,114.4875,83.38333333,14.80833333,0.9338333329999999,237.2936083 +2016-05-23 18:00:00,0.0,1007.7032220000001,42.7075,87.03333333,13.90583333,0.835916667,237.2941152 +2016-05-23 19:00:00,0.0,1008.0532220000001,19.05258333,88.70833333,13.34666667,0.9335,237.2949600166667 +2016-05-23 20:00:00,0.0,1008.319083,3.49425,92.175,12.825,0.812,237.29614275000003 +2016-05-23 21:00:00,0.0,1008.6916669999999,0.0,92.74166667,12.54,0.755833333,237.29631171666668 +2016-05-23 22:00:00,0.0,1008.6782220000001,0.0,93.65833333,12.2975,0.7415,237.29664965000003 +2016-05-23 23:00:00,0.0,1008.595167,0.0,94.20833333,12.11083333,0.8705,237.29952203333335 +2016-05-24 00:00:00,0.0,1008.6540279999999,0.0,93.01666667,12.11333333,1.301416667,237.29884616666666 +2016-05-24 01:00:00,0.0,1008.9333330000001,0.0,90.90833333,12.065,1.31125,237.29985996666667 +2016-05-24 02:00:00,0.0,1008.922583,0.0,90.39166667,11.96833333,1.5075833330000001,237.29918410000002 +2016-05-24 03:00:00,0.0,1008.744083,0.0,89.20833333,11.81083333,1.8928333330000002,237.29985996666667 +2016-05-24 04:00:00,0.0,1008.952417,0.29541666699999997,89.70833333,11.69416667,1.6520833330000002,237.2981703 +2016-05-24 05:00:00,0.0,1009.134139,5.61175,92.86666667,10.98333333,0.9923333329999999,237.3005358 +2016-05-24 06:00:00,0.0,1009.495694,18.205,89.825,11.26666667,1.4224166669999998,237.30070478333334 +2016-05-24 07:00:00,0.0,1009.962361,24.55916667,88.75,11.37166667,2.043583333,237.30019788333337 +2016-05-24 08:00:00,5.505201767999999,1010.2233890000001,34.37,90.64166667,11.00416667,1.254166667,237.30138063333337 +2016-05-24 09:00:00,11.09541067,1010.227417,79.14583333,93.65833333,10.7125,1.3555,237.3020564666667 +2016-05-24 10:00:00,12.0560274,1010.569083,115.5,94.35833333,10.91666667,1.8833333330000002,237.3017185333334 +2016-05-24 11:00:00,11.11482511,1010.827417,147.55833330000002,96.5,11.28,1.228083333,237.3007047666667 +2016-05-24 12:00:00,2.7383920560000004,1011.0,183.6583333,95.725,11.76333333,1.661,237.30053581666667 +2016-05-24 13:00:00,0.0,1010.9575279999999,156.8,94.30833333,11.5625,1.5819999999999999,237.30188750000002 +2016-05-24 14:00:00,0.0,1010.967472,141.6,94.04166667,11.6625,1.517166667,237.30154958333335 +2016-05-24 15:00:00,0.0,1011.033333,156.1083333,92.475,11.73416667,1.4869999999999999,237.30070478333337 +2016-05-24 16:00:00,0.0,1010.947583,119.91666670000001,92.44166667,11.8475,1.587,237.30070478333334 +2016-05-24 17:00:00,0.0,1010.83575,99.3525,90.65833333,11.61583333,1.229083333,237.30138060000002 +2016-05-24 18:00:00,0.0,1010.95,39.29166667,91.09166667,11.5425,0.989666667,237.3032392166667 +2016-05-24 19:00:00,0.0,1011.008333,15.60033333,95.14166667,11.35833333,0.29375,237.30628055 +2016-05-24 20:00:00,0.0,1011.201611,1.5336666669999999,95.325,10.735,0.227833333,237.3074632833333 +2016-05-24 21:00:00,0.0,1011.2317220000001,0.0,99.16666667,10.36833333,0.15433333300000002,237.3074633 +2016-05-24 22:00:00,0.0,1011.15,0.0,100.0,10.1425,0.12166666699999999,237.30712534999998 +2016-05-24 23:00:00,0.0,1010.9241939999999,0.0,100.0,9.931666667,0.053166667,237.3079701833333 +2016-05-25 00:00:00,0.0,1011.0016109999999,0.0,100.0,9.8125,0.15075,237.3093219 +2016-05-25 01:00:00,0.0,1011.073389,0.0,100.0,9.921666667,0.175416667,237.3091529333333 +2016-05-25 02:00:00,0.0,1010.91425,0.0,100.0,9.835833333,0.047666667,237.3074632833333 +2016-05-25 03:00:00,0.0,1010.5317220000001,0.0,100.0,9.496666667000001,0.20875,237.30763224999998 +2016-05-25 04:00:00,0.0,1010.5666669999999,3.8231666669999997,100.0,8.485833332999999,0.06483333299999999,237.3069564 +2016-05-25 05:00:00,0.0,1010.434944,39.45666667,100.0,8.69,0.17025,237.3091529333333 +2016-05-25 06:00:00,0.0,1010.9965,80.30416667,100.0,9.303333333,0.29875,237.3062805666667 +2016-05-25 07:00:00,0.0,1011.4206939999999,100.7716667,99.01666667,10.62333333,0.44141666700000004,237.3050978166667 +2016-05-25 08:00:00,0.0,1011.6150560000001,157.20833330000002,93.65833333,11.52916667,0.535333333,237.30526678333334 +2016-05-25 09:00:00,0.0,1011.6182779999999,256.3,83.10166667,12.6425,0.655083333,237.30509781666663 +2016-05-25 10:00:00,0.0,1011.4983890000001,300.9916667,78.69333333,13.51833333,1.0275,237.30340818333335 +2016-05-25 11:00:00,0.0,1011.4333330000001,386.3833333,75.7575,14.31166667,0.8190000000000001,237.30307025000002 +2016-05-25 12:00:00,0.0,1011.2785,222.85,80.2125,14.59833333,1.19175,237.3039150666667 +2016-05-25 13:00:00,0.0,1011.041667,243.3833333,76.59,14.94916667,1.142333333,237.3027323166667 +2016-05-25 14:00:00,0.0,1010.9508060000001,180.5916667,81.425,14.74916667,1.4575,237.3032392166667 +2016-05-25 15:00:00,0.0,1010.958333,117.05,81.65,15.06833333,1.350583333,237.30256335 +2016-05-25 16:00:00,0.0,1010.9008060000001,90.585,83.69166667,14.59666667,1.5234166669999998,237.3037461 +2016-05-25 17:00:00,0.0,1010.9325279999999,61.03666667,85.75833333,14.57083333,1.257333333,237.30239436666668 +2016-05-25 18:00:00,0.0,1010.959139,49.9825,86.10833333,14.39666667,1.1075,237.30053583333336 +2016-05-25 19:00:00,0.0,1011.1591390000001,16.08316667,90.85833333,13.87666667,0.46283333299999996,237.30222543333335 +2016-05-25 20:00:00,0.0,1011.4465,1.9285833330000002,96.75833333,13.03083333,0.022583332999999997,237.30340816666669 +2016-05-25 21:00:00,0.0,1011.85,0.0,99.66666667,11.46833333,0.073416667,237.30290128333334 +2016-05-25 22:00:00,0.0,1011.9333330000001,0.0,100.0,9.800833333,0.070333333,237.30442196666664 +2016-05-25 23:00:00,0.0,1012.0266109999999,0.0,100.0,8.438416667,0.137916667,237.30492884999998 +2016-05-26 00:00:00,0.0,1012.027417,0.0,100.0,6.4924166670000005,0.090833333,237.3067874333333 +2016-05-26 01:00:00,0.0,1012.0876390000001,0.0,100.0,5.56875,0.05875,237.3052668 +2016-05-26 02:00:00,0.0,1011.943278,0.0,100.0,5.0345833330000005,0.1065,237.30695641666668 +2016-05-26 03:00:00,0.0,1011.992472,0.0,100.0,4.483666667,0.048083333,237.30763226666667 +2016-05-26 04:00:00,0.0,1012.125,3.1726666669999997,100.0,3.97025,0.05125,237.3086460333333 +2016-05-26 05:00:00,0.0,1012.36075,48.24666667,100.0,5.123666667,0.010916667,237.30881499999998 +2016-05-26 06:00:00,0.0,1012.6706949999999,172.2666667,97.86666667,7.152083332999999,0.166333333,237.30611158333332 +2016-05-26 07:00:00,0.0,1013.087361,256.3833333,94.81666667,9.085833333,0.35675,237.30391506666663 +2016-05-26 08:00:00,0.0,1013.334139,135.9083333,87.25,11.36166667,0.72325,237.30138065000003 +2016-05-26 09:00:00,0.0,1013.28925,422.55,82.08333333,15.72166667,0.833,237.29800135000002 +2016-05-26 10:00:00,0.0,1013.105917,548.6916667,73.09583333,18.0925,1.082333333,237.29614278333335 +2016-05-26 11:00:00,0.0,1012.874194,682.125,65.7975,19.10416667,1.0490000000000002,237.29445313333335 +2016-05-26 12:00:00,0.0,1012.6150560000001,739.9583332999999,58.4775,19.8875,0.92975,237.2915807333333 +2016-05-26 13:00:00,0.0,1012.3884439999999,596.6,51.85916667,20.58416667,1.261666667,237.28820148333338 +2016-05-26 14:00:00,0.0,1011.9817220000001,428.1833333000001,54.72333333,21.54166667,1.691416667,237.2903980333333 +2016-05-26 15:00:00,0.0,1011.735222,450.5166666999999,51.6975,21.93583333,1.97825,237.28668080000003 +2016-05-26 16:00:00,0.0,1011.2075279999999,333.8583333,56.73083333,21.65583333,1.799833333,237.2876945666667 +2016-05-26 17:00:00,0.0,1011.1150560000001,209.475,58.3275,21.67083333,1.3494166669999998,237.28617393333332 +2016-05-26 18:00:00,0.0,1010.673389,81.39833333,62.2675,20.19666667,1.283666667,237.28837045 +2016-05-26 19:00:00,0.0,1010.7766109999999,43.75916667,83.84833333,17.31,0.6044166670000001,237.28887733333332 +2016-05-26 20:00:00,0.0,1010.944083,3.7585,94.425,13.475,0.134333333,237.29141178333336 +2016-05-26 21:00:00,0.0,1011.1349439999999,0.0,98.11666667,11.70583333,0.168916667,237.2942841666667 +2016-05-26 22:00:00,0.0,1011.133333,0.0,99.01666667,11.73833333,0.169583333,237.29529793333327 +2016-05-26 23:00:00,0.0,1011.313444,0.0,99.94166667,10.87,0.18408333300000002,237.29529793333333 +2016-05-27 00:00:00,0.0,1010.6825279999999,0.0,99.9,11.82333333,0.38191666700000004,237.29580483333334 +2016-05-27 01:00:00,0.0,1010.73925,0.0,99.60833333,12.30166667,0.173166667,237.29698758333336 +2016-05-27 02:00:00,0.0,1010.8147779999999,0.0,100.0,12.10916667,0.24558333300000001,237.29580483333334 +2016-05-27 03:00:00,33.75560777,1011.886556,0.0,99.96666667,12.60583333,0.08508333300000001,237.29631173333337 +2016-05-27 04:00:00,65.59159882,1011.625,0.169083333,100.0,12.40416667,0.24575,237.29664965000003 +2016-05-27 05:00:00,24.31223467,1011.841667,7.36075,100.0,12.37166667,0.141333333,237.29918408333333 +2016-05-27 06:00:00,24.10429222,1011.9682779999999,13.55416667,100.0,12.50833333,0.092,237.30138065000006 +2016-05-27 07:00:00,14.66443222,1012.000806,43.77083333,100.0,12.84583333,0.225,237.30391506666663 +2016-05-27 08:00:00,15.16234762,1012.040861,91.9175,100.0,13.3675,0.599583333,237.30459093333332 +2016-05-27 09:00:00,0.0,1012.0,198.68333330000002,99.38333333,14.9525,0.44191666700000004,237.30813913333336 +2016-05-27 10:00:00,0.0,1012.092472,322.65,91.425,16.4025,1.037,237.3086460333333 +2016-05-27 11:00:00,0.0,1011.9416669999999,446.71666669999996,86.08333333,17.86666667,1.7664166669999999,237.30830809999998 +2016-05-27 12:00:00,0.0,1011.955111,377.53333330000004,82.80083333,19.16833333,1.06025,237.30847708333332 +2016-05-27 13:00:00,0.0,1011.573389,457.91666669999995,77.035,20.835,1.216416667,237.30847706666665 +2016-05-27 14:00:00,0.0,1011.411833,491.8916666999999,71.6375,21.35916667,1.101166667,237.30712538333333 +2016-05-27 15:00:00,0.0,1010.8543060000001,428.70833330000005,69.72416667,22.22833333,1.2195,237.3037461 +2016-05-27 16:00:00,0.0,1010.4682779999999,164.7041667,77.45666667,21.225,0.87425,237.30526678333334 +2016-05-27 17:00:00,4.938654648,1010.297583,21.2275,94.65,18.79916667,0.8261666670000001,237.30712536666667 +2016-05-27 18:00:00,2.51999136,1010.278222,35.97333333,99.325,17.70166667,1.04275,237.3091529333333 +2016-05-27 19:00:00,9.715252632,1010.926611,7.875,100.0,17.13916667,0.29741666699999997,237.30830813333333 +2016-05-27 20:00:00,2.4050227680000003,1010.9174720000001,1.239416667,100.0,16.365,0.244666667,237.3093218833333 +2016-05-27 21:00:00,2.50229676,1011.2349439999999,0.0,100.0,15.0575,0.299666667,237.3093219 +2016-05-27 22:00:00,0.0,1010.91425,0.0,100.0,14.26833333,0.0835,237.30999774999998 +2016-05-27 23:00:00,0.0,1010.908333,0.0,100.0,12.8675,0.15308333300000002,237.30949086666666 +2016-05-28 00:00:00,0.0,1010.680917,0.0,100.0,11.775,0.1165,237.31101155 +2016-05-28 01:00:00,0.0,1010.43925,0.0,100.0,10.30916667,0.076333333,237.31168739999998 +2016-05-28 02:00:00,0.0,1010.444083,0.0,100.0,9.628333332999999,0.1315,237.31303908333334 +2016-05-28 03:00:00,0.0,1010.6317220000001,0.0,100.0,9.184166667000001,0.11258333300000001,237.31320806666668 +2016-05-28 04:00:00,2.4050227680000003,1010.569083,4.664333333,100.0,9.135833332999999,0.07925,237.31320806666668 +2016-05-28 05:00:00,0.0,1010.7349439999999,17.3925,100.0,10.91666667,0.222833333,237.31101155 +2016-05-28 06:00:00,0.0,1010.754306,61.5675,100.0,13.09166667,1.04175,237.3093219 +2016-05-28 07:00:00,0.0,1010.36425,95.54416667,100.0,13.4375,1.203666667,237.30780119999997 +2016-05-28 08:00:00,0.0,1010.3682779999999,132.09166670000002,100.0,13.94583333,1.556,237.3081391333333 +2016-05-28 09:00:00,0.0,1010.272583,216.55,100.0,15.31416667,1.1038333329999999,237.30847708333332 +2016-05-28 10:00:00,0.0,1010.0,465.275,92.53333333,18.115,0.814583333,237.30729433333332 +2016-05-28 11:00:00,0.0,1009.7110279999999,647.4416667,81.08333333,20.64666667,1.08025,237.3044219666667 +2016-05-28 12:00:00,0.0,1009.111833,547.9083333,74.03083333,22.64666667,1.023333333,237.30425298333333 +2016-05-28 13:00:00,0.0,1008.615861,478.49166669999994,64.71333333,23.86416667,0.82775,237.30239440000003 +2016-05-28 14:00:00,0.0,1008.241944,319.75,66.30916667,22.98166667,1.25025,237.30104270000004 +2016-05-28 15:00:00,0.0,1007.347583,284.225,65.28083333,22.9975,0.95325,237.30104270000004 +2016-05-28 16:00:00,0.0,1007.061833,183.975,69.33916667,22.84416667,0.89,237.30036683333336 +2016-05-28 17:00:00,0.0,1006.63925,104.5608333,81.90083333,22.15166667,0.41116666700000004,237.3029012833333 +2016-05-28 18:00:00,0.0,1006.48575,32.05333333,93.86666667,20.18916667,0.113916667,237.30307025000002 +2016-05-28 19:00:00,0.0,1006.658333,13.88916667,96.925,18.78916667,0.33575,237.30526678333334 +2016-05-28 20:00:00,2.471229648,1006.6674720000001,2.558916667,99.15,17.30166667,0.5735,237.30408403333334 +2016-05-28 21:00:00,0.0,1006.774195,0.0,99.94166667,16.97083333,1.194583333,237.30695641666668 +2016-05-28 22:00:00,0.0,1006.630917,0.0,99.05,16.32833333,1.9231666669999998,237.30763228333333 +2016-05-28 23:00:00,0.0,1006.130917,0.0,99.875,15.5775,0.514333333,237.3079702 +2016-05-29 00:00:00,0.0,1005.7602220000001,0.0,100.0,15.4375,0.8590000000000001,237.3061116 +2016-05-29 01:00:00,0.0,1004.8535,0.0,100.0,13.48083333,0.239916667,237.30763226666667 +2016-05-29 02:00:00,0.0,1004.4733890000001,0.0,100.0,11.6525,0.18683333300000002,237.3069564 +2016-05-29 03:00:00,0.0,1004.1785,0.0,100.0,11.79083333,0.607166667,237.30780123333332 +2016-05-29 04:00:00,0.0,1003.8543060000001,5.012916667,100.0,13.6225,0.6293333329999999,237.3079701833333 +2016-05-29 05:00:00,0.0,1003.677417,44.86416667,100.0,13.035,0.209666667,237.30763224999998 +2016-05-29 06:00:00,0.0,1003.447583,36.50916667,100.0,14.48083333,0.85025,237.30644951666667 +2016-05-29 07:00:00,2.856041064,1002.985222,63.535,100.0,15.205,1.6566666669999999,237.30509783333332 +2016-05-29 08:00:00,0.0,1003.023111,93.39166667,99.78333333,15.975,1.538083333,237.30459093333332 +2016-05-29 09:00:00,0.0,1003.305917,161.8583333,96.26666667,17.15083333,0.667416667,237.30459093333332 +2016-05-29 10:00:00,0.0,1003.166667,260.775,90.56666667,18.22416667,0.932583333,237.30442195 +2016-05-29 11:00:00,0.0,1002.9459720000001,131.125,90.75833333,18.33916667,1.00925,237.30357711666667 +2016-05-29 12:00:00,0.0,1002.657528,198.2166667,88.85833333,19.39583333,0.9664166670000001,237.94192061666664 +2016-05-29 13:00:00,0.0,1002.522583,241.3916667,85.95,20.49833333,0.778333333,238.0686431 +2016-05-29 14:00:00,0.0,1002.35,373.3083333,81.06333333,21.18916667,1.230583333,238.06593971666666 +2016-05-29 15:00:00,0.0,1002.122583,368.95,76.5775,21.54416667,1.095166667,238.06425006666666 +2016-05-29 16:00:00,0.0,1001.5793060000001,301.9416667,75.8375,21.96,0.9571666670000001,238.06323628333334 +2016-05-29 17:00:00,0.0,1001.1126390000001,145.8833333,80.20833333,21.635,1.0473333329999999,238.06560178333334 +2016-05-29 18:00:00,0.0,1000.991667,90.5325,86.78333333,21.31,0.930083333,238.06779831666665 +2016-05-29 19:00:00,0.0,1000.980917,31.17916667,95.75833333,19.97583333,0.282666667,238.0689810333333 +2016-05-29 20:00:00,2.5086256319999998,1000.391667,1.9883333330000001,99.55833333,18.56666667,0.34925,238.06982586666663 +2016-05-29 21:00:00,0.0,1000.825,0.0,100.0,17.44666667,0.2605,238.06847414999996 +2016-05-29 22:00:00,23.9616918,1000.524194,0.0,100.0,18.11333333,1.21175,238.07033276666664 +2016-05-29 23:00:00,36.2398811,999.9744722999999,0.0,100.0,18.3225,2.215,238.07067070000002 +2016-05-30 00:00:00,42.20765746,998.7895277999999,0.0,100.0,17.81666667,2.1669166669999997,238.07236031666665 +2016-05-30 01:00:00,246.02452169999998,998.51075,0.002833333,99.875,16.28666667,1.28075,238.0750637333333 +2016-05-30 02:00:00,92.00685857,998.0502777999999,0.000916667,100.0,15.34166667,1.445583333,238.14095941666665 +2016-05-30 03:00:00,0.0,997.4190832999999,0.0,100.0,14.93833333,0.5315833329999999,238.18759331666664 +2016-05-30 04:00:00,0.0,997.9448889,2.333,100.0,13.99083333,0.276083333,238.17846928333333 +2016-05-30 05:00:00,0.0,998.0309167000001,17.19383333,100.0,14.39666667,0.259666667,238.16765565 +2016-05-30 06:00:00,0.0,998.1131667000001,38.05583333,100.0,15.0525,0.135833333,238.15785574999998 +2016-05-30 07:00:00,9.788551752,998.3158611,47.11583333,100.0,15.42333333,0.229916667,238.1502524 +2016-05-30 08:00:00,0.0,998.2483889,124.40583329999998,99.975,16.26333333,0.5761666670000001,238.14400076666666 +2016-05-30 09:00:00,0.0,998.1583332999999,286.95,94.38333333,17.975,1.279916667,238.13724221666666 +2016-05-30 10:00:00,0.0,998.1849444000001,314.3166667,89.70833333,18.41416667,1.8220833330000001,238.13217331666667 +2016-05-30 11:00:00,0.0,998.4524167000002,404.6416667,88.21666667,19.10416667,2.810083333,238.12794925000003 +2016-05-30 12:00:00,0.0,998.9290277999999,373.4416667,87.34166667,18.33416667,2.57,238.12541480000002 +2016-05-30 13:00:00,0.0,999.2690832999999,492.275,83.3275,19.18583333,3.220416667,238.12271138333335 +2016-05-30 14:00:00,0.0,999.5424722000001,324.15833330000004,82.87083333,18.87583333,3.22225,238.12119073333338 +2016-05-30 15:00:00,0.0,999.6516111,223.4,86.99166667,18.3775,2.736,238.12017693333334 +2016-05-30 16:00:00,0.0,999.81075,266.9,85.73333333,18.17,2.720333333,238.11730454999997 +2016-05-30 17:00:00,0.0,1000.11075,67.1675,89.675,17.71333333,2.03975,238.11527700000002 +2016-05-30 18:00:00,48.68987006,1000.544083,34.25166667,98.38333333,16.35083333,1.962666667,238.11409423333336 +2016-05-30 19:00:00,14.62598174,1000.962361,10.72825,99.68333333,15.92333333,1.714083333,238.11358735000002 +2016-05-30 20:00:00,0.0,1001.238167,2.079416667,99.93333333,15.52583333,1.657583333,238.11308046666667 +2016-05-30 21:00:00,0.0,1001.837361,0.0,99.96666667,15.3525,1.2475,238.1124046333333 +2016-05-30 22:00:00,0.0,1002.294889,0.0,99.55833333,15.055,0.680916667,238.1107149833333 +2016-05-30 23:00:00,0.0,1002.3849439999999,0.0,98.79166667,14.49166667,0.86775,238.10953225 +2016-05-31 00:00:00,0.0,1002.918278,0.0,99.65,14.45083333,1.488666667,238.1090253333333 +2016-05-31 01:00:00,0.0,1003.083333,0.0,99.00833333,14.26,1.463333333,238.10818053333333 +2016-05-31 02:00:00,0.0,1003.219083,0.0,100.0,13.98666667,1.396333333,238.11037706666662 +2016-05-31 03:00:00,0.0,1003.419889,0.0,100.0,14.01083333,1.30275,238.1083495 +2016-05-31 04:00:00,0.0,1003.7182779999999,3.610583333,100.0,13.76166667,1.55875,238.10801158333334 +2016-05-31 05:00:00,0.0,1003.962361,31.63583333,99.10833333,13.80666667,1.55975,238.1078426 +2016-05-31 06:00:00,0.0,1004.8973060000001,100.47,95.25,14.4275,1.8035833330000002,238.10446333333334 +2016-05-31 07:00:00,0.0,1005.362361,157.16666669999998,92.475,15.3575,2.0545,238.10344956666665 +2016-05-31 08:00:00,0.0,1005.820694,233.975,86.73333333,16.31916667,2.205166667,238.10074616666668 +2016-05-31 09:00:00,0.0,1006.1508060000001,297.225,83.96916667,17.35,2.17925,238.0990565 +2016-05-31 10:00:00,0.0,1006.529833,197.6083333,80.89833333,17.63916667,1.5874166669999998,238.09702896666667 +2016-05-31 11:00:00,0.0,1006.9448890000001,100.6516667,83.51666667,16.7575,0.917333333,238.09990133333335 +2016-05-31 12:00:00,0.0,1007.2965,284.8833333,80.115,17.9225,1.318583333,238.09635308333336 +2016-05-31 13:00:00,0.0,1007.625,236.3416667,75.27583333,18.75166667,1.4451666669999998,238.09297385 +2016-05-31 14:00:00,0.0,1007.7,200.7375,75.44416667,19.25916667,0.6426666670000001,238.0931428 +2016-05-31 15:00:00,0.0,1007.658333,188.05,76.43,19.56833333,0.318166667,238.09297386666665 +2016-05-31 16:00:00,0.0,1007.858333,126.98666670000001,74.14583333,18.9,0.39225,238.09128423333334 +2016-05-31 17:00:00,0.0,1007.844083,29.31833333,93.09166667,17.69916667,0.18716666699999998,238.09348071666668 +2016-05-31 18:00:00,0.0,1008.233333,60.42083333,91.44166667,17.77,0.03975,238.09297383333333 +2016-05-31 19:00:00,0.0,1008.379028,31.855,93.43333333,17.29916667,0.033416667000000004,238.09415656666667 +2016-05-31 20:00:00,0.0,1008.552417,4.228083333,99.16666667,15.18083333,0.08433333300000001,238.09432554999998 +2016-05-31 21:00:00,0.0,1009.0948890000001,0.000916667,100.0,13.97583333,0.092083333,238.09601518333332 +2016-05-31 22:00:00,0.0,1009.46075,0.0,100.0,13.67166667,0.01775,238.0950014 +2016-05-31 23:00:00,0.0,1009.608333,0.0,100.0,13.6,0.06225,238.09364968333333 +2016-01-06 00:00:00,0.0,1009.5035,0.0,100.0,13.59583333,0.17375,238.08829289999997 +2016-01-06 01:00:00,0.0,1009.176611,0.0,100.0,13.605,0.333416667,238.0875771 +2016-01-06 02:00:00,0.0,1009.344083,0.0,100.0,13.96333333,0.8484166670000001,238.08364011666671 +2016-01-06 03:00:00,0.0,1009.330917,0.0,99.65,14.255,0.49691666700000003,238.08292429999997 +2016-01-06 04:00:00,0.0,1009.108333,1.7391666669999999,99.85833333,14.21916667,0.38983333299999995,238.0813137333333 +2016-01-06 05:00:00,48.15581921,1009.261556,8.96175,98.8,14.41666667,0.507166667,238.0814927 +2016-01-06 06:00:00,34.70686397,1009.41425,16.939,100.0,14.2175,0.397583333,238.08095581666666 +2016-01-06 07:00:00,4.84183656,1009.366667,64.90916667,100.0,14.60833333,0.166833333,238.07988211666665 +2016-01-06 08:00:00,0.0,1009.394083,131.7033333,98.34166667,15.64916667,0.4455,238.0795242 +2016-01-06 09:00:00,0.0,1009.355917,175.2166667,98.21666667,16.36916667,0.462916667,238.07737674999998 +2016-01-06 10:00:00,2.553779832,1009.2241939999999,327.2916667,94.30833333,17.81,0.7265,238.07522931666665 +2016-01-06 11:00:00,0.0,1009.173389,376.4166667,92.40833333,18.80333333,1.092333333,238.07308185000002 +2016-01-06 12:00:00,0.0,1008.865861,241.75,93.06666667,19.425,1.343666667,238.07129235000002 +2016-01-06 13:00:00,0.0,1008.654306,157.395,93.525,17.86,0.851833333,238.07111339999997 +2016-01-06 14:00:00,7.36393932,1008.13925,59.235,96.86666667,17.01416667,0.58225,238.07111338333334 +2016-01-06 15:00:00,39.80581678,1007.7285,84.17416667,99.925,16.50666667,0.43658333299999996,238.06986071666665 +2016-01-06 16:00:00,27.47606062,1007.2193609999999,97.9675,100.0,16.56416667,0.4555,238.0707555 +2016-01-06 17:00:00,17.17315435,1006.9408609999999,70.72666667,100.0,16.52916667,0.305583333,238.0707555 +2016-01-06 18:00:00,39.07964014,1006.548389,37.22916667,100.0,16.26083333,0.322,238.07003968333333 +2016-01-06 19:00:00,2.552665536,1006.2551109999999,23.03625,100.0,16.33416667,0.734916667,238.06896593333337 +2016-01-06 20:00:00,2.5015437119999997,1006.109139,1.974083333,100.0,16.13166667,0.677083333,238.06789223333337 +2016-01-06 21:00:00,0.0,1006.080917,0.0,100.0,15.96,0.749833333,238.06771325 +2016-01-06 22:00:00,2.618846976,1005.907528,0.0,100.0,15.84166667,1.15725,238.0677132666667 +2016-01-06 23:00:00,0.0,1005.7841390000001,0.0,100.0,15.82916667,1.337833333,238.06610270000002 +2016-02-06 00:00:00,0.0,1005.8083330000001,0.0,100.0,15.70166667,1.391666667,238.11817813333334 +2016-02-06 01:00:00,0.0,1005.73925,0.0,100.0,15.5225,1.8146666669999998,238.11656753333332 +2016-02-06 02:00:00,0.0,1005.466667,0.0,100.0,15.36083333,1.223666667,238.11782021666667 +2016-02-06 03:00:00,0.0,1005.4817220000001,0.0,100.0,15.3675,0.8325,238.11889393333334 +2016-02-06 04:00:00,0.0,1005.7706939999999,0.7955,100.0,15.35916667,0.33475,238.12139925 +2016-02-06 05:00:00,0.0,1005.88575,17.55525,100.0,15.4525,0.548666667,238.11925183333335 +2016-02-06 06:00:00,0.0,1006.227417,37.45416667,100.0,15.84583333,0.9198333329999999,238.11746228333337 +2016-02-06 07:00:00,0.0,1006.63575,115.29833329999998,99.61666667,16.86833333,1.135666667,238.11442009999996 +2016-02-06 08:00:00,0.0,1006.834944,194.525,94.29166667,17.97,1.137,238.11388325 +2016-02-06 09:00:00,0.0,1006.774194,409.2,86.205,19.19416667,1.3513333330000001,238.11173578333333 +2016-02-06 10:00:00,0.0,1006.783333,285.40833330000004,84.83333333,19.44916667,1.3205,238.11066206666666 +2016-02-06 11:00:00,0.0,1006.858333,345.15833330000004,81.85,20.36416667,1.3426666669999998,238.10994625 +2016-02-06 12:00:00,0.0,1006.838445,595.6833333,77.68833333,20.9575,1.8246666669999998,238.10887255 +2016-02-06 13:00:00,0.0,1006.4491939999999,413.0166667,74.59333333,21.10916667,1.373083333,238.10726196666664 +2016-02-06 14:00:00,0.0,1006.054306,287.34166669999996,76.6375,20.50416667,1.438166667,238.10744091666666 +2016-02-06 15:00:00,2.534053176,1006.084944,102.8583333,88.2775,19.25833333,0.698833333,238.10565135000002 +2016-02-06 16:00:00,0.0,1006.125806,116.41666670000001,95.69166667,18.68833333,1.211833333,238.10600928333335 +2016-02-06 17:00:00,17.35570747,1006.294083,65.35333333,96.43333333,18.2525,1.204916667,238.10887255 +2016-02-06 18:00:00,37.29194446,1006.45,18.36416667,99.675,16.09583333,0.49075,238.10976730000002 +2016-02-06 19:00:00,2.408844504,1006.7365560000001,10.33541667,100.0,15.945,0.238833333,238.11155683333334 +2016-02-06 20:00:00,2.405181144,1006.959139,2.1695,100.0,15.84083333,0.29383333300000003,238.11298846666668 +2016-02-06 21:00:00,0.0,1007.202417,0.013583333000000001,100.0,15.33,0.135416667,238.11119891666667 +2016-02-06 22:00:00,0.0,1007.4016109999999,0.0,100.0,14.1625,0.069666667,238.10976731666668 +2016-02-06 23:00:00,0.0,1007.627417,0.0,100.0,13.36416667,0.029916667,238.11155683333334 +2016-03-06 00:00:00,0.0,1007.681722,0.0,100.0,14.3825,0.32,238.25851908333334 +2016-03-06 01:00:00,0.0,1007.758333,0.0,100.0,14.565,0.76925,238.25705636666666 +2016-03-06 02:00:00,0.0,1007.508333,0.0,100.0,14.16166667,0.5515,238.25622053333333 +2016-03-06 03:00:00,2.5985574000000002,1007.472583,0.0,100.0,13.6475,0.94375,238.2574743 +2016-03-06 04:00:00,0.0,1007.462361,1.8445,100.0,13.43583333,0.460916667,238.25204129999997 +2016-03-06 05:00:00,0.0,1007.666667,23.299,100.0,13.46083333,0.892333333,238.24911583333335 +2016-03-06 06:00:00,0.0,1007.852417,53.48166667,100.0,13.7575,0.917,238.2482799833334 +2016-03-06 07:00:00,0.0,1008.1182779999999,106.24166670000001,100.0,14.16333333,1.0275,238.24723516666668 +2016-03-06 08:00:00,0.0,1008.1483890000001,141.6541667,100.0,14.92833333,0.406416667,238.24430971666666 +2016-03-06 09:00:00,0.0,1008.1424720000001,248.025,99.675,16.06666667,1.0095,238.242847 +2016-03-06 10:00:00,5.22782532,1008.055917,195.93333330000002,94.35833333,17.44416667,1.07,238.24180220000002 +2016-03-06 11:00:00,5.324042928,1007.95,203.7833333,95.00833333,17.87083333,1.068416667,238.24033941666667 +2016-03-06 12:00:00,16.93287084,1007.8766109999999,153.0083333,97.3,17.22083333,2.449166667,238.2415932166667 +2016-03-06 13:00:00,0.0,1007.772583,81.21583333,99.26666667,16.4275,0.5705,238.2418021666667 +2016-03-06 14:00:00,0.0,1007.58925,353.75,92.95833333,18.475,0.595333333,238.24201114999997 +2016-03-06 15:00:00,0.0,1007.375,326.375,87.31666667,20.30916667,0.879,238.24033943333333 +2016-03-06 16:00:00,68.31760721,1007.2126390000001,47.68916667,96.34166667,17.2425,0.761166667,238.24075736666666 +2016-03-06 17:00:00,0.0,1006.875,86.07833333,99.725,17.28416667,0.37008333299999996,238.24451866666666 +2016-03-06 18:00:00,2.519207424,1007.1016109999999,42.83083333,99.68333333,17.44666667,0.44125,238.24263801666666 +2016-03-06 19:00:00,2.552943912,1006.880917,28.8325,100.0,17.185,0.39183333299999995,238.24284698333335 +2016-03-06 20:00:00,0.0,1006.888167,1.9198333330000001,100.0,16.2775,0.427333333,238.24117529999998 +2016-03-06 21:00:00,0.0,1007.391667,0.0,100.0,16.335,0.33883333299999996,238.24222010000003 +2016-03-06 22:00:00,0.0,1007.315056,0.0,100.0,15.37916667,0.178833333,238.24305593333335 +2016-03-06 23:00:00,0.0,1007.227417,0.0,100.0,13.75916667,0.277416667,238.24096631666666 +2016-04-06 00:00:00,0.0,1007.390861,0.0,100.0,12.87083333,0.14300000000000002,238.31347600000004 +2016-04-06 01:00:00,0.0,1007.467472,0.0,100.0,11.83,0.109833333,238.31389393333333 +2016-04-06 02:00:00,0.0,1007.633333,0.0,100.0,12.545,0.043666667,238.31055055000002 +2016-04-06 03:00:00,0.0,1007.525,0.009416667,100.0,12.55666667,0.076333333,238.30699819999998 +2016-04-06 04:00:00,0.0,1007.719083,3.6676666669999998,100.0,12.22083333,0.134666667,238.30616236666665 +2016-04-06 05:00:00,0.0,1007.9,38.27833333,100.0,12.86416667,0.195916667,238.30386378333333 +2016-04-06 06:00:00,0.0,1008.044083,94.4275,100.0,14.2925,0.333833333,238.29926661666664 +2016-04-06 07:00:00,0.0,1008.436556,124.34166670000002,100.0,15.36916667,1.102833333,238.29487844999997 +2016-04-06 08:00:00,0.0,1008.804833,177.5,98.61666667,16.70916667,1.122666667,238.29237089999995 +2016-04-06 09:00:00,0.0,1009.033333,246.30833330000002,95.11666667,17.92,1.45675,238.29132608333336 +2016-04-06 10:00:00,0.0,1009.234139,269.28333330000004,90.73333333,19.06416667,1.6575,238.28986335000002 +2016-04-06 11:00:00,0.0,1009.383333,367.075,84.06666667,20.6575,1.2026666670000001,238.28819166666668 +2016-04-06 12:00:00,0.0,1009.258333,338.125,80.76666667,21.30666667,1.03575,238.28986335 +2016-04-06 13:00:00,2.583193536,1009.036833,345.0666667,82.46333333,21.0975,0.745916667,238.28798271666665 +2016-04-06 14:00:00,0.0,1008.8,544.1166667,71.54833333,22.68833333,1.054916667,238.28631099999998 +2016-04-06 15:00:00,0.0,1008.71425,427.8083333000001,71.78083333,23.36166667,1.4100833330000002,238.28526618333333 +2016-04-06 16:00:00,0.0,1008.6016109999999,221.18333330000002,72.66666667,21.73083333,2.1011666669999998,238.28422141666667 +2016-04-06 17:00:00,0.0,1008.448389,126.98666670000001,82.31833333,21.535,1.339333333,238.28380346666663 +2016-04-06 18:00:00,2.696271696,1008.7956939999999,109.35166670000001,81.56166667,21.4375,0.7835,238.28066903333334 +2016-04-06 19:00:00,2.503302984,1009.179833,25.17666667,94.375,19.33333333,0.395666667,238.28066903333334 +2016-04-06 20:00:00,2.481989304,1009.8755279999999,1.791916667,99.79166667,17.79916667,0.39791666700000006,238.27837046666664 +2016-04-06 21:00:00,0.0,1010.466667,0.0014166670000000001,100.0,16.91416667,0.302666667,238.2754449833333 +2016-04-06 22:00:00,0.0,1010.541667,0.0,100.0,15.90416667,0.22091666699999998,238.2733553666666 +2016-04-06 23:00:00,0.0,1010.5508060000001,0.0,100.0,14.7075,0.139916667,238.27210161666665 +2016-05-06 00:00:00,0.0,1010.7349439999999,0.0,100.0,13.5325,0.12608333300000002,238.1189942 +2016-05-06 01:00:00,0.0,1010.858333,0.0,100.0,13.37333333,0.12375,238.11848728333337 +2016-05-06 02:00:00,0.0,1010.967472,0.0,100.0,13.07083333,0.108416667,238.12017695 +2016-05-06 03:00:00,0.0,1011.0099439999999,0.031,100.0,13.06833333,0.13675,238.1205148666667 +2016-05-06 04:00:00,0.0,1011.26075,5.5083333329999995,100.0,12.27666667,0.030833332999999997,238.1208528 +2016-05-06 05:00:00,0.0,1011.7956939999999,11.62333333,100.0,12.38833333,0.048833333,238.12085281666668 +2016-05-06 06:00:00,0.0,1012.28575,81.92333333,100.0,14.06833333,0.16825,238.12000798333338 +2016-05-06 07:00:00,0.0,1012.5290279999999,183.725,100.0,17.40416667,0.548416667,238.11645975000002 +2016-05-06 08:00:00,0.0,1012.85,204.05,90.60833333,19.76916667,0.9903333329999999,238.1129115 +2016-05-06 09:00:00,0.0,1013.0174720000001,419.275,77.90166667,21.2775,1.1909999999999998,238.1130804833333 +2016-05-06 10:00:00,0.0,1013.0615550000001,598.375,70.36916667,23.35166667,1.133666667,238.1105460333333 +2016-05-06 11:00:00,0.0,1013.1400560000001,651.4166667000001,64.07666667,24.5425,1.631666667,238.1086874 +2016-05-06 12:00:00,0.0,1012.661833,532.075,58.89166667,25.32833333,2.4019999999999997,238.10885638333332 +2016-05-06 13:00:00,0.0,1012.258333,652.3916667000001,52.28833333,26.45666667,2.46375,238.10750469999996 +2016-05-06 14:00:00,0.0,1012.255917,647.125,45.51833333,27.14666667,2.05925,238.10699783333334 +2016-05-06 15:00:00,0.0,1012.1841390000001,571.475,49.36166667,26.80333333,2.560333333,238.10480128333333 +2016-05-06 16:00:00,0.0,1012.024194,505.425,54.7975,25.8975,3.44675,238.1044633333333 +2016-05-06 17:00:00,0.0,1012.473917,277.65,64.0375,24.57416667,2.586666667,238.10463229999996 +2016-05-06 18:00:00,0.0,1013.212361,104.6,71.43916667,23.29,0.628416667,238.10767365 +2016-05-06 19:00:00,0.0,1013.965583,49.79416667,80.00666667,20.4875,1.15575,238.10615296666666 +2016-05-06 20:00:00,0.0,1014.7198890000001,5.9115,92.88333333,17.60666667,0.222333333,238.10919429999998 +2016-05-06 21:00:00,0.0,1015.109139,0.04175,99.26666667,16.46083333,0.203333333,238.10885638333335 +2016-05-06 22:00:00,0.0,1015.2266109999999,0.0,100.0,15.42166667,0.300833333,238.11003913333332 +2016-05-06 23:00:00,0.0,1015.0491939999999,0.0,100.0,14.3025,0.244916667,238.11155981666664 +2016-06-06 00:00:00,0.0,1015.225805,0.0,100.0,13.37583333,0.18641666699999998,238.08182226666668 +2016-06-06 01:00:00,0.0,1015.2,0.0,100.0,12.99583333,0.16075,238.08334290000002 +2016-06-06 02:00:00,0.0,1015.2075279999999,0.0,100.0,12.26833333,0.24741666699999998,238.08317393333334 +2016-06-06 03:00:00,0.0,1015.116667,0.04275,100.0,11.6275,0.037583333,238.0831739666667 +2016-06-06 04:00:00,0.0,1015.379028,6.6685,100.0,11.29583333,0.013583333000000001,238.08283605000005 +2016-06-06 05:00:00,0.0,1015.8532220000001,78.905,100.0,13.46833333,0.007833333,238.08165329999997 +2016-06-06 06:00:00,0.0,1016.219083,179.2416667,96.59166667,17.29833333,0.120833333,238.07962573333336 +2016-06-06 07:00:00,0.0,1016.4766109999999,194.97916669999998,83.505,19.24333333,0.508166667,238.07827401666668 +2016-06-06 08:00:00,0.0,1016.551611,94.05833333,79.27166667,20.57166667,1.068583333,238.07776711666668 +2016-06-06 09:00:00,0.0,1016.6,421.88333330000006,73.30416667,22.45833333,0.80275,238.07607750000003 +2016-06-06 10:00:00,0.0,1016.597583,607.35,68.02916667,24.58916667,0.842333333,238.0742189 +2016-06-06 11:00:00,0.0,1016.341667,633.8833333,61.09666667,26.19583333,0.677,238.0725292666667 +2016-06-06 12:00:00,0.0,1016.179306,646.5333333,55.2275,27.21,1.5476666669999999,238.07151550000003 +2016-06-06 13:00:00,0.0,1015.757528,672.2583333,48.765,27.93166667,1.627666667,238.06914999999995 +2016-06-06 14:00:00,0.0,1015.680917,607.0666667,45.82583333,28.4175,1.314,238.06695348333335 +2016-06-06 15:00:00,0.0,1015.3650560000001,573.5416667000001,44.76333333,28.25833333,1.87825,238.06560178333334 +2016-06-06 16:00:00,0.0,1015.41075,375.4916667,57.28833333,24.925,2.9389999999999996,238.06222251666665 +2016-06-06 17:00:00,0.0,1015.3900560000001,114.09166670000002,69.70833333,21.72916667,0.734583333,238.06593973333335 +2016-06-06 18:00:00,0.0,1015.6706939999999,81.18833333,80.15666667,21.1625,0.39641666700000006,238.0650949 +2016-06-06 19:00:00,0.0,1016.136556,31.74916667,91.53333333,19.9675,0.28425,238.06695346666666 +2016-06-06 20:00:00,0.0,1016.479028,4.577083333,97.38333333,17.9025,0.202416667,238.06695348333332 +2016-06-06 21:00:00,0.0,1016.7567220000001,0.022083332999999997,99.89166667,16.2875,0.1265,238.07050169999994 +2016-06-06 22:00:00,0.0,1016.903222,0.0,100.0,15.09,0.023,238.07067068333333 +2016-06-06 23:00:00,0.0,1017.253222,0.0,100.0,14.52666667,0.21100000000000002,238.07100863333335 +2016-07-06 00:00:00,0.0,1017.408333,0.0,100.0,13.56166667,0.046166667,238.05173513333332 +2016-07-06 01:00:00,0.0,1017.4,0.0,100.0,12.86333333,0.046416667,238.05372505 +2016-07-06 02:00:00,0.0,1017.45,0.0,100.0,12.09583333,0.06675,238.05611298333335 +2016-07-06 03:00:00,0.0,1017.4766109999999,0.03475,100.0,11.545,0.066,238.05491901666667 +2016-07-06 04:00:00,0.0,1017.617472,6.031083333,100.0,11.33083333,0.02775,238.05690895 +2016-07-06 05:00:00,0.0,1017.970694,81.155,100.0,13.14833333,0.0,238.0559139833333 +2016-07-06 06:00:00,0.0,1018.33575,186.9666667,96.725,17.30833333,0.114,238.05670996666666 +2016-07-06 07:00:00,0.0,1018.6349439999999,193.9075,82.36333333,18.7425,0.95875,238.05332704999998 +2016-07-06 08:00:00,0.0,1018.725,79.27666667,75.45,20.11916667,1.2651666670000001,238.05332706666664 +2016-07-06 09:00:00,0.0,1018.640861,428.625,68.39833333,22.2025,1.120583333,238.04994420000003 +2016-07-06 10:00:00,0.0,1018.6591390000001,623.05,62.64833333,24.20416667,1.152916667,238.04596431666667 +2016-07-06 11:00:00,0.0,1018.3293060000001,681.975,58.78083333,25.55916667,1.424166667,238.04377538333335 +2016-07-06 12:00:00,0.0,1017.931722,705.1416667000001,56.50666667,26.53916667,1.6560833330000002,238.03959653333334 +2016-07-06 13:00:00,0.0,1017.6467779999999,702.0833332999999,48.66666667,27.40666667,1.5960833330000002,238.03740759999997 +2016-07-06 14:00:00,0.0,1017.2276939999999,649.5333333,45.97583333,27.815,1.527916667,238.03641259999995 +2016-07-06 15:00:00,0.0,1016.662639,565.8083333,40.11583333,28.0075,1.27075,238.03661161666665 +2016-07-06 16:00:00,0.0,1016.287639,476.04166669999995,44.16083333,28.12416667,1.138,238.03581565 +2016-07-06 17:00:00,0.0,1015.7233890000001,257.175,52.17083333,27.0425,1.25475,238.03382571666666 +2016-07-06 18:00:00,0.0,1016.104833,76.275,69.67416667,24.61833333,0.9551666670000001,238.0328307833333 +2016-07-06 19:00:00,0.0,1016.3766109999999,33.4075,87.56666667,22.67833333,0.7978333329999999,238.0316368 +2016-07-06 20:00:00,0.0,1016.380917,9.266333333,94.40833333,19.49666667,0.171416667,238.03342773333335 +2016-07-06 21:00:00,0.0,1016.4564439999999,0.024416667000000003,98.30833333,16.9,0.214,238.0346216833333 +2016-07-06 22:00:00,0.0,1017.169889,0.0,92.8,18.3075,0.679666667,238.03422371666662 +2016-07-06 23:00:00,0.0,1017.2035,0.0,93.66666667,17.6725,0.488916667,238.03581565 +2016-08-06 00:00:00,0.0,1016.780917,0.0,92.325,16.7075,0.281083333,237.99442505000002 +2016-08-06 01:00:00,0.0,1016.097583,0.0,98.275,16.6975,0.204833333,237.99681298333334 +2016-08-06 02:00:00,0.0,1016.1317220000001,0.0,99.21666667,16.82833333,0.6345,237.9986039 +2016-08-06 03:00:00,0.0,1015.741667,0.016916667,99.88333333,16.0575,0.11125,237.99900188333334 +2016-08-06 04:00:00,0.0,1015.847583,2.28375,100.0,14.95916667,0.07925,237.9988029 +2016-08-06 05:00:00,0.0,1015.71075,23.40908333,100.0,15.12666667,0.1415,238.0003948166667 +2016-08-06 06:00:00,0.0,1016.2706939999999,29.32166667,99.38333333,16.30833333,0.15966666699999998,238.00079281666672 +2016-08-06 07:00:00,9.72398184,1016.45,60.95583333,99.76666667,16.4925,0.211833333,237.99999683333337 +2016-08-06 08:00:00,0.0,1016.3733890000001,141.2833333,96.05,17.72333333,0.18833333300000002,237.9986039 +2016-08-06 09:00:00,0.0,1016.3599439999999,233.44166669999998,92.53333333,18.76833333,0.5844166670000001,237.99681293333336 +2016-08-06 10:00:00,0.0,1016.2959720000001,381.9583333,87.00833333,20.785,0.671666667,237.99382804999996 +2016-08-06 11:00:00,0.0,1015.845167,493.08333330000005,80.20416667,21.28833333,0.8460833329999999,237.99163911666665 +2016-08-06 12:00:00,0.0,1015.2884439999999,589.0583333,69.77916667,22.57583333,1.26075,237.99104215 +2016-08-06 13:00:00,0.0,1014.5876390000001,313.785,72.37166667,23.37083333,1.8793333330000002,237.9850723666667 +2016-08-06 14:00:00,0.0,1014.372583,69.40083333,90.975,20.56583333,1.64575,237.98308240000003 +2016-08-06 15:00:00,0.0,1013.863444,77.6925,94.70833333,19.6475,0.264916667,237.97870458333333 +2016-08-06 16:00:00,0.0,1013.647583,144.6416667,91.69166667,20.03583333,0.171583333,237.97492368333334 +2016-08-06 17:00:00,0.0,1013.525,137.81666669999998,88.2,20.72833333,0.33025,237.97313276666662 +2016-08-06 18:00:00,0.0,1013.541667,89.6475,88.04166667,20.7075,0.322666667,237.97134181666664 +2016-08-06 19:00:00,0.0,1013.8873609999999,85.03833333,77.02,21.0375,0.9470833329999999,237.96994883333332 +2016-08-06 20:00:00,0.0,1014.1623609999999,11.88416667,70.09,17.66,1.8188333330000002,237.97034686666666 +2016-08-06 21:00:00,0.0,1014.491667,0.048333333,95.50833333,16.07416667,0.90475,237.97034683333334 +2016-08-06 22:00:00,0.0,1014.665056,0.0,99.7,14.23166667,0.34133333299999996,237.9719388 +2016-08-06 23:00:00,0.0,1014.6897779999999,0.0,100.0,12.77416667,0.160583333,237.97313278333334 +2016-09-06 00:00:00,0.0,1014.897583,0.0,100.0,11.27083333,0.201583333,237.8881626 +2016-09-06 01:00:00,0.0,1014.825,0.0,100.0,10.0725,0.15766666699999998,237.88955554999998 +2016-09-06 02:00:00,0.0,1014.745972,0.0,100.0,9.694166667000001,0.180666667,237.8909485 +2016-09-06 03:00:00,0.0,1014.595694,0.028666667000000003,100.0,9.028333332999999,0.064166667,237.89453039999998 +2016-09-06 04:00:00,0.0,1014.852417,5.402416667000001,100.0,8.7475,0.16625,237.89632133333336 +2016-09-06 05:00:00,0.0,1015.144083,62.65416667,100.0,10.24,0.24525,237.89632131666667 +2016-09-06 06:00:00,0.0,1015.162639,186.1,96.65,13.22166667,1.13475,237.89811226666666 +2016-09-06 07:00:00,0.0,1015.034944,207.9233333,82.52916667,14.13666667,2.471,237.89731628333334 +2016-09-06 08:00:00,0.0,1015.0583330000001,107.34166670000002,75.48833333,15.10583333,1.880333333,237.89751528333332 +2016-09-06 09:00:00,0.0,1014.762639,463.25,64.48166667,16.12916667,1.77025,237.8965203333333 +2016-09-06 10:00:00,0.0,1014.4241939999999,666.1583333,62.95833333,17.33166667,2.34725,237.89592333333334 +2016-09-06 11:00:00,0.0,1014.323389,612.5416667000001,66.89333333,17.7675,2.913583333,237.89492836666668 +2016-09-06 12:00:00,0.0,1014.157528,601.4083333,64.61833333,18.2375,3.16275,237.89015253333332 +2016-09-06 13:00:00,0.0,1014.0134439999999,666.8583332999999,62.11583333,18.99166667,2.59325,237.88577468333335 +2016-09-06 14:00:00,0.0,1013.736833,620.5583333,61.45416667,19.31583333,3.0510833330000002,237.88259078333337 +2016-09-06 15:00:00,0.0,1013.284944,593.875,59.0025,19.76333333,2.5749166669999997,237.8786109333333 +2016-09-06 16:00:00,0.0,1013.047583,314.4916667,60.24916667,19.84583333,2.183416667,237.8774169666667 +2016-09-06 17:00:00,0.0,1012.991667,169.0333333,66.56833333,19.00666667,2.153083333,237.8732381166666 +2016-09-06 18:00:00,0.0,1012.8483890000001,92.39666667,72.96,18.07583333,2.170833333,237.8722431333333 +2016-09-06 19:00:00,0.0,1012.5793060000001,42.9925,77.59333333,17.50916667,1.239833333,237.8694572333333 +2016-09-06 20:00:00,0.0,1012.266667,12.7555,88.68333333,15.99166667,0.5519166670000001,237.87124818333334 +2016-09-06 21:00:00,0.0,1012.4825279999999,0.09633333300000001,96.18333333,12.5975,0.147083333,237.87244214999998 +2016-09-06 22:00:00,0.0,1012.53575,0.0,99.95,11.16166667,0.2725,237.87264111666664 +2016-09-06 23:00:00,0.0,1012.4285,0.0,100.0,10.01916667,0.08858333300000001,237.87264113333333 +2016-10-06 00:00:00,0.0,1011.841667,0.0,100.0,8.869166667,0.144833333,237.94353921666664 +2016-10-06 01:00:00,0.0,1011.7035,0.0,100.0,8.037166667000001,0.016833333,237.94380339999998 +2016-10-06 02:00:00,0.0,1011.2801109999999,0.0,100.0,7.5005,0.06375,237.9454359 +2016-10-06 03:00:00,0.0,1010.865861,0.039,100.0,6.862416667000001,0.0,237.94590571666666 +2016-10-06 04:00:00,0.0,1010.530917,6.381416667000001,100.0,6.57575,0.0375,237.9429049 +2016-10-06 05:00:00,0.0,1010.716667,80.05416667,100.0,8.8075,0.012833333,237.94415615 +2016-10-06 06:00:00,0.0,1010.709139,186.85,97.00833333,12.7025,0.49908333299999996,237.94448836666672 +2016-10-06 07:00:00,0.0,1010.7075279999999,210.2583333,88.31666667,15.03916667,0.66,237.94503413333334 +2016-10-06 08:00:00,0.0,1010.448389,163.1583333,77.24083333,17.4075,0.588833333,237.94435233333334 +2016-10-06 09:00:00,0.0,1010.3408609999999,428.15,71.19166667,18.495,0.76025,237.94436656666664 +2016-10-06 10:00:00,0.0,1010.086833,602.1,60.82666667,19.47083333,1.116416667,237.9447208833333 +2016-10-06 11:00:00,0.0,1009.7650560000001,682.6083332999999,62.50083333,20.08833333,1.255833333,237.94460381666667 +2016-10-06 12:00:00,0.0,1009.405917,691.4333333,59.41916667,20.9175,1.0265,237.94634549999998 +2016-10-06 13:00:00,0.0,1009.020167,669.425,55.7075,21.77333333,0.925083333,237.94611611666667 +2016-10-06 14:00:00,0.0,1008.520972,652.475,56.22666667,21.76083333,1.0380833329999999,237.94421624999998 +2016-10-06 15:00:00,0.0,1008.0317220000001,566.3666667,52.44333333,22.92416667,0.786166667,237.94349968333336 +2016-10-06 16:00:00,0.0,1007.597583,421.15,53.41916667,22.1425,0.697333333,237.94484111666668 +2016-10-06 17:00:00,0.0,1007.370167,203.25,58.13916667,22.59,0.6025,237.94567161666666 +2016-10-06 18:00:00,0.0,1007.015861,86.47583333,61.16666667,21.21333333,0.6729166670000001,237.94669665 +2016-10-06 19:00:00,0.0,1006.8983890000001,46.10583333,73.33916667,19.07583333,0.022833332999999997,237.94570956666666 +2016-10-06 20:00:00,0.0,1006.995694,7.00875,83.07583333,16.25833333,0.13325,237.94527615 +2016-10-06 21:00:00,0.0,1007.258333,0.037083332999999996,90.41666667,16.30166667,1.021333333,237.94697668333333 +2016-10-06 22:00:00,0.0,1007.3615560000001,0.0,91.55833333,16.45916667,1.0424166670000001,237.94662074999997 +2016-10-06 23:00:00,0.0,1007.4325279999999,0.0,92.75833333,12.94083333,0.142083333,237.9464609833333 +2016-11-06 00:00:00,0.0,1007.4983890000001,0.0,95.09166667,11.79833333,0.095,238.04032170000002 +2016-11-06 01:00:00,0.0,1007.28925,0.0,96.54166667,11.38333333,0.040833333,238.03984558333332 +2016-11-06 02:00:00,0.0,1006.897583,0.0,97.95833333,11.10916667,0.08275,238.03794731666665 +2016-11-06 03:00:00,0.0,1006.6067220000001,0.01125,99.41666667,10.66416667,0.0735,238.03804380000005 +2016-11-06 04:00:00,0.0,1006.524194,4.771083333,99.8,10.08833333,0.083666667,238.0393425166667 +2016-11-06 05:00:00,0.0,1006.704833,36.88833333,99.50833333,11.00083333,0.080833333,238.03631325 +2016-11-06 06:00:00,0.0,1006.948389,86.77416667,95.46666667,13.365,0.08516666699999999,238.0339673 +2016-11-06 07:00:00,0.0,1007.229028,149.3833333,84.225,15.39166667,1.355083333,238.03442765 +2016-11-06 08:00:00,0.0,1007.458333,207.2583333,77.85333333,16.08333333,1.7336666669999998,238.03355603333333 +2016-11-06 09:00:00,0.0,1007.419083,289.5583333,76.78666667,17.66083333,1.140916667,238.03155338333337 +2016-11-06 10:00:00,0.0,1007.4241939999999,358.40833330000004,72.87583333,18.63083333,1.564583333,238.031971 +2016-11-06 11:00:00,0.0,1007.3650560000001,408.8333333,71.75833333,19.47666667,1.829166667,238.0309601666667 +2016-11-06 12:00:00,0.0,1007.162639,460.5,63.57083333,21.41583333,1.175833333,238.03002841666668 +2016-11-06 13:00:00,0.0,1006.8241949999999,508.15833330000004,58.1425,22.24333333,1.024916667,238.0289053166667 +2016-11-06 14:00:00,0.0,1006.505917,333.625,58.14416667,21.795,1.0324166670000001,238.0307213 +2016-11-06 15:00:00,0.0,1006.1876390000001,247.18333330000002,60.76916667,22.36166667,0.5086666670000001,238.0310234166667 +2016-11-06 16:00:00,0.0,1005.922583,300.2083333,60.18916667,22.45583333,0.67825,238.0296978166667 +2016-11-06 17:00:00,0.0,1005.837361,201.55833330000002,68.03333333,20.23166667,1.833833333,238.029315 +2016-11-06 18:00:00,0.0,1005.931722,77.53916667,76.4075,19.54583333,1.162166667,238.02825671666665 +2016-11-06 19:00:00,0.0,1006.102417,32.39083333,79.64166667,18.09583333,0.73425,238.02760024999998 +2016-11-06 20:00:00,0.0,1006.379028,6.8833333329999995,84.96666667,16.55833333,0.46416666700000003,238.0258317 +2016-11-06 21:00:00,0.0,1006.7674720000001,0.038,93.8,15.20583333,0.34783333299999997,238.02598988333332 +2016-11-06 22:00:00,0.0,1006.9016109999999,0.0,98.525,14.2,0.08758333300000001,238.02530175 +2016-11-06 23:00:00,0.0,1006.798389,0.0,99.99166667,13.2375,0.093833333,238.02405208333334 +2016-12-06 00:00:00,0.0,1006.5551109999999,0.0,100.0,12.0225,0.07925,238.0322383 +2016-12-06 01:00:00,0.0,1006.2317220000001,0.0,100.0,12.3525,0.026333332999999997,238.03188873333332 +2016-12-06 02:00:00,0.0,1006.0467779999999,0.0,100.0,12.9375,0.0,238.03066908333335 +2016-12-06 03:00:00,0.0,1005.681722,0.0,100.0,13.125,0.0,238.0301091166667 +2016-12-06 04:00:00,0.0,1005.4849449999999,2.941833333,100.0,13.025,0.0,238.03015655000002 +2016-12-06 05:00:00,0.0,1005.665056,17.18083333,100.0,13.71833333,0.145583333,238.0295159 +2016-12-06 06:00:00,10.19749925,1005.516667,32.88666667,100.0,14.1325,0.7493333329999999,238.02991611666667 +2016-12-06 07:00:00,15.3719388,1005.55,71.575,100.0,14.53833333,0.838,238.03031318333333 +2016-12-06 08:00:00,5.404735848,1005.4658609999999,103.5,100.0,15.08333333,1.280916667,238.02971523333335 +2016-12-06 09:00:00,2.639996664,1005.3483890000001,174.7666667,99.63333333,15.99416667,1.4285833330000002,238.02894956666668 +2016-12-06 10:00:00,0.0,1005.11425,268.3666667,93.525,17.09083333,1.4729166669999998,238.02888473333334 +2016-12-06 11:00:00,0.0,1004.955917,472.6916666999999,84.07333333,18.22583333,1.27125,238.02898596666668 +2016-12-06 12:00:00,0.0,1004.520972,542.3083333,75.4075,19.74083333,1.7435,238.02639960000002 +2016-12-06 13:00:00,63.41273395,1004.362361,121.01333329999999,84.80166667,19.11833333,1.228083333,238.0270734833333 +2016-12-06 14:00:00,7.35010044,1004.4793060000001,173.8233333,98.80833333,16.80666667,0.357333333,238.0277885 +2016-12-06 15:00:00,0.0,1004.201611,340.8666667,88.68333333,19.2175,0.5671666670000001,238.02794035000002 +2016-12-06 16:00:00,0.0,1004.186028,249.6416667,86.89166667,19.4875,0.83475,238.0269438 +2016-12-06 17:00:00,0.0,1003.591667,156.44166669999998,90.375,18.325,0.568333333,238.02711143333332 +2016-12-06 18:00:00,0.0,1003.8599439999999,49.50083333,93.225,17.29833333,0.50925,238.02794035 +2016-12-06 19:00:00,29.43875278,1003.8126390000001,18.51166667,99.14166667,15.4425,0.627583333,238.02681561666668 +2016-12-06 20:00:00,0.0,1003.383333,4.079333333,99.825,14.60416667,0.03925,238.02804000000003 +2016-12-06 21:00:00,0.0,1003.45,0.0385,99.83333333,14.02833333,0.211916667,238.02845605000002 +2016-12-06 22:00:00,0.0,1003.3075279999999,0.0,100.0,13.655,0.165333333,238.0287708333333 +2016-12-06 23:00:00,0.0,1003.072583,0.0,100.0,13.53833333,0.04825,238.02821716666668 +2016-06-13 00:00:00,0.0,1002.662639,0.0,100.0,13.5925,0.202416667,238.0944945 +2016-06-13 01:00:00,0.0,1002.020167,0.0,100.0,13.40666667,0.2255,238.09550828333332 +2016-06-13 02:00:00,0.0,1001.536028,0.0,100.0,13.2075,0.031833333,238.09415656666667 +2016-06-13 03:00:00,2.4050227680000003,1001.1551109999999,0.0,100.0,13.28083333,0.030833332999999997,238.09229798333334 +2016-06-13 04:00:00,0.0,1000.5626390000001,4.59825,100.0,13.23333333,0.113,238.0938186333333 +2016-06-13 05:00:00,0.0,1000.1876390000001,27.01633333,100.0,13.56416667,0.245916667,238.09398761666668 +2016-06-13 06:00:00,0.0,999.95,72.245,100.0,14.55166667,0.266,238.0907773166667 +2016-06-13 07:00:00,0.0,999.7908610999999,128.7175,98.44166667,15.74666667,0.40475,238.0889187 +2016-06-13 08:00:00,29.78632646,999.4709722000001,92.72833333,99.78333333,15.81916667,0.2905,238.08790491666664 +2016-06-13 09:00:00,0.0,999.0551111,251.33333330000002,94.59166667,17.105,0.714666667,238.09027043333333 +2016-06-13 10:00:00,2.4220708319999997,998.6650556,139.075,94.45833333,17.77583333,0.47725,238.09077731666665 +2016-06-13 11:00:00,2.753525232,998.3535,308.055,88.02083333,17.69416667,1.1261666670000001,238.09010146666665 +2016-06-13 12:00:00,0.0,997.875,354.4125,88.0675,16.56083333,1.007916667,238.09229798333334 +2016-06-13 13:00:00,22.85476219,997.8126389,168.9483333,96.48333333,15.99416667,0.5631666670000001,238.09348075 +2016-06-13 14:00:00,0.0,997.3916667000001,171.75,91.76666667,16.96916667,0.43425,238.09331175 +2016-06-13 15:00:00,0.0,997.3543056,77.29833333,96.20833333,17.07666667,0.214666667,238.09500141666663 +2016-06-13 16:00:00,7.5651180479999995,997.2432777999999,278.1741667,94.35,17.64333333,0.59875,238.09449451666669 +2016-06-13 17:00:00,0.0,997.2932777999999,123.15833329999998,95.175,16.59833333,0.536333333,238.09348071666668 +2016-06-13 18:00:00,0.0,997.6865556,100.1425,95.61666667,16.33416667,0.49275,238.09483245 +2016-06-13 19:00:00,0.0,997.8083332999998,40.89583333,97.90833333,15.59583333,0.25025,238.09483243333332 +2016-06-13 20:00:00,0.0,998.0790278,3.21225,98.25833333,14.71,0.27775,238.09533933333333 +2016-06-13 21:00:00,4.871561208,998.3524167000002,0.013166667,99.81666667,13.83916667,0.287416667,238.09483243333332 +2016-06-13 22:00:00,0.0,998.3059167000001,0.0,100.0,13.5225,0.253333333,238.09432553333332 +2016-06-13 23:00:00,0.0,998.2983889000001,0.0,100.0,12.7925,0.215166667,238.0944945 +2016-06-14 00:00:00,0.0,998.2516111,0.0,100.0,12.1225,0.07958333299999999,238.09533933333333 +2016-06-14 01:00:00,4.8184679280000005,998.2916667000002,0.0,100.0,12.45416667,0.05375,238.09364968333333 +2016-06-14 02:00:00,0.0,998.0067222000001,0.0,100.0,12.52666667,0.281666667,238.09533933333333 +2016-06-14 03:00:00,0.0,997.8618332999998,0.0,100.0,12.705,0.303083333,238.09517036666668 +2016-06-14 04:00:00,0.0,997.6516111,4.163,100.0,12.63416667,0.131,238.09567726666668 +2016-06-14 05:00:00,0.0,997.7091389000001,31.55,100.0,12.95833333,0.072583333,238.09432553333332 +2016-06-14 06:00:00,31.97454936,997.8333332999998,46.44,100.0,13.5325,0.290583333,238.0922979833333 +2016-06-14 07:00:00,7.435165007999999,997.7158611,124.64416670000001,99.36666667,14.085,0.801083333,238.0934807333333 +2016-06-14 08:00:00,0.0,997.65,245.83333330000002,93.13333333,15.80833333,0.728916667,238.09432553333332 +2016-06-14 09:00:00,0.0,997.43925,336.55,87.18333333,17.21333333,0.9288333329999999,238.09449451666669 +2016-06-14 10:00:00,0.0,997.3551110999999,358.4416667,82.13,17.535,0.626083333,238.0922979833333 +2016-06-14 11:00:00,0.0,996.8991944,410.85,78.7175,18.6,0.752083333,238.09111525 +2016-06-14 12:00:00,0.0,996.7733889000001,379.9833333,78.75,18.96833333,0.8109999999999999,238.08824288333332 +2016-06-14 13:00:00,0.0,996.34275,419.35,78.19916667,18.7675,1.8495833330000002,238.0880739 +2016-06-14 14:00:00,0.0,995.975,286.09166669999996,76.64333333,18.805,1.4365833330000002,238.08942561666666 +2016-06-14 15:00:00,0.0,995.7666667000001,294.4258333,76.255,19.68666667,0.94025,238.08858080000002 +2016-06-14 16:00:00,0.0,995.4900556,266.14916669999997,74.5325,19.51583333,0.778833333,238.08824286666666 +2016-06-14 17:00:00,0.0,995.5725832999999,204.08333330000002,74.36333333,19.34583333,0.991833333,238.0855394666667 +2016-06-14 18:00:00,0.0,995.3,110.36666670000001,79.28833333,18.51416667,0.9500833329999999,238.08739805000002 +2016-06-14 19:00:00,0.0,995.6397777999999,40.125,87.03333333,17.315,0.861166667,238.08638428333336 +2016-06-14 20:00:00,10.04082259,996.1440832999999,2.828083333,93.70833333,16.08916667,0.574666667,238.08638425000004 +2016-06-14 21:00:00,0.0,996.4599444,0.055416667,99.775,14.33916667,0.259583333,238.08756703333336 +2016-06-14 22:00:00,2.483658576,996.68575,0.0,99.30833333,13.97916667,0.27899999999999997,238.08655325000004 +2016-06-14 23:00:00,0.0,996.6975832999999,0.0,100.0,13.80666667,0.137083333,238.08706013333335 +2016-06-15 00:00:00,0.0,996.5225832999998,0.0,100.0,13.33083333,0.475,238.0880739 +2016-06-15 01:00:00,0.0,996.2774167000001,0.0,100.0,12.7325,0.181666667,238.0884118166667 +2016-06-15 02:00:00,0.0,996.4983889,0.0,100.0,12.14333333,0.21933333300000002,238.08841180000002 +2016-06-15 03:00:00,0.0,996.0435556,0.008,100.0,12.05666667,0.1715,238.08858078333333 +2016-06-15 04:00:00,0.0,995.8182777999999,3.7569999999999997,100.0,11.63583333,0.141416667,238.08689118333334 +2016-06-15 05:00:00,0.0,995.9540278,40.72416667,100.0,11.32083333,0.03975,238.08672220000003 +2016-06-15 06:00:00,0.0,996.5365556,135.4833333,99.38333333,13.2025,0.674333333,238.08401878333333 +2016-06-15 07:00:00,0.0,996.6266111,158.66666669999998,89.5,15.51083333,0.8039166670000001,238.08300500000004 +2016-06-15 08:00:00,5.03670708,996.95,103.3516667,93.6,15.01166667,0.7170833329999999,238.08520153333336 +2016-06-15 09:00:00,2.844900864,996.9833332999999,279.2416667,92.36666667,15.28583333,1.5075,238.089932525 +2016-06-15 10:00:00,0.0,997.0008056,339.9583333,85.21666667,16.72416667,1.5666666669999998,238.08790493333333 +2016-06-15 11:00:00,0.0,996.81425,156.6716667,90.14166667,15.87333333,1.079833333,238.07938919999998 +2016-06-15 12:00:00,2.715575064,996.9524167000002,150.7583333,88.91666667,15.395,0.995166667,238.0745568333333 +2016-06-15 13:00:00,0.0,997.2282222000001,371.6,85.82333333,16.3675,1.5530000000000002,238.0725292666667 +2016-06-15 14:00:00,72.04357524,997.0709722000001,280.8716667,83.29333333,15.76083333,1.23525,238.07134655000004 +2016-06-15 15:00:00,298.60587660000004,997.70725,48.59366667,94.725,13.15166667,1.7005833330000002,238.0760775 +2016-06-15 16:00:00,12.16275792,997.6825277999999,188.7025,99.50833333,11.25166667,0.28575,238.11003911666668 +2016-06-15 17:00:00,0.0,997.4650556,299.6341667,86.88333333,15.44666667,1.121916667,238.11950108333338 +2016-06-15 18:00:00,0.0,997.5916667000001,69.0825,85.10833333,16.525,1.7349166669999998,238.1184873166667 +2016-06-15 19:00:00,0.0,997.73575,22.0275,95.56666667,14.2125,1.243083333,238.11696665000002 +2016-06-15 20:00:00,0.0,997.9798332999999,4.55575,100.0,11.86166667,0.37941666700000004,238.1134183833333 +2016-06-15 21:00:00,0.0,998.6473056,0.083583333,100.0,10.28083333,0.107416667,238.1100391333333 +2016-06-15 22:00:00,0.0,999.1440832999999,0.0,100.0,9.085,0.22116666699999998,238.1085184833333 +2016-06-15 23:00:00,0.0,999.2817222000001,0.0,100.0,8.35725,0.302833333,238.10767365 +2016-06-16 00:00:00,0.0,999.3166667000002,0.0,100.0,7.856,0.202416667,238.10649093333333 +2016-06-16 01:00:00,0.0,999.2075277999999,0.0,100.0,7.399666667000001,0.20825,238.1042944 +2016-06-16 02:00:00,0.0,999.0008056,0.0,100.0,7.061333332999999,0.36125,238.10361853333333 +2016-06-16 03:00:00,0.0,999.4123611,0.039916667,100.0,6.59725,0.201,238.10192891666668 +2016-06-16 04:00:00,0.0,999.16775,8.19225,100.0,6.656833333,0.307916667,238.1024358 +2016-06-16 05:00:00,0.0,999.1139722000001,51.055,100.0,8.34225,0.33675,238.10040821666666 +2016-06-16 06:00:00,0.0,999.8706945,86.39,100.0,9.308333333,0.227333333,238.09686 +2016-06-16 07:00:00,0.0,999.8225832999999,97.68333333,100.0,10.45833333,0.934666667,238.09601518333332 +2016-06-16 08:00:00,0.0,1000.0290279999999,135.5333333,100.0,11.03083333,0.688583333,238.09331176666663 +2016-06-16 09:00:00,0.0,1000.209139,155.70833330000002,100.0,11.7925,0.6476666670000001,238.09263593333333 +2016-06-16 10:00:00,0.0,1000.508333,182.33333330000002,99.96666667,13.48703378,0.388166667,238.09162215 +2016-06-16 11:00:00,0.0,1000.4206939999999,204.475,97.43333333,14.831946199999999,0.5924166670000001,238.09128421666665 +2016-06-16 12:00:00,0.0,1000.4709720000001,190.54166669999998,93.44166667,15.6940935,0.708583333,238.08942561666666 +2016-06-16 13:00:00,0.0,1000.26425,202.4833333,92.14166667,16.32282818,0.7395,238.08891870000002 +2016-06-16 14:00:00,0.0,1000.0016109999999,182.0908333,87.9,17.01566915,0.41775,238.09633810000003 +2016-06-16 15:00:00,0.0,999.9793056,92.40083333,94.075,16.27844691,0.374,238.10705526666672 +2016-06-16 16:00:00,4.989406224,999.6150556,126.72083329999998,92.81666667,16.07626556,0.384,238.10665730000002 +2016-06-16 17:00:00,0.0,999.5,62.79916667,93.74166667,16.07051244,0.263916667,238.10367238333336 +2016-06-16 18:00:00,0.0,999.2165243999999,49.51666667,98.61666667,15.64313723,0.200083333,238.10426935 +2016-06-16 19:00:00,0.0,998.9068056,32.49333333,99.50833333,15.37356209,0.037416667,238.1058613166667 +2016-06-16 20:00:00,0.0,998.975,12.64383333,100.0,14.52374293,0.08475,238.10486636666667 +2016-06-16 21:00:00,0.0,998.7531667000002,0.056833333,100.0,12.87012962,0.18375,238.10546331666671 +2016-06-16 22:00:00,0.0,998.51925,0.0,100.0,11.97675106,0.166833333,238.10606031666669 +2016-06-16 23:00:00,0.0,998.3474167000002,0.0,100.0,11.8115541,0.271333333,238.1066572666667 +2016-06-17 00:00:00,0.0,998.4010556,0.0,100.0,11.70060092,0.374666667,238.1060603 +2016-06-17 01:00:00,0.0,998.0963611,0.0,100.0,11.30281323,0.10591666699999999,238.10506535000002 +2016-06-17 02:00:00,0.0,998.1895556,0.0,100.0,10.91077866,0.1055,238.10526433333334 +2016-06-17 03:00:00,0.0,998.4239444,0.018333333,100.0,11.64553527,0.541,238.10387136666668 +2016-06-17 04:00:00,0.0,998.66925,4.55925,100.0,11.46390081,0.721916667,238.10327440000003 +2016-06-17 05:00:00,0.0,999.2015277999999,35.68833333,100.0,12.36549812,1.9870833330000002,238.10327440000003 +2016-06-17 06:00:00,0.0,999.6109167000001,122.19833329999999,97.35833333,13.35667986,2.386666667,238.10227941666668 +2016-06-17 07:00:00,0.0,1000.360333,110.8225,94.59166667,13.72734567,2.161833333,238.0998914833333 +2016-06-17 08:00:00,0.0,1000.777583,161.685,92.45,14.36676473,2.588,238.10009048333336 +2016-06-17 09:00:00,0.0,1001.4598609999999,253.33333330000002,87.30833333,15.52478717,2.5540000000000003,238.09810056666666 +2016-06-17 10:00:00,0.0,1002.1385,276.8266667,84.0675,15.96202488,2.141083333,238.09750358333335 +2016-06-17 11:00:00,0.0,1002.7780550000001,534.2583333,77.8625,17.44304436,2.87075,238.0943197 +2016-06-17 12:00:00,0.0,1003.3286390000001,545.5,74.485,18.25423538,3.479166667,238.09213078333332 +2016-06-17 13:00:00,0.0,1003.746833,696.425,66.71583333,19.16158582,3.748333333,238.0879519 +2016-06-17 14:00:00,0.0,1004.4124449999999,379.6666667,74.6575,18.64791369,2.5299166669999997,238.08576298333332 +2016-06-17 15:00:00,32.06966131,1005.283806,354.9575,79.28,17.09045981,1.9005833330000002,238.08735495000005 +2016-06-17 16:00:00,0.0,1005.7635,232.15,81.77,16.612950199999997,2.18225,238.08755391666668 +2016-06-17 17:00:00,0.0,1006.2812220000001,240.9083333,80.43,16.98772539,3.129916667,238.08854888333335 +2016-06-17 18:00:00,0.0,1006.887444,88.28083333,81.295,16.29159692,2.8545833330000003,238.08815090000004 +2016-06-17 19:00:00,0.0,1007.1833330000001,48.49916667,85.43333333,15.40890274,1.8785,238.08834988333334 +2016-06-17 20:00:00,0.0,1007.5968330000001,12.71116667,92.94166667,13.96322391,1.4579166669999999,238.0887478666667 +2016-06-17 21:00:00,0.0,1008.235917,0.12025,98.3,12.20851992,0.128333333,238.08854888333335 +2016-06-17 22:00:00,0.0,1008.4812220000001,0.0,100.0,11.43924455,0.3545,238.08775291666666 +2016-06-17 23:00:00,0.0,1008.8135,0.0,100.0,10.80557861,0.299,238.0879519 +2016-06-18 00:00:00,0.0,1009.128639,0.0,100.0,9.197332825,0.20975,238.08834986666662 +2016-06-18 01:00:00,0.0,1009.4072779999999,0.0,100.0,8.666894441,0.49875,238.0881509 +2016-06-18 02:00:00,0.0,1009.628639,0.0,100.0,8.818694828,0.47083333299999997,238.08854888333335 +2016-06-18 03:00:00,0.0,1009.7822779999999,0.044166667,100.0,8.146565124,0.224583333,238.08834990000003 +2016-06-18 04:00:00,0.0,1010.146833,6.82825,100.0,8.534736876,0.0955,238.08735493333336 +2016-06-18 05:00:00,0.0,1010.7181939999999,30.785,100.0,9.751112471,0.087,238.08476800000003 +2016-06-18 06:00:00,0.0,1010.972889,73.68583333,100.0,11.76306345,0.6316666670000001,238.085564 +2016-06-18 07:00:00,0.0,1011.4239439999999,191.405,92.65,14.60921797,2.145083333,238.08437001666667 +2016-06-18 08:00:00,0.0,1011.6322779999999,187.9666667,88.14166667,15.49191215,2.264333333,238.08317605000002 +2016-06-18 09:00:00,0.0,1012.071833,429.7,82.29583333,17.22360362,2.1390000000000002,238.07859921666667 +2016-06-18 10:00:00,0.0,1012.477583,428.6416666999999,80.41416667,17.46112561,2.027166667,238.07780323333336 +2016-06-18 11:00:00,0.0,1012.392722,623.7333332999999,77.0575,18.18601972,2.40225,238.07899721666664 +2016-06-18 12:00:00,0.0,1012.168778,620.25,71.11083333,19.17720145,2.981416667,238.0750173166667 +2016-06-18 13:00:00,0.0,1011.9593890000001,604.8083333,66.7275,19.88237055,2.940416667,238.07322638333335 +2016-06-18 14:00:00,0.0,1012.029111,283.425,68.90416667,19.23966399,2.2215833330000003,238.07163445000003 +2016-06-18 15:00:00,0.0,1012.4333330000001,247.7416667,77.08166667,17.80220391,1.486083333,238.07163445000003 +2016-06-18 16:00:00,0.0,1012.3296939999999,312.2416667,76.9275,18.05205403,1.599666667,238.07143546666666 +2016-06-18 17:00:00,0.0,1012.8135,223.425,72.8075,18.25505725,1.58375,238.0692465333333 +2016-06-18 18:00:00,0.0,1013.09425,139.4716667,74.90583333,17.77261639,1.114166667,238.06944554999998 +2016-06-18 19:00:00,0.0,1013.654111,62.13166667,80.69666667,16.14283747,1.3908333330000002,238.06944553333332 +2016-06-18 20:00:00,0.0,1014.177583,16.99333333,86.69166667,14.73496491,1.2864166670000001,238.07044048333333 +2016-06-18 21:00:00,0.0,1014.822889,0.1015,96.85833333,12.68602953,0.91475,238.07083848333332 +2016-06-18 22:00:00,0.0,1015.0765279999999,0.0,95.25833333,13.32709234,1.36475,238.07282843333334 +2016-06-18 23:00:00,0.0,1015.3166669999999,0.0,95.89166667,12.89725151,1.52075,238.07481836666668 +2016-06-19 00:00:00,0.0,1015.651528,0.0,96.70833333,12.48631381,1.211083333,238.07422136666665 +2016-06-19 01:00:00,0.0,1016.035917,0.0,97.34166667,12.45754817,1.3745,238.07362438333334 +2016-06-19 02:00:00,0.0,1016.245306,0.0,97.40833333,11.71539468,1.095,238.07422138333334 +2016-06-19 03:00:00,0.0,1016.4848609999999,0.020666667,99.71666667,11.19596943,1.199,238.07402238333336 +2016-06-19 04:00:00,0.0,1017.145778,1.84175,98.725,12.00140732,1.287583333,238.07123645000001 +2016-06-19 05:00:00,0.0,1017.602583,24.56833333,97.49166667,12.36796375,1.20525,238.07203243333333 +2016-06-19 06:00:00,0.0,1017.9369720000001,88.315,96.23333333,12.874239,1.5801666669999999,238.07223141666668 +2016-06-19 07:00:00,0.0,1018.369722,237.6333333,93.85,14.06102708,1.6438333330000001,238.07103748333336 +2016-06-19 08:00:00,0.0,1019.0619720000001,165.3666667,96.24166667,13.88268012,1.1674166670000001,238.07103748333336 +2016-06-19 09:00:00,27.35569795,1019.232278,333.7333333,91.64166667,14.64948987,1.3964166669999998,238.07183343333335 +2016-06-19 10:00:00,5.505087408,1019.5931939999999,175.18333330000002,86.41666667,15.07850883,1.204166667,238.0714354666667 +2016-06-19 11:00:00,0.0,1019.910917,271.875,82.375,15.71053101,1.366166667,238.07024150000004 +2016-06-19 12:00:00,0.0,1020.3203060000001,254.55,79.7625,15.60944034,1.73275,238.06785356666668 +2016-06-19 13:00:00,0.0,1020.232278,313.0083333,74.10583333,16.52090016,1.72225,238.06725660000004 +2016-06-19 14:00:00,0.0,1020.301056,264.475,73.32166667,16.64746897,1.2804166670000001,238.06526668333333 +2016-06-19 15:00:00,0.0,1020.158333,210.4,70.89416667,16.71157525,1.2705,238.0682515666667 +2016-06-19 16:00:00,0.0,1020.154694,196.3,70.8375,17.00662852,0.88725,238.06566463333334 +2016-06-19 17:00:00,0.0,1019.914083,117.575,71.17666667,16.82170655,0.834666667,238.06626161666668 +2016-06-19 18:00:00,0.0,1019.770306,93.24833333,67.25666667,17.12826608,0.7060833329999999,238.06566465 +2016-06-19 19:00:00,0.0,1019.75575,66.90416667,70.8,16.44939699,0.787833333,238.06566463333334 +2016-06-19 20:00:00,0.0,1019.901528,9.74225,93.43333333,12.60959512,0.557916667,238.06586363333335 +2016-06-19 21:00:00,0.0,1020.3812220000001,0.09958333300000001,99.56666667,9.998496966,0.591166667,238.0666596166667 +2016-06-19 22:00:00,0.0,1020.55,0.0,100.0,8.917895189,0.6489166670000001,238.06904753333333 +2016-06-19 23:00:00,0.0,1020.573944,0.0,100.0,8.020325062000001,0.39175,238.07063948333337 +2016-06-20 00:00:00,0.0,1020.5068060000001,0.0,100.0,7.045827397999999,0.24925,238.0710374833333 +2016-06-20 01:00:00,0.0,1020.4072779999999,0.0,100.0,6.548428405,0.5005,238.0726294333333 +2016-06-20 02:00:00,0.0,1020.1318060000001,0.0,100.0,6.078644425,0.885,238.07342538333333 +2016-06-20 03:00:00,0.0,1019.871361,0.0705,100.0,5.694992987999999,0.7440000000000001,238.07183343333335 +2016-06-20 04:00:00,0.0,1019.8510560000001,9.36275,100.0,5.431253171,0.48108333299999995,238.07243043333332 +2016-06-20 05:00:00,0.0,1019.8072779999999,90.29083333,99.93333333,7.262062816,0.054916667,238.0708384666667 +2016-06-20 06:00:00,0.0,1019.4542220000001,205.2666667,93.18333333,11.03159435,0.4005,238.07103745000003 +2016-06-20 07:00:00,0.0,1019.0,199.1166667,89.86666667,13.50954868,0.998416667,238.07083848333335 +2016-06-20 08:00:00,0.0,1018.8901390000001,80.3525,81.83583333,16.1485906,0.980833333,238.0676546166667 +2016-06-20 09:00:00,0.0,1018.2995279999999,345.7666667,72.18833333,18.25670101,0.825833333,238.0670576166667 +2016-06-20 10:00:00,0.0,1017.5484720000001,547.2916667000001,65.22083333,19.20432334,1.871,238.06407271666671 +2016-06-20 11:00:00,0.0,1017.0411949999999,659.9583332999999,59.33583333,20.15276756,2.004916667,238.06088880000004 +2016-06-20 12:00:00,0.0,1016.5068060000001,581.5083333,56.455,20.86368978,1.98175,238.0592968666667 +2016-06-20 13:00:00,0.0,1015.7984720000001,623.6583333,55.6425,21.33955564,2.5660000000000003,238.0585009 +2016-06-20 14:00:00,0.0,1015.191194,365.175,56.4575,20.78561162,2.536333333,238.05670996666663 +2016-06-20 15:00:00,0.0,1014.4115,305.6333333,57.86166667,20.802871,2.59575,238.055715 +2016-06-20 16:00:00,0.0,1013.808917,209.3916667,59.70166667,20.31549889,2.762083333,238.05491901666667 +2016-06-20 17:00:00,0.0,1013.3427220000001,109.08083329999998,65.0,19.52485475,2.40825,238.05491903333333 +2016-06-20 18:00:00,0.0,1013.122417,48.04083333,82.56333333,17.15374422,1.258666667,238.05472001666666 +2016-06-20 19:00:00,0.0,1012.99425,19.02916667,94.14166667,15.60533096,0.9940000000000001,238.05690895 +2016-06-20 20:00:00,16.81601448,1013.284861,6.563666667000001,97.45,14.77277118,1.9850833330000002,238.0592968666667 +2016-06-20 21:00:00,45.58973587,1013.53075,0.0,99.95,14.37333973,2.315083333,238.0618837833334 +2016-06-20 22:00:00,22.37747914,1013.098472,0.0,100.0,14.51716793,2.02975,238.06228178333336 +2016-06-20 23:00:00,5.77550244,1012.940611,0.0,99.38333333,14.92974938,2.821416667,238.0662616166667 +2016-06-21 00:00:00,0.0,1013.116667,0.0,99.70833333,15.04974319,2.844083333,238.06646061666666 +2016-06-21 01:00:00,0.0,1013.331222,0.0,99.925,15.08097445,2.735666667,238.06825156666665 +2016-06-21 02:00:00,0.0,1013.6572779999999,0.0,100.0,15.12782135,2.489583333,238.06845056666666 +2016-06-21 03:00:00,5.484245352,1013.896833,0.0,100.0,15.13768385,1.543166667,238.06825158333334 +2016-06-21 04:00:00,0.0,1014.502583,3.882666667,100.0,15.16973699,1.5501666669999998,238.0682515666667 +2016-06-21 05:00:00,0.0,1014.922889,19.17541667,100.0,15.35301521,1.275416667,238.0696445333334 +2016-06-21 06:00:00,0.0,1015.020306,44.39,100.0,15.68340912,0.7566666670000001,238.07123645000001 +2016-06-21 07:00:00,0.0,1015.362444,152.43333330000002,96.65833333,16.87923783,1.4955833330000001,238.07024150000004 +2016-06-21 08:00:00,0.0,1016.166083,176.69166669999998,92.23333333,17.64604758,1.61675,238.06825155 +2016-06-21 09:00:00,0.0,1016.666667,193.0,89.05,18.24437287,1.314416667,238.06785356666668 +2016-06-21 10:00:00,5.3300533439999995,1016.902583,196.75,85.675,18.868176300000002,1.183666667,238.06904755000002 +2016-06-21 11:00:00,0.0,1017.113028,339.375,81.82083333,19.85771429,1.072,238.06785358333335 +2016-06-21 12:00:00,0.0,1017.16925,491.2333333000001,76.38666667,21.61734952,1.151333333,238.06387371666668 +2016-06-21 13:00:00,0.0,1017.072417,527.175,70.895,22.63565314,1.408916667,238.05889888333334 +2016-06-21 14:00:00,0.0,1017.1,338.2916667,71.43083333,22.51648121,1.5580833330000001,238.05670995000003 +2016-06-21 15:00:00,0.0,1017.135917,194.05833330000002,77.69166667,21.1135399,2.0340833330000003,238.05790391666667 +2016-06-21 16:00:00,0.0,1017.151056,213.80833330000002,76.90916667,21.74063083,1.767166667,238.05631198333333 +2016-06-21 17:00:00,0.0,1016.889083,140.91666669999998,78.495,21.70035894,0.5925,238.05651096666668 +2016-06-21 18:00:00,0.0,1017.0931939999999,47.31916667,85.23833333,20.63274279,0.62525,238.05452101666665 +2016-06-21 19:00:00,0.0,1017.460917,21.44916667,98.125,18.547644899999998,0.8240000000000001,238.05611298333335 +2016-06-21 20:00:00,5.198193336,1017.5703060000001,3.538583333,98.20833333,17.82028517,0.7905,238.05790391666667 +2016-06-21 21:00:00,0.0,1017.8765279999999,0.0535,99.3,17.38715683,0.883,238.05869988333336 +2016-06-21 22:00:00,0.0,1018.223944,0.0,99.225,17.43235998,1.136666667,238.05889886666668 +2016-06-21 23:00:00,0.0,1018.511972,0.0,99.25,17.12826608,0.40700000000000003,238.05989383333338 +2016-06-22 00:00:00,0.0,1018.541667,0.0,100.0,16.48638139,0.00075,238.06148578333338 +2016-06-22 01:00:00,0.0,1018.5713609999999,0.0,100.0,16.15927498,0.0,238.06188378333334 +2016-06-22 02:00:00,0.0,1018.4203060000001,0.0,100.0,15.90613736,0.0,238.06327673333337 +2016-06-22 03:00:00,0.0,1018.4296939999999,0.0,100.0,15.82805919,0.0,238.06466966666673 +2016-06-22 04:00:00,0.0,1018.6312220000001,3.498583333,100.0,16.05736243,0.0,238.06327673333337 +2016-06-22 05:00:00,0.0,1018.982278,17.33666667,100.0,16.48555952,0.00125,238.0620827666667 +2016-06-22 06:00:00,0.0,1019.352583,91.525,100.0,17.70768824,0.44983333299999995,238.0624807666667 +2016-06-22 07:00:00,0.0,1019.7135,168.45833330000002,93.56666667,19.65388919,0.876416667,238.06168478333336 +2016-06-22 08:00:00,0.0,1020.107278,162.04166669999998,88.91666667,20.23002384,1.04225,238.05909788333335 +2016-06-22 09:00:00,0.0,1020.1656109999999,296.4333333,84.01916667,21.54173699,1.220666667,238.0577049166667 +2016-06-22 10:00:00,0.0,1020.154695,480.61666669999994,76.52833333,23.31945348,1.185916667,238.05491901666667 +2016-06-22 11:00:00,0.0,1019.949528,355.9416667,77.04083333,23.57012548,0.719916667,238.0541230166667 +2016-06-22 12:00:00,0.0,1020.005167,374.5166667,74.81583333,24.49966656,0.479833333,238.05133713333336 +2016-06-22 13:00:00,0.0,1019.897417,274.6833333,72.155,24.76841981,0.512166667,238.05014316666666 +2016-06-22 14:00:00,0.0,1019.91925,276.1416667,71.82083333,25.07580121,0.48458333299999995,238.04835221666667 +2016-06-22 15:00:00,0.0,1019.794833,174.8583333,75.02666667,24.95662928,0.4395,238.04934719999997 +2016-06-22 16:00:00,0.0,1019.535917,150.1416667,77.43333333,24.41172589,0.6315,238.0513371333333 +2016-06-22 17:00:00,0.0,1019.4078609999999,203.7741667,71.53333333,25.29195444,0.5488333329999999,238.05034218333336 +2016-06-22 18:00:00,0.0,1019.2906109999999,65.83166667,72.15666667,24.91060426,0.422833333,238.05014319999998 +2016-06-22 19:00:00,0.0,1019.214083,50.82833333,83.8225,23.261922199999997,0.214,238.0495462 +2016-06-22 20:00:00,0.0,1019.008333,12.47141667,97.175,19.80100489,0.213,238.05113813333332 +2016-06-22 21:00:00,0.0,1019.102583,0.1695,99.99166667,17.44633186,0.417333333,238.05253111666664 +2016-06-22 22:00:00,0.0,1019.073472,0.0,100.0,16.15105623,0.36808333299999996,238.05531701666666 +2016-06-22 23:00:00,0.0,1018.771361,0.0,100.0,15.25110266,0.29683333300000003,238.05670996666672 +2016-06-23 00:00:00,0.0,1018.689083,0.0,100.0,14.43169288,0.16925,238.05770493333333 +2016-06-23 01:00:00,0.0,1018.391667,0.0,100.0,13.97473016,0.11675,238.0585009 +2016-06-23 02:00:00,0.0,1018.090139,0.0,100.0,13.5892706,0.27,238.0616848 +2016-06-23 03:00:00,0.0,1017.863028,0.054916667,100.0,13.17011414,0.09375,238.0618837666667 +2016-06-23 04:00:00,0.0,1017.659389,5.346416667,100.0,13.18737353,0.134083333,238.06228178333336 +2016-06-23 05:00:00,0.0,1017.645306,73.64833333,100.0,14.81468682,0.045,238.06208278333335 +2016-06-23 06:00:00,0.0,1017.725,198.85,96.05,18.40628233,0.6335833329999999,238.06248076666668 +2016-06-23 07:00:00,0.0,1017.6489439999999,191.4941667,85.79666667,22.16307479,0.752916667,238.05969485000003 +2016-06-23 08:00:00,0.0,1017.572417,52.06833333,73.94666667,25.19004189,0.8656666670000001,238.05869986666667 +2016-06-23 09:00:00,0.0,1017.3115,401.3958333,67.07166667,26.66202074,0.879916667,238.05551599999998 +2016-06-23 10:00:00,0.0,1016.88075,625.875,65.01083333,27.93757136,1.055916667,238.05412303333335 +2016-06-23 11:00:00,0.0,1016.50575,685.825,62.03333333,29.30352828,1.144416667,238.04855123333334 +2016-06-23 12:00:00,0.0,1016.2365,711.7583333,59.765,30.14101932,1.329166667,238.04357640000003 +2016-06-23 13:00:00,0.0,1015.8286390000001,702.85,54.9975,31.22342922,1.535916667,238.03939751666667 +2016-06-23 14:00:00,0.0,1015.4375560000001,659.4916667,53.6825,32.16940781,1.4038333330000001,238.03621363333332 +2016-06-23 15:00:00,0.0,1014.88075,587.8666667,53.03,32.68883306,1.2488333329999999,238.03322874999995 +2016-06-23 16:00:00,0.0,1014.3115,497.3916666999999,49.92916667,33.00854259,1.150166667,238.0334277333333 +2016-06-23 17:00:00,0.0,1013.7792220000001,296.1641667,49.04916667,32.28036099,1.41025,238.03322873333332 +2016-06-23 18:00:00,0.0,1013.319833,60.0025,54.03333333,31.08535415,0.824833333,238.03322875 +2016-06-23 19:00:00,0.0,1012.573472,64.93416667,64.58583333,29.00765314,0.4585,238.03700963333335 +2016-06-23 20:00:00,0.0,1012.4203050000001,9.84525,89.275,22.83372512,0.484416667,238.03641263333336 +2016-06-23 21:00:00,0.0,1012.6822779999999,0.078916667,96.14166667,19.69991421,0.42366666700000005,238.03661161666665 +2016-06-23 22:00:00,0.0,1012.776528,0.0,96.85,19.02597638,0.22341666699999999,238.03800458333333 +2016-06-23 23:00:00,0.0,1013.352583,0.0,99.55,17.93534772,0.15666666699999998,238.03860156666667 +2016-06-24 00:00:00,0.0,1013.4333330000001,0.0,100.0,17.25730052,0.22825,238.04098948333333 +2016-06-24 01:00:00,0.0,1013.370306,0.0,100.0,16.98772538,0.2175,238.0413874666667 +2016-06-24 02:00:00,0.0,1013.516667,0.0,100.0,16.7600659,0.302,238.0425814166667 +2016-06-24 03:00:00,0.0,1013.397417,0.03525,100.0,16.54144704,0.312416667,238.0449693666667 +2016-06-24 04:00:00,0.0,1013.375,10.18008333,100.0,18.32820417,0.30041666699999997,238.04278043333332 +2016-06-24 05:00:00,0.0,1013.418194,88.60833333,97.93333333,19.09172641,0.096416667,238.04178545000002 +2016-06-24 06:00:00,0.0,1013.583333,138.1383333,89.74166667,21.643964899999997,0.44491666700000004,238.04158644999998 +2016-06-24 07:00:00,0.0,1013.664083,176.7341667,82.83333333,23.2575,0.843666667,238.0413874666667 +2016-06-24 08:00:00,0.0,1013.414083,73.69,75.255,25.72416667,0.7553333329999999,238.04019351666668 +2016-06-24 09:00:00,0.0,1013.2822779999999,390.51,72.05416667,28.00166667,0.5974166670000001,238.03521868333334 +2016-06-24 10:00:00,0.0,1013.1484720000001,603.5083333,67.2625,29.71833333,0.8051666670000001,238.03243278333332 +2016-06-24 11:00:00,0.0,1012.891667,670.6916667,65.22416667,30.48916667,1.0111666670000001,238.0276569166667 +2016-06-24 12:00:00,0.0,1012.328167,609.2,63.13,31.82333333,0.95375,238.02407503333336 +2016-06-24 13:00:00,7.8631410960000006,1013.056111,39.53333333,87.44333333,24.43916667,2.0870833330000003,238.2431667 +2016-06-24 14:00:00,0.0,1013.5084449999999,249.9666667,100.0,19.0125,1.1025833329999999,238.7450279 +2016-06-24 15:00:00,0.0,1012.627583,499.925,92.65833333,24.465,1.535833333,238.66821648333334 +2016-06-24 16:00:00,0.0,1013.065611,346.75,86.625,25.85416667,1.052166667,238.6550828833334 +2016-06-24 17:00:00,0.0,1013.025,209.5241667,84.38333333,25.53083333,1.5700833330000001,238.65010808333332 +2016-06-24 18:00:00,0.0,1013.134389,80.9,83.95,24.47583333,1.48725,238.64831711666668 +2016-06-24 19:00:00,0.0,1012.8115,74.85083333,87.15833333,24.04583333,0.42108333299999995,238.64811815 +2016-06-24 20:00:00,0.0,1012.460917,16.62741667,93.98333333,22.48083333,0.491333333,238.64334230000006 +2016-06-24 21:00:00,0.0,1012.723944,0.177583333,100.0,20.37916667,0.39299999999999996,238.63936243333333 +2016-06-24 22:00:00,0.0,1012.5786390000001,0.0,100.0,20.14,0.279583333,238.6218510166667 +2016-06-24 23:00:00,0.0,1012.772417,0.0,100.0,20.45,0.19975,238.5796644333333 +2016-06-25 00:00:00,0.0,1012.173,0.0,100.0,19.56,0.23875,238.54603456666666 +2016-06-25 01:00:00,0.0,1011.1401390000001,0.0,100.0,18.84916667,0.370833333,238.51718051666668 +2016-06-25 02:00:00,0.0,1010.759389,0.0,100.0,18.32,0.016583333000000002,238.48892346666665 +2016-06-25 03:00:00,3.59821548,1011.4598609999999,0.0,100.0,19.11083333,0.374166667,238.46205935000003 +2016-06-25 04:00:00,0.0,1010.629222,1.503166667,100.0,19.43333333,0.162833333,238.44255801666668 +2016-06-25 05:00:00,0.0,1009.248,13.91975,100.0,19.28916667,1.133166667,238.4250466 +2016-06-25 06:00:00,0.0,1010.1816949999999,14.93583333,99.73333333,19.46416667,1.166083333,238.40594326666667 +2016-06-25 07:00:00,0.0,1009.9375560000001,40.81083333,99.63333333,18.4975,0.39883333299999996,238.40017244999999 +2016-06-25 08:00:00,0.0,1009.427583,62.48916667,100.0,18.54243239,0.41716666700000005,238.39400364999997 +2016-06-25 09:00:00,15.17110291,1009.5843890000001,111.255,99.85,19.00378574,0.3295,238.38524796666664 +2016-06-25 10:00:00,10.3530913,1009.339083,207.95833330000002,96.16666667,20.23742072,0.446666667,238.37888016666668 +2016-06-25 11:00:00,0.0,1009.2963609999999,250.1,90.59166667,21.70282457,0.34266666700000004,238.36873148333333 +2016-06-25 12:00:00,0.0,1008.7266390000001,236.65,88.775,22.10472164,0.41825,238.36116976666665 +2016-06-25 13:00:00,0.0,1008.05575,171.2208333,90.33333333,21.96335907,1.0455,238.35062311666664 +2016-06-25 14:00:00,0.0,1007.9978890000001,150.515,97.2,20.48480522,1.680833333,238.34365835000003 +2016-06-25 15:00:00,11.39531141,1008.7207779999999,114.53083329999998,96.2,18.23368849,2.562583333,238.33868349999997 +2016-06-25 16:00:00,0.0,1009.5400279999999,50.70166667,98.38333333,15.93079362,2.349166667,238.33350966666663 +2016-06-25 17:00:00,5.136267528,1009.839083,52.75916667,96.40833333,15.60861846,1.25425,238.3267439166667 +2016-06-25 18:00:00,0.0,1010.541556,47.2025,92.41666667,15.92832799,1.336833333,238.31659524999998 +2016-06-25 19:00:00,0.0,1011.6145560000001,44.54083333,88.56666667,16.00229678,1.0573333329999999,238.30724256666667 +2016-06-25 20:00:00,0.0,1011.955167,7.3755,93.58333333,15.34808396,0.813416667,238.30127276666667 +2016-06-25 21:00:00,0.0,1012.6921390000001,0.0705,96.30833333,14.86810872,1.30525,238.29410900000002 +2016-06-25 22:00:00,0.0,1013.50775,0.0,96.61666667,14.35936785,1.5866666669999998,238.28853719999998 +2016-06-25 23:00:00,0.0,1013.914083,0.0,97.925,13.91884263,1.93975,238.28236838333336 +2016-06-26 00:00:00,0.0,1013.616667,0.0,98.70833333,13.30901109,1.8435,238.27739356666666 +2016-06-26 01:00:00,0.0,1013.4234720000001,0.0,99.99166667,12.45754817,1.1975833329999999,238.2698318 +2016-06-26 02:00:00,0.0,1013.332278,0.0,100.0,11.88470101,1.147916667,238.26525498333334 +2016-06-26 03:00:00,0.0,1013.486972,0.025833332999999997,100.0,11.03077247,1.02525,238.25749423333332 +2016-06-26 04:00:00,0.0,1013.583333,8.7585,100.0,11.2502132,1.280666667,238.25192238333332 +2016-06-26 05:00:00,0.0,1014.119722,90.175,96.93333333,12.78465458,0.24916666699999998,238.24376368333333 +2016-06-26 06:00:00,0.0,1014.603639,161.8833333,91.19166667,14.97988378,0.379,238.23500796666667 +2016-06-26 07:00:00,0.0,1014.666667,94.34916667,93.26666667,14.48429291,0.7759999999999999,238.2340130166667 +2016-06-26 08:00:00,0.0,1014.8848609999999,96.80416667,87.58333333,15.92175299,1.477416667,238.22724723333332 +2016-06-26 09:00:00,0.0,1015.021361,384.9741667,74.29833333,17.21374112,1.6539166669999998,238.21968548333328 +2016-06-26 10:00:00,0.0,1014.8593890000001,569.0916667,68.87333333,18.203279100000003,2.155416667,238.21371568333328 +2016-06-26 11:00:00,0.0,1014.622417,565.4666667,65.27333333,18.96022635,2.4735,238.21053181666664 +2016-06-26 12:00:00,0.0,1014.497417,632.45,61.325,19.80429239,2.145333333,238.20416401666662 +2016-06-26 13:00:00,0.0,1013.927111,737.25,56.11083333,20.76013348,2.38525,238.20117911666662 +2016-06-26 14:00:00,0.0,1013.779694,560.525,53.76916667,21.19983682,2.0495,238.1930203833334 +2016-06-26 15:00:00,0.0,1013.642722,482.9333333000001,56.135,21.07491176,2.43375,238.1876475666667 +2016-06-26 16:00:00,0.0,1013.5286390000001,436.1083333000001,52.54583333,21.40037442,2.365333333,238.18127978333337 +2016-06-26 17:00:00,0.0,1013.4546939999999,116.2383333,63.09166667,19.46321409,1.68575,238.18147880000004 +2016-06-26 18:00:00,0.0,1013.760917,86.89416667,69.05583333,18.5575074,1.516083333,238.17829486666665 +2016-06-26 19:00:00,0.0,1014.2015279999999,59.33833333,69.50083333,17.34195368,1.3501666669999999,238.17411601666663 +2016-06-26 20:00:00,0.0,1014.482278,11.13908333,85.9125,14.7785243,0.8210833329999999,238.16993716666664 +2016-06-26 21:00:00,0.0,1014.608333,0.1395,87.40833333,14.25581155,0.95275,238.16754921666666 +2016-06-26 22:00:00,0.0,1014.9765279999999,0.0,94.25833333,13.17175789,0.32808333300000003,238.1659572833333 +2016-06-26 23:00:00,4.979375784,1015.197889,0.0,98.075,12.06962298,0.142166667,238.16337038333336 +2016-06-27 00:00:00,0.0,1015.409389,0.0,100.0,10.88530052,0.386166667,238.15939051666666 +2016-06-27 01:00:00,0.0,1015.166667,0.0,99.93333333,10.58367225,0.768083333,238.15879353333335 +2016-06-27 02:00:00,0.0,1015.534861,0.0,98.85833333,11.48937895,1.63825,238.15441566666664 +2016-06-27 03:00:00,0.0,1015.514083,0.043166667,99.95,10.43820031,0.6203333329999999,238.15302275 +2016-06-27 04:00:00,0.0,1015.6431949999999,4.875,100.0,9.506193601,0.10541666699999999,238.15023681666662 +2016-06-27 05:00:00,0.0,1015.952583,96.205,98.46666667,10.91899742,0.0915,238.14705293333336 +2016-06-27 06:00:00,0.0,1016.141667,171.4825,91.35,13.80378008,1.027666667,238.14327206666667 +2016-06-27 07:00:00,0.0,1016.4145560000001,151.7641667,88.925,14.668393,1.80125,238.14068513333328 +2016-06-27 08:00:00,0.0,1016.715611,80.13083333,80.055,16.22009376,1.736,238.13471533333333 +2016-06-27 09:00:00,0.0,1016.598472,307.7583333,76.43833333,16.92855035,2.05775,238.1359093 +2016-06-27 10:00:00,0.0,1016.3380279999999,409.475,74.58916667,17.52358815,2.640333333,238.13372036666667 +2016-06-27 11:00:00,0.0,1016.1260550000001,342.6833333,73.1775,18.07917592,2.336083333,238.13093446666664 +2016-06-27 12:00:00,0.0,1015.872417,186.05833330000002,76.04166667,17.65591009,2.4908333330000003,238.13013850000002 +2016-06-27 13:00:00,0.0,1015.9239439999999,281.5666667,81.67666667,17.55892879,3.103916667,238.1263576 +2016-06-27 14:00:00,0.0,1015.792722,288.75,81.41833333,17.97315399,2.3889166669999997,238.1233727166667 +2016-06-27 15:00:00,0.0,1015.698944,217.6083333,82.81666667,18.18108847,2.594166667,238.11780090000005 +2016-06-27 16:00:00,0.0,1015.379222,121.4625,83.275,18.24601662,2.22875,238.11919385000002 +2016-06-27 17:00:00,0.0,1014.958333,51.4075,87.25,17.58769443,2.1156666669999997,238.12197975000004 +2016-06-27 18:00:00,0.0,1014.753167,74.79,90.18333333,17.30332554,2.271583333,238.12038780000003 +2016-06-27 19:00:00,0.0,1014.5583330000001,30.54416667,90.74166667,17.18990673,2.301583333,238.11979083333335 +2016-06-27 20:00:00,0.0,1014.646833,9.41625,92.33333333,16.83323405,1.90425,238.1179999 +2016-06-27 21:00:00,0.0,1015.0713609999999,0.11408333300000001,91.68333333,16.60166667,2.20175,238.11700493333333 +2016-06-27 22:00:00,0.0,1015.2728890000001,0.0,97.15833333,16.27333333,1.625083333,238.1166069666667 +2016-06-27 23:00:00,0.0,1015.184389,0.0,100.0,15.57166667,1.6990833330000001,238.1178009166667 +2016-06-28 00:00:00,0.0,1015.139083,0.0,100.0,15.39166667,1.50675,238.11879585000005 +2016-06-28 01:00:00,0.0,1015.1406109999999,0.0,100.0,15.33916667,1.03125,238.11979083333338 +2016-06-28 02:00:00,0.0,1014.753167,0.0,100.0,15.135,0.47808333299999994,238.1205868166667 +2016-06-28 03:00:00,0.0,1014.8468330000001,0.0,100.0,14.73666667,0.806666667,238.1187958666667 +2016-06-28 04:00:00,0.0,1015.034389,6.743333333,100.0,14.12333333,0.183666667,238.11899485000004 +2016-06-28 05:00:00,0.0,1015.082278,63.28833333,100.0,14.1975,0.308916667,238.11600996666667 +2016-06-28 06:00:00,0.0,1015.1916669999999,65.72416667,100.0,15.14,0.36266666700000005,238.11461701666667 +2016-06-28 07:00:00,0.0,1015.2036390000001,125.6225,95.81666667,15.21909492,0.8640000000000001,238.11302504999995 +2016-06-28 08:00:00,0.0,1015.3119720000001,207.825,89.48333333,16.5496658,0.43475,238.1126270833333 +2016-06-28 09:00:00,0.0,1015.1963609999999,298.95,84.95833333,17.43071623,0.5419166670000001,238.11143311666663 +2016-06-28 10:00:00,0.0,1015.05575,363.9583333,82.83333333,18.73010123,0.677666667,238.10924418333335 +2016-06-28 11:00:00,0.0,1014.668778,417.175,78.44166667,19.51910162,0.6153333329999999,238.10904519999997 +2016-06-28 12:00:00,0.0,1014.0875560000001,415.9583333,72.42583333,20.47165521,0.81225,238.10805021666667 +2016-06-28 13:00:00,0.0,1013.4208890000001,311.125,75.49833333,20.55630838,0.7625,238.10824921666668 +2016-06-28 14:00:00,0.0,1012.822417,476.3083333000001,71.06583333,21.69049644,0.880916667,238.10566231666667 +2016-06-28 15:00:00,0.0,1012.323472,334.8666667,70.80166667,21.63378703,0.906083333,238.10426935 +2016-06-28 16:00:00,0.0,1011.8854439999999,379.6166667,65.77083333,22.2329342,1.32675,238.10347338333335 +2016-06-28 17:00:00,0.0,1011.2828609999999,215.7833333,67.295,21.80062774,1.40025,238.10287640000004 +2016-06-28 18:00:00,0.0,1010.6661939999999,104.95583329999998,70.07416667,21.18668681,1.5530000000000002,238.10387136666668 +2016-06-28 19:00:00,0.0,1010.3343890000001,34.11166667,81.3125,19.83634553,1.19425,238.1032744 +2016-06-28 20:00:00,0.0,1009.872417,4.65775,85.725,19.03748264,0.95725,238.10327440000003 +2016-06-28 21:00:00,0.0,1009.8296939999999,0.0155,87.11666667,18.68654184,1.848916667,238.10188143333335 +2016-06-28 22:00:00,0.0,1009.456806,0.0,90.975,17.67645697,1.051666667,238.1032744 +2016-06-28 23:00:00,0.0,1009.042722,0.0,89.80833333,17.52112252,1.666333333,238.10227940000004 +2016-06-29 00:00:00,0.0,1008.6021109999999,0.0,87.51666667,17.55646316,1.9650833330000002,238.10208043333333 +2016-06-29 01:00:00,0.0,1008.348472,0.0,92.525,16.917044100000002,1.7750833330000002,238.1026774166667 +2016-06-29 02:00:00,5.4601777920000005,1007.98075,0.0,95.71666667,16.38200321,1.20625,238.1028764 +2016-06-29 03:00:00,0.0,1007.733333,0.0,92.15833333,16.96800038,2.429916667,238.1042693666667 +2016-06-29 04:00:00,0.0,1007.985917,4.637416667,91.275,17.10196607,1.9996666669999998,238.10108546666672 +2016-06-29 05:00:00,0.0,1008.210917,40.46916667,89.20833333,17.58605068,2.8015,238.09949353333334 +2016-06-29 06:00:00,0.0,1008.552583,176.54166669999998,83.565,18.61586056,3.429916667,238.09730461666666 +2016-06-29 07:00:00,0.0,1008.9156109999999,204.715,78.49833333,19.36705467,3.7775,238.09511566666663 +2016-06-29 08:00:00,0.0,1009.0869720000001,97.5475,74.2625,19.69169546,3.34825,238.09332475 +2016-06-29 09:00:00,0.0,1009.127583,345.1066667,68.0725,20.30317076,2.9589999999999996,238.0941207 +2016-06-29 10:00:00,0.0,1009.473944,539.225,61.98583333,21.12340241,3.313166667,238.09073781666666 +2016-06-29 11:00:00,0.0,1009.66925,658.5666667,56.7525,21.69624956,3.5125,238.08775293333335 +2016-06-29 12:00:00,0.0,1009.916667,703.375,51.84333333,22.17869042,3.249666667,238.08476801666666 +2016-06-29 13:00:00,0.0,1009.775,704.7916667000001,51.25583333,22.55675311,3.222416667,238.08257908333334 +2016-06-29 14:00:00,0.0,1009.766667,658.9416667,45.84333333,22.80400415,2.216916667,238.07820121666668 +2016-06-29 15:00:00,0.0,1009.5281669999999,430.36666669999994,48.74,22.57416667,1.374166667,238.07720625 +2016-06-29 16:00:00,0.0,1009.0151390000001,350.025,47.50166667,22.23666667,1.169916667,238.07820121666666 +2016-06-29 17:00:00,0.0,1008.823944,273.15833330000004,48.41166667,22.675,0.700666667,238.07541533333335 +2016-06-29 18:00:00,0.0,1008.878639,95.78666667,55.9775,20.79583333,0.26375,238.07541533333335 +2016-06-29 19:00:00,0.0,1008.9630279999999,30.7125,82.31416667,18.22916667,0.168166667,238.07601229999997 +2016-06-29 20:00:00,0.0,1008.925,6.08825,91.7,15.61,0.1265,238.08039016666666 +2016-06-29 21:00:00,0.0,1009.052583,0.08783333300000001,94.675,13.36083333,0.10591666699999999,238.08098715000003 +2016-06-29 22:00:00,0.0,1009.1833330000001,0.0,96.69166667,11.725,0.01,238.0809871166667 +2016-06-29 23:00:00,0.0,1008.989083,0.0,99.53333333,10.9275,0.046166667,238.0827780666667 +2016-06-30 00:00:00,0.0,1008.4625560000001,0.0,100.0,10.445,0.07400000000000001,238.08437000000004 +2016-06-30 01:00:00,0.0,1008.277583,0.0,100.0,11.1325,0.003916667,238.0833750666667 +2016-06-30 02:00:00,0.0,1008.577583,0.0,100.0,12.03666667,0.00041666699999999996,238.0815841166667 +2016-06-30 03:00:00,0.0,1008.675,0.0,100.0,12.69583333,0.071833333,238.08078815000002 +2016-06-30 04:00:00,0.0,1008.930167,0.969333333,100.0,13.12833333,0.062666667,238.08098714999997 +2016-06-30 05:00:00,2.406519936,1009.2,8.239083333,100.0,13.49333333,0.1065,238.08039018333332 +2016-06-30 06:00:00,0.0,1009.3072779999999,23.90966667,100.0,13.76583333,0.043416667,238.08297706666667 +2016-06-30 07:00:00,4.836397896,1009.5703060000001,42.23916667,99.26666667,14.52916667,0.076083333,238.0819821166667 +2016-06-30 08:00:00,0.0,1010.033806,125.59166670000002,94.76666667,16.71083333,1.0344166670000001,238.08138513333333 +2016-06-30 09:00:00,0.0,1010.291667,310.5,89.85,17.95583333,1.4339166669999999,238.0799921833333 +2016-06-30 10:00:00,0.0,1010.377583,504.125,79.22083333,19.50166667,1.344916667,238.07919619999998 +2016-06-30 11:00:00,0.0,1010.491667,360.475,74.805,21.02916667,1.485,238.07820123333337 +2016-06-30 12:00:00,0.0,1010.522417,286.925,74.3475,21.4,1.48975,238.07581331666665 +2016-06-30 13:00:00,0.0,1010.385917,234.06666669999998,75.4225,20.44416667,1.6269999999999998,238.07680828333332 +2016-06-30 14:00:00,0.0,1010.752583,303.3166667,71.52333333,21.34666667,1.749166667,238.07183346666667 +2016-06-30 15:00:00,0.0,1010.75575,223.425,72.45083333,21.38166667,0.916416667,238.07143545000005 +2016-06-30 16:00:00,0.0,1010.509389,201.58333330000002,71.53416667,21.66583333,1.1395,238.0704404666666 +2016-06-30 17:00:00,0.0,1010.3296939999999,154.29166669999998,72.33833333,21.295,1.064166667,238.0726294 +2016-06-30 18:00:00,0.0,1010.216667,111.34,73.22833333,21.18833333,1.128416667,238.07163445 +2016-06-30 19:00:00,0.0,1010.4145560000001,43.85083333,76.4425,20.3775,1.148333333,238.07103745000003 +2016-06-30 20:00:00,0.0,1010.6739439999999,5.31375,86.0425,19.08833333,0.560583333,238.07143545 +2016-06-30 21:00:00,0.0,1011.01925,0.092,92.125,18.11083333,0.891833333,238.07402238333336 +2016-06-30 22:00:00,0.0,1011.310917,0.0,84.58333333,18.69916667,0.705666667,238.07501734999997 +2016-06-30 23:00:00,0.0,1011.40575,0.0,85.26666667,18.58833333,0.9764166670000001,238.07461936666667 +2016-01-07 00:00:00,0.0,1010.972417,0.0,88.95,18.31416667,1.9031666669999998,238.06628165000004 +2016-01-07 01:00:00,0.0,1010.947889,0.0,85.35833333,18.4925,1.63125,238.0668185166667 +2016-01-07 02:00:00,0.0,1011.072417,0.0,85.31666667,18.7425,2.096666667,238.06502896666666 +2016-01-07 03:00:00,0.0,1010.847417,0.015,90.30833333,17.81583333,1.54925,238.06323943333328 +2016-01-07 04:00:00,0.0,1010.7906109999999,8.708166667,96.9,17.03333333,0.8773333329999999,238.06252361666665 +2016-01-07 05:00:00,0.0,1011.072889,50.16833333,95.90833333,17.17833333,0.39241666700000005,238.0630605 +2016-01-07 06:00:00,0.0,1011.395306,92.26333333,93.39166667,17.55833333,1.101583333,238.06216571666664 +2016-01-07 07:00:00,0.0,1011.671833,155.61,82.59166667,19.865,1.21725,238.06288151666664 +2016-01-07 08:00:00,0.0,1011.970306,133.38333329999998,82.47166667,20.16166667,1.317083333,238.06162883333332 +2016-01-07 09:00:00,0.0,1012.021361,194.8833333,78.58833333,21.7525,1.093083333,238.05912351666666 +2016-01-07 10:00:00,0.0,1012.04425,183.1,75.94416667,22.03916667,1.4896666669999998,238.06001828333333 +2016-01-07 11:00:00,0.0,1011.978167,409.15,71.77666667,22.41166667,2.477583333,238.05858666666666 +2016-01-07 12:00:00,0.0,1011.6734720000001,278.0666667,71.59583333,22.3825,2.5213333330000003,238.05966038333335 +2016-01-07 13:00:00,0.0,1011.279694,230.3583333,70.82,22.19333333,2.343833333,238.0605551333333 +2016-01-07 14:00:00,0.0,1011.3369720000001,454.74166669999994,69.13083333,22.76583333,2.510416667,238.06180783333335 +2016-01-07 15:00:00,0.0,1011.056806,291.3333333,70.54583333,22.58833333,2.497833333,238.06198674999996 +2016-01-07 16:00:00,0.0,1010.8046949999999,261.7916667,69.53833333,22.395,2.7295,238.06037619999998 +2016-01-07 17:00:00,0.0,1010.91925,105.39166670000002,70.64333333,21.79333333,1.270833333,238.06323945 +2016-01-07 18:00:00,0.0,1010.8510560000001,91.51583333,73.9125,21.69,0.895083333,238.06502898333335 +2016-01-07 19:00:00,0.0,1010.622417,33.29083333,84.91083333,21.1525,0.46133333299999996,238.06431316666666 +2016-01-07 20:00:00,0.0,1010.3296939999999,3.893333333,92.4,19.3875,0.6645,238.06556584999998 +2016-01-07 21:00:00,0.0,1010.0151390000001,0.08175,93.88333333,17.225,1.060416667,238.06574478333334 +2016-01-07 22:00:00,0.0,1009.5615,0.0,98.19166667,16.22333333,0.1465,238.06807116666667 +2016-01-07 23:00:00,0.0,1009.2953060000001,0.0,95.00833333,18.38916667,0.875166667,238.0700396666667 +2016-02-07 00:00:00,0.0,1009.003167,0.0,86.35833333,19.75583333,1.0075,238.11155681666665 +2016-02-07 01:00:00,0.0,1008.569833,0.0,92.48333333,19.15833333,0.889833333,238.10815673333332 +2016-02-07 02:00:00,0.0,1007.9416669999999,0.0,94.73333333,18.2975,0.9863333329999999,238.10797778333333 +2016-02-07 03:00:00,0.0,1007.966667,0.016,86.91666667,18.225,1.080083333,238.10618821666662 +2016-02-07 04:00:00,0.0,1008.108333,1.5834166669999998,84.91666667,18.27333333,0.8275,238.10618824999997 +2016-02-07 05:00:00,0.0,1008.330167,20.63941667,84.425,18.61416667,1.467416667,238.10690405 +2016-02-07 06:00:00,5.310584712,1009.356694,30.11025,93.55,15.0625,1.315166667,238.10475660000006 +2016-02-07 07:00:00,0.0,1009.870306,61.6575,90.46666667,14.15833333,0.786083333,238.10350395 +2016-02-07 08:00:00,0.0,1010.270778,76.79416667,91.21666667,13.83416667,0.808083333,238.10117755000002 +2016-02-07 09:00:00,4.920031176,1010.8848609999999,83.84666667,93.55833333,13.85833333,0.46366666700000003,238.10099858333334 +2016-02-07 10:00:00,2.422933128,1011.115611,114.88083329999999,93.60833333,14.265,0.29375,238.10028276666665 +2016-02-07 11:00:00,5.0918717760000005,1011.6703060000001,140.04166669999998,93.66666667,14.75833333,0.718333333,238.09974590000002 +2016-02-07 12:00:00,4.980405696,1011.6239439999999,166.4916667,93.4,14.42916667,0.727,238.10010383333338 +2016-02-07 13:00:00,0.0,1011.79425,479.15,82.98083333,16.2775,1.363083333,238.10117753333338 +2016-02-07 14:00:00,0.0,1011.606806,665.8,72.795,18.04833333,1.85375,238.099388 +2016-02-07 15:00:00,0.0,1011.6739439999999,299.0,70.59416667,17.8425,2.51225,238.09724058333333 +2016-02-07 16:00:00,0.0,1011.805167,291.155,68.4425,18.70916667,1.092166667,238.09580895 +2016-02-07 17:00:00,2.998479192,1012.599417,102.0708333,73.455,16.58,1.700166667,238.09580895 +2016-02-07 18:00:00,0.0,1013.138028,65.20416667,70.46083333,16.065,0.891916667,238.09724058333333 +2016-02-07 19:00:00,0.0,1013.48275,49.2325,75.11666667,15.9,0.634916667,238.0958089333333 +2016-02-07 20:00:00,0.0,1014.254111,12.69291667,80.59416667,14.08,0.18225,238.09741954999996 +2016-02-07 21:00:00,0.0,1015.0385,0.1255,94.63333333,10.715,0.096166667,238.09473519999997 +2016-02-07 22:00:00,0.0,1015.720306,0.0,94.58333333,10.83916667,0.42916666700000006,238.09616686666666 +2016-02-07 23:00:00,0.0,1015.611972,0.0,99.475,9.6975,0.223333333,238.09580893333327 +2016-03-07 00:00:00,0.0,1015.6869720000001,0.0,100.0,8.274166667000001,0.00225,238.23908565 +2016-03-07 01:00:00,0.0,1015.7822779999999,0.0,100.0,7.410583333,0.0,238.24013046666664 +2016-03-07 02:00:00,0.0,1015.634389,0.0,100.0,6.82475,0.0048333329999999996,238.2405484 +2016-03-07 03:00:00,0.0,1015.64425,0.0,100.0,6.9175,0.001,238.23908568333331 +2016-03-07 04:00:00,0.0,1015.990611,3.21375,100.0,8.263333333,0.079666667,238.23992151666664 +2016-03-07 05:00:00,0.0,1016.314556,29.54166667,100.0,9.440833332999999,0.043916667,238.23720501666665 +2016-03-07 06:00:00,0.0,1016.590611,96.58083333,97.88333333,11.4225,0.26858333300000004,238.2344885 +2016-03-07 07:00:00,0.0,1016.827583,160.44166669999998,84.4575,13.9975,0.490333333,238.23532435 +2016-03-07 08:00:00,0.0,1016.972417,153.2833333,75.68416667,15.86083333,0.762166667,238.2338616333333 +2016-03-07 09:00:00,0.0,1016.833333,333.55,71.59,17.27666667,0.962166667,238.23114515 +2016-03-07 10:00:00,0.0,1016.908333,397.2416667,67.7525,17.715,1.113583333,238.23051826666665 +2016-03-07 11:00:00,33.68943718,1016.715139,258.51,83.88416667,15.11583333,0.8735,238.23051824999996 +2016-03-07 12:00:00,0.0,1016.4681949999999,214.4,89.55833333,15.785,0.84125,238.23135411666667 +2016-03-07 13:00:00,3.204028464,1016.776056,436.8916666999999,82.45166667,17.19916667,2.209333333,238.23281683333332 +2016-03-07 14:00:00,0.0,1016.621361,608.3916667000001,69.52833333,17.76583333,1.802416667,238.23177201666667 +2016-03-07 15:00:00,0.0,1016.370306,447.21666669999996,68.17083333,18.03166667,1.5395833330000002,238.23030930000002 +2016-03-07 16:00:00,0.0,1016.9197220000001,229.69,71.37083333,17.3325,1.754083333,238.2296824 +2016-03-07 17:00:00,22.51354565,1017.106806,127.5525,94.96666667,15.21833333,0.438666667,238.23198098333333 +2016-03-07 18:00:00,0.0,1016.9989439999999,99.84583333,87.075,17.055,0.454083333,238.2340706 +2016-03-07 19:00:00,0.0,1017.456222,55.44416667,90.26666667,17.295,0.082916667,238.23553331666665 +2016-03-07 20:00:00,0.0,1017.810917,7.72725,99.80833333,13.72666667,0.21,238.23553331666668 +2016-03-07 21:00:00,0.0,1017.983333,0.129583333,100.0,12.5,0.285416667,238.2361602 +2016-03-07 22:00:00,0.0,1018.2645550000001,0.0,100.0,10.78916667,0.209333333,238.23407059999997 +2016-03-07 23:00:00,0.0,1018.611972,0.0,100.0,10.21916667,0.017583333,238.23156305 +2016-04-07 00:00:00,0.0,1018.4380279999999,0.0,100.0,9.216666667,0.205833333,238.27147475000004 +2016-04-07 01:00:00,0.0,1018.3260560000001,0.0,100.0,8.929166667,0.078666667,238.27168368333335 +2016-04-07 02:00:00,0.0,1018.05575,0.0,100.0,8.543916667000001,0.027333332999999998,238.27126574999997 +2016-04-07 03:00:00,0.0,1017.926056,0.018833333,100.0,7.20975,0.034416667000000005,238.2702209666667 +2016-04-07 04:00:00,0.0,1017.848944,5.51275,100.0,6.929333333,0.034,238.26750446666668 +2016-04-07 05:00:00,0.0,1018.210917,40.28166667,100.0,9.019083333,0.060083332999999996,238.26687756666664 +2016-04-07 06:00:00,0.0,1018.3848609999999,85.1,100.0,10.965,0.171,238.26687758333333 +2016-04-07 07:00:00,0.0,1018.422417,142.79166669999998,99.79166667,12.6775,0.316083333,238.26875823333333 +2016-04-07 08:00:00,0.0,1018.267722,219.425,91.98333333,15.04333333,0.8613333329999999,238.26541484999998 +2016-04-07 09:00:00,0.0,1018.097417,443.53333330000004,82.60166667,17.86666667,1.118833333,238.2622804 +2016-04-07 10:00:00,0.0,1017.9119720000001,325.3,78.46583333,19.49083333,1.0135,238.26228040000004 +2016-04-07 11:00:00,0.0,1017.7615,424.4416666999999,70.35416667,19.85916667,1.134666667,238.26165353333332 +2016-04-07 12:00:00,0.0,1017.2963609999999,172.3225,75.4575,19.72583333,1.5561666669999998,238.25831015000003 +2016-04-07 13:00:00,0.0,1016.95575,186.0,75.90583333,19.2925,1.270916667,238.2574743 +2016-04-07 14:00:00,0.0,1016.815139,174.5725,78.84833333,18.62416667,0.829666667,238.25538466666663 +2016-04-07 15:00:00,0.0,1016.539083,193.325,77.47083333,19.1475,0.65875,238.2568474166667 +2016-04-07 16:00:00,0.0,1016.122417,305.3,73.75,20.13,0.86475,238.25622051666667 +2016-04-07 17:00:00,0.0,1015.5375560000001,194.91666669999998,73.53,20.915,0.677083333,238.25538466666663 +2016-04-07 18:00:00,0.0,1015.05,104.1891667,76.785,20.15416667,1.140666667,238.25371298333334 +2016-04-07 19:00:00,0.0,1014.7865,90.21166667,77.91666667,19.25916667,0.7809166670000001,238.2547577833333 +2016-04-07 20:00:00,0.0,1014.541667,10.67483333,91.64166667,16.34833333,0.517083333,238.25266815 +2016-04-07 21:00:00,0.0,1014.517722,0.111333333,99.71666667,13.5575,0.12216666699999999,238.25392193333334 +2016-04-07 22:00:00,0.0,1014.341667,0.0,100.0,13.76416667,0.166666667,238.2526681833333 +2016-04-07 23:00:00,0.0,1014.233333,0.0,100.0,14.5125,0.0665,238.25266816666667 +2016-05-07 00:00:00,0.0,1014.1021109999999,0.0,100.0,14.63916667,0.0,238.1117287666667 +2016-05-07 01:00:00,0.0,1013.7818060000001,0.0,100.0,14.9325,0.11225,238.11155979999998 +2016-05-07 02:00:00,0.0,1013.020889,0.0,100.0,14.635,0.03125,238.11240463333334 +2016-05-07 03:00:00,0.0,1012.2365,0.0,100.0,14.29666667,0.004083333,238.1144322 +2016-05-07 04:00:00,0.0,1012.095306,1.96625,100.0,14.44,0.00125,238.11291151666663 +2016-05-07 05:00:00,0.0,1011.988028,22.38291667,97.69166667,14.89333333,0.06975,238.11358736666662 +2016-05-07 06:00:00,0.0,1011.983333,79.53916667,92.56666667,17.05,0.20375,238.11172876666663 +2016-05-07 07:00:00,0.0,1011.983333,176.45,87.15833333,19.10083333,0.5715,238.11003913333332 +2016-05-07 08:00:00,0.0,1012.193195,133.5666667,82.0225,20.30166667,1.03525,238.10733573333334 +2016-05-07 09:00:00,0.0,1012.3260560000001,210.55,82.675,20.00916667,0.843833333,238.10412539999996 +2016-05-07 10:00:00,0.0,1012.4515279999999,207.55,80.665,19.70916667,0.7925,238.10513918333334 +2016-05-07 11:00:00,0.0,1012.6786390000001,409.7916667,71.41416667,20.76333333,1.5018333330000002,238.10243578333333 +2016-05-07 12:00:00,0.0,1012.739083,399.65,71.61583333,21.28916667,1.320833333,238.10125301666667 +2016-05-07 13:00:00,0.0,1012.4796949999999,446.7,68.61166667,21.75583333,1.39175,238.10040823333335 +2016-05-07 14:00:00,0.0,1012.223472,428.675,70.1075,21.84916667,1.764083333,238.10023923333333 +2016-05-07 15:00:00,0.0,1011.8760560000001,437.41666669999995,68.21083333,22.4175,1.94375,238.10040823333335 +2016-05-07 16:00:00,0.0,1011.6104439999999,257.775,69.02166667,21.97833333,1.620333333,238.10074616666668 +2016-05-07 17:00:00,2.6691611280000003,1011.2786390000001,220.3441667,73.88,20.92916667,0.912333333,238.09719791666666 +2016-05-07 18:00:00,0.0,1011.9931939999999,67.91583333,78.31916667,18.875,1.4205,238.09973236666667 +2016-05-07 19:00:00,0.0,1012.196833,63.135,80.9225,18.7525,0.8245,238.10091513333336 +2016-05-07 20:00:00,0.0,1012.5489439999999,6.525333333,84.31666667,17.165,0.5519166670000001,238.10159098333335 +2016-05-07 21:00:00,0.0,1013.0062220000001,0.057333333,83.93333333,16.83,2.06125,238.10378746666666 +2016-05-07 22:00:00,0.0,1013.5968330000001,0.0,83.14166667,15.66,1.575083333,238.10446333333334 +2016-05-07 23:00:00,0.0,1014.143194,0.0,81.49583333,14.845,1.62775,238.10480126666667 +2016-06-07 00:00:00,0.0,1014.460917,0.0,83.1,13.63083333,1.244583333,238.07134655000004 +2016-06-07 01:00:00,0.0,1014.660917,0.0,90.58333333,11.23666667,0.078916667,238.07168446666665 +2016-06-07 02:00:00,0.0,1014.8,0.0,95.63333333,9.059166667000001,0.027000000000000003,238.07320511666663 +2016-06-07 03:00:00,0.0,1015.11925,0.0,97.4,9.079166667,0.08433333300000001,238.0726982333333 +2016-06-07 04:00:00,0.0,1015.3083330000001,4.468166667,99.625,8.805833332999999,0.02475,238.07489476666663 +2016-06-07 05:00:00,0.0,1015.9197220000001,47.76083333,96.675,10.0325,0.21608333300000002,238.07219135000003 +2016-06-07 06:00:00,0.0,1016.091667,119.895,92.14166667,12.85916667,0.501416667,238.07219136666671 +2016-06-07 07:00:00,0.0,1016.6015279999999,149.4591667,88.13333333,13.9375,0.623166667,238.07100863333332 +2016-06-07 08:00:00,0.0,1017.0062220000001,173.47666669999998,86.45833333,14.10666667,0.922166667,238.06915 +2016-06-07 09:00:00,0.0,1017.26925,375.2583333,77.30666667,15.67333333,1.379083333,238.06931896666663 +2016-06-07 10:00:00,0.0,1017.383333,581.4,71.36666667,17.25333333,1.321,238.06475695000003 +2016-06-07 11:00:00,0.0,1017.508333,508.775,67.35,18.60583333,1.5546666669999998,238.06239146666667 +2016-06-07 12:00:00,0.0,1017.4296939999999,641.275,62.53416667,19.40416667,1.6335,238.05850533333333 +2016-06-07 13:00:00,0.0,1017.184389,695.2,59.7125,19.43916667,2.250083333,238.05664673333334 +2016-06-07 14:00:00,0.0,1016.9713609999999,595.9416667,56.55166667,21.36916667,1.2731666670000001,238.0546191666667 +2016-06-07 15:00:00,0.0,1016.6568060000001,366.96666669999996,58.17666667,20.665,2.20275,238.05157785000003 +2016-06-07 16:00:00,0.0,1016.40575,420.475,52.6075,21.13,2.278916667,238.05022613333333 +2016-06-07 17:00:00,0.0,1016.2869720000001,282.18,53.02666667,20.67333333,2.27325,238.05056406666665 +2016-06-07 18:00:00,0.0,1016.5707779999999,98.54583333,55.96833333,20.08333333,2.498333333,238.05140888333335 +2016-06-07 19:00:00,0.0,1016.847417,54.62333333,59.0525,19.04333333,1.158583333,238.05360538333332 +2016-06-07 20:00:00,0.0,1016.934861,8.498333333,78.78833333,15.56083333,0.236083333,238.05478813333335 +2016-06-07 21:00:00,0.0,1017.333333,0.047416667,93.6,12.69416667,0.21716666699999998,238.0576605 +2016-06-07 22:00:00,0.0,1017.460917,0.0,96.10833333,11.4425,0.23525,238.0590122 +2016-06-07 23:00:00,0.0,1017.697889,0.0,98.975,10.915,0.051583332999999995,238.05884325 +2016-07-07 00:00:00,0.0,1017.8296949999999,0.0,100.0,9.905,0.08808333300000001,238.03820358333328 +2016-07-07 01:00:00,0.0,1017.6615,0.0,100.0,8.690833332999999,0.08,238.04218343333335 +2016-07-07 02:00:00,0.0,1017.333333,0.0,100.0,7.745416667000001,0.00425,238.04397438333334 +2016-07-07 03:00:00,0.0,1017.472889,0.01225,100.0,7.2030833329999995,0.016833333,238.04457135000004 +2016-07-07 04:00:00,0.0,1017.541667,4.789166667,100.0,6.834833333,0.01625,238.04695926666668 +2016-07-07 05:00:00,0.0,1017.9135,51.40833333,100.0,8.224833333,0.055666667,238.04377540000004 +2016-07-07 06:00:00,0.0,1018.5754720000001,170.825,90.90833333,12.03333333,0.24225,238.04377538333335 +2016-07-07 07:00:00,0.0,1018.85,209.3258333,82.10333333,14.895,0.5479166670000001,238.0433774166667 +2016-07-07 08:00:00,0.0,1018.926056,85.29166667,68.02,17.68333333,0.670583333,238.04098948333333 +2016-07-07 09:00:00,0.0,1018.8046939999999,386.7416667,62.59416667,18.92,0.7855833329999999,238.03979553333332 +2016-07-07 10:00:00,2.697949992,1018.497417,654.575,58.86166667,20.2325,1.0155,238.03621363333332 +2016-07-07 11:00:00,0.0,1018.1401390000001,720.6166667,58.29416667,21.10416667,1.1815,238.03263176666667 +2016-07-07 12:00:00,0.0,1017.9213609999999,720.2333332999999,52.85583333,21.60833333,1.5316666669999999,238.02885089999998 +2016-07-07 13:00:00,0.0,1017.8604439999999,683.2,49.04,22.415,1.259416667,238.02447303333335 +2016-07-07 14:00:00,0.0,1017.366667,642.1416667000001,44.92416667,23.52,1.067083333,238.0230800666667 +2016-07-07 15:00:00,0.0,1017.129694,506.70833330000005,45.5275,23.67916667,1.1,238.0200951666667 +2016-07-07 16:00:00,0.0,1016.745889,267.1416667,51.04083333,23.465,0.81725,238.01949820000002 +2016-07-07 17:00:00,0.0,1016.323472,172.925,53.82583333,23.17333333,0.437833333,238.0200952 +2016-07-07 18:00:00,0.0,1015.88075,88.505,63.515,22.41416667,0.18866666699999998,238.0196972 +2016-07-07 19:00:00,0.0,1015.5630279999999,31.91083333,78.2275,20.60583333,0.03475,238.01989619999998 +2016-07-07 20:00:00,0.0,1015.458333,7.6,87.13333333,17.98833333,0.153,238.02029416666667 +2016-07-07 21:00:00,0.0,1015.5796939999999,0.043666667,92.65,15.91416667,0.037000000000000005,238.02109013333333 +2016-07-07 22:00:00,0.0,1015.388028,0.0,96.525,13.53166667,0.036333332999999995,238.02327906666667 +2016-07-07 23:00:00,0.0,1015.1187779999999,0.0,99.575,12.40083333,0.030416667,238.02586598333335 +2016-08-07 00:00:00,0.0,1014.884389,0.0,100.0,11.5775,0.012416667,237.97353075 +2016-08-07 01:00:00,0.0,1014.985917,0.0,100.0,10.51583333,0.032583333,237.9745257 +2016-08-07 02:00:00,0.0,1014.922417,0.0,100.0,10.4475,0.02325,237.97711261666666 +2016-08-07 03:00:00,0.0,1014.3865,0.0,100.0,10.25416667,0.135583333,237.97910256666668 +2016-08-07 04:00:00,0.0,1013.9031669999999,2.5675,100.0,9.91,0.0975,237.9814904666667 +2016-08-07 05:00:00,0.0,1013.645306,30.43333333,100.0,10.87416667,0.0405,237.9808935 +2016-08-07 06:00:00,0.0,1013.622417,82.0475,100.0,13.11333333,0.15158333300000001,237.98208745000002 +2016-08-07 07:00:00,0.0,1013.608333,171.9916667,90.975,15.78666667,0.348916667,237.98089349999998 +2016-08-07 08:00:00,0.0,1013.2698330000001,131.6666667,77.28416667,19.21666667,0.44933333299999995,237.9783066 +2016-08-07 09:00:00,0.0,1012.6318060000001,321.225,68.8,22.4325,0.705666667,237.9783066 +2016-08-07 10:00:00,0.0,1012.357278,459.0666666999999,59.18833333,24.33416667,1.158833333,237.9749237 +2016-08-07 11:00:00,0.0,1012.447417,511.3583333000001,56.4675,25.11416667,0.918083333,237.96915288333332 +2016-08-07 12:00:00,0.0,1012.3036390000001,533.3666667,54.76416667,25.71666667,1.314666667,237.96238713333332 +2016-08-07 13:00:00,0.0,1012.139083,439.8083333000001,52.93083333,25.81583333,1.263583333,237.9578103 +2016-08-07 14:00:00,0.0,1012.00575,202.04166669999998,57.68666667,24.88166667,0.91225,237.95144246666666 +2016-08-07 15:00:00,0.0,1012.072889,91.28166667,68.82833333,23.285,1.281333333,237.94905456666672 +2016-08-07 16:00:00,0.0,1012.0880279999999,136.625,75.64583333,22.7875,0.773,237.94447771666668 +2016-08-07 17:00:00,0.0,1012.0318060000001,117.76583329999998,73.99,22.92416667,0.752583333,237.94427873333333 +2016-08-07 18:00:00,0.0,1011.999417,97.9575,65.32833333,23.6975,0.826333333,237.94268678333336 +2016-08-07 19:00:00,0.0,1012.23075,50.42,69.335,22.61333333,0.584333333,237.94009985000002 +2016-08-07 20:00:00,0.0,1012.856695,10.81925,80.41666667,21.02416667,0.507166667,237.93970188333333 +2016-08-07 21:00:00,0.0,1013.518194,0.110833333,93.51666667,18.54833333,0.142666667,237.9410948166667 +2016-08-07 22:00:00,0.0,1013.8562220000001,0.0,91.73333333,17.78333333,0.18775,237.94427871666667 +2016-08-07 23:00:00,0.0,1014.353639,0.0,96.65833333,16.33333333,0.41600000000000004,237.94587065 +2016-09-07 00:00:00,0.0,1014.546833,0.0,95.84166667,16.14666667,0.4095,237.87343709999996 +2016-09-07 01:00:00,0.0,1014.835917,0.0,91.95,15.14166667,0.285833333,237.8770189833333 +2016-09-07 02:00:00,0.0,1015.208333,0.0,87.375,15.205,0.3085,237.87522803333334 +2016-09-07 03:00:00,0.0,1015.228639,0.0,89.1,14.78083333,0.07475,237.87801395 +2016-09-07 04:00:00,0.0,1015.3380279999999,5.211416667,95.76666667,14.63166667,0.12625,237.88219279999998 +2016-09-07 05:00:00,0.0,1015.629111,37.81916667,95.29166667,16.12,0.42566666700000005,237.8849787 +2016-09-07 06:00:00,0.0,1016.275472,146.4083333,89.10833333,17.56,0.392166667,237.8851777 +2016-09-07 07:00:00,0.0,1016.4630279999999,205.44166669999998,84.18333333,18.8275,0.7283333329999999,237.88438173333336 +2016-09-07 08:00:00,0.0,1016.6239449999999,146.5916667,80.17583333,19.835,1.5546666669999998,237.88577466666666 +2016-09-07 09:00:00,0.0,1016.8119720000001,226.825,78.02666667,20.30166667,0.9301666670000001,237.88597366666667 +2016-09-07 10:00:00,0.0,1017.159861,383.2583333,75.56416667,20.81,0.8776666670000001,237.88537668333333 +2016-09-07 11:00:00,0.0,1017.3260560000001,501.16666669999995,72.0475,22.44916667,1.4120833330000002,237.88358576666667 +2016-09-07 12:00:00,0.0,1016.869833,676.9,60.48916667,23.06166667,1.5859166669999998,237.8792079 +2016-09-07 13:00:00,0.0,1016.277111,591.7666667000001,60.21333333,23.41583333,1.48175, +2016-09-07 14:00:00,0.0,1016.15,519.2,59.11583333,24.04083333,1.1450833329999999, +2016-09-07 15:00:00,0.0,1015.7354449999999,477.99166669999994,59.17166667,24.28833333,0.9744166670000001, +2016-09-07 16:00:00,0.0,1015.660444,287.4916667,59.80583333,25.05083333,0.899083333,237.86003504 +2016-09-07 17:00:00,0.0,1015.289083,276.2175,60.225,24.83833333,0.6705,237.85782514999997 +2016-09-07 18:00:00,0.0,1014.9843890000001,91.45,64.71166667,24.0625,0.44941666700000005,237.8575752 +2016-09-07 19:00:00,0.0,1014.741667,37.55166667,73.46,22.155,0.226666667,237.85833608333334 +2016-09-07 20:00:00,0.0,1014.542722,10.78816667,87.46666667,19.37916667,0.043416667,237.8586809333333 +2016-09-07 21:00:00,0.0,1014.464083,0.038,96.25833333,16.66666667,0.059000000000000004,237.85902578333335 +2016-09-07 22:00:00,0.0,1014.222417,0.0,99.93333333,15.155,0.005916667,237.85831239999996 +2016-09-07 23:00:00,0.0,1013.764083,0.0,99.43333333,14.3025,0.00825,237.85873156666665 +2016-10-07 00:00:00,0.0,1013.725,0.0,99.825,13.63333333,0.000666667,237.94619838333332 +2016-10-07 01:00:00,0.0,1013.733333,0.0,100.0,13.08666667,0.08516666699999999,237.94766004999997 +2016-10-07 02:00:00,0.0,1013.440139,0.0,100.0,12.65333333,0.03825,237.94745121666665 +2016-10-07 03:00:00,0.0,1012.95575,0.0,100.0,12.42,0.237833333,237.94701935 +2016-10-07 04:00:00,0.0,1012.9546939999999,3.11825,100.0,11.68833333,0.07958333299999999,237.94808079999996 +2016-10-07 05:00:00,0.0,1012.83075,56.13833333,100.0,13.325,0.047416667,237.94823898333334 +2016-10-07 06:00:00,0.0,1012.760917,131.7375,97.60833333,16.145,0.306416667,237.9495013333333 +2016-10-07 07:00:00,0.0,1012.6437779999999,198.2583333,92.26666667,18.96916667,0.473416667,237.9488353833333 +2016-10-07 08:00:00,0.0,1012.4296939999999,153.5,83.40666667,20.955,1.1703333329999999,237.94740851666668 +2016-10-07 09:00:00,0.0,1011.71725,364.5666667,73.205,24.10666667,1.2425,237.94051309999998 +2016-10-07 10:00:00,0.0,1011.2115,494.00833330000006,64.23583333,25.89333333,2.2095833330000003,237.9467204 +2016-10-07 11:00:00,0.0,1010.651056,366.7416667,66.61666667,27.06916667,2.614583333,237.9462632333333 +2016-10-07 12:00:00,0.0,1010.294833,626.4083333,60.00166667,27.68833333,2.6745,237.94726770000003 +2016-10-07 13:00:00,0.0,1009.583917,718.3583332999999,56.0725,28.475,2.68075,237.94863601666668 +2016-10-07 14:00:00,0.0,1008.832861,644.6416667000001,51.935,29.65666667,2.598166667,237.94973859999996 +2016-10-07 15:00:00,0.0,1008.194833,585.1583333,49.19833333,30.44416667,2.828833333,237.95045045000003 +2016-10-07 16:00:00,0.0,1007.428167,394.2916667,48.075,30.26833333,2.3915,237.95119710000003 +2016-10-07 17:00:00,0.0,1006.9068060000001,176.06666669999998,55.30916667,29.01,1.5105,237.95289288333333 +2016-10-07 18:00:00,0.0,1006.517722,96.09166667,66.5,27.82666667,0.648666667,237.95467405 +2016-10-07 19:00:00,0.0,1006.2604439999999,67.47666667,70.69583333,26.73833333,0.48,237.95668781666663 +2016-10-07 20:00:00,0.0,1006.233333,6.737916667,79.13333333,23.62333333,0.34675,237.95886289999999 +2016-10-07 21:00:00,0.0,1006.158333,0.028666667000000003,85.525,21.01333333,0.002833333,237.95869676666666 +2016-10-07 22:00:00,0.0,1006.0010560000001,0.0,84.16333333,19.19666667,0.029833332999999997,237.95990533333335 +2016-10-07 23:00:00,0.0,1006.073944,0.0,92.8,18.11083333,0.0048333329999999996,237.95779985 +2016-11-07 00:00:00,0.0,1005.7984720000001,0.0,97.96666667,17.10916667,0.10308333300000001,238.02412963333336 +2016-11-07 01:00:00,0.0,1005.565611,0.0,99.85833333,16.51166667,0.056833333,238.02410431666667 +2016-11-07 02:00:00,0.0,1005.491667,0.0,83.445,16.04,0.049083333,238.02401253333335 +2016-11-07 03:00:00,0.0,1005.676056,0.0,75.86583333,15.47,0.059166667,238.02354905 +2016-11-07 04:00:00,0.0,1005.7489439999999,3.889416667,77.41,15.42,0.058166667000000005,238.02327061666665 +2016-11-07 05:00:00,0.0,1006.121833,41.57333333,76.94,16.35833333,0.070333333,238.02477975 +2016-11-07 06:00:00,0.0,1006.7895560000001,90.81833333,80.55333333,19.795,0.18566666699999998,238.02932606666664 +2016-11-07 07:00:00,0.0,1007.1015279999999,165.45,81.13333333,22.4075,0.6114166670000001,238.0333582833333 +2016-11-07 08:00:00,0.0,1007.3739439999999,181.2166667,75.98916667,23.26916667,1.4763333330000001,238.03624521666666 +2016-11-07 09:00:00,0.0,1007.541667,343.225,72.04916667,23.55416667,1.12925,238.04001165 +2016-11-07 10:00:00,0.0,1007.472417,481.20833330000005,66.7925,24.44166667,1.875583333,238.04117595 +2016-11-07 11:00:00,0.0,1007.292722,495.88333330000006,63.7775,25.55166667,1.735333333,238.04457853333335 +2016-11-07 12:00:00,0.0,1007.2265279999999,370.0416667,61.5625,25.13333333,1.666833333,238.0436405 +2016-11-07 13:00:00,0.0,1007.416667,461.275,62.33666667,25.4575,1.326916667,238.0449202166667 +2016-11-07 14:00:00,0.0,1007.585917,492.04166669999995,59.70916667,25.9025,1.6200833330000002,238.045988 +2016-11-07 15:00:00,0.0,1007.973944,345.1,61.54833333,24.76,1.3871666669999998,238.04499931666666 +2016-11-07 16:00:00,0.0,1008.0380279999999,214.85,62.97,23.53416667,1.080666667,238.04597376666672 +2016-11-07 17:00:00,0.0,1007.847417,140.1166667,64.82,23.29666667,0.512416667,238.0458662166667 +2016-11-07 18:00:00,0.0,1007.5546939999999,100.9958333,66.6875,22.90916667,0.58975,238.04613353333332 +2016-11-07 19:00:00,0.0,1007.783806,53.17833333,67.91583333,21.72916667,0.41,238.04724085 +2016-11-07 20:00:00,0.0,1008.4588060000001,6.1420833329999995,68.45166667,19.85833333,0.339416667,238.04680424999995 +2016-11-07 21:00:00,0.0,1009.095306,0.041333333,73.05,18.66583333,0.40033333299999996,238.0458045 +2016-11-07 22:00:00,0.0,1009.232278,0.0,77.5925,17.79833333,0.19016666699999998,238.04656536666667 +2016-11-07 23:00:00,0.0,1009.1916669999999,0.0,74.89333333,17.83416667,0.25975,238.04634706666664 +2016-12-07 00:00:00,0.0,1009.2786390000001,0.0,77.34666667,16.99,0.008416667,238.02667326666665 +2016-12-07 01:00:00,0.0,1009.358333,0.0,85.53333333,14.70833333,0.04,238.02698490000003 +2016-12-07 02:00:00,0.0,1009.229694,0.0,88.175,13.29333333,0.18025,238.02551376666665 +2016-12-07 03:00:00,0.0,1009.1786390000001,0.0,91.69166667,12.23833333,0.025416667,238.0265309166667 +2016-12-07 04:00:00,0.0,1009.4989439999999,1.70925,92.60833333,12.23,0.068416667,238.02508663333333 +2016-12-07 05:00:00,0.0,1009.8681939999999,21.71633333,87.975,14.1575,0.35925,238.02662898333335 +2016-12-07 06:00:00,0.0,1009.997417,122.91,85.49166667,16.58583333,0.5365833329999999,238.02503601666663 +2016-12-07 07:00:00,0.0,1010.2004720000001,291.1,76.3225,19.12333333,0.72425,238.02645338333332 +2016-12-07 08:00:00,0.0,1010.383333,211.6166667,68.86833333,19.31333333,0.8245,238.0250281 +2016-12-07 09:00:00,0.0,1010.3380279999999,405.4333333,65.24833333,20.78583333,1.064083333,238.02558018333335 +2016-12-07 10:00:00,0.0,1010.2343890000001,408.525,64.15916667,21.18583333,1.146583333,238.02525906666665 +2016-12-07 11:00:00,0.0,1009.9416669999999,562.1416667000001,57.7275,22.4225,1.2605,238.0246516166667 +2016-12-07 12:00:00,0.0,1009.8354439999999,551.1083332999999,52.16333333,23.0475,1.17525,238.02578581666663 +2016-12-07 13:00:00,0.0,1009.3125560000001,417.2583333,51.75583333,22.99833333,0.95625,238.02559443333337 +2016-12-07 14:00:00,0.0,1008.681806,559.9,52.1325,23.82,0.8340833329999999,238.02512145 +2016-12-07 15:00:00,0.0,1008.363028,597.1833333,45.22666667,24.48916667,1.4284166669999998,238.02486993333332 +2016-12-07 16:00:00,0.0,1007.910444,377.075,46.0375,24.57166667,1.84975,238.02540933333339 +2016-12-07 17:00:00,0.0,1007.697417,230.79166669999998,50.99916667,23.86,1.146833333,238.02443173333336 +2016-12-07 18:00:00,0.0,1008.1791109999999,41.29,73.055,21.165,1.54325,238.0246643 +2016-12-07 19:00:00,2.659438584,1008.391667,50.04916667,90.06666667,18.76,0.556083333,238.0242245333333 +2016-12-07 20:00:00,0.0,1008.2572779999999,10.65358333,98.40833333,17.36333333,0.233666667,238.02444914999998 +2016-12-07 21:00:00,0.0,1008.916083,0.044583332999999996,99.84166667,15.86,0.213416667,238.02450608333334 +2016-12-07 22:00:00,0.0,1009.4536390000001,0.0,99.7,15.66166667,0.6940000000000001,238.02551375 +2016-12-07 23:00:00,0.0,1009.597417,0.0,100.0,14.84583333,0.39591666700000006,238.02526381666667 +2016-07-13 00:00:00,0.0,1009.197417,0.0,100.0,14.30916667,0.109916667,237.9830824166667 +2016-07-13 01:00:00,0.0,1008.9416669999999,0.0,100.0,12.77166667,0.180583333,237.98427638333337 +2016-07-13 02:00:00,0.0,1008.83075,0.0,100.0,12.59583333,0.03625,237.98805724999997 +2016-07-13 03:00:00,0.0,1008.8083330000001,0.0,100.0,12.2425,0.2855,237.9892512 +2016-07-13 04:00:00,0.0,1009.01925,1.524666667,100.0,12.53333333,0.146333333,237.9894502 +2016-07-13 05:00:00,0.0,1009.185917,30.10266667,100.0,13.22083333,0.226333333,237.9898482 +2016-07-13 06:00:00,0.0,1009.535917,143.305,97.05,14.35916667,0.3615,237.99203710000003 +2016-07-13 07:00:00,0.0,1009.7572779999999,209.8416667,91.53333333,15.985,0.700416667,237.99422603333335 +2016-07-13 08:00:00,8.0992644,1009.863028,229.55833330000002,82.73083333,17.36416667,0.62175,237.99581798333335 +2016-07-13 09:00:00,0.0,1009.759389,366.5666667,73.78166667,18.86916667,0.688666667,237.99442503333333 +2016-07-13 10:00:00,0.0,1009.4427220000001,284.15833330000004,65.485,18.57166667,1.4499166669999999,237.98566933333336 +2016-07-13 11:00:00,390.20031969999997,1010.1223060000001,68.69083333,92.75833333,13.80333333,2.274083333,237.99601698333333 +2016-07-13 12:00:00,2.483419608,1010.3083330000001,173.9025,96.79166667,13.55833333,0.428,238.03322875 +2016-07-13 13:00:00,0.0,1010.272417,463.8166666999999,85.36166667,16.35916667,0.966666667,238.0459643 +2016-07-13 14:00:00,0.0,1010.259389,404.15833330000004,79.47416667,17.91,0.9785,238.04755628333336 +2016-07-13 15:00:00,0.0,1010.164083,405.03333330000004,73.24916667,18.32083333,0.866583333,238.04875021666666 +2016-07-13 16:00:00,2.897572728,1009.9156109999999,513.8583333,66.6525,18.66416667,1.285666667,238.04516835000004 +2016-07-13 17:00:00,0.0,1009.716667,323.2075,64.46666667,19.085,1.276583333,238.04536733333336 +2016-07-13 18:00:00,0.0,1010.146833,52.40583333,72.9775,17.5825,0.8775,238.04616330000002 +2016-07-13 19:00:00,2.679977472,1010.89425,20.9925,93.28333333,14.20583333,0.82225,238.04536733333336 +2016-07-13 20:00:00,0.0,1010.8348609999999,3.8885,95.525,13.41083333,0.213333333,238.04496935 +2016-07-13 21:00:00,0.0,1011.699417,0.0,94.65833333,13.23,0.288333333,238.04377538333335 +2016-07-13 22:00:00,2.45625072,1012.25,0.0,96.125,13.2925,0.410083333,238.04477035000002 +2016-07-13 23:00:00,0.0,1011.95,0.0,97.3,13.075,0.47,238.0457653166667 +2016-07-14 00:00:00,0.0,1012.228639,0.0,97.64166667,12.85666667,0.1455,238.04397438333334 +2016-07-14 01:00:00,0.0,1012.315611,0.0,95.825,13.0475,0.40783333299999996,238.04457136666667 +2016-07-14 02:00:00,0.0,1012.541667,0.0,94.4,13.1225,0.44058333299999997,238.04636230000003 +2016-07-14 03:00:00,0.0,1012.698944,0.0,95.575,12.895,0.7885833329999999,238.04636230000003 +2016-07-14 04:00:00,0.0,1012.810917,1.341083333,96.025,12.32083333,0.604916667,238.04695926666662 +2016-07-14 05:00:00,0.0,1013.3885,13.84558333,96.79166667,11.9225,0.585833333,238.04676026666667 +2016-07-14 06:00:00,0.0,1013.784861,110.81083329999998,94.13333333,11.81916667,1.029583333,238.04556633333334 +2016-07-14 07:00:00,0.0,1014.2036390000001,161.99583330000002,84.79166667,13.43416667,1.801,238.04397438333334 +2016-07-14 08:00:00,3.460317528,1014.332278,130.4416667,78.28333333,15.05666667,2.870916667,238.04417338333337 +2016-07-14 09:00:00,0.0,1014.409389,362.9583333,70.1225,16.20833333,2.638,238.04385496000003 +2016-07-14 10:00:00,0.0,1014.44425,506.65833330000004,63.56,16.99583333,2.3795,238.04855123333334 +2016-07-14 11:00:00,0.0,1014.7656109999999,372.125,62.48833333,17.09333333,2.3883333330000003,238.04397438333334 +2016-07-14 12:00:00,0.0,1014.716667,236.7391667,62.3475,16.61333333,2.0693333330000003,238.04178545000002 +2016-07-14 13:00:00,0.0,1014.7739439999999,306.90833330000004,59.465,17.22,2.8551666669999998,238.03919853333335 +2016-07-14 14:00:00,0.0,1015.073945,327.375,59.36833333,17.27,2.40375,238.03362671666665 +2016-07-14 15:00:00,0.0,1015.00575,254.5916667,60.80416667,17.80833333,2.489416667,238.03223379999997 +2016-07-14 16:00:00,0.0,1015.3338060000001,343.9,57.94583333,18.54583333,2.255,238.02705995 +2016-07-14 17:00:00,0.0,1015.5010560000001,224.925,55.165,18.45,2.374583333,238.02745793333335 +2016-07-14 18:00:00,0.0,1015.6098609999999,89.66666667,54.71916667,18.14916667,2.59975,238.0246720166667 +2016-07-14 19:00:00,0.0,1016.01925,32.31666667,71.38416667,16.9225,1.2605,238.0230800666667 +2016-07-14 20:00:00,0.0,1016.50775,10.26325,79.52916667,14.53916667,0.485833333,238.02248310000002 +2016-07-14 21:00:00,0.0,1017.2598609999999,0.036583332999999996,85.6,13.3575,0.49958333299999996,238.0230800666667 +2016-07-14 22:00:00,0.0,1017.6885,0.0,93.16666667,11.90333333,0.35908333299999995,238.02487101666668 +2016-07-14 23:00:00,0.0,1018.2598609999999,0.0,92.31666667,10.91833333,0.077916667,238.02705995 +2016-07-15 00:00:00,0.0,1018.939556,0.0,85.30833333,12.42,0.171083333,238.02367705000003 +2016-07-15 01:00:00,0.0,1019.104694,0.0,88.88333333,12.67,0.5003333329999999,238.02686095 +2016-07-15 02:00:00,0.0,1019.020306,0.0,88.25,12.58583333,0.32458333300000003,238.0278559333333 +2016-07-15 03:00:00,0.0,1019.3812220000001,0.0,89.98333333,12.39916667,0.16825,238.02507001666666 +2016-07-15 04:00:00,0.0,1019.61925,0.9774166670000001,91.58333333,11.77583333,0.12825,238.02686093333332 +2016-07-15 05:00:00,0.0,1019.8468330000001,16.68691667,90.13333333,12.21916667,0.455,238.02725895 +2016-07-15 06:00:00,0.0,1020.4239439999999,59.62916667,88.975,12.72916667,0.849916667,238.02546798333336 +2016-07-15 07:00:00,0.0,1020.9671390000001,136.79166669999998,84.1825,13.6725,1.053083333,238.02546798333333 +2016-07-15 08:00:00,0.0,1021.5015279999999,208.06666669999998,77.17833333,14.2125,1.96675,238.0242740333333 +2016-07-15 09:00:00,0.0,1021.810917,457.475,71.00083333,15.51833333,1.5555833330000002,238.0187022 +2016-07-15 10:00:00,0.0,1021.9677220000001,419.74166669999994,65.0825,16.55833333,2.3071666669999997,238.0163143 +2016-07-15 11:00:00,0.0,1021.9333330000001,576.4416667,60.03333333,17.31333333,2.2505,238.01233445000003 +2016-07-15 12:00:00,0.0,1021.9322779999999,474.1,60.51333333,17.775,1.5435,238.01034451666666 +2016-07-15 13:00:00,0.0,1021.8593890000001,410.4166667,57.57166667,19.19833333,1.894333333,238.00835458333333 +2016-07-15 14:00:00,0.0,1021.863028,335.03333330000004,56.7675,19.03916667,2.894666667,238.00716063333334 +2016-07-15 15:00:00,0.0,1021.7703050000001,446.58333330000005,54.5575,19.5925,2.495833333,238.00238476666672 +2016-07-15 16:00:00,0.0,1021.667722,289.46666669999996,55.27333333,19.74,2.278666667,237.99999685000003 +2016-07-15 17:00:00,0.0,1021.4901390000001,242.5083333,59.63,19.9825,1.845083333,237.99900188333336 +2016-07-15 18:00:00,0.0,1021.5145560000001,86.6575,62.92083333,19.54416667,0.739916667,237.99800691666667 +2016-07-15 19:00:00,0.0,1021.6739439999999,54.545,68.3075,18.71916667,0.175166667,237.99641498333332 +2016-07-15 20:00:00,0.0,1021.6093890000001,6.604083332999999,87.35083333,14.96583333,0.046166667,237.99920088333337 +2016-07-15 21:00:00,0.0,1021.7739439999999,0.008416667,96.65833333,12.03083333,0.0435,238.0009918166667 +2016-07-15 22:00:00,0.0,1021.783333,0.0,99.85,10.51083333,0.002,238.00158881666667 +2016-07-15 23:00:00,0.0,1021.9369720000001,0.0,100.0,9.74,0.0,238.00119080000002 +2016-07-16 00:00:00,0.0,1022.0666669999999,0.0,100.0,8.923333332999999,0.0155,238.0043747166667 +2016-07-16 01:00:00,0.0,1022.0765279999999,0.0,100.0,8.473333333,0.074416667,238.00457368333332 +2016-07-16 02:00:00,0.0,1021.969833,0.0,100.0,8.104166667000001,0.059833332999999995,238.00616563333335 +2016-07-16 03:00:00,0.0,1021.708333,0.0,100.0,7.9211666670000005,0.040333333,238.00795659999997 +2016-07-16 04:00:00,0.0,1021.625,2.851333333,100.0,8.703333333,0.0,238.01014553333334 +2016-07-16 05:00:00,0.0,1022.002583,35.47333333,100.0,9.768333333,0.038,238.00656363333337 +2016-07-16 06:00:00,0.0,1022.026056,132.53833329999998,95.50833333,12.41833333,0.11800000000000001,238.00636465000002 +2016-07-16 07:00:00,0.0,1021.840611,110.32166670000001,94.09166667,13.74666667,0.4345,238.00735959999997 +2016-07-16 08:00:00,0.0,1022.082278,220.3916667,82.21916667,15.94833333,0.565,238.00696161666667 +2016-07-16 09:00:00,0.0,1022.3119720000001,259.625,74.57,18.15083333,0.8320833329999999,238.0051707 +2016-07-16 10:00:00,0.0,1022.214083,366.7083333,68.1225,19.95416667,1.19,238.00337975000002 +2016-07-16 11:00:00,0.0,1022.2213609999999,470.34166669999996,66.0075,19.9625,1.3015,238.0011908166667 +2016-07-16 12:00:00,0.0,1021.939083,393.1333333,67.36333333,20.08,1.5195833330000001,237.99681296666665 +2016-07-16 13:00:00,0.0,1021.543778,311.85,68.20916667,20.125,1.1763333329999999,237.99462403333334 +2016-07-16 14:00:00,0.0,1020.9937779999999,206.3416667,69.97833333,20.2225,0.6465,237.99422603333335 +2016-07-16 15:00:00,0.0,1020.8083330000001,229.3583333,68.98166667,20.9875,0.70075,237.99124111666666 +2016-07-16 16:00:00,0.0,1020.690139,270.8083333,68.8,22.36333333,1.03225,237.98726126666668 +2016-07-16 17:00:00,0.0,1020.25575,120.51666670000002,73.13583333,21.13583333,0.752,237.9872612833333 +2016-07-16 18:00:00,0.0,1020.034389,89.7875,74.735,20.75583333,0.6535833329999999,237.9866643 +2016-07-16 19:00:00,0.0,1020.184861,47.94583333,76.88833333,20.68416667,1.240333333,237.9834804 +2016-07-16 20:00:00,0.0,1020.527583,3.8015,88.31916667,18.53333333,0.51925,237.98367940000003 +2016-07-16 21:00:00,0.0,1020.642722,0.002833333,96.99166667,16.0025,0.07125,237.9864653 +2016-07-16 22:00:00,0.0,1020.314083,0.0,99.01666667,15.73083333,0.167333333,237.9880572333333 +2016-07-16 23:00:00,0.0,1020.121361,0.0,100.0,15.72666667,0.199333333,237.9880572333333 +2016-07-17 00:00:00,0.0,1019.909389,0.0,99.71666667,16.63666667,0.233916667,237.98785826666665 +2016-07-17 01:00:00,0.0,1019.689083,0.0,99.24166667,16.21416667,0.06308333299999999,237.9888532 +2016-07-17 02:00:00,0.0,1019.504694,0.0,97.96666667,15.96583333,0.061666667,237.9910421666667 +2016-07-17 03:00:00,0.0,1019.081806,0.0,99.34166667,15.54083333,0.037083332999999996,237.99442503333333 +2016-07-17 04:00:00,0.0,1018.628167,3.104083333,100.0,14.89333333,0.14575,237.9992009 +2016-07-17 05:00:00,0.0,1018.361972,25.11916667,100.0,15.58416667,0.02,238.00019583333335 +2016-07-17 06:00:00,0.0,1018.801528,69.38333333,96.475,17.52166667,0.229666667,237.9995988666667 +2016-07-17 07:00:00,0.0,1019.0,142.55833330000002,88.44166667,19.65166667,0.52725,238.0007928166667 +2016-07-17 08:00:00,0.0,1018.892722,244.6166667,83.125,21.725,0.680333333,237.99820594999997 +2016-07-17 09:00:00,0.0,1018.547417,300.7333333,79.2525,23.16,0.9894166670000001,237.99721093333335 +2016-07-17 10:00:00,0.0,1018.4463609999999,377.7416667,75.74833333,23.74333333,1.1049166670000001,237.99581799999999 +2016-07-17 11:00:00,0.0,1018.28075,401.975,68.31,24.495,1.5081666669999998,237.99004718333333 +2016-07-17 12:00:00,0.0,1018.034389,365.825,67.6625,24.22916667,1.9165833330000002,237.98507236666669 +2016-07-17 13:00:00,0.0,1017.8046939999999,296.975,68.58583333,24.60333333,1.152333333,237.98109248333333 +2016-07-17 14:00:00,0.0,1017.357861,243.875,68.45,24.65083333,0.904416667,237.98009753333335 +2016-07-17 15:00:00,0.0,1017.20575,243.7583333,67.9075,24.785,1.0856666670000001,237.97651564999998 +2016-07-17 16:00:00,0.0,1016.883333,253.79166669999998,66.365,24.7025,1.319166667,237.97432671666664 +2016-07-17 17:00:00,0.0,1016.7739439999999,222.29166669999998,66.1075,25.34083333,0.939916667,237.97054583333332 +2016-07-17 18:00:00,0.0,1016.7427220000001,82.31916667,66.3825,24.85083333,1.532416667,237.96994886666664 +2016-07-17 19:00:00,0.0,1016.885917,37.86916667,74.91666667,22.95416667,2.94425,237.96716296666668 +2016-07-17 20:00:00,0.0,1017.3848609999999,9.569916667000001,83.15333333,21.45916667,1.628333333,237.96656599999997 +2016-07-17 21:00:00,0.0,1017.690611,0.010833333,94.43333333,19.04666667,0.11,237.9691529 +2016-07-17 22:00:00,0.0,1017.7953050000001,0.0,98.41666667,17.1075,0.096666667,237.97253578333334 +2016-07-17 23:00:00,0.0,1017.94425,0.0,100.0,15.47916667,0.004,237.97552065 +2016-07-18 00:00:00,0.0,1017.989083,0.0,100.0,14.26666667,0.11725,237.98049550000005 +2016-07-18 01:00:00,0.0,1017.9369720000001,0.0,100.0,13.7475,0.1425,237.98188845 +2016-07-18 02:00:00,0.0,1017.866667,0.0,100.0,13.21666667,0.047416667,237.9834803833334 +2016-07-18 03:00:00,0.0,1017.809389,0.0,100.0,14.2475,0.048,237.98447538333335 +2016-07-18 04:00:00,0.0,1017.8213609999999,1.7755,100.0,13.24833333,0.037833333,237.98785826666665 +2016-07-18 05:00:00,0.0,1018.0921390000001,52.38,100.0,13.80333333,0.11716666699999999,237.9892512 +2016-07-18 06:00:00,0.0,1018.652583,149.7833333,98.775,17.44166667,0.440833333,237.98746026666663 +2016-07-18 07:00:00,0.0,1018.845306,232.3233333,90.45833333,19.8475,0.44791666700000005,237.98845521666667 +2016-07-18 08:00:00,0.0,1018.9369720000001,180.4966667,75.67083333,21.2025,1.1840000000000002,237.98945019999996 +2016-07-18 09:00:00,0.0,1018.9510560000001,344.9825,68.40916667,22.26916667,1.258916667,237.98686328333335 +2016-07-18 10:00:00,0.0,1018.935917,592.175,63.75,23.71833333,1.668166667,237.98168945000006 +2016-07-18 11:00:00,0.0,1018.93075,526.4,60.56833333,24.75333333,1.5623333330000002,237.97552066666665 +2016-07-18 12:00:00,0.0,1018.6713609999999,514.6833333000001,58.8425,25.56583333,1.1461666670000001,237.97114281666666 +2016-07-18 13:00:00,0.0,1018.666667,632.2666667000001,55.17833333,25.90833333,1.42125,237.96338208333336 +2016-07-18 14:00:00,0.0,1018.542722,511.25,50.29833333,27.08166667,1.3759166669999998,237.9594022 +2016-07-18 15:00:00,0.0,1018.053167,299.7416667,50.89833333,26.80166667,2.1635,237.95900421666667 +2016-07-18 16:00:00,0.0,1017.590139,212.9,49.9325,27.83,1.1925,237.9576112666667 +2016-07-18 17:00:00,0.0,1017.5536390000001,246.3141667,47.6225,27.96916667,0.932083333,237.9530344166667 +2016-07-18 18:00:00,0.0,1017.267722,88.935,48.9,27.52583333,1.16825,237.95303443333333 +2016-07-18 19:00:00,0.0,1017.3119720000001,43.43083333,58.62083333,26.02666667,0.300333333,237.95303441666667 +2016-07-18 20:00:00,0.0,1017.5754720000001,5.6145,81.01166667,21.01,0.37200000000000005,237.95363141666664 +2016-07-18 21:00:00,0.0,1017.9546939999999,0.02675,90.84166667,17.92333333,0.25875,237.9564173 +2016-07-18 22:00:00,0.0,1018.16925,0.0,95.95833333,15.87916667,0.017,237.95800925 +2016-07-18 23:00:00,0.0,1018.4416669999999,0.0,98.925,14.50916667,0.149666667,237.96099416666664 +2016-07-19 00:00:00,0.0,1018.427583,0.0,99.93333333,13.83083333,0.068583333,237.96358106666665 +2016-07-19 01:00:00,0.0,1018.341667,0.0,100.0,13.20583333,0.069333333,237.966367 +2016-07-19 02:00:00,0.0,1018.3130279999999,0.0,100.0,12.745,0.07641666700000001,237.96875491666665 +2016-07-19 03:00:00,0.0,1018.3380279999999,0.0,100.0,12.3475,0.07925,237.97253576666665 +2016-07-19 04:00:00,0.0,1018.2119720000001,1.7341666669999998,100.0,11.94333333,0.031,237.97552066666665 +2016-07-19 05:00:00,0.0,1018.511972,52.90758333,100.0,13.11416667,0.010666667,237.97591864999995 +2016-07-19 06:00:00,0.0,1018.809861,149.56666669999998,92.14166667,17.24333333,0.222833333,237.97711261666666 +2016-07-19 07:00:00,0.0,1019.16925,218.8433333,82.2425,19.73583333,0.39983333299999996,237.97890355 +2016-07-19 08:00:00,0.0,1019.2187779999999,192.325,76.06333333,22.34833333,0.65925,237.97651563333332 +2016-07-19 09:00:00,0.0,1019.0286390000001,338.6666667,66.45833333,25.385,0.8394166670000001,237.97353075 +2016-07-19 10:00:00,0.0,1018.810444,579.2666667000001,56.90666667,26.96916667,0.979833333,237.96994886666667 +2016-07-19 11:00:00,0.0,1018.465139,638.5583333,52.69833333,27.67,1.248916667,237.96358108333334 +2016-07-19 12:00:00,0.0,1018.134389,690.6833333,49.64666667,28.82583333,1.228083333,237.95621831666668 +2016-07-19 13:00:00,0.0,1017.685444,676.4916667,45.735,29.55333333,1.51375,237.94965151666668 +2016-07-19 14:00:00,0.0,1017.247417,583.95,43.3125,30.26833333,1.115,237.9448757 +2016-07-19 15:00:00,0.0,1016.8375550000001,516.6333333,41.47833333,30.16916667,1.374,237.9420897833334 +2016-07-19 16:00:00,0.0,1016.3083330000001,479.8916666999999,40.80416667,30.63583333,1.134083333,237.9393038666667 +2016-07-19 17:00:00,0.0,1015.776639,307.6883333,42.46666667,29.88083333,1.3593333330000001,237.94009985000002 +2016-07-19 18:00:00,0.0,1015.325,97.5775,47.915,29.87083333,1.109416667,237.94129383333336 +2016-07-19 19:00:00,0.0,1015.216667,42.20416667,63.35083333,28.04333333,0.56975,237.9416918166667 +2016-07-19 20:00:00,0.0,1015.327583,4.736333333,80.76583333,21.52333333,0.22025,237.94228880000003 +2016-07-19 21:00:00,0.0,1015.402111,0.023916667000000003,89.45,18.32666667,0.056416667000000004,237.94368173333336 +2016-07-19 22:00:00,0.0,1015.283333,0.0,95.38333333,16.50833333,0.08991666699999999,237.94547266666666 +2016-07-19 23:00:00,0.0,1015.2786390000001,0.0,98.63333333,15.47833333,0.134416667,237.94985053333335 +2016-07-20 00:00:00,0.0,1015.167722,0.0,99.76666667,14.6275,0.061166667,237.95283546666664 +2016-07-20 01:00:00,0.0,1015.064083,0.0,100.0,13.95166667,0.046083333,237.95562135 +2016-07-20 02:00:00,0.0,1014.901056,0.0,100.0,13.4225,0.091083333,237.95960121666667 +2016-07-20 03:00:00,0.0,1014.6489439999999,0.0,100.0,12.77666667,0.107833333,237.96019818333332 +2016-07-20 04:00:00,0.0,1014.522417,1.625666667,100.0,12.33583333,0.168916667,237.96378004999997 +2016-07-20 05:00:00,0.0,1014.5,62.9405,99.89166667,13.83916667,0.008166666999999999,237.96477503333332 +2016-07-20 06:00:00,0.0,1014.45,168.5916667,89.95,18.4575,0.0875,237.96696395 +2016-07-20 07:00:00,0.0,1014.198472,234.82166669999998,79.9875,20.825,0.419,237.96974985 +2016-07-20 08:00:00,0.0,1013.7687779999999,191.945,68.81166667,24.03916667,1.019833333,237.96895388333334 +2016-07-20 09:00:00,0.0,1013.48075,340.8591667,56.64916667,27.105,1.83975,237.965969 +2016-07-20 10:00:00,0.0,1013.1151390000001,601.7416667,50.77083333,28.97333333,2.28275,237.95960121666667 +2016-07-20 11:00:00,0.0,1012.628167,662.8166667,47.32916667,30.74833333,2.707666667,237.95343243333332 +2016-07-20 12:00:00,0.0,1012.05575,692.3416667,43.1425,31.815,2.843333333,237.94587065 +2016-07-20 13:00:00,0.0,1011.5495279999999,685.4583332999999,42.65,32.5575,2.900083333,237.9397018666667 +2016-07-20 14:00:00,0.0,1010.928167,641.0666667,41.00666667,33.15333333,2.397333333,237.9331351 +2016-07-20 15:00:00,0.0,1010.443778,556.4166667000001,40.88833333,33.37,2.394583333,237.92756329999997 +2016-07-20 16:00:00,0.0,1010.0021109999999,459.66666669999995,38.61666667,33.83666667,2.327666667,237.92457836666668 +2016-07-20 17:00:00,0.0,1009.5615,306.2583333,36.40333333,33.76583333,1.565333333,237.92338443333333 +2016-07-20 18:00:00,0.0,1008.928167,89.24083333,38.585,32.67333333,1.295916667,237.92617033333332 +2016-07-20 19:00:00,0.0,1008.805167,16.73875,62.8,27.7875,0.2725,237.9243793833333 +2016-07-20 20:00:00,0.0,1009.141667,2.030333333,76.97416667,24.59416667,0.332083333,237.92676730000002 +2016-07-20 21:00:00,0.0,1009.486972,0.0,71.45833333,25.44666667,0.359,237.92676729999997 +2016-07-20 22:00:00,0.0,1009.3296939999999,0.0,80.2025,23.45083333,0.245916667,237.9303491833333 +2016-07-20 23:00:00,0.0,1009.253639,0.0,87.48333333,21.96583333,0.17925,237.93214013333332 +2016-07-21 00:00:00,0.0,1009.54425,0.0,92.93333333,20.93333333,0.307583333,237.93472703333336 +2016-07-21 01:00:00,0.0,1009.7,0.0,92.2,20.85166667,0.196666667,237.93771193333336 +2016-07-21 02:00:00,0.0,1009.40575,0.0,89.8175,20.49583333,0.1645,237.94149280000002 +2016-07-21 03:00:00,0.0,1009.940028,0.0,72.40083333,21.4275,0.218,237.94029883333337 +2016-07-21 04:00:00,0.0,1010.577583,0.2395,72.37583333,23.05166667,0.484416667,237.94308476666671 +2016-07-21 05:00:00,0.0,1010.908806,4.7466666669999995,75.70416667,22.30416667,0.942083333,237.94388073333334 +2016-07-21 06:00:00,0.0,1011.7312220000001,19.57,87.02083333,21.195,1.051583333,237.94587066666665 +2016-07-21 07:00:00,10.07739463,1012.151528,23.21333333,93.38333333,19.87333333,0.60275,237.94945255000002 +2016-07-21 08:00:00,18.28438447,1012.745778,41.31833333,96.51666667,19.03583333,0.704416667,237.95223845 +2016-07-21 09:00:00,43.10717578,1013.008333,75.5475,99.10833333,18.37166667,0.572833333,237.95542233333333 +2016-07-21 10:00:00,2.445249984,1013.228639,180.3583333,95.68333333,19.80666667,0.6286666670000001,237.95542233333333 +2016-07-21 11:00:00,0.0,1013.158333,258.05,92.30833333,21.19166667,0.905666667,237.95840725000002 +2016-07-21 12:00:00,0.0,1012.9687779999999,327.03333330000004,86.71666667,21.88666667,1.337416667,237.96159115 +2016-07-21 13:00:00,0.0,1012.883333,493.84166669999996,81.1925,23.6875,1.40725,237.96378004999997 +2016-07-21 14:00:00,2.943667848,1012.7427220000001,497.41666669999995,79.21083333,24.4525,2.366666667,237.9627851 +2016-07-21 15:00:00,0.0,1012.366194,374.8666667,75.935,24.87833333,2.5365833330000003,237.96358105 +2016-07-21 16:00:00,0.0,1012.0619720000001,169.04166669999998,77.30666667,24.477434699999996,1.3985833330000002,237.96457601666665 +2016-07-21 17:00:00,0.0,1011.94425,85.47166667,79.83083333,24.11338512,0.889166667,237.9653720166667 +2016-07-21 18:00:00,0.0,1011.956806,79.16166667,80.19666667,23.82490685,1.208833333,237.9683569166667 +2016-07-21 19:00:00,0.0,1012.270778,23.19333333,90.8,21.64118391,0.310833333,237.96656598333334 +2016-07-21 20:00:00,0.0,1012.627583,2.8785,97.45,19.533073499999997,0.37208333299999996,237.96716296666668 +2016-07-21 21:00:00,0.0,1012.8380279999999,0.0,99.5,18.82215128,0.2915,237.97193878333334 +2016-07-21 22:00:00,0.0,1013.010917,0.0,99.71666667,18.88461381,0.016916667,237.9745257 +2016-07-21 23:00:00,0.0,1012.806806,0.0,100.0,18.43504797,0.142833333,237.97950053333338 +2016-07-22 00:00:00,0.0,1012.4593890000001,0.0,100.0,17.73398825,0.062916667,237.98109248333333 +2016-07-22 01:00:00,0.0,1012.354694,0.0,100.0,17.52358815,0.082083333,237.98188845000004 +2016-07-22 02:00:00,0.0,1012.4036390000001,0.0,100.0,17.25730051,0.07641666700000001,237.9832814166667 +2016-07-22 03:00:00,0.0,1012.348944,0.0,100.0,17.22935675,0.07925,237.98467438333333 +2016-07-22 04:00:00,0.0,1012.628639,2.1676666669999998,100.0,18.28135727,0.031,237.9854703666667 +2016-07-22 05:00:00,0.0,1012.434389,24.74583333,100.0,18.1498572,0.006083333000000001,237.98646531666665 +2016-07-22 06:00:00,0.0,1012.7088050000001,81.64083333,99.61666667,18.96597948,0.22375,237.98626631666664 +2016-07-22 07:00:00,0.0,1013.3083330000001,115.675,92.58333333,21.006696100000003,0.29991666699999997,237.98825624999998 +2016-07-22 08:00:00,0.0,1013.1963609999999,128.175,89.325,21.56310574,0.7340000000000001,237.9880572333333 +2016-07-22 09:00:00,0.0,1012.753167,378.8166667,78.19583333,24.61390724,0.759166667,237.99024616666665 +2016-07-22 10:00:00,0.0,1012.25575,528.8,71.86583333,26.31354557,0.9561666670000001,237.98586831666668 +2016-07-22 11:00:00,0.0,1012.0760560000001,627.05,63.5325,28.23837776,1.313916667,237.98149045000002 +2016-07-22 12:00:00,0.0,1011.8615,530.9916667,60.26833333,28.61561857,1.2155,237.97532164999998 +2016-07-22 13:00:00,0.0,1011.20575,444.16666669999995,57.7025,28.76766552,1.476833333,237.97372973333333 +2016-07-22 14:00:00,0.0,1010.973472,383.6416667,56.945,28.60411231,1.1089166670000001,237.96915288333332 +2016-07-22 15:00:00,0.0,1010.921833,268.815,54.88666667,28.48000913,1.412166667,237.9655710166667 +2016-07-22 16:00:00,0.0,1011.698361,77.605,73.94416667,23.58574111,1.1320000000000001,237.96059615 +2016-07-22 17:00:00,0.0,1012.0068060000001,45.3775,78.42416667,21.94774343,1.383583333,237.96059620000003 +2016-07-22 18:00:00,0.0,1012.06925,44.46583333,76.44083333,21.83679025,1.106416667,237.95940223333332 +2016-07-22 19:00:00,0.0,1012.327583,21.23916667,83.16333333,21.106964899999998,0.63575,237.95980020000002 +2016-07-22 20:00:00,0.0,1012.533805,2.2381666669999998,88.35833333,20.19714883,0.197166667,237.95980018333333 +2016-07-22 21:00:00,0.0,1012.88075,0.0,94.025,19.27336088,0.079416667,237.96139215000002 +2016-07-22 22:00:00,0.0,1012.5151390000001,0.0,96.725,19.02844201,0.09,237.96278511666665 +2016-07-22 23:00:00,0.0,1012.877,0.0,97.64166667,18.855026300000002,0.122916667,237.96397904999995 +2016-07-23 00:00:00,0.0,1013.33075,0.0,97.43333333,18.92899508,0.072666667,237.9673619666667 +2016-07-23 01:00:00,0.0,1013.225,0.0,98.04166667,18.51230425,0.046083333,237.9701478333333 +2016-07-23 02:00:00,0.0,1013.591667,0.0,99.54166667,18.37998231,0.09066666699999999,237.97432671666664 +2016-07-23 03:00:00,267.2111754,1013.138028,0.0,100.0,17.78658827,0.083666667,238.02845290000005 +2016-07-23 04:00:00,15.14697686,1012.747417,0.265833333,100.0,17.902472699999997,0.179833333,238.05750595000003 +2016-07-23 05:00:00,5.2319856719999995,1012.684389,14.97683333,100.0,17.992879000000002,0.019916667,238.06407270000003 +2016-07-23 06:00:00,0.0,1013.029111,56.53416667,100.0,18.45312922,0.076333333,238.0606898166667 +2016-07-23 07:00:00,0.0,1013.6312220000001,47.69166667,100.0,18.87721693,0.335416667,238.05989385 +2016-07-23 08:00:00,0.0,1014.0765279999999,59.9425,99.98333333,19.35883592,0.9793333329999999,238.0565109833333 +2016-07-23 09:00:00,0.0,1014.435917,72.06083333,99.33333333,19.7336111,1.8671666669999998,238.0573069333333 +2016-07-23 10:00:00,0.0,1014.7989439999999,128.71,97.4,20.03277375,2.157166667,238.05531699999997 +2016-07-23 11:00:00,0.0,1014.784389,222.54166669999998,92.86666667,21.00258672,2.693333333,238.05452103333332 +2016-07-23 12:00:00,0.0,1014.5796939999999,326.675,88.19166667,21.9888372,2.831083333,238.05372505 +2016-07-23 13:00:00,0.0,1014.508333,492.09166669999996,81.47583333,23.47807543,2.8689999999999998,238.05133715 +2016-07-23 14:00:00,0.0,1014.3651390000001,369.475,81.07583333,23.91038189,2.504666667,238.05093914999998 +2016-07-23 15:00:00,0.0,1014.029694,311.4416667,78.97583333,24.04763509,2.39825,238.0499441833333 +2016-07-23 16:00:00,0.0,1013.676056,182.875,79.96,23.18384404,2.384666667,238.04974518333333 +2016-07-23 17:00:00,0.0,1013.716667,109.75,82.025,22.68496567,1.537333333,238.04775525000002 +2016-07-23 18:00:00,0.0,1013.832278,82.445,83.35833333,22.18033417,1.392916667,238.04556631666665 +2016-07-23 19:00:00,0.0,1014.047889,29.53583333,87.14166667,21.25408059,0.310083333,238.04596430000004 +2016-07-23 20:00:00,0.0,1014.443194,2.386666667,92.33333333,20.22098322,0.343416667,238.04496933333334 +2016-07-23 21:00:00,0.0,1014.845306,0.0,97.76666667,19.11473893,0.36516666700000006,238.04377540000004 +2016-07-23 22:00:00,0.0,1015.060917,0.0,99.175,18.5509324,0.2335,238.04357640000003 +2016-07-23 23:00:00,0.0,1015.1630279999999,0.0,99.825,17.99781025,0.179666667,238.04556633333334 +2016-07-24 00:00:00,0.0,1015.167722,0.0,100.0,17.82768204,0.29275,238.04516835 +2016-07-24 01:00:00,0.0,1015.207278,0.0,100.0,17.00662852,0.206833333,238.04556633333334 +2016-07-24 02:00:00,0.0,1015.129694,0.0,100.0,17.03706886,0.182083333,238.04536733333336 +2016-07-24 03:00:00,0.0,1015.0630279999999,0.0,100.0,17.29166667,0.11908333300000001,238.04576533333332 +2016-07-24 04:00:00,0.0,1014.875,0.567916667,100.0,17.17166667,0.06408333299999999,238.04815323333332 +2016-07-24 05:00:00,0.0,1014.957278,15.1545,100.0,17.06916667,0.12675,238.04815323333335 +2016-07-24 06:00:00,0.0,1015.1869720000001,56.8775,99.25833333,18.40166667,0.173416667,238.04795423333334 +2016-07-24 07:00:00,0.0,1015.418194,122.30833329999999,89.98333333,19.99833333,0.580333333,238.04477033333333 +2016-07-24 08:00:00,0.0,1015.8166669999999,198.7416667,78.87833333,21.0375,1.27325,238.0427804166667 +2016-07-24 09:00:00,0.0,1015.729694,312.84166669999996,73.94333333,22.14666667,1.472083333,238.0427804 +2016-07-24 10:00:00,0.0,1015.5843890000001,400.90833330000004,68.635,23.4775,1.6265833330000001,238.04198445000006 +2016-07-24 11:00:00,0.0,1015.565611,451.28333330000004,65.03916667,24.66333333,1.512083333,238.03760658333331 +2016-07-24 12:00:00,0.0,1015.391667,553.8333332999999,58.3625,25.53416667,1.521833333,238.03442269999996 +2016-07-24 13:00:00,0.0,1015.319833,591.2833333,58.65,26.54833333,0.835583333,238.02785590000005 +2016-07-24 14:00:00,0.0,1014.8760560000001,666.35,55.85333333,28.095,0.85625,238.0222841 +2016-07-24 15:00:00,0.0,1014.4365,236.9666667,64.49416667,27.83583333,1.3019999999999998,238.02009518333332 +2016-07-24 16:00:00,426.2275321,1014.10575,189.4666667,66.2875,23.37083333,1.6706666669999999,238.0196972 +2016-07-24 17:00:00,9.64911348,1013.925,97.29166667,81.27333333,21.6625,0.29933333300000003,238.01910020000003 +2016-07-24 18:00:00,0.0,1014.04425,52.26333333,92.55,22.36,0.067166667,238.01651328333335 +2016-07-24 19:00:00,0.0,1014.1869720000001,15.92141667,97.75,21.5825,0.11908333300000001,238.01631433333333 +2016-07-24 20:00:00,0.0,1014.44425,0.6113333329999999,98.55833333,20.795,0.12866666699999998,238.01691128333331 +2016-07-24 21:00:00,0.0,1014.810917,0.0,99.76666667,20.21833333,0.258166667,238.0165133 +2016-07-24 22:00:00,0.0,1014.791667,0.0,98.35,20.10666667,0.149083333,238.01850321666666 +2016-07-24 23:00:00,0.0,1014.772417,0.0,98.80833333,19.91166667,0.172083333,238.0191002 +2016-07-25 00:00:00,0.0,1014.723944,0.0,98.96666667,19.7075,0.140083333,238.0202942 +2016-07-25 01:00:00,0.0,1014.6927220000001,0.0,99.8,19.32666667,0.0415,238.02069215000003 +2016-07-25 02:00:00,0.0,1014.4380279999999,0.0,99.575,19.34916667,0.143333333,238.02427405 +2016-07-25 03:00:00,0.0,1014.417722,0.0,99.95,19.22,0.093666667,238.02447303333335 +2016-07-25 04:00:00,0.0,1014.3213609999999,1.131,100.0,18.87083333,0.12925,238.02546801666668 +2016-07-25 05:00:00,0.0,1014.2895560000001,13.65416667,100.0,18.6425,0.175,238.02725895000003 +2016-07-25 06:00:00,0.0,1014.760917,68.16916667,98.30833333,19.21916667,0.196083333,238.02705995 +2016-07-25 07:00:00,0.0,1015.1239439999999,132.55,89.43333333,21.00666667,0.5641666670000001,238.02546800000002 +2016-07-25 08:00:00,0.0,1015.3072779999999,151.15,89.30833333,21.84083333,0.8795,238.02646298333335 +2016-07-25 09:00:00,0.0,1015.133333,309.7333333,80.45916667,23.72333333,1.04575,238.02367706666666 +2016-07-25 10:00:00,0.0,1015.1260560000001,513.4916667,73.08166667,25.3725,0.98875,238.02029418333333 +2016-07-25 11:00:00,0.0,1014.8937779999999,355.1166667,68.965,26.28416667,1.19475,238.0175082666667 +2016-07-25 12:00:00,2.5644711119999997,1014.79425,323.0583333,70.62916667,26.15833333,1.05275,238.01452335000002 +2016-07-25 13:00:00,0.0,1014.659389,441.4,66.56583333,26.07333333,0.93275,238.01114046666666 +2016-07-25 14:00:00,0.0,1014.7046939999999,607.1583333,60.3125,27.1775,1.5640833330000001,238.00397673333336 +2016-07-25 15:00:00,0.0,1014.633333,597.0666667,55.48666667,27.07583333,1.606416667,237.9978079166667 +2016-07-25 16:00:00,0.0,1014.642722,437.84166669999996,53.01416667,26.68333333,0.924416667,237.99362906666667 +2016-07-25 17:00:00,0.0,1014.3677220000001,295.6083333,50.405,27.38583333,1.20975,237.99203709999998 +2016-07-25 18:00:00,0.0,1014.427583,95.69916667,57.4775,27.0125,1.09,237.9872612833333 +2016-07-25 19:00:00,0.0,1014.6322779999999,48.1025,63.07666667,25.93583333,0.713916667,237.9846743666667 +2016-07-25 20:00:00,0.0,1015.145778,3.17225,81.91833333,22.26916667,0.1835,237.9834803833334 +2016-07-25 21:00:00,0.0,1015.74425,0.0,94.16666667,19.44083333,0.09375,237.9832814166667 +2016-07-25 22:00:00,0.0,1015.8,0.0,97.23333333,18.18416667,0.12941666699999999,237.98487338333337 +2016-07-25 23:00:00,0.0,1015.858333,0.0,99.43333333,17.81166667,0.326916667,237.98646531666668 +2016-07-26 00:00:00,0.0,1015.8343890000001,0.0,100.0,17.29916667,0.211166667,237.98666431666666 +2016-07-26 01:00:00,0.0,1015.783333,0.0,100.0,17.09416667,0.1635,237.98845523333333 +2016-07-26 02:00:00,0.0,1015.6833330000001,0.0,100.0,17.63166667,0.15733333300000002,237.98885321666668 +2016-07-26 03:00:00,0.0,1015.810917,0.0,100.0,18.15416667,0.15541666699999998,237.98686328333335 +2016-07-26 04:00:00,0.0,1015.9380279999999,0.52375,100.0,17.42583333,0.12091666699999999,237.9896492 +2016-07-26 05:00:00,0.0,1016.0453060000001,13.05091667,100.0,17.79666667,0.242,237.9910421666667 +2016-07-26 06:00:00,0.0,1016.207278,67.02333333,99.86666667,18.78166667,0.163,237.99323106666668 +2016-07-26 07:00:00,0.0,1016.3728890000001,214.9183333,85.26666667,20.8675,0.62025,237.99442503333333 +2016-07-26 08:00:00,0.0,1016.4713609999999,200.45833330000002,79.20166667,22.7175,0.896416667,237.99283308333335 +2016-07-26 09:00:00,0.0,1016.358333,277.675,71.40833333,24.6025,1.082083333,237.99044518333335 +2016-07-26 10:00:00,0.0,1016.314083,336.9833333,69.155,25.31583333,0.8255,237.98825624999998 +2016-07-26 11:00:00,0.0,1015.925,450.125,67.2125,25.72833333,1.37225,237.98566931666667 +2016-07-26 12:00:00,0.0,1015.716194,383.5166667,62.2125,25.67333333,1.6560833330000002,237.97969953333336 +2016-07-26 13:00:00,0.0,1015.2521109999999,175.725,64.2075,25.6975,0.9435,237.9777096 +2016-07-26 14:00:00,0.0,1015.041667,183.45,64.005,25.08833333,0.37225,237.9747247 +2016-07-26 15:00:00,0.0,1015.025,373.3333333,60.75916667,27.25666667,0.515083333,237.96875490000002 +2016-07-26 16:00:00,0.0,1015.00575,184.2333333,64.65916667,26.36583333,0.7485,237.96318306666663 +2016-07-26 17:00:00,0.0,1014.625,75.5225,67.32583333,25.22166667,0.7496666670000001,237.96517301666668 +2016-07-26 18:00:00,0.0,1014.7093890000001,94.255,70.32666667,24.895,1.9296666669999998,237.96397906666664 +2016-07-26 19:00:00,0.0,1014.7885,38.46,76.33333333,23.29083333,2.1085,237.96218813333334 +2016-07-26 20:00:00,0.0,1015.4156109999999,2.237833333,83.7375,22.15333333,1.3581666669999999,237.96218811666668 +2016-07-26 21:00:00,0.0,1015.4333330000001,0.0,92.66666667,20.245,0.6709999999999999,237.96318308333335 +2016-07-26 22:00:00,0.0,1015.347417,0.0,98.5,18.45416667,0.18566666699999998,237.9637800666667 +2016-07-26 23:00:00,0.0,1015.0583330000001,0.0,100.0,17.81583333,0.139833333,237.96557099999998 +2016-07-27 00:00:00,0.0,1014.7984720000001,0.0,100.0,17.5725,0.03125,237.96855590000004 +2016-07-27 01:00:00,0.0,1014.4984720000001,0.0,100.0,17.25583333,0.170416667,237.9703468333333 +2016-07-27 02:00:00,0.0,1014.146361,0.0,100.0,16.865,0.065083333,237.97372975 +2016-07-27 03:00:00,0.0,1013.93075,0.0,100.0,16.40166667,0.178833333,237.97432671666664 +2016-07-27 04:00:00,0.0,1013.666667,0.53725,100.0,15.77416667,0.148666667,237.9771126333333 +2016-07-27 05:00:00,7.728838056,1013.725,13.30425,100.0,16.57666667,0.628583333,237.97890358333333 +2016-07-27 06:00:00,5.027851176,1013.7036390000001,44.90083333,100.0,17.2275,0.42725,237.9795005666667 +2016-07-27 07:00:00,0.0,1013.940611,63.655,100.0,17.69416667,0.430666667,237.98089348333335 +2016-07-27 08:00:00,0.0,1014.190611,140.325,99.48333333,18.57666667,0.528,237.98069450000003 +2016-07-27 09:00:00,0.0,1014.2510560000001,263.5666667,94.74166667,19.385,0.9864166670000001,237.98149046666666 +2016-07-27 10:00:00,0.0,1013.964083,545.1,78.63083333,22.19916667,0.976916667,237.97950054999998 +2016-07-27 11:00:00,0.0,1013.581806,398.7416667,71.025,23.7775,1.175,237.97950055 +2016-07-27 12:00:00,0.0,1013.189083,625.9,61.94916667,24.03,1.22625,237.97492369999998 +2016-07-27 13:00:00,0.0,1012.785444,576.65,59.24833333,25.05166667,1.249416667,237.96994885 +2016-07-27 14:00:00,0.0,1012.322417,423.54166669999995,59.9625,24.9525,1.416833333,237.96557099999998 +2016-07-27 15:00:00,0.0,1012.235917,316.5583333,61.9025,23.95583333,1.4345,237.96238713333332 +2016-07-27 16:00:00,0.0,1012.285445,364.1166667,59.15166667,23.61083333,1.3628333330000002,237.9586062333333 +2016-07-27 17:00:00,0.0,1012.357278,287.0466667,55.89416667,23.95916667,1.3791666669999998,237.95442738333335 +2016-07-27 18:00:00,0.0,1012.4598609999999,75.49166667,57.515,23.32916667,1.569916667,237.95223846666667 +2016-07-27 19:00:00,0.0,1012.8203060000001,35.53583333,63.95166667,22.17583333,0.5711666670000001,237.94905458333332 +2016-07-27 20:00:00,0.0,1013.060917,2.577416667,85.47083333,18.1725,0.288916667,237.94905456666666 +2016-07-27 21:00:00,0.0,1013.348944,0.0,92.26666667,16.28916667,0.21766666699999998,237.9488555833333 +2016-07-27 22:00:00,0.0,1013.61925,0.0,95.44166667,16.645,0.04525,237.94885556666668 +2016-07-27 23:00:00,0.0,1013.625,0.0,96.60833333,16.485,0.032,237.95184046666665 +2016-07-28 00:00:00,0.0,1013.595306,0.0,92.21666667,17.34666667,0.1395,237.95422838333334 +2016-07-28 01:00:00,0.0,1013.7177220000001,0.0,90.8,17.75166667,0.46025,237.95203943333334 +2016-07-28 02:00:00,0.0,1013.3937779999999,0.0,97.01666667,16.91083333,0.021416667,237.9576112666667 +2016-07-28 03:00:00,0.0,1013.097417,0.0,97.725,16.33,0.082333333,237.95980018333333 +2016-07-28 04:00:00,0.0,1012.847417,0.54625,99.225,16.51166667,0.1955,237.96238711666663 +2016-07-28 05:00:00,0.0,1012.6822779999999,26.55566667,99.35833333,15.36583333,0.00875,237.9661679666667 +2016-07-28 06:00:00,0.0,1012.970306,93.74,94.525,17.51916667,0.317333333,237.96238711666663 +2016-07-28 07:00:00,0.0,1013.085917,152.18333330000002,86.72916667,19.50916667,0.734666667,237.96477503333327 +2016-07-28 08:00:00,0.0,1013.283333,189.825,75.47833333,21.26,0.774666667,237.96338206666667 +2016-07-28 09:00:00,0.0,1013.223944,293.575,73.40833333,21.72666667,0.631166667,237.96159113333331 +2016-07-28 10:00:00,0.0,1013.164083,240.7833333,70.20166667,22.34916667,0.7244166670000001,237.9586062333333 +2016-07-28 11:00:00,0.0,1013.059389,165.35,73.5175,21.75833333,0.5083333329999999,237.95860625 +2016-07-28 12:00:00,0.0,1012.872417,304.4416667,68.84083333,22.57916667,1.3715,237.95303443333333 +2016-07-28 13:00:00,0.0,1012.5546939999999,328.8,65.46083333,23.94416667,2.279833333,237.94746261666663 +2016-07-28 14:00:00,0.0,1011.9375560000001,318.575,66.7325,23.63166667,2.255,237.94288578333337 +2016-07-28 15:00:00,0.0,1011.3042220000001,306.65,62.79583333,24.42666667,2.108833333,237.94009985000002 +2016-07-28 16:00:00,0.0,1010.85575,198.3583333,65.81583333,23.63833333,2.252,237.9395028666667 +2016-07-28 17:00:00,0.0,1010.616667,117.57166670000001,75.44416667,22.535,1.222333333,237.93830891666667 +2016-07-28 18:00:00,0.0,1010.745306,49.72666667,84.89166667,21.065,1.0115,237.93552301666668 +2016-07-28 19:00:00,0.0,1010.666667,25.35916667,91.18333333,19.67,0.750833333,237.93612 +2016-07-28 20:00:00,0.0,1010.883333,3.106583333,98.36666667,19.015,0.227916667,237.93631898333334 +2016-07-28 21:00:00,0.0,1010.891667,0.0,99.55833333,18.45833333,0.18983333300000002,237.9397018666667 +2016-07-28 22:00:00,0.0,1010.7130279999999,0.0,100.0,17.675,0.1455,237.94407971666666 +2016-07-28 23:00:00,2.4050227680000003,1010.5760560000001,0.0,100.0,17.6875,0.19216666699999999,237.94567168333336 +2016-07-29 00:00:00,0.0,1010.448944,0.0,100.0,16.83583333,0.053666667,237.94825858333334 +2016-07-29 01:00:00,0.0,1010.447417,0.0,100.0,16.76833333,0.0068333330000000005,237.9496515333333 +2016-07-29 02:00:00,0.0,1010.416667,0.0,100.0,16.01416667,0.003666667,237.94805958333333 +2016-07-29 03:00:00,0.0,1010.292722,0.0,99.975,15.4475,0.12091666699999999,237.95363139999998 +2016-07-29 04:00:00,0.0,1010.277583,0.4275,100.0,15.03333333,0.0725,237.95621831666668 +2016-07-29 05:00:00,0.0,1010.560917,11.03025,97.09166667,15.56916667,0.18675,237.95761125 +2016-07-29 06:00:00,0.0,1010.7489439999999,92.02,93.34166667,16.90166667,0.223333333,237.95661631666667 +2016-07-29 07:00:00,0.0,1010.895306,135.2416667,87.89166667,18.64333333,0.619083333,237.95681528333333 +2016-07-29 08:00:00,0.0,1010.996361,155.2833333,81.3525,19.49916667,0.8725,237.95880521666666 +2016-07-29 09:00:00,0.0,1011.05,337.7083333,77.7875,20.1775,1.275666667,237.95582033333335 +2016-07-29 10:00:00,0.0,1010.7427220000001,354.3,74.95083333,21.6325,1.33475,237.95243743333333 +2016-07-29 11:00:00,25.48893703,1010.428167,236.4041667,88.105,20.57416667,0.8038333329999999,237.95303441666667 +2016-07-29 12:00:00,0.0,1009.9604439999999,184.8108333,87.70833333,21.2375,0.46975,237.9526364333333 +2016-07-29 13:00:00,0.0,1009.5,205.2666667,90.075,20.92083333,1.008,237.95263641666668 +2016-07-29 14:00:00,0.0,1009.1802779999999,318.21666669999996,80.395,22.85916667,1.178833333,237.9526364333333 +2016-07-29 15:00:00,40.21829234,1008.572417,107.43833329999998,84.96666667,22.665,1.316833333,237.9514424666667 +2016-07-29 16:00:00,10.1464584,1008.9207779999999,220.1608333,89.6,20.49583333,0.740583333,237.95422838333334 +2016-07-29 17:00:00,0.0,1009.0927220000001,167.305,84.14166667,21.27,1.05825,237.95323340000002 +2016-07-29 18:00:00,0.0,1008.914083,58.65333333,81.09,21.94916667,0.725,237.95402938333334 +2016-07-29 19:00:00,0.0,1008.741667,19.51833333,88.775,20.35666667,0.19216666699999999,237.95582033333335 +2016-07-29 20:00:00,0.0,1009.1385,1.7629166669999998,89.96666667,18.895,0.229083333,237.9564173166667 +2016-07-29 21:00:00,0.0,1009.482278,0.0,92.425,16.84666667,0.02825,237.9594022 +2016-07-29 22:00:00,0.0,1009.591667,0.0,97.90833333,15.85583333,0.048916667000000004,237.95999919999997 +2016-07-29 23:00:00,0.0,1009.7822779999999,0.0,100.0,15.49916667,0.1655,237.96139216666666 +2016-07-30 00:00:00,0.0,1009.6260560000001,0.0,100.0,15.32083333,0.00675,237.96477501666666 +2016-07-30 01:00:00,0.0,1009.30575,0.0,100.0,14.5875,0.171416667,237.96855591666667 +2016-07-30 02:00:00,0.0,1009.378639,0.0,100.0,15.48166667,0.325916667,237.96736195000003 +2016-07-30 03:00:00,0.0,1009.3046939999999,0.0,100.0,15.92083333,0.146333333,237.96875491666665 +2016-07-30 04:00:00,0.0,1009.184389,0.228666667,100.0,15.61666667,0.151416667,237.97253578333334 +2016-07-30 05:00:00,0.0,1009.24425,10.19616667,100.0,15.93666667,0.13625,237.97372973333333 +2016-07-30 06:00:00,0.0,1009.483333,64.9425,99.675,17.20333333,0.26508333300000003,237.97293378333333 +2016-07-30 07:00:00,0.0,1009.69425,90.39916667,92.50833333,19.27583333,0.612666667,237.97293376666664 +2016-07-30 08:00:00,0.0,1010.0588050000001,170.975,87.11666667,19.915,0.677416667,237.9721378 +2016-07-30 09:00:00,0.0,1010.2260560000001,240.5166667,81.23666667,20.36166667,1.081833333,237.97353075 +2016-07-30 10:00:00,0.0,1010.041667,266.65,74.57,21.72333333,1.051166667,237.97054581666666 +2016-07-30 11:00:00,0.0,1009.9687779999999,414.78333330000004,70.02666667,21.96916667,0.999583333,237.96875490000002 +2016-07-30 12:00:00,0.0,1009.716667,322.6833333,64.12333333,22.82333333,1.032666667,237.96557099999995 +2016-07-30 13:00:00,0.0,1009.659389,467.625,56.64666667,23.875,1.2780833329999999,237.95860623333337 +2016-07-30 14:00:00,0.0,1009.641667,364.3083333,57.29416667,23.69583333,1.4938333330000002,237.95144248333335 +2016-07-30 15:00:00,0.0,1009.496361,459.75,54.2725,24.64916667,1.3095,237.94507468333333 +2016-07-30 16:00:00,0.0,1009.184389,219.5083333,58.39916667,23.79083333,1.20425,237.9424878 +2016-07-30 17:00:00,0.0,1009.047417,164.80833330000002,60.2175,23.30166667,1.240666667,237.93711495000002 +2016-07-30 18:00:00,0.0,1009.011972,92.90916667,62.66583333,23.0,0.645083333,237.9329361 +2016-07-30 19:00:00,0.0,1008.916667,33.54916667,69.8725,21.935,0.427833333,237.93174214999996 +2016-07-30 20:00:00,0.0,1009.115611,2.357333333,83.45833333,19.4825,0.15675,237.9321401166667 +2016-07-30 21:00:00,0.0,1009.3,0.0,92.125,17.35916667,0.196916667,237.9337320666667 +2016-07-30 22:00:00,0.0,1009.1703060000001,0.0,96.2,16.1125,0.024833333,237.93572199999997 +2016-07-30 23:00:00,0.0,1009.00575,0.0,99.15,15.09833333,0.1385,237.93791094999997 +2016-07-31 00:00:00,0.0,1008.979694,0.0,100.0,15.005,0.06433333299999999,237.9395028666667 +2016-07-31 01:00:00,0.0,1008.706806,0.0,100.0,14.73166667,0.072583333,237.94109483333332 +2016-07-31 02:00:00,0.0,1008.775,0.0,100.0,15.26083333,0.11758333300000001,237.94447771666668 +2016-07-31 03:00:00,0.0,1008.6489439999999,0.0,100.0,15.355,0.1145,237.94706461666667 +2016-07-31 04:00:00,0.0,1008.2484720000001,0.49358333299999996,100.0,15.42083333,0.257333333,237.94985053333335 +2016-07-31 05:00:00,0.0,1008.185917,15.09283333,100.0,15.08,0.236833333,237.9514424666667 +2016-07-31 06:00:00,0.0,1008.6181939999999,56.2225,98.90833333,16.325,0.5745,237.94965153333328 +2016-07-31 07:00:00,0.0,1008.841667,153.725,89.34166667,17.87416667,0.5631666670000001,237.95283541666666 +2016-07-31 08:00:00,0.0,1008.9286390000001,152.54166669999998,83.58333333,19.20083333,0.543666667,237.95124348333331 +2016-07-31 09:00:00,0.0,1009.147417,294.025,75.885,20.62083333,0.871583333,237.9478606 +2016-07-31 10:00:00,0.0,1009.1921390000001,516.1166667,68.27916667,21.96166667,1.53875,237.94228878333334 +2016-07-31 11:00:00,0.0,1009.2010560000001,296.3083333,68.17833333,21.16583333,1.7291666669999999,237.9406968333334 +2016-07-31 12:00:00,0.0,1009.216667,245.30833330000002,69.24666667,20.9775,1.7895833330000002,237.93631898333334 +2016-07-31 13:00:00,0.0,1009.385917,387.7666667,66.88333333,21.76666667,0.979833333,237.93114515000002 +2016-07-31 14:00:00,0.0,1009.6098609999999,380.9416667,63.58166667,22.21666667,1.861833333,237.92597133333334 +2016-07-31 15:00:00,0.0,1010.255167,232.7333333,67.09916667,21.12666667,3.459833333,237.92378240000005 +2016-07-31 16:00:00,0.0,1010.5869720000001,184.29166669999998,72.5925,20.15083333,3.000166667,237.92199144999998 +2016-07-31 17:00:00,0.0,1010.930167,132.625,72.54833333,19.62083333,1.9159166669999999,237.91781260000002 +2016-07-31 18:00:00,0.0,1011.6171390000001,52.92166667,70.46083333,19.31916667,2.437,237.91701661666664 +2016-07-31 19:00:00,0.0,1012.314556,38.28,75.28166667,18.08583333,1.7283333330000001,237.9170166166667 +2016-07-31 20:00:00,0.0,1012.719722,1.77225,82.05166667,15.48833333,0.178416667,237.91960355 +2016-07-31 21:00:00,0.0,1013.54425,0.0,89.75,13.64416667,0.13625,237.92139448333333 +2016-07-31 22:00:00,0.0,1013.91925,0.0,96.9,12.4675,0.121333333,237.92258845 +2016-07-31 23:00:00,0.0,1014.227583,0.0,99.90833333,12.03916667,0.358833333,237.92457836666668 +2016-01-08 00:00:00,0.0,1014.2906109999999,0.0,100.0,12.3325,0.62025,238.07218709999998 +2016-01-08 01:00:00,0.0,1014.627583,0.0,100.0,12.19416667,0.351916667,238.07505035 +2016-01-08 02:00:00,0.0,1014.9036390000001,0.0,100.0,11.70166667,0.34616666700000004,238.0748714 +2016-01-08 03:00:00,0.0,1015.0156109999999,0.0,100.0,11.58083333,0.605083333,238.07737676666667 +2016-01-08 04:00:00,0.0,1015.1703060000001,0.465,100.0,10.65333333,0.12766666699999998,238.07791361666668 +2016-01-08 05:00:00,0.0,1015.3812220000001,25.46383333,100.0,11.13083333,0.4755,238.08059791666668 +2016-01-08 06:00:00,0.0,1015.677583,98.05666667,98.65,13.185,0.239416667,238.08167161666665 +2016-01-08 07:00:00,0.0,1015.958333,193.4983333,94.775,14.11083333,1.0075,238.07952418333332 +2016-01-08 08:00:00,0.0,1016.308806,185.44166669999998,84.19666667,16.40666667,0.77225,238.08041896666666 +2016-01-08 09:00:00,0.0,1016.427111,317.1508333,71.1225,18.19333333,1.190833333,238.08131374999996 +2016-01-08 10:00:00,0.0,1016.41925,568.7083332999999,59.69,19.74833333,1.262583333,238.07880836666666 +2016-01-08 11:00:00,0.0,1016.1734720000001,487.49166669999994,57.52833333,20.93333333,1.12175,238.07809254999998 +2016-01-08 12:00:00,0.0,1016.05575,536.2166666999999,55.4825,21.45333333,1.3115,238.07737675 +2016-01-08 13:00:00,0.0,1015.75,435.3166666999999,52.99916667,21.67416667,1.272,238.07522933333334 +2016-01-08 14:00:00,0.0,1015.472417,299.1833333,54.00583333,21.69083333,0.850833333,238.07666096666665 +2016-01-08 15:00:00,0.0,1015.05575,355.775,51.4825,22.38166667,1.021916667,238.07648200000003 +2016-01-08 16:00:00,0.0,1014.728167,170.2333333,53.6775,22.10083333,0.618583333,238.08006106666664 +2016-01-08 17:00:00,0.0,1014.422417,207.0,51.58083333,22.955,0.529333333,238.08041896666666 +2016-01-08 18:00:00,0.0,1014.159389,76.585,56.76666667,21.42333333,0.211416667,238.08059793333328 +2016-01-08 19:00:00,0.0,1014.102583,20.74583333,74.4075,18.755,0.070916667,238.07988211666665 +2016-01-08 20:00:00,0.0,1014.360917,1.07575,88.20833333,15.45166667,0.27399999999999997,238.07755571666667 +2016-01-08 21:00:00,0.0,1014.616667,0.0,95.26666667,14.55333333,0.10233333300000001,238.07719780000002 +2016-01-08 22:00:00,0.0,1014.472417,0.0,95.06666667,14.78666667,0.139083333,238.07791361666668 +2016-01-08 23:00:00,0.0,1014.416667,0.0,94.9,14.56333333,0.21383333300000001,238.07719780000002 +2016-02-08 00:00:00,0.0,1014.2,0.0,94.83333333,14.47666667,0.10341666699999999,238.09473524999999 +2016-02-08 01:00:00,0.0,1013.9042220000001,0.0,95.025,14.245,0.058083333,238.09563 +2016-02-08 02:00:00,0.0,1013.389083,0.0,96.43333333,13.92666667,0.136583333,238.09491416666663 +2016-02-08 03:00:00,0.0,1013.0713609999999,0.0,96.475,14.05583333,0.647083333,238.09330359999998 +2016-02-08 04:00:00,0.0,1013.1786390000001,0.052166667,97.43333333,13.93,0.35025,238.09187196666667 +2016-02-08 05:00:00,2.44628208,1012.728167,7.884333333,99.60833333,13.95666667,0.279833333,238.09151410000004 +2016-02-08 06:00:00,4.924653696,1012.666667,25.11916667,100.0,14.06333333,0.27525,238.09222988333332 +2016-02-08 07:00:00,0.0,1012.607278,34.6625,100.0,14.56166667,0.079416667,238.09115615000005 +2016-02-08 08:00:00,2.427917784,1012.8203060000001,82.80166667,97.31666667,15.39833333,0.444166667,238.09169303333337 +2016-02-08 09:00:00,0.0,1012.68075,135.4425,91.74166667,16.45,0.364416667,238.09222986666666 +2016-02-08 10:00:00,0.0,1012.514083,163.20833330000002,90.91666667,16.5875,1.341333333,238.09258779999996 +2016-02-08 11:00:00,0.0,1012.197417,179.35,91.9,16.60583333,2.151583333,238.09366149999997 +2016-02-08 12:00:00,5.504452944,1011.8593890000001,131.6066667,97.23333333,15.9475,1.27275,238.09312465000002 +2016-02-08 13:00:00,0.0,1011.866667,139.9175,95.225,16.64916667,1.32575,238.10010383333335 +2016-02-08 14:00:00,0.0,1012.034861,177.44166669999998,93.43333333,18.10583333,0.998416667,238.12909428333333 +2016-02-08 15:00:00,0.0,1011.956806,161.0333333,92.23333333,18.305,1.3539166669999998,238.15217925 +2016-02-08 16:00:00,0.0,1011.848944,137.71083330000002,90.71666667,18.2475,1.28275,238.17043249999998 +2016-02-08 17:00:00,0.0,1011.747417,118.22916670000001,90.85833333,18.60666667,1.227166667,238.18009596666664 +2016-02-08 18:00:00,0.0,1011.733333,59.655,94.64166667,18.04916667,0.92925,238.18134863333333 +2016-02-08 19:00:00,0.0,1011.770306,14.75725,97.8,17.18166667,1.01175,238.18206445 +2016-02-08 20:00:00,0.0,1011.7989439999999,0.83325,95.56666667,17.1575,0.951916667,238.1808117833333 +2016-02-08 21:00:00,0.0,1011.939083,0.0,94.69166667,17.2675,1.27325,238.17848540000003 +2016-02-08 22:00:00,2.4977994,1011.860917,0.0,97.13333333,16.91833333,0.68875,238.17598003333333 +2016-02-08 23:00:00,12.68576158,1011.872417,0.0,99.88333333,16.4625,0.727166667,238.17240098333332 +2016-03-08 00:00:00,10.60944722,1011.7869720000001,0.0,100.0,16.51916667,0.941916667,238.2294734333333 +2016-03-08 01:00:00,0.0,1011.5187779999999,0.0,100.0,16.6125,0.9470000000000001,238.2315630666666 +2016-03-08 02:00:00,2.612124072,1011.1568060000001,0.0,99.925,16.785,0.62375,238.23177201666667 +2016-03-08 03:00:00,0.0,1010.6568060000001,0.0,98.875,17.00666667,0.7264166670000001,238.23051825000002 +2016-03-08 04:00:00,0.0,1010.3354439999999,0.1005,98.875,17.065,0.663833333,238.22926446666668 +2016-03-08 05:00:00,0.0,1010.177583,7.10925,98.53333333,17.425,1.0655,238.2246673 +2016-03-08 06:00:00,73.71493294,1010.159389,17.38333333,99.95833333,17.41833333,1.4491666669999999,238.22424938333333 +2016-03-08 07:00:00,2.7464603519999997,1009.988028,72.9925,99.84166667,17.83166667,1.6179166669999998,238.22320456666668 +2016-03-08 08:00:00,3.0739191839999997,1009.908333,145.7166667,99.10833333,18.56,1.51725,238.22174186666666 +2016-03-08 09:00:00,0.0,1009.922417,193.9,97.05,19.18833333,1.6368333330000002,238.21965225 +2016-03-08 10:00:00,0.0,1009.947889,215.8666667,92.43333333,20.02333333,1.257416667,238.2192343 +2016-03-08 11:00:00,2.5736205119999997,1009.872417,159.6,92.43333333,20.48,0.792666667,238.21965223333333 +2016-03-08 12:00:00,5.191437504,1009.875,128.9416667,96.225,20.30333333,0.585916667,238.21798053333328 +2016-03-08 13:00:00,2.821403592,1009.9072779999999,128.77,95.10833333,19.8075,0.886833333,238.2160998833333 +2016-03-08 14:00:00,5.393494487999999,1009.927111,173.31666669999998,97.43333333,18.95916667,1.064,238.21609990000002 +2016-03-08 15:00:00,0.0,1009.40575,126.65,96.68333333,19.035,1.5430833330000002,238.21484610000002 +2016-03-08 16:00:00,0.0,1009.232278,97.91416667,95.18333333,19.58166667,0.664,238.2158909166666 +2016-03-08 17:00:00,0.0,1009.516667,82.44,93.8,19.60166667,0.573,238.21798053333336 +2016-03-08 18:00:00,0.0,1009.5703060000001,25.98925,95.03333333,19.42916667,0.38375,238.2177715833333 +2016-03-08 19:00:00,0.0,1009.202111,9.108333333,98.01666667,18.805,0.45733333299999995,238.21923431666664 +2016-03-08 20:00:00,0.0,1009.075,0.431166667,100.0,18.19666667,0.34,238.21902535 +2016-03-08 21:00:00,0.0,1008.940139,0.0,100.0,17.97083333,1.12725,238.21860744999995 +2016-03-08 22:00:00,0.0,1008.840611,0.0,100.0,17.91083333,0.606583333,238.2204881 +2016-03-08 23:00:00,0.0,1008.80575,0.0,100.0,16.90583333,0.21275,238.2188164 +2016-04-08 00:00:00,0.0,1008.4937779999999,0.0,100.0,16.38916667,0.198083333,238.2528771333333 +2016-04-08 01:00:00,0.0,1008.366667,0.0,100.0,16.22416667,0.2235,238.25225026666666 +2016-04-08 02:00:00,0.0,1008.2739439999999,0.0,95.64166667,16.00583333,0.168833333,238.24995170000003 +2016-04-08 03:00:00,0.0,1008.151056,0.0,91.16666667,16.01833333,0.147666667,238.25120543333333 +2016-04-08 04:00:00,0.0,1008.064083,0.149333333,89.94166667,17.61416667,0.279916667,238.25120544999996 +2016-04-08 05:00:00,0.0,1007.982278,4.316666667,92.5,17.8525,0.403083333,238.24995166666668 +2016-04-08 06:00:00,0.0,1008.270306,35.2545,94.975,17.385,0.677666667,238.24890686666666 +2016-04-08 07:00:00,0.0,1008.737445,91.78,94.275,18.05666667,0.75175,238.24472765 +2016-04-08 08:00:00,14.92505136,1008.973944,91.08416667,96.96666667,17.7975,0.45925,238.24075736666668 +2016-04-08 09:00:00,17.19110597,1008.909389,94.81416667,98.34166667,17.6225,0.315,238.23783189999997 +2016-04-08 10:00:00,9.792182184,1009.177583,90.48,98.825,18.01666667,0.32408333300000003,238.23636915 +2016-04-08 11:00:00,0.0,1009.325,94.2175,98.89166667,18.11,0.310083333,238.23824980000003 +2016-04-08 12:00:00,0.0,1009.4630279999999,206.1333333,95.475,19.11833333,0.849333333,238.23804086666664 +2016-04-08 13:00:00,0.0,1009.1927220000001,117.91916670000002,94.45833333,19.45,0.765,238.23616019999997 +2016-04-08 14:00:00,0.0,1008.725,179.2,90.61666667,20.02666667,0.76775,238.23657813333332 +2016-04-08 15:00:00,15.1674679,1008.9296939999999,105.76666670000002,92.56666667,19.13416667,1.88675,238.23365269999996 +2016-04-08 16:00:00,0.0,1008.791667,78.44416667,95.13333333,18.29166667,1.098833333,238.23741398333334 +2016-04-08 17:00:00,3.129703104,1008.78075,66.89666667,93.51666667,18.38833333,0.862083333,238.23574228333334 +2016-04-08 18:00:00,0.0,1008.727583,22.69833333,95.98333333,17.6125,0.18583333300000002,238.23386161666667 +2016-04-08 19:00:00,2.535130488,1008.95,5.936083332999999,99.61666667,16.99583333,0.41808333299999995,238.23448848333337 +2016-04-08 20:00:00,2.408224632,1009.280167,0.87275,100.0,16.615,0.215,238.2351153666667 +2016-04-08 21:00:00,4.818420216,1009.541667,0.0,100.0,16.145,0.11175,238.23490643333332 +2016-04-08 22:00:00,0.0,1009.835917,0.0,100.0,15.56,0.061,238.23532436666665 +2016-04-08 23:00:00,2.437795368,1009.95,0.0,100.0,15.04333333,0.080833333,238.23532435 +2016-05-08 00:00:00,0.0,1009.955167,0.0,100.0,14.53583333,0.11199999999999999,238.10564609999997 +2016-05-08 01:00:00,0.0,1010.3046939999999,0.0,100.0,14.30583333,0.11591666699999999,238.10649091666664 +2016-05-08 02:00:00,0.0,1010.352583,0.0,100.0,13.405,0.049083333,238.1078426 +2016-05-08 03:00:00,0.0,1010.5927220000001,0.0,100.0,12.89333333,0.10383333300000001,238.10767363333335 +2016-05-08 04:00:00,0.0,1010.905167,0.07275,100.0,13.37833333,0.31625,238.10767365 +2016-05-08 05:00:00,2.406948312,1011.354111,10.22025,100.0,13.29333333,0.32358333300000003,238.10615298333332 +2016-05-08 06:00:00,0.0,1012.279111,46.86416667,99.88333333,13.71083333,0.3065,238.10412540000002 +2016-05-08 07:00:00,0.0,1012.827583,128.89,97.65833333,15.06083333,0.29791666699999997,238.10361851666667 +2016-05-08 08:00:00,0.0,1013.196833,189.2833333,92.175,16.82416667,0.550166667,238.1005772166667 +2016-05-08 09:00:00,0.0,1013.8254720000001,257.84166669999996,84.775,18.12583333,0.7855,238.09838066666666 +2016-05-08 10:00:00,0.0,1014.2786390000001,471.45,77.24333333,18.7525,1.268416667,238.0978738 +2016-05-08 11:00:00,0.0,1014.44425,545.9916667,72.615,19.69083333,1.307416667,238.09702896666667 +2016-05-08 12:00:00,0.0,1014.908806,325.3166667,72.625,19.80833333,1.993,238.09415658333333 +2016-05-08 13:00:00,0.0,1015.370306,356.9583333,72.94083333,19.83833333,2.443083333,238.092298 +2016-05-08 14:00:00,0.0,1015.582278,567.6916667,64.99083333,21.04083333,2.7345833330000002,238.09128420000002 +2016-05-08 15:00:00,0.0,1015.559389,371.91583330000003,64.485,21.75166667,1.150666667,238.08942560000003 +2016-05-08 16:00:00,0.0,1015.5572779999999,399.5833333,57.5325,22.2,1.246416667,238.09060836666666 +2016-05-08 17:00:00,0.0,1015.7119720000001,208.0433333,62.96666667,21.45666667,1.278166667,238.0919600833333 +2016-05-08 18:00:00,0.0,1016.0931939999999,46.82833333,69.44166667,19.97333333,1.627583333,238.09280486666668 +2016-05-08 19:00:00,0.0,1016.7900279999999,20.17258333,75.75333333,19.10666667,0.6658333329999999,238.09229798333334 +2016-05-08 20:00:00,0.0,1017.5135,0.5701666670000001,81.7875,16.56,0.026000000000000002,238.0939876 +2016-05-08 21:00:00,0.0,1018.085917,0.0,87.2,15.4275,0.49308333299999996,238.0950013833333 +2016-05-08 22:00:00,0.0,1018.551528,0.0,93.675,15.37166667,0.5708333329999999,238.09584623333333 +2016-05-08 23:00:00,0.0,1019.121833,0.0,91.4,15.195,0.425916667,238.09770481666666 +2016-06-08 00:00:00,0.0,1019.4333330000001,0.0,93.51666667,14.66,0.3035,238.06188459999998 +2016-06-08 01:00:00,0.0,1019.333333,0.0,97.69166667,13.89333333,0.184416667,238.06408111666667 +2016-06-08 02:00:00,0.0,1019.402583,0.0,99.7,13.43333333,0.516916667,238.06391213333333 +2016-06-08 03:00:00,0.0,1019.533333,0.0,99.90833333,13.2775,0.623083333,238.06425005000003 +2016-06-08 04:00:00,0.0,1019.8135,0.109916667,99.925,12.87166667,0.5095,238.06441905 +2016-06-08 05:00:00,0.0,1020.198944,15.59166667,99.88333333,12.22583333,0.150166667,238.06475696666666 +2016-06-08 06:00:00,0.0,1020.7885,56.7425,97.36666667,14.00916667,0.313166667,238.06171561666667 +2016-06-08 07:00:00,0.0,1021.2598609999999,136.1,92.78333333,15.84166667,0.963333333,238.06323626666665 +2016-06-08 08:00:00,0.0,1021.736972,177.6166667,87.21666667,17.0725,0.7335,238.06205356666666 +2016-06-08 09:00:00,0.0,1021.9921390000001,289.3666667,81.27083333,18.52416667,1.016416667,238.06695348333332 +2016-06-08 10:00:00,0.0,1022.166667,438.21666669999996,74.09416667,20.095,1.08825,238.06120875 +2016-06-08 11:00:00,0.0,1022.215611,342.0,69.99583333,20.64,1.411083333,238.06103976666668 +2016-06-08 12:00:00,0.0,1022.0078609999999,377.84166669999996,63.2875,20.9225,1.281,238.05901221666667 +2016-06-08 13:00:00,0.0,1022.085917,352.1666667,57.9725,21.93083333,1.289666667,238.05715361666668 +2016-06-08 14:00:00,0.0,1022.1796939999999,328.34166669999996,53.7875,22.31333333,1.250333333,238.0591811666667 +2016-06-08 15:00:00,0.0,1022.2895560000001,369.875,51.66916667,22.71833333,1.167916667,238.06087081666666 +2016-06-08 16:00:00,0.0,1022.364083,356.5166667,51.96416667,22.7125,1.257416667,238.0605328833333 +2016-06-08 17:00:00,0.0,1022.3072779999999,91.15083333,57.40416667,22.26416667,0.9109166670000001,238.0585053 +2016-06-08 18:00:00,0.0,1022.353639,55.66666667,59.0325,22.54666667,0.5075,238.0605328833333 +2016-06-08 19:00:00,0.0,1022.621833,20.9075,73.00916667,20.26083333,0.16066666699999999,238.060026 +2016-06-08 20:00:00,0.0,1023.3265279999999,0.874083333,91.56666667,16.18833333,0.324666667,238.06256044999998 +2016-06-08 21:00:00,0.0,1023.8265279999999,0.0,96.45833333,14.375,0.094666667,238.06492593333334 +2016-06-08 22:00:00,0.0,1024.189556,0.0,99.59166667,13.58916667,0.2705,238.06408109999998 +2016-06-08 23:00:00,0.0,1024.602583,0.0,100.0,13.1575,0.175833333,238.06695348333332 +2016-07-08 00:00:00,0.0,1024.788028,0.0,100.0,12.80583333,0.210666667,238.02745793333335 +2016-07-08 01:00:00,0.0,1024.7,0.0,100.0,12.37,0.078666667,238.0266619666667 +2016-07-08 02:00:00,0.0,1024.4818050000001,0.0,100.0,11.32333333,0.052166667,238.02805490000003 +2016-07-08 03:00:00,0.0,1024.2239439999998,0.0,100.0,10.54083333,0.050583333,238.02885089999998 +2016-07-08 04:00:00,0.0,1024.25,0.177583333,100.0,9.958333332999999,0.013416667,238.0324327666667 +2016-07-08 05:00:00,0.0,1024.3062220000002,10.90358333,100.0,9.874166667,0.021416667,238.03402471666664 +2016-07-08 06:00:00,0.0,1024.673945,100.7841667,100.0,12.87583333,0.244166667,238.03442269999996 +2016-07-08 07:00:00,0.0,1024.9572779999999,195.5408333,93.19166667,15.725,0.833,238.03322875 +2016-07-08 08:00:00,0.0,1025.133333,177.3625,82.23666667,18.50666667,0.7955,238.0316368166667 +2016-07-08 09:00:00,0.0,1024.922417,291.3858333,72.64,20.60333333,0.991833333,238.02964683333335 +2016-07-08 10:00:00,0.0,1024.565139,551.925,63.6675,22.06666667,1.164416667,238.024672 +2016-07-08 11:00:00,0.0,1024.1615,614.35,60.63,23.30416667,1.101083333,238.02347806666668 +2016-07-08 12:00:00,0.0,1023.5401390000001,644.9,58.32333333,24.43333333,1.31775,238.01790625 +2016-07-08 13:00:00,0.0,1022.8365,633.175,54.075,25.59333333,1.44675,238.0159163166667 +2016-07-08 14:00:00,0.0,1022.241194,580.3666667,50.51,26.50166667,1.11875,238.01611533333335 +2016-07-08 15:00:00,0.0,1021.395889,518.4,50.6275,27.02166667,1.4344166669999998,238.01492135 +2016-07-08 16:00:00,0.0,1020.7745279999999,419.825,50.38083333,27.47166667,1.15375,238.01273243333333 +2016-07-08 17:00:00,0.0,1020.008917,232.61833330000002,52.03,27.53916667,0.8594166670000001,238.01213546666668 +2016-07-08 18:00:00,0.0,1019.434389,42.4575,54.75833333,26.47666667,0.38125,238.01153845 +2016-07-08 19:00:00,0.0,1019.3,22.77525,63.81416667,23.62166667,0.0315,238.01193645 +2016-07-08 20:00:00,0.0,1019.358333,1.22575,84.62916667,19.12833333,0.167333333,238.0109414666667 +2016-07-08 21:00:00,0.0,1019.0234720000001,0.0,91.51666667,16.89916667,0.0575,238.01492138333333 +2016-07-08 22:00:00,0.0,1018.779694,0.0,91.375,15.71833333,0.0965,238.01691128333334 +2016-07-08 23:00:00,0.0,1018.583333,0.0,97.05833333,15.67833333,0.461583333,238.01870221666664 +2016-08-08 00:00:00,0.0,1018.2578609999999,0.0,99.9,15.23583333,0.12116666699999999,237.9474626 +2016-08-08 01:00:00,0.0,1017.616194,0.0,100.0,14.17916667,0.008333333,237.95064651666667 +2016-08-08 02:00:00,0.0,1017.106806,0.0,100.0,13.535,0.091666667,237.9508455 +2016-08-08 03:00:00,0.0,1016.564083,0.0,100.0,13.00083333,0.16925,237.95363139999998 +2016-08-08 04:00:00,0.0,1016.40575,0.113666667,100.0,13.35416667,0.134083333,237.95482536666665 +2016-08-08 05:00:00,0.0,1016.3119720000001,6.860416667000001,99.075,13.70583333,0.056833333,237.95681530000002 +2016-08-08 06:00:00,0.0,1016.283333,23.53833333,86.44166667,15.39333333,0.10775,237.95721328333335 +2016-08-08 07:00:00,0.0,1016.23075,113.62,83.70833333,18.22666667,0.64225,237.95999918333334 +2016-08-08 08:00:00,0.0,1015.997417,198.2666667,78.9625,21.2,1.3156666670000001,237.95721328333332 +2016-08-08 09:00:00,0.0,1015.738028,303.46666669999996,70.17333333,22.35,1.514666667,237.95462638333333 +2016-08-08 10:00:00,0.0,1015.625,448.86666669999994,65.55083333,23.47916667,1.5859166669999998,237.94945256666665 +2016-08-08 11:00:00,0.0,1015.5583330000001,646.95,55.81333333,24.48833333,1.5270833330000002,237.94388073333334 +2016-08-08 12:00:00,0.0,1015.5880279999999,597.1916667,59.03666667,24.5025,1.4824166669999999,237.93651796666668 +2016-08-08 13:00:00,0.0,1015.706222,610.8416667,53.17583333,24.4275,1.929,237.93154313333332 +2016-08-08 14:00:00,0.0,1015.7568060000001,564.1416667000001,51.18833333,24.445,2.201083333,237.9265683333333 +2016-08-08 15:00:00,0.0,1015.6,494.1833333000001,55.47666667,24.35,1.9084166669999998,237.92278745 +2016-08-08 16:00:00,0.0,1015.448944,340.9,58.7725,23.57,2.007666667,237.92020053333337 +2016-08-08 17:00:00,0.0,1015.955167,96.9925,69.10333333,20.47416667,4.004166667,237.91562368333334 +2016-08-08 18:00:00,0.0,1016.325,35.5325,72.6725,19.15833333,1.6415,237.9142307333333 +2016-08-08 19:00:00,0.0,1016.083333,13.38025,74.4825,18.59583333,0.259583333,237.91522568333335 +2016-08-08 20:00:00,0.0,1016.41925,0.316083333,79.01,17.57583333,0.223833333,237.91661866666664 +2016-08-08 21:00:00,0.0,1016.392722,0.0,85.3,15.91083333,0.20875,237.91860858333334 +2016-08-08 22:00:00,0.0,1016.1354439999999,0.0,87.09166667,16.20416667,0.334916667,237.91940456666666 +2016-08-08 23:00:00,0.0,1016.283806,0.0,91.0,15.45083333,0.075583333,237.91880758333332 +2016-09-08 00:00:00,0.0,1016.5713609999999,0.0,96.73333333,14.1925,0.077833333,237.85994329999997 +2016-09-08 01:00:00,0.0,1016.2177220000001,0.0,99.43333333,13.62,0.025666667,237.85950193333335 +2016-09-08 02:00:00,0.0,1016.158333,0.0,99.81666667,13.94916667,0.033416667000000004,237.86219745000002 +2016-09-08 03:00:00,0.0,1016.25575,0.0,100.0,13.86,0.055833333,237.8635468 +2016-09-08 04:00:00,0.0,1016.2348609999999,0.0,99.34166667,14.06416667,0.15441666699999998,237.8647711666667 +2016-09-08 05:00:00,2.628730488,1016.611972,2.509083333,98.275,13.98666667,0.518416667,237.8632668333333 +2016-09-08 06:00:00,0.0,1016.710917,40.53833333,99.775,13.735,0.233666667,237.86485660000002 +2016-09-08 07:00:00,0.0,1017.0062220000001,197.985,89.59166667,15.30166667,0.37391666700000004,237.86471738333339 +2016-09-08 08:00:00,0.0,1017.158333,165.5916667,80.20083333,16.63083333,0.800666667,237.86693361666667 +2016-09-08 09:00:00,0.0,1017.2869720000001,200.9666667,74.6475,17.37083333,0.6639166670000001,237.86681338333332 +2016-09-08 10:00:00,0.0,1017.271361,133.97166670000001,72.06666667,16.855,0.824666667,237.86692886666665 +2016-09-08 11:00:00,0.0,1017.292722,248.075,64.81166667,17.715,1.430083333,237.86185421666667 +2016-09-08 12:00:00,0.0,1017.1,499.5666666999999,56.17333333,18.41416667,2.069583333,237.85753725000004 +2016-09-08 13:00:00,0.0,1017.146361,387.84166669999996,51.2225,19.395,2.709166667,237.85135051666666 +2016-09-08 14:00:00,0.0,1016.810444,544.8833333,44.69916667,20.1375,2.108666667,237.84700193333333 +2016-09-08 15:00:00,0.0,1016.3130279999999,429.2,42.43583333,20.61666667,3.0491666669999997,237.8437053 +2016-09-08 16:00:00,0.0,1016.3380279999999,228.45,46.2375,19.2575,2.249666667,237.8396588833333 +2016-09-08 17:00:00,0.0,1016.357278,157.0083333,49.8375,18.15166667,1.883083333,237.83759135 +2016-09-08 18:00:00,0.0,1016.633333,77.09916667,58.4975,17.37833333,2.2119166669999997,237.83643971666666 +2016-09-08 19:00:00,0.0,1016.7431939999999,7.36425,69.21,16.10583333,1.342083333,237.83342308333332 +2016-09-08 20:00:00,0.0,1017.065611,0.15875,75.3275,15.43916667,1.4651666669999999,237.83392141666664 +2016-09-08 21:00:00,0.0,1017.291667,0.0,76.7575,14.61083333,0.63475,237.83707251666667 +2016-09-08 22:00:00,0.0,1017.216667,0.0,80.44583333,13.8,0.61375,237.83760083333334 +2016-09-08 23:00:00,0.0,1017.05575,0.0,93.625,11.82583333,0.032,237.83816396666668 +2016-10-08 00:00:00,0.0,1016.8677220000001,0.0,96.175,11.28333333,0.014083333,237.95947506666667 +2016-10-08 01:00:00,0.0,1016.55575,0.0,98.125,10.35916667,0.008,237.9613306166667 +2016-10-08 02:00:00,0.0,1016.272417,0.0,99.825,9.955,0.03625,237.9604242 +2016-10-08 03:00:00,0.0,1016.258333,0.0,98.84166667,10.40583333,0.12966666699999999,237.9607389833333 +2016-10-08 04:00:00,0.0,1015.9927220000001,0.015,96.90833333,10.45416667,0.031916667,237.96243793333338 +2016-10-08 05:00:00,0.0,1016.107278,3.773916667,93.94166667,10.755,0.380833333,237.96062826666665 +2016-10-08 06:00:00,0.0,1016.546833,29.46333333,94.99166667,10.8925,0.132916667,237.95944501666668 +2016-10-08 07:00:00,0.0,1016.825,76.685,92.7,11.6825,0.24983333300000002,237.95984048333335 +2016-10-08 08:00:00,0.0,1016.958333,122.33,86.06666667,13.04083333,0.3885,237.95885178333333 +2016-10-08 09:00:00,4.9729444560000005,1017.06925,89.64666667,85.98333333,12.7025,0.7404166670000001,237.96070576666668 +2016-10-08 10:00:00,0.0,1017.310917,201.9083333,84.05,13.41,0.875083333,237.96047639999998 +2016-10-08 11:00:00,0.0,1017.35575,325.95,83.19,14.03166667,0.7819166670000001,237.9615077666667 +2016-10-08 12:00:00,0.0,1016.7901390000001,470.5,75.42583333,16.03916667,1.07075,237.96167705000002 +2016-10-08 13:00:00,0.0,1016.48075,284.4833333,69.1175,15.79833333,1.545333333,237.9623572666667 +2016-10-08 14:00:00,0.0,1016.418194,73.49083333,73.94083333,14.74,1.42575,237.96047639999998 +2016-10-08 15:00:00,0.0,1016.6916669999999,504.575,70.955,15.3525,1.92975,237.96015526666665 +2016-10-08 16:00:00,16.64076694,1017.1051669999999,227.0333333,65.10833333,15.12166667,2.4525,237.95963485000001 +2016-10-08 17:00:00,0.0,1017.154694,178.255,63.235,15.28083333,0.86375,237.96032929999998 +2016-10-08 18:00:00,0.0,1017.1786390000001,35.49166667,65.25833333,15.77333333,0.51975,237.96300265 +2016-10-08 19:00:00,0.0,1017.7385,13.710999999999999,75.85666667,13.38916667,0.372166667,237.96471585000003 +2016-10-08 20:00:00,0.0,1018.3931949999999,0.43825,92.15833333,9.9525,0.032833333,237.96548144999997 +2016-10-08 21:00:00,0.0,1018.887444,0.0,95.7,8.368333332999999,0.000916667,237.96351363333335 +2016-10-08 22:00:00,0.0,1019.335917,0.0,97.71666667,7.859583333,0.073916667,237.96504485 +2016-10-08 23:00:00,0.0,1019.53075,0.0,99.94166667,7.111916667000001,0.010166666999999999,237.96536913333333 +2016-11-08 00:00:00,0.0,1019.510917,0.0,100.0,6.70775,0.08375,238.04684853333333 +2016-11-08 01:00:00,0.0,1019.475,0.0,100.0,6.247166667,0.13,238.04477470000003 +2016-11-08 02:00:00,0.0,1019.525,0.0,100.0,6.52225,0.16175,238.0432592666667 +2016-11-08 03:00:00,0.0,1019.5630279999999,0.0,100.0,5.007083333,0.07983333299999999,238.04264234999997 +2016-11-08 04:00:00,0.0,1019.603639,0.071416667,100.0,4.121166667,0.02075,238.04494551666667 +2016-11-08 05:00:00,0.0,1019.7515279999999,9.841333333,100.0,3.810166667,0.016,238.0446829166667 +2016-11-08 06:00:00,0.0,1020.2728890000001,54.92416667,100.0,6.022333333,0.02475,238.04651316666664 +2016-11-08 07:00:00,0.0,1020.6562220000001,146.3916667,99.33333333,8.967666667,0.40666666700000004,238.0463834666666 +2016-11-08 08:00:00,0.0,1020.8510560000001,212.3833333,88.06666667,12.335,0.756083333,238.0486218166667 +2016-11-08 09:00:00,0.0,1020.8083330000001,240.775,82.0825,14.05416667,0.879416667,238.04935899999998 +2016-11-08 10:00:00,0.0,1020.4151390000001,433.15,70.71916667,15.5175,0.989833333,238.04859651666666 +2016-11-08 11:00:00,0.0,1019.9115,446.9416666999999,61.3625,16.44583333,1.164583333,238.051156 +2016-11-08 12:00:00,0.0,1019.583333,432.58333330000005,54.66583333,17.36833333,0.940916667,238.05091713333331 +2016-11-08 13:00:00,0.0,1019.3365,392.45,47.61083333,17.87083333,1.105583333,238.05152615 +2016-11-08 14:00:00,0.0,1018.7343890000001,349.075,39.03166667,18.2875,1.233833333,238.05313966666665 +2016-11-08 15:00:00,0.0,1018.503167,269.96666669999996,40.45416667,18.31166667,1.1863333329999999,238.05463298333333 +2016-11-08 16:00:00,0.0,1017.989083,140.3583333,46.10916667,17.85916667,0.7250833329999999,238.05340541666666 +2016-11-08 17:00:00,0.0,1017.885917,73.6275,55.53833333,17.3875,0.654833333,238.05543498333336 +2016-11-08 18:00:00,2.441380824,1018.410917,32.02083333,75.2175,15.15083333,0.553666667,238.05541281666663 +2016-11-08 19:00:00,7.404504504,1018.422417,7.022083332999999,90.80833333,13.02083333,0.281916667,238.05703423333333 +2016-11-08 20:00:00,9.870432312,1018.13075,0.077,96.41666667,12.29583333,0.3745,238.0557719 +2016-11-08 21:00:00,17.6623427,1018.052583,0.0,97.73333333,12.19083333,0.500166667,238.05563586666668 +2016-11-08 22:00:00,10.15123538,1017.9510560000001,0.0,99.04166667,12.145,0.642,238.05399228333337 +2016-11-08 23:00:00,10.06019033,1017.8687779999999,0.0,99.7,12.35583333,0.5638333329999999,238.05471838333332 +2016-12-08 00:00:00,0.0,1017.542722,0.0,100.0,12.54333333,0.39816666700000003,238.02716208333334 +2016-12-08 01:00:00,0.0,1017.45,0.0,100.0,12.76583333,0.34916666700000004,238.02676185000004 +2016-12-08 02:00:00,2.421048024,1017.3213609999999,0.0,100.0,13.005,0.238916667,238.02617655000003 +2016-12-08 03:00:00,0.0,1017.236972,0.0,100.0,13.19583333,0.24775,238.02561500000002 +2016-12-08 04:00:00,0.0,1017.332278,0.017833333,100.0,13.30833333,0.30375,238.02595668333333 +2016-12-08 05:00:00,0.0,1017.7301669999999,3.9994166669999998,100.0,13.55333333,0.11699999999999999,238.02632525000004 +2016-12-08 06:00:00,0.0,1018.107278,33.63,99.925,14.15083333,0.257333333,238.02592186666666 +2016-12-08 07:00:00,0.0,1018.610917,64.31833333,99.23333333,15.03333333,0.416916667,238.02629521666668 +2016-12-08 08:00:00,0.0,1019.0395560000001,154.8133333,98.63333333,15.78166667,0.69775,238.02605000000003 +2016-12-08 09:00:00,0.0,1019.4598609999999,192.9916667,96.1,16.54333333,0.663416667,238.02577318333337 +2016-12-08 10:00:00,0.0,1019.89425,243.95833330000002,94.39166667,17.58916667,0.7655,238.02574628333332 +2016-12-08 11:00:00,0.0,1020.0406109999999,261.55,92.64166667,18.37416667,0.78225,238.02507083333333 +2016-12-08 12:00:00,0.0,1020.1869720000001,229.975,91.5,19.10333333,0.86125,238.02451556666665 +2016-12-08 13:00:00,0.0,1020.3906109999999,172.55,88.40833333,19.65333333,0.7636666670000001,238.02475761666665 +2016-12-08 14:00:00,0.0,1020.5703060000001,173.6225,86.325,19.53,1.0105,238.0245662 +2016-12-08 15:00:00,0.0,1020.604694,221.85,79.78333333,20.70083333,1.71075,238.02582063333332 +2016-12-08 16:00:00,0.0,1020.755167,114.9775,77.97,20.9875,1.0225,238.02779639999997 +2016-12-08 17:00:00,0.0,1020.9130279999999,92.3925,77.97916667,21.06166667,0.87125,238.0251736666667 +2016-12-08 18:00:00,0.0,1020.672417,41.05,78.03833333,20.9325,0.36975,238.02678875000004 +2016-12-08 19:00:00,0.0,1020.6536390000001,10.62566667,84.57333333,20.01,0.027666667000000002,238.02718421666665 +2016-12-08 20:00:00,0.0,1020.9598609999999,0.279416667,95.00833333,18.40916667,0.109083333,238.02657678333335 +2016-12-08 21:00:00,0.0,1021.108333,0.0,98.94166667,17.565,0.055333333,238.02743256666668 +2016-12-08 22:00:00,0.0,1020.8901390000001,0.0,99.66666667,17.39416667,0.22725,238.02835636666669 +2016-12-08 23:00:00,0.0,1020.6916669999999,0.0,90.64166667,17.19583333,0.044416667,238.02710513333332 +2016-08-13 00:00:00,0.0,1020.522417,0.0,87.54166667,17.185,0.165333333,237.94985051666666 +2016-08-13 01:00:00,0.0,1020.25575,0.0,89.64166667,17.41666667,0.07525,237.95323341666665 +2016-08-13 02:00:00,0.0,1019.85575,0.0,94.18333333,15.87583333,0.095083333,237.95900421666667 +2016-08-13 03:00:00,0.0,1019.517722,0.0,99.65833333,13.92833333,0.015416667,237.9598002 +2016-08-13 04:00:00,0.0,1019.3818060000001,0.038,100.0,13.0175,0.22575,237.96159115 +2016-08-13 05:00:00,0.0,1019.2728890000001,7.544666667,100.0,12.04916667,0.0505,237.96338206666667 +2016-08-13 06:00:00,0.0,1019.6228890000001,47.16083333,100.0,14.165,0.066,237.96298409999997 +2016-08-13 07:00:00,0.0,1019.783333,200.3108333,88.3,18.13666667,0.37658333299999996,237.96338206666667 +2016-08-13 08:00:00,0.0,1019.8437779999999,173.2116667,78.5375,20.81416667,0.862083333,237.96159115 +2016-08-13 09:00:00,0.0,1019.611972,282.9841667,72.9,22.38,1.1381666670000001,237.96099413333332 +2016-08-13 10:00:00,0.0,1019.4865,546.9333333,63.65583333,23.87,1.0805833329999999,237.95582035000004 +2016-08-13 11:00:00,0.0,1019.029694,524.4833333,55.53333333,24.83333333,1.3865,237.94985053333332 +2016-08-13 12:00:00,0.0,1018.759389,616.8666667,50.865,25.51166667,1.32775,237.94149280000002 +2016-08-13 13:00:00,0.0,1018.60575,623.175,48.95083333,26.7175,1.300666667,237.93353308333334 +2016-08-13 14:00:00,0.0,1018.1437779999999,567.3583332999999,49.96416667,27.2825,1.491916667,237.92696628333331 +2016-08-13 15:00:00,0.0,1017.7687779999999,423.1083333000001,51.235,27.34833333,1.290833333,237.9213945 +2016-08-13 16:00:00,0.0,1017.572417,349.0,51.21833333,27.65,1.04325,237.91522569999998 +2016-08-13 17:00:00,0.0,1017.3296939999999,114.765,47.70333333,27.23916667,0.87975,237.91084783333335 +2016-08-13 18:00:00,0.0,1017.370306,38.25,49.14583333,26.10916667,1.165583333,237.90647 +2016-08-13 19:00:00,0.0,1017.5312220000001,14.07166667,71.96666667,22.39,0.15875,237.905873 +2016-08-13 20:00:00,0.0,1018.033806,0.22066666699999998,83.54166667,19.34583333,0.290666667,237.90527601666668 +2016-08-13 21:00:00,0.0,1018.486972,0.0,89.93333333,18.17333333,0.283083333,237.90706696666666 +2016-08-13 22:00:00,0.0,1018.865611,0.0,97.38333333,16.8525,0.509916667,237.9086589 +2016-08-13 23:00:00,0.0,1018.76925,0.0,99.18333333,15.365,0.141916667,237.9094549 +2016-08-14 00:00:00,0.0,1018.7901390000001,0.0,99.84166667,13.84,0.418,237.9100518833333 +2016-08-14 01:00:00,0.0,1018.852583,0.0,100.0,13.38833333,0.29225,237.91164381666667 +2016-08-14 02:00:00,0.0,1018.8380279999999,0.0,100.0,12.31333333,0.070083333,237.91442971666666 +2016-08-14 03:00:00,0.0,1018.472417,0.0,100.0,11.3025,0.12825,237.91840956666667 +2016-08-14 04:00:00,0.0,1018.636972,0.015,100.0,10.7275,0.18841666699999998,237.92079750000002 +2016-08-14 05:00:00,0.0,1018.785917,7.836916667000001,100.0,10.52666667,0.052416667,237.92238943333334 +2016-08-14 06:00:00,0.0,1019.06925,51.60833333,100.0,12.43416667,0.144333333,237.9235834 +2016-08-14 07:00:00,0.0,1019.241667,168.6925,96.49166667,15.8075,0.7466666670000001,237.92636931666667 +2016-08-14 08:00:00,0.0,1019.4671390000001,213.825,84.15083333,18.99833333,0.7955,237.9251753666667 +2016-08-14 09:00:00,0.0,1019.666667,347.975,74.37916667,21.2,0.5085833329999999,237.92537435000006 +2016-08-14 10:00:00,0.0,1019.5234720000001,486.16666669999995,66.84583333,22.28583333,1.14075,237.92039951666666 +2016-08-14 11:00:00,0.0,1019.122417,252.68333330000002,66.32,22.0225,1.4723333330000001,237.91781260000002 +2016-08-14 12:00:00,0.0,1019.0156109999999,485.15,62.65416667,23.14166667,1.42825,237.91044986666668 +2016-08-14 13:00:00,0.0,1018.819833,420.125,60.17916667,23.64833333,1.126,237.90388306666668 +2016-08-14 14:00:00,0.0,1018.613028,542.825,53.92666667,25.2575,1.0135,237.89851026666665 +2016-08-14 15:00:00,0.0,1018.3604449999999,481.175,49.07416667,26.04666667,1.1694166670000001,237.89552536666667 +2016-08-14 16:00:00,0.0,1018.2,421.09166669999996,46.36583333,25.35583333,2.29925,237.89254044999998 +2016-08-14 17:00:00,0.0,1017.847417,141.11,47.9525,24.92583333,1.149833333,237.89234145 +2016-08-14 18:00:00,0.0,1017.861972,49.48833333,52.63916667,24.325,1.9538333330000002,237.8909485 +2016-08-14 19:00:00,0.0,1018.3983609999999,13.67758333,63.9175,22.405,2.621333333,237.8903515333333 +2016-08-14 20:00:00,0.0,1019.09425,0.140333333,73.63083333,20.92166667,1.981333333,237.8907495 +2016-08-14 21:00:00,0.0,1019.3812220000001,0.0,88.025,17.6925,0.46016666700000003,237.89453038333332 +2016-08-14 22:00:00,0.0,1019.634389,0.0,95.975,14.5225,0.09775,237.8965203333333 +2016-08-14 23:00:00,0.0,1019.697889,0.0,98.38333333,13.46666667,0.13475,237.89811226666666 +2016-08-15 00:00:00,0.0,1019.85575,0.0,99.65,12.20583333,0.229583333,237.90069918333333 +2016-08-15 01:00:00,0.0,1019.9072779999999,0.0,100.0,11.64,0.172083333,237.90249011666666 +2016-08-15 02:00:00,0.0,1019.684389,0.0,100.0,10.98666667,0.2065,237.90786293333335 +2016-08-15 03:00:00,0.0,1019.604694,0.0,100.0,10.46833333,0.09,237.90985286666668 +2016-08-15 04:00:00,0.0,1019.64425,0.021166667000000004,100.0,10.185,0.05925,237.91184280000002 +2016-08-15 05:00:00,0.0,1019.5677220000001,6.4195,100.0,9.889166667000001,0.035666667,237.9150266833333 +2016-08-15 06:00:00,0.0,1019.805167,41.21583333,100.0,11.595,0.069833333,237.91462871666667 +2016-08-15 07:00:00,0.0,1020.141667,193.6791667,92.89166667,15.2425,0.933666667,237.91582266666668 +2016-08-15 08:00:00,0.0,1019.975,171.1191667,81.94666667,16.82666667,2.4561666669999997,237.9168176166667 +2016-08-15 09:00:00,0.0,1019.8687779999999,282.8633333,74.88416667,18.45833333,2.615416667,237.91562368333334 +2016-08-15 10:00:00,0.0,1019.547417,530.75,66.795,20.26666667,2.594166667,237.91084783333335 +2016-08-15 11:00:00,0.0,1019.1365,597.2166667,59.35166667,22.095,2.082583333,237.90467905 +2016-08-15 12:00:00,0.0,1018.739083,631.5333333,56.45833333,23.16333333,1.899416667,237.89811225000003 +2016-08-15 13:00:00,0.0,1018.402111,638.575,53.43583333,24.07583333,1.910916667,237.8917445 +2016-08-15 14:00:00,0.0,1018.017722,492.11666669999994,52.40666667,24.46,2.359083333,237.88736663333336 +2016-08-15 15:00:00,0.0,1017.6401390000001,409.59166669999996,51.03,24.76166667,2.0731666669999997,237.88537669999997 +2016-08-15 16:00:00,0.0,1017.145889,377.1083333,49.4875,24.8225,1.9396666669999998,237.8821928 +2016-08-15 17:00:00,0.0,1016.50575,158.3175,51.2125,24.15666667,2.56525,237.8821928 +2016-08-15 18:00:00,0.0,1016.34425,42.7675,54.33083333,22.89416667,3.281083333,237.88020288333334 +2016-08-15 19:00:00,0.0,1016.610917,11.87066667,64.14666667,20.7925,2.225,237.87900891666666 +2016-08-15 20:00:00,0.0,1016.95,0.19675,78.53083333,19.15,1.4909166669999998,237.88000388333333 +2016-08-15 21:00:00,0.0,1017.097889,0.0,89.775,16.94916667,0.7373333329999999,237.88239178333333 +2016-08-15 22:00:00,0.0,1017.297417,0.0,96.18333333,15.01333333,0.36775,237.88438173333336 +2016-08-15 23:00:00,0.0,1017.4239439999999,0.0,97.21666667,13.24166667,0.242333333,237.88657066666667 +2016-08-16 00:00:00,0.0,1017.1927220000001,0.0,99.48333333,11.13333333,0.122,237.89114751666662 +2016-08-16 01:00:00,0.0,1016.745889,0.0,100.0,10.19083333,0.10675,237.89373441666666 +2016-08-16 02:00:00,0.0,1016.4333330000001,0.0,100.0,9.308333333,0.063916667,237.8963213333333 +2016-08-16 03:00:00,0.0,1016.264083,0.0,100.0,8.319333333,0.082916667,237.89990321666664 +2016-08-16 04:00:00,0.0,1016.004694,0.009416667,100.0,7.95775,0.110583333,237.9026891 +2016-08-16 05:00:00,0.0,1015.776056,7.02675,100.0,7.7410000000000005,0.037166667,237.905674 +2016-08-16 06:00:00,0.0,1015.902583,38.39083333,100.0,9.915833333,0.006083333000000001,237.90806195000002 +2016-08-16 07:00:00,0.0,1016.004694,142.905,93.70833333,13.24833333,0.423416667,237.9072659666667 +2016-08-16 08:00:00,0.0,1015.7427220000001,159.075,81.79583333,15.19916667,1.9059166669999998,237.91025083333332 +2016-08-16 09:00:00,0.0,1015.552111,291.8,72.66666667,17.175,1.8466666669999998,237.906669 +2016-08-16 10:00:00,0.0,1015.022416,496.1083333000001,65.3,19.43583333,1.1803333329999999,237.9034851 +2016-08-16 11:00:00,0.0,1014.699528,598.0416667000001,57.89583333,22.15583333,1.07075,237.89751528333332 +2016-08-16 12:00:00,0.0,1014.203167,637.8666667,52.71166667,23.6025,1.183916667,237.89074951666666 +2016-08-16 13:00:00,0.0,1013.763028,631.8083333,46.52166667,23.88833333,1.465333333,237.88179481666668 +2016-08-16 14:00:00,0.0,1013.0802779999999,584.3,47.16083333,24.7725,1.4405833330000002,237.8766209833333 +2016-08-16 15:00:00,0.0,1012.568778,506.5666666999999,44.1625,24.81583333,2.1485,237.8710491833333 +2016-08-16 16:00:00,0.0,1012.0578609999999,396.775,45.7675,25.035,2.187,237.8680642666667 +2016-08-16 17:00:00,0.0,1011.397417,104.37,48.01416667,24.15416667,2.3715833330000002,237.86886024999998 +2016-08-16 18:00:00,0.0,1011.1916669999999,40.71333333,51.635,23.30333333,2.0215,237.86667133333336 +2016-08-16 19:00:00,0.0,1011.24425,11.22475,64.2825,20.38,0.6779999999999999,237.86507938333332 +2016-08-16 20:00:00,0.0,1011.66925,0.145666667,84.16583333,16.195,0.22116666699999998,237.86607435 +2016-08-16 21:00:00,0.0,1011.952583,0.0,91.06666667,13.82083333,0.23525,237.86746728333333 +2016-08-16 22:00:00,0.0,1012.0630279999999,0.0,95.61666667,14.86916667,0.755,237.8710491833333 +2016-08-16 23:00:00,0.0,1012.0869720000001,0.0,94.5,15.87166667,0.84675,237.875825 +2016-08-17 00:00:00,0.0,1012.240611,0.0,90.34166667,14.1275,0.350083333,237.87761596666664 +2016-08-17 01:00:00,0.0,1012.3,0.0,93.24166667,12.96083333,0.33275,237.88079983333333 +2016-08-17 02:00:00,0.0,1012.0318060000001,0.0,97.73333333,10.54333333,0.236333333,237.88398375 +2016-08-17 03:00:00,0.0,1011.7046939999999,0.0,99.975,9.723333333,0.237416667,237.88816261666668 +2016-08-17 04:00:00,0.0,1011.809389,0.006083333000000001,100.0,9.3075,0.05275,237.89035151666667 +2016-08-17 05:00:00,0.0,1011.5713609999999,5.91575,100.0,9.308333333,0.161583333,237.89472936666667 +2016-08-17 06:00:00,0.0,1011.527583,30.15833333,100.0,11.55833333,0.6858333329999999,237.89552536666665 +2016-08-17 07:00:00,0.0,1011.7,211.175,86.72666667,14.31333333,1.78025,237.89472936666667 +2016-08-17 08:00:00,0.0,1011.6536390000001,174.1,74.87166667,16.62083333,1.238166667,237.89552536666667 +2016-08-17 09:00:00,0.0,1011.568778,286.37,66.12833333,19.445,1.054666667,237.8939334 +2016-08-17 10:00:00,0.0,1011.25575,549.3166667,57.825,21.40666667,1.40225,237.88915755000002 +2016-08-17 11:00:00,0.0,1010.8125560000001,571.925,52.48,22.39083333,1.46725,237.88438173333336 +2016-08-17 12:00:00,0.0,1010.309389,597.9083333,49.58916667,23.13333333,1.166083333,237.87681998333335 +2016-08-17 13:00:00,0.0,1009.9630279999999,563.9583332999999,45.38833333,23.805,1.828583333,237.86846225 +2016-08-17 14:00:00,0.0,1009.628167,588.1916667,42.215,24.69416667,1.218333333,237.8609005333333 +2016-08-17 15:00:00,0.0,1009.090139,511.0583333000001,40.5975,24.29083333,2.1845,237.85711963333333 +2016-08-17 16:00:00,0.0,1008.578167,405.3166667,39.10666667,24.26583333,2.2113333330000002,237.85632366666664 +2016-08-17 17:00:00,0.0,1008.358333,81.16916667,40.08416667,23.79166667,1.843083333,237.85353776666662 +2016-08-17 18:00:00,0.0,1008.229694,52.36833333,44.80333333,22.61833333,0.91175,237.85114981666663 +2016-08-17 19:00:00,0.0,1008.240611,16.54833333,66.10333333,19.565,0.146583333,237.85194579999998 +2016-08-17 20:00:00,0.0,1008.408333,0.22033333300000002,78.8725,13.785,0.122333333,237.8531397666667 +2016-08-17 21:00:00,0.0,1008.583333,0.0,89.9,11.79583333,0.08175,237.8577166333333 +2016-08-17 22:00:00,0.0,1008.6239439999999,0.0,95.15833333,10.34833333,0.08075,237.8603035333333 +2016-08-17 23:00:00,0.0,1008.5369720000001,0.0,98.18333333,9.513333333,0.0385,237.8640844 +2016-08-18 00:00:00,0.0,1008.4031669999999,0.0,99.1,8.591916667000001,0.0225,237.86726829999998 +2016-08-18 01:00:00,0.0,1008.026056,0.0,99.93333333,7.457999999999999,0.022000000000000002,237.8706511833333 +2016-08-18 02:00:00,0.0,1007.7521109999999,0.0,100.0,6.7475,0.05525,237.87562603333333 +2016-08-18 03:00:00,0.0,1007.40575,0.0,100.0,5.894833332999999,0.0105,237.8796058833333 +2016-08-18 04:00:00,0.0,1007.184389,0.0,100.0,5.661916667000001,0.001166667,237.88259078333337 +2016-08-18 05:00:00,0.0,1006.85575,4.913166667,100.0,5.676083332999999,0.094833333,237.88776461666666 +2016-08-18 06:00:00,0.0,1006.810917,27.07,100.0,8.237666667000001,0.009666667,237.88975455 +2016-08-18 07:00:00,0.0,1007.1489439999999,219.31666669999998,87.5025,12.925,0.18941666699999998,237.88955558333336 +2016-08-18 08:00:00,0.0,1007.1619720000001,172.2033333,72.135,15.88833333,0.8500833329999999,237.88676963333333 +2016-08-18 09:00:00,0.0,1007.152111,283.6675,63.73583333,18.315,0.973916667,237.88696863333334 +2016-08-18 10:00:00,0.0,1006.952111,537.2333332999999,56.25416667,21.715,0.899333333,237.8817948166667 +2016-08-18 11:00:00,0.0,1006.4546939999999,600.95,47.06083333,24.06833333,0.7905,237.87483006666665 +2016-08-18 12:00:00,0.0,1006.139083,589.0416667000001,41.96833333,25.0625,1.223083333,237.86667131666664 +2016-08-18 13:00:00,0.0,1005.612556,515.675,42.24416667,25.95916667,1.335083333,237.8607015166667 +2016-08-18 14:00:00,0.0,1005.18075,315.7916667,45.39333333,26.125,0.956833333,237.85473171666663 +2016-08-18 15:00:00,0.0,1004.6531669999999,316.5666667,44.65333333,26.725,1.3615833330000002,237.85274178333336 +2016-08-18 16:00:00,0.0,1004.589556,392.7583333,44.1125,26.99,0.909333333,237.84736898333333 +2016-08-18 17:00:00,0.0,1004.6630279999999,93.63166667,48.18583333,25.55833333,0.705666667,237.84617500000002 +2016-08-18 18:00:00,0.0,1004.852583,59.70083333,51.23666667,24.07083333,0.4745,237.84358809999995 +2016-08-18 19:00:00,0.0,1005.380167,6.446166667000001,60.62083333,21.325,0.073166667,237.84179716666665 +2016-08-18 20:00:00,0.0,1005.827583,0.072333333,72.32416667,18.495,0.080916667,237.84319011666662 +2016-08-18 21:00:00,0.0,1006.082278,0.0,72.5925,17.20833333,0.108666667,237.84637399999997 +2016-08-18 22:00:00,0.0,1006.266667,0.0,74.4175,17.98416667,0.236833333,237.84657298333332 +2016-08-18 23:00:00,0.0,1006.175,0.0,87.3,16.08583333,0.228,237.85055286666667 +2016-08-19 00:00:00,0.0,1006.102583,0.0,92.78333333,14.57333333,0.128333333,237.85433373333333 +2016-08-19 01:00:00,0.0,1006.28075,0.0,96.875,13.8325,0.052000000000000005,237.8585126 +2016-08-19 02:00:00,0.0,1006.111972,0.0,97.91666667,13.13083333,0.162166667,237.86249243333336 +2016-08-19 03:00:00,0.0,1006.125,0.0,99.70833333,11.84666667,0.06025,237.86706931666666 +2016-08-19 04:00:00,0.0,1006.177583,0.0,100.0,11.11833333,0.139416667,237.86866123333334 +2016-08-19 05:00:00,0.0,1006.4416669999999,4.20775,100.0,11.18666667,0.06308333299999999,237.8730391 +2016-08-19 06:00:00,0.0,1006.9124439999999,36.45,100.0,12.30666667,0.009333333000000001,237.87423306666665 +2016-08-19 07:00:00,0.0,1007.402583,147.8,95.96666667,15.65416667,0.23125,237.87622298333335 +2016-08-19 08:00:00,0.0,1007.6656109999999,170.69166669999998,85.99166667,17.9825,0.704333333,237.87721798333334 +2016-08-19 09:00:00,0.0,1007.625,272.825,77.80833333,20.265,1.079833333,237.87721796666665 +2016-08-19 10:00:00,0.0,1007.73075,488.6833333000001,72.95333333,22.04833333,0.9644166670000001,237.87204415 +2016-08-19 11:00:00,0.0,1007.572417,448.38333330000006,66.36666667,23.64166667,1.135666667,237.86607435000005 +2016-08-19 12:00:00,0.0,1007.091667,487.35,64.555,24.18,1.3800833330000002,237.86109948333333 +2016-08-19 13:00:00,0.0,1006.864083,312.8166667,61.74416667,24.7325,1.983,237.85592569999997 +2016-08-19 14:00:00,0.0,1006.6318060000001,310.7,56.09583333,25.24833333,1.23875,237.84995588333334 +2016-08-19 15:00:00,0.0,1006.23075,103.32,60.8625,24.81916667,0.5315,237.84736898333335 +2016-08-19 16:00:00,0.0,1006.39425,176.2166667,61.90333333,24.69666667,2.306166667,237.84458304999998 +2016-08-19 17:00:00,0.0,1006.5286390000001,98.1175,66.89833333,23.9,1.8455833330000002,237.84418505 +2016-08-19 18:00:00,0.0,1006.818194,33.5925,68.59333333,23.27833333,1.510083333,237.84299111666664 +2016-08-19 19:00:00,0.0,1006.948944,6.7024166670000005,78.16666667,22.09416667,0.67075,237.84159816666667 +2016-08-19 20:00:00,0.0,1007.245306,0.0,89.26666667,19.945,0.36541666700000003,237.84498104999997 +2016-08-19 21:00:00,0.0,1007.5931939999999,0.0,91.5,19.80833333,0.6243333329999999,237.84756794999998 +2016-08-19 22:00:00,0.0,1007.847889,0.0,80.9225,20.64416667,1.0544166670000001,237.84776696666668 +2016-08-19 23:00:00,0.0,1008.2786390000001,0.0,80.73583333,20.16583333,0.8793333329999999,237.85015486666666 +2016-08-20 00:00:00,2.4064164,1008.49425,0.0,90.525,18.585,0.10875,237.85353775 +2016-08-20 01:00:00,0.0,1008.2995279999999,0.0,95.45833333,17.47083333,0.145083333,237.85910956666666 +2016-08-20 02:00:00,0.0,1008.09425,0.0,99.625,17.12583333,0.26275,237.86308945000005 +2016-08-20 03:00:00,0.0,1007.989083,0.0,100.0,17.10333333,0.29783333300000003,237.86806426666666 +2016-08-20 04:00:00,0.0,1007.883333,0.0,100.0,16.54666667,0.1835,237.87144716666668 +2016-08-20 05:00:00,0.0,1008.085917,2.285583333,100.0,16.29,0.146666667,237.87542701666666 +2016-08-20 06:00:00,0.0,1008.3978890000001,35.24666667,100.0,15.97333333,0.15833333300000002,237.87781493333333 +2016-08-20 07:00:00,0.0,1008.511972,138.2308333,89.26666667,19.00166667,0.8885,237.87980488333332 +2016-08-20 08:00:00,0.0,1008.9598609999999,98.625,79.71916667,20.30833333,0.910666667,237.88079986666665 +2016-08-20 09:00:00,0.0,1009.2812220000001,202.925,78.1375,21.07666667,0.8723333329999999,237.88418273333335 +2016-08-20 10:00:00,0.0,1009.7489439999999,157.0916667,80.24833333,21.13,0.99825,237.88119785 +2016-08-20 11:00:00,0.0,1009.740611,137.1141667,80.11,20.535,0.758,237.88199381666666 +2016-08-20 12:00:00,0.0,1010.2812220000001,178.825,75.76833333,21.24416667,1.08075,237.87781495 +2016-08-20 13:00:00,0.0,1010.55,150.6083333,72.75333333,21.19416667,0.810083333,237.87522801666668 +2016-08-20 14:00:00,11.11332456,1010.5072779999999,72.55,79.51916667,19.9875,1.067416667,237.87423306666668 +2016-08-20 15:00:00,17.27733194,1010.585917,79.94833333,93.60833333,17.595,1.296083333,237.87502904999997 +2016-08-20 16:00:00,0.0,1010.7510560000001,125.615,86.19166667,17.11,0.7979999999999999,237.8790089 +2016-08-20 17:00:00,0.0,1010.638028,72.99,83.51666667,17.25333333,0.715166667,237.87861091666664 +2016-08-20 18:00:00,0.0,1010.830167,64.26083333,79.32833333,17.73416667,0.775666667,237.88079985 +2016-08-20 19:00:00,0.0,1011.2348609999999,7.90825,94.01666667,15.68083333,0.571416667,237.88358575000004 +2016-08-20 20:00:00,0.0,1011.8812220000001,0.029583333,99.14166667,12.965,0.165333333,237.88716763333332 +2016-08-20 21:00:00,0.0,1012.3338050000001,0.0,100.0,11.62083333,0.2215,237.88995353333334 +2016-08-20 22:00:00,0.0,1012.559389,0.0,100.0,10.465,0.252,237.89453038333332 +2016-08-20 23:00:00,0.0,1012.76925,0.0,100.0,10.985,0.18566666699999998,237.89592334999998 +2016-08-21 00:00:00,0.0,1012.9072779999999,0.0,100.0,12.6325,0.254833333,237.89731629999997 +2016-08-21 01:00:00,0.0,1013.103639,0.0,100.0,13.235,0.42216666700000005,237.89851026666665 +2016-08-21 02:00:00,0.0,1013.235917,0.0,100.0,13.39333333,0.559666667,237.89930621666667 +2016-08-21 03:00:00,0.0,1013.3989439999999,0.0,100.0,12.59666667,0.144416667,237.89990318333335 +2016-08-21 04:00:00,0.0,1013.514083,0.0,99.53333333,10.9675,0.11308333300000001,237.90448003333333 +2016-08-21 05:00:00,0.0,1013.292722,2.948083333,99.66666667,10.1775,0.339583333,237.90786293333335 +2016-08-21 06:00:00,0.0,1013.555167,30.11666667,98.725,11.6825,0.40766666700000004,237.91005186666666 +2016-08-21 07:00:00,0.0,1013.9978890000001,134.5075,90.48333333,15.39833333,0.39766666700000003,237.91184281666665 +2016-08-21 08:00:00,0.0,1014.220306,179.7,84.25,16.89666667,0.933583333,237.91403173333333 +2016-08-21 09:00:00,0.0,1014.443194,147.68333330000002,80.62583333,17.1175,0.973833333,237.91522568333335 +2016-08-21 10:00:00,0.0,1014.7,275.0666667,72.42083333,18.51166667,1.4656666669999998,237.91283776666668 +2016-08-21 11:00:00,0.0,1014.9,329.3166667,68.575,18.85416667,1.242416667,237.90905691666669 +2016-08-21 12:00:00,0.0,1014.952583,261.5416667,71.55833333,18.5275,1.51275,237.9120418 +2016-08-21 13:00:00,2.531102064,1015.1619720000001,330.5,79.99416667,18.09416667,0.7333333329999999,237.90646998333338 +2016-08-21 14:00:00,0.0,1015.4515279999999,341.525,69.32833333,20.34416667,1.2105,237.90288811666665 +2016-08-21 15:00:00,2.543828424,1015.827583,127.06416670000002,81.3775,17.83166667,0.87575,237.90328608333334 +2016-08-21 16:00:00,2.558539248,1016.01925,310.6725,85.80666667,17.7175,0.737583333,237.9038830833333 +2016-08-21 17:00:00,0.0,1016.56925,103.6433333,75.205,19.16,0.968583333,237.89950521666665 +2016-08-21 18:00:00,0.0,1016.8588060000001,40.875,76.16416667,18.21583333,0.593583333,237.90050018333332 +2016-08-21 19:00:00,0.0,1017.591083,4.312666667,81.0825,17.17083333,0.6848333329999999,237.89930621666667 +2016-08-21 20:00:00,0.0,1018.310917,0.0,82.78333333,16.335,0.25975,237.90209213333333 +2016-08-21 21:00:00,0.0,1018.652583,0.0,86.00833333,15.49083333,0.1795,237.90448004999996 +2016-08-21 22:00:00,0.0,1019.1171390000001,0.0,90.20833333,15.03166667,0.560583333,237.90507701666664 +2016-08-21 23:00:00,0.0,1019.573945,0.0,91.63333333,14.04666667,0.210083333,237.90587301666665 +2016-08-22 00:00:00,0.0,1019.9848609999999,0.0,90.575,14.82833333,0.45333333299999995,237.90726598333333 +2016-08-22 01:00:00,0.0,1020.175,0.0,92.45833333,14.72083333,0.151666667,237.90985288333331 +2016-08-22 02:00:00,0.0,1020.443194,0.0,93.90833333,14.17,0.17300000000000001,237.91343476666668 +2016-08-22 03:00:00,0.0,1020.947889,0.0,92.58333333,14.53166667,0.12066666699999999,237.91303676666666 +2016-08-22 04:00:00,0.0,1020.8296939999999,0.0,95.25,13.33666667,0.041583333,237.91661865 +2016-08-22 05:00:00,0.0,1021.0765279999999,5.159666667,99.075,11.27583333,0.038833333,237.91980255 +2016-08-22 06:00:00,0.0,1021.6098609999999,34.40416667,100.0,11.335,0.004916667,237.92258843333332 +2016-08-22 07:00:00,0.0,1022.347889,121.83166670000001,92.50833333,15.33416667,0.479916667,237.9213944833333 +2016-08-22 08:00:00,0.0,1022.784861,99.46916667,87.23333333,15.98916667,0.51175,237.92238946666666 +2016-08-22 09:00:00,0.0,1023.155167,173.55833330000002,84.05833333,16.90583333,0.944416667,237.9217924666667 +2016-08-22 10:00:00,0.0,1023.5010550000001,228.06666669999998,84.49583333,17.67416667,0.7759166670000001,237.9217925 +2016-08-22 11:00:00,0.0,1023.246361,362.1083333,77.0825,18.83416667,1.202583333,237.92079750000002 +2016-08-22 12:00:00,0.0,1023.1,263.59166669999996,75.395,19.19905421,1.6155,237.91622066666665 +2016-08-22 13:00:00,0.0,1023.333333,186.30833330000002,80.1475,18.66599496,0.746166667,237.91403174999996 +2016-08-22 14:00:00,0.0,1023.54425,252.625,78.82666667,19.30377027,1.1550833329999999,237.91064885 +2016-08-22 15:00:00,0.0,1023.516667,260.6833333,74.53333333,20.32618327,0.94375,237.90467903333334 +2016-08-22 16:00:00,0.0,1023.5489439999999,239.7416667,72.845,20.98943672,0.702916667,237.90050018333332 +2016-08-22 17:00:00,0.0,1023.522417,118.00833329999999,72.45083333,21.25261319,0.92775,237.89851023333335 +2016-08-22 18:00:00,0.0,1023.582278,47.77666667,75.11166667,20.91,0.29175,237.89811226666666 +2016-08-22 19:00:00,0.0,1023.732278,8.848916667000001,85.81333333,18.5175,0.172916667,237.89751528333332 +2016-08-22 20:00:00,0.0,1023.983333,0.0,95.50833333,15.59166667,0.197833333,237.89870925 +2016-08-22 21:00:00,0.0,1023.857278,0.0,99.075,14.00333333,0.04475,237.90030118333334 +2016-08-22 22:00:00,0.0,1024.045306,0.0,100.0,12.80333333,0.0735,237.90189314999998 +2016-08-22 23:00:00,0.0,1024.047417,0.0,100.0,11.58916667,0.04,237.90408205000003 +2016-08-23 00:00:00,0.0,1023.9072779999999,0.0,100.0,10.7175,0.08175,237.90567401666667 +2016-08-23 01:00:00,0.0,1023.78075,0.0,100.0,10.185,0.10616666699999999,237.90945488333332 +2016-08-23 02:00:00,0.0,1024.006222,0.0,100.0,9.469166667,0.026166667,237.91144481666666 +2016-08-23 03:00:00,0.0,1024.0296939999998,0.0,100.0,8.981666667,0.011166667,237.9142307333333 +2016-08-23 04:00:00,0.0,1024.131222,0.0,100.0,9.018333333,0.013583333000000001,237.91502669999997 +2016-08-23 05:00:00,0.0,1024.523944,3.571416667,100.0,10.68916667,0.005166667,237.91681763333335 +2016-08-23 06:00:00,0.0,1024.9015279999999,28.555,100.0,12.12416667,0.0085,237.9180116 +2016-08-23 07:00:00,0.0,1025.152583,116.85416670000001,100.0,12.83333333,0.15491666699999998,237.91860859999997 +2016-08-23 08:00:00,0.0,1025.2760560000002,156.6375,95.48333333,14.295,0.441,237.91980253333335 +2016-08-23 09:00:00,0.0,1025.147417,268.6416667,82.9125,19.0,0.675583333,237.92059851666667 +2016-08-23 10:00:00,0.0,1024.839083,514.3416666999999,71.45083333,22.54166667,0.816583333,237.92000151666664 +2016-08-23 11:00:00,0.0,1024.3615,576.8083333,63.18166667,24.79666667,1.173333333,237.91442973333332 +2016-08-23 12:00:00,0.0,1023.6437779999999,626.1583333,57.91416667,26.51833333,1.0676666670000001,237.90766393333334 +2016-08-23 13:00:00,0.0,1023.389083,590.1916667,52.12666667,27.25583333,1.161916667,237.89910723333332 +2016-08-23 14:00:00,0.0,1022.7016390000001,547.7583333,47.19583333,28.46166667,0.7353333329999999,237.89373441666666 +2016-08-23 15:00:00,0.0,1022.2010560000001,475.96666669999996,43.90833333,28.31666667,1.5401666669999998,237.88696863333334 +2016-08-23 16:00:00,0.0,1021.85575,372.3166667,44.83916667,28.67083333,1.310833333,237.88079983333338 +2016-08-23 17:00:00,0.0,1021.5677220000001,52.43166667,48.60583333,27.62083333,1.652833333,237.87562601666664 +2016-08-23 18:00:00,0.0,1021.284389,28.0425,54.04916667,26.33083333,1.6404166669999998,237.87423305000002 +2016-08-23 19:00:00,0.0,1021.5765279999999,7.122333332999999,74.27416667,22.80666667,0.9590833329999999,237.87045220000002 +2016-08-23 20:00:00,0.0,1021.716667,0.0,87.43333333,18.05666667,0.16475,237.87045220000002 +2016-08-23 21:00:00,0.0,1021.697417,0.0,93.13333333,15.585,0.1395,237.87204413333333 +2016-08-23 22:00:00,0.0,1021.5786390000001,0.0,97.75833333,13.7975,0.11525,237.8730391 +2016-08-23 23:00:00,0.0,1021.496361,0.0,99.05833333,12.78083333,0.083416667,237.87463103333334 +2016-08-24 00:00:00,0.0,1021.4593890000001,0.0,100.0,11.94833333,0.002833333,237.87582501666665 +2016-08-24 01:00:00,0.0,1021.333333,0.0,100.0,11.45333333,0.0525,237.87781496666665 +2016-08-24 02:00:00,0.0,1021.129694,0.0,100.0,10.78833333,0.1085,237.88338678333332 +2016-08-24 03:00:00,0.0,1020.948472,0.0,100.0,10.61,0.08816666699999999,237.88378473333339 +2016-08-24 04:00:00,0.0,1020.591667,0.0,100.0,10.4425,0.049333333,237.8885606 +2016-08-24 05:00:00,0.0,1020.735917,2.589083333,100.0,10.28333333,0.06308333299999999,237.88975456666665 +2016-08-24 06:00:00,0.0,1021.1406109999999,17.61916667,100.0,11.9775,0.0065,237.89154548333332 +2016-08-24 07:00:00,0.0,1021.452583,139.985,99.18333333,16.36666667,0.41633333299999997,237.88995355 +2016-08-24 08:00:00,0.0,1021.5,152.79416669999998,84.88666667,20.22333333,0.7340000000000001,237.89015253333332 +2016-08-24 09:00:00,0.0,1021.2651390000001,263.0858333,66.67833333,23.60583333,1.3176666670000001,237.88756561666665 +2016-08-24 10:00:00,0.0,1020.9760550000001,508.2666666999999,57.5125,26.31416667,2.1680833330000002,237.88298878333333 +2016-08-24 11:00:00,0.0,1020.6115,570.4,54.3475,27.57166667,2.725833333,237.87681996666666 +2016-08-24 12:00:00,0.0,1020.159389,597.4333333,50.4975,28.88166667,2.5925833330000003,237.86587535 +2016-08-24 13:00:00,0.0,1019.6734720000001,589.3,48.65083333,29.74666667,2.507833333,237.85990553333332 +2016-08-24 14:00:00,0.0,1019.293778,546.95,44.43666667,30.63833333,2.685083333,237.8521448 +2016-08-24 15:00:00,0.0,1018.948472,471.54166669999995,43.72166667,30.90166667,2.5445833330000003,237.84299109999998 +2016-08-24 16:00:00,0.0,1018.478167,369.65,43.40666667,30.90916667,2.183666667,237.83801626666664 +2016-08-24 17:00:00,0.0,1017.7687779999999,44.56166667,46.88,30.06583333,1.7558333330000002,237.83921024999998 +2016-08-24 18:00:00,0.0,1017.397417,27.54,53.98083333,28.945,1.41475,237.83821526666668 +2016-08-24 19:00:00,0.0,1017.5312220000001,5.87175,76.12833333,24.9725,0.47966666700000005,237.83781728333335 +2016-08-24 20:00:00,0.0,1017.725,0.0,87.9,19.47083333,0.23399999999999999,237.83960823333334 +2016-08-24 21:00:00,0.0,1017.8130279999999,0.0,94.59166667,17.1925,0.081583333,237.84179713333333 +2016-08-24 22:00:00,0.0,1017.589083,0.0,98.41666667,15.59833333,0.036583332999999996,237.84498104999997 +2016-08-24 23:00:00,0.0,1017.333333,0.0,99.75833333,14.75333333,0.147333333,237.84836395000002 +2016-08-25 00:00:00,0.0,1017.345306,0.0,100.0,13.96,0.0905,237.85075185000002 +2016-08-25 01:00:00,0.0,1017.18075,0.0,100.0,13.35,0.064,237.8555277 +2016-08-25 02:00:00,0.0,1016.979694,0.0,100.0,12.55583333,0.09325,237.85970656666666 +2016-08-25 03:00:00,0.0,1016.8427220000001,0.0,100.0,12.12833333,0.079166667,237.86348741666666 +2016-08-25 04:00:00,0.0,1016.8083330000001,0.0,100.0,11.5475,0.046166667,237.86547735 +2016-08-25 05:00:00,0.0,1016.8083330000001,2.394666667,100.0,11.03083333,0.055,237.87065116666665 +2016-08-25 06:00:00,0.0,1017.035917,17.2825,100.0,12.84083333,0.0,237.87383508333335 +2016-08-25 07:00:00,0.0,1016.996361,134.86583330000002,99.55,17.68833333,0.20575,237.87542701666666 +2016-08-25 08:00:00,0.0,1016.9927220000001,154.15083330000002,80.18083333,22.0575,0.754416667,237.87483003333332 +2016-08-25 09:00:00,0.0,1016.7213609999999,266.7175,62.1525,24.7975,2.374333333,237.87403406666667 +2016-08-25 10:00:00,0.0,1016.4984720000001,515.7333333,53.00333333,26.75416667,2.696916667,237.86945721666666 +2016-08-25 11:00:00,0.0,1015.824528,578.8833333,46.85083333,28.25333333,3.0524166669999997,237.86269143333334 +2016-08-25 12:00:00,0.0,1015.2354439999999,607.025,39.85833333,29.765,2.581666667,237.85294076666665 +2016-08-25 13:00:00,0.0,1014.944833,597.5166667000001,36.35083333,30.64333333,2.946166667,237.8433891 +2016-08-25 14:00:00,0.0,1014.575,552.8416667,35.855,31.3375,2.7245,237.83403641666666 +2016-08-25 15:00:00,0.0,1014.0161939999999,476.0,36.18916667,31.74833333,2.804666667,237.82846461666668 +2016-08-25 16:00:00,0.0,1013.362555,370.8916667,36.13,32.0225,2.83075,237.8258777 +2016-08-25 17:00:00,0.0,1012.6828609999999,43.6875,36.9925,31.27333333,2.5453333330000003,237.82627564999999 +2016-08-25 18:00:00,0.0,1012.36925,27.24083333,47.94166667,29.795,1.494083333,237.8256786833333 +2016-08-25 19:00:00,0.0,1012.943194,5.371666667,70.03833333,23.26333333,0.5176666670000001,237.82289279999998 +2016-08-25 20:00:00,0.0,1013.1093890000001,0.0,83.46583333,18.81333333,0.2425,237.82448473333332 +2016-08-25 21:00:00,0.0,1012.866667,0.0,92.33333333,16.63333333,0.195083333,237.82707165000002 +2016-08-25 22:00:00,0.0,1013.021361,0.0,94.63333333,15.5425,0.232666667,237.82926056666665 +2016-08-25 23:00:00,0.0,1013.072889,0.0,96.40833333,14.84833333,0.225083333,237.83204648333333 +2016-08-26 00:00:00,0.0,1013.2130279999999,0.0,97.84166667,13.51416667,0.10525,237.83363841666667 +2016-08-26 01:00:00,0.0,1013.009389,0.0,99.86666667,12.69583333,0.22066666699999998,237.83642433333333 +2016-08-26 02:00:00,0.0,1012.966667,0.0,100.0,12.23166667,0.159833333,237.84020518333332 +2016-08-26 03:00:00,0.0,1013.1572779999999,0.0,100.0,11.63333333,0.106833333,237.8435881 +2016-08-26 04:00:00,0.0,1013.270306,0.0,100.0,11.37333333,0.093666667,237.84736898333335 +2016-08-26 05:00:00,0.0,1013.5228890000001,2.313,100.0,11.09333333,0.08816666699999999,237.85075185000002 +2016-08-26 06:00:00,0.0,1013.7989449999999,16.94666667,100.0,12.7175,0.015583333000000001,237.85433375 +2016-08-26 07:00:00,0.0,1013.857278,123.19416670000001,94.57333333,17.8025,0.172666667,237.85731861666667 +2016-08-26 08:00:00,0.0,1014.025,149.7641667,74.13666667,21.99416667,0.45525,237.85831359999997 +2016-08-26 09:00:00,0.0,1014.1572779999999,260.0083333,58.7675,25.47666667,1.072083333,237.85652265000002 +2016-08-26 10:00:00,0.0,1014.232278,498.0666666999999,49.22833333,27.61583333,1.6019166669999998,237.84955788333332 +2016-08-26 11:00:00,0.0,1014.1177220000001,561.5166667000001,45.41083333,29.59333333,1.5110833330000002,237.84139915 +2016-08-26 12:00:00,0.0,1013.989083,587.925,44.505,31.41083333,1.49075,237.8312505333333 +2016-08-26 13:00:00,0.0,1013.8677220000001,574.55,43.78833333,32.7975,1.595,237.8232907833333 +2016-08-26 14:00:00,0.0,1013.7786390000001,523.5,42.0775,33.31666667,1.847,237.81533106666666 +2016-08-26 15:00:00,0.0,1013.410444,446.675,42.05416667,33.54583333,1.8414166669999998,237.81314211666668 +2016-08-26 16:00:00,0.0,1013.246361,340.9416667,42.55166667,33.60333333,1.7955,237.81135116666667 +2016-08-26 17:00:00,0.0,1013.009389,43.53666667,46.73333333,32.7425,2.5785,237.81015723333334 +2016-08-26 18:00:00,0.0,1012.990611,25.7925,55.27666667,31.22833333,1.890166667,237.8103561833333 +2016-08-26 19:00:00,0.0,1013.4895560000001,3.397333333,73.99333333,26.28166667,0.602916667,237.81095319999997 +2016-08-26 20:00:00,0.0,1013.69425,0.0,86.15,23.1925,0.24833333300000002,237.81493305 +2016-08-26 21:00:00,0.0,1014.16925,0.0,92.575,20.81583333,0.26625,237.81533104999997 +2016-08-26 22:00:00,0.0,1014.543194,0.0,95.00833333,19.49166667,0.237333333,237.81811693333336 +2016-08-26 23:00:00,0.0,1014.573472,0.0,95.76666667,18.69083333,0.133583333,237.8230917666667 +2016-08-27 00:00:00,0.0,1014.607278,0.0,98.45833333,17.49166667,0.177916667,237.82627566666665 +2016-08-27 01:00:00,0.0,1014.685917,0.0,99.66666667,16.8325,0.256,237.83065353333333 +2016-08-27 02:00:00,0.0,1014.891667,0.0,99.98333333,16.44416667,0.206916667,237.83503139999996 +2016-08-27 03:00:00,0.0,1014.895306,0.0,100.0,16.0225,0.15975,237.8390112333333 +2016-08-27 04:00:00,0.0,1014.9989439999999,0.0,100.0,15.32166667,0.287833333,237.84418505 +2016-08-27 05:00:00,0.0,1015.0619720000001,2.126416667,100.0,15.41083333,0.145083333,237.84716998333332 +2016-08-27 06:00:00,0.0,1015.4515279999999,17.82916667,100.0,16.27666667,0.03825,237.84955791666667 +2016-08-27 07:00:00,0.0,1015.848944,110.91583329999999,97.88333333,20.54083333,0.380333333,237.85274176666667 +2016-08-27 08:00:00,0.0,1015.958333,144.39583330000002,78.63916667,23.22,1.605666667,237.85373674999997 +2016-08-27 09:00:00,0.0,1016.065611,255.3466667,70.0525,26.0825,1.122416667,237.85294078333334 +2016-08-27 10:00:00,0.0,1015.8651390000001,482.6916666999999,61.1275,28.89416667,0.923166667,237.84736895 +2016-08-27 11:00:00,0.0,1015.4068060000001,546.2166667,48.38416667,31.54833333,1.039583333,237.83940923333333 +2016-08-27 12:00:00,0.0,1015.014083,571.9666667,43.48666667,33.29833333,1.6320833330000002,237.82906158333333 +2016-08-27 13:00:00,0.0,1014.70575,564.7333332999999,41.02333333,34.18416667,1.4485,237.81871391666667 +2016-08-27 14:00:00,0.0,1014.1531669999999,523.5583333000001,37.73333333,34.37166667,1.8934166669999999,237.81155016666665 +2016-08-27 15:00:00,0.0,1013.6151390000001,448.96666669999996,37.87583333,34.415,2.038416667,237.80558035 +2016-08-27 16:00:00,0.0,1012.94225,334.4416667,35.69416667,34.33166667,2.0460833330000003,237.80299345000003 +2016-08-27 17:00:00,0.0,1012.198472,41.56583333,40.06333333,33.33416667,2.16875,237.80478438333333 +2016-08-27 18:00:00,0.0,1012.1489439999999,25.51,48.93833333,31.38666667,1.3925833330000001,237.80060555 +2016-08-27 19:00:00,0.0,1012.4801669999999,2.362333333,68.92083333,24.925,0.24683333300000002,237.80040654999996 +2016-08-27 20:00:00,0.0,1012.568778,0.0,81.18,21.94083333,0.289916667,237.80458540000004 +2016-08-27 21:00:00,0.0,1012.4630279999999,0.0,89.68333333,19.53333333,0.212166667,237.80637633333336 +2016-08-27 22:00:00,0.0,1012.097417,0.0,93.975,18.40583333,0.14225,237.81095319999997 +2016-08-27 23:00:00,0.0,1012.0703060000001,0.0,96.325,17.46916667,0.1755,237.81433606666667 +2016-08-28 00:00:00,0.0,1011.777111,0.0,98.65,16.42833333,0.16066666699999999,237.81990788333334 +2016-08-28 01:00:00,0.0,1011.356806,0.0,99.425,15.84083333,0.1185,237.8232908 +2016-08-28 02:00:00,0.0,1011.325,0.0,99.78333333,15.75916667,0.105833333,237.82667364999998 +2016-08-28 03:00:00,0.0,1011.081806,0.0,99.975,15.3575,0.11725,237.83144951666665 +2016-08-28 04:00:00,0.0,1010.832278,0.0,100.0,14.895,0.175666667,237.83503139999996 +2016-08-28 05:00:00,0.0,1011.0786390000001,1.6359166669999998,100.0,14.88666667,0.142666667,237.84020519999999 +2016-08-28 06:00:00,0.0,1010.975,16.602999999999998,100.0,15.37416667,0.173166667,237.84398608333333 +2016-08-28 07:00:00,0.0,1011.3895560000001,117.10833329999998,95.31666667,19.485,0.488416667,237.84358808333332 +2016-08-28 08:00:00,0.0,1011.7895560000001,121.68666670000002,82.06333333,22.03333333,0.928416667,237.84518003333332 +2016-08-28 09:00:00,0.0,1011.8822779999999,262.85,72.12416667,25.23833333,0.7899166670000001,237.84597601666667 +2016-08-28 10:00:00,0.0,1011.512556,474.08333330000005,60.52333333,28.46583333,1.335333333,237.8427921166667 +2016-08-28 11:00:00,0.0,1010.803167,531.7,53.95166667,30.86166667,1.5450833330000002,237.83582734999996 +2016-08-28 12:00:00,0.0,1010.231806,561.1833333,46.06583333,32.3775,2.449,237.82508171666666 +2016-08-28 13:00:00,0.0,1009.7187779999999,480.81083330000007,41.94416667,33.64083333,2.097583333,237.81473405 +2016-08-28 14:00:00,822.8178622,1009.909389,106.38,87.0525,23.1575,2.4965,237.8825908 +2016-08-28 15:00:00,5.533983216,1009.291667,357.56,78.56166667,27.3225,2.112666667,237.99542 +2016-08-28 16:00:00,0.0,1009.9707779999999,150.88666669999998,60.86,27.95166667,1.32525,238.00318075000004 +2016-08-28 17:00:00,0.0,1010.470306,49.49916667,61.57916667,26.665,0.5860833329999999,238.00576766666669 +2016-08-28 18:00:00,0.0,1010.7015279999999,28.76333333,84.79,24.08583333,0.604833333,238.0043747 +2016-08-28 19:00:00,0.0,1011.01925,5.14275,94.39166667,21.35916667,0.242583333,238.0011908166667 +2016-08-28 20:00:00,0.0,1011.427583,0.0,98.25,19.35,0.313333333,237.99999685000003 +2016-08-28 21:00:00,0.0,1012.024417,0.0,99.71666667,18.86416667,0.256833333,237.99780793333335 +2016-08-28 22:00:00,0.0,1012.693194,0.0,99.95833333,18.98916667,0.180166667,237.9940270666667 +2016-08-28 23:00:00,0.0,1013.090611,0.0,100.0,18.26333333,0.27699999999999997,237.99362906666667 +2016-08-29 00:00:00,0.0,1013.0703060000001,0.0,100.0,17.13083333,0.179416667,237.99343005 +2016-08-29 01:00:00,0.0,1013.133333,0.0,100.0,16.24,0.169916667,237.9914401333333 +2016-08-29 02:00:00,0.0,1013.225,0.0,100.0,16.28416667,0.224666667,237.98905221666664 +2016-08-29 03:00:00,0.0,1013.402583,0.0,100.0,16.76083333,0.32866666699999997,237.98925121666662 +2016-08-29 04:00:00,0.0,1013.3380279999999,0.0,100.0,16.625,0.32725,237.98865423333334 +2016-08-29 05:00:00,0.0,1013.4286390000001,1.7238333330000002,100.0,15.36333333,0.105333333,237.98865423333334 +2016-08-29 06:00:00,0.0,1014.012444,17.76,97.05833333,15.81833333,0.4875,237.98825624999998 +2016-08-29 07:00:00,0.0,1014.646833,108.93916670000002,86.30833333,18.35166667,0.5665,237.98646531666668 +2016-08-29 08:00:00,0.0,1014.960917,164.45,79.12583333,20.10166667,0.934333333,237.98447538333335 +2016-08-29 09:00:00,0.0,1015.207278,260.40833330000004,72.665,21.2725,1.020333333,237.98188845000004 +2016-08-29 10:00:00,0.0,1015.475,338.1666667,69.94416667,21.65583333,1.038666667,237.98109248333336 +2016-08-29 11:00:00,0.0,1015.5239439999999,316.3166667,67.765,22.29333333,1.0088333329999999,237.98089348333335 +2016-08-29 12:00:00,0.0,1015.5453060000001,261.55,66.22916667,22.35583333,1.070333333,237.97989853333334 +2016-08-29 13:00:00,0.0,1015.716667,281.3358333,62.75333333,22.88416667,1.113166667,237.97711261666666 +2016-08-29 14:00:00,0.0,1015.733333,211.56666669999998,63.36416667,22.65833333,0.819666667,237.97571966666666 +2016-08-29 15:00:00,0.0,1015.8431939999999,143.15,66.01,21.96833333,1.953,237.97273476666666 +2016-08-29 16:00:00,0.0,1016.360917,137.3833333,67.32416667,21.7175,2.380083333,237.96994885 +2016-08-29 17:00:00,0.0,1016.71925,82.18166667,72.65916667,21.06666667,3.125166667,237.96756095 +2016-08-29 18:00:00,0.0,1017.080167,31.36916667,75.76083333,20.19833333,1.5355833330000002,237.96477503333332 +2016-08-29 19:00:00,0.0,1017.6885,1.61675,82.24333333,18.8575,0.318583333,237.96378004999997 +2016-08-29 20:00:00,0.0,1018.5791109999999,0.0,86.18333333,18.46083333,0.9055833329999999,237.96119315 +2016-08-29 21:00:00,0.0,1019.237445,0.0,94.6,16.49583333,0.15633333300000002,237.96159114999998 +2016-08-29 22:00:00,0.0,1019.810917,0.0,99.225,15.78833333,0.2355,237.96258611666667 +2016-08-29 23:00:00,0.0,1020.0635,0.0,100.0,15.635,0.309583333,237.96417803333335 +2016-08-30 00:00:00,0.0,1020.3046939999999,0.0,100.0,14.31333333,0.256583333,237.96358106666665 +2016-08-30 01:00:00,0.0,1020.5312220000001,0.0,100.0,12.88416667,0.08666666699999999,237.96417803333335 +2016-08-30 02:00:00,0.0,1020.94425,0.0,100.0,11.88583333,0.11983333300000001,237.96437704999997 +2016-08-30 03:00:00,0.0,1021.05,0.0,100.0,11.93166667,0.604083333,237.96636700000002 +2016-08-30 04:00:00,0.0,1020.9927220000001,0.0,100.0,11.23666667,0.2055,237.96795893333334 +2016-08-30 05:00:00,0.0,1021.146833,2.7489999999999997,100.0,10.515,0.09125,237.9689539 +2016-08-30 06:00:00,0.0,1021.7874439999999,26.195,100.0,11.03833333,0.149583333,237.96895389999997 +2016-08-30 07:00:00,0.0,1022.4062220000001,88.54666667,100.0,13.75,0.139083333,237.96756095000003 +2016-08-30 08:00:00,0.0,1022.955167,138.6883333,93.26666667,15.55166667,1.0211666670000001,237.96696396666667 +2016-08-30 09:00:00,0.0,1023.457278,263.0616667,81.20916667,17.54416667,1.185416667,237.965372 +2016-08-30 10:00:00,0.0,1023.3687779999999,514.5916666999999,68.8475,19.49083333,1.52425,237.96557099999995 +2016-08-30 11:00:00,0.0,1022.7901390000001,473.74166669999994,63.925,20.26416667,2.16625,237.96497403333333 +2016-08-30 12:00:00,0.0,1022.475,599.5916667,58.58,21.6225,1.8655,237.9621881 +2016-08-30 13:00:00,0.0,1022.228167,550.5833332999999,53.13,22.2625,1.932083333,237.96553122 +2016-08-30 14:00:00,0.0,1021.5375550000001,533.5666666999999,49.3025,23.325,1.678083333,237.92935423333333 +2016-08-30 15:00:00,0.0,1021.00575,454.91666669999995,45.7425,23.75083333,1.825166667,237.92318541666668 +2016-08-30 16:00:00,0.0,1020.565139,328.1366667,44.2525,23.87166667,2.112083333,237.92139448333333 +2016-08-30 17:00:00,0.0,1020.056806,36.26833333,44.26,23.0275,2.060333333,237.9209965 +2016-08-30 18:00:00,0.0,1019.904694,22.70333333,54.9075,21.56416667,1.740083333,237.9190065833333 +2016-08-30 19:00:00,0.0,1019.964556,2.219,79.67333333,17.4475,0.363916667,237.91940456666669 +2016-08-30 20:00:00,0.0,1020.240611,0.0,89.65833333,13.81166667,0.321166667,237.91860858333334 +2016-08-30 21:00:00,0.0,1020.2869720000001,0.0,95.08333333,12.41916667,0.225,237.91960355 +2016-08-30 22:00:00,0.0,1020.379694,0.0,97.41666667,11.41666667,0.167333333,237.91880758333332 +2016-08-30 23:00:00,0.0,1020.215139,0.0,98.625,10.54,0.12541666699999998,237.91860858333334 +2016-08-31 00:00:00,0.0,1019.8046939999999,0.0,99.7,9.480833333,0.055416667,237.92000153333333 +2016-08-31 01:00:00,0.0,1019.547417,0.0,100.0,8.8875,0.130333333,237.91940455 +2016-08-31 02:00:00,0.0,1019.3521109999999,0.0,100.0,8.5,0.0735,237.92079751666665 +2016-08-31 03:00:00,0.0,1018.904694,0.0,100.0,8.161666667,0.08766666699999999,237.9217924666667 +2016-08-31 04:00:00,0.0,1018.784389,0.0,100.0,7.97725,0.113416667,237.92219046666665 +2016-08-31 05:00:00,0.0,1018.758333,1.5163333330000002,100.0,7.75725,0.10383333300000001,237.92437938333333 +2016-08-31 06:00:00,0.0,1018.866667,15.652000000000001,100.0,8.771666667,0.099,237.92597133333334 +2016-08-31 07:00:00,0.0,1018.982278,90.8575,99.78333333,12.30583333,0.258,237.92537435 +2016-08-31 08:00:00,0.0,1019.016667,145.0033333,83.2925,14.96833333,0.77375,237.92577235000002 +2016-08-31 09:00:00,0.0,1018.93075,257.0966667,68.01666667,18.67083333,0.77375,237.92418039999998 +2016-08-31 10:00:00,0.0,1018.697417,484.9833333000001,60.46833333,21.57083333,1.34025,237.92219045000002 +2016-08-31 11:00:00,0.0,1018.222417,546.7916667000001,52.66333333,24.02333333,1.45475,237.91980254999999 +2016-08-31 12:00:00,0.0,1017.794833,577.575,48.07333333,25.655,1.555166667,237.91383274999998 +2016-08-31 13:00:00,0.0,1017.172417,558.1583333,46.14083333,26.41916667,1.4499166669999999,237.91064883333334 +2016-08-31 14:00:00,0.0,1016.815139,487.96666669999996,44.63666667,26.8275,1.3461666669999999,237.90507703333333 +2016-08-31 15:00:00,0.0,1016.397417,332.175,46.00833333,26.335,0.8420000000000001,237.90388308333334 +2016-08-31 16:00:00,0.0,1016.164083,239.04166669999998,44.7,26.72916667,0.5235833329999999,237.9010971833333 +2016-08-31 17:00:00,0.0,1015.716194,56.3725,51.69166667,26.00666667,0.936333333,237.90030118333334 +2016-08-31 18:00:00,0.0,1015.7348609999999,19.18166667,68.12666667,22.44833333,0.300583333,237.8969183 +2016-08-31 19:00:00,0.0,1015.977583,1.5275,80.68833333,19.17666667,0.38308333299999997,237.8971173 +2016-08-31 20:00:00,0.0,1016.21925,0.0,84.93333333,17.17833333,0.1685,237.89831125 +2016-08-31 21:00:00,0.0,1016.659861,0.0,86.70833333,17.31416667,0.231083333,237.89532638333333 +2016-08-31 22:00:00,0.0,1016.883333,0.0,87.475,17.425,0.33875,237.8971173 +2016-08-31 23:00:00,0.0,1017.145306,0.0,88.20833333,16.92083333,0.231333333,237.8983112666667 +2016-01-09 00:00:00,0.0,1017.402583,0.0,91.53333333,16.8775,0.207916667,238.07630303333335 +2016-01-09 01:00:00,0.0,1017.448944,0.0,94.1,17.36666667,0.11816666699999999,238.0732608333333 +2016-01-09 02:00:00,0.0,1017.541667,0.0,94.15833333,17.74666667,0.151,238.07254501666668 +2016-01-09 03:00:00,0.0,1017.4427220000001,0.0,93.4,16.17416667,0.193166667,238.0718292 +2016-01-09 04:00:00,0.0,1017.490611,0.0,94.21666667,15.1625,0.105333333,238.0702186333333 +2016-01-09 05:00:00,0.0,1017.6181939999999,1.029666667,95.78333333,14.52083333,0.0425,238.06950279999998 +2016-01-09 06:00:00,0.0,1018.01925,17.47258333,98.425,13.97583333,0.16016666699999998,238.06878698333333 +2016-01-09 07:00:00,0.0,1018.680167,73.845,96.29166667,16.69083333,0.233333333,238.06842906666668 +2016-01-09 08:00:00,0.0,1019.421833,144.625,78.37833333,19.59166667,0.606916667,238.06699745000003 +2016-01-09 09:00:00,0.0,1019.715611,253.81666669999998,68.39583333,21.90916667,0.524166667,238.06574480000003 +2016-01-09 10:00:00,0.0,1019.652111,360.09166669999996,62.8925,23.57416667,0.7354166670000001,238.06485001666667 +2016-01-09 11:00:00,0.0,1019.410444,470.15833330000004,59.93166667,24.5275,1.145416667,238.0634183833333 +2016-01-09 12:00:00,0.0,1018.864083,559.8583332999999,58.24,25.16083333,1.15625,238.06198676666668 +2016-01-09 13:00:00,0.0,1018.496361,559.5083333,53.8375,25.4675,1.1923333329999999,238.06198676666665 +2016-01-09 14:00:00,0.0,1018.2578609999999,422.475,51.94916667,25.88916667,1.315833333,238.06198674999996 +2016-01-09 15:00:00,0.0,1018.025,417.85,49.22166667,26.52666667,0.9720833329999999,238.06162884999995 +2016-01-09 16:00:00,0.0,1017.9380279999999,301.7808333,47.4825,25.87083333,1.2548333329999999,238.05966036666666 +2016-01-09 17:00:00,0.0,1017.6734720000001,50.76916667,48.8375,24.8175,1.687416667,238.0575129166667 +2016-01-09 18:00:00,0.0,1017.4848609999999,23.045,53.7275,23.585,1.02575,238.05751293333333 +2016-01-09 19:00:00,0.0,1018.0385,1.5063333330000002,73.90666667,19.76083333,0.349583333,238.0575129166667 +2016-01-09 20:00:00,0.0,1018.4286390000001,0.0,85.825,16.89083333,0.20825,238.0557234 +2016-01-09 21:00:00,0.0,1018.590611,0.0,92.0,16.0025,0.046666667,238.05554444999999 +2016-01-09 22:00:00,0.0,1018.591667,0.0,96.46666667,15.28,0.36775,238.0560813 +2016-01-09 23:00:00,0.0,1018.6869720000001,0.0,97.075,14.92166667,0.211333333,238.0560813333333 +2016-02-09 00:00:00,0.0,1018.716667,0.0,99.39166667,14.8275,0.4245,238.17132725000002 +2016-02-09 01:00:00,0.0,1018.622417,0.0,100.0,13.4625,0.23125,238.16900083333334 +2016-02-09 02:00:00,0.0,1018.3130279999999,0.0,100.0,12.1975,0.150583333,238.16828505 +2016-02-09 03:00:00,0.0,1018.502583,0.0,100.0,11.42416667,0.10008333300000001,238.16703236666663 +2016-02-09 04:00:00,0.0,1018.497417,0.0,100.0,10.8725,0.059333332999999995,238.16416913333333 +2016-02-09 05:00:00,0.0,1018.4427220000001,1.047833333,100.0,10.49,0.015666667,238.16327434999997 +2016-02-09 06:00:00,0.0,1018.302583,19.99158333,100.0,10.8375,0.022083332999999997,238.16023215000004 +2016-02-09 07:00:00,0.0,1018.5380279999999,83.89,100.0,14.36416667,0.328416667,238.1598742333333 +2016-02-09 08:00:00,0.0,1018.611972,138.10166669999998,90.075,18.29583333,0.38975,238.15862156666662 +2016-02-09 09:00:00,0.0,1018.5489439999999,252.93333330000002,76.24333333,21.08416667,0.56425,238.1566531 +2016-02-09 10:00:00,0.0,1018.3901390000001,473.675,65.22416667,22.56,1.111666667,238.15432666666666 +2016-02-09 11:00:00,0.0,1017.8604439999999,524.8833333,60.06083333,24.07666667,0.8865833329999999,238.15486356666668 +2016-02-09 12:00:00,0.0,1017.449528,525.25,55.00333333,24.3825,1.416166667,238.15629520000005 +2016-02-09 13:00:00,0.0,1016.828167,542.55,50.07,25.28666667,1.1338333329999999,238.15540040000005 +2016-02-09 14:00:00,0.0,1016.4296939999999,469.50833330000006,48.52666667,25.7925,1.194916667,238.1566531 +2016-02-09 15:00:00,0.0,1016.0078609999999,386.4166667,45.95416667,26.00083333,1.048,238.15987425 +2016-02-09 16:00:00,0.0,1015.24225,274.5783333,45.75333333,25.76083333,1.108833333,238.16291645 +2016-02-09 17:00:00,0.0,1014.865611,46.01333333,52.66583333,24.41166667,0.491833333,238.17902225 +2016-02-09 18:00:00,0.0,1014.9213609999999,24.65083333,71.49,21.89583333,0.16075,238.19691756666668 +2016-02-09 19:00:00,0.0,1015.034861,0.9359999999999999,80.07416667,19.06333333,0.2135,238.2092653666667 +2016-02-09 20:00:00,0.0,1015.325,0.0,82.89166667,17.5225,0.15866666699999998,238.21499188333334 +2016-02-09 21:00:00,0.0,1015.535917,0.0,89.13333333,17.02916667,0.07925,238.21517085000002 +2016-02-09 22:00:00,0.0,1015.94425,0.0,84.8725,17.9325,0.141416667,238.21499185000002 +2016-02-09 23:00:00,0.0,1015.8521109999999,0.0,87.05833333,17.45666667,0.02225,238.21194965000004 +2016-03-09 00:00:00,0.0,1015.4151390000001,0.0,89.15833333,16.68666667,0.1975,238.2192343 +2016-03-09 01:00:00,0.0,1015.141667,0.0,93.175,16.78416667,0.224916667,238.21944328333333 +2016-03-09 02:00:00,0.0,1015.235917,0.0,92.03333333,16.18416667,0.172,238.21944325 +2016-03-09 03:00:00,0.0,1015.026056,0.0,97.41666667,14.385,0.1445,238.21965221666665 +2016-03-09 04:00:00,0.0,1015.416667,0.0,97.64166667,13.82666667,0.469083333,238.21923431666667 +2016-03-09 05:00:00,0.0,1015.383805,0.5285,98.65,13.075,0.291333333,238.21777158333336 +2016-03-09 06:00:00,0.0,1015.6177220000001,25.61833333,100.0,12.96166667,0.13675,238.21547299999997 +2016-03-09 07:00:00,0.0,1015.893194,77.07083333,99.15,15.3475,0.031666667,238.21505508333337 +2016-03-09 08:00:00,0.0,1015.931806,134.45,84.85916667,18.74916667,0.33116666699999997,238.21233856666666 +2016-03-09 09:00:00,0.0,1015.973944,269.9833333,71.1575,21.93583333,0.734583333,238.21233855 +2016-03-09 10:00:00,0.0,1015.8260560000001,458.6,62.00166667,24.05083333,0.8640000000000001,238.21024893333333 +2016-03-09 11:00:00,0.0,1015.353167,376.1333333,56.64166667,24.54083333,0.9555,238.21150273333333 +2016-03-09 12:00:00,0.0,1014.844833,381.2083333,55.66416667,24.73833333,1.02275,238.21045789999997 +2016-03-09 13:00:00,0.0,1014.306806,366.675,55.695,25.565,1.069916667,238.21192065000002 +2016-03-09 14:00:00,0.0,1013.6828609999999,352.6416667,52.94916667,25.8575,1.231833333,238.20690558333334 +2016-03-09 15:00:00,0.0,1012.956806,235.275,53.3475,26.27,0.67725,238.2083683 +2016-03-09 16:00:00,0.0,1012.2875560000001,223.5,52.68583333,26.895,1.786583333,238.20711451666662 +2016-03-09 17:00:00,0.0,1011.863028,63.66916667,55.00333333,26.2825,2.046,238.21024894999996 +2016-03-09 18:00:00,0.0,1011.6187779999999,24.32666667,66.41083333,24.75416667,0.7483333329999999,238.2085772833333 +2016-03-09 19:00:00,0.0,1011.607278,1.13275,76.42666667,21.43833333,0.399083333,238.21129376666667 +2016-03-09 20:00:00,0.0,1011.634389,0.0,85.5,18.69666667,0.36175,238.21066688333335 +2016-03-09 21:00:00,0.0,1011.598944,0.0,86.77,16.6375,0.1915,238.20983105000002 +2016-03-09 22:00:00,0.0,1011.502583,0.0,70.58083333,16.47833333,0.34025,238.20941309999998 +2016-03-09 23:00:00,0.0,1011.806806,0.0,67.11166667,18.80083333,0.195583333,238.20920415 +2016-04-09 00:00:00,0.0,1011.5666669999999,0.0,72.92166667,17.02666667,0.154,238.23365266666667 +2016-04-09 01:00:00,0.0,1011.306806,0.0,86.19166667,14.84083333,0.037166667,238.23365263333335 +2016-04-09 02:00:00,0.0,1010.991667,0.0,91.56666667,13.7325,0.094916667,238.23407056666667 +2016-04-09 03:00:00,0.0,1010.7115,0.0,91.86666667,13.09333333,0.19,238.23323476666664 +2016-04-09 04:00:00,0.0,1010.310444,0.0,97.03333333,12.88166667,0.08483333300000001,238.23072719999996 +2016-04-09 05:00:00,0.0,1009.9333330000001,0.525166667,99.24166667,13.02916667,0.224166667,238.23010033333333 +2016-04-09 06:00:00,0.0,1010.145306,16.60358333,98.63333333,14.28416667,0.162083333,238.22989135 +2016-04-09 07:00:00,5.254893864,1010.774889,36.34666667,93.78333333,15.83,0.35866666700000005,238.2259210666667 +2016-04-09 08:00:00,22.68010169,1011.2484720000001,49.6125,95.8,16.52833333,0.423833333,238.22007014999997 +2016-04-09 09:00:00,2.6324686319999997,1010.650583,59.49916667,96.95,16.8075,0.870083333,238.21777159999996 +2016-04-09 10:00:00,0.0,1010.539083,255.6091667,92.21666667,18.24416667,1.136,238.21818951666668 +2016-04-09 11:00:00,0.0,1009.7995279999999,423.79166669999995,82.395,20.89666667,1.497333333,238.21756261666664 +2016-04-09 12:00:00,0.0,1008.76725,269.8333333,78.9275,21.88083333,1.9805,238.21693573333334 +2016-04-09 13:00:00,3.416691816,1008.353167,304.6666667,81.26,21.84333333,2.09075,238.21756263333336 +2016-04-09 14:00:00,10.68781205,1007.6734720000001,167.575,89.61666667,21.0875,1.8925833330000001,238.21798056666668 +2016-04-09 15:00:00,36.99535272,1007.427583,27.005,92.85,19.53,1.1805,238.22153290000003 +2016-04-09 16:00:00,35.1926383,1007.71925,176.5733333,91.2,19.43833333,1.006,238.2204880833333 +2016-04-09 17:00:00,0.0,1008.2348609999999,69.05916667,82.23333333,19.56333333,0.856833333,238.21735368333336 +2016-04-09 18:00:00,0.0,1008.365611,23.7175,80.89583333,18.56916667,0.7959999999999999,238.21630885000002 +2016-04-09 19:00:00,0.0,1008.874417,0.46883333299999996,77.45666667,17.73166667,0.708666667,238.2177716 +2016-04-09 20:00:00,0.0,1009.659861,0.0,83.4075,16.78916667,1.083916667,238.21881638333332 +2016-04-09 21:00:00,0.0,1010.267139,0.0,86.9,16.44583333,0.667666667,238.21923433333328 +2016-04-09 22:00:00,0.0,1010.723944,0.0,88.91666667,15.95083333,0.557916667,238.21484610000002 +2016-04-09 23:00:00,0.0,1010.9322779999999,0.0,90.425,15.58833333,0.40525,238.21609990000002 +2016-05-09 00:00:00,0.0,1011.0453060000001,0.0,90.31666667,15.6775,0.392166667,238.0995634 +2016-05-09 01:00:00,0.0,1011.3083330000001,0.0,89.14166667,15.76416667,0.46466666700000003,238.10091513333336 +2016-05-09 02:00:00,0.0,1011.302583,0.0,89.675,15.58666667,0.479833333,238.10209784999998 +2016-05-09 03:00:00,0.0,1011.635917,0.0,91.05,15.49916667,0.6821666670000001,238.10226681666666 +2016-05-09 04:00:00,0.0,1011.955167,0.0,93.73333333,15.04833333,0.47808333299999994,238.10277369999997 +2016-05-09 05:00:00,2.442999624,1012.556222,0.276666667,96.4,14.70166667,0.285083333,238.10159096666666 +2016-05-09 06:00:00,0.0,1013.008806,24.67483333,99.23333333,14.59416667,0.275166667,238.09922548333336 +2016-05-09 07:00:00,12.43923864,1013.635917,53.2725,98.93333333,15.04416667,0.34966666700000004,238.09719793333332 +2016-05-09 08:00:00,0.0,1014.0671390000001,139.845,96.74166667,16.9225,0.5093333329999999,238.0961841333333 +2016-05-09 09:00:00,0.0,1014.7431939999999,192.5916667,87.40833333,17.32583333,1.318583333,238.09381865 +2016-05-09 10:00:00,0.0,1015.258806,230.2333333,81.385,17.9875,1.7398333330000002,238.09179113333332 +2016-05-09 11:00:00,0.0,1015.707278,280.8766667,78.17666667,18.88416667,2.6055,238.09094628333332 +2016-05-09 12:00:00,0.0,1016.2135,201.41666669999998,76.61,19.05833333,1.8725833330000001,238.08672220000003 +2016-05-09 13:00:00,0.0,1016.49425,262.3583333,74.25666667,19.60833333,1.6269999999999998,238.08655325000004 +2016-05-09 14:00:00,0.0,1016.960917,348.5,71.79583333,19.905,2.094833333,238.08587738333335 +2016-05-09 15:00:00,0.0,1017.1406109999999,318.2916667,67.4775,20.56833333,2.431,238.08638428333336 +2016-05-09 16:00:00,0.0,1017.3978890000001,212.3666667,67.42583333,20.26416667,1.9173333330000002,238.08604635000003 +2016-05-09 17:00:00,0.0,1017.8072779999999,73.65,71.13333333,19.74,1.069916667,238.08672218333334 +2016-05-09 18:00:00,0.0,1018.1051669999999,19.5445,78.89166667,18.805,0.4085,238.08756701666667 +2016-05-09 19:00:00,0.0,1018.871833,0.7829166670000001,89.225,16.19166667,0.221833333,238.08841181666665 +2016-05-09 20:00:00,0.0,1019.5312220000001,0.0,97.54166667,15.17666667,0.11441666699999999,238.09094628333332 +2016-05-09 21:00:00,0.0,1019.955167,0.0,99.36666667,15.40416667,0.169833333,238.09162215 +2016-05-09 22:00:00,0.0,1020.2812220000001,0.0,100.0,15.83333333,0.355916667,238.09280488333332 +2016-05-09 23:00:00,0.0,1020.672889,0.0,100.0,15.08166667,0.34416666700000004,238.09398761666662 +2016-06-09 00:00:00,0.0,1021.267139,0.0,100.0,14.45583333,0.232166667,238.06678451666664 +2016-06-09 01:00:00,0.0,1021.608333,0.0,100.0,13.67083333,0.080166667,238.06796725 +2016-06-09 02:00:00,0.0,1021.760917,0.0,100.0,12.70416667,0.174,238.06796725 +2016-06-09 03:00:00,0.0,1021.841667,0.0,100.0,12.53666667,0.138083333,238.06898103333333 +2016-06-09 04:00:00,0.0,1022.0062220000001,0.0,100.0,10.73083333,0.081416667,238.06695346666663 +2016-06-09 05:00:00,0.0,1022.327583,0.7140833329999999,100.0,9.986666667,0.01525,238.06661556666666 +2016-06-09 06:00:00,0.0,1022.916083,16.55991667,100.0,10.88583333,0.018083333,238.06526386666667 +2016-06-09 07:00:00,0.0,1023.559389,58.8,100.0,13.575,0.307583333,238.06492593333334 +2016-06-09 08:00:00,0.0,1023.658805,134.0208333,95.275,15.97,0.457666667,238.06374316666668 +2016-06-09 09:00:00,0.0,1023.9510560000001,281.6225,85.62583333,18.2975,0.939916667,238.06154666666666 +2016-06-09 10:00:00,0.0,1023.833333,463.3083333000001,74.39916667,21.0275,0.629166667,238.05867426666669 +2016-06-09 11:00:00,0.0,1023.614083,526.6166667,66.39833333,22.23666667,1.14525,238.05563296666665 +2016-06-09 12:00:00,0.0,1023.2521109999999,558.0666667,60.26333333,23.265,1.12925,238.05546398333334 +2016-06-09 13:00:00,0.0,1022.940139,553.875,57.04416667,24.215,1.207666667,238.05090196666666 +2016-06-09 14:00:00,0.0,1022.397417,493.6083333000001,52.43166667,24.5875,1.590416667,238.04887440000002 +2016-06-09 15:00:00,0.0,1022.05575,415.4833333,51.88833333,25.14916667,1.5574166669999998,238.04752271666666 +2016-06-09 16:00:00,0.0,1021.809389,271.40416669999996,51.75583333,24.865,1.82725,238.04549515 +2016-06-09 17:00:00,0.0,1021.676056,38.195,55.7675,23.92583333,1.89175,238.04566410000004 +2016-06-09 18:00:00,0.0,1021.6239439999999,15.34725,70.1075,21.73416667,0.584583333,238.0466779 +2016-06-09 19:00:00,0.0,1021.96925,0.6063333329999999,88.15833333,17.20333333,0.27375,238.04701583333335 +2016-06-09 20:00:00,0.0,1022.2739439999999,0.0,95.1,14.52583333,0.2995,238.04887441666668 +2016-06-09 21:00:00,0.0,1022.358333,0.0,98.175,12.80416667,0.24675,238.05056405000002 +2016-06-09 22:00:00,0.0,1022.3510560000001,0.0,99.91666667,11.7125,0.238666667,238.0546191666667 +2016-06-09 23:00:00,0.0,1022.1916669999999,0.0,100.0,10.88583333,0.11458333300000001,238.05647775 +2016-07-09 00:00:00,0.0,1022.017722,0.0,100.0,10.05916667,0.138083333,238.02069216666666 +2016-07-09 01:00:00,0.0,1021.552111,0.0,100.0,9.5625,0.208833333,238.02089116666664 +2016-07-09 02:00:00,0.0,1021.397417,0.0,100.0,9.081666667,0.174083333,238.02148811666666 +2016-07-09 03:00:00,0.0,1021.1010550000001,0.0,100.0,8.806666667,0.04975,238.02288106666666 +2016-07-09 04:00:00,0.0,1020.604222,0.0,100.0,8.526666667,0.07575,238.02586600000004 +2016-07-09 05:00:00,0.0,1020.127583,0.569416667,100.0,8.223333333,0.09475,238.0252690166667 +2016-07-09 06:00:00,0.0,1020.244833,10.80058333,100.0,8.763333333,0.033416667000000004,238.02447301666666 +2016-07-09 07:00:00,0.0,1020.276528,46.7225,100.0,12.49666667,0.177416667,238.02546800000005 +2016-07-09 08:00:00,0.0,1020.272417,129.4325,97.2,15.37833333,0.967833333,238.02268208333336 +2016-07-09 09:00:00,0.0,1019.981806,294.6175,82.7625,17.805,1.5030833330000002,238.0222841 +2016-07-09 10:00:00,0.0,1019.2792220000001,460.5583333000001,71.70666667,19.87333333,1.72,238.01989618333334 +2016-07-09 11:00:00,0.0,1018.238611,522.0666666999999,64.205,22.28416667,1.6719166669999999,238.01770726666666 +2016-07-09 12:00:00,0.0,1017.5115,538.2,58.37083333,24.11916667,1.7033333330000002,238.01253343333337 +2016-07-09 13:00:00,0.0,1016.6969449999999,531.1833333000001,56.07,25.09833333,2.2585833330000002,238.00735959999997 +2016-07-09 14:00:00,0.0,1015.841195,484.1833333000001,52.40416667,26.4725,1.9190833330000001,238.00377773333335 +2016-07-09 15:00:00,0.0,1015.0997570000001,384.84166669999996,49.5425,26.94333333,1.9778333330000002,238.00337973333333 +2016-07-09 16:00:00,0.0,1014.103993,220.9033333,49.865,26.82,1.84675,238.0013897833334 +2016-07-09 17:00:00,0.0,1013.5226529999999,30.5725,55.73583333,25.99083333,1.661416667,238.0009918166667 +2016-07-09 18:00:00,0.0,1013.03125,16.6815,73.59416667,24.62416667,0.902666667,238.00059383333337 +2016-07-09 19:00:00,0.0,1012.85416,1.09625,89.225,20.04,0.265916667,237.9990018666667 +2016-07-09 20:00:00,0.0,1012.889542,0.0,94.73333333,16.87666667,0.18816666699999998,238.00178780000002 +2016-07-09 21:00:00,0.0,1012.522785,0.0,98.76666667,15.4025,0.174583333,238.00477268333336 +2016-07-09 22:00:00,0.0,1012.1352919999999,0.0,99.93333333,14.6425,0.195583333,238.00716060000002 +2016-07-09 23:00:00,0.0,1011.779167,0.0,100.0,13.66416667,0.123166667,238.00895155 +2016-08-09 00:00:00,0.0,1011.674951,0.0,100.0,13.00333333,0.106,237.92199146666667 +2016-08-09 01:00:00,0.0,1011.2915419999999,0.0,100.0,12.52083333,0.12583333300000002,237.9245784 +2016-08-09 02:00:00,0.0,1010.828986,0.0,100.0,11.93416667,0.075,237.92577235000002 +2016-08-09 03:00:00,0.0,1010.17891,0.0,100.0,11.41083333,0.12758333300000002,237.92816025 +2016-08-09 04:00:00,0.0,1009.595792,0.0,100.0,11.27583333,0.207333333,237.93134416666666 +2016-08-09 05:00:00,0.0,1009.7460070000001,0.5900833329999999,100.0,11.505,0.2355,237.93253811666668 +2016-08-09 06:00:00,0.0,1010.1520830000001,14.103,100.0,11.74583333,0.386166667,237.93711496666666 +2016-08-09 07:00:00,0.0,1010.125,47.15583333,100.0,14.46416667,0.293,237.93791094999997 +2016-08-09 08:00:00,0.0,1009.868667,124.7575,97.54166667,18.60916667,1.220333333,237.94029885 +2016-08-09 09:00:00,0.0,1009.570701,299.2108333,78.36583333,21.18416667,2.109,237.94049785 +2016-08-09 10:00:00,0.0,1009.08525,438.95833330000005,66.74333333,23.85916667,1.714,237.94348275000002 +2016-08-09 11:00:00,0.0,1008.749917,500.36666669999994,60.40583333,26.18333333,1.9749166669999998,237.9395028666667 +2016-08-09 12:00:00,0.0,1008.439576,532.275,53.0825,27.56583333,1.4631666669999999,237.93532405 +2016-08-09 13:00:00,0.0,1008.466757,521.175,52.66916667,28.18083333,1.766583333,237.92915523333332 +2016-08-09 14:00:00,0.0,1008.5103330000001,470.91666669999995,54.2025,28.40083333,0.9765,237.92358341666667 +2016-08-09 15:00:00,0.0,1008.289535,386.975,52.31,28.47,1.2099166670000001,237.91900656666667 +2016-08-09 16:00:00,0.0,1008.175,224.045,51.5875,28.01833333,0.728666667,237.91482771666665 +2016-08-09 17:00:00,0.0,1008.0832849999999,50.26666667,53.37833333,26.83916667,0.670666667,237.9120418166667 +2016-08-09 18:00:00,0.0,1008.321007,13.22125,64.265,24.47916667,0.277333333,237.9112458333333 +2016-08-09 19:00:00,0.0,1009.0668400000001,0.47333333299999997,83.51916667,20.51083333,0.4985,237.9110468166667 +2016-08-09 20:00:00,0.0,1009.585549,0.0,89.88333333,18.5675,0.37341666700000004,237.91403174999996 +2016-08-09 21:00:00,0.0,1010.002208,0.0,95.475,17.45333333,0.280083333,237.91442971666666 +2016-08-09 22:00:00,0.0,1010.55434,0.0,98.33333333,16.4375,0.07691666700000001,237.91562366666665 +2016-08-09 23:00:00,0.0,1011.243965,0.0,98.56666667,16.40916667,0.068166667,237.9172156333333 +2016-09-09 00:00:00,0.0,1011.943882,0.0,95.44166667,16.81833333,0.13425,237.83995943333335 +2016-09-09 01:00:00,0.0,1012.4334650000001,0.0,86.91666667,17.66416667,0.11941666699999999,237.84059215 +2016-09-09 02:00:00,0.0,1012.797958,0.0,88.31666667,17.39416667,0.16675,237.8401983 +2016-09-09 03:00:00,0.0,1012.889625,0.0,97.66666667,17.03583333,0.15741666699999998,237.84590568333337 +2016-09-09 04:00:00,0.0,1012.8250419999999,0.0,100.0,15.82916667,0.2295,237.8478466666667 +2016-09-09 05:00:00,0.0,1013.318924,0.48658333299999995,100.0,15.36416667,0.13875,237.84904573333333 +2016-09-09 06:00:00,0.0,1013.835549,15.41566667,100.0,15.3175,0.46716666700000004,237.85100568333334 +2016-09-09 07:00:00,0.0,1014.256382,68.32333333,98.95833333,17.06833333,0.48875,237.85136633333332 +2016-09-09 08:00:00,0.0,1014.8022080000001,116.79166670000001,90.49166667,18.55916667,0.73425,237.85380085000006 +2016-09-09 09:00:00,0.0,1015.2125900000001,223.2333333,83.81666667,20.14333333,0.80625,237.85431178333332 +2016-09-09 10:00:00,0.0,1015.304042,305.1833333,76.89333333,21.48583333,0.9255,237.8531333 +2016-09-09 11:00:00,0.0,1015.05625,334.3833333,70.83083333,22.58166667,0.683916667,237.85039981666668 +2016-09-09 12:00:00,0.0,1014.8644929999999,404.1166667,67.5825,23.51416667,0.928583333,237.8454880833333 +2016-09-09 13:00:00,0.0,1014.49575,464.91666669999995,64.1525,24.62583333,0.899166667,237.84097656666665 +2016-09-09 14:00:00,0.0,1014.1352919999999,438.325,60.9025,25.2525,1.259833333,237.83523753333336 +2016-09-09 15:00:00,0.0,1013.53941,383.125,58.56083333,25.9325,0.49541666700000003,237.83174946666665 +2016-09-09 16:00:00,0.0,1013.347951,258.61,57.3675,25.315,0.7556666670000001,237.82810006666662 +2016-09-09 17:00:00,0.0,1013.1395,64.12583333,63.8475,24.82583333,0.630083333,237.82627778333335 +2016-09-09 18:00:00,0.0,1013.008375,24.68933333,71.9775,22.72583333,0.177416667,237.826765 +2016-09-09 19:00:00,0.0,1013.372958,0.33725,85.4,20.2025,0.250666667,237.8266305 +2016-09-09 20:00:00,0.0,1013.650083,0.0,91.44166667,17.72,0.270916667,237.8277125333333 +2016-09-09 21:00:00,0.0,1013.764674,0.0,96.60833333,16.06916667,0.125,237.82902073333332 +2016-09-09 22:00:00,0.0,1013.874951,0.0,98.725,14.9325,0.159,237.83067061666665 +2016-09-09 23:00:00,0.0,1013.8146320000001,0.0,99.93333333,14.265,0.08691666699999999,237.83334403333333 +2016-10-09 00:00:00,0.0,1013.95625,0.0,100.0,13.57833333,0.0305,237.96710605 +2016-10-09 01:00:00,0.0,1013.98541,0.0,100.0,13.09083333,0.0465,237.96615533333332 +2016-10-09 02:00:00,0.0,1013.966583,0.0,100.0,12.61666667,0.059166667,237.96746515000004 +2016-10-09 03:00:00,0.0,1013.689583,0.0,100.0,12.19916667,0.040833333,237.96707915000002 +2016-10-09 04:00:00,0.0,1013.6520419999999,0.0,100.0,11.83833333,0.0014166670000000001,237.96690988333333 +2016-10-09 05:00:00,0.0,1013.643792,0.33025,100.0,11.5225,0.032,237.96659193333335 +2016-10-09 06:00:00,0.0,1013.7541669999999,13.753,100.0,11.92916667,0.0,237.96747303333336 +2016-10-09 07:00:00,0.0,1013.927215,41.75166667,100.0,15.285,0.06408333299999999,237.96900273333335 +2016-10-09 08:00:00,0.0,1014.108333,105.005,96.45,18.72333333,0.49091666700000003,237.9669478666667 +2016-10-09 09:00:00,0.0,1014.204125,295.59166669999996,82.87416667,20.39,0.8726666670000001,237.96697160000005 +2016-10-09 10:00:00,0.0,1013.904,410.8666667,73.16333333,24.00583333,0.72225,237.96686405000003 +2016-10-09 11:00:00,0.0,1013.322785,470.8,64.19083333,26.66333333,0.811416667,237.96722313333336 +2016-10-09 12:00:00,0.0,1012.685201,383.0583333,57.55916667,27.75083333,1.3628333330000002,237.966709 +2016-10-09 13:00:00,0.0,1012.087417,377.65833330000004,54.375,28.37666667,1.038166667,237.96513188333333 +2016-10-09 14:00:00,0.0,1011.747833,290.65,50.37083333,29.0725,1.373083333,237.96718199999998 +2016-10-09 15:00:00,0.0,1011.197695,153.2,54.61583333,29.0275,1.3734166669999999,237.96706650000002 +2016-10-09 16:00:00,0.0,1010.75,154.5016667,54.74583333,28.64916667,1.4358333330000002,237.96611421666668 +2016-10-09 17:00:00,0.0,1010.508292,67.39083333,51.27333333,28.1125,1.4325833330000002,237.96599558333332 +2016-10-09 18:00:00,0.0,1010.5938679999999,13.90333333,67.44666667,24.51833333,0.40416666700000003,237.96620753333335 +2016-10-09 19:00:00,0.0,1011.1105,0.162,84.51666667,19.88,0.18858333300000002,237.96544506666666 +2016-10-09 20:00:00,0.0,1011.31875,0.0,85.85,17.66833333,0.106583333,237.96585161666667 +2016-10-09 21:00:00,0.0,1011.5647640000001,0.0,92.90833333,16.29333333,0.192583333,237.96660145 +2016-10-09 22:00:00,0.0,1011.893792,0.0,95.09166667,16.25416667,0.26275,237.96706495000004 +2016-10-09 23:00:00,0.0,1012.054167,0.0,97.65,15.27166667,0.10925,237.96682291666664 +2016-11-09 00:00:00,0.0,1012.437632,0.0,81.2025,14.82583333,0.208416667,238.05236613333332 +2016-11-09 01:00:00,0.0,1012.408285,0.0,93.94166667,16.0825,0.278416667,238.05172548333334 +2016-11-09 02:00:00,0.0,1012.5897150000001,0.0,98.88333333,16.45583333,0.438166667,238.05193743333334 +2016-11-09 03:00:00,0.0,1012.8875,0.0,99.7,16.71,0.34875,238.0505469666667 +2016-11-09 04:00:00,0.0,1012.914625,0.0,99.85833333,15.71166667,0.347083333,238.05006135 +2016-11-09 05:00:00,0.0,1013.329431,0.24708333300000002,99.825,13.26416667,0.11708333300000001,238.0491312 +2016-11-09 06:00:00,0.0,1014.006333,9.948416667,100.0,12.385,0.136666667,238.04712381666664 +2016-11-09 07:00:00,0.0,1014.483465,28.36916667,99.81666667,15.6075,0.1765,238.04680583333334 +2016-11-09 08:00:00,0.0,1014.88759,94.925,82.41166667,19.97583333,0.41875,238.04621103333338 +2016-11-09 09:00:00,0.0,1015.122917,346.5666667,62.70833333,23.89166667,0.764416667,238.04497561666665 +2016-11-09 10:00:00,0.0,1015.2687990000001,459.1,52.3475,25.67916667,0.903,238.04236231666664 +2016-11-09 11:00:00,0.0,1015.258333,523.3416666999999,48.0625,25.97166667,1.15175,238.0413372666667 +2016-11-09 12:00:00,0.0,1015.235417,548.2583333,44.73166667,26.925,1.4771666669999999,238.04348388333332 +2016-11-09 13:00:00,0.0,1014.991535,536.8833333,42.0725,28.04,1.5794166669999998,238.04257903333334 +2016-11-09 14:00:00,0.0,1014.6978330000001,490.6833333000001,41.13083333,28.26666667,1.4611666669999999,238.04359143333332 +2016-11-09 15:00:00,0.0,1014.352035,301.6333333,44.87916667,27.465,1.48825,238.04527775 +2016-11-09 16:00:00,0.0,1014.126951,46.69083333,55.605,25.3225,0.587916667,238.04867878333334 +2016-11-09 17:00:00,0.0,1014.048,22.25083333,69.43166667,23.38,0.15658333300000002,238.04949346666663 +2016-11-09 18:00:00,0.0,1014.273,5.836416667000001,79.565,20.43166667,0.304833333,238.0488607 +2016-11-09 19:00:00,0.0,1014.67934,0.183666667,86.94166667,16.84666667,0.176416667,238.05101204999997 +2016-11-09 20:00:00,0.0,1015.054132,0.0,92.975,15.1475,0.32899999999999996,238.05420111666663 +2016-11-09 21:00:00,0.0,1015.081292,0.0,95.4,14.08166667,0.094083333,238.05919825 +2016-11-09 22:00:00,0.0,1015.06875,0.0,96.175,13.025,0.077,238.06709341666667 +2016-11-09 23:00:00,0.0,1015.064535,0.0,96.53333333,12.44666667,0.059166667,238.07611801666667 +2016-12-09 00:00:00,0.0,1015.081292,0.0,99.18333333,12.2,0.09300000000000001,238.02666853333332 +2016-12-09 01:00:00,0.0,1015.054125,0.0,99.51666667,12.81083333,0.0265,238.02623981666667 +2016-12-09 02:00:00,0.0,1014.7852849999999,0.0,99.84166667,12.26083333,0.052666667,238.02715573333333 +2016-12-09 03:00:00,0.0,1014.4957919999999,0.0,100.0,11.61333333,0.01075,238.0257035666667 +2016-12-09 04:00:00,0.0,1014.274958,0.0,100.0,11.23916667,0.06775,238.02555328333332 +2016-12-09 05:00:00,0.0,1014.1375,0.226416667,100.0,11.06666667,0.079416667,238.0261275 +2016-12-09 06:00:00,0.0,1014.2750900000001,11.28508333,100.0,11.30666667,0.001,238.02608323333334 +2016-12-09 07:00:00,0.0,1014.587625,35.44666667,100.0,14.90583333,0.051083333,238.0238685833333 +2016-12-09 08:00:00,0.0,1014.902125,92.21166667,88.03833333,18.28833333,1.186166667,238.02411696666664 +2016-12-09 09:00:00,0.0,1014.9937570000001,322.4583333,74.55916667,21.44666667,0.8876666670000001,238.02332760000002 +2016-12-09 10:00:00,0.0,1014.791535,422.03333330000004,65.74833333,25.43583333,0.893916667,238.02327381666666 +2016-12-09 11:00:00,0.0,1014.518674,483.71666669999996,57.36666667,27.88166667,1.56375,238.02350476666666 +2016-12-09 12:00:00,0.0,1014.1519509999999,505.5,51.93166667,29.60916667,2.22,238.02339245 +2016-12-09 13:00:00,0.0,1013.735333,488.28333330000004,46.29416667,30.30916667,1.9051666669999998,238.02490315 +2016-12-09 14:00:00,0.0,1013.3790759999999,440.63333330000006,42.74583333,30.81583333,1.3136666670000001,238.02427038333335 +2016-12-09 15:00:00,0.0,1012.95191,349.425,44.085,31.00916667,1.6856666669999998,238.0242783 +2016-12-09 16:00:00,0.0,1012.556167,202.0908333,44.27666667,30.6725,1.9553333330000002,238.02567351666664 +2016-12-09 17:00:00,0.0,1012.1519509999999,43.755,51.9775,29.73166667,1.6951666669999998,238.02788181666668 +2016-12-09 18:00:00,0.0,1012.112708,13.17625,70.88666667,25.0125,0.3435,238.02769675 +2016-12-09 19:00:00,0.0,1012.635458,0.1245,83.0725,21.96666667,0.384166667,238.02859998333335 +2016-12-09 20:00:00,0.0,1012.6604169999999,0.0,88.2,19.4675,0.29791666699999997,238.0271652166667 +2016-12-09 21:00:00,0.0,1012.758292,0.0,93.90833333,17.64083333,0.16025,238.0268188 +2016-12-09 22:00:00,0.0,1012.760458,0.0,96.15833333,16.70333333,0.16625,238.02560868333333 +2016-12-09 23:00:00,0.0,1012.631167,0.0,98.20833333,15.855,0.066,238.02560234999999 +2016-09-13 00:00:00,0.0,1012.61675,0.0,99.68333333,15.03583333,0.2195,237.80908748333334 +2016-09-13 01:00:00,0.0,1012.654125,0.0,100.0,14.58583333,0.211333333,237.81089398333336 +2016-09-13 02:00:00,0.0,1012.526993,0.0,100.0,14.1075,0.056583333,237.81359741666668 +2016-09-13 03:00:00,0.0,1012.327125,0.0,100.0,13.3325,0.08991666699999999,237.81721991666666 +2016-09-13 04:00:00,0.0,1012.287458,0.0,100.0,12.77083333,0.110583333,237.82059723333336 +2016-09-13 05:00:00,0.0,1012.289583,0.20475,100.0,12.3425,0.0275,237.82331330000002 +2016-09-13 06:00:00,0.0,1012.562632,10.0065,100.0,12.4925,0.04275,237.8252511166667 +2016-09-13 07:00:00,0.0,1013.02309,29.8375,100.0,16.325,0.097166667,237.82711771666666 +2016-09-13 08:00:00,0.0,1013.358375,89.31583333,95.95833333,20.29583333,0.42058333299999995,237.82763500000001 +2016-09-13 09:00:00,0.0,1013.312375,326.5583333,77.2875,23.27416667,0.824583333,237.8292105833333 +2016-09-13 10:00:00,0.0,1013.054125,414.8666667,64.34166667,26.275,1.15225,237.8271730833333 +2016-09-13 11:00:00,0.0,1012.539326,478.6,50.685,28.93416667,1.565333333,237.82250813333334 +2016-09-13 12:00:00,0.0,1011.887417,504.4333333000001,46.01666667,30.46333333,1.876333333,237.8169589 +2016-09-13 13:00:00,0.0,1011.576993,493.5,41.32083333,31.2,1.878916667,237.80977561666668 +2016-09-13 14:00:00,0.0,1011.23325,440.8583333000001,39.54583333,31.81333333,1.3960833330000002,237.80315861666668 +2016-09-13 15:00:00,0.0,1010.6747359999999,357.6833333,39.7075,31.83166667,1.587666667,237.7993478666667 +2016-09-13 16:00:00,0.0,1010.054167,216.36,35.96583333,31.34666667,2.031666667,237.79838606666667 +2016-09-13 17:00:00,0.0,1009.672743,36.65416667,41.8975,30.22833333,1.854916667,237.79656691666665 +2016-09-13 18:00:00,0.0,1009.4521179999999,11.31033333,65.1275,25.4725,0.51975,237.79511788333335 +2016-09-13 19:00:00,0.0,1009.48125,0.10091666699999999,79.74416667,20.78916667,0.283666667,237.7953552 +2016-09-13 20:00:00,0.0,1009.606208,0.0,85.06583333,18.84333333,0.270416667,237.79565575 +2016-09-13 21:00:00,0.0,1009.658375,0.0,91.725,17.20916667,0.188,237.79740533333333 +2016-09-13 22:00:00,0.0,1009.65625,0.0,95.775,15.70083333,0.259416667,237.7985110666667 +2016-09-13 23:00:00,0.0,1009.812542,0.0,98.65833333,14.81666667,0.163,237.79877993333335 +2016-09-14 00:00:00,0.0,1009.84384,0.0,99.84166667,14.4725,0.180833333,237.80087595 +2016-09-14 01:00:00,0.0,1010.075,0.0,100.0,14.06583333,0.11075,237.80161153333333 +2016-09-14 02:00:00,0.0,1010.1125,0.0,100.0,13.60416667,0.16899999999999998,237.80413620000002 +2016-09-14 03:00:00,0.0,1010.125042,0.0,100.0,12.89166667,0.122666667,237.80761001666667 +2016-09-14 04:00:00,0.0,1010.243708,0.0,100.0,12.23416667,0.094416667,237.81030394999996 +2016-09-14 05:00:00,0.0,1010.137549,0.17425,100.0,11.8675,0.174,237.8145702666667 +2016-09-14 06:00:00,0.0,1010.402167,9.431333333,100.0,12.11416667,0.142583333,237.81656185000006 +2016-09-14 07:00:00,0.0,1010.725125,30.41416667,100.0,15.89166667,0.069333333,237.81893149999996 +2016-09-14 08:00:00,0.0,1010.9187919999999,96.89083333,90.1,19.84916667,0.84775,237.82119201666669 +2016-09-14 09:00:00,0.0,1011.208299,325.2666667,72.36833333,22.51416667,1.090833333,237.82284983333332 +2016-09-14 10:00:00,0.0,1011.0395,413.525,61.73,25.96,1.015333333,237.82222025 +2016-09-14 11:00:00,0.0,1010.954174,467.2,48.7525,28.65916667,1.483416667,237.8171012833333 +2016-09-14 12:00:00,0.0,1010.8416599999999,490.9833333000001,43.61,30.04166667,1.5164166669999999,237.81044475 +2016-09-14 13:00:00,0.0,1010.5749099999999,490.4416666999999,40.36,30.665,1.9005833330000002,237.80355408333332 +2016-09-14 14:00:00,0.0,1010.093583,421.11666669999994,40.91083333,29.89416667,2.05675,237.79940163333336 +2016-09-14 15:00:00,0.0,1009.543576,155.7075,46.49833333,29.95,1.5101666669999998,237.7987166833333 +2016-09-14 16:00:00,0.0,1009.212583,148.9591667,42.40166667,29.92916667,1.754083333,237.80061336666665 +2016-09-14 17:00:00,0.0,1009.054035,45.00916667,46.89,28.71,1.51675,237.79995373333335 +2016-09-14 18:00:00,0.0,1009.0750830000001,11.85525,66.4325,25.83166667,0.34125,237.79859646666668 +2016-09-14 19:00:00,0.0,1009.381292,0.077,79.85,20.32666667,0.29025,237.80144066666665 +2016-09-14 20:00:00,0.0,1009.579257,0.0,84.69166667,19.04083333,0.2675,237.80401124999995 +2016-09-14 21:00:00,0.0,1009.5519929999999,0.0,89.64166667,17.23,0.263833333,237.8042500833333 +2016-09-14 22:00:00,0.0,1009.247792,0.0,93.55833333,16.45833333,0.231416667,237.80610883333335 +2016-09-14 23:00:00,0.0,1008.933285,0.0,95.9,15.25916667,0.303833333,237.80700575 +2016-09-15 00:00:00,0.0,1008.662458,0.0,97.74166667,14.69583333,0.331,237.80949875000002 +2016-09-15 01:00:00,0.0,1008.441542,0.0,99.35,14.38083333,0.310583333,237.81208198333334 +2016-09-15 02:00:00,0.0,1008.345875,0.0,99.71666667,14.41416667,0.13025,237.81267358333335 +2016-09-15 03:00:00,0.0,1008.1061599999999,0.0,98.80833333,14.46416667,0.081166667,237.81552100000002 +2016-09-15 04:00:00,0.0,1007.806118,0.0,99.825,13.38333333,0.21433333300000001,237.81996288333335 +2016-09-15 05:00:00,0.0,1007.75634,0.149833333,100.0,12.49916667,0.110916667,237.82348100000002 +2016-09-15 06:00:00,0.0,1007.900083,9.548583333,100.0,11.9825,0.140166667,237.82701491666668 +2016-09-15 07:00:00,0.0,1008.1269580000001,31.71666667,96.40833333,15.84083333,0.253916667,237.82870436666667 +2016-09-15 08:00:00,0.0,1007.862542,104.6425,81.70083333,20.18583333,2.1395,237.8298781333333 +2016-09-15 09:00:00,0.0,1007.8895,330.9916667,70.98166667,22.61666667,2.6415833330000003,237.82940353333336 +2016-09-15 10:00:00,0.0,1007.624958,414.9416667,57.97583333,25.385,2.416666667,237.82860943333333 +2016-09-15 11:00:00,0.0,1007.224826,461.475,52.42833333,26.965,2.1815833330000003,237.8234715 +2016-09-15 12:00:00,0.0,1006.95,500.9,45.94416667,28.49833333,2.103583333,237.81803775 +2016-09-15 13:00:00,0.0,1006.6207009999999,481.3083333000001,44.12083333,29.2225,2.43675,237.81109013333335 +2016-09-15 14:00:00,0.0,1006.489625,405.21666669999996,45.73833333,29.14333333,2.8736666669999997,237.8042501 +2016-09-15 15:00:00,0.0,1006.3124240000001,309.5416667,47.24416667,28.6575,2.555416667,237.79858380000005 +2016-09-15 16:00:00,0.0,1006.339618,106.94333329999999,52.76916667,27.31166667,2.274333333,237.79863445 +2016-09-15 17:00:00,0.0,1006.5188820000001,65.14416667,56.76,26.3675,1.083333333,237.79772326666668 +2016-09-15 18:00:00,0.0,1006.975042,7.247166667,63.26833333,23.55166667,0.1775,237.79781660000003 +2016-09-15 19:00:00,0.0,1007.331424,0.013166667,66.9925,22.3775,0.37641666700000004,237.79719490000002 +2016-09-15 20:00:00,0.0,1007.798042,0.0,69.69666667,22.87166667,0.841583333,237.79784031666665 +2016-09-15 21:00:00,0.0,1008.493882,0.0,74.65083333,21.91333333,1.207333333,237.79607338333335 +2016-09-15 22:00:00,0.0,1008.9877150000001,0.0,80.14666667,19.95833333,1.0776666670000001,237.79557193333335 +2016-09-15 23:00:00,0.0,1009.464667,0.0,81.00833333,18.83416667,0.972583333,237.7946797166667 +2016-09-16 00:00:00,0.0,1009.57509,0.0,83.675,18.44083333,0.511333333,237.7971063166667 +2016-09-16 01:00:00,0.0,1009.8312080000001,0.0,84.98333333,17.90333333,0.30525,237.79959778333333 +2016-09-16 02:00:00,0.0,1009.883375,0.0,85.5,17.58416667,0.512166667,237.8026682166667 +2016-09-16 03:00:00,0.0,1009.997958,0.0,87.79166667,16.89333333,0.49225,237.80440194999997 +2016-09-16 04:00:00,0.0,1010.1,0.0,88.075,15.83583333,0.137833333,237.8072825666667 +2016-09-16 05:00:00,0.0,1010.0353259999999,0.072833333,92.68333333,15.5225,0.34633333299999997,237.81088608333334 +2016-09-16 06:00:00,0.0,1009.88134,13.18116667,91.3,15.66166667,0.50075,237.81276534999998 +2016-09-16 07:00:00,0.0,1010.508549,53.13,88.85833333,16.35666667,0.265833333,237.81441051666664 +2016-09-16 08:00:00,0.0,1010.906292,114.13333329999999,87.525,17.66083333,0.834916667,237.81455761666666 +2016-09-16 09:00:00,0.0,1011.295924,113.23583329999998,84.69166667,18.41833333,0.608583333,237.81609836666667 +2016-09-16 10:00:00,0.0,1011.374958,152.95,82.07083333,19.10083333,0.564583333,237.81705066666666 +2016-09-16 11:00:00,0.0,1011.191618,163.43333330000002,77.5925,19.66666667,0.73475,237.81602246666668 +2016-09-16 12:00:00,0.0,1010.94575,277.0833333,71.44583333,20.6025,0.92375,237.8138505166667 +2016-09-16 13:00:00,0.0,1010.585292,210.2333333,66.48166667,21.50416667,0.820916667,237.81023593333336 +2016-09-16 14:00:00,0.0,1010.260368,235.05,66.68416667,21.03333333,1.062583333,237.80653274999997 +2016-09-16 15:00:00,0.0,1009.749785,137.3416667,66.46083333,20.92166667,0.884166667,237.80175075000002 +2016-09-16 16:00:00,0.0,1009.275042,93.17333333,66.23833333,20.3275,0.40083333299999996,237.80136316666665 +2016-09-16 17:00:00,0.0,1009.2374169999999,42.15416667,66.77166667,19.45166667,0.27175,237.79966581666665 +2016-09-16 18:00:00,0.0,1009.15625,3.1670833330000003,72.43333333,18.54416667,0.13725,237.80124451666663 +2016-09-16 19:00:00,0.0,1009.550174,0.0,71.83833333,18.0275,0.22175,237.80332471666665 +2016-09-16 20:00:00,0.0,1009.6854099999999,0.0,78.19166667,17.58666667,0.29100000000000004,237.8035367 +2016-09-16 21:00:00,0.0,1009.452,0.0,83.23333333,17.1775,0.616083333,237.80413305000002 +2016-09-16 22:00:00,0.0,1009.508424,0.0,89.68333333,15.9825,0.135833333,237.80426276666665 +2016-09-16 23:00:00,0.0,1009.702042,0.0,87.14166667,15.57916667,0.34416666700000004,237.80561051666666 +2016-09-17 00:00:00,0.0,1009.8167080000001,0.0,83.125,16.05083333,0.61575,237.8059506 +2016-09-17 01:00:00,0.0,1009.985451,0.0,87.96666667,15.08416667,0.196083333,237.80828386666664 +2016-09-17 02:00:00,0.0,1009.9458400000001,0.0,94.84166667,13.7925,0.19825,237.81395018333333 +2016-09-17 03:00:00,0.0,1009.658243,0.0,98.36666667,13.08833333,0.09575,237.81824971666666 +2016-09-17 04:00:00,0.0,1009.623007,0.0,99.65,12.87833333,0.146083333,237.82103226666663 +2016-09-17 05:00:00,0.0,1010.0125,0.01875,99.96666667,13.5625,0.15766666699999998,237.82340506666665 +2016-09-17 06:00:00,0.0,1010.2460070000001,6.729583333,99.25833333,14.49333333,0.564583333,237.82535236666664 +2016-09-17 07:00:00,0.0,1010.5750419999999,41.545,96.20833333,15.0025,0.34725,237.82704021666666 +2016-09-17 08:00:00,0.0,1010.752167,84.62666667,89.88333333,15.93166667,0.406416667,237.83027356666665 +2016-09-17 09:00:00,0.0,1011.154215,51.27833333,90.81666667,15.9225,0.39833333299999996,237.83348479999998 +2016-09-17 10:00:00,0.0,1011.060326,139.095,87.775,17.10666667,0.662333333,237.83550486666664 +2016-09-17 11:00:00,0.0,1010.979292,136.86833330000002,81.54166667,18.30916667,0.601916667,237.83639860000002 +2016-09-17 12:00:00,0.0,1011.2207080000001,129.0275,79.57416667,18.67916667,0.968,237.83543998333334 +2016-09-17 13:00:00,0.0,1010.8645,223.0,74.67083333,19.87583333,1.7131666669999999,237.83463641666665 +2016-09-17 14:00:00,0.0,1010.497875,232.3666667,68.5675,20.83666667,2.508666667,237.83177161666666 +2016-09-17 15:00:00,0.0,1010.27491,81.54416667,67.01833333,20.59416667,3.591916667,237.82986388333336 +2016-09-17 16:00:00,26.45740841,1010.208465,24.96833333,77.6475,18.69916667,2.209833333,237.82822661666663 +2016-09-17 17:00:00,51.11013355,1010.5979169999999,6.410083332999999,96.81666667,16.175,0.6878333329999999,237.82799093333333 +2016-09-17 18:00:00,44.74146473,1010.560417,1.148416667,98.13333333,15.78333333,1.476833333,237.83207689999998 +2016-09-17 19:00:00,56.79516974,1010.787625,0.0,99.80833333,15.59916667,1.15025,237.83542575 +2016-09-17 20:00:00,42.81236902,1011.102083,0.0,100.0,15.63666667,1.4636666669999998,237.84021251666664 +2016-09-17 21:00:00,25.4914421,1010.914542,0.0,99.83333333,15.84,2.345416667,237.8468864666667 +2016-09-17 22:00:00,54.99937219,1010.762417,0.0,100.0,15.755,2.4925,237.85560418333333 +2016-09-17 23:00:00,11.56344192,1010.587458,0.0,100.0,15.72333333,1.711916667,237.8666298833333 +2016-09-18 00:00:00,0.0,1010.3499099999999,0.0,100.0,15.60583333,1.028166667,237.87602941666668 +2016-09-18 01:00:00,0.0,1010.345917,0.0,100.0,15.87583333,1.5765,237.8819725333333 +2016-09-18 02:00:00,0.0,1010.212458,0.0,100.0,16.25166667,2.460916667,237.88772106666667 +2016-09-18 03:00:00,3.130164024,1010.1124169999999,0.0,99.55,16.30666667,1.9605833330000002,237.89283051666666 +2016-09-18 04:00:00,0.0,1009.793708,0.0,99.81666667,16.42666667,2.208916667,237.89552448333336 +2016-09-18 05:00:00,0.0,1009.770875,0.0,99.15833333,16.29166667,2.0146666669999997,237.89875625 +2016-09-18 06:00:00,0.0,1009.9104580000001,2.6116666669999997,99.7,16.05,1.6755,237.90048208333334 +2016-09-18 07:00:00,0.0,1010.112542,18.57641667,96.70833333,16.17916667,2.520333333,237.90282803333332 +2016-09-18 08:00:00,0.0,1010.310417,53.60333333,94.25833333,16.38916667,2.810083333,237.90353828333332 +2016-09-18 09:00:00,0.0,1010.412632,72.01666667,92.01666667,16.76583333,2.8675833330000002,237.90443676666666 +2016-09-18 10:00:00,0.0,1010.6520419999999,224.95,85.03333333,17.67166667,4.036833333,237.90549506666665 +2016-09-18 11:00:00,0.0,1010.462458,144.625,81.17916667,18.5875,3.9795,237.90517866666664 +2016-09-18 12:00:00,0.0,1010.470826,334.8166667,76.465,18.685,3.000416667,237.90679378333334 +2016-09-18 13:00:00,0.0,1010.2645,320.225,73.93083333,19.29583333,3.2286666669999997,237.90588735000003 +2016-09-18 14:00:00,0.0,1010.193792,355.2,69.07916667,20.05916667,3.291583333,237.90563426666668 +2016-09-18 15:00:00,0.0,1010.21875,227.275,64.73916667,20.66,3.193833333,237.90341173333334 +2016-09-18 16:00:00,0.0,1010.010375,110.63416670000001,66.465,19.8525,2.895916667,237.90561053333337 +2016-09-18 17:00:00,0.0,1010.21884,34.35583333,70.32166667,19.0475,2.54075,237.9071497 +2016-09-18 18:00:00,0.0,1010.700167,6.43575,72.915,17.82666667,2.41525,237.90674 +2016-09-18 19:00:00,0.0,1011.189674,0.0,82.87583333,16.56,1.8725833330000001,237.90881066666668 +2016-09-18 20:00:00,0.0,1011.668882,0.0,92.28333333,15.78583333,1.3691666669999998,237.90870628333334 +2016-09-18 21:00:00,0.0,1011.84375,0.0,95.58333333,15.23333333,1.7815,237.90984996666668 +2016-09-18 22:00:00,0.0,1012.058417,0.0,97.30833333,15.1375,1.043916667,237.90933744999998 +2016-09-18 23:00:00,0.0,1012.147917,0.0,98.26666667,14.35416667,1.097583333,237.90921088333334 +2016-09-19 00:00:00,0.0,1012.225049,0.0,98.09166667,13.10666667,0.18825,237.91067255 +2016-09-19 01:00:00,0.0,1012.2791599999999,0.0,92.88333333,12.78083333,0.162416667,237.91148881666672 +2016-09-19 02:00:00,0.0,1012.3250419999999,0.0,95.225,12.54333333,0.081833333,237.91217058333334 +2016-09-19 03:00:00,0.0,1012.633424,0.0,96.43333333,13.03416667,0.18508333300000002,237.91134166666666 +2016-09-19 04:00:00,0.0,1012.850083,0.0,97.18333333,12.83416667,0.10275,237.9115663 +2016-09-19 05:00:00,0.0,1012.929083,0.014083333,97.71666667,12.50833333,0.040833333,237.91289033333337 +2016-09-19 06:00:00,0.0,1012.962583,4.715833333,96.96666667,12.56,0.048583333,237.91473008333332 +2016-09-19 07:00:00,0.0,1013.189674,35.18166667,93.25,13.1275,0.0655,237.91329214999996 +2016-09-19 08:00:00,0.0,1013.68559,75.73833333,82.02,14.37833333,0.23775,237.91289508333332 +2016-09-19 09:00:00,0.0,1014.433549,118.8525,80.55833333,14.61166667,2.19525,237.91163115000003 +2016-09-19 10:00:00,0.0,1014.875,138.1333333,80.71083333,15.0275,2.267,237.91168495 +2016-09-19 11:00:00,0.0,1014.912542,146.1,80.1525,15.19583333,2.3535,237.91180516666668 +2016-09-19 12:00:00,0.0,1015.0042080000001,92.48166667,83.39166667,14.55416667,2.90975,237.91265940000002 +2016-09-19 13:00:00,2.7994476,1015.237583,73.71,94.89166667,13.15083333,1.74925,237.91417479999998 +2016-09-19 14:00:00,0.0,1015.229167,62.22833333,98.13333333,13.59833333,1.4445833330000002,237.91273213333332 +2016-09-19 15:00:00,0.0,1015.247875,37.245,97.10833333,13.79166667,2.043333333,237.91385053333337 +2016-09-19 16:00:00,0.0,1015.204167,40.1275,96.91666667,13.46937246,0.48975,237.91551783333333 +2016-09-19 17:00:00,0.0,1015.164583,14.1395,97.81666667,13.0714891,0.27175,237.91625975 +2016-09-19 18:00:00,0.0,1015.287549,3.695166667,98.63333333,12.92026402,0.13725,237.91667105 +2016-09-19 19:00:00,0.0,1015.522917,0.0,99.55,12.79451708,0.22175,237.91884134999998 +2016-09-19 20:00:00,0.0,1015.587542,0.0,100.0,12.64411388,0.29100000000000004,237.91870056666667 +2016-09-19 21:00:00,0.0,1015.6125,0.0,100.0,12.5767201,0.616083333,237.92043748333336 +2016-09-19 22:00:00,0.0,1015.522917,0.0,100.0,12.52412008,0.135833333,237.92249393333336 +2016-09-19 23:00:00,0.0,1015.5979169999999,0.0,100.0,12.46165755,0.34416666700000004,237.92140245000004 +2016-09-20 00:00:00,0.0,1015.564583,0.0,100.0,12.40330439,0.61575,237.92148470000004 +2016-09-20 01:00:00,0.0,1015.297785,0.0,100.0,12.372895,0.196083333,237.92252399999998 +2016-09-20 02:00:00,0.0,1014.860326,0.0,100.0,12.38604501,0.19825,237.92460416666665 +2016-09-20 03:00:00,0.0,1014.666632,0.0,100.0,12.38029188,0.09575,237.9244206666667 +2016-09-20 04:00:00,0.0,1014.581201,0.0,100.0,12.32769186,0.146083333,237.9256308 +2016-09-20 05:00:00,0.0,1014.550007,0.01225,100.0,12.26769495,0.15766666699999998,237.9259614166667 +2016-09-20 06:00:00,0.0,1014.689708,3.45275,100.0,12.24879182,0.564583333,237.92666061666668 +2016-09-20 07:00:00,0.0,1015.05425,36.28333333,100.0,12.56192634,0.34725,237.9256212833333 +2016-09-20 08:00:00,0.0,1015.389674,87.67583333,97.21666667,13.34681735,0.406416667,237.92393976666668 +2016-09-20 09:00:00,0.0,1015.600042,134.29166669999998,90.88333333,14.26649593,0.39833333299999996,237.92455193333333 +2016-09-20 10:00:00,0.0,1015.575,200.7583333,87.30833333,15.3267152,0.662333333,237.9243178 +2016-09-20 11:00:00,0.0,1015.406118,256.9166667,81.75416667,16.38693446,0.601916667,237.92380211666662 +2016-09-20 12:00:00,0.0,1015.233333,286.125,76.98666667,17.19401611,0.968,237.9225762 +2016-09-20 13:00:00,0.0,1015.047792,245.08333330000002,72.38416667,17.43400373,1.7131666669999999,237.92108286666667 +2016-09-20 14:00:00,0.0,1014.749958,207.2166667,71.45166667,17.6255007,2.508666667,237.92051501666666 +2016-09-20 15:00:00,0.0,1014.620785,152.54166669999998,70.9075,17.54824441,3.591916667,237.9194092666667 +2016-09-20 16:00:00,0.0,1014.381208,81.54166667,69.09916667,17.14716921,2.209833333,237.9203489 +2016-09-20 17:00:00,0.0,1014.381299,25.29166667,71.23583333,16.23570939,0.6878333329999999,237.92110030000003 +2016-09-20 18:00:00,0.0,1014.5522080000001,2.7345,84.20916667,14.76126492,1.476833333,237.92147680000002 +2016-09-20 19:00:00,0.0,1015.045917,0.0,91.675,13.65913001,1.15025,237.92083293333337 +2016-09-20 20:00:00,0.0,1015.179167,0.0,95.36666667,12.92026402,1.4636666669999998,237.92069056666665 +2016-09-20 21:00:00,0.0,1015.38134,0.0,97.775,12.27673558,2.345416667,237.92149576666668 +2016-09-20 22:00:00,0.0,1015.660465,0.0,99.58333333,10.41107842,2.4925,237.9217583666667 +2016-09-20 23:00:00,0.0,1015.97925,0.0,100.0,8.359348665,1.711916667,237.92258565 +2016-09-21 00:00:00,0.0,1015.9916599999999,0.0,100.0,7.092263357999999,1.028166667,237.92534446666664 +2016-09-21 01:00:00,0.0,1015.8374650000001,0.0,100.0,6.216061992999999,1.5765,237.92588705000003 +2016-09-21 02:00:00,0.0,1015.81666,0.0,100.0,5.447197554,2.460916667,237.9254235666667 +2016-09-21 03:00:00,0.0,1015.595785,0.0,100.0,5.364434701,1.9605833330000002,237.92712568333334 +2016-09-21 04:00:00,0.0,1015.637465,0.0,100.0,4.956373564,2.208916667,237.92813648333333 +2016-09-21 05:00:00,0.0,1015.764625,0.026333332999999997,100.0,4.44664644,2.0146666669999997,237.92940196666666 +2016-09-21 06:00:00,0.0,1015.79384,6.682166667000001,100.0,4.082555637,1.6755,237.9302815 +2016-09-21 07:00:00,0.0,1016.175083,27.48333333,100.0,5.195950244,2.520333333,237.92882141666666 +2016-09-21 08:00:00,0.0,1016.5730070000001,120.3225,99.94166667,8.268449246,2.810083333,237.92812383333333 +2016-09-21 09:00:00,0.0,1016.870875,303.6,85.08166667,12.17646678,2.8675833330000002,237.92656724999998 +2016-09-21 10:00:00,0.0,1016.8582849999999,392.05,73.2825,14.86728685,4.036833333,237.92440326666667 +2016-09-21 11:00:00,0.0,1016.5895419999999,426.50833330000006,65.1675,16.67787836,3.9795,237.9230460166667 +2016-09-21 12:00:00,0.0,1016.2290830000001,353.1416667,60.1675,17.13484108,3.000416667,237.9221016 +2016-09-21 13:00:00,0.0,1016.137458,486.75833330000006,53.66083333,18.82132941,3.2286666669999997,237.91858511666666 +2016-09-21 14:00:00,0.0,1015.964535,383.1833333,50.67083333,18.97502011,3.291583333,237.9179317666667 +2016-09-21 15:00:00,0.0,1015.6686599999999,331.9333333,48.43416667,19.66786107,3.193833333,237.91524418333327 +2016-09-21 16:00:00,0.0,1015.4770490000001,188.27333330000002,49.14833333,19.57252352,2.895916667,237.91431086666668 +2016-09-21 17:00:00,0.0,1015.275042,25.16083333,59.2975,17.21374112,2.54075,237.9153786333333 +2016-09-21 18:00:00,0.0,1015.639715,3.492,82.85416667,12.39179814,2.41525,237.91434883333332 +2016-09-21 19:00:00,0.0,1016.095917,0.0,90.15,9.887954725,1.8725833330000001,237.91458451666668 +2016-09-21 20:00:00,0.0,1016.4397150000001,0.0,96.45833333,8.31809052,1.3691666669999998,237.91565228333334 +2016-09-21 21:00:00,0.0,1016.795833,0.0,99.50833333,7.07015491,1.7815,237.9147696 +2016-09-21 22:00:00,0.0,1017.006375,0.0,99.9,6.710913172000001,1.043916667,237.9151002333333 +2016-09-21 23:00:00,0.0,1017.18125,0.0,100.0,6.258881701,1.097583333,237.9169446833333 +2016-09-22 00:00:00,0.0,1017.35,0.0,100.0,5.727703629,0.18825,237.91774826666668 +2016-09-22 01:00:00,0.0,1017.495882,0.0,100.0,5.320957492,0.162416667,237.91790488333336 +2016-09-22 02:00:00,0.0,1017.4958330000001,0.0,100.0,4.683757494,0.081833333,237.9188825 +2016-09-22 03:00:00,0.0,1017.560417,0.0,100.0,4.252272907,0.18508333300000002,237.91886826666666 +2016-09-22 04:00:00,0.0,1017.377035,0.0,100.0,3.963301516,0.10275,237.92009265 +2016-09-22 05:00:00,0.0,1017.285507,0.0235,100.0,3.533789431,0.040833333,237.92237845 +2016-09-22 06:00:00,0.0,1017.8085070000001,9.496166667,100.0,3.643920735,0.048583333,237.92185798333335 +2016-09-22 07:00:00,0.0,1018.475174,29.56166667,100.0,5.293999979,0.0655,237.91880340000003 +2016-09-22 08:00:00,0.0,1018.829243,130.4241667,100.0,8.496601858,0.23775,237.91933176666672 +2016-09-22 09:00:00,0.0,1019.1416320000001,302.875,89.26666667,12.53644821,2.19525,237.91786535000003 +2016-09-22 10:00:00,0.0,1018.9562080000001,400.1,76.08916667,15.8477842,2.267,237.91782894999997 +2016-09-22 11:00:00,0.0,1018.68325,450.86666669999994,61.82666667,19.08477151,1.651666667,237.9161822333333 +2016-09-22 12:00:00,0.0,1018.445743,457.34166669999996,53.02833333,20.50833333,1.7895,237.9154371666667 +2016-09-22 13:00:00,0.0,1017.9665349999999,344.21666669999996,51.09083333,21.12,1.8735,237.913058 +2016-09-22 14:00:00,0.0,1017.564542,280.1,49.28666667,20.33,2.1091666669999998,237.91142551666667 +2016-09-22 15:00:00,0.0,1017.539583,212.4083333,49.26083333,20.13166667,1.891583333,237.90968383333336 +2016-09-22 16:00:00,0.0,1017.416576,113.45833329999999,52.44333333,19.8125,2.19375,237.90827286666664 +2016-09-22 17:00:00,0.0,1017.4396320000001,46.82416667,61.51333333,18.25583333,1.149,237.90775875 +2016-09-22 18:00:00,0.0,1017.6125900000001,4.323916667,78.86666667,14.445,0.24625,237.90791695 +2016-09-22 19:00:00,0.0,1017.777118,0.0,87.45,13.135,0.275166667,237.90829813333335 +2016-09-22 20:00:00,0.0,1017.881292,0.0,89.70833333,12.52833333,0.067166667,237.90873473333332 +2016-09-22 21:00:00,0.0,1018.1437990000001,0.0,90.16666667,10.87,0.145083333,237.9079169 +2016-09-22 22:00:00,0.0,1018.233333,0.0,94.05,9.4275,0.155,237.9088929333333 +2016-09-22 23:00:00,0.0,1018.395833,0.0,97.15,8.843333333,0.112166667,237.90861453333332 +2016-09-23 00:00:00,0.0,1018.193826,0.0,98.11666667,8.071916667,0.055416667,237.90991641666665 +2016-09-23 01:00:00,0.0,1018.5375560000001,0.0,99.65833333,8.2475,0.0275,237.90820800000003 +2016-09-23 02:00:00,0.0,1018.72291,0.0,98.85,8.270833332999999,0.074916667,237.9089309166667 +2016-09-23 03:00:00,0.0,1018.712549,0.0,99.8,7.708666667,0.081333333,237.91160743333333 +2016-09-23 04:00:00,0.0,1018.764625,0.0,100.0,6.911333332999999,0.18725,237.9144675 +2016-09-23 05:00:00,0.0,1019.00625,0.0,100.0,7.0004166670000005,0.015916667,237.9122117166667 +2016-09-23 06:00:00,0.0,1019.327257,7.003166667,100.0,6.093583333,0.081083333,237.9147806666667 +2016-09-23 07:00:00,0.0,1020.0439650000001,43.81916667,100.0,8.550083333,0.069,237.91439788333332 +2016-09-23 08:00:00,0.0,1020.5959650000001,118.975,96.775,10.9475,0.235416667,237.9139786833333 +2016-09-23 09:00:00,0.0,1021.045875,292.65,75.81,15.715,0.48608333299999995,237.91142236666667 +2016-09-23 10:00:00,0.0,1021.275049,374.5083333,63.08416667,18.87166667,0.48925,237.910962 +2016-09-23 11:00:00,0.0,1021.1604169999999,412.9583333,59.29833333,21.47166667,0.5895,237.90995913333333 +2016-09-23 12:00:00,0.0,1021.1624929999999,364.1083333,59.07083333,20.945,0.969333333,237.90869361666668 +2016-09-23 13:00:00,0.0,1021.154167,279.65833330000004,58.58916667,21.40333333,0.769333333,237.90798016666668 +2016-09-23 14:00:00,0.0,1021.0874650000001,301.2,58.7625,21.6225,0.825333333,237.90622903333335 +2016-09-23 15:00:00,0.0,1020.947868,356.9,54.53833333,22.23583333,0.946,237.90246733333333 +2016-09-23 16:00:00,0.0,1020.837451,109.82583329999999,56.86583333,20.5025,0.363416667,237.90172070000003 +2016-09-23 17:00:00,0.0,1020.7979650000001,47.045,58.69,20.28833333,0.61125,237.9022474333333 +2016-09-23 18:00:00,0.0,1021.1626669999999,4.233083333,72.9175,17.17333333,0.230583333,237.90143278333335 +2016-09-23 19:00:00,0.0,1021.787549,0.0,88.98333333,13.9625,0.21633333300000002,237.9002163333333 +2016-09-23 20:00:00,0.0,1021.9751669999999,0.0,96.13333333,12.14916667,0.136833333,237.90161156666662 +2016-09-23 21:00:00,0.0,1021.954125,0.0,98.84166667,10.3275,0.04225,237.89892709999995 +2016-09-23 22:00:00,0.0,1022.106299,0.0,99.96666667,9.633333333,0.23575,237.89744961666665 +2016-09-23 23:00:00,0.0,1022.412625,0.0,100.0,8.8575,0.058583333,237.89737053333332 +2016-09-24 00:00:00,0.0,1022.264458,0.0,100.0,8.243166667,0.12608333300000002,237.89761888333337 +2016-09-24 01:00:00,0.0,1022.166625,0.0,100.0,7.608833333,0.074083333,237.89966109999997 +2016-09-24 02:00:00,0.0,1021.974951,0.0,100.0,7.044,0.06375,237.90066560000002 +2016-09-24 03:00:00,0.0,1021.874958,0.0,100.0,6.458833332999999,0.071,237.90134896666666 +2016-09-24 04:00:00,0.0,1021.937583,0.0,100.0,5.895833333,0.08808333300000001,237.90154985 +2016-09-24 05:00:00,0.0,1021.858326,0.0,100.0,5.9625833329999995,0.094666667,237.90258756666665 +2016-09-24 06:00:00,0.0,1022.3126390000001,5.825583332999999,100.0,6.0,0.019333333,237.90194375000002 +2016-09-24 07:00:00,0.0,1022.608465,44.42416667,100.0,7.631833332999999,0.061333333,237.90184881666664 +2016-09-24 08:00:00,0.0,1022.722868,115.36583329999999,100.0,9.36,0.452583333,237.90123665 +2016-09-24 09:00:00,0.0,1022.827,266.875,96.79166667,10.87833333,0.333916667,237.90150241666666 +2016-09-24 10:00:00,0.0,1022.641625,357.125,87.50833333,15.7075,0.532083333,237.90215255 +2016-09-24 11:00:00,0.0,1022.322875,412.8166667,74.86333333,19.45416667,0.780666667,237.90173493333336 +2016-09-24 12:00:00,0.0,1021.85191,436.9833333000001,67.17916667,21.20583333,1.205916667,237.90072094999996 +2016-09-24 13:00:00,0.0,1021.110153,214.2,62.9525,22.47916667,1.6140833330000002,237.90106260000002 +2016-09-24 14:00:00,0.0,1020.416458,335.4916667,56.8025,21.8875,2.070083333,237.8984921166667 +2016-09-24 15:00:00,0.0,1019.756118,338.4333333,48.40583333,22.35166667,2.8915833330000003,237.8962126 +2016-09-24 16:00:00,0.0,1019.103993,179.4925,46.1475,21.78583333,2.6324166669999998,237.89443298333333 +2016-09-24 17:00:00,0.0,1018.791618,27.48666667,56.6225,20.0275,1.247833333,237.89457376666667 +2016-09-24 18:00:00,0.0,1018.662451,4.40525,80.61583333,14.55583333,0.2225,237.89441715 +2016-09-24 19:00:00,0.0,1018.389549,0.0,90.11666667,11.85666667,0.145916667,237.8947319333333 +2016-09-24 20:00:00,0.0,1018.260368,0.0,96.28333333,9.835833333,0.09908333300000001,237.89577756666665 +2016-09-24 21:00:00,0.0,1018.031257,0.0,98.975,8.422333333,0.037333332999999996,237.8960006 +2016-09-24 22:00:00,0.0,1017.93116,0.0,99.99166667,7.54625,0.023333332999999998,237.8960370166666 +2016-09-24 23:00:00,0.0,1017.641576,0.0,100.0,6.927333332999999,0.025666667,237.89599905000003 +2016-09-25 00:00:00,0.0,1017.2915830000001,0.0,100.0,6.339833333,0.05075,237.89576178333337 +2016-09-25 01:00:00,0.0,1017.122875,0.0,100.0,5.858,0.058416667,237.89787513333337 +2016-09-25 02:00:00,0.0,1016.8707009999999,0.0,100.0,5.59475,0.05175,237.89905841666666 +2016-09-25 03:00:00,0.0,1016.552042,0.0,100.0,5.316333333,0.060583332999999996,237.8997955666667 +2016-09-25 04:00:00,0.0,1016.377,0.0,100.0,5.3405,0.11308333300000001,237.90062604999994 +2016-09-25 05:00:00,0.0,1016.0979169999999,0.0,100.0,5.006666667,0.056833333,237.90295771666663 +2016-09-25 06:00:00,0.0,1016.149993,5.7969166670000005,100.0,4.543666667,0.035833332999999995,237.90224746666664 +2016-09-25 07:00:00,0.0,1016.2375900000001,24.4775,100.0,7.302916667000001,0.011833333,237.90370594999993 +2016-09-25 08:00:00,0.0,1016.352042,118.27916670000002,100.0,10.93583333,0.254583333,237.90058810000002 +2016-09-25 09:00:00,0.0,1016.210333,301.3,91.65833333,15.55416667,0.882583333,237.8999679833333 +2016-09-25 10:00:00,0.0,1015.829035,383.5666667,75.88916667,18.76833333,1.82175,237.8990726333333 +2016-09-25 11:00:00,0.0,1015.3478259999999,436.925,64.77083333,20.92583333,2.085,237.89881161666665 +2016-09-25 12:00:00,0.0,1014.860201,452.41666669999995,59.50833333,22.1575,2.2785833330000003,237.89655743333333 +2016-09-25 13:00:00,0.0,1014.28325,435.75,54.82416667,23.61916667,2.195,237.89419571666667 +2016-09-25 14:00:00,0.0,1014.024924,382.9166667,47.70166667,24.97833333,2.68375,237.88991195000003 +2016-09-25 15:00:00,0.0,1014.083368,299.3833333,48.8775,25.6275,0.93575,237.88881415000003 +2016-09-25 16:00:00,0.0,1013.970833,173.7741667,52.0425,24.1975,0.8656666670000001,237.88871128333332 +2016-09-25 17:00:00,0.0,1014.216799,22.3475,62.38416667,22.52083333,1.2575,237.8870851833333 +2016-09-25 18:00:00,0.0,1014.525083,2.260166667,84.08583333,17.79583333,0.225583333,237.8869411833334 +2016-09-25 19:00:00,0.0,1014.993833,0.0,94.9,14.59416667,0.123666667,237.88679406666665 +2016-09-25 20:00:00,0.0,1015.173049,0.0,98.05833333,13.7375,0.18383333300000002,237.88859113333334 +2016-09-25 21:00:00,0.0,1015.618882,0.0,98.11666667,12.9825,0.40375,237.88875243333334 +2016-09-25 22:00:00,0.0,1016.346,0.0,95.675,13.1125,0.3635,237.88748221666665 +2016-09-25 23:00:00,0.0,1016.89184,0.0,90.975,13.63,0.26666666699999997,237.88733508333334 +2016-09-26 00:00:00,0.0,1017.4959240000001,0.0,91.725,15.1025,0.56425,237.88513628333337 +2016-09-26 01:00:00,0.0,1017.610458,0.0,99.38333333,14.52416667,0.35775,237.88881574999996 +2016-09-26 02:00:00,0.0,1017.716674,0.0,97.275,14.11666667,0.302916667,237.88827790000002 +2016-09-26 03:00:00,0.0,1018.231375,0.0,91.58333333,14.03333333,0.97925,237.88782389999997 +2016-09-26 04:00:00,0.0,1018.470958,0.0,91.14166667,14.55416667,1.085583333,237.88976168333332 +2016-09-26 05:00:00,0.0,1018.647958,0.0,91.00833333,14.56583333,0.982916667,237.8904609 +2016-09-26 06:00:00,0.0,1018.841715,4.477416667,91.41666667,14.17833333,0.30141666699999997,237.8909655 +2016-09-26 07:00:00,0.0,1018.883333,56.78583333,90.25,14.7125,0.365,237.89220408333335 +2016-09-26 08:00:00,0.0,1019.073049,90.15916667,87.88333333,15.99083333,0.966833333,237.8935439666666 +2016-09-26 09:00:00,0.0,1019.5979580000001,154.41666669999998,84.70833333,15.96833333,0.732833333,237.8925315833333 +2016-09-26 10:00:00,0.0,1019.6375,232.375,80.03,17.1075,1.03225,237.8922943 +2016-09-26 11:00:00,0.0,1019.299861,213.075,77.7725,17.75083333,1.592583333,237.8918893166667 +2016-09-26 12:00:00,0.0,1019.0791320000001,296.0666667,72.54083333,19.02166667,1.853833333,237.88885371666666 +2016-09-26 13:00:00,0.0,1018.7895,128.2083333,72.945,18.8425,1.229583333,237.88816715 +2016-09-26 14:00:00,0.0,1018.6145,99.7575,73.98,18.8525,1.147333333,237.88708675 +2016-09-26 15:00:00,0.0,1018.522917,77.88916667,74.61083333,18.6675,0.84025,237.88599368333334 +2016-09-26 16:00:00,0.0,1018.352083,96.55083333,74.36666667,18.83333333,1.8149166669999999,237.8846490666667 +2016-09-26 17:00:00,0.0,1018.445833,28.14541667,79.82916667,18.11166667,1.600416667,237.8854748166667 +2016-09-26 18:00:00,0.0,1018.6292080000001,0.9740833329999999,90.225,14.39553037,0.225583333,237.88675453333335 +2016-09-26 19:00:00,0.0,1018.8835,0.0,96.675,12.06633548,0.123666667,237.88643975 +2016-09-26 20:00:00,0.0,1019.641924,0.0,99.075,11.94634167,0.18383333300000002,237.88618665 +2016-09-26 21:00:00,0.0,1019.8165349999999,0.0,98.63333333,12.83314523,0.40375,237.8866786 +2016-09-26 22:00:00,0.0,1019.620847,0.0,99.375,12.64329201,0.3635,237.88810071666668 +2016-09-26 23:00:00,0.0,1019.481195,0.0,99.78333333,12.69096078,0.26666666699999997,237.88813078333337 +2016-09-27 00:00:00,0.0,1019.283333,0.0,100.0,12.32933561,0.56425,237.89111891666664 +2016-09-27 01:00:00,0.0,1019.6584650000001,0.0,99.99166667,12.8775265,0.35775,237.89136888333329 +2016-09-27 02:00:00,0.0,1020.002125,0.0,99.81666667,13.09614536,0.302916667,237.89091015 +2016-09-27 03:00:00,0.0,1020.135382,0.0,99.51666667,13.36161111,0.97925,237.8923212 +2016-09-27 04:00:00,0.0,1020.010583,0.0,99.99166667,13.15696414,1.085583333,237.89442823333331 +2016-09-27 05:00:00,0.0,1020.654257,0.0,100.0,13.1413485,0.982916667,237.89506414999997 +2016-09-27 06:00:00,0.0,1020.98966,2.224166667,100.0,12.09263549,0.30141666699999997,237.89701618333333 +2016-09-27 07:00:00,0.0,1021.287681,25.72491667,100.0,11.08830375,0.365,237.89951713333332 +2016-09-27 08:00:00,0.0,1022.062708,51.81166667,100.0,12.77479207,0.966833333,237.89806496666668 +2016-09-27 09:00:00,0.0,1022.387424,252.5333333,94.85833333,15.93805433,0.49475,237.8982010333333 +2016-09-27 10:00:00,0.0,1022.550083,306.9916667,82.515,17.57833333,1.2640833329999999,237.89631383333335 +2016-09-27 11:00:00,0.0,1022.654167,361.28333330000004,77.33166667,18.805,1.0975,237.89648784999997 +2016-09-27 12:00:00,0.0,1022.724958,280.525,74.49416667,20.42333333,0.9005,237.89659226666666 +2016-09-27 13:00:00,0.0,1022.572875,292.0925,65.06916667,20.79333333,0.604666667,237.89556241666665 +2016-09-27 14:00:00,0.0,1022.352083,210.30833330000002,62.61166667,21.80416667,0.672583333,237.89426216666666 +2016-09-27 15:00:00,0.0,1022.233292,148.94916669999998,64.83083333,21.46,1.045916667,237.89311371666665 +2016-09-27 16:00:00,0.0,1022.229167,87.82083333,70.9475,20.51166667,0.511333333,237.89263438333333 +2016-09-27 17:00:00,0.0,1022.2605,21.7925,83.80166667,18.68166667,0.21616666699999998,237.8931675 +2016-09-27 18:00:00,0.0,1022.662625,1.473416667,92.04166667,15.17666667,0.44525,237.8929286 +2016-09-27 19:00:00,0.0,1023.083382,0.0,96.61666667,12.83083333,0.16699999999999998,237.89245403333334 +2016-09-27 20:00:00,0.0,1023.179292,0.0,99.73333333,11.02583333,0.11841666699999999,237.89433331666666 +2016-09-27 21:00:00,0.0,1023.408257,0.0,100.0,10.00083333,0.152416667,237.89317538333333 +2016-09-27 22:00:00,0.0,1023.37091,0.0,100.0,9.454166667,0.19375,237.89316433333332 +2016-09-27 23:00:00,0.0,1023.3936669999999,0.0,100.0,8.733333333,0.132333333,237.89278308333334 +2016-09-28 00:00:00,0.0,1023.1375419999999,0.0,100.0,8.479166667000001,0.24775,237.8923338 +2016-09-28 01:00:00,0.0,1023.1915759999999,0.0,100.0,8.569416667,0.08841666699999999,237.89401693333332 +2016-09-28 02:00:00,0.0,1022.87075,0.0,100.0,7.61625,0.033916667000000005,237.89647360000004 +2016-09-28 03:00:00,0.0,1022.82709,0.0,100.0,8.049333333,0.050333333,237.89690546666668 +2016-09-28 04:00:00,0.0,1022.943826,0.0,100.0,7.620833332999999,0.042833333,237.89731358333336 +2016-09-28 05:00:00,0.0,1022.7769509999999,0.0,100.0,6.955583333,0.12558333300000002,237.89958514999998 +2016-09-28 06:00:00,0.0,1022.0936740000001,2.279,100.0,6.5535,0.287416667,237.90139008333335 +2016-09-28 07:00:00,0.0,1022.498007,17.31283333,100.0,8.05,0.233333333,237.9007715666667 +2016-09-28 08:00:00,0.0,1022.862535,99.1475,86.02,11.48,0.285,237.89955668333334 +2016-09-28 09:00:00,0.0,1023.256465,268.575,63.53833333,16.9425,0.666166667,237.89797636666665 +2016-09-28 10:00:00,0.0,1023.179042,282.775,58.845,19.10916667,1.3748333330000002,237.89716805 +2016-09-28 11:00:00,0.0,1022.874951,162.08333330000002,59.15833333,19.83416667,1.052083333,237.8960370166667 +2016-09-28 12:00:00,0.0,1022.558243,237.70833330000002,61.68833333,20.52916667,1.241083333,237.89336361666665 +2016-09-28 13:00:00,0.0,1022.187292,228.075,66.9125,20.365,1.73025,237.8915571166667 +2016-09-28 14:00:00,0.0,1021.7624099999999,251.3416667,68.78666667,20.3625,1.6626666669999999,237.88988510000001 +2016-09-28 15:00:00,0.0,1021.3395830000001,194.675,67.0275,20.515,1.81575,237.88770524999998 +2016-09-28 16:00:00,0.0,1021.435417,81.2675,67.8625,20.00166667,0.880083333,237.88523911666664 +2016-09-28 17:00:00,0.0,1021.404215,15.78883333,69.8925,19.33166667,1.058916667,237.88278876666664 +2016-09-28 18:00:00,0.0,1021.533368,1.6359166669999998,74.30166667,17.5275,0.626916667,237.88132868333332 +2016-09-28 19:00:00,0.0,1021.589465,0.0,78.045,16.24333333,0.196833333,237.88195669999996 +2016-09-28 20:00:00,0.0,1021.408333,0.0,79.83666667,15.80166667,0.134666667,237.88252775 +2016-09-28 21:00:00,0.0,1021.1791529999999,0.0,81.28333333,15.355,0.164583333,237.8814078 +2016-09-28 22:00:00,0.0,1020.91025,0.0,82.43333333,14.62916667,0.12841666699999998,237.88019765 +2016-09-28 23:00:00,0.0,1020.677083,0.0,85.5,13.81666667,0.145666667,237.8783658333333 +2016-09-29 00:00:00,0.0,1020.504083,0.0,92.39166667,11.95333333,0.236416667,237.87933709999996 +2016-09-29 01:00:00,0.0,1020.218708,0.0,91.84166667,10.85833333,0.08508333300000001,237.8797468 +2016-09-29 02:00:00,0.0,1019.8789929999999,0.0,99.15833333,10.10833333,0.168666667,237.8805251 +2016-09-29 03:00:00,0.0,1019.376993,0.0,100.0,9.8175,0.292083333,237.88263533333335 +2016-09-29 04:00:00,0.0,1018.951875,0.0,100.0,9.530833333,0.298083333,237.88337091666665 +2016-09-29 05:00:00,0.0,1018.4124099999999,0.0,100.0,9.87,0.07983333299999999,237.88435958333332 +2016-09-29 06:00:00,0.0,1017.92275,5.28525,100.0,10.15083333,0.06275,237.8847692666667 +2016-09-29 07:00:00,0.0,1017.4811109999999,27.48333333,100.0,12.09666667,0.43041666700000003,237.88688900000002 +2016-09-29 08:00:00,0.0,1017.206292,75.99583333,95.10833333,15.84833333,1.722166667,237.88564885000002 +2016-09-29 09:00:00,0.0,1016.858208,149.85,82.68333333,18.99083333,1.3645833330000001,237.88571841666666 +2016-09-29 10:00:00,0.0,1016.185118,241.5083333,78.41916667,19.78666667,2.492833333,237.88590193333334 +2016-09-29 11:00:00,0.0,1015.2788609999999,392.65,72.45416667,21.44333333,1.7365,237.88540203333332 +2016-09-29 12:00:00,0.0,1014.187243,434.70833330000005,64.8,22.5125,2.093916667,237.88285996666664 +2016-09-29 13:00:00,0.0,1013.164278,411.3083333,59.00083333,23.90416667,2.8136666669999997,237.87898436666669 +2016-09-29 14:00:00,0.0,1012.374868,350.175,52.09166667,25.48583333,2.367,237.87579214999997 +2016-09-29 15:00:00,0.0,1011.63725,282.3333333,52.26583333,25.46333333,1.6153333330000001,237.87428935 +2016-09-29 16:00:00,0.0,1010.8331949999999,157.055,52.48416667,24.435,1.663583333,237.87327693333336 +2016-09-29 17:00:00,0.0,1010.602083,17.95425,55.9275,23.18166667,0.92175,237.87108765000002 +2016-09-29 18:00:00,0.0,1010.866667,1.168,59.27,21.54916667,0.6609166670000001,237.87001671666667 +2016-09-29 19:00:00,0.0,1010.8959169999999,0.0,63.93583333,19.57166667,0.237333333,237.87013060000004 +2016-09-29 20:00:00,0.0,1010.991583,0.0,69.51416667,18.93666667,0.37,237.86905650000003 +2016-09-29 21:00:00,0.0,1010.789667,0.0,72.095,19.06083333,1.082083333,237.87017331666667 +2016-09-29 22:00:00,0.0,1011.2229169999999,0.0,76.5225,17.97333333,0.474416667,237.86835254999997 +2016-09-29 23:00:00,0.0,1010.983292,0.0,78.70666667,17.10666667,0.255333333,237.86823865 +2016-09-30 00:00:00,0.0,1010.6353330000001,0.0,81.28333333,15.21083333,0.09883333300000001,237.86673741666667 +2016-09-30 01:00:00,0.0,1010.470833,0.0,84.64166667,13.63083333,0.059333332999999995,237.86677701666667 +2016-09-30 02:00:00,0.0,1010.585417,0.0,84.60833333,14.37666667,0.52175,237.8670902166667 +2016-09-30 03:00:00,0.0,1010.431208,0.0,81.22333333,15.57916667,1.57975,237.86697475000003 +2016-09-30 04:00:00,0.0,1010.356243,0.0,82.25333333,14.89666667,0.14975,237.8675015 +2016-09-30 05:00:00,0.0,1010.429215,0.0,87.61666667,14.19416667,0.033,237.86946303333332 +2016-09-30 06:00:00,0.0,1010.6375419999999,0.751416667,87.78333333,13.94916667,0.273833333,237.87044065 +2016-09-30 07:00:00,0.0,1010.812542,11.50083333,87.04166667,14.46,0.31175,237.87001828333337 +2016-09-30 08:00:00,0.0,1010.931292,55.11916667,84.79166667,15.505,0.490333333,237.87093260000003 +2016-09-30 09:00:00,0.0,1011.318924,77.71416667,84.61666667,16.61166667,0.623083333,237.8692384 +2016-09-30 10:00:00,0.0,1011.462458,64.83083333,86.075,16.20083333,0.98575,237.87059563333332 +2016-09-30 11:00:00,0.0,1011.487507,43.92333333,85.44166667,15.8925,0.57525,237.87146886666665 +2016-09-30 12:00:00,31.54512641,1011.5937849999999,51.91416667,88.95833333,13.75416667,0.81,237.87427351666668 +2016-09-30 13:00:00,0.0,1011.55625,65.91666667,88.95833333,13.305,0.57825,237.87536818333334 +2016-09-30 14:00:00,0.0,1011.641708,136.1741667,88.45833333,14.27666667,0.7011666670000001,237.87322314999997 +2016-09-30 15:00:00,0.0,1011.593708,107.36666670000001,85.00833333,15.32416667,0.413,237.87301119999998 +2016-09-30 16:00:00,0.0,1011.45191,65.18916667,84.93333333,15.22416667,0.17575,237.87346993333327 +2016-09-30 17:00:00,0.0,1011.122917,25.648000000000003,91.53333333,14.1125,0.36466666700000006,237.87725693333337 +2016-09-30 18:00:00,0.0,1011.2834650000001,1.012666667,98.99166667,12.2325,0.420333333,237.8796376833333 +2016-09-30 19:00:00,0.0,1011.397958,0.0,100.0,10.86583333,0.294166667,237.88037958333337 +2016-09-30 20:00:00,0.0,1011.577042,0.0,100.0,10.575,0.239833333,237.88116891666667 +2016-09-30 21:00:00,0.0,1011.27075,0.0,100.0,9.946666667,0.149,237.88345156666662 +2016-09-30 22:00:00,0.0,1010.928993,0.0,100.0,9.7775,0.091666667,237.88508248333332 +2016-09-30 23:00:00,0.0,1010.3873679999999,0.0,100.0,9.753333332999999,0.08008333299999999,237.88528498333335 +2016-01-10 00:00:00,0.0,1009.974917,0.0,100.0,9.905833333,0.026166667,238.05554444999999 +2016-01-10 01:00:00,2.465991576,1009.491535,0.0,100.0,10.3275,0.15833333300000002,238.0535759833333 +2016-01-10 02:00:00,4.818466368,1008.8706179999999,0.0,100.0,10.7925,0.029666667,238.0546497 +2016-01-10 03:00:00,12.12324367,1008.170576,0.0,100.0,11.24166667,0.15425,238.0526811833333 +2016-01-10 04:00:00,5.272049664,1007.2477359999999,0.0,100.0,11.58916667,0.9690000000000001,238.05286016666665 +2016-01-10 05:00:00,2.541367944,1006.726917,0.0,100.0,11.62666667,0.48558333299999995,238.05142849999996 +2016-01-10 06:00:00,2.628730488,1006.341708,0.409083333,100.0,11.6675,0.3205,238.05035479999995 +2016-01-10 07:00:00,5.077936296,1006.181118,10.74475,100.0,11.38166667,0.584833333,238.05160746666664 +2016-01-10 08:00:00,2.512983072,1005.7999580000001,38.19666667,100.0,11.70833333,0.53,238.05303909999998 +2016-01-10 09:00:00,17.62021222,1005.6749580000001,75.29666667,100.0,12.68833333,0.552083333,238.0507127 +2016-01-10 10:00:00,32.01011818,1005.5915349999999,87.265,100.0,13.99333333,0.35916666700000005,238.04963899999996 +2016-01-10 11:00:00,35.64124555,1005.212458,79.73166667,100.0,14.85666667,1.4525,238.04749155 +2016-01-10 12:00:00,8.597475072,1004.976993,111.49166670000001,100.0,15.6425,1.7271666669999999,238.04767049999998 +2016-01-10 13:00:00,0.0,1004.574833,96.96166667,97.11666667,16.19083333,1.4929166669999998,238.0469546833333 +2016-01-10 14:00:00,16.36053667,1004.325,69.025,95.91666667,16.48333333,1.1195,238.0458809666667 +2016-01-10 15:00:00,32.19154598,1004.272958,54.53666667,97.98333333,16.1725,1.17975,238.0492810833333 +2016-01-10 16:00:00,8.695893936000001,1004.400083,44.40833333,98.16666667,15.48583333,0.8005,238.05017584999996 +2016-01-10 17:00:00,0.0,1004.8480900000001,43.37583333,98.08333333,15.26333333,0.400583333,238.04946004999996 +2016-01-10 18:00:00,0.0,1005.658549,2.072833333,99.66666667,14.28916667,0.256083333,238.04910213333332 +2016-01-10 19:00:00,0.0,1006.0875,0.0,98.61666667,13.8,0.8585,238.05017584999996 +2016-01-10 20:00:00,0.0,1006.302174,0.0,97.575,14.1925,1.712833333,238.05375491666666 +2016-01-10 21:00:00,0.0,1006.612583,0.0,96.35,13.42,0.69075,238.05769188333338 +2016-01-10 22:00:00,0.0,1007.033507,0.0,96.11666667,13.05,0.862,238.05697606666664 +2016-01-10 23:00:00,0.0,1007.224958,0.0,96.2,12.26166667,0.43641666700000004,238.05912351666666 +2016-02-10 00:00:00,0.0,1007.25009,0.0,95.23333333,12.31083333,0.747083333,238.20854955000001 +2016-02-10 01:00:00,0.0,1007.376993,0.0,95.03333333,13.1175,2.113,238.20819163333329 +2016-02-10 02:00:00,2.900759064,1007.402125,0.0,94.34166667,13.255,1.536083333,238.20604419999995 +2016-02-10 03:00:00,0.0,1007.110285,0.0,95.36666667,12.91416667,1.0405,238.20425468333335 +2016-02-10 04:00:00,2.903553072,1007.004083,0.0,96.66666667,12.90833333,1.5723333330000002,238.20282301666668 +2016-02-10 05:00:00,0.0,1006.818924,0.0,99.25,12.18583333,1.114333333,238.20246511666667 +2016-02-10 06:00:00,0.0,1007.414708,2.20925,97.51666667,11.71,1.53125,238.1994229333333 +2016-02-10 07:00:00,0.0,1007.70009,18.43416667,96.86666667,12.03833333,1.98875,238.1956649 +2016-02-10 08:00:00,0.0,1008.4022570000001,77.86166667,93.325,12.7675,2.17575,238.19405435 +2016-02-10 09:00:00,0.0,1009.046049,296.40833330000004,82.62583333,14.14916667,1.851,238.19208585 +2016-02-10 10:00:00,0.0,1009.195833,356.84166669999996,73.82916667,15.0125,1.93825,238.19065420000004 +2016-02-10 11:00:00,0.0,1009.247826,378.85,67.19583333,15.58416667,2.3403333330000002,238.1902963166667 +2016-02-10 12:00:00,4.2742583519999995,1009.222924,196.8825,67.93333333,15.3425,3.340166667,238.18904365000003 +2016-02-10 13:00:00,0.0,1009.072917,132.3216667,77.48,13.865,2.332166667,238.18886469999998 +2016-02-10 14:00:00,18.81948264,1009.350132,166.0341667,85.60083333,13.61583333,1.373833333,238.18832783333335 +2016-02-10 15:00:00,0.0,1009.327076,126.825,87.71666667,13.26333333,1.9921666669999998,238.18886468333335 +2016-02-10 16:00:00,0.0,1009.375,97.48,85.025,13.05083333,1.690333333,238.18814888333335 +2016-02-10 17:00:00,0.0,1009.566757,19.13408333,87.575,12.52583333,1.745,238.18850678333334 +2016-02-10 18:00:00,0.0,1010.116882,0.810666667,89.01666667,11.49666667,1.16975,238.18689618333335 +2016-02-10 19:00:00,0.0,1010.843924,0.0,89.05,11.46916667,1.1285,238.18671721666666 +2016-02-10 20:00:00,0.0,1011.372958,0.0,94.35,11.34333333,1.214916667,238.18761199999997 +2016-02-10 21:00:00,5.041768032,1011.681458,0.0,97.725,11.0375,0.563333333,238.18904363333334 +2016-02-10 22:00:00,5.090170776,1012.3668470000001,0.0,98.63333333,11.25083333,0.7535,238.18868575 +2016-02-10 23:00:00,0.0,1012.958507,0.0,97.81666667,11.54333333,1.2045,238.18850676666668 +2016-03-10 00:00:00,0.0,1013.504292,0.0,96.33333333,11.34,1.106416667,238.20920414999998 +2016-03-10 01:00:00,0.0,1013.9876320000001,0.0,94.03333333,11.53833333,1.314333333,238.20815931666667 +2016-03-10 02:00:00,0.0,1014.531382,0.0,95.10833333,11.43,1.12525,238.20795036666667 +2016-03-10 03:00:00,0.0,1015.143924,0.0,98.25,11.10166667,0.577416667,238.20836831666668 +2016-03-10 04:00:00,0.0,1015.687625,0.0,97.69166667,11.20666667,0.594916667,238.20815935 +2016-03-10 05:00:00,0.0,1016.287722,0.0,98.24166667,11.16916667,0.426416667,238.20523388333334 +2016-03-10 06:00:00,2.4884729759999997,1017.0127150000001,3.015916667,99.09166667,11.09833333,0.288333333,238.20502495000002 +2016-03-10 07:00:00,0.0,1017.764799,21.03916667,99.25,11.3175,0.48858333299999995,238.20523390000002 +2016-03-10 08:00:00,0.0,1018.4210419999999,66.185,99.0,12.03833333,0.38391666700000004,238.20272635 +2016-03-10 09:00:00,0.0,1019.114764,100.0958333,96.33333333,12.8775,0.41725,238.19792021666663 +2016-03-10 10:00:00,0.0,1019.679215,120.87,93.44166667,13.47583333,0.797333333,238.19603956666666 +2016-03-10 11:00:00,0.0,1019.966743,186.8733333,90.85833333,14.89583333,0.773416667,238.1947858 +2016-03-10 12:00:00,0.0,1020.266757,122.77166670000001,91.25833333,14.47833333,0.731666667,238.19394995000002 +2016-03-10 13:00:00,0.0,1020.508368,214.725,85.41166667,14.9025,0.933666667,238.19039758333335 +2016-03-10 14:00:00,0.0,1020.495757,253.94666669999998,78.59916667,16.10166667,1.11775,238.19081555000002 +2016-03-10 15:00:00,0.0,1020.573,179.83833330000002,81.53166667,16.00833333,1.199416667,238.1933230666667 +2016-03-10 16:00:00,81.12083630000001,1020.770924,100.6141667,86.64166667,13.245,0.775,238.19415891666665 +2016-03-10 17:00:00,0.0,1021.2377220000001,13.59983333,89.18333333,12.41916667,0.889416667,238.1931141 +2016-03-10 18:00:00,0.0,1022.062715,0.79425,98.21666667,9.798333332999999,0.146583333,238.19186033333335 +2016-03-10 19:00:00,0.0,1022.818958,0.0,100.0,9.541666667000001,0.15841666699999998,238.19353203333333 +2016-03-10 20:00:00,0.0,1023.398049,0.0,100.0,9.286666667,0.08666666699999999,238.19311411666664 +2016-03-10 21:00:00,0.0,1023.7625830000001,0.0,100.0,7.961916667000001,0.136916667,238.1933230666667 +2016-03-10 22:00:00,0.0,1024.18975,0.0,100.0,6.96675,0.18358333300000002,238.1931141166667 +2016-03-10 23:00:00,0.0,1024.5687990000001,0.0,100.0,6.635,0.058666667,238.19394996666665 +2016-04-10 00:00:00,2.4050227680000003,1024.858424,0.0,100.0,5.968916667,0.094666667,238.215473 +2016-04-10 01:00:00,0.0,1025.016674,0.0,100.0,5.296,0.0705,238.21463713333333 +2016-04-10 02:00:00,0.0,1024.91875,0.0,100.0,4.852083333,0.037666667,238.2135923333333 +2016-04-10 03:00:00,0.0,1025.154201,0.0,100.0,4.5545,0.003416667,238.21338336666665 +2016-04-10 04:00:00,0.0,1025.385542,0.0,100.0,5.18625,0.067166667,238.2131744333333 +2016-04-10 05:00:00,0.0,1025.714667,0.0,100.0,6.531333332999999,0.13675,238.21338335 +2016-04-10 06:00:00,0.0,1026.127208,0.650833333,100.0,7.273333332999999,0.0215,238.2133833833333 +2016-04-10 07:00:00,0.0,1026.6084720000001,12.4465,100.0,8.376583333,0.053416667,238.21108481666667 +2016-04-10 08:00:00,0.0,1026.989708,27.0075,100.0,10.1,0.17925,238.20753246666663 +2016-04-10 09:00:00,0.0,1027.295806,56.56083333,100.0,11.8675,1.901083333,238.20565181666666 +2016-04-10 10:00:00,0.0,1027.479368,107.275,95.00833333,13.38583333,3.926583333,238.20481598333333 +2016-04-10 11:00:00,0.0,1027.693667,103.095,84.71666667,13.90083333,4.2335,238.20314426666673 +2016-04-10 12:00:00,0.0,1027.845882,96.41,82.39166667,13.68833333,4.0904166669999995,238.20251736666668 +2016-04-10 13:00:00,0.0,1027.764535,260.3666667,75.4475,14.28666667,3.731833333,238.20084568333337 +2016-04-10 14:00:00,0.0,1027.589549,306.9,66.08,15.23083333,4.129,238.2046070166667 +2016-04-10 15:00:00,0.0,1027.552035,183.2641667,64.15583333,15.0675,3.909583333,238.20481596666664 +2016-04-10 16:00:00,0.0,1027.4813470000001,100.53,65.30916667,14.8125,3.99975,238.20230843333334 +2016-04-10 17:00:00,0.0,1027.8334439999999,18.26225,68.87666667,13.5625,2.3803333330000003,238.20356221666668 +2016-04-10 18:00:00,0.0,1028.133382,0.646416667,84.86666667,10.16083333,0.37791666700000004,238.20356218333333 +2016-04-10 19:00:00,0.0,1028.38759,0.0,95.54166667,7.316166667,0.22575,238.20481598333333 +2016-04-10 20:00:00,0.0,1028.7875900000001,0.0,98.74166667,5.999416667,0.302583333,238.20565181666666 +2016-04-10 21:00:00,0.0,1028.918785,0.0,99.96666667,4.9021666669999995,0.243166667,238.20690560000003 +2016-04-10 22:00:00,0.0,1029.131208,0.0,100.0,4.05225,0.2095,238.20544286666666 +2016-04-10 23:00:00,0.0,1028.9582990000001,0.0,100.0,3.48575,0.069416667,238.2048159666667 +2016-05-10 00:00:00,0.0,1028.950076,0.0,100.0,3.135,0.15325,238.09567726666668 +2016-05-10 01:00:00,0.0,1028.849917,0.0,100.0,3.3975,0.30675,238.09601518333332 +2016-05-10 02:00:00,0.0,1028.52075,0.0,100.0,5.148666667,0.45325,238.09652208333333 +2016-05-10 03:00:00,0.0,1028.1998609999998,0.0,100.0,5.42275,1.3219999999999998,238.09533933333333 +2016-05-10 04:00:00,0.0,1027.877,0.0,100.0,7.04525,2.29475,238.09466346666667 +2016-05-10 05:00:00,0.0,1027.814597,0.0,100.0,6.095,1.956083333,238.09449451666669 +2016-05-10 06:00:00,0.0,1028.054326,2.102666667,100.0,6.423833332999999,2.888083333,238.09432555 +2016-05-10 07:00:00,0.0,1028.46684,12.3305,97.875,6.598416667,2.4049166669999997,238.0941565666667 +2016-05-10 08:00:00,0.0,1028.883292,47.56833333,91.325,7.71325,3.94575,238.09331178333332 +2016-05-10 09:00:00,0.0,1028.906285,242.1583333,80.6675,8.595833333,4.083333333,238.08874975 +2016-05-10 10:00:00,0.0,1028.835417,212.375,78.49,8.9875,3.8283333330000002,238.08841183333334 +2016-05-10 11:00:00,0.0,1028.612243,281.3166667,72.83166667,10.25083333,4.407666667,238.08537050000004 +2016-05-10 12:00:00,0.0,1027.495535,161.3916667,69.6725,11.17916667,3.988666667,238.08587740000004 +2016-05-10 13:00:00,0.0,1026.7311320000001,270.97833330000003,65.26,11.89083333,4.1435833330000005,238.0824981166667 +2016-05-10 14:00:00,0.0,1026.249854,199.05833330000002,61.19916667,12.15583333,3.4765,238.0797947 +2016-05-10 15:00:00,0.0,1025.6644099999999,137.44666669999998,62.66333333,11.80666667,4.1225,238.08199123333335 +2016-05-10 16:00:00,0.0,1025.120667,112.45416670000002,64.465,11.35083333,3.066166667,238.08384980000002 +2016-05-10 17:00:00,0.0,1024.875042,7.405,70.48666667,10.835,3.400083333,238.08232915000005 +2016-05-10 18:00:00,0.0,1024.674958,0.46566666700000003,76.72833333,9.911666667,2.315416667,238.0836808666667 +2016-05-10 19:00:00,0.0,1024.4540279999999,0.0,80.065,9.578333333,1.1845,238.08503256666668 +2016-05-10 20:00:00,0.0,1023.945708,0.0,89.30833333,7.814416667000001,0.44325,238.08604635000003 +2016-05-10 21:00:00,0.0,1023.547833,0.0,95.35,5.82825,0.345583333,238.08739803333333 +2016-05-10 22:00:00,0.0,1023.178951,0.0,98.95,4.226166667,0.18491666699999998,238.08706013333335 +2016-05-10 23:00:00,0.0,1022.4019099999999,0.0,99.94166667,4.434833333,0.449,238.08722908333334 +2016-06-10 00:00:00,0.0,1021.9145,0.0,100.0,4.9215,0.37508333299999996,238.05867428333337 +2016-06-10 01:00:00,0.0,1021.474826,0.0,100.0,4.7540833330000005,0.439666667,238.05918116666666 +2016-06-10 02:00:00,0.0,1020.947736,0.0,100.0,4.442416667,0.72275,238.0596880666667 +2016-06-10 03:00:00,0.0,1020.25409,0.0,100.0,5.567916667,1.3799166669999998,238.0610397833333 +2016-06-10 04:00:00,0.0,1020.047826,0.0,99.825,6.371333333,1.87075,238.06188458333335 +2016-06-10 05:00:00,0.0,1019.381076,0.0,94.73333333,6.676916667,1.79675,238.06053286666668 +2016-06-10 06:00:00,0.0,1018.9560759999999,1.050666667,94.91666667,6.3835,0.7416666670000001,238.05918118333332 +2016-06-10 07:00:00,0.0,1018.64375,13.48391667,94.35833333,6.958666667,1.53425,238.0576605 +2016-06-10 08:00:00,0.0,1018.529167,29.675,90.51666667,7.757166667000001,2.2745833330000003,238.05749151666666 +2016-06-10 09:00:00,0.0,1018.547792,45.55083333,88.20833333,8.274166667000001,2.5269999999999997,238.0558019166667 +2016-06-10 10:00:00,0.0,1018.09366,116.66916670000002,86.66666667,9.061666667,4.039833333,238.0529295 +2016-06-10 11:00:00,0.0,1017.929167,115.37833329999998,86.24166667,9.365,3.617916667,238.04887440000002 +2016-06-10 12:00:00,0.0,1017.562326,82.825,87.73333333,9.575,3.2939999999999996,238.04667788333333 +2016-06-10 13:00:00,0.0,1017.062375,139.1333333,86.43333333,10.19083333,3.491083333,238.0439744666667 +2016-06-10 14:00:00,0.0,1016.727035,79.82083333,86.50833333,10.6,3.1701666669999997,238.04160898333336 +2016-06-10 15:00:00,0.0,1016.460333,50.215,87.36666667,10.54583333,3.3355,238.04127104999998 +2016-06-10 16:00:00,0.0,1016.2374169999999,7.846416667000001,90.03333333,10.33166667,1.8029166669999999,238.04076415000006 +2016-06-10 17:00:00,0.0,1015.887493,2.03375,92.06666667,10.49083333,2.0710833330000002,238.03941246666668 +2016-06-10 18:00:00,0.0,1015.9937570000001,0.08683333300000001,92.60833333,10.38666667,2.499833333,238.04076418333338 +2016-06-10 19:00:00,0.0,1016.0625,0.0,92.53333333,10.42083333,2.5453333330000003,238.04008833333333 +2016-06-10 20:00:00,0.0,1016.05625,0.0,93.99166667,10.28833333,1.8188333330000002,238.0409331166667 +2016-06-10 21:00:00,0.0,1015.84566,0.0,95.13333333,10.38416667,1.555083333,238.04211585 +2016-06-10 22:00:00,0.0,1015.4521179999999,0.0,94.0,10.61166667,2.148416667,238.04414343333335 +2016-06-10 23:00:00,0.0,1015.37075,0.0,93.99166667,10.69916667,1.9039166669999998,238.0456641166667 +2016-07-10 00:00:00,0.0,1015.2999580000001,0.0,94.71666667,10.7175,1.6200833330000002,238.01094148333334 +2016-07-10 01:00:00,0.0,1015.074958,0.0,95.19166667,10.65166667,1.413416667,238.01233441666668 +2016-07-10 02:00:00,0.0,1014.7686669999999,0.0,96.15,10.62666667,1.332333333,238.01452336666668 +2016-07-10 03:00:00,0.0,1014.618792,0.0,95.85833333,10.74416667,1.969333333,238.01790625 +2016-07-10 04:00:00,0.0,1014.697875,0.0,96.0,10.53833333,1.258,238.0179062666667 +2016-07-10 05:00:00,0.0,1014.566618,0.0,98.36666667,10.10083333,0.343416667,238.0187022166667 +2016-07-10 06:00:00,0.0,1014.525042,0.29600000000000004,99.96666667,10.25666667,0.96225,238.01750826666662 +2016-07-10 07:00:00,0.0,1014.687583,11.00175,99.91666667,10.37583333,1.4958333330000002,238.01870221666664 +2016-07-10 08:00:00,0.0,1014.960424,40.82416667,99.49166667,10.5425,1.771,238.01750825 +2016-07-10 09:00:00,0.0,1015.1063330000001,44.92666667,97.25833333,10.9025,1.406916667,238.0163143 +2016-07-10 10:00:00,0.0,1015.4313400000001,39.47333333,97.975,10.86916667,1.7265,238.01233445 +2016-07-10 11:00:00,5.935647816,1015.672924,91.9425,99.60833333,10.54083333,2.29225,238.01193645 +2016-07-10 12:00:00,0.0,1015.716701,115.1575,98.41666667,10.74833333,2.124833333,238.00636463333333 +2016-07-10 13:00:00,0.0,1015.597868,128.3175,95.575,11.71333333,1.39975,238.00059385 +2016-07-10 14:00:00,0.0,1015.341583,108.05,91.55833333,12.2175,1.83025,237.99661396666667 +2016-07-10 15:00:00,0.0,1015.222875,77.6175,92.11666667,12.25083333,1.305833333,237.99243511666666 +2016-07-10 16:00:00,0.0,1015.15209,56.70416667,94.35833333,12.26416667,0.45233333299999995,237.99283306666666 +2016-07-10 17:00:00,17.45488037,1015.370917,5.4595,98.49166667,10.75,1.41975,237.99223611666665 +2016-07-10 18:00:00,2.488230696,1015.550083,0.150333333,100.0,9.725833332999999,0.320083333,237.9910421666667 +2016-07-10 19:00:00,0.0,1015.66041,0.0,100.0,9.085833333,0.332833333,237.99124114999998 +2016-07-10 20:00:00,0.0,1015.662507,0.0,100.0,6.7430833329999995,0.107583333,237.99124113333335 +2016-07-10 21:00:00,0.0,1015.808375,0.0,100.0,5.343083333,0.131583333,237.99502201666667 +2016-07-10 22:00:00,0.0,1015.991757,0.0,100.0,5.84725,0.1465,237.99820590000002 +2016-07-10 23:00:00,0.0,1016.133333,0.0,100.0,6.532,0.040333333,238.0011908166667 +2016-08-10 00:00:00,0.0,1016.041535,0.0,100.0,6.085916667,0.123583333,237.91880759999995 +2016-08-10 01:00:00,0.0,1015.758424,0.0,100.0,6.026333332999999,0.0245,237.92219045 +2016-08-10 02:00:00,0.0,1015.8415699999999,0.0,100.0,6.3229999999999995,0.052916667,237.92636931666667 +2016-08-10 03:00:00,0.0,1015.702007,0.0,100.0,6.171666667,0.063416667,237.92796126666667 +2016-08-10 04:00:00,0.0,1015.56259,0.0,100.0,6.626166667000001,0.071916667,237.9311451833333 +2016-08-10 05:00:00,7.215068304,1015.820917,0.0,100.0,7.3175,0.015666667,237.93134418333332 +2016-08-10 06:00:00,15.65977457,1016.206417,0.261666667,100.0,7.979666667,2.136083333,237.9325381 +2016-08-10 07:00:00,0.0,1016.779257,16.06,100.0,7.908583332999999,2.242833333,237.9333341 +2016-08-10 08:00:00,0.0,1017.350215,59.55333333,99.925,8.2775,2.477166667,237.93572199999997 +2016-08-10 09:00:00,0.0,1017.7542080000001,109.9025,96.54166667,8.798333332999999,2.62575,237.93810993333332 +2016-08-10 10:00:00,0.0,1018.235507,116.11833329999999,91.88333333,9.380833333,2.51325,237.92780208 +2016-08-10 11:00:00,0.0,1018.433417,268.8166667,86.16416667,10.4475,2.365333333,237.93671699999996 +2016-08-10 12:00:00,0.0,1018.3624169999999,171.6775,80.195,11.1425,2.933333333,237.93492603333334 +2016-08-10 13:00:00,0.0,1018.460507,214.0,76.87166667,11.0825,3.335416667,237.93253811666668 +2016-08-10 14:00:00,0.0,1018.627083,215.15,75.37,11.42583333,1.98275,237.93154316666667 +2016-08-10 15:00:00,0.0,1018.681333,202.4216667,69.205,11.86666667,3.3523333330000002,237.93015019999999 +2016-08-10 16:00:00,0.0,1018.895875,120.25833329999999,74.73416667,10.6575,2.265333333,237.92915523333332 +2016-08-10 17:00:00,0.0,1019.014667,18.61883333,81.84,10.195,1.204583333,237.93273709999997 +2016-08-10 18:00:00,0.0,1019.227132,0.169083333,95.56666667,7.595916667000001,0.35700000000000004,237.93154315 +2016-08-10 19:00:00,0.0,1019.545875,0.0,99.58333333,6.212000000000001,0.107416667,237.93054818333334 +2016-08-10 20:00:00,0.0,1019.750125,0.0,100.0,5.766833332999999,0.130916667,237.93313511666668 +2016-08-10 21:00:00,0.0,1020.2062990000001,0.0,100.0,6.560166667000001,0.198833333,237.93572201666666 +2016-08-10 22:00:00,0.0,1020.162451,0.0,100.0,6.896,0.35100000000000003,237.93751296666665 +2016-08-10 23:00:00,0.0,1019.977042,0.0,100.0,5.895916667000001,0.11841666699999999,237.93990085 +2016-09-10 00:00:00,0.0,1019.954257,0.0,100.0,5.068083333,0.210916667,237.8333424333333 +2016-09-10 01:00:00,0.0,1020.129118,0.0,100.0,5.5628333329999995,0.018916666999999998,237.83530395 +2016-09-10 02:00:00,0.0,1019.8582849999999,0.0,100.0,5.547166667000001,0.063666667,237.83724968333334 +2016-09-10 03:00:00,0.0,1019.733257,0.0,100.0,5.739,0.11483333300000001,237.84183078333334 +2016-09-10 04:00:00,0.0,1019.618708,0.0,100.0,5.978,0.004,237.84158558333334 +2016-09-10 05:00:00,0.0,1019.510417,0.0,100.0,6.046333333,0.046833333,237.84391410000003 +2016-09-10 06:00:00,0.0,1019.560458,0.60375,100.0,6.302083333,0.15691666699999998,237.84637078333333 +2016-09-10 07:00:00,0.0,1019.741792,16.28108333,100.0,6.703583332999999,0.024083333,237.8469877 +2016-09-10 08:00:00,0.0,1019.975049,59.3425,100.0,7.51225,1.057166667,237.84839398333335 +2016-09-10 09:00:00,0.0,1020.1792009999999,81.38833333,96.60833333,7.966583332999999,1.830416667,237.8481092666667 +2016-09-10 10:00:00,0.0,1020.418757,116.61666670000001,92.29166667,8.956666667,1.643666667,237.84526503333333 +2016-09-10 11:00:00,0.0,1020.439542,258.6916667,82.98416667,10.07083333,1.792583333,237.84254738333334 +2016-09-10 12:00:00,0.0,1020.045743,390.95,71.41,12.49333333,0.97,237.83898498333335 +2016-09-10 13:00:00,0.0,1019.643625,317.725,66.57583333,13.44666667,1.067916667,237.83425518333334 +2016-09-10 14:00:00,0.0,1019.3729519999999,78.12666667,71.25,11.885,0.5840833329999999,237.82812063333333 +2016-09-10 15:00:00,0.0,1019.329042,49.38666667,83.12,10.08083333,0.706666667,237.82516093333334 +2016-09-10 16:00:00,0.0,1019.300125,26.77083333,86.49166667,9.631666667000001,1.54675,237.82395398333333 +2016-09-10 17:00:00,0.0,1019.556299,6.448166667000001,85.53333333,9.0875,1.3213333329999999,237.8207032 +2016-09-10 18:00:00,0.0,1019.837542,0.060583332999999996,91.51666667,8.0855,0.16899999999999998,237.81943771666667 +2016-09-10 19:00:00,0.0,1020.070875,0.0,95.7,7.69575,0.055416667,237.81872109999998 +2016-09-10 20:00:00,0.0,1020.137549,0.0,97.84166667,7.209833333,0.06975,237.82009105 +2016-09-10 21:00:00,0.0,1020.420917,0.0,99.55,5.8245,0.15866666699999998,237.8211492833333 +2016-09-10 22:00:00,0.0,1020.539583,0.0,100.0,4.220333333,0.152916667,237.82233889999998 +2016-09-10 23:00:00,0.0,1020.47916,0.0,100.0,2.7695,0.2145,237.8234035 +2016-10-10 00:00:00,0.0,1020.533347,0.0,100.0,1.7775,0.0465,237.96580103333335 +2016-10-10 01:00:00,0.0,1020.564576,0.0,100.0,0.9601666670000001,0.01625,237.96591650000002 +2016-10-10 02:00:00,0.0,1020.5333400000001,0.0,100.0,0.253833333,0.0,237.96619331666668 +2016-10-10 03:00:00,0.0,1020.424861,0.0,100.0,1.264416667,0.009916666999999999,237.9642444333333 +2016-10-10 04:00:00,0.0,1020.072875,0.0,100.0,0.79875,0.019833333,237.9664733 +2016-10-10 05:00:00,0.0,1019.787458,0.0,100.0,0.11275,0.0,237.9685677166667 +2016-10-10 06:00:00,0.0,1019.752125,1.553833333,100.0,0.0915,0.02975,237.9680267 +2016-10-10 07:00:00,0.0,1020.141708,48.16666667,100.0,0.669416667,0.0855,237.96610313333335 +2016-10-10 08:00:00,0.0,1020.0958820000001,87.66666667,100.0,3.532333333,0.35908333299999995,237.9655906 +2016-10-10 09:00:00,0.0,1020.0291179999999,158.075,98.275,4.179916667,0.689333333,237.96454498333333 +2016-10-10 10:00:00,0.0,1020.07709,269.725,90.44166667,6.8805,0.527333333,237.96152046666666 +2016-10-10 11:00:00,0.0,1019.84566,271.475,81.14416667,10.04,0.302083333,237.96228133333332 +2016-10-10 12:00:00,0.0,1019.1227779999999,168.29166669999998,68.98333333,11.37666667,0.564666667,237.96321620000003 +2016-10-10 13:00:00,0.0,1018.5895,219.6,72.4075,11.47666667,0.41525,237.9626514833333 +2016-10-10 14:00:00,0.0,1018.37691,135.025,72.055,10.89916667,0.344083333,237.96097151666666 +2016-10-10 15:00:00,0.0,1017.689417,58.0475,76.99416667,9.9725,0.38341666700000004,237.96292671666666 +2016-10-10 16:00:00,0.0,1017.545833,32.19833333,85.04166667,9.4375,0.0485,237.96283025 +2016-10-10 17:00:00,0.0,1017.368785,8.403083333,95.04166667,8.148416667000001,0.24525,237.96283343333332 +2016-10-10 18:00:00,0.0,1017.472965,0.055416667,97.99166667,7.4935,0.144916667,237.96330796666666 +2016-10-10 19:00:00,0.0,1017.433208,0.0,99.375,7.013166667,0.003166667,237.96331113333335 +2016-10-10 20:00:00,0.0,1017.514625,0.0,99.9,6.660833332999999,0.147416667,237.9643346 +2016-10-10 21:00:00,0.0,1017.414535,0.0,100.0,6.34225,0.146083333,237.96469051666668 +2016-10-10 22:00:00,0.0,1017.225,0.0,100.0,5.9835,0.145583333,237.96457345 +2016-10-10 23:00:00,0.0,1017.122875,0.0,100.0,5.85625,0.1975,237.9650606666667 +2016-11-10 00:00:00,0.0,1017.008243,0.0,100.0,5.512083333,0.034,238.08094594999997 +2016-11-10 01:00:00,0.0,1016.643674,0.0,100.0,5.125083333,0.12633333300000002,238.0862041 +2016-11-10 02:00:00,0.0,1016.422868,0.0,100.0,5.040166667,0.11783333300000001,238.09137053333333 +2016-11-10 03:00:00,0.0,1016.1852849999999,0.0,100.0,5.01025,0.10158333300000001,238.09384458333332 +2016-11-10 04:00:00,0.0,1015.952132,0.0,100.0,4.811333333,0.04,238.09914858333332 +2016-11-10 05:00:00,0.0,1015.883285,0.0,100.0,4.27525,0.066416667,238.10371075 +2016-11-10 06:00:00,0.0,1015.937549,0.676166667,100.0,3.121916667,0.026333332999999997,238.10514710000004 +2016-11-10 07:00:00,0.0,1016.09375,11.6845,100.0,2.0878333330000003,0.123666667,238.10584151666663 +2016-11-10 08:00:00,0.0,1016.285583,58.48166667,100.0,3.97975,1.4085,238.10547929999998 +2016-11-10 09:00:00,0.0,1016.61875,124.30833329999999,100.0,4.653583333,1.045166667,238.1030511 +2016-11-10 10:00:00,0.0,1016.6437080000001,221.7666667,96.53333333,6.215083333,0.40883333299999997,238.10099624999998 +2016-11-10 11:00:00,0.0,1016.5583330000001,185.4666667,90.65,7.881666667,1.6015,238.09834656666666 +2016-11-10 12:00:00,0.0,1016.116493,143.27333330000002,87.24166667,8.5475,2.004916667,238.09519708333335 +2016-11-10 13:00:00,0.0,1015.704083,217.40083330000002,79.14166667,10.14333333,2.1608333330000002,238.09256165 +2016-11-10 14:00:00,0.0,1015.345785,159.0166667,75.275,10.695,2.379333333,238.09138631666667 +2016-11-10 15:00:00,0.0,1015.049833,91.72916667,76.20416667,10.80833333,1.72025,238.0888932833333 +2016-11-10 16:00:00,0.0,1014.810451,31.19858333,78.295,10.74083333,1.475333333,238.08834119999997 +2016-11-10 17:00:00,0.0,1014.835382,3.28675,88.375,9.903333332999999,0.6729999999999999,238.08743005 +2016-11-10 18:00:00,0.0,1014.868792,0.02825,95.14166667,8.711666667000001,0.056833333,238.08408440000002 +2016-11-10 19:00:00,0.0,1015.07925,0.0,97.4,8.301666667000001,0.08433333300000001,238.08346746666666 +2016-11-10 20:00:00,0.0,1015.106167,0.0,99.2,7.96625,0.0965,238.0819488333333 +2016-11-10 21:00:00,0.0,1014.9187919999999,0.0,99.91666667,7.885333332999999,0.11741666699999999,238.08090636666665 +2016-11-10 22:00:00,4.8100455360000005,1014.797792,0.0,100.0,7.6315,0.020666667,238.0797721666667 +2016-11-10 23:00:00,4.8270935999999995,1014.526993,0.0,100.0,7.1735,0.106,238.07568935000003 +2016-12-10 00:00:00,2.4050227680000003,1014.402125,0.0,100.0,7.117916667,0.03775,238.02705135 +2016-12-10 01:00:00,7.347074736000001,1014.3625,0.0,100.0,7.233333332999999,0.12616666699999998,238.02775526666667 +2016-12-10 02:00:00,7.222709256,1014.327042,0.0,100.0,7.268916667,0.020416667,238.03000945 +2016-12-10 03:00:00,2.420878824,1014.045708,0.0,100.0,7.277083332999999,0.070333333,238.03008379999997 +2016-12-10 04:00:00,0.0,1013.847868,0.0,100.0,7.351833332999999,0.026083332999999997,238.030696 +2016-12-10 05:00:00,0.0,1013.795875,0.0,100.0,7.544833333,0.15125,238.03027363333334 +2016-12-10 06:00:00,2.73979092,1013.908333,0.2275,100.0,7.633833332999999,0.886416667,238.03205956666667 +2016-12-10 07:00:00,0.0,1014.0772220000001,11.26325,100.0,7.709416667,1.183416667,238.03139515 +2016-12-10 08:00:00,0.0,1014.746042,20.56833333,100.0,7.781083333,2.3471666669999998,238.03221299999998 +2016-12-10 09:00:00,0.0,1015.216708,63.60666667,99.71666667,7.63875,2.34975,238.03102499999997 +2016-12-10 10:00:00,0.0,1015.389583,123.89166670000002,95.99166667,8.006333332999999,2.834333333,238.02889736666668 +2016-12-10 11:00:00,0.0,1015.431299,126.06666670000001,91.50833333,8.279166667,3.4485,238.02771571666668 +2016-12-10 12:00:00,0.0,1015.31666,134.3916667,89.16666667,8.505833333,3.4940833330000003,238.02851140000004 +2016-12-10 13:00:00,0.0,1015.24784,92.785,87.85,8.505,3.348666667,238.02691846666667 +2016-12-10 14:00:00,0.0,1014.933243,58.97916667,88.89166667,8.424166667,2.73675,238.02813173333334 +2016-12-10 15:00:00,0.0,1014.681208,37.20416667,88.15,8.658333333,2.575333333,238.02868543333332 +2016-12-10 16:00:00,0.0,1014.658375,21.68266667,88.725,8.559166667000001,2.539583333,238.0298655 +2016-12-10 17:00:00,0.0,1014.7687080000001,2.2671666669999997,91.61666667,8.281666667,2.238,238.03082730000003 +2016-12-10 18:00:00,0.0,1014.860542,0.06675,92.95833333,8.078333333,1.9790833330000002,238.03175741666666 +2016-12-10 19:00:00,0.0,1015.0812080000001,0.0,93.94166667,7.955583333,1.491916667,238.0302404 +2016-12-10 20:00:00,0.0,1015.1146669999999,0.0,94.81666667,7.696166667000001,1.507333333,238.02960291666668 +2016-12-10 21:00:00,0.0,1015.1833330000001,0.0,95.74166667,7.692666667,1.877583333,238.02978480000002 +2016-12-10 22:00:00,0.0,1015.20625,0.0,97.09166667,7.099,0.897083333,238.0296962333333 +2016-12-10 23:00:00,0.0,1014.887375,0.0,99.98333333,5.808666667000001,0.132166667,238.03185075 +2016-10-13 00:00:00,0.0,1014.735458,0.0,100.0,4.743916667,0.215166667,237.96763285 +2016-10-13 01:00:00,0.0,1014.9375,0.0,100.0,4.356666667,0.195583333,237.96757903333335 +2016-10-13 02:00:00,0.0,1014.718618,0.0,100.0,3.6085,0.21508333300000002,237.96915776666665 +2016-10-13 03:00:00,0.0,1014.301958,0.0,100.0,2.6806666669999997,0.30425,237.96945198333336 +2016-10-13 04:00:00,0.0,1013.924951,0.0,100.0,1.847,0.028583333,237.97023184999998 +2016-10-13 05:00:00,0.0,1013.9375,0.0,100.0,2.0466666669999998,0.061333333,237.96929221666664 +2016-10-13 06:00:00,0.0,1013.779125,0.852916667,100.0,3.1225,0.0,237.96914508333336 +2016-10-13 07:00:00,0.0,1013.729208,15.59516667,100.0,2.651916667,0.066666667,237.96980631666668 +2016-10-13 08:00:00,0.0,1013.616542,62.41333333,100.0,5.252833333,0.325833333,237.96866261666665 +2016-10-13 09:00:00,0.0,1013.3583679999999,92.3125,94.59166667,8.3725,1.696666667,237.96789545 +2016-10-13 10:00:00,0.0,1013.316542,93.5775,83.5,9.215833332999999,2.24125,237.9671488 +2016-10-13 11:00:00,0.0,1012.78316,92.34833333,81.875,9.394166667,1.8234166669999998,237.96702695000002 +2016-10-13 12:00:00,0.0,1011.901917,118.46666670000002,81.68333333,9.96,2.066166667,237.96728798333334 +2016-10-13 13:00:00,0.0,1011.533201,96.3225,79.79833333,10.2,1.935,237.966603 +2016-10-13 14:00:00,0.0,1011.18116,53.2225,77.53083333,9.960833333,2.249666667,237.96773563333338 +2016-10-13 15:00:00,0.0,1010.3455759999999,49.99583333,77.97666667,10.06583333,2.632583333,237.96769135 +2016-10-13 16:00:00,0.0,1009.9957919999999,32.26916667,80.7975,9.841666667,3.080166667,237.96703645000002 +2016-10-13 17:00:00,0.0,1009.895875,4.3755,85.15,9.429166667,3.420833333,237.96775146666664 +2016-10-13 18:00:00,0.0,1009.760285,0.01175,86.66666667,9.088333333,3.439916667,237.9675268166667 +2016-10-13 19:00:00,0.0,1009.4249580000001,0.0,90.44166667,7.7816666670000005,2.0790833330000003,237.96819911666668 +2016-10-13 20:00:00,0.0,1009.3624169999999,0.0,97.0,6.373666667,0.8201666670000001,237.96979364999996 +2016-10-13 21:00:00,0.0,1009.427125,0.0,100.0,4.4319999999999995,0.170083333,237.96787326666666 +2016-10-13 22:00:00,0.0,1009.002042,0.0,100.0,3.590583333,0.239666667,237.97066526666666 +2016-10-13 23:00:00,0.0,1008.868535,0.0,100.0,2.6460000000000004,0.24983333300000002,237.970061 +2016-10-14 00:00:00,0.0,1008.5979580000001,0.0,100.0,3.2460000000000004,0.173583333,237.96907708333333 +2016-10-14 01:00:00,0.0,1008.31441,0.0,100.0,3.89425,0.08408333300000001,237.9689283833333 +2016-10-14 02:00:00,0.0,1007.368493,0.0,100.0,4.656000000000001,0.167416667,237.96957378333332 +2016-10-14 03:00:00,0.0,1007.1125,0.0,100.0,4.624916667,0.159833333,237.9693207 +2016-10-14 04:00:00,0.0,1006.487278,0.0,99.725,4.361666667,0.37141666700000003,237.97086460000003 +2016-10-14 05:00:00,0.0,1006.129083,0.0,99.325,4.365,0.29575,237.97185326666667 +2016-10-14 06:00:00,0.0,1005.824917,0.642333333,99.16666667,4.067083333,0.442166667,237.97238001666665 +2016-10-14 07:00:00,0.0,1005.787542,32.22758333,98.64166667,4.844333333,0.61575,237.97179631666663 +2016-10-14 08:00:00,0.0,1005.860417,76.97,93.81666667,7.24125,2.66,237.9714103333333 +2016-10-14 09:00:00,0.0,1006.104292,173.4,85.23333333,9.112666667000001,1.75625,237.96589591666665 +2016-10-14 10:00:00,0.0,1005.585201,195.0166667,82.41,9.814166667,1.7635833330000001,237.96572981666668 +2016-10-14 11:00:00,0.0,1005.391583,310.1166667,77.27333333,12.28166667,1.4941666669999998,237.96503223333335 +2016-10-14 12:00:00,0.0,1004.65816,251.9833333,70.91,14.05833333,1.9339166669999999,237.96314186666666 +2016-10-14 13:00:00,0.0,1004.083118,252.3416667,67.42,14.6925,1.8015833330000002,237.96241578333334 +2016-10-14 14:00:00,0.0,1003.5123679999999,106.3675,69.95833333,14.3525,1.187833333,237.96457345 +2016-10-14 15:00:00,0.0,1002.774868,94.51583333,73.51333333,14.64416667,0.876833333,237.96486138333333 +2016-10-14 16:00:00,0.0,1002.576917,27.025,84.86833333,13.9675,1.446083333,237.96437416666666 +2016-10-14 17:00:00,0.0,1001.599868,11.28025,83.88333333,12.94666667,3.384583333,237.9658278833333 +2016-10-14 18:00:00,0.0,1001.687458,0.0,86.59166667,11.68166667,2.297583333,237.96526156666667 +2016-10-14 19:00:00,0.0,1001.7000419999999,0.0,90.35,10.8475,2.274916667,237.96437573333333 +2016-10-14 20:00:00,0.0,1001.5875,0.0,92.76666667,10.2725,1.4555,237.96533751666666 +2016-10-14 21:00:00,0.0,1002.000132,0.0,94.025,10.01916667,0.652833333,237.96456873333332 +2016-10-14 22:00:00,0.0,1002.035368,0.0,97.15833333,9.814166667,0.9863333329999999,237.96509073333334 +2016-10-14 23:00:00,0.0,1001.685375,0.0,97.78333333,8.22475,0.282,237.9667358833333 +2016-10-15 00:00:00,0.0,1002.102125,0.0,99.35833333,6.967166667000001,0.161666667,237.96596868333336 +2016-10-15 01:00:00,0.0,1002.114632,0.0,100.0,6.135916667,0.19266666699999999,237.9673038 +2016-10-15 02:00:00,0.0,1002.35,0.0,100.0,5.846333333,0.13375,237.96780208333334 +2016-10-15 03:00:00,0.0,1002.37309,0.0,100.0,5.79125,0.20475,237.96610156666665 +2016-10-15 04:00:00,0.0,1002.856375,0.0,100.0,6.831333333,1.0375,237.96748411666667 +2016-10-15 05:00:00,0.0,1003.556382,0.0,100.0,6.51625,0.27066666699999997,237.96679918333336 +2016-10-15 06:00:00,0.0,1004.0355900000001,0.125,100.0,5.5765,0.183916667,237.96739076666668 +2016-10-15 07:00:00,0.0,1004.944007,13.36925,100.0,7.0381666670000005,0.29933333300000003,237.9651872333333 +2016-10-15 08:00:00,0.0,1005.846181,61.46333333,98.81666667,10.11833333,1.230166667,237.96260561666668 +2016-10-15 09:00:00,0.0,1006.7689650000001,90.42666667,89.78333333,11.785,1.3713333330000002,237.961261 +2016-10-15 10:00:00,0.0,1007.766965,86.94083333,88.24166667,13.90083333,0.941583333,237.96240628333337 +2016-10-15 11:00:00,0.0,1008.648007,200.41666669999998,84.075,15.24583333,0.901666667,237.96189693333335 +2016-10-15 12:00:00,0.0,1009.079424,148.2416667,79.95916667,15.87916667,0.8985,237.9609573 +2016-10-15 13:00:00,0.0,1009.906424,151.44166669999998,77.41166667,15.39166667,1.144583333,237.96164541666667 +2016-10-15 14:00:00,0.0,1010.4250490000001,90.0325,80.74166667,14.75583333,0.44525,237.9601268 +2016-10-15 15:00:00,0.0,1010.956507,84.44333333,79.9625,14.76583333,0.29725,237.95983575 +2016-10-15 16:00:00,0.0,1011.554299,51.39666667,81.675,14.77583333,0.15275,237.95851961666665 +2016-10-15 17:00:00,0.0,1012.048049,4.377,87.70833333,13.5625,0.21975,237.95823171666666 +2016-10-15 18:00:00,0.0,1012.598125,0.000916667,92.65833333,11.1,0.09825,237.9579549 +2016-10-15 19:00:00,0.0,1013.0875900000001,0.0,99.35,9.124166667,0.21558333300000002,237.95885338333332 +2016-10-15 20:00:00,0.0,1013.8252150000001,0.0,100.0,8.444166667000001,0.21125,237.9579295833333 +2016-10-15 21:00:00,0.0,1014.352215,0.0,100.0,7.875083332999999,0.15416666699999998,237.95903056666666 +2016-10-15 22:00:00,0.0,1014.579208,0.0,100.0,5.857,0.20225,237.95931211666667 +2016-10-15 23:00:00,0.0,1014.939667,0.0,100.0,4.525416667,0.182416667,237.95937701666665 +2016-10-16 00:00:00,0.0,1015.327174,0.0,100.0,3.68075,0.082166667,237.96053808333332 +2016-10-16 01:00:00,0.0,1015.573,0.0,100.0,3.2694166669999998,0.11833333300000001,237.96109175000004 +2016-10-16 02:00:00,0.0,1015.8792080000001,0.0,100.0,3.280916667,0.11125,237.96047165000002 +2016-10-16 03:00:00,0.0,1016.0104650000001,0.0,100.0,4.383083333,0.077333333,237.96083074999999 +2016-10-16 04:00:00,0.0,1016.414799,0.0,100.0,5.0035,0.04275,237.95926943333333 +2016-10-16 05:00:00,0.0,1016.916667,0.0,100.0,5.572916667,0.10641666699999999,237.9593153 +2016-10-16 06:00:00,0.0,1016.975174,0.36558333299999995,100.0,5.998083332999999,0.071,237.95943233333333 +2016-10-16 07:00:00,0.0,1017.485458,14.65491667,100.0,6.4530833329999995,0.142166667,237.95799758333337 +2016-10-16 08:00:00,0.0,1017.8022080000001,51.42916667,100.0,6.882166667000001,0.239333333,237.9596823333333 +2016-10-16 09:00:00,2.5736205119999997,1018.060465,88.78,100.0,7.422333332999999,0.789666667,237.95882651666668 +2016-10-16 10:00:00,0.0,1018.279167,167.1166667,100.0,8.1305,0.83,237.95753570000002 +2016-10-16 11:00:00,0.0,1018.381201,218.2833333,100.0,9.131666667000001,0.5295,237.95697096666666 +2016-10-16 12:00:00,0.0,1018.0582919999999,316.0833333,99.625,10.97333333,0.908666667,237.95883758333332 +2016-10-16 13:00:00,0.0,1017.603993,329.5583333,87.28333333,15.3075,1.121583333,237.95781566666668 +2016-10-16 14:00:00,0.0,1017.28125,280.34166669999996,76.94916667,16.89083333,1.443416667,237.95788846666667 +2016-10-16 15:00:00,0.0,1017.2145830000001,212.2416667,72.80916667,16.82583333,1.3216666670000001,237.95686654999997 +2016-10-16 16:00:00,0.0,1017.114583,99.27333333,76.5325,15.8625,1.4193333330000002,237.95860345000003 +2016-10-16 17:00:00,0.0,1017.064549,5.98275,94.13333333,12.44416667,0.486333333,237.9601331166667 +2016-10-16 18:00:00,0.0,1017.191701,0.0,98.95,9.053583332999999,0.21433333300000001,237.96262145 +2016-10-16 19:00:00,0.0,1017.375049,0.0,100.0,7.2750833329999995,0.227666667,237.96156474999998 +2016-10-16 20:00:00,0.0,1017.5209169999999,0.0,100.0,5.810916667000001,0.142,237.96127683333336 +2016-10-16 21:00:00,0.0,1017.708333,0.0,100.0,5.535083332999999,0.112166667,237.9604226333333 +2016-10-16 22:00:00,0.0,1017.620875,0.0,100.0,4.978583333,0.08608333300000001,237.96151571666667 +2016-10-16 23:00:00,0.0,1017.712375,0.0,100.0,4.5418333330000005,0.005333333000000001,237.9616849666667 +2016-10-17 00:00:00,0.0,1017.545875,0.0,100.0,4.9965,0.031333333,237.96144926666668 +2016-10-17 01:00:00,0.0,1017.7229580000001,0.0,100.0,5.611916667000001,0.122333333,237.9608529 +2016-10-17 02:00:00,0.0,1017.756208,0.0,100.0,6.163083332999999,0.18100000000000002,237.96143659999998 +2016-10-17 03:00:00,0.0,1017.406201,0.0,100.0,5.800083333,0.051666667,237.96221649999998 +2016-10-17 04:00:00,0.0,1017.472965,0.0,100.0,5.5335,0.052083332999999996,237.96190009999998 +2016-10-17 05:00:00,0.0,1017.5354169999999,0.0,100.0,5.557083333,0.21783333300000002,237.96318931666667 +2016-10-17 06:00:00,0.0,1017.366618,0.22699999999999998,100.0,5.584833333,0.073666667,237.96323836666667 +2016-10-17 07:00:00,0.0,1017.623056,12.55966667,100.0,5.96425,0.057666667000000005,237.96368918333337 +2016-10-17 08:00:00,0.0,1018.087625,49.4825,100.0,6.888416667,0.16525,237.96350411666666 +2016-10-17 09:00:00,0.0,1018.4105,114.35916670000002,100.0,7.945583332999999,0.310833333,237.96305803333334 +2016-10-17 10:00:00,0.0,1018.6040830000001,139.8316667,100.0,9.361666667,0.55825,237.96552098333333 +2016-10-17 11:00:00,0.0,1018.39366,115.36666670000001,100.0,10.2525,0.4255,237.96351995 +2016-10-17 12:00:00,0.0,1018.039542,189.44166669999998,100.0,11.88666667,0.434833333,237.96374298333333 +2016-10-17 13:00:00,0.0,1017.939625,195.79166669999998,95.70833333,13.69916667,0.512833333,237.96316241666668 +2016-10-17 14:00:00,0.0,1018.029125,92.72833333,92.79166667,14.25583333,0.910083333,237.96252966666668 +2016-10-17 15:00:00,0.0,1017.679076,29.17666667,89.45833333,13.94583333,0.47583333299999997,237.9642175333333 +2016-10-17 16:00:00,2.41123968,1017.664674,22.19083333,97.44166667,13.37916667,0.567916667,237.96473325 +2016-10-17 17:00:00,2.464641288,1017.952125,2.43475,100.0,12.43333333,0.293166667,237.96503538333334 +2016-10-17 18:00:00,22.16822885,1018.3230070000001,0.0,100.0,11.98166667,0.332083333,237.96529481666667 +2016-10-17 19:00:00,2.498296608,1018.4896669999999,0.0,100.0,11.71,0.261833333,237.96599715000002 +2016-10-17 20:00:00,2.410962288,1018.6208330000001,0.0,100.0,11.31666667,0.108833333,237.96594178333336 +2016-10-17 21:00:00,0.0,1018.672917,0.0,100.0,10.59166667,0.077916667,237.96656504999999 +2016-10-17 22:00:00,2.4050227680000003,1018.522875,0.0,100.0,10.02083333,0.02125,237.9671867333333 +2016-10-17 23:00:00,0.0,1018.475,0.0,100.0,10.59166667,0.33799999999999997,237.96694945 +2016-10-18 00:00:00,0.0,1018.3624580000001,0.0,100.0,10.81416667,0.361833333,237.96580100000003 +2016-10-18 01:00:00,0.0,1018.518833,0.0,100.0,10.69166667,0.3055,237.96670425000002 +2016-10-18 02:00:00,0.0,1018.5415830000001,0.0,100.0,10.64083333,0.11125,237.96769926666664 +2016-10-18 03:00:00,0.0,1018.385417,0.0,100.0,10.435,0.24583333300000001,237.9667105666667 +2016-10-18 04:00:00,0.0,1018.2478679999999,0.0,100.0,11.18166667,0.228166667,237.96702376666667 +2016-10-18 05:00:00,0.0,1018.15209,0.0,100.0,11.02916667,0.02,237.96809154999997 +2016-10-18 06:00:00,0.0,1018.0771179999999,0.10333333300000001,100.0,10.88333333,0.11525,237.96734333333333 +2016-10-18 07:00:00,0.0,1018.200049,7.54525,99.8,10.87583333,0.095416667,237.96859301666666 +2016-10-18 08:00:00,0.0,1018.491715,36.8625,99.575,11.63083333,0.5904166670000001,237.96776253333334 +2016-10-18 09:00:00,0.0,1018.777076,51.57333333,97.2,12.07916667,0.47275,237.9671472 +2016-10-18 10:00:00,0.0,1018.604167,85.105,96.98333333,12.11166667,0.724833333,237.97003253333332 +2016-10-18 11:00:00,0.0,1018.68125,147.6166667,93.74166667,12.67083333,0.49975,237.96913718333334 +2016-10-18 12:00:00,0.0,1018.272708,237.19166669999998,89.78333333,13.3775,0.74875,237.97043275 +2016-10-18 13:00:00,0.0,1017.601951,172.4083333,81.73916667,14.13333333,1.259416667,237.96818488333335 +2016-10-18 14:00:00,0.0,1016.8414449999999,107.31916670000001,76.36083333,13.33583333,1.7815,237.96816433333333 +2016-10-18 15:00:00,0.0,1016.1685349999999,50.44666667,76.58916667,13.65666667,0.7220833329999999,237.9707064 +2016-10-18 16:00:00,0.0,1015.545708,23.52,79.07583333,13.0025,0.804416667,237.97030776666665 +2016-10-18 17:00:00,0.0,1015.118618,2.330166667,82.45833333,12.205,0.89025,237.97073014999998 +2016-10-18 18:00:00,0.0,1014.841493,0.0,82.21666667,11.78583333,0.989833333,237.97033465 +2016-10-18 19:00:00,0.0,1014.427083,0.0,82.775,12.06416667,1.10025,237.96971301666667 +2016-10-18 20:00:00,0.0,1014.108201,0.0,82.075,12.11166667,1.49225,237.97116356666666 +2016-10-18 21:00:00,3.3891395280000003,1013.866625,0.0,88.26666667,11.50583333,2.2454166669999998,237.97008316666665 +2016-10-18 22:00:00,10.31650865,1013.818792,0.0,94.0,10.39916667,1.015,237.96964496666666 +2016-10-18 23:00:00,7.595049096,1013.585382,0.0,96.35,9.424166667,0.285666667,237.96971296666663 +2016-10-19 00:00:00,2.405564424,1013.456201,0.0,94.71666667,8.881666667000001,0.279583333,237.9700689166667 +2016-10-19 01:00:00,0.0,1013.3727849999999,0.0,97.85,7.1245833329999995,0.13575,237.97002936666664 +2016-10-19 02:00:00,0.0,1012.9019999999999,0.0,100.0,5.512166667000001,0.034583333,237.97217911666667 +2016-10-19 03:00:00,0.0,1012.3435279999999,0.0,100.0,3.995583333,0.063916667,237.97321051666668 +2016-10-19 04:00:00,0.0,1012.09384,0.0,97.46666667,4.621333333,0.087,237.97252085000002 +2016-10-19 05:00:00,5.19368592,1011.989542,0.0,96.33333333,7.204666667000001,0.765833333,237.97292105 +2016-10-19 06:00:00,0.0,1011.9874169999999,0.18466666699999998,96.825,6.92875,0.40833333299999997,237.97306343333332 +2016-10-19 07:00:00,0.0,1011.920917,19.119,97.55833333,7.09975,1.1330833329999999,237.97469591666672 +2016-10-19 08:00:00,2.8131705119999997,1012.1124169999999,53.69,95.975,8.202,1.807333333,237.97457251666665 +2016-10-19 09:00:00,3.198755544,1011.8416179999999,84.14,95.96666667,8.6775,2.6315,237.97266795000004 +2016-10-19 10:00:00,5.963904887999999,1011.20591,135.0275,94.35,9.277793737,2.798333333,237.9726031 +2016-10-19 11:00:00,0.0,1010.247743,217.775,88.325,10.46203469,3.344833333,237.97400779999998 +2016-10-19 12:00:00,0.0,1009.5435279999999,137.7908333,83.85,10.58285038,3.476083333,237.97298431666664 +2016-10-19 13:00:00,0.0,1008.674833,105.1,80.17,10.70530981,3.384666667,237.9748082333333 +2016-10-19 14:00:00,0.0,1008.133201,50.51583333,79.29416667,10.78831923,2.8285,237.9746073 +2016-10-19 15:00:00,0.0,1008.000042,41.90666667,82.9525,10.42587218,2.6196666669999997,237.9736139 +2016-10-19 16:00:00,6.199098096,1008.0125,25.66666667,93.5,9.22757784,2.5139166669999997,237.9744428 +2016-10-19 17:00:00,6.227274672,1008.469007,7.254416667,93.3,8.832255772,2.201,237.97427036666667 +2016-10-19 18:00:00,0.0,1009.164674,0.0,90.54166667,7.959424095,2.101333333,237.97295745 +2016-10-19 19:00:00,0.0,1009.464667,0.0,92.43333333,7.358468801,1.447416667,237.97461838333334 +2016-10-19 20:00:00,0.0,1009.802132,0.0,97.11666667,6.995610811000001,1.506666667,237.97423081666662 +2016-10-19 21:00:00,5.382988632000001,1009.835417,0.0,97.11666667,6.745760689,1.9020833330000002,237.97442223333334 +2016-10-19 22:00:00,0.0,1009.789667,0.0,97.54166667,6.42596897,1.009083333,237.97547578333334 +2016-10-19 23:00:00,0.0,1009.808208,0.0,97.96666667,6.5296896460000005,0.09925,237.97722851666666 +2016-10-20 00:00:00,0.0,1009.6937429999999,0.0,98.05833333,6.798936028,0.235333333,237.97531758333335 +2016-10-20 01:00:00,0.0,1009.7854169999999,0.0,99.53333333,6.8894245089999995,0.206083333,237.97556911666663 +2016-10-20 02:00:00,10.90934405,1009.454083,0.0,99.48333333,6.827537292000001,0.180333333,237.9750802833333 +2016-10-20 03:00:00,5.288273352,1009.112368,0.0,98.83333333,6.733268183,0.33866666700000003,237.97477660000004 +2016-10-20 04:00:00,0.0,1008.68525,0.0,99.9,6.72135099,0.031166667000000002,237.9755027 +2016-10-20 05:00:00,4.982054616,1008.3812429999999,0.0,100.0,6.663573148999999,0.061333333,237.97646286666668 +2016-10-20 06:00:00,29.962791499999998,1008.302042,0.013166667,100.0,6.424818345,0.0,237.97631893333332 +2016-10-20 07:00:00,35.01021182,1008.335507,1.60425,100.0,6.233239188,0.066666667,237.9783864333333 +2016-10-20 08:00:00,4.979375784,1008.339625,16.04025,100.0,6.202583236000001,0.224416667,237.98019610000003 +2016-10-20 09:00:00,5.0706999360000005,1008.458333,50.85666667,100.0,6.4567892979999995,1.679,237.9823427166667 +2016-10-20 10:00:00,5.052106224,1008.508333,52.52916667,100.0,6.662751273,2.1814166669999997,237.9842283 +2016-10-20 11:00:00,0.0,1008.474917,83.46083333,99.65833333,7.040978332999999,1.85975,237.98694598333336 +2016-10-20 12:00:00,0.0,1008.333375,99.19416667,95.83333333,7.783378384,2.06375,237.98813240000004 +2016-10-20 13:00:00,0.0,1008.179076,125.8008333,93.95,8.114183233,1.9270833330000001,237.9912803 +2016-10-20 14:00:00,0.0,1008.052083,105.535,90.99166667,8.845652341000001,2.247666667,237.99071403333335 +2016-10-20 15:00:00,0.0,1007.7707429999999,49.27833333,94.85,8.242313608,2.5365,237.99276886666667 +2016-10-20 16:00:00,0.0,1007.691674,12.86583333,99.55,6.581878734,3.048833333,237.99451051666668 +2016-10-20 17:00:00,0.0,1007.752125,2.113916667,100.0,4.487658023,3.385916667,237.995708 +2016-10-20 18:00:00,0.0,1007.8875,0.0,100.0,3.992642468,3.53275,237.99675994999998 +2016-10-20 19:00:00,0.0,1007.975,0.0,100.0,4.110745963,2.1574166669999997,237.99738318333337 +2016-10-20 20:00:00,0.0,1008.077215,0.0,100.0,3.879059287,0.965916667,237.99676309999995 +2016-10-20 21:00:00,0.0,1008.500083,0.0,100.0,4.374074842,0.137916667,237.9966444666667 +2016-10-20 22:00:00,0.0,1008.906333,0.0,100.0,5.12255677,0.239083333,237.99437761666664 +2016-10-20 23:00:00,0.0,1009.1020900000001,0.0,100.0,5.552479793,0.277083333,237.99540585000003 +2016-10-21 00:00:00,0.0,1009.2605,0.0,100.0,5.592258563,0.179416667,237.99556246666666 +2016-10-21 01:00:00,0.0,1009.297875,0.0,100.0,5.555356357000001,0.072583333,237.99518123333334 +2016-10-21 02:00:00,0.0,1008.970785,0.0,100.0,5.190772429,0.165583333,237.9972566833333 +2016-10-21 03:00:00,0.0,1009.04375,0.0,100.0,5.359010324,0.161583333,237.9966460666666 +2016-10-21 04:00:00,5.029452288,1009.19384,0.0,100.0,5.524700404,0.32375,237.99576178333334 +2016-10-21 05:00:00,30.74154415,1009.375042,0.0,100.0,5.54557604,0.278,237.9951148 +2016-10-21 06:00:00,5.117450208,1009.389625,0.08783333300000001,100.0,5.434458485,0.428833333,237.99672516666666 +2016-10-21 07:00:00,0.0,1009.608382,9.757583333,100.0,5.343559066,0.594833333,237.9980776333333 +2016-10-21 08:00:00,0.0,1010.023042,40.53358333,100.0,5.92010466,2.505083333,237.99747811666668 +2016-10-21 09:00:00,0.0,1010.2,104.90666670000002,98.61666667,7.005719879,1.8891666669999998,237.99684061666665 +2016-10-21 10:00:00,0.0,1010.47925,125.77916670000002,93.45833333,7.837457785,1.778416667,237.99568585 +2016-10-21 11:00:00,0.0,1010.585424,140.28916669999998,88.15833333,8.520682807,1.494666667,237.99561783333334 +2016-10-21 12:00:00,0.0,1010.385285,59.30666667,89.43333333,8.231629228,1.852916667,237.99772491666667 +2016-10-21 13:00:00,0.0,1010.131208,99.89833333,89.3,8.682510073,1.878166667,237.9983465833333 +2016-10-21 14:00:00,0.0,1010.125083,178.8,84.24083333,9.705909324,1.222833333,237.99580925 +2016-10-21 15:00:00,0.0,1010.1749580000001,133.7566667,79.3325,9.816287191,0.8995833329999999,237.99522234999998 +2016-10-21 16:00:00,0.0,1010.074958,45.74333333,85.15,8.114594171,1.254416667,237.99731993333333 +2016-10-21 17:00:00,0.0,1009.945875,3.493666667,90.26666667,6.748144128,3.3403333330000002,237.99933685 +2016-10-21 18:00:00,0.0,1010.0979169999999,0.0,92.04166667,6.361123001,2.43,237.99893821666663 +2016-10-21 19:00:00,0.0,1010.074958,0.0,93.81666667,6.277867023,2.323083333,237.99806816666668 +2016-10-21 20:00:00,0.0,1009.883285,0.0,94.63333333,5.937281856,1.4751666669999999,237.99834656666667 +2016-10-21 21:00:00,0.0,1009.889632,0.0,94.025,6.0091137660000005,0.671333333,237.99638343333334 +2016-10-21 22:00:00,0.0,1009.866535,0.0,97.36666667,5.8502452510000005,1.0615,237.99594841666666 +2016-10-21 23:00:00,27.26697098,1009.256118,0.0,99.78333333,5.838081495,0.262,237.99767426666668 +2016-10-22 00:00:00,5.676993096,1008.849917,0.0,99.31666667,6.134531953,0.15875,237.99779293333333 +2016-10-22 01:00:00,5.476652424,1008.610375,0.0,99.675,6.235211689,0.22216666699999998,237.99672988333336 +2016-10-22 02:00:00,0.0,1008.270701,0.0,99.48333333,6.388655827000001,0.12191666699999999,237.99791313333333 +2016-10-22 03:00:00,0.0,1007.8311669999999,0.0,100.0,6.467884616,0.197333333,237.9987958 +2016-10-22 04:00:00,0.0,1007.73125,0.0,100.0,6.563550912,0.974166667,237.99779608333333 +2016-10-22 05:00:00,0.0,1007.8083330000001,0.0,100.0,6.721926302000001,0.334083333,237.9973199333333 +2016-10-22 06:00:00,0.0,1007.795833,0.06525,100.0,6.828687917000001,0.199166667,237.99784036666668 +2016-10-22 07:00:00,5.289525,1007.962625,6.148416667,100.0,6.943175161,0.2255,237.9975666833333 +2016-10-22 08:00:00,10.89550704,1008.3458820000001,19.69741667,100.0,7.10590649,1.240583333,237.9979495 +2016-10-22 09:00:00,27.71909846,1008.460458,72.36833333,99.575,7.5373910760000005,1.31775,237.9984921 +2016-10-22 10:00:00,0.0,1008.8022080000001,106.18333329999999,98.46666667,8.20582234,1.0415,237.99846046666664 +2016-10-22 11:00:00,0.0,1008.979167,94.0975,97.66666667,8.513861241,0.83675,237.99971963333329 +2016-10-22 12:00:00,0.0,1009.0333400000001,179.3,94.81666667,9.062134322,0.8865833329999999,238.00045203333332 +2016-10-22 13:00:00,5.391899208,1009.052125,182.5333333,87.8,9.794671867,1.177,238.0002179333333 +2016-10-22 14:00:00,0.0,1009.0832849999999,92.7775,88.175,9.654953049,0.5106666670000001,237.9999569 +2016-10-22 15:00:00,0.0,1008.9104169999999,54.01833333,93.86666667,9.164293434,0.284166667,238.00380405 +2016-10-22 16:00:00,0.0,1009.1667150000001,46.51416667,92.44166667,9.278945053,0.142166667,238.00192321666668 +2016-10-22 17:00:00,0.0,1009.429292,3.2040833330000003,99.625,7.953424405,0.232416667,238.0032234833333 +2016-10-22 18:00:00,0.0,1009.691715,0.0,100.0,6.62412313,0.10099999999999999,238.0044099 +2016-10-22 19:00:00,0.0,1009.923042,0.0,100.0,6.269977019,0.22241666699999998,238.00447476666668 +2016-10-22 20:00:00,0.0,1010.125,0.0,100.0,4.837612569,0.203083333,238.004054 +2016-10-22 21:00:00,0.0,1010.34175,0.0,100.0,4.360678273,0.136916667,238.00402711666666 +2016-10-22 22:00:00,0.0,1010.3374650000001,0.0,100.0,5.179841486,0.21891666699999998,238.00124931666667 +2016-10-22 23:00:00,0.0,1010.2875,0.0,100.0,4.983413265,0.17225,238.002605 +2016-10-23 00:00:00,0.0,1010.322826,0.0,100.0,5.396323467,0.1025,238.00282488333335 +2016-10-23 01:00:00,0.0,1010.087458,0.0,100.0,5.594806376,0.107416667,238.00212881666664 +2016-10-23 02:00:00,0.0,1009.9249580000001,0.0,100.0,5.555520732000001,0.11791666699999999,238.00161471666664 +2016-10-23 03:00:00,0.0,1009.604035,0.0,100.0,5.495277265,0.081583333,238.00318235 +2016-10-23 04:00:00,0.0,1009.437583,0.0,100.0,5.350709382,0.03425,238.0022997 +2016-10-23 05:00:00,0.0,1009.412458,0.0,100.0,5.188553365,0.109166667,238.00308115000004 +2016-10-23 06:00:00,0.0,1009.312542,0.05175,100.0,4.974619198,0.07675,238.00408085 +2016-10-23 07:00:00,0.0,1009.499958,3.548916667,100.0,4.8276678760000005,0.093416667,238.00328991666663 +2016-10-23 08:00:00,0.0,1009.6834240000001,23.28666667,100.0,4.971660447,0.25575,238.0037755666667 +2016-10-23 09:00:00,0.0,1009.908417,46.4825,100.0,5.519111652,0.75,238.0036142 +2016-10-23 10:00:00,0.0,1009.879042,60.25166667,100.0,5.846711187,0.831666667,238.0027346833333 +2016-10-23 11:00:00,0.0,1009.454035,71.425,100.0,6.4092849,0.51425,238.00239620000002 +2016-10-23 12:00:00,0.0,1009.0269509999999,74.50083333,99.05,7.055854277999999,0.8955833329999999,238.00210353333333 +2016-10-23 13:00:00,0.0,1008.5353259999999,96.94333333,97.05833333,7.814116524,1.095583333,238.00128728333334 +2016-10-23 14:00:00,0.0,1008.404208,129.8866667,95.06666667,8.364773043,1.4411666669999998,238.00066719999995 +2016-10-23 15:00:00,0.0,1008.114375,113.48333329999998,92.925,9.314696632999999,1.35675,237.99991896666666 +2016-10-23 16:00:00,0.0,1007.727083,49.92583333,93.01666667,9.362611968,1.4044166669999998,238.00131100000002 +2016-10-23 17:00:00,0.0,1007.8354099999999,3.6615,97.9,8.073418213,0.590916667,238.00109113333338 +2016-10-23 18:00:00,0.0,1007.733333,0.0,100.0,6.462953363,0.211833333,238.00468356666667 +2016-10-23 19:00:00,0.0,1007.656257,0.0,100.0,5.095106132,0.22925,238.00392430000002 +2016-10-23 20:00:00,0.0,1007.937625,0.0,100.0,4.754931903,0.12608333300000002,238.00334215 +2016-10-23 21:00:00,0.0,1008.193667,0.0,100.0,5.162253352,0.11983333300000001,238.00356673333332 +2016-10-23 22:00:00,0.0,1007.925042,0.0,100.0,5.700746115,0.097416667,238.00227598333333 +2016-10-23 23:00:00,0.0,1008.312632,0.0,100.0,6.7717319520000006,0.0019166670000000002,238.00041251666667 +2016-10-24 00:00:00,0.0,1008.560333,0.0,100.0,7.039992083,0.03475,238.00012459999996 +2016-10-24 01:00:00,0.0,1008.437625,0.0,100.0,6.962735795,0.11725,238.00201019999997 +2016-10-24 02:00:00,5.027651928,1008.672833,0.0,100.0,6.843317299,0.18608333300000002,238.00139166666665 +2016-10-24 03:00:00,0.0,1008.402125,0.0,100.0,6.888273884,0.051666667,238.00099466666668 +2016-10-24 04:00:00,0.0,1008.518743,0.0,100.0,6.9732558000000004,0.043916667,238.00077320000003 +2016-10-24 05:00:00,5.076879264,1008.33959,0.0,100.0,7.10656399,0.195916667,238.00114174999996 +2016-10-24 06:00:00,0.0,1008.987583,0.0,100.0,7.219571857999999,0.10375,237.99999805000002 +2016-10-24 07:00:00,0.0,1008.764757,4.93575,100.0,7.373426932999999,0.047416667,238.0009962 +2016-10-24 08:00:00,5.08390572,1009.477167,17.0325,100.0,7.687712087,0.16016666699999998,237.99924506666665 +2016-10-24 09:00:00,20.6218579,1009.7145,20.18833333,100.0,7.873209365,0.299666667,238.00044415 +2016-10-24 10:00:00,10.37291954,1009.6061179999999,45.20166667,100.0,8.201466401,0.5449166670000001,238.00110378333332 +2016-10-24 11:00:00,5.1060724319999995,1009.077083,58.89333333,100.0,8.749164169,0.393583333,238.00136320000001 +2016-10-24 12:00:00,5.087163336000001,1008.974875,36.2275,100.0,9.086215271,0.44375,238.00136953333333 +2016-10-24 13:00:00,41.45908157,1008.750042,38.9675,100.0,9.50454985,0.479,238.00321243333335 +2016-10-24 14:00:00,10.3827875,1008.775,21.99916667,100.0,9.414965432,0.9505,238.00658496666665 +2016-10-24 15:00:00,10.27069363,1008.775132,22.55083333,100.0,9.482359214,0.532083333,238.00865408333334 +2016-10-24 16:00:00,10.20996211,1008.872743,13.58808333,100.0,9.47249671,0.5488333329999999,238.01137018333336 +2016-10-24 17:00:00,0.0,1009.164972,0.813333333,100.0,9.436334192,0.284166667,238.01185898333333 +2016-10-24 18:00:00,0.0,1010.050083,0.0,100.0,9.598243646,0.305583333,238.01358321666666 +2016-10-24 19:00:00,0.0,1010.15625,0.0,100.0,9.577696761,0.299666667,238.0155874666667 +2016-10-24 20:00:00,9.958751568,1010.247917,0.0,100.0,9.44208732,0.12558333300000002,238.01576146666665 +2016-10-24 21:00:00,4.979375784,1010.750347,0.0,100.0,9.520165483,0.033916667000000005,238.01644168333337 +2016-10-24 22:00:00,0.0,1011.385368,0.0,100.0,9.576874886,0.06525,238.01640688333336 +2016-10-24 23:00:00,14.93812735,1011.2272220000001,0.0,100.0,9.410856055,0.282166667,238.0164606666667 +2016-10-25 00:00:00,9.958751568,1011.7125,0.0,100.0,9.424006061,0.40299999999999997,238.01835731666665 +2016-10-25 01:00:00,14.93812735,1011.827208,0.0,100.0,9.529206112,0.320166667,238.01998035 +2016-10-25 02:00:00,19.99049177,1012.554424,0.0,100.0,9.649199921000001,0.097916667,238.02310136666665 +2016-10-25 03:00:00,30.74056507,1013.220833,0.0,100.0,9.774946857,0.20875,238.0293513833333 +2016-10-25 04:00:00,10.38188071,1013.3063400000001,0.0,100.0,9.775768733,0.27325,238.03733830000002 +2016-10-25 05:00:00,5.0536872960000006,1013.9898400000001,0.0,100.0,9.521809234,0.025333333,238.04057798333335 +2016-10-25 06:00:00,0.0,1014.639799,0.024916667000000003,100.0,9.589449579,0.10133333300000001,238.04390464999997 +2016-10-25 07:00:00,0.0,1015.775306,5.41575,100.0,10.00071603,0.10825,238.04414036666665 +2016-10-25 08:00:00,0.0,1016.6690070000001,22.96416667,100.0,10.86968489,0.5319166670000001,238.04378284999999 +2016-10-25 09:00:00,0.0,1017.508465,32.43083333,100.0,11.08912563,0.51575,238.04225001666666 +2016-10-25 10:00:00,0.0,1017.868792,63.80916667,99.91666667,11.51814458,0.661833333,238.04046405 +2016-10-25 11:00:00,0.0,1017.941757,101.5166667,97.21666667,12.07784173,0.526333333,238.04070293333334 +2016-10-25 12:00:00,0.0,1018.15625,174.7416667,94.01666667,12.81013272,0.6868333329999999,238.03994996666665 +2016-10-25 13:00:00,0.0,1018.2457919999999,51.96916667,92.34166667,12.73780768,1.2675,238.03894861666666 +2016-10-25 14:00:00,0.0,1018.42934,32.86666667,92.56666667,12.16085115,1.7934166669999998,238.03961776666665 +2016-10-25 15:00:00,0.0,1019.1544240000001,47.49916667,90.90833333,11.63813839,0.776083333,238.03803589999998 +2016-10-25 16:00:00,0.0,1019.733417,32.30925,92.2,11.0965225,0.73425,238.03773373333334 +2016-10-25 17:00:00,0.0,1020.314798,1.789166667,97.86666667,9.047094002,0.922333333,238.03677198333332 +2016-10-25 18:00:00,0.0,1020.86459,0.0,100.0,8.6348413,0.992166667,238.03687796666668 +2016-10-25 19:00:00,0.0,1021.091875,0.0,100.0,9.179909067,1.038583333,238.0345320333333 +2016-10-25 20:00:00,0.0,1021.477132,0.0,100.0,9.353324776000001,1.5275833330000002,238.0331463166667 +2016-10-25 21:00:00,0.0,1021.96684,0.0,100.0,9.211962207000001,2.168333333,238.03255313333332 +2016-10-25 22:00:00,0.0,1022.435458,0.0,100.0,9.06484651,1.17325,238.03115788333332 +2016-10-25 23:00:00,0.0,1022.443708,0.0,100.0,8.944688327,0.29933333300000003,238.03179856666668 +2016-10-26 00:00:00,0.0,1022.51891,0.0,100.0,8.834885773,0.256833333,238.03195834999997 +2016-10-26 01:00:00,0.0,1022.779174,0.0,100.0,8.764451051,0.150333333,238.03055043333336 +2016-10-26 02:00:00,0.0,1022.679167,0.0,100.0,8.728946034,0.050916667,238.03060421666666 +2016-10-26 03:00:00,0.0,1022.7041320000001,0.0,100.0,8.640430053,0.063916667,238.03014236666664 +2016-10-26 04:00:00,0.0,1022.6979439999999,0.0,100.0,8.593500967,0.073916667,238.0290366 +2016-10-26 05:00:00,0.0,1022.798007,0.0,100.0,8.524709996,0.7254166670000001,238.02908563333332 +2016-10-26 06:00:00,0.0,1023.26259,0.0,100.0,8.47712341,0.395,238.0267412833333 +2016-10-26 07:00:00,0.0,1023.658458,2.34575,100.0,8.461507778,1.064416667,238.02687098333334 +2016-10-26 08:00:00,0.0,1024.07925,12.76858333,100.0,8.623992545,1.8041666669999998,238.02700388333335 +2016-10-26 09:00:00,0.0,1024.266722,28.32583333,100.0,9.012299959,2.5710833330000002,238.02418021666665 +2016-10-26 10:00:00,0.0,1024.714715,32.93083333,98.43333333,9.265,0.68625,238.02235313333335 +2016-10-26 11:00:00,0.0,1024.789458,63.0325,93.68333333,9.609166667,0.24916666699999998,238.0219798333333 +2016-10-26 12:00:00,0.0,1024.725111,75.76083333,84.44166667,9.964166667,0.237,238.02208738333334 +2016-10-26 13:00:00,0.0,1024.662389,105.725,79.30666667,10.39333333,0.51775,238.02098165000004 +2016-10-26 14:00:00,0.0,1024.458326,108.85666670000002,77.43416667,10.79083333,1.076833333,238.02005943333336 +2016-10-26 15:00:00,0.0,1024.310368,118.01083329999999,74.24916667,10.77333333,0.35566666700000005,238.0215701333333 +2016-10-26 16:00:00,0.0,1024.445917,26.17333333,87.41833333,10.10416667,0.062916667,238.02137556666665 +2016-10-26 17:00:00,0.0,1024.595972,1.385,95.575,9.503333332999999,0.129083333,238.0216096833333 +2016-10-26 18:00:00,0.0,1024.9355,0.0,98.78333333,8.970833333,0.047583333,238.01999775000002 +2016-10-26 19:00:00,0.0,1025.17916,0.0,99.95,8.701666667000001,0.12825,238.02061466666666 +2016-10-26 20:00:00,0.0,1025.5085900000001,0.0,100.0,8.121583333,0.3225,238.02098166666664 +2016-10-26 21:00:00,0.0,1026.081306,0.0,100.0,6.145416667,0.33399999999999996,238.02013853333335 +2016-10-26 22:00:00,0.0,1026.670875,0.0,100.0,4.652583333,0.297583333,238.01992338333332 +2016-10-26 23:00:00,0.0,1026.668743,0.0,100.0,4.1849166669999995,0.190583333,238.02201936666665 +2016-10-27 00:00:00,0.0,1026.5687990000001,0.0,100.0,3.974416667,0.10075,238.01949313333333 +2016-10-27 01:00:00,0.0,1026.6645,0.0,100.0,3.417916667,0.06408333299999999,238.02022868333333 +2016-10-27 02:00:00,2.456033784,1026.670924,0.0,100.0,3.962333333,0.213916667,238.01860729999999 +2016-10-27 03:00:00,0.0,1027.196042,0.0,100.0,5.536583332999999,0.36958333299999996,238.01889199999997 +2016-10-27 04:00:00,0.0,1027.322833,0.0,100.0,4.956583333,0.176416667,238.01718515000002 +2016-10-27 05:00:00,0.0,1027.473,0.0,100.0,3.356083333,0.38833333299999995,238.01847438333334 +2016-10-27 06:00:00,0.0,1027.793958,0.03475,100.0,3.0990833330000003,0.09725,238.01853925 +2016-10-27 07:00:00,0.0,1028.5125970000001,11.66566667,100.0,3.129833333,0.022833332999999997,238.0164417 +2016-10-27 08:00:00,0.0,1028.991792,34.68,100.0,3.5835,0.1325,238.01506069999996 +2016-10-27 09:00:00,0.0,1029.489715,116.56083329999998,100.0,4.695666667,0.6343333329999999,238.0136069333333 +2016-10-27 10:00:00,0.0,1029.625097,154.975,100.0,6.355916667000001,0.8415,238.01120093333336 +2016-10-27 11:00:00,0.0,1029.777028,214.7583333,88.75833333,9.264916667,0.851583333,238.01057926666667 +2016-10-27 12:00:00,0.0,1029.537458,286.5583333,76.87666667,11.78833333,0.832666667,238.0100145 +2016-10-27 13:00:00,0.0,1029.43525,210.925,75.205,11.86916667,1.183416667,238.00888185 +2016-10-27 14:00:00,0.0,1029.1271179999999,92.86666667,76.93166667,12.185,1.129083333,238.01122304999998 +2016-10-27 15:00:00,0.0,1028.860333,77.63833333,79.48833333,12.3975,1.4769999999999999,238.01303431666668 +2016-10-27 16:00:00,0.0,1028.972958,43.72866667,82.7225,11.97583333,0.7515,238.0120930833333 +2016-10-27 17:00:00,0.0,1029.091743,1.214666667,96.275,10.22833333,0.21025,238.01196338333338 +2016-10-27 18:00:00,0.0,1029.2167220000001,0.0,99.34166667,9.835,0.30141666699999997,238.0123446166667 +2016-10-27 19:00:00,0.0,1029.106125,0.0,100.0,9.679166667,0.551416667,238.0118447333333 +2016-10-27 20:00:00,0.0,1028.98541,0.0,100.0,8.226666667,0.226166667,238.01202979999997 +2016-10-27 21:00:00,0.0,1028.818792,0.0,100.0,6.870583333,0.2815,238.01182891666667 +2016-10-27 22:00:00,0.0,1029.158347,0.0,100.0,6.261666667,0.07958333299999999,238.01030556666663 +2016-10-27 23:00:00,0.0,1029.322903,0.0,100.0,6.635833333,0.028666667000000003,238.01053808333333 +2016-10-28 00:00:00,0.0,1029.060417,0.0,100.0,6.9435,0.144083333,238.01094938333333 +2016-10-28 01:00:00,0.0,1028.987417,0.0,100.0,7.380333332999999,0.286916667,238.00927575000003 +2016-10-28 02:00:00,0.0,1028.67284,0.0,99.38333333,8.01525,0.42258333299999995,238.0083393 +2016-10-28 03:00:00,0.0,1028.704202,0.0,98.23333333,8.24,0.448166667,238.00859873333332 +2016-10-28 04:00:00,0.0,1028.387368,0.0,97.9,8.308333333,0.227416667,238.00923780000002 +2016-10-28 05:00:00,0.0,1028.335465,0.0,97.33333333,8.4525,0.228083333,238.00736485000002 +2016-10-28 06:00:00,0.0,1028.295875,0.0,99.76666667,8.140916667,0.04125,238.0079865333333 +2016-10-28 07:00:00,0.0,1028.497993,2.524083333,100.0,8.438333333,0.2495,238.00936593333333 +2016-10-28 08:00:00,0.0,1028.875049,19.49225,97.41666667,8.845833333,0.3585,238.00754678333328 +2016-10-28 09:00:00,0.0,1029.21259,35.39583333,94.575,10.27666667,0.34766666700000004,238.0063445333333 +2016-10-28 10:00:00,0.0,1029.5729509999999,42.60916667,93.23333333,11.11416667,0.478,238.00603293333333 +2016-10-28 11:00:00,0.0,1029.460424,95.03666667,90.23333333,12.01166667,0.73025,238.0060962 +2016-10-28 12:00:00,0.0,1029.022743,151.6583333,87.16666667,13.25666667,1.035833333,238.00743131666664 +2016-10-28 13:00:00,0.0,1028.797958,75.1075,85.90833333,12.99083333,1.037416667,238.0071528833333 +2016-10-28 14:00:00,0.0,1028.833292,59.69333333,84.20833333,13.29916667,0.854833333,238.00574184999996 +2016-10-28 15:00:00,0.0,1029.191799,22.7125,86.05,13.08333333,0.67425,238.00495883333335 +2016-10-28 16:00:00,0.0,1029.210327,12.80958333,88.15833333,12.81666667,0.58175,238.00574818333334 +2016-10-28 17:00:00,0.0,1029.183549,1.28325,89.775,12.47166667,0.5196666670000001,238.0070991166667 +2016-10-28 18:00:00,0.0,1029.516583,0.0,91.2,12.2625,0.619166667,238.00715131666666 +2016-10-28 19:00:00,0.0,1029.583417,0.0,92.71666667,12.13166667,0.52425,238.00628441666666 +2016-10-28 20:00:00,0.0,1029.850056,0.0,94.05,11.98,0.410583333,238.00517873333334 +2016-10-28 21:00:00,0.0,1029.883312,0.0,95.04166667,11.97666667,0.864583333,238.00534639999998 +2016-10-28 22:00:00,0.0,1029.7145070000001,0.0,95.89166667,11.86416667,0.944333333,238.0058336 +2016-10-28 23:00:00,0.0,1029.560458,0.0,97.05833333,11.68333333,1.015666667,238.00608196666667 +2016-10-29 00:00:00,0.0,1029.687458,0.0,98.41666667,11.63666667,0.760416667,238.00393535 +2016-10-29 01:00:00,0.0,1029.502,0.0,99.825,11.3575,0.564,238.00605665 +2016-10-29 02:00:00,0.0,1029.227035,0.0,100.0,10.84833333,0.570916667,238.00622906666663 +2016-10-29 03:00:00,0.0,1028.950035,0.0,100.0,10.38166667,0.510166667,238.00698046666665 +2016-10-29 04:00:00,0.0,1029.0249789999998,0.0,100.0,8.919166667,0.198666667,238.00625755000002 +2016-10-29 05:00:00,0.0,1029.110452,0.0,100.0,8.490833333,0.276416667,238.00682386666668 +2016-10-29 06:00:00,0.0,1029.112451,0.020666667,100.0,7.520083333,0.204583333,238.00653438333333 +2016-10-29 07:00:00,0.0,1029.4126390000001,7.789083333,100.0,7.7195,0.29525,238.00492085000005 +2016-10-29 08:00:00,0.0,1029.7105,42.65833333,100.0,9.573333332999999,0.43858333299999996,238.00390846666664 +2016-10-29 09:00:00,0.0,1030.002167,62.04166667,99.75,12.10583333,1.736833333,238.00322033333336 +2016-10-29 10:00:00,0.0,1030.224958,144.0633333,86.03083333,12.5425,2.935333333,238.00207981666668 +2016-10-29 11:00:00,0.0,1030.012458,215.55833330000002,73.34166667,12.75833333,2.232916667,238.00267301666665 +2016-10-29 12:00:00,0.0,1029.543521,294.96666669999996,68.9275,13.5675,2.556833333,238.00272359999997 +2016-10-29 13:00:00,0.0,1028.887458,303.6333333,63.51333333,13.54333333,2.087333333,238.00338169999998 +2016-10-29 14:00:00,0.0,1028.633215,234.55,60.81583333,13.57083333,1.774583333,238.00161948333334 +2016-10-29 15:00:00,0.0,1028.2040769999999,147.6416667,60.93916667,13.71,1.584,238.00160363333336 +2016-10-29 16:00:00,0.0,1027.966625,47.06541667,68.30583333,12.28583333,0.797583333,238.00265876666666 +2016-10-29 17:00:00,0.0,1028.062542,1.606916667,91.70833333,8.581166667,0.320833333,238.00297038333335 +2016-10-29 18:00:00,0.0,1028.2875900000001,0.0,98.15833333,6.567416667000001,0.201916667,238.00237718333332 +2016-10-29 19:00:00,0.0,1028.5646179999999,0.0,99.86666667,5.35125,0.15441666699999998,238.0030416 +2016-10-29 20:00:00,0.0,1028.345799,0.0,100.0,4.184666667,0.18600000000000003,238.00457128333335 +2016-10-29 21:00:00,0.0,1028.570875,0.0,100.0,3.8344166669999997,0.259083333,238.0035145666667 +2016-10-29 22:00:00,0.0,1028.489542,0.0,100.0,3.427083333,0.22225,238.00388631666667 +2016-10-29 23:00:00,0.0,1028.414625,0.0,100.0,2.384666667,0.049666667000000005,238.00515815000003 +2016-10-30 00:00:00,0.0,1028.504076,0.0,100.0,1.84,0.0,238.0030147 +2016-10-30 01:00:00,0.0,1028.137375,0.0,100.0,1.709583333,0.028166667000000003,238.0020781833333 +2016-10-30 02:00:00,0.0,1027.8603679999999,0.0,100.0,1.662,0.001333333,238.00361896666666 +2016-10-30 03:00:00,0.0,1027.424917,0.0,100.0,2.8801666669999997,0.08633333300000001,238.00082853333333 +2016-10-30 04:00:00,0.0,1027.666625,0.0,100.0,2.670416667,0.171916667,238.0002733 +2016-10-30 05:00:00,0.0,1027.3603679999999,0.0,100.0,1.502083333,0.055833333,238.0026334833333 +2016-10-30 06:00:00,0.0,1027.054125,0.000916667,100.0,1.210583333,0.055166667,238.00496518333333 +2016-10-30 07:00:00,0.0,1026.756215,5.365666667,100.0,0.7978333329999999,0.022833332999999997,238.00431975000004 +2016-10-30 08:00:00,0.0,1027.264833,20.88416667,100.0,2.089416667,0.24483333300000001,238.00148341666667 +2016-10-30 09:00:00,0.0,1027.606167,107.24083329999999,100.0,4.109666667,0.81775,238.00165428333335 +2016-10-30 10:00:00,0.0,1027.564715,217.525,99.33333333,5.364916667,1.39475,238.00005973333336 +2016-10-30 11:00:00,0.0,1027.649945,195.1583333,93.98333333,8.113999999999999,0.831333333,237.9991928833333 +2016-10-30 12:00:00,0.0,1027.237257,271.775,85.69166667,10.97916667,1.350416667,237.99808243333334 +2016-10-30 13:00:00,0.0,1026.73741,248.70833330000002,77.40083333,12.085,1.192166667,237.99848103333332 +2016-10-30 14:00:00,0.0,1026.172743,166.76833330000002,75.45666667,12.9,0.67875,237.99861230000002 +2016-10-30 15:00:00,0.0,1025.833368,77.48916667,82.415,12.39,0.16475,238.00014041666665 +2016-10-30 16:00:00,0.0,1025.897882,27.713,92.34166667,11.00333333,0.048083333,237.99909795 +2016-10-30 17:00:00,0.0,1026.039667,0.833,97.725,9.1175,0.34975,237.99996641666667 +2016-10-30 18:00:00,0.0,1026.025042,0.0,99.80833333,7.517333333,0.14775,238.00060073333336 +2016-10-30 19:00:00,0.0,1026.243708,0.0,100.0,5.711333333,0.180666667,238.00144231666664 +2016-10-30 20:00:00,0.0,1026.354264,0.0,100.0,4.5675,0.1945,238.00133949999997 +2016-10-30 21:00:00,0.0,1026.577118,0.0,100.0,3.708,0.138083333,238.00174603333332 +2016-10-30 22:00:00,0.0,1026.695875,0.0,100.0,3.028666667,0.13425,238.00135215 +2016-10-30 23:00:00,0.0,1026.69375,0.0,100.0,3.62525,0.105833333,238.00121768333335 +2016-10-31 00:00:00,0.0,1026.712542,0.0,100.0,4.43675,0.146416667,237.99866611666664 +2016-10-31 01:00:00,0.0,1026.597833,0.0,100.0,4.6361666669999995,0.13975,237.9977280333333 +2016-10-31 02:00:00,0.0,1026.341535,0.0,100.0,5.4295,0.07741666700000001,237.99759516666668 +2016-10-31 03:00:00,0.0,1025.806076,0.0,100.0,5.843916667,0.165833333,237.9981899833333 +2016-10-31 04:00:00,0.0,1025.4582990000001,0.0,100.0,6.14675,0.055833333,237.99921505 +2016-10-31 05:00:00,0.0,1025.3624929999999,0.0,100.0,6.288416667000001,0.138833333,237.99928463333333 +2016-10-31 06:00:00,0.0,1025.360417,0.0,100.0,6.382166667000001,0.01125,238.00100728333337 +2016-10-31 07:00:00,0.0,1025.839792,4.552166667,100.0,6.6493333329999995,0.11483333300000001,237.9994364833333 +2016-10-31 08:00:00,0.0,1026.045708,25.0725,100.0,7.300333332999999,0.066,237.99868980000005 +2016-10-31 09:00:00,0.0,1025.743667,84.81833333,100.0,8.635166667,0.18408333300000002,237.99750503333334 +2016-10-31 10:00:00,0.0,1025.612542,131.0,90.58333333,11.18666667,0.40366666700000003,237.99647045000003 +2016-10-31 11:00:00,0.0,1025.422833,193.29166669999998,78.8125,13.09416667,1.325583333,237.99655428333332 +2016-10-31 12:00:00,0.0,1024.860243,276.3,73.9625,13.81916667,1.17325,237.99731991666667 +2016-10-31 13:00:00,0.0,1024.4394519999998,259.6416667,71.85333333,14.28083333,0.964833333,237.99723768333334 +2016-10-31 14:00:00,0.0,1023.960333,211.45,71.1975,14.5825,0.728,237.99684378333333 +2016-10-31 15:00:00,0.0,1023.445701,138.9,73.69666667,13.92,0.702416667,237.99884801666664 +2016-10-31 16:00:00,0.0,1023.2166599999999,33.22941667,84.44416667,12.07833333,0.297666667,237.99838611666664 +2016-10-31 17:00:00,0.0,1023.156257,1.240666667,97.23333333,8.059166667000001,0.31175,237.99860915000002 +2016-10-31 18:00:00,0.0,1023.20625,0.0,99.95,6.479416667000001,0.240083333,237.99945231666666 +2016-10-31 19:00:00,0.0,1023.1395,0.0,100.0,5.495916667,0.30175,237.99983669999997 +2016-10-31 20:00:00,0.0,1023.039625,0.0,100.0,4.39175,0.135,238.00095668333333 +2016-10-31 21:00:00,0.0,1023.0832429999999,0.0,100.0,3.558583333,0.15341666699999998,238.00049475000003 +2016-10-31 22:00:00,0.0,1022.681201,0.0,100.0,3.0255,0.11933333300000001,238.00019738333336 +2016-10-31 23:00:00,0.0,1022.35609,0.0,100.0,2.29475,0.013666667,238.0005897 +2016-01-11 00:00:00,0.0,1021.831069,0.0,100.0,1.7476666669999998,0.05875,238.05912349999997 +2016-01-11 01:00:00,0.0,1021.4165830000001,0.0,100.0,2.803416667,0.083166667,238.0634183833333 +2016-01-11 02:00:00,0.0,1021.095701,0.0,100.0,4.234083333,0.000166667,238.06663955000002 +2016-01-11 03:00:00,0.0,1020.368535,0.0,100.0,4.8245,0.207083333,238.0709344333333 +2016-01-11 04:00:00,0.0,1019.747833,0.0,100.0,4.619083333,0.34125,238.07326081666668 +2016-01-11 05:00:00,0.0,1019.414451,0.0,100.0,4.4105,0.345416667,238.07522931666665 +2016-01-11 06:00:00,0.0,1018.768618,0.0,100.0,3.8675833330000002,0.3635,238.07934523333333 +2016-01-11 07:00:00,0.0,1018.6665830000001,3.816833333,100.0,3.534,0.290666667,238.07827151666666 +2016-01-11 08:00:00,0.0,1018.437542,29.56416667,100.0,3.590583333,0.227166667,238.07809254999998 +2016-01-11 09:00:00,0.0,1018.349917,84.90833333,100.0,4.0264166669999994,0.38575,238.0770188333333 +2016-01-11 10:00:00,0.0,1018.060333,107.81666670000001,100.0,4.906333333,0.42566666700000005,238.07576618333334 +2016-01-11 11:00:00,0.0,1017.587319,127.91666670000001,100.0,5.4215,0.500166667,238.07773463333334 +2016-01-11 12:00:00,0.0,1016.8059509999999,150.35,100.0,6.6995,0.475916667,238.07791360000002 +2016-01-11 13:00:00,0.0,1015.783167,170.91666669999998,99.78333333,6.996083333,0.9148333329999999,238.07773465 +2016-01-11 14:00:00,0.0,1015.27482,171.1,96.19166667,7.226166667,1.020583333,238.07827151666666 +2016-01-11 15:00:00,0.0,1014.704042,89.05,96.73333333,7.7205,0.6104166670000001,238.0797031666667 +2016-01-11 16:00:00,0.0,1014.095653,26.06308333,99.21666667,7.6385,0.313166667,238.08006108333333 +2016-01-11 17:00:00,0.0,1013.731208,0.474,100.0,6.3475,0.08641666699999999,238.0827453333333 +2016-01-11 18:00:00,0.0,1013.652049,0.0,100.0,4.96625,0.236416667,238.08399801666667 +2016-01-11 19:00:00,0.0,1013.43741,0.0,100.0,4.070333333,0.26625,238.08578758333337 +2016-01-11 20:00:00,0.0,1013.300042,0.0,100.0,4.84325,0.13699999999999998,238.08721920000002 +2016-01-11 21:00:00,0.0,1013.227042,0.0,100.0,5.5345,0.197333333,238.09008245000004 +2016-01-11 22:00:00,0.0,1013.006201,0.0,100.0,6.14675,0.257166667,238.09366149999997 +2016-01-11 23:00:00,0.0,1012.889549,0.0,100.0,6.543583333,0.262166667,238.09688265 +2016-02-11 00:00:00,0.0,1013.210583,0.0,100.0,7.016,0.7416666670000001,238.18796989999998 +2016-02-11 01:00:00,0.0,1013.656292,0.0,100.0,7.135833333,0.29875,238.18743306666667 +2016-02-11 02:00:00,0.0,1013.820875,0.0,100.0,7.057833333,0.258083333,238.18707515000003 +2016-02-11 03:00:00,0.0,1013.9,0.0,97.5,6.811083332999999,0.42458333299999995,238.1854645666667 +2016-02-11 04:00:00,0.0,1013.758208,0.0,96.40833333,5.9138333329999995,0.47575,238.18582246666665 +2016-02-11 05:00:00,0.0,1013.433382,0.0,98.14166667,4.2866666669999995,0.254416667,238.18528561666668 +2016-02-11 06:00:00,2.439976992,1013.62091,0.0,97.45,4.288833333,0.18475,238.18456979999996 +2016-02-11 07:00:00,0.0,1013.725007,9.243916667,99.06666667,3.7605,0.140666667,238.18403295 +2016-02-11 08:00:00,0.0,1013.995875,40.635,97.73333333,6.110416667000001,0.605666667,238.183854 +2016-02-11 09:00:00,2.715575064,1014.108375,58.83083333,96.3,7.466083332999999,1.3719999999999999,238.1818855 +2016-02-11 10:00:00,16.86478109,1014.237583,70.02333333,97.43333333,7.53175,1.347166667,238.17884330000004 +2016-02-11 11:00:00,0.0,1014.053993,94.535,96.925,8.14075,1.047,238.17902225 +2016-02-11 12:00:00,2.7074017439999998,1013.827042,121.9108333,94.34166667,8.198833333,1.37775,238.17794855 +2016-02-11 13:00:00,0.0,1013.6645,97.40666667,91.525,8.462166667,1.3795,238.17580108333334 +2016-02-11 14:00:00,0.0,1013.445875,109.39166670000002,91.81666667,8.40825,0.9520000000000001,238.17544316666667 +2016-02-11 15:00:00,0.0,1013.564542,128.71666670000002,85.04166667,8.796666667,1.083583333,238.17311676666668 +2016-02-11 16:00:00,0.0,1013.460458,24.18608333,91.41666667,7.354416667000001,0.954583333,238.17293785 +2016-02-11 17:00:00,0.0,1013.577167,0.698666667,95.325,6.051,0.663333333,238.17186411666668 +2016-02-11 18:00:00,0.0,1014.212632,0.0,96.08333333,5.538333333,0.845916667,238.17204306666665 +2016-02-11 19:00:00,0.0,1014.354208,0.0,97.54166667,4.42,0.113,238.17222201666667 +2016-02-11 20:00:00,0.0,1014.687632,0.0,96.05833333,5.164666667,0.718666667,238.1695377 +2016-02-11 21:00:00,0.0,1015.039667,0.0,96.54166667,5.538333333,0.75375,238.1673903 +2016-02-11 22:00:00,0.0,1015.2833400000001,0.0,96.61666667,5.784583333,0.97275,238.16667448333337 +2016-02-11 23:00:00,0.0,1015.539667,0.0,97.31666667,5.86675,0.640833333,238.1654218 +2016-03-11 00:00:00,0.0,1015.537458,0.0,98.38333333,4.954333333,0.36216666700000005,238.19499476666667 +2016-03-11 01:00:00,0.0,1015.802215,0.0,99.79166667,2.9285,0.161833333,238.19415891666668 +2016-03-11 02:00:00,0.0,1015.96675,0.0,100.0,3.021083333,0.394583333,238.19624851666666 +2016-03-11 03:00:00,0.0,1016.110417,0.0,100.0,2.845416667,0.204916667,238.19520371666667 +2016-03-11 04:00:00,0.0,1016.237542,0.0,100.0,3.367416667,0.639916667,238.19123345 +2016-03-11 05:00:00,0.0,1016.62509,0.0,100.0,3.254166667,0.8465,238.19081555 +2016-03-11 06:00:00,0.0,1016.858451,0.0,100.0,2.583333333,0.5488333329999999,238.188099 +2016-03-11 07:00:00,0.0,1017.2875970000001,3.6556666669999998,100.0,3.421166667,0.312666667,238.18830798333332 +2016-03-11 08:00:00,0.0,1017.78975,27.615,100.0,4.4535,0.141833333,238.18600941666668 +2016-03-11 09:00:00,0.0,1018.102215,65.71416667,98.86666667,6.160416667000001,0.8390833329999999,238.18454666666665 +2016-03-11 10:00:00,0.0,1018.53759,92.275,96.48333333,7.108916667000001,0.869166667,238.18621836666668 +2016-03-11 11:00:00,0.0,1018.58116,142.1,92.45,7.9749166670000005,1.056333333,238.18350186666666 +2016-03-11 12:00:00,0.0,1018.195701,126.78333329999998,87.79166667,8.6375,0.726583333,238.18538253333335 +2016-03-11 13:00:00,0.0,1017.812375,58.44333333,87.91666667,8.2725,0.7625,238.1853825166667 +2016-03-11 14:00:00,2.8556553360000003,1017.335375,103.92833329999999,84.95833333,8.631666667000001,1.198083333,238.18141225000002 +2016-03-11 15:00:00,0.0,1017.4019999999999,99.22,81.1675,9.41,1.04575,238.1832929 +2016-03-11 16:00:00,0.0,1017.193736,20.99633333,84.58333333,8.13325,0.40399999999999997,238.18517356666663 +2016-03-11 17:00:00,0.0,1017.066674,0.46333333299999996,97.00833333,5.537583333,0.42675,238.18391979999998 +2016-03-11 18:00:00,0.0,1017.035375,0.0,99.975,5.0955,0.22016666699999998,238.18412876666665 +2016-03-11 19:00:00,0.0,1016.779076,0.0,100.0,4.68925,0.150583333,238.18412876666665 +2016-03-11 20:00:00,0.0,1016.660465,0.0,100.0,3.248333333,0.05875,238.18496458333334 +2016-03-11 21:00:00,0.0,1016.831201,0.0,100.0,2.735083333,0.05825,238.18162123333335 +2016-03-11 22:00:00,0.0,1016.476958,0.0,100.0,2.136,0.070416667,238.18120331666668 +2016-03-11 23:00:00,0.0,1015.906118,0.0,100.0,1.319,0.08475,238.18308395 +2016-04-11 00:00:00,0.0,1015.554035,0.0,100.0,0.97275,0.12766666699999998,238.20293530000004 +2016-04-11 01:00:00,0.0,1014.922785,0.0,100.0,0.46566666700000003,0.11425,238.20168151666667 +2016-04-11 02:00:00,0.0,1014.33525,0.0,100.0,-0.163916667,0.138416667,238.20314426666667 +2016-04-11 03:00:00,0.0,1014.041618,0.0,100.0,-0.38883333299999995,0.071583333,238.20398011666668 +2016-04-11 04:00:00,0.0,1013.816625,0.0,100.0,0.5810833329999999,0.16016666699999998,238.20293531666667 +2016-04-11 05:00:00,0.0,1013.664417,0.0,100.0,1.001833333,0.092416667,238.20230840000002 +2016-04-11 06:00:00,0.0,1013.006118,0.0,100.0,1.5535833330000002,0.074833333,238.20000981666666 +2016-04-11 07:00:00,0.0,1012.73741,2.526916667,100.0,1.8260833330000001,0.10208333300000001,238.1977112333333 +2016-04-11 08:00:00,0.0,1012.5812990000001,21.6745,100.0,2.140916667,0.26325,238.1962485 +2016-04-11 09:00:00,0.0,1012.2539449999999,41.09666667,100.0,2.687083333,0.301666667,238.1926962 +2016-04-11 10:00:00,0.0,1011.5415,65.88833333,100.0,3.2141666669999998,0.9348333329999999,238.1924872 +2016-04-11 11:00:00,0.0,1011.151993,76.2,100.0,3.862916667,1.258333333,238.19123346666666 +2016-04-11 12:00:00,0.0,1010.514368,121.86666670000001,98.65,5.219833333,0.719833333,238.19206929999999 +2016-04-11 13:00:00,0.0,1009.841451,97.3,93.71666667,6.3106666670000005,0.983083333,238.1924872333333 +2016-04-11 14:00:00,0.0,1009.0977849999999,66.77916667,91.275,6.214583332999999,1.32175,238.18956173333333 +2016-04-11 15:00:00,0.0,1008.5102919999999,70.92833333,89.68333333,6.361666667000001,1.555,238.19102450000003 +2016-04-11 16:00:00,0.0,1007.8080689999999,14.16216667,92.475,5.85325,1.684333333,238.19081553333334 +2016-04-11 17:00:00,0.0,1007.633424,0.12733333300000002,96.00833333,5.438333332999999,1.494666667,238.1922782833333 +2016-04-11 18:00:00,7.903559184,1007.274694,0.0,99.50833333,5.155916667,0.73875,238.19311411666664 +2016-04-11 19:00:00,0.0,1006.389326,0.0,100.0,5.041166667,1.387666667,238.19332308333333 +2016-04-11 20:00:00,0.0,1005.4727429999999,0.0,100.0,4.92325,0.9178333329999999,238.19415893333334 +2016-04-11 21:00:00,0.0,1005.008243,0.0,100.0,5.130666667,0.519833333,238.1954127 +2016-04-11 22:00:00,0.0,1004.460201,0.0,100.0,4.84025,0.078916667,238.1958306 +2016-04-11 23:00:00,2.4050227680000003,1003.783118,0.0,100.0,5.0054166669999995,0.025666667,238.1958306 +2016-05-11 00:00:00,0.0,1003.087326,0.0,100.0,5.348083333,1.577833333,238.08942560000003 +2016-05-11 01:00:00,3.394410648,1002.24141,0.0,100.0,5.587000000000001,2.594416667,238.09145318333333 +2016-05-11 02:00:00,0.0,1001.418576,0.0,100.0,5.5755,0.837583333,238.0909463 +2016-05-11 03:00:00,0.0,1000.7936179999999,0.0,100.0,5.497916667,0.39075,238.09212901666663 +2016-05-11 04:00:00,4.8968186639999995,1000.17275,0.0,100.0,5.535,0.2115,238.0929738166666 +2016-05-11 05:00:00,0.0,999.7039027999999,0.0,100.0,5.549083333,0.268916667,238.09246695000002 +2016-05-11 06:00:00,0.0,998.8727917000001,0.0,99.20833333,5.640916667000001,0.254083333,238.08976355000001 +2016-05-11 07:00:00,0.0,998.5165764000001,2.014333333,99.31666667,5.902083332999999,0.622583333,238.08621530000005 +2016-05-11 08:00:00,0.0,998.0082014000001,14.1975,100.0,6.02575,0.58725,238.08773600000004 +2016-05-11 09:00:00,0.0,997.727,24.8,100.0,6.612333333,0.6829999999999999,238.08672219999997 +2016-05-11 10:00:00,2.430876192,997.4999582999999,31.80666667,100.0,7.1645,0.48775,238.08486358333334 +2016-05-11 11:00:00,33.65674387,997.1497847,24.37083333,100.0,7.3281666670000005,0.033416667000000004,238.0821602 +2016-05-11 12:00:00,33.87834799,996.3957014,39.12,100.0,7.38975,0.11675,238.08030158333335 +2016-05-11 13:00:00,14.848252800000003,996.1499582999999,44.60666667,100.0,7.5115,0.42108333299999995,238.08131536666664 +2016-05-11 14:00:00,7.5432069120000005,995.8416667000001,49.95333333,100.0,7.474166667,0.533083333,238.08013261666667 +2016-05-11 15:00:00,0.0,995.7478264,24.33191667,100.0,7.422999999999999,0.47366666700000004,238.08165328333334 +2016-05-11 16:00:00,2.482703688,995.7771736,8.455,100.0,7.182416667000001,0.29641666699999997,238.07979469999995 +2016-05-11 17:00:00,0.0,995.9000832999999,0.5830833329999999,100.0,6.14875,0.075333333,238.08182225 +2016-05-11 18:00:00,0.0,996.2249582999999,0.0,100.0,4.939916667,0.07275,238.0816533166667 +2016-05-11 19:00:00,0.0,996.1249582999999,0.0,100.0,4.367166667,0.35425,238.08148434999998 +2016-05-11 20:00:00,0.0,996.2668402999999,0.0,100.0,3.532,0.375666667,238.08384980000002 +2016-05-11 21:00:00,0.0,996.55,0.0,100.0,3.29975,0.3085,238.08621533333334 +2016-05-11 22:00:00,0.0,996.7375417000002,0.0,100.0,3.046583333,0.316416667,238.08621531666668 +2016-05-11 23:00:00,0.0,996.7000417000002,0.0,99.875,3.14275,0.29975,238.08689116666667 +2016-06-11 00:00:00,2.4673486319999998,996.7874167000001,0.0,100.0,2.301916667,0.11475,238.04515723333336 +2016-06-11 01:00:00,0.0,996.4561597000001,0.0,99.79166667,2.1709166669999997,0.24325,238.04802958333335 +2016-06-11 02:00:00,0.0,996.45,0.0,98.875,2.81775,0.475,238.04955026666664 +2016-06-11 03:00:00,0.0,995.9748332999999,0.0,99.30833333,1.690916667,0.261333333,238.05140886666666 +2016-06-11 04:00:00,0.0,995.8375417000001,0.0,99.96666667,0.71375,0.224583333,238.05174678333333 +2016-06-11 05:00:00,0.0,995.925,0.0,100.0,1.51825,0.288166667,238.05174678333333 +2016-06-11 06:00:00,0.0,995.8749582999999,0.0,100.0,1.402333333,0.091916667,238.05191578333336 +2016-06-11 07:00:00,2.39248308,996.1565486,1.2724166670000001,99.99166667,0.829416667,0.2195,238.05157785000003 +2016-06-11 08:00:00,0.0,996.5187082999998,24.72408333,99.225,3.960083333,2.224333333,238.05140888333335 +2016-06-11 09:00:00,0.0,996.8250832999998,57.18166667,97.64166667,4.875916667,1.50975,238.05022611666666 +2016-06-11 10:00:00,0.0,997.070875,104.98166670000002,95.21666667,5.2985,2.125916667,238.04633995000003 +2016-06-11 11:00:00,0.0,996.9874167000002,146.675,90.23333333,6.374,1.84625,238.04498825 +2016-06-11 12:00:00,0.0,996.5811181,125.59166670000002,88.46666667,6.946083333,1.6245,238.04228483333338 +2016-06-11 13:00:00,0.0,996.1644514000001,122.15,82.55833333,7.050833333,1.7369999999999999,238.03941245000001 +2016-06-11 14:00:00,0.0,995.9062985999999,45.4775,82.11666667,6.682,1.728666667,238.03670905 +2016-06-11 15:00:00,0.0,996.2544236,22.66916667,83.90833333,6.369666667000001,2.0445,238.036878 +2016-06-11 16:00:00,0.0,996.6604167000002,4.485,85.26666667,6.06175,1.8001666669999998,238.03637111666663 +2016-06-11 17:00:00,0.0,996.9667082999998,0.16066666699999999,86.04166667,5.861833333,2.261166667,238.03518838333332 +2016-06-11 18:00:00,0.0,997.2333332999999,0.0,86.64166667,5.367999999999999,1.190833333,238.0341746 +2016-06-11 19:00:00,0.0,997.2479652999999,0.0,87.18333333,5.015,1.32125,238.0363711 +2016-06-11 20:00:00,0.0,997.3209167000001,0.0,89.625,4.6443333330000005,1.1640000000000001,238.03822970000002 +2016-06-11 21:00:00,0.0,997.6,0.0,90.95833333,4.578666667,0.902416667,238.04093313333337 +2016-06-11 22:00:00,0.0,997.6667569,0.0,90.35,4.606083333,0.873166667,238.0427917166667 +2016-06-11 23:00:00,0.0,997.9625832999999,0.0,89.89166667,4.521,0.639833333,238.04414345 +2016-07-11 00:00:00,0.0,998.4021667000002,0.0,91.29166667,4.23375,0.40533333299999996,238.00337975000002 +2016-07-11 01:00:00,5.22364056,998.6605486,0.0,92.53333333,4.018,0.5994166670000001,238.00417571666665 +2016-07-11 02:00:00,24.51507869,999.0125832999998,0.0,96.0,3.570416667,0.208083333,238.00616565000004 +2016-07-11 03:00:00,17.1820753,999.2187985999999,0.0,98.15833333,3.3530833330000003,0.24925,238.0041757166667 +2016-07-11 04:00:00,24.50320486,999.3584167000001,0.0,99.01666667,3.112916667,0.282,238.00696161666667 +2016-07-11 05:00:00,4.81336956,999.777125,0.0,98.2,3.0045833330000002,0.052833332999999996,238.00815558333338 +2016-07-11 06:00:00,4.887484464,999.9396320000001,0.0,98.70833333,2.992666667,0.165083333,238.00755861666667 +2016-07-11 07:00:00,2.4050227680000003,1000.325167,1.03225,99.44166667,3.0306666669999998,0.060083332999999996,238.00915053333335 +2016-07-11 08:00:00,2.42646768,1000.881424,15.10566667,99.91666667,3.201166667,0.094833333,238.00915053333335 +2016-07-11 09:00:00,0.0,1001.45434,40.96916667,99.41666667,3.874333333,0.37425,238.0077576 +2016-07-11 10:00:00,0.0,1002.075132,51.5975,98.04166667,4.162666667,0.7466666670000001,238.00397673333336 +2016-07-11 11:00:00,2.678988936,1002.362542,54.28833333,98.55833333,4.042666667,1.304833333,238.00039483333333 +2016-07-11 12:00:00,0.0,1002.641708,79.35583333,97.71666667,4.357,1.3924166669999998,237.99880288333338 +2016-07-11 13:00:00,2.801292984,1002.683382,83.31583333,95.18333333,4.73725,1.2455,237.99343008333332 +2016-07-11 14:00:00,3.0614711760000004,1002.666667,57.64416667,95.675,4.579416667,1.643,237.98785825000002 +2016-07-11 15:00:00,0.0,1002.835417,38.165,96.40833333,4.57725,1.0856666670000001,237.9868633 +2016-07-11 16:00:00,2.618540112,1003.025083,3.4853333330000003,98.0,4.2015,0.6073333329999999,237.98746028333335 +2016-07-11 17:00:00,2.421557784,1003.3167990000001,0.15783333300000002,98.81666667,3.960083333,0.633916667,237.98348041666668 +2016-07-11 18:00:00,0.0,1003.6375419999999,0.0,99.375,3.729166667,1.0008333329999999,237.98188846666667 +2016-07-11 19:00:00,0.0,1003.65,0.0,99.125,3.748416667,1.048666667,237.98109248333336 +2016-07-11 20:00:00,0.0,1003.912583,0.0,97.96666667,3.816833333,0.997833333,237.98069448333334 +2016-07-11 21:00:00,0.0,1004.08125,0.0,98.05,3.6928333330000003,0.7785,237.98427638333337 +2016-07-11 22:00:00,0.0,1003.925,0.0,98.38333333,3.60375,0.70275,237.9850723666667 +2016-07-11 23:00:00,2.531905224,1003.65825,0.0,99.16666667,3.347833333,0.57175,237.98586831666668 +2016-08-11 00:00:00,2.691587808,1003.474868,0.0,99.54166667,3.160333333,0.49725,237.94169180000006 +2016-08-11 01:00:00,0.0,1003.199958,0.0,99.85833333,2.964333333,0.7124166670000001,237.94328375000006 +2016-08-11 02:00:00,2.581151304,1003.124958,0.0,99.80833333,3.254916667,0.478416667,237.94706461666667 +2016-08-11 03:00:00,8.221947816,1002.8332429999999,0.0,99.775,3.213916667,0.933583333,237.95044751666669 +2016-08-11 04:00:00,16.63984826,1002.5625,0.0,99.9,2.5059166669999997,1.152916667,237.9516414666667 +2016-08-11 05:00:00,5.331406536,1002.474917,0.0,100.0,2.326083333,1.289416667,237.95303441666667 +2016-08-11 06:00:00,13.344114600000001,1002.412583,0.0,100.0,2.090666667,1.1105,237.95243743333333 +2016-08-11 07:00:00,2.639681616,1002.858424,0.832666667,100.0,2.071416667,1.0364166670000001,237.95203948333332 +2016-08-11 08:00:00,0.0,1003.32934,14.067,100.0,2.389333333,0.806916667,237.95164146666664 +2016-08-11 09:00:00,0.0,1003.8647990000001,47.50916667,99.70833333,2.744916667,0.757166667,237.95064650000003 +2016-08-11 10:00:00,0.0,1004.447958,65.23583333,97.08333333,3.195583333,0.722666667,237.95164148333333 +2016-08-11 11:00:00,0.0,1004.574958,109.62083329999999,95.75,3.767583333,0.72975,237.94885556666668 +2016-08-11 12:00:00,0.0,1004.425,103.3641667,91.675,4.383416667,0.839833333,237.94407973333338 +2016-08-11 13:00:00,3.169311936,1004.335285,70.51666667,94.89166667,3.7195,1.26275,237.9395028666667 +2016-08-11 14:00:00,0.0,1004.083507,99.44583333,94.95,4.19275,1.5210833330000002,237.935921 +2016-08-11 15:00:00,14.01859757,1004.5125419999999,70.3525,98.45,2.1795,1.229666667,237.93074718333332 +2016-08-11 16:00:00,0.0,1004.848007,15.68383333,99.15,1.4398333330000002,0.1455,237.92776228333332 +2016-08-11 17:00:00,0.0,1005.3168400000001,0.33425,100.0,-0.046166667,0.143083333,237.9233844 +2016-08-11 18:00:00,0.0,1005.695833,0.0,100.0,-0.79875,0.13675,237.91980254999999 +2016-08-11 19:00:00,0.0,1005.685458,0.0,100.0,-1.1278333329999999,0.07591666700000001,237.91980253333335 +2016-08-11 20:00:00,0.0,1005.724958,0.0,100.0,-1.6145,0.111416667,237.92139448333333 +2016-08-11 21:00:00,0.0,1005.9355419999999,0.0,100.0,-1.837083333,0.12708333300000002,237.92378241666668 +2016-08-11 22:00:00,0.0,1005.79575,0.0,100.0,-1.837166667,0.02,237.92517538333334 +2016-08-11 23:00:00,0.0,1005.37691,0.0,100.0,-1.8114166669999998,0.133833333,237.92816026666665 +2016-09-11 00:00:00,0.0,1005.1604169999999,0.0,100.0,-1.514083333,0.02975,237.8237594 +2016-09-11 01:00:00,0.0,1004.853993,0.0,100.0,-0.877,0.39125,237.82754326666668 +2016-09-11 02:00:00,0.0,1004.070576,0.0,100.0,-0.9039166670000001,0.38091666700000004,237.82870278333337 +2016-09-11 03:00:00,0.0,1003.420701,0.0,100.0,-0.7395,0.11233333300000001,237.83123538333334 +2016-09-11 04:00:00,0.0,1002.797785,0.0,100.0,-0.2015,0.238083333,237.8345019333333 +2016-09-11 05:00:00,0.0,1002.1518679999999,0.0,100.0,-0.190833333,0.360833333,237.83530554999996 +2016-09-11 06:00:00,0.0,1001.599917,0.0,100.0,0.734833333,1.76325,237.83770526666663 +2016-09-11 07:00:00,0.0,1001.39366,0.67925,100.0,0.87175,1.32,237.83844081666666 +2016-09-11 08:00:00,0.0,1001.062417,4.093583333,100.0,1.166833333,1.085416667,237.84025366666665 +2016-09-11 09:00:00,13.10894294,1000.822875,26.55141667,100.0,1.5915,1.50375,237.8393678 +2016-09-11 10:00:00,2.496806832,1000.797917,57.44416667,100.0,2.1436666669999997,1.116416667,237.8372433333333 +2016-09-11 11:00:00,3.17497416,1000.5039929999999,58.32666667,100.0,2.386083333,1.8259166669999998,237.83097118333333 +2016-09-11 12:00:00,3.1561679760000003,999.7414931,68.62916667,99.73333333,2.66225,2.5943333330000002,237.8232611 +2016-09-11 13:00:00,0.0,999.1310764000001,62.655,99.55833333,3.155916667,2.01,237.81714398333335 +2016-09-11 14:00:00,0.0,998.6415764000001,44.29583333,97.875,3.512,1.9796666669999998,237.81397865 +2016-09-11 15:00:00,0.0,998.0976597000001,19.75083333,99.38333333,3.55275,1.788,237.81371606666664 +2016-09-11 16:00:00,0.0,997.4749167000001,3.708583333,99.65833333,3.475,1.5315,237.81413526666665 +2016-09-11 17:00:00,9.581209632,997.0998681,0.05825,99.85833333,3.169083333,2.3615,237.81255495000002 +2016-09-11 18:00:00,11.09035339,996.7999167000002,0.0,99.95833333,3.119916667,3.199083333,237.8130153 +2016-09-11 19:00:00,14.044573699999999,996.2206181,0.0,100.0,3.104083333,2.79475,237.81343923333336 +2016-09-11 20:00:00,10.42684272,995.7437082999999,0.0,100.0,3.12725,2.743666667,237.81572979999999 +2016-09-11 21:00:00,20.34457658,995.2039445,0.0,100.0,3.0135,2.759083333,237.81837626666666 +2016-09-11 22:00:00,7.050544488,994.702,0.0,100.0,2.788916667,2.703083333,237.82033463333332 +2016-09-11 23:00:00,3.1195930080000003,994.6000902999999,0.0,100.0,2.255833333,2.1465,237.82119518333332 +2016-10-11 00:00:00,12.51292322,995.1751667000001,0.0,100.0,2.0300833330000003,0.525333333,237.9650765 +2016-10-11 01:00:00,2.7159170639999997,995.8315139,0.0,100.0,2.136583333,1.31925,237.96552258333335 +2016-10-11 02:00:00,5.375822808,996.76475,0.0,100.0,1.845,1.6893333330000002,237.9661933333334 +2016-10-11 03:00:00,13.128976300000001,997.2709236,0.0,100.0,1.3535833330000002,1.4059166669999998,237.96599874999995 +2016-10-11 04:00:00,5.053408056,998.0211319,0.0,100.0,1.234166667,0.97575,237.96627715 +2016-10-11 05:00:00,7.492953624,998.7314236,0.0,100.0,1.158166667,0.7260833329999999,237.96546246666665 +2016-10-11 06:00:00,2.533610328,999.6669722000001,0.0,100.0,1.4513333330000002,0.843583333,237.96734176666664 +2016-10-11 07:00:00,0.0,1000.8483470000001,0.8995833329999999,100.0,1.7229166669999998,1.2195833329999999,237.9677752 +2016-10-11 08:00:00,0.0,1001.921007,12.00266667,100.0,2.032333333,0.966916667,237.96680236666668 +2016-10-11 09:00:00,0.0,1002.475125,36.10333333,100.0,2.503083333,0.4475,237.9639154166667 +2016-10-11 10:00:00,0.0,1002.8688400000001,37.68166667,100.0,2.97575,0.35908333299999995,237.9634962166667 +2016-10-11 11:00:00,2.436422976,1003.024958,52.99083333,100.0,3.2439999999999998,0.46566666700000003,237.96342343333333 +2016-10-11 12:00:00,0.0,1002.833333,72.6325,99.775,4.132583333,0.37891666700000004,237.96348195 +2016-10-11 13:00:00,0.0,1002.858292,38.70333333,98.40833333,5.165166667,0.2985,237.96230823333335 +2016-10-11 14:00:00,0.0,1002.726993,39.00583333,97.84166667,5.73575,0.486333333,237.96094778333335 +2016-10-11 15:00:00,0.0,1002.727125,32.3325,99.31666667,5.849,0.38325,237.96150621666666 +2016-10-11 16:00:00,0.0,1002.656208,20.85133333,99.13333333,5.442916667,0.3775,237.96110441666667 +2016-10-11 17:00:00,0.0,1002.6292080000001,0.11800000000000001,98.98333333,4.154833333,0.166333333,237.96031823333337 +2016-10-11 18:00:00,0.0,1002.7917570000001,0.0,96.89166667,4.241666667,0.124666667,237.96201399999995 +2016-10-11 19:00:00,0.0,1002.9,0.0,100.0,3.62475,0.018083333,237.96168654999997 +2016-10-11 20:00:00,0.0,1002.829125,0.0,100.0,3.7915,0.2105,237.96168809999998 +2016-10-11 21:00:00,0.0,1002.722868,0.0,100.0,3.07125,0.168083333,237.96267678333334 +2016-10-11 22:00:00,2.403358248,1002.399917,0.0,100.0,1.99925,0.122083333,237.9620836 +2016-10-11 23:00:00,2.4050227680000003,1002.275,0.0,100.0,1.945,0.047833333,237.96356898333332 +2016-11-11 00:00:00,5.11564248,1002.195792,0.0,100.0,3.3643333330000003,0.8211666670000001,238.073818 +2016-11-11 01:00:00,21.83898646,1002.2625419999999,0.0,100.0,3.976083333,0.2575,238.07165078333333 +2016-11-11 02:00:00,14.49114516,1002.4,0.0,100.0,4.05325,0.12708333300000002,238.07124425000003 +2016-11-11 03:00:00,21.73599271,1002.3626320000001,0.0,100.0,4.022916667,0.091833333,238.07175995000003 +2016-11-11 04:00:00,44.02699056,1002.8563330000001,0.0,100.0,4.049166667,0.2645,238.07595193333336 +2016-11-11 05:00:00,45.10132812,1003.4585490000001,0.0,100.0,3.9930000000000003,0.451166667,238.10258919999998 +2016-11-11 06:00:00,56.31745488,1004.4232220000001,0.0,100.0,3.522,1.1514166670000001,238.14267715000003 +2016-11-11 07:00:00,26.14100369,1005.4753890000001,0.29883333300000003,100.0,3.4828333330000003,0.9325,238.19101776666665 +2016-11-11 08:00:00,15.17732988,1006.7878400000001,4.108833333,100.0,3.463916667,0.550666667,238.21281921666665 +2016-11-11 09:00:00,8.108288783999999,1008.1858050000001,10.5725,100.0,3.854833333,1.150166667,238.21428245 +2016-11-11 10:00:00,0.0,1009.5586810000001,14.71883333,100.0,4.3595,2.056,238.2106868666667 +2016-11-11 11:00:00,0.0,1010.812806,38.87083333,100.0,4.713,2.5445833330000003,238.20439729999998 +2016-11-11 12:00:00,0.0,1011.631465,32.39166667,99.44166667,4.696833333,3.060083333,238.19611933333337 +2016-11-11 13:00:00,0.0,1012.6148400000001,70.44416667,97.16666667,4.81825,3.696333333,238.1855856 +2016-11-11 14:00:00,0.0,1013.346049,27.15541667,96.175,4.443833333,3.255416667,238.17704505000006 +2016-11-11 15:00:00,0.0,1014.423264,14.3545,95.83333333,4.14575,3.3096666669999997,238.1682925 +2016-11-11 16:00:00,0.0,1015.427264,3.008083333,95.975,3.98425,2.508333333,238.16140976666668 +2016-11-11 17:00:00,0.0,1016.227382,0.05025,96.11666667,3.753,1.8048333330000002,238.15587316666668 +2016-11-11 18:00:00,0.0,1017.252382,0.0,96.25,3.506166667,2.26475,238.14809508333335 +2016-11-11 19:00:00,0.0,1018.125174,0.0,90.15,2.982583333,2.35525,238.1431011 +2016-11-11 20:00:00,0.0,1018.8168820000001,0.0,91.25,2.417916667,1.90375,238.13877781666667 +2016-11-11 21:00:00,0.0,1019.475132,0.0,91.93333333,2.135583333,1.318,238.13476935000003 +2016-11-11 22:00:00,0.0,1019.739625,0.0,92.13333333,2.148416667,1.9889166669999998,238.13135406666666 +2016-11-11 23:00:00,0.0,1019.945833,0.0,92.675,2.02775,1.595166667,238.12701971666664 +2016-12-11 00:00:00,0.0,1020.114625,0.0,94.83333333,1.594416667,1.79925,238.03235695000004 +2016-12-11 01:00:00,0.0,1020.1208330000001,0.0,97.28333333,1.3093333329999999,1.222583333,238.0329359333333 +2016-12-11 02:00:00,0.0,1020.202049,0.0,96.90833333,0.844916667,1.715333333,238.03249298333333 +2016-12-11 03:00:00,0.0,1020.2605,0.0,97.45,0.7785,0.772,238.03154703333334 +2016-12-11 04:00:00,0.0,1020.314625,0.0,98.8,0.773833333,0.5588333329999999,238.03178428333334 +2016-12-11 05:00:00,0.0,1020.383375,0.0,98.85,0.7144166670000001,0.4045,238.03078613333335 +2016-12-11 06:00:00,0.0,1020.44166,0.0,98.36666667,0.5900833329999999,0.376,238.03106456666669 +2016-12-11 07:00:00,0.0,1020.500049,0.914666667,98.825,0.554666667,0.43525,238.0309332666667 +2016-12-11 08:00:00,0.0,1020.8146320000001,21.50991667,97.68333333,0.8031666670000001,0.99475,238.02892268333335 +2016-12-11 09:00:00,0.0,1021.023083,70.39666667,93.58333333,1.3866666669999999,1.6993333330000002,238.03109778333328 +2016-12-11 10:00:00,0.0,1021.1894580000001,98.83,88.34083333,2.3209999999999997,1.244166667,238.03267334999998 +2016-12-11 11:00:00,0.0,1020.9332009999999,122.875,73.8925,2.816833333,1.511416667,238.03334719999998 +2016-12-11 12:00:00,0.0,1020.3477849999999,249.43333330000002,69.915,3.4899166669999997,1.1754166670000001,238.03270813333333 +2016-12-11 13:00:00,0.0,1020.147875,187.8225,68.145,4.16775,1.2985,238.03464910000002 +2016-12-11 14:00:00,0.0,1019.822875,156.2858333,68.85083333,4.071916667,1.07625,238.03284573333335 +2016-12-11 15:00:00,0.0,1019.706243,56.68666667,77.33083333,3.14075,0.934583333,238.03233004999996 +2016-12-11 16:00:00,0.0,1019.527049,9.651916667,88.74583333,1.4425,0.309333333,238.03371263333338 +2016-12-11 17:00:00,0.0,1019.48125,0.105333333,98.26666667,-1.235333333,0.079416667,238.0345051666667 +2016-12-11 18:00:00,0.0,1019.7812849999999,0.0,100.0,-1.7943333330000002,0.165666667,238.03432325000003 +2016-12-11 19:00:00,0.0,1019.900132,0.0,100.0,-2.17175,0.066083333,238.03349116666664 +2016-12-11 20:00:00,0.0,1020.0979169999999,0.0,100.0,-2.183916667,0.11558333300000001,238.03400051666662 +2016-12-11 21:00:00,0.0,1020.28759,0.0,100.0,-2.318916667,0.00025,238.03599686666666 +2016-12-11 22:00:00,0.0,1020.343701,0.0,100.0,-2.414666667,0.00041666699999999996,238.03565200000003 +2016-12-11 23:00:00,0.0,1020.320833,0.0,100.0,-1.992666667,0.034416667000000005,238.03627051666663 +2016-11-13 00:00:00,0.0,1020.162417,0.0,99.29166667,-1.7325,0.0035833329999999997,238.08378065 +2016-11-13 01:00:00,0.0,1019.9561669999999,0.0,98.55,-1.6980000000000002,0.013916666999999999,238.08233325 +2016-11-13 02:00:00,0.0,1019.8979509999999,0.0,98.79166667,-1.705416667,0.051083333,238.0813303333333 +2016-11-13 03:00:00,0.0,1019.756215,0.0,99.58333333,-1.749416667,0.0855,238.08090953333337 +2016-11-13 04:00:00,0.0,1019.929208,0.0,99.36666667,-1.383833333,0.175333333,238.07892901666665 +2016-11-13 05:00:00,0.0,1020.014674,0.0,97.91666667,-1.057833333,0.225583333,238.07837535 +2016-11-13 06:00:00,0.0,1020.277167,0.0,98.55,-1.183166667,0.175666667,238.0771225166667 +2016-11-13 07:00:00,0.0,1020.5583330000001,0.803666667,98.65833333,-0.923583333,0.56025,238.07588866666666 +2016-11-13 08:00:00,0.0,1020.894007,21.99491667,98.075,-0.505416667,0.5389166670000001,238.07580163333333 +2016-11-13 09:00:00,0.0,1021.7918400000001,58.9725,93.31666667,0.7463333329999999,1.0765833329999999,238.07266321666665 +2016-11-13 10:00:00,0.0,1022.145924,101.6975,87.775,1.440083333,1.618916667,238.07277396666666 +2016-11-13 11:00:00,0.0,1022.147826,148.55,84.24166667,2.172166667,1.88525,238.07195928333337 +2016-11-13 12:00:00,0.0,1021.941583,159.6416667,82.31666667,3.031416667,1.9638333330000002,238.07093105 +2016-11-13 13:00:00,0.0,1021.589549,236.075,77.955,4.398833333,2.13725,238.06951845 +2016-11-13 14:00:00,0.0,1021.806285,143.2416667,75.91166667,4.261416667,1.566416667,238.0691752 +2016-11-13 15:00:00,0.0,1022.148132,49.24,78.01833333,3.86875,1.28175,238.06933333333333 +2016-11-13 16:00:00,0.0,1022.733424,7.473583333,81.49166667,3.1505,1.176666667,238.06889833333335 +2016-11-13 17:00:00,0.0,1023.1751320000001,0.08691666699999999,82.44166667,2.490583333,1.2720833329999999,238.06964656666665 +2016-11-13 18:00:00,0.0,1023.79609,0.0,82.75,1.6073333330000001,1.043166667,238.06843958333332 +2016-11-13 19:00:00,0.0,1024.441826,0.0,91.75,-0.864166667,0.01825,238.06902806666665 +2016-11-13 20:00:00,0.0,1025.1480900000001,0.0,99.05,-1.679416667,0.035833332999999995,238.06797136666668 +2016-11-13 21:00:00,0.0,1025.618882,0.0,100.0,-1.334416667,0.252833333,238.07002939999998 +2016-11-13 22:00:00,0.0,1026.237667,0.0,100.0,-2.032083333,0.191083333,238.0683431 +2016-11-13 23:00:00,0.0,1026.522958,0.0,100.0,-3.046916667,0.114166667,238.0694678166667 +2016-11-14 00:00:00,0.0,1026.7625,0.0,100.0,-4.016166667,0.014416667,238.06819914999997 +2016-11-14 01:00:00,0.0,1026.877174,0.0,100.0,-4.375416667,0.1255,238.0699091833333 +2016-11-14 02:00:00,0.0,1027.225083,0.0,100.0,-4.60075,0.143666667,238.0669732 +2016-11-14 03:00:00,0.0,1027.598042,0.0,100.0,-4.81,0.31975,238.06641796666668 +2016-11-14 04:00:00,0.0,1027.77709,0.0,100.0,-5.4875,0.1125,238.06708235 +2016-11-14 05:00:00,0.0,1027.960458,0.0,100.0,-5.919083333,0.027916667000000003,238.06574726666668 +2016-11-14 06:00:00,0.0,1028.045993,0.0,99.93333333,-6.282083332999999,0.09908333300000001,238.06483606666666 +2016-11-14 07:00:00,0.0,1028.877264,1.4490833330000001,99.9,-6.2430833329999995,0.145666667,238.06471585 +2016-11-14 08:00:00,0.0,1029.612674,12.76675,99.94166667,-5.090916667,0.08491666699999999,238.0625534333333 +2016-11-14 09:00:00,0.0,1029.995889,33.0725,100.0,-2.257083333,0.409583333,238.06056501666663 +2016-11-14 10:00:00,2.49554544,1029.993833,160.08333330000002,99.76666667,0.18633333300000002,0.332,238.05787581666667 +2016-11-14 11:00:00,0.0,1030.154014,120.475,93.24166667,2.122416667,0.548416667,238.0555995166667 +2016-11-14 12:00:00,0.0,1029.479069,227.9833333,77.47666667,3.437666667,1.33375,238.05540018333332 +2016-11-14 13:00:00,0.0,1028.9789449999998,218.33333330000002,64.14833333,4.00425,2.158583333,238.05451748333334 +2016-11-14 14:00:00,0.0,1028.456222,168.70833330000002,63.6925,4.032583333,1.839,238.05193586666667 +2016-11-14 15:00:00,0.0,1028.181069,96.28416667,67.43583333,3.383333333,1.41275,238.0544399833333 +2016-11-14 16:00:00,0.0,1027.7228189999998,14.17133333,84.87583333,0.97475,0.273833333,238.05484651666666 +2016-11-14 17:00:00,0.0,1027.4582990000001,0.073333333,93.84166667,-0.5428333329999999,0.20425,238.05789005 +2016-11-14 18:00:00,0.0,1027.506417,0.0,96.04166667,-1.25375,0.014666667,238.05760216666667 +2016-11-14 19:00:00,0.0,1027.691535,0.0,98.14166667,-1.3176666670000001,0.099,238.05683176666665 +2016-11-14 20:00:00,0.0,1027.548049,0.0,98.11666667,-1.07825,0.046583333,238.05430393333333 +2016-11-14 21:00:00,0.0,1027.87075,0.0,98.24166667,-0.6045,0.018583333,238.05188523333334 +2016-11-14 22:00:00,0.0,1027.674958,0.0,98.125,-0.36416666700000005,0.137083333,238.0521304333333 +2016-11-14 23:00:00,0.0,1027.158118,0.0,97.66666667,0.011833333,0.20475,238.05277585 +2016-11-15 00:00:00,0.0,1026.695694,0.0,97.575,0.194833333,0.11491666699999999,238.0509424333333 +2016-11-15 01:00:00,0.0,1026.033125,0.0,98.61666667,0.009666667,0.177666667,238.05250058333334 +2016-11-15 02:00:00,0.0,1025.545792,0.0,97.2,0.406416667,0.2105,238.05157678333333 +2016-11-15 03:00:00,0.0,1025.229083,0.0,94.36666667,0.672583333,1.016416667,238.05012621666665 +2016-11-15 04:00:00,0.0,1024.76866,0.0,90.28333333,0.7935,2.104333333,238.0512351166667 +2016-11-15 05:00:00,0.0,1024.5707009999999,0.0,94.14166667,0.624,2.086583333,238.0494175166667 +2016-11-15 06:00:00,2.6951370960000003,1024.274917,0.0,97.79166667,0.376333333,1.6171666669999998,238.05018946666667 +2016-11-15 07:00:00,0.0,1023.895882,0.36466666700000006,99.825,0.26025,1.73925,238.0489920166667 +2016-11-15 08:00:00,2.608068096,1023.9520349999999,8.312083333,100.0,0.502916667,1.281083333,238.04881166666667 +2016-11-15 09:00:00,7.784999592,1023.9249580000001,17.46166667,100.0,0.84625,1.325166667,238.04854433333333 +2016-11-15 10:00:00,10.48612445,1023.770792,36.62,100.0,1.348333333,1.200166667,238.04755564999996 +2016-11-15 11:00:00,20.95404917,1023.416535,37.13833333,100.0,1.8355833330000002,1.116583333,238.0494966166667 +2016-11-15 12:00:00,16.41261466,1022.733118,39.16166667,100.0,2.37875,1.36975,238.05362371666664 +2016-11-15 13:00:00,0.0,1022.316625,40.545,100.0,2.791083333,1.39375,238.06233671666666 +2016-11-15 14:00:00,0.0,1021.86241,32.955,100.0,3.099416667,0.991083333,238.06665841666668 +2016-11-15 15:00:00,0.0,1021.614542,10.627,100.0,3.09225,0.7898333329999999,238.0715907 +2016-11-15 16:00:00,5.095566312,1021.797826,1.94875,100.0,3.164416667,0.742916667,238.07247023333332 +2016-11-15 17:00:00,0.0,1021.404125,0.014583333,100.0,3.239083333,0.882583333,238.07493955000004 +2016-11-15 18:00:00,0.0,1021.4020830000001,0.0,100.0,3.361583333,0.8916666670000001,238.07702918333337 +2016-11-15 19:00:00,0.0,1020.976958,0.0,100.0,3.4860833330000003,0.719333333,238.0773645666667 +2016-11-15 20:00:00,5.020838184,1020.922958,0.0,100.0,3.656666667,0.39191666700000005,238.07553905 +2016-11-15 21:00:00,4.900887168,1020.714444,0.0,100.0,3.815416667,0.36366666700000005,238.07566561666667 +2016-11-15 22:00:00,0.0,1020.404,0.0,100.0,4.015166667,0.425416667,238.0745836166667 +2016-11-15 23:00:00,2.45799348,1019.985375,0.0,100.0,4.120583333,0.314416667,238.07548845000005 +2016-11-16 00:00:00,2.571894912,1019.7957849999999,0.0,100.0,4.34375,0.48916666700000005,238.07518788333334 +2016-11-16 01:00:00,9.827327184,1019.231083,0.0,100.0,4.47025,0.3565,238.07649135 +2016-11-16 02:00:00,20.05736813,1018.870743,0.0,100.0,4.749416667,0.56425,238.07791819999997 +2016-11-16 03:00:00,9.91434444,1018.3228330000001,0.0,100.0,4.942083333,0.409583333,238.08909418333334 +2016-11-16 04:00:00,2.628730488,1017.6580349999999,0.0,100.0,5.1525,0.6275,238.10092505000003 +2016-11-16 05:00:00,2.50786116,1016.9039449999999,0.0,100.0,5.229833333,0.487833333,238.1106124833333 +2016-11-16 06:00:00,27.16527622,1016.210243,0.0,100.0,5.342333333,0.39666666700000003,238.11599088333332 +2016-11-16 07:00:00,12.55338139,1015.687375,0.204916667,100.0,5.67725,0.474,238.13040336666666 +2016-11-16 08:00:00,7.5566421120000005,1015.395868,5.591,100.0,6.016166667,0.498666667,238.15052643333334 +2016-11-16 09:00:00,17.18831412,1014.987208,24.71166667,100.0,6.5335,0.468083333,238.16309920000003 +2016-11-16 10:00:00,2.5678866,1014.351993,51.745,100.0,7.478916667000001,0.589333333,238.16990603333338 +2016-11-16 11:00:00,0.0,1013.743535,48.85,99.88333333,9.838333333,1.3085,238.17253983333333 +2016-11-16 12:00:00,2.9127727919999997,1013.0226529999999,57.21833333,99.95,10.69833333,2.007833333,238.17248766666668 +2016-11-16 13:00:00,6.819965976000001,1012.418715,56.27083333,100.0,10.68083333,2.576666667,238.16983325 +2016-11-16 14:00:00,20.11563866,1011.8934859999999,52.73333333,100.0,10.8025,2.428416667,238.1656998 +2016-11-16 15:00:00,0.0,1011.477083,28.7525,100.0,10.75666667,2.20525,238.16491835 +2016-11-16 16:00:00,0.0,1011.1540349999999,5.054333333,100.0,10.695,2.273916667,238.1644706666667 +2016-11-16 17:00:00,0.0,1011.006208,0.009416667,100.0,10.72416667,2.59125,238.16158531666665 +2016-11-16 18:00:00,0.0,1010.954208,0.0,100.0,10.785,1.792416667,238.15943081666668 +2016-11-16 19:00:00,2.810562408,1010.685292,0.0,99.99166667,10.69583333,1.318916667,238.15513918333332 +2016-11-16 20:00:00,0.0,1010.429118,0.0,98.825,10.73666667,1.797333333,238.15428023333334 +2016-11-16 21:00:00,0.0,1010.281292,0.0,97.63333333,10.68666667,2.253666667,238.15338171666664 +2016-11-16 22:00:00,0.0,1010.2769999999999,0.0,95.10833333,10.55166667,2.8539999999999996,238.15083015000005 +2016-11-16 23:00:00,0.0,1009.6976599999999,0.0,95.225,9.805833332999999,3.557,238.14978770000002 +2016-11-17 00:00:00,0.0,1009.399993,0.0,95.95833333,9.266666667,2.75575,238.1460687166667 +2016-11-17 01:00:00,0.0,1008.6997849999999,0.0,96.33333333,9.47,3.067416667,238.14417201666666 +2016-11-17 02:00:00,0.0,1008.037333,0.0,96.34166667,9.290833333,3.034833333,238.14264076666663 +2016-11-17 03:00:00,0.0,1007.351868,0.0,94.975,9.205833333,2.9289166669999998,238.14057323333336 +2016-11-17 04:00:00,0.0,1006.851951,0.0,96.66666667,9.300833333,1.4550833330000001,238.13690645 +2016-11-17 05:00:00,0.0,1006.093535,0.0,96.66666667,9.128333332999999,0.9085,238.13381073333335 +2016-11-17 06:00:00,17.4272321,1005.358118,0.0,97.725,9.68,1.7229166669999998,238.1314125833333 +2016-11-17 07:00:00,11.53135219,1004.875,0.256,97.31666667,10.0475,3.000916667,238.12949378333334 +2016-11-17 08:00:00,0.0,1005.087542,7.537833332999999,96.525,10.14666667,2.9635,238.12833586666667 +2016-11-17 09:00:00,0.0,1005.25,41.02416667,95.04166667,10.55666667,3.231666667,238.12840070000001 +2016-11-17 10:00:00,0.0,1005.060375,41.14333333,92.875,10.82333333,3.261,238.12746581666661 +2016-11-17 11:00:00,0.0,1004.693535,71.17916667,91.80833333,11.23,2.7858333330000002,238.12642491666668 +2016-11-17 12:00:00,0.0,1003.88941,64.9375,90.34166667,11.51833333,3.5579166669999998,238.1265341 +2016-11-17 13:00:00,25.96104605,1003.3707009999999,33.38916667,90.41666667,11.24,4.094666667,238.12525591666667 +2016-11-17 14:00:00,0.0,1002.841583,35.84583333,86.1,11.3225,4.329916667,238.12633478333336 +2016-11-17 15:00:00,0.0,1002.672868,16.34666667,88.625,11.02,3.741583333,238.1245250833333 +2016-11-17 16:00:00,3.289927608,1002.335201,2.47525,97.675,9.781666667,1.30625,238.1229732666667 +2016-11-17 17:00:00,0.0,1001.508201,0.0,97.14166667,9.948333332999999,1.009666667,238.12364556666668 +2016-11-17 18:00:00,3.192543024,1000.685201,0.0,93.8,10.69666667,2.137916667,238.12301440000002 +2016-11-17 19:00:00,0.0,1000.604125,0.0,89.425,11.37083333,3.081833333,238.11946783333337 +2016-11-17 20:00:00,0.0,1000.412417,0.0,87.50833333,11.405,2.807416667,238.1167391 +2016-11-17 21:00:00,0.0,999.7665347000001,0.0,86.95833333,11.37916667,2.31675,238.11715195 +2016-11-17 22:00:00,0.0,999.3122430999999,0.0,86.075,11.60333333,2.915166667,238.11701435 +2016-11-17 23:00:00,0.0,998.2893680999999,0.0,86.88333333,11.55333333,2.778833333,238.11726741666666 +2016-11-18 00:00:00,0.0,997.4955277999999,0.0,86.575,11.71083333,2.571333333,238.11592600000003 +2016-11-18 01:00:00,0.0,996.5372431,0.0,86.63333333,12.1275,3.15125,238.11543088333335 +2016-11-18 02:00:00,0.0,995.8477847000001,0.0,87.78333333,11.96583333,2.796583333,238.11585163333336 +2016-11-18 03:00:00,0.0,994.9455277999999,0.0,84.93333333,12.235,2.516333333,238.11455296666665 +2016-11-18 04:00:00,0.0,993.9976597000001,0.0,84.5,12.15333333,2.682416667,238.11316565000004 +2016-11-18 05:00:00,0.0,993.5332917000002,0.0,88.75833333,11.67083333,3.460583333,238.11279863333334 +2016-11-18 06:00:00,0.0,993.1165764000001,0.0,84.75833333,12.46416667,3.6519999999999997,238.11159483333336 +2016-11-18 07:00:00,0.0,992.7249167000001,0.10625,83.80833333,12.58166667,3.774166667,238.10903691666667 +2016-11-18 08:00:00,216.8222539,993.6068125,4.9263333330000005,93.31666667,10.38,4.46775,238.10971238333335 +2016-11-18 09:00:00,39.78316029999999,994.8167986,23.804000000000002,96.53333333,8.207666667,2.345333333,238.1296250833333 +2016-11-18 10:00:00,8.750368992,994.9499097000001,50.385,98.325,8.182916667,2.2465833330000002,238.1498509666667 +2016-11-18 11:00:00,0.0,995.5126736,96.26833333,92.45833333,9.615833333,3.48825,238.15712445 +2016-11-18 12:00:00,0.0,996.0356736,54.34916667,87.70833333,9.581666667,3.711166667,238.1579486166667 +2016-11-18 13:00:00,0.0,996.1875902999999,37.82166667,84.53333333,9.054166667,3.7970833330000002,238.16339974999997 +2016-11-18 14:00:00,0.0,996.7876736,46.7275,82.40833333,9.124166667,4.049916667,238.16467 +2016-11-18 15:00:00,0.0,997.6481319000001,60.15416667,81.10333333,8.999166667,3.949083333,238.16231773333334 +2016-11-18 16:00:00,0.0,998.2521667000001,8.75125,83.63333333,8.440833332999999,2.4105,238.16184478333332 +2016-11-18 17:00:00,0.0,998.7856319,0.0305,80.62666667,7.944916667,1.26225,238.15990540000004 +2016-11-18 18:00:00,0.0,999.4940556,0.0,82.80833333,6.377583333,1.04975,238.1564268333333 +2016-11-18 19:00:00,0.0,1000.5042990000001,0.0,84.05833333,7.4611666670000005,2.447666667,238.15257496666666 +2016-11-18 20:00:00,0.0,1001.116965,0.0,81.355,7.236333332999999,2.696333333,238.15067671666668 +2016-11-18 21:00:00,0.0,1001.779299,0.0,83.48333333,6.58625,1.71175,238.1489667 +2016-11-18 22:00:00,0.0,1002.4417990000001,0.0,87.45,6.0229166670000005,1.213083333,238.14634553333335 +2016-11-18 23:00:00,0.0,1002.9500419999999,0.0,88.74166667,6.28625,1.95375,238.14316438333333 +2016-11-19 00:00:00,0.0,1003.358458,0.0,89.425,6.142166667000001,2.235583333,238.14164420000006 +2016-11-19 01:00:00,0.0,1003.304042,0.0,91.775,4.5105833330000005,0.912166667,238.14168850000001 +2016-11-19 02:00:00,0.0,1003.0375,0.0,99.59166667,1.7754166669999998,0.35016666700000004,238.13902931666667 +2016-11-19 03:00:00,0.0,1002.7622849999999,0.0,100.0,1.5468333330000001,0.71475,238.13838548333334 +2016-11-19 04:00:00,0.0,1002.099951,0.0,100.0,3.198083333,1.82175,238.13666601666668 +2016-11-19 05:00:00,0.0,1002.2230490000001,0.0,100.0,3.797583333,1.362333333,238.13172263333334 +2016-11-19 06:00:00,0.0,1002.312458,0.0,100.0,3.862083333,0.554666667,238.12865538333335 +2016-11-19 07:00:00,0.0,1002.262458,0.400083333,100.0,4.038833333,0.5720833329999999,238.12798151666667 +2016-11-19 08:00:00,0.0,1002.183375,21.95208333,100.0,3.3410833330000003,0.35766666700000005,238.12665113333333 +2016-11-19 09:00:00,2.407745568,1002.883465,20.9775,100.0,4.607833333,0.493166667,238.12302231666663 +2016-11-19 10:00:00,2.564755008,1003.008549,36.4525,97.28333333,6.0165,0.796416667,238.12117783333335 +2016-11-19 11:00:00,0.0,1003.399826,73.5225,92.375,6.85225,1.86475,238.11991393333335 +2016-11-19 12:00:00,3.056164584,1003.1375830000001,97.58333333,87.88333333,7.336333333,2.635,238.11722631666666 +2016-11-19 13:00:00,0.0,1003.685465,88.70916667,82.34166667,7.3979166670000005,3.044666667,238.11519516666667 +2016-11-19 14:00:00,0.0,1003.712625,109.26,75.67083333,8.09475,2.3369999999999997,238.1145054666667 +2016-11-19 15:00:00,0.0,1004.118882,35.3425,74.705,7.614583333,1.3445,238.11430773333333 +2016-11-19 16:00:00,0.0,1004.177083,4.952166667,77.19666667,7.266916667,2.157916667,238.11494523333332 +2016-11-19 17:00:00,0.0,1004.6147080000001,0.010333333,75.36583333,6.721416667000001,2.2105,238.11371453333334 +2016-11-19 18:00:00,0.0,1005.0584650000001,0.0,84.56083333,4.01875,1.14925,238.1117387666667 +2016-11-19 19:00:00,0.0,1005.237542,0.0,91.74166667,2.7073333330000002,1.113583333,238.11113450000002 +2016-11-19 20:00:00,0.0,1005.3395419999999,0.0,88.11666667,2.139166667,1.32275,238.1094925 +2016-11-19 21:00:00,0.0,1005.199958,0.0,89.41666667,2.78275,1.471333333,238.1078267833333 +2016-11-19 22:00:00,0.0,1004.7310349999999,0.0,91.075,2.941416667,1.900333333,238.10842156666664 +2016-11-19 23:00:00,0.0,1004.3249099999999,0.0,89.45,3.672583333,2.2021666669999997,238.10635880000004 +2016-11-20 00:00:00,0.0,1003.824875,0.0,90.35833333,3.621333333,2.294666667,238.10518979999998 +2016-11-20 01:00:00,0.0,1003.3790759999999,0.0,92.29166667,3.2551666669999997,2.5678333330000003,238.10517716666666 +2016-11-20 02:00:00,0.0,1002.735201,0.0,96.84166667,2.88175,1.8480833330000002,238.10761324999999 +2016-11-20 03:00:00,0.0,1001.7225279999999,0.0,93.26666667,2.968,1.9210833330000001,238.10540335 +2016-11-20 04:00:00,0.0,1000.595618,0.0,95.18333333,2.858666667,1.75825,238.10517554999998 +2016-11-20 05:00:00,0.0,999.7684027999999,0.0,89.90833333,3.5725,2.6149166669999997,238.10409831666664 +2016-11-20 06:00:00,0.0,998.656125,0.0,89.06666667,3.947166667,3.62275,238.10210671666667 +2016-11-20 07:00:00,0.0,998.2289445,0.2815,87.35,4.3325,4.202833333,238.10062764999998 +2016-11-20 08:00:00,0.0,997.3414514000001,14.51666667,81.83333333,5.067583333,4.566083333,238.10051218333334 +2016-11-20 09:00:00,0.0,996.3704931,62.095,76.0225,5.817166667,4.911833333,238.10029705000002 +2016-11-20 10:00:00,0.0,995.8832431,62.9975,69.43333333,6.595083333,5.4825,238.0992973 +2016-11-20 11:00:00,0.0,995.5499582999998,65.86833333,64.8725,7.574083333,3.9610000000000003,238.0979543 +2016-11-20 12:00:00,0.0,995.4250417000002,69.02416667,63.55083333,9.355,4.6915,238.09833078333335 +2016-11-20 13:00:00,0.0,995.70425,65.64333333,65.175,10.70916667,5.452999999999999,238.0963566 +2016-11-20 14:00:00,0.0,995.8500069,30.73416667,69.26333333,10.83833333,2.868416667,238.0961019 +2016-11-20 15:00:00,0.0,996.2440485999999,12.48533333,72.08166667,11.19583333,2.202083333,238.09474625000004 +2016-11-20 16:00:00,0.0,997.1960485999999,2.581833333,71.3275,11.58666667,2.29825,238.0933383833333 +2016-11-20 17:00:00,0.0,998.1210902999999,0.0,70.52333333,12.70916667,1.8459166669999998,238.09335101666667 +2016-11-20 18:00:00,0.0,998.58125,0.0,70.13166667,11.69416667,2.437083333,238.09241611666667 +2016-11-20 19:00:00,0.0,998.8730903,0.0,71.70833333,11.98666667,2.687416667,238.09168526666667 +2016-11-20 20:00:00,0.0,999.3000902999999,0.0,72.17583333,12.13416667,2.08075,238.09117751666668 +2016-11-20 21:00:00,0.0,999.6750832999999,0.0,71.2575,12.85083333,1.493416667,238.09179601666668 +2016-11-20 22:00:00,0.0,999.6499582999999,0.0,69.63,12.89916667,2.1688333330000003,238.09021891666666 +2016-11-20 23:00:00,0.0,999.6750902999999,0.0,69.9175,11.05333333,2.39775,238.09124398333327 +2016-11-21 00:00:00,0.0,999.9395347000001,0.0,67.61666667,10.76666667,2.78625,238.0898993833333 +2016-11-21 01:00:00,0.0,999.9375485999999,0.0,68.04083333,10.7275,2.236416667,238.0902284166667 +2016-11-21 02:00:00,0.0,1000.008285,0.0,73.05166667,10.825,2.157083333,238.09055111666666 +2016-11-21 03:00:00,0.0,1000.133465,0.0,59.51416667,11.23666667,2.2425,238.08857691666665 +2016-11-21 04:00:00,0.0,1000.491667,0.0,58.46,11.21333333,2.089333333,238.08600793333335 +2016-11-21 05:00:00,0.0,1000.1749580000001,0.0,72.2075,10.46666667,2.713083333,238.08686533333335 +2016-11-21 06:00:00,0.0,1000.3125,0.0,85.165,9.224166667,2.149833333,238.08858008333334 +2016-11-21 07:00:00,0.0,1000.262625,0.4685,95.825,8.620833333,0.384,238.08841873333336 +2016-11-21 08:00:00,0.0,1000.920965,4.051583333,75.34666667,9.363333333,1.704083333,238.08642239999998 +2016-11-21 09:00:00,0.0,1000.6726179999999,16.3975,75.98416667,9.4525,0.893166667,238.08684000000002 +2016-11-21 10:00:00,0.0,1000.250042,41.90416667,79.71916667,9.366666667,0.44025,238.08638915000003 +2016-11-21 11:00:00,0.0,999.8978264000001,44.44916667,80.30916667,9.631666667000001,0.42375,238.08427261666668 +2016-11-21 12:00:00,0.0,999.5622430999999,42.06666667,80.19916667,9.918333333,0.55075,238.08495441666665 +2016-11-21 13:00:00,0.0,999.3565555,46.98666667,81.92666667,10.0175,0.569083333,238.08652998333332 +2016-11-21 14:00:00,0.0,999.4811181,42.16666667,81.0275,10.3075,0.372666667,238.08499871666672 +2016-11-21 15:00:00,0.0,999.5625,22.27666667,81.58416667,10.26583333,0.71775,238.0856931333333 +2016-11-21 16:00:00,0.0,999.4310347,2.430583333,84.245,9.898333333,1.546583333,238.08528818333335 +2016-11-21 17:00:00,0.0,999.1293402999999,0.0,74.535,9.713333333,1.8925,238.08383285 +2016-11-21 18:00:00,0.0,999.1290764,0.0,74.3875,9.553333333,2.126833333,238.08327128333335 +2016-11-21 19:00:00,0.0,999.3668402999999,0.0,73.67666667,10.3275,2.308833333,238.08184286666668 +2016-11-21 20:00:00,0.0,999.5104167000002,0.0,81.86666667,10.25583333,1.012583333,238.08316054999997 +2016-11-21 21:00:00,0.0,999.675,0.0,88.49166667,9.329166667,0.45983333299999996,238.08325703333333 +2016-11-21 22:00:00,0.0,999.8875902999999,0.0,93.41666667,8.314583333,0.346583333,238.0841508166667 +2016-11-21 23:00:00,0.0,1000.4439169999999,0.0,96.84166667,6.889416667000001,0.24941666699999998,238.08450513333332 +2016-11-22 00:00:00,0.0,1000.8168400000001,0.0,99.65833333,5.80075,0.32908333300000003,238.08408753333333 +2016-11-22 01:00:00,0.0,1001.764931,0.0,100.0,5.801,0.289583333,238.08285526666666 +2016-11-22 02:00:00,0.0,1002.762632,0.0,100.0,5.808916667,0.18883333300000002,238.0819615 +2016-11-22 03:00:00,0.0,1003.125125,0.0,100.0,5.18225,0.334083333,238.08156443333334 +2016-11-22 04:00:00,0.0,1003.420833,0.0,100.0,4.70325,0.284916667,238.08264646666666 +2016-11-22 05:00:00,0.0,1003.733465,0.0,100.0,5.3965,1.126666667,238.08246296666664 +2016-11-22 06:00:00,0.0,1004.179382,0.0,100.0,6.4105,0.854833333,238.08094748333335 +2016-11-22 07:00:00,0.0,1004.843965,0.18283333300000001,100.0,6.19425,0.764083333,238.08029893333332 +2016-11-22 08:00:00,0.0,1005.937805,10.66275,100.0,6.134583332999999,0.629,238.07807006666667 +2016-11-22 09:00:00,0.0,1006.756465,39.14833333,100.0,6.196083333,0.45325,238.07734556666665 +2016-11-22 10:00:00,0.0,1007.446007,66.11333333,100.0,7.6565,0.288666667,238.07619871666665 +2016-11-22 11:00:00,0.0,1008.081292,79.88666667,98.38333333,9.295,0.5631666670000001,238.07556753333336 +2016-11-22 12:00:00,0.0,1008.377125,85.44,95.125,10.25166667,0.555916667,238.07470856666666 +2016-11-22 13:00:00,0.0,1008.297875,98.05833333,92.3,10.98166667,0.734083333,238.07435740000003 +2016-11-22 14:00:00,0.0,1007.962458,81.7475,92.33333333,10.42833333,1.47475,238.07461053333336 +2016-11-22 15:00:00,0.0,1008.220924,60.71416667,94.075,10.4175,1.31025,238.07484303333334 +2016-11-22 16:00:00,0.0,1008.406417,7.015,96.95833333,9.589166667,1.088,238.07634265000002 +2016-11-22 17:00:00,0.0,1008.98134,0.0,99.65833333,8.78,0.416833333,238.07564978333335 +2016-11-22 18:00:00,0.0,1009.062625,0.0,99.50833333,8.215333333,0.228916667,238.07673971666665 +2016-11-22 19:00:00,0.0,1010.112674,0.0,100.0,8.416666667000001,0.38983333299999995,238.07608008333332 +2016-11-22 20:00:00,0.0,1010.748132,0.0,100.0,8.11325,0.298,238.07567509999998 +2016-11-22 21:00:00,0.0,1010.98134,0.0,100.0,7.6559166670000005,0.273166667,238.07549955 +2016-11-22 22:00:00,0.0,1011.437542,0.0,100.0,7.502666667000001,0.35366666700000005,238.07517366666664 +2016-11-22 23:00:00,0.0,1011.2915830000001,0.0,100.0,6.6325,0.277083333,238.07603104999998 +2016-11-23 00:00:00,0.0,1011.05616,0.0,100.0,5.713833332999999,0.1515,238.0783627333333 +2016-11-23 01:00:00,0.0,1010.975132,0.0,100.0,4.850666667,0.3175,238.07701654999997 +2016-11-23 02:00:00,0.0,1011.4355,0.0,100.0,4.829583333,0.51025,238.07254933333334 +2016-11-23 03:00:00,0.0,1011.399917,0.0,100.0,4.546833333,0.3155,238.07430518333334 +2016-11-23 04:00:00,0.0,1011.5022150000001,0.0,100.0,4.104083333,0.34083333299999996,238.07538563333333 +2016-11-23 05:00:00,0.0,1012.062625,0.0,100.0,4.048166667,0.39,238.07431945 +2016-11-23 06:00:00,0.0,1012.304208,0.0,100.0,3.5971666669999998,0.20025,238.07481773333333 +2016-11-23 07:00:00,0.0,1012.787674,0.406583333,100.0,2.897916667,0.093416667,238.0751958 +2016-11-23 08:00:00,0.0,1013.4189240000001,17.3275,100.0,2.989833333,0.1745,238.07440486666667 +2016-11-23 09:00:00,0.0,1013.914757,66.64583333,100.0,5.90925,0.252333333,238.07058461666668 +2016-11-23 10:00:00,0.0,1014.177042,103.7016667,100.0,7.01375,0.24941666699999998,238.06909766666664 +2016-11-23 11:00:00,0.0,1014.266625,109.065,99.5,8.753583333,0.21866666699999998,238.06773721666664 +2016-11-23 12:00:00,0.0,1014.029076,151.0166667,92.85833333,11.6175,0.68375,238.06657931666666 +2016-11-23 13:00:00,0.0,1013.656208,176.6333333,85.99166667,12.4975,0.570916667,238.0670792 +2016-11-23 14:00:00,0.0,1013.577125,107.63,83.2,12.8275,1.102666667,238.06715669999997 +2016-11-23 15:00:00,0.0,1013.497917,38.37583333,91.75,11.48916667,0.18516666699999998,238.0698443 +2016-11-23 16:00:00,0.0,1013.6625,6.034333332999999,97.675,9.146666667,0.3395,238.06992655 +2016-11-23 17:00:00,0.0,1013.760458,0.0,99.825,7.8555,0.38591666700000005,238.0696750333333 +2016-11-23 18:00:00,0.0,1013.989632,0.0,100.0,7.161333332999999,0.38775,238.0700958166667 +2016-11-23 19:00:00,0.0,1013.8811599999999,0.0,100.0,6.876916667000001,0.35200000000000004,238.07082348333336 +2016-11-23 20:00:00,0.0,1013.8250419999999,0.0,100.0,6.728916667000001,0.255166667,238.07087251666664 +2016-11-23 21:00:00,0.0,1013.9333330000001,0.0,100.0,6.803083332999999,0.32275,238.07015118333334 +2016-11-23 22:00:00,0.0,1013.843799,0.0,98.7,7.83275,0.42958333299999996,238.06818650000002 +2016-11-23 23:00:00,0.0,1013.983208,0.0,99.83333333,8.529166667,0.33883333299999996,238.06794761666666 +2016-11-24 00:00:00,0.0,1013.604243,0.0,100.0,9.124166667,1.1675,238.0693112333333 +2016-11-24 01:00:00,0.0,1013.5395490000001,0.0,96.81666667,9.774166667000001,0.799333333,238.06808053333336 +2016-11-24 02:00:00,0.0,1013.785493,0.0,89.06666667,9.978333333,1.332166667,238.06645909999997 +2016-11-24 03:00:00,0.0,1013.84575,0.0,88.43333333,10.31416667,1.492666667,238.06490885000002 +2016-11-24 04:00:00,0.0,1013.654174,0.0,87.90833333,10.37166667,1.8,238.06587853333335 +2016-11-24 05:00:00,0.0,1013.7,0.0,89.34166667,9.91,1.2955,238.0654198 +2016-11-24 06:00:00,0.0,1013.720951,0.0,88.825,10.21333333,2.06375,238.06711875 +2016-11-24 07:00:00,0.0,1014.185507,0.317083333,89.525,9.733333333,2.04975,238.06452443333333 +2016-11-24 08:00:00,0.0,1014.677174,16.0855,90.625,9.728333333,2.27375,238.06682764999996 +2016-11-24 09:00:00,0.0,1015.235674,52.79916667,89.76666667,10.4775,2.52325,238.06441529999998 +2016-11-24 10:00:00,0.0,1015.789674,94.8875,87.3,10.97,3.14,238.06411318333335 +2016-11-24 11:00:00,0.0,1015.8394509999999,83.72583333,85.99166667,11.46833333,4.754416667,238.06354686666668 +2016-11-24 12:00:00,0.0,1015.377,145.35,85.45833333,11.84083333,4.452583333,238.0619808 +2016-11-24 13:00:00,0.0,1015.089535,151.275,85.0,11.90666667,4.424166667,238.06157108333335 +2016-11-24 14:00:00,0.0,1015.0291179999999,84.91583333,85.55,11.67083333,3.7513333330000003,238.0618843166667 +2016-11-24 15:00:00,0.0,1014.75409,40.125,88.13333333,10.49083333,3.494916667,238.06350415 +2016-11-24 16:00:00,0.0,1014.614625,5.2531666669999995,90.13333333,9.691666667,3.496166667,238.06332539999997 +2016-11-24 17:00:00,0.0,1015.002208,0.0,91.08333333,8.901666667,3.378083333,238.06260878333333 +2016-11-24 18:00:00,0.0,1015.410514,0.0,92.51666667,8.399166667000001,3.447083333,238.06387270000002 +2016-11-24 19:00:00,0.0,1015.937701,0.0,93.83333333,8.07125,2.76275,238.06359746666666 +2016-11-24 20:00:00,0.0,1016.1749580000001,0.0,94.225,7.743583332999999,3.7135,238.06346933333336 +2016-11-24 21:00:00,0.0,1016.114549,0.0,93.475,7.800666667000001,4.6835,238.06233356666667 +2016-11-24 22:00:00,0.0,1016.00625,0.0,93.94166667,7.6915,4.19775,238.0619254166667 +2016-11-24 23:00:00,0.0,1016.160375,0.0,93.8,7.494333332999999,4.696583333,238.0609731333333 +2016-11-25 00:00:00,0.0,1015.939576,0.0,93.23333333,7.245166667,4.76625,238.06170396666667 +2016-11-25 01:00:00,0.0,1015.722792,0.0,93.54166667,6.968,5.203666667,238.06149040000003 +2016-11-25 02:00:00,0.0,1015.560417,0.0,93.73333333,6.558833333,5.12825,238.06228133333332 +2016-11-25 03:00:00,0.0,1015.156076,0.0,94.55,6.365833332999999,4.84025,238.0632209833333 +2016-11-25 04:00:00,0.0,1014.810458,0.0,95.21666667,6.069166667,5.483916667000001,238.06241425 +2016-11-25 05:00:00,0.0,1014.7853259999999,0.0,94.76666667,5.884166667000001,5.242999999999999,238.06391388333336 +2016-11-25 06:00:00,0.0,1014.8480490000001,0.0,94.79166667,5.8965,4.3303333330000005,238.06130691666667 +2016-11-25 07:00:00,0.0,1014.858292,0.135833333,94.98333333,5.748666667,3.5725,238.0622782 +2016-11-25 08:00:00,0.0,1015.056382,8.925833333,94.19166667,5.560333332999999,4.258166667,238.06080705 +2016-11-25 09:00:00,0.0,1015.510458,52.33166667,93.38333333,5.737666667,4.1906666669999995,238.05997815 +2016-11-25 10:00:00,0.0,1015.702215,101.825,90.74166667,6.10525,5.061,238.06035459999998 +2016-11-25 11:00:00,0.0,1016.00416,89.98666667,86.90833333,6.434083332999999,5.072166667,238.05785210000002 +2016-11-25 12:00:00,0.0,1015.8645,173.66666669999998,81.32833333,7.07625,4.900166667,238.05810046666662 +2016-11-25 13:00:00,0.0,1015.504083,172.29166669999998,72.9775,7.922416667,4.270333333,238.05740598333333 +2016-11-25 14:00:00,0.0,1015.40625,129.1916667,68.9525,8.1225,4.371,238.05634930000005 +2016-11-25 15:00:00,0.0,1015.2020349999999,60.67916667,70.19,7.4079999999999995,3.688916667,238.05814631666667 +2016-11-25 16:00:00,0.0,1015.387632,5.812583332999999,76.23833333,5.945333333,3.3369999999999997,238.06040841666663 +2016-11-25 17:00:00,0.0,1015.681208,0.0,81.1775,5.783666667,3.950583333,238.06004931666666 +2016-11-25 18:00:00,0.0,1015.96059,0.0,84.73333333,5.532666667000001,1.652916667,238.05942761666665 +2016-11-25 19:00:00,0.0,1016.2812849999999,0.0,88.30833333,5.279916667,2.385166667,238.05885498333336 +2016-11-25 20:00:00,0.0,1016.3625490000001,0.0,90.15,4.7946666669999995,2.1285,238.05970920000001 +2016-11-25 21:00:00,0.0,1016.427083,0.0,92.7,4.4885,1.855666667,238.0599338333333 +2016-11-25 22:00:00,0.0,1016.425007,0.0,93.55,3.863333333,2.384666667,238.0593691 +2016-11-25 23:00:00,0.0,1016.36041,0.0,94.14166667,3.811083333,2.592916667,238.05896098333335 +2016-11-26 00:00:00,0.0,1016.066542,0.0,94.85833333,3.9595833330000003,1.729333333,238.05925046666667 +2016-11-26 01:00:00,0.0,1015.914542,0.0,94.99166667,4.03,1.65275,238.05727155 +2016-11-26 02:00:00,0.0,1015.8645759999999,0.0,95.19166667,3.99675,1.53275,238.05835355 +2016-11-26 03:00:00,0.0,1015.75825,0.0,95.15833333,3.933583333,1.7525,238.05767018333333 +2016-11-26 04:00:00,0.0,1015.4249169999999,0.0,95.31666667,3.839833333,1.341083333,238.0572319666667 +2016-11-26 05:00:00,0.0,1015.158285,0.0,95.93333333,3.534833333,1.905666667,238.05723196666665 +2016-11-26 06:00:00,0.0,1015.114542,0.0,96.79166667,3.2945,1.221833333,238.05700738333334 +2016-11-26 07:00:00,0.0,1015.170965,0.15691666699999998,97.60833333,3.13575,1.197416667,238.05695200000002 +2016-11-26 08:00:00,0.0,1015.414542,7.0148333329999994,98.65,2.882166667,1.9265833330000002,238.05512336666666 +2016-11-26 09:00:00,0.0,1015.427125,24.915,99.175,2.84125,1.9835,238.05502688333334 +2016-11-26 10:00:00,0.0,1015.3416179999999,46.4275,98.98333333,2.946416667,1.82975,238.05628126666667 +2016-11-26 11:00:00,0.0,1015.129083,72.5725,96.43333333,3.417916667,1.398166667,238.05454598333336 +2016-11-26 12:00:00,0.0,1014.616493,78.56,93.41666667,4.0215,0.7426666670000001,238.05471203333332 +2016-11-26 13:00:00,0.0,1014.01441,72.24833333,91.0,4.886083333,0.6995,238.05458395000005 +2016-11-26 14:00:00,0.0,1013.489458,58.305,90.24166667,5.411666667,0.727166667,238.05405714999998 +2016-11-26 15:00:00,0.0,1013.258285,43.76333333,89.69166667,5.520083333,0.027083332999999998,238.05292136666665 +2016-11-26 16:00:00,0.0,1013.027132,7.357166667,96.06666667,3.705916667,0.11558333300000001,238.05542705000002 +2016-11-26 17:00:00,0.0,1013.266708,0.0,98.375,3.948666667,0.0025833329999999997,238.05595226666665 +2016-11-26 18:00:00,0.0,1013.295792,0.0,98.65,4.383916667,0.028333333,238.0558098833333 +2016-11-26 19:00:00,0.0,1013.433375,0.0,97.95833333,4.448583333,0.00041666699999999996,238.05517713333333 +2016-11-26 20:00:00,0.0,1013.472875,0.0,98.49166667,4.1739999999999995,0.065,238.05494775 +2016-11-26 21:00:00,0.0,1013.420958,0.0,99.725,4.08925,0.144583333,238.05522774999997 +2016-11-26 22:00:00,0.0,1013.5499169999999,0.0,99.73333333,3.492916667,0.286166667,238.05476901666665 +2016-11-26 23:00:00,0.0,1013.420833,0.0,100.0,2.7560000000000002,0.147416667,238.05596649999998 +2016-11-27 00:00:00,0.0,1013.3375,0.0,100.0,3.380666667,0.29741666699999997,238.05546663333334 +2016-11-27 01:00:00,0.0,1013.179118,0.0,100.0,2.596083333,0.506083333,238.0563145166667 +2016-11-27 02:00:00,0.0,1013.002,0.0,100.0,0.998416667,0.1425,238.05649483333332 +2016-11-27 03:00:00,0.0,1012.987542,0.0,100.0,2.113416667,0.46683333299999996,238.05677166666666 +2016-11-27 04:00:00,0.0,1013.002042,0.0,99.675,3.607333333,0.428,238.0536316333333 +2016-11-27 05:00:00,0.0,1013.141757,0.0,97.53333333,4.210166667,0.64075,238.05243258333334 +2016-11-27 06:00:00,0.0,1013.283375,0.0,97.76666667,4.526166667,0.79325,238.0527220833333 +2016-11-27 07:00:00,0.0,1013.46059,0.07275,97.60833333,4.600416667,0.662416667,238.05291976666663 +2016-11-27 08:00:00,0.0,1014.391917,6.560583332999999,97.1,5.263833333,1.300666667,238.04982088333335 +2016-11-27 09:00:00,0.0,1014.910424,28.02083333,95.60833333,5.6055,1.31325,238.04980983333334 +2016-11-27 10:00:00,0.0,1015.120958,60.03083333,94.58333333,5.986833333,1.165666667,238.0511449166667 +2016-11-27 11:00:00,0.0,1015.2895,78.86916667,92.1,6.726083332999999,1.7404166669999999,238.04999650000002 +2016-11-27 12:00:00,0.0,1014.935375,105.06083329999998,88.25833333,7.1093333329999995,1.377583333,238.0506688 +2016-11-27 13:00:00,0.0,1014.591583,68.83333333,80.99583333,7.62625,1.6133333330000001,238.04959783333334 +2016-11-27 14:00:00,0.0,1014.470826,70.58333333,81.43916667,6.93875,1.306166667,238.04979716666665 +2016-11-27 15:00:00,0.0,1014.68559,26.06166667,78.38166667,6.863666667,2.218833333,238.05120345 +2016-11-27 16:00:00,0.0,1015.191715,4.417166667,85.94166667,5.915916667,1.184166667,238.05085225000002 +2016-11-27 17:00:00,0.0,1015.5835490000001,0.0,96.56666667,4.546333333,0.6901666670000001,238.05148344999998 +2016-11-27 18:00:00,0.0,1016.362674,0.0,99.43333333,3.6775833330000003,0.884,238.05251165 +2016-11-27 19:00:00,0.0,1016.943833,0.0,100.0,2.05425,0.4875,238.05222220000005 +2016-11-27 20:00:00,0.0,1017.327167,0.0,100.0,-0.02975,0.43125,238.05323456666665 +2016-11-27 21:00:00,0.0,1017.591799,0.0,100.0,-0.972333333,0.32658333300000003,238.05380404999997 +2016-11-27 22:00:00,0.0,1017.964625,0.0,100.0,-1.373833333,0.35116666700000004,238.05261765 +2016-11-27 23:00:00,0.0,1018.375257,0.0,100.0,-1.287916667,0.24875,238.0527505333333 +2016-11-28 00:00:00,0.0,1018.9687849999999,0.0,100.0,-1.663666667,0.235583333,238.0517492 +2016-11-28 01:00:00,0.0,1019.2126390000001,0.0,100.0,-1.82625,0.35283333299999997,238.05227595 +2016-11-28 02:00:00,0.0,1019.708375,0.0,100.0,-1.448166667,0.39075,238.05100886666665 +2016-11-28 03:00:00,0.0,1019.664625,0.0,100.0,-2.49125,0.12125,238.0525670333333 +2016-11-28 04:00:00,0.0,1019.977083,0.0,100.0,-3.06875,0.36541666700000003,238.05346236666665 +2016-11-28 05:00:00,0.0,1020.310632,0.0,100.0,-3.563583333,0.1855,238.05294666666666 +2016-11-28 06:00:00,0.0,1020.973083,0.0,100.0,-4.007166667,0.0835,238.05336590000002 +2016-11-28 07:00:00,0.0,1021.57518,0.236416667,100.0,-3.89275,0.535666667,238.05346238333334 +2016-11-28 08:00:00,0.0,1022.408674,7.839333333,100.0,-1.894166667,0.702416667,238.05187576666665 +2016-11-28 09:00:00,0.0,1023.2918470000001,19.09,100.0,-0.3595,0.1985,238.0482564166667 +2016-11-28 10:00:00,0.0,1024.271139,97.335,99.23333333,0.5708333329999999,2.165083333,238.0451796666667 +2016-11-28 11:00:00,3.038256072,1024.710382,74.26833333,91.3,1.460083333,3.214083333,238.0449993 +2016-11-28 12:00:00,0.0,1024.8188400000001,193.04166669999998,86.68,2.638833333,3.7799166669999997,238.04410396666665 +2016-11-28 13:00:00,0.0,1025.016611,176.94166669999998,75.3325,2.488833333,3.590833333,238.04274516666666 +2016-11-28 14:00:00,0.0,1025.221042,110.86166670000001,74.31833333,2.6444166669999998,3.05275,238.0424272 +2016-11-28 15:00:00,0.0,1025.518681,63.555,76.23083333,1.7683333330000002,2.881166667,238.04436656666667 +2016-11-28 16:00:00,0.0,1025.733493,5.959083333,83.02333333,0.41183333299999997,1.263666667,238.0447082666667 +2016-11-28 17:00:00,0.0,1026.11675,0.024916667000000003,93.775,-0.934583333,0.5555,238.04539321666664 +2016-11-28 18:00:00,0.0,1026.52934,0.0,96.675,-1.8935,0.716166667,238.04807925 +2016-11-28 19:00:00,0.0,1027.24809,0.0,98.975,-3.07975,0.327416667,238.0466681833333 +2016-11-28 20:00:00,0.0,1027.639667,0.0,99.925,-4.1355,0.237833333,238.04764423333333 +2016-11-28 21:00:00,0.0,1028.012632,0.0,100.0,-4.350583333,0.46041666700000006,238.04794794999998 +2016-11-28 22:00:00,0.0,1028.241625,0.0,100.0,-4.363333333,0.32425,238.04675518333337 +2016-11-28 23:00:00,0.0,1028.475083,0.0,100.0,-4.87175,0.207333333,238.04737053333338 +2016-11-29 00:00:00,0.0,1028.587583,0.0,99.975,-5.0904166669999995,0.26358333300000003,238.04688175 +2016-11-29 01:00:00,0.0,1028.889667,0.0,99.91666667,-5.720916667000001,0.37125,238.04410240000004 +2016-11-29 02:00:00,0.0,1028.983299,0.0,99.95,-5.228166667,0.48308333299999995,238.04415616666665 +2016-11-29 03:00:00,0.0,1028.81666,0.0,99.79166667,-6.20075,0.18891666699999998,238.04596266666667 +2016-11-29 04:00:00,0.0,1028.839542,0.0,99.54166667,-6.850583332999999,0.240083333,238.04580131666668 +2016-11-29 05:00:00,0.0,1028.716701,0.0,99.19166667,-7.2729166670000005,0.26516666699999997,238.04657805000002 +2016-11-29 06:00:00,0.0,1028.808333,0.0,99.0,-7.600083333,0.08391666699999999,238.04689441666665 +2016-11-29 07:00:00,0.0,1029.012625,0.197083333,98.86666667,-7.884666667,0.08825,238.0456289166667 +2016-11-29 08:00:00,0.0,1029.373049,6.8034166670000005,98.93333333,-7.6615,0.130583333,238.0459500333333 +2016-11-29 09:00:00,0.0,1030.095924,17.68333333,99.65833333,-4.179083333,0.070416667,238.04298085000002 +2016-11-29 10:00:00,0.0,1030.495986,84.2475,99.725,-1.089416667,0.07825,238.0410051 +2016-11-29 11:00:00,0.0,1030.556153,65.41666667,97.175,-0.5865,0.47333333299999997,238.03875564999998 +2016-11-29 12:00:00,0.0,1030.139514,176.7416667,90.48333333,1.0290000000000001,0.56525,238.0379615666667 +2016-11-29 13:00:00,0.0,1029.949951,185.2666667,82.02333333,2.035416667,0.468583333,238.03736834999998 +2016-11-29 14:00:00,0.0,1029.829167,131.1416667,79.35333333,2.435916667,0.46866666700000004,238.03732878333335 +2016-11-29 15:00:00,0.0,1029.664493,62.32833333,81.51916667,1.528583333,0.7125,238.03710415 +2016-11-29 16:00:00,0.0,1029.341618,5.047666667,94.15833333,-1.222,0.38983333299999995,238.0402109833333 +2016-11-29 17:00:00,0.0,1029.224952,0.017416667,97.46666667,-3.1215833330000002,0.421916667,238.04151921666667 +2016-11-29 18:00:00,0.0,1029.170708,0.0,99.21666667,-4.0815,0.50775,238.04290491666669 +2016-11-29 19:00:00,0.0,1029.037618,0.0,99.46666667,-4.894833333,0.4015,238.0432592666667 +2016-11-29 20:00:00,0.0,1029.385549,0.0,99.88333333,-5.614666667000001,0.30141666699999997,238.04213613333334 +2016-11-29 21:00:00,0.0,1029.5875,0.0,99.86666667,-6.51275,0.12275,238.04180553333333 +2016-11-29 22:00:00,0.0,1029.41241,0.0,99.75833333,-6.7961666670000005,0.1685,238.04115060000004 +2016-11-29 23:00:00,0.0,1028.9949800000002,0.0,99.75,-6.91875,0.423416667,238.04078298 +2016-11-30 00:00:00,0.0,1028.709043,0.0,99.65,-7.274083332999999,0.27399999999999997, +2016-11-30 01:00:00,0.0,1028.474839,0.0,99.475,-7.741083333,0.161916667, +2016-11-30 02:00:00,0.0,1028.2406349999999,0.0,99.45833333,-7.902666667,0.252416667, +2016-11-30 03:00:00,0.0,1028.006431,0.0,99.30833333,-7.682166667000001,0.44941666700000005, +2016-11-30 04:00:00,0.0,1027.772227,0.0,99.08333333,-7.740416667000001,0.38583333299999995, +2016-11-30 05:00:00,0.0,1027.538024,0.0,98.83333333,-8.07375,0.322166667, +2016-11-30 06:00:00,0.0,1027.3038199999999,0.0,99.05833333,-7.788416667000001,0.35725, +2016-11-30 07:00:00,0.0,1027.0696169999999,0.128,98.63333333,-8.3,0.2615, +2016-11-30 08:00:00,0.0,1026.835413,9.416916667,98.94166667,-7.793416667000001,0.473416667, +2016-11-30 09:00:00,0.0,1026.601209,39.23333333,98.925,-5.256416667,0.274416667, +2016-11-30 10:00:00,0.0,1026.367006,87.65916667,97.975,-2.879083333,0.536166667, +2016-11-30 11:00:00,0.0,1026.1328019999999,84.17833333,83.50333333,-0.8301666670000001,0.614583333, +2016-11-30 12:00:00,0.0,1025.898597,158.9083333,67.76333333,1.2055,0.763166667, +2016-11-30 13:00:00,0.0,1025.664394,149.4666667,61.0275,2.21225,1.157, +2016-11-30 14:00:00,0.0,1025.430191,144.2166667,59.84083333,2.683083333,1.608916667, +2016-11-30 15:00:00,0.0,1025.1959869999998,59.205,57.09,2.6528333330000002,0.7314166670000001, +2016-11-30 16:00:00,0.0,1024.961783,5.767666667,59.62333333,0.7523333329999999,0.05625, +2016-11-30 17:00:00,0.0,1024.72758,0.0,66.02416667,-0.943916667,0.235166667, +2016-11-30 18:00:00,0.0,1024.493376,0.0,58.6325,-1.452083333,0.161833333, +2016-11-30 19:00:00,0.0,1024.259172,0.0,60.55333333,-1.5746666669999998,0.26125, +2016-11-30 20:00:00,0.0,1024.024969,0.0,64.68416667,1.4384166669999998,1.005833333, +2016-11-30 21:00:00,0.0,1023.7907650000001,0.0,68.38333333,1.8520833330000002,1.040833333, +2016-11-30 22:00:00,0.0,1023.556561,0.0,70.07666667,1.8420833330000002,0.877, +2016-11-30 23:00:00,0.0,1023.322358,0.0,73.51333333,1.81825,0.531416667, +2016-01-12 00:00:00,0.0,1023.0881529999999,0.0,73.36166667,2.0980000000000003,0.980083333,238.10099858333334 +2016-01-12 01:00:00,0.0,1022.85395,0.0,74.28416667,2.298166667,0.8544166670000001,238.1060093 +2016-01-12 02:00:00,0.0,1022.6197460000001,0.0,75.85416667,2.413416667,1.156,238.1117358 +2016-01-12 03:00:00,0.0,1022.385542,0.0,76.25,2.44475,0.909666667,238.11692543333334 +2016-01-12 04:00:00,0.0,1022.151339,0.0,78.55333333,2.61375,1.410833333,238.11996765 +2016-01-12 05:00:00,0.0,1021.9171349999999,0.0,81.44166667,2.7110000000000003,1.7855,238.1237256833334 +2016-01-12 06:00:00,0.0,1021.682932,0.0,84.2,2.8649166669999997,1.37875,238.1231888166667 +2016-01-12 07:00:00,0.0,1021.448728,0.0,86.55833333,3.0093333330000003,2.03175,238.12336778333338 +2016-01-12 08:00:00,0.0,1021.214524,3.4845,88.21666667,3.12175,1.6965833330000002,238.12283088333334 +2016-01-12 09:00:00,0.0,1020.9803199999999,15.2,89.13333333,3.375916667,1.5749166669999999,238.12569415 +2016-01-12 10:00:00,0.0,1020.746117,35.2825,89.41666667,3.737916667,2.003,238.12354673333337 +2016-01-12 11:00:00,0.0,1020.511913,54.21,88.83333333,4.26075,1.824416667,238.12247296666666 +2016-01-12 12:00:00,0.0,1020.277709,44.015,89.625,4.040666667,2.216916667,238.14484215000002 +2016-01-12 13:00:00,0.0,1020.0435060000001,24.74583333,91.16666667,3.82225,2.359416667,238.07343978333336 +2016-01-12 14:00:00,0.0,1019.809302,11.69433333,93.375,3.84,2.048666667,238.07326079999999 +2016-01-12 15:00:00,0.0,1019.575098,6.62025,94.45,3.87325,1.39125, +2016-01-12 16:00:00,0.0,1019.3408949999999,1.081,95.075,3.921416667,1.4416666669999998, +2016-01-12 17:00:00,0.0,1019.17606,0.0,94.99166667,3.90925,1.715416667, +2016-01-12 18:00:00,0.0,1018.6208330000001,0.0,94.79166667,3.967083333,2.0705, +2016-01-12 19:00:00,0.0,1018.29375,0.0,95.725,4.023583333,1.625083333, +2016-01-12 20:00:00,0.0,1018.241319,0.0,96.68333333,4.1523333330000005,1.182916667, +2016-01-12 21:00:00,0.0,1018.146528,0.0,96.48333333,4.35625,0.968833333, +2016-01-12 22:00:00,0.0,1017.773264,0.0,96.20833333,4.994,2.18675, +2016-01-12 23:00:00,0.0,1017.303819,0.0,95.25833333,5.36625,2.3585833330000003, +2016-02-12 00:00:00,0.0,1017.1045140000001,0.0,95.26666667,5.560916667000001,2.69275,238.16649553333335 +2016-02-12 01:00:00,0.0,1016.58125,0.0,95.05,5.7190833329999995,2.090083333,238.1641691 +2016-02-12 02:00:00,0.0,1016.252431,0.0,94.375,5.76775,1.712,238.16237959999998 +2016-02-12 03:00:00,0.0,1015.931597,0.0,90.96666667,6.439916667,1.155916667,238.16273749999996 +2016-02-12 04:00:00,0.0,1015.804167,0.0,91.04166667,6.628083332999999,1.27725,238.16220064999996 +2016-02-12 05:00:00,0.0,1015.764583,0.0,93.775,6.34475,1.383833333,238.16184274999998 +2016-02-12 06:00:00,0.0,1015.720833,0.0,95.94166667,6.025666667,1.6405833330000001,238.16237959999998 +2016-02-12 07:00:00,0.0,1015.812153,0.07375,96.625,6.070416667000001,1.93475,238.16094796666664 +2016-02-12 08:00:00,0.0,1016.2458330000001,7.093166667,97.55833333,6.26475,1.9251666669999998,238.16220064999996 +2016-02-12 09:00:00,0.0,1016.601736,33.67333333,96.85833333,6.793916667,2.02,238.15862155 +2016-02-12 10:00:00,0.0,1017.085417,74.57333333,94.9,7.402916667,2.19775,238.15540043333337 +2016-02-12 11:00:00,53.41856875,1017.130903,40.94833333,94.63333333,7.4844166670000005,1.2760833329999999,238.15504250000004 +2016-02-12 12:00:00,15.16571594,1017.227431,21.36316667,98.54166667,6.5781666670000005,1.193916667,238.15486351666667 +2016-02-12 13:00:00,0.0,1017.357986,38.28916667,99.55833333,6.786583332999999,1.8094166669999998,238.15361084999998 +2016-02-12 14:00:00,2.9916784080000003,1017.5,35.69916667,94.86666667,5.8015,2.241333333,238.15271611666665 +2016-02-12 15:00:00,0.0,1017.916667,19.295,97.20833333,5.366833333,0.30075,238.15182133333334 +2016-02-12 16:00:00,0.0,1018.1204859999999,3.6190833330000003,99.91666667,2.06475,0.6475,238.15361086666667 +2016-02-12 17:00:00,0.0,1018.28125,0.004666667,100.0,0.43691666700000004,0.582583333,238.15486355000004 +2016-02-12 18:00:00,0.0,1018.45,0.0,100.0,-0.43441666700000003,0.368166667,238.15396876666668 +2016-02-12 19:00:00,0.0,1018.7065970000001,0.0,100.0,-1.046333333,0.330916667,238.15307399999998 +2016-02-12 20:00:00,0.0,1019.0725689999999,0.0,100.0,-1.586916667,0.22125,238.15361086666667 +2016-02-12 21:00:00,0.0,1019.064583,0.0,100.0,-2.3296666669999997,0.201,238.15343191666668 +2016-02-12 22:00:00,0.0,1019.170833,0.0,100.0,-2.8575,0.105083333,238.15289504999998 +2016-02-12 23:00:00,0.0,1019.360069,0.0,100.0,-3.9163333330000003,0.017583333,238.15110554999998 +2016-03-12 00:00:00,0.0,1019.5357640000001,0.0,100.0,-4.337166667,0.00875,238.18224813333333 +2016-03-12 01:00:00,0.0,1019.5583330000001,0.0,100.0,-4.292333333,0.049666667000000005,238.18308395 +2016-03-12 02:00:00,0.0,1019.622569,0.0,100.0,-3.984666667,0.061666667,238.18308395 +2016-03-12 03:00:00,0.0,1019.6604169999999,0.0,99.925,-3.928833333,0.12708333300000002,238.18183016666669 +2016-03-12 04:00:00,0.0,1019.602431,0.0,99.95833333,-4.310833333,0.324666667,238.1816212 +2016-03-12 05:00:00,0.0,1019.857986,0.0,100.0,-4.427166667,0.302333333,238.18162120000002 +2016-03-12 06:00:00,0.0,1019.9125,0.0,99.44166667,-4.865166667,0.192083333,238.18141223333336 +2016-03-12 07:00:00,0.0,1020.06875,0.11766666699999999,99.20833333,-5.1255,0.296083333,238.18183018333332 +2016-03-12 08:00:00,0.0,1020.485069,5.8645,99.09166667,-5.515833333,0.08608333300000001,238.1822481 +2016-03-12 09:00:00,0.0,1020.9875,16.5025,99.91666667,-4.392166667,0.033,238.1795316166667 +2016-03-12 10:00:00,0.0,1021.3243060000001,73.28,100.0,-1.5566666669999998,0.18666666699999998,238.1786957666667 +2016-03-12 11:00:00,0.0,1021.64375,65.04,100.0,-0.26916666699999997,0.6335833329999999,238.17911370000004 +2016-03-12 12:00:00,2.50219908,1021.520833,180.44416669999998,99.46666667,0.52575,0.7885833329999999,238.17702403333337 +2016-03-12 13:00:00,0.0,1021.602083,204.0333333,95.025,2.7206666669999997,0.319916667,238.17618818333332 +2016-03-12 14:00:00,0.0,1021.360417,159.5,92.0,2.968,0.64525,238.17702405 +2016-03-12 15:00:00,0.0,1021.116319,71.49083333,93.48333333,2.7688333330000003,0.5655,238.17932263333338 +2016-03-12 16:00:00,0.0,1020.9815970000001,5.311166667,98.95833333,-0.5499166670000001,0.44158333299999997,238.1786957666667 +2016-03-12 17:00:00,0.0,1021.0486109999999,0.009416667,100.0,-2.222666667,0.28375,238.18162123333332 +2016-03-12 18:00:00,0.0,1021.4017359999999,0.0,100.0,-3.2519166669999997,0.28375,238.18057643333336 +2016-03-12 19:00:00,0.0,1021.7125,0.0,100.0,-3.8539999999999996,0.4655,238.17953160000002 +2016-03-12 20:00:00,0.0,1021.7940970000001,0.0,100.0,-4.578666667,0.332583333,238.17974058333337 +2016-03-12 21:00:00,0.0,1022.032639,0.0,100.0,-5.391916667,0.235916667,238.17806886666668 +2016-03-12 22:00:00,0.0,1022.0503470000001,0.0,99.975,-5.950166667,0.292416667,238.1786957666667 +2016-03-12 23:00:00,0.0,1022.210417,0.0,99.90833333,-6.394083332999999,0.17175,238.17994953333334 +2016-04-12 00:00:00,0.0,1022.36007,0.0,99.66666667,-6.7695,0.23875,238.19415889999996 +2016-04-12 01:00:00,0.0,1022.3857640000001,0.0,99.475,-7.120833332999999,0.141083333,238.19499476666667 +2016-04-12 02:00:00,0.0,1022.6625,0.0,99.14166667,-7.491916667000001,0.141,238.19394996666668 +2016-04-12 03:00:00,0.0,1022.577083,0.0,98.99166667,-7.642166667000001,0.285,238.19248723333337 +2016-04-12 04:00:00,0.0,1022.4190970000001,0.0,98.875,-7.7925,0.26916666699999997,238.19290518333335 +2016-04-12 05:00:00,0.0,1022.4892359999999,0.0,98.75833333,-8.129083332999999,0.198666667,238.1931141 +2016-04-12 06:00:00,0.0,1022.6357640000001,0.0,98.6,-8.301666667000001,0.239,238.18977071666666 +2016-04-12 07:00:00,0.0,1022.797569,0.041916667000000005,98.425,-8.353333333,0.331583333,238.18747213333333 +2016-04-12 08:00:00,0.0,1023.241319,5.507999999999999,98.31666667,-8.360333333,0.200333333,238.1883079833333 +2016-04-12 09:00:00,0.0,1023.9725689999999,17.195,99.06666667,-5.530333333,0.1615,238.18747215 +2016-04-12 10:00:00,0.0,1024.211806,75.8225,99.8,-2.7765,0.64175,238.18559148333335 +2016-04-12 11:00:00,0.0,1024.151736,68.00083333,98.9,0.29991666699999997,0.236083333,238.18308394999997 +2016-04-12 12:00:00,0.0,1024.052083,163.5566667,96.38333333,1.7084166669999998,0.137583333,238.1835018666667 +2016-04-12 13:00:00,2.406839208,1023.758681,196.04166669999998,92.39166667,1.48175,0.807333333,238.18371085 +2016-04-12 14:00:00,0.0,1023.479167,150.5333333,88.49166667,1.79475,1.125583333,238.1835018833333 +2016-04-12 15:00:00,0.0,1023.235764,65.66083333,90.30833333,1.077583333,1.159166667,238.18203915 +2016-04-12 16:00:00,0.0,1023.072917,4.473916667,96.91666667,-1.076666667,0.165583333,238.18433771666665 +2016-04-12 17:00:00,0.0,1023.116667,0.0,99.45833333,-2.900583333,0.3915,238.18475561666665 +2016-04-12 18:00:00,0.0,1023.25625,0.0,99.925,-4.301833333,0.494333333,238.18538249999997 +2016-04-12 19:00:00,0.0,1023.529167,0.0,99.94166667,-5.45675,0.159,238.18642731666668 +2016-04-12 20:00:00,0.0,1023.697917,0.0,99.85,-6.154,0.22041666699999998,238.19123343333334 +2016-04-12 21:00:00,0.0,1023.775,0.0,99.80833333,-6.690083333,0.239166667,238.19436788333334 +2016-04-12 22:00:00,0.0,1023.6461810000001,0.0,99.68333333,-7.126416667000001,0.21591666699999998,238.1952037333333 +2016-04-12 23:00:00,0.0,1023.9,0.0,99.69166667,-7.372166667,0.304416667,238.19394996666665 +2016-05-12 00:00:00,0.0,1023.7065970000001,0.0,99.34166667,-7.495666667,0.309083333,238.08790493333336 +2016-05-12 01:00:00,0.0,1023.19375,0.0,99.275,-7.879916667000001,0.2295,238.08959458333337 +2016-05-12 02:00:00,0.0,1022.994097,0.0,99.15833333,-8.325833333,0.1035,238.08858080000002 +2016-05-12 03:00:00,0.0,1023.014583,0.0,98.96666667,-8.158833332999999,0.35200000000000004,238.08891871666665 +2016-05-12 04:00:00,0.0,1022.943403,0.0,98.875,-8.558333333,0.043083333,238.08925663333335 +2016-05-12 05:00:00,0.0,1022.850347,0.0,98.675,-8.753333332999999,0.239666667,238.0914531666667 +2016-05-12 06:00:00,0.0,1022.755903,0.0,98.50833333,-8.8125,0.202916667,238.08959455000002 +2016-05-12 07:00:00,0.0,1022.71875,0.06675,98.18333333,-8.91,0.35908333299999995,238.0895945666667 +2016-05-12 08:00:00,0.0,1023.0725699999999,5.553916667,98.11666667,-8.848333333,0.04675,238.08942560000003 +2016-05-12 09:00:00,0.0,1023.279167,17.26416667,98.775,-5.857666667,0.21508333300000002,238.08520151666673 +2016-05-12 10:00:00,0.0,1023.435069,66.77083333,98.68333333,-2.544083333,0.006333333000000001,238.0843567166667 +2016-05-12 11:00:00,0.0,1023.325,65.60416667,97.075,-2.034333333,0.903083333,238.0843567166667 +2016-05-12 12:00:00,0.0,1023.172917,146.4133333,94.125,0.242916667,1.016833333,238.08232916666665 +2016-05-12 13:00:00,0.0,1022.922917,180.8,90.6,1.116666667,1.9671666669999999,238.08131538333336 +2016-05-12 14:00:00,0.0,1022.841667,121.75833329999999,87.13333333,1.224833333,1.4930833330000002,238.07979469999995 +2016-05-12 15:00:00,0.0,1022.702083,52.33833333,89.06666667,0.308333333,1.356916667,238.07962573333336 +2016-05-12 16:00:00,0.0,1022.8107640000001,4.752166667,95.76666667,-1.561,1.22,238.07911886666662 +2016-05-12 17:00:00,0.0,1022.8767359999999,0.0005,99.525,-2.834083333,0.6386666670000001,238.07945676666668 +2016-05-12 18:00:00,0.0,1022.908681,0.0,99.98333333,-3.8033333330000003,0.622,238.07911886666668 +2016-05-12 19:00:00,0.0,1023.108333,0.0,100.0,-3.069083333,0.9341666670000001,238.0824981333334 +2016-05-12 20:00:00,0.0,1023.7138890000001,0.0,100.0,-2.817583333,1.30075,238.08368085000004 +2016-05-12 21:00:00,0.0,1023.966667,0.0,99.99166667,-2.7341666669999998,1.5465,238.08435670000003 +2016-05-12 22:00:00,0.0,1024.291667,0.0,100.0,-2.891333333,1.0335,238.08604633333334 +2016-05-12 23:00:00,0.0,1024.607639,0.0,100.0,-2.9940833330000003,1.15275,238.08655323333335 +2016-06-12 00:00:00,0.0,1024.556597,0.0,100.0,-3.140083333,0.458083333,238.0451572333333 +2016-06-12 01:00:00,0.0,1024.641667,0.0,100.0,-3.085416667,0.8145,238.04752268333334 +2016-06-12 02:00:00,0.0,1024.827083,0.0,100.0,-3.0915,1.4046666669999999,238.04718476666667 +2016-06-12 03:00:00,0.0,1025.151736,0.0,100.0,-2.958583333,1.290166667,238.04735371666666 +2016-06-12 04:00:00,0.0,1025.247917,0.0,100.0,-3.002166667,0.9884166670000001,238.04853648333335 +2016-06-12 05:00:00,0.0,1025.345486,0.0,100.0,-3.156416667,0.700583333,238.04904335 +2016-06-12 06:00:00,0.0,1025.741667,0.0,100.0,-3.10075,0.94575,238.05140885 +2016-06-12 07:00:00,0.0,1026.160764,0.018333333,100.0,-3.069833333,0.8265,238.05191575 +2016-06-12 08:00:00,0.0,1026.661806,3.2720833330000003,100.0,-3.064916667,0.799583333,238.05259158333334 +2016-06-12 09:00:00,0.0,1027.184722,17.78833333,100.0,-2.884416667,1.145416667,238.05191576666664 +2016-06-12 10:00:00,0.0,1027.637847,35.30916667,100.0,-2.6710000000000003,0.656833333,238.05208471666666 +2016-06-12 11:00:00,0.0,1027.6225689999999,49.98916667,100.0,-2.544,0.59125,238.05123993333333 +2016-06-12 12:00:00,0.0,1027.826736,53.52916667,100.0,-2.3744166669999998,0.9155833329999999,238.05039510000003 +2016-06-12 13:00:00,0.0,1027.733333,42.40583333,100.0,-2.182833333,0.714833333,238.04988820000003 +2016-06-12 14:00:00,0.0,1027.856597,27.83333333,100.0,-2.085666667,0.705583333,238.0890876833333 +2016-06-12 15:00:00,0.0,1028.0388890000002,14.194,100.0,-2.198833333,0.906666667,238.10919433333333 +2016-06-12 16:00:00,0.0,1028.3444439999998,1.6025,100.0,-2.341416667,1.234,238.10784261666663 +2016-06-12 17:00:00,0.0,1028.805208,0.0,100.0,-2.3209999999999997,0.982083333,238.10581506666665 +2016-06-12 18:00:00,0.0,1029.061111,0.0,100.0,-2.4893333330000003,1.1714166670000001,238.10344953333333 +2016-06-12 19:00:00,0.0,1029.207639,0.0,100.0,-2.681833333,1.168833333,238.1019289 +2016-06-12 20:00:00,0.0,1029.286111,0.0,100.0,-2.981833333,1.160583333,238.10091511666667 +2016-06-12 21:00:00,0.0,1029.452083,0.0,100.0,-2.859333333,1.348,238.09990133333335 +2016-06-12 22:00:00,0.0,1029.55,0.0,100.0,-2.7095,0.989916667,238.09871856666666 +2016-06-12 23:00:00,0.0,1029.826736,0.0,100.0,-2.679166667,1.147916667,238.0973668833333 +2016-07-12 00:00:00,0.0,1029.870139,0.0,100.0,-2.60875,0.762333333,237.98706226666664 +2016-07-12 01:00:00,0.0,1029.925695,0.0,100.0,-2.392416667,1.235833333,237.98905221666666 +2016-07-12 02:00:00,0.0,1030.066319,0.0,100.0,-2.182583333,1.128416667,237.99203711666667 +2016-07-12 03:00:00,0.0,1030.149653,0.0,100.0,-2.139416667,1.410833333,237.99203711666667 +2016-07-12 04:00:00,0.0,1030.070833,0.0,100.0,-2.12675,1.405416667,237.99303208333333 +2016-07-12 05:00:00,0.0,1029.7881949999999,0.0,100.0,-2.136166667,1.5549166669999999,237.99303208333333 +2016-07-12 06:00:00,0.0,1029.782986,0.0,100.0,-2.0460833330000003,1.567333333,237.99502200000003 +2016-07-12 07:00:00,0.0,1029.7125,0.007083333000000001,100.0,-2.035916667,1.474,237.99402706666663 +2016-07-12 08:00:00,0.0,1029.7524310000001,2.56475,100.0,-1.9279166669999999,1.461583333,237.99422604999998 +2016-07-12 09:00:00,0.0,1029.971875,20.70583333,100.0,-1.6671666669999998,1.4638333330000002,237.99203713333335 +2016-07-12 10:00:00,0.0,1030.3357640000002,38.16166667,100.0,-1.440333333,1.5223333330000002,237.9876592666666 +2016-07-12 11:00:00,0.0,1030.325347,54.76666667,100.0,-1.208166667,1.317,237.98586831666668 +2016-07-12 12:00:00,0.0,1029.8,59.04083333,100.0,-1.1,1.52575,237.97969953333333 +2016-07-12 13:00:00,0.0,1029.2,45.47666667,100.0,-1.122916667,1.6,237.97631664999997 +2016-07-12 14:00:00,0.0,1029.135764,33.03416667,100.0,-1.038,1.2745,237.9745257 +2016-07-12 15:00:00,0.0,1029.372917,20.01416667,100.0,-1.000166667,1.071083333,237.96875490000002 +2016-07-12 16:00:00,0.0,1029.029167,2.5066666669999997,100.0,-1.027583333,1.075333333,237.96855589999998 +2016-07-12 17:00:00,0.0,1029.145833,0.0,100.0,-1.10125,0.821916667,237.9683569 +2016-07-12 18:00:00,0.0,1029.327083,0.0,100.0,-0.951416667,0.62675,237.96517301666668 +2016-07-12 19:00:00,0.0,1029.628472,0.0,100.0,-1.059583333,0.44583333299999994,237.96596898333337 +2016-07-12 20:00:00,0.0,1029.927083,0.0,100.0,-1.23425,0.7240833329999999,237.9709438333333 +2016-07-12 21:00:00,0.0,1029.86875,0.0,100.0,-1.187666667,0.99775,237.97333176666666 +2016-07-12 22:00:00,0.0,1029.604514,0.0,100.0,-1.2348333329999999,0.766916667,237.97671463333333 +2016-07-12 23:00:00,0.0,1029.74757,0.0,100.0,-1.2359166670000001,0.521083333,237.9783065833333 +2016-08-12 00:00:00,0.0,1029.5961810000001,0.0,100.0,-1.2819999999999998,0.507583333,237.9307471666667 +2016-08-12 01:00:00,0.0,1029.30625,0.0,100.0,-1.240083333,0.7958333329999999,237.93353305000002 +2016-08-12 02:00:00,0.0,1029.415278,0.0,100.0,-1.099666667,0.957416667,237.93512501666666 +2016-08-12 03:00:00,0.0,1029.208333,0.0,100.0,-1.172916667,1.188166667,237.93850791666668 +2016-08-12 04:00:00,0.0,1028.879167,0.0,100.0,-1.3546666669999998,1.337083333,237.94268678333333 +2016-08-12 05:00:00,0.0,1028.672917,0.0,100.0,-1.446916667,1.6769999999999998,237.94407973333333 +2016-08-12 06:00:00,0.0,1028.4625,0.0,100.0,-1.613666667,1.25325,237.94766159999998 +2016-08-12 07:00:00,0.0,1028.728819,0.018833333,100.0,-1.7516666669999998,1.4829166669999998,237.94845758333335 +2016-08-12 08:00:00,0.0,1029.1642359999998,5.625833332999999,100.0,-1.7550833330000002,1.214666667,237.95044753333332 +2016-08-12 09:00:00,0.0,1029.1253470000001,29.60083333,100.0,-1.620916667,1.122583333,237.95144246666666 +2016-08-12 10:00:00,0.0,1028.935764,48.2025,100.0,-1.470083333,0.7795,237.95223845 +2016-08-12 11:00:00,0.0,1028.4086810000001,70.82083333,100.0,-1.204083333,1.275166667,237.95044751666663 +2016-08-12 12:00:00,0.0,1027.739236,72.1125,100.0,-0.99725,1.267916667,237.95024851666665 +2016-08-12 13:00:00,0.0,1027.029861,55.39333333,100.0,-0.776083333,1.4040833330000002,237.94925353333335 +2016-08-12 14:00:00,0.0,1026.85625,46.40916667,100.0,-0.620833333,1.166,237.9492535666667 +2016-08-12 15:00:00,0.0,1026.416667,18.74741667,100.0,-0.627166667,1.237,237.94805958333333 +2016-08-12 16:00:00,0.0,1026.177778,2.1705,100.0,-0.7264166670000001,0.966,237.9452736833333 +2016-08-12 17:00:00,0.0,1025.9538189999998,0.0,100.0,-0.8866666670000001,0.714916667,237.94427873333333 +2016-08-12 18:00:00,0.0,1026.029514,0.0,100.0,-0.823916667,0.795,237.94527368333334 +2016-08-12 19:00:00,0.0,1026.1951390000002,0.0,100.0,-0.910166667,1.0384166670000001,237.94507468333333 +2016-08-12 20:00:00,0.0,1026.4819439999999,0.0,100.0,-0.9824166670000001,0.663166667,237.94527368333334 +2016-08-12 21:00:00,0.0,1026.1125,0.0,100.0,-0.985,0.787166667,237.94786059999998 +2016-08-12 22:00:00,0.0,1025.99757,0.0,100.0,-1.033083333,1.103416667,237.94925356666667 +2016-08-12 23:00:00,0.0,1026.119097,0.0,100.0,-0.9025,0.645166667,237.95184045 +2016-09-12 00:00:00,0.0,1025.910417,0.0,100.0,-0.896833333,1.14075,237.82382901666665 +2016-09-12 01:00:00,0.0,1025.7,0.0,100.0,-0.823416667,1.05725,237.82618758333334 +2016-09-12 02:00:00,0.0,1025.229167,0.0,100.0,-0.6968333329999999,1.038916667,237.8291647 +2016-09-12 03:00:00,0.0,1025.317014,0.0,100.0,-0.38575,0.279083333,237.8317494833333 +2016-09-12 04:00:00,0.0,1025.4538189999998,0.0,100.0,-0.17825,0.755583333,237.83487366666665 +2016-09-12 05:00:00,0.0,1025.375,0.0,100.0,-0.0315,1.120083333,237.83679883333332 +2016-09-12 06:00:00,0.0,1025.3586810000002,0.0,100.0,0.073,0.783083333,237.8385736833333 +2016-09-12 07:00:00,0.0,1025.647569,0.0014166670000000001,100.0,0.14400000000000002,0.487333333,237.83961931666667 +2016-09-12 08:00:00,0.0,1025.922917,2.055333333,100.0,0.22825,0.275666667,237.84015875 +2016-09-12 09:00:00,0.0,1026.526736,10.23016667,100.0,0.44591666700000004,0.18275,237.84010496666667 +2016-09-12 10:00:00,0.0,1026.7475689999999,40.3225,100.0,1.080916667,0.35766666700000005,237.83754863333334 +2016-09-12 11:00:00,0.0,1026.6559029999999,38.47833333,100.0,1.402833333,0.70175,237.83245813333335 +2016-09-12 12:00:00,0.0,1026.517361,39.20333333,100.0,1.6915,0.501,237.82524005000002 +2016-09-12 13:00:00,0.0,1026.283333,45.3525,100.0,2.16675,0.3605,237.82089938333334 +2016-09-12 14:00:00,0.0,1026.232986,39.01916667,100.0,2.5164166669999997,0.44991666700000005,237.81215156666667 +2016-09-12 15:00:00,0.0,1026.056597,32.36,100.0,2.777916667,0.49558333299999996,237.80849586666668 +2016-09-12 16:00:00,0.0,1025.935417,4.1144166669999995,100.0,2.449083333,0.626083333,237.80788840000002 +2016-09-12 17:00:00,0.0,1025.712847,0.0,100.0,2.07475,0.1645,237.80577029999998 +2016-09-12 18:00:00,0.0,1025.525347,0.0,100.0,0.8593333329999999,0.3425,237.8050806 +2016-09-12 19:00:00,0.0,1025.151736,0.0,100.0,1.833083333,0.202583333,237.80513276666667 +2016-09-12 20:00:00,0.0,1025.2125,0.0,100.0,1.593666667,0.20175,237.80530835000002 +2016-09-12 21:00:00,0.0,1025.208333,0.0,100.0,1.065833333,0.26925,237.80542225 +2016-09-12 22:00:00,0.0,1024.771528,0.0,100.0,1.87225,0.268333333,237.8058446166667 +2016-09-12 23:00:00,0.0,1024.6642359999998,0.0,100.0,2.228416667,0.044000000000000004,237.80774606666668 +2016-10-12 00:00:00,0.0,1024.356597,0.0,100.0,2.307583333,0.24825,237.96251704999997 +2016-10-12 01:00:00,0.0,1023.927083,0.0,100.0,1.596333333,0.242083333,237.96164224999998 +2016-10-12 02:00:00,0.0,1023.029861,0.0,100.0,1.014166667,0.354333333,237.96133220000002 +2016-10-12 03:00:00,0.0,1022.3857640000001,0.0,100.0,0.055833333,0.41333333299999997,237.96148721666665 +2016-10-12 04:00:00,0.0,1022.11007,0.0,100.0,-0.603666667,0.317083333,237.96097468333332 +2016-10-12 05:00:00,0.0,1021.756945,0.0,100.0,-0.661083333,0.50725,237.96144766666666 +2016-10-12 06:00:00,0.0,1021.119097,0.0,100.0,-0.59475,0.20725,237.96117241666664 +2016-10-12 07:00:00,0.0,1021.147917,0.017416667,100.0,-1.0465,0.16025,237.96192381666665 +2016-10-12 08:00:00,0.0,1021.242014,7.152333333,100.0,-0.9159166670000001,0.235333333,237.96084341666668 +2016-10-12 09:00:00,0.0,1021.5659720000001,36.16583333,100.0,-0.312583333,0.3055,237.96193805 +2016-10-12 10:00:00,0.0,1022.0809029999999,70.23,100.0,0.546416667,0.48925,237.96251543333332 +2016-10-12 11:00:00,0.0,1021.821181,83.285,100.0,0.9511666670000001,1.0705,237.9628682166667 +2016-10-12 12:00:00,0.0,1021.247917,69.765,100.0,1.6246666669999998,0.9793333329999999,237.96206775 +2016-10-12 13:00:00,0.0,1020.633681,97.06833333,100.0,1.9825,0.789166667,237.96155838333334 +2016-10-12 14:00:00,0.0,1020.2086810000001,63.7875,100.0,2.57825,0.174333333,237.96398026666668 +2016-10-12 15:00:00,0.0,1019.7375,36.505,100.0,1.7976666669999999,0.26475,237.9641147 +2016-10-12 16:00:00,0.0,1019.485417,6.8600833329999995,100.0,0.47858333299999994,0.120833333,237.9632652833333 +2016-10-12 17:00:00,0.0,1019.5586810000001,0.00425,100.0,-0.1465,0.39125,237.9635057 +2016-10-12 18:00:00,0.0,1019.270833,0.0,100.0,-0.298083333,0.11741666699999999,237.96441368333333 +2016-10-12 19:00:00,0.0,1019.1208330000001,0.0,100.0,0.452083333,0.45775,237.9647316666667 +2016-10-12 20:00:00,0.0,1018.4482640000001,0.0,100.0,1.698916667,0.264333333,237.96367811666667 +2016-10-12 21:00:00,0.0,1018.0625,0.0,99.4,1.95925,0.35566666700000005,237.9638648 +2016-10-12 22:00:00,0.0,1017.639931,0.0,100.0,2.181666667,0.42125,237.96453551666664 +2016-10-12 23:00:00,0.0,1016.859028,0.0,100.0,2.634666667,0.36791666700000003,237.9672247166667 +2016-11-12 00:00:00,0.0,1016.000347,0.0,100.0,2.2864166669999997,0.6828333329999999,238.12481935000002 +2016-11-12 01:00:00,0.0,1014.952778,0.0,100.0,1.8581666669999999,0.261416667,238.12135975 +2016-11-12 02:00:00,0.0,1014.2,0.0,100.0,2.015,0.564583333,238.11824188333333 +2016-11-12 03:00:00,0.0,1013.554514,0.0,97.75833333,1.9250833330000001,0.271333333,238.11529958333335 +2016-11-12 04:00:00,0.0,1012.484028,0.0,95.10833333,5.919083333,2.510583333,238.11325738333335 +2016-11-12 05:00:00,0.0,1011.758333,0.0,91.45833333,8.008916667000001,2.539583333,238.11013160000002 +2016-11-12 06:00:00,0.0,1011.6875,0.0,91.66666667,8.560833333,3.3289166669999997,238.10795174999998 +2016-11-12 07:00:00,0.0,1012.5909720000001,0.0,94.46666667,8.305833332999999,3.478,238.10535908333335 +2016-11-12 08:00:00,0.0,1014.2763890000001,1.697583333,89.31666667,8.345,2.3255,238.10332795 +2016-11-12 09:00:00,0.0,1015.5138890000001,19.98666667,87.11666667,8.184166667000001,2.107583333,238.09986518333332 +2016-11-12 10:00:00,0.0,1016.2,46.26,91.95833333,8.19,1.888333333,238.09724083333333 +2016-11-12 11:00:00,2.91760704,1016.555903,74.90583333,92.69166667,7.935416667,2.2128333330000003,238.09799066666665 +2016-11-12 12:00:00,0.0,1016.622917,55.82666667,93.78333333,7.725,2.0175,238.09644041666664 +2016-11-12 13:00:00,0.0,1016.775,62.8375,88.85,8.081166667,2.457833333,238.09370696666667 +2016-11-12 14:00:00,0.0,1016.7145830000001,78.78166667,82.58333333,8.335,2.331583333,238.09386513333334 +2016-11-12 15:00:00,0.0,1016.916667,19.60166667,82.85,7.974166667,2.2635,238.09350761666667 +2016-11-12 16:00:00,0.0,1016.795833,3.024083333,87.10833333,7.4124166670000005,2.060083333,238.09292863333334 +2016-11-12 17:00:00,0.0,1016.99375,0.0,85.40833333,7.162333332999999,1.805333333,238.0926011833333 +2016-11-12 18:00:00,0.0,1017.05,0.0,85.375,7.116166667000001,2.514166667,238.09247781666667 +2016-11-12 19:00:00,0.0,1017.1579859999999,0.0,85.39166667,7.041333333,2.388833333,238.09122969999999 +2016-11-12 20:00:00,0.0,1017.3711810000001,0.0,86.025,7.0495,2.786083333,238.08818776666666 +2016-11-12 21:00:00,0.0,1017.201736,0.0,89.45,6.707999999999999,2.123333333,238.08793308333335 +2016-11-12 22:00:00,0.0,1017.3625,0.0,92.21666667,6.2905,2.013833333,238.08664388333332 +2016-11-12 23:00:00,2.96060988,1017.510417,0.0,93.31666667,6.131583332999999,2.0695,238.08534988333335 +2016-12-12 00:00:00,0.0,1017.5954859999999,0.0,95.99166667,6.091416667000001,2.3080000000000003,238.03571371666666 +2016-12-12 01:00:00,3.244785288,1017.662847,0.0,97.46666667,6.099666667,2.237166667,238.03490853333332 +2016-12-12 02:00:00,2.867276664,1017.947917,0.0,98.075,5.998583332999999,1.687416667,238.0342821 +2016-12-12 03:00:00,0.0,1018.235417,0.0,99.55833333,5.91125,1.117916667,238.03525655 +2016-12-12 04:00:00,0.0,1018.6138890000001,0.0,99.93333333,5.728333332999999,1.329083333,238.0345668166666 +2016-12-12 05:00:00,2.652375984,1019.0121529999999,0.0,100.0,5.899416667000001,1.168833333,238.03438016666666 +2016-12-12 06:00:00,0.0,1019.289236,0.0,100.0,5.854666667,1.191916667,238.03553494999997 +2016-12-12 07:00:00,0.0,1019.752431,0.0,100.0,5.919083333,1.537833333,238.03444030000003 +2016-12-12 08:00:00,0.0,1020.397222,4.279583333,100.0,5.2895,0.90425,238.03383441666668 +2016-12-12 09:00:00,0.0,1021.195486,20.79333333,100.0,5.444833332999999,0.818583333,238.03511891666668 +2016-12-12 10:00:00,0.0,1021.864583,24.9875,99.33333333,6.459916667000001,1.205833333,238.03302291666662 +2016-12-12 11:00:00,0.0,1021.9809029999999,31.255,97.725,6.710666667000001,1.6873333330000002,238.0341286666667 +2016-12-12 12:00:00,0.0,1022.0815970000001,34.78916667,96.5,6.833166667,1.260166667,238.0339435666667 +2016-12-12 13:00:00,0.0,1022.068403,26.74583333,95.73333333,6.8419166670000005,1.29,238.03329341666665 +2016-12-12 14:00:00,0.0,1022.0277779999999,25.16583333,96.10833333,6.900833333,0.856583333,238.03230953333332 +2016-12-12 15:00:00,0.0,1021.945139,11.49433333,95.43333333,6.878666667,1.5409166669999999,238.03351646666667 +2016-12-12 16:00:00,0.0,1022.054167,0.76375,95.43333333,6.589833333,0.47075,238.03443238333338 +2016-12-12 17:00:00,0.0,1022.26875,0.0,98.13333333,6.065083333,0.300333333,238.0358829666667 +2016-12-12 18:00:00,0.0,1022.39375,0.0,98.86666667,6.071000000000001,0.340916667,238.0353941666667 +2016-12-12 19:00:00,0.0,1022.36875,0.0,99.55,5.49625,0.32,238.03593990000002 +2016-12-12 20:00:00,0.0,1022.427083,0.0,99.925,5.185083333,0.30625,238.03552704999996 +2016-12-12 21:00:00,0.0,1022.520833,0.0,99.18333333,4.705,0.08433333300000001,238.03497811666668 +2016-12-12 22:00:00,0.0,1022.7854169999999,0.0,99.93333333,4.326583333,0.075,238.03500659999997 +2016-12-12 23:00:00,0.0,1022.7204859999999,0.0,100.0,4.236333333,0.26666666699999997,238.03510941666664 +2016-12-13 00:00:00,0.0,1022.460764,0.0,100.0,4.34625,0.202833333,238.036212 +2016-12-13 01:00:00,0.0,1021.9899310000001,0.0,100.0,4.555416667,0.24975,238.03618668333334 +2016-12-13 02:00:00,0.0,1021.875347,0.0,100.0,4.16575,0.199083333,238.03521221666665 +2016-12-13 03:00:00,0.0,1021.5121529999999,0.0,100.0,2.1895833330000003,0.10075,238.03657581666667 +2016-12-13 04:00:00,0.0,1021.312847,0.0,100.0,2.27275,0.107916667,238.03496705 +2016-12-13 05:00:00,0.0,1021.1125,0.0,100.0,1.958083333,0.231,238.03495915000005 +2016-12-13 06:00:00,0.0,1020.889931,0.0,100.0,1.165583333,0.194666667,238.0368321 +2016-12-13 07:00:00,0.0,1020.9788189999999,0.005666666999999999,100.0,0.697916667,0.13475,238.0360475 +2016-12-13 08:00:00,0.0,1021.6684029999999,8.509416667,100.0,1.6890833330000001,0.13875,238.0338471 +2016-12-13 09:00:00,0.0,1021.60625,30.3225,100.0,2.70275,0.275666667,238.03427576666664 +2016-12-13 10:00:00,0.0,1021.508681,37.40333333,100.0,3.85825,0.524083333,238.0340210833333 +2016-12-13 11:00:00,0.0,1021.382986,76.8325,99.95833333,4.479833333,1.131083333,238.03320958333333 +2016-12-13 12:00:00,0.0,1021.102431,57.55833333,98.325,4.67775,1.3794166669999999,238.03388346666668 +2016-12-13 13:00:00,0.0,1020.783681,39.75416667,98.025,4.361416667,1.1886666670000001,238.03318113333333 +2016-12-13 14:00:00,0.0,1020.564583,19.7425,98.11666667,4.4414166669999995,0.8059999999999999,238.03325228333335 +2016-12-13 15:00:00,27.47199492,1020.389583,9.286583333,99.71666667,4.186083333,0.584,238.0332523 +2016-12-13 16:00:00,2.60425512,1020.083333,2.285583333,100.0,3.722083333,0.9710833329999999,238.03422991666665 +2016-12-13 17:00:00,2.53729176,1020.266667,0.0,100.0,3.5373333330000003,0.675083333,238.03503823333332 +2016-12-13 18:00:00,0.0,1020.352083,0.0,100.0,3.104916667,0.841916667,238.03582443333335 +2016-12-13 19:00:00,0.0,1020.310417,0.0,100.0,2.9899166669999997,0.675,238.03640971666664 +2016-12-13 20:00:00,0.0,1020.3479169999999,0.0,100.0,3.064083333,0.349916667,238.03795996666668 +2016-12-13 21:00:00,0.0,1020.3788189999999,0.0,100.0,3.10575,0.570666667,238.03739838333334 +2016-12-13 22:00:00,0.0,1020.467361,0.0,100.0,3.166833333,0.532333333,238.037207 +2016-12-13 23:00:00,0.0,1020.274653,0.0,100.0,3.198666667,0.32666666699999997,238.03792041666665 +2016-12-14 00:00:00,0.0,1020.048264,0.0,100.0,3.2726666669999998,0.433666667,238.0384962166667 +2016-12-14 01:00:00,0.0,1019.945833,0.0,100.0,3.23,0.804083333,238.03802641666667 +2016-12-14 02:00:00,2.516603688,1019.798264,0.0,100.0,3.23825,0.689916667,238.03790776666668 +2016-12-14 03:00:00,5.098260671999999,1019.5746529999999,0.0,100.0,3.2795,0.764,238.03982498333332 +2016-12-14 04:00:00,9.840415823999999,1019.429167,0.0,100.0,3.298666667,0.35016666700000004,238.03941053333332 +2016-12-14 05:00:00,7.254270384,1019.2690970000001,0.0,100.0,3.4163333330000003,0.23475,238.0404182 +2016-12-14 06:00:00,15.32103456,1019.453819,0.0,100.0,3.5188333330000003,0.48416666700000005,238.04045776666666 +2016-12-14 07:00:00,0.0,1019.6916669999999,0.0,100.0,3.54375,0.4065,238.042356 +2016-12-14 08:00:00,2.479382928,1020.099653,1.84475,100.0,3.655166667,0.46175,238.043457 +2016-12-14 09:00:00,0.0,1020.48125,11.4985,100.0,3.8645,0.6788333329999999,238.04449788333332 +2016-12-14 10:00:00,0.0,1020.7,41.505,100.0,4.258583333,0.586666667,238.04668561666668 +2016-12-14 11:00:00,0.0,1020.826736,48.05166667,100.0,4.568166667,1.01,238.04816785 +2016-12-14 12:00:00,0.0,1020.869097,64.235,100.0,4.882166667,0.944583333,238.04884171666666 +2016-12-14 13:00:00,0.0,1020.7767359999999,49.04166667,100.0,5.183083333,0.7051666670000001,238.0494982 +2016-12-14 14:00:00,0.0,1020.88125,32.39583333,100.0,5.548833332999999,0.534083333,238.04834026666666 +2016-12-14 15:00:00,0.0,1020.96875,14.615,100.0,5.4135,0.804333333,238.04938745 +2016-12-14 16:00:00,0.0,1020.9375,3.016666667,100.0,5.188583333,0.550583333,238.05002495 +2016-12-14 17:00:00,0.0,1021.2875,0.0,100.0,5.033083333,0.6153333329999999,238.05177293333335 +2016-12-14 18:00:00,0.0,1021.304167,0.0,100.0,4.955083333,0.578666667,238.05176186666665 +2016-12-14 19:00:00,0.0,1021.60625,0.0,100.0,4.959166667,0.564333333,238.05122718333337 +2016-12-14 20:00:00,0.0,1022.3079859999999,0.0,100.0,4.967416667,0.444333333,238.0489160333333 +2016-12-14 21:00:00,0.0,1022.672917,0.0,100.0,5.006416667,0.307666667,238.0499695833333 +2016-12-14 22:00:00,0.0,1022.5100689999999,0.0,100.0,5.00525,0.375833333,238.05081748333336 +2016-12-14 23:00:00,0.0,1022.5375,0.0,100.0,5.053666667,0.76825,238.05066720000002 +2016-12-15 00:00:00,0.0,1022.579514,0.0,100.0,5.193,0.810583333,238.05093609999997 +2016-12-15 01:00:00,0.0,1022.7767359999999,0.0,100.0,5.19575,0.318916667,238.05005974999997 +2016-12-15 02:00:00,0.0,1023.139236,0.0,100.0,5.309,0.656833333,238.04952665000005 +2016-12-15 03:00:00,0.0,1023.220833,0.0,100.0,5.254166667,0.49408333299999996,238.04947604999998 +2016-12-15 04:00:00,0.0,1023.1520830000001,0.0,100.0,5.201916667,0.251083333,238.05036348333337 +2016-12-15 05:00:00,0.0,1022.9253470000001,0.0,100.0,5.240416667,0.5379999999999999,238.0503887666667 +2016-12-15 06:00:00,0.0,1023.0413189999999,0.0,100.0,5.3158333330000005,0.9674166670000001,238.05070833333332 +2016-12-15 07:00:00,0.0,1023.11875,0.0,100.0,5.3815,0.5665,238.04938271666666 +2016-12-15 08:00:00,0.0,1023.2541669999999,1.47725,100.0,5.310666667,0.105833333,238.05003446666663 +2016-12-15 09:00:00,0.0,1023.5746529999999,10.25825,100.0,5.458083332999999,0.060333332999999996,238.04756829999997 +2016-12-15 10:00:00,0.0,1023.781597,29.105,100.0,5.972916667000001,0.586,238.0478214166667 +2016-12-15 11:00:00,0.0,1023.7375,35.97,100.0,6.442083332999999,1.08125,238.04566530000002 +2016-12-15 12:00:00,0.0,1023.3024310000001,28.6175,100.0,6.709416667,1.194583333,238.04704945 +2016-12-15 13:00:00,0.0,1022.877431,29.32916667,100.0,6.747166667,1.3728333330000002,238.0462932833333 +2016-12-15 14:00:00,0.0,1022.7,20.99333333,99.83333333,6.77825,1.4226666669999999,238.04584248333333 +2016-12-15 15:00:00,0.0,1022.4951390000001,6.748583332999999,99.75833333,6.6675,1.52025,238.04670618333333 +2016-12-15 16:00:00,0.0,1022.570833,0.790416667,98.99166667,6.0135,1.797,238.04714751666668 +2016-12-15 17:00:00,0.0,1022.5670140000001,0.0,97.9,5.579,1.7105,238.0475746333333 +2016-12-15 18:00:00,0.0,1022.689583,0.0,96.61666667,5.280583333,2.00325,238.04755565000002 +2016-12-15 19:00:00,0.0,1022.725,0.0,96.35,5.0495,1.87525,238.04905366666665 +2016-12-15 20:00:00,0.0,1022.647917,0.0,95.29166667,4.87375,1.9485,238.04847945000003 +2016-12-15 21:00:00,0.0,1022.8625,0.0,95.125,4.73275,1.9770833330000002,238.04733258333331 +2016-12-15 22:00:00,0.0,1022.860417,0.0,94.93333333,4.606916667,2.00325,238.04716808333333 +2016-12-15 23:00:00,0.0,1023.1288199999999,0.0,95.46666667,4.315166667,2.447083333,238.04573488333335 +2016-12-16 00:00:00,0.0,1023.242014,0.0,95.375,3.899333333,2.006583333,238.04661283333334 +2016-12-16 01:00:00,0.0,1023.30382,0.0,95.6,3.6745,1.819916667,238.0488164 +2016-12-16 02:00:00,0.0,1023.579167,0.0,95.675,3.614083333,1.8268333330000002,238.04625848333333 +2016-12-16 03:00:00,0.0,1023.491667,0.0,96.04166667,3.5510833330000002,1.90775,238.04705576666666 +2016-12-16 04:00:00,0.0,1023.528819,0.0,95.6,3.43325,1.8705833330000001,238.045988 +2016-12-16 05:00:00,0.0,1023.789583,0.0,95.73333333,3.3039166669999998,1.8938333330000001,238.04500563333332 +2016-12-16 06:00:00,0.0,1024.1954859999998,0.0,95.41666667,3.225916667,1.297666667,238.04456589999998 +2016-12-16 07:00:00,0.0,1024.552083,0.0,93.825,3.153083333,1.1875,238.0444978666667 +2016-12-16 08:00:00,0.0,1025.166667,1.28825,92.83333333,3.118083333,1.276583333,238.04176281666665 +2016-12-16 09:00:00,0.0,1025.534722,9.225416667000001,92.16666667,3.164333333,1.530583333,238.04258536666666 +2016-12-16 10:00:00,0.0,1025.845833,21.13166667,91.425,3.281166667,1.74975,238.04244774999998 +2016-12-16 11:00:00,0.0,1026.014583,31.51583333,91.075,3.261,1.807833333,238.04300139999998 +2016-12-16 12:00:00,0.0,1025.9625,36.26416667,91.03333333,3.261583333,2.034583333,238.04186721666667 +2016-12-16 13:00:00,0.0,1025.99375,31.77583333,90.95,3.21625,1.77825,238.04100508333337 +2016-12-16 14:00:00,0.0,1026.147917,26.18916667,91.425,3.07525,1.936833333,238.04214245 +2016-12-16 15:00:00,0.0,1026.501389,11.61016667,91.81666667,2.953833333,1.4825,238.04115535000003 +2016-12-16 16:00:00,0.0,1027.069097,1.177833333,92.425,2.594,1.63425,238.04119016666667 +2016-12-16 17:00:00,0.0,1027.872222,0.0,92.25833333,2.226416667,1.3671666669999998,238.03972691666664 +2016-12-16 18:00:00,0.0,1028.245486,0.0,93.00833333,1.8714166669999999,1.7096666669999998,238.04050205 +2016-12-16 19:00:00,0.0,1028.869097,0.0,94.00833333,1.493916667,1.450833333,238.03917800000002 +2016-12-16 20:00:00,0.0,1029.291319,0.0,94.725,1.318333333,1.296666667,238.0384282 +2016-12-16 21:00:00,0.0,1029.599653,0.0,95.90833333,1.197083333,0.976833333,238.03754235 +2016-12-16 22:00:00,0.0,1029.9288199999999,0.0,96.49166667,1.048583333,1.084416667,238.03755024999998 +2016-12-16 23:00:00,0.0,1030.172917,0.0,96.975,0.8823333329999999,1.009083333,238.03849306666666 +2016-12-17 00:00:00,0.0,1030.514236,0.0,97.625,0.791166667,1.1385,238.03828743333335 +2016-12-17 01:00:00,0.0,1030.641667,0.0,98.50833333,0.63475,0.877083333,238.0386908 +2016-12-17 02:00:00,0.0,1030.949653,0.0,99.075,0.5196666670000001,0.518916667,238.03807859999998 +2016-12-17 03:00:00,0.0,1031.248611,0.0,99.80833333,0.45025,0.783083333,238.03728766666666 +2016-12-17 04:00:00,0.0,1031.211806,0.0,100.0,0.405916667,0.574416667,238.03771635000007 +2016-12-17 05:00:00,0.0,1031.314583,0.0,100.0,0.565583333,0.3575,238.03874298333335 +2016-12-17 06:00:00,0.0,1031.915972,0.0,100.0,0.7705833329999999,0.81825,238.03528344999995 +2016-12-17 07:00:00,0.0,1032.287153,0.0,99.975,0.6505,0.842583333,238.03657109999997 +2016-12-17 08:00:00,0.0,1032.548264,2.9668333330000003,100.0,0.63625,1.24275,238.03677988333334 +2016-12-17 09:00:00,0.0,1033.201389,14.44383333,100.0,0.74775,1.3846666669999999,238.03488636666668 +2016-12-17 10:00:00,0.0,1033.76875,23.355,99.44166667,0.9298333329999999,1.261583333,238.03504298333334 +2016-12-17 11:00:00,0.0,1033.842361,51.68583333,98.33333333,1.4375,1.2035833329999999,238.03449250000003 +2016-12-17 12:00:00,0.0,1033.6538189999999,47.72333333,98.69166667,1.642166667,1.5423333330000002,238.03502085000002 +2016-12-17 13:00:00,0.0,1033.647917,42.43083333,98.475,2.000416667,0.92675,238.0336082166667 +2016-12-17 14:00:00,0.0,1033.489583,34.46166667,97.55,1.87375,1.256,238.03331396666667 +2016-12-17 15:00:00,0.0,1033.7034720000001,17.92691667,97.78333333,1.9159166669999999,1.063166667,238.03353071666666 +2016-12-17 16:00:00,2.593831728,1033.752778,2.334666667,99.13333333,1.879,0.79475,238.0357564166667 +2016-12-17 17:00:00,0.0,1034.090972,0.0,100.0,1.821916667,0.27066666699999997,238.03588296666666 +2016-12-17 18:00:00,0.0,1034.165625,0.0,100.0,1.5643333330000002,0.32858333300000003,238.03535620000002 +2016-12-17 19:00:00,0.0,1034.03507,0.0,100.0,1.52575,0.303333333,238.03442765 +2016-12-17 20:00:00,0.0,1034.2034720000001,0.0,100.0,1.7381666669999998,0.252416667,238.03254678333334 +2016-12-17 21:00:00,0.0,1034.600347,0.0,100.0,1.918833333,0.254166667,238.03308306666668 +2016-12-17 22:00:00,0.0,1034.675,0.0,100.0,1.97525,0.206833333,238.03125595000003 +2016-12-17 23:00:00,0.0,1034.3357640000002,0.0,100.0,2.073083333,0.441166667,238.0316973166667 +2016-12-18 00:00:00,0.0,1033.53125,0.0,100.0,2.035416667,0.751833333,238.03042706666665 +2016-12-18 01:00:00,0.0,1033.504514,0.0,100.0,1.982,0.519083333,238.03198678333334 +2016-12-18 02:00:00,0.0,1033.297917,0.0,100.0,2.046833333,0.133416667,238.0325689166667 +2016-12-18 03:00:00,0.0,1033.050695,0.0,100.0,2.175416667,0.298583333,238.0313160833333 +2016-12-18 04:00:00,0.0,1032.7496529999999,0.0,100.0,2.24575,0.6215,238.03177641666664 +2016-12-18 05:00:00,0.0,1032.114583,0.0,100.0,2.301416667,0.201416667,238.03374740000004 +2016-12-18 06:00:00,0.0,1032.157986,0.0,100.0,2.219083333,0.39675,238.0318033 +2016-12-18 07:00:00,0.0,1031.6170140000002,0.0,100.0,2.414166667,0.5093333329999999,238.03255628333332 +2016-12-18 08:00:00,0.0,1031.525347,1.3955,100.0,2.600833333,0.73475,238.03183493333333 +2016-12-18 09:00:00,0.0,1031.472917,18.35833333,100.0,3.1910000000000003,0.384,238.03184916666666 +2016-12-18 10:00:00,0.0,1031.922917,28.48583333,100.0,3.4493333330000002,0.616166667,238.03165776666665 +2016-12-18 11:00:00,0.0,1031.411111,30.085,98.26666667,3.856833333,0.3105,238.03097119999998 +2016-12-18 12:00:00,0.0,1030.7809029999999,39.1725,95.35,4.3703333330000005,0.46183333299999996,238.03186340000002 +2016-12-18 13:00:00,0.0,1030.1402779999999,45.41833333,94.25,5.166416667,0.66575,238.03261481666667 +2016-12-18 14:00:00,0.0,1029.633333,40.385,94.33333333,5.636583333,1.322333333,238.03185706666662 +2016-12-18 15:00:00,0.0,1029.137847,17.16916667,94.28333333,5.491416667,0.9115,238.03303083333333 +2016-12-18 16:00:00,0.0,1028.5628470000001,2.788416667,96.64166667,4.4295,0.258416667,238.0355681666667 +2016-12-18 17:00:00,0.0,1028.154167,0.0,99.775,3.57875,0.072833333,238.0350224333333 +2016-12-18 18:00:00,0.0,1028.0,0.0,100.0,3.7033333330000002,0.29225,238.0330957 +2016-12-18 19:00:00,0.0,1027.900347,0.0,100.0,4.1514166669999994,0.45491666700000005,238.0329834 +2016-12-18 20:00:00,0.0,1027.820833,0.0,100.0,3.9363333330000003,0.555416667,238.03227788333334 +2016-12-18 21:00:00,0.0,1027.683333,0.0,100.0,3.3609166669999997,0.21833333300000002,238.0324265666667 +2016-12-18 22:00:00,0.0,1027.622917,0.0,100.0,3.153333333,0.3685,238.0320136833333 +2016-12-18 23:00:00,0.0,1027.3274310000002,0.0,100.0,3.0460833330000003,0.42908333299999996,238.03057733333333 +2016-12-19 00:00:00,0.0,1026.902431,0.0,100.0,2.85975,0.2285,238.03396254999998 +2016-12-19 01:00:00,2.61762024,1026.755903,0.0,100.0,2.890166667,0.502166667,238.03210068333337 +2016-12-19 02:00:00,0.0,1026.454514,0.0,100.0,2.9175,0.2785,238.03324121666665 +2016-12-19 03:00:00,0.0,1026.314583,0.0,100.0,2.960333333,0.075333333,238.03200105 +2016-12-19 04:00:00,0.0,1025.8774310000001,0.0,100.0,2.936833333,0.375166667,238.03293750000003 +2016-12-19 05:00:00,0.0,1025.6125,0.0,100.0,2.85775,0.37591666700000004,238.03207378333332 +2016-12-19 06:00:00,0.0,1025.520833,0.0,100.0,2.834916667,0.283083333,238.03284416666668 +2016-12-19 07:00:00,0.0,1025.047917,0.0,100.0,2.705666667,0.29933333300000003,238.03201528333332 +2016-12-19 08:00:00,0.0,1024.941667,1.053833333,100.0,2.8185,1.150833333,238.03295016666667 +2016-12-19 09:00:00,0.0,1025.016667,11.61441667,100.0,3.061416667,0.57075,238.03204058333333 +2016-12-19 10:00:00,0.0,1024.925,43.09083333,100.0,3.90075,1.62675,238.03227786666665 +2016-12-19 11:00:00,0.0,1024.767361,71.15916667,94.85833333,4.819083333,2.088833333,238.0313556166667 +2016-12-19 12:00:00,0.0,1024.167014,69.95083333,89.16666667,4.75525,1.9118333330000001,238.0320674666667 +2016-12-19 13:00:00,0.0,1023.537153,69.52083333,88.89166667,4.412333333,1.867583333,238.0323316333333 +2016-12-19 14:00:00,0.0,1022.813542,54.395,88.85,4.169583333,1.33975,238.0331399833333 +2016-12-19 15:00:00,0.0,1022.6138890000001,27.7885,91.19166667,3.89875,1.6736666669999998,238.0314347 +2016-12-19 16:00:00,0.0,1022.927083,1.50175,91.85833333,2.992416667,2.437166667,238.03265435 +2016-12-19 17:00:00,0.0,1022.977778,0.0,91.65833333,2.563166667,1.8585833330000001,238.03307986666667 +2016-12-19 18:00:00,0.0,1023.0118050000001,0.0,91.125,2.563166667,1.528666667,238.03269863333333 +2016-12-19 19:00:00,0.0,1023.072917,0.0,88.94166667,2.886,1.73625,238.03138091666662 +2016-12-19 20:00:00,0.0,1023.0875,0.0,89.675,2.7685,1.1555,238.03157866666666 +2016-12-19 21:00:00,0.0,1022.8631939999999,0.0,91.675,2.70375,1.363583333,238.0344387166667 +2016-12-19 22:00:00,0.0,1022.787153,0.0,91.34166667,2.775416667,1.1740000000000002,238.03219245 +2016-12-19 23:00:00,0.0,1022.88125,0.0,90.89166667,2.826083333,1.376416667,238.03236961666664 +2016-12-20 00:00:00,0.0,1022.6663189999999,0.0,93.66666667,2.2818333330000002,1.9393333330000002,238.03374585000003 +2016-12-20 01:00:00,0.0,1022.416667,0.0,97.29166667,0.761083333,1.337083333,238.03162611666667 +2016-12-20 02:00:00,0.0,1022.334028,0.0,99.66666667,-1.124916667,0.110416667,238.03366833333334 +2016-12-20 03:00:00,0.0,1021.9107640000001,0.0,100.0,-1.5330000000000001,0.008916667,238.03358291666666 +2016-12-20 04:00:00,0.0,1021.360764,0.0,100.0,-2.2095833330000003,0.04,238.0335054 +2016-12-20 05:00:00,0.0,1021.166667,0.0,100.0,-2.538416667,0.0020833329999999997,238.03235695 +2016-12-20 06:00:00,0.0,1020.95,0.0,100.0,-2.891,0.15733333300000002,238.03368886666667 +2016-12-20 07:00:00,0.0,1020.564931,0.0,100.0,-2.633916667,0.8190000000000001,238.03486896666666 +2016-12-20 08:00:00,0.0,1020.563889,2.695666667,100.0,-2.119333333,1.8585833330000001,238.0321007 +2016-12-20 09:00:00,0.0,1020.7795140000001,15.95666667,100.0,-1.9350833330000001,2.253666667,238.03040810000002 +2016-12-20 10:00:00,0.0,1020.3166669999999,33.80333333,100.0,-1.8508333330000002,2.161666667,238.03016288333333 +2016-12-20 11:00:00,0.0,1020.2875,43.105,100.0,-1.670333333,1.7518333330000002,238.03014865 +2016-12-20 12:00:00,0.0,1019.682292,47.925,100.0,-1.398833333,2.185,238.03059 +2016-12-20 13:00:00,0.0,1019.0267359999999,45.88083333,100.0,-1.2685,1.5555,238.02868066666667 +2016-12-20 14:00:00,0.0,1018.648611,33.91916667,100.0,-1.068,1.803166667,238.02719688333332 +2016-12-20 15:00:00,0.0,1018.48125,11.2595,100.0,-1.123583333,1.57375,238.02917265 +2016-12-20 16:00:00,0.0,1018.6892359999999,1.1685,100.0,-0.84175,1.33775,238.02842915 +2016-12-20 17:00:00,0.0,1019.00625,0.0,100.0,-0.715166667,0.6124166670000001,238.0287408 +2016-12-20 18:00:00,0.0,1019.274653,0.0,100.0,-0.58375,0.61725,238.02871703333335 +2016-12-20 19:00:00,0.0,1019.514236,0.0,100.0,-0.260083333,0.783166667,238.02834373333334 +2016-12-20 20:00:00,0.0,1019.406597,0.0,100.0,-1.371833333,0.23775,238.02962346666672 +2016-12-20 21:00:00,0.0,1019.70625,0.0,100.0,-2.343,0.150833333,238.03077983333336 +2016-12-20 22:00:00,0.0,1020.187153,0.0,100.0,-3.010166667,0.13025,238.0313160833333 +2016-12-20 23:00:00,0.0,1020.1756949999999,0.0,100.0,-3.7295,0.136833333,238.03180644999998 +2016-12-21 00:00:00,0.0,1020.3392359999999,0.0,100.0,-3.94525,0.11458333300000001,238.0324740333333 +2016-12-21 01:00:00,0.0,1020.716667,0.0,100.0,-4.219333333,0.2855,238.03014075 +2016-12-21 02:00:00,0.0,1021.146875,0.0,100.0,-4.52375,0.254,238.02964718333337 +2016-12-21 03:00:00,0.0,1021.5045140000001,0.0,100.0,-4.702,0.3255,238.03119586666665 +2016-12-21 04:00:00,0.0,1021.768056,0.0,100.0,-5.055083333,0.22366666699999999,238.02959501666666 +2016-12-21 05:00:00,0.0,1022.5,0.0,100.0,-5.056583333,0.174416667,238.02765245 +2016-12-21 06:00:00,0.0,1022.9104169999999,0.0,100.0,-4.43275,0.201416667,238.03041915000003 +2016-12-21 07:00:00,0.0,1023.440625,0.0,100.0,-3.590166667,0.42758333299999995,238.02713043333333 +2016-12-21 08:00:00,0.0,1024.252083,2.191666667,100.0,-2.5026666669999997,0.306166667,238.02589815 +2016-12-21 09:00:00,0.0,1024.603819,13.71083333,100.0,-1.589083333,0.5205,238.02636798333336 +2016-12-21 10:00:00,0.0,1025.040972,14.44583333,100.0,-1.00375,0.7959999999999999,238.02472439999997 +2016-12-21 11:00:00,0.0,1025.204861,28.58416667,100.0,-0.543583333,1.187333333,238.02457726666663 +2016-12-21 12:00:00,0.0,1025.147569,33.91583333,100.0,-0.30125,1.20425,238.02330705 +2016-12-21 13:00:00,0.0,1025.0336810000001,34.77166667,100.0,-0.140333333,0.873833333,238.02343198333332 +2016-12-21 14:00:00,0.0,1025.1097220000001,24.19833333,100.0,-0.25725,1.4275,238.02271381666665 +2016-12-21 15:00:00,0.0,1025.423611,10.05225,100.0,-0.30225,1.40175,238.0224101166667 +2016-12-21 16:00:00,0.0,1025.401736,1.71625,100.0,-0.37508333299999996,1.59125,238.022785 +2016-12-21 17:00:00,0.0,1025.782986,0.0,100.0,-0.393166667,2.220416667,238.02255563333333 +2016-12-21 18:00:00,0.0,1026.014583,0.0,100.0,-0.42025,2.5260833330000003,238.02142933333332 +2016-12-21 19:00:00,0.0,1026.014583,0.0,100.0,-0.29691666699999997,2.406666667,238.0231693833333 +2016-12-21 20:00:00,0.0,1026.00625,0.0,99.99166667,-0.10308333300000001,1.290916667,238.02275496666667 +2016-12-21 21:00:00,0.0,1025.7420140000002,0.0,100.0,0.0135,1.3013333329999999,238.0214404 +2016-12-21 22:00:00,0.0,1025.5600689999999,0.0,100.0,0.0785,1.6925833330000002,238.02097531666664 +2016-12-21 23:00:00,0.0,1025.379514,0.0,100.0,0.11933333300000001,1.6280000000000001,238.0218580333333 +2016-12-22 00:00:00,0.0,1025.5625,0.0,100.0,0.20925,1.165833333,238.02241011666663 +2016-12-22 01:00:00,0.0,1025.389583,0.0,100.0,0.270833333,0.6485833329999999,238.02277395 +2016-12-22 02:00:00,0.0,1025.41875,0.0,100.0,0.23075,0.79625,238.02140876666667 +2016-12-22 03:00:00,0.0,1025.458333,0.0,100.0,0.163333333,1.422916667,238.02197350000003 +2016-12-22 04:00:00,0.0,1025.489583,0.0,100.0,0.09025,1.191083333,238.02016383333333 +2016-12-22 05:00:00,0.0,1025.21875,0.0,100.0,-0.027416667000000002,1.6211666669999998,238.02208738333334 +2016-12-22 06:00:00,0.0,1025.3,0.0,100.0,-0.233833333,1.5874166669999998,238.02175205000003 +2016-12-22 07:00:00,0.0,1025.229167,0.0,100.0,-0.2995,1.999,238.02164763333334 +2016-12-22 08:00:00,0.0,1025.347917,5.772583332999999,100.0,-0.242083333,2.5545,238.021423 +2016-12-22 09:00:00,0.0,1025.760069,29.75166667,100.0,-0.11641666699999999,2.418916667,238.02021603333333 +2016-12-22 10:00:00,0.0,1025.95,39.47916667,100.0,0.032916667000000004,2.441083333,238.02073648333337 +2016-12-22 11:00:00,0.0,1025.808333,53.34333333,99.96666667,0.07675,2.31975,238.02142143333333 +2016-12-22 12:00:00,8.636385288,1025.4625,52.59833333,100.0,0.122,2.576083333,238.02124586666665 +2016-12-22 13:00:00,11.02840303,1025.3586810000002,46.11416667,100.0,0.2835,1.9435,238.02121893333333 +2016-12-22 14:00:00,10.74659206,1025.377083,22.75833333,100.0,0.35700000000000004,1.6673333330000002,238.02163181666666 +2016-12-22 15:00:00,5.252383512,1025.485417,13.58725,100.0,0.456166667,1.52225,238.02263475000004 +2016-12-22 16:00:00,7.594338576,1025.674653,1.1098333329999999,100.0,0.373666667,0.93225,238.02398566666668 +2016-12-22 17:00:00,0.0,1026.025,0.0,100.0,0.41100000000000003,0.454083333,238.02498223333336 +2016-12-22 18:00:00,2.423685432,1026.628819,0.0,100.0,0.47425,0.296083333,238.02473705 +2016-12-22 19:00:00,0.0,1026.989583,0.0,100.0,0.5096666670000001,0.281916667,238.02764611666666 +2016-12-22 20:00:00,0.0,1027.428819,0.0,100.0,0.47116666700000004,0.443166667,238.0269327 +2016-12-22 21:00:00,0.0,1027.920139,0.0,100.0,0.559333333,0.11708333300000001,238.02751164999998 +2016-12-22 22:00:00,0.0,1028.0375,0.0,100.0,0.5765,0.194333333,238.02820293333332 +2016-12-22 23:00:00,0.0,1028.682986,0.0,100.0,0.63425,0.070833333,238.02849400000002 +2016-12-23 00:00:00,0.0,1028.716667,0.0,99.51666667,0.70325,0.24833333300000002,238.02887208333334 +2016-12-23 01:00:00,0.0,1028.4086810000001,0.0,100.0,0.77375,0.520333333,238.03054571666667 +2016-12-23 02:00:00,0.0,1029.428472,0.0,100.0,0.814583333,0.15825,238.02717156666662 +2016-12-23 03:00:00,0.0,1030.235417,0.0,100.0,0.8514166670000001,0.072416667,238.02846868333333 +2016-12-23 04:00:00,0.0,1030.6350699999998,0.0,100.0,0.9375,0.47675,238.02950483333333 +2016-12-23 05:00:00,0.0,1030.677083,0.0,100.0,1.018666667,0.786333333,238.02941781666667 +2016-12-23 06:00:00,0.0,1030.635764,0.0,100.0,1.023833333,0.403083333,238.02954278333334 +2016-12-23 07:00:00,0.0,1030.678819,0.0,100.0,0.702916667,0.24475,238.03254045000003 +2016-12-23 08:00:00,0.0,1031.2350689999998,2.377,100.0,0.840583333,0.5175,238.02935140000002 +2016-12-23 09:00:00,0.0,1031.491667,25.04833333,100.0,1.195916667,0.792666667,238.02950324999998 +2016-12-23 10:00:00,0.0,1032.243403,31.13666667,100.0,1.776083333,0.54225,238.02913624999997 +2016-12-23 11:00:00,0.0,1032.089931,41.16416667,100.0,2.3845,0.15791666699999998,238.03031314999998 +2016-12-23 12:00:00,0.0,1031.512847,59.94583333,100.0,2.90725,0.433166667,238.03179538333333 +2016-12-23 13:00:00,0.0,1030.754514,40.71583333,99.99166667,3.3455,0.854583333,238.0304017666667 +2016-12-23 14:00:00,0.0,1029.723264,28.67166667,99.94166667,3.283416667,1.14475,238.03209909999998 +2016-12-23 15:00:00,0.0,1029.021528,20.68,99.38333333,3.115333333,1.1318333329999999,238.0312638833333 +2016-12-23 16:00:00,0.0,1028.404167,2.069,100.0,2.8875,1.275666667,238.03316689999997 +2016-12-23 17:00:00,0.0,1027.8045140000002,0.0,100.0,2.640583333,1.667416667,238.03446558333334 +2016-12-23 18:00:00,0.0,1027.342014,0.0,100.0,2.731833333,0.7779166670000001,238.03388665 +2016-12-23 19:00:00,0.0,1027.079514,0.0,100.0,2.7345,0.6749166670000001,238.03312100000002 +2016-12-23 20:00:00,0.0,1026.376736,0.0,100.0,3.1318333330000003,1.636916667,238.03451305 +2016-12-23 21:00:00,0.0,1025.561111,0.0,99.88333333,3.327833333,2.876833333,238.0336968 +2016-12-23 22:00:00,0.0,1024.9149300000001,0.0,99.75833333,3.4739999999999998,1.7825,238.0325626 +2016-12-23 23:00:00,0.0,1024.577083,0.0,97.25,3.915666667,1.55775,238.0340132 +2016-12-24 00:00:00,0.0,1023.5902779999999,0.0,92.54166667,4.716,1.519166667,238.03403846666666 +2016-12-24 01:00:00,0.0,1023.123611,0.0,92.09166667,5.329833333,1.848,238.03349115 +2016-12-24 02:00:00,0.0,1022.764583,0.0,92.80833333,5.007583333,1.204583333,238.03119586666665 +2016-12-24 03:00:00,0.0,1021.9899310000001,0.0,92.68333333,5.292083333,1.4529166669999998,238.0328979666667 +2016-12-24 04:00:00,0.0,1021.577083,0.0,99.00833333,5.4771666670000005,1.7204166669999998,238.03366989999998 +2016-12-24 05:00:00,0.0,1021.26875,0.0,100.0,5.35125,1.893,238.0354622 +2016-12-24 06:00:00,5.98390332,1021.2625,0.0,100.0,5.505916667,2.277666667,238.03372371666669 +2016-12-24 07:00:00,0.0,1021.46875,0.0,100.0,5.825083332999999,2.7833333330000003,238.03423463333334 +2016-12-24 08:00:00,3.504816168,1021.865972,0.516,99.61666667,5.986583333,2.6118333330000003,238.03318743333332 +2016-12-24 09:00:00,0.0,1022.0274300000001,21.7335,97.60833333,6.316166667,3.042,238.03313525 +2016-12-24 10:00:00,0.0,1021.915972,60.49916667,96.29166667,6.6725833329999995,3.53,238.03169733333334 +2016-12-24 11:00:00,0.0,1022.2920140000001,64.3,92.95,7.128833332999999,2.5284166669999997,238.03456525 +2016-12-24 12:00:00,0.0,1021.696528,88.8,90.04166667,7.676,3.06775,238.03473608333334 +2016-12-24 13:00:00,0.0,1021.868056,66.69333333,87.19166667,7.755416667,3.276333333,238.03317474999997 +2016-12-24 14:00:00,0.0,1021.8336810000001,70.8525,78.37416667,7.8205,2.51425,238.03432006666665 +2016-12-24 15:00:00,0.0,1022.079167,33.80666667,78.4925,6.9315,2.071583333,238.03455893333333 +2016-12-24 16:00:00,0.0,1022.0895830000001,4.058083333,79.90083333,6.126916667000001,1.6511666669999998,238.0379409666667 +2016-12-24 17:00:00,0.0,1022.5180550000001,0.0,80.95583333,6.0275,1.693,238.03709940000007 +2016-12-24 18:00:00,0.0,1022.702778,0.0,84.7,5.745666667,1.8659166669999998,238.03675298333337 +2016-12-24 19:00:00,0.0,1022.5100689999999,0.0,85.4,5.910416667000001,2.118416667,238.0374759166667 +2016-12-24 20:00:00,0.0,1022.547569,0.0,86.09166667,6.6325833329999995,3.3111666669999997,238.03649514999998 +2016-12-24 21:00:00,0.0,1022.548264,0.0,86.49166667,7.019666667,3.61725,238.03466331666667 +2016-12-24 22:00:00,0.0,1022.51875,0.0,86.29166667,7.14125,3.397833333,238.03501135000002 +2016-12-24 23:00:00,0.0,1021.984028,0.0,87.44166667,7.140916667000001,2.984833333,238.03496231666668 +2016-12-25 00:00:00,0.0,1021.537153,0.0,90.36666667,7.071916667000001,3.2614166669999998,238.03578645000002 +2016-12-25 01:00:00,0.0,1021.895833,0.0,94.10833333,6.781000000000001,2.850166667,238.03431375 +2016-12-25 02:00:00,0.0,1022.0329859999999,0.0,93.74166667,6.846166667,2.127,238.03589086666668 +2016-12-25 03:00:00,3.0285823919999997,1021.750347,0.0,96.83333333,6.712666667000001,2.343333333,238.03631321666668 +2016-12-25 04:00:00,3.8172056160000003,1021.221181,0.0,96.68333333,6.8513333329999995,2.74375,238.03674035000003 +2016-12-25 05:00:00,0.0,1020.721181,0.0,93.73333333,7.3135,3.8480000000000003,238.03577063333333 +2016-12-25 06:00:00,0.0,1020.897569,0.0,91.8,7.507916667000001,2.800166667,238.03343106666662 +2016-12-25 07:00:00,0.0,1020.7694439999999,0.0,92.775,7.4226666670000006,3.3185,238.03407805000003 +2016-12-25 08:00:00,0.0,1020.591319,1.75475,95.79166667,7.2256666670000005,3.640333333,238.03416346666666 +2016-12-25 09:00:00,0.0,1020.437153,7.627166667000001,95.30833333,7.603666667000001,4.061666667,238.0336952166667 +2016-12-25 10:00:00,0.0,1021.196181,11.40466667,95.40833333,7.757833333,3.4979166669999997,238.03198838333333 +2016-12-25 11:00:00,0.0,1020.9163199999999,18.8275,95.55,7.962833333,3.266166667,238.03219718333332 +2016-12-25 12:00:00,0.0,1020.7458330000001,23.135,97.16666667,8.135,3.0590833330000002,238.03192034999998 +2016-12-25 13:00:00,0.0,1020.837847,15.80416667,94.15,8.7025,2.695083333,238.0329359166667 +2016-12-25 14:00:00,0.0,1020.797569,15.155,93.325,8.969166667,3.0291666669999997,238.03281726666668 +2016-12-25 15:00:00,0.0,1021.135417,7.134333333,94.14166667,8.874166667,2.827,238.03250723333335 +2016-12-25 16:00:00,0.0,1021.195833,1.438916667,98.41666667,8.31,3.1928333330000003,238.03367466666668 +2016-12-25 17:00:00,0.0,1021.345833,0.0,99.64166667,8.040333333,3.18225,238.0350683 +2016-12-25 18:00:00,0.0,1021.6371529999999,0.0,97.425,8.113583333,2.8664166669999998,238.03451463333332 +2016-12-25 19:00:00,0.0,1021.4253470000001,0.0,98.175,7.9715,2.6875,238.0372607666667 +2016-12-25 20:00:00,0.0,1021.6520830000001,0.0,98.275,7.942333333,2.71725,238.03697129999998 +2016-12-25 21:00:00,0.0,1021.9079859999999,0.0,98.96666667,7.856,2.25825,238.03525020000004 +2016-12-25 22:00:00,0.0,1022.0017359999999,0.0,99.98333333,7.74075,2.38925,238.03526445 +2016-12-25 23:00:00,0.0,1022.156597,0.0,100.0,7.87375,2.382166667,238.03481520000003 +2016-12-26 00:00:00,0.0,1022.2222220000001,0.0,98.55833333,8.094583333,2.394583333,238.03575008333334 +2016-12-26 01:00:00,0.0,1022.475,0.0,97.68333333,8.544166667,2.620666667,238.03586398333331 +2016-12-26 02:00:00,0.0,1022.4899310000001,0.0,96.775,8.7,2.174416667,238.03424886666667 +2016-12-26 03:00:00,0.0,1022.2774310000001,0.0,95.93333333,8.8675,2.609083333,238.0337585 +2016-12-26 04:00:00,0.0,1021.854167,0.0,99.44166667,8.6775,3.069083333,238.03472345 +2016-12-26 05:00:00,0.0,1021.53125,0.0,100.0,8.6575,2.4914166669999998,238.0350936166667 +2016-12-26 06:00:00,0.0,1021.23368,0.0,100.0,8.536666667,2.707416667,238.0353783666667 +2016-12-26 07:00:00,0.0,1021.008333,0.0,99.90833333,8.735,2.983,238.03632430000002 +2016-12-26 08:00:00,0.0,1021.204167,2.2153333330000002,96.10833333,9.2425,3.657083333,238.03537676666664 +2016-12-26 09:00:00,0.0,1021.104167,22.305,93.24166667,9.649166667000001,3.4348333330000003,238.03544163333333 +2016-12-26 10:00:00,0.0,1021.329167,33.9525,91.49166667,10.045,3.620166667,238.03511258333333 +2016-12-26 11:00:00,0.0,1021.164931,47.9225,89.525,10.65166667,4.16225,238.03561405000002 +2016-12-26 12:00:00,14.06022401,1021.086458,51.3325,90.86666667,10.6475,3.740416667,238.03522331666667 +2016-12-26 13:00:00,5.88153624,1023.153819,40.7275,86.91666667,7.864333332999999,3.611333333,238.03512525 +2016-12-26 14:00:00,0.0,1023.591667,41.58416667,85.525,6.9371666670000005,1.7209166669999998,238.0371105 +2016-12-26 15:00:00,0.0,1024.309722,24.7585,87.425,6.650583332999999,1.98325,238.03657424999997 +2016-12-26 16:00:00,0.0,1025.1409720000001,2.910416667,84.95,6.46825,2.55275,238.03679255 +2016-12-26 17:00:00,0.0,1025.908333,0.014083333,83.45833333,6.233833333,2.322666667,238.03822573333335 +2016-12-26 18:00:00,0.0,1026.9534720000001,0.0,80.65166667,6.012083333,2.44575,238.03733671666666 +2016-12-26 19:00:00,0.0,1027.868403,0.0,77.93,5.520416667,1.9409999999999998,238.03852628333334 +2016-12-26 20:00:00,0.0,1028.455903,0.0,81.64166667,4.992666667,1.86675,238.03871135 +2016-12-26 21:00:00,0.0,1028.775347,0.0,83.55833333,4.3515,2.1284166669999998,238.03989775000002 +2016-12-26 22:00:00,0.0,1029.228819,0.0,84.825,3.978333333,2.058916667,238.03850571666666 +2016-12-26 23:00:00,0.0,1029.661806,0.0,85.65833333,3.234333333,1.9924166669999999,238.03858638333335 +2016-12-27 00:00:00,0.0,1030.09375,0.0,87.00833333,3.2795,2.0724166669999997,238.03851996666666 +2016-12-27 01:00:00,0.0,1030.126736,0.0,86.25833333,3.5213333330000003,2.3908333330000002,238.03741738333338 +2016-12-27 02:00:00,0.0,1030.495833,0.0,86.325,3.379333333,2.106833333,238.03710735 +2016-12-27 03:00:00,0.0,1030.766667,0.0,87.45833333,3.33175,2.288583333,238.03743163333334 +2016-12-27 04:00:00,0.0,1030.985417,0.0,87.90833333,3.347333333,2.2368333330000003,238.03740630000004 +2016-12-27 05:00:00,0.0,1031.4767359999998,0.0,88.34166667,3.555,2.002916667,238.03618666666668 +2016-12-27 06:00:00,0.0,1032.005903,0.0,89.23333333,3.7713333330000003,1.966166667,238.03552705 +2016-12-27 07:00:00,0.0,1032.430903,0.0,90.375,4.336833333,1.56025,238.03389768333332 +2016-12-27 08:00:00,0.0,1033.318403,1.560416667,91.35833333,4.527083333,1.607833333,238.03444028333334 +2016-12-27 09:00:00,0.0,1033.783333,25.96716667,91.85,4.462583333,1.85825,238.03400368333334 +2016-12-27 10:00:00,0.0,1034.176736,43.19,89.325,4.836916667,1.9433333330000002,238.0343612 +2016-12-27 11:00:00,0.0,1034.702083,46.18166667,87.05833333,5.6445,1.99725,238.03369998333332 +2016-12-27 12:00:00,0.0,1034.887847,43.53666667,84.35833333,6.051916667,2.55175,238.03249456666666 +2016-12-27 13:00:00,0.0,1035.1246529999999,75.1575,81.62833333,6.461416667000001,2.3655,238.03305615 +2016-12-27 14:00:00,0.0,1035.6100689999998,54.095,80.80833333,6.6348333329999996,2.4715,238.0322984333333 +2016-12-27 15:00:00,0.0,1036.057639,25.955,81.81666667,6.392583332999999,2.18275,238.03340415000002 +2016-12-27 16:00:00,0.0,1036.610417,3.262,84.76666667,6.245166667,1.75875,238.03424888333333 +2016-12-27 17:00:00,0.0,1036.81007,0.008,90.29166667,5.0671666669999995,0.939333333,238.0350857 +2016-12-27 18:00:00,0.0,1037.3204859999998,0.0,91.7,4.046916667,0.7485,238.0344054666667 +2016-12-27 19:00:00,0.0,1037.9996529999999,0.0,90.78333333,5.128416667,1.2945,238.03264801666668 +2016-12-27 20:00:00,0.0,1038.50625,0.0,91.65833333,5.457083333,1.68625,238.03349115 +2016-12-27 21:00:00,0.0,1038.676389,0.0,91.825,5.685416667,2.07425,238.03253411666665 +2016-12-27 22:00:00,0.0,1038.6,0.0,93.125,5.303916667,1.33475,238.03457316666666 +2016-12-27 23:00:00,0.0,1038.571528,0.0,93.625,5.145916667,0.7859999999999999,238.03396571666667 +2016-12-28 00:00:00,0.0,1038.552083,0.0,93.95,4.805833333,1.20175,238.03403850000004 +2016-12-28 01:00:00,0.0,1038.857986,0.0,91.25,5.158333333,0.769083333,238.03316846666664 +2016-12-28 02:00:00,0.0,1039.332639,0.0,90.81666667,5.342333333,0.9973333329999999,238.03208645000004 +2016-12-28 03:00:00,0.0,1038.899653,0.0,89.26666667,5.096166667,0.9933333329999999,238.03330131666667 +2016-12-28 04:00:00,0.0,1038.4375,0.0,87.93333333,5.0351666669999995,0.828,238.03228578333332 +2016-12-28 05:00:00,0.0,1038.620139,0.0,86.29166667,5.059666667,1.13025,238.03189346666667 +2016-12-28 06:00:00,0.0,1038.795486,0.0,87.29166667,4.88125,1.197916667,238.03146794999998 +2016-12-28 07:00:00,0.0,1039.029861,0.0,88.8,4.424583333,1.229083333,238.03141574999998 +2016-12-28 08:00:00,0.0,1039.303125,1.8720833330000002,91.28333333,3.9160000000000004,0.77875,238.03201526666666 +2016-12-28 09:00:00,0.0,1039.7038189999998,26.1175,90.98333333,4.2773333330000005,0.465583333,238.03144104999998 +2016-12-28 10:00:00,0.0,1039.869097,68.25416667,86.25,5.337166667,0.812916667,238.03051883333333 +2016-12-28 11:00:00,0.0,1039.90625,100.2166667,82.32166667,5.969416667000001,1.180416667,238.02967411666665 +2016-12-28 12:00:00,0.0,1039.3694449999998,110.61666670000001,77.665,6.385,1.322833333,238.03089531666663 +2016-12-28 13:00:00,0.0,1039.051389,90.80333333,75.1775,6.3660000000000005,1.045833333,238.02960290000001 +2016-12-28 14:00:00,0.0,1038.7836810000001,43.81083333,75.64083333,6.170333332999999,0.6828333329999999,238.0301043833333 +2016-12-28 15:00:00,0.0,1038.467014,26.17333333,77.75583333,5.910583333,0.8068333329999999,238.03141415000002 +2016-12-28 16:00:00,0.0,1038.404861,3.95975,82.755,5.155,0.91,238.03022301666667 +2016-12-28 17:00:00,0.0,1038.338889,0.002833333,85.56666667,4.9725,0.753833333,238.03230475 +2016-12-28 18:00:00,0.0,1038.433333,0.0,89.55,4.7314166669999995,0.5419166670000001,238.03162611666664 +2016-12-28 19:00:00,0.0,1038.644097,0.0,93.23333333,4.266916667,0.15466666699999998,238.03160398333338 +2016-12-28 20:00:00,0.0,1038.740972,0.0,95.83333333,3.6694166669999997,0.0335,238.03265434999994 +2016-12-28 21:00:00,0.0,1038.777778,0.0,97.25833333,3.398,0.011000000000000001,238.03202633333333 +2016-12-28 22:00:00,0.0,1038.64132,0.0,98.675,3.181833333,0.252916667,238.03264013333333 +2016-12-28 23:00:00,0.0,1038.39375,0.0,99.26666667,1.75225,0.168833333,238.03233005 +2016-12-29 00:00:00,0.0,1038.356945,0.0,99.49166667,1.5659999999999998,0.192833333,238.03233008333333 +2016-12-29 01:00:00,0.0,1037.960069,0.0,98.675,1.4935,0.195,238.03138725 +2016-12-29 02:00:00,0.0,1037.37257,0.0,99.5,0.293666667,0.2395,238.03338516666668 +2016-12-29 03:00:00,0.0,1036.978472,0.0,100.0,-1.08875,0.18558333300000002,238.03275875 +2016-12-29 04:00:00,0.0,1036.585417,0.0,100.0,-2.058333333,0.0,238.0337142 +2016-12-29 05:00:00,0.0,1036.550695,0.0,100.0,-2.590833333,0.106,238.03313365 +2016-12-29 06:00:00,0.0,1036.4243060000001,0.0,100.0,-2.9893333330000003,0.0615,238.0355982166667 +2016-12-29 07:00:00,0.0,1036.467361,0.0,100.0,-3.53525,0.12175,238.0365536666667 +2016-12-29 08:00:00,0.0,1036.48125,2.859833333,100.0,-3.87575,0.10266666699999999,238.03440708333332 +2016-12-29 09:00:00,0.0,1036.886806,12.14083333,100.0,-2.1645,0.009583333000000001,238.03250091666666 +2016-12-29 10:00:00,0.0,1037.088889,47.95,100.0,2.1756666669999998,0.024333333,238.03268598333332 +2016-12-29 11:00:00,0.0,1036.979167,62.01916667,99.88333333,2.350916667,0.491333333,238.03103766666663 +2016-12-29 12:00:00,0.0,1036.7211810000001,138.175,95.81666667,4.71825,0.166583333,238.02904768333335 +2016-12-29 13:00:00,0.0,1036.019097,155.5166667,89.48333333,5.560166667000001,0.93575,238.02888790000006 +2016-12-29 14:00:00,0.0,1035.5211800000002,122.225,86.01666667,5.8745,1.051583333,238.02770306666665 +2016-12-29 15:00:00,0.0,1035.305556,63.76333333,88.71666667,4.81925,0.56625,238.02720321666663 +2016-12-29 16:00:00,0.0,1035.009722,5.972833333,98.53333333,0.8675,0.26466666699999997,238.02875185000002 +2016-12-29 17:00:00,0.0,1034.760417,0.054583333,100.0,-0.9375,0.26358333300000003,238.03111833333332 +2016-12-29 18:00:00,0.0,1034.7524310000001,0.0,100.0,-1.613666667,0.294083333,238.03160556666668 +2016-12-29 19:00:00,0.0,1034.679167,0.0,100.0,-2.2119999999999997,0.2275,238.03273341666667 +2016-12-29 20:00:00,0.0,1034.3753470000001,0.0,100.0,-2.979833333,0.13875,238.03307671666667 +2016-12-29 21:00:00,0.0,1034.432986,0.0,100.0,-3.30525,0.00775,238.03320641666667 +2016-12-29 22:00:00,0.0,1034.666667,0.0,100.0,-3.918416667,0.133333333,238.0317764 +2016-12-29 23:00:00,0.0,1034.614236,0.0,100.0,-4.282166667,0.18816666699999998,238.03270653333334 +2016-12-30 00:00:00,0.0,1034.5149310000002,0.0,100.0,-4.66225,0.210916667,238.03237120000003 +2016-12-30 01:00:00,0.0,1034.083681,0.0,100.0,-4.703583333,0.09041666699999999,238.03264013333333 +2016-12-30 02:00:00,0.0,1034.19132,0.0,100.0,-3.728333333,0.038583333,238.03126861666667 +2016-12-30 03:00:00,0.0,1034.017014,0.0,100.0,-3.272833333,0.321666667,238.03292326666664 +2016-12-30 04:00:00,0.0,1033.9975689999999,0.0,100.0,-3.316083333,0.42108333299999995,238.03101394999996 +2016-12-30 05:00:00,0.0,1034.03125,0.0,100.0,-3.8874166669999997,0.10375,238.0305631 +2016-12-30 06:00:00,0.0,1033.88125,0.0,100.0,-4.3465,0.341416667,238.02891795000002 +2016-12-30 07:00:00,0.0,1034.037847,0.0,100.0,-4.768916667,0.382666667,238.0287661 +2016-12-30 08:00:00,0.0,1034.318056,2.3425,100.0,-5.029166667,0.40075,238.02771730000003 +2016-12-30 09:00:00,0.0,1034.7625,22.01416667,100.0,-4.808,0.309,238.02764928333332 +2016-12-30 10:00:00,0.0,1034.747917,58.74333333,100.0,-4.05925,0.245166667,238.02677450000002 +2016-12-30 11:00:00,0.0,1034.308333,97.79666667,100.0,-3.49475,0.5135833329999999,238.02704976666664 +2016-12-30 12:00:00,0.0,1033.896181,124.79166670000001,100.0,-3.128583333,0.208833333,238.02561658333335 +2016-12-30 13:00:00,0.0,1033.274653,158.85,100.0,-2.952083333,0.148166667,238.0251531 +2016-12-30 14:00:00,0.0,1032.806597,155.5916667,100.0,-2.397833333,0.055083333,238.0242609166667 +2016-12-30 15:00:00,0.0,1032.696528,80.21833333,100.0,-2.740333333,0.149916667,238.02343199999999 +2016-12-30 16:00:00,0.0,1032.31875,6.464083333,100.0,-3.6669166669999997,0.0,238.02711143333332 +2016-12-30 17:00:00,0.0,1032.3625,0.063,100.0,-4.71025,0.000583333,238.02888156666666 +2016-12-30 18:00:00,0.0,1032.185764,0.0,100.0,-5.3754166670000005,0.02975,238.02978638333332 +2016-12-30 19:00:00,0.0,1032.135764,0.0,100.0,-6.084,0.046333333,238.02934348333335 +2016-12-30 20:00:00,0.0,1032.380556,0.0,100.0,-6.627083333,0.0,238.02766351666665 +2016-12-30 21:00:00,0.0,1032.433333,0.0,100.0,-4.978083333,0.021833332999999996,238.02707981666666 +2016-12-30 22:00:00,0.0,1032.295833,0.0,100.0,-3.9380833330000002,0.079166667,238.02589811666667 +2016-12-30 23:00:00,0.0,1032.183681,0.0,100.0,-3.81,0.27399999999999997,238.0266954 +2016-12-31 00:00:00,0.0,1031.808333,0.0,100.0,-4.03225,0.29733333300000003,238.02729493333334 +2016-12-31 01:00:00,0.0,1031.585417,0.0,100.0,-3.9899166669999997,0.6779999999999999,238.02646604999998 +2016-12-31 02:00:00,0.0,1031.559028,0.0,100.0,-3.7785,0.862666667,238.02461208333332 +2016-12-31 03:00:00,0.0,1031.205903,0.0,100.0,-3.57975,0.5721666670000001,238.02390655 +2016-12-31 04:00:00,0.0,1030.853819,0.0,100.0,-3.798916667,0.66275,238.0244887 +2016-12-31 05:00:00,0.0,1030.539931,0.0,100.0,-3.7181666669999998,0.425416667,238.02463263333334 +2016-12-31 06:00:00,0.0,1030.292014,0.0,100.0,-3.954416667,0.43825,238.02444125000002 +2016-12-31 07:00:00,0.0,1030.197917,0.0,100.0,-4.171583333,0.40275,238.02393344999996 +2016-12-31 08:00:00,0.0,1030.075,1.549833333,100.0,-4.343999999999999,0.557416667,238.02416915 +2016-12-31 09:00:00,0.0,1030.25,16.13791667,100.0,-4.32225,1.100833333,238.02437481666666 +2016-12-31 10:00:00,0.0,1030.20625,45.32666667,100.0,-4.010916667,1.209416667,238.02397301666667 +2016-12-31 11:00:00,0.0,1029.881597,63.99166667,100.0,-3.8898333330000003,1.0304166670000001,238.0235648833333 +2016-12-31 12:00:00,0.0,1029.283333,67.91333333,100.0,-3.64775,0.8165,238.0230428666667 +2016-12-31 13:00:00,0.0,1028.634028,61.67416667,100.0,-3.503166667,0.513083333,238.02264581666665 +2016-12-31 14:00:00,0.0,1028.027431,43.85333333,100.0,-3.548166667,0.698583333,238.02488891666667 +2016-12-31 15:00:00,0.0,1027.710069,20.30166667,100.0,-3.7784166669999997,0.9398333329999999,238.0242292833333 +2016-12-31 16:00:00,0.0,1027.397917,3.3845,100.0,-4.10875,0.94575,238.02485725 +2016-12-31 17:00:00,0.0,1026.9527779999999,0.025833332999999997,100.0,-4.350833333,0.8999166670000001,238.02540458333337 +2016-12-31 18:00:00,0.0,1026.580903,0.0,100.0,-4.5805,0.9675,238.02575893333332 +2016-12-31 19:00:00,0.0,1026.082292,0.0,100.0,-4.87075,1.014666667,238.02639326666664 +2016-12-31 20:00:00,0.0,1025.6413189999998,0.0,100.0,-5.0258333330000005,1.003083333,238.0260753166667 +2016-12-31 21:00:00,0.0,1024.880208,0.0,100.0,-4.955166667,1.39325,238.02625408333336 +2016-12-31 22:00:00,0.0,1024.4378470000001,0.0,100.0,-5.138833333,1.030166667,238.02553431666664 +2016-12-31 23:00:00,0.0,1023.8791669999999,0.0,100.0,-5.242000000000001,0.986833333,238.02651666666668 diff --git a/src/spotpy/examples/cmf_data/fulda_climate.csv b/src/spotpy/examples/cmf_data/fulda_climate.csv new file mode 100644 index 00000000..61114e8d --- /dev/null +++ b/src/spotpy/examples/cmf_data/fulda_climate.csv @@ -0,0 +1,3655 @@ +date,tmax,tmin,tmean,Prec,Q +#,°C,°C,°C,mm/day,m³/s +01.01.1979,-12.9,-20.1,-16.5,1,143 +02.01.1979,-10.9,-19.8,-15.35,0.6,110 +03.01.1979,-6.2,-19.1,-12.65,0.7,62.6 +04.01.1979,-6.3,-17,-11.65,0,46.9 +05.01.1979,-12.4,-21,-16.7,0,35.7 +06.01.1979,-9.5,-21,-15.25,0.1,31.7 +07.01.1979,-6.7,-20.6,-13.65,1,32.2 +08.01.1979,-0.4,-7.6,-4,2.6,35.7 +09.01.1979,1.1,-1.3,-0.1,3.5,35.1 +10.01.1979,1.1,-1.3,-0.1,6,25.2 +11.01.1979,1.6,-0.1,0.75,5.4,22.4 +12.01.1979,1.2,-0.3,0.45,3.3,19.4 +13.01.1979,0.3,-1.7,-0.7,1.8,15.6 +14.01.1979,0.7,-3.8,-1.55,1.2,16.9 +15.01.1979,-0.5,-5.7,-3.1,0.1,17.1 +16.01.1979,-3.8,-6.5,-5.15,0.3,18.6 +17.01.1979,-3.1,-6.6,-4.85,0,19.4 +18.01.1979,-3.4,-7.3,-5.35,0,20.7 +19.01.1979,-3.3,-6.9,-5.1,0.1,20.2 +20.01.1979,-3,-6.9,-4.95,0.1,20.2 +21.01.1979,-3.6,-5.1,-4.35,0.1,20.7 +22.01.1979,-2.2,-5.9,-4.05,1.2,24.2 +23.01.1979,3.5,-3.3,0.1,4.6,21.6 +24.01.1979,3.5,-1.9,0.8,1.1,15.6 +25.01.1979,1.2,-6,-2.4,0,17.5 +26.01.1979,0.1,-7.1,-3.5,0,17.5 +27.01.1979,1.7,-1.2,0.25,2.4,15.6 +28.01.1979,1.4,-1.6,-0.1,0.5,13.8 +29.01.1979,1.7,-0.5,0.6,1,13.4 +30.01.1979,2.7,-1.1,0.8,2.9,13.1 +31.01.1979,1.7,-0.5,0.6,1.2,13.4 +01.02.1979,2.8,0.5,1.65,7.3,13.4 +02.02.1979,5,-0.7,2.15,4.1,13.8 +03.02.1979,2.2,-3.5,-0.65,0,24.2 +04.02.1979,3.2,-0.7,1.25,1,55.2 +05.02.1979,3,-2,0.5,0,34.4 +06.02.1979,1.9,-8.3,-3.2,0.3,27.1 +07.02.1979,1.4,-8.4,-3.5,5.2,23.3 +08.02.1979,2.6,-0.7,0.95,0.2,20.7 +09.02.1979,0,-9.6,-4.8,0,22 +10.02.1979,0.7,-11.6,-5.45,0.3,22 +11.02.1979,0.7,-3.6,-1.45,8.2,22 +12.02.1979,1.9,-2.1,-0.1,2.1,21.6 +13.02.1979,4.1,0.7,2.4,4.4,24.7 +14.02.1979,6.5,-0.5,3,3.7,25.6 +15.02.1979,0.2,-7.4,-3.6,0.7,44.7 +16.02.1979,-4.1,-8.1,-6.1,0.8,80.3 +17.02.1979,-5,-8.3,-6.65,2,60.1 +18.02.1979,-2.8,-8.2,-5.5,0,35.1 +19.02.1979,1.6,-2.9,-0.65,0,31.7 +20.02.1979,4.5,-1.3,1.6,0,24.2 +21.02.1979,4.3,-5.3,-0.5,0,19.4 +22.02.1979,2.6,-8.6,-3,0.2,18.2 +23.02.1979,0.7,-3.9,-1.6,3,19 +24.02.1979,1.5,-6.2,-2.35,0.5,18.6 +25.02.1979,1.8,-7.8,-3,0,18.6 +26.02.1979,2.4,-10.9,-4.25,0,16.9 +27.02.1979,5,-8.9,-1.95,0,15.6 +28.02.1979,5.6,-7.5,-0.95,0.1,15.9 +01.03.1979,5.6,-4.1,0.75,0.5,15.9 +02.03.1979,5.2,-0.9,2.15,0.5,15.9 +03.03.1979,7.3,3.7,5.5,0.6,20.7 +04.03.1979,8.6,1.3,4.95,7.6,56.8 +05.03.1979,8.2,-1.4,3.4,0.1,109 +06.03.1979,9.4,-1.7,3.85,1.9,148 +07.03.1979,8.1,1,4.55,1,114 +08.03.1979,5.8,-0.2,2.8,1,104 +09.03.1979,6,-0.3,2.85,17.8,93.7 +10.03.1979,5.3,-1.9,1.7,2.4,98.5 +11.03.1979,3.6,-3,0.3,13.4,155 +12.03.1979,9.4,3.3,6.35,2.4,146 +13.03.1979,8.2,4.2,6.2,6.4,160 +14.03.1979,4.6,2.4,3.5,8.7,170 +15.03.1979,4.5,1.9,3.2,0.5,140 +16.03.1979,4.7,1.9,3.3,2.9,149 +17.03.1979,9.4,1.7,5.55,0.1,137 +18.03.1979,8.8,-0.5,4.15,3.9,106 +19.03.1979,2.9,-1.4,0.75,0.1,87.3 +20.03.1979,6.6,-1.3,2.65,1.3,79.4 +21.03.1979,10,0.9,5.45,2.3,68.6 +22.03.1979,8,1.4,4.7,2.5,61.7 +23.03.1979,7,-0.7,3.15,0.6,57.6 +24.03.1979,8.4,-4.2,2.1,0.2,52.2 +25.03.1979,10.7,-1,4.85,5.5,45.4 +26.03.1979,13.2,6,9.6,6.3,45.4 +27.03.1979,8.9,2.4,5.65,2.1,62.6 +28.03.1979,10.3,6.5,8.4,4.2,63.4 +29.03.1979,6.8,2.5,4.65,3.8,66 +30.03.1979,4.2,2,3.1,5.6,71.2 +31.03.1979,4.6,1.8,3.2,2.1,72.1 +01.04.1979,6.4,-0.7,2.85,1.9,70.4 +02.04.1979,9.5,2.9,6.2,7,61.7 +03.04.1979,8,0.9,4.45,2.1,66 +04.04.1979,8.5,-0.8,3.85,0.9,79.4 +05.04.1979,6,0.1,3.05,1.5,70.4 +06.04.1979,8,0.8,4.4,2.8,60.9 +07.04.1979,6.3,2.7,4.5,3.7,56 +08.04.1979,7.2,0.8,4,0.1,58.5 +09.04.1979,11.8,-0.7,5.55,0,53.7 +10.04.1979,18.2,-0.6,8.8,0,46.2 +11.04.1979,18.2,1.7,9.95,0,41.7 +12.04.1979,14.8,4.8,9.8,0,39 +13.04.1979,19.9,1.2,10.55,0,36.4 +14.04.1979,20.7,1.4,11.05,0,33.3 +15.04.1979,21.9,3.4,12.65,0.8,31.2 +16.04.1979,10.4,4,7.2,15.5,30.6 +17.04.1979,5,2.7,3.85,0.4,37 +18.04.1979,9.2,-0.1,4.55,0,40.3 +19.04.1979,11.2,-0.4,5.4,0,32.8 +20.04.1979,11.7,-1.5,5.1,2.1,29 +21.04.1979,9.4,2.2,5.8,3,28 +22.04.1979,9.7,4.2,6.95,8,28.5 +23.04.1979,14.7,4,9.35,7.3,31.2 +24.04.1979,12.4,7,9.7,1.7,44 +25.04.1979,10.5,5,7.75,6.5,60.1 +26.04.1979,12.7,2.3,7.5,0.1,56.8 +27.04.1979,9,1.4,5.2,0.1,50.7 +28.04.1979,11,1,6,0.1,45.4 +29.04.1979,9.6,-0.5,4.55,4,40.3 +30.04.1979,8.8,3.1,5.95,6.6,35.7 +01.05.1979,7.8,-1.5,3.15,4.8,44.7 +02.05.1979,7.8,3.5,5.65,0.4,46.9 +03.05.1979,8.6,1.3,4.95,2.5,44.7 +04.05.1979,5.6,0.3,2.95,2.2,38.4 +05.05.1979,10,2.6,6.3,3.1,36.4 +06.05.1979,8.4,1.1,4.75,1.1,35.7 +07.05.1979,13.3,-2.6,5.35,0,34.4 +08.05.1979,18.4,-1.1,8.65,0,31.2 +09.05.1979,21,0.5,10.75,0.1,28 +10.05.1979,12.2,4,8.1,0.1,26.1 +11.05.1979,10,-0.1,4.95,9.6,25.2 +12.05.1979,12.7,9.5,11.1,0.1,27.1 +13.05.1979,19,8.1,13.55,0,29 +14.05.1979,24.2,5.1,14.65,0,25.2 +15.05.1979,26.4,7.1,16.75,0,23.3 +16.05.1979,26.5,7.8,17.15,0,22.4 +17.05.1979,20,11.4,15.7,1,21.1 +18.05.1979,17.5,11.9,14.7,3.9,21.1 +19.05.1979,20,9.4,14.7,0.2,21.1 +20.05.1979,22,11,16.5,0,21.1 +21.05.1979,19.2,10.3,14.75,0,19.8 +22.05.1979,16.8,8.5,12.65,0.6,19 +23.05.1979,25.5,9.9,17.7,6.1,18.2 +24.05.1979,16.4,7.8,12.1,6.2,19.8 +25.05.1979,13.7,6.6,10.15,3.8,22 +26.05.1979,23.4,4.8,14.1,0.6,19.8 +27.05.1979,17.5,11.6,14.55,4.1,18.2 +28.05.1979,19,9.4,14.2,0,17.8 +29.05.1979,28.8,7.4,18.1,0,17.8 +30.05.1979,29.8,15.1,22.45,0,16.3 +31.05.1979,30.5,12.3,21.4,0,15.6 +01.06.1979,26,12.7,19.35,4.6,14.5 +02.06.1979,29.8,15.9,22.85,0.2,15.2 +03.06.1979,30.3,15.1,22.7,0,16.9 +04.06.1979,30.4,15.2,22.8,0,13.8 +05.06.1979,28.4,13.9,21.15,15.1,18.2 +06.06.1979,15.9,14.5,15.2,1.9,25.2 +07.06.1979,20,13.1,16.55,5.2,19.4 +08.06.1979,15.5,10.3,12.9,0.1,17.8 +09.06.1979,20.4,6.2,13.3,0,16.9 +10.06.1979,23.4,7.3,15.35,0,14.8 +11.06.1979,25.2,14.7,19.95,0.3,13.8 +12.06.1979,25.2,13.4,19.3,8.2,13.4 +13.06.1979,22.6,15.2,18.9,0.9,14.8 +14.06.1979,17.9,9.5,13.7,9.6,15.2 +15.06.1979,14.8,9.9,12.35,3.2,14.8 +16.06.1979,15.8,8.2,12,0.6,17.1 +17.06.1979,15.2,9.2,12.2,0.1,16.3 +18.06.1979,15.6,9.9,12.75,0.1,14.5 +19.06.1979,21.2,12.7,16.95,0,13.1 +20.06.1979,24.6,9.2,16.9,0,12.8 +21.06.1979,27,10.5,18.75,0.8,12.4 +22.06.1979,18,12.3,15.15,11.5,13.1 +23.06.1979,17.5,13.2,15.35,1.7,14.2 +24.06.1979,25.1,11.7,18.4,0.2,16.3 +25.06.1979,19.8,9.1,14.45,0.1,13.4 +26.06.1979,23.2,10.3,16.75,0.9,12.4 +27.06.1979,23,10.2,16.6,16.3,11.9 +28.06.1979,22.4,13.7,18.05,0,14.2 +29.06.1979,22.5,11.5,17,0.3,19.4 +30.06.1979,17.2,11.9,14.55,0.3,13.8 +01.07.1979,16.1,9.7,12.9,0,12.1 +02.07.1979,14.7,7.3,11,0,11.6 +03.07.1979,17.6,5.1,11.35,0,11.4 +04.07.1979,16.8,8.6,12.7,0,11.1 +05.07.1979,20,7.7,13.85,0,10.8 +06.07.1979,20.8,5.9,13.35,0,10.8 +07.07.1979,22.4,10.4,16.4,5,10.6 +08.07.1979,18.6,13.1,15.85,5.5,11.1 +09.07.1979,18.4,12.6,15.5,4.9,11.4 +10.07.1979,16.6,12.1,14.35,0,12.8 +11.07.1979,22.2,6.3,14.25,0,12.8 +12.07.1979,24.2,9.1,16.65,0.1,11.4 +13.07.1979,22.9,12.6,17.75,26.7,10.8 +14.07.1979,22.6,14.5,18.55,0.1,17.1 +15.07.1979,19,12,15.5,0,33.9 +16.07.1979,15.7,10.2,12.95,3.3,17.1 +17.07.1979,18.6,10.7,14.65,0.7,14.2 +18.07.1979,23.6,14.9,19.25,0.9,13.4 +19.07.1979,20.4,12.6,16.5,0.9,12.8 +20.07.1979,17,12.5,14.75,0,12.4 +21.07.1979,17.2,12.7,14.95,2.7,12.1 +22.07.1979,18,10.9,14.45,0.2,11.6 +23.07.1979,17.4,11.5,14.45,0.4,11.6 +24.07.1979,17.5,10.4,13.95,0.5,11.6 +25.07.1979,21,12.5,16.75,0.9,10.8 +26.07.1979,22,14,18,0.6,11.4 +27.07.1979,23,13.5,18.25,0,10.8 +28.07.1979,28,14,21,0.9,10.3 +29.07.1979,26,17,21.5,19,10.3 +30.07.1979,21.5,15.9,18.7,0.6,13.4 +31.07.1979,24.5,11.7,18.1,9.6,19 +01.08.1979,22.3,13.6,17.95,1.1,14.5 +02.08.1979,20.6,15.5,18.05,7.2,17.5 +03.08.1979,22,12.3,17.15,0.7,15.9 +04.08.1979,21.3,11.1,16.2,3.6,17.5 +05.08.1979,22.2,8.4,15.3,0,14.8 +06.08.1979,24.1,9.1,16.6,0,14.8 +07.08.1979,26.5,10.4,18.45,0,12.8 +08.08.1979,23.9,12.9,18.4,1.7,12.1 +09.08.1979,19.1,9.3,14.2,21,11.6 +10.08.1979,14.9,11.5,13.2,3,13.8 +11.08.1979,18.4,8.4,13.4,0.4,22.9 +12.08.1979,19.6,10.4,15,0.6,21.1 +13.08.1979,22.5,10.3,16.4,0.5,15.6 +14.08.1979,25.7,10.5,18.1,0,14.5 +15.08.1979,20.9,14,17.45,0.4,13.4 +16.08.1979,16.3,11.8,14.05,0.1,12.8 +17.08.1979,21.6,12.7,17.15,0.1,11.9 +18.08.1979,22.1,9.8,15.95,0.4,11.6 +19.08.1979,24.2,9.6,16.9,7,11.1 +20.08.1979,17.4,12.3,14.85,0.7,11.6 +21.08.1979,20.6,10.1,15.35,2.2,13.8 +22.08.1979,19,11,15,0.5,12.1 +23.08.1979,19.5,7.1,13.3,1,11.1 +24.08.1979,16.6,7.8,12.2,2,11.6 +25.08.1979,14,8.6,11.3,1.8,11.4 +26.08.1979,14.6,8.4,11.5,2.9,11.4 +27.08.1979,16.5,9.3,12.9,0.2,11.6 +28.08.1979,14.4,10.2,12.3,0.1,11.9 +29.08.1979,21,5.7,13.35,0,11.1 +30.08.1979,24.3,6.8,15.55,0,10.8 +31.08.1979,25.7,8.9,17.3,0,10.3 +01.09.1979,26.5,9.5,18,0,10.1 +02.09.1979,27.6,10.6,19.1,6.9,9.8 +03.09.1979,18.8,13,15.9,11.1,10.1 +04.09.1979,17.6,10.4,14,0.3,12.1 +05.09.1979,20.5,7.7,14.1,0,13.4 +06.09.1979,23.4,6.5,14.95,0,12.1 +07.09.1979,25.5,8.2,16.85,0.3,10.6 +08.09.1979,24,15.3,19.65,0.6,10.6 +09.09.1979,19.7,13.3,16.5,6.4,10.6 +10.09.1979,21,12.1,16.55,0.1,11.6 +11.09.1979,22.2,9.1,15.65,0,11.9 +12.09.1979,20,10.4,15.2,0,11.6 +13.09.1979,20.4,8.7,14.55,0,10.1 +14.09.1979,18,7.3,12.65,0.1,10.1 +15.09.1979,13.8,6.8,10.3,0.2,9.8 +16.09.1979,15.4,0.1,7.75,0,9.8 +17.09.1979,19.2,2.3,10.75,0,9.55 +18.09.1979,21.6,8.1,14.85,0,9.05 +19.09.1979,22.5,13.4,17.95,0.4,9.55 +20.09.1979,20.8,10,15.4,9,9.3 +21.09.1979,15.6,7.6,11.6,0.1,10.3 +22.09.1979,14.7,5.4,10.05,0.1,10.6 +23.09.1979,13,6.5,9.75,0,10.8 +24.09.1979,15.4,5.2,10.3,0,10.1 +25.09.1979,15.8,4.6,10.2,0,9.3 +26.09.1979,17.3,2.8,10.05,0,9.8 +27.09.1979,19,7.7,13.35,0.6,9.05 +28.09.1979,12.7,9.8,11.25,0.2,10.1 +29.09.1979,17.4,2.5,9.95,0,11.4 +30.09.1979,17.8,-0.2,8.8,0,11.6 +01.10.1979,16.6,1.5,9.05,0,9.05 +02.10.1979,14.8,3,8.9,0,9.05 +03.10.1979,15.8,1.9,8.85,0,8.8 +04.10.1979,20.5,6.3,13.4,0,9.05 +05.10.1979,17.2,9.5,13.35,2.8,9.05 +06.10.1979,13.8,7.9,10.85,0.3,9.3 +07.10.1979,12,3.3,7.65,0,9.3 +08.10.1979,20.5,7.7,14.1,0,9.55 +09.10.1979,22.5,6.8,14.65,0,9.3 +10.10.1979,23.6,7.7,15.65,0,9.55 +11.10.1979,23,6.5,14.75,0.1,8.8 +12.10.1979,20.6,9.8,15.2,0.1,9.05 +13.10.1979,21,5.2,13.1,0.1,8.8 +14.10.1979,16.6,9.3,12.95,0.8,9.3 +15.10.1979,15.4,8.8,12.1,0.2,9.05 +16.10.1979,13.2,8.3,10.75,3.9,9.3 +17.10.1979,14,7.3,10.65,0.2,9.55 +18.10.1979,12.4,5.2,8.8,1.1,9.8 +19.10.1979,13.4,4.2,8.8,0,9.8 +20.10.1979,15.2,1,8.1,0,9.55 +21.10.1979,12.7,5.2,8.95,0,9.3 +22.10.1979,11.8,-0.1,5.85,0,8.8 +23.10.1979,10.2,-0.7,4.75,0,8.55 +24.10.1979,12.6,-3.4,4.6,0,8.8 +25.10.1979,11,-0.5,5.25,0.1,8.8 +26.10.1979,9.9,-0.2,4.85,0,8.8 +27.10.1979,8,-0.8,3.6,0,8.8 +28.10.1979,8,-1.4,3.3,0.7,8.8 +29.10.1979,6.6,-0.2,3.2,0.5,8.8 +30.10.1979,7.4,1.1,4.25,0,9.3 +31.10.1979,11,-0.5,5.25,10.2,9.05 +01.11.1979,12.5,5.1,8.8,2.9,10.6 +02.11.1979,11.2,3.9,7.55,1.4,10.6 +03.11.1979,6,1.2,3.6,0.2,10.6 +04.11.1979,9.3,2.2,5.75,13.6,10.3 +05.11.1979,9.4,4.9,7.15,8.6,11.9 +06.11.1979,8,4.5,6.25,6.8,14.8 +07.11.1979,8.7,1.8,5.25,12.4,17.5 +08.11.1979,11.8,5,8.4,23.1,19.4 +09.11.1979,7.8,1.5,4.65,0.5,35.1 +10.11.1979,6.1,-1.1,2.5,1.3,60.9 +11.11.1979,6.9,-1.5,2.7,0.3,33.9 +12.11.1979,4,-1.5,1.25,6.9,22.9 +13.11.1979,6.6,-2.1,2.25,1.4,19.4 +14.11.1979,5.3,-3.6,0.85,1.3,22 +15.11.1979,5.7,-0.7,2.5,7.2,22.4 +16.11.1979,4.9,-0.1,2.4,0.1,28.5 +17.11.1979,1.4,-3.5,-1.05,0,22.9 +18.11.1979,2.9,-4.6,-0.85,0.1,22.9 +19.11.1979,3.6,0.4,2,0,19 +20.11.1979,5.4,2.9,4.15,0,17.5 +21.11.1979,4.5,2.8,3.65,0.2,15.9 +22.11.1979,2.8,-2.7,0.05,0,15.2 +23.11.1979,1.6,-5.5,-1.95,0.1,14.5 +24.11.1979,1.5,-0.5,0.5,0.4,13.8 +25.11.1979,2.8,0.8,1.8,0,13.4 +26.11.1979,6.9,2,4.45,2,13.1 +27.11.1979,8,2.4,5.2,1.3,12.8 +28.11.1979,9.5,2.7,6.1,0.1,13.1 +29.11.1979,10.8,1.7,6.25,0.1,13.8 +30.11.1979,6,0.4,3.2,0.8,13.4 +01.12.1979,9.7,5.8,7.75,3.8,14.9 +02.12.1979,10.1,6.7,8.4,0,14.9 +03.12.1979,12,7.1,9.55,0,16.5 +04.12.1979,11.8,3.1,7.45,0,15.6 +05.12.1979,12.1,1.3,6.7,3.1,14.9 +06.12.1979,11.1,6.7,8.9,3.2,14.2 +07.12.1979,12.4,7.9,10.15,1.7,15.6 +08.12.1979,11.4,8.7,10.05,3.1,20 +09.12.1979,9.5,6.3,7.9,13,19.2 +10.12.1979,10.7,8,9.35,32.9,25.2 +11.12.1979,10.4,6.1,8.25,9.1,74.8 +12.12.1979,6.5,-3.5,1.5,0.2,127 +13.12.1979,3.5,-4.1,-0.3,9.4,188 +14.12.1979,8.9,2.9,5.9,6.2,109 +15.12.1979,9.8,4.4,7.1,7.3,90.4 +16.12.1979,5.1,3.8,4.45,1.6,101 +17.12.1979,8.2,2.5,5.35,8.9,113 +18.12.1979,6.8,3.1,4.95,1.2,90.4 +19.12.1979,3.9,-1.9,1,1.7,101 +20.12.1979,1,-2.9,-0.95,0.5,85.2 +21.12.1979,1.3,-1,0.15,0.1,62.7 +22.12.1979,2.8,-1,0.9,0.1,51.1 +23.12.1979,3.1,1.6,2.35,0.3,45.7 +24.12.1979,2.8,1.7,2.25,2.3,41.2 +25.12.1979,3.1,0.6,1.85,0.4,37.5 +26.12.1979,3.5,-2.8,0.35,0,34.5 +27.12.1979,1.9,-4.9,-1.5,0.1,30.5 +28.12.1979,6.8,1.8,4.3,1.4,27.8 +29.12.1979,5,0.7,2.85,8.7,27.3 +30.12.1979,2,0.5,1.25,3.5,29.4 +31.12.1979,2.8,0.3,1.55,1.4,30.5 +01.01.1980,1.6,-1.4,0.1,1.7,27.8 +02.01.1980,0.2,-1.5,-0.65,0.6,26.2 +03.01.1980,-0.5,-8.5,-4.5,0.3,24.8 +04.01.1980,-0.6,-10.6,-5.6,5,23 +05.01.1980,3,-0.7,1.15,1.5,22.1 +06.01.1980,3.7,0.9,2.3,3.1,24.4 +07.01.1980,3.1,0.9,2,0.4,29.4 +08.01.1980,1.6,-0.1,0.75,0,36.9 +09.01.1980,1.5,-1.7,-0.1,0,32.8 +10.01.1980,-0.9,-3,-1.95,0,27.8 +11.01.1980,-2.7,-8.7,-5.7,0,25.2 +12.01.1980,-6.5,-11,-8.75,0,23 +13.01.1980,-4.5,-13.1,-8.8,0,18.8 +14.01.1980,-2.7,-14.5,-8.6,0,20.4 +15.01.1980,-5.9,-11.1,-8.5,0,26.2 +16.01.1980,-1.4,-12.5,-6.95,0,28.9 +17.01.1980,-0.9,-4.5,-2.7,0,28.9 +18.01.1980,-1.3,-8.9,-5.1,0,24.4 +19.01.1980,-0.3,-12.1,-6.2,0,21.7 +20.01.1980,-1.8,-5.9,-3.85,0,21.7 +21.01.1980,-0.5,-7.4,-3.95,3.4,18.8 +22.01.1980,5.5,-0.6,2.45,3,17.6 +23.01.1980,4.9,1.4,3.15,3.7,18.4 +24.01.1980,3.4,-0.2,1.6,0.2,21.7 +25.01.1980,4.2,0.6,2.4,2.6,23.9 +26.01.1980,2,-2.3,-0.15,2.9,20.8 +27.01.1980,2.1,-8.6,-3.25,1.2,20.8 +28.01.1980,-2.8,-15.6,-9.2,0.8,20.8 +29.01.1980,0.9,-3.5,-1.3,0.9,15.9 +30.01.1980,6.6,-0.4,3.1,6.5,16.9 +31.01.1980,9.3,4.1,6.7,10.7,41.8 +01.02.1980,8.5,-4.3,2.1,3.2,96.1 +02.02.1980,5.4,-4.5,0.45,12,151 +03.02.1980,5.4,2.6,4,11.6,151 +04.02.1980,6.6,0.5,3.55,5.5,155 +05.02.1980,8,1.1,4.55,7.8,179 +06.02.1980,7.5,3.7,5.6,5.2,181 +07.02.1980,6.8,2.9,4.85,1.5,175 +08.02.1980,8.4,2.9,5.65,0.1,169 +09.02.1980,11.8,1.2,6.5,0.1,127 +10.02.1980,9,0.4,4.7,1.3,96.1 +11.02.1980,7.4,0.9,4.15,3.3,79.4 +12.02.1980,6.6,2.1,4.35,0.3,73 +13.02.1980,5,1.5,3.25,0.3,67.7 +14.02.1980,7.6,-0.9,3.35,0,58.2 +15.02.1980,5.6,-3.7,0.95,2.1,51.8 +16.02.1980,7.3,2.5,4.9,0.7,47.7 +17.02.1980,5,1.8,3.4,0,46.4 +18.02.1980,4.6,1.1,2.85,0,42.4 +19.02.1980,5,-3.8,0.6,0,38.7 +20.02.1980,8.8,-3.1,2.85,0,35.7 +21.02.1980,11.5,-4.3,3.6,0,33.4 +22.02.1980,11.5,-4.7,3.4,0,30.5 +23.02.1980,12.4,-4.7,3.85,0,27.8 +24.02.1980,10.4,-3.7,3.35,0,27.3 +25.02.1980,11,-5.3,2.85,0,26.2 +26.02.1980,12.2,-5.3,3.45,0,25.7 +27.02.1980,-0.2,-3.2,-1.7,0,24.4 +28.02.1980,1.7,-1.9,-0.1,0.3,23.4 +29.02.1980,5.3,1.2,3.25,1.7,23 +01.03.1980,8,4.5,6.25,0.2,23 +02.03.1980,6.5,0.4,3.45,1.1,22.6 +03.03.1980,5,-1.5,1.75,1.3,22.6 +04.03.1980,2.1,-3.1,-0.5,0.8,21.7 +05.03.1980,5,-4,0.5,0.1,20.8 +06.03.1980,6.8,-2.8,2,6.9,20 +07.03.1980,8.8,4.3,6.55,1.5,21.2 +08.03.1980,11,0.1,5.55,0.4,28.3 +09.03.1980,9,0.2,4.6,0,28.9 +10.03.1980,7.5,2.9,5.2,1.5,24.4 +11.03.1980,5.4,3.4,4.4,1,22.6 +12.03.1980,9.1,2.8,5.95,2.9,22.1 +13.03.1980,6.2,2.9,4.55,1.3,22.6 +14.03.1980,6.4,1.2,3.8,0,22.6 +15.03.1980,7.4,-1.5,2.95,0,22.1 +16.03.1980,11.4,-0.7,5.35,0,20.8 +17.03.1980,8.6,-0.5,4.05,0,19.6 +18.03.1980,8.6,3.1,5.85,0.4,19.2 +19.03.1980,4.1,-1.5,1.3,1.3,18.4 +20.03.1980,-0.4,-3.5,-1.95,0.2,18 +21.03.1980,1.7,-5.2,-1.75,0.7,17.6 +22.03.1980,6.5,-1,2.75,0.1,17.6 +23.03.1980,9.8,-2.5,3.65,0,17.6 +24.03.1980,3.8,-1.8,1,0,17.2 +25.03.1980,12.2,-0.5,5.85,0.8,16.5 +26.03.1980,11.5,2.6,7.05,3.3,16.5 +27.03.1980,12.1,0.4,6.25,5.1,16.9 +28.03.1980,17.3,11.5,14.4,4.2,18.4 +29.03.1980,12.2,5.5,8.85,4.2,23 +30.03.1980,9.2,3.3,6.25,1.2,26.2 +31.03.1980,12.2,-0.9,5.65,6.4,24.4 +01.04.1980,13.8,6.3,10.05,8.8,23.4 +02.04.1980,11.8,3.3,7.55,4,35.7 +03.04.1980,5.2,2.9,4.05,2.6,47.7 +04.04.1980,5,1.9,3.45,1,41.2 +05.04.1980,8.5,-0.7,3.9,0.1,35.7 +06.04.1980,11.8,-3.6,4.1,0.1,31.6 +07.04.1980,13.8,-2.4,5.7,0.5,27.3 +08.04.1980,8.2,2.2,5.2,3.7,26.2 +09.04.1980,8,1.8,4.9,5.9,27.3 +10.04.1980,7,0.6,3.8,2.1,27.3 +11.04.1980,9.5,3.2,6.35,0,29.4 +12.04.1980,14.5,-1.1,6.7,0,28.9 +13.04.1980,17.5,-0.8,8.35,0,26.8 +14.04.1980,20.5,-0.1,10.2,0,25.2 +15.04.1980,21,1.2,11.1,0,23.4 +16.04.1980,22.4,2.3,12.35,0,22.6 +17.04.1980,22,2.8,12.4,0.1,21.7 +18.04.1980,12.7,5.4,9.05,0.9,20.8 +19.04.1980,9,1.4,5.2,2.9,20.8 +20.04.1980,5.5,0.4,2.95,2.1,21.2 +21.04.1980,10,-0.9,4.55,0.7,21.2 +22.04.1980,8,-1.3,3.35,1,20.4 +23.04.1980,9.9,0.7,5.3,0.4,20 +24.04.1980,9.1,2.8,5.95,7.3,19.6 +25.04.1980,5.6,2.4,4,11.3,20.4 +26.04.1980,10.8,3.2,7,0.3,28.9 +27.04.1980,11.6,4.6,8.1,5.1,31 +28.04.1980,10.2,5.4,7.8,0.2,28.9 +29.04.1980,12.3,4.7,8.5,1.5,27.8 +30.04.1980,17.5,3.6,10.55,0,25.7 +01.05.1980,18.7,7.5,13.1,0,24.8 +02.05.1980,13.2,6.2,9.7,0.2,23 +03.05.1980,12.2,4.3,8.25,6.1,21.7 +04.05.1980,12.3,3.4,7.85,0.6,20.8 +05.05.1980,13.1,-2.5,5.3,0,23.4 +06.05.1980,16.8,0.5,8.65,0.5,23.9 +07.05.1980,15,7.9,11.45,0.5,21.7 +08.05.1980,9,3.3,6.15,3.5,21.7 +09.05.1980,15.3,4.4,9.85,0,21.2 +10.05.1980,18,-0.3,8.85,0,20.4 +11.05.1980,18.8,-0.2,9.3,0,19.6 +12.05.1980,20.6,5.3,12.95,0,18.4 +13.05.1980,18.3,6.4,12.35,0,16.9 +14.05.1980,17.2,3.1,10.15,0,17.2 +15.05.1980,15.1,1,8.05,0,15.6 +16.05.1980,16.9,-1.2,7.85,0,16.2 +17.05.1980,19.3,-0.3,9.5,0,16.2 +18.05.1980,21.2,6.5,13.85,0,16.2 +19.05.1980,22.2,4.2,13.2,0.2,15.9 +20.05.1980,22.7,8.1,15.4,1.5,15.9 +21.05.1980,22.8,4.5,13.65,0.1,15.9 +22.05.1980,14.5,4.7,9.6,0,15.6 +23.05.1980,16.3,-1.2,7.55,0.2,15.2 +24.05.1980,12.7,8.6,10.65,0.2,14.9 +25.05.1980,13,8.4,10.7,0,14.9 +26.05.1980,20.5,5.3,12.9,0,14.9 +27.05.1980,22.6,4.3,13.45,5.8,14.2 +28.05.1980,20,9.5,14.75,0.7,15.9 +29.05.1980,21,10.2,15.6,29.2,15.9 +30.05.1980,14.1,9.2,11.65,2.6,23.9 +31.05.1980,17.5,3.2,10.35,2.2,28.9 +01.06.1980,13.9,9.3,11.6,2.5,19.2 +02.06.1980,17.8,3.3,10.55,0,18 +03.06.1980,18.8,3.7,11.25,0,17.6 +04.06.1980,23.5,11.2,17.35,0,15.9 +05.06.1980,25.2,9.1,17.15,0,14.6 +06.06.1980,26.7,10.9,18.8,0.2,14.6 +07.06.1980,22.5,11.3,16.9,7.3,14.9 +08.06.1980,22.1,12.9,17.5,0.2,14.9 +09.06.1980,20.4,10.9,15.65,4.1,16.5 +10.06.1980,18.2,14.2,16.2,20.9,14.6 +11.06.1980,20.7,13.4,17.05,2.3,25.2 +12.06.1980,23.4,8.7,16.05,0,30.5 +13.06.1980,26.4,10.4,18.4,0.1,18.8 +14.06.1980,29.6,14,21.8,21.5,16.2 +15.06.1980,21.4,13.2,17.3,1.9,26.2 +16.06.1980,20.6,9.3,14.95,0.7,32.8 +17.06.1980,19.3,13,16.15,3.7,21.2 +18.06.1980,17.9,11.2,14.55,2.2,19.6 +19.06.1980,19,8.7,13.85,4,18 +20.06.1980,16.5,9.3,12.9,3,18.8 +21.06.1980,15.6,8.2,11.9,0.9,18 +22.06.1980,16.6,8.4,12.5,4.6,16.9 +23.06.1980,18,7.7,12.85,1,16.9 +24.06.1980,16.8,7.1,11.95,5.7,16.9 +25.06.1980,15.7,10.3,13,5.8,16.2 +26.06.1980,18.2,7.7,12.95,7.5,19.2 +27.06.1980,16.3,9.2,12.75,3.5,25.2 +28.06.1980,14.6,7.8,11.2,9.6,23.4 +29.06.1980,14.6,10.4,12.5,4.3,22.1 +30.06.1980,17.3,10.2,13.75,0.9,31 +01.07.1980,16.2,8.1,12.15,14.3,28.3 +02.07.1980,15.5,10.3,12.9,11.2,32.8 +03.07.1980,17.2,11.3,14.25,7.1,61.9 +04.07.1980,19.6,10.1,14.85,2,73 +05.07.1980,19.1,11.5,15.3,5.8,66.8 +06.07.1980,20.5,9.9,15.2,3,53.2 +07.07.1980,18.7,11.3,15,6.4,49 +08.07.1980,18,11.8,14.9,0.5,45 +09.07.1980,18.2,13.1,15.65,0.8,42.4 +10.07.1980,18.4,12.7,15.55,7.7,38.1 +11.07.1980,15.8,12.8,14.3,13.2,45 +12.07.1980,15.4,10.6,13,7,76.6 +13.07.1980,15.5,9.6,12.55,4.1,94.9 +14.07.1980,17.8,8.8,13.3,4.9,88.3 +15.07.1980,17.6,11.9,14.75,7.1,76.6 +16.07.1980,15.9,10,12.95,0.2,84.2 +17.07.1980,16.4,7.3,11.85,0.2,82.1 +18.07.1980,18.4,10.8,14.6,4.6,59.7 +19.07.1980,16.6,12.6,14.6,7.7,50.4 +20.07.1980,18,14.2,16.1,6.8,61.2 +21.07.1980,16.7,9,12.85,19.9,83.1 +22.07.1980,18.7,8,13.35,0,104 +23.07.1980,24.3,5.5,14.9,0,124 +24.07.1980,27,8,17.5,0,121 +25.07.1980,26.6,10,18.3,0,67.7 +26.07.1980,27.5,13.5,20.5,0,53.2 +27.07.1980,26.5,10.5,18.5,3.5,46.4 +28.07.1980,26,15.6,20.8,0.6,45.7 +29.07.1980,24.9,10.8,17.85,0,42.4 +30.07.1980,20.8,15,17.9,0.8,35.7 +31.07.1980,23.2,10.8,17,0,32.2 +01.08.1980,25.5,5.9,15.7,0,28.9 +02.08.1980,29.8,12.6,21.2,0,27.3 +03.08.1980,27.7,15.9,21.8,4.1,25.2 +04.08.1980,25.7,15.5,20.6,0,25.7 +05.08.1980,23.6,13.4,18.5,0.1,23.9 +06.08.1980,19.8,12.6,16.2,0,22.1 +07.08.1980,25.2,9.8,17.5,0,21.2 +08.08.1980,28.2,14.3,21.25,1.9,20.8 +09.08.1980,19,13.1,16.05,0,20 +10.08.1980,20.7,8.8,14.75,0,20 +11.08.1980,24.7,11.7,18.2,6.4,18.4 +12.08.1980,20.8,10,15.4,3.9,19.2 +13.08.1980,20,9.1,14.55,0,20.4 +14.08.1980,23.3,8.5,15.9,0,19.2 +15.08.1980,27.5,10.5,19,0,18 +16.08.1980,28.5,12.4,20.45,0.4,16.5 +17.08.1980,26.1,14.2,20.15,1.4,16.2 +18.08.1980,26.1,12.5,19.3,2.7,15.9 +19.08.1980,19.9,13.8,16.85,3.9,18.4 +20.08.1980,21.8,13.7,17.75,0.1,17.6 +21.08.1980,20.4,14,17.2,2.6,17.2 +22.08.1980,14.7,10.8,12.75,3.6,16.2 +23.08.1980,13.2,9.9,11.55,0.8,15.9 +24.08.1980,14.2,8.3,11.25,1.7,15.9 +25.08.1980,17.2,5.7,11.45,0,15.6 +26.08.1980,22.3,3.4,12.85,0,14.9 +27.08.1980,26,5.6,15.8,0,14.6 +28.08.1980,23.8,10.1,16.95,0.1,14.2 +29.08.1980,24.4,14.6,19.5,7.2,13.9 +30.08.1980,21.1,13.3,17.2,8.1,15.6 +31.08.1980,17.8,13.3,15.55,4.1,16.9 +01.09.1980,17.9,10.1,14,0.9,18 +02.09.1980,20.8,5.5,13.15,0,16.5 +03.09.1980,23.6,3.3,13.45,0,15.9 +04.09.1980,25.2,7.5,16.35,0,12.7 +05.09.1980,22.9,13.4,18.15,3.9,13.6 +06.09.1980,17.4,11.2,14.3,1.9,14.2 +07.09.1980,23.2,7.7,15.45,0,14.2 +08.09.1980,25,7.9,16.45,11.6,13.6 +09.09.1980,16.6,11.4,14,4.4,15.9 +10.09.1980,15,9.5,12.25,4.2,18.4 +11.09.1980,16.7,12.4,14.55,2.8,18.4 +12.09.1980,19.6,13,16.3,5.6,18.4 +13.09.1980,16.1,11.7,13.9,3.9,16.5 +14.09.1980,16.2,11.7,13.95,1.9,20.8 +15.09.1980,17,12.1,14.55,0.1,20.8 +16.09.1980,21.6,9.5,15.55,0,18.4 +17.09.1980,19.3,9.5,14.4,2.5,15.9 +18.09.1980,21.3,10.2,15.75,0,14.9 +19.09.1980,24.7,7.4,16.05,0,14.6 +20.09.1980,27.1,11.8,19.45,0,13.6 +21.09.1980,25.6,11.3,18.45,0,13.3 +22.09.1980,25.1,14.2,19.65,0,13 +23.09.1980,17.2,12.9,15.05,4.8,13 +24.09.1980,22.7,13.6,18.15,2.1,13.3 +25.09.1980,15.1,12.2,13.65,3,14.6 +26.09.1980,18.4,7.8,13.1,0,13.6 +27.09.1980,19.5,5.4,12.45,0,13.6 +28.09.1980,20.6,6.4,13.5,0,13 +29.09.1980,19.8,6.6,13.2,0,13.6 +30.09.1980,17.6,9,13.3,0.1,12.4 +01.10.1980,16.2,5.7,10.95,1.6,12 +02.10.1980,14.3,8.8,11.55,0,12 +03.10.1980,15.3,5,10.15,0,10.5 +04.10.1980,15.4,1.1,8.25,0.1,12 +05.10.1980,14.2,5.1,9.65,0.1,12 +06.10.1980,12.5,3.6,8.05,3.8,12 +07.10.1980,14.8,10,12.4,19.8,13.3 +08.10.1980,12.2,7.3,9.75,0.8,24.4 +09.10.1980,10,4.9,7.45,1,25.7 +10.10.1980,9.1,1.4,5.25,0,18 +11.10.1980,9.1,0.5,4.8,0.4,16.5 +12.10.1980,9.8,2.7,6.25,0.1,14.6 +13.10.1980,7.9,3,5.45,0.5,14.6 +14.10.1980,10.7,3.7,7.2,0.1,13.6 +15.10.1980,11.8,1.5,6.65,0.1,13.9 +16.10.1980,12,2.9,7.45,1.7,13.3 +17.10.1980,14.4,8.8,11.6,4.1,13.3 +18.10.1980,10.9,7.9,9.4,0.4,13.9 +19.10.1980,9.8,2.9,6.35,2.1,14.9 +20.10.1980,10.2,1.2,5.7,0,13.9 +21.10.1980,12.4,1.2,6.8,0.1,13.3 +22.10.1980,14,2.9,8.45,0.2,12.7 +23.10.1980,11.8,5.1,8.45,5.4,13 +24.10.1980,11.4,9.3,10.35,4.3,12.7 +25.10.1980,10.5,4.8,7.65,0.5,15.6 +26.10.1980,9.8,0.6,5.2,0.1,21.2 +27.10.1980,13.2,5,9.1,0.8,17.2 +28.10.1980,18.7,11.1,14.9,0.8,15.6 +29.10.1980,15.4,9.4,12.4,1.8,14.9 +30.10.1980,9.7,3.4,6.55,0,15.2 +31.10.1980,7.8,-0.6,3.6,0,15.2 +01.11.1980,5.7,-1.4,2.15,0,13.9 +02.11.1980,0.7,-4.4,-1.85,0,13.6 +03.11.1980,-1.8,-3.4,-2.6,0.1,13.3 +04.11.1980,-1.6,-4.7,-3.15,0.1,12.7 +05.11.1980,-0.9,-3.8,-2.35,0.2,12.7 +06.11.1980,0.2,-1.9,-0.85,8.5,12 +07.11.1980,1.5,-1.2,0.15,1.1,12.4 +08.11.1980,2.2,-1.9,0.15,0.3,12.7 +09.11.1980,0.9,-4.2,-1.65,0,12.7 +10.11.1980,0.7,-2,-0.65,0.1,12.7 +11.11.1980,2.2,-2.7,-0.25,0.6,12.7 +12.11.1980,3.6,0.6,2.1,0.2,12.7 +13.11.1980,5.2,0.6,2.9,0,12.7 +14.11.1980,5.8,3.1,4.45,2.5,13.3 +15.11.1980,10.2,2.9,6.55,8.4,13.6 +16.11.1980,12.7,10,11.35,5.6,17.2 +17.11.1980,13.4,11.3,12.35,4.8,28.9 +18.11.1980,12.7,6.9,9.8,1,36.3 +19.11.1980,8.5,4.7,6.6,2.4,32.2 +20.11.1980,12.6,4.4,8.5,0,26.2 +21.11.1980,12.9,4.6,8.75,0,22.6 +22.11.1980,12.1,10.4,11.25,0,20.8 +23.11.1980,13.4,11.1,12.25,0,18.4 +24.11.1980,12.9,9.2,11.05,0,17.2 +25.11.1980,9.4,5.8,7.6,9.7,16.9 +26.11.1980,6.2,0.1,3.15,0.4,19.6 +27.11.1980,3.2,-4.9,-0.85,1.1,23 +28.11.1980,2.7,-0.8,0.95,4.9,20.8 +29.11.1980,1.4,-0.6,0.4,3.9,19.6 +30.11.1980,0.6,-1.9,-0.65,0.9,19.2 +01.12.1980,0.8,-7.9,-3.55,0.3,17.7 +02.12.1980,-3.8,-8.1,-5.95,3,16.9 +03.12.1980,0.1,-5.6,-2.75,2.3,15.9 +04.12.1980,0.6,-6.6,-3,3.1,16.6 +05.12.1980,1.3,-10.6,-4.65,8.4,16 +06.12.1980,2.1,-6.6,-2.25,1.6,17.3 +07.12.1980,-3.4,-12.6,-8,0.1,19.3 +08.12.1980,-4.2,-12,-8.1,0.1,16.9 +09.12.1980,-0.3,-5.1,-2.7,0,16.8 +10.12.1980,1.4,-2.7,-0.65,0,17.1 +11.12.1980,4.4,1,2.7,1,15.6 +12.12.1980,4.7,2.6,3.65,0.3,18.3 +13.12.1980,7.3,2,4.65,9.5,23 +14.12.1980,10.3,6,8.15,8.7,45.2 +15.12.1980,11.6,5.3,8.45,2.1,94.4 +16.12.1980,5.8,-0.4,2.7,0.1,113 +17.12.1980,4.9,-1.7,1.6,0.8,116 +18.12.1980,1.2,-1.2,0,5.1,59.6 +19.12.1980,1.7,-2.1,-0.2,0,45 +20.12.1980,2.4,-4.8,-1.2,3.2,39.7 +21.12.1980,4.7,2,3.35,1,37.6 +22.12.1980,5.7,1,3.35,1.7,42.5 +23.12.1980,9.9,3.2,6.55,1.6,39.8 +24.12.1980,10.7,7.7,9.2,0.5,41.4 +25.12.1980,10.2,5.6,7.9,2.8,50.4 +26.12.1980,5.9,1.5,3.7,1.7,43.9 +27.12.1980,2.8,-0.8,1,0.3,44.5 +28.12.1980,2.2,-4.4,-1.1,0,37.1 +29.12.1980,2.8,-1.8,0.5,0.3,31.7 +30.12.1980,5,2.1,3.55,0.6,28.4 +31.12.1980,5.4,3.3,4.35,3.1,27.4 +01.01.1981,5.3,0.3,2.8,3.6,28.5 +02.01.1981,5.2,1.4,3.3,8.2,28.9 +03.01.1981,8.5,4,6.25,11.1,38.9 +04.01.1981,5.3,0.1,2.7,3,85.2 +05.01.1981,2.8,-0.6,1.1,3.4,124 +06.01.1981,0.8,-2.1,-0.65,1.2,83.1 +07.01.1981,-1.3,-10.3,-5.8,1.3,52.9 +08.01.1981,-4.4,-16.1,-10.25,0.2,43.4 +09.01.1981,-0.4,-4.6,-2.5,2.3,37.8 +10.01.1981,0.7,-0.9,-0.1,2,36 +11.01.1981,0.7,-9.2,-4.25,0.1,33.9 +12.01.1981,-1.2,-7.8,-4.5,3.3,30.7 +13.01.1981,1,-5.3,-2.15,0.3,28.4 +14.01.1981,0.7,-5,-2.15,10.8,27.3 +15.01.1981,1.9,-0.2,0.85,3.6,26.9 +16.01.1981,0.7,-3.2,-1.25,6.1,25.2 +17.01.1981,4.7,-2.1,1.3,2.7,26.3 +18.01.1981,2.3,-0.9,0.7,2.3,28.4 +19.01.1981,2.7,-1,0.85,5.1,29 +20.01.1981,1.6,-1.6,0,0.5,30.9 +21.01.1981,-1,-7,-4,0.1,28.2 +22.01.1981,0,-11,-5.5,0,25.5 +23.01.1981,-1.5,-11.6,-6.55,0,22.9 +24.01.1981,3.5,-2.1,0.7,0.3,21.4 +25.01.1981,2.6,-1.2,0.7,1.3,20.8 +26.01.1981,3.4,-4.9,-0.75,0.2,21.3 +27.01.1981,-0.4,-8.3,-4.35,0,20.3 +28.01.1981,1.7,-1,0.35,0,19.2 +29.01.1981,1,-5.8,-2.4,0,18.6 +30.01.1981,3.2,-10,-3.4,0,18.3 +31.01.1981,2.5,-8.6,-3.05,0,17.5 +01.02.1981,3.7,-10.5,-3.4,0,17.4 +02.02.1981,6.3,-9.3,-1.5,0.1,17.3 +03.02.1981,5.2,-1,2.1,5.4,17.2 +04.02.1981,3.7,1.5,2.6,3.6,19.6 +05.02.1981,2.7,0,1.35,2.2,24.1 +06.02.1981,5.2,-0.5,2.35,1.6,22.8 +07.02.1981,8.5,4.8,6.65,0.6,33.2 +08.02.1981,8.5,6.6,7.55,0.5,95.5 +09.02.1981,8.7,5.9,7.3,0.4,130 +10.02.1981,6.2,1,3.6,1.9,151 +11.02.1981,2.2,-3,-0.4,2.2,132 +12.02.1981,1.7,-5.9,-2.1,1.1,88.1 +13.02.1981,-0.2,-8.6,-4.4,0,62.1 +14.02.1981,1,-11.1,-5.05,0,51.8 +15.02.1981,0.6,-9,-4.2,0,44.8 +16.02.1981,1.7,-10.1,-4.2,0,40.2 +17.02.1981,3.5,-3.2,0.15,0.5,35.4 +18.02.1981,1.5,-5.2,-1.85,1.5,34.1 +19.02.1981,0,-3.2,-1.6,0.5,31.8 +20.02.1981,-1,-5.4,-3.2,0.6,29.6 +21.02.1981,-1.3,-11.4,-6.35,0.1,27.7 +22.02.1981,1.2,-10.2,-4.5,0,26.6 +23.02.1981,-0.2,-11,-5.6,0,25.1 +24.02.1981,1.4,-4,-1.3,0,24.2 +25.02.1981,2.2,-1.6,0.3,0,23.2 +26.02.1981,4.7,-3,0.85,0,22.4 +27.02.1981,5.5,-8.1,-1.3,0,21.8 +28.02.1981,4.8,-6.5,-0.85,3.2,20.7 +01.03.1981,5.6,0.2,2.9,1.4,20.9 +02.03.1981,7.8,1.1,4.45,2.8,22.5 +03.03.1981,3.9,1.1,2.5,2.3,25.5 +04.03.1981,2.8,-0.8,1,0.2,39.9 +05.03.1981,2.2,-1.8,0.2,0.4,34.6 +06.03.1981,6,-3.5,1.25,1.1,27.7 +07.03.1981,12.7,5.8,9.25,3.1,26.5 +08.03.1981,12.4,10.9,11.65,5.8,41.6 +09.03.1981,13.6,11,12.3,14.3,78.9 +10.03.1981,12.9,9,10.95,12.1,122 +11.03.1981,17.2,12.7,14.95,3.5,151 +12.03.1981,14.7,8.2,11.45,0.8,197 +13.03.1981,12.1,7.3,9.7,2.3,163 +14.03.1981,9.2,5.7,7.45,3.4,102 +15.03.1981,11.2,1.2,6.2,1,86.4 +16.03.1981,8.8,-0.7,4.05,5.8,74 +17.03.1981,5.6,-0.3,2.65,1.7,72.8 +18.03.1981,5.7,1.1,3.4,0,66.1 +19.03.1981,8.9,2.6,5.75,0,56.1 +20.03.1981,12.5,4.2,8.35,0,50 +21.03.1981,16.4,0.4,8.4,0,45.8 +22.03.1981,18,7.4,12.7,1.2,42.5 +23.03.1981,10.8,2.1,6.45,12.9,39.5 +24.03.1981,14.6,10.3,12.45,2.3,44.9 +25.03.1981,18.7,10.4,14.55,7.2,68.7 +26.03.1981,15.2,7.6,11.4,9.2,58.7 +27.03.1981,15.6,3.1,9.35,0,85.2 +28.03.1981,17.2,0.9,9.05,0,77.3 +29.03.1981,15.2,4.7,9.95,0,57.2 +30.03.1981,17.5,3.4,10.45,0,50.3 +31.03.1981,17.8,7.6,12.7,0,45.8 +01.04.1981,19.7,9.1,14.4,0,42.4 +02.04.1981,17,9.3,13.15,0,39.4 +03.04.1981,18.5,6.4,12.45,0,36.2 +04.04.1981,9.8,5.8,7.8,0.8,33.8 +05.04.1981,8,4.2,6.1,0.5,32 +06.04.1981,12.5,1.8,7.15,0,30.1 +07.04.1981,20.8,1.4,11.1,0.2,28.4 +08.04.1981,14.2,6.5,10.35,2.8,28.6 +09.04.1981,18.1,3.3,10.7,0,27.4 +10.04.1981,21.4,1,11.2,0,25.7 +11.04.1981,21.7,3.5,12.6,0,24.7 +12.04.1981,22.4,6.4,14.4,0.1,23.5 +13.04.1981,18.2,9,13.6,0,23.1 +14.04.1981,19.1,3.7,11.4,0,22.6 +15.04.1981,20.7,0.2,10.45,0,22 +16.04.1981,14.8,1.6,8.2,0,21.5 +17.04.1981,8.8,-1.1,3.85,0,21 +18.04.1981,9.6,-4.4,2.6,1.4,20.6 +19.04.1981,5.6,0.9,3.25,4.7,21.3 +20.04.1981,10.5,0.9,5.7,0,21.7 +21.04.1981,7.6,-3.4,2.1,0,20.7 +22.04.1981,8,2.5,5.25,1.1,20.2 +23.04.1981,5.7,-1.7,2,1.4,19.8 +24.04.1981,10.3,-5,2.65,0,19.6 +25.04.1981,15,1.5,8.25,0,19.3 +26.04.1981,17.7,4.9,11.3,0,19 +27.04.1981,13.1,5.4,9.25,30.4,19.7 +28.04.1981,9.6,1.4,5.5,3.2,35.9 +29.04.1981,8.6,4.1,6.35,2.1,35.2 +30.04.1981,11.7,7.8,9.75,12.4,27.8 +01.05.1981,9.6,3.4,6.5,2.7,38.5 +02.05.1981,9.7,-0.1,4.8,0.3,48.7 +03.05.1981,8.8,-0.6,4.1,0.1,38 +04.05.1981,8.8,1.4,5.1,1.6,31.4 +05.05.1981,11.6,4.1,7.85,1.3,28.6 +06.05.1981,9.6,-0.3,4.65,2.2,27.8 +07.05.1981,19.8,7,13.4,0,26.9 +08.05.1981,20.8,7.5,14.15,0,25.5 +09.05.1981,24.6,6.2,15.4,0,24.2 +10.05.1981,26.6,7.6,17.1,0,22.7 +11.05.1981,25.4,13.8,19.6,3.1,21.6 +12.05.1981,23.2,7.5,15.35,4,21.2 +13.05.1981,22.4,10.4,16.4,5.9,22.5 +14.05.1981,18.7,12.4,15.55,0.9,23.1 +15.05.1981,18.1,11.8,14.95,0.2,24.8 +16.05.1981,22.2,8.8,15.5,7.7,21.8 +17.05.1981,16.2,10,13.1,2.1,24.8 +18.05.1981,20.4,4.5,12.45,0,23.5 +19.05.1981,24.8,5.4,15.1,0,21.3 +20.05.1981,27.4,8.5,17.95,0,19.9 +21.05.1981,27.5,12.4,19.95,0.1,18.8 +22.05.1981,19.7,13.8,16.75,2.1,18.5 +23.05.1981,20.4,7.1,13.75,1.8,18 +24.05.1981,16.7,9.6,13.15,4.1,18.5 +25.05.1981,15.6,6.2,10.9,0.9,18.5 +26.05.1981,15,8.3,11.65,10.5,18.2 +27.05.1981,12.5,8.8,10.65,23.5,28.1 +28.05.1981,14.5,5,9.75,2.9,49.2 +29.05.1981,16.5,9,12.75,5.4,40.1 +30.05.1981,19,10.8,14.9,0,32.8 +31.05.1981,26.7,11.4,19.05,2.3,32.7 +01.06.1981,26.5,17.5,22,3.3,26.9 +02.06.1981,30,12.4,21.2,9.3,24.9 +03.06.1981,20.7,14.9,17.8,54.7,31 +04.06.1981,15.2,11.4,13.3,4.4,172 +05.06.1981,19.6,11,15.3,0.2,200 +06.06.1981,22.1,13.9,18,0.7,257 +07.06.1981,22.8,11.9,17.35,1.6,159 +08.06.1981,25.3,14.1,19.7,0.7,73.4 +09.06.1981,22,17.5,19.75,2.1,58.3 +10.06.1981,20.2,11.7,15.95,0.2,50.3 +11.06.1981,22.8,8.1,15.45,2.3,43.4 +12.06.1981,20.7,10.2,15.45,0.4,38.9 +13.06.1981,20,3.6,11.8,0,35.1 +14.06.1981,23.7,8.8,16.25,0,31.2 +15.06.1981,27,17.8,22.4,0.7,28.4 +16.06.1981,20.5,12.6,16.55,0.3,26.8 +17.06.1981,13.6,8.7,11.15,10.2,25.7 +18.06.1981,11,9,10,2.3,28.3 +19.06.1981,12.2,8,10.1,0.2,27.8 +20.06.1981,14.3,5.3,9.8,4.8,25.3 +21.06.1981,14.2,8.9,11.55,6.2,24 +22.06.1981,17.5,10.1,13.8,0.3,25.9 +23.06.1981,20.1,6.6,13.35,0.5,25.2 +24.06.1981,20.6,9.4,15,0,23.3 +25.06.1981,22.8,10.4,16.6,0.4,21.9 +26.06.1981,20,8.9,14.45,7.8,20.8 +27.06.1981,22.7,11.5,17.1,0.4,22.2 +28.06.1981,25.5,13.9,19.7,17.2,21.7 +29.06.1981,20.2,9.6,14.9,14.7,29.7 +30.06.1981,14.7,9,11.85,0.6,58.3 +01.07.1981,20.2,11.2,15.7,0,46.6 +02.07.1981,21.5,12.1,16.8,2.5,31.8 +03.07.1981,20.8,13.1,16.95,5,27.5 +04.07.1981,20.8,9.9,15.35,0,27.1 +05.07.1981,22.4,9.6,16,0,25.7 +06.07.1981,24.5,12.7,18.6,0,23 +07.07.1981,25.6,12.8,19.2,0,21.7 +08.07.1981,27.4,12.1,19.75,0,20.4 +09.07.1981,28,14.2,21.1,0,19 +10.07.1981,29.6,14.4,22,0.3,18 +11.07.1981,24.5,16.3,20.4,3.4,19.2 +12.07.1981,22.3,16.8,19.55,0.5,19.6 +13.07.1981,22.2,14.9,18.55,0.2,19.7 +14.07.1981,20.8,12.6,16.7,0.1,19.1 +15.07.1981,18,12.8,15.4,0.2,17.4 +16.07.1981,21.4,12.7,17.05,1.4,16.5 +17.07.1981,20.7,12.8,16.75,2.4,16.5 +18.07.1981,14.7,10.4,12.55,9.8,19.6 +19.07.1981,13.9,7.4,10.65,1.2,21 +20.07.1981,16.7,6,11.35,2.7,17.9 +21.07.1981,17.6,12.6,15.1,12.5,18 +22.07.1981,21.7,13.5,17.6,12.6,22.7 +23.07.1981,17.5,11.7,14.6,5.8,29 +24.07.1981,19.3,11.9,15.6,1.6,38.4 +25.07.1981,14.2,11.3,12.75,7.9,29.3 +26.07.1981,16.8,11.7,14.25,8.4,26.5 +27.07.1981,17.9,13,15.45,0.3,33 +28.07.1981,19,12.1,15.55,0.3,37.6 +29.07.1981,23.5,13.4,18.45,0,28.4 +30.07.1981,19.9,11.9,15.9,0,24.2 +31.07.1981,22.4,6.4,14.4,0.7,22 +01.08.1981,23.9,13.8,18.85,0.2,20.8 +02.08.1981,23,15.2,19.1,3.7,20.1 +03.08.1981,26.5,15.1,20.8,0.1,19.5 +04.08.1981,28.2,14.5,21.35,0,19.3 +05.08.1981,29.5,14.6,22.05,0,18.3 +06.08.1981,29.5,13.6,21.55,0,19.2 +07.08.1981,29.3,14.7,22,11.7,18.1 +08.08.1981,22.2,15.9,19.05,0.1,17.4 +09.08.1981,22.9,15.9,19.4,19.2,24 +10.08.1981,18.8,15.3,17.05,56.6,33.2 +11.08.1981,15.8,14.8,15.3,2.2,116 +12.08.1981,21.6,11.6,16.6,0,170 +13.08.1981,25.1,11.2,18.15,0,221 +14.08.1981,26.4,12.1,19.25,0,99.8 +15.08.1981,27.3,13.7,20.5,0,54.6 +16.08.1981,21.9,11.7,16.8,0.5,44.5 +17.08.1981,16.7,7.5,12.1,0,38.4 +18.08.1981,21,6.3,13.65,0,34 +19.08.1981,17,8.4,12.7,9.2,30.8 +20.08.1981,15.4,12.2,13.8,8.2,34.8 +21.08.1981,18,11.6,14.8,0.7,38.6 +22.08.1981,14.9,8.9,11.9,1.8,36.5 +23.08.1981,15.5,10.8,13.15,2.3,30.7 +24.08.1981,19.5,11.6,15.55,0,27.9 +25.08.1981,18.1,7.7,12.9,0.5,26.4 +26.08.1981,18.9,10.4,14.65,2.9,24 +27.08.1981,16.7,12.8,14.75,3,22.9 +28.08.1981,18.7,11.1,14.9,0,22.7 +29.08.1981,16.7,8.9,12.8,0.1,21.6 +30.08.1981,19.6,9.6,14.6,0,21.1 +31.08.1981,20.7,5,12.85,0,20.3 +01.09.1981,19.8,8.7,14.25,0,19.6 +02.09.1981,19.2,8.7,13.95,0,19 +03.09.1981,19.8,5.5,12.65,0,18.8 +04.09.1981,20.4,4.7,12.55,0,18.3 +05.09.1981,21.6,4.6,13.1,0,18 +06.09.1981,23.2,4.5,13.85,0,17.8 +07.09.1981,23.8,5.3,14.55,0,17.4 +08.09.1981,21.4,9.8,15.6,1.3,17.7 +09.09.1981,21.5,13.4,17.45,0,17.9 +10.09.1981,22.1,10.2,16.15,0,17.1 +11.09.1981,23.8,10.9,17.35,0.1,16.3 +12.09.1981,19.9,13.6,16.75,1.6,15.4 +13.09.1981,18.9,9,13.95,0.1,17 +14.09.1981,15.9,5.8,10.85,0.6,15.9 +15.09.1981,18.7,5.7,12.2,3.7,14.9 +16.09.1981,19.5,13.3,16.4,1.6,15.4 +17.09.1981,18.8,12,15.4,0.2,15.9 +18.09.1981,21.7,8.6,15.15,3.1,15.6 +19.09.1981,17.7,10.9,14.3,3.7,15.5 +20.09.1981,21.2,10.5,15.85,0.5,15.8 +21.09.1981,22.1,14.8,18.45,4.6,15.6 +22.09.1981,24.2,14.3,19.25,18.5,17.1 +23.09.1981,17.7,9.4,13.55,1.5,27.6 +24.09.1981,18.4,5.3,11.85,0.1,24.4 +25.09.1981,18.5,5.4,11.95,0.5,18.3 +26.09.1981,19.8,7.4,13.6,0,17.1 +27.09.1981,14.8,8.4,11.6,0.9,16.6 +28.09.1981,12.9,6.4,9.65,9.9,16.2 +29.09.1981,16.3,8.6,12.45,0.9,18.3 +30.09.1981,18.3,4.6,11.45,0,19.5 +01.10.1981,18.7,5.7,12.2,0.1,17.9 +02.10.1981,15.9,7.8,11.85,2.1,16.5 +03.10.1981,13.2,9.6,11.4,7.6,16.4 +04.10.1981,14.3,7.3,10.8,0.8,17.7 +05.10.1981,13.4,10.4,11.9,0.7,19.4 +06.10.1981,21.4,10.3,15.85,0.5,17.2 +07.10.1981,17.7,11.5,14.6,1,17 +08.10.1981,15.4,8.9,12.15,0,16.3 +09.10.1981,19.2,5.2,12.2,9.7,16.1 +10.10.1981,13.8,7,10.4,12.2,16.5 +11.10.1981,11.2,6.3,8.75,6.7,25.9 +12.10.1981,7.9,4,5.95,6.9,50.6 +13.10.1981,8.3,4.6,6.45,2.2,43.6 +14.10.1981,8.2,2.2,5.2,1.9,38.4 +15.10.1981,7.7,4.6,6.15,12.9,33.7 +16.10.1981,10.7,1,5.85,0.2,46 +17.10.1981,8.4,0,4.2,4.2,58.8 +18.10.1981,13.7,7.4,10.55,8.2,44 +19.10.1981,11.9,7.7,9.8,1.5,48.2 +20.10.1981,11.8,8.5,10.15,5.4,47.2 +21.10.1981,9.8,3.7,6.75,1.4,47.3 +22.10.1981,6.8,1.1,3.95,0,53 +23.10.1981,5.8,0.3,3.05,0.1,42 +24.10.1981,4.8,-0.2,2.3,0.1,35.6 +25.10.1981,5.9,-0.8,2.55,1.2,31.5 +26.10.1981,10.2,3.7,6.95,0,28.6 +27.10.1981,7,3.2,5.1,0.5,27.4 +28.10.1981,10,3.9,6.95,3,25.9 +29.10.1981,11.6,6.5,9.05,4.4,24.6 +30.10.1981,10,3.9,6.95,4.2,27.5 +31.10.1981,15.7,4,9.85,1.1,35.1 +01.11.1981,13.9,4.2,9.05,1.7,37.4 +02.11.1981,13.8,10.6,12.2,3.1,32.3 +03.11.1981,13.6,7.2,10.4,0.1,30.4 +04.11.1981,12.4,5.9,9.15,0.1,30.1 +05.11.1981,10.2,4.4,7.3,1.7,27.2 +06.11.1981,9.4,5.3,7.35,0.9,25.5 +07.11.1981,6.4,-1.9,2.25,0.5,24.3 +08.11.1981,3.2,-1.9,0.65,0.8,23.2 +09.11.1981,2.2,-1.7,0.25,0.7,21.9 +10.11.1981,5.2,-2.5,1.35,0.4,21.3 +11.11.1981,1.4,-1.7,-0.15,4.6,20.9 +12.11.1981,3.8,0.9,2.35,1.8,21.4 +13.11.1981,7,1.9,4.45,5.3,23.4 +14.11.1981,6.9,2.4,4.65,1.7,29.7 +15.11.1981,4.5,-1.7,1.4,0,30.7 +16.11.1981,4.2,-5.4,-0.6,0,26.6 +17.11.1981,6.2,-4.5,0.85,0.7,24.4 +18.11.1981,10.6,1.9,6.25,3.5,23.1 +19.11.1981,11.6,3.7,7.65,3.5,23.3 +20.11.1981,14.6,2.1,8.35,1.4,30.6 +21.11.1981,14.4,6.4,10.4,4.8,34.7 +22.11.1981,14.4,10.7,12.55,0.1,34.7 +23.11.1981,12.4,9.3,10.85,2.4,34.9 +24.11.1981,11.4,2.2,6.8,2.1,32.4 +25.11.1981,3.7,0.3,2,5.8,33.2 +26.11.1981,4.2,0.6,2.4,7.7,32.9 +27.11.1981,6.4,3.8,5.1,9.9,49.3 +28.11.1981,6.2,0,3.1,1,75.1 +29.11.1981,5,0,2.5,4.5,96 +30.11.1981,5,0.3,2.65,16.5,75.2 +01.12.1981,1.4,0.3,0.85,2.8,71.9 +02.12.1981,1.7,-1.3,0.2,0.8,75.6 +03.12.1981,1.2,-4.5,-1.65,16.6,60.9 +04.12.1981,4.4,0.6,2.5,7.5,80.2 +05.12.1981,2.8,0.3,1.55,2.2,131 +06.12.1981,2.5,0.6,1.55,6.1,135 +07.12.1981,3,1.1,2.05,6.5,101 +08.12.1981,4.8,0.2,2.5,16.3,99.4 +09.12.1981,3,-0.1,1.45,4.6,129 +10.12.1981,2.2,-2.9,-0.35,1.5,192 +11.12.1981,0.4,-4,-1.8,10,174 +12.12.1981,-0.3,-5.2,-2.75,0.4,103 +13.12.1981,-4.1,-13.9,-9,1.2,80.9 +14.12.1981,2.9,-8.3,-2.7,5.5,67.2 +15.12.1981,2.7,-9.9,-3.6,2.6,66 +16.12.1981,-5.7,-12.6,-9.15,0.1,66.7 +17.12.1981,-7.8,-16.2,-12,0.2,55.9 +18.12.1981,-4.8,-10.7,-7.75,6.1,46.9 +19.12.1981,-6.4,-9.6,-8,0.7,44.1 +20.12.1981,-4.8,-10.7,-7.75,0,40 +21.12.1981,-4.7,-9,-6.85,2.1,37.9 +22.12.1981,0.8,-5,-2.1,1.4,36.9 +23.12.1981,0.5,-2.8,-1.15,0.3,35.8 +24.12.1981,0.5,-2.4,-0.95,1.5,35 +25.12.1981,1.6,-1.9,-0.15,1.5,32.6 +26.12.1981,1,-0.9,0.05,1,31.7 +27.12.1981,-0.4,-7.1,-3.75,0.1,30.6 +28.12.1981,0.2,-7.7,-3.75,1,29 +29.12.1981,4.2,-4.3,-0.05,0.9,28.8 +30.12.1981,7.2,-0.7,3.25,6.9,29 +31.12.1981,8.2,2.8,5.5,2,54.9 +01.01.1982,7.6,2.8,5.2,0.1,134 +02.01.1982,5.8,2.9,4.35,2,216 +03.01.1982,9.7,4.9,7.3,1.7,170 +04.01.1982,10.2,3.2,6.7,5.3,145 +05.01.1982,10.2,7.7,8.95,12.1,156 +06.01.1982,8.9,-6.7,1.1,0.7,174 +07.01.1982,-5.5,-10.5,-8,0.1,209 +08.01.1982,-6.6,-12.4,-9.5,1.3,173 +09.01.1982,-6.9,-11.9,-9.4,5.1,107 +10.01.1982,-9.1,-20.1,-14.6,1.6,83.1 +11.01.1982,-6.4,-20.4,-13.4,4.3,74.2 +12.01.1982,-2.6,-14.5,-8.55,0,68.4 +13.01.1982,-8.2,-18.8,-13.5,0,56.6 +14.01.1982,-8,-18.5,-13.25,0,51.2 +15.01.1982,-4.6,-17.5,-11.05,0,49.1 +16.01.1982,0.1,-11.6,-5.75,0,53.1 +17.01.1982,-2,-11.2,-6.6,0,54 +18.01.1982,-2.6,-12.5,-7.55,0,52 +19.01.1982,0.2,-6.7,-3.25,0,37.1 +20.01.1982,-1.1,-9.7,-5.4,0,33.7 +21.01.1982,-1.3,-4.2,-2.75,0.2,32.1 +22.01.1982,1,-2.5,-0.75,0.4,30.9 +23.01.1982,1.8,0.2,1,0.9,29.6 +24.01.1982,2.8,-0.9,0.95,0.2,28.9 +25.01.1982,2.7,-0.9,0.9,0.7,28.1 +26.01.1982,3.6,-0.1,1.75,0.9,27.5 +27.01.1982,3.4,0.7,2.05,0.4,28.4 +28.01.1982,1.4,-3,-0.8,8.3,29.2 +29.01.1982,4.7,0.5,2.6,7.7,36.5 +30.01.1982,8.1,3.4,5.75,8.5,74.1 +31.01.1982,6.4,-1.8,2.3,0.5,133 +01.02.1982,1.2,-5.1,-1.95,0,148 +02.02.1982,1.7,-7.3,-2.8,0,117 +03.02.1982,2.6,-7.9,-2.65,0,62.5 +04.02.1982,3.9,-8.1,-2.1,0,49.4 +05.02.1982,4.8,-7.5,-1.35,0,41.4 +06.02.1982,4.2,-3.3,0.45,0.7,39.5 +07.02.1982,7.3,0.9,4.1,2.8,39.3 +08.02.1982,6.8,0.2,3.5,3.8,38.8 +09.02.1982,6.8,-1.1,2.85,0,46 +10.02.1982,9.2,-1.9,3.65,0,57.2 +11.02.1982,10.8,-2.5,4.15,0,43.1 +12.02.1982,8,-0.5,3.75,0,40.7 +13.02.1982,11.5,-2,4.75,0.1,38.6 +14.02.1982,4.4,-3.5,0.45,0.9,38.2 +15.02.1982,4,1.4,2.7,0.3,35.8 +16.02.1982,2,-0.1,0.95,0.1,35.5 +17.02.1982,2,-0.2,0.9,0,33.3 +18.02.1982,4.2,-1,1.6,0,32.1 +19.02.1982,-0.5,-3.8,-2.15,0,30.7 +20.02.1982,4.2,-6,-0.9,0,27.4 +21.02.1982,5,-7.1,-1.05,0,27.2 +22.02.1982,6.6,-7.9,-0.65,1.2,27 +23.02.1982,2.2,-4.7,-1.25,0.4,25.9 +24.02.1982,2,-9.3,-3.65,0,24.9 +25.02.1982,1.7,-9.2,-3.75,0,24.8 +26.02.1982,4.2,-8.1,-1.95,0,24.4 +27.02.1982,5.9,-8.5,-1.3,0,23.7 +28.02.1982,5.3,-4.1,0.6,0.5,22.8 +01.03.1982,10.7,5.2,7.95,6.1,22 +02.03.1982,7.2,2.9,5.05,2.8,25.2 +03.03.1982,9.8,1.4,5.6,10.9,33.5 +04.03.1982,9.4,4,6.7,1.1,57 +05.03.1982,5.7,-1.3,2.2,0.3,76.7 +06.03.1982,8.1,-1.8,3.15,0,54.1 +07.03.1982,5.7,-3.5,1.1,0,43.3 +08.03.1982,9.7,-2.3,3.7,0,34.6 +09.03.1982,5.9,-3.1,1.4,0.1,29.9 +10.03.1982,8.4,-0.6,3.9,12.1,28.7 +11.03.1982,7,0.6,3.8,1.8,40.8 +12.03.1982,7,0.6,3.8,4.1,71.1 +13.03.1982,5.3,0.3,2.8,1.8,53 +14.03.1982,7.8,-1,3.4,0.1,54.5 +15.03.1982,12.7,1.4,7.05,0.1,46.6 +16.03.1982,8.2,4.7,6.45,2.7,42.1 +17.03.1982,5.7,0.8,3.25,5,41.1 +18.03.1982,9.8,-0.6,4.6,0.4,45.7 +19.03.1982,7.7,-1.9,2.9,0.1,43.6 +20.03.1982,7.2,-1.9,2.65,1.1,38.2 +21.03.1982,7.2,0.9,4.05,0,35.3 +22.03.1982,10.2,-0.4,4.9,0.6,35.1 +23.03.1982,9,-1.2,3.9,0,33.4 +24.03.1982,13.7,-3.7,5,0,31 +25.03.1982,14.2,-3.1,5.55,0,28.5 +26.03.1982,16.7,-2.1,7.3,0,27.6 +27.03.1982,20.3,-1.6,9.35,0,27.3 +28.03.1982,14.9,-0.2,7.35,0.3,27.4 +29.03.1982,12.7,1.8,7.25,1.1,27.3 +30.03.1982,8.4,2,5.2,0,27.3 +31.03.1982,9.4,2,5.7,0,27.2 +01.04.1982,17.4,-1.3,8.05,0,25.7 +02.04.1982,18.7,-0.1,9.3,1.8,24.5 +03.04.1982,12.1,5.8,8.95,0,24.3 +04.04.1982,17,-1.1,7.95,0,23.9 +05.04.1982,19.5,-0.6,9.45,0,23 +06.04.1982,21.2,4.1,12.65,0.7,22.3 +07.04.1982,11.9,8.3,10.1,17.1,22.4 +08.04.1982,11.8,1.6,6.7,7.6,25.2 +09.04.1982,7,1,4,1.6,62.3 +10.04.1982,6.3,0.8,3.55,2.1,57.4 +11.04.1982,5.4,-0.8,2.3,1.9,40.8 +12.04.1982,6.2,-0.5,2.85,1.7,37.1 +13.04.1982,6.4,-0.5,2.95,0.7,34 +14.04.1982,10,-3.8,3.1,0,31.5 +15.04.1982,14.4,-3.1,5.65,0,28.8 +16.04.1982,17.1,-1.1,8,0,27.2 +17.04.1982,12.2,3.3,7.75,0,26 +18.04.1982,14.1,0.4,7.25,0,25 +19.04.1982,13.9,-2.1,5.9,0,24.2 +20.04.1982,15.2,4.8,10,0,23.7 +21.04.1982,14.2,5.3,9.75,0,23.1 +22.04.1982,15.7,1.7,8.7,0,22.3 +23.04.1982,16.2,-1.3,7.45,15.4,20.1 +24.04.1982,11.4,3.6,7.5,1.7,24 +25.04.1982,15.2,1.4,8.3,0.1,26.1 +26.04.1982,12.2,2.6,7.4,0.3,23.6 +27.04.1982,13.3,4.2,8.75,0,21.9 +28.04.1982,10.7,5.6,8.15,0.6,21.1 +29.04.1982,8.7,3.2,5.95,4.8,21.1 +30.04.1982,9.3,1.4,5.35,2.6,22.1 +01.05.1982,10.3,3,6.65,3.9,22.5 +02.05.1982,9.9,0.4,5.15,0.1,22.9 +03.05.1982,15.5,0.8,8.15,0,23.2 +04.05.1982,14.4,3.3,8.85,1.6,21.7 +05.05.1982,12.6,6.2,9.4,1.8,21 +06.05.1982,13.7,1.3,7.5,9.2,21 +07.05.1982,11,3.4,7.2,3.2,25.6 +08.05.1982,14.8,1.1,7.95,0,28.3 +09.05.1982,17.9,1.2,9.55,1.7,26 +10.05.1982,14.4,6.4,10.4,25.9,24.6 +11.05.1982,14.2,6.7,10.45,5.1,48 +12.05.1982,18.3,2.4,10.35,0,107 +13.05.1982,20.7,2.1,11.4,0,65.3 +14.05.1982,22.7,2.7,12.7,0,45.9 +15.05.1982,24.7,5,14.85,0,39.5 +16.05.1982,26.6,7.9,17.25,0,35.3 +17.05.1982,22.7,10.5,16.6,2.7,32.4 +18.05.1982,24,9.7,16.85,2.1,31.3 +19.05.1982,20.1,11.9,16,0,29.9 +20.05.1982,23.7,6.3,15,0.5,27.3 +21.05.1982,18.2,13.3,15.75,1.9,26.6 +22.05.1982,17.9,13.3,15.6,0.4,25.3 +23.05.1982,17.7,11,14.35,10.7,26.6 +24.05.1982,16,9.3,12.65,2,29.2 +25.05.1982,19.2,6.7,12.95,0,26.6 +26.05.1982,25,5.9,15.45,0,23.9 +27.05.1982,27.6,7.7,17.65,0,22.2 +28.05.1982,19.7,10.2,14.95,0,20.7 +29.05.1982,19.1,5.7,12.4,0,19.9 +30.05.1982,21.3,5.5,13.4,0,19.8 +31.05.1982,26.2,6.8,16.5,0,19.2 +01.06.1982,29.3,10.2,19.75,0,17.9 +02.06.1982,29.9,12.4,21.15,0,17.4 +03.06.1982,31.6,11.5,21.55,0,17.1 +04.06.1982,32,12.3,22.15,0,14.9 +05.06.1982,30.8,14.1,22.45,0.8,14.2 +06.06.1982,26.6,14.8,20.7,3.2,14.1 +07.06.1982,26.8,14.5,20.65,0.4,15.3 +08.06.1982,25.6,12.4,19,2.6,16.6 +09.06.1982,22.1,13.4,17.75,0,15.7 +10.06.1982,22.6,7.8,15.2,0.1,15.6 +11.06.1982,18.5,11.2,14.85,6.5,14.8 +12.06.1982,17.8,10.6,14.2,4.9,15.5 +13.06.1982,14.5,9.4,11.95,4.2,18 +14.06.1982,14.5,9.1,11.8,1.2,17.4 +15.06.1982,14.6,5.4,10,0.3,15.3 +16.06.1982,13.7,6.9,10.3,4.6,14.9 +17.06.1982,18,6.6,12.3,0,15.7 +18.06.1982,20.2,4.8,12.5,2.6,15.2 +19.06.1982,18.2,10.7,14.45,5.8,14.7 +20.06.1982,18.5,11.9,15.2,0,16.6 +21.06.1982,19.8,7.8,13.8,0.1,15.5 +22.06.1982,22.2,9.1,15.65,1.3,14.9 +23.06.1982,21.9,12.4,17.15,1.2,13.8 +24.06.1982,17.9,11.2,14.55,1,14.3 +25.06.1982,24.6,8.8,16.7,0.5,14.1 +26.06.1982,22.7,13.6,18.15,7.2,13.6 +27.06.1982,19.9,12.6,16.25,2.2,14.3 +28.06.1982,18.8,11.1,14.95,4,18.2 +29.06.1982,17.7,10.4,14.05,5.5,15 +30.06.1982,19.7,11.1,15.4,1.3,15.1 +01.07.1982,20.4,6.8,13.6,0,15.5 +02.07.1982,25,13.2,19.1,0.4,14.4 +03.07.1982,26.5,15.1,20.8,11.7,13.8 +04.07.1982,19.5,11,15.25,0.5,15.6 +05.07.1982,19.9,7.9,13.9,0,15.7 +06.07.1982,21.2,10.9,16.05,0.1,14.7 +07.07.1982,21.6,13.5,17.55,0,13.1 +08.07.1982,25.6,8,16.8,0,13 +09.07.1982,28.5,10.3,19.4,0,12.7 +10.07.1982,26.4,12.6,19.5,0,12.2 +11.07.1982,28.3,15.2,21.75,0,12.2 +12.07.1982,28.6,12.9,20.75,0,13.1 +13.07.1982,28.5,15.1,21.8,0,10.9 +14.07.1982,29.4,14.5,21.95,0,11.6 +15.07.1982,31,14.4,22.7,1.5,11.8 +16.07.1982,27.3,14.3,20.8,0,11.5 +17.07.1982,23.7,14.8,19.25,0,11.2 +18.07.1982,23.2,11,17.1,0,11.5 +19.07.1982,22.2,9.9,16.05,0,11.2 +20.07.1982,26.3,13.8,20.05,0,11 +21.07.1982,29,15.7,22.35,10.2,10.9 +22.07.1982,23.5,14.8,19.15,5.1,14.4 +23.07.1982,21.2,13.8,17.5,0.6,14.5 +24.07.1982,23,15.5,19.25,2.8,12.4 +25.07.1982,24.7,14.9,19.8,3.3,13 +26.07.1982,17.9,14.1,16,0.8,14.4 +27.07.1982,20.1,12.5,16.3,0.3,12.5 +28.07.1982,22.8,6.9,14.85,2.1,12.6 +29.07.1982,27.2,15,21.1,0,11.9 +30.07.1982,28.4,9.9,19.15,0,12.3 +31.07.1982,28.6,16.3,22.45,0.1,11.3 +01.08.1982,30.2,13.4,21.8,0.2,11 +02.08.1982,30.5,11.5,21,0,10.9 +03.08.1982,29.5,14,21.75,0.7,10.8 +04.08.1982,26.5,15.9,21.2,0,10.8 +05.08.1982,25.7,13.6,19.65,1.2,10.7 +06.08.1982,24.2,15.3,19.75,1.4,10.8 +07.08.1982,25.2,16.5,20.85,3.9,10.8 +08.08.1982,23.5,16.4,19.95,2.7,11.4 +09.08.1982,23.1,14.6,18.85,0.2,11.4 +10.08.1982,21.8,12.9,17.35,0,11.3 +11.08.1982,24.8,7.9,16.35,0,11.2 +12.08.1982,29.4,9.8,19.6,1.9,10.5 +13.08.1982,23.7,14.5,19.1,0.6,10.6 +14.08.1982,22.3,14.1,18.2,0.2,10.4 +15.08.1982,25.9,9.8,17.85,0.4,10.6 +16.08.1982,24.2,13.7,18.95,0,10 +17.08.1982,20.7,12.3,16.5,2.1,10.3 +18.08.1982,24.7,12.5,18.6,5.7,10.6 +19.08.1982,20.8,11.8,16.3,0.5,10.7 +20.08.1982,18,8.8,13.4,1.1,10.6 +21.08.1982,17.7,8.5,13.1,0,11.1 +22.08.1982,19.8,7.2,13.5,0,10.5 +23.08.1982,20.2,8.8,14.5,1,10.4 +24.08.1982,19.8,11.9,15.85,1.2,10.3 +25.08.1982,19.8,12.7,16.25,0.2,10.6 +26.08.1982,25,9.4,17.2,7.4,10.2 +27.08.1982,20.5,12.1,16.3,0.2,12.3 +28.08.1982,21.2,8.5,14.85,0.1,10.8 +29.08.1982,22.3,6.4,14.35,0,10.3 +30.08.1982,23.2,6,14.6,0.1,10 +31.08.1982,21.4,10.3,15.85,0,10.1 +01.09.1982,16.8,9.9,13.35,0,9.87 +02.09.1982,14.8,10.1,12.45,1,9.7 +03.09.1982,21.7,4.1,12.9,0,10.1 +04.09.1982,25.2,6.1,15.65,0,9.92 +05.09.1982,26.5,7.5,17,2.3,9.73 +06.09.1982,22.8,16.2,19.5,0.8,9.56 +07.09.1982,20,12.5,16.25,0,9.78 +08.09.1982,21.8,12.2,17,0,9.87 +09.09.1982,22.8,9.3,16.05,0,9.63 +10.09.1982,26,9.1,17.55,0,9.78 +11.09.1982,26,9.4,17.7,0,9.29 +12.09.1982,25.5,10.4,17.95,0,9.28 +13.09.1982,24.1,9.9,17,0,9.26 +14.09.1982,25.2,8.9,17.05,0,9.35 +15.09.1982,27.9,8.8,18.35,0,9.79 +16.09.1982,28.5,9.4,18.95,0,9.14 +17.09.1982,28.2,10.9,19.55,0,9.16 +18.09.1982,27.5,9.4,18.45,0.1,9.1 +19.09.1982,25.6,11.2,18.4,0,9.13 +20.09.1982,26.4,9.8,18.1,0.9,8.87 +21.09.1982,23.1,14.6,18.85,6.6,9.27 +22.09.1982,20,9.2,14.6,0.3,9.61 +23.09.1982,17.7,6.2,11.95,0.4,9.62 +24.09.1982,19.8,6.9,13.35,0,10.5 +25.09.1982,20.6,6.9,13.75,0,10.2 +26.09.1982,25.5,12.5,19,4.4,9.89 +27.09.1982,19.2,9.2,14.2,0,9.68 +28.09.1982,22,5.9,13.95,0,9.77 +29.09.1982,22.7,5.9,14.3,0,10 +30.09.1982,18.2,8.7,13.45,3,10.3 +01.10.1982,16.2,10,13.1,0.1,10.1 +02.10.1982,19.2,9.8,14.5,0,10.1 +03.10.1982,19.5,8.8,14.15,0,10.2 +04.10.1982,19.4,7.9,13.65,0,10.5 +05.10.1982,15,4.3,9.65,6.3,9.15 +06.10.1982,13,9.7,11.35,19.9,10 +07.10.1982,11.4,5.9,8.65,40,13.9 +08.10.1982,13.1,7.7,10.4,4.1,34.8 +09.10.1982,11.5,9.5,10.5,2.5,37.1 +10.10.1982,12.2,8.3,10.25,2.6,23.4 +11.10.1982,12.8,8.3,10.55,8.3,17.7 +12.10.1982,12.7,9.7,11.2,5.8,16.5 +13.10.1982,12.1,8.4,10.25,12.1,24.7 +14.10.1982,12.8,9.1,10.95,6.4,31.7 +15.10.1982,12.2,9,10.6,0.4,40.3 +16.10.1982,11.2,5.4,8.3,0.1,36.3 +17.10.1982,10.1,5.4,7.75,2.1,23.6 +18.10.1982,15,6.1,10.55,0.3,19.8 +19.10.1982,15.5,6.4,10.95,0.1,18.4 +20.10.1982,15.2,4.9,10.05,0,16.6 +21.10.1982,15.4,7.5,11.45,0,15.2 +22.10.1982,19.6,7.9,13.75,0,14.8 +23.10.1982,13.8,6.8,10.3,10.1,14.1 +24.10.1982,11.8,7.3,9.55,0.9,15.3 +25.10.1982,10.9,1.7,6.3,0,16.6 +26.10.1982,12.8,0.5,6.65,0.1,15.8 +27.10.1982,12.7,6.7,9.7,0.2,14.3 +28.10.1982,14.8,9.5,12.15,0,13.5 +29.10.1982,12,5.6,8.8,0,13 +30.10.1982,10.2,8.4,9.3,0,12.6 +31.10.1982,9.7,4.2,6.95,0,12.3 +01.11.1982,12.8,3.1,7.95,0,12.1 +02.11.1982,14.8,5.3,10.05,0,11.9 +03.11.1982,12.4,7.1,9.75,0,11.6 +04.11.1982,10.4,7.9,9.15,0.1,11.7 +05.11.1982,9.2,3.4,6.3,0,11.6 +06.11.1982,7.8,-2,2.9,0,11.1 +07.11.1982,8.7,-1.4,3.65,0.3,11.4 +08.11.1982,15.6,3.7,9.65,0.1,11.1 +09.11.1982,15.6,10.1,12.85,0,11.2 +10.11.1982,13.8,9.9,11.85,0.2,11.1 +11.11.1982,15,4.9,9.95,0,10.9 +12.11.1982,11.2,3,7.1,6.7,11 +13.11.1982,10.6,4.7,7.65,3,11.7 +14.11.1982,7.2,-0.1,3.55,4.9,12.7 +15.11.1982,5.7,-0.9,2.4,0.2,15.7 +16.11.1982,4.6,-1.1,1.75,6.7,15.8 +17.11.1982,4.9,1.1,3,4.2,16.1 +18.11.1982,11.6,4.6,8.1,5.9,16.1 +19.11.1982,11.6,7.5,9.55,1.8,27.4 +20.11.1982,9.7,5.4,7.55,0.3,41.8 +21.11.1982,8.7,3.9,6.3,0.1,29.3 +22.11.1982,9.2,3.4,6.3,5.2,22.8 +23.11.1982,13.8,6.5,10.15,0.2,20.8 +24.11.1982,13.8,4.3,9.05,1.5,23.2 +25.11.1982,10.7,3.6,7.15,0.4,22.4 +26.11.1982,9.7,4.7,7.2,0,22.7 +27.11.1982,7.3,3.6,5.45,3.9,19.6 +28.11.1982,6.2,-0.6,2.8,0,18.8 +29.11.1982,3.2,-0.7,1.25,0,18.3 +30.11.1982,2.2,1.1,1.65,0,17 +01.12.1982,2,0.1,1.05,0,15.3 +02.12.1982,4.3,-2.3,1,0,14.4 +03.12.1982,0.8,-2.3,-0.75,0,13.7 +04.12.1982,2.4,-0.9,0.75,0.1,13.5 +05.12.1982,3.2,1.1,2.15,1.8,13.1 +06.12.1982,4.2,0.5,2.35,2.8,13.1 +07.12.1982,5.8,-1.5,2.15,8.2,13.3 +08.12.1982,11.9,5.5,8.7,1.6,15.4 +09.12.1982,8.8,6,7.4,7.7,24 +10.12.1982,11,4.5,7.75,9.6,28 +11.12.1982,5.7,2.8,4.25,2.2,44.7 +12.12.1982,4,0.8,2.4,6.8,44.7 +13.12.1982,3.4,0.2,1.8,0.2,33.4 +14.12.1982,0.7,-0.7,0,1.9,28.9 +15.12.1982,10,-0.5,4.75,10.9,25.9 +16.12.1982,11.2,4.9,8.05,2,28.6 +17.12.1982,6,1.2,3.6,1.3,69.3 +18.12.1982,2.1,0.5,1.3,0.4,84.3 +19.12.1982,2.7,0.2,1.45,4.2,46.3 +20.12.1982,6.7,0.7,3.7,13.4,36.9 +21.12.1982,5.3,3.8,4.55,2.3,61.3 +22.12.1982,4.7,0.8,2.75,2.5,90.3 +23.12.1982,1.5,-0.5,0.5,1.1,57.7 +24.12.1982,0.4,-1.9,-0.75,1.3,44.9 +25.12.1982,1.7,-0.7,0.5,0.4,35.7 +26.12.1982,3.8,1.2,2.5,0.9,30.7 +27.12.1982,8,3.7,5.85,4.4,28.5 +28.12.1982,6.2,2.9,4.55,1.9,30.4 +29.12.1982,4.7,-0.7,2,0,37.2 +30.12.1982,4.4,-1.1,1.65,0,30.8 +31.12.1982,1.2,-4.3,-1.55,0,26.9 +01.01.1983,1.7,-5.1,-1.7,0.9,24.3 +02.01.1983,2.4,-4.2,-0.9,0.7,22.6 +03.01.1983,9,1,5,7.2,21.5 +04.01.1983,10.2,6.7,8.45,8.4,23.8 +05.01.1983,12.2,3.6,7.9,3.6,56.5 +06.01.1983,13.2,9.1,11.15,3.6,72.4 +07.01.1983,10.2,3.3,6.75,1.3,63.7 +08.01.1983,5.7,0.6,3.15,1.5,51.2 +09.01.1983,5.6,1.5,3.55,1.8,43.7 +10.01.1983,7.7,2.5,5.1,0.4,38.3 +11.01.1983,9.7,6.9,8.3,0.1,37.4 +12.01.1983,7.3,2.5,4.9,0,33.8 +13.01.1983,6.2,-0.6,2.8,1.4,30.1 +14.01.1983,4.4,-0.1,2.15,7.2,27.9 +15.01.1983,4.7,0.8,2.75,11.1,30.9 +16.01.1983,7.4,4.2,5.8,2.3,45.4 +17.01.1983,8.1,6.8,7.45,0.5,69.1 +18.01.1983,7.8,1.9,4.85,3.1,56.9 +19.01.1983,3.1,0.2,1.65,4.3,47 +20.01.1983,2.7,-0.1,1.3,1.5,41.3 +21.01.1983,4.9,0.8,2.85,0.5,36.3 +22.01.1983,5.6,4.1,4.85,0,35.5 +23.01.1983,4.6,-2.7,0.95,0,36.6 +24.01.1983,1.8,-6.1,-2.15,0,33.9 +25.01.1983,2.8,-3.5,-0.35,1.2,29.3 +26.01.1983,8.8,2.4,5.6,0.6,27.1 +27.01.1983,11.8,8.6,10.2,2.7,27 +28.01.1983,9.8,7.5,8.65,5,30.1 +29.01.1983,10.2,6.5,8.35,1.8,33.3 +30.01.1983,7.7,-0.5,3.6,8.2,46.3 +31.01.1983,4.3,-0.5,1.9,5.6,48.3 +01.02.1983,10.2,1.9,6.05,9.7,51.7 +02.02.1983,4.3,0.4,2.35,1.7,85.7 +03.02.1983,3.4,-2.1,0.65,3.5,114 +04.02.1983,3.1,-3.7,-0.3,0.3,70.6 +05.02.1983,1.5,-4.3,-1.4,4.3,53.8 +06.02.1983,3.2,0.6,1.9,4.1,46.9 +07.02.1983,2.2,-0.4,0.9,1.6,44.8 +08.02.1983,0,-2.5,-1.25,0.9,42.1 +09.02.1983,0.7,-3.5,-1.4,0.9,37.3 +10.02.1983,-2,-4,-3,0.7,33.8 +11.02.1983,-1.7,-4.9,-3.3,0.3,31.3 +12.02.1983,-0.6,-2.5,-1.55,0.7,28.6 +13.02.1983,1.2,-9.9,-4.35,0,27.1 +14.02.1983,-0.6,-10.6,-5.6,0,25.2 +15.02.1983,-1,-8.1,-4.55,0,23.3 +16.02.1983,-0.5,-11.3,-5.9,0,22.1 +17.02.1983,2.6,-7,-2.2,0,20.7 +18.02.1983,1.8,-11.2,-4.7,0,19.8 +19.02.1983,-0.1,-4.9,-2.5,0.1,19.4 +20.02.1983,1.7,-0.8,0.45,0.5,19 +21.02.1983,2.1,-7.5,-2.7,0,18.5 +22.02.1983,1.2,-13.5,-6.15,0,18 +23.02.1983,4.5,-12.9,-4.2,0,17.1 +24.02.1983,6.7,-11.1,-2.2,0,16.7 +25.02.1983,8.2,-7.7,0.25,1.6,17 +26.02.1983,8.3,2,5.15,2.9,17.3 +27.02.1983,8.5,4.2,6.35,6,27.7 +28.02.1983,7.4,3.1,5.25,1.6,62.8 +01.03.1983,4.4,0.3,2.35,3.7,75.1 +02.03.1983,6.9,-0.3,3.3,0.1,57.9 +03.03.1983,7.3,-1,3.15,0,45.5 +04.03.1983,8.6,-3.2,2.7,0,40.1 +05.03.1983,10.6,-2.1,4.25,0,34.8 +06.03.1983,8.2,6.1,7.15,0.1,32.1 +07.03.1983,11.8,6.9,9.35,0.1,29.9 +08.03.1983,8.7,1.7,5.2,0,28.9 +09.03.1983,13.2,-1.4,5.9,0,27.9 +10.03.1983,8.2,2.9,5.55,0,27 +11.03.1983,8.9,-0.4,4.25,0,26.2 +12.03.1983,7.8,-5.1,1.35,0,24.8 +13.03.1983,11.8,-4.5,3.65,0.5,23.2 +14.03.1983,14.2,-0.9,6.65,2.1,22.4 +15.03.1983,11.6,5.6,8.6,1.9,22.1 +16.03.1983,11,2.3,6.65,0.1,22.4 +17.03.1983,10.9,-1.9,4.5,4.1,22.1 +18.03.1983,12.6,8.5,10.55,3.8,21.7 +19.03.1983,11.6,9.4,10.5,5,23.2 +20.03.1983,12.2,7.3,9.75,2,27.5 +21.03.1983,10.6,7.5,9.05,5.3,29.5 +22.03.1983,9.1,0.5,4.8,8.9,28.7 +23.03.1983,8.6,1.3,4.95,5.4,31.6 +24.03.1983,10.2,4.6,7.4,6.2,46.3 +25.03.1983,6.7,1.7,4.2,4,75 +26.03.1983,4.1,-0.5,1.8,3.7,71 +27.03.1983,5.1,-0.5,2.3,3.5,59.3 +28.03.1983,4.6,-1.1,1.75,3.8,54.8 +29.03.1983,7.6,-1.3,3.15,0.1,57.6 +30.03.1983,6.2,-0.6,2.8,1.8,51 +31.03.1983,9.9,4.4,7.15,1.2,47.2 +01.04.1983,12.2,1.2,6.7,7.2,48.5 +02.04.1983,8.6,3.6,6.1,13.1,52.9 +03.04.1983,7.7,-0.1,3.8,0.2,87.4 +04.04.1983,7.8,-2.9,2.45,0.9,102 +05.04.1983,7.7,1.9,4.8,8.3,67.7 +06.04.1983,9.1,3.3,6.2,4.9,61.6 +07.04.1983,8.6,2.4,5.5,3.1,75.8 +08.04.1983,9.7,0.9,5.3,24.6,77.5 +09.04.1983,10.8,3.8,7.3,0.4,120 +10.04.1983,12.8,2.3,7.55,5.4,175 +11.04.1983,14.7,6,10.35,5.7,161 +12.04.1983,7.6,3.5,5.55,8.5,123 +13.04.1983,7.2,1.8,4.5,1.5,124 +14.04.1983,6.6,-0.2,3.2,6,124 +15.04.1983,9.2,3.8,6.5,2,106 +16.04.1983,17.2,2.7,9.95,0,100 +17.04.1983,20.7,3.6,12.15,0,86.5 +18.04.1983,22.3,9.4,15.85,0.1,71.6 +19.04.1983,19.2,9.1,14.15,14.5,62.3 +20.04.1983,16.8,4.8,10.8,0,68.3 +21.04.1983,21.8,8.9,15.35,0.2,73 +22.04.1983,15.2,7.4,11.3,0.3,56.1 +23.04.1983,21.4,3.2,12.3,6.4,49.2 +24.04.1983,13.4,8,10.7,0.9,46.3 +25.04.1983,20.7,2.6,11.65,1.6,48.4 +26.04.1983,20.6,8.3,14.45,1.8,42.1 +27.04.1983,15.4,8,11.7,1,39.3 +28.04.1983,17.4,6.4,11.9,1.7,37.3 +29.04.1983,15.2,6,10.6,1.1,34.3 +30.04.1983,18.7,1.4,10.05,1.2,32 +01.05.1983,15.8,7.3,11.55,2.4,29.5 +02.05.1983,14.6,7.6,11.1,4.3,29 +03.05.1983,11.6,5.5,8.55,1.3,29.2 +04.05.1983,13.5,6.1,9.8,2.1,29.7 +05.05.1983,15.8,1.9,8.85,0,28.4 +06.05.1983,17.8,1.4,9.6,0,27.1 +07.05.1983,13.9,10.5,12.2,8.6,25.6 +08.05.1983,15.7,9.8,12.75,1.3,27.3 +09.05.1983,15.6,5.7,10.65,1.5,27.3 +10.05.1983,12.7,6.4,9.55,1.7,26.3 +11.05.1983,14,5.9,9.95,1.2,24.6 +12.05.1983,16.4,7.5,11.95,3.5,24.3 +13.05.1983,12.7,7.5,10.1,2.7,24.2 +14.05.1983,18.8,4.7,11.75,3.3,24.7 +15.05.1983,19.7,11,15.35,2.8,24.8 +16.05.1983,22.5,12.2,17.35,0.2,26.4 +17.05.1983,22.2,7.2,14.7,2.3,24.9 +18.05.1983,18.1,9.4,13.75,0,23.6 +19.05.1983,14.3,5.1,9.7,3,21.9 +20.05.1983,21.1,4.3,12.7,0,21.6 +21.05.1983,23.8,8.6,16.2,0.8,21.2 +22.05.1983,14.3,9.7,12,0.7,19.9 +23.05.1983,10.8,8.6,9.7,29.7,20.2 +24.05.1983,10.4,8.5,9.45,6.8,41.9 +25.05.1983,11.2,9.1,10.15,18.5,59.7 +26.05.1983,13.4,8.8,11.1,2.8,81.2 +27.05.1983,9.8,7.5,8.65,6.9,108 +28.05.1983,12.6,6.9,9.75,1.8,99.3 +29.05.1983,12.9,7.2,10.05,3.8,84.8 +30.05.1983,14.8,8.4,11.6,0.2,66.7 +31.05.1983,23.2,4.1,13.65,0,58.2 +01.06.1983,25.5,9.5,17.5,3.7,47.5 +02.06.1983,22.2,14.8,18.5,0.8,42.1 +03.06.1983,22.4,6.9,14.65,0,39.5 +04.06.1983,27,9.4,18.2,0,34.9 +05.06.1983,18.9,12.8,15.85,1.5,31.9 +06.06.1983,17.8,9.2,13.5,0.1,28.1 +07.06.1983,22.7,4.7,13.7,0.1,26.1 +08.06.1983,28,5.6,16.8,0.4,24.6 +09.06.1983,24,12.5,18.25,1.4,23.8 +10.06.1983,20,11.4,15.7,0,23.4 +11.06.1983,22.3,8.4,15.35,0,22.4 +12.06.1983,24.5,9.5,17,0,21.4 +13.06.1983,24.2,11.8,18,1.6,21.2 +14.06.1983,20,11.7,15.85,0.6,20.8 +15.06.1983,17,6.5,11.75,1.1,20.9 +16.06.1983,13.4,5.5,9.45,0.1,19.8 +17.06.1983,12.7,5.4,9.05,0,19.2 +18.06.1983,18.5,4.7,11.6,0,18.2 +19.06.1983,23.6,8.2,15.9,0,17.4 +20.06.1983,25.6,8.9,17.25,0,18 +21.06.1983,27,8.9,17.95,5.2,16.4 +22.06.1983,27.6,13.7,20.65,0,15.7 +23.06.1983,28.2,10.3,19.25,0,17.1 +24.06.1983,29.5,11.7,20.6,0,15.9 +25.06.1983,25.2,15.3,20.25,3.9,15.2 +26.06.1983,25,14.6,19.8,5.9,15.9 +27.06.1983,19.6,13.3,16.45,2.5,19.4 +28.06.1983,16.4,9.1,12.75,0.1,16.7 +29.06.1983,15.9,9.4,12.65,0.8,15.9 +30.06.1983,19.2,13.7,16.45,2.3,15.3 +01.07.1983,16.7,10.7,13.7,4.7,15.5 +02.07.1983,21.7,6.5,14.1,0,16.6 +03.07.1983,25.2,12.1,18.65,0,15.4 +04.07.1983,26,12.2,19.1,0,14.4 +05.07.1983,27.2,11.3,19.25,0,14 +06.07.1983,28.1,13.9,21,2.6,13.9 +07.07.1983,28.8,15,21.9,3.9,14.7 +08.07.1983,27.5,16,21.75,4.2,17.5 +09.07.1983,30.1,14.2,22.15,0,14.2 +10.07.1983,30.4,11.8,21.1,0,14.9 +11.07.1983,31,13.3,22.15,0,13.1 +12.07.1983,31,13.3,22.15,0,12.7 +13.07.1983,24.2,15.2,19.7,0,12.4 +14.07.1983,19.7,12.7,16.2,0,12.1 +15.07.1983,27.5,9.7,18.6,0,11.5 +16.07.1983,29.5,14,21.75,14.9,11.5 +17.07.1983,31,14,22.5,0.3,20.9 +18.07.1983,28.5,17,22.75,14.2,14.8 +19.07.1983,21.2,13.4,17.3,7.7,19.8 +20.07.1983,18.4,12.4,15.4,0,17.9 +21.07.1983,18.6,5.1,11.85,0,16.3 +22.07.1983,27.3,8.2,17.75,0,13 +23.07.1983,29.5,11.2,20.35,0,11.6 +24.07.1983,23.8,13.9,18.85,2.5,11.9 +25.07.1983,27.5,14.6,21.05,0,13 +26.07.1983,32.5,15.2,23.85,0,11.7 +27.07.1983,31.3,16.8,24.05,0.1,11.5 +28.07.1983,26.2,16.3,21.25,0,11 +29.07.1983,22.8,14.2,18.5,0,10.9 +30.07.1983,26.6,16,21.3,0,10.5 +31.07.1983,32.3,11,21.65,0,10.4 +01.08.1983,28.3,17.3,22.8,6.4,10.3 +02.08.1983,21.7,13.2,17.45,1.9,10.8 +03.08.1983,19.4,11.8,15.6,1.5,10.9 +04.08.1983,15.4,9.8,12.6,7.3,11.1 +05.08.1983,15.2,12.4,13.8,17.7,12 +06.08.1983,17.2,12.2,14.7,4.8,14.9 +07.08.1983,21.2,12,16.6,0.1,18.4 +08.08.1983,25.9,14.1,20,0.2,14.6 +09.08.1983,26.6,11.7,19.15,0,11.5 +10.08.1983,27.4,13.2,20.3,0.2,10.9 +11.08.1983,25.3,12.1,18.7,0.7,11 +12.08.1983,25.8,10.7,18.25,0,11.1 +13.08.1983,19.2,12,15.6,0,11.2 +14.08.1983,17.9,9.7,13.8,0,11 +15.08.1983,25.6,6,15.8,0,11 +16.08.1983,24.8,9.9,17.35,0.2,10.6 +17.08.1983,25,11.7,18.35,1.1,10.8 +18.08.1983,27.5,11.9,19.7,0,11 +19.08.1983,29.4,13.3,21.35,0,10.8 +20.08.1983,29.6,13.9,21.75,0,10.3 +21.08.1983,29.5,15,22.25,2.3,10.4 +22.08.1983,27.2,14,20.6,1.4,10.4 +23.08.1983,28,15.1,21.55,2.5,10.7 +24.08.1983,26.5,14.3,20.4,0,11.2 +25.08.1983,28,14.4,21.2,0,10.8 +26.08.1983,28,13.1,20.55,0,10.2 +27.08.1983,26.6,12,19.3,0,10 +28.08.1983,23.2,10.6,16.9,0,9.87 +29.08.1983,25.3,8.9,17.1,0,11.5 +30.08.1983,26.2,7.5,16.85,0,9.98 +31.08.1983,28.1,7.3,17.7,0,10.1 +01.09.1983,24.3,11.3,17.8,0.6,9.32 +02.09.1983,24.2,15.1,19.65,0.4,8.97 +03.09.1983,19.8,11.9,15.85,5.8,9.53 +04.09.1983,19.7,12.3,16,0,10.3 +05.09.1983,22.6,14.6,18.6,0,9.86 +06.09.1983,18.2,5.3,11.75,0,10.1 +07.09.1983,16.7,5.8,11.25,0,9.87 +08.09.1983,18.8,2.1,10.45,0.6,9.82 +09.09.1983,20.4,12,16.2,5.9,9.47 +10.09.1983,18.7,13.6,16.15,11.7,9.5 +11.09.1983,16.6,12.7,14.65,1.5,9.6 +12.09.1983,13.4,11.7,12.55,1.9,9.62 +13.09.1983,12.8,9.2,11,4.8,10.5 +14.09.1983,15.7,9.2,12.45,6.3,10.9 +15.09.1983,22.1,9.9,16,13,12.8 +16.09.1983,17,10.2,13.6,2.9,14.8 +17.09.1983,16.1,10.1,13.1,1,16.7 +18.09.1983,16.2,9.3,12.75,0,12.9 +19.09.1983,17.4,14.4,15.9,6.8,11.2 +20.09.1983,17.8,8.6,13.2,0.1,11 +21.09.1983,16,6,11,5.2,11.3 +22.09.1983,16.7,8.4,12.55,0.1,12.1 +23.09.1983,19.4,4.2,11.8,0,11.2 +24.09.1983,24.2,6.3,15.25,1.7,11.2 +25.09.1983,19.2,7.9,13.55,0,10.6 +26.09.1983,18.7,2.8,10.75,0,10.2 +27.09.1983,25,4.9,14.95,0,10.1 +28.09.1983,23.2,6.7,14.95,0,10.1 +29.09.1983,21.7,8.1,14.9,0,9.62 +30.09.1983,12.9,9.1,11,0,9.67 +01.10.1983,15.2,4,9.6,0.1,9.48 +02.10.1983,14.7,5.6,10.15,3.1,9.56 +03.10.1983,20.2,12.5,16.35,0.1,9.8 +04.10.1983,25.4,12.7,19.05,0,9.59 +05.10.1983,21.3,11.4,16.35,0,9.87 +06.10.1983,15.8,10.3,13.05,0,9.77 +07.10.1983,15.2,8,11.6,0.5,9.71 +08.10.1983,13.5,10.1,11.8,9.4,9.58 +09.10.1983,13,7.8,10.4,1.5,9.98 +10.10.1983,14.8,8.9,11.85,2.1,10.6 +11.10.1983,13.6,8.3,10.95,1.8,11.2 +12.10.1983,11.8,7,9.4,0.1,10.5 +13.10.1983,20.2,2.7,11.45,0.1,10.5 +14.10.1983,17.3,8.6,12.95,3.7,10.2 +15.10.1983,14.4,7.3,10.85,2.2,10 +16.10.1983,14.7,7.8,11.25,7.7,10.3 +17.10.1983,10.3,7.5,8.9,0.5,13.3 +18.10.1983,11.8,4.7,8.25,1.9,13.2 +19.10.1983,15.5,5.6,10.55,2.7,10.3 +20.10.1983,10.7,3.7,7.2,0,10.9 +21.10.1983,10.2,2.4,6.3,0,11.6 +22.10.1983,9.6,-1.1,4.25,0,11.1 +23.10.1983,11.8,-3,4.4,0,10.3 +24.10.1983,11.2,-2.9,4.15,0,10.1 +25.10.1983,9.6,-2.1,3.75,0.1,10.1 +26.10.1983,13.4,4.6,9,0,10.1 +27.10.1983,15.2,1.5,8.35,0,10.1 +28.10.1983,9.4,4.3,6.85,0.7,10 +29.10.1983,8.7,-0.6,4.05,0.3,9.97 +30.10.1983,7.9,-2.5,2.7,0.1,9.7 +31.10.1983,8.8,-1.2,3.8,0.5,9.79 +01.11.1983,10.8,7.3,9.05,0.1,9.62 +02.11.1983,11.9,8,9.95,0,9.64 +03.11.1983,14.2,1.5,7.85,0,9.6 +04.11.1983,12.6,2.4,7.5,0,9.7 +05.11.1983,15.3,3.6,9.45,0,9.7 +06.11.1983,10.6,2.7,6.65,0.1,9.7 +07.11.1983,10.6,1.8,6.2,0,9.66 +08.11.1983,11.2,0.5,5.85,0,9.7 +09.11.1983,10,0.5,5.25,0,9.6 +10.11.1983,10.3,-1.5,4.4,0,9.6 +11.11.1983,4.8,-0.1,2.35,0,9.33 +12.11.1983,6.6,-3.3,1.65,0,9.49 +13.11.1983,3.5,-6.4,-1.45,0,9.48 +14.11.1983,2.2,-9.5,-3.65,0.1,9.6 +15.11.1983,-0.8,-9.7,-5.25,1.9,9.3 +16.11.1983,1.8,-1.5,0.15,0.4,9.21 +17.11.1983,3.5,-0.7,1.4,0.3,9.64 +18.11.1983,3.4,-0.9,1.25,0.3,9.51 +19.11.1983,4.5,0.1,2.3,0.2,9.6 +20.11.1983,4,1.5,2.75,0.4,9.6 +21.11.1983,4.7,-0.5,2.1,0.6,9.51 +22.11.1983,3.8,-1.9,0.95,0,9.6 +23.11.1983,3.8,-3.9,-0.05,0,9.56 +24.11.1983,1.7,-3.1,-0.7,1.9,9.6 +25.11.1983,11.2,-1.9,4.65,7.7,9.6 +26.11.1983,13.2,11,12.1,21,8.96 +27.11.1983,14.7,8.1,11.4,14.8,22.1 +28.11.1983,8.7,5,6.85,4.4,51.1 +29.11.1983,8.2,3.5,5.85,2.3,45.6 +30.11.1983,4,-2.1,0.95,2.5,25.5 +01.12.1983,-0.2,-6,-3.1,0.2,20.6 +02.12.1983,-1.3,-8.6,-4.95,0,17.1 +03.12.1983,0.3,-9.2,-4.45,0,15.3 +04.12.1983,0.8,-8.5,-3.85,0,14.4 +05.12.1983,1.8,-8.9,-3.55,1.3,13 +06.12.1983,1.8,-7.1,-2.65,4.2,13.2 +07.12.1983,2,-6,-2,1.1,12.5 +08.12.1983,1.5,-6.9,-2.7,2.9,12.5 +09.12.1983,3.2,0.7,1.95,2.8,11.5 +10.12.1983,4,-4,0,2.1,12.6 +11.12.1983,0.9,-8.4,-3.75,0.7,13.6 +12.12.1983,-3.6,-13.1,-8.35,0,13.2 +13.12.1983,-2.8,-10.6,-6.7,0,11.2 +14.12.1983,-1.4,-6.7,-4.05,0,11.8 +15.12.1983,-0.7,-10.9,-5.8,0,10.6 +16.12.1983,-3.3,-12.6,-7.95,0,10.4 +17.12.1983,-0.9,-8.2,-4.55,0.2,11.6 +18.12.1983,4,-1.6,1.2,2.9,12 +19.12.1983,3.8,1.1,2.45,1.3,11.3 +20.12.1983,7.9,1.7,4.8,0.6,12.3 +21.12.1983,7.2,2.4,4.8,0.3,14.9 +22.12.1983,7,-0.1,3.45,4.2,16.5 +23.12.1983,8.7,5.1,6.9,0.7,19.4 +24.12.1983,11.9,3.5,7.7,2.5,24.9 +25.12.1983,13.4,9.5,11.45,11.5,24.3 +26.12.1983,10,4.4,7.2,7.9,28.6 +27.12.1983,6.4,2.5,4.45,0.2,51.6 +28.12.1983,9.3,6,7.65,0.1,40.6 +29.12.1983,8.4,6,7.2,0,28.6 +30.12.1983,6.4,3.1,4.75,0,24.1 +31.12.1983,4.9,0.4,2.65,0,21 +01.01.1984,5.2,2.9,4.05,2,18 +02.01.1984,7.2,4.3,5.75,7.1,17.6 +03.01.1984,6.8,3.7,5.25,8.4,18.6 +04.01.1984,4.8,0.4,2.6,5.6,48.6 +05.01.1984,2,-0.5,0.75,2.1,46.2 +06.01.1984,3.5,1.1,2.3,0.4,29.8 +07.01.1984,3.7,1.9,2.8,3.8,26.3 +08.01.1984,3.1,0.8,1.95,3.7,28.1 +09.01.1984,2,-0.7,0.65,1.1,27 +10.01.1984,1.8,-2.1,-0.15,0.7,23.4 +11.01.1984,4.4,-0.1,2.15,0.5,21.2 +12.01.1984,4.8,3,3.9,1.1,20.2 +13.01.1984,6.2,1.9,4.05,8.1,21.5 +14.01.1984,10.1,3.7,6.9,18.7,31.5 +15.01.1984,4.2,0.3,2.25,3.3,81 +16.01.1984,5,0.5,2.75,15.8,135 +17.01.1984,7.4,0.1,3.75,3.2,110 +18.01.1984,2.7,0.2,1.45,1,121 +19.01.1984,3.4,-1.4,1,0.1,157 +20.01.1984,2.2,-3.5,-0.65,0.5,68.2 +21.01.1984,-1.1,-6.7,-3.9,0,48.2 +22.01.1984,-2.5,-5.4,-3.95,5.9,40.1 +23.01.1984,2.5,-3.5,-0.5,5.7,34.8 +24.01.1984,3,0.7,1.85,6.4,33 +25.01.1984,1.5,-4.7,-1.6,0.4,31.6 +26.01.1984,-0.5,-10,-5.25,1.6,27.7 +27.01.1984,2.8,-1,0.9,0.5,24.9 +28.01.1984,4.5,-1.9,1.3,0.7,24.6 +29.01.1984,5.1,1.4,3.25,3.3,23.5 +30.01.1984,5.5,2.6,4.05,2.4,25.5 +31.01.1984,3.8,1.1,2.45,5.7,40.7 +01.02.1984,2.4,0.4,1.4,4.4,48.9 +02.02.1984,7.2,1.8,4.5,1.5,49.5 +03.02.1984,5.7,2.8,4.25,9.4,62.3 +04.02.1984,6.2,3.4,4.8,0.8,90.5 +05.02.1984,8.8,2.6,5.7,4.4,108 +06.02.1984,5.2,-0.9,2.15,41.2,101 +07.02.1984,7.2,0.1,3.65,2.5,162 +08.02.1984,3.2,0.7,1.95,9.2,360 +09.02.1984,2.8,0.4,1.6,1.1,249 +10.02.1984,2.4,-2.9,-0.25,1.4,158 +11.02.1984,5.2,0.6,2.9,0.9,99.3 +12.02.1984,2.9,-3.3,-0.2,0,80.3 +13.02.1984,2.2,-3.2,-0.5,0,66.2 +14.02.1984,4.6,-4.3,0.15,0,54.4 +15.02.1984,3.8,-3.8,0,0,46 +16.02.1984,0.6,-7.7,-3.55,0,41.2 +17.02.1984,1.7,-10.3,-4.3,0,36.5 +18.02.1984,-0.4,-10.2,-5.3,0,32.7 +19.02.1984,1.2,-8.8,-3.8,0,30.5 +20.02.1984,4.2,-6.6,-1.2,0.1,28.4 +21.02.1984,5.8,-3.7,1.05,1.7,26.9 +22.02.1984,2.6,-0.6,1,1.1,26.2 +23.02.1984,2.2,-1.1,0.55,0,25.9 +24.02.1984,2.2,-1.1,0.55,0,24.7 +25.02.1984,2,-0.7,0.65,1.2,24.1 +26.02.1984,5.1,-0.5,2.3,0.4,22.9 +27.02.1984,3.8,-0.1,1.85,1.9,22.7 +28.02.1984,5,-1.9,1.55,0,23.1 +29.02.1984,7.6,-5.2,1.2,0,21.8 +01.03.1984,7.2,-4.9,1.15,0,20.6 +02.03.1984,3.7,-4.6,-0.45,3.9,20.1 +03.03.1984,2.9,-0.5,1.2,0.4,20.8 +04.03.1984,2.1,-5.2,-1.55,0,21.1 +05.03.1984,3,-1.2,0.9,0.1,19.9 +06.03.1984,9.2,1.6,5.4,0.1,19.1 +07.03.1984,6.4,2.1,4.25,0.2,19 +08.03.1984,6.2,-1.7,2.25,0.7,20.9 +09.03.1984,4.2,-5.6,-0.7,0.1,21.2 +10.03.1984,3.6,-7.5,-1.95,0,19.6 +11.03.1984,7.2,-6.3,0.45,0,18.4 +12.03.1984,6.7,-5.2,0.75,0,17.7 +13.03.1984,6,-0.7,2.65,0,17.2 +14.03.1984,8,-0.8,3.6,0,17 +15.03.1984,11.2,-3.5,3.85,0,17 +16.03.1984,6.3,-3.3,1.5,0,17.2 +17.03.1984,7.6,-0.5,3.55,0,18 +18.03.1984,6,-2.6,1.7,0,17.7 +19.03.1984,6.2,-3.6,1.3,0,17.7 +20.03.1984,7.4,-6.7,0.35,0,17.8 +21.03.1984,11,-6,2.5,0,17.3 +22.03.1984,11.4,-4.5,3.45,0,17.4 +23.03.1984,12.6,-5,3.8,0,17.2 +24.03.1984,12.2,-3.5,4.35,1.5,17.5 +25.03.1984,9.6,2.4,6,1.2,17.2 +26.03.1984,11.9,-0.6,5.65,1.8,18.6 +27.03.1984,10.4,3.9,7.15,6.5,19.6 +28.03.1984,12.2,6.2,9.2,3.1,23.4 +29.03.1984,10.9,4.6,7.75,2,31.2 +30.03.1984,8.1,-0.6,3.75,0.4,39 +31.03.1984,7.8,-2.9,2.45,4.2,32.9 +01.04.1984,3.2,0.3,1.75,12.5,29.7 +02.04.1984,2.1,-0.6,0.75,9.4,34.7 +03.04.1984,2,-0.8,0.6,1.5,40.7 +04.04.1984,3.2,-0.7,1.25,2.8,36.7 +05.04.1984,6.8,-0.9,2.95,0.5,35.8 +06.04.1984,6.9,-1.5,2.7,0.9,38.5 +07.04.1984,6.9,0.7,3.8,0.1,40.7 +08.04.1984,9.7,1.6,5.65,0.1,42.9 +09.04.1984,8.7,1.9,5.3,0.8,43.1 +10.04.1984,10.9,1.5,6.2,0,42.2 +11.04.1984,11.2,4.4,7.8,0,38.8 +12.04.1984,6.2,1.4,3.8,2,36.1 +13.04.1984,13.8,-0.3,6.75,0,35 +14.04.1984,17.7,-1.1,8.3,0,32.7 +15.04.1984,20.7,1.7,11.2,0.7,30.7 +16.04.1984,15.3,4.5,9.9,3,31.1 +17.04.1984,9.6,1.5,5.55,0,31.4 +18.04.1984,13,-2.5,5.25,0,27.8 +19.04.1984,15.6,-2.3,6.65,0,25.5 +20.04.1984,16.6,-1.1,7.75,0,23.8 +21.04.1984,21,0.9,10.95,0,22.9 +22.04.1984,24.2,4,14.1,0,22.2 +23.04.1984,20.2,5,12.6,0,21.8 +24.04.1984,19.2,2.3,10.75,0,20.8 +25.04.1984,19.9,1.1,10.5,0,20 +26.04.1984,19.3,1.9,10.6,0,19.4 +27.04.1984,14.8,-1.6,6.6,0,18.4 +28.04.1984,10.7,-1.9,4.4,0,18.2 +29.04.1984,13.9,-1.8,6.05,0,17.7 +30.04.1984,13.2,0.5,6.85,5.1,17.4 +01.05.1984,9.3,5.4,7.35,2.2,18.8 +02.05.1984,18.7,1.7,10.2,0.6,16.8 +03.05.1984,13.2,7.2,10.2,0.6,16.3 +04.05.1984,19.2,6.7,12.95,0.1,15.9 +05.05.1984,21,9.5,15.25,1.6,15.6 +06.05.1984,17.1,12.1,14.6,0.3,15.4 +07.05.1984,12.8,3.7,8.25,0.3,14.9 +08.05.1984,10.8,1.9,6.35,0.8,14.9 +09.05.1984,11,0.2,5.6,0,14.7 +10.05.1984,10.2,1.2,5.7,0.4,14.3 +11.05.1984,12.3,2.8,7.55,1.9,14.1 +12.05.1984,9.2,5.8,7.5,6,14 +13.05.1984,9.3,5.3,7.3,3.8,15 +14.05.1984,14.2,6.2,10.2,7.4,17.3 +15.05.1984,15.2,8.4,11.8,0.1,18.2 +16.05.1984,21.7,4.5,13.1,6.8,18 +17.05.1984,17.6,9.8,13.7,1.5,18.5 +18.05.1984,20.6,6.1,13.35,0.1,17.9 +19.05.1984,23.5,5.8,14.65,12.2,16.5 +20.05.1984,19.4,9.9,14.65,2.7,17 +21.05.1984,15.4,9.2,12.3,33.8,25.5 +22.05.1984,15.1,7.7,11.4,1,57.4 +23.05.1984,16.6,6.4,11.5,18.2,82.6 +24.05.1984,11.9,8.5,10.2,6.3,61.5 +25.05.1984,15.3,8.9,12.1,9.4,100 +26.05.1984,16.7,9.2,12.95,3.8,123 +27.05.1984,14.8,9.1,11.95,17.2,108 +28.05.1984,11.2,8.3,9.75,19.1,126 +29.05.1984,12.6,7.6,10.1,15.9,171 +30.05.1984,12.6,7.6,10.1,6.9,211 +31.05.1984,18,3.2,10.6,1.5,224 +01.06.1984,20.2,8.6,14.4,1.4,214 +02.06.1984,20.8,10.3,15.55,0.9,191 +03.06.1984,26.7,14.2,20.45,0,111 +04.06.1984,19.7,10.1,14.9,0.4,76.1 +05.06.1984,19,7.9,13.45,8.7,62.7 +06.06.1984,12.4,10.2,11.3,8.2,56.5 +07.06.1984,16.8,8.5,12.65,0.6,66.1 +08.06.1984,19.1,10.2,14.65,14.2,63.6 +09.06.1984,14.7,9.8,12.25,0,65.9 +10.06.1984,20.7,9.7,15.2,1,82 +11.06.1984,17.2,9.2,13.2,0,56.6 +12.06.1984,20.3,4.4,12.35,0,44.3 +13.06.1984,22.4,8.3,15.35,0,39 +14.06.1984,17.3,11.3,14.3,4,35.4 +15.06.1984,15,10.3,12.65,0.1,34.5 +16.06.1984,13.7,10.5,12.1,0,32.3 +17.06.1984,17.7,10.1,13.9,0,29.6 +18.06.1984,21.3,9.6,15.45,0,27.9 +19.06.1984,25.1,6,15.55,0,25.8 +20.06.1984,28.1,9.5,18.8,0.5,23.7 +21.06.1984,25,16.2,20.6,4.7,22.8 +22.06.1984,20.7,10.4,15.55,5.7,24 +23.06.1984,17.1,10.4,13.75,0.1,23.7 +24.06.1984,13.8,8.5,11.15,0.1,22.9 +25.06.1984,14.4,9.1,11.75,5.7,21.1 +26.06.1984,14.6,10.5,12.55,0.1,21.6 +27.06.1984,22.4,10.1,16.25,0.2,21.2 +28.06.1984,17,11.6,14.3,3.1,19.3 +29.06.1984,14.1,8.5,11.3,0.9,19.1 +30.06.1984,16.7,6.5,11.6,1.8,18.8 +01.07.1984,19.2,3.6,11.4,0.9,18.2 +02.07.1984,18.7,7.6,13.15,8.4,18.4 +03.07.1984,12.5,9.1,10.8,5.6,19.7 +04.07.1984,13.8,9.2,11.5,0.4,21.9 +05.07.1984,15.3,10,12.65,0,19.8 +06.07.1984,17.2,10.5,13.85,0,17.9 +07.07.1984,23.2,6.8,15,0,17 +08.07.1984,26,9.1,17.55,0,16.2 +09.07.1984,30,8.9,19.45,0,15.1 +10.07.1984,32.6,15.3,23.95,0,14.9 +11.07.1984,33.5,16.6,25.05,8,14.2 +12.07.1984,24.4,16.4,20.4,0.4,15.4 +13.07.1984,20,11.9,15.95,2.7,15 +14.07.1984,16.3,12.7,14.5,13.6,15 +15.07.1984,16.8,12.9,14.85,17.4,16.8 +16.07.1984,16.2,11.3,13.75,4.4,32.2 +17.07.1984,14.2,9.9,12.05,0.6,32 +18.07.1984,13.8,11.1,12.45,4.9,26.4 +19.07.1984,17.3,12,14.65,0.4,22.9 +20.07.1984,15.6,11.1,13.35,0,21.5 +21.07.1984,17.5,12.1,14.8,0,20.3 +22.07.1984,18.1,10.3,14.2,0,18.6 +23.07.1984,19.5,8.5,14,0,16.8 +24.07.1984,23,7.3,15.15,0,16.1 +25.07.1984,23.9,7.3,15.6,0,15.5 +26.07.1984,15.9,12.6,14.25,1.8,14.4 +27.07.1984,17.4,11.8,14.6,5.6,14.2 +28.07.1984,16.6,12.9,14.75,2,14.5 +29.07.1984,26.6,15.8,21.2,0,15.2 +30.07.1984,29.4,8.2,18.8,1.2,14.9 +31.07.1984,30,16.8,23.4,6.3,14.6 +01.08.1984,20.8,15.1,17.95,8.3,14.4 +02.08.1984,22.5,13.3,17.9,0.4,18.2 +03.08.1984,27.2,15.1,21.15,0.5,16.2 +04.08.1984,21.8,15.3,18.55,3.4,14.2 +05.08.1984,22.1,14.4,18.25,1.6,13.7 +06.08.1984,19.8,10.7,15.25,1.7,14.4 +07.08.1984,20.7,8.5,14.6,0,14.1 +08.08.1984,22.1,11.4,16.75,0,14 +09.08.1984,17.6,12.9,15.25,0.9,13.2 +10.08.1984,17.2,15.2,16.2,6.2,13 +11.08.1984,15.4,13.6,14.5,5.6,13.7 +12.08.1984,21.7,13.7,17.7,0.5,15.3 +13.08.1984,22.2,9.5,15.85,0.1,16.5 +14.08.1984,24.3,10.4,17.35,1.2,14.9 +15.08.1984,21.2,13,17.1,0,13.6 +16.08.1984,21.2,11.2,16.2,0.7,13 +17.08.1984,21.9,9,15.45,0,12.6 +18.08.1984,22,9.2,15.6,0,12.8 +19.08.1984,24.8,12.9,18.85,0,12.3 +20.08.1984,25.5,10.8,18.15,0,12.3 +21.08.1984,26,11.2,18.6,0,11.6 +22.08.1984,26.5,11.2,18.85,0,11.9 +23.08.1984,27.8,10.1,18.95,0,11.6 +24.08.1984,27,10.1,18.55,1.3,11.1 +25.08.1984,22.3,16.4,19.35,14.1,11.6 +26.08.1984,22.4,15,18.7,0.5,11.7 +27.08.1984,22.6,11.4,17,0,26.9 +28.08.1984,23.5,11.1,17.3,0,15.8 +29.08.1984,24.2,9.5,16.85,0,13.5 +30.08.1984,23.2,12.6,17.9,0,12.3 +31.08.1984,22.2,13.4,17.8,0,11.4 +01.09.1984,24.4,15.5,19.95,0,11.3 +02.09.1984,24.1,14.2,19.15,0,11.4 +03.09.1984,23.7,13.3,18.5,0,11 +04.09.1984,19.8,15.2,17.5,7.3,11.1 +05.09.1984,16.1,8.4,12.25,0.4,11.5 +06.09.1984,11.1,5.6,8.35,21.2,13.2 +07.09.1984,11.1,8.8,9.95,6.9,19.6 +08.09.1984,11.5,8.9,10.2,15.2,17.8 +09.09.1984,12.8,9.6,11.2,21.9,24.5 +10.09.1984,12.2,9.7,10.95,8.8,51.5 +11.09.1984,13.2,9.8,11.5,12.4,72.6 +12.09.1984,14.1,10.8,12.45,2.4,54.2 +13.09.1984,18.5,10.4,14.45,0.4,56.9 +14.09.1984,22,9.6,15.8,5.5,42.5 +15.09.1984,17.1,12.4,14.75,2.3,36.1 +16.09.1984,14.9,12.7,13.8,0.1,34 +17.09.1984,14.2,9.2,11.7,0.4,30.9 +18.09.1984,16.4,9.7,13.05,0.1,27.7 +19.09.1984,15.5,6.2,10.85,2.6,25 +20.09.1984,15,10.5,12.75,0.2,23.1 +21.09.1984,18.3,10,14.15,3,21.9 +22.09.1984,14.2,6.6,10.4,2.9,21.5 +23.09.1984,11.6,7,9.3,4.2,21.4 +24.09.1984,11.9,8.1,10,3,21.5 +25.09.1984,12.2,7.4,9.8,4.7,22.9 +26.09.1984,10.6,8.6,9.6,5.9,25 +27.09.1984,15.6,6.7,11.15,0,29.1 +28.09.1984,15.8,5.2,10.5,0,30.8 +29.09.1984,19.7,6,12.85,3.3,25 +30.09.1984,18,10.7,14.35,0.7,23 +01.10.1984,20.3,11.4,15.85,4.6,22.5 +02.10.1984,15.8,8.5,12.15,0.7,22 +03.10.1984,14.4,5.7,10.05,1.3,22.4 +04.10.1984,15.1,7.4,11.25,7.7,22.6 +05.10.1984,15.9,9.3,12.6,4.2,23 +06.10.1984,13.6,9.4,11.5,1.3,27.2 +07.10.1984,13.2,6.3,9.75,2.9,26.3 +08.10.1984,14,9.1,11.55,1.7,25.9 +09.10.1984,16.8,11.4,14.1,4.4,24.1 +10.10.1984,15.4,11.9,13.65,1.4,27.6 +11.10.1984,16.7,9.7,13.2,0,30.3 +12.10.1984,14.1,6.8,10.45,0.2,28.9 +13.10.1984,13.5,6.2,9.85,0,25.8 +14.10.1984,13.2,5.5,9.35,0,23.7 +15.10.1984,16.1,6.9,11.5,0,22.2 +16.10.1984,14.2,5.9,10.05,0,20.9 +17.10.1984,17.4,3.7,10.55,0,20.1 +18.10.1984,16.7,10.2,13.45,5,19.1 +19.10.1984,16.3,11.6,13.95,2.2,19 +20.10.1984,15.5,8.3,11.9,4.1,21.4 +21.10.1984,11.2,7.2,9.2,0.1,20.9 +22.10.1984,10.6,1.5,6.05,4.8,21 +23.10.1984,15.2,10.4,12.8,3.6,20.6 +24.10.1984,13,7.5,10.25,0.2,23 +25.10.1984,16.6,7.3,11.95,5,24.5 +26.10.1984,14.7,4.5,9.6,6.6,25.5 +27.10.1984,12.2,2.3,7.25,0.5,31 +28.10.1984,9.8,-0.7,4.55,0,31.3 +29.10.1984,11.3,3,7.15,0.1,25.9 +30.10.1984,17,6.3,11.65,0,23.4 +31.10.1984,9.8,1.3,5.55,0,22 +01.11.1984,10.6,1.9,6.25,0.1,20.1 +02.11.1984,7.4,1,4.2,0,19.6 +03.11.1984,6.9,3.8,5.35,0,19.3 +04.11.1984,6.8,5.4,6.1,0,18.9 +05.11.1984,10.4,5.3,7.85,0,18.3 +06.11.1984,12.2,3.3,7.75,0,17.9 +07.11.1984,9.8,0.7,5.25,0,17.8 +08.11.1984,10.6,2.2,6.4,0,17.2 +09.11.1984,11.1,3.4,7.25,0,16.7 +10.11.1984,10.4,6.6,8.5,0,16 +11.11.1984,13.2,6.2,9.7,0,15.9 +12.11.1984,11,1.1,6.05,0,15.8 +13.11.1984,11,0.1,5.55,0,15 +14.11.1984,8.6,-3.1,2.75,0,14.9 +15.11.1984,2.5,-1.8,0.35,0.1,14.3 +16.11.1984,3.1,-1,1.05,3.4,15 +17.11.1984,2.8,0.5,1.65,2.3,14.5 +18.11.1984,6.2,1.6,3.9,0.1,15.9 +19.11.1984,4.1,1.7,2.9,0,15.5 +20.11.1984,4.3,1.9,3.1,1,15.1 +21.11.1984,7,3.6,5.3,5.5,15 +22.11.1984,13.5,6.4,9.95,40.4,15.8 +23.11.1984,14,8.7,11.35,15.9,75.6 +24.11.1984,14.7,8,11.35,9.7,140 +25.11.1984,10.3,8.3,9.3,1.6,197 +26.11.1984,10.3,5.3,7.8,0.1,195 +27.11.1984,7.6,2.1,4.85,0,120 +28.11.1984,8.4,0.7,4.55,0,65.9 +29.11.1984,9.6,1.5,5.55,0,53.2 +30.11.1984,6.8,-2.3,2.25,0,46 +01.12.1984,4.2,-2.5,0.85,0,39.9 +02.12.1984,0.9,-4.1,-1.6,0,36.7 +03.12.1984,3.2,-2.1,0.55,0,33.5 +04.12.1984,3.5,1.5,2.5,0,31.5 +05.12.1984,4.6,2.4,3.5,0,29.8 +06.12.1984,4.7,1.5,3.1,0,27.9 +07.12.1984,4.1,0.5,2.3,0,26.2 +08.12.1984,5.8,2.1,3.95,0.3,25.3 +09.12.1984,6.1,4.6,5.35,1.4,23.4 +10.12.1984,6.7,2.2,4.45,0.1,23.3 +11.12.1984,7,5.3,6.15,0,23.1 +12.12.1984,7.5,2.2,4.85,0,21.9 +13.12.1984,3.6,-0.4,1.6,0,21.6 +14.12.1984,2,-0.9,0.55,5.3,21.1 +15.12.1984,4.8,0.5,2.65,0.1,21.8 +16.12.1984,4.6,2.3,3.45,4,22.8 +17.12.1984,4.2,1.5,2.85,5.1,22 +18.12.1984,6.2,2.1,4.15,7.4,25.8 +19.12.1984,4,-2.1,0.95,1.2,39.5 +20.12.1984,7.3,3.6,5.45,8.2,40.5 +21.12.1984,7.4,2.5,4.95,2.1,42.7 +22.12.1984,4.3,-1.2,1.55,0,62.6 +23.12.1984,4.6,-2.7,0.95,0,45.9 +24.12.1984,6.7,-1.1,2.8,0,37.2 +25.12.1984,1.3,-3.1,-0.9,0.8,33.7 +26.12.1984,3.7,-1.2,1.25,0.1,30.9 +27.12.1984,2.8,0.5,1.65,0,29.6 +28.12.1984,1,-1.9,-0.45,0,27.7 +29.12.1984,-0.9,-3.9,-2.4,0.2,26.5 +30.12.1984,-0.2,-3.5,-1.85,0,24.7 +31.12.1984,-1.2,-8.2,-4.7,2,23.7 +01.01.1985,2,-3,-0.5,11.1,22.5 +02.01.1985,0.6,-5.8,-2.6,1.8,22.3 +03.01.1985,-3.5,-6.5,-5,2.7,22 +04.01.1985,-6,-12.1,-9.05,1,21.2 +05.01.1985,-7.3,-9.7,-8.5,0.5,18.3 +06.01.1985,-9.2,-14.1,-11.65,1.8,17.6 +07.01.1985,-8.6,-16.9,-12.75,0.4,17.7 +08.01.1985,-8.3,-16.9,-12.6,1.1,19 +09.01.1985,-7.2,-15.1,-11.15,0.8,19.7 +10.01.1985,-6.1,-10.6,-8.35,0.3,18 +11.01.1985,-7.6,-14.3,-10.95,2.2,19.6 +12.01.1985,-4.6,-11.3,-7.95,1.7,18.8 +13.01.1985,-7.5,-14.6,-11.05,0.2,18.2 +14.01.1985,-7.4,-15,-11.2,0.5,16.7 +15.01.1985,-5.8,-12.5,-9.15,0,16.8 +16.01.1985,-5.1,-13.2,-9.15,0,17.9 +17.01.1985,-6.4,-14.7,-10.55,0,18.1 +18.01.1985,-6.6,-16.5,-11.55,0,17.5 +19.01.1985,-7.7,-17.2,-12.45,1.4,17.5 +20.01.1985,-3.1,-8.2,-5.65,1,18.1 +21.01.1985,4.2,-3.5,0.35,1.5,18.5 +22.01.1985,8.2,4,6.1,3.1,23 +23.01.1985,7.7,-0.5,3.6,0.4,72.6 +24.01.1985,2.2,-1.5,0.35,1.3,74.5 +25.01.1985,2.8,0.3,1.55,6,73.6 +26.01.1985,6.5,0.4,3.45,3.2,80.4 +27.01.1985,1.7,-5.2,-1.75,0.2,76 +28.01.1985,0.8,-8.1,-3.65,0,52.6 +29.01.1985,4.8,-3.9,0.45,3.2,34 +30.01.1985,8.5,0.3,4.4,0.8,31.4 +31.01.1985,7.7,-0.3,3.7,4.1,46.1 +01.02.1985,10.5,3.8,7.15,2.8,63.2 +02.02.1985,9.7,6.8,8.25,0.6,85 +03.02.1985,6.8,-3.3,1.75,0,95.7 +04.02.1985,5.9,-4.4,0.75,0,63.5 +05.02.1985,7.7,-6.1,0.8,0,48.7 +06.02.1985,4.7,-4.6,0.05,0.3,42.4 +07.02.1985,3.1,-5,-0.95,0,38.2 +08.02.1985,-2.3,-5.7,-4,10,34.7 +09.02.1985,-4.8,-7,-5.9,3.1,32.3 +10.02.1985,-4.7,-15.1,-9.9,0,29.4 +11.02.1985,-7.1,-13.1,-10.1,0,27.5 +12.02.1985,-5.6,-16.6,-11.1,0,22.4 +13.02.1985,-1.4,-18,-9.7,0,23.1 +14.02.1985,-1.8,-15.1,-8.45,0.1,24.6 +15.02.1985,-5,-12,-8.5,0,24.4 +16.02.1985,1.7,-8,-3.15,0,23.6 +17.02.1985,2.6,-7.2,-2.3,0,22.7 +18.02.1985,-2.1,-13.3,-7.7,0,21.7 +19.02.1985,-1.2,-17.5,-9.35,0,19.9 +20.02.1985,-0.4,-17.8,-9.1,0,18.6 +21.02.1985,0.7,-3.6,-1.45,0.1,19.1 +22.02.1985,0.8,-2.1,-0.65,0.1,18.8 +23.02.1985,4.2,-7.6,-1.7,0.2,18.8 +24.02.1985,9.9,-0.4,4.75,0,18.6 +25.02.1985,9.6,-4.1,2.75,0,19.6 +26.02.1985,8.2,-1.7,3.25,0,19.5 +27.02.1985,9.8,-1.7,4.05,0,19.9 +28.02.1985,2.2,-1.5,0.35,0,22.6 +01.03.1985,8.1,0.5,4.3,1.3,22.2 +02.03.1985,7.4,2.7,5.05,1,23 +03.03.1985,10.1,2.4,6.25,0,24.3 +04.03.1985,9.8,2.9,6.35,0,24.8 +05.03.1985,9.1,2.5,5.8,0.5,24.1 +06.03.1985,6.8,3.7,5.25,0,23.2 +07.03.1985,4.6,2.7,3.65,0,22.8 +08.03.1985,7.6,1.5,4.55,0,21.8 +09.03.1985,7.1,-0.6,3.25,0,20.9 +10.03.1985,3.3,-1.1,1.1,0.1,19.8 +11.03.1985,3.6,-0.5,1.55,0.3,19 +12.03.1985,9.1,-3.7,2.7,0,18.5 +13.03.1985,9.3,-4.5,2.4,0,18.2 +14.03.1985,4,-3.9,0.05,2.7,17.8 +15.03.1985,3.7,-0.9,1.4,3.3,17.8 +16.03.1985,3.9,-1.2,1.35,3.9,18.1 +17.03.1985,2.2,-0.2,1,2.9,20.4 +18.03.1985,0.2,-1.9,-0.85,4.6,20.8 +19.03.1985,2.8,-2.1,0.35,0.4,20.1 +20.03.1985,4.2,0.4,2.3,0,19.9 +21.03.1985,9.6,-2.7,3.45,0,20 +22.03.1985,11.2,-1.1,5.05,0,20.8 +23.03.1985,11,-0.6,5.2,0.1,22.5 +24.03.1985,8.1,-0.7,3.7,1,24.8 +25.03.1985,10.6,-1.1,4.75,0.6,25.4 +26.03.1985,10.8,5.6,8.2,8.8,25.1 +27.03.1985,8.2,2.7,5.45,7.4,35.8 +28.03.1985,6.4,0,3.2,1.7,57.3 +29.03.1985,5.3,1.2,3.25,0.9,49.2 +30.03.1985,11.8,5.2,8.5,2,39.4 +31.03.1985,11.7,8.1,9.9,3.6,35.1 +01.04.1985,14.2,5.3,9.75,2.8,41.1 +02.04.1985,13.4,8,10.7,0.3,44.9 +03.04.1985,18.7,8.1,13.4,0,39.1 +04.04.1985,23.6,5.6,14.6,0,34.1 +05.04.1985,20.3,9.6,14.95,5.6,31.1 +06.04.1985,16.1,9.6,12.85,3.1,30.1 +07.04.1985,14.6,7.5,11.05,3.9,31.1 +08.04.1985,14.6,7.7,11.15,0.9,31.5 +09.04.1985,12.5,4.7,8.6,0.9,32.9 +10.04.1985,13.1,0.3,6.7,1.3,29.8 +11.04.1985,11.6,4.3,7.95,3.6,27.8 +12.04.1985,9,4.9,6.95,5.9,27.1 +13.04.1985,13.3,3.5,8.4,5.3,29.5 +14.04.1985,8.6,4.2,6.4,2.8,40.5 +15.04.1985,9.5,4.1,6.8,4.3,47.3 +16.04.1985,7.8,3.3,5.55,1.5,45.5 +17.04.1985,15.7,-0.5,7.6,0,38.8 +18.04.1985,18.4,-0.6,8.9,0,34.7 +19.04.1985,18.7,1.1,9.9,0,30.9 +20.04.1985,18.7,2,10.35,0,28.2 +21.04.1985,19.5,2.8,11.15,0,27.4 +22.04.1985,18.2,4.9,11.55,0,25.9 +23.04.1985,9.2,2.5,5.85,0.2,24.7 +24.04.1985,9.7,-0.2,4.75,0,23.8 +25.04.1985,6.2,-0.3,2.95,1,22.7 +26.04.1985,7.6,-3.8,1.9,0.5,22.5 +27.04.1985,6.2,-1,2.6,9,22.2 +28.04.1985,7.9,-0.2,3.85,2.9,23.8 +29.04.1985,7.8,0.8,4.3,0.9,26.7 +30.04.1985,10.8,1.9,6.35,0.7,23.9 +01.05.1985,11.8,4.8,8.3,2.1,22.8 +02.05.1985,8.1,3.9,6,4.3,22 +03.05.1985,7.9,2.6,5.25,0.7,23.2 +04.05.1985,9.8,1.5,5.65,0.7,23.1 +05.05.1985,13.5,4,8.75,0,22.6 +06.05.1985,17.5,6.8,12.15,0,22 +07.05.1985,20.8,9.9,15.35,0.1,21.1 +08.05.1985,19.4,9.8,14.6,1,20.5 +09.05.1985,19.5,7.1,13.3,4.6,20.5 +10.05.1985,15.6,9.7,12.65,0.2,20.5 +11.05.1985,20,6.9,13.45,3.6,21.4 +12.05.1985,22.1,8,15.05,3.7,22.9 +13.05.1985,23.9,11.9,17.9,0,23.6 +14.05.1985,19.8,11.4,15.6,0,20.9 +15.05.1985,19.5,5.4,12.45,2.1,19.8 +16.05.1985,23.3,8.1,15.7,0,19.2 +17.05.1985,21.7,7.3,14.5,0,18.9 +18.05.1985,22.3,7.3,14.8,0,18.2 +19.05.1985,23.5,11.8,17.65,2.6,17.9 +20.05.1985,23.8,12.1,17.95,4.3,17.8 +21.05.1985,23.1,12.1,17.6,16.9,19.4 +22.05.1985,13.2,10.2,11.7,14.3,29.2 +23.05.1985,15,9.9,12.45,2.3,44.4 +24.05.1985,18.9,9.2,14.05,0,39.8 +25.05.1985,24.6,6.4,15.5,0,31.3 +26.05.1985,27.9,9.5,18.7,0,25.9 +27.05.1985,28.9,12.2,20.55,2.6,23 +28.05.1985,22.1,14.8,18.45,23.5,26 +29.05.1985,15.1,12,13.55,4.5,62.3 +30.05.1985,20.7,10.8,15.75,0,40.8 +31.05.1985,23.3,5.9,14.6,0,34.2 +01.06.1985,22.8,11.8,17.3,0,26.7 +02.06.1985,25,9.3,17.15,0,23.1 +03.06.1985,25,6.6,15.8,0,21.2 +04.06.1985,26.5,8.8,17.65,0,19.5 +05.06.1985,24.2,13.1,18.65,10.6,18.8 +06.06.1985,22.7,14.3,18.5,4.8,21.5 +07.06.1985,19.7,14.8,17.25,3.1,24.7 +08.06.1985,15.8,8,11.9,4.2,21.4 +09.06.1985,13.2,6.4,9.8,7.6,21 +10.06.1985,12.8,7.5,10.15,3.8,21 +11.06.1985,14.8,9.3,12.05,4.2,24.4 +12.06.1985,16,8.4,12.2,7.4,25.1 +13.06.1985,11.8,8.4,10.1,5,26.7 +14.06.1985,14.5,5.6,10.05,2.4,30.8 +15.06.1985,13.8,7.8,10.8,0.2,28.2 +16.06.1985,14.1,2.9,8.5,0.2,24.5 +17.06.1985,12.2,6.9,9.55,0.2,21.9 +18.06.1985,17.2,4.7,10.95,0.1,20.7 +19.06.1985,19.5,8.5,14,4.3,19.7 +20.06.1985,15.7,11.6,13.65,19.6,20.2 +21.06.1985,18.6,11.4,15,1.9,32.4 +22.06.1985,20,12.2,16.1,2.1,43.1 +23.06.1985,17.6,8.4,13,0.3,31.1 +24.06.1985,19.4,7.4,13.4,5.5,26.4 +25.06.1985,15,11.3,13.15,5.4,24.9 +26.06.1985,14,7.5,10.75,11.2,27 +27.06.1985,17.6,10,13.8,2.5,37.3 +28.06.1985,15.1,10.7,12.9,2.2,40.6 +29.06.1985,16.3,11.2,13.75,0.7,33.5 +30.06.1985,22,12.1,17.05,0,31.3 +01.07.1985,19.6,10.6,15.1,17.8,27.3 +02.07.1985,19.9,11.7,15.8,0,35.7 +03.07.1985,24.2,7.4,15.8,0,49 +04.07.1985,25.7,10.2,17.95,0,32.1 +05.07.1985,26.5,11.8,19.15,0,26.3 +06.07.1985,26.1,12.2,19.15,9.9,24 +07.07.1985,20,8.4,14.2,0,30.5 +08.07.1985,15.1,7.7,11.4,1.9,25.5 +09.07.1985,16.3,11.2,13.75,3.6,22.5 +10.07.1985,16,11.9,13.95,0.5,21.7 +11.07.1985,20.1,12.2,16.15,0.1,22.1 +12.07.1985,23,10.6,16.8,0,20.6 +13.07.1985,26.7,9.9,18.3,0,19 +14.07.1985,30.6,11.4,21,0.9,18 +15.07.1985,23.2,15.4,19.3,0,17.3 +16.07.1985,24.8,10.5,17.65,0,16.5 +17.07.1985,22.9,10.3,16.6,0,16.1 +18.07.1985,26.2,9.7,17.95,7.2,15.4 +19.07.1985,20.7,15.2,17.95,2.2,16.3 +20.07.1985,20.8,11.9,16.35,3.1,18.9 +21.07.1985,17.7,9.1,13.4,3.3,17.7 +22.07.1985,19.2,7.9,13.55,5.8,17.9 +23.07.1985,19.6,13.5,16.55,0,18.6 +24.07.1985,24.7,8.6,16.65,0,17.6 +25.07.1985,26.9,10.3,18.6,0,16 +26.07.1985,25.3,14,19.65,13.4,14.7 +27.07.1985,21.7,15.1,18.4,0,19.5 +28.07.1985,26,10.1,18.05,8.5,19.1 +29.07.1985,20.5,15.6,18.05,4.1,16.4 +30.07.1985,21.2,13.6,17.4,1.3,21.6 +31.07.1985,19,12.4,15.7,5.7,18.8 +01.08.1985,20.9,9.9,15.4,8.2,17.7 +02.08.1985,19,12.9,15.95,0,19.9 +03.08.1985,20.2,11.9,16.05,2.3,22.3 +04.08.1985,17.9,10,13.95,0.1,18.1 +05.08.1985,23.8,13.2,18.5,1.3,15.9 +06.08.1985,16.2,11.6,13.9,2.5,14.9 +07.08.1985,16.8,6.6,11.7,0.4,14.7 +08.08.1985,19.3,10.2,14.75,0.2,14.5 +09.08.1985,24.7,9.1,16.9,2,14.5 +10.08.1985,20.7,13.6,17.15,2.6,14 +11.08.1985,22.7,7.2,14.95,0.4,13.9 +12.08.1985,17.9,13.9,15.9,4.1,13.7 +13.08.1985,25.5,13.5,19.5,1.6,13.5 +14.08.1985,31.1,14.7,22.9,2.1,13.9 +15.08.1985,27.5,16.1,21.8,0.7,14 +16.08.1985,22.5,14.9,18.7,6.4,13.7 +17.08.1985,18.9,12.2,15.55,3.4,14.5 +18.08.1985,17.6,9.8,13.7,0.1,14.8 +19.08.1985,19.9,8.8,14.35,8.8,14.6 +20.08.1985,19.4,12.9,16.15,0,16.4 +21.08.1985,21.8,10.9,16.35,0.3,16.1 +22.08.1985,24.8,9.6,17.2,10.4,14 +23.08.1985,20.6,10.5,15.55,0,15.8 +24.08.1985,23.2,9.3,16.25,4.8,20.3 +25.08.1985,18,11.8,14.9,0.1,15.8 +26.08.1985,19.4,8.4,13.9,0.1,15.3 +27.08.1985,18.6,9.7,14.15,0.1,14.2 +28.08.1985,22.4,4.7,13.55,0,13.2 +29.08.1985,24.2,6.9,15.55,0,12.5 +30.08.1985,24.9,8,16.45,0,12.1 +31.08.1985,25.6,8.4,17,0,12.1 +01.09.1985,20.7,13.3,17,1.4,11.7 +02.09.1985,18.8,10.5,14.65,0.6,11.4 +03.09.1985,16.8,9.3,13.05,20.4,12.7 +04.09.1985,17.5,10.7,14.1,3.3,16.9 +05.09.1985,16.2,10.7,13.45,3.4,20.7 +06.09.1985,13.8,9,11.4,1.7,18.9 +07.09.1985,13.7,6.4,10.05,2.4,17.2 +08.09.1985,11.9,8.6,10.25,6.2,15.6 +09.09.1985,14.9,7.3,11.1,0.5,15.9 +10.09.1985,18.7,2.8,10.75,0,16.9 +11.09.1985,21.1,6.5,13.8,0,15.6 +12.09.1985,21,8.1,14.55,0,14.4 +13.09.1985,22.8,6.5,14.65,3.9,14.4 +14.09.1985,16.7,12,14.35,0.1,15 +15.09.1985,13.7,8.5,11.1,2.9,14.2 +16.09.1985,13.8,4.9,9.35,0.1,13.8 +17.09.1985,16.6,12.1,14.35,2.9,13.3 +18.09.1985,21.8,11.9,16.85,0,13.8 +19.09.1985,25.9,9.8,17.85,0,13.4 +20.09.1985,22,11.8,16.9,0,13.1 +21.09.1985,23.7,12.8,18.25,0,12.2 +22.09.1985,21.7,15.6,18.65,1.1,12.1 +23.09.1985,20.2,13,16.6,0,11.5 +24.09.1985,20.7,9.8,15.25,0,11.8 +25.09.1985,17.7,9.5,13.6,0,11.7 +26.09.1985,18.8,6.4,12.6,0,11.9 +27.09.1985,21.2,6,13.6,0,10.9 +28.09.1985,19,5.9,12.45,0,10.9 +29.09.1985,19.7,8.5,14.1,0,10.9 +30.09.1985,20.7,3.4,12.05,0,10.6 +01.10.1985,24.3,6.1,15.2,0,10.8 +02.10.1985,21.7,7.6,14.65,2.6,10.8 +03.10.1985,25.3,12.5,18.9,0.1,10.6 +04.10.1985,25.5,10.3,17.9,2.1,11.1 +05.10.1985,19.6,12.6,16.1,6.9,11.4 +06.10.1985,17.5,9.8,13.65,0.4,13.4 +07.10.1985,16.2,8.3,12.25,1.4,11.5 +08.10.1985,13.2,7.3,10.25,3.7,12.2 +09.10.1985,14.1,5.9,10,1.9,12.1 +10.10.1985,14.7,10.2,12.45,0.2,11.6 +11.10.1985,17.1,11.5,14.3,0.3,11.9 +12.10.1985,15.7,5.8,10.75,0,11.6 +13.10.1985,12.8,3.6,8.2,0,11.1 +14.10.1985,13.6,4.9,9.25,0.8,10.8 +15.10.1985,14.8,6.9,10.85,0.4,10.8 +16.10.1985,10.2,5.1,7.65,0.2,10.8 +17.10.1985,12.1,9.7,10.9,0.3,10.6 +18.10.1985,11.3,8.9,10.1,0.4,10.5 +19.10.1985,11.3,4.5,7.9,0,10.7 +20.10.1985,13.1,2.8,7.95,0,10.8 +21.10.1985,13.5,0.3,6.9,0,10.5 +22.10.1985,10.2,-0.2,5,0,10.5 +23.10.1985,11.7,3.9,7.8,0,10.4 +24.10.1985,11.1,-1.4,4.85,0,10.3 +25.10.1985,11.3,2.7,7,0,10.1 +26.10.1985,10.8,-0.1,5.35,0,10.2 +27.10.1985,3,-1.2,0.9,0,10.1 +28.10.1985,4.7,0.3,2.5,0,10.1 +29.10.1985,9.1,0,4.55,0,10.1 +30.10.1985,3,-0.5,1.25,0,10.2 +31.10.1985,2.9,0.3,1.6,0,9.89 +01.11.1985,5.7,2.2,3.95,1.7,10.4 +02.11.1985,6.8,2.3,4.55,2,10 +03.11.1985,6.2,-0.9,2.65,0,10.3 +04.11.1985,8.1,-4.1,2,1.3,10.8 +05.11.1985,15.2,1.1,8.15,12.8,10.7 +06.11.1985,10.2,1.2,5.7,2.3,13.8 +07.11.1985,8.1,3.4,5.75,2.4,17.2 +08.11.1985,10.2,1.9,6.05,1.3,15.1 +09.11.1985,16.4,8.7,12.55,9.9,14.2 +10.11.1985,13.4,3.8,8.6,3.1,14.2 +11.11.1985,4.2,1,2.6,0.2,20.6 +12.11.1985,2.2,-0.2,1,0,20.4 +13.11.1985,3.9,-2.6,0.65,0,16.4 +14.11.1985,2.4,-1.6,0.4,0.1,14.8 +15.11.1985,1.9,-2,-0.05,0,13.4 +16.11.1985,1.8,-4.6,-1.4,0,12.9 +17.11.1985,0.9,-5.6,-2.35,0,12.6 +18.11.1985,-1.2,-4,-2.6,1,12 +19.11.1985,-3.5,-5.1,-4.3,0.3,12 +20.11.1985,-3,-4.5,-3.75,2.9,12.1 +21.11.1985,-1.4,-3.3,-2.35,8.5,12.1 +22.11.1985,-1.5,-6.2,-3.85,0.6,11.6 +23.11.1985,-0.9,-4.7,-2.8,0.2,11.6 +24.11.1985,-0.9,-9.1,-5,0.1,12 +25.11.1985,0.9,-4.7,-1.9,0,11.6 +26.11.1985,-1.7,-6.6,-4.15,0.4,11.4 +27.11.1985,0.1,-2.9,-1.4,4.2,10.8 +28.11.1985,1.9,-2.3,-0.2,2,12 +29.11.1985,1.4,-5.9,-2.25,4.2,11.7 +30.11.1985,0.5,-8.3,-3.9,8.7,11.3 +01.12.1985,2.4,0,1.2,0.2,12.8 +02.12.1985,5.2,-0.7,2.25,0.1,17.5 +03.12.1985,12.4,0.3,6.35,0.4,33.4 +04.12.1985,13.2,8.1,10.65,0.2,45 +05.12.1985,14.8,4.5,9.65,3.5,36.3 +06.12.1985,12.5,6.1,9.3,1.2,27.7 +07.12.1985,9.4,5.9,7.65,2.9,26.1 +08.12.1985,8.1,4.9,6.5,0.9,23.9 +09.12.1985,9,5.8,7.4,1.4,28.2 +10.12.1985,7.8,2.3,5.05,0.5,23.9 +11.12.1985,4.7,1.3,3,0,22.1 +12.12.1985,3.9,-2.8,0.55,0,21.1 +13.12.1985,2.2,-5.3,-1.55,3.3,19.4 +14.12.1985,4.5,0.8,2.65,1.1,18.4 +15.12.1985,9.2,4.5,6.85,0.9,18 +16.12.1985,11.2,8.7,9.95,1.7,18.6 +17.12.1985,9,6.9,7.95,3.7,21.3 +18.12.1985,8.2,5.1,6.65,6.4,25.2 +19.12.1985,7.8,1.3,4.55,2.7,29.3 +20.12.1985,6.5,1.5,4,5.4,33.4 +21.12.1985,6.7,-0.6,3.05,0,35 +22.12.1985,5.6,-3.1,1.25,0,30.4 +23.12.1985,5.2,-3.5,0.85,0,27 +24.12.1985,6.7,3.2,4.95,1.7,23.7 +25.12.1985,9.1,3.8,6.45,2.2,22.1 +26.12.1985,8.8,7.4,8.1,5.3,22 +27.12.1985,7.7,-1,3.35,7.3,28 +28.12.1985,-0.5,-3.5,-2,3,42.7 +29.12.1985,-1.6,-4.2,-2.9,0.4,42.5 +30.12.1985,-0.7,-6.6,-3.65,0,30.9 +31.12.1985,-3.3,-11.1,-7.2,0,26.2 +01.01.1986,-4.2,-12,-8.1,1.4,20.9 +02.01.1986,4.3,-4.8,-0.25,1.6,20.6 +03.01.1986,6.1,2.6,4.35,7.9,22 +04.01.1986,4.1,-3.1,0.5,1.5,24.9 +05.01.1986,1.5,-1.9,-0.2,0.6,26.9 +06.01.1986,3.6,1,2.3,2,24.3 +07.01.1986,2.3,-4.8,-1.25,0,22.7 +08.01.1986,-0.3,-2.6,-1.45,0,21.7 +09.01.1986,-1.9,-5.7,-3.8,0,20.7 +10.01.1986,1.3,-6.4,-2.55,4.3,19.9 +11.01.1986,5.2,1.3,3.25,4,19.4 +12.01.1986,4,1.5,2.75,2.3,22.6 +13.01.1986,6.8,2.4,4.6,8.3,33.8 +14.01.1986,8.4,0.9,4.65,8,57.1 +15.01.1986,4.4,1.2,2.8,4.9,94.9 +16.01.1986,2.2,0.3,1.25,4,103 +17.01.1986,0.6,-7.3,-3.35,2.8,68.7 +18.01.1986,4.5,-9.4,-2.45,14.6,49.7 +19.01.1986,10.4,2.9,6.65,11.6,67.7 +20.01.1986,10,2.3,6.15,0.4,128 +21.01.1986,6,4.3,5.15,4.8,192 +22.01.1986,6.5,4.7,5.6,5.7,166 +23.01.1986,7.2,3.8,5.5,8.4,104 +24.01.1986,4.9,0.3,2.6,4.5,120 +25.01.1986,1.9,0.2,1.05,2.5,159 +26.01.1986,1.1,-4,-1.45,0.2,112 +27.01.1986,-0.4,-4,-2.2,0.5,67.9 +28.01.1986,2,-3.5,-0.75,0.5,55.7 +29.01.1986,3.6,-4.9,-0.65,0,48 +30.01.1986,3.7,-4.1,-0.2,0,42.7 +31.01.1986,2.8,0.7,1.75,0,38.9 +01.02.1986,5.6,1.7,3.65,0.1,36.6 +02.02.1986,3.5,0,1.75,1.8,35.2 +03.02.1986,0.1,-2.4,-1.15,0,33 +04.02.1986,-1.4,-5.6,-3.5,0,30.1 +05.02.1986,-2.4,-10.5,-6.45,0.3,27.9 +06.02.1986,-2.3,-7.1,-4.7,0.8,25.9 +07.02.1986,-3.6,-11.5,-7.55,0.2,24.6 +08.02.1986,-6.3,-12.3,-9.3,1.9,22.2 +09.02.1986,-11,-18.5,-14.75,6.5,19.7 +10.02.1986,-1.3,-11.6,-6.45,0.3,19.8 +11.02.1986,1.4,-8.9,-3.75,0,22.1 +12.02.1986,0.8,-14,-6.6,0,22.5 +13.02.1986,-1.3,-15.6,-8.45,0,21.2 +14.02.1986,-2.9,-6.1,-4.5,0,20.9 +15.02.1986,0.2,-9,-4.4,0,21.2 +16.02.1986,-1.2,-7.7,-4.45,0.1,21.1 +17.02.1986,-1,-6.1,-3.55,0.1,19.9 +18.02.1986,-2.9,-7.8,-5.35,1.1,20 +19.02.1986,-3.1,-10.5,-6.8,1.4,18.5 +20.02.1986,-4.6,-10.6,-7.6,0.2,18.5 +21.02.1986,-4.6,-15.1,-9.85,0,18.1 +22.02.1986,-5.3,-22.1,-13.7,0.2,17.6 +23.02.1986,-3.2,-14.3,-8.75,0,18.4 +24.02.1986,-5.4,-20.5,-12.95,0,17.7 +25.02.1986,-2.6,-12.7,-7.65,0,17.2 +26.02.1986,-3.4,-15.1,-9.25,0,16.8 +27.02.1986,0.1,-18.6,-9.25,0,16.5 +28.02.1986,-1.6,-16.9,-9.25,0,16.5 +01.03.1986,-1.3,-6.3,-3.8,0,16.2 +02.03.1986,1.2,-3.7,-1.25,0,16.3 +03.03.1986,2.8,-4.5,-0.85,0,16.7 +04.03.1986,1.7,-5.8,-2.05,10.6,16.1 +05.03.1986,5.9,0.4,3.15,4,16.9 +06.03.1986,6.1,2.8,4.45,11.6,34 +07.03.1986,6.6,0.8,3.7,0.1,99.2 +08.03.1986,5.2,-1.2,2,3.4,109 +09.03.1986,3.1,0.1,1.6,0.3,51 +10.03.1986,5.4,-2.1,1.65,0,41 +11.03.1986,4.3,2,3.15,0,34.8 +12.03.1986,3.8,1.2,2.5,0,33 +13.03.1986,4.6,0.8,2.7,0,33.5 +14.03.1986,5.7,1.6,3.65,0,31.3 +15.03.1986,10.2,1.8,6,0,29.4 +16.03.1986,11.3,3.2,7.25,0,29 +17.03.1986,14.5,-1.5,6.5,0,27.9 +18.03.1986,14.8,0.1,7.45,0,29.1 +19.03.1986,14.9,-2.9,6,0,30.8 +20.03.1986,9.8,-3.3,3.25,6.7,29.7 +21.03.1986,8.5,1,4.75,2,30.5 +22.03.1986,8.1,-0.2,3.95,1.9,35.1 +23.03.1986,7.8,2.3,5.05,6.7,34.2 +24.03.1986,10.1,0.4,5.25,22.9,56.4 +25.03.1986,8.8,2,5.4,0.8,108 +26.03.1986,8.3,3.1,5.7,1,157 +27.03.1986,12,3.4,7.7,0.8,102 +28.03.1986,12.9,5,8.95,0.9,67 +29.03.1986,9.9,4,6.95,5.8,66.6 +30.03.1986,7.2,2.2,4.7,15.2,65.9 +31.03.1986,10.1,2.8,6.45,24.2,70 +01.04.1986,10.4,3.5,6.95,0.5,154 +02.04.1986,10.1,-0.9,4.6,1.3,300 +03.04.1986,7.5,1.8,4.65,7,170 +04.04.1986,3.9,0.9,2.4,4.9,114 +05.04.1986,2.7,0.4,1.55,0.8,116 +06.04.1986,7.1,-0.5,3.3,0,94.1 +07.04.1986,9.2,5.3,7.25,0,74.4 +08.04.1986,9.5,6.7,8.1,0,63.6 +09.04.1986,7,3.1,5.05,3,58.2 +10.04.1986,3.1,-1.5,0.8,4.8,54.7 +11.04.1986,1.8,-4.2,-1.2,0.4,54.5 +12.04.1986,2.3,-7.1,-2.4,0.1,47.8 +13.04.1986,5.2,-5.3,-0.05,0,43.6 +14.04.1986,7.2,-3.2,2,2.4,40.4 +15.04.1986,15.1,4.2,9.65,0.1,39.8 +16.04.1986,14.8,1.9,8.35,6,39.1 +17.04.1986,12.9,1.8,7.35,0.8,39.6 +18.04.1986,9.8,1.9,5.85,4.4,40 +19.04.1986,8.8,1.6,5.2,2.4,40 +20.04.1986,9.7,3.8,6.75,2.7,40.7 +21.04.1986,12.4,3.8,8.1,3.6,39.5 +22.04.1986,12.6,6.8,9.7,1.8,39.8 +23.04.1986,13.2,4.2,8.7,0.4,42.5 +24.04.1986,15.2,4.3,9.75,0.9,39.2 +25.04.1986,15.9,3.7,9.8,0.4,35.8 +26.04.1986,13,5.3,9.15,3.6,33.8 +27.04.1986,17.7,8.8,13.25,0,32.5 +28.04.1986,19,5.9,12.45,0,32.4 +29.04.1986,21.7,7.5,14.6,0,29.6 +30.04.1986,13.3,5.6,9.45,0,27.7 +01.05.1986,19.3,3.1,11.2,0,25.9 +02.05.1986,24.1,8.3,16.2,0,25.2 +03.05.1986,26.9,8.9,17.9,1.3,24.3 +04.05.1986,19.4,12.3,15.85,0.9,24.2 +05.05.1986,23.7,10.7,17.2,0.1,23.9 +06.05.1986,22.1,9.6,15.85,9.7,22.8 +07.05.1986,19.1,10.4,14.75,0.8,24.9 +08.05.1986,15.8,9.3,12.55,1.2,27.8 +09.05.1986,16.3,6.8,11.55,1.5,23.7 +10.05.1986,14.7,10.1,12.4,8.2,24.5 +11.05.1986,17.4,10.8,14.1,0,24.2 +12.05.1986,20.6,5.9,13.25,0,24.7 +13.05.1986,22.5,6,14.25,7.2,23.3 +14.05.1986,16.2,11.1,13.65,4.1,29.1 +15.05.1986,16.8,6.4,11.6,1.4,26.1 +16.05.1986,17.9,1.4,9.65,0,24.8 +17.05.1986,21.7,2.7,12.2,0,24 +18.05.1986,25.1,13.2,19.15,5.9,23.2 +19.05.1986,21.2,11.9,16.55,0.2,25.1 +20.05.1986,23.7,10.9,17.3,0.7,23.6 +21.05.1986,22.5,15.6,19.05,0.3,22.7 +22.05.1986,19.7,12.2,15.95,0,21.5 +23.05.1986,24,7.9,15.95,7.4,21 +24.05.1986,17.7,10,13.85,4.9,24.5 +25.05.1986,20.2,5,12.6,0,24.4 +26.05.1986,25.9,6.9,16.4,0,22.2 +27.05.1986,24.6,10.1,17.35,2.5,18.2 +28.05.1986,15.8,9,12.4,0.7,16.2 +29.05.1986,13.5,5.6,9.55,2.6,17 +30.05.1986,13.1,7.3,10.2,2.3,16.2 +31.05.1986,15.4,3.4,9.4,0.2,17 +01.06.1986,16.2,5.1,10.65,1.3,15.7 +02.06.1986,14.4,8.9,11.65,3.3,15.5 +03.06.1986,18.9,5.9,12.4,20.5,15.8 +04.06.1986,13.2,6.8,10,6.3,23 +05.06.1986,12.6,4.4,8.5,3.4,39.5 +06.06.1986,9.8,7.3,8.55,17.1,28 +07.06.1986,10.7,7.8,9.25,9.6,34.8 +08.06.1986,13.8,7.4,10.6,1.2,72.2 +09.06.1986,21.5,6.9,14.2,0,72.3 +10.06.1986,24.4,7.9,16.15,0.4,41.6 +11.06.1986,16.8,10.1,13.45,2.3,32.2 +12.06.1986,17.8,8.9,13.35,0,28.8 +13.06.1986,21,7.7,14.35,0,25.7 +14.06.1986,24.1,10.5,17.3,0,22.9 +15.06.1986,26.5,11,18.75,0,21.8 +16.06.1986,29.5,14.7,22.1,1.5,19.9 +17.06.1986,27.9,16.1,22,13.8,20.5 +18.06.1986,22.7,16.1,19.4,2.8,27.2 +19.06.1986,24.4,14,19.2,0.1,35.5 +20.06.1986,26.7,15.9,21.3,0,25 +21.06.1986,25,16.2,20.6,0,20.9 +22.06.1986,24.4,9.3,16.85,0.1,19 +23.06.1986,25.5,12.9,19.2,0.4,17.4 +24.06.1986,23.1,14.6,18.85,0,16.7 +25.06.1986,23.7,10,16.85,0,16.4 +26.06.1986,26.5,10.4,18.45,0,15.5 +27.06.1986,28.5,10.1,19.3,0,15.2 +28.06.1986,28.8,12.2,20.5,0,14.6 +29.06.1986,25.3,11.1,18.2,0,13.8 +30.06.1986,26.1,9.8,17.95,0,13.5 +01.07.1986,28,11.1,19.55,0,13.2 +02.07.1986,29.9,12,20.95,0,13.3 +03.07.1986,30.3,13.8,22.05,0,13 +04.07.1986,26.1,15,20.55,0.1,12.7 +05.07.1986,26.5,14.4,20.45,8.5,12.5 +06.07.1986,21.7,16.3,19,3.9,15.6 +07.07.1986,19.8,12.4,16.1,5.1,14.4 +08.07.1986,18.1,10.3,14.2,2.2,14.7 +09.07.1986,18.1,8.4,13.25,3.2,16.2 +10.07.1986,17.1,9.8,13.45,2.5,14.5 +11.07.1986,18.7,9.3,14,0,15.1 +12.07.1986,17.1,6.6,11.85,0,13.4 +13.07.1986,16.3,9.1,12.7,0,12.9 +14.07.1986,20.2,7.1,13.65,0,12.2 +15.07.1986,23.2,9.3,16.25,0,11.7 +16.07.1986,27.4,11.7,19.55,0,11.7 +17.07.1986,27.7,12.3,20,9.1,11 +18.07.1986,20.6,13.5,17.05,0.1,11.9 +19.07.1986,18.7,11.6,15.15,0,13.3 +20.07.1986,21.8,7.3,14.55,0,12.1 +21.07.1986,22.2,9.9,16.05,0,11.4 +22.07.1986,24.8,12.1,18.45,8.7,11 +23.07.1986,21.6,12.8,17.2,8.5,12.1 +24.07.1986,16.2,9.9,13.05,2,15.2 +25.07.1986,16.2,7.9,12.05,4.6,13.9 +26.07.1986,21.2,13.1,17.15,3.4,13.5 +27.07.1986,23.8,13.8,18.8,0,12.4 +28.07.1986,26.4,14.3,20.35,0,13 +29.07.1986,29,13.7,21.35,0,11.7 +30.07.1986,23.8,11.3,17.55,0,11.1 +31.07.1986,28.1,11,19.55,0.2,10.4 +01.08.1986,23.9,14.4,19.15,0,10.6 +02.08.1986,29.3,9.7,19.5,0,10.6 +03.08.1986,33.2,14.9,24.05,0,10.5 +04.08.1986,28.2,18.1,23.15,0.5,10.7 +05.08.1986,22.8,13.5,18.15,0,10.5 +06.08.1986,26.6,7.7,17.15,0,10.2 +07.08.1986,27.4,10,18.7,0,10.3 +08.08.1986,21.4,10.3,15.85,0,9.83 +09.08.1986,23.8,7.9,15.85,0,9.9 +10.08.1986,26.8,10.1,18.45,2.9,9.67 +11.08.1986,27.1,14.9,21,1.1,9.65 +12.08.1986,21.7,16,18.85,9.8,10.4 +13.08.1986,23.2,15,19.1,0.1,13.2 +14.08.1986,25.2,14.6,19.9,0,11.2 +15.08.1986,26.8,12.6,19.7,4.1,11.2 +16.08.1986,23.3,15.4,19.35,0,10.6 +17.08.1986,23.3,11.6,17.45,1.6,10.9 +18.08.1986,17.6,11,14.3,6.6,12.3 +19.08.1986,16.5,11.6,14.05,9.8,13.9 +20.08.1986,15.9,10.3,13.1,2.5,13.4 +21.08.1986,19.2,6.9,13.05,0.4,11.7 +22.08.1986,16,11.5,13.75,3.1,12.1 +23.08.1986,16.9,10.9,13.9,3.1,11.8 +24.08.1986,14.2,8.4,11.3,5.8,11.6 +25.08.1986,18.2,5.6,11.9,0.9,13.1 +26.08.1986,20.2,10.6,15.4,4.1,13.9 +27.08.1986,16,13,14.5,1.5,12.6 +28.08.1986,15.8,9,12.4,0.9,11.6 +29.08.1986,15.3,9.1,12.2,2.1,11 +30.08.1986,15.2,9,12.1,2.2,11.2 +31.08.1986,15.8,10.2,13,1.6,11.3 +01.09.1986,14.1,6.9,10.5,1.5,11.2 +02.09.1986,17.4,10.1,13.75,0.3,11.4 +03.09.1986,15.9,10.3,13.1,9.9,11.6 +04.09.1986,14.4,9.1,11.75,0.1,12.7 +05.09.1986,18.2,3.9,11.05,0,14 +06.09.1986,18.8,4.1,11.45,4,12.3 +07.09.1986,16.6,9.5,13.05,0.1,11.9 +08.09.1986,16.7,5.8,11.25,0,11.4 +09.09.1986,16.2,5.5,10.85,0,11.1 +10.09.1986,16.7,1.5,9.1,0,11 +11.09.1986,18.6,2.3,10.45,0,10.7 +12.09.1986,13.9,7.4,10.65,10.2,10.4 +13.09.1986,13.7,8.1,10.9,2.9,11.2 +14.09.1986,20.7,11.1,15.9,0.1,13.6 +15.09.1986,17.3,9.8,13.55,13.8,14.2 +16.09.1986,10,7.6,8.8,12.4,19.8 +17.09.1986,9.1,7.8,8.45,5.9,18.6 +18.09.1986,14,4.8,9.4,0.3,22.6 +19.09.1986,16.6,1,8.8,0,19.7 +20.09.1986,18.6,2.1,10.35,0,15.5 +21.09.1986,19.2,4.7,11.95,0,13.4 +22.09.1986,20.1,7.4,13.75,0,12.7 +23.09.1986,19,9.9,14.45,0,12.3 +24.09.1986,17.3,8,12.65,0,12.4 +25.09.1986,15.8,3.4,9.6,0,12 +26.09.1986,15.6,2.2,8.9,0,11.4 +27.09.1986,16.1,4.4,10.25,0,11.5 +28.09.1986,18.8,6.8,12.8,0,11.5 +29.09.1986,19.3,5.9,12.6,0,11.2 +30.09.1986,19.6,9.7,14.65,0,10.6 +01.10.1986,22.8,4.9,13.85,0,10.6 +02.10.1986,20.2,4.3,12.25,0,10.6 +03.10.1986,16.4,8.4,12.4,0,10.7 +04.10.1986,17.2,3.3,10.25,0,11.2 +05.10.1986,19.7,3.1,11.4,0,11.2 +06.10.1986,17.3,7.3,12.3,0,11.3 +07.10.1986,17.2,9.9,13.55,1.5,11 +08.10.1986,14.8,11.5,13.15,0,11 +09.10.1986,17.4,9.3,13.35,0,11.3 +10.10.1986,18.6,4.6,11.6,0,11.4 +11.10.1986,17.4,6.3,11.85,0,10.8 +12.10.1986,16.7,7.8,12.25,0,10.2 +13.10.1986,18.2,4,11.1,0,10.2 +14.10.1986,21.7,6.9,14.3,0,10.2 +15.10.1986,21.9,6.6,14.25,0,9.98 +16.10.1986,18.7,6.7,12.7,0.1,10.1 +17.10.1986,14.3,11.7,13,0,9.91 +18.10.1986,15.7,6,10.85,0.7,10 +19.10.1986,13.9,3.5,8.7,6.8,10.7 +20.10.1986,12.6,3.2,7.9,18.1,11.4 +21.10.1986,10.1,6,8.05,19.3,15.1 +22.10.1986,14.2,7.7,10.95,35.8,27.9 +23.10.1986,11.1,4.3,7.7,6.2,74.7 +24.10.1986,10,3.9,6.95,0.3,100 +25.10.1986,10.1,4.2,7.15,4.5,57 +26.10.1986,9.8,6.8,8.3,0.5,32.4 +27.10.1986,10.8,0.9,5.85,0.2,31.9 +28.10.1986,10.1,2.3,6.2,2.3,26.9 +29.10.1986,11.4,1.9,6.65,2.6,23.1 +30.10.1986,9.2,-1.1,4.05,0.7,22.4 +31.10.1986,8.5,-0.1,4.2,1.8,21.9 +01.11.1986,12.4,7.5,9.95,5,19.8 +02.11.1986,11.7,0.5,6.1,0.1,20.6 +03.11.1986,6.8,-0.5,3.15,0.2,27.6 +04.11.1986,7.8,3.7,5.75,0.3,23.4 +05.11.1986,7.4,5.7,6.55,1.3,20.2 +06.11.1986,11.6,3.2,7.4,0.7,19.2 +07.11.1986,8.3,1.4,4.85,0,18.2 +08.11.1986,7.3,3.5,5.4,0.4,17.6 +09.11.1986,7.9,-0.3,3.8,0,16.6 +10.11.1986,10.8,-0.4,5.2,0,16.3 +11.11.1986,14.2,1.3,7.75,0,15.7 +12.11.1986,13.7,5.9,9.8,0,15.1 +13.11.1986,14.2,1.5,7.85,0,14.6 +14.11.1986,10.7,1.2,5.95,0.1,13.5 +15.11.1986,11.7,1.1,6.4,0.1,12.4 +16.11.1986,13,7.8,10.4,1.2,12.3 +17.11.1986,12.5,7.6,10.05,2.6,12.8 +18.11.1986,10.6,3.6,7.1,1.5,13.9 +19.11.1986,10.5,8,9.25,3,14.3 +20.11.1986,10.4,5.3,7.85,3.7,14.3 +21.11.1986,6.9,-0.6,3.15,2.1,21.5 +22.11.1986,9.1,5.1,7.1,5,22.8 +23.11.1986,9.1,3.7,6.4,0.4,22.5 +24.11.1986,8.3,5.1,6.7,0.8,25.1 +25.11.1986,10.8,7.9,9.35,0.1,22.3 +26.11.1986,11.2,7.3,9.25,1.4,20.6 +27.11.1986,8.7,2.8,5.75,0,19.4 +28.11.1986,3.2,-1.8,0.7,0,18.5 +29.11.1986,1.7,-4.1,-1.2,0,17 +30.11.1986,1.7,-5.5,-1.9,0,16.1 +01.12.1986,0.9,-1.1,-0.1,0.6,15.4 +02.12.1986,6.2,-0.5,2.85,0.3,15.4 +03.12.1986,8.4,0.8,4.6,0,15.1 +04.12.1986,8.9,0.4,4.65,0,15.2 +05.12.1986,9.8,-0.3,4.75,0.1,14.8 +06.12.1986,8.2,2.7,5.45,6.5,14.6 +07.12.1986,6.2,-0.4,2.9,1.1,15.7 +08.12.1986,10.7,3.5,7.1,0,19.4 +09.12.1986,7.4,-0.4,3.5,0.1,17.7 +10.12.1986,7.6,0.9,4.25,0,17.6 +11.12.1986,3.8,0.3,2.05,0,15.9 +12.12.1986,3,1,2,0,14.8 +13.12.1986,2.8,0,1.4,1.3,13.8 +14.12.1986,6.7,1.9,4.3,0.4,14.6 +15.12.1986,3.8,1.3,2.55,7,14.3 +16.12.1986,5.2,1.5,3.35,0.4,15.5 +17.12.1986,4.7,2.2,3.45,4.8,18.4 +18.12.1986,7.8,4.5,6.15,8.9,19.6 +19.12.1986,9.8,1.4,5.6,2.5,33 +20.12.1986,4.2,0.9,2.55,5,53.7 +21.12.1986,3.2,-0.1,1.55,4.3,34.5 +22.12.1986,-0.1,-4.1,-2.1,1.4,30.1 +23.12.1986,-1.3,-3.6,-2.45,1.6,26 +24.12.1986,-2.4,-4.1,-3.25,0.2,22.9 +25.12.1986,-2.5,-9.5,-6,4,20.8 +26.12.1986,1.2,-3.7,-1.25,2.9,19.5 +27.12.1986,2.3,0.2,1.25,4.8,19.3 +28.12.1986,3.7,0.9,2.3,4.6,20.7 +29.12.1986,8.7,3.6,6.15,7.3,38.6 +30.12.1986,9.2,7.3,8.25,12.4,96.2 +31.12.1986,7.8,6,6.9,9.6,123 +01.01.1987,7.3,5.3,6.3,22.1,148 +02.01.1987,6.3,-3.5,1.4,3.1,203 +03.01.1987,-2.1,-10.2,-6.15,0.9,198 +04.01.1987,0.7,-8.9,-4.1,6.1,184 +05.01.1987,2.8,-0.1,1.35,7.9,92.4 +06.01.1987,2.8,-1.6,0.6,5.4,83.7 +07.01.1987,-1.4,-5.1,-3.25,0.2,78.6 +08.01.1987,-3,-10.7,-6.85,1.9,57.8 +09.01.1987,-1.1,-5,-3.05,2.8,47.2 +10.01.1987,-4.4,-11.5,-7.95,1.3,42.3 +11.01.1987,-11.1,-21,-16.05,0.6,36.8 +12.01.1987,-10.3,-16.5,-13.4,0.8,30 +13.01.1987,-10.2,-18.4,-14.3,0.1,28.9 +14.01.1987,-12.4,-19.8,-16.1,0.8,29.1 +15.01.1987,-10.2,-18.3,-14.25,8.4,27.9 +16.01.1987,-10.2,-12.1,-11.15,0.2,25.2 +17.01.1987,-6.8,-10.6,-8.7,0,25.4 +18.01.1987,-7.3,-9.4,-8.35,0,25.4 +19.01.1987,-4.4,-9.1,-6.75,0,25.3 +20.01.1987,-7,-11.8,-9.4,0,24.1 +21.01.1987,-7.4,-11.7,-9.55,0.1,23.1 +22.01.1987,-1.7,-7.7,-4.7,0.6,22.8 +23.01.1987,1,-2.1,-0.55,2.2,22 +24.01.1987,2.7,0.7,1.7,0.3,22.1 +25.01.1987,1.7,0.4,1.05,0.9,22 +26.01.1987,1.8,-1.5,0.15,3.8,21 +27.01.1987,0.2,-8.9,-4.35,0.9,21.2 +28.01.1987,0.8,-8.9,-4.05,2.5,20.2 +29.01.1987,-1.1,-13.2,-7.15,0,18.6 +30.01.1987,-8.2,-21.3,-14.75,0,19.7 +31.01.1987,-6.4,-20.3,-13.35,0,35.4 +01.02.1987,-3.9,-18.4,-11.15,0,14.7 +02.02.1987,-1.9,-17,-9.45,0,15.5 +03.02.1987,-0.2,-13,-6.6,0,15.5 +04.02.1987,0.5,-6.6,-3.05,0,15.7 +05.02.1987,2.7,0.1,1.4,0.1,15.9 +06.02.1987,4.7,1.3,3,2.8,16.5 +07.02.1987,5.4,0.2,2.8,0.4,26.5 +08.02.1987,5.7,-3.6,1.05,2.9,45.5 +09.02.1987,7.5,2.7,5.1,2.1,53.9 +10.02.1987,7.8,1.3,4.55,4.2,106 +11.02.1987,6.7,-0.1,3.3,0.2,129 +12.02.1987,4.2,-1.1,1.55,3.7,118 +13.02.1987,4.1,-0.4,1.85,1.1,73.8 +14.02.1987,3.2,-0.9,1.15,0.8,71 +15.02.1987,2.7,0.1,1.4,2.7,57.5 +16.02.1987,0.4,-1.1,-0.35,1.2,49.3 +17.02.1987,-0.4,-2.1,-1.25,1.5,43.7 +18.02.1987,-0.3,-2.7,-1.5,2.4,39.2 +19.02.1987,0.1,-6.9,-3.4,0.4,35.7 +20.02.1987,0.7,-1.9,-0.6,4.5,32.5 +21.02.1987,0.7,-3.1,-1.2,0.6,30.2 +22.02.1987,2.2,-2.2,0,0.6,28.6 +23.02.1987,2.2,-5.1,-1.45,0.1,28.2 +24.02.1987,2.3,-10.5,-4.1,0,26.4 +25.02.1987,2.7,-9.9,-3.6,0,23.9 +26.02.1987,3.4,-7.7,-2.15,4.4,22.9 +27.02.1987,6.5,-2,2.25,10.9,24.1 +28.02.1987,6.2,3.5,4.85,8.2,61.8 +01.03.1987,5.6,-0.8,2.4,10.1,133 +02.03.1987,-0.5,-5.6,-3.05,18.8,161 +03.03.1987,-3.7,-13.6,-8.65,0,139 +04.03.1987,-2.8,-16.9,-9.85,0,178 +05.03.1987,-1.3,-15.1,-8.2,0,118 +06.03.1987,0.6,-12.1,-5.75,0,66.4 +07.03.1987,-1.6,-13.3,-7.45,0,54.9 +08.03.1987,-0.8,-10.7,-5.75,0,46.9 +09.03.1987,0.6,-6.1,-2.75,0,41.6 +10.03.1987,3.6,-9.7,-3.05,0,37.4 +11.03.1987,3.4,-9.6,-3.1,0,34.4 +12.03.1987,2.5,-9.9,-3.7,0,31.9 +13.03.1987,2.4,-11,-4.3,0,29.9 +14.03.1987,3.7,-9.1,-2.7,0,28.2 +15.03.1987,3.2,-9.9,-3.35,2.5,27 +16.03.1987,1.3,-1.1,0.1,1.8,26.6 +17.03.1987,2.2,-1.9,0.15,5.4,26.2 +18.03.1987,5.3,1.9,3.6,3.1,30 +19.03.1987,2.8,-1.3,0.75,7.2,49.9 +20.03.1987,3.6,-3.2,0.2,0.6,39.8 +21.03.1987,4.5,-0.8,1.85,1.8,35 +22.03.1987,6.3,-1.3,2.5,2,35.9 +23.03.1987,6.3,-2.9,1.7,16.2,39.7 +24.03.1987,9.6,4.9,7.25,6.7,109 +25.03.1987,10.1,4.2,7.15,7.6,183 +26.03.1987,11.7,2.3,7,0.1,250 +27.03.1987,11.7,-0.4,5.65,3.2,215 +28.03.1987,11.8,4.8,8.3,2.9,178 +29.03.1987,8.3,2.5,5.4,0.4,141 +30.03.1987,6.6,-0.8,2.9,0.6,111 +31.03.1987,7,1.5,4.25,0,80.3 +01.04.1987,9.6,-2.8,3.4,1.2,67 +02.04.1987,6.9,-0.6,3.15,0.1,61.3 +03.04.1987,15.5,2.2,8.85,0,56.4 +04.04.1987,11.2,4.5,7.85,0.4,51.1 +05.04.1987,14.5,6,10.25,0.1,47.8 +06.04.1987,13.5,0.8,7.15,2,44 +07.04.1987,19.2,1.4,10.3,0.4,41.5 +08.04.1987,16.8,9.1,12.95,0.2,39.8 +09.04.1987,15.2,3.1,9.15,1.1,37 +10.04.1987,12.4,6.3,9.35,1.3,35.1 +11.04.1987,11.9,-0.6,5.65,7.2,34.2 +12.04.1987,7.6,0.7,4.15,4.7,35.2 +13.04.1987,9.7,0.8,5.25,0,40.2 +14.04.1987,13.8,-1.7,6.05,0,38.3 +15.04.1987,13.2,5.4,9.3,0,33.2 +16.04.1987,11.2,4.4,7.8,0.1,30.2 +17.04.1987,17.1,5.4,11.25,0,28.6 +18.04.1987,18.7,3.3,11,0.2,27.3 +19.04.1987,20.6,4.4,12.5,4.9,26.2 +20.04.1987,14.8,8.4,11.6,2.8,28.9 +21.04.1987,11.4,5.9,8.65,0.3,26.7 +22.04.1987,15.7,1.4,8.55,0,25.8 +23.04.1987,18.8,1.6,10.2,0,24.5 +24.04.1987,22.7,2.4,12.55,0,23.4 +25.04.1987,21.9,4.4,13.15,0,22.8 +26.04.1987,18.9,6.1,12.5,0,22.2 +27.04.1987,16.2,4,10.1,0,21.6 +28.04.1987,20.9,1.6,11.25,0,21.1 +29.04.1987,25.5,2.9,14.2,0,20.8 +30.04.1987,23,7.1,15.05,0.8,20.6 +01.05.1987,18.2,9.4,13.8,0,20.6 +02.05.1987,21.6,8.6,15.1,0.5,20.2 +03.05.1987,13.9,4.4,9.15,18,20.7 +04.05.1987,7.1,3.7,5.4,1.6,25.3 +05.05.1987,11.4,6.9,9.15,0.3,25.9 +06.05.1987,9.7,6.6,8.15,0.1,21.8 +07.05.1987,14.3,4.8,9.55,0,19.6 +08.05.1987,14.1,1,7.55,0,18.8 +09.05.1987,21.5,1.4,11.45,0,18.2 +10.05.1987,20.1,3.6,11.85,5.3,19.2 +11.05.1987,12.8,0.9,6.85,0.2,19.6 +12.05.1987,11.5,8.2,9.85,17.9,18.9 +13.05.1987,11.6,4.6,8.1,0.8,25.5 +14.05.1987,12,1.6,6.8,8.9,30.7 +15.05.1987,13,6,9.5,2.3,23.7 +16.05.1987,12.2,5.2,8.7,0.7,30.4 +17.05.1987,14,2.8,8.4,0,25.9 +18.05.1987,15.8,2.5,9.15,0.1,22 +19.05.1987,17.6,3.9,10.75,0.1,20.7 +20.05.1987,12.3,4.4,8.35,3.7,19.5 +21.05.1987,11,3.5,7.25,8.7,20 +22.05.1987,11.3,6,8.65,8.6,21.6 +23.05.1987,15.3,7.2,11.25,0.1,27.5 +24.05.1987,19.3,5.9,12.6,0.1,26.6 +25.05.1987,21.1,6,13.55,0,22.9 +26.05.1987,22,4.6,13.3,0,20.7 +27.05.1987,19.3,7,13.15,5.5,19.4 +28.05.1987,15.5,8.9,12.2,0.2,19.8 +29.05.1987,11.5,6.3,8.9,5.5,21.4 +30.05.1987,12.2,6.4,9.3,3.6,21.3 +31.05.1987,15.5,10.5,13,11.6,22.5 +01.06.1987,18.8,10.3,14.55,1.4,29.5 +02.06.1987,14.3,10.9,12.6,6.9,29.9 +03.06.1987,16.8,10.5,13.65,9.3,29.6 +04.06.1987,16.5,11,13.75,1.5,51.8 +05.06.1987,16.2,10.1,13.15,1.1,41.3 +06.06.1987,18.5,7.6,13.05,3.5,34.7 +07.06.1987,19.1,12.5,15.8,2.9,31.2 +08.06.1987,16.7,11.1,13.9,0.3,29 +09.06.1987,16.2,6.6,11.4,0.6,27.7 +10.06.1987,18,5,11.5,0.3,24.8 +11.06.1987,20.5,6,13.25,2.7,23.4 +12.06.1987,14.5,10.3,12.4,4,22.7 +13.06.1987,15,9.9,12.45,16.8,29.8 +14.06.1987,18,11.8,14.9,1.7,44.8 +15.06.1987,13.3,9,11.15,17.4,40.2 +16.06.1987,13,7.1,10.05,1,62.8 +17.06.1987,12.4,4.8,8.6,6.5,60.9 +18.06.1987,11.4,8.3,9.85,1.8,49.5 +19.06.1987,15,4.7,9.85,4.8,47 +20.06.1987,18,10.4,14.2,5.4,44.3 +21.06.1987,17.4,9.8,13.6,0,50.1 +22.06.1987,18.1,6.4,12.25,9.1,46.9 +23.06.1987,16.5,12.9,14.7,2.5,39.3 +24.06.1987,17.4,9,13.2,11,46.8 +25.06.1987,17.1,10.4,13.75,1.7,55 +26.06.1987,19.4,11.5,15.45,1.6,66.4 +27.06.1987,22.1,12.6,17.35,0.4,46.9 +28.06.1987,24.6,16.3,20.45,0.4,39.1 +29.06.1987,29.5,14.8,22.15,0,34.2 +30.06.1987,30.6,15.7,23.15,0.1,31.1 +01.07.1987,24.2,15.6,19.9,0,28.3 +02.07.1987,21.6,13.5,17.55,0,26.4 +03.07.1987,23.6,13.5,18.55,0.6,24.5 +04.07.1987,23.8,12.6,18.2,0,23.2 +05.07.1987,24,8.8,16.4,0,22.1 +06.07.1987,26.2,9.8,18,0,21 +07.07.1987,28.3,11.1,19.7,5.3,20.4 +08.07.1987,19,16.2,17.6,6.5,20.8 +09.07.1987,20,10.8,15.4,0,23.9 +10.07.1987,20.1,6.4,13.25,0,21.7 +11.07.1987,25.7,12.5,19.1,0,18.9 +12.07.1987,22.6,14.6,18.6,0,17.9 +13.07.1987,19.9,8.9,14.4,0,17 +14.07.1987,24.5,7.3,15.9,0,16.4 +15.07.1987,27.5,13.1,20.3,0,16.1 +16.07.1987,26.9,14.2,20.55,12,15.7 +17.07.1987,23.7,17.7,20.7,3.4,18.3 +18.07.1987,19.8,14.6,17.2,6.9,20.9 +19.07.1987,21.5,13.4,17.45,0.6,19.9 +20.07.1987,19.9,12.9,16.4,5.3,19.4 +21.07.1987,20.5,13.1,16.8,2.2,17.2 +22.07.1987,21.3,11.9,16.6,5.6,17.5 +23.07.1987,22,14,18,0.5,18.9 +24.07.1987,20.3,10.9,15.6,1.6,17.3 +25.07.1987,18.9,10.4,14.65,1.5,16 +26.07.1987,15,6.9,10.95,1.4,15.2 +27.07.1987,16.8,8.9,12.85,11.5,15.9 +28.07.1987,16.3,11.1,13.7,1.6,18.2 +29.07.1987,16,11.2,13.6,5.1,18.5 +30.07.1987,19,13.5,16.25,13.8,18.4 +31.07.1987,16.2,12.2,14.2,2,36.1 +01.08.1987,18.5,13.9,16.2,5,31.8 +02.08.1987,16.5,11.9,14.2,3,26.1 +03.08.1987,16.1,9.8,12.95,7.8,24.4 +04.08.1987,18.2,7.4,12.8,3,24.5 +05.08.1987,16,8.8,12.4,2.7,33.3 +06.08.1987,15.1,8.2,11.65,0.3,26.4 +07.08.1987,18.5,2.9,10.7,0.2,22.9 +08.08.1987,20.8,7.9,14.35,0.3,19.6 +09.08.1987,15.3,12.3,13.8,7.8,18.8 +10.08.1987,17.2,11.3,14.25,0.5,20 +11.08.1987,19.5,7.7,13.6,0,18.8 +12.08.1987,20.2,10.2,15.2,0.1,17.2 +13.08.1987,20.5,10.2,15.35,4.5,16.3 +14.08.1987,23.6,15.1,19.35,0.2,17.2 +15.08.1987,18.9,12.4,15.65,0,16.6 +16.08.1987,17,10.5,13.75,0,15.2 +17.08.1987,27.3,11.6,19.45,0.1,14.7 +18.08.1987,19.6,15.3,17.45,19.2,24.7 +19.08.1987,21.6,16.1,18.85,2,29.5 +20.08.1987,23.5,15.2,19.35,0,23 +21.08.1987,27.2,12.4,19.8,0,18.4 +22.08.1987,28.4,12.6,20.5,1.2,16.9 +23.08.1987,22,15.4,18.7,6.3,16.2 +24.08.1987,24.7,15.8,20.25,1.1,17.5 +25.08.1987,19.8,14.9,17.35,1.1,17.8 +26.08.1987,18.2,13.3,15.75,2.3,15.7 +27.08.1987,19.1,12.5,15.8,3.3,15.2 +28.08.1987,17.5,13.4,15.45,1.3,15.8 +29.08.1987,18.9,14,16.45,2.1,16.2 +30.08.1987,20.3,13.2,16.75,0,15.4 +31.08.1987,18.5,9.9,14.2,0,15.3 +01.09.1987,25,7.3,16.15,1.7,14.7 +02.09.1987,24.3,13.9,19.1,0,14.3 +03.09.1987,25.1,10.4,17.75,0,14.1 +04.09.1987,26.5,12.4,19.45,5.4,13.4 +05.09.1987,21.5,14.8,18.15,1.7,13.9 +06.09.1987,18.9,11.7,15.3,1,14.1 +07.09.1987,20,11.6,15.8,16.3,14.4 +08.09.1987,16.8,10.1,13.45,0,16.9 +09.09.1987,20,9.5,14.75,0,31.2 +10.09.1987,19.1,8.2,13.65,1.3,19.1 +11.09.1987,18.5,10.6,14.55,0.6,16.4 +12.09.1987,23.2,11.4,17.3,0,15.4 +13.09.1987,20.6,18,19.3,0.6,14.6 +14.09.1987,20.2,11.5,15.85,5.6,14.6 +15.09.1987,17.4,9.6,13.5,0,15.2 +16.09.1987,21.2,8.4,14.8,0,15.1 +17.09.1987,22.9,9.6,16.25,0.1,13.6 +18.09.1987,21.5,16.1,18.8,6,14.6 +19.09.1987,18.5,11.9,15.2,0,14.9 +20.09.1987,21.6,13.4,17.5,0,16.8 +21.09.1987,25.6,11.7,18.65,0,14 +22.09.1987,24.9,16,20.45,12,13.5 +23.09.1987,19.7,15.2,17.45,14.4,15.8 +24.09.1987,16.5,10.3,13.4,6.2,33.7 +25.09.1987,16,8.3,12.15,0,40.9 +26.09.1987,15.8,6.2,11,0.1,30.8 +27.09.1987,12.9,6.1,9.5,0.1,22.8 +28.09.1987,12,1.7,6.85,0,19.7 +29.09.1987,9.5,3.5,6.5,0.3,17.6 +30.09.1987,13,0.8,6.9,0,16.8 +01.10.1987,14.6,1.6,8.1,0,15.9 +02.10.1987,14.2,2.1,8.15,0,15.1 +03.10.1987,13.9,1.2,7.55,0,14.6 +04.10.1987,14.1,1.5,7.8,0,14.2 +05.10.1987,19.3,6.1,12.7,0,14 +06.10.1987,19.9,8.8,14.35,4.1,14 +07.10.1987,15,8.8,11.9,1.8,13.9 +08.10.1987,14.4,8,11.2,6.4,14.3 +09.10.1987,14,5.8,9.9,0,15.4 +10.10.1987,20.5,5.1,12.8,0,17.1 +11.10.1987,15.3,9.6,12.45,5,14.8 +12.10.1987,10.9,5.2,8.05,6.7,15.5 +13.10.1987,11.2,5.2,8.2,7.2,17 +14.10.1987,12.5,7.5,10,7.1,20.6 +15.10.1987,18,8.9,13.45,4.7,25.6 +16.10.1987,19.7,12.4,16.05,1.2,34.4 +17.10.1987,14,6.2,10.1,0.2,35 +18.10.1987,14.4,6,10.2,0,25.5 +19.10.1987,15.6,2.2,8.9,0,21.4 +20.10.1987,12.6,3.9,8.25,0,19.2 +21.10.1987,11.8,7.6,9.7,14.1,18 +22.10.1987,11.1,6.8,8.95,8.1,20.8 +23.10.1987,9.8,4.3,7.05,5.1,53.3 +24.10.1987,9.2,7,8.1,0.5,44.3 +25.10.1987,8.7,2.7,5.7,0,34.8 +26.10.1987,10.5,1.5,6,0,28.5 +27.10.1987,12.6,1.9,7.25,0,24.9 +28.10.1987,12.8,4.7,8.75,0.5,22.5 +29.10.1987,10.6,6.8,8.7,0.3,21.2 +30.10.1987,11.1,4.7,7.9,0,20.2 +31.10.1987,13.4,4.6,9,0.1,19.1 +01.11.1987,10.6,5.2,7.9,2.7,18.4 +02.11.1987,10.6,8.1,9.35,0.7,18.2 +03.11.1987,8.9,6.9,7.9,0,18.2 +04.11.1987,8.2,0.5,4.35,0,17.7 +05.11.1987,4.2,-1.1,1.55,0,16.6 +06.11.1987,7.2,4.2,5.7,0,16.1 +07.11.1987,6.4,3.4,4.9,0,15.7 +08.11.1987,3.4,1.1,2.25,0,15.3 +09.11.1987,5.4,1.6,3.5,0,15.4 +10.11.1987,4.8,2.9,3.85,4,15.2 +11.11.1987,9.9,4.4,7.15,1.7,15.8 +12.11.1987,9.8,7.1,8.45,9.8,16.2 +13.11.1987,9.8,5.9,7.85,8.9,21.2 +14.11.1987,8.5,3.1,5.8,1.9,32.9 +15.11.1987,6.6,2.9,4.75,2.8,47.8 +16.11.1987,11.2,5.6,8.4,4.4,36.2 +17.11.1987,10,7.4,8.7,1.4,34.1 +18.11.1987,10.8,6.7,8.75,0.2,33.4 +19.11.1987,9.5,7.5,8.5,9,29 +20.11.1987,8,4.6,6.3,7.9,30.6 +21.11.1987,6.9,4.5,5.7,5.7,48.4 +22.11.1987,5.8,4.5,5.15,3.8,54.4 +23.11.1987,6.6,4.2,5.4,0,57.3 +24.11.1987,4.9,-0.7,2.1,0.1,53.2 +25.11.1987,2.5,0.4,1.45,7.9,42.3 +26.11.1987,3.5,0.6,2.05,0,42.2 +27.11.1987,2.6,1.7,2.15,0,41.8 +28.11.1987,4.6,1.2,2.9,0,36.1 +29.11.1987,3.8,0.8,2.3,0,32.1 +30.11.1987,1.3,-1.5,-0.1,0,29.3 +01.12.1987,3.6,-0.5,1.55,0,27.1 +02.12.1987,2.5,1.1,1.8,0,25.3 +03.12.1987,3,-0.2,1.4,0,24 +04.12.1987,1.2,-3.7,-1.25,0,22.9 +05.12.1987,1.6,-4.9,-1.65,0,22.5 +06.12.1987,-0.9,-3.1,-2,0,21.7 +07.12.1987,-0.5,-5.9,-3.2,0.2,21.2 +08.12.1987,-4.2,-10.7,-7.45,0,20.5 +09.12.1987,-6,-13.8,-9.9,0,18.8 +10.12.1987,-0.9,-11.6,-6.25,1,18.3 +11.12.1987,3.7,-1,1.35,0.2,18.3 +12.12.1987,1.4,-0.3,0.55,0,18.3 +13.12.1987,0.5,-3,-1.25,0,18.2 +14.12.1987,-2.5,-4.3,-3.4,0.1,17.4 +15.12.1987,0.5,-4.6,-2.05,1.1,17.3 +16.12.1987,3.2,0.3,1.75,9.8,16.9 +17.12.1987,10,2.8,6.4,23.8,22.3 +18.12.1987,14.2,7.5,10.85,12.1,65.9 +19.12.1987,11,6.3,8.65,6.4,115 +20.12.1987,9,6.2,7.6,1.4,140 +21.12.1987,9,8,8.5,0.4,139 +22.12.1987,9.4,2.9,6.15,0.1,89.6 +23.12.1987,4.5,-1,1.75,0,63.5 +24.12.1987,2,-3.7,-0.85,0.1,52.5 +25.12.1987,1.9,-2.6,-0.35,0.9,46.1 +26.12.1987,6.3,1.8,4.05,0.5,41.9 +27.12.1987,8,6.2,7.1,0,38.5 +28.12.1987,10.5,7.7,9.1,0,36.3 +29.12.1987,10.4,7.5,8.95,1.7,33.8 +30.12.1987,12,4.3,8.15,0.1,31.9 +31.12.1987,11.5,4.8,8.15,0.1,31.3 +01.01.1988,8.2,6.9,7.55,3.5,30.4 +02.01.1988,12.2,6.9,9.55,8.5,29.1 +03.01.1988,8.9,5.8,7.35,4.7,39.8 +04.01.1988,8.6,5.4,7,7.3,55.7 +05.01.1988,12,5.5,8.75,1.9,67.8 +06.01.1988,12.3,7.4,9.85,1.4,71.9 +07.01.1988,7.8,3.1,5.45,5.1,55.9 +08.01.1988,5.6,1,3.3,0.1,50.6 +09.01.1988,6.4,-1.3,2.55,0,50.4 +10.01.1988,5.1,0.8,2.95,3,43.4 +11.01.1988,6.8,2.6,4.7,2.1,41 +12.01.1988,3.6,-1.6,1,0,41.4 +13.01.1988,4,-2.5,0.75,0,40 +14.01.1988,3,-4.2,-0.6,0,35.9 +15.01.1988,4.7,-0.4,2.15,2.4,32.9 +16.01.1988,4.5,1.9,3.2,4.3,32.3 +17.01.1988,5.2,3.2,4.2,1.1,33.7 +18.01.1988,5.5,-0.1,2.7,0.1,34 +19.01.1988,3.6,2.5,3.05,0,32.7 +20.01.1988,2.7,0.3,1.5,0.1,31.3 +21.01.1988,5.4,1.4,3.4,0.1,29.2 +22.01.1988,4.4,-0.1,2.15,7.9,28.4 +23.01.1988,3.7,-0.1,1.8,3.4,29.9 +24.01.1988,6.7,0.5,3.6,11.2,33 +25.01.1988,10.6,1.7,6.15,4.5,51.9 +26.01.1988,9,6.3,7.65,4,95.6 +27.01.1988,7.9,-0.5,3.7,1.4,101 +28.01.1988,6.6,-0.7,2.95,2.9,77.4 +29.01.1988,10,6.5,8.25,2.6,63.5 +30.01.1988,7.5,4.2,5.85,1.6,61.9 +31.01.1988,5.1,3.5,4.3,0.5,58.9 +01.02.1988,6.8,1.7,4.25,10,51.4 +02.02.1988,7.8,5.1,6.45,10.3,57.6 +03.02.1988,7.5,2.6,5.05,1.6,85.5 +04.02.1988,10,5.5,7.75,3.2,99.5 +05.02.1988,7.8,2.8,5.3,4.1,90.2 +06.02.1988,10,3,6.5,2.4,80.5 +07.02.1988,7.4,-0.8,3.3,4,87.9 +08.02.1988,3.4,0.9,2.15,3.3,78.5 +09.02.1988,5.6,1.4,3.5,6.7,65 +10.02.1988,5.1,1.5,3.3,4.5,72.3 +11.02.1988,4.5,0.3,2.4,2.6,94.6 +12.02.1988,1.6,-0.7,0.45,9.7,82.8 +13.02.1988,5.2,-1.8,1.7,0,78.2 +14.02.1988,6.5,-4.5,1,0,68.7 +15.02.1988,8.4,-4.9,1.75,0,56.3 +16.02.1988,8.2,-5.1,1.55,0.1,49.6 +17.02.1988,5,0.7,2.85,1.9,46.5 +18.02.1988,4.7,2.2,3.45,2.7,46.1 +19.02.1988,5.6,2.8,4.2,4.9,49 +20.02.1988,6,-1.5,2.25,0.5,58.9 +21.02.1988,4,-2.8,0.6,0.1,61.8 +22.02.1988,7.4,1.5,4.45,0.1,52.4 +23.02.1988,6,1.5,3.75,4.6,48.1 +24.02.1988,2,-0.7,0.65,2.1,48.1 +25.02.1988,0.7,-1.1,-0.2,7.5,47.9 +26.02.1988,0.3,-1.5,-0.6,1.9,45.1 +27.02.1988,0.8,-0.2,0.3,0.8,43.2 +28.02.1988,4.4,-1.1,1.65,5.2,41.3 +29.02.1988,4.4,-0.5,1.95,3.7,41.2 +01.03.1988,1.5,-1.8,-0.15,2.7,41.6 +02.03.1988,2.5,-2.5,0,0.7,40 +03.03.1988,3,-0.1,1.45,1,37.8 +04.03.1988,2.5,0.6,1.55,3.4,36.5 +05.03.1988,3.6,-1.6,1,0.4,36.8 +06.03.1988,2.7,-1.1,0.8,9.2,36.3 +07.03.1988,3.6,-0.5,1.55,2.5,38.5 +08.03.1988,2,-3.9,-0.95,0.7,41.6 +09.03.1988,4.3,-6.5,-1.1,0.1,38.8 +10.03.1988,3.6,-4.5,-0.45,4.1,35.1 +11.03.1988,5.6,0.8,3.2,6.3,34.9 +12.03.1988,4.6,0.5,2.55,3.9,49.2 +13.03.1988,2,-2,0,15,83.9 +14.03.1988,3.7,-3.8,-0.05,2.9,76.9 +15.03.1988,8.4,-4.5,1.95,8.1,87.2 +16.03.1988,9,5,7,3.2,120 +17.03.1988,6.4,-0.9,2.75,0.3,190 +18.03.1988,5.7,-4.5,0.6,0.1,268 +19.03.1988,7.3,-4.8,1.25,0.1,195 +20.03.1988,11.5,4.9,8.2,5,122 +21.03.1988,11.1,3.9,7.5,6.4,118 +22.03.1988,10.7,6.9,8.8,0.6,156 +23.03.1988,9.4,1.7,5.55,5.6,170 +24.03.1988,8.8,4.3,6.55,3.4,159 +25.03.1988,7.3,1.7,4.5,12.3,153 +26.03.1988,8.2,3,5.6,9.1,157 +27.03.1988,7.3,1.3,4.3,4.1,176 +28.03.1988,8.5,2.4,5.45,2.1,199 +29.03.1988,8.5,3.9,6.2,1.7,184 +30.03.1988,14.8,4.2,9.5,0.1,144 +31.03.1988,9.3,5.2,7.25,20.7,117 +01.04.1988,5.5,3.5,4.5,2.6,126 +02.04.1988,10.8,-0.3,5.25,0.1,161 +03.04.1988,13.6,-1.6,6,0,186 +04.04.1988,11.2,0.4,5.8,0,121 +05.04.1988,9.2,1.3,5.25,0.4,92.7 +06.04.1988,16,3.7,9.85,0,80.1 +07.04.1988,16.7,4.9,10.8,1.7,73.2 +08.04.1988,10,6.4,8.2,5.2,71.4 +09.04.1988,6.4,0.4,3.4,2.1,80.2 +10.04.1988,8.5,-3.2,2.65,0,73.1 +11.04.1988,12.5,-1.4,5.55,0,60.6 +12.04.1988,18.1,-1.5,8.3,2.3,53.3 +13.04.1988,11.4,2.1,6.75,0.8,50.2 +14.04.1988,12,-3.1,4.45,0,46.9 +15.04.1988,16.1,-1.5,7.3,0,43 +16.04.1988,20.4,-0.6,9.9,0,40.4 +17.04.1988,15,7.3,11.15,1,38.4 +18.04.1988,21,8.9,14.95,0.5,37.1 +19.04.1988,24.5,6.9,15.7,0,35.2 +20.04.1988,18,6.3,12.15,2.6,33.9 +21.04.1988,16.7,4.4,10.55,0,33.4 +22.04.1988,12.6,4.3,8.45,0,32.1 +23.04.1988,7.5,-1.3,3.1,0,30.2 +24.04.1988,10,-4.6,2.7,0,28.4 +25.04.1988,11.5,-3.1,4.2,0,26.7 +26.04.1988,12.6,-1.7,5.45,0,23.9 +27.04.1988,14.8,0,7.4,3.7,24.1 +28.04.1988,11.6,3.9,7.75,10,26.2 +29.04.1988,16,5.2,10.6,0.3,30.7 +30.04.1988,18.9,7.2,13.05,0,28.8 +01.05.1988,21.1,5.7,13.4,0.6,26 +02.05.1988,17,8.3,12.65,6.6,24.6 +03.05.1988,16.5,8.3,12.4,0.3,25.3 +04.05.1988,17.4,6.1,11.75,1.1,27 +05.05.1988,19,3.3,11.15,0,25.8 +06.05.1988,19,6.4,12.7,0,23.8 +07.05.1988,21.9,5.6,13.75,0,22.7 +08.05.1988,17.2,10.6,13.9,0,21.9 +09.05.1988,22.7,9.9,16.3,0,20.4 +10.05.1988,22.2,7.1,14.65,0,19.5 +11.05.1988,19.5,7.8,13.65,0,19.2 +12.05.1988,24.1,7.5,15.8,0,18.5 +13.05.1988,23.8,11.2,17.5,0,18.1 +14.05.1988,24.4,8.7,16.55,0,18 +15.05.1988,25.2,13.1,19.15,0.2,17.7 +16.05.1988,23.1,9.1,16.1,1.4,17.4 +17.05.1988,22.4,9.7,16.05,1.5,17.5 +18.05.1988,15,8.9,11.95,2.8,18.6 +19.05.1988,15.6,7.1,11.35,5.3,18.7 +20.05.1988,12.4,6.2,9.3,0.3,19.7 +21.05.1988,12,0.4,6.2,0,18.8 +22.05.1988,14.5,1,7.75,0,17.6 +23.05.1988,19.2,1.1,10.15,0,16.8 +24.05.1988,21.7,5.2,13.45,0.1,16.5 +25.05.1988,25.5,8.8,17.15,0,16.5 +26.05.1988,27,10.4,18.7,0,16.4 +27.05.1988,25.5,17.8,21.65,1.9,16.3 +28.05.1988,21.4,11.9,16.65,1.4,17 +29.05.1988,20.1,11.7,15.9,0.2,18.1 +30.05.1988,19.9,6.4,13.15,1.9,17.4 +31.05.1988,17,9.3,13.15,3.1,17.9 +01.06.1988,17.5,8.9,13.2,3.5,18.9 +02.06.1988,17,9.4,13.2,0.8,18.9 +03.06.1988,20,12.1,16.05,0.1,18.9 +04.06.1988,19,12.6,15.8,0.1,17.4 +05.06.1988,16,6.4,11.2,0.3,16.6 +06.06.1988,13.6,8.7,11.15,13.3,17 +07.06.1988,16.4,9.7,13.05,0.1,19.6 +08.06.1988,17.6,9.2,13.4,0.4,18.8 +09.06.1988,16.9,12.2,14.55,0,16.3 +10.06.1988,22.5,8.9,15.7,0.1,15.4 +11.06.1988,18.7,12.2,15.45,0.6,14.8 +12.06.1988,18.6,12.1,15.35,0,14.3 +13.06.1988,23,5.2,14.1,0,13.9 +14.06.1988,25,7.3,16.15,0,13.7 +15.06.1988,22.5,9.2,15.85,0,13.3 +16.06.1988,19.8,10.5,15.15,0,12.8 +17.06.1988,23.4,9.4,16.4,0,12.7 +18.06.1988,23.8,8.6,16.2,0,12.3 +19.06.1988,16.5,13,14.75,0,12.1 +20.06.1988,15.5,11.6,13.55,0,12 +21.06.1988,19.8,12.2,16,0.8,12.1 +22.06.1988,18.5,10.4,14.45,3.9,12.2 +23.06.1988,14.5,7.8,11.15,0.2,12.8 +24.06.1988,15.7,11.8,13.75,0,12.6 +25.06.1988,17,12.6,14.8,0,12 +26.06.1988,20.5,11.6,16.05,0,12.1 +27.06.1988,21.4,14.4,17.9,2.7,11.6 +28.06.1988,25.2,10.5,17.85,2.2,12.5 +29.06.1988,25,13.8,19.4,2.9,12.3 +30.06.1988,25.6,12.4,19,2.4,12.6 +01.07.1988,22.6,15.4,19,7.2,12.5 +02.07.1988,19,8.9,13.95,1.7,13.9 +03.07.1988,19,13.4,16.2,0.5,12.7 +04.07.1988,23.1,13.9,18.5,0.5,12 +05.07.1988,25.6,13.4,19.5,0.1,12 +06.07.1988,23.3,11.4,17.35,3.5,11.3 +07.07.1988,22.7,13.5,18.1,0.6,11.4 +08.07.1988,22,11.3,16.65,1.1,12.1 +09.07.1988,20.9,10.4,15.65,0,11.8 +10.07.1988,24,7.5,15.75,0,11.3 +11.07.1988,26.6,10.4,18.5,2.9,11.3 +12.07.1988,22.4,11.5,16.95,0,11.1 +13.07.1988,22,9.3,15.65,5.3,11.8 +14.07.1988,18,12.6,15.3,10.9,11.8 +15.07.1988,16.8,13.1,14.95,6.2,13.3 +16.07.1988,15,12,13.5,17.7,15 +17.07.1988,16.4,11.9,14.15,2.4,16.7 +18.07.1988,17.3,12,14.65,0.9,21 +19.07.1988,18.4,12.3,15.35,0,16 +20.07.1988,23.2,9.4,16.3,0.1,14.4 +21.07.1988,22,14.9,18.45,1.6,12.3 +22.07.1988,26.1,14.1,20.1,0,12.2 +23.07.1988,29.4,18.6,24,9.7,11.7 +24.07.1988,23.2,14.2,18.7,3.4,13.4 +25.07.1988,23.2,11.5,17.35,0,14.8 +26.07.1988,28,10.4,19.2,4.5,13 +27.07.1988,21,13.1,17.05,0.1,12.7 +28.07.1988,22,9.2,15.6,0.1,12.5 +29.07.1988,20.1,11.7,15.9,1.5,11.3 +30.07.1988,19.6,7.6,13.6,0,11.4 +31.07.1988,21.8,6.7,14.25,0,11.2 +01.08.1988,26,8.4,17.2,0,10.7 +02.08.1988,17.9,11.3,14.6,0.9,10.6 +03.08.1988,17.7,10.6,14.15,1.6,10.9 +04.08.1988,19.5,5.9,12.7,0,10.6 +05.08.1988,22,10.1,16.05,0,10.6 +06.08.1988,24.7,11.1,17.9,0,10.3 +07.08.1988,28.1,10.9,19.5,0,10.4 +08.08.1988,29.1,11.9,20.5,4.7,10.2 +09.08.1988,28,13.1,20.55,0,9.81 +10.08.1988,27.1,14.2,20.65,0,11 +11.08.1988,26,16.4,21.2,0.3,10.8 +12.08.1988,27.2,12.4,19.8,0,9.89 +13.08.1988,24.1,16.4,20.25,0,9.9 +14.08.1988,29.1,9.5,19.3,0,9.7 +15.08.1988,26.9,13.2,20.05,0,9.35 +16.08.1988,22.8,11.9,17.35,0,9.41 +17.08.1988,23.4,6.9,15.15,0,9.38 +18.08.1988,27.6,7,17.3,0,9.63 +19.08.1988,26,10.2,18.1,2.1,9.6 +20.08.1988,21.4,15.2,18.3,2.4,9.64 +21.08.1988,19,12,15.5,1.6,10.6 +22.08.1988,19,11.8,15.4,1.8,10.9 +23.08.1988,19,7.3,13.15,0,10.8 +24.08.1988,19.1,9.7,14.4,3.8,10.7 +25.08.1988,16.9,12.2,14.55,3,10.6 +26.08.1988,17.5,11.2,14.35,0.2,10.6 +27.08.1988,18.5,7.8,13.15,0.1,11.1 +28.08.1988,27,15.4,21.2,0.3,10.8 +29.08.1988,23.1,13.4,18.25,1.1,9.92 +30.08.1988,20.5,11.7,16.1,0,9.73 +31.08.1988,22.9,8.2,15.55,0,10.2 +01.09.1988,24.4,7.3,15.85,8.5,9.42 +02.09.1988,19,11.4,15.2,0.3,9.56 +03.09.1988,15.5,10.5,13,8.3,9.55 +04.09.1988,19.5,12.3,15.9,0.2,10.6 +05.09.1988,18,11.8,14.9,12.3,11.4 +06.09.1988,19.9,10.1,15,0,12.7 +07.09.1988,21,6.2,13.6,0,14.2 +08.09.1988,20.5,6.3,13.4,0,11.2 +09.09.1988,22.8,6.8,14.8,0,9.91 +10.09.1988,24.5,7.1,15.8,0,9.82 +11.09.1988,18.9,11.5,15.2,0.3,9.46 +12.09.1988,17.3,10.4,13.85,1.5,9.18 +13.09.1988,14.8,8.3,11.55,4.8,8.9 +14.09.1988,14,7.1,10.55,8.5,9.8 +15.09.1988,15.2,7.7,11.45,2.2,11 +16.09.1988,12,9.9,10.95,1.3,11.9 +17.09.1988,15.5,10.9,13.2,0.2,10.4 +18.09.1988,17,11.4,14.2,0.7,9.56 +19.09.1988,14.8,12,13.4,0.1,9.15 +20.09.1988,15.4,11.5,13.45,0,9.68 +21.09.1988,13.6,9.2,11.4,0,9.29 +22.09.1988,19.6,4.9,12.25,0.1,9.24 +23.09.1988,16.5,9.4,12.95,7.4,9.34 +24.09.1988,14.4,10.5,12.45,2.4,9.78 +25.09.1988,15.6,12.4,14,4.5,10.9 +26.09.1988,19.2,15.1,17.15,0.5,10.6 +27.09.1988,20.2,13.4,16.8,0,12.3 +28.09.1988,19.6,12.4,16,2.5,11.5 +29.09.1988,17.3,9.3,13.3,0,10.3 +30.09.1988,14.6,5.9,10.25,0,10.2 +01.10.1988,16,1.3,8.65,0,9.54 +02.10.1988,17.4,2,9.7,0,9.17 +03.10.1988,15.4,3.6,9.5,0,8.99 +04.10.1988,13,6.9,9.95,0,9.34 +05.10.1988,14,6.7,10.35,2.8,9.33 +06.10.1988,13.3,9.4,11.35,12.5,9.45 +07.10.1988,12,7.5,9.75,7.3,10.7 +08.10.1988,11,5.6,8.3,0.9,21.3 +09.10.1988,18.6,9.8,14.2,2.9,20.5 +10.10.1988,18.6,5.9,12.25,0.1,14.6 +11.10.1988,9.6,2.7,6.15,7.2,14.2 +12.10.1988,13.1,9.1,11.1,1.2,13.8 +13.10.1988,17,9.1,13.05,0,14.3 +14.10.1988,16.4,7.5,11.95,0,13.3 +15.10.1988,16.2,11.8,14,0,12.3 +16.10.1988,14,11.4,12.7,0,11.7 +17.10.1988,13.6,11.1,12.35,0,11.2 +18.10.1988,14.6,12.3,13.45,0.1,10.7 +19.10.1988,12.8,10,11.4,0.7,10.5 +20.10.1988,12,9.5,10.75,0.3,10.5 +21.10.1988,12.4,6.6,9.5,0,11.8 +22.10.1988,13.5,4.9,9.2,0,10.1 +23.10.1988,11.5,3.1,7.3,0,10 +24.10.1988,12,8.1,10.05,3.2,9.89 +25.10.1988,10.4,5.5,7.95,0.3,10 +26.10.1988,11,3.6,7.3,0.1,10.1 +27.10.1988,17.6,5.6,11.6,0.8,10.3 +28.10.1988,16.1,8.8,12.45,0,9.81 +29.10.1988,11.2,1.6,6.4,0,9.64 +30.10.1988,5.7,-2.1,1.8,0,9.73 +31.10.1988,7.4,-2.7,2.35,0.5,9.4 +01.11.1988,9,2.3,5.65,0.1,9.59 +02.11.1988,8.5,1.1,4.8,2.2,9.62 +03.11.1988,3.2,-3.3,-0.05,0,9.7 +04.11.1988,4.4,-5.5,-0.55,0,9.71 +05.11.1988,4.9,-8.2,-1.65,0,9.73 +06.11.1988,5,-6.7,-0.85,0,9.61 +07.11.1988,4.5,-2.3,1.1,0,8.91 +08.11.1988,8.2,-3.5,2.35,0,9.28 +09.11.1988,9.3,-0.1,4.6,0,9.34 +10.11.1988,9,1.5,5.25,0.2,9.16 +11.11.1988,10.2,7.1,8.65,0.3,9.16 +12.11.1988,11.5,4.5,8,1.2,9.06 +13.11.1988,9.6,7.3,8.45,3.9,9.52 +14.11.1988,9.7,5.9,7.8,6.9,9.77 +15.11.1988,10,8.1,9.05,1.6,11.1 +16.11.1988,10,5.6,7.8,0.1,11 +17.11.1988,9.5,-0.1,4.7,1.9,11.5 +18.11.1988,9.8,5.9,7.85,4.8,10.6 +19.11.1988,7.1,1.9,4.5,4.9,11.1 +20.11.1988,2.3,0.2,1.25,8.3,12.6 +21.11.1988,0.2,-5.3,-2.55,0.4,14.2 +22.11.1988,-4,-12.2,-8.1,3.5,13.6 +23.11.1988,0.1,-4.7,-2.3,1.2,12.3 +24.11.1988,1.9,-0.1,0.9,2,11.6 +25.11.1988,6.3,1.2,3.75,0.8,12.5 +26.11.1988,5.8,2.7,4.25,0.1,14.2 +27.11.1988,6.2,2.9,4.55,0.4,18.6 +28.11.1988,3.8,1.3,2.55,0.5,17.9 +29.11.1988,8,0.5,4.25,6.9,16.8 +30.11.1988,1,-0.5,0.25,22.5,16.8 +01.12.1988,2.5,0.5,1.5,0.8,39.2 +02.12.1988,1.5,-2.5,-0.5,1.8,66.2 +03.12.1988,1.3,-2.5,-0.6,5.8,39.6 +04.12.1988,6.3,-0.6,2.85,12.4,28.6 +05.12.1988,6.4,2.4,4.4,0.9,52.4 +06.12.1988,4.5,1.5,3,4,75.5 +07.12.1988,4,-1.4,1.3,0.3,43 +08.12.1988,4.8,-0.7,2.05,5.4,34.3 +09.12.1988,6.1,-0.3,2.9,3.4,28.2 +10.12.1988,9.5,-0.5,4.5,3.9,32.7 +11.12.1988,9.5,6.6,8.05,5.3,34.7 +12.12.1988,7,4.4,5.7,2.4,38.5 +13.12.1988,7.4,2.9,5.15,0.7,41.2 +14.12.1988,7.4,3.4,5.4,2.4,37.6 +15.12.1988,3.6,-4.3,-0.35,0,31.7 +16.12.1988,-1.1,-7.9,-4.5,0.4,28.1 +17.12.1988,0,-3.5,-1.75,2.6,24.1 +18.12.1988,4.5,0,2.25,10.7,22 +19.12.1988,8.6,2.2,5.4,18.5,34.9 +20.12.1988,4.6,-2.3,1.15,0.1,78.9 +21.12.1988,5.4,-2.3,1.55,2.3,105 +22.12.1988,8,5.3,6.65,0.6,57.1 +23.12.1988,8.3,6.5,7.4,8.8,46.6 +24.12.1988,9,5.9,7.45,8.4,51.9 +25.12.1988,7,1.4,4.2,0.5,87.9 +26.12.1988,8.1,6.4,7.25,0.1,108 +27.12.1988,8.2,4.5,6.35,0.4,60.5 +28.12.1988,8.5,3.8,6.15,0,45.2 +29.12.1988,9.8,1.7,5.75,0,38.8 +30.12.1988,4.4,0.7,2.55,0.1,34 +31.12.1988,4.8,3.1,3.95,0.3,30.5 diff --git a/src/spotpy/examples/cmf_data/soilmoisture_site24.csv b/src/spotpy/examples/cmf_data/soilmoisture_site24.csv new file mode 100644 index 00000000..04e28add --- /dev/null +++ b/src/spotpy/examples/cmf_data/soilmoisture_site24.csv @@ -0,0 +1,26312 @@ +# time,soil_moisture_10cm,soil_moisture_25cm,soil_moisture_40cm +# +# A dataset containing data for a soil moisture profile at the Vollnkrichner Bach near Vollnkirchen, Hesse, Germany +# The data is cortesey of the Chair of Landscape, Water and Biogeochemical Cycles, Justus-Liebig-University Gießen +# https://www.uni-giessen.de/faculties/f09/institutes/ilr/hydro +# This dataset can be used for any purpose with proper references in publications +# The data is provided AS IS with no guarantee of correctness +# +2014-01-01 00:00:00,0.253,0.318,0.344 +2014-01-01 01:00:00,0.253,0.317,0.344 +2014-01-01 02:00:00,0.253,0.344,0.344 +2014-01-01 03:00:00,0.253,0.349,0.344 +2014-01-01 04:00:00,0.253,0.345,0.344 +2014-01-01 05:00:00,0.253,0.34700000000000003,0.344 +2014-01-01 06:00:00,0.253,0.34700000000000003,0.344 +2014-01-01 07:00:00,0.252,0.34600000000000003,0.345 +2014-01-01 08:00:00,0.252,0.345,0.34600000000000003 +2014-01-01 09:00:00,0.252,0.34299999999999997,0.34600000000000003 +2014-01-01 10:00:00,0.252,0.341,0.34600000000000003 +2014-01-01 11:00:00,0.252,0.341,0.34600000000000003 +2014-01-01 12:00:00,0.252,0.341,0.345 +2014-01-01 13:00:00,0.252,0.34,0.345 +2014-01-01 14:00:00,0.253,0.33899999999999997,0.345 +2014-01-01 15:00:00,0.253,0.33899999999999997,0.344 +2014-01-01 16:00:00,0.253,0.33799999999999997,0.344 +2014-01-01 17:00:00,0.253,0.33799999999999997,0.344 +2014-01-01 18:00:00,0.253,0.33799999999999997,0.344 +2014-01-01 19:00:00,0.253,0.33799999999999997,0.344 +2014-01-01 20:00:00,0.253,0.33799999999999997,0.344 +2014-01-01 21:00:00,0.253,0.33799999999999997,0.344 +2014-01-01 22:00:00,0.253,0.337,0.344 +2014-01-01 23:00:00,0.253,0.336,0.344 +2014-01-02 00:00:00,0.253,0.33399999999999996,0.344 +2014-01-02 01:00:00,0.253,0.33399999999999996,0.344 +2014-01-02 02:00:00,0.253,0.33299999999999996,0.344 +2014-01-02 03:00:00,0.253,0.332,0.344 +2014-01-02 04:00:00,0.253,0.332,0.344 +2014-01-02 05:00:00,0.253,0.332,0.344 +2014-01-02 06:00:00,0.253,0.331,0.344 +2014-01-02 07:00:00,0.253,0.33,0.345 +2014-01-02 08:00:00,0.253,0.33,0.345 +2014-01-02 09:00:00,0.253,0.33,0.344 +2014-01-02 10:00:00,0.253,0.32899999999999996,0.344 +2014-01-02 11:00:00,0.253,0.32899999999999996,0.344 +2014-01-02 12:00:00,0.253,0.32899999999999996,0.344 +2014-01-02 13:00:00,0.253,0.32799999999999996,0.344 +2014-01-02 14:00:00,0.254,0.327,0.344 +2014-01-02 15:00:00,0.254,0.326,0.344 +2014-01-02 16:00:00,0.254,0.32899999999999996,0.344 +2014-01-02 17:00:00,0.254,0.326,0.344 +2014-01-02 18:00:00,0.254,0.326,0.344 +2014-01-02 19:00:00,0.254,0.325,0.344 +2014-01-02 20:00:00,0.254,0.326,0.344 +2014-01-02 21:00:00,0.254,0.327,0.344 +2014-01-02 22:00:00,0.254,0.326,0.344 +2014-01-02 23:00:00,0.254,0.325,0.344 +2014-01-03 00:00:00,0.253,0.324,0.344 +2014-01-03 01:00:00,0.253,0.322,0.344 +2014-01-03 02:00:00,0.253,0.322,0.34299999999999997 +2014-01-03 03:00:00,0.253,0.322,0.34299999999999997 +2014-01-03 04:00:00,0.253,0.322,0.344 +2014-01-03 05:00:00,0.253,0.322,0.344 +2014-01-03 06:00:00,0.253,0.322,0.344 +2014-01-03 07:00:00,0.253,0.321,0.344 +2014-01-03 08:00:00,0.253,0.321,0.34299999999999997 +2014-01-03 09:00:00,0.253,0.321,0.34299999999999997 +2014-01-03 10:00:00,0.253,0.322,0.344 +2014-01-03 11:00:00,0.252,0.322,0.34600000000000003 +2014-01-03 12:00:00,0.253,0.32299999999999995,0.345 +2014-01-03 13:00:00,0.253,0.32299999999999995,0.345 +2014-01-03 14:00:00,0.253,0.324,0.344 +2014-01-03 15:00:00,0.253,0.324,0.344 +2014-01-03 16:00:00,0.253,0.324,0.34299999999999997 +2014-01-03 17:00:00,0.253,0.324,0.34299999999999997 +2014-01-03 18:00:00,0.253,0.326,0.34299999999999997 +2014-01-03 19:00:00,0.253,0.322,0.34299999999999997 +2014-01-03 20:00:00,0.253,0.321,0.34299999999999997 +2014-01-03 21:00:00,0.253,0.34299999999999997,0.34299999999999997 +2014-01-03 22:00:00,0.253,0.344,0.34299999999999997 +2014-01-03 23:00:00,0.253,0.34600000000000003,0.34299999999999997 +2014-01-04 00:00:00,0.254,0.34299999999999997,0.34299999999999997 +2014-01-04 01:00:00,0.253,0.34299999999999997,0.34299999999999997 +2014-01-04 02:00:00,0.253,0.344,0.34299999999999997 +2014-01-04 03:00:00,0.253,0.345,0.34299999999999997 +2014-01-04 04:00:00,0.253,0.344,0.34299999999999997 +2014-01-04 05:00:00,0.253,0.344,0.34299999999999997 +2014-01-04 06:00:00,0.253,0.34299999999999997,0.34299999999999997 +2014-01-04 07:00:00,0.253,0.342,0.34299999999999997 +2014-01-04 08:00:00,0.253,0.341,0.34299999999999997 +2014-01-04 09:00:00,0.253,0.341,0.34299999999999997 +2014-01-04 10:00:00,0.253,0.33799999999999997,0.34299999999999997 +2014-01-04 11:00:00,0.253,0.33799999999999997,0.34299999999999997 +2014-01-04 12:00:00,0.253,0.337,0.34299999999999997 +2014-01-04 13:00:00,0.253,0.336,0.34299999999999997 +2014-01-04 14:00:00,0.253,0.33399999999999996,0.34299999999999997 +2014-01-04 15:00:00,0.253,0.33299999999999996,0.34299999999999997 +2014-01-04 16:00:00,0.253,0.332,0.34299999999999997 +2014-01-04 17:00:00,0.253,0.332,0.34299999999999997 +2014-01-04 18:00:00,0.253,0.331,0.34299999999999997 +2014-01-04 19:00:00,0.253,0.331,0.34299999999999997 +2014-01-04 20:00:00,0.253,0.331,0.34299999999999997 +2014-01-04 21:00:00,0.253,0.331,0.34299999999999997 +2014-01-04 22:00:00,0.253,0.331,0.34299999999999997 +2014-01-04 23:00:00,0.253,0.331,0.34299999999999997 +2014-01-05 00:00:00,0.253,0.331,0.34299999999999997 +2014-01-05 01:00:00,0.253,0.331,0.34299999999999997 +2014-01-05 02:00:00,0.253,0.327,0.34299999999999997 +2014-01-05 03:00:00,0.252,0.326,0.34299999999999997 +2014-01-05 04:00:00,0.252,0.326,0.34299999999999997 +2014-01-05 05:00:00,0.251,0.326,0.345 +2014-01-05 06:00:00,0.24600000000000002,0.326,0.34700000000000003 +2014-01-05 07:00:00,0.251,0.326,0.34700000000000003 +2014-01-05 08:00:00,0.255,0.324,0.34600000000000003 +2014-01-05 09:00:00,0.254,0.32299999999999995,0.34600000000000003 +2014-01-05 10:00:00,0.254,0.322,0.348 +2014-01-05 11:00:00,0.254,0.321,0.348 +2014-01-05 12:00:00,0.254,0.321,0.348 +2014-01-05 13:00:00,0.256,0.32,0.348 +2014-01-05 14:00:00,0.258,0.319,0.34700000000000003 +2014-01-05 15:00:00,0.259,0.319,0.34700000000000003 +2014-01-05 16:00:00,0.259,0.318,0.34600000000000003 +2014-01-05 17:00:00,0.259,0.317,0.34600000000000003 +2014-01-05 18:00:00,0.259,0.317,0.345 +2014-01-05 19:00:00,0.259,0.317,0.345 +2014-01-05 20:00:00,0.258,0.317,0.345 +2014-01-05 21:00:00,0.258,0.317,0.345 +2014-01-05 22:00:00,0.258,0.317,0.345 +2014-01-05 23:00:00,0.258,0.316,0.345 +2014-01-06 00:00:00,0.258,0.315,0.344 +2014-01-06 01:00:00,0.257,0.315,0.344 +2014-01-06 02:00:00,0.257,0.315,0.344 +2014-01-06 03:00:00,0.257,0.315,0.344 +2014-01-06 04:00:00,0.257,0.315,0.344 +2014-01-06 05:00:00,0.256,0.314,0.344 +2014-01-06 06:00:00,0.256,0.314,0.344 +2014-01-06 07:00:00,0.256,0.314,0.344 +2014-01-06 08:00:00,0.256,0.314,0.344 +2014-01-06 09:00:00,0.256,0.314,0.344 +2014-01-06 10:00:00,0.255,0.314,0.344 +2014-01-06 11:00:00,0.255,0.314,0.344 +2014-01-06 12:00:00,0.255,0.314,0.344 +2014-01-06 13:00:00,0.255,0.314,0.344 +2014-01-06 14:00:00,0.256,0.312,0.344 +2014-01-06 15:00:00,0.256,0.312,0.344 +2014-01-06 16:00:00,0.256,0.312,0.344 +2014-01-06 17:00:00,0.256,0.312,0.344 +2014-01-06 18:00:00,0.256,0.312,0.344 +2014-01-06 19:00:00,0.255,0.312,0.344 +2014-01-06 20:00:00,0.252,0.312,0.34600000000000003 +2014-01-06 21:00:00,0.249,0.312,0.34700000000000003 +2014-01-06 22:00:00,0.25,0.312,0.348 +2014-01-06 23:00:00,0.264,0.312,0.363 +2014-01-07 00:00:00,0.263,0.312,0.371 +2014-01-07 01:00:00,0.262,0.312,0.371 +2014-01-07 02:00:00,0.263,0.311,0.371 +2014-01-07 03:00:00,0.26,0.31,0.371 +2014-01-07 04:00:00,0.257,0.31,0.371 +2014-01-07 05:00:00,0.256,0.31,0.371 +2014-01-07 06:00:00,0.255,0.31,0.371 +2014-01-07 07:00:00,0.254,0.31,0.371 +2014-01-07 08:00:00,0.253,0.31,0.371 +2014-01-07 09:00:00,0.254,0.31,0.37 +2014-01-07 10:00:00,0.256,0.31,0.36700000000000005 +2014-01-07 11:00:00,0.259,0.31,0.361 +2014-01-07 12:00:00,0.259,0.31,0.36 +2014-01-07 13:00:00,0.259,0.31,0.359 +2014-01-07 14:00:00,0.259,0.31,0.359 +2014-01-07 15:00:00,0.259,0.31,0.359 +2014-01-07 16:00:00,0.259,0.31,0.358 +2014-01-07 17:00:00,0.259,0.31,0.358 +2014-01-07 18:00:00,0.259,0.31,0.35700000000000004 +2014-01-07 19:00:00,0.259,0.31,0.35700000000000004 +2014-01-07 20:00:00,0.259,0.31,0.35700000000000004 +2014-01-07 21:00:00,0.259,0.31,0.35700000000000004 +2014-01-07 22:00:00,0.258,0.31,0.35600000000000004 +2014-01-07 23:00:00,0.258,0.31,0.355 +2014-01-08 00:00:00,0.258,0.31,0.354 +2014-01-08 01:00:00,0.258,0.31,0.354 +2014-01-08 02:00:00,0.258,0.31,0.353 +2014-01-08 03:00:00,0.258,0.31,0.353 +2014-01-08 04:00:00,0.258,0.31,0.35200000000000004 +2014-01-08 05:00:00,0.257,0.31,0.353 +2014-01-08 06:00:00,0.257,0.31,0.353 +2014-01-08 07:00:00,0.257,0.31,0.353 +2014-01-08 08:00:00,0.258,0.31,0.35200000000000004 +2014-01-08 09:00:00,0.258,0.31,0.35200000000000004 +2014-01-08 10:00:00,0.258,0.31,0.35100000000000003 +2014-01-08 11:00:00,0.257,0.309,0.35 +2014-01-08 12:00:00,0.257,0.309,0.35 +2014-01-08 13:00:00,0.257,0.309,0.35 +2014-01-08 14:00:00,0.257,0.309,0.349 +2014-01-08 15:00:00,0.257,0.309,0.349 +2014-01-08 16:00:00,0.257,0.309,0.349 +2014-01-08 17:00:00,0.257,0.309,0.349 +2014-01-08 18:00:00,0.257,0.309,0.349 +2014-01-08 19:00:00,0.257,0.309,0.349 +2014-01-08 20:00:00,0.257,0.309,0.348 +2014-01-08 21:00:00,0.257,0.309,0.348 +2014-01-08 22:00:00,0.256,0.309,0.348 +2014-01-08 23:00:00,0.256,0.309,0.348 +2014-01-09 00:00:00,0.256,0.309,0.348 +2014-01-09 01:00:00,0.256,0.309,0.348 +2014-01-09 02:00:00,0.255,0.309,0.348 +2014-01-09 03:00:00,0.25,0.309,0.35100000000000003 +2014-01-09 04:00:00,0.249,0.309,0.35100000000000003 +2014-01-09 05:00:00,0.249,0.309,0.35100000000000003 +2014-01-09 06:00:00,0.25,0.309,0.35100000000000003 +2014-01-09 07:00:00,0.25,0.309,0.35 +2014-01-09 08:00:00,0.25,0.309,0.35 +2014-01-09 09:00:00,0.251,0.309,0.35 +2014-01-09 10:00:00,0.251,0.309,0.35 +2014-01-09 11:00:00,0.253,0.308,0.35 +2014-01-09 12:00:00,0.256,0.307,0.349 +2014-01-09 13:00:00,0.258,0.307,0.348 +2014-01-09 14:00:00,0.258,0.307,0.348 +2014-01-09 15:00:00,0.258,0.307,0.348 +2014-01-09 16:00:00,0.255,0.307,0.349 +2014-01-09 17:00:00,0.259,0.307,0.35200000000000004 +2014-01-09 18:00:00,0.263,0.307,0.364 +2014-01-09 19:00:00,0.259,0.307,0.361 +2014-01-09 20:00:00,0.257,0.307,0.359 +2014-01-09 21:00:00,0.256,0.307,0.359 +2014-01-09 22:00:00,0.255,0.307,0.358 +2014-01-09 23:00:00,0.255,0.309,0.35700000000000004 +2014-01-10 00:00:00,0.258,0.308,0.35700000000000004 +2014-01-10 01:00:00,0.261,0.307,0.35600000000000004 +2014-01-10 02:00:00,0.261,0.307,0.355 +2014-01-10 03:00:00,0.261,0.307,0.355 +2014-01-10 04:00:00,0.26,0.307,0.354 +2014-01-10 05:00:00,0.26,0.307,0.354 +2014-01-10 06:00:00,0.259,0.306,0.354 +2014-01-10 07:00:00,0.259,0.305,0.353 +2014-01-10 08:00:00,0.259,0.304,0.353 +2014-01-10 09:00:00,0.259,0.304,0.353 +2014-01-10 10:00:00,0.258,0.304,0.353 +2014-01-10 11:00:00,0.258,0.304,0.353 +2014-01-10 12:00:00,0.258,0.305,0.35200000000000004 +2014-01-10 13:00:00,0.258,0.305,0.35200000000000004 +2014-01-10 14:00:00,0.258,0.307,0.35200000000000004 +2014-01-10 15:00:00,0.258,0.307,0.35200000000000004 +2014-01-10 16:00:00,0.257,0.309,0.35200000000000004 +2014-01-10 17:00:00,0.257,0.31,0.35100000000000003 +2014-01-10 18:00:00,0.257,0.31,0.35100000000000003 +2014-01-10 19:00:00,0.257,0.312,0.35100000000000003 +2014-01-10 20:00:00,0.257,0.311,0.35100000000000003 +2014-01-10 21:00:00,0.257,0.312,0.35 +2014-01-10 22:00:00,0.257,0.31,0.35 +2014-01-10 23:00:00,0.257,0.31,0.35 +2014-01-11 00:00:00,0.256,0.312,0.35 +2014-01-11 01:00:00,0.256,0.315,0.35 +2014-01-11 02:00:00,0.256,0.313,0.349 +2014-01-11 03:00:00,0.256,0.332,0.349 +2014-01-11 04:00:00,0.256,0.33899999999999997,0.349 +2014-01-11 05:00:00,0.256,0.33799999999999997,0.349 +2014-01-11 06:00:00,0.255,0.33799999999999997,0.349 +2014-01-11 07:00:00,0.255,0.33799999999999997,0.349 +2014-01-11 08:00:00,0.255,0.33899999999999997,0.349 +2014-01-11 09:00:00,0.255,0.33899999999999997,0.349 +2014-01-11 10:00:00,0.255,0.33799999999999997,0.348 +2014-01-11 11:00:00,0.255,0.33799999999999997,0.349 +2014-01-11 12:00:00,0.255,0.33799999999999997,0.349 +2014-01-11 13:00:00,0.255,0.337,0.349 +2014-01-11 14:00:00,0.254,0.337,0.349 +2014-01-11 15:00:00,0.254,0.336,0.348 +2014-01-11 16:00:00,0.254,0.336,0.348 +2014-01-11 17:00:00,0.254,0.336,0.348 +2014-01-11 18:00:00,0.254,0.33399999999999996,0.349 +2014-01-11 19:00:00,0.254,0.33399999999999996,0.35 +2014-01-11 20:00:00,0.254,0.332,0.349 +2014-01-11 21:00:00,0.255,0.331,0.349 +2014-01-11 22:00:00,0.255,0.331,0.349 +2014-01-11 23:00:00,0.254,0.32899999999999996,0.349 +2014-01-12 00:00:00,0.254,0.32799999999999996,0.349 +2014-01-12 01:00:00,0.254,0.327,0.348 +2014-01-12 02:00:00,0.254,0.326,0.348 +2014-01-12 03:00:00,0.254,0.326,0.348 +2014-01-12 04:00:00,0.254,0.324,0.348 +2014-01-12 05:00:00,0.254,0.324,0.348 +2014-01-12 06:00:00,0.254,0.32299999999999995,0.348 +2014-01-12 07:00:00,0.254,0.322,0.348 +2014-01-12 08:00:00,0.254,0.322,0.348 +2014-01-12 09:00:00,0.254,0.321,0.34700000000000003 +2014-01-12 10:00:00,0.253,0.321,0.34700000000000003 +2014-01-12 11:00:00,0.253,0.321,0.34700000000000003 +2014-01-12 12:00:00,0.253,0.321,0.34700000000000003 +2014-01-12 13:00:00,0.253,0.319,0.34700000000000003 +2014-01-12 14:00:00,0.253,0.318,0.34700000000000003 +2014-01-12 15:00:00,0.253,0.317,0.34700000000000003 +2014-01-12 16:00:00,0.253,0.317,0.34700000000000003 +2014-01-12 17:00:00,0.253,0.317,0.34600000000000003 +2014-01-12 18:00:00,0.253,0.317,0.34600000000000003 +2014-01-12 19:00:00,0.253,0.317,0.34600000000000003 +2014-01-12 20:00:00,0.253,0.316,0.34600000000000003 +2014-01-12 21:00:00,0.253,0.316,0.34600000000000003 +2014-01-12 22:00:00,0.253,0.315,0.34600000000000003 +2014-01-12 23:00:00,0.253,0.315,0.34600000000000003 +2014-01-13 00:00:00,0.253,0.315,0.34600000000000003 +2014-01-13 01:00:00,0.253,0.315,0.34600000000000003 +2014-01-13 02:00:00,0.252,0.315,0.34600000000000003 +2014-01-13 03:00:00,0.252,0.314,0.34600000000000003 +2014-01-13 04:00:00,0.252,0.314,0.34600000000000003 +2014-01-13 05:00:00,0.252,0.314,0.34600000000000003 +2014-01-13 06:00:00,0.252,0.314,0.34600000000000003 +2014-01-13 07:00:00,0.252,0.314,0.34600000000000003 +2014-01-13 08:00:00,0.252,0.314,0.34600000000000003 +2014-01-13 09:00:00,0.252,0.313,0.34600000000000003 +2014-01-13 10:00:00,0.252,0.313,0.34700000000000003 +2014-01-13 11:00:00,0.252,0.312,0.348 +2014-01-13 12:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 13:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 14:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 15:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 16:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 17:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 18:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 19:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 20:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 21:00:00,0.252,0.312,0.34700000000000003 +2014-01-13 22:00:00,0.252,0.31,0.34700000000000003 +2014-01-13 23:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 00:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 01:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 02:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 03:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 04:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 05:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 06:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 07:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 08:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 09:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 10:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 11:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 12:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 13:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 14:00:00,0.252,0.31,0.34700000000000003 +2014-01-14 15:00:00,0.252,0.31,0.34600000000000003 +2014-01-14 16:00:00,0.252,0.31,0.34600000000000003 +2014-01-14 17:00:00,0.252,0.31,0.34600000000000003 +2014-01-14 18:00:00,0.252,0.31,0.34600000000000003 +2014-01-14 19:00:00,0.252,0.31,0.34600000000000003 +2014-01-14 20:00:00,0.252,0.309,0.34600000000000003 +2014-01-14 21:00:00,0.252,0.309,0.34600000000000003 +2014-01-14 22:00:00,0.252,0.309,0.34600000000000003 +2014-01-14 23:00:00,0.252,0.309,0.34600000000000003 +2014-01-15 00:00:00,0.252,0.309,0.34600000000000003 +2014-01-15 01:00:00,0.252,0.309,0.345 +2014-01-15 02:00:00,0.252,0.309,0.34600000000000003 +2014-01-15 03:00:00,0.252,0.309,0.34600000000000003 +2014-01-15 04:00:00,0.252,0.309,0.34600000000000003 +2014-01-15 05:00:00,0.252,0.309,0.34600000000000003 +2014-01-15 06:00:00,0.252,0.308,0.34600000000000003 +2014-01-15 07:00:00,0.252,0.308,0.34600000000000003 +2014-01-15 08:00:00,0.252,0.306,0.345 +2014-01-15 09:00:00,0.252,0.307,0.345 +2014-01-15 10:00:00,0.252,0.336,0.345 +2014-01-15 11:00:00,0.252,0.337,0.345 +2014-01-15 12:00:00,0.251,0.336,0.345 +2014-01-15 13:00:00,0.251,0.33799999999999997,0.345 +2014-01-15 14:00:00,0.251,0.33799999999999997,0.345 +2014-01-15 15:00:00,0.251,0.341,0.345 +2014-01-15 16:00:00,0.252,0.345,0.345 +2014-01-15 17:00:00,0.252,0.349,0.345 +2014-01-15 18:00:00,0.252,0.348,0.345 +2014-01-15 19:00:00,0.252,0.34600000000000003,0.34600000000000003 +2014-01-15 20:00:00,0.252,0.344,0.34700000000000003 +2014-01-15 21:00:00,0.252,0.34299999999999997,0.34700000000000003 +2014-01-15 22:00:00,0.252,0.341,0.34700000000000003 +2014-01-15 23:00:00,0.252,0.34,0.34700000000000003 +2014-01-16 00:00:00,0.251,0.33899999999999997,0.34700000000000003 +2014-01-16 01:00:00,0.25,0.33799999999999997,0.34700000000000003 +2014-01-16 02:00:00,0.248,0.337,0.348 +2014-01-16 03:00:00,0.245,0.336,0.348 +2014-01-16 04:00:00,0.245,0.33399999999999996,0.348 +2014-01-16 05:00:00,0.245,0.33399999999999996,0.348 +2014-01-16 06:00:00,0.245,0.332,0.349 +2014-01-16 07:00:00,0.24600000000000002,0.332,0.349 +2014-01-16 08:00:00,0.248,0.331,0.349 +2014-01-16 09:00:00,0.251,0.33,0.349 +2014-01-16 10:00:00,0.251,0.32899999999999996,0.349 +2014-01-16 11:00:00,0.251,0.327,0.349 +2014-01-16 12:00:00,0.251,0.327,0.348 +2014-01-16 13:00:00,0.251,0.326,0.348 +2014-01-16 14:00:00,0.251,0.326,0.348 +2014-01-16 15:00:00,0.251,0.326,0.348 +2014-01-16 16:00:00,0.251,0.325,0.348 +2014-01-16 17:00:00,0.252,0.325,0.348 +2014-01-16 18:00:00,0.251,0.324,0.348 +2014-01-16 19:00:00,0.252,0.324,0.349 +2014-01-16 20:00:00,0.253,0.324,0.349 +2014-01-16 21:00:00,0.254,0.32299999999999995,0.349 +2014-01-16 22:00:00,0.254,0.322,0.349 +2014-01-16 23:00:00,0.258,0.322,0.349 +2014-01-17 00:00:00,0.259,0.321,0.349 +2014-01-17 01:00:00,0.257,0.321,0.35 +2014-01-17 02:00:00,0.257,0.321,0.35100000000000003 +2014-01-17 03:00:00,0.255,0.321,0.35 +2014-01-17 04:00:00,0.254,0.321,0.35 +2014-01-17 05:00:00,0.253,0.32,0.35 +2014-01-17 06:00:00,0.253,0.319,0.349 +2014-01-17 07:00:00,0.252,0.319,0.349 +2014-01-17 08:00:00,0.253,0.319,0.349 +2014-01-17 09:00:00,0.254,0.318,0.348 +2014-01-17 10:00:00,0.255,0.317,0.348 +2014-01-17 11:00:00,0.258,0.317,0.348 +2014-01-17 12:00:00,0.259,0.317,0.34700000000000003 +2014-01-17 13:00:00,0.259,0.317,0.34700000000000003 +2014-01-17 14:00:00,0.259,0.317,0.34700000000000003 +2014-01-17 15:00:00,0.259,0.316,0.34700000000000003 +2014-01-17 16:00:00,0.259,0.316,0.34600000000000003 +2014-01-17 17:00:00,0.259,0.315,0.34600000000000003 +2014-01-17 18:00:00,0.258,0.315,0.34600000000000003 +2014-01-17 19:00:00,0.258,0.315,0.34600000000000003 +2014-01-17 20:00:00,0.258,0.315,0.34600000000000003 +2014-01-17 21:00:00,0.258,0.315,0.34600000000000003 +2014-01-17 22:00:00,0.258,0.315,0.34600000000000003 +2014-01-17 23:00:00,0.258,0.31,0.34600000000000003 +2014-01-18 00:00:00,0.257,0.308,0.34600000000000003 +2014-01-18 01:00:00,0.257,0.309,0.34600000000000003 +2014-01-18 02:00:00,0.257,0.313,0.34600000000000003 +2014-01-18 03:00:00,0.257,0.32,0.34600000000000003 +2014-01-18 04:00:00,0.256,0.324,0.34600000000000003 +2014-01-18 05:00:00,0.256,0.326,0.34600000000000003 +2014-01-18 06:00:00,0.256,0.326,0.34600000000000003 +2014-01-18 07:00:00,0.256,0.326,0.34600000000000003 +2014-01-18 08:00:00,0.256,0.32799999999999996,0.34600000000000003 +2014-01-18 09:00:00,0.256,0.326,0.34600000000000003 +2014-01-18 10:00:00,0.256,0.331,0.34700000000000003 +2014-01-18 11:00:00,0.255,0.337,0.34700000000000003 +2014-01-18 12:00:00,0.255,0.337,0.34700000000000003 +2014-01-18 13:00:00,0.255,0.335,0.34700000000000003 +2014-01-18 14:00:00,0.255,0.335,0.34700000000000003 +2014-01-18 15:00:00,0.255,0.33399999999999996,0.34700000000000003 +2014-01-18 16:00:00,0.255,0.33399999999999996,0.34700000000000003 +2014-01-18 17:00:00,0.255,0.33399999999999996,0.34700000000000003 +2014-01-18 18:00:00,0.255,0.335,0.34600000000000003 +2014-01-18 19:00:00,0.255,0.33399999999999996,0.34600000000000003 +2014-01-18 20:00:00,0.255,0.33399999999999996,0.34600000000000003 +2014-01-18 21:00:00,0.255,0.33299999999999996,0.34600000000000003 +2014-01-18 22:00:00,0.254,0.332,0.34600000000000003 +2014-01-18 23:00:00,0.254,0.331,0.34700000000000003 +2014-01-19 00:00:00,0.254,0.33,0.34600000000000003 +2014-01-19 01:00:00,0.254,0.32899999999999996,0.34600000000000003 +2014-01-19 02:00:00,0.254,0.327,0.34600000000000003 +2014-01-19 03:00:00,0.254,0.326,0.34600000000000003 +2014-01-19 04:00:00,0.254,0.324,0.34700000000000003 +2014-01-19 05:00:00,0.254,0.322,0.34700000000000003 +2014-01-19 06:00:00,0.254,0.319,0.34700000000000003 +2014-01-19 07:00:00,0.254,0.319,0.34700000000000003 +2014-01-19 08:00:00,0.253,0.319,0.34700000000000003 +2014-01-19 09:00:00,0.253,0.32,0.34700000000000003 +2014-01-19 10:00:00,0.253,0.321,0.34700000000000003 +2014-01-19 11:00:00,0.253,0.322,0.34700000000000003 +2014-01-19 12:00:00,0.253,0.321,0.34700000000000003 +2014-01-19 13:00:00,0.253,0.321,0.34600000000000003 +2014-01-19 14:00:00,0.253,0.321,0.34600000000000003 +2014-01-19 15:00:00,0.254,0.319,0.34600000000000003 +2014-01-19 16:00:00,0.254,0.317,0.34600000000000003 +2014-01-19 17:00:00,0.254,0.317,0.34600000000000003 +2014-01-19 18:00:00,0.253,0.317,0.34600000000000003 +2014-01-19 19:00:00,0.254,0.318,0.34600000000000003 +2014-01-19 20:00:00,0.253,0.318,0.34600000000000003 +2014-01-19 21:00:00,0.253,0.318,0.34600000000000003 +2014-01-19 22:00:00,0.253,0.317,0.34600000000000003 +2014-01-19 23:00:00,0.253,0.317,0.34600000000000003 +2014-01-20 00:00:00,0.253,0.317,0.34600000000000003 +2014-01-20 01:00:00,0.253,0.317,0.34600000000000003 +2014-01-20 02:00:00,0.253,0.317,0.34600000000000003 +2014-01-20 03:00:00,0.253,0.315,0.34600000000000003 +2014-01-20 04:00:00,0.253,0.308,0.34600000000000003 +2014-01-20 05:00:00,0.253,0.3,0.34600000000000003 +2014-01-20 06:00:00,0.253,0.301,0.34600000000000003 +2014-01-20 07:00:00,0.253,0.304,0.34600000000000003 +2014-01-20 08:00:00,0.253,0.309,0.34600000000000003 +2014-01-20 09:00:00,0.253,0.326,0.345 +2014-01-20 10:00:00,0.253,0.33899999999999997,0.345 +2014-01-20 11:00:00,0.253,0.344,0.345 +2014-01-20 12:00:00,0.253,0.344,0.345 +2014-01-20 13:00:00,0.253,0.34299999999999997,0.345 +2014-01-20 14:00:00,0.253,0.34299999999999997,0.345 +2014-01-20 15:00:00,0.253,0.34299999999999997,0.345 +2014-01-20 16:00:00,0.253,0.34299999999999997,0.345 +2014-01-20 17:00:00,0.253,0.34299999999999997,0.345 +2014-01-20 18:00:00,0.253,0.34299999999999997,0.345 +2014-01-20 19:00:00,0.253,0.341,0.345 +2014-01-20 20:00:00,0.253,0.34,0.345 +2014-01-20 21:00:00,0.253,0.33899999999999997,0.345 +2014-01-20 22:00:00,0.252,0.33799999999999997,0.345 +2014-01-20 23:00:00,0.253,0.33799999999999997,0.345 +2014-01-21 00:00:00,0.253,0.33799999999999997,0.345 +2014-01-21 01:00:00,0.252,0.335,0.345 +2014-01-21 02:00:00,0.252,0.326,0.345 +2014-01-21 03:00:00,0.252,0.32799999999999996,0.345 +2014-01-21 04:00:00,0.252,0.33799999999999997,0.34600000000000003 +2014-01-21 05:00:00,0.24600000000000002,0.33799999999999997,0.348 +2014-01-21 06:00:00,0.256,0.33899999999999997,0.349 +2014-01-21 07:00:00,0.257,0.33899999999999997,0.35 +2014-01-21 08:00:00,0.256,0.33799999999999997,0.35100000000000003 +2014-01-21 09:00:00,0.257,0.33799999999999997,0.353 +2014-01-21 10:00:00,0.257,0.34,0.354 +2014-01-21 11:00:00,0.257,0.34,0.355 +2014-01-21 12:00:00,0.257,0.34,0.355 +2014-01-21 13:00:00,0.259,0.33899999999999997,0.358 +2014-01-21 14:00:00,0.259,0.33899999999999997,0.36200000000000004 +2014-01-21 15:00:00,0.257,0.341,0.36200000000000004 +2014-01-21 16:00:00,0.255,0.34299999999999997,0.363 +2014-01-21 17:00:00,0.254,0.34299999999999997,0.366 +2014-01-21 18:00:00,0.255,0.344,0.37 +2014-01-21 19:00:00,0.254,0.344,0.375 +2014-01-21 20:00:00,0.254,0.34299999999999997,0.37799999999999995 +2014-01-21 21:00:00,0.254,0.34299999999999997,0.38 +2014-01-21 22:00:00,0.254,0.341,0.379 +2014-01-21 23:00:00,0.254,0.341,0.37799999999999995 +2014-01-22 00:00:00,0.254,0.33899999999999997,0.377 +2014-01-22 01:00:00,0.254,0.33799999999999997,0.375 +2014-01-22 02:00:00,0.254,0.33799999999999997,0.374 +2014-01-22 03:00:00,0.254,0.33799999999999997,0.37200000000000005 +2014-01-22 04:00:00,0.254,0.337,0.371 +2014-01-22 05:00:00,0.254,0.336,0.37 +2014-01-22 06:00:00,0.254,0.33399999999999996,0.369 +2014-01-22 07:00:00,0.254,0.33399999999999996,0.36700000000000005 +2014-01-22 08:00:00,0.254,0.33399999999999996,0.36700000000000005 +2014-01-22 09:00:00,0.254,0.332,0.366 +2014-01-22 10:00:00,0.254,0.332,0.366 +2014-01-22 11:00:00,0.254,0.331,0.365 +2014-01-22 12:00:00,0.255,0.331,0.364 +2014-01-22 13:00:00,0.255,0.33,0.364 +2014-01-22 14:00:00,0.256,0.32899999999999996,0.36200000000000004 +2014-01-22 15:00:00,0.256,0.32899999999999996,0.36200000000000004 +2014-01-22 16:00:00,0.256,0.327,0.361 +2014-01-22 17:00:00,0.256,0.327,0.36 +2014-01-22 18:00:00,0.256,0.327,0.36 +2014-01-22 19:00:00,0.256,0.327,0.359 +2014-01-22 20:00:00,0.256,0.326,0.358 +2014-01-22 21:00:00,0.256,0.326,0.358 +2014-01-22 22:00:00,0.256,0.326,0.35700000000000004 +2014-01-22 23:00:00,0.256,0.324,0.35600000000000004 +2014-01-23 00:00:00,0.256,0.324,0.35600000000000004 +2014-01-23 01:00:00,0.255,0.324,0.35600000000000004 +2014-01-23 02:00:00,0.255,0.324,0.355 +2014-01-23 03:00:00,0.255,0.324,0.355 +2014-01-23 04:00:00,0.255,0.32299999999999995,0.354 +2014-01-23 05:00:00,0.255,0.322,0.354 +2014-01-23 06:00:00,0.255,0.322,0.354 +2014-01-23 07:00:00,0.255,0.322,0.353 +2014-01-23 08:00:00,0.255,0.322,0.353 +2014-01-23 09:00:00,0.255,0.322,0.353 +2014-01-23 10:00:00,0.255,0.321,0.353 +2014-01-23 11:00:00,0.254,0.321,0.35200000000000004 +2014-01-23 12:00:00,0.254,0.321,0.35200000000000004 +2014-01-23 13:00:00,0.254,0.321,0.35200000000000004 +2014-01-23 14:00:00,0.255,0.321,0.35200000000000004 +2014-01-23 15:00:00,0.255,0.321,0.35100000000000003 +2014-01-23 16:00:00,0.255,0.32,0.35100000000000003 +2014-01-23 17:00:00,0.255,0.32,0.35100000000000003 +2014-01-23 18:00:00,0.255,0.319,0.35100000000000003 +2014-01-23 19:00:00,0.255,0.319,0.35100000000000003 +2014-01-23 20:00:00,0.25,0.319,0.353 +2014-01-23 21:00:00,0.25,0.319,0.353 +2014-01-23 22:00:00,0.255,0.319,0.353 +2014-01-23 23:00:00,0.255,0.319,0.353 +2014-01-24 00:00:00,0.254,0.318,0.353 +2014-01-24 01:00:00,0.254,0.317,0.353 +2014-01-24 02:00:00,0.254,0.317,0.354 +2014-01-24 03:00:00,0.254,0.317,0.354 +2014-01-24 04:00:00,0.254,0.317,0.354 +2014-01-24 05:00:00,0.254,0.317,0.354 +2014-01-24 06:00:00,0.255,0.317,0.355 +2014-01-24 07:00:00,0.257,0.317,0.355 +2014-01-24 08:00:00,0.257,0.316,0.355 +2014-01-24 09:00:00,0.256,0.316,0.35600000000000004 +2014-01-24 10:00:00,0.255,0.315,0.35600000000000004 +2014-01-24 11:00:00,0.255,0.315,0.35600000000000004 +2014-01-24 12:00:00,0.254,0.315,0.35600000000000004 +2014-01-24 13:00:00,0.254,0.315,0.35600000000000004 +2014-01-24 14:00:00,0.254,0.315,0.355 +2014-01-24 15:00:00,0.255,0.315,0.355 +2014-01-24 16:00:00,0.255,0.315,0.355 +2014-01-24 17:00:00,0.256,0.315,0.355 +2014-01-24 18:00:00,0.256,0.315,0.355 +2014-01-24 19:00:00,0.255,0.314,0.355 +2014-01-24 20:00:00,0.255,0.314,0.355 +2014-01-24 21:00:00,0.255,0.314,0.355 +2014-01-24 22:00:00,0.255,0.314,0.355 +2014-01-24 23:00:00,0.254,0.314,0.355 +2014-01-25 00:00:00,0.253,0.314,0.355 +2014-01-25 01:00:00,0.252,0.314,0.355 +2014-01-25 02:00:00,0.252,0.314,0.355 +2014-01-25 03:00:00,0.252,0.314,0.355 +2014-01-25 04:00:00,0.253,0.313,0.355 +2014-01-25 05:00:00,0.253,0.313,0.354 +2014-01-25 06:00:00,0.253,0.313,0.354 +2014-01-25 07:00:00,0.255,0.313,0.354 +2014-01-25 08:00:00,0.257,0.313,0.353 +2014-01-25 09:00:00,0.257,0.313,0.353 +2014-01-25 10:00:00,0.257,0.313,0.353 +2014-01-25 11:00:00,0.256,0.312,0.353 +2014-01-25 12:00:00,0.255,0.312,0.353 +2014-01-25 13:00:00,0.255,0.312,0.353 +2014-01-25 14:00:00,0.255,0.312,0.353 +2014-01-25 15:00:00,0.256,0.312,0.353 +2014-01-25 16:00:00,0.256,0.312,0.35200000000000004 +2014-01-25 17:00:00,0.256,0.312,0.35200000000000004 +2014-01-25 18:00:00,0.256,0.312,0.35200000000000004 +2014-01-25 19:00:00,0.256,0.312,0.35200000000000004 +2014-01-25 20:00:00,0.256,0.312,0.35200000000000004 +2014-01-25 21:00:00,0.256,0.312,0.35200000000000004 +2014-01-25 22:00:00,0.256,0.312,0.35200000000000004 +2014-01-25 23:00:00,0.255,0.312,0.35200000000000004 +2014-01-26 00:00:00,0.25,0.311,0.353 +2014-01-26 01:00:00,0.25,0.311,0.354 +2014-01-26 02:00:00,0.25,0.31,0.355 +2014-01-26 03:00:00,0.25,0.31,0.355 +2014-01-26 04:00:00,0.25,0.31,0.355 +2014-01-26 05:00:00,0.251,0.311,0.355 +2014-01-26 06:00:00,0.253,0.311,0.35600000000000004 +2014-01-26 07:00:00,0.257,0.31,0.359 +2014-01-26 08:00:00,0.257,0.31,0.363 +2014-01-26 09:00:00,0.256,0.31,0.365 +2014-01-26 10:00:00,0.255,0.31,0.366 +2014-01-26 11:00:00,0.255,0.31,0.37 +2014-01-26 12:00:00,0.256,0.31,0.375 +2014-01-26 13:00:00,0.258,0.31,0.37799999999999995 +2014-01-26 14:00:00,0.26,0.31,0.38 +2014-01-26 15:00:00,0.26,0.31,0.382 +2014-01-26 16:00:00,0.26,0.31,0.38299999999999995 +2014-01-26 17:00:00,0.26,0.31,0.38299999999999995 +2014-01-26 18:00:00,0.26,0.31,0.38299999999999995 +2014-01-26 19:00:00,0.259,0.307,0.38299999999999995 +2014-01-26 20:00:00,0.259,0.304,0.384 +2014-01-26 21:00:00,0.259,0.308,0.384 +2014-01-26 22:00:00,0.255,0.321,0.386 +2014-01-26 23:00:00,0.252,0.33399999999999996,0.387 +2014-01-27 00:00:00,0.261,0.33799999999999997,0.39 +2014-01-27 01:00:00,0.261,0.33799999999999997,0.392 +2014-01-27 02:00:00,0.26,0.33799999999999997,0.391 +2014-01-27 03:00:00,0.259,0.33799999999999997,0.391 +2014-01-27 04:00:00,0.258,0.33799999999999997,0.392 +2014-01-27 05:00:00,0.258,0.337,0.39299999999999996 +2014-01-27 06:00:00,0.258,0.335,0.39299999999999996 +2014-01-27 07:00:00,0.257,0.33399999999999996,0.39299999999999996 +2014-01-27 08:00:00,0.256,0.332,0.39399999999999996 +2014-01-27 09:00:00,0.254,0.331,0.39399999999999996 +2014-01-27 10:00:00,0.253,0.32799999999999996,0.39399999999999996 +2014-01-27 11:00:00,0.252,0.326,0.39399999999999996 +2014-01-27 12:00:00,0.253,0.326,0.39399999999999996 +2014-01-27 13:00:00,0.256,0.325,0.39399999999999996 +2014-01-27 14:00:00,0.259,0.325,0.39399999999999996 +2014-01-27 15:00:00,0.261,0.326,0.395 +2014-01-27 16:00:00,0.262,0.326,0.395 +2014-01-27 17:00:00,0.261,0.326,0.395 +2014-01-27 18:00:00,0.261,0.324,0.395 +2014-01-27 19:00:00,0.26,0.324,0.395 +2014-01-27 20:00:00,0.26,0.322,0.395 +2014-01-27 21:00:00,0.26,0.322,0.395 +2014-01-27 22:00:00,0.26,0.322,0.395 +2014-01-27 23:00:00,0.26,0.321,0.395 +2014-01-28 00:00:00,0.259,0.321,0.395 +2014-01-28 01:00:00,0.259,0.321,0.395 +2014-01-28 02:00:00,0.259,0.321,0.395 +2014-01-28 03:00:00,0.259,0.319,0.395 +2014-01-28 04:00:00,0.259,0.319,0.395 +2014-01-28 05:00:00,0.259,0.319,0.395 +2014-01-28 06:00:00,0.258,0.317,0.395 +2014-01-28 07:00:00,0.258,0.317,0.395 +2014-01-28 08:00:00,0.258,0.317,0.395 +2014-01-28 09:00:00,0.258,0.317,0.395 +2014-01-28 10:00:00,0.258,0.316,0.395 +2014-01-28 11:00:00,0.258,0.315,0.395 +2014-01-28 12:00:00,0.258,0.315,0.395 +2014-01-28 13:00:00,0.258,0.315,0.396 +2014-01-28 14:00:00,0.258,0.314,0.395 +2014-01-28 15:00:00,0.257,0.314,0.396 +2014-01-28 16:00:00,0.257,0.314,0.396 +2014-01-28 17:00:00,0.257,0.314,0.396 +2014-01-28 18:00:00,0.258,0.314,0.396 +2014-01-28 19:00:00,0.257,0.314,0.396 +2014-01-28 20:00:00,0.257,0.314,0.396 +2014-01-28 21:00:00,0.257,0.314,0.396 +2014-01-28 22:00:00,0.257,0.314,0.396 +2014-01-28 23:00:00,0.256,0.314,0.396 +2014-01-29 00:00:00,0.256,0.314,0.396 +2014-01-29 01:00:00,0.256,0.314,0.396 +2014-01-29 02:00:00,0.256,0.314,0.396 +2014-01-29 03:00:00,0.256,0.314,0.396 +2014-01-29 04:00:00,0.256,0.314,0.396 +2014-01-29 05:00:00,0.256,0.314,0.396 +2014-01-29 06:00:00,0.256,0.314,0.396 +2014-01-29 07:00:00,0.255,0.314,0.396 +2014-01-29 08:00:00,0.255,0.314,0.395 +2014-01-29 09:00:00,0.255,0.313,0.395 +2014-01-29 10:00:00,0.255,0.313,0.395 +2014-01-29 11:00:00,0.255,0.313,0.395 +2014-01-29 12:00:00,0.255,0.312,0.395 +2014-01-29 13:00:00,0.255,0.312,0.395 +2014-01-29 14:00:00,0.255,0.312,0.395 +2014-01-29 15:00:00,0.255,0.312,0.39399999999999996 +2014-01-29 16:00:00,0.255,0.312,0.39399999999999996 +2014-01-29 17:00:00,0.255,0.312,0.39399999999999996 +2014-01-29 18:00:00,0.255,0.312,0.39399999999999996 +2014-01-29 19:00:00,0.255,0.312,0.39399999999999996 +2014-01-29 20:00:00,0.255,0.312,0.39399999999999996 +2014-01-29 21:00:00,0.255,0.312,0.39299999999999996 +2014-01-29 22:00:00,0.255,0.311,0.39299999999999996 +2014-01-29 23:00:00,0.255,0.311,0.39299999999999996 +2014-01-30 00:00:00,0.255,0.31,0.392 +2014-01-30 01:00:00,0.255,0.31,0.392 +2014-01-30 02:00:00,0.255,0.31,0.392 +2014-01-30 03:00:00,0.255,0.31,0.392 +2014-01-30 04:00:00,0.254,0.31,0.392 +2014-01-30 05:00:00,0.254,0.31,0.391 +2014-01-30 06:00:00,0.254,0.31,0.391 +2014-01-30 07:00:00,0.254,0.31,0.386 +2014-01-30 08:00:00,0.254,0.31,0.384 +2014-01-30 09:00:00,0.254,0.31,0.382 +2014-01-30 10:00:00,0.254,0.31,0.381 +2014-01-30 11:00:00,0.254,0.31,0.381 +2014-01-30 12:00:00,0.254,0.31,0.38 +2014-01-30 13:00:00,0.254,0.31,0.379 +2014-01-30 14:00:00,0.254,0.31,0.379 +2014-01-30 15:00:00,0.254,0.31,0.37799999999999995 +2014-01-30 16:00:00,0.254,0.31,0.37799999999999995 +2014-01-30 17:00:00,0.254,0.31,0.37799999999999995 +2014-01-30 18:00:00,0.254,0.31,0.37200000000000005 +2014-01-30 19:00:00,0.254,0.31,0.37 +2014-01-30 20:00:00,0.253,0.31,0.37 +2014-01-30 21:00:00,0.253,0.31,0.369 +2014-01-30 22:00:00,0.253,0.31,0.369 +2014-01-30 23:00:00,0.253,0.31,0.365 +2014-01-31 00:00:00,0.253,0.31,0.363 +2014-01-31 01:00:00,0.253,0.31,0.363 +2014-01-31 02:00:00,0.253,0.31,0.36200000000000004 +2014-01-31 03:00:00,0.253,0.31,0.36200000000000004 +2014-01-31 04:00:00,0.253,0.31,0.36200000000000004 +2014-01-31 05:00:00,0.253,0.31,0.361 +2014-01-31 06:00:00,0.253,0.31,0.361 +2014-01-31 07:00:00,0.253,0.31,0.361 +2014-01-31 08:00:00,0.253,0.31,0.36 +2014-01-31 09:00:00,0.253,0.31,0.36 +2014-01-31 10:00:00,0.253,0.31,0.36 +2014-01-31 11:00:00,0.253,0.31,0.36 +2014-01-31 12:00:00,0.253,0.31,0.36 +2014-01-31 13:00:00,0.252,0.31,0.359 +2014-01-31 14:00:00,0.252,0.31,0.359 +2014-01-31 15:00:00,0.252,0.31,0.359 +2014-01-31 16:00:00,0.252,0.31,0.358 +2014-01-31 17:00:00,0.252,0.313,0.358 +2014-01-31 18:00:00,0.252,0.311,0.358 +2014-01-31 19:00:00,0.252,0.31,0.35700000000000004 +2014-01-31 20:00:00,0.252,0.31,0.35700000000000004 +2014-01-31 21:00:00,0.252,0.31,0.35700000000000004 +2014-01-31 22:00:00,0.252,0.31,0.35700000000000004 +2014-01-31 23:00:00,0.252,0.31,0.35700000000000004 +2014-02-01 00:00:00,0.252,0.31,0.35700000000000004 +2014-02-01 01:00:00,0.252,0.31,0.35700000000000004 +2014-02-01 02:00:00,0.252,0.31,0.35600000000000004 +2014-02-01 03:00:00,0.252,0.31,0.35600000000000004 +2014-02-01 04:00:00,0.252,0.31,0.35600000000000004 +2014-02-01 05:00:00,0.252,0.31,0.35600000000000004 +2014-02-01 06:00:00,0.252,0.31,0.35600000000000004 +2014-02-01 07:00:00,0.252,0.31,0.35600000000000004 +2014-02-01 08:00:00,0.252,0.309,0.35600000000000004 +2014-02-01 09:00:00,0.252,0.309,0.355 +2014-02-01 10:00:00,0.251,0.309,0.355 +2014-02-01 11:00:00,0.252,0.309,0.355 +2014-02-01 12:00:00,0.251,0.309,0.354 +2014-02-01 13:00:00,0.252,0.309,0.354 +2014-02-01 14:00:00,0.251,0.309,0.355 +2014-02-01 15:00:00,0.25,0.31,0.35600000000000004 +2014-02-01 16:00:00,0.244,0.31,0.35700000000000004 +2014-02-01 17:00:00,0.248,0.31,0.358 +2014-02-01 18:00:00,0.256,0.309,0.358 +2014-02-01 19:00:00,0.258,0.309,0.359 +2014-02-01 20:00:00,0.258,0.309,0.361 +2014-02-01 21:00:00,0.257,0.309,0.361 +2014-02-01 22:00:00,0.257,0.309,0.361 +2014-02-01 23:00:00,0.256,0.309,0.361 +2014-02-02 00:00:00,0.255,0.309,0.361 +2014-02-02 01:00:00,0.255,0.309,0.361 +2014-02-02 02:00:00,0.254,0.309,0.361 +2014-02-02 03:00:00,0.254,0.309,0.361 +2014-02-02 04:00:00,0.254,0.309,0.361 +2014-02-02 05:00:00,0.253,0.309,0.361 +2014-02-02 06:00:00,0.253,0.309,0.361 +2014-02-02 07:00:00,0.253,0.309,0.361 +2014-02-02 08:00:00,0.253,0.309,0.361 +2014-02-02 09:00:00,0.252,0.309,0.361 +2014-02-02 10:00:00,0.252,0.309,0.361 +2014-02-02 11:00:00,0.252,0.309,0.36 +2014-02-02 12:00:00,0.253,0.309,0.36 +2014-02-02 13:00:00,0.256,0.309,0.359 +2014-02-02 14:00:00,0.259,0.309,0.358 +2014-02-02 15:00:00,0.259,0.309,0.35700000000000004 +2014-02-02 16:00:00,0.259,0.309,0.35700000000000004 +2014-02-02 17:00:00,0.259,0.309,0.35700000000000004 +2014-02-02 18:00:00,0.259,0.309,0.35700000000000004 +2014-02-02 19:00:00,0.259,0.309,0.35600000000000004 +2014-02-02 20:00:00,0.259,0.307,0.35600000000000004 +2014-02-02 21:00:00,0.258,0.307,0.35600000000000004 +2014-02-02 22:00:00,0.258,0.307,0.355 +2014-02-02 23:00:00,0.258,0.308,0.355 +2014-02-03 00:00:00,0.258,0.309,0.355 +2014-02-03 01:00:00,0.258,0.309,0.355 +2014-02-03 02:00:00,0.258,0.309,0.354 +2014-02-03 03:00:00,0.257,0.309,0.354 +2014-02-03 04:00:00,0.257,0.309,0.354 +2014-02-03 05:00:00,0.257,0.309,0.354 +2014-02-03 06:00:00,0.257,0.309,0.354 +2014-02-03 07:00:00,0.257,0.31,0.354 +2014-02-03 08:00:00,0.256,0.31,0.354 +2014-02-03 09:00:00,0.256,0.31,0.354 +2014-02-03 10:00:00,0.256,0.31,0.354 +2014-02-03 11:00:00,0.256,0.31,0.355 +2014-02-03 12:00:00,0.256,0.31,0.355 +2014-02-03 13:00:00,0.256,0.31,0.355 +2014-02-03 14:00:00,0.256,0.31,0.355 +2014-02-03 15:00:00,0.256,0.31,0.355 +2014-02-03 16:00:00,0.256,0.31,0.355 +2014-02-03 17:00:00,0.256,0.31,0.355 +2014-02-03 18:00:00,0.256,0.31,0.354 +2014-02-03 19:00:00,0.256,0.31,0.354 +2014-02-03 20:00:00,0.256,0.31,0.354 +2014-02-03 21:00:00,0.256,0.31,0.354 +2014-02-03 22:00:00,0.256,0.31,0.354 +2014-02-03 23:00:00,0.256,0.31,0.354 +2014-02-04 00:00:00,0.256,0.31,0.354 +2014-02-04 01:00:00,0.256,0.31,0.354 +2014-02-04 02:00:00,0.256,0.31,0.353 +2014-02-04 03:00:00,0.256,0.31,0.353 +2014-02-04 04:00:00,0.256,0.309,0.353 +2014-02-04 05:00:00,0.255,0.309,0.353 +2014-02-04 06:00:00,0.255,0.309,0.353 +2014-02-04 07:00:00,0.255,0.309,0.353 +2014-02-04 08:00:00,0.255,0.309,0.353 +2014-02-04 09:00:00,0.255,0.309,0.353 +2014-02-04 10:00:00,0.255,0.309,0.353 +2014-02-04 11:00:00,0.255,0.309,0.353 +2014-02-04 12:00:00,0.255,0.309,0.353 +2014-02-04 13:00:00,0.255,0.309,0.353 +2014-02-04 14:00:00,0.255,0.309,0.353 +2014-02-04 15:00:00,0.255,0.309,0.353 +2014-02-04 16:00:00,0.255,0.309,0.35200000000000004 +2014-02-04 17:00:00,0.255,0.309,0.35200000000000004 +2014-02-04 18:00:00,0.255,0.309,0.35200000000000004 +2014-02-04 19:00:00,0.255,0.309,0.35200000000000004 +2014-02-04 20:00:00,0.255,0.309,0.35200000000000004 +2014-02-04 21:00:00,0.255,0.309,0.35200000000000004 +2014-02-04 22:00:00,0.254,0.309,0.35200000000000004 +2014-02-04 23:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 00:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 01:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 02:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 03:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 04:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 05:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 06:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 07:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 08:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 09:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 10:00:00,0.253,0.309,0.35200000000000004 +2014-02-05 11:00:00,0.253,0.309,0.35200000000000004 +2014-02-05 12:00:00,0.253,0.309,0.353 +2014-02-05 13:00:00,0.253,0.309,0.353 +2014-02-05 14:00:00,0.253,0.309,0.353 +2014-02-05 15:00:00,0.253,0.309,0.353 +2014-02-05 16:00:00,0.254,0.309,0.353 +2014-02-05 17:00:00,0.254,0.309,0.353 +2014-02-05 18:00:00,0.254,0.309,0.353 +2014-02-05 19:00:00,0.253,0.309,0.353 +2014-02-05 20:00:00,0.253,0.309,0.353 +2014-02-05 21:00:00,0.254,0.309,0.353 +2014-02-05 22:00:00,0.254,0.309,0.35200000000000004 +2014-02-05 23:00:00,0.253,0.309,0.35200000000000004 +2014-02-06 00:00:00,0.254,0.309,0.35200000000000004 +2014-02-06 01:00:00,0.253,0.309,0.35200000000000004 +2014-02-06 02:00:00,0.254,0.309,0.35200000000000004 +2014-02-06 03:00:00,0.254,0.309,0.35200000000000004 +2014-02-06 04:00:00,0.254,0.309,0.35200000000000004 +2014-02-06 05:00:00,0.254,0.309,0.35200000000000004 +2014-02-06 06:00:00,0.254,0.308,0.35200000000000004 +2014-02-06 07:00:00,0.254,0.307,0.35100000000000003 +2014-02-06 08:00:00,0.254,0.307,0.35200000000000004 +2014-02-06 09:00:00,0.254,0.308,0.35200000000000004 +2014-02-06 10:00:00,0.254,0.308,0.35100000000000003 +2014-02-06 11:00:00,0.254,0.308,0.35100000000000003 +2014-02-06 12:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 13:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 14:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 15:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 16:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 17:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 18:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 19:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 20:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 21:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 22:00:00,0.254,0.309,0.35100000000000003 +2014-02-06 23:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 00:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 01:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 02:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 03:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 04:00:00,0.254,0.307,0.35100000000000003 +2014-02-07 05:00:00,0.254,0.306,0.35100000000000003 +2014-02-07 06:00:00,0.254,0.307,0.35100000000000003 +2014-02-07 07:00:00,0.254,0.307,0.35100000000000003 +2014-02-07 08:00:00,0.254,0.308,0.35100000000000003 +2014-02-07 09:00:00,0.254,0.308,0.35100000000000003 +2014-02-07 10:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 11:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 12:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 13:00:00,0.254,0.308,0.35100000000000003 +2014-02-07 14:00:00,0.254,0.309,0.35100000000000003 +2014-02-07 15:00:00,0.254,0.309,0.35 +2014-02-07 16:00:00,0.254,0.309,0.35 +2014-02-07 17:00:00,0.254,0.307,0.35 +2014-02-07 18:00:00,0.254,0.341,0.35 +2014-02-07 19:00:00,0.254,0.34299999999999997,0.35 +2014-02-07 20:00:00,0.254,0.34299999999999997,0.35 +2014-02-07 21:00:00,0.254,0.345,0.35 +2014-02-07 22:00:00,0.254,0.34299999999999997,0.35 +2014-02-07 23:00:00,0.254,0.344,0.35 +2014-02-08 00:00:00,0.254,0.344,0.35 +2014-02-08 01:00:00,0.254,0.34299999999999997,0.35 +2014-02-08 02:00:00,0.254,0.342,0.35 +2014-02-08 03:00:00,0.253,0.34299999999999997,0.35 +2014-02-08 04:00:00,0.253,0.34299999999999997,0.35 +2014-02-08 05:00:00,0.253,0.34299999999999997,0.35 +2014-02-08 06:00:00,0.253,0.34299999999999997,0.35 +2014-02-08 07:00:00,0.253,0.34299999999999997,0.35 +2014-02-08 08:00:00,0.253,0.341,0.35 +2014-02-08 09:00:00,0.253,0.341,0.35 +2014-02-08 10:00:00,0.253,0.341,0.35 +2014-02-08 11:00:00,0.253,0.33899999999999997,0.35 +2014-02-08 12:00:00,0.253,0.33799999999999997,0.35 +2014-02-08 13:00:00,0.253,0.33799999999999997,0.35 +2014-02-08 14:00:00,0.253,0.33799999999999997,0.35 +2014-02-08 15:00:00,0.253,0.336,0.35 +2014-02-08 16:00:00,0.252,0.336,0.35200000000000004 +2014-02-08 17:00:00,0.24600000000000002,0.33399999999999996,0.353 +2014-02-08 18:00:00,0.24600000000000002,0.33399999999999996,0.353 +2014-02-08 19:00:00,0.24600000000000002,0.332,0.353 +2014-02-08 20:00:00,0.248,0.331,0.353 +2014-02-08 21:00:00,0.251,0.331,0.353 +2014-02-08 22:00:00,0.254,0.331,0.353 +2014-02-08 23:00:00,0.258,0.331,0.35200000000000004 +2014-02-09 00:00:00,0.258,0.32899999999999996,0.35100000000000003 +2014-02-09 01:00:00,0.259,0.32899999999999996,0.35100000000000003 +2014-02-09 02:00:00,0.258,0.32899999999999996,0.35 +2014-02-09 03:00:00,0.258,0.32899999999999996,0.35 +2014-02-09 04:00:00,0.258,0.32899999999999996,0.35 +2014-02-09 05:00:00,0.258,0.32799999999999996,0.35 +2014-02-09 06:00:00,0.258,0.327,0.35 +2014-02-09 07:00:00,0.258,0.327,0.35 +2014-02-09 08:00:00,0.258,0.327,0.35 +2014-02-09 09:00:00,0.258,0.327,0.35 +2014-02-09 10:00:00,0.258,0.327,0.35 +2014-02-09 11:00:00,0.258,0.327,0.35 +2014-02-09 12:00:00,0.258,0.326,0.35 +2014-02-09 13:00:00,0.258,0.326,0.35 +2014-02-09 14:00:00,0.258,0.326,0.35 +2014-02-09 15:00:00,0.258,0.326,0.35 +2014-02-09 16:00:00,0.258,0.326,0.35 +2014-02-09 17:00:00,0.258,0.325,0.35 +2014-02-09 18:00:00,0.258,0.324,0.35 +2014-02-09 19:00:00,0.258,0.324,0.35 +2014-02-09 20:00:00,0.258,0.324,0.35 +2014-02-09 21:00:00,0.258,0.324,0.35 +2014-02-09 22:00:00,0.257,0.324,0.35 +2014-02-09 23:00:00,0.257,0.324,0.35 +2014-02-10 00:00:00,0.257,0.32299999999999995,0.35 +2014-02-10 01:00:00,0.257,0.322,0.35 +2014-02-10 02:00:00,0.257,0.322,0.35 +2014-02-10 03:00:00,0.256,0.322,0.35 +2014-02-10 04:00:00,0.256,0.321,0.35 +2014-02-10 05:00:00,0.256,0.321,0.35 +2014-02-10 06:00:00,0.256,0.321,0.35 +2014-02-10 07:00:00,0.256,0.321,0.35 +2014-02-10 08:00:00,0.256,0.321,0.35 +2014-02-10 09:00:00,0.256,0.32,0.35 +2014-02-10 10:00:00,0.256,0.319,0.35 +2014-02-10 11:00:00,0.256,0.319,0.35100000000000003 +2014-02-10 12:00:00,0.256,0.319,0.35100000000000003 +2014-02-10 13:00:00,0.256,0.319,0.35 +2014-02-10 14:00:00,0.256,0.319,0.35 +2014-02-10 15:00:00,0.256,0.318,0.35 +2014-02-10 16:00:00,0.256,0.317,0.35 +2014-02-10 17:00:00,0.256,0.317,0.349 +2014-02-10 18:00:00,0.256,0.317,0.35 +2014-02-10 19:00:00,0.256,0.317,0.35 +2014-02-10 20:00:00,0.256,0.317,0.35 +2014-02-10 21:00:00,0.256,0.317,0.35 +2014-02-10 22:00:00,0.256,0.317,0.35100000000000003 +2014-02-10 23:00:00,0.255,0.317,0.35100000000000003 +2014-02-11 00:00:00,0.256,0.316,0.35100000000000003 +2014-02-11 01:00:00,0.256,0.316,0.35100000000000003 +2014-02-11 02:00:00,0.256,0.316,0.35100000000000003 +2014-02-11 03:00:00,0.256,0.316,0.35100000000000003 +2014-02-11 04:00:00,0.256,0.315,0.35100000000000003 +2014-02-11 05:00:00,0.256,0.315,0.35 +2014-02-11 06:00:00,0.256,0.315,0.35 +2014-02-11 07:00:00,0.255,0.315,0.35 +2014-02-11 08:00:00,0.255,0.315,0.35 +2014-02-11 09:00:00,0.255,0.315,0.35 +2014-02-11 10:00:00,0.255,0.314,0.35 +2014-02-11 11:00:00,0.255,0.314,0.349 +2014-02-11 12:00:00,0.255,0.314,0.349 +2014-02-11 13:00:00,0.255,0.314,0.349 +2014-02-11 14:00:00,0.256,0.314,0.349 +2014-02-11 15:00:00,0.256,0.314,0.349 +2014-02-11 16:00:00,0.256,0.314,0.349 +2014-02-11 17:00:00,0.256,0.314,0.349 +2014-02-11 18:00:00,0.256,0.314,0.349 +2014-02-11 19:00:00,0.256,0.313,0.349 +2014-02-11 20:00:00,0.256,0.313,0.349 +2014-02-11 21:00:00,0.256,0.313,0.349 +2014-02-11 22:00:00,0.255,0.313,0.349 +2014-02-11 23:00:00,0.255,0.313,0.349 +2014-02-12 00:00:00,0.255,0.312,0.349 +2014-02-12 01:00:00,0.255,0.312,0.349 +2014-02-12 02:00:00,0.256,0.312,0.35 +2014-02-12 03:00:00,0.253,0.312,0.35200000000000004 +2014-02-12 04:00:00,0.252,0.312,0.35200000000000004 +2014-02-12 05:00:00,0.251,0.312,0.35200000000000004 +2014-02-12 06:00:00,0.252,0.312,0.35200000000000004 +2014-02-12 07:00:00,0.252,0.312,0.35200000000000004 +2014-02-12 08:00:00,0.253,0.312,0.35200000000000004 +2014-02-12 09:00:00,0.253,0.311,0.35200000000000004 +2014-02-12 10:00:00,0.254,0.31,0.35200000000000004 +2014-02-12 11:00:00,0.256,0.31,0.35100000000000003 +2014-02-12 12:00:00,0.256,0.31,0.35 +2014-02-12 13:00:00,0.257,0.31,0.349 +2014-02-12 14:00:00,0.256,0.31,0.349 +2014-02-12 15:00:00,0.257,0.31,0.349 +2014-02-12 16:00:00,0.257,0.31,0.349 +2014-02-12 17:00:00,0.257,0.31,0.349 +2014-02-12 18:00:00,0.257,0.31,0.349 +2014-02-12 19:00:00,0.257,0.31,0.349 +2014-02-12 20:00:00,0.257,0.31,0.349 +2014-02-12 21:00:00,0.257,0.31,0.349 +2014-02-12 22:00:00,0.257,0.31,0.349 +2014-02-12 23:00:00,0.257,0.31,0.349 +2014-02-13 00:00:00,0.256,0.31,0.349 +2014-02-13 01:00:00,0.253,0.31,0.35200000000000004 +2014-02-13 02:00:00,0.251,0.31,0.35200000000000004 +2014-02-13 03:00:00,0.253,0.31,0.35200000000000004 +2014-02-13 04:00:00,0.256,0.31,0.35200000000000004 +2014-02-13 05:00:00,0.258,0.31,0.35100000000000003 +2014-02-13 06:00:00,0.258,0.31,0.35100000000000003 +2014-02-13 07:00:00,0.257,0.31,0.35200000000000004 +2014-02-13 08:00:00,0.257,0.31,0.35200000000000004 +2014-02-13 09:00:00,0.258,0.31,0.35200000000000004 +2014-02-13 10:00:00,0.258,0.31,0.35100000000000003 +2014-02-13 11:00:00,0.259,0.31,0.35100000000000003 +2014-02-13 12:00:00,0.259,0.31,0.35 +2014-02-13 13:00:00,0.26,0.31,0.35 +2014-02-13 14:00:00,0.26,0.311,0.35200000000000004 +2014-02-13 15:00:00,0.266,0.312,0.36700000000000005 +2014-02-13 16:00:00,0.267,0.311,0.373 +2014-02-13 17:00:00,0.266,0.31,0.375 +2014-02-13 18:00:00,0.264,0.31,0.385 +2014-02-13 19:00:00,0.262,0.31,0.392 +2014-02-13 20:00:00,0.259,0.31,0.392 +2014-02-13 21:00:00,0.258,0.31,0.392 +2014-02-13 22:00:00,0.258,0.31,0.392 +2014-02-13 23:00:00,0.258,0.31,0.39299999999999996 +2014-02-14 00:00:00,0.258,0.308,0.39299999999999996 +2014-02-14 01:00:00,0.257,0.308,0.39299999999999996 +2014-02-14 02:00:00,0.258,0.308,0.39299999999999996 +2014-02-14 03:00:00,0.259,0.307,0.39299999999999996 +2014-02-14 04:00:00,0.261,0.307,0.392 +2014-02-14 05:00:00,0.262,0.308,0.392 +2014-02-14 06:00:00,0.263,0.309,0.392 +2014-02-14 07:00:00,0.263,0.309,0.392 +2014-02-14 08:00:00,0.263,0.309,0.391 +2014-02-14 09:00:00,0.263,0.309,0.391 +2014-02-14 10:00:00,0.262,0.309,0.39 +2014-02-14 11:00:00,0.262,0.309,0.39 +2014-02-14 12:00:00,0.262,0.309,0.389 +2014-02-14 13:00:00,0.262,0.309,0.389 +2014-02-14 14:00:00,0.262,0.309,0.389 +2014-02-14 15:00:00,0.262,0.31,0.38799999999999996 +2014-02-14 16:00:00,0.262,0.31,0.387 +2014-02-14 17:00:00,0.262,0.31,0.387 +2014-02-14 18:00:00,0.262,0.31,0.387 +2014-02-14 19:00:00,0.26,0.31,0.387 +2014-02-14 20:00:00,0.258,0.31,0.386 +2014-02-14 21:00:00,0.255,0.31,0.38299999999999995 +2014-02-14 22:00:00,0.257,0.31,0.381 +2014-02-14 23:00:00,0.258,0.31,0.38 +2014-02-15 00:00:00,0.259,0.31,0.379 +2014-02-15 01:00:00,0.261,0.31,0.37799999999999995 +2014-02-15 02:00:00,0.261,0.31,0.37799999999999995 +2014-02-15 03:00:00,0.261,0.31,0.377 +2014-02-15 04:00:00,0.262,0.31,0.377 +2014-02-15 05:00:00,0.262,0.31,0.376 +2014-02-15 06:00:00,0.262,0.31,0.375 +2014-02-15 07:00:00,0.262,0.309,0.375 +2014-02-15 08:00:00,0.262,0.31,0.374 +2014-02-15 09:00:00,0.262,0.31,0.37 +2014-02-15 10:00:00,0.262,0.31,0.368 +2014-02-15 11:00:00,0.261,0.31,0.36700000000000005 +2014-02-15 12:00:00,0.262,0.31,0.366 +2014-02-15 13:00:00,0.261,0.31,0.366 +2014-02-15 14:00:00,0.262,0.31,0.365 +2014-02-15 15:00:00,0.262,0.31,0.364 +2014-02-15 16:00:00,0.261,0.31,0.364 +2014-02-15 17:00:00,0.261,0.31,0.364 +2014-02-15 18:00:00,0.261,0.31,0.363 +2014-02-15 19:00:00,0.261,0.31,0.36200000000000004 +2014-02-15 20:00:00,0.261,0.31,0.36200000000000004 +2014-02-15 21:00:00,0.261,0.308,0.361 +2014-02-15 22:00:00,0.261,0.307,0.361 +2014-02-15 23:00:00,0.261,0.309,0.361 +2014-02-16 00:00:00,0.26,0.309,0.361 +2014-02-16 01:00:00,0.26,0.309,0.36 +2014-02-16 02:00:00,0.26,0.309,0.361 +2014-02-16 03:00:00,0.26,0.31,0.36 +2014-02-16 04:00:00,0.26,0.31,0.36 +2014-02-16 05:00:00,0.26,0.31,0.359 +2014-02-16 06:00:00,0.259,0.31,0.359 +2014-02-16 07:00:00,0.259,0.31,0.358 +2014-02-16 08:00:00,0.259,0.31,0.358 +2014-02-16 09:00:00,0.259,0.31,0.35700000000000004 +2014-02-16 10:00:00,0.259,0.31,0.35700000000000004 +2014-02-16 11:00:00,0.259,0.31,0.35700000000000004 +2014-02-16 12:00:00,0.259,0.31,0.35700000000000004 +2014-02-16 13:00:00,0.259,0.31,0.35600000000000004 +2014-02-16 14:00:00,0.259,0.31,0.35600000000000004 +2014-02-16 15:00:00,0.259,0.31,0.35600000000000004 +2014-02-16 16:00:00,0.259,0.31,0.35600000000000004 +2014-02-16 17:00:00,0.259,0.31,0.355 +2014-02-16 18:00:00,0.259,0.31,0.355 +2014-02-16 19:00:00,0.259,0.31,0.35600000000000004 +2014-02-16 20:00:00,0.259,0.31,0.355 +2014-02-16 21:00:00,0.259,0.31,0.355 +2014-02-16 22:00:00,0.258,0.31,0.354 +2014-02-16 23:00:00,0.258,0.31,0.354 +2014-02-17 00:00:00,0.258,0.31,0.354 +2014-02-17 01:00:00,0.258,0.31,0.354 +2014-02-17 02:00:00,0.258,0.31,0.354 +2014-02-17 03:00:00,0.258,0.31,0.354 +2014-02-17 04:00:00,0.258,0.31,0.353 +2014-02-17 05:00:00,0.258,0.31,0.353 +2014-02-17 06:00:00,0.257,0.31,0.353 +2014-02-17 07:00:00,0.257,0.31,0.353 +2014-02-17 08:00:00,0.257,0.31,0.353 +2014-02-17 09:00:00,0.257,0.31,0.353 +2014-02-17 10:00:00,0.257,0.31,0.354 +2014-02-17 11:00:00,0.257,0.31,0.353 +2014-02-17 12:00:00,0.257,0.31,0.353 +2014-02-17 13:00:00,0.257,0.31,0.353 +2014-02-17 14:00:00,0.257,0.31,0.353 +2014-02-17 15:00:00,0.257,0.31,0.353 +2014-02-17 16:00:00,0.257,0.31,0.35200000000000004 +2014-02-17 17:00:00,0.257,0.312,0.35200000000000004 +2014-02-17 18:00:00,0.257,0.311,0.35200000000000004 +2014-02-17 19:00:00,0.257,0.31,0.35200000000000004 +2014-02-17 20:00:00,0.257,0.31,0.35200000000000004 +2014-02-17 21:00:00,0.257,0.31,0.35200000000000004 +2014-02-17 22:00:00,0.257,0.31,0.35200000000000004 +2014-02-17 23:00:00,0.257,0.31,0.35200000000000004 +2014-02-18 00:00:00,0.257,0.31,0.35200000000000004 +2014-02-18 01:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 02:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 03:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 04:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 05:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 06:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 07:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 08:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 09:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 10:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 11:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 12:00:00,0.256,0.31,0.353 +2014-02-18 13:00:00,0.256,0.31,0.353 +2014-02-18 14:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 15:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 16:00:00,0.256,0.31,0.35200000000000004 +2014-02-18 17:00:00,0.256,0.311,0.35200000000000004 +2014-02-18 18:00:00,0.256,0.31,0.35100000000000003 +2014-02-18 19:00:00,0.256,0.311,0.35100000000000003 +2014-02-18 20:00:00,0.256,0.31,0.35100000000000003 +2014-02-18 21:00:00,0.256,0.311,0.35100000000000003 +2014-02-18 22:00:00,0.256,0.312,0.35200000000000004 +2014-02-18 23:00:00,0.256,0.311,0.35200000000000004 +2014-02-19 00:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 01:00:00,0.255,0.313,0.35200000000000004 +2014-02-19 02:00:00,0.255,0.314,0.35200000000000004 +2014-02-19 03:00:00,0.254,0.314,0.354 +2014-02-19 04:00:00,0.253,0.314,0.354 +2014-02-19 05:00:00,0.254,0.314,0.354 +2014-02-19 06:00:00,0.254,0.314,0.354 +2014-02-19 07:00:00,0.254,0.314,0.354 +2014-02-19 08:00:00,0.255,0.314,0.353 +2014-02-19 09:00:00,0.255,0.314,0.353 +2014-02-19 10:00:00,0.255,0.313,0.353 +2014-02-19 11:00:00,0.255,0.312,0.35200000000000004 +2014-02-19 12:00:00,0.255,0.311,0.35200000000000004 +2014-02-19 13:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 14:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 15:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 16:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 17:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 18:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 19:00:00,0.256,0.31,0.35200000000000004 +2014-02-19 20:00:00,0.254,0.31,0.353 +2014-02-19 21:00:00,0.25,0.31,0.354 +2014-02-19 22:00:00,0.25,0.31,0.354 +2014-02-19 23:00:00,0.251,0.31,0.354 +2014-02-20 00:00:00,0.25,0.31,0.354 +2014-02-20 01:00:00,0.251,0.31,0.354 +2014-02-20 02:00:00,0.251,0.309,0.354 +2014-02-20 03:00:00,0.252,0.309,0.353 +2014-02-20 04:00:00,0.253,0.309,0.353 +2014-02-20 05:00:00,0.253,0.309,0.353 +2014-02-20 06:00:00,0.254,0.309,0.353 +2014-02-20 07:00:00,0.254,0.309,0.353 +2014-02-20 08:00:00,0.254,0.309,0.353 +2014-02-20 09:00:00,0.254,0.309,0.353 +2014-02-20 10:00:00,0.255,0.309,0.353 +2014-02-20 11:00:00,0.256,0.309,0.353 +2014-02-20 12:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 13:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 14:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 15:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 16:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 17:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 18:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 19:00:00,0.258,0.309,0.35200000000000004 +2014-02-20 20:00:00,0.258,0.309,0.35100000000000003 +2014-02-20 21:00:00,0.258,0.309,0.35100000000000003 +2014-02-20 22:00:00,0.258,0.309,0.35100000000000003 +2014-02-20 23:00:00,0.258,0.309,0.35100000000000003 +2014-02-21 00:00:00,0.258,0.309,0.35100000000000003 +2014-02-21 01:00:00,0.258,0.309,0.35200000000000004 +2014-02-21 02:00:00,0.258,0.309,0.35200000000000004 +2014-02-21 03:00:00,0.257,0.309,0.353 +2014-02-21 04:00:00,0.253,0.309,0.354 +2014-02-21 05:00:00,0.254,0.309,0.354 +2014-02-21 06:00:00,0.255,0.309,0.354 +2014-02-21 07:00:00,0.257,0.308,0.353 +2014-02-21 08:00:00,0.257,0.307,0.353 +2014-02-21 09:00:00,0.258,0.307,0.353 +2014-02-21 10:00:00,0.258,0.307,0.353 +2014-02-21 11:00:00,0.258,0.307,0.35200000000000004 +2014-02-21 12:00:00,0.258,0.307,0.35200000000000004 +2014-02-21 13:00:00,0.258,0.307,0.35200000000000004 +2014-02-21 14:00:00,0.258,0.308,0.35200000000000004 +2014-02-21 15:00:00,0.258,0.309,0.35200000000000004 +2014-02-21 16:00:00,0.258,0.309,0.35200000000000004 +2014-02-21 17:00:00,0.258,0.309,0.35100000000000003 +2014-02-21 18:00:00,0.253,0.309,0.354 +2014-02-21 19:00:00,0.252,0.308,0.355 +2014-02-21 20:00:00,0.254,0.307,0.355 +2014-02-21 21:00:00,0.255,0.307,0.355 +2014-02-21 22:00:00,0.255,0.307,0.354 +2014-02-21 23:00:00,0.255,0.307,0.354 +2014-02-22 00:00:00,0.255,0.308,0.354 +2014-02-22 01:00:00,0.255,0.308,0.354 +2014-02-22 02:00:00,0.255,0.307,0.354 +2014-02-22 03:00:00,0.256,0.307,0.354 +2014-02-22 04:00:00,0.256,0.306,0.354 +2014-02-22 05:00:00,0.257,0.305,0.354 +2014-02-22 06:00:00,0.258,0.306,0.353 +2014-02-22 07:00:00,0.259,0.305,0.353 +2014-02-22 08:00:00,0.259,0.304,0.353 +2014-02-22 09:00:00,0.26,0.305,0.353 +2014-02-22 10:00:00,0.26,0.305,0.35200000000000004 +2014-02-22 11:00:00,0.26,0.305,0.35200000000000004 +2014-02-22 12:00:00,0.26,0.305,0.35200000000000004 +2014-02-22 13:00:00,0.26,0.306,0.35200000000000004 +2014-02-22 14:00:00,0.26,0.307,0.35200000000000004 +2014-02-22 15:00:00,0.26,0.307,0.35200000000000004 +2014-02-22 16:00:00,0.261,0.307,0.35200000000000004 +2014-02-22 17:00:00,0.261,0.308,0.35200000000000004 +2014-02-22 18:00:00,0.261,0.309,0.35200000000000004 +2014-02-22 19:00:00,0.261,0.309,0.35200000000000004 +2014-02-22 20:00:00,0.261,0.309,0.35200000000000004 +2014-02-22 21:00:00,0.261,0.309,0.35200000000000004 +2014-02-22 22:00:00,0.261,0.309,0.35200000000000004 +2014-02-22 23:00:00,0.26,0.309,0.35200000000000004 +2014-02-23 00:00:00,0.26,0.309,0.35200000000000004 +2014-02-23 01:00:00,0.26,0.309,0.35200000000000004 +2014-02-23 02:00:00,0.26,0.309,0.35200000000000004 +2014-02-23 03:00:00,0.26,0.309,0.35200000000000004 +2014-02-23 04:00:00,0.26,0.309,0.35200000000000004 +2014-02-23 05:00:00,0.26,0.309,0.35100000000000003 +2014-02-23 06:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 07:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 08:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 09:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 10:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 11:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 12:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 13:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 14:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 15:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 16:00:00,0.259,0.309,0.35100000000000003 +2014-02-23 17:00:00,0.26,0.309,0.35100000000000003 +2014-02-23 18:00:00,0.26,0.309,0.35100000000000003 +2014-02-23 19:00:00,0.26,0.309,0.35100000000000003 +2014-02-23 20:00:00,0.26,0.309,0.35100000000000003 +2014-02-23 21:00:00,0.259,0.309,0.35 +2014-02-23 22:00:00,0.259,0.309,0.35 +2014-02-23 23:00:00,0.259,0.309,0.35 +2014-02-24 00:00:00,0.259,0.309,0.35 +2014-02-24 01:00:00,0.258,0.309,0.35 +2014-02-24 02:00:00,0.258,0.308,0.35 +2014-02-24 03:00:00,0.258,0.308,0.35 +2014-02-24 04:00:00,0.258,0.308,0.35 +2014-02-24 05:00:00,0.258,0.308,0.35 +2014-02-24 06:00:00,0.258,0.307,0.35 +2014-02-24 07:00:00,0.258,0.307,0.35 +2014-02-24 08:00:00,0.258,0.307,0.35 +2014-02-24 09:00:00,0.257,0.307,0.35 +2014-02-24 10:00:00,0.257,0.307,0.35100000000000003 +2014-02-24 11:00:00,0.257,0.307,0.35100000000000003 +2014-02-24 12:00:00,0.257,0.307,0.35100000000000003 +2014-02-24 13:00:00,0.257,0.307,0.35100000000000003 +2014-02-24 14:00:00,0.257,0.308,0.35 +2014-02-24 15:00:00,0.257,0.309,0.35 +2014-02-24 16:00:00,0.257,0.309,0.35 +2014-02-24 17:00:00,0.257,0.308,0.35 +2014-02-24 18:00:00,0.257,0.307,0.35 +2014-02-24 19:00:00,0.257,0.307,0.35 +2014-02-24 20:00:00,0.257,0.308,0.35 +2014-02-24 21:00:00,0.257,0.308,0.35 +2014-02-24 22:00:00,0.257,0.308,0.35 +2014-02-24 23:00:00,0.257,0.309,0.35 +2014-02-25 00:00:00,0.257,0.309,0.35 +2014-02-25 01:00:00,0.257,0.309,0.35 +2014-02-25 02:00:00,0.257,0.309,0.35 +2014-02-25 03:00:00,0.256,0.309,0.35 +2014-02-25 04:00:00,0.256,0.309,0.35 +2014-02-25 05:00:00,0.256,0.308,0.35 +2014-02-25 06:00:00,0.256,0.307,0.35 +2014-02-25 07:00:00,0.256,0.307,0.35 +2014-02-25 08:00:00,0.256,0.307,0.35 +2014-02-25 09:00:00,0.256,0.307,0.35 +2014-02-25 10:00:00,0.256,0.307,0.35 +2014-02-25 11:00:00,0.256,0.307,0.35 +2014-02-25 12:00:00,0.256,0.307,0.35 +2014-02-25 13:00:00,0.256,0.307,0.35 +2014-02-25 14:00:00,0.256,0.307,0.35 +2014-02-25 15:00:00,0.256,0.307,0.35 +2014-02-25 16:00:00,0.256,0.307,0.35 +2014-02-25 17:00:00,0.256,0.307,0.35 +2014-02-25 18:00:00,0.256,0.307,0.35 +2014-02-25 19:00:00,0.256,0.307,0.35 +2014-02-25 20:00:00,0.256,0.307,0.35 +2014-02-25 21:00:00,0.256,0.307,0.35 +2014-02-25 22:00:00,0.256,0.307,0.35 +2014-02-25 23:00:00,0.256,0.307,0.35 +2014-02-26 00:00:00,0.256,0.307,0.35 +2014-02-26 01:00:00,0.256,0.307,0.35 +2014-02-26 02:00:00,0.256,0.307,0.35 +2014-02-26 03:00:00,0.256,0.307,0.35 +2014-02-26 04:00:00,0.256,0.307,0.35 +2014-02-26 05:00:00,0.256,0.307,0.35 +2014-02-26 06:00:00,0.256,0.307,0.35 +2014-02-26 07:00:00,0.256,0.307,0.35 +2014-02-26 08:00:00,0.256,0.307,0.35 +2014-02-26 09:00:00,0.256,0.307,0.35 +2014-02-26 10:00:00,0.256,0.307,0.35 +2014-02-26 11:00:00,0.256,0.306,0.35 +2014-02-26 12:00:00,0.256,0.306,0.35 +2014-02-26 13:00:00,0.256,0.306,0.35 +2014-02-26 14:00:00,0.256,0.307,0.35 +2014-02-26 15:00:00,0.256,0.309,0.35 +2014-02-26 16:00:00,0.256,0.309,0.35 +2014-02-26 17:00:00,0.256,0.309,0.35 +2014-02-26 18:00:00,0.256,0.309,0.35 +2014-02-26 19:00:00,0.256,0.309,0.35 +2014-02-26 20:00:00,0.256,0.309,0.35 +2014-02-26 21:00:00,0.256,0.309,0.35 +2014-02-26 22:00:00,0.256,0.309,0.35100000000000003 +2014-02-26 23:00:00,0.256,0.309,0.35100000000000003 +2014-02-27 00:00:00,0.256,0.309,0.35100000000000003 +2014-02-27 01:00:00,0.256,0.309,0.35100000000000003 +2014-02-27 02:00:00,0.256,0.309,0.35100000000000003 +2014-02-27 03:00:00,0.256,0.309,0.35100000000000003 +2014-02-27 04:00:00,0.256,0.309,0.35100000000000003 +2014-02-27 05:00:00,0.256,0.309,0.35100000000000003 +2014-02-27 06:00:00,0.256,0.308,0.35100000000000003 +2014-02-27 07:00:00,0.256,0.307,0.35 +2014-02-27 08:00:00,0.255,0.307,0.35 +2014-02-27 09:00:00,0.255,0.307,0.35100000000000003 +2014-02-27 10:00:00,0.255,0.307,0.35100000000000003 +2014-02-27 11:00:00,0.255,0.307,0.35100000000000003 +2014-02-27 12:00:00,0.255,0.307,0.35 +2014-02-27 13:00:00,0.255,0.308,0.349 +2014-02-27 14:00:00,0.255,0.309,0.349 +2014-02-27 15:00:00,0.255,0.309,0.349 +2014-02-27 16:00:00,0.255,0.309,0.349 +2014-02-27 17:00:00,0.255,0.307,0.349 +2014-02-27 18:00:00,0.255,0.307,0.349 +2014-02-27 19:00:00,0.255,0.307,0.349 +2014-02-27 20:00:00,0.255,0.307,0.349 +2014-02-27 21:00:00,0.253,0.307,0.35200000000000004 +2014-02-27 22:00:00,0.25,0.307,0.353 +2014-02-27 23:00:00,0.249,0.308,0.353 +2014-02-28 00:00:00,0.249,0.308,0.353 +2014-02-28 01:00:00,0.249,0.309,0.353 +2014-02-28 02:00:00,0.248,0.309,0.353 +2014-02-28 03:00:00,0.249,0.309,0.353 +2014-02-28 04:00:00,0.249,0.309,0.353 +2014-02-28 05:00:00,0.249,0.309,0.353 +2014-02-28 06:00:00,0.25,0.309,0.353 +2014-02-28 07:00:00,0.252,0.309,0.353 +2014-02-28 08:00:00,0.252,0.309,0.353 +2014-02-28 09:00:00,0.253,0.309,0.353 +2014-02-28 10:00:00,0.254,0.309,0.353 +2014-02-28 11:00:00,0.257,0.307,0.35200000000000004 +2014-02-28 12:00:00,0.259,0.307,0.35100000000000003 +2014-02-28 13:00:00,0.26,0.307,0.35 +2014-02-28 14:00:00,0.26,0.307,0.35 +2014-02-28 15:00:00,0.26,0.307,0.35 +2014-02-28 16:00:00,0.26,0.307,0.35 +2014-02-28 17:00:00,0.26,0.307,0.35 +2014-02-28 18:00:00,0.261,0.309,0.35 +2014-02-28 19:00:00,0.26,0.307,0.35 +2014-02-28 20:00:00,0.26,0.307,0.35 +2014-02-28 21:00:00,0.26,0.306,0.35 +2014-02-28 22:00:00,0.26,0.306,0.35 +2014-02-28 23:00:00,0.26,0.307,0.35 +2014-03-01 00:00:00,0.259,0.307,0.35 +2014-03-01 01:00:00,0.259,0.307,0.35 +2014-03-01 02:00:00,0.259,0.307,0.35 +2014-03-01 03:00:00,0.259,0.307,0.35 +2014-03-01 04:00:00,0.259,0.307,0.35 +2014-03-01 05:00:00,0.259,0.308,0.35 +2014-03-01 06:00:00,0.259,0.307,0.35 +2014-03-01 07:00:00,0.258,0.307,0.35 +2014-03-01 08:00:00,0.258,0.307,0.35 +2014-03-01 09:00:00,0.258,0.307,0.35 +2014-03-01 10:00:00,0.258,0.307,0.35 +2014-03-01 11:00:00,0.258,0.307,0.35 +2014-03-01 12:00:00,0.258,0.306,0.35 +2014-03-01 13:00:00,0.258,0.306,0.35 +2014-03-01 14:00:00,0.258,0.306,0.35 +2014-03-01 15:00:00,0.258,0.307,0.35 +2014-03-01 16:00:00,0.258,0.307,0.35 +2014-03-01 17:00:00,0.258,0.307,0.349 +2014-03-01 18:00:00,0.258,0.307,0.349 +2014-03-01 19:00:00,0.258,0.307,0.349 +2014-03-01 20:00:00,0.258,0.307,0.349 +2014-03-01 21:00:00,0.258,0.307,0.349 +2014-03-01 22:00:00,0.258,0.307,0.349 +2014-03-01 23:00:00,0.258,0.307,0.349 +2014-03-02 00:00:00,0.258,0.307,0.349 +2014-03-02 01:00:00,0.258,0.307,0.349 +2014-03-02 02:00:00,0.258,0.307,0.349 +2014-03-02 03:00:00,0.258,0.308,0.349 +2014-03-02 04:00:00,0.258,0.309,0.349 +2014-03-02 05:00:00,0.257,0.309,0.349 +2014-03-02 06:00:00,0.257,0.308,0.349 +2014-03-02 07:00:00,0.257,0.309,0.349 +2014-03-02 08:00:00,0.257,0.31,0.349 +2014-03-02 09:00:00,0.257,0.31,0.35 +2014-03-02 10:00:00,0.257,0.309,0.35 +2014-03-02 11:00:00,0.257,0.309,0.35 +2014-03-02 12:00:00,0.257,0.307,0.349 +2014-03-02 13:00:00,0.257,0.306,0.349 +2014-03-02 14:00:00,0.257,0.307,0.349 +2014-03-02 15:00:00,0.257,0.307,0.349 +2014-03-02 16:00:00,0.257,0.307,0.349 +2014-03-02 17:00:00,0.257,0.307,0.349 +2014-03-02 18:00:00,0.257,0.307,0.349 +2014-03-02 19:00:00,0.257,0.307,0.349 +2014-03-02 20:00:00,0.257,0.307,0.349 +2014-03-02 21:00:00,0.257,0.307,0.349 +2014-03-02 22:00:00,0.257,0.31,0.349 +2014-03-02 23:00:00,0.257,0.31,0.349 +2014-03-03 00:00:00,0.256,0.31,0.349 +2014-03-03 01:00:00,0.256,0.31,0.349 +2014-03-03 02:00:00,0.256,0.31,0.349 +2014-03-03 03:00:00,0.256,0.31,0.349 +2014-03-03 04:00:00,0.256,0.31,0.349 +2014-03-03 05:00:00,0.256,0.31,0.349 +2014-03-03 06:00:00,0.256,0.31,0.349 +2014-03-03 07:00:00,0.256,0.31,0.349 +2014-03-03 08:00:00,0.256,0.31,0.349 +2014-03-03 09:00:00,0.256,0.31,0.349 +2014-03-03 10:00:00,0.256,0.31,0.349 +2014-03-03 11:00:00,0.256,0.31,0.349 +2014-03-03 12:00:00,0.256,0.308,0.349 +2014-03-03 13:00:00,0.256,0.308,0.349 +2014-03-03 14:00:00,0.256,0.307,0.349 +2014-03-03 15:00:00,0.256,0.307,0.349 +2014-03-03 16:00:00,0.256,0.306,0.349 +2014-03-03 17:00:00,0.256,0.305,0.349 +2014-03-03 18:00:00,0.256,0.305,0.349 +2014-03-03 19:00:00,0.256,0.305,0.349 +2014-03-03 20:00:00,0.256,0.305,0.349 +2014-03-03 21:00:00,0.256,0.305,0.349 +2014-03-03 22:00:00,0.256,0.309,0.349 +2014-03-03 23:00:00,0.256,0.309,0.349 +2014-03-04 00:00:00,0.256,0.309,0.349 +2014-03-04 01:00:00,0.255,0.309,0.349 +2014-03-04 02:00:00,0.255,0.309,0.349 +2014-03-04 03:00:00,0.255,0.309,0.348 +2014-03-04 04:00:00,0.255,0.309,0.348 +2014-03-04 05:00:00,0.255,0.309,0.349 +2014-03-04 06:00:00,0.255,0.309,0.349 +2014-03-04 07:00:00,0.255,0.309,0.349 +2014-03-04 08:00:00,0.255,0.309,0.349 +2014-03-04 09:00:00,0.255,0.309,0.349 +2014-03-04 10:00:00,0.255,0.309,0.349 +2014-03-04 11:00:00,0.255,0.309,0.349 +2014-03-04 12:00:00,0.255,0.31,0.349 +2014-03-04 13:00:00,0.255,0.309,0.349 +2014-03-04 14:00:00,0.255,0.306,0.349 +2014-03-04 15:00:00,0.255,0.305,0.349 +2014-03-04 16:00:00,0.255,0.305,0.349 +2014-03-04 17:00:00,0.255,0.305,0.348 +2014-03-04 18:00:00,0.255,0.305,0.348 +2014-03-04 19:00:00,0.255,0.305,0.348 +2014-03-04 20:00:00,0.255,0.305,0.348 +2014-03-04 21:00:00,0.255,0.305,0.348 +2014-03-04 22:00:00,0.255,0.307,0.348 +2014-03-04 23:00:00,0.255,0.307,0.348 +2014-03-05 00:00:00,0.255,0.307,0.348 +2014-03-05 01:00:00,0.255,0.307,0.348 +2014-03-05 02:00:00,0.254,0.307,0.348 +2014-03-05 03:00:00,0.254,0.307,0.348 +2014-03-05 04:00:00,0.254,0.307,0.35 +2014-03-05 05:00:00,0.253,0.307,0.35100000000000003 +2014-03-05 06:00:00,0.253,0.307,0.35100000000000003 +2014-03-05 07:00:00,0.253,0.307,0.35100000000000003 +2014-03-05 08:00:00,0.253,0.307,0.35100000000000003 +2014-03-05 09:00:00,0.253,0.307,0.35100000000000003 +2014-03-05 10:00:00,0.254,0.307,0.35100000000000003 +2014-03-05 11:00:00,0.254,0.307,0.35 +2014-03-05 12:00:00,0.254,0.307,0.349 +2014-03-05 13:00:00,0.254,0.307,0.348 +2014-03-05 14:00:00,0.254,0.305,0.348 +2014-03-05 15:00:00,0.255,0.305,0.348 +2014-03-05 16:00:00,0.255,0.305,0.348 +2014-03-05 17:00:00,0.255,0.305,0.348 +2014-03-05 18:00:00,0.255,0.305,0.348 +2014-03-05 19:00:00,0.255,0.305,0.348 +2014-03-05 20:00:00,0.255,0.305,0.348 +2014-03-05 21:00:00,0.254,0.305,0.348 +2014-03-05 22:00:00,0.254,0.306,0.348 +2014-03-05 23:00:00,0.254,0.307,0.348 +2014-03-06 00:00:00,0.254,0.307,0.348 +2014-03-06 01:00:00,0.254,0.306,0.348 +2014-03-06 02:00:00,0.254,0.306,0.348 +2014-03-06 03:00:00,0.254,0.306,0.348 +2014-03-06 04:00:00,0.254,0.305,0.348 +2014-03-06 05:00:00,0.253,0.305,0.348 +2014-03-06 06:00:00,0.253,0.305,0.348 +2014-03-06 07:00:00,0.253,0.305,0.348 +2014-03-06 08:00:00,0.253,0.306,0.348 +2014-03-06 09:00:00,0.253,0.306,0.349 +2014-03-06 10:00:00,0.254,0.306,0.35 +2014-03-06 11:00:00,0.254,0.306,0.35 +2014-03-06 12:00:00,0.254,0.306,0.349 +2014-03-06 13:00:00,0.254,0.307,0.349 +2014-03-06 14:00:00,0.254,0.305,0.348 +2014-03-06 15:00:00,0.253,0.305,0.348 +2014-03-06 16:00:00,0.254,0.305,0.348 +2014-03-06 17:00:00,0.254,0.304,0.348 +2014-03-06 18:00:00,0.254,0.305,0.348 +2014-03-06 19:00:00,0.254,0.305,0.34700000000000003 +2014-03-06 20:00:00,0.254,0.305,0.348 +2014-03-06 21:00:00,0.253,0.305,0.348 +2014-03-06 22:00:00,0.253,0.305,0.348 +2014-03-06 23:00:00,0.253,0.307,0.34700000000000003 +2014-03-07 00:00:00,0.253,0.308,0.34700000000000003 +2014-03-07 01:00:00,0.253,0.306,0.34700000000000003 +2014-03-07 02:00:00,0.253,0.305,0.34700000000000003 +2014-03-07 03:00:00,0.253,0.305,0.34700000000000003 +2014-03-07 04:00:00,0.253,0.305,0.34700000000000003 +2014-03-07 05:00:00,0.253,0.305,0.34700000000000003 +2014-03-07 06:00:00,0.253,0.305,0.34700000000000003 +2014-03-07 07:00:00,0.252,0.305,0.34700000000000003 +2014-03-07 08:00:00,0.252,0.305,0.34700000000000003 +2014-03-07 09:00:00,0.252,0.305,0.34700000000000003 +2014-03-07 10:00:00,0.253,0.305,0.349 +2014-03-07 11:00:00,0.253,0.305,0.349 +2014-03-07 12:00:00,0.253,0.305,0.348 +2014-03-07 13:00:00,0.252,0.306,0.348 +2014-03-07 14:00:00,0.253,0.305,0.348 +2014-03-07 15:00:00,0.253,0.304,0.348 +2014-03-07 16:00:00,0.253,0.304,0.348 +2014-03-07 17:00:00,0.253,0.304,0.348 +2014-03-07 18:00:00,0.253,0.304,0.34700000000000003 +2014-03-07 19:00:00,0.253,0.304,0.34700000000000003 +2014-03-07 20:00:00,0.253,0.304,0.34700000000000003 +2014-03-07 21:00:00,0.253,0.304,0.34700000000000003 +2014-03-07 22:00:00,0.253,0.305,0.34700000000000003 +2014-03-07 23:00:00,0.253,0.305,0.34700000000000003 +2014-03-08 00:00:00,0.253,0.305,0.34700000000000003 +2014-03-08 01:00:00,0.253,0.305,0.34700000000000003 +2014-03-08 02:00:00,0.253,0.305,0.34700000000000003 +2014-03-08 03:00:00,0.252,0.305,0.34700000000000003 +2014-03-08 04:00:00,0.252,0.305,0.34700000000000003 +2014-03-08 05:00:00,0.252,0.305,0.34700000000000003 +2014-03-08 06:00:00,0.252,0.304,0.34700000000000003 +2014-03-08 07:00:00,0.252,0.304,0.34700000000000003 +2014-03-08 08:00:00,0.252,0.304,0.34700000000000003 +2014-03-08 09:00:00,0.252,0.304,0.34700000000000003 +2014-03-08 10:00:00,0.252,0.304,0.348 +2014-03-08 11:00:00,0.252,0.304,0.348 +2014-03-08 12:00:00,0.252,0.304,0.348 +2014-03-08 13:00:00,0.252,0.304,0.348 +2014-03-08 14:00:00,0.252,0.304,0.348 +2014-03-08 15:00:00,0.253,0.304,0.348 +2014-03-08 16:00:00,0.253,0.304,0.34700000000000003 +2014-03-08 17:00:00,0.253,0.304,0.34700000000000003 +2014-03-08 18:00:00,0.253,0.304,0.34700000000000003 +2014-03-08 19:00:00,0.253,0.304,0.34700000000000003 +2014-03-08 20:00:00,0.253,0.304,0.34700000000000003 +2014-03-08 21:00:00,0.253,0.304,0.34700000000000003 +2014-03-08 22:00:00,0.253,0.305,0.34700000000000003 +2014-03-08 23:00:00,0.252,0.305,0.34700000000000003 +2014-03-09 00:00:00,0.252,0.305,0.34700000000000003 +2014-03-09 01:00:00,0.252,0.305,0.34700000000000003 +2014-03-09 02:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 03:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 04:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 05:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 06:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 07:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 08:00:00,0.251,0.304,0.34700000000000003 +2014-03-09 09:00:00,0.251,0.304,0.34700000000000003 +2014-03-09 10:00:00,0.252,0.304,0.349 +2014-03-09 11:00:00,0.252,0.304,0.348 +2014-03-09 12:00:00,0.251,0.304,0.34700000000000003 +2014-03-09 13:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 14:00:00,0.252,0.302,0.34700000000000003 +2014-03-09 15:00:00,0.252,0.303,0.34700000000000003 +2014-03-09 16:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 17:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 18:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 19:00:00,0.253,0.304,0.34700000000000003 +2014-03-09 20:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 21:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 22:00:00,0.252,0.304,0.34700000000000003 +2014-03-09 23:00:00,0.252,0.304,0.34700000000000003 +2014-03-10 00:00:00,0.252,0.304,0.34700000000000003 +2014-03-10 01:00:00,0.252,0.304,0.34700000000000003 +2014-03-10 02:00:00,0.252,0.304,0.34700000000000003 +2014-03-10 03:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 04:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 05:00:00,0.251,0.304,0.34600000000000003 +2014-03-10 06:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 07:00:00,0.251,0.304,0.34600000000000003 +2014-03-10 08:00:00,0.251,0.304,0.34600000000000003 +2014-03-10 09:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 10:00:00,0.252,0.304,0.348 +2014-03-10 11:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 12:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 13:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 14:00:00,0.251,0.304,0.34700000000000003 +2014-03-10 15:00:00,0.252,0.304,0.34700000000000003 +2014-03-10 16:00:00,0.252,0.303,0.34700000000000003 +2014-03-10 17:00:00,0.252,0.304,0.34700000000000003 +2014-03-10 18:00:00,0.252,0.304,0.34700000000000003 +2014-03-10 19:00:00,0.252,0.304,0.34600000000000003 +2014-03-10 20:00:00,0.252,0.304,0.34600000000000003 +2014-03-10 21:00:00,0.252,0.304,0.34600000000000003 +2014-03-10 22:00:00,0.252,0.304,0.34600000000000003 +2014-03-10 23:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 00:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 01:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 02:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 03:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 04:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 05:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 06:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 07:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 08:00:00,0.251,0.304,0.34600000000000003 +2014-03-11 09:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 10:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 11:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 12:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 13:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 14:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 15:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 16:00:00,0.251,0.304,0.34700000000000003 +2014-03-11 17:00:00,0.252,0.303,0.34700000000000003 +2014-03-11 18:00:00,0.252,0.303,0.34600000000000003 +2014-03-11 19:00:00,0.252,0.303,0.34600000000000003 +2014-03-11 20:00:00,0.251,0.303,0.34600000000000003 +2014-03-11 21:00:00,0.252,0.302,0.34600000000000003 +2014-03-11 22:00:00,0.251,0.303,0.34600000000000003 +2014-03-11 23:00:00,0.251,0.303,0.34600000000000003 +2014-03-12 00:00:00,0.251,0.303,0.34600000000000003 +2014-03-12 01:00:00,0.251,0.304,0.34600000000000003 +2014-03-12 02:00:00,0.251,0.304,0.34700000000000003 +2014-03-12 03:00:00,0.251,0.304,0.34700000000000003 +2014-03-12 04:00:00,0.251,0.304,0.34700000000000003 +2014-03-12 05:00:00,0.251,0.304,0.34700000000000003 +2014-03-12 06:00:00,0.251,0.304,0.34700000000000003 +2014-03-12 07:00:00,0.25,0.304,0.34700000000000003 +2014-03-12 08:00:00,0.25,0.304,0.34700000000000003 +2014-03-12 09:00:00,0.251,0.304,0.34700000000000003 +2014-03-12 10:00:00,0.251,0.303,0.348 +2014-03-12 11:00:00,0.251,0.303,0.34700000000000003 +2014-03-12 12:00:00,0.25,0.303,0.34700000000000003 +2014-03-12 13:00:00,0.251,0.302,0.34700000000000003 +2014-03-12 14:00:00,0.251,0.302,0.34700000000000003 +2014-03-12 15:00:00,0.251,0.302,0.34700000000000003 +2014-03-12 16:00:00,0.251,0.302,0.34700000000000003 +2014-03-12 17:00:00,0.251,0.302,0.34700000000000003 +2014-03-12 18:00:00,0.251,0.302,0.34700000000000003 +2014-03-12 19:00:00,0.251,0.302,0.34600000000000003 +2014-03-12 20:00:00,0.251,0.302,0.34600000000000003 +2014-03-12 21:00:00,0.251,0.302,0.34600000000000003 +2014-03-12 22:00:00,0.251,0.302,0.34600000000000003 +2014-03-12 23:00:00,0.251,0.302,0.34600000000000003 +2014-03-13 00:00:00,0.251,0.302,0.34600000000000003 +2014-03-13 01:00:00,0.25,0.303,0.34600000000000003 +2014-03-13 02:00:00,0.25,0.302,0.34600000000000003 +2014-03-13 03:00:00,0.25,0.302,0.34600000000000003 +2014-03-13 04:00:00,0.25,0.302,0.34600000000000003 +2014-03-13 05:00:00,0.25,0.302,0.34600000000000003 +2014-03-13 06:00:00,0.25,0.29100000000000004,0.34600000000000003 +2014-03-13 07:00:00,0.25,0.304,0.34600000000000003 +2014-03-13 08:00:00,0.25,0.315,0.34600000000000003 +2014-03-13 09:00:00,0.25,0.321,0.34700000000000003 +2014-03-13 10:00:00,0.25,0.324,0.348 +2014-03-13 11:00:00,0.25,0.324,0.34700000000000003 +2014-03-13 12:00:00,0.25,0.326,0.34600000000000003 +2014-03-13 13:00:00,0.25,0.326,0.34600000000000003 +2014-03-13 14:00:00,0.25,0.326,0.344 +2014-03-13 15:00:00,0.251,0.326,0.34299999999999997 +2014-03-13 16:00:00,0.251,0.326,0.34299999999999997 +2014-03-13 17:00:00,0.251,0.326,0.34299999999999997 +2014-03-13 18:00:00,0.251,0.326,0.34299999999999997 +2014-03-13 19:00:00,0.251,0.326,0.34299999999999997 +2014-03-13 20:00:00,0.251,0.325,0.34299999999999997 +2014-03-13 21:00:00,0.251,0.324,0.34299999999999997 +2014-03-13 22:00:00,0.25,0.324,0.34299999999999997 +2014-03-13 23:00:00,0.25,0.32299999999999995,0.34299999999999997 +2014-03-14 00:00:00,0.25,0.322,0.34299999999999997 +2014-03-14 01:00:00,0.25,0.322,0.34299999999999997 +2014-03-14 02:00:00,0.25,0.321,0.34299999999999997 +2014-03-14 03:00:00,0.25,0.321,0.34299999999999997 +2014-03-14 04:00:00,0.25,0.321,0.34299999999999997 +2014-03-14 05:00:00,0.25,0.321,0.34299999999999997 +2014-03-14 06:00:00,0.249,0.32,0.34299999999999997 +2014-03-14 07:00:00,0.249,0.319,0.34299999999999997 +2014-03-14 08:00:00,0.249,0.319,0.34299999999999997 +2014-03-14 09:00:00,0.25,0.317,0.34299999999999997 +2014-03-14 10:00:00,0.25,0.317,0.344 +2014-03-14 11:00:00,0.249,0.317,0.34299999999999997 +2014-03-14 12:00:00,0.249,0.316,0.34299999999999997 +2014-03-14 13:00:00,0.25,0.315,0.34299999999999997 +2014-03-14 14:00:00,0.25,0.314,0.34299999999999997 +2014-03-14 15:00:00,0.25,0.314,0.34299999999999997 +2014-03-14 16:00:00,0.25,0.314,0.34299999999999997 +2014-03-14 17:00:00,0.25,0.314,0.34299999999999997 +2014-03-14 18:00:00,0.25,0.313,0.342 +2014-03-14 19:00:00,0.25,0.313,0.342 +2014-03-14 20:00:00,0.25,0.313,0.342 +2014-03-14 21:00:00,0.25,0.313,0.342 +2014-03-14 22:00:00,0.25,0.313,0.342 +2014-03-14 23:00:00,0.25,0.313,0.342 +2014-03-15 00:00:00,0.25,0.314,0.342 +2014-03-15 01:00:00,0.249,0.314,0.342 +2014-03-15 02:00:00,0.249,0.314,0.342 +2014-03-15 03:00:00,0.249,0.314,0.342 +2014-03-15 04:00:00,0.249,0.313,0.342 +2014-03-15 05:00:00,0.249,0.312,0.342 +2014-03-15 06:00:00,0.249,0.312,0.342 +2014-03-15 07:00:00,0.249,0.312,0.342 +2014-03-15 08:00:00,0.249,0.311,0.342 +2014-03-15 09:00:00,0.249,0.31,0.342 +2014-03-15 10:00:00,0.249,0.31,0.344 +2014-03-15 11:00:00,0.243,0.31,0.34700000000000003 +2014-03-15 12:00:00,0.244,0.31,0.34600000000000003 +2014-03-15 13:00:00,0.25,0.31,0.344 +2014-03-15 14:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 15:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 16:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 17:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 18:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 19:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 20:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 21:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 22:00:00,0.25,0.309,0.34299999999999997 +2014-03-15 23:00:00,0.25,0.31,0.34299999999999997 +2014-03-16 00:00:00,0.25,0.31,0.34299999999999997 +2014-03-16 01:00:00,0.25,0.309,0.34299999999999997 +2014-03-16 02:00:00,0.25,0.309,0.34299999999999997 +2014-03-16 03:00:00,0.25,0.309,0.34299999999999997 +2014-03-16 04:00:00,0.25,0.309,0.34299999999999997 +2014-03-16 05:00:00,0.25,0.309,0.34299999999999997 +2014-03-16 06:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 07:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 08:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 09:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 10:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 11:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 12:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 13:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 14:00:00,0.25,0.307,0.34299999999999997 +2014-03-16 15:00:00,0.251,0.307,0.34299999999999997 +2014-03-16 16:00:00,0.251,0.306,0.34299999999999997 +2014-03-16 17:00:00,0.251,0.306,0.34299999999999997 +2014-03-16 18:00:00,0.251,0.305,0.34299999999999997 +2014-03-16 19:00:00,0.251,0.305,0.34299999999999997 +2014-03-16 20:00:00,0.251,0.305,0.34299999999999997 +2014-03-16 21:00:00,0.251,0.305,0.34299999999999997 +2014-03-16 22:00:00,0.251,0.303,0.34299999999999997 +2014-03-16 23:00:00,0.251,0.305,0.34299999999999997 +2014-03-17 00:00:00,0.25,0.309,0.34299999999999997 +2014-03-17 01:00:00,0.25,0.311,0.342 +2014-03-17 02:00:00,0.25,0.314,0.342 +2014-03-17 03:00:00,0.25,0.315,0.342 +2014-03-17 04:00:00,0.25,0.317,0.342 +2014-03-17 05:00:00,0.25,0.317,0.342 +2014-03-17 06:00:00,0.25,0.317,0.342 +2014-03-17 07:00:00,0.25,0.317,0.342 +2014-03-17 08:00:00,0.25,0.319,0.34299999999999997 +2014-03-17 09:00:00,0.25,0.319,0.342 +2014-03-17 10:00:00,0.25,0.319,0.342 +2014-03-17 11:00:00,0.25,0.319,0.342 +2014-03-17 12:00:00,0.25,0.317,0.342 +2014-03-17 13:00:00,0.25,0.317,0.342 +2014-03-17 14:00:00,0.25,0.317,0.342 +2014-03-17 15:00:00,0.25,0.317,0.342 +2014-03-17 16:00:00,0.25,0.316,0.342 +2014-03-17 17:00:00,0.25,0.316,0.342 +2014-03-17 18:00:00,0.25,0.315,0.342 +2014-03-17 19:00:00,0.25,0.315,0.342 +2014-03-17 20:00:00,0.25,0.315,0.342 +2014-03-17 21:00:00,0.25,0.315,0.342 +2014-03-17 22:00:00,0.25,0.317,0.342 +2014-03-17 23:00:00,0.25,0.317,0.342 +2014-03-18 00:00:00,0.25,0.317,0.342 +2014-03-18 01:00:00,0.25,0.317,0.342 +2014-03-18 02:00:00,0.25,0.315,0.342 +2014-03-18 03:00:00,0.25,0.315,0.342 +2014-03-18 04:00:00,0.25,0.315,0.342 +2014-03-18 05:00:00,0.25,0.315,0.342 +2014-03-18 06:00:00,0.25,0.315,0.342 +2014-03-18 07:00:00,0.25,0.314,0.342 +2014-03-18 08:00:00,0.25,0.314,0.342 +2014-03-18 09:00:00,0.25,0.314,0.342 +2014-03-18 10:00:00,0.25,0.314,0.342 +2014-03-18 11:00:00,0.25,0.312,0.342 +2014-03-18 12:00:00,0.25,0.311,0.342 +2014-03-18 13:00:00,0.25,0.31,0.342 +2014-03-18 14:00:00,0.25,0.31,0.342 +2014-03-18 15:00:00,0.25,0.31,0.342 +2014-03-18 16:00:00,0.25,0.31,0.342 +2014-03-18 17:00:00,0.251,0.31,0.342 +2014-03-18 18:00:00,0.251,0.31,0.342 +2014-03-18 19:00:00,0.25,0.31,0.342 +2014-03-18 20:00:00,0.25,0.31,0.342 +2014-03-18 21:00:00,0.25,0.309,0.342 +2014-03-18 22:00:00,0.25,0.31,0.342 +2014-03-18 23:00:00,0.25,0.31,0.342 +2014-03-19 00:00:00,0.25,0.31,0.342 +2014-03-19 01:00:00,0.25,0.31,0.34299999999999997 +2014-03-19 02:00:00,0.25,0.31,0.344 +2014-03-19 03:00:00,0.253,0.31,0.35 +2014-03-19 04:00:00,0.26,0.31,0.354 +2014-03-19 05:00:00,0.256,0.31,0.35100000000000003 +2014-03-19 06:00:00,0.254,0.31,0.35 +2014-03-19 07:00:00,0.255,0.31,0.349 +2014-03-19 08:00:00,0.258,0.31,0.349 +2014-03-19 09:00:00,0.26,0.31,0.349 +2014-03-19 10:00:00,0.261,0.31,0.348 +2014-03-19 11:00:00,0.261,0.31,0.348 +2014-03-19 12:00:00,0.261,0.31,0.34700000000000003 +2014-03-19 13:00:00,0.261,0.309,0.34700000000000003 +2014-03-19 14:00:00,0.26,0.307,0.34700000000000003 +2014-03-19 15:00:00,0.261,0.307,0.345 +2014-03-19 16:00:00,0.261,0.307,0.345 +2014-03-19 17:00:00,0.261,0.307,0.345 +2014-03-19 18:00:00,0.26,0.307,0.345 +2014-03-19 19:00:00,0.26,0.307,0.345 +2014-03-19 20:00:00,0.26,0.307,0.345 +2014-03-19 21:00:00,0.259,0.307,0.345 +2014-03-19 22:00:00,0.259,0.307,0.345 +2014-03-19 23:00:00,0.259,0.307,0.345 +2014-03-20 00:00:00,0.259,0.308,0.345 +2014-03-20 01:00:00,0.258,0.307,0.345 +2014-03-20 02:00:00,0.258,0.307,0.345 +2014-03-20 03:00:00,0.258,0.307,0.345 +2014-03-20 04:00:00,0.258,0.307,0.345 +2014-03-20 05:00:00,0.258,0.307,0.344 +2014-03-20 06:00:00,0.258,0.307,0.344 +2014-03-20 07:00:00,0.257,0.307,0.344 +2014-03-20 08:00:00,0.257,0.307,0.344 +2014-03-20 09:00:00,0.257,0.307,0.344 +2014-03-20 10:00:00,0.257,0.307,0.344 +2014-03-20 11:00:00,0.257,0.307,0.344 +2014-03-20 12:00:00,0.257,0.307,0.344 +2014-03-20 13:00:00,0.257,0.307,0.344 +2014-03-20 14:00:00,0.258,0.305,0.344 +2014-03-20 15:00:00,0.258,0.305,0.344 +2014-03-20 16:00:00,0.258,0.305,0.344 +2014-03-20 17:00:00,0.258,0.305,0.344 +2014-03-20 18:00:00,0.258,0.305,0.344 +2014-03-20 19:00:00,0.258,0.305,0.344 +2014-03-20 20:00:00,0.258,0.305,0.344 +2014-03-20 21:00:00,0.258,0.305,0.344 +2014-03-20 22:00:00,0.257,0.306,0.344 +2014-03-20 23:00:00,0.257,0.307,0.344 +2014-03-21 00:00:00,0.257,0.307,0.344 +2014-03-21 01:00:00,0.257,0.307,0.344 +2014-03-21 02:00:00,0.257,0.307,0.344 +2014-03-21 03:00:00,0.256,0.307,0.344 +2014-03-21 04:00:00,0.256,0.306,0.344 +2014-03-21 05:00:00,0.256,0.306,0.344 +2014-03-21 06:00:00,0.256,0.305,0.344 +2014-03-21 07:00:00,0.256,0.305,0.344 +2014-03-21 08:00:00,0.256,0.305,0.344 +2014-03-21 09:00:00,0.256,0.305,0.344 +2014-03-21 10:00:00,0.256,0.305,0.344 +2014-03-21 11:00:00,0.256,0.305,0.344 +2014-03-21 12:00:00,0.256,0.305,0.344 +2014-03-21 13:00:00,0.256,0.304,0.34299999999999997 +2014-03-21 14:00:00,0.257,0.305,0.34299999999999997 +2014-03-21 15:00:00,0.257,0.305,0.34299999999999997 +2014-03-21 16:00:00,0.256,0.304,0.34299999999999997 +2014-03-21 17:00:00,0.257,0.304,0.34299999999999997 +2014-03-21 18:00:00,0.256,0.304,0.34299999999999997 +2014-03-21 19:00:00,0.256,0.304,0.34299999999999997 +2014-03-21 20:00:00,0.256,0.304,0.34299999999999997 +2014-03-21 21:00:00,0.256,0.304,0.34299999999999997 +2014-03-21 22:00:00,0.256,0.305,0.34299999999999997 +2014-03-21 23:00:00,0.256,0.307,0.34299999999999997 +2014-03-22 00:00:00,0.256,0.306,0.34299999999999997 +2014-03-22 01:00:00,0.256,0.307,0.34299999999999997 +2014-03-22 02:00:00,0.256,0.306,0.34299999999999997 +2014-03-22 03:00:00,0.256,0.306,0.34299999999999997 +2014-03-22 04:00:00,0.255,0.305,0.344 +2014-03-22 05:00:00,0.255,0.305,0.344 +2014-03-22 06:00:00,0.255,0.305,0.344 +2014-03-22 07:00:00,0.255,0.304,0.34299999999999997 +2014-03-22 08:00:00,0.255,0.304,0.345 +2014-03-22 09:00:00,0.255,0.304,0.345 +2014-03-22 10:00:00,0.255,0.304,0.344 +2014-03-22 11:00:00,0.254,0.304,0.34299999999999997 +2014-03-22 12:00:00,0.254,0.304,0.34299999999999997 +2014-03-22 13:00:00,0.255,0.304,0.34299999999999997 +2014-03-22 14:00:00,0.255,0.304,0.34299999999999997 +2014-03-22 15:00:00,0.255,0.304,0.34299999999999997 +2014-03-22 16:00:00,0.255,0.304,0.34299999999999997 +2014-03-22 17:00:00,0.255,0.304,0.34299999999999997 +2014-03-22 18:00:00,0.253,0.304,0.345 +2014-03-22 19:00:00,0.251,0.304,0.348 +2014-03-22 20:00:00,0.26,0.304,0.348 +2014-03-22 21:00:00,0.257,0.304,0.348 +2014-03-22 22:00:00,0.255,0.304,0.348 +2014-03-22 23:00:00,0.254,0.305,0.348 +2014-03-23 00:00:00,0.253,0.305,0.348 +2014-03-23 01:00:00,0.253,0.305,0.348 +2014-03-23 02:00:00,0.253,0.305,0.348 +2014-03-23 03:00:00,0.252,0.305,0.348 +2014-03-23 04:00:00,0.252,0.305,0.348 +2014-03-23 05:00:00,0.253,0.304,0.348 +2014-03-23 06:00:00,0.254,0.304,0.34700000000000003 +2014-03-23 07:00:00,0.256,0.304,0.34700000000000003 +2014-03-23 08:00:00,0.261,0.304,0.34600000000000003 +2014-03-23 09:00:00,0.255,0.304,0.34700000000000003 +2014-03-23 10:00:00,0.259,0.304,0.34600000000000003 +2014-03-23 11:00:00,0.26,0.304,0.345 +2014-03-23 12:00:00,0.26,0.304,0.344 +2014-03-23 13:00:00,0.26,0.304,0.344 +2014-03-23 14:00:00,0.26,0.303,0.344 +2014-03-23 15:00:00,0.26,0.303,0.34299999999999997 +2014-03-23 16:00:00,0.26,0.303,0.34299999999999997 +2014-03-23 17:00:00,0.26,0.303,0.34299999999999997 +2014-03-23 18:00:00,0.26,0.303,0.34299999999999997 +2014-03-23 19:00:00,0.26,0.303,0.34299999999999997 +2014-03-23 20:00:00,0.26,0.303,0.34299999999999997 +2014-03-23 21:00:00,0.259,0.303,0.34299999999999997 +2014-03-23 22:00:00,0.259,0.304,0.34299999999999997 +2014-03-23 23:00:00,0.259,0.304,0.34299999999999997 +2014-03-24 00:00:00,0.259,0.304,0.34299999999999997 +2014-03-24 01:00:00,0.258,0.304,0.34299999999999997 +2014-03-24 02:00:00,0.258,0.304,0.34299999999999997 +2014-03-24 03:00:00,0.258,0.304,0.34299999999999997 +2014-03-24 04:00:00,0.258,0.304,0.34299999999999997 +2014-03-24 05:00:00,0.257,0.304,0.34299999999999997 +2014-03-24 06:00:00,0.257,0.304,0.34299999999999997 +2014-03-24 07:00:00,0.257,0.304,0.34299999999999997 +2014-03-24 08:00:00,0.257,0.303,0.34299999999999997 +2014-03-24 09:00:00,0.257,0.303,0.344 +2014-03-24 10:00:00,0.257,0.303,0.344 +2014-03-24 11:00:00,0.257,0.302,0.34299999999999997 +2014-03-24 12:00:00,0.257,0.303,0.34299999999999997 +2014-03-24 13:00:00,0.257,0.302,0.34299999999999997 +2014-03-24 14:00:00,0.258,0.302,0.34299999999999997 +2014-03-24 15:00:00,0.258,0.302,0.34299999999999997 +2014-03-24 16:00:00,0.258,0.302,0.34299999999999997 +2014-03-24 17:00:00,0.258,0.302,0.34299999999999997 +2014-03-24 18:00:00,0.258,0.302,0.34299999999999997 +2014-03-24 19:00:00,0.258,0.302,0.342 +2014-03-24 20:00:00,0.258,0.302,0.342 +2014-03-24 21:00:00,0.257,0.302,0.342 +2014-03-24 22:00:00,0.257,0.303,0.342 +2014-03-24 23:00:00,0.257,0.304,0.342 +2014-03-25 00:00:00,0.257,0.304,0.342 +2014-03-25 01:00:00,0.256,0.303,0.342 +2014-03-25 02:00:00,0.256,0.303,0.342 +2014-03-25 03:00:00,0.256,0.303,0.342 +2014-03-25 04:00:00,0.256,0.303,0.342 +2014-03-25 05:00:00,0.256,0.302,0.342 +2014-03-25 06:00:00,0.255,0.303,0.342 +2014-03-25 07:00:00,0.255,0.302,0.342 +2014-03-25 08:00:00,0.255,0.302,0.342 +2014-03-25 09:00:00,0.255,0.302,0.34299999999999997 +2014-03-25 10:00:00,0.256,0.302,0.344 +2014-03-25 11:00:00,0.255,0.302,0.34299999999999997 +2014-03-25 12:00:00,0.255,0.302,0.342 +2014-03-25 13:00:00,0.255,0.302,0.342 +2014-03-25 14:00:00,0.256,0.301,0.342 +2014-03-25 15:00:00,0.256,0.3,0.342 +2014-03-25 16:00:00,0.256,0.3,0.342 +2014-03-25 17:00:00,0.256,0.3,0.342 +2014-03-25 18:00:00,0.256,0.3,0.342 +2014-03-25 19:00:00,0.256,0.3,0.342 +2014-03-25 20:00:00,0.256,0.3,0.342 +2014-03-25 21:00:00,0.255,0.3,0.341 +2014-03-25 22:00:00,0.255,0.301,0.342 +2014-03-25 23:00:00,0.255,0.302,0.341 +2014-03-26 00:00:00,0.255,0.302,0.341 +2014-03-26 01:00:00,0.255,0.302,0.341 +2014-03-26 02:00:00,0.254,0.302,0.341 +2014-03-26 03:00:00,0.254,0.302,0.341 +2014-03-26 04:00:00,0.254,0.302,0.341 +2014-03-26 05:00:00,0.254,0.302,0.341 +2014-03-26 06:00:00,0.254,0.301,0.341 +2014-03-26 07:00:00,0.254,0.3,0.341 +2014-03-26 08:00:00,0.254,0.3,0.341 +2014-03-26 09:00:00,0.254,0.3,0.342 +2014-03-26 10:00:00,0.254,0.3,0.34299999999999997 +2014-03-26 11:00:00,0.254,0.3,0.34299999999999997 +2014-03-26 12:00:00,0.253,0.3,0.342 +2014-03-26 13:00:00,0.254,0.3,0.342 +2014-03-26 14:00:00,0.254,0.3,0.342 +2014-03-26 15:00:00,0.254,0.3,0.341 +2014-03-26 16:00:00,0.254,0.3,0.341 +2014-03-26 17:00:00,0.254,0.3,0.342 +2014-03-26 18:00:00,0.254,0.3,0.342 +2014-03-26 19:00:00,0.254,0.3,0.341 +2014-03-26 20:00:00,0.254,0.3,0.341 +2014-03-26 21:00:00,0.254,0.3,0.341 +2014-03-26 22:00:00,0.254,0.3,0.341 +2014-03-26 23:00:00,0.254,0.3,0.341 +2014-03-27 00:00:00,0.254,0.302,0.341 +2014-03-27 01:00:00,0.254,0.302,0.341 +2014-03-27 02:00:00,0.253,0.301,0.341 +2014-03-27 03:00:00,0.253,0.301,0.341 +2014-03-27 04:00:00,0.253,0.3,0.341 +2014-03-27 05:00:00,0.253,0.3,0.341 +2014-03-27 06:00:00,0.253,0.3,0.341 +2014-03-27 07:00:00,0.253,0.3,0.341 +2014-03-27 08:00:00,0.253,0.3,0.341 +2014-03-27 09:00:00,0.253,0.3,0.342 +2014-03-27 10:00:00,0.253,0.3,0.342 +2014-03-27 11:00:00,0.253,0.3,0.341 +2014-03-27 12:00:00,0.253,0.3,0.341 +2014-03-27 13:00:00,0.253,0.3,0.341 +2014-03-27 14:00:00,0.254,0.299,0.341 +2014-03-27 15:00:00,0.254,0.299,0.341 +2014-03-27 16:00:00,0.254,0.299,0.341 +2014-03-27 17:00:00,0.254,0.299,0.341 +2014-03-27 18:00:00,0.254,0.299,0.341 +2014-03-27 19:00:00,0.254,0.299,0.341 +2014-03-27 20:00:00,0.254,0.299,0.341 +2014-03-27 21:00:00,0.254,0.299,0.341 +2014-03-27 22:00:00,0.253,0.3,0.341 +2014-03-27 23:00:00,0.253,0.3,0.341 +2014-03-28 00:00:00,0.253,0.3,0.341 +2014-03-28 01:00:00,0.253,0.3,0.341 +2014-03-28 02:00:00,0.253,0.3,0.341 +2014-03-28 03:00:00,0.253,0.3,0.341 +2014-03-28 04:00:00,0.253,0.3,0.341 +2014-03-28 05:00:00,0.252,0.3,0.341 +2014-03-28 06:00:00,0.252,0.3,0.341 +2014-03-28 07:00:00,0.252,0.299,0.341 +2014-03-28 08:00:00,0.252,0.299,0.341 +2014-03-28 09:00:00,0.252,0.299,0.341 +2014-03-28 10:00:00,0.252,0.298,0.341 +2014-03-28 11:00:00,0.252,0.298,0.341 +2014-03-28 12:00:00,0.252,0.298,0.341 +2014-03-28 13:00:00,0.253,0.298,0.341 +2014-03-28 14:00:00,0.253,0.298,0.341 +2014-03-28 15:00:00,0.253,0.298,0.341 +2014-03-28 16:00:00,0.253,0.298,0.341 +2014-03-28 17:00:00,0.253,0.298,0.341 +2014-03-28 18:00:00,0.253,0.298,0.341 +2014-03-28 19:00:00,0.253,0.298,0.341 +2014-03-28 20:00:00,0.253,0.298,0.341 +2014-03-28 21:00:00,0.253,0.298,0.341 +2014-03-28 22:00:00,0.253,0.298,0.341 +2014-03-28 23:00:00,0.252,0.299,0.341 +2014-03-29 00:00:00,0.252,0.3,0.341 +2014-03-29 01:00:00,0.252,0.3,0.341 +2014-03-29 02:00:00,0.252,0.299,0.341 +2014-03-29 03:00:00,0.252,0.299,0.341 +2014-03-29 04:00:00,0.252,0.299,0.341 +2014-03-29 05:00:00,0.252,0.299,0.341 +2014-03-29 06:00:00,0.252,0.299,0.341 +2014-03-29 07:00:00,0.251,0.298,0.34 +2014-03-29 08:00:00,0.252,0.298,0.341 +2014-03-29 09:00:00,0.252,0.298,0.342 +2014-03-29 10:00:00,0.251,0.298,0.342 +2014-03-29 11:00:00,0.251,0.298,0.341 +2014-03-29 12:00:00,0.251,0.298,0.341 +2014-03-29 13:00:00,0.255,0.298,0.341 +2014-03-29 14:00:00,0.257,0.298,0.341 +2014-03-29 15:00:00,0.262,0.298,0.341 +2014-03-29 16:00:00,0.261,0.298,0.341 +2014-03-29 17:00:00,0.259,0.298,0.341 +2014-03-29 18:00:00,0.261,0.298,0.341 +2014-03-29 19:00:00,0.26,0.298,0.34 +2014-03-29 20:00:00,0.259,0.298,0.34 +2014-03-29 21:00:00,0.258,0.298,0.34 +2014-03-29 22:00:00,0.26,0.298,0.34 +2014-03-29 23:00:00,0.258,0.298,0.34 +2014-03-30 00:00:00,0.258,0.298,0.34 +2014-03-30 01:00:00,0.259,0.298,0.34 +2014-03-30 02:00:00,0.255,0.298,0.34 +2014-03-30 03:00:00,0.255,0.298,0.34 +2014-03-30 04:00:00,0.255,0.298,0.34 +2014-03-30 05:00:00,0.255,0.298,0.34 +2014-03-30 06:00:00,0.255,0.298,0.34 +2014-03-30 07:00:00,0.256,0.298,0.34 +2014-03-30 08:00:00,0.256,0.297,0.34 +2014-03-30 09:00:00,0.256,0.297,0.341 +2014-03-30 10:00:00,0.255,0.297,0.34 +2014-03-30 11:00:00,0.255,0.297,0.34 +2014-03-30 12:00:00,0.255,0.297,0.34 +2014-03-30 13:00:00,0.255,0.297,0.34 +2014-03-30 14:00:00,0.256,0.297,0.34 +2014-03-30 15:00:00,0.257,0.297,0.34 +2014-03-30 16:00:00,0.258,0.297,0.34 +2014-03-30 17:00:00,0.258,0.297,0.34 +2014-03-30 18:00:00,0.258,0.297,0.34 +2014-03-30 19:00:00,0.257,0.297,0.34 +2014-03-30 20:00:00,0.257,0.297,0.34 +2014-03-30 21:00:00,0.257,0.297,0.34 +2014-03-30 22:00:00,0.256,0.297,0.34 +2014-03-30 23:00:00,0.256,0.297,0.34 +2014-03-31 00:00:00,0.258,0.297,0.34 +2014-03-31 01:00:00,0.258,0.297,0.34 +2014-03-31 02:00:00,0.258,0.297,0.34 +2014-03-31 03:00:00,0.256,0.297,0.34 +2014-03-31 04:00:00,0.255,0.297,0.34 +2014-03-31 05:00:00,0.256,0.297,0.34 +2014-03-31 06:00:00,0.258,0.297,0.34 +2014-03-31 07:00:00,0.257,0.297,0.34 +2014-03-31 08:00:00,0.257,0.297,0.34 +2014-03-31 09:00:00,0.257,0.297,0.34 +2014-03-31 10:00:00,0.258,0.297,0.34 +2014-03-31 11:00:00,0.257,0.297,0.34 +2014-03-31 12:00:00,0.257,0.29600000000000004,0.34 +2014-03-31 13:00:00,0.256,0.297,0.34 +2014-03-31 14:00:00,0.254,0.297,0.34 +2014-03-31 15:00:00,0.253,0.29600000000000004,0.34 +2014-03-31 16:00:00,0.253,0.29600000000000004,0.34 +2014-03-31 17:00:00,0.255,0.29600000000000004,0.34 +2014-03-31 18:00:00,0.254,0.29600000000000004,0.34 +2014-03-31 19:00:00,0.255,0.29600000000000004,0.33899999999999997 +2014-03-31 20:00:00,0.25,0.29600000000000004,0.33899999999999997 +2014-03-31 21:00:00,0.248,0.297,0.33899999999999997 +2014-03-31 22:00:00,0.248,0.297,0.33899999999999997 +2014-03-31 23:00:00,0.248,0.297,0.33899999999999997 +2014-04-01 00:00:00,0.248,0.297,0.33899999999999997 +2014-04-01 01:00:00,0.248,0.297,0.33899999999999997 +2014-04-01 02:00:00,0.248,0.297,0.33899999999999997 +2014-04-01 03:00:00,0.248,0.297,0.33899999999999997 +2014-04-01 04:00:00,0.247,0.297,0.33899999999999997 +2014-04-01 05:00:00,0.247,0.297,0.33899999999999997 +2014-04-01 06:00:00,0.247,0.297,0.33899999999999997 +2014-04-01 07:00:00,0.247,0.29600000000000004,0.33899999999999997 +2014-04-01 08:00:00,0.247,0.29600000000000004,0.33899999999999997 +2014-04-01 09:00:00,0.247,0.29600000000000004,0.33899999999999997 +2014-04-01 10:00:00,0.247,0.295,0.33899999999999997 +2014-04-01 11:00:00,0.248,0.295,0.33899999999999997 +2014-04-01 12:00:00,0.248,0.295,0.33899999999999997 +2014-04-01 13:00:00,0.248,0.295,0.33899999999999997 +2014-04-01 14:00:00,0.248,0.295,0.33899999999999997 +2014-04-01 15:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 16:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 17:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 18:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 19:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 20:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 21:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 22:00:00,0.249,0.295,0.33899999999999997 +2014-04-01 23:00:00,0.248,0.29600000000000004,0.33899999999999997 +2014-04-02 00:00:00,0.248,0.29600000000000004,0.33899999999999997 +2014-04-02 01:00:00,0.248,0.29600000000000004,0.33899999999999997 +2014-04-02 02:00:00,0.248,0.29600000000000004,0.33899999999999997 +2014-04-02 03:00:00,0.248,0.295,0.33899999999999997 +2014-04-02 04:00:00,0.248,0.295,0.33899999999999997 +2014-04-02 05:00:00,0.247,0.295,0.33899999999999997 +2014-04-02 06:00:00,0.247,0.295,0.33899999999999997 +2014-04-02 07:00:00,0.247,0.295,0.33899999999999997 +2014-04-02 08:00:00,0.247,0.295,0.33899999999999997 +2014-04-02 09:00:00,0.24600000000000002,0.295,0.33899999999999997 +2014-04-02 10:00:00,0.24600000000000002,0.293,0.33899999999999997 +2014-04-02 11:00:00,0.247,0.293,0.33899999999999997 +2014-04-02 12:00:00,0.247,0.293,0.33899999999999997 +2014-04-02 13:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 14:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 15:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 16:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 17:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 18:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 19:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 20:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 21:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 22:00:00,0.248,0.293,0.33899999999999997 +2014-04-02 23:00:00,0.248,0.293,0.33899999999999997 +2014-04-03 00:00:00,0.248,0.292,0.33899999999999997 +2014-04-03 01:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 02:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 03:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 04:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 05:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 06:00:00,0.24600000000000002,0.292,0.33899999999999997 +2014-04-03 07:00:00,0.24600000000000002,0.292,0.33899999999999997 +2014-04-03 08:00:00,0.24600000000000002,0.292,0.33899999999999997 +2014-04-03 09:00:00,0.24600000000000002,0.292,0.33899999999999997 +2014-04-03 10:00:00,0.24600000000000002,0.292,0.33899999999999997 +2014-04-03 11:00:00,0.24600000000000002,0.292,0.33899999999999997 +2014-04-03 12:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 13:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 14:00:00,0.247,0.292,0.33899999999999997 +2014-04-03 15:00:00,0.248,0.292,0.33899999999999997 +2014-04-03 16:00:00,0.248,0.292,0.33899999999999997 +2014-04-03 17:00:00,0.248,0.292,0.33899999999999997 +2014-04-03 18:00:00,0.248,0.292,0.33899999999999997 +2014-04-03 19:00:00,0.248,0.292,0.33899999999999997 +2014-04-03 20:00:00,0.248,0.292,0.33799999999999997 +2014-04-03 21:00:00,0.248,0.292,0.33799999999999997 +2014-04-03 22:00:00,0.248,0.292,0.33899999999999997 +2014-04-03 23:00:00,0.247,0.292,0.33899999999999997 +2014-04-04 00:00:00,0.247,0.292,0.33899999999999997 +2014-04-04 01:00:00,0.247,0.292,0.33899999999999997 +2014-04-04 02:00:00,0.247,0.292,0.33799999999999997 +2014-04-04 03:00:00,0.247,0.292,0.33799999999999997 +2014-04-04 04:00:00,0.247,0.292,0.33799999999999997 +2014-04-04 05:00:00,0.247,0.292,0.33799999999999997 +2014-04-04 06:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-04 07:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-04 08:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-04 09:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-04 10:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-04 11:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-04 12:00:00,0.247,0.292,0.33799999999999997 +2014-04-04 13:00:00,0.247,0.29100000000000004,0.33799999999999997 +2014-04-04 14:00:00,0.247,0.29100000000000004,0.33799999999999997 +2014-04-04 15:00:00,0.247,0.29100000000000004,0.33799999999999997 +2014-04-04 16:00:00,0.247,0.29,0.33799999999999997 +2014-04-04 17:00:00,0.247,0.29,0.33799999999999997 +2014-04-04 18:00:00,0.247,0.29,0.33799999999999997 +2014-04-04 19:00:00,0.247,0.29,0.33799999999999997 +2014-04-04 20:00:00,0.247,0.29,0.33799999999999997 +2014-04-04 21:00:00,0.247,0.29,0.33799999999999997 +2014-04-04 22:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-04 23:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 00:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 01:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 02:00:00,0.24600000000000002,0.29100000000000004,0.33799999999999997 +2014-04-05 03:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-05 04:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-04-05 05:00:00,0.245,0.292,0.33799999999999997 +2014-04-05 06:00:00,0.24600000000000002,0.29100000000000004,0.33799999999999997 +2014-04-05 07:00:00,0.245,0.29,0.33799999999999997 +2014-04-05 08:00:00,0.245,0.29,0.33899999999999997 +2014-04-05 09:00:00,0.245,0.29,0.33799999999999997 +2014-04-05 10:00:00,0.245,0.29,0.33799999999999997 +2014-04-05 11:00:00,0.245,0.29,0.33799999999999997 +2014-04-05 12:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 13:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 14:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 15:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 16:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 17:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 18:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 19:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 20:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 21:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 22:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-05 23:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-06 00:00:00,0.24600000000000002,0.29,0.337 +2014-04-06 01:00:00,0.24600000000000002,0.29,0.337 +2014-04-06 02:00:00,0.245,0.29,0.337 +2014-04-06 03:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-06 04:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-06 05:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-06 06:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-06 07:00:00,0.24600000000000002,0.29,0.33799999999999997 +2014-04-06 08:00:00,0.245,0.29,0.33799999999999997 +2014-04-06 09:00:00,0.245,0.29,0.33799999999999997 +2014-04-06 10:00:00,0.245,0.289,0.337 +2014-04-06 11:00:00,0.245,0.289,0.337 +2014-04-06 12:00:00,0.24600000000000002,0.289,0.337 +2014-04-06 13:00:00,0.24600000000000002,0.289,0.337 +2014-04-06 14:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-06 15:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-06 16:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-06 17:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-06 18:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-06 19:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-06 20:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-06 21:00:00,0.24600000000000002,0.28800000000000003,0.336 +2014-04-06 22:00:00,0.24600000000000002,0.28800000000000003,0.336 +2014-04-06 23:00:00,0.24600000000000002,0.28800000000000003,0.337 +2014-04-07 00:00:00,0.245,0.28800000000000003,0.337 +2014-04-07 01:00:00,0.24600000000000002,0.28800000000000003,0.336 +2014-04-07 02:00:00,0.245,0.28800000000000003,0.337 +2014-04-07 03:00:00,0.245,0.28800000000000003,0.336 +2014-04-07 04:00:00,0.245,0.28800000000000003,0.336 +2014-04-07 05:00:00,0.245,0.28800000000000003,0.336 +2014-04-07 06:00:00,0.245,0.28800000000000003,0.336 +2014-04-07 07:00:00,0.245,0.28800000000000003,0.337 +2014-04-07 08:00:00,0.245,0.28800000000000003,0.336 +2014-04-07 09:00:00,0.245,0.28800000000000003,0.336 +2014-04-07 10:00:00,0.245,0.28800000000000003,0.336 +2014-04-07 11:00:00,0.245,0.287,0.337 +2014-04-07 12:00:00,0.245,0.287,0.337 +2014-04-07 13:00:00,0.24600000000000002,0.287,0.337 +2014-04-07 14:00:00,0.24600000000000002,0.287,0.336 +2014-04-07 15:00:00,0.24600000000000002,0.287,0.336 +2014-04-07 16:00:00,0.24600000000000002,0.287,0.336 +2014-04-07 17:00:00,0.24600000000000002,0.287,0.336 +2014-04-07 18:00:00,0.24600000000000002,0.287,0.336 +2014-04-07 19:00:00,0.24600000000000002,0.287,0.336 +2014-04-07 20:00:00,0.245,0.28600000000000003,0.336 +2014-04-07 21:00:00,0.245,0.28600000000000003,0.336 +2014-04-07 22:00:00,0.245,0.287,0.336 +2014-04-07 23:00:00,0.245,0.287,0.336 +2014-04-08 00:00:00,0.245,0.287,0.336 +2014-04-08 01:00:00,0.244,0.287,0.336 +2014-04-08 02:00:00,0.244,0.287,0.336 +2014-04-08 03:00:00,0.244,0.287,0.336 +2014-04-08 04:00:00,0.244,0.287,0.336 +2014-04-08 05:00:00,0.244,0.287,0.336 +2014-04-08 06:00:00,0.244,0.28600000000000003,0.336 +2014-04-08 07:00:00,0.244,0.28600000000000003,0.33799999999999997 +2014-04-08 08:00:00,0.244,0.28600000000000003,0.33799999999999997 +2014-04-08 09:00:00,0.244,0.285,0.337 +2014-04-08 10:00:00,0.244,0.285,0.336 +2014-04-08 11:00:00,0.244,0.284,0.336 +2014-04-08 12:00:00,0.244,0.28300000000000003,0.335 +2014-04-08 13:00:00,0.244,0.28300000000000003,0.335 +2014-04-08 14:00:00,0.244,0.284,0.335 +2014-04-08 15:00:00,0.244,0.285,0.335 +2014-04-08 16:00:00,0.244,0.28300000000000003,0.335 +2014-04-08 17:00:00,0.244,0.28300000000000003,0.335 +2014-04-08 18:00:00,0.243,0.28300000000000003,0.335 +2014-04-08 19:00:00,0.243,0.28300000000000003,0.335 +2014-04-08 20:00:00,0.24100000000000002,0.28300000000000003,0.337 +2014-04-08 21:00:00,0.239,0.28300000000000003,0.34 +2014-04-08 22:00:00,0.24,0.28300000000000003,0.34 +2014-04-08 23:00:00,0.237,0.28300000000000003,0.341 +2014-04-09 00:00:00,0.237,0.28300000000000003,0.341 +2014-04-09 01:00:00,0.23800000000000002,0.28300000000000003,0.341 +2014-04-09 02:00:00,0.24,0.28300000000000003,0.34 +2014-04-09 03:00:00,0.24100000000000002,0.28300000000000003,0.34 +2014-04-09 04:00:00,0.242,0.28300000000000003,0.34 +2014-04-09 05:00:00,0.242,0.282,0.34 +2014-04-09 06:00:00,0.242,0.282,0.34 +2014-04-09 07:00:00,0.242,0.282,0.34 +2014-04-09 08:00:00,0.242,0.282,0.34 +2014-04-09 09:00:00,0.244,0.282,0.33799999999999997 +2014-04-09 10:00:00,0.244,0.282,0.336 +2014-04-09 11:00:00,0.244,0.282,0.335 +2014-04-09 12:00:00,0.245,0.281,0.335 +2014-04-09 13:00:00,0.245,0.281,0.335 +2014-04-09 14:00:00,0.245,0.282,0.335 +2014-04-09 15:00:00,0.245,0.282,0.335 +2014-04-09 16:00:00,0.245,0.282,0.335 +2014-04-09 17:00:00,0.245,0.28300000000000003,0.33399999999999996 +2014-04-09 18:00:00,0.245,0.282,0.33399999999999996 +2014-04-09 19:00:00,0.245,0.282,0.33399999999999996 +2014-04-09 20:00:00,0.245,0.282,0.33399999999999996 +2014-04-09 21:00:00,0.245,0.281,0.33399999999999996 +2014-04-09 22:00:00,0.244,0.281,0.33399999999999996 +2014-04-09 23:00:00,0.244,0.281,0.33399999999999996 +2014-04-10 00:00:00,0.244,0.282,0.33399999999999996 +2014-04-10 01:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 02:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 03:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 04:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 05:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 06:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 07:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 08:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 09:00:00,0.244,0.28300000000000003,0.33399999999999996 +2014-04-10 10:00:00,0.244,0.282,0.33399999999999996 +2014-04-10 11:00:00,0.244,0.29100000000000004,0.33399999999999996 +2014-04-10 12:00:00,0.244,0.29,0.33399999999999996 +2014-04-10 13:00:00,0.244,0.287,0.33399999999999996 +2014-04-10 14:00:00,0.244,0.281,0.33399999999999996 +2014-04-10 15:00:00,0.244,0.281,0.33399999999999996 +2014-04-10 16:00:00,0.244,0.281,0.33399999999999996 +2014-04-10 17:00:00,0.244,0.28,0.33399999999999996 +2014-04-10 18:00:00,0.244,0.28,0.33399999999999996 +2014-04-10 19:00:00,0.244,0.28,0.33399999999999996 +2014-04-10 20:00:00,0.244,0.28,0.33399999999999996 +2014-04-10 21:00:00,0.244,0.28,0.33399999999999996 +2014-04-10 22:00:00,0.244,0.28,0.33399999999999996 +2014-04-10 23:00:00,0.244,0.281,0.33399999999999996 +2014-04-11 00:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 01:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 02:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 03:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 04:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 05:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 06:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 07:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 08:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 09:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 10:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 11:00:00,0.243,0.281,0.33399999999999996 +2014-04-11 12:00:00,0.244,0.28,0.33399999999999996 +2014-04-11 13:00:00,0.244,0.28,0.33399999999999996 +2014-04-11 14:00:00,0.244,0.28,0.33399999999999996 +2014-04-11 15:00:00,0.243,0.28,0.33299999999999996 +2014-04-11 16:00:00,0.244,0.28,0.33299999999999996 +2014-04-11 17:00:00,0.243,0.27899999999999997,0.33299999999999996 +2014-04-11 18:00:00,0.243,0.27899999999999997,0.33299999999999996 +2014-04-11 19:00:00,0.243,0.27899999999999997,0.33299999999999996 +2014-04-11 20:00:00,0.243,0.27899999999999997,0.33399999999999996 +2014-04-11 21:00:00,0.243,0.28,0.33299999999999996 +2014-04-11 22:00:00,0.243,0.28,0.33399999999999996 +2014-04-11 23:00:00,0.243,0.28,0.33299999999999996 +2014-04-12 00:00:00,0.243,0.28,0.33299999999999996 +2014-04-12 01:00:00,0.243,0.28,0.33299999999999996 +2014-04-12 02:00:00,0.243,0.28,0.33299999999999996 +2014-04-12 03:00:00,0.242,0.28,0.33299999999999996 +2014-04-12 04:00:00,0.242,0.28,0.33299999999999996 +2014-04-12 05:00:00,0.242,0.28,0.33299999999999996 +2014-04-12 06:00:00,0.242,0.27899999999999997,0.33299999999999996 +2014-04-12 07:00:00,0.242,0.27899999999999997,0.33299999999999996 +2014-04-12 08:00:00,0.242,0.278,0.33299999999999996 +2014-04-12 09:00:00,0.242,0.278,0.33299999999999996 +2014-04-12 10:00:00,0.242,0.27699999999999997,0.33299999999999996 +2014-04-12 11:00:00,0.242,0.27699999999999997,0.33299999999999996 +2014-04-12 12:00:00,0.242,0.278,0.33299999999999996 +2014-04-12 13:00:00,0.242,0.27899999999999997,0.33299999999999996 +2014-04-12 14:00:00,0.242,0.278,0.33299999999999996 +2014-04-12 15:00:00,0.243,0.278,0.33299999999999996 +2014-04-12 16:00:00,0.242,0.278,0.33299999999999996 +2014-04-12 17:00:00,0.242,0.278,0.33299999999999996 +2014-04-12 18:00:00,0.242,0.278,0.332 +2014-04-12 19:00:00,0.242,0.278,0.332 +2014-04-12 20:00:00,0.242,0.278,0.332 +2014-04-12 21:00:00,0.24100000000000002,0.278,0.332 +2014-04-12 22:00:00,0.24100000000000002,0.278,0.332 +2014-04-12 23:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 00:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 01:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 02:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 03:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 04:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 05:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 06:00:00,0.24100000000000002,0.278,0.332 +2014-04-13 07:00:00,0.24,0.278,0.332 +2014-04-13 08:00:00,0.24,0.278,0.332 +2014-04-13 09:00:00,0.24,0.278,0.332 +2014-04-13 10:00:00,0.24,0.27699999999999997,0.332 +2014-04-13 11:00:00,0.24,0.276,0.332 +2014-04-13 12:00:00,0.24,0.276,0.332 +2014-04-13 13:00:00,0.24,0.276,0.332 +2014-04-13 14:00:00,0.24,0.276,0.332 +2014-04-13 15:00:00,0.24,0.276,0.332 +2014-04-13 16:00:00,0.24,0.276,0.332 +2014-04-13 17:00:00,0.24,0.276,0.332 +2014-04-13 18:00:00,0.24,0.276,0.331 +2014-04-13 19:00:00,0.24,0.276,0.331 +2014-04-13 20:00:00,0.24,0.276,0.331 +2014-04-13 21:00:00,0.24,0.276,0.331 +2014-04-13 22:00:00,0.239,0.276,0.331 +2014-04-13 23:00:00,0.239,0.276,0.331 +2014-04-14 00:00:00,0.239,0.276,0.331 +2014-04-14 01:00:00,0.239,0.276,0.331 +2014-04-14 02:00:00,0.239,0.276,0.331 +2014-04-14 03:00:00,0.23800000000000002,0.276,0.331 +2014-04-14 04:00:00,0.23800000000000002,0.276,0.331 +2014-04-14 05:00:00,0.23800000000000002,0.276,0.331 +2014-04-14 06:00:00,0.23800000000000002,0.276,0.331 +2014-04-14 07:00:00,0.23800000000000002,0.275,0.331 +2014-04-14 08:00:00,0.239,0.275,0.33299999999999996 +2014-04-14 09:00:00,0.239,0.275,0.33399999999999996 +2014-04-14 10:00:00,0.239,0.275,0.33299999999999996 +2014-04-14 11:00:00,0.239,0.275,0.332 +2014-04-14 12:00:00,0.23800000000000002,0.275,0.331 +2014-04-14 13:00:00,0.23800000000000002,0.275,0.331 +2014-04-14 14:00:00,0.23800000000000002,0.276,0.331 +2014-04-14 15:00:00,0.23800000000000002,0.275,0.331 +2014-04-14 16:00:00,0.23800000000000002,0.275,0.331 +2014-04-14 17:00:00,0.23800000000000002,0.275,0.331 +2014-04-14 18:00:00,0.239,0.275,0.332 +2014-04-14 19:00:00,0.23800000000000002,0.275,0.332 +2014-04-14 20:00:00,0.23800000000000002,0.27399999999999997,0.332 +2014-04-14 21:00:00,0.23600000000000002,0.275,0.33399999999999996 +2014-04-14 22:00:00,0.23199999999999998,0.275,0.337 +2014-04-14 23:00:00,0.23199999999999998,0.275,0.337 +2014-04-15 00:00:00,0.23199999999999998,0.275,0.336 +2014-04-15 01:00:00,0.233,0.275,0.336 +2014-04-15 02:00:00,0.23399999999999999,0.275,0.336 +2014-04-15 03:00:00,0.233,0.275,0.336 +2014-04-15 04:00:00,0.233,0.275,0.336 +2014-04-15 05:00:00,0.23399999999999999,0.275,0.336 +2014-04-15 06:00:00,0.235,0.275,0.335 +2014-04-15 07:00:00,0.23600000000000002,0.275,0.335 +2014-04-15 08:00:00,0.23600000000000002,0.275,0.335 +2014-04-15 09:00:00,0.237,0.275,0.33399999999999996 +2014-04-15 10:00:00,0.237,0.275,0.332 +2014-04-15 11:00:00,0.23600000000000002,0.27399999999999997,0.331 +2014-04-15 12:00:00,0.237,0.273,0.331 +2014-04-15 13:00:00,0.237,0.273,0.331 +2014-04-15 14:00:00,0.237,0.273,0.33 +2014-04-15 15:00:00,0.237,0.273,0.33 +2014-04-15 16:00:00,0.237,0.273,0.33 +2014-04-15 17:00:00,0.237,0.273,0.33 +2014-04-15 18:00:00,0.237,0.272,0.33 +2014-04-15 19:00:00,0.237,0.272,0.33 +2014-04-15 20:00:00,0.237,0.272,0.33 +2014-04-15 21:00:00,0.23600000000000002,0.272,0.33 +2014-04-15 22:00:00,0.23600000000000002,0.273,0.33 +2014-04-15 23:00:00,0.23600000000000002,0.273,0.33 +2014-04-16 00:00:00,0.23600000000000002,0.273,0.33 +2014-04-16 01:00:00,0.23600000000000002,0.272,0.33 +2014-04-16 02:00:00,0.235,0.272,0.33 +2014-04-16 03:00:00,0.235,0.272,0.33 +2014-04-16 04:00:00,0.235,0.272,0.32899999999999996 +2014-04-16 05:00:00,0.23399999999999999,0.272,0.32899999999999996 +2014-04-16 06:00:00,0.23399999999999999,0.272,0.32899999999999996 +2014-04-16 07:00:00,0.23399999999999999,0.272,0.32899999999999996 +2014-04-16 08:00:00,0.23399999999999999,0.271,0.32899999999999996 +2014-04-16 09:00:00,0.235,0.271,0.331 +2014-04-16 10:00:00,0.235,0.271,0.33 +2014-04-16 11:00:00,0.23399999999999999,0.271,0.33 +2014-04-16 12:00:00,0.23399999999999999,0.271,0.32899999999999996 +2014-04-16 13:00:00,0.235,0.271,0.32799999999999996 +2014-04-16 14:00:00,0.24100000000000002,0.271,0.32899999999999996 +2014-04-16 15:00:00,0.242,0.271,0.32899999999999996 +2014-04-16 16:00:00,0.243,0.271,0.32799999999999996 +2014-04-16 17:00:00,0.243,0.271,0.32799999999999996 +2014-04-16 18:00:00,0.243,0.271,0.32799999999999996 +2014-04-16 19:00:00,0.24100000000000002,0.271,0.32799999999999996 +2014-04-16 20:00:00,0.24100000000000002,0.27,0.32799999999999996 +2014-04-16 21:00:00,0.24,0.271,0.32799999999999996 +2014-04-16 22:00:00,0.24,0.271,0.32799999999999996 +2014-04-16 23:00:00,0.242,0.271,0.32799999999999996 +2014-04-17 00:00:00,0.24,0.271,0.32799999999999996 +2014-04-17 01:00:00,0.237,0.271,0.32799999999999996 +2014-04-17 02:00:00,0.23600000000000002,0.271,0.327 +2014-04-17 03:00:00,0.23600000000000002,0.271,0.327 +2014-04-17 04:00:00,0.237,0.271,0.327 +2014-04-17 05:00:00,0.237,0.271,0.327 +2014-04-17 06:00:00,0.23600000000000002,0.271,0.327 +2014-04-17 07:00:00,0.237,0.271,0.327 +2014-04-17 08:00:00,0.237,0.271,0.32799999999999996 +2014-04-17 09:00:00,0.23800000000000002,0.27,0.32899999999999996 +2014-04-17 10:00:00,0.23800000000000002,0.271,0.32799999999999996 +2014-04-17 11:00:00,0.23800000000000002,0.27,0.32799999999999996 +2014-04-17 12:00:00,0.24100000000000002,0.27,0.32799999999999996 +2014-04-17 13:00:00,0.24,0.27,0.32799999999999996 +2014-04-17 14:00:00,0.23800000000000002,0.27,0.32799999999999996 +2014-04-17 15:00:00,0.23800000000000002,0.27,0.32799999999999996 +2014-04-17 16:00:00,0.23800000000000002,0.27,0.32799999999999996 +2014-04-17 17:00:00,0.23800000000000002,0.27,0.32799999999999996 +2014-04-17 18:00:00,0.23800000000000002,0.27,0.32799999999999996 +2014-04-17 19:00:00,0.23800000000000002,0.27,0.32799999999999996 +2014-04-17 20:00:00,0.23800000000000002,0.27,0.327 +2014-04-17 21:00:00,0.23800000000000002,0.27,0.327 +2014-04-17 22:00:00,0.237,0.27,0.327 +2014-04-17 23:00:00,0.23800000000000002,0.27,0.327 +2014-04-18 00:00:00,0.237,0.271,0.327 +2014-04-18 01:00:00,0.237,0.271,0.327 +2014-04-18 02:00:00,0.237,0.27,0.327 +2014-04-18 03:00:00,0.237,0.27,0.32799999999999996 +2014-04-18 04:00:00,0.237,0.27,0.32799999999999996 +2014-04-18 05:00:00,0.23800000000000002,0.27,0.33 +2014-04-18 06:00:00,0.23800000000000002,0.27,0.33 +2014-04-18 07:00:00,0.23800000000000002,0.27,0.33 +2014-04-18 08:00:00,0.23800000000000002,0.27,0.32899999999999996 +2014-04-18 09:00:00,0.237,0.27,0.32799999999999996 +2014-04-18 10:00:00,0.237,0.27,0.32799999999999996 +2014-04-18 11:00:00,0.237,0.27,0.327 +2014-04-18 12:00:00,0.237,0.27,0.327 +2014-04-18 13:00:00,0.237,0.27,0.327 +2014-04-18 14:00:00,0.237,0.27,0.327 +2014-04-18 15:00:00,0.23800000000000002,0.26899999999999996,0.327 +2014-04-18 16:00:00,0.237,0.268,0.327 +2014-04-18 17:00:00,0.237,0.268,0.327 +2014-04-18 18:00:00,0.237,0.268,0.327 +2014-04-18 19:00:00,0.237,0.268,0.327 +2014-04-18 20:00:00,0.237,0.268,0.327 +2014-04-18 21:00:00,0.237,0.268,0.327 +2014-04-18 22:00:00,0.23600000000000002,0.268,0.327 +2014-04-18 23:00:00,0.23600000000000002,0.268,0.327 +2014-04-19 00:00:00,0.23600000000000002,0.268,0.327 +2014-04-19 01:00:00,0.23600000000000002,0.268,0.327 +2014-04-19 02:00:00,0.23600000000000002,0.268,0.327 +2014-04-19 03:00:00,0.23600000000000002,0.268,0.326 +2014-04-19 04:00:00,0.235,0.268,0.326 +2014-04-19 05:00:00,0.235,0.268,0.326 +2014-04-19 06:00:00,0.235,0.268,0.326 +2014-04-19 07:00:00,0.23399999999999999,0.268,0.327 +2014-04-19 08:00:00,0.23399999999999999,0.267,0.327 +2014-04-19 09:00:00,0.23399999999999999,0.266,0.327 +2014-04-19 10:00:00,0.23399999999999999,0.266,0.327 +2014-04-19 11:00:00,0.23399999999999999,0.266,0.327 +2014-04-19 12:00:00,0.235,0.266,0.327 +2014-04-19 13:00:00,0.235,0.266,0.327 +2014-04-19 14:00:00,0.23600000000000002,0.266,0.327 +2014-04-19 15:00:00,0.23600000000000002,0.266,0.327 +2014-04-19 16:00:00,0.23600000000000002,0.266,0.327 +2014-04-19 17:00:00,0.23600000000000002,0.266,0.327 +2014-04-19 18:00:00,0.23600000000000002,0.265,0.327 +2014-04-19 19:00:00,0.23600000000000002,0.265,0.326 +2014-04-19 20:00:00,0.23600000000000002,0.265,0.326 +2014-04-19 21:00:00,0.23600000000000002,0.265,0.326 +2014-04-19 22:00:00,0.23600000000000002,0.265,0.327 +2014-04-19 23:00:00,0.23600000000000002,0.266,0.327 +2014-04-20 00:00:00,0.23600000000000002,0.266,0.327 +2014-04-20 01:00:00,0.235,0.266,0.326 +2014-04-20 02:00:00,0.23600000000000002,0.266,0.327 +2014-04-20 03:00:00,0.235,0.266,0.327 +2014-04-20 04:00:00,0.235,0.266,0.327 +2014-04-20 05:00:00,0.235,0.266,0.327 +2014-04-20 06:00:00,0.235,0.265,0.327 +2014-04-20 07:00:00,0.235,0.264,0.32799999999999996 +2014-04-20 08:00:00,0.23399999999999999,0.264,0.327 +2014-04-20 09:00:00,0.23399999999999999,0.264,0.327 +2014-04-20 10:00:00,0.23399999999999999,0.264,0.327 +2014-04-20 11:00:00,0.23399999999999999,0.264,0.326 +2014-04-20 12:00:00,0.23399999999999999,0.264,0.326 +2014-04-20 13:00:00,0.235,0.264,0.326 +2014-04-20 14:00:00,0.23600000000000002,0.264,0.326 +2014-04-20 15:00:00,0.23600000000000002,0.264,0.326 +2014-04-20 16:00:00,0.23600000000000002,0.264,0.326 +2014-04-20 17:00:00,0.23600000000000002,0.264,0.326 +2014-04-20 18:00:00,0.23600000000000002,0.264,0.326 +2014-04-20 19:00:00,0.23600000000000002,0.264,0.326 +2014-04-20 20:00:00,0.235,0.264,0.326 +2014-04-20 21:00:00,0.235,0.264,0.326 +2014-04-20 22:00:00,0.23399999999999999,0.264,0.326 +2014-04-20 23:00:00,0.23399999999999999,0.264,0.326 +2014-04-21 00:00:00,0.23399999999999999,0.264,0.326 +2014-04-21 01:00:00,0.233,0.264,0.326 +2014-04-21 02:00:00,0.233,0.264,0.326 +2014-04-21 03:00:00,0.233,0.264,0.326 +2014-04-21 04:00:00,0.233,0.264,0.326 +2014-04-21 05:00:00,0.233,0.264,0.326 +2014-04-21 06:00:00,0.23199999999999998,0.264,0.326 +2014-04-21 07:00:00,0.23199999999999998,0.264,0.326 +2014-04-21 08:00:00,0.23199999999999998,0.259,0.326 +2014-04-21 09:00:00,0.23199999999999998,0.261,0.326 +2014-04-21 10:00:00,0.23199999999999998,0.259,0.326 +2014-04-21 11:00:00,0.233,0.259,0.326 +2014-04-21 12:00:00,0.233,0.259,0.326 +2014-04-21 13:00:00,0.233,0.261,0.326 +2014-04-21 14:00:00,0.233,0.263,0.326 +2014-04-21 15:00:00,0.233,0.266,0.326 +2014-04-21 16:00:00,0.233,0.265,0.326 +2014-04-21 17:00:00,0.23399999999999999,0.265,0.325 +2014-04-21 18:00:00,0.233,0.265,0.325 +2014-04-21 19:00:00,0.233,0.265,0.325 +2014-04-21 20:00:00,0.233,0.266,0.325 +2014-04-21 21:00:00,0.233,0.266,0.326 +2014-04-21 22:00:00,0.23399999999999999,0.266,0.331 +2014-04-21 23:00:00,0.23399999999999999,0.266,0.331 +2014-04-22 00:00:00,0.23399999999999999,0.266,0.331 +2014-04-22 01:00:00,0.23399999999999999,0.266,0.331 +2014-04-22 02:00:00,0.233,0.266,0.331 +2014-04-22 03:00:00,0.233,0.266,0.331 +2014-04-22 04:00:00,0.233,0.266,0.331 +2014-04-22 05:00:00,0.233,0.266,0.331 +2014-04-22 06:00:00,0.233,0.266,0.331 +2014-04-22 07:00:00,0.233,0.266,0.332 +2014-04-22 08:00:00,0.233,0.266,0.331 +2014-04-22 09:00:00,0.233,0.266,0.33 +2014-04-22 10:00:00,0.23399999999999999,0.266,0.32799999999999996 +2014-04-22 11:00:00,0.233,0.266,0.327 +2014-04-22 12:00:00,0.233,0.266,0.326 +2014-04-22 13:00:00,0.233,0.266,0.326 +2014-04-22 14:00:00,0.23399999999999999,0.266,0.326 +2014-04-22 15:00:00,0.233,0.266,0.33 +2014-04-22 16:00:00,0.233,0.266,0.33 +2014-04-22 17:00:00,0.233,0.266,0.32799999999999996 +2014-04-22 18:00:00,0.233,0.266,0.327 +2014-04-22 19:00:00,0.233,0.266,0.327 +2014-04-22 20:00:00,0.233,0.266,0.326 +2014-04-22 21:00:00,0.233,0.266,0.326 +2014-04-22 22:00:00,0.23199999999999998,0.266,0.326 +2014-04-22 23:00:00,0.23199999999999998,0.266,0.326 +2014-04-23 00:00:00,0.23199999999999998,0.267,0.326 +2014-04-23 01:00:00,0.23199999999999998,0.268,0.326 +2014-04-23 02:00:00,0.23199999999999998,0.268,0.326 +2014-04-23 03:00:00,0.231,0.268,0.326 +2014-04-23 04:00:00,0.231,0.268,0.326 +2014-04-23 05:00:00,0.231,0.268,0.326 +2014-04-23 06:00:00,0.231,0.268,0.326 +2014-04-23 07:00:00,0.231,0.268,0.326 +2014-04-23 08:00:00,0.231,0.268,0.327 +2014-04-23 09:00:00,0.231,0.268,0.327 +2014-04-23 10:00:00,0.231,0.268,0.327 +2014-04-23 11:00:00,0.231,0.268,0.326 +2014-04-23 12:00:00,0.231,0.268,0.326 +2014-04-23 13:00:00,0.23199999999999998,0.266,0.326 +2014-04-23 14:00:00,0.23199999999999998,0.266,0.326 +2014-04-23 15:00:00,0.23199999999999998,0.266,0.326 +2014-04-23 16:00:00,0.233,0.264,0.325 +2014-04-23 17:00:00,0.233,0.263,0.325 +2014-04-23 18:00:00,0.233,0.263,0.325 +2014-04-23 19:00:00,0.23199999999999998,0.266,0.325 +2014-04-23 20:00:00,0.23199999999999998,0.26899999999999996,0.325 +2014-04-23 21:00:00,0.23199999999999998,0.27,0.325 +2014-04-23 22:00:00,0.23199999999999998,0.27,0.325 +2014-04-23 23:00:00,0.231,0.27,0.325 +2014-04-24 00:00:00,0.231,0.271,0.325 +2014-04-24 01:00:00,0.231,0.27,0.325 +2014-04-24 02:00:00,0.23,0.272,0.325 +2014-04-24 03:00:00,0.23,0.273,0.325 +2014-04-24 04:00:00,0.23,0.27399999999999997,0.325 +2014-04-24 05:00:00,0.23,0.275,0.325 +2014-04-24 06:00:00,0.23,0.275,0.325 +2014-04-24 07:00:00,0.23,0.27399999999999997,0.325 +2014-04-24 08:00:00,0.23,0.27399999999999997,0.325 +2014-04-24 09:00:00,0.23,0.273,0.325 +2014-04-24 10:00:00,0.23,0.27399999999999997,0.325 +2014-04-24 11:00:00,0.23,0.275,0.325 +2014-04-24 12:00:00,0.23,0.275,0.325 +2014-04-24 13:00:00,0.231,0.275,0.325 +2014-04-24 14:00:00,0.231,0.275,0.325 +2014-04-24 15:00:00,0.231,0.27399999999999997,0.325 +2014-04-24 16:00:00,0.231,0.275,0.325 +2014-04-24 17:00:00,0.231,0.275,0.324 +2014-04-24 18:00:00,0.23199999999999998,0.275,0.324 +2014-04-24 19:00:00,0.231,0.275,0.324 +2014-04-24 20:00:00,0.231,0.275,0.324 +2014-04-24 21:00:00,0.231,0.275,0.324 +2014-04-24 22:00:00,0.231,0.275,0.324 +2014-04-24 23:00:00,0.23,0.275,0.324 +2014-04-25 00:00:00,0.23,0.275,0.324 +2014-04-25 01:00:00,0.23,0.275,0.324 +2014-04-25 02:00:00,0.23,0.275,0.324 +2014-04-25 03:00:00,0.23,0.275,0.325 +2014-04-25 04:00:00,0.23,0.275,0.325 +2014-04-25 05:00:00,0.22899999999999998,0.275,0.324 +2014-04-25 06:00:00,0.22899999999999998,0.275,0.325 +2014-04-25 07:00:00,0.22899999999999998,0.275,0.325 +2014-04-25 08:00:00,0.22899999999999998,0.275,0.324 +2014-04-25 09:00:00,0.22899999999999998,0.275,0.324 +2014-04-25 10:00:00,0.23,0.275,0.324 +2014-04-25 11:00:00,0.23,0.275,0.324 +2014-04-25 12:00:00,0.23,0.275,0.324 +2014-04-25 13:00:00,0.23,0.275,0.324 +2014-04-25 14:00:00,0.23,0.275,0.324 +2014-04-25 15:00:00,0.231,0.275,0.324 +2014-04-25 16:00:00,0.231,0.275,0.324 +2014-04-25 17:00:00,0.231,0.275,0.324 +2014-04-25 18:00:00,0.231,0.275,0.324 +2014-04-25 19:00:00,0.231,0.275,0.32299999999999995 +2014-04-25 20:00:00,0.231,0.275,0.32299999999999995 +2014-04-25 21:00:00,0.23,0.275,0.32299999999999995 +2014-04-25 22:00:00,0.23,0.275,0.32299999999999995 +2014-04-25 23:00:00,0.23,0.275,0.32299999999999995 +2014-04-26 00:00:00,0.23,0.275,0.32299999999999995 +2014-04-26 01:00:00,0.22899999999999998,0.275,0.32299999999999995 +2014-04-26 02:00:00,0.22899999999999998,0.276,0.32299999999999995 +2014-04-26 03:00:00,0.22899999999999998,0.276,0.32299999999999995 +2014-04-26 04:00:00,0.23,0.276,0.324 +2014-04-26 05:00:00,0.23,0.276,0.324 +2014-04-26 06:00:00,0.23,0.276,0.324 +2014-04-26 07:00:00,0.23,0.276,0.324 +2014-04-26 08:00:00,0.23,0.276,0.324 +2014-04-26 09:00:00,0.22899999999999998,0.276,0.32299999999999995 +2014-04-26 10:00:00,0.23,0.276,0.32299999999999995 +2014-04-26 11:00:00,0.23,0.276,0.325 +2014-04-26 12:00:00,0.23,0.276,0.324 +2014-04-26 13:00:00,0.23,0.275,0.324 +2014-04-26 14:00:00,0.23,0.275,0.32299999999999995 +2014-04-26 15:00:00,0.23,0.275,0.32299999999999995 +2014-04-26 16:00:00,0.23,0.275,0.32299999999999995 +2014-04-26 17:00:00,0.23,0.276,0.32299999999999995 +2014-04-26 18:00:00,0.23,0.276,0.32299999999999995 +2014-04-26 19:00:00,0.23,0.276,0.32299999999999995 +2014-04-26 20:00:00,0.23,0.276,0.32299999999999995 +2014-04-26 21:00:00,0.23,0.276,0.32299999999999995 +2014-04-26 22:00:00,0.23,0.276,0.32299999999999995 +2014-04-26 23:00:00,0.23,0.276,0.32299999999999995 +2014-04-27 00:00:00,0.23,0.276,0.32299999999999995 +2014-04-27 01:00:00,0.22899999999999998,0.276,0.32299999999999995 +2014-04-27 02:00:00,0.22699999999999998,0.276,0.32299999999999995 +2014-04-27 03:00:00,0.226,0.276,0.32299999999999995 +2014-04-27 04:00:00,0.226,0.276,0.325 +2014-04-27 05:00:00,0.223,0.276,0.332 +2014-04-27 06:00:00,0.223,0.276,0.332 +2014-04-27 07:00:00,0.223,0.276,0.33299999999999996 +2014-04-27 08:00:00,0.223,0.276,0.33299999999999996 +2014-04-27 09:00:00,0.22399999999999998,0.276,0.33299999999999996 +2014-04-27 10:00:00,0.223,0.276,0.33299999999999996 +2014-04-27 11:00:00,0.223,0.276,0.33299999999999996 +2014-04-27 12:00:00,0.225,0.276,0.332 +2014-04-27 13:00:00,0.228,0.276,0.33 +2014-04-27 14:00:00,0.23,0.276,0.32899999999999996 +2014-04-27 15:00:00,0.23,0.275,0.32799999999999996 +2014-04-27 16:00:00,0.23,0.275,0.32799999999999996 +2014-04-27 17:00:00,0.23,0.275,0.327 +2014-04-27 18:00:00,0.23,0.275,0.327 +2014-04-27 19:00:00,0.23,0.275,0.327 +2014-04-27 20:00:00,0.23,0.275,0.327 +2014-04-27 21:00:00,0.23,0.275,0.327 +2014-04-27 22:00:00,0.23,0.275,0.326 +2014-04-27 23:00:00,0.23,0.275,0.327 +2014-04-28 00:00:00,0.23,0.275,0.327 +2014-04-28 01:00:00,0.23,0.275,0.327 +2014-04-28 02:00:00,0.23,0.275,0.327 +2014-04-28 03:00:00,0.23,0.275,0.327 +2014-04-28 04:00:00,0.23,0.275,0.327 +2014-04-28 05:00:00,0.23,0.275,0.327 +2014-04-28 06:00:00,0.23,0.275,0.327 +2014-04-28 07:00:00,0.23,0.275,0.327 +2014-04-28 08:00:00,0.23,0.275,0.327 +2014-04-28 09:00:00,0.23,0.275,0.327 +2014-04-28 10:00:00,0.23,0.275,0.327 +2014-04-28 11:00:00,0.23,0.275,0.326 +2014-04-28 12:00:00,0.231,0.275,0.326 +2014-04-28 13:00:00,0.231,0.275,0.326 +2014-04-28 14:00:00,0.231,0.27399999999999997,0.326 +2014-04-28 15:00:00,0.231,0.273,0.326 +2014-04-28 16:00:00,0.231,0.273,0.326 +2014-04-28 17:00:00,0.231,0.273,0.326 +2014-04-28 18:00:00,0.231,0.273,0.326 +2014-04-28 19:00:00,0.231,0.273,0.326 +2014-04-28 20:00:00,0.231,0.273,0.326 +2014-04-28 21:00:00,0.23199999999999998,0.273,0.32799999999999996 +2014-04-28 22:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-28 23:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 00:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 01:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 02:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 03:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 04:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 05:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 06:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 07:00:00,0.23199999999999998,0.273,0.32899999999999996 +2014-04-29 08:00:00,0.23199999999999998,0.273,0.33 +2014-04-29 09:00:00,0.231,0.273,0.331 +2014-04-29 10:00:00,0.231,0.273,0.331 +2014-04-29 11:00:00,0.23199999999999998,0.273,0.331 +2014-04-29 12:00:00,0.23199999999999998,0.273,0.33 +2014-04-29 13:00:00,0.231,0.273,0.331 +2014-04-29 14:00:00,0.23199999999999998,0.273,0.332 +2014-04-29 15:00:00,0.24,0.272,0.33299999999999996 +2014-04-29 16:00:00,0.25,0.272,0.332 +2014-04-29 17:00:00,0.252,0.271,0.331 +2014-04-29 18:00:00,0.253,0.271,0.33 +2014-04-29 19:00:00,0.253,0.271,0.33 +2014-04-29 20:00:00,0.252,0.271,0.33 +2014-04-29 21:00:00,0.251,0.271,0.331 +2014-04-29 22:00:00,0.249,0.271,0.332 +2014-04-29 23:00:00,0.25,0.271,0.332 +2014-04-30 00:00:00,0.251,0.271,0.332 +2014-04-30 01:00:00,0.251,0.271,0.332 +2014-04-30 02:00:00,0.251,0.271,0.332 +2014-04-30 03:00:00,0.251,0.271,0.332 +2014-04-30 04:00:00,0.25,0.271,0.332 +2014-04-30 05:00:00,0.249,0.271,0.33299999999999996 +2014-04-30 06:00:00,0.249,0.271,0.33299999999999996 +2014-04-30 07:00:00,0.249,0.271,0.33299999999999996 +2014-04-30 08:00:00,0.249,0.271,0.332 +2014-04-30 09:00:00,0.249,0.271,0.332 +2014-04-30 10:00:00,0.249,0.271,0.332 +2014-04-30 11:00:00,0.251,0.271,0.331 +2014-04-30 12:00:00,0.251,0.271,0.331 +2014-04-30 13:00:00,0.252,0.271,0.33 +2014-04-30 14:00:00,0.251,0.271,0.32899999999999996 +2014-04-30 15:00:00,0.251,0.27,0.32899999999999996 +2014-04-30 16:00:00,0.251,0.27,0.32899999999999996 +2014-04-30 17:00:00,0.251,0.27,0.32799999999999996 +2014-04-30 18:00:00,0.251,0.27,0.32799999999999996 +2014-04-30 19:00:00,0.251,0.271,0.32799999999999996 +2014-04-30 20:00:00,0.25,0.27,0.32799999999999996 +2014-04-30 21:00:00,0.25,0.27,0.32799999999999996 +2014-04-30 22:00:00,0.25,0.27,0.32799999999999996 +2014-04-30 23:00:00,0.249,0.27,0.32799999999999996 +2014-05-01 00:00:00,0.249,0.27,0.32799999999999996 +2014-05-01 01:00:00,0.249,0.27,0.32799999999999996 +2014-05-01 02:00:00,0.249,0.27,0.32799999999999996 +2014-05-01 03:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 04:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 05:00:00,0.248,0.271,0.32899999999999996 +2014-05-01 06:00:00,0.248,0.271,0.32899999999999996 +2014-05-01 07:00:00,0.248,0.27,0.32899999999999996 +2014-05-01 08:00:00,0.248,0.27,0.32899999999999996 +2014-05-01 09:00:00,0.248,0.271,0.32799999999999996 +2014-05-01 10:00:00,0.248,0.271,0.32799999999999996 +2014-05-01 11:00:00,0.248,0.271,0.32799999999999996 +2014-05-01 12:00:00,0.247,0.271,0.32799999999999996 +2014-05-01 13:00:00,0.248,0.271,0.32799999999999996 +2014-05-01 14:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 15:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 16:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 17:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 18:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 19:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 20:00:00,0.248,0.27,0.32799999999999996 +2014-05-01 21:00:00,0.247,0.27,0.32799999999999996 +2014-05-01 22:00:00,0.247,0.27,0.32799999999999996 +2014-05-01 23:00:00,0.247,0.27,0.32799999999999996 +2014-05-02 00:00:00,0.24600000000000002,0.271,0.32799999999999996 +2014-05-02 01:00:00,0.24600000000000002,0.271,0.32799999999999996 +2014-05-02 02:00:00,0.24600000000000002,0.271,0.32799999999999996 +2014-05-02 03:00:00,0.24600000000000002,0.271,0.32799999999999996 +2014-05-02 04:00:00,0.24600000000000002,0.272,0.32799999999999996 +2014-05-02 05:00:00,0.24600000000000002,0.272,0.32799999999999996 +2014-05-02 06:00:00,0.24600000000000002,0.272,0.32799999999999996 +2014-05-02 07:00:00,0.24600000000000002,0.271,0.32799999999999996 +2014-05-02 08:00:00,0.245,0.271,0.32799999999999996 +2014-05-02 09:00:00,0.245,0.271,0.32799999999999996 +2014-05-02 10:00:00,0.245,0.271,0.32799999999999996 +2014-05-02 11:00:00,0.245,0.271,0.32799999999999996 +2014-05-02 12:00:00,0.245,0.271,0.32799999999999996 +2014-05-02 13:00:00,0.245,0.27,0.32799999999999996 +2014-05-02 14:00:00,0.245,0.27,0.33 +2014-05-02 15:00:00,0.245,0.27,0.33 +2014-05-02 16:00:00,0.24600000000000002,0.27,0.32899999999999996 +2014-05-02 17:00:00,0.245,0.27,0.32899999999999996 +2014-05-02 18:00:00,0.244,0.27,0.33 +2014-05-02 19:00:00,0.245,0.27,0.33 +2014-05-02 20:00:00,0.245,0.27,0.33 +2014-05-02 21:00:00,0.245,0.271,0.32899999999999996 +2014-05-02 22:00:00,0.245,0.271,0.32899999999999996 +2014-05-02 23:00:00,0.245,0.271,0.32899999999999996 +2014-05-03 00:00:00,0.245,0.271,0.32899999999999996 +2014-05-03 01:00:00,0.245,0.27,0.32899999999999996 +2014-05-03 02:00:00,0.245,0.27,0.32899999999999996 +2014-05-03 03:00:00,0.245,0.27,0.32799999999999996 +2014-05-03 04:00:00,0.245,0.27,0.32799999999999996 +2014-05-03 05:00:00,0.244,0.271,0.32799999999999996 +2014-05-03 06:00:00,0.244,0.271,0.32799999999999996 +2014-05-03 07:00:00,0.244,0.271,0.32799999999999996 +2014-05-03 08:00:00,0.244,0.271,0.32799999999999996 +2014-05-03 09:00:00,0.244,0.271,0.32799999999999996 +2014-05-03 10:00:00,0.244,0.271,0.32799999999999996 +2014-05-03 11:00:00,0.243,0.271,0.327 +2014-05-03 12:00:00,0.243,0.271,0.327 +2014-05-03 13:00:00,0.243,0.271,0.327 +2014-05-03 14:00:00,0.243,0.271,0.327 +2014-05-03 15:00:00,0.243,0.271,0.327 +2014-05-03 16:00:00,0.243,0.271,0.326 +2014-05-03 17:00:00,0.243,0.27,0.326 +2014-05-03 18:00:00,0.243,0.27,0.326 +2014-05-03 19:00:00,0.243,0.27,0.326 +2014-05-03 20:00:00,0.243,0.27,0.326 +2014-05-03 21:00:00,0.243,0.27,0.326 +2014-05-03 22:00:00,0.243,0.27,0.326 +2014-05-03 23:00:00,0.242,0.271,0.326 +2014-05-04 00:00:00,0.242,0.272,0.326 +2014-05-04 01:00:00,0.242,0.272,0.326 +2014-05-04 02:00:00,0.242,0.273,0.326 +2014-05-04 03:00:00,0.242,0.273,0.326 +2014-05-04 04:00:00,0.24100000000000002,0.273,0.326 +2014-05-04 05:00:00,0.24100000000000002,0.273,0.326 +2014-05-04 06:00:00,0.24100000000000002,0.273,0.326 +2014-05-04 07:00:00,0.24100000000000002,0.272,0.326 +2014-05-04 08:00:00,0.24100000000000002,0.272,0.326 +2014-05-04 09:00:00,0.242,0.271,0.327 +2014-05-04 10:00:00,0.242,0.271,0.326 +2014-05-04 11:00:00,0.242,0.271,0.326 +2014-05-04 12:00:00,0.242,0.271,0.326 +2014-05-04 13:00:00,0.242,0.271,0.326 +2014-05-04 14:00:00,0.242,0.271,0.326 +2014-05-04 15:00:00,0.242,0.271,0.326 +2014-05-04 16:00:00,0.243,0.27,0.326 +2014-05-04 17:00:00,0.243,0.27,0.326 +2014-05-04 18:00:00,0.243,0.271,0.326 +2014-05-04 19:00:00,0.242,0.271,0.326 +2014-05-04 20:00:00,0.243,0.271,0.325 +2014-05-04 21:00:00,0.242,0.27,0.325 +2014-05-04 22:00:00,0.242,0.27,0.326 +2014-05-04 23:00:00,0.242,0.26899999999999996,0.326 +2014-05-05 00:00:00,0.242,0.271,0.325 +2014-05-05 01:00:00,0.242,0.26899999999999996,0.325 +2014-05-05 02:00:00,0.24100000000000002,0.27,0.325 +2014-05-05 03:00:00,0.24100000000000002,0.271,0.325 +2014-05-05 04:00:00,0.24100000000000002,0.271,0.325 +2014-05-05 05:00:00,0.24100000000000002,0.272,0.325 +2014-05-05 06:00:00,0.24100000000000002,0.273,0.325 +2014-05-05 07:00:00,0.24100000000000002,0.273,0.325 +2014-05-05 08:00:00,0.24100000000000002,0.273,0.326 +2014-05-05 09:00:00,0.24,0.27399999999999997,0.325 +2014-05-05 10:00:00,0.24,0.275,0.325 +2014-05-05 11:00:00,0.24,0.275,0.325 +2014-05-05 12:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 13:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 14:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 15:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 16:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 17:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 18:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 19:00:00,0.24100000000000002,0.275,0.325 +2014-05-05 20:00:00,0.24100000000000002,0.27399999999999997,0.325 +2014-05-05 21:00:00,0.24,0.275,0.325 +2014-05-05 22:00:00,0.24,0.276,0.325 +2014-05-05 23:00:00,0.24,0.276,0.325 +2014-05-06 00:00:00,0.24,0.276,0.325 +2014-05-06 01:00:00,0.239,0.276,0.325 +2014-05-06 02:00:00,0.239,0.276,0.325 +2014-05-06 03:00:00,0.239,0.276,0.325 +2014-05-06 04:00:00,0.239,0.276,0.325 +2014-05-06 05:00:00,0.239,0.276,0.325 +2014-05-06 06:00:00,0.23800000000000002,0.276,0.325 +2014-05-06 07:00:00,0.23800000000000002,0.276,0.325 +2014-05-06 08:00:00,0.23800000000000002,0.276,0.325 +2014-05-06 09:00:00,0.23800000000000002,0.276,0.325 +2014-05-06 10:00:00,0.23800000000000002,0.276,0.325 +2014-05-06 11:00:00,0.23800000000000002,0.275,0.325 +2014-05-06 12:00:00,0.239,0.275,0.325 +2014-05-06 13:00:00,0.239,0.275,0.325 +2014-05-06 14:00:00,0.239,0.275,0.325 +2014-05-06 15:00:00,0.239,0.276,0.326 +2014-05-06 16:00:00,0.239,0.276,0.32799999999999996 +2014-05-06 17:00:00,0.239,0.275,0.327 +2014-05-06 18:00:00,0.24,0.275,0.327 +2014-05-06 19:00:00,0.24,0.276,0.326 +2014-05-06 20:00:00,0.239,0.276,0.326 +2014-05-06 21:00:00,0.239,0.275,0.326 +2014-05-06 22:00:00,0.239,0.276,0.325 +2014-05-06 23:00:00,0.239,0.276,0.325 +2014-05-07 00:00:00,0.239,0.276,0.325 +2014-05-07 01:00:00,0.23800000000000002,0.276,0.325 +2014-05-07 02:00:00,0.23399999999999999,0.276,0.32899999999999996 +2014-05-07 03:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 04:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 05:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 06:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 07:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 08:00:00,0.235,0.276,0.33 +2014-05-07 09:00:00,0.237,0.276,0.32899999999999996 +2014-05-07 10:00:00,0.239,0.276,0.327 +2014-05-07 11:00:00,0.239,0.275,0.326 +2014-05-07 12:00:00,0.23800000000000002,0.275,0.326 +2014-05-07 13:00:00,0.239,0.276,0.325 +2014-05-07 14:00:00,0.23800000000000002,0.276,0.325 +2014-05-07 15:00:00,0.23800000000000002,0.276,0.325 +2014-05-07 16:00:00,0.23399999999999999,0.276,0.32899999999999996 +2014-05-07 17:00:00,0.237,0.276,0.32799999999999996 +2014-05-07 18:00:00,0.233,0.276,0.33 +2014-05-07 19:00:00,0.233,0.276,0.33 +2014-05-07 20:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 21:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 22:00:00,0.23399999999999999,0.276,0.33 +2014-05-07 23:00:00,0.235,0.276,0.33 +2014-05-08 00:00:00,0.235,0.276,0.33 +2014-05-08 01:00:00,0.235,0.276,0.33 +2014-05-08 02:00:00,0.235,0.276,0.33 +2014-05-08 03:00:00,0.235,0.276,0.33 +2014-05-08 04:00:00,0.235,0.276,0.33 +2014-05-08 05:00:00,0.235,0.276,0.32899999999999996 +2014-05-08 06:00:00,0.23600000000000002,0.276,0.32899999999999996 +2014-05-08 07:00:00,0.23600000000000002,0.276,0.32899999999999996 +2014-05-08 08:00:00,0.237,0.276,0.32899999999999996 +2014-05-08 09:00:00,0.23800000000000002,0.276,0.32799999999999996 +2014-05-08 10:00:00,0.23800000000000002,0.276,0.327 +2014-05-08 11:00:00,0.23800000000000002,0.276,0.326 +2014-05-08 12:00:00,0.23800000000000002,0.276,0.326 +2014-05-08 13:00:00,0.23800000000000002,0.276,0.325 +2014-05-08 14:00:00,0.23800000000000002,0.276,0.325 +2014-05-08 15:00:00,0.23800000000000002,0.276,0.325 +2014-05-08 16:00:00,0.23800000000000002,0.276,0.325 +2014-05-08 17:00:00,0.23800000000000002,0.276,0.325 +2014-05-08 18:00:00,0.23800000000000002,0.275,0.327 +2014-05-08 19:00:00,0.237,0.275,0.32799999999999996 +2014-05-08 20:00:00,0.23600000000000002,0.276,0.32899999999999996 +2014-05-08 21:00:00,0.235,0.275,0.33 +2014-05-08 22:00:00,0.23199999999999998,0.27399999999999997,0.331 +2014-05-08 23:00:00,0.23199999999999998,0.272,0.331 +2014-05-09 00:00:00,0.23199999999999998,0.278,0.33 +2014-05-09 01:00:00,0.233,0.28,0.33 +2014-05-09 02:00:00,0.233,0.28,0.33 +2014-05-09 03:00:00,0.233,0.28,0.33 +2014-05-09 04:00:00,0.233,0.28,0.33 +2014-05-09 05:00:00,0.23399999999999999,0.28,0.33 +2014-05-09 06:00:00,0.23399999999999999,0.28,0.33 +2014-05-09 07:00:00,0.23399999999999999,0.28,0.33 +2014-05-09 08:00:00,0.23600000000000002,0.28,0.32899999999999996 +2014-05-09 09:00:00,0.23800000000000002,0.28,0.32899999999999996 +2014-05-09 10:00:00,0.23800000000000002,0.27899999999999997,0.32799999999999996 +2014-05-09 11:00:00,0.239,0.28,0.326 +2014-05-09 12:00:00,0.239,0.28,0.326 +2014-05-09 13:00:00,0.239,0.28,0.326 +2014-05-09 14:00:00,0.239,0.28,0.326 +2014-05-09 15:00:00,0.239,0.28,0.326 +2014-05-09 16:00:00,0.239,0.28,0.325 +2014-05-09 17:00:00,0.239,0.28,0.325 +2014-05-09 18:00:00,0.239,0.28,0.325 +2014-05-09 19:00:00,0.239,0.28,0.325 +2014-05-09 20:00:00,0.23600000000000002,0.28,0.32799999999999996 +2014-05-09 21:00:00,0.23399999999999999,0.28,0.32899999999999996 +2014-05-09 22:00:00,0.235,0.28,0.32899999999999996 +2014-05-09 23:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 00:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 01:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 02:00:00,0.23600000000000002,0.28,0.32899999999999996 +2014-05-10 03:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 04:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 05:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 06:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 07:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 08:00:00,0.235,0.28,0.32899999999999996 +2014-05-10 09:00:00,0.23600000000000002,0.28,0.32799999999999996 +2014-05-10 10:00:00,0.237,0.28,0.32799999999999996 +2014-05-10 11:00:00,0.23800000000000002,0.28,0.327 +2014-05-10 12:00:00,0.23800000000000002,0.28,0.327 +2014-05-10 13:00:00,0.23800000000000002,0.28,0.326 +2014-05-10 14:00:00,0.23800000000000002,0.28,0.326 +2014-05-10 15:00:00,0.237,0.27899999999999997,0.32799999999999996 +2014-05-10 16:00:00,0.23600000000000002,0.278,0.32899999999999996 +2014-05-10 17:00:00,0.237,0.278,0.32899999999999996 +2014-05-10 18:00:00,0.23600000000000002,0.278,0.33 +2014-05-10 19:00:00,0.23399999999999999,0.278,0.33 +2014-05-10 20:00:00,0.23399999999999999,0.278,0.331 +2014-05-10 21:00:00,0.23800000000000002,0.278,0.331 +2014-05-10 22:00:00,0.243,0.278,0.331 +2014-05-10 23:00:00,0.255,0.278,0.33399999999999996 +2014-05-11 00:00:00,0.254,0.278,0.33299999999999996 +2014-05-11 01:00:00,0.253,0.278,0.332 +2014-05-11 02:00:00,0.252,0.278,0.332 +2014-05-11 03:00:00,0.252,0.278,0.332 +2014-05-11 04:00:00,0.251,0.278,0.332 +2014-05-11 05:00:00,0.251,0.278,0.331 +2014-05-11 06:00:00,0.25,0.278,0.331 +2014-05-11 07:00:00,0.25,0.278,0.331 +2014-05-11 08:00:00,0.251,0.278,0.331 +2014-05-11 09:00:00,0.253,0.278,0.33 +2014-05-11 10:00:00,0.254,0.278,0.32899999999999996 +2014-05-11 11:00:00,0.255,0.278,0.32799999999999996 +2014-05-11 12:00:00,0.254,0.278,0.32799999999999996 +2014-05-11 13:00:00,0.254,0.278,0.32799999999999996 +2014-05-11 14:00:00,0.254,0.278,0.32799999999999996 +2014-05-11 15:00:00,0.254,0.278,0.327 +2014-05-11 16:00:00,0.253,0.276,0.327 +2014-05-11 17:00:00,0.251,0.276,0.32899999999999996 +2014-05-11 18:00:00,0.249,0.276,0.33 +2014-05-11 19:00:00,0.252,0.276,0.33 +2014-05-11 20:00:00,0.253,0.276,0.32899999999999996 +2014-05-11 21:00:00,0.254,0.276,0.32899999999999996 +2014-05-11 22:00:00,0.254,0.276,0.32899999999999996 +2014-05-11 23:00:00,0.254,0.276,0.32799999999999996 +2014-05-12 00:00:00,0.254,0.276,0.32799999999999996 +2014-05-12 01:00:00,0.254,0.276,0.32799999999999996 +2014-05-12 02:00:00,0.254,0.276,0.32799999999999996 +2014-05-12 03:00:00,0.253,0.276,0.32799999999999996 +2014-05-12 04:00:00,0.253,0.276,0.32799999999999996 +2014-05-12 05:00:00,0.253,0.276,0.32799999999999996 +2014-05-12 06:00:00,0.252,0.276,0.32799999999999996 +2014-05-12 07:00:00,0.252,0.276,0.327 +2014-05-12 08:00:00,0.252,0.276,0.327 +2014-05-12 09:00:00,0.252,0.276,0.327 +2014-05-12 10:00:00,0.251,0.276,0.327 +2014-05-12 11:00:00,0.251,0.276,0.327 +2014-05-12 12:00:00,0.247,0.276,0.33 +2014-05-12 13:00:00,0.249,0.276,0.33 +2014-05-12 14:00:00,0.251,0.276,0.32899999999999996 +2014-05-12 15:00:00,0.251,0.276,0.32799999999999996 +2014-05-12 16:00:00,0.249,0.275,0.33 +2014-05-12 17:00:00,0.25,0.275,0.32899999999999996 +2014-05-12 18:00:00,0.25,0.275,0.32899999999999996 +2014-05-12 19:00:00,0.249,0.275,0.33 +2014-05-12 20:00:00,0.249,0.275,0.33 +2014-05-12 21:00:00,0.249,0.275,0.32899999999999996 +2014-05-12 22:00:00,0.249,0.275,0.32899999999999996 +2014-05-12 23:00:00,0.248,0.275,0.33 +2014-05-13 00:00:00,0.24600000000000002,0.275,0.33 +2014-05-13 01:00:00,0.24600000000000002,0.275,0.33 +2014-05-13 02:00:00,0.24600000000000002,0.276,0.33 +2014-05-13 03:00:00,0.24600000000000002,0.276,0.33 +2014-05-13 04:00:00,0.24600000000000002,0.276,0.33 +2014-05-13 05:00:00,0.24600000000000002,0.276,0.33 +2014-05-13 06:00:00,0.24600000000000002,0.276,0.33 +2014-05-13 07:00:00,0.24600000000000002,0.276,0.33 +2014-05-13 08:00:00,0.244,0.276,0.331 +2014-05-13 09:00:00,0.245,0.276,0.331 +2014-05-13 10:00:00,0.249,0.276,0.33 +2014-05-13 11:00:00,0.252,0.276,0.32899999999999996 +2014-05-13 12:00:00,0.254,0.276,0.32899999999999996 +2014-05-13 13:00:00,0.254,0.275,0.32799999999999996 +2014-05-13 14:00:00,0.254,0.275,0.327 +2014-05-13 15:00:00,0.254,0.275,0.327 +2014-05-13 16:00:00,0.253,0.275,0.327 +2014-05-13 17:00:00,0.253,0.273,0.327 +2014-05-13 18:00:00,0.253,0.273,0.327 +2014-05-13 19:00:00,0.253,0.273,0.327 +2014-05-13 20:00:00,0.253,0.273,0.327 +2014-05-13 21:00:00,0.252,0.273,0.326 +2014-05-13 22:00:00,0.252,0.273,0.326 +2014-05-13 23:00:00,0.252,0.273,0.326 +2014-05-14 00:00:00,0.252,0.273,0.326 +2014-05-14 01:00:00,0.251,0.275,0.326 +2014-05-14 02:00:00,0.251,0.275,0.326 +2014-05-14 03:00:00,0.251,0.275,0.326 +2014-05-14 04:00:00,0.25,0.275,0.326 +2014-05-14 05:00:00,0.25,0.275,0.326 +2014-05-14 06:00:00,0.25,0.275,0.326 +2014-05-14 07:00:00,0.25,0.275,0.326 +2014-05-14 08:00:00,0.25,0.275,0.327 +2014-05-14 09:00:00,0.249,0.275,0.326 +2014-05-14 10:00:00,0.249,0.275,0.326 +2014-05-14 11:00:00,0.249,0.275,0.326 +2014-05-14 12:00:00,0.249,0.275,0.326 +2014-05-14 13:00:00,0.249,0.275,0.326 +2014-05-14 14:00:00,0.249,0.273,0.326 +2014-05-14 15:00:00,0.249,0.273,0.326 +2014-05-14 16:00:00,0.249,0.273,0.326 +2014-05-14 17:00:00,0.249,0.272,0.326 +2014-05-14 18:00:00,0.249,0.271,0.326 +2014-05-14 19:00:00,0.24600000000000002,0.271,0.32799999999999996 +2014-05-14 20:00:00,0.248,0.271,0.331 +2014-05-14 21:00:00,0.252,0.271,0.33 +2014-05-14 22:00:00,0.252,0.271,0.33 +2014-05-14 23:00:00,0.252,0.271,0.33 +2014-05-15 00:00:00,0.251,0.272,0.33 +2014-05-15 01:00:00,0.251,0.273,0.33 +2014-05-15 02:00:00,0.251,0.273,0.33 +2014-05-15 03:00:00,0.25,0.273,0.33 +2014-05-15 04:00:00,0.25,0.273,0.33 +2014-05-15 05:00:00,0.25,0.273,0.33 +2014-05-15 06:00:00,0.25,0.273,0.33 +2014-05-15 07:00:00,0.25,0.273,0.33 +2014-05-15 08:00:00,0.25,0.273,0.33 +2014-05-15 09:00:00,0.251,0.273,0.33 +2014-05-15 10:00:00,0.254,0.273,0.32899999999999996 +2014-05-15 11:00:00,0.255,0.273,0.32899999999999996 +2014-05-15 12:00:00,0.255,0.273,0.32799999999999996 +2014-05-15 13:00:00,0.255,0.271,0.32799999999999996 +2014-05-15 14:00:00,0.255,0.271,0.327 +2014-05-15 15:00:00,0.255,0.271,0.327 +2014-05-15 16:00:00,0.255,0.27,0.327 +2014-05-15 17:00:00,0.255,0.27,0.327 +2014-05-15 18:00:00,0.255,0.27,0.326 +2014-05-15 19:00:00,0.254,0.27,0.326 +2014-05-15 20:00:00,0.254,0.27,0.326 +2014-05-15 21:00:00,0.254,0.27,0.327 +2014-05-15 22:00:00,0.254,0.27,0.327 +2014-05-15 23:00:00,0.253,0.27,0.326 +2014-05-16 00:00:00,0.253,0.27,0.326 +2014-05-16 01:00:00,0.253,0.27,0.326 +2014-05-16 02:00:00,0.253,0.27,0.326 +2014-05-16 03:00:00,0.253,0.271,0.326 +2014-05-16 04:00:00,0.252,0.271,0.326 +2014-05-16 05:00:00,0.252,0.271,0.326 +2014-05-16 06:00:00,0.252,0.27,0.327 +2014-05-16 07:00:00,0.252,0.27,0.327 +2014-05-16 08:00:00,0.252,0.27,0.327 +2014-05-16 09:00:00,0.252,0.27,0.327 +2014-05-16 10:00:00,0.252,0.27,0.327 +2014-05-16 11:00:00,0.252,0.27,0.326 +2014-05-16 12:00:00,0.251,0.27,0.326 +2014-05-16 13:00:00,0.251,0.27,0.326 +2014-05-16 14:00:00,0.251,0.26899999999999996,0.326 +2014-05-16 15:00:00,0.251,0.268,0.326 +2014-05-16 16:00:00,0.251,0.268,0.326 +2014-05-16 17:00:00,0.251,0.267,0.326 +2014-05-16 18:00:00,0.251,0.266,0.326 +2014-05-16 19:00:00,0.251,0.266,0.326 +2014-05-16 20:00:00,0.251,0.266,0.326 +2014-05-16 21:00:00,0.25,0.266,0.325 +2014-05-16 22:00:00,0.25,0.266,0.325 +2014-05-16 23:00:00,0.25,0.266,0.326 +2014-05-17 00:00:00,0.25,0.266,0.325 +2014-05-17 01:00:00,0.249,0.267,0.325 +2014-05-17 02:00:00,0.249,0.268,0.325 +2014-05-17 03:00:00,0.249,0.268,0.325 +2014-05-17 04:00:00,0.249,0.268,0.325 +2014-05-17 05:00:00,0.248,0.268,0.325 +2014-05-17 06:00:00,0.248,0.268,0.325 +2014-05-17 07:00:00,0.248,0.268,0.325 +2014-05-17 08:00:00,0.248,0.268,0.326 +2014-05-17 09:00:00,0.248,0.268,0.326 +2014-05-17 10:00:00,0.248,0.268,0.326 +2014-05-17 11:00:00,0.248,0.268,0.326 +2014-05-17 12:00:00,0.248,0.265,0.326 +2014-05-17 13:00:00,0.248,0.264,0.325 +2014-05-17 14:00:00,0.248,0.266,0.325 +2014-05-17 15:00:00,0.248,0.267,0.325 +2014-05-17 16:00:00,0.248,0.268,0.325 +2014-05-17 17:00:00,0.248,0.268,0.325 +2014-05-17 18:00:00,0.248,0.268,0.325 +2014-05-17 19:00:00,0.247,0.268,0.325 +2014-05-17 20:00:00,0.248,0.266,0.325 +2014-05-17 21:00:00,0.247,0.266,0.325 +2014-05-17 22:00:00,0.247,0.266,0.325 +2014-05-17 23:00:00,0.247,0.266,0.325 +2014-05-18 00:00:00,0.24600000000000002,0.268,0.325 +2014-05-18 01:00:00,0.24600000000000002,0.268,0.325 +2014-05-18 02:00:00,0.24600000000000002,0.268,0.325 +2014-05-18 03:00:00,0.245,0.268,0.325 +2014-05-18 04:00:00,0.24600000000000002,0.268,0.325 +2014-05-18 05:00:00,0.245,0.268,0.325 +2014-05-18 06:00:00,0.245,0.268,0.325 +2014-05-18 07:00:00,0.245,0.268,0.325 +2014-05-18 08:00:00,0.245,0.268,0.325 +2014-05-18 09:00:00,0.245,0.268,0.325 +2014-05-18 10:00:00,0.245,0.268,0.325 +2014-05-18 11:00:00,0.245,0.268,0.325 +2014-05-18 12:00:00,0.245,0.268,0.325 +2014-05-18 13:00:00,0.244,0.268,0.325 +2014-05-18 14:00:00,0.244,0.266,0.325 +2014-05-18 15:00:00,0.244,0.266,0.324 +2014-05-18 16:00:00,0.244,0.266,0.324 +2014-05-18 17:00:00,0.244,0.266,0.324 +2014-05-18 18:00:00,0.244,0.266,0.324 +2014-05-18 19:00:00,0.244,0.266,0.324 +2014-05-18 20:00:00,0.244,0.266,0.324 +2014-05-18 21:00:00,0.244,0.266,0.324 +2014-05-18 22:00:00,0.243,0.266,0.324 +2014-05-18 23:00:00,0.243,0.266,0.324 +2014-05-19 00:00:00,0.243,0.266,0.324 +2014-05-19 01:00:00,0.243,0.266,0.324 +2014-05-19 02:00:00,0.242,0.266,0.324 +2014-05-19 03:00:00,0.242,0.266,0.324 +2014-05-19 04:00:00,0.242,0.266,0.324 +2014-05-19 05:00:00,0.242,0.266,0.324 +2014-05-19 06:00:00,0.24100000000000002,0.266,0.324 +2014-05-19 07:00:00,0.24100000000000002,0.266,0.325 +2014-05-19 08:00:00,0.24100000000000002,0.266,0.325 +2014-05-19 09:00:00,0.24100000000000002,0.266,0.325 +2014-05-19 10:00:00,0.24100000000000002,0.266,0.324 +2014-05-19 11:00:00,0.24100000000000002,0.266,0.324 +2014-05-19 12:00:00,0.24100000000000002,0.266,0.324 +2014-05-19 13:00:00,0.24100000000000002,0.265,0.324 +2014-05-19 14:00:00,0.24100000000000002,0.264,0.324 +2014-05-19 15:00:00,0.24100000000000002,0.264,0.32299999999999995 +2014-05-19 16:00:00,0.24100000000000002,0.264,0.32299999999999995 +2014-05-19 17:00:00,0.24100000000000002,0.264,0.32299999999999995 +2014-05-19 18:00:00,0.24,0.263,0.32299999999999995 +2014-05-19 19:00:00,0.24,0.263,0.32299999999999995 +2014-05-19 20:00:00,0.24,0.263,0.32299999999999995 +2014-05-19 21:00:00,0.24,0.263,0.322 +2014-05-19 22:00:00,0.24,0.263,0.322 +2014-05-19 23:00:00,0.24,0.263,0.322 +2014-05-20 00:00:00,0.239,0.263,0.322 +2014-05-20 01:00:00,0.239,0.263,0.322 +2014-05-20 02:00:00,0.239,0.263,0.322 +2014-05-20 03:00:00,0.239,0.263,0.322 +2014-05-20 04:00:00,0.23800000000000002,0.263,0.32299999999999995 +2014-05-20 05:00:00,0.23800000000000002,0.263,0.32299999999999995 +2014-05-20 06:00:00,0.23800000000000002,0.263,0.32299999999999995 +2014-05-20 07:00:00,0.23800000000000002,0.263,0.32299999999999995 +2014-05-20 08:00:00,0.23800000000000002,0.263,0.324 +2014-05-20 09:00:00,0.23800000000000002,0.263,0.32299999999999995 +2014-05-20 10:00:00,0.23800000000000002,0.263,0.32299999999999995 +2014-05-20 11:00:00,0.23800000000000002,0.263,0.32299999999999995 +2014-05-20 12:00:00,0.23800000000000002,0.263,0.322 +2014-05-20 13:00:00,0.237,0.263,0.322 +2014-05-20 14:00:00,0.237,0.263,0.322 +2014-05-20 15:00:00,0.237,0.263,0.322 +2014-05-20 16:00:00,0.237,0.263,0.321 +2014-05-20 17:00:00,0.237,0.263,0.321 +2014-05-20 18:00:00,0.237,0.263,0.321 +2014-05-20 19:00:00,0.237,0.263,0.321 +2014-05-20 20:00:00,0.237,0.263,0.321 +2014-05-20 21:00:00,0.23600000000000002,0.263,0.321 +2014-05-20 22:00:00,0.23600000000000002,0.263,0.32 +2014-05-20 23:00:00,0.23600000000000002,0.263,0.32 +2014-05-21 00:00:00,0.23600000000000002,0.263,0.321 +2014-05-21 01:00:00,0.235,0.263,0.321 +2014-05-21 02:00:00,0.235,0.264,0.321 +2014-05-21 03:00:00,0.23399999999999999,0.264,0.321 +2014-05-21 04:00:00,0.23399999999999999,0.265,0.321 +2014-05-21 05:00:00,0.23399999999999999,0.266,0.321 +2014-05-21 06:00:00,0.23399999999999999,0.266,0.321 +2014-05-21 07:00:00,0.23399999999999999,0.266,0.321 +2014-05-21 08:00:00,0.233,0.266,0.321 +2014-05-21 09:00:00,0.23399999999999999,0.267,0.321 +2014-05-21 10:00:00,0.23399999999999999,0.268,0.321 +2014-05-21 11:00:00,0.23399999999999999,0.268,0.321 +2014-05-21 12:00:00,0.23399999999999999,0.268,0.32 +2014-05-21 13:00:00,0.23399999999999999,0.268,0.32 +2014-05-21 14:00:00,0.23399999999999999,0.268,0.32 +2014-05-21 15:00:00,0.233,0.268,0.319 +2014-05-21 16:00:00,0.233,0.268,0.319 +2014-05-21 17:00:00,0.233,0.268,0.319 +2014-05-21 18:00:00,0.233,0.268,0.318 +2014-05-21 19:00:00,0.233,0.268,0.318 +2014-05-21 20:00:00,0.233,0.268,0.318 +2014-05-21 21:00:00,0.233,0.268,0.318 +2014-05-21 22:00:00,0.233,0.268,0.318 +2014-05-21 23:00:00,0.23199999999999998,0.268,0.318 +2014-05-22 00:00:00,0.23199999999999998,0.26899999999999996,0.318 +2014-05-22 01:00:00,0.23199999999999998,0.26899999999999996,0.318 +2014-05-22 02:00:00,0.231,0.27,0.318 +2014-05-22 03:00:00,0.231,0.27,0.318 +2014-05-22 04:00:00,0.231,0.27,0.318 +2014-05-22 05:00:00,0.231,0.27,0.318 +2014-05-22 06:00:00,0.231,0.27,0.318 +2014-05-22 07:00:00,0.231,0.27,0.319 +2014-05-22 08:00:00,0.231,0.27,0.319 +2014-05-22 09:00:00,0.231,0.27,0.318 +2014-05-22 10:00:00,0.23199999999999998,0.27,0.318 +2014-05-22 11:00:00,0.23199999999999998,0.27,0.319 +2014-05-22 12:00:00,0.23199999999999998,0.27,0.318 +2014-05-22 13:00:00,0.23199999999999998,0.27,0.317 +2014-05-22 14:00:00,0.231,0.27,0.316 +2014-05-22 15:00:00,0.23199999999999998,0.27,0.316 +2014-05-22 16:00:00,0.231,0.27,0.316 +2014-05-22 17:00:00,0.231,0.27,0.315 +2014-05-22 18:00:00,0.231,0.27,0.315 +2014-05-22 19:00:00,0.231,0.27,0.315 +2014-05-22 20:00:00,0.231,0.27,0.316 +2014-05-22 21:00:00,0.231,0.27,0.316 +2014-05-22 22:00:00,0.23,0.27,0.32 +2014-05-22 23:00:00,0.23,0.27,0.32 +2014-05-23 00:00:00,0.23,0.27,0.321 +2014-05-23 01:00:00,0.23,0.27,0.32 +2014-05-23 02:00:00,0.22899999999999998,0.27,0.321 +2014-05-23 03:00:00,0.22899999999999998,0.27,0.321 +2014-05-23 04:00:00,0.22899999999999998,0.27,0.321 +2014-05-23 05:00:00,0.22899999999999998,0.27,0.321 +2014-05-23 06:00:00,0.228,0.27,0.321 +2014-05-23 07:00:00,0.228,0.27,0.321 +2014-05-23 08:00:00,0.228,0.27,0.321 +2014-05-23 09:00:00,0.22699999999999998,0.27,0.322 +2014-05-23 10:00:00,0.22699999999999998,0.27,0.32299999999999995 +2014-05-23 11:00:00,0.22699999999999998,0.27,0.32299999999999995 +2014-05-23 12:00:00,0.228,0.27,0.322 +2014-05-23 13:00:00,0.22899999999999998,0.27,0.322 +2014-05-23 14:00:00,0.23,0.27,0.321 +2014-05-23 15:00:00,0.231,0.27,0.321 +2014-05-23 16:00:00,0.23199999999999998,0.27,0.319 +2014-05-23 17:00:00,0.23199999999999998,0.271,0.318 +2014-05-23 18:00:00,0.23199999999999998,0.271,0.317 +2014-05-23 19:00:00,0.23199999999999998,0.27399999999999997,0.317 +2014-05-23 20:00:00,0.23199999999999998,0.27899999999999997,0.317 +2014-05-23 21:00:00,0.23199999999999998,0.28,0.317 +2014-05-23 22:00:00,0.23199999999999998,0.28,0.316 +2014-05-23 23:00:00,0.231,0.28,0.316 +2014-05-24 00:00:00,0.231,0.28,0.316 +2014-05-24 01:00:00,0.231,0.28,0.316 +2014-05-24 02:00:00,0.231,0.28,0.316 +2014-05-24 03:00:00,0.231,0.28,0.316 +2014-05-24 04:00:00,0.23,0.28,0.316 +2014-05-24 05:00:00,0.23,0.28,0.317 +2014-05-24 06:00:00,0.23,0.28,0.317 +2014-05-24 07:00:00,0.23,0.28,0.317 +2014-05-24 08:00:00,0.23,0.28,0.317 +2014-05-24 09:00:00,0.23,0.28,0.317 +2014-05-24 10:00:00,0.23,0.28,0.317 +2014-05-24 11:00:00,0.23,0.28,0.316 +2014-05-24 12:00:00,0.23,0.27899999999999997,0.316 +2014-05-24 13:00:00,0.23,0.27899999999999997,0.316 +2014-05-24 14:00:00,0.231,0.27899999999999997,0.316 +2014-05-24 15:00:00,0.231,0.278,0.316 +2014-05-24 16:00:00,0.23,0.278,0.316 +2014-05-24 17:00:00,0.231,0.278,0.316 +2014-05-24 18:00:00,0.23,0.278,0.315 +2014-05-24 19:00:00,0.23,0.278,0.315 +2014-05-24 20:00:00,0.23,0.278,0.315 +2014-05-24 21:00:00,0.23,0.276,0.315 +2014-05-24 22:00:00,0.23,0.276,0.315 +2014-05-24 23:00:00,0.23,0.276,0.315 +2014-05-25 00:00:00,0.23,0.276,0.315 +2014-05-25 01:00:00,0.22899999999999998,0.27699999999999997,0.315 +2014-05-25 02:00:00,0.22899999999999998,0.276,0.315 +2014-05-25 03:00:00,0.22899999999999998,0.276,0.315 +2014-05-25 04:00:00,0.228,0.276,0.315 +2014-05-25 05:00:00,0.228,0.276,0.315 +2014-05-25 06:00:00,0.228,0.276,0.315 +2014-05-25 07:00:00,0.228,0.276,0.315 +2014-05-25 08:00:00,0.228,0.276,0.315 +2014-05-25 09:00:00,0.22699999999999998,0.276,0.315 +2014-05-25 10:00:00,0.22699999999999998,0.276,0.315 +2014-05-25 11:00:00,0.22699999999999998,0.276,0.315 +2014-05-25 12:00:00,0.228,0.276,0.315 +2014-05-25 13:00:00,0.228,0.276,0.314 +2014-05-25 14:00:00,0.228,0.276,0.314 +2014-05-25 15:00:00,0.228,0.276,0.313 +2014-05-25 16:00:00,0.228,0.276,0.313 +2014-05-25 17:00:00,0.22699999999999998,0.276,0.313 +2014-05-25 18:00:00,0.228,0.275,0.313 +2014-05-25 19:00:00,0.228,0.275,0.312 +2014-05-25 20:00:00,0.228,0.275,0.313 +2014-05-25 21:00:00,0.22699999999999998,0.275,0.312 +2014-05-25 22:00:00,0.22699999999999998,0.275,0.313 +2014-05-25 23:00:00,0.22699999999999998,0.275,0.312 +2014-05-26 00:00:00,0.22699999999999998,0.275,0.312 +2014-05-26 01:00:00,0.22699999999999998,0.275,0.312 +2014-05-26 02:00:00,0.226,0.275,0.312 +2014-05-26 03:00:00,0.226,0.275,0.313 +2014-05-26 04:00:00,0.226,0.275,0.313 +2014-05-26 05:00:00,0.226,0.275,0.313 +2014-05-26 06:00:00,0.226,0.276,0.313 +2014-05-26 07:00:00,0.226,0.276,0.314 +2014-05-26 08:00:00,0.226,0.275,0.314 +2014-05-26 09:00:00,0.22699999999999998,0.275,0.315 +2014-05-26 10:00:00,0.22699999999999998,0.275,0.316 +2014-05-26 11:00:00,0.22699999999999998,0.275,0.316 +2014-05-26 12:00:00,0.22699999999999998,0.275,0.316 +2014-05-26 13:00:00,0.22699999999999998,0.275,0.316 +2014-05-26 14:00:00,0.228,0.275,0.316 +2014-05-26 15:00:00,0.228,0.275,0.316 +2014-05-26 16:00:00,0.228,0.275,0.316 +2014-05-26 17:00:00,0.22899999999999998,0.275,0.315 +2014-05-26 18:00:00,0.228,0.275,0.315 +2014-05-26 19:00:00,0.22899999999999998,0.275,0.315 +2014-05-26 20:00:00,0.22899999999999998,0.275,0.315 +2014-05-26 21:00:00,0.22899999999999998,0.27399999999999997,0.315 +2014-05-26 22:00:00,0.22899999999999998,0.27399999999999997,0.315 +2014-05-26 23:00:00,0.22899999999999998,0.275,0.316 +2014-05-27 00:00:00,0.22899999999999998,0.275,0.316 +2014-05-27 01:00:00,0.22899999999999998,0.275,0.318 +2014-05-27 02:00:00,0.22899999999999998,0.275,0.318 +2014-05-27 03:00:00,0.22899999999999998,0.275,0.319 +2014-05-27 04:00:00,0.23,0.275,0.319 +2014-05-27 05:00:00,0.23199999999999998,0.275,0.319 +2014-05-27 06:00:00,0.237,0.275,0.319 +2014-05-27 07:00:00,0.239,0.275,0.319 +2014-05-27 08:00:00,0.239,0.275,0.319 +2014-05-27 09:00:00,0.239,0.275,0.319 +2014-05-27 10:00:00,0.239,0.275,0.319 +2014-05-27 11:00:00,0.239,0.275,0.319 +2014-05-27 12:00:00,0.239,0.275,0.319 +2014-05-27 13:00:00,0.23800000000000002,0.275,0.319 +2014-05-27 14:00:00,0.23800000000000002,0.273,0.319 +2014-05-27 15:00:00,0.239,0.273,0.319 +2014-05-27 16:00:00,0.239,0.273,0.318 +2014-05-27 17:00:00,0.239,0.273,0.318 +2014-05-27 18:00:00,0.239,0.272,0.318 +2014-05-27 19:00:00,0.239,0.271,0.318 +2014-05-27 20:00:00,0.239,0.271,0.318 +2014-05-27 21:00:00,0.239,0.271,0.318 +2014-05-27 22:00:00,0.239,0.271,0.318 +2014-05-27 23:00:00,0.23800000000000002,0.271,0.318 +2014-05-28 00:00:00,0.23800000000000002,0.271,0.318 +2014-05-28 01:00:00,0.23800000000000002,0.271,0.318 +2014-05-28 02:00:00,0.23800000000000002,0.271,0.318 +2014-05-28 03:00:00,0.23800000000000002,0.272,0.318 +2014-05-28 04:00:00,0.23800000000000002,0.272,0.318 +2014-05-28 05:00:00,0.23800000000000002,0.273,0.318 +2014-05-28 06:00:00,0.23800000000000002,0.272,0.318 +2014-05-28 07:00:00,0.23800000000000002,0.272,0.318 +2014-05-28 08:00:00,0.23800000000000002,0.272,0.318 +2014-05-28 09:00:00,0.23800000000000002,0.272,0.318 +2014-05-28 10:00:00,0.23800000000000002,0.271,0.317 +2014-05-28 11:00:00,0.23800000000000002,0.271,0.317 +2014-05-28 12:00:00,0.23800000000000002,0.271,0.317 +2014-05-28 13:00:00,0.23800000000000002,0.271,0.317 +2014-05-28 14:00:00,0.23800000000000002,0.27,0.316 +2014-05-28 15:00:00,0.23800000000000002,0.27,0.316 +2014-05-28 16:00:00,0.237,0.27,0.316 +2014-05-28 17:00:00,0.237,0.27,0.316 +2014-05-28 18:00:00,0.237,0.27,0.316 +2014-05-28 19:00:00,0.237,0.26899999999999996,0.316 +2014-05-28 20:00:00,0.237,0.26899999999999996,0.316 +2014-05-28 21:00:00,0.237,0.26899999999999996,0.316 +2014-05-28 22:00:00,0.237,0.27,0.316 +2014-05-28 23:00:00,0.237,0.27,0.316 +2014-05-29 00:00:00,0.237,0.27,0.316 +2014-05-29 01:00:00,0.237,0.27,0.316 +2014-05-29 02:00:00,0.237,0.27,0.316 +2014-05-29 03:00:00,0.237,0.27,0.316 +2014-05-29 04:00:00,0.237,0.27,0.316 +2014-05-29 05:00:00,0.237,0.27,0.316 +2014-05-29 06:00:00,0.237,0.27,0.316 +2014-05-29 07:00:00,0.237,0.27,0.316 +2014-05-29 08:00:00,0.23600000000000002,0.27,0.317 +2014-05-29 09:00:00,0.23600000000000002,0.27,0.317 +2014-05-29 10:00:00,0.237,0.27,0.317 +2014-05-29 11:00:00,0.237,0.27,0.317 +2014-05-29 12:00:00,0.237,0.27,0.317 +2014-05-29 13:00:00,0.237,0.26899999999999996,0.317 +2014-05-29 14:00:00,0.237,0.268,0.319 +2014-05-29 15:00:00,0.237,0.268,0.32 +2014-05-29 16:00:00,0.23600000000000002,0.268,0.321 +2014-05-29 17:00:00,0.237,0.266,0.321 +2014-05-29 18:00:00,0.245,0.266,0.321 +2014-05-29 19:00:00,0.25,0.266,0.32299999999999995 +2014-05-29 20:00:00,0.251,0.267,0.32299999999999995 +2014-05-29 21:00:00,0.252,0.267,0.32299999999999995 +2014-05-29 22:00:00,0.252,0.267,0.32299999999999995 +2014-05-29 23:00:00,0.252,0.268,0.32299999999999995 +2014-05-30 00:00:00,0.251,0.268,0.32299999999999995 +2014-05-30 01:00:00,0.251,0.268,0.322 +2014-05-30 02:00:00,0.251,0.268,0.322 +2014-05-30 03:00:00,0.251,0.268,0.322 +2014-05-30 04:00:00,0.251,0.268,0.322 +2014-05-30 05:00:00,0.25,0.268,0.322 +2014-05-30 06:00:00,0.249,0.268,0.322 +2014-05-30 07:00:00,0.249,0.268,0.322 +2014-05-30 08:00:00,0.249,0.268,0.322 +2014-05-30 09:00:00,0.249,0.26899999999999996,0.322 +2014-05-30 10:00:00,0.249,0.268,0.322 +2014-05-30 11:00:00,0.249,0.268,0.322 +2014-05-30 12:00:00,0.249,0.268,0.321 +2014-05-30 13:00:00,0.249,0.267,0.321 +2014-05-30 14:00:00,0.248,0.266,0.32 +2014-05-30 15:00:00,0.249,0.266,0.32 +2014-05-30 16:00:00,0.248,0.266,0.319 +2014-05-30 17:00:00,0.248,0.266,0.319 +2014-05-30 18:00:00,0.247,0.265,0.319 +2014-05-30 19:00:00,0.247,0.265,0.318 +2014-05-30 20:00:00,0.24600000000000002,0.265,0.318 +2014-05-30 21:00:00,0.24600000000000002,0.264,0.318 +2014-05-30 22:00:00,0.24600000000000002,0.264,0.318 +2014-05-30 23:00:00,0.24600000000000002,0.265,0.318 +2014-05-31 00:00:00,0.24600000000000002,0.265,0.318 +2014-05-31 01:00:00,0.245,0.266,0.318 +2014-05-31 02:00:00,0.245,0.266,0.318 +2014-05-31 03:00:00,0.245,0.266,0.318 +2014-05-31 04:00:00,0.244,0.266,0.318 +2014-05-31 05:00:00,0.244,0.266,0.318 +2014-05-31 06:00:00,0.244,0.266,0.318 +2014-05-31 07:00:00,0.244,0.266,0.318 +2014-05-31 08:00:00,0.244,0.266,0.318 +2014-05-31 09:00:00,0.244,0.266,0.318 +2014-05-31 10:00:00,0.244,0.266,0.318 +2014-05-31 11:00:00,0.243,0.266,0.318 +2014-05-31 12:00:00,0.243,0.265,0.318 +2014-05-31 13:00:00,0.243,0.264,0.317 +2014-05-31 14:00:00,0.243,0.264,0.317 +2014-05-31 15:00:00,0.243,0.264,0.317 +2014-05-31 16:00:00,0.243,0.263,0.317 +2014-05-31 17:00:00,0.243,0.263,0.317 +2014-05-31 18:00:00,0.243,0.263,0.317 +2014-05-31 19:00:00,0.243,0.263,0.316 +2014-05-31 20:00:00,0.243,0.262,0.316 +2014-05-31 21:00:00,0.243,0.261,0.316 +2014-05-31 22:00:00,0.242,0.261,0.316 +2014-05-31 23:00:00,0.242,0.261,0.316 +2014-06-01 00:00:00,0.242,0.262,0.316 +2014-06-01 01:00:00,0.242,0.262,0.316 +2014-06-01 02:00:00,0.242,0.263,0.316 +2014-06-01 03:00:00,0.24100000000000002,0.263,0.317 +2014-06-01 04:00:00,0.24100000000000002,0.263,0.317 +2014-06-01 05:00:00,0.24100000000000002,0.263,0.317 +2014-06-01 06:00:00,0.24100000000000002,0.263,0.317 +2014-06-01 07:00:00,0.24100000000000002,0.263,0.317 +2014-06-01 08:00:00,0.24100000000000002,0.263,0.318 +2014-06-01 09:00:00,0.24100000000000002,0.263,0.318 +2014-06-01 10:00:00,0.24100000000000002,0.263,0.318 +2014-06-01 11:00:00,0.24,0.262,0.318 +2014-06-01 12:00:00,0.24,0.261,0.317 +2014-06-01 13:00:00,0.24,0.261,0.316 +2014-06-01 14:00:00,0.24,0.261,0.316 +2014-06-01 15:00:00,0.24,0.26,0.316 +2014-06-01 16:00:00,0.24,0.259,0.315 +2014-06-01 17:00:00,0.239,0.259,0.315 +2014-06-01 18:00:00,0.239,0.259,0.315 +2014-06-01 19:00:00,0.239,0.262,0.315 +2014-06-01 20:00:00,0.239,0.258,0.315 +2014-06-01 21:00:00,0.239,0.258,0.315 +2014-06-01 22:00:00,0.239,0.258,0.315 +2014-06-01 23:00:00,0.23800000000000002,0.259,0.315 +2014-06-02 00:00:00,0.23800000000000002,0.259,0.315 +2014-06-02 01:00:00,0.23800000000000002,0.259,0.315 +2014-06-02 02:00:00,0.23800000000000002,0.259,0.315 +2014-06-02 03:00:00,0.23800000000000002,0.259,0.315 +2014-06-02 04:00:00,0.23800000000000002,0.259,0.315 +2014-06-02 05:00:00,0.237,0.259,0.315 +2014-06-02 06:00:00,0.237,0.259,0.315 +2014-06-02 07:00:00,0.237,0.259,0.315 +2014-06-02 08:00:00,0.237,0.259,0.316 +2014-06-02 09:00:00,0.237,0.259,0.316 +2014-06-02 10:00:00,0.237,0.259,0.316 +2014-06-02 11:00:00,0.237,0.259,0.315 +2014-06-02 12:00:00,0.23600000000000002,0.259,0.315 +2014-06-02 13:00:00,0.23600000000000002,0.259,0.315 +2014-06-02 14:00:00,0.23600000000000002,0.258,0.314 +2014-06-02 15:00:00,0.23600000000000002,0.258,0.314 +2014-06-02 16:00:00,0.23600000000000002,0.256,0.314 +2014-06-02 17:00:00,0.235,0.256,0.313 +2014-06-02 18:00:00,0.235,0.255,0.313 +2014-06-02 19:00:00,0.235,0.254,0.313 +2014-06-02 20:00:00,0.23399999999999999,0.254,0.313 +2014-06-02 21:00:00,0.23399999999999999,0.254,0.313 +2014-06-02 22:00:00,0.23399999999999999,0.254,0.313 +2014-06-02 23:00:00,0.23399999999999999,0.254,0.313 +2014-06-03 00:00:00,0.233,0.254,0.313 +2014-06-03 01:00:00,0.233,0.255,0.313 +2014-06-03 02:00:00,0.233,0.256,0.313 +2014-06-03 03:00:00,0.233,0.256,0.313 +2014-06-03 04:00:00,0.23199999999999998,0.256,0.313 +2014-06-03 05:00:00,0.233,0.256,0.313 +2014-06-03 06:00:00,0.23199999999999998,0.256,0.313 +2014-06-03 07:00:00,0.23199999999999998,0.256,0.313 +2014-06-03 08:00:00,0.23199999999999998,0.256,0.313 +2014-06-03 09:00:00,0.23199999999999998,0.256,0.313 +2014-06-03 10:00:00,0.23199999999999998,0.256,0.314 +2014-06-03 11:00:00,0.23199999999999998,0.256,0.314 +2014-06-03 12:00:00,0.231,0.256,0.314 +2014-06-03 13:00:00,0.231,0.255,0.314 +2014-06-03 14:00:00,0.231,0.254,0.313 +2014-06-03 15:00:00,0.231,0.254,0.313 +2014-06-03 16:00:00,0.231,0.253,0.313 +2014-06-03 17:00:00,0.231,0.253,0.312 +2014-06-03 18:00:00,0.231,0.252,0.312 +2014-06-03 19:00:00,0.231,0.251,0.311 +2014-06-03 20:00:00,0.231,0.251,0.311 +2014-06-03 21:00:00,0.231,0.251,0.311 +2014-06-03 22:00:00,0.23,0.251,0.311 +2014-06-03 23:00:00,0.23,0.251,0.311 +2014-06-04 00:00:00,0.23,0.251,0.311 +2014-06-04 01:00:00,0.23,0.251,0.311 +2014-06-04 02:00:00,0.23,0.251,0.311 +2014-06-04 03:00:00,0.22899999999999998,0.253,0.311 +2014-06-04 04:00:00,0.22899999999999998,0.254,0.311 +2014-06-04 05:00:00,0.22899999999999998,0.254,0.311 +2014-06-04 06:00:00,0.22899999999999998,0.254,0.311 +2014-06-04 07:00:00,0.22899999999999998,0.254,0.311 +2014-06-04 08:00:00,0.228,0.254,0.312 +2014-06-04 09:00:00,0.228,0.254,0.312 +2014-06-04 10:00:00,0.228,0.254,0.311 +2014-06-04 11:00:00,0.228,0.254,0.311 +2014-06-04 12:00:00,0.228,0.254,0.311 +2014-06-04 13:00:00,0.228,0.253,0.31 +2014-06-04 14:00:00,0.228,0.253,0.31 +2014-06-04 15:00:00,0.228,0.253,0.31 +2014-06-04 16:00:00,0.228,0.253,0.31 +2014-06-04 17:00:00,0.228,0.253,0.31 +2014-06-04 18:00:00,0.228,0.253,0.311 +2014-06-04 19:00:00,0.22899999999999998,0.253,0.311 +2014-06-04 20:00:00,0.22899999999999998,0.253,0.313 +2014-06-04 21:00:00,0.22899999999999998,0.253,0.313 +2014-06-04 22:00:00,0.22899999999999998,0.253,0.313 +2014-06-04 23:00:00,0.228,0.253,0.313 +2014-06-05 00:00:00,0.22899999999999998,0.253,0.313 +2014-06-05 01:00:00,0.228,0.253,0.313 +2014-06-05 02:00:00,0.228,0.253,0.313 +2014-06-05 03:00:00,0.228,0.254,0.314 +2014-06-05 04:00:00,0.228,0.254,0.314 +2014-06-05 05:00:00,0.228,0.254,0.314 +2014-06-05 06:00:00,0.228,0.254,0.313 +2014-06-05 07:00:00,0.228,0.254,0.313 +2014-06-05 08:00:00,0.228,0.254,0.313 +2014-06-05 09:00:00,0.228,0.254,0.312 +2014-06-05 10:00:00,0.22699999999999998,0.327,0.311 +2014-06-05 11:00:00,0.22699999999999998,0.46299999999999997,0.311 +2014-06-05 12:00:00,0.22699999999999998,0.45899999999999996,0.31 +2014-06-05 13:00:00,0.22699999999999998,0.45799999999999996,0.31 +2014-06-05 14:00:00,0.22699999999999998,0.455,0.31 +2014-06-05 15:00:00,0.226,0.45,0.309 +2014-06-05 16:00:00,0.226,0.449,0.309 +2014-06-05 17:00:00,0.226,0.45299999999999996,0.309 +2014-06-05 18:00:00,0.226,0.457,0.308 +2014-06-05 19:00:00,0.226,0.419,0.308 +2014-06-05 20:00:00,0.226,0.39,0.308 +2014-06-05 21:00:00,0.225,0.379,0.308 +2014-06-05 22:00:00,0.225,0.374,0.308 +2014-06-05 23:00:00,0.225,0.371,0.308 +2014-06-06 00:00:00,0.225,0.36700000000000005,0.308 +2014-06-06 01:00:00,0.22399999999999998,0.365,0.308 +2014-06-06 02:00:00,0.22399999999999998,0.365,0.308 +2014-06-06 03:00:00,0.22399999999999998,0.363,0.308 +2014-06-06 04:00:00,0.223,0.361,0.308 +2014-06-06 05:00:00,0.223,0.361,0.308 +2014-06-06 06:00:00,0.223,0.36,0.308 +2014-06-06 07:00:00,0.223,0.359,0.308 +2014-06-06 08:00:00,0.223,0.358,0.308 +2014-06-06 09:00:00,0.223,0.358,0.308 +2014-06-06 10:00:00,0.223,0.35700000000000004,0.308 +2014-06-06 11:00:00,0.223,0.355,0.308 +2014-06-06 12:00:00,0.222,0.355,0.308 +2014-06-06 13:00:00,0.222,0.354,0.307 +2014-06-06 14:00:00,0.222,0.35100000000000003,0.306 +2014-06-06 15:00:00,0.222,0.349,0.306 +2014-06-06 16:00:00,0.222,0.34700000000000003,0.305 +2014-06-06 17:00:00,0.222,0.345,0.305 +2014-06-06 18:00:00,0.222,0.34299999999999997,0.304 +2014-06-06 19:00:00,0.222,0.342,0.305 +2014-06-06 20:00:00,0.222,0.341,0.304 +2014-06-06 21:00:00,0.222,0.341,0.304 +2014-06-06 22:00:00,0.222,0.34,0.304 +2014-06-06 23:00:00,0.222,0.34,0.304 +2014-06-07 00:00:00,0.222,0.33899999999999997,0.304 +2014-06-07 01:00:00,0.221,0.33899999999999997,0.304 +2014-06-07 02:00:00,0.221,0.33899999999999997,0.304 +2014-06-07 03:00:00,0.221,0.33899999999999997,0.304 +2014-06-07 04:00:00,0.221,0.33899999999999997,0.304 +2014-06-07 05:00:00,0.221,0.33899999999999997,0.304 +2014-06-07 06:00:00,0.22,0.33899999999999997,0.304 +2014-06-07 07:00:00,0.22,0.33899999999999997,0.304 +2014-06-07 08:00:00,0.22,0.33899999999999997,0.305 +2014-06-07 09:00:00,0.22,0.33899999999999997,0.305 +2014-06-07 10:00:00,0.22,0.33899999999999997,0.304 +2014-06-07 11:00:00,0.22,0.33899999999999997,0.304 +2014-06-07 12:00:00,0.22,0.33799999999999997,0.303 +2014-06-07 13:00:00,0.22,0.33799999999999997,0.302 +2014-06-07 14:00:00,0.22,0.337,0.301 +2014-06-07 15:00:00,0.21899999999999997,0.335,0.301 +2014-06-07 16:00:00,0.21899999999999997,0.33399999999999996,0.3 +2014-06-07 17:00:00,0.22,0.332,0.3 +2014-06-07 18:00:00,0.21899999999999997,0.331,0.3 +2014-06-07 19:00:00,0.21899999999999997,0.33,0.3 +2014-06-07 20:00:00,0.22,0.32899999999999996,0.3 +2014-06-07 21:00:00,0.21899999999999997,0.32899999999999996,0.299 +2014-06-07 22:00:00,0.21899999999999997,0.327,0.299 +2014-06-07 23:00:00,0.21899999999999997,0.327,0.299 +2014-06-08 00:00:00,0.21899999999999997,0.327,0.299 +2014-06-08 01:00:00,0.218,0.327,0.299 +2014-06-08 02:00:00,0.218,0.327,0.299 +2014-06-08 03:00:00,0.218,0.327,0.299 +2014-06-08 04:00:00,0.218,0.327,0.299 +2014-06-08 05:00:00,0.218,0.327,0.299 +2014-06-08 06:00:00,0.218,0.327,0.299 +2014-06-08 07:00:00,0.218,0.327,0.3 +2014-06-08 08:00:00,0.218,0.327,0.3 +2014-06-08 09:00:00,0.218,0.327,0.3 +2014-06-08 10:00:00,0.217,0.327,0.299 +2014-06-08 11:00:00,0.217,0.327,0.298 +2014-06-08 12:00:00,0.217,0.327,0.298 +2014-06-08 13:00:00,0.217,0.327,0.297 +2014-06-08 14:00:00,0.217,0.326,0.29600000000000004 +2014-06-08 15:00:00,0.217,0.326,0.29600000000000004 +2014-06-08 16:00:00,0.217,0.326,0.295 +2014-06-08 17:00:00,0.217,0.324,0.295 +2014-06-08 18:00:00,0.21600000000000003,0.324,0.294 +2014-06-08 19:00:00,0.21600000000000003,0.324,0.294 +2014-06-08 20:00:00,0.21600000000000003,0.32299999999999995,0.293 +2014-06-08 21:00:00,0.21600000000000003,0.322,0.293 +2014-06-08 22:00:00,0.21600000000000003,0.322,0.293 +2014-06-08 23:00:00,0.21600000000000003,0.322,0.293 +2014-06-09 00:00:00,0.215,0.322,0.293 +2014-06-09 01:00:00,0.215,0.322,0.293 +2014-06-09 02:00:00,0.215,0.322,0.293 +2014-06-09 03:00:00,0.214,0.322,0.293 +2014-06-09 04:00:00,0.214,0.322,0.293 +2014-06-09 05:00:00,0.214,0.322,0.293 +2014-06-09 06:00:00,0.214,0.322,0.293 +2014-06-09 07:00:00,0.214,0.322,0.293 +2014-06-09 08:00:00,0.214,0.322,0.294 +2014-06-09 09:00:00,0.214,0.322,0.293 +2014-06-09 10:00:00,0.214,0.322,0.293 +2014-06-09 11:00:00,0.214,0.322,0.292 +2014-06-09 12:00:00,0.214,0.322,0.292 +2014-06-09 13:00:00,0.214,0.321,0.29100000000000004 +2014-06-09 14:00:00,0.214,0.321,0.29100000000000004 +2014-06-09 15:00:00,0.214,0.319,0.29 +2014-06-09 16:00:00,0.214,0.319,0.29 +2014-06-09 17:00:00,0.214,0.317,0.289 +2014-06-09 18:00:00,0.213,0.317,0.289 +2014-06-09 19:00:00,0.213,0.316,0.289 +2014-06-09 20:00:00,0.213,0.315,0.28800000000000003 +2014-06-09 21:00:00,0.213,0.315,0.28800000000000003 +2014-06-09 22:00:00,0.213,0.314,0.28800000000000003 +2014-06-09 23:00:00,0.231,0.314,0.294 +2014-06-10 00:00:00,0.24,0.314,0.297 +2014-06-10 01:00:00,0.23800000000000002,0.315,0.297 +2014-06-10 02:00:00,0.23600000000000002,0.315,0.297 +2014-06-10 03:00:00,0.235,0.315,0.297 +2014-06-10 04:00:00,0.23399999999999999,0.315,0.297 +2014-06-10 05:00:00,0.233,0.315,0.297 +2014-06-10 06:00:00,0.23199999999999998,0.315,0.297 +2014-06-10 07:00:00,0.231,0.315,0.29600000000000004 +2014-06-10 08:00:00,0.231,0.315,0.29600000000000004 +2014-06-10 09:00:00,0.231,0.314,0.29600000000000004 +2014-06-10 10:00:00,0.231,0.314,0.29600000000000004 +2014-06-10 11:00:00,0.23199999999999998,0.314,0.295 +2014-06-10 12:00:00,0.23199999999999998,0.314,0.295 +2014-06-10 13:00:00,0.23199999999999998,0.314,0.294 +2014-06-10 14:00:00,0.231,0.314,0.293 +2014-06-10 15:00:00,0.231,0.312,0.292 +2014-06-10 16:00:00,0.23,0.31,0.29100000000000004 +2014-06-10 17:00:00,0.22899999999999998,0.31,0.29100000000000004 +2014-06-10 18:00:00,0.228,0.309,0.29 +2014-06-10 19:00:00,0.228,0.309,0.29 +2014-06-10 20:00:00,0.228,0.307,0.29 +2014-06-10 21:00:00,0.22699999999999998,0.307,0.29 +2014-06-10 22:00:00,0.22699999999999998,0.307,0.29 +2014-06-10 23:00:00,0.226,0.307,0.29 +2014-06-11 00:00:00,0.226,0.307,0.29 +2014-06-11 01:00:00,0.226,0.307,0.29 +2014-06-11 02:00:00,0.226,0.307,0.29 +2014-06-11 03:00:00,0.225,0.307,0.29 +2014-06-11 04:00:00,0.225,0.307,0.29 +2014-06-11 05:00:00,0.225,0.307,0.29100000000000004 +2014-06-11 06:00:00,0.225,0.307,0.29100000000000004 +2014-06-11 07:00:00,0.306,0.307,0.35700000000000004 +2014-06-11 08:00:00,0.34,0.307,0.409 +2014-06-11 09:00:00,0.317,0.307,0.41 +2014-06-11 10:00:00,0.317,0.307,0.41100000000000003 +2014-06-11 11:00:00,0.314,0.307,0.41200000000000003 +2014-06-11 12:00:00,0.29100000000000004,0.307,0.41200000000000003 +2014-06-11 13:00:00,0.261,0.307,0.41200000000000003 +2014-06-11 14:00:00,0.254,0.305,0.413 +2014-06-11 15:00:00,0.252,0.304,0.41200000000000003 +2014-06-11 16:00:00,0.251,0.304,0.41200000000000003 +2014-06-11 17:00:00,0.251,0.303,0.41200000000000003 +2014-06-11 18:00:00,0.251,0.302,0.41100000000000003 +2014-06-11 19:00:00,0.251,0.302,0.41100000000000003 +2014-06-11 20:00:00,0.252,0.3,0.41100000000000003 +2014-06-11 21:00:00,0.251,0.3,0.41100000000000003 +2014-06-11 22:00:00,0.251,0.3,0.41100000000000003 +2014-06-11 23:00:00,0.251,0.3,0.41 +2014-06-12 00:00:00,0.251,0.3,0.41 +2014-06-12 01:00:00,0.251,0.3,0.41100000000000003 +2014-06-12 02:00:00,0.251,0.3,0.41100000000000003 +2014-06-12 03:00:00,0.25,0.3,0.41100000000000003 +2014-06-12 04:00:00,0.25,0.3,0.41100000000000003 +2014-06-12 05:00:00,0.25,0.3,0.41100000000000003 +2014-06-12 06:00:00,0.249,0.3,0.41100000000000003 +2014-06-12 07:00:00,0.249,0.3,0.408 +2014-06-12 08:00:00,0.249,0.3,0.40299999999999997 +2014-06-12 09:00:00,0.249,0.3,0.379 +2014-06-12 10:00:00,0.249,0.3,0.36700000000000005 +2014-06-12 11:00:00,0.249,0.3,0.36200000000000004 +2014-06-12 12:00:00,0.249,0.3,0.358 +2014-06-12 13:00:00,0.249,0.299,0.35600000000000004 +2014-06-12 14:00:00,0.248,0.298,0.35200000000000004 +2014-06-12 15:00:00,0.248,0.297,0.35 +2014-06-12 16:00:00,0.247,0.297,0.348 +2014-06-12 17:00:00,0.247,0.295,0.34600000000000003 +2014-06-12 18:00:00,0.247,0.295,0.344 +2014-06-12 19:00:00,0.24600000000000002,0.293,0.34299999999999997 +2014-06-12 20:00:00,0.24600000000000002,0.293,0.34299999999999997 +2014-06-12 21:00:00,0.24600000000000002,0.293,0.341 +2014-06-12 22:00:00,0.24600000000000002,0.292,0.33899999999999997 +2014-06-12 23:00:00,0.24600000000000002,0.292,0.33799999999999997 +2014-06-13 00:00:00,0.245,0.292,0.33799999999999997 +2014-06-13 01:00:00,0.245,0.292,0.337 +2014-06-13 02:00:00,0.245,0.292,0.337 +2014-06-13 03:00:00,0.245,0.292,0.336 +2014-06-13 04:00:00,0.244,0.293,0.336 +2014-06-13 05:00:00,0.244,0.293,0.335 +2014-06-13 06:00:00,0.244,0.293,0.335 +2014-06-13 07:00:00,0.244,0.293,0.335 +2014-06-13 08:00:00,0.243,0.293,0.33399999999999996 +2014-06-13 09:00:00,0.243,0.292,0.33399999999999996 +2014-06-13 10:00:00,0.243,0.292,0.33299999999999996 +2014-06-13 11:00:00,0.242,0.292,0.332 +2014-06-13 12:00:00,0.24100000000000002,0.292,0.332 +2014-06-13 13:00:00,0.24100000000000002,0.292,0.331 +2014-06-13 14:00:00,0.24,0.292,0.33 +2014-06-13 15:00:00,0.24,0.29,0.32899999999999996 +2014-06-13 16:00:00,0.239,0.29,0.32899999999999996 +2014-06-13 17:00:00,0.239,0.28800000000000003,0.32799999999999996 +2014-06-13 18:00:00,0.239,0.28800000000000003,0.327 +2014-06-13 19:00:00,0.23800000000000002,0.287,0.327 +2014-06-13 20:00:00,0.23800000000000002,0.287,0.326 +2014-06-13 21:00:00,0.23800000000000002,0.287,0.326 +2014-06-13 22:00:00,0.23800000000000002,0.287,0.326 +2014-06-13 23:00:00,0.237,0.287,0.326 +2014-06-14 00:00:00,0.237,0.287,0.326 +2014-06-14 01:00:00,0.237,0.287,0.326 +2014-06-14 02:00:00,0.237,0.287,0.326 +2014-06-14 03:00:00,0.23600000000000002,0.287,0.326 +2014-06-14 04:00:00,0.23600000000000002,0.287,0.326 +2014-06-14 05:00:00,0.23600000000000002,0.287,0.326 +2014-06-14 06:00:00,0.23600000000000002,0.287,0.326 +2014-06-14 07:00:00,0.23600000000000002,0.287,0.326 +2014-06-14 08:00:00,0.23600000000000002,0.287,0.326 +2014-06-14 09:00:00,0.23600000000000002,0.287,0.325 +2014-06-14 10:00:00,0.235,0.287,0.325 +2014-06-14 11:00:00,0.23399999999999999,0.287,0.325 +2014-06-14 12:00:00,0.23399999999999999,0.287,0.325 +2014-06-14 13:00:00,0.23399999999999999,0.287,0.325 +2014-06-14 14:00:00,0.233,0.287,0.324 +2014-06-14 15:00:00,0.233,0.28600000000000003,0.324 +2014-06-14 16:00:00,0.233,0.28600000000000003,0.324 +2014-06-14 17:00:00,0.233,0.285,0.324 +2014-06-14 18:00:00,0.233,0.285,0.324 +2014-06-14 19:00:00,0.23199999999999998,0.28300000000000003,0.322 +2014-06-14 20:00:00,0.23199999999999998,0.28300000000000003,0.322 +2014-06-14 21:00:00,0.23199999999999998,0.28300000000000003,0.322 +2014-06-14 22:00:00,0.23199999999999998,0.282,0.322 +2014-06-14 23:00:00,0.23199999999999998,0.282,0.322 +2014-06-15 00:00:00,0.23199999999999998,0.282,0.321 +2014-06-15 01:00:00,0.231,0.282,0.322 +2014-06-15 02:00:00,0.231,0.282,0.321 +2014-06-15 03:00:00,0.231,0.282,0.321 +2014-06-15 04:00:00,0.231,0.282,0.321 +2014-06-15 05:00:00,0.231,0.282,0.321 +2014-06-15 06:00:00,0.231,0.28300000000000003,0.322 +2014-06-15 07:00:00,0.23,0.282,0.322 +2014-06-15 08:00:00,0.23,0.282,0.322 +2014-06-15 09:00:00,0.23,0.28300000000000003,0.322 +2014-06-15 10:00:00,0.23,0.282,0.321 +2014-06-15 11:00:00,0.22899999999999998,0.282,0.321 +2014-06-15 12:00:00,0.22899999999999998,0.282,0.321 +2014-06-15 13:00:00,0.22899999999999998,0.281,0.32 +2014-06-15 14:00:00,0.22899999999999998,0.281,0.32 +2014-06-15 15:00:00,0.228,0.28,0.319 +2014-06-15 16:00:00,0.22699999999999998,0.28,0.319 +2014-06-15 17:00:00,0.228,0.28,0.319 +2014-06-15 18:00:00,0.22699999999999998,0.278,0.318 +2014-06-15 19:00:00,0.22699999999999998,0.278,0.318 +2014-06-15 20:00:00,0.22699999999999998,0.278,0.318 +2014-06-15 21:00:00,0.22699999999999998,0.27699999999999997,0.317 +2014-06-15 22:00:00,0.22699999999999998,0.276,0.317 +2014-06-15 23:00:00,0.22699999999999998,0.276,0.317 +2014-06-16 00:00:00,0.22699999999999998,0.27699999999999997,0.317 +2014-06-16 01:00:00,0.226,0.27699999999999997,0.317 +2014-06-16 02:00:00,0.226,0.278,0.317 +2014-06-16 03:00:00,0.226,0.278,0.317 +2014-06-16 04:00:00,0.226,0.278,0.317 +2014-06-16 05:00:00,0.225,0.278,0.317 +2014-06-16 06:00:00,0.225,0.278,0.318 +2014-06-16 07:00:00,0.225,0.278,0.317 +2014-06-16 08:00:00,0.225,0.278,0.318 +2014-06-16 09:00:00,0.225,0.27699999999999997,0.318 +2014-06-16 10:00:00,0.225,0.27699999999999997,0.317 +2014-06-16 11:00:00,0.225,0.276,0.316 +2014-06-16 12:00:00,0.225,0.276,0.316 +2014-06-16 13:00:00,0.22399999999999998,0.276,0.315 +2014-06-16 14:00:00,0.22399999999999998,0.276,0.315 +2014-06-16 15:00:00,0.223,0.275,0.314 +2014-06-16 16:00:00,0.223,0.27399999999999997,0.314 +2014-06-16 17:00:00,0.223,0.273,0.313 +2014-06-16 18:00:00,0.223,0.273,0.313 +2014-06-16 19:00:00,0.223,0.272,0.314 +2014-06-16 20:00:00,0.222,0.271,0.313 +2014-06-16 21:00:00,0.222,0.271,0.313 +2014-06-16 22:00:00,0.222,0.271,0.313 +2014-06-16 23:00:00,0.222,0.271,0.313 +2014-06-17 00:00:00,0.222,0.271,0.313 +2014-06-17 01:00:00,0.222,0.271,0.313 +2014-06-17 02:00:00,0.222,0.271,0.313 +2014-06-17 03:00:00,0.222,0.271,0.313 +2014-06-17 04:00:00,0.222,0.271,0.313 +2014-06-17 05:00:00,0.222,0.271,0.313 +2014-06-17 06:00:00,0.222,0.271,0.313 +2014-06-17 07:00:00,0.222,0.271,0.313 +2014-06-17 08:00:00,0.222,0.271,0.313 +2014-06-17 09:00:00,0.221,0.271,0.313 +2014-06-17 10:00:00,0.221,0.271,0.313 +2014-06-17 11:00:00,0.221,0.271,0.312 +2014-06-17 12:00:00,0.221,0.271,0.311 +2014-06-17 13:00:00,0.221,0.27,0.311 +2014-06-17 14:00:00,0.221,0.27,0.31 +2014-06-17 15:00:00,0.221,0.27,0.31 +2014-06-17 16:00:00,0.22,0.268,0.309 +2014-06-17 17:00:00,0.22,0.268,0.309 +2014-06-17 18:00:00,0.22,0.267,0.308 +2014-06-17 19:00:00,0.22,0.266,0.308 +2014-06-17 20:00:00,0.22,0.266,0.308 +2014-06-17 21:00:00,0.21899999999999997,0.266,0.308 +2014-06-17 22:00:00,0.21899999999999997,0.266,0.308 +2014-06-17 23:00:00,0.21899999999999997,0.266,0.308 +2014-06-18 00:00:00,0.218,0.266,0.308 +2014-06-18 01:00:00,0.218,0.266,0.308 +2014-06-18 02:00:00,0.218,0.266,0.308 +2014-06-18 03:00:00,0.218,0.266,0.308 +2014-06-18 04:00:00,0.218,0.266,0.308 +2014-06-18 05:00:00,0.218,0.266,0.308 +2014-06-18 06:00:00,0.217,0.266,0.308 +2014-06-18 07:00:00,0.218,0.266,0.308 +2014-06-18 08:00:00,0.217,0.266,0.309 +2014-06-18 09:00:00,0.218,0.266,0.308 +2014-06-18 10:00:00,0.217,0.266,0.308 +2014-06-18 11:00:00,0.217,0.266,0.308 +2014-06-18 12:00:00,0.217,0.266,0.307 +2014-06-18 13:00:00,0.217,0.266,0.307 +2014-06-18 14:00:00,0.21600000000000003,0.264,0.308 +2014-06-18 15:00:00,0.217,0.264,0.305 +2014-06-18 16:00:00,0.21600000000000003,0.264,0.304 +2014-06-18 17:00:00,0.21600000000000003,0.263,0.304 +2014-06-18 18:00:00,0.21600000000000003,0.263,0.304 +2014-06-18 19:00:00,0.21600000000000003,0.263,0.303 +2014-06-18 20:00:00,0.21600000000000003,0.263,0.303 +2014-06-18 21:00:00,0.21600000000000003,0.263,0.303 +2014-06-18 22:00:00,0.21600000000000003,0.263,0.303 +2014-06-18 23:00:00,0.21600000000000003,0.263,0.303 +2014-06-19 00:00:00,0.215,0.263,0.303 +2014-06-19 01:00:00,0.215,0.264,0.303 +2014-06-19 02:00:00,0.214,0.264,0.303 +2014-06-19 03:00:00,0.214,0.264,0.303 +2014-06-19 04:00:00,0.214,0.264,0.303 +2014-06-19 05:00:00,0.214,0.264,0.303 +2014-06-19 06:00:00,0.214,0.264,0.303 +2014-06-19 07:00:00,0.213,0.264,0.304 +2014-06-19 08:00:00,0.213,0.264,0.304 +2014-06-19 09:00:00,0.213,0.264,0.304 +2014-06-19 10:00:00,0.213,0.264,0.304 +2014-06-19 11:00:00,0.213,0.264,0.303 +2014-06-19 12:00:00,0.213,0.263,0.303 +2014-06-19 13:00:00,0.213,0.262,0.303 +2014-06-19 14:00:00,0.213,0.262,0.302 +2014-06-19 15:00:00,0.213,0.262,0.302 +2014-06-19 16:00:00,0.213,0.262,0.302 +2014-06-19 17:00:00,0.212,0.261,0.301 +2014-06-19 18:00:00,0.212,0.261,0.3 +2014-06-19 19:00:00,0.212,0.261,0.3 +2014-06-19 20:00:00,0.212,0.261,0.3 +2014-06-19 21:00:00,0.212,0.261,0.3 +2014-06-19 22:00:00,0.212,0.261,0.3 +2014-06-19 23:00:00,0.212,0.261,0.3 +2014-06-20 00:00:00,0.212,0.262,0.3 +2014-06-20 01:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 02:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 03:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 04:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 05:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 06:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 07:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 08:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 09:00:00,0.21100000000000002,0.262,0.3 +2014-06-20 10:00:00,0.21100000000000002,0.261,0.299 +2014-06-20 11:00:00,0.21100000000000002,0.261,0.299 +2014-06-20 12:00:00,0.21100000000000002,0.261,0.299 +2014-06-20 13:00:00,0.21100000000000002,0.261,0.299 +2014-06-20 14:00:00,0.21100000000000002,0.261,0.299 +2014-06-20 15:00:00,0.21100000000000002,0.261,0.298 +2014-06-20 16:00:00,0.21,0.259,0.298 +2014-06-20 17:00:00,0.21,0.259,0.298 +2014-06-20 18:00:00,0.21,0.259,0.298 +2014-06-20 19:00:00,0.21,0.259,0.297 +2014-06-20 20:00:00,0.21,0.259,0.297 +2014-06-20 21:00:00,0.21,0.259,0.297 +2014-06-20 22:00:00,0.21,0.259,0.297 +2014-06-20 23:00:00,0.21,0.259,0.297 +2014-06-21 00:00:00,0.21,0.259,0.297 +2014-06-21 01:00:00,0.21,0.259,0.297 +2014-06-21 02:00:00,0.21,0.259,0.297 +2014-06-21 03:00:00,0.21,0.259,0.297 +2014-06-21 04:00:00,0.209,0.259,0.297 +2014-06-21 05:00:00,0.209,0.259,0.297 +2014-06-21 06:00:00,0.209,0.259,0.297 +2014-06-21 07:00:00,0.209,0.259,0.297 +2014-06-21 08:00:00,0.209,0.259,0.297 +2014-06-21 09:00:00,0.209,0.259,0.297 +2014-06-21 10:00:00,0.21,0.259,0.297 +2014-06-21 11:00:00,0.209,0.259,0.29600000000000004 +2014-06-21 12:00:00,0.209,0.259,0.29600000000000004 +2014-06-21 13:00:00,0.209,0.258,0.29600000000000004 +2014-06-21 14:00:00,0.209,0.258,0.295 +2014-06-21 15:00:00,0.209,0.258,0.295 +2014-06-21 16:00:00,0.21,0.256,0.295 +2014-06-21 17:00:00,0.213,0.256,0.295 +2014-06-21 18:00:00,0.21100000000000002,0.256,0.294 +2014-06-21 19:00:00,0.209,0.256,0.294 +2014-06-21 20:00:00,0.20800000000000002,0.256,0.294 +2014-06-21 21:00:00,0.20800000000000002,0.256,0.294 +2014-06-21 22:00:00,0.20800000000000002,0.256,0.294 +2014-06-21 23:00:00,0.20800000000000002,0.256,0.294 +2014-06-22 00:00:00,0.20800000000000002,0.256,0.294 +2014-06-22 01:00:00,0.207,0.256,0.294 +2014-06-22 02:00:00,0.207,0.256,0.294 +2014-06-22 03:00:00,0.20800000000000002,0.256,0.294 +2014-06-22 04:00:00,0.207,0.256,0.294 +2014-06-22 05:00:00,0.207,0.256,0.294 +2014-06-22 06:00:00,0.207,0.256,0.294 +2014-06-22 07:00:00,0.207,0.256,0.294 +2014-06-22 08:00:00,0.207,0.256,0.294 +2014-06-22 09:00:00,0.207,0.256,0.294 +2014-06-22 10:00:00,0.207,0.256,0.294 +2014-06-22 11:00:00,0.207,0.256,0.294 +2014-06-22 12:00:00,0.207,0.256,0.293 +2014-06-22 13:00:00,0.207,0.256,0.293 +2014-06-22 14:00:00,0.207,0.256,0.292 +2014-06-22 15:00:00,0.207,0.255,0.292 +2014-06-22 16:00:00,0.20600000000000002,0.254,0.292 +2014-06-22 17:00:00,0.20600000000000002,0.254,0.29100000000000004 +2014-06-22 18:00:00,0.20600000000000002,0.254,0.29100000000000004 +2014-06-22 19:00:00,0.20600000000000002,0.254,0.29100000000000004 +2014-06-22 20:00:00,0.20600000000000002,0.254,0.29 +2014-06-22 21:00:00,0.20600000000000002,0.254,0.29 +2014-06-22 22:00:00,0.20600000000000002,0.254,0.29 +2014-06-22 23:00:00,0.20600000000000002,0.255,0.29 +2014-06-23 00:00:00,0.205,0.255,0.29 +2014-06-23 01:00:00,0.205,0.255,0.29 +2014-06-23 02:00:00,0.205,0.256,0.29 +2014-06-23 03:00:00,0.204,0.256,0.29 +2014-06-23 04:00:00,0.204,0.256,0.29 +2014-06-23 05:00:00,0.204,0.256,0.29 +2014-06-23 06:00:00,0.204,0.256,0.29 +2014-06-23 07:00:00,0.203,0.256,0.29100000000000004 +2014-06-23 08:00:00,0.203,0.256,0.29100000000000004 +2014-06-23 09:00:00,0.203,0.256,0.29100000000000004 +2014-06-23 10:00:00,0.203,0.256,0.29 +2014-06-23 11:00:00,0.204,0.256,0.29 +2014-06-23 12:00:00,0.204,0.256,0.29 +2014-06-23 13:00:00,0.203,0.256,0.29100000000000004 +2014-06-23 14:00:00,0.204,0.256,0.29 +2014-06-23 15:00:00,0.204,0.256,0.29 +2014-06-23 16:00:00,0.204,0.256,0.29 +2014-06-23 17:00:00,0.204,0.256,0.29 +2014-06-23 18:00:00,0.204,0.256,0.29 +2014-06-23 19:00:00,0.203,0.256,0.289 +2014-06-23 20:00:00,0.204,0.256,0.28800000000000003 +2014-06-23 21:00:00,0.203,0.256,0.28800000000000003 +2014-06-23 22:00:00,0.203,0.256,0.28800000000000003 +2014-06-23 23:00:00,0.203,0.256,0.28800000000000003 +2014-06-24 00:00:00,0.203,0.256,0.28800000000000003 +2014-06-24 01:00:00,0.20199999999999999,0.256,0.28800000000000003 +2014-06-24 02:00:00,0.20199999999999999,0.256,0.28800000000000003 +2014-06-24 03:00:00,0.20199999999999999,0.257,0.28800000000000003 +2014-06-24 04:00:00,0.20199999999999999,0.257,0.28800000000000003 +2014-06-24 05:00:00,0.201,0.257,0.28800000000000003 +2014-06-24 06:00:00,0.201,0.257,0.28800000000000003 +2014-06-24 07:00:00,0.201,0.257,0.28800000000000003 +2014-06-24 08:00:00,0.201,0.257,0.28800000000000003 +2014-06-24 09:00:00,0.201,0.257,0.28800000000000003 +2014-06-24 10:00:00,0.201,0.257,0.28800000000000003 +2014-06-24 11:00:00,0.201,0.257,0.28800000000000003 +2014-06-24 12:00:00,0.201,0.256,0.287 +2014-06-24 13:00:00,0.201,0.256,0.287 +2014-06-24 14:00:00,0.20199999999999999,0.256,0.287 +2014-06-24 15:00:00,0.201,0.256,0.28600000000000003 +2014-06-24 16:00:00,0.20199999999999999,0.256,0.28600000000000003 +2014-06-24 17:00:00,0.20199999999999999,0.256,0.28600000000000003 +2014-06-24 18:00:00,0.201,0.256,0.28600000000000003 +2014-06-24 19:00:00,0.20199999999999999,0.256,0.28600000000000003 +2014-06-24 20:00:00,0.20199999999999999,0.255,0.287 +2014-06-24 21:00:00,0.20199999999999999,0.255,0.287 +2014-06-24 22:00:00,0.20199999999999999,0.255,0.287 +2014-06-24 23:00:00,0.20199999999999999,0.255,0.29 +2014-06-25 00:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 01:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 02:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 03:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 04:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 05:00:00,0.201,0.256,0.29 +2014-06-25 06:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 07:00:00,0.201,0.256,0.29 +2014-06-25 08:00:00,0.201,0.256,0.29 +2014-06-25 09:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 10:00:00,0.20199999999999999,0.256,0.29 +2014-06-25 11:00:00,0.20199999999999999,0.256,0.289 +2014-06-25 12:00:00,0.20199999999999999,0.256,0.289 +2014-06-25 13:00:00,0.20199999999999999,0.255,0.289 +2014-06-25 14:00:00,0.20199999999999999,0.254,0.28800000000000003 +2014-06-25 15:00:00,0.20199999999999999,0.254,0.28800000000000003 +2014-06-25 16:00:00,0.20199999999999999,0.254,0.28800000000000003 +2014-06-25 17:00:00,0.201,0.254,0.287 +2014-06-25 18:00:00,0.201,0.254,0.28800000000000003 +2014-06-25 19:00:00,0.201,0.254,0.28800000000000003 +2014-06-25 20:00:00,0.201,0.254,0.287 +2014-06-25 21:00:00,0.20199999999999999,0.254,0.28600000000000003 +2014-06-25 22:00:00,0.20199999999999999,0.254,0.28600000000000003 +2014-06-25 23:00:00,0.201,0.254,0.28600000000000003 +2014-06-26 00:00:00,0.201,0.254,0.28600000000000003 +2014-06-26 01:00:00,0.201,0.254,0.28600000000000003 +2014-06-26 02:00:00,0.2,0.254,0.28600000000000003 +2014-06-26 03:00:00,0.2,0.254,0.28600000000000003 +2014-06-26 04:00:00,0.2,0.254,0.28600000000000003 +2014-06-26 05:00:00,0.2,0.254,0.28600000000000003 +2014-06-26 06:00:00,0.2,0.254,0.28600000000000003 +2014-06-26 07:00:00,0.19899999999999998,0.254,0.28600000000000003 +2014-06-26 08:00:00,0.19899999999999998,0.254,0.28600000000000003 +2014-06-26 09:00:00,0.19899999999999998,0.254,0.28600000000000003 +2014-06-26 10:00:00,0.19899999999999998,0.254,0.28600000000000003 +2014-06-26 11:00:00,0.19899999999999998,0.254,0.28600000000000003 +2014-06-26 12:00:00,0.19899999999999998,0.254,0.28600000000000003 +2014-06-26 13:00:00,0.2,0.253,0.285 +2014-06-26 14:00:00,0.2,0.253,0.285 +2014-06-26 15:00:00,0.2,0.253,0.285 +2014-06-26 16:00:00,0.2,0.253,0.285 +2014-06-26 17:00:00,0.2,0.252,0.284 +2014-06-26 18:00:00,0.2,0.252,0.284 +2014-06-26 19:00:00,0.2,0.252,0.284 +2014-06-26 20:00:00,0.19899999999999998,0.251,0.284 +2014-06-26 21:00:00,0.19899999999999998,0.251,0.284 +2014-06-26 22:00:00,0.19899999999999998,0.251,0.284 +2014-06-26 23:00:00,0.19899999999999998,0.252,0.28300000000000003 +2014-06-27 00:00:00,0.198,0.252,0.284 +2014-06-27 01:00:00,0.198,0.252,0.28300000000000003 +2014-06-27 02:00:00,0.198,0.253,0.28300000000000003 +2014-06-27 03:00:00,0.198,0.253,0.28300000000000003 +2014-06-27 04:00:00,0.19699999999999998,0.253,0.284 +2014-06-27 05:00:00,0.19699999999999998,0.253,0.284 +2014-06-27 06:00:00,0.19699999999999998,0.253,0.284 +2014-06-27 07:00:00,0.19699999999999998,0.253,0.284 +2014-06-27 08:00:00,0.19699999999999998,0.253,0.284 +2014-06-27 09:00:00,0.19699999999999998,0.252,0.284 +2014-06-27 10:00:00,0.198,0.252,0.284 +2014-06-27 11:00:00,0.198,0.252,0.284 +2014-06-27 12:00:00,0.19699999999999998,0.252,0.28300000000000003 +2014-06-27 13:00:00,0.198,0.251,0.28300000000000003 +2014-06-27 14:00:00,0.198,0.251,0.28300000000000003 +2014-06-27 15:00:00,0.198,0.249,0.28300000000000003 +2014-06-27 16:00:00,0.198,0.249,0.28300000000000003 +2014-06-27 17:00:00,0.198,0.249,0.282 +2014-06-27 18:00:00,0.198,0.248,0.282 +2014-06-27 19:00:00,0.198,0.247,0.282 +2014-06-27 20:00:00,0.198,0.247,0.282 +2014-06-27 21:00:00,0.198,0.247,0.282 +2014-06-27 22:00:00,0.198,0.247,0.282 +2014-06-27 23:00:00,0.198,0.247,0.282 +2014-06-28 00:00:00,0.198,0.248,0.282 +2014-06-28 01:00:00,0.198,0.248,0.282 +2014-06-28 02:00:00,0.198,0.248,0.282 +2014-06-28 03:00:00,0.198,0.249,0.282 +2014-06-28 04:00:00,0.19699999999999998,0.249,0.282 +2014-06-28 05:00:00,0.19699999999999998,0.249,0.282 +2014-06-28 06:00:00,0.19699999999999998,0.249,0.282 +2014-06-28 07:00:00,0.19699999999999998,0.249,0.28300000000000003 +2014-06-28 08:00:00,0.19699999999999998,0.249,0.28300000000000003 +2014-06-28 09:00:00,0.19699999999999998,0.249,0.282 +2014-06-28 10:00:00,0.19699999999999998,0.249,0.282 +2014-06-28 11:00:00,0.19699999999999998,0.248,0.282 +2014-06-28 12:00:00,0.19699999999999998,0.247,0.282 +2014-06-28 13:00:00,0.19699999999999998,0.247,0.282 +2014-06-28 14:00:00,0.198,0.247,0.282 +2014-06-28 15:00:00,0.19699999999999998,0.24600000000000002,0.281 +2014-06-28 16:00:00,0.19699999999999998,0.24600000000000002,0.281 +2014-06-28 17:00:00,0.198,0.245,0.282 +2014-06-28 18:00:00,0.198,0.244,0.282 +2014-06-28 19:00:00,0.198,0.244,0.28300000000000003 +2014-06-28 20:00:00,0.19699999999999998,0.244,0.28300000000000003 +2014-06-28 21:00:00,0.196,0.244,0.28300000000000003 +2014-06-28 22:00:00,0.19399999999999998,0.244,0.28300000000000003 +2014-06-28 23:00:00,0.19399999999999998,0.245,0.284 +2014-06-29 00:00:00,0.193,0.245,0.287 +2014-06-29 01:00:00,0.193,0.245,0.287 +2014-06-29 02:00:00,0.19399999999999998,0.24600000000000002,0.287 +2014-06-29 03:00:00,0.19399999999999998,0.24600000000000002,0.287 +2014-06-29 04:00:00,0.195,0.24600000000000002,0.287 +2014-06-29 05:00:00,0.195,0.24600000000000002,0.287 +2014-06-29 06:00:00,0.196,0.24600000000000002,0.287 +2014-06-29 07:00:00,0.196,0.24600000000000002,0.287 +2014-06-29 08:00:00,0.195,0.24600000000000002,0.287 +2014-06-29 09:00:00,0.196,0.24600000000000002,0.287 +2014-06-29 10:00:00,0.196,0.24600000000000002,0.287 +2014-06-29 11:00:00,0.196,0.24600000000000002,0.287 +2014-06-29 12:00:00,0.196,0.248,0.287 +2014-06-29 13:00:00,0.19699999999999998,0.249,0.287 +2014-06-29 14:00:00,0.19699999999999998,0.249,0.287 +2014-06-29 15:00:00,0.198,0.248,0.28600000000000003 +2014-06-29 16:00:00,0.198,0.247,0.28600000000000003 +2014-06-29 17:00:00,0.19899999999999998,0.247,0.285 +2014-06-29 18:00:00,0.19899999999999998,0.244,0.285 +2014-06-29 19:00:00,0.198,0.245,0.28600000000000003 +2014-06-29 20:00:00,0.198,0.24600000000000002,0.28600000000000003 +2014-06-29 21:00:00,0.198,0.24600000000000002,0.28600000000000003 +2014-06-29 22:00:00,0.198,0.24600000000000002,0.28600000000000003 +2014-06-29 23:00:00,0.198,0.24600000000000002,0.28600000000000003 +2014-06-30 00:00:00,0.19899999999999998,0.24600000000000002,0.28600000000000003 +2014-06-30 01:00:00,0.19899999999999998,0.24600000000000002,0.287 +2014-06-30 02:00:00,0.19899999999999998,0.24600000000000002,0.287 +2014-06-30 03:00:00,0.19899999999999998,0.24600000000000002,0.287 +2014-06-30 04:00:00,0.19899999999999998,0.247,0.287 +2014-06-30 05:00:00,0.19899999999999998,0.247,0.28600000000000003 +2014-06-30 06:00:00,0.19899999999999998,0.247,0.287 +2014-06-30 07:00:00,0.19899999999999998,0.247,0.287 +2014-06-30 08:00:00,0.198,0.247,0.287 +2014-06-30 09:00:00,0.19899999999999998,0.247,0.28600000000000003 +2014-06-30 10:00:00,0.19899999999999998,0.24600000000000002,0.28600000000000003 +2014-06-30 11:00:00,0.19899999999999998,0.24600000000000002,0.285 +2014-06-30 12:00:00,0.19899999999999998,0.24600000000000002,0.285 +2014-06-30 13:00:00,0.198,0.245,0.28600000000000003 +2014-06-30 14:00:00,0.198,0.244,0.287 +2014-06-30 15:00:00,0.2,0.244,0.28600000000000003 +2014-06-30 16:00:00,0.2,0.244,0.285 +2014-06-30 17:00:00,0.2,0.243,0.284 +2014-06-30 18:00:00,0.2,0.242,0.284 +2014-06-30 19:00:00,0.2,0.242,0.28300000000000003 +2014-06-30 20:00:00,0.2,0.242,0.28300000000000003 +2014-06-30 21:00:00,0.2,0.242,0.28300000000000003 +2014-06-30 22:00:00,0.2,0.242,0.28300000000000003 +2014-06-30 23:00:00,0.2,0.242,0.28300000000000003 +2014-07-01 00:00:00,0.19899999999999998,0.243,0.28300000000000003 +2014-07-01 01:00:00,0.19899999999999998,0.243,0.28300000000000003 +2014-07-01 02:00:00,0.19899999999999998,0.244,0.28300000000000003 +2014-07-01 03:00:00,0.19899999999999998,0.244,0.28300000000000003 +2014-07-01 04:00:00,0.19899999999999998,0.244,0.28300000000000003 +2014-07-01 05:00:00,0.19899999999999998,0.244,0.28300000000000003 +2014-07-01 06:00:00,0.198,0.244,0.28300000000000003 +2014-07-01 07:00:00,0.198,0.244,0.28300000000000003 +2014-07-01 08:00:00,0.198,0.244,0.28300000000000003 +2014-07-01 09:00:00,0.19899999999999998,0.244,0.28300000000000003 +2014-07-01 10:00:00,0.198,0.244,0.28300000000000003 +2014-07-01 11:00:00,0.198,0.244,0.28300000000000003 +2014-07-01 12:00:00,0.198,0.244,0.28300000000000003 +2014-07-01 13:00:00,0.198,0.244,0.282 +2014-07-01 14:00:00,0.19899999999999998,0.243,0.282 +2014-07-01 15:00:00,0.198,0.242,0.282 +2014-07-01 16:00:00,0.198,0.242,0.282 +2014-07-01 17:00:00,0.198,0.242,0.281 +2014-07-01 18:00:00,0.198,0.242,0.281 +2014-07-01 19:00:00,0.19899999999999998,0.242,0.281 +2014-07-01 20:00:00,0.198,0.242,0.281 +2014-07-01 21:00:00,0.198,0.242,0.281 +2014-07-01 22:00:00,0.198,0.242,0.281 +2014-07-01 23:00:00,0.198,0.242,0.281 +2014-07-02 00:00:00,0.198,0.242,0.281 +2014-07-02 01:00:00,0.198,0.242,0.281 +2014-07-02 02:00:00,0.198,0.242,0.28 +2014-07-02 03:00:00,0.19699999999999998,0.242,0.28 +2014-07-02 04:00:00,0.19699999999999998,0.242,0.28 +2014-07-02 05:00:00,0.19699999999999998,0.242,0.28 +2014-07-02 06:00:00,0.19699999999999998,0.242,0.281 +2014-07-02 07:00:00,0.19699999999999998,0.243,0.281 +2014-07-02 08:00:00,0.19699999999999998,0.243,0.281 +2014-07-02 09:00:00,0.19699999999999998,0.243,0.281 +2014-07-02 10:00:00,0.19699999999999998,0.243,0.281 +2014-07-02 11:00:00,0.19699999999999998,0.243,0.281 +2014-07-02 12:00:00,0.198,0.244,0.281 +2014-07-02 13:00:00,0.198,0.243,0.28 +2014-07-02 14:00:00,0.198,0.243,0.28 +2014-07-02 15:00:00,0.198,0.244,0.28 +2014-07-02 16:00:00,0.198,0.244,0.28 +2014-07-02 17:00:00,0.198,0.244,0.27899999999999997 +2014-07-02 18:00:00,0.198,0.244,0.27899999999999997 +2014-07-02 19:00:00,0.198,0.244,0.27899999999999997 +2014-07-02 20:00:00,0.198,0.244,0.27899999999999997 +2014-07-02 21:00:00,0.198,0.244,0.27899999999999997 +2014-07-02 22:00:00,0.198,0.244,0.27899999999999997 +2014-07-02 23:00:00,0.198,0.24600000000000002,0.27899999999999997 +2014-07-03 00:00:00,0.19699999999999998,0.24600000000000002,0.27899999999999997 +2014-07-03 01:00:00,0.19699999999999998,0.245,0.27899999999999997 +2014-07-03 02:00:00,0.19699999999999998,0.244,0.27899999999999997 +2014-07-03 03:00:00,0.196,0.244,0.27899999999999997 +2014-07-03 04:00:00,0.196,0.243,0.27899999999999997 +2014-07-03 05:00:00,0.196,0.242,0.27899999999999997 +2014-07-03 06:00:00,0.196,0.242,0.27899999999999997 +2014-07-03 07:00:00,0.196,0.235,0.27899999999999997 +2014-07-03 08:00:00,0.196,0.23399999999999999,0.27899999999999997 +2014-07-03 09:00:00,0.196,0.23600000000000002,0.27899999999999997 +2014-07-03 10:00:00,0.19699999999999998,0.244,0.27899999999999997 +2014-07-03 11:00:00,0.19699999999999998,0.258,0.27899999999999997 +2014-07-03 12:00:00,0.19699999999999998,0.271,0.27899999999999997 +2014-07-03 13:00:00,0.19699999999999998,0.32299999999999995,0.27899999999999997 +2014-07-03 14:00:00,0.19699999999999998,0.34299999999999997,0.278 +2014-07-03 15:00:00,0.19699999999999998,0.354,0.278 +2014-07-03 16:00:00,0.19699999999999998,0.355,0.278 +2014-07-03 17:00:00,0.19699999999999998,0.353,0.278 +2014-07-03 18:00:00,0.19699999999999998,0.35200000000000004,0.27699999999999997 +2014-07-03 19:00:00,0.19699999999999998,0.35100000000000003,0.27699999999999997 +2014-07-03 20:00:00,0.19699999999999998,0.35,0.27699999999999997 +2014-07-03 21:00:00,0.19699999999999998,0.349,0.27699999999999997 +2014-07-03 22:00:00,0.19699999999999998,0.348,0.27699999999999997 +2014-07-03 23:00:00,0.19699999999999998,0.34600000000000003,0.27699999999999997 +2014-07-04 00:00:00,0.196,0.344,0.27699999999999997 +2014-07-04 01:00:00,0.196,0.34299999999999997,0.27699999999999997 +2014-07-04 02:00:00,0.196,0.341,0.27699999999999997 +2014-07-04 03:00:00,0.196,0.341,0.27699999999999997 +2014-07-04 04:00:00,0.196,0.33899999999999997,0.27699999999999997 +2014-07-04 05:00:00,0.196,0.33799999999999997,0.27699999999999997 +2014-07-04 06:00:00,0.196,0.33799999999999997,0.27699999999999997 +2014-07-04 07:00:00,0.195,0.337,0.27699999999999997 +2014-07-04 08:00:00,0.196,0.336,0.27699999999999997 +2014-07-04 09:00:00,0.196,0.33399999999999996,0.27699999999999997 +2014-07-04 10:00:00,0.196,0.33399999999999996,0.27699999999999997 +2014-07-04 11:00:00,0.196,0.33299999999999996,0.27699999999999997 +2014-07-04 12:00:00,0.196,0.332,0.27699999999999997 +2014-07-04 13:00:00,0.196,0.332,0.276 +2014-07-04 14:00:00,0.196,0.332,0.276 +2014-07-04 15:00:00,0.196,0.331,0.276 +2014-07-04 16:00:00,0.196,0.33,0.275 +2014-07-04 17:00:00,0.196,0.32799999999999996,0.275 +2014-07-04 18:00:00,0.196,0.327,0.275 +2014-07-04 19:00:00,0.196,0.326,0.275 +2014-07-04 20:00:00,0.196,0.325,0.275 +2014-07-04 21:00:00,0.196,0.324,0.275 +2014-07-04 22:00:00,0.196,0.324,0.275 +2014-07-04 23:00:00,0.196,0.345,0.275 +2014-07-05 00:00:00,0.196,0.366,0.275 +2014-07-05 01:00:00,0.196,0.363,0.275 +2014-07-05 02:00:00,0.196,0.361,0.275 +2014-07-05 03:00:00,0.196,0.361,0.275 +2014-07-05 04:00:00,0.196,0.36,0.275 +2014-07-05 05:00:00,0.196,0.35700000000000004,0.275 +2014-07-05 06:00:00,0.196,0.355,0.275 +2014-07-05 07:00:00,0.196,0.354,0.275 +2014-07-05 08:00:00,0.196,0.353,0.275 +2014-07-05 09:00:00,0.195,0.35100000000000003,0.275 +2014-07-05 10:00:00,0.196,0.35100000000000003,0.275 +2014-07-05 11:00:00,0.195,0.349,0.275 +2014-07-05 12:00:00,0.195,0.348,0.275 +2014-07-05 13:00:00,0.196,0.34700000000000003,0.275 +2014-07-05 14:00:00,0.196,0.34700000000000003,0.275 +2014-07-05 15:00:00,0.196,0.345,0.275 +2014-07-05 16:00:00,0.196,0.342,0.27399999999999997 +2014-07-05 17:00:00,0.196,0.341,0.27399999999999997 +2014-07-05 18:00:00,0.196,0.341,0.27399999999999997 +2014-07-05 19:00:00,0.196,0.34,0.27399999999999997 +2014-07-05 20:00:00,0.196,0.33899999999999997,0.27399999999999997 +2014-07-05 21:00:00,0.196,0.33899999999999997,0.27399999999999997 +2014-07-05 22:00:00,0.196,0.33899999999999997,0.27399999999999997 +2014-07-05 23:00:00,0.196,0.33799999999999997,0.27399999999999997 +2014-07-06 00:00:00,0.196,0.33799999999999997,0.27399999999999997 +2014-07-06 01:00:00,0.196,0.33799999999999997,0.27399999999999997 +2014-07-06 02:00:00,0.196,0.337,0.27399999999999997 +2014-07-06 03:00:00,0.196,0.332,0.27399999999999997 +2014-07-06 04:00:00,0.196,0.331,0.27399999999999997 +2014-07-06 05:00:00,0.196,0.335,0.27399999999999997 +2014-07-06 06:00:00,0.196,0.34,0.275 +2014-07-06 07:00:00,0.196,0.344,0.275 +2014-07-06 08:00:00,0.196,0.34700000000000003,0.275 +2014-07-06 09:00:00,0.196,0.348,0.275 +2014-07-06 10:00:00,0.196,0.348,0.275 +2014-07-06 11:00:00,0.196,0.348,0.27399999999999997 +2014-07-06 12:00:00,0.196,0.348,0.27399999999999997 +2014-07-06 13:00:00,0.196,0.348,0.27399999999999997 +2014-07-06 14:00:00,0.196,0.348,0.27399999999999997 +2014-07-06 15:00:00,0.196,0.34700000000000003,0.27399999999999997 +2014-07-06 16:00:00,0.196,0.344,0.273 +2014-07-06 17:00:00,0.196,0.34299999999999997,0.273 +2014-07-06 18:00:00,0.196,0.341,0.273 +2014-07-06 19:00:00,0.196,0.33899999999999997,0.273 +2014-07-06 20:00:00,0.196,0.33799999999999997,0.273 +2014-07-06 21:00:00,0.196,0.33799999999999997,0.273 +2014-07-06 22:00:00,0.19699999999999998,0.337,0.275 +2014-07-06 23:00:00,0.19699999999999998,0.336,0.276 +2014-07-07 00:00:00,0.19699999999999998,0.336,0.276 +2014-07-07 01:00:00,0.196,0.336,0.27699999999999997 +2014-07-07 02:00:00,0.196,0.336,0.27699999999999997 +2014-07-07 03:00:00,0.196,0.335,0.27699999999999997 +2014-07-07 04:00:00,0.196,0.33399999999999996,0.27699999999999997 +2014-07-07 05:00:00,0.196,0.33399999999999996,0.27699999999999997 +2014-07-07 06:00:00,0.196,0.33399999999999996,0.27699999999999997 +2014-07-07 07:00:00,0.196,0.33399999999999996,0.27699999999999997 +2014-07-07 08:00:00,0.196,0.33399999999999996,0.27699999999999997 +2014-07-07 09:00:00,0.196,0.33299999999999996,0.276 +2014-07-07 10:00:00,0.196,0.332,0.276 +2014-07-07 11:00:00,0.196,0.331,0.276 +2014-07-07 12:00:00,0.19699999999999998,0.331,0.275 +2014-07-07 13:00:00,0.19699999999999998,0.33,0.275 +2014-07-07 14:00:00,0.196,0.32799999999999996,0.27399999999999997 +2014-07-07 15:00:00,0.196,0.32899999999999996,0.273 +2014-07-07 16:00:00,0.196,0.32899999999999996,0.273 +2014-07-07 17:00:00,0.196,0.33,0.273 +2014-07-07 18:00:00,0.196,0.32899999999999996,0.272 +2014-07-07 19:00:00,0.196,0.32899999999999996,0.272 +2014-07-07 20:00:00,0.196,0.32899999999999996,0.272 +2014-07-07 21:00:00,0.196,0.32899999999999996,0.272 +2014-07-07 22:00:00,0.196,0.32899999999999996,0.272 +2014-07-07 23:00:00,0.196,0.32899999999999996,0.272 +2014-07-08 00:00:00,0.196,0.32899999999999996,0.272 +2014-07-08 01:00:00,0.196,0.332,0.272 +2014-07-08 02:00:00,0.196,0.35100000000000003,0.273 +2014-07-08 03:00:00,0.19699999999999998,0.361,0.275 +2014-07-08 04:00:00,0.22,0.363,0.278 +2014-07-08 05:00:00,0.244,0.363,0.278 +2014-07-08 06:00:00,0.244,0.361,0.278 +2014-07-08 07:00:00,0.243,0.361,0.278 +2014-07-08 08:00:00,0.242,0.36,0.278 +2014-07-08 09:00:00,0.24,0.358,0.27899999999999997 +2014-07-08 10:00:00,0.239,0.35600000000000004,0.27899999999999997 +2014-07-08 11:00:00,0.237,0.355,0.27899999999999997 +2014-07-08 12:00:00,0.237,0.354,0.27899999999999997 +2014-07-08 13:00:00,0.235,0.35200000000000004,0.27899999999999997 +2014-07-08 14:00:00,0.23399999999999999,0.349,0.27899999999999997 +2014-07-08 15:00:00,0.233,0.34700000000000003,0.27899999999999997 +2014-07-08 16:00:00,0.233,0.344,0.27899999999999997 +2014-07-08 17:00:00,0.23199999999999998,0.342,0.27899999999999997 +2014-07-08 18:00:00,0.23199999999999998,0.34,0.278 +2014-07-08 19:00:00,0.23199999999999998,0.33799999999999997,0.278 +2014-07-08 20:00:00,0.231,0.33799999999999997,0.278 +2014-07-08 21:00:00,0.231,0.33799999999999997,0.278 +2014-07-08 22:00:00,0.23,0.337,0.27899999999999997 +2014-07-08 23:00:00,0.242,0.336,0.28 +2014-07-09 00:00:00,0.259,0.336,0.28 +2014-07-09 01:00:00,0.262,0.336,0.281 +2014-07-09 02:00:00,0.264,0.336,0.281 +2014-07-09 03:00:00,0.264,0.335,0.281 +2014-07-09 04:00:00,0.266,0.33399999999999996,0.282 +2014-07-09 05:00:00,0.268,0.33399999999999996,0.282 +2014-07-09 06:00:00,0.27,0.33399999999999996,0.282 +2014-07-09 07:00:00,0.27,0.33399999999999996,0.28300000000000003 +2014-07-09 08:00:00,0.26899999999999996,0.33299999999999996,0.28300000000000003 +2014-07-09 09:00:00,0.271,0.332,0.28300000000000003 +2014-07-09 10:00:00,0.275,0.332,0.285 +2014-07-09 11:00:00,0.273,0.332,0.302 +2014-07-09 12:00:00,0.273,0.331,0.316 +2014-07-09 13:00:00,0.26899999999999996,0.331,0.321 +2014-07-09 14:00:00,0.267,0.32899999999999996,0.32 +2014-07-09 15:00:00,0.266,0.327,0.316 +2014-07-09 16:00:00,0.264,0.326,0.314 +2014-07-09 17:00:00,0.262,0.326,0.313 +2014-07-09 18:00:00,0.261,0.324,0.312 +2014-07-09 19:00:00,0.26,0.324,0.311 +2014-07-09 20:00:00,0.259,0.324,0.308 +2014-07-09 21:00:00,0.258,0.324,0.306 +2014-07-09 22:00:00,0.258,0.32299999999999995,0.305 +2014-07-09 23:00:00,0.257,0.32299999999999995,0.304 +2014-07-10 00:00:00,0.256,0.32299999999999995,0.303 +2014-07-10 01:00:00,0.256,0.32299999999999995,0.303 +2014-07-10 02:00:00,0.255,0.32299999999999995,0.302 +2014-07-10 03:00:00,0.255,0.322,0.302 +2014-07-10 04:00:00,0.254,0.322,0.301 +2014-07-10 05:00:00,0.254,0.322,0.301 +2014-07-10 06:00:00,0.253,0.322,0.3 +2014-07-10 07:00:00,0.253,0.322,0.3 +2014-07-10 08:00:00,0.253,0.322,0.3 +2014-07-10 09:00:00,0.253,0.322,0.3 +2014-07-10 10:00:00,0.252,0.322,0.299 +2014-07-10 11:00:00,0.252,0.322,0.299 +2014-07-10 12:00:00,0.253,0.321,0.298 +2014-07-10 13:00:00,0.253,0.321,0.298 +2014-07-10 14:00:00,0.253,0.321,0.297 +2014-07-10 15:00:00,0.253,0.319,0.297 +2014-07-10 16:00:00,0.254,0.318,0.29600000000000004 +2014-07-10 17:00:00,0.254,0.317,0.29600000000000004 +2014-07-10 18:00:00,0.254,0.317,0.295 +2014-07-10 19:00:00,0.253,0.316,0.295 +2014-07-10 20:00:00,0.267,0.315,0.315 +2014-07-10 21:00:00,0.273,0.315,0.35200000000000004 +2014-07-10 22:00:00,0.268,0.315,0.349 +2014-07-10 23:00:00,0.265,0.315,0.34600000000000003 +2014-07-11 00:00:00,0.263,0.315,0.342 +2014-07-11 01:00:00,0.261,0.315,0.34 +2014-07-11 02:00:00,0.26,0.315,0.33799999999999997 +2014-07-11 03:00:00,0.259,0.315,0.337 +2014-07-11 04:00:00,0.258,0.315,0.335 +2014-07-11 05:00:00,0.258,0.315,0.332 +2014-07-11 06:00:00,0.257,0.315,0.32899999999999996 +2014-07-11 07:00:00,0.256,0.314,0.325 +2014-07-11 08:00:00,0.256,0.314,0.32299999999999995 +2014-07-11 09:00:00,0.256,0.314,0.32 +2014-07-11 10:00:00,0.255,0.314,0.318 +2014-07-11 11:00:00,0.255,0.314,0.316 +2014-07-11 12:00:00,0.257,0.314,0.314 +2014-07-11 13:00:00,0.258,0.313,0.312 +2014-07-11 14:00:00,0.258,0.312,0.31 +2014-07-11 15:00:00,0.257,0.31,0.31 +2014-07-11 16:00:00,0.257,0.31,0.31 +2014-07-11 17:00:00,0.257,0.309,0.309 +2014-07-11 18:00:00,0.257,0.308,0.309 +2014-07-11 19:00:00,0.256,0.307,0.309 +2014-07-11 20:00:00,0.257,0.307,0.309 +2014-07-11 21:00:00,0.254,0.307,0.309 +2014-07-11 22:00:00,0.253,0.306,0.31 +2014-07-11 23:00:00,0.253,0.306,0.31 +2014-07-12 00:00:00,0.26,0.307,0.31 +2014-07-12 01:00:00,0.267,0.307,0.31 +2014-07-12 02:00:00,0.266,0.307,0.31 +2014-07-12 03:00:00,0.265,0.307,0.31 +2014-07-12 04:00:00,0.263,0.307,0.31 +2014-07-12 05:00:00,0.263,0.307,0.31 +2014-07-12 06:00:00,0.262,0.307,0.31 +2014-07-12 07:00:00,0.261,0.306,0.31 +2014-07-12 08:00:00,0.26,0.306,0.31 +2014-07-12 09:00:00,0.26,0.306,0.31 +2014-07-12 10:00:00,0.259,0.305,0.309 +2014-07-12 11:00:00,0.258,0.305,0.309 +2014-07-12 12:00:00,0.258,0.305,0.308 +2014-07-12 13:00:00,0.259,0.304,0.307 +2014-07-12 14:00:00,0.26,0.303,0.306 +2014-07-12 15:00:00,0.26,0.302,0.306 +2014-07-12 16:00:00,0.259,0.3,0.305 +2014-07-12 17:00:00,0.259,0.299,0.304 +2014-07-12 18:00:00,0.258,0.298,0.304 +2014-07-12 19:00:00,0.258,0.297,0.304 +2014-07-12 20:00:00,0.258,0.297,0.304 +2014-07-12 21:00:00,0.258,0.297,0.304 +2014-07-12 22:00:00,0.258,0.297,0.304 +2014-07-12 23:00:00,0.257,0.297,0.304 +2014-07-13 00:00:00,0.257,0.297,0.304 +2014-07-13 01:00:00,0.256,0.297,0.303 +2014-07-13 02:00:00,0.256,0.297,0.303 +2014-07-13 03:00:00,0.256,0.297,0.304 +2014-07-13 04:00:00,0.255,0.297,0.304 +2014-07-13 05:00:00,0.255,0.297,0.304 +2014-07-13 06:00:00,0.255,0.297,0.304 +2014-07-13 07:00:00,0.252,0.297,0.305 +2014-07-13 08:00:00,0.25,0.297,0.307 +2014-07-13 09:00:00,0.251,0.297,0.307 +2014-07-13 10:00:00,0.253,0.297,0.307 +2014-07-13 11:00:00,0.255,0.29600000000000004,0.307 +2014-07-13 12:00:00,0.257,0.29600000000000004,0.307 +2014-07-13 13:00:00,0.258,0.295,0.307 +2014-07-13 14:00:00,0.258,0.293,0.306 +2014-07-13 15:00:00,0.258,0.292,0.306 +2014-07-13 16:00:00,0.261,0.29100000000000004,0.306 +2014-07-13 17:00:00,0.263,0.29,0.306 +2014-07-13 18:00:00,0.262,0.289,0.306 +2014-07-13 19:00:00,0.261,0.28800000000000003,0.306 +2014-07-13 20:00:00,0.261,0.287,0.307 +2014-07-13 21:00:00,0.264,0.287,0.307 +2014-07-13 22:00:00,0.26899999999999996,0.287,0.307 +2014-07-13 23:00:00,0.268,0.287,0.307 +2014-07-14 00:00:00,0.267,0.287,0.307 +2014-07-14 01:00:00,0.265,0.28800000000000003,0.307 +2014-07-14 02:00:00,0.264,0.28800000000000003,0.307 +2014-07-14 03:00:00,0.263,0.28800000000000003,0.308 +2014-07-14 04:00:00,0.262,0.28800000000000003,0.308 +2014-07-14 05:00:00,0.262,0.28800000000000003,0.308 +2014-07-14 06:00:00,0.261,0.28800000000000003,0.308 +2014-07-14 07:00:00,0.259,0.28800000000000003,0.308 +2014-07-14 08:00:00,0.259,0.287,0.308 +2014-07-14 09:00:00,0.258,0.287,0.308 +2014-07-14 10:00:00,0.258,0.287,0.308 +2014-07-14 11:00:00,0.259,0.287,0.307 +2014-07-14 12:00:00,0.26,0.287,0.306 +2014-07-14 13:00:00,0.26,0.287,0.306 +2014-07-14 14:00:00,0.259,0.287,0.305 +2014-07-14 15:00:00,0.258,0.287,0.305 +2014-07-14 16:00:00,0.257,0.287,0.305 +2014-07-14 17:00:00,0.257,0.28600000000000003,0.304 +2014-07-14 18:00:00,0.257,0.285,0.304 +2014-07-14 19:00:00,0.257,0.285,0.304 +2014-07-14 20:00:00,0.257,0.285,0.304 +2014-07-14 21:00:00,0.256,0.284,0.304 +2014-07-14 22:00:00,0.256,0.28300000000000003,0.304 +2014-07-14 23:00:00,0.256,0.28300000000000003,0.304 +2014-07-15 00:00:00,0.255,0.28300000000000003,0.304 +2014-07-15 01:00:00,0.255,0.28300000000000003,0.304 +2014-07-15 02:00:00,0.254,0.284,0.304 +2014-07-15 03:00:00,0.254,0.285,0.304 +2014-07-15 04:00:00,0.254,0.284,0.304 +2014-07-15 05:00:00,0.254,0.285,0.304 +2014-07-15 06:00:00,0.254,0.285,0.304 +2014-07-15 07:00:00,0.253,0.285,0.304 +2014-07-15 08:00:00,0.253,0.285,0.304 +2014-07-15 09:00:00,0.253,0.285,0.304 +2014-07-15 10:00:00,0.253,0.285,0.304 +2014-07-15 11:00:00,0.252,0.285,0.303 +2014-07-15 12:00:00,0.252,0.285,0.303 +2014-07-15 13:00:00,0.251,0.285,0.303 +2014-07-15 14:00:00,0.251,0.285,0.302 +2014-07-15 15:00:00,0.25,0.285,0.302 +2014-07-15 16:00:00,0.25,0.28300000000000003,0.302 +2014-07-15 17:00:00,0.249,0.28300000000000003,0.301 +2014-07-15 18:00:00,0.249,0.28300000000000003,0.301 +2014-07-15 19:00:00,0.249,0.28300000000000003,0.301 +2014-07-15 20:00:00,0.248,0.28300000000000003,0.301 +2014-07-15 21:00:00,0.248,0.28300000000000003,0.3 +2014-07-15 22:00:00,0.248,0.28300000000000003,0.3 +2014-07-15 23:00:00,0.248,0.28300000000000003,0.3 +2014-07-16 00:00:00,0.248,0.28300000000000003,0.3 +2014-07-16 01:00:00,0.247,0.28300000000000003,0.3 +2014-07-16 02:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 03:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 04:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 05:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 06:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 07:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 08:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 09:00:00,0.247,0.28300000000000003,0.301 +2014-07-16 10:00:00,0.24600000000000002,0.28300000000000003,0.3 +2014-07-16 11:00:00,0.24600000000000002,0.28300000000000003,0.3 +2014-07-16 12:00:00,0.245,0.28300000000000003,0.3 +2014-07-16 13:00:00,0.245,0.28300000000000003,0.299 +2014-07-16 14:00:00,0.244,0.28300000000000003,0.299 +2014-07-16 15:00:00,0.243,0.282,0.298 +2014-07-16 16:00:00,0.243,0.281,0.298 +2014-07-16 17:00:00,0.242,0.281,0.298 +2014-07-16 18:00:00,0.242,0.28,0.298 +2014-07-16 19:00:00,0.24100000000000002,0.28,0.298 +2014-07-16 20:00:00,0.24100000000000002,0.28,0.297 +2014-07-16 21:00:00,0.24100000000000002,0.28,0.297 +2014-07-16 22:00:00,0.24100000000000002,0.28,0.297 +2014-07-16 23:00:00,0.24100000000000002,0.28,0.297 +2014-07-17 00:00:00,0.24,0.28,0.297 +2014-07-17 01:00:00,0.24,0.28,0.297 +2014-07-17 02:00:00,0.24,0.28,0.297 +2014-07-17 03:00:00,0.24,0.28,0.297 +2014-07-17 04:00:00,0.24,0.28,0.297 +2014-07-17 05:00:00,0.24,0.28,0.297 +2014-07-17 06:00:00,0.239,0.28,0.297 +2014-07-17 07:00:00,0.239,0.28,0.297 +2014-07-17 08:00:00,0.239,0.28,0.297 +2014-07-17 09:00:00,0.239,0.28,0.298 +2014-07-17 10:00:00,0.239,0.28,0.297 +2014-07-17 11:00:00,0.23800000000000002,0.28,0.297 +2014-07-17 12:00:00,0.23800000000000002,0.28,0.29600000000000004 +2014-07-17 13:00:00,0.237,0.28,0.29600000000000004 +2014-07-17 14:00:00,0.23600000000000002,0.27899999999999997,0.295 +2014-07-17 15:00:00,0.23600000000000002,0.278,0.295 +2014-07-17 16:00:00,0.23600000000000002,0.276,0.294 +2014-07-17 17:00:00,0.235,0.276,0.294 +2014-07-17 18:00:00,0.23399999999999999,0.276,0.294 +2014-07-17 19:00:00,0.23399999999999999,0.275,0.294 +2014-07-17 20:00:00,0.23399999999999999,0.275,0.293 +2014-07-17 21:00:00,0.23399999999999999,0.275,0.293 +2014-07-17 22:00:00,0.23399999999999999,0.275,0.293 +2014-07-17 23:00:00,0.233,0.275,0.293 +2014-07-18 00:00:00,0.233,0.275,0.293 +2014-07-18 01:00:00,0.233,0.275,0.293 +2014-07-18 02:00:00,0.233,0.275,0.293 +2014-07-18 03:00:00,0.23199999999999998,0.275,0.293 +2014-07-18 04:00:00,0.23199999999999998,0.275,0.293 +2014-07-18 05:00:00,0.23199999999999998,0.275,0.293 +2014-07-18 06:00:00,0.23199999999999998,0.275,0.293 +2014-07-18 07:00:00,0.23199999999999998,0.275,0.294 +2014-07-18 08:00:00,0.23199999999999998,0.275,0.294 +2014-07-18 09:00:00,0.23199999999999998,0.275,0.294 +2014-07-18 10:00:00,0.231,0.275,0.294 +2014-07-18 11:00:00,0.231,0.275,0.293 +2014-07-18 12:00:00,0.23,0.275,0.293 +2014-07-18 13:00:00,0.23,0.27399999999999997,0.292 +2014-07-18 14:00:00,0.22899999999999998,0.273,0.292 +2014-07-18 15:00:00,0.22899999999999998,0.272,0.29100000000000004 +2014-07-18 16:00:00,0.228,0.271,0.29100000000000004 +2014-07-18 17:00:00,0.228,0.271,0.29 +2014-07-18 18:00:00,0.228,0.27,0.29 +2014-07-18 19:00:00,0.228,0.27,0.29 +2014-07-18 20:00:00,0.22699999999999998,0.27,0.29 +2014-07-18 21:00:00,0.22699999999999998,0.315,0.29 +2014-07-18 22:00:00,0.22699999999999998,0.455,0.29 +2014-07-18 23:00:00,0.22699999999999998,0.457,0.29 +2014-07-19 00:00:00,0.226,0.41100000000000003,0.29 +2014-07-19 01:00:00,0.226,0.35200000000000004,0.29 +2014-07-19 02:00:00,0.226,0.345,0.29 +2014-07-19 03:00:00,0.226,0.34299999999999997,0.29 +2014-07-19 04:00:00,0.225,0.341,0.29 +2014-07-19 05:00:00,0.225,0.34,0.29 +2014-07-19 06:00:00,0.225,0.33899999999999997,0.29 +2014-07-19 07:00:00,0.225,0.33799999999999997,0.29 +2014-07-19 08:00:00,0.225,0.337,0.29 +2014-07-19 09:00:00,0.225,0.335,0.29 +2014-07-19 10:00:00,0.225,0.33399999999999996,0.29 +2014-07-19 11:00:00,0.22399999999999998,0.33299999999999996,0.29 +2014-07-19 12:00:00,0.22399999999999998,0.33299999999999996,0.289 +2014-07-19 13:00:00,0.223,0.332,0.289 +2014-07-19 14:00:00,0.223,0.332,0.28800000000000003 +2014-07-19 15:00:00,0.222,0.331,0.28800000000000003 +2014-07-19 16:00:00,0.222,0.331,0.287 +2014-07-19 17:00:00,0.222,0.32899999999999996,0.287 +2014-07-19 18:00:00,0.222,0.327,0.287 +2014-07-19 19:00:00,0.222,0.326,0.287 +2014-07-19 20:00:00,0.221,0.326,0.28600000000000003 +2014-07-19 21:00:00,0.221,0.324,0.28600000000000003 +2014-07-19 22:00:00,0.221,0.324,0.28600000000000003 +2014-07-19 23:00:00,0.221,0.324,0.28600000000000003 +2014-07-20 00:00:00,0.221,0.324,0.28600000000000003 +2014-07-20 01:00:00,0.22,0.324,0.28600000000000003 +2014-07-20 02:00:00,0.22,0.324,0.28600000000000003 +2014-07-20 03:00:00,0.22,0.324,0.28600000000000003 +2014-07-20 04:00:00,0.22,0.324,0.28600000000000003 +2014-07-20 05:00:00,0.21899999999999997,0.324,0.28600000000000003 +2014-07-20 06:00:00,0.21899999999999997,0.324,0.287 +2014-07-20 07:00:00,0.21899999999999997,0.322,0.287 +2014-07-20 08:00:00,0.21899999999999997,0.322,0.287 +2014-07-20 09:00:00,0.21899999999999997,0.322,0.287 +2014-07-20 10:00:00,0.22,0.322,0.287 +2014-07-20 11:00:00,0.22,0.322,0.287 +2014-07-20 12:00:00,0.22,0.321,0.287 +2014-07-20 13:00:00,0.22,0.321,0.287 +2014-07-20 14:00:00,0.21899999999999997,0.32,0.28600000000000003 +2014-07-20 15:00:00,0.21899999999999997,0.319,0.28600000000000003 +2014-07-20 16:00:00,0.218,0.317,0.28600000000000003 +2014-07-20 17:00:00,0.218,0.317,0.28600000000000003 +2014-07-20 18:00:00,0.218,0.316,0.287 +2014-07-20 19:00:00,0.218,0.315,0.287 +2014-07-20 20:00:00,0.218,0.315,0.287 +2014-07-20 21:00:00,0.218,0.315,0.287 +2014-07-20 22:00:00,0.218,0.315,0.287 +2014-07-20 23:00:00,0.217,0.315,0.289 +2014-07-21 00:00:00,0.21600000000000003,0.315,0.29100000000000004 +2014-07-21 01:00:00,0.218,0.315,0.29100000000000004 +2014-07-21 02:00:00,0.22,0.315,0.29100000000000004 +2014-07-21 03:00:00,0.221,0.315,0.29100000000000004 +2014-07-21 04:00:00,0.221,0.315,0.29100000000000004 +2014-07-21 05:00:00,0.22,0.315,0.29100000000000004 +2014-07-21 06:00:00,0.22,0.315,0.29100000000000004 +2014-07-21 07:00:00,0.22,0.315,0.29100000000000004 +2014-07-21 08:00:00,0.22,0.314,0.29100000000000004 +2014-07-21 09:00:00,0.22,0.314,0.29100000000000004 +2014-07-21 10:00:00,0.22,0.314,0.29100000000000004 +2014-07-21 11:00:00,0.221,0.314,0.29100000000000004 +2014-07-21 12:00:00,0.221,0.314,0.29100000000000004 +2014-07-21 13:00:00,0.222,0.314,0.29 +2014-07-21 14:00:00,0.222,0.312,0.29 +2014-07-21 15:00:00,0.222,0.311,0.29 +2014-07-21 16:00:00,0.223,0.31,0.29 +2014-07-21 17:00:00,0.223,0.31,0.289 +2014-07-21 18:00:00,0.223,0.309,0.289 +2014-07-21 19:00:00,0.223,0.309,0.28800000000000003 +2014-07-21 20:00:00,0.223,0.307,0.28800000000000003 +2014-07-21 21:00:00,0.222,0.307,0.28800000000000003 +2014-07-21 22:00:00,0.223,0.307,0.28800000000000003 +2014-07-21 23:00:00,0.222,0.307,0.28800000000000003 +2014-07-22 00:00:00,0.222,0.307,0.28800000000000003 +2014-07-22 01:00:00,0.222,0.307,0.289 +2014-07-22 02:00:00,0.221,0.307,0.29 +2014-07-22 03:00:00,0.22,0.307,0.29100000000000004 +2014-07-22 04:00:00,0.22,0.307,0.292 +2014-07-22 05:00:00,0.22399999999999998,0.307,0.292 +2014-07-22 06:00:00,0.225,0.307,0.292 +2014-07-22 07:00:00,0.225,0.307,0.292 +2014-07-22 08:00:00,0.225,0.307,0.292 +2014-07-22 09:00:00,0.225,0.307,0.292 +2014-07-22 10:00:00,0.226,0.307,0.292 +2014-07-22 11:00:00,0.226,0.307,0.292 +2014-07-22 12:00:00,0.22699999999999998,0.307,0.29100000000000004 +2014-07-22 13:00:00,0.22699999999999998,0.307,0.29 +2014-07-22 14:00:00,0.228,0.305,0.289 +2014-07-22 15:00:00,0.22699999999999998,0.304,0.28800000000000003 +2014-07-22 16:00:00,0.22699999999999998,0.304,0.287 +2014-07-22 17:00:00,0.226,0.304,0.287 +2014-07-22 18:00:00,0.226,0.302,0.287 +2014-07-22 19:00:00,0.226,0.302,0.287 +2014-07-22 20:00:00,0.226,0.302,0.287 +2014-07-22 21:00:00,0.226,0.302,0.28600000000000003 +2014-07-22 22:00:00,0.226,0.303,0.28600000000000003 +2014-07-22 23:00:00,0.226,0.304,0.28600000000000003 +2014-07-23 00:00:00,0.225,0.303,0.287 +2014-07-23 01:00:00,0.226,0.303,0.28600000000000003 +2014-07-23 02:00:00,0.23,0.309,0.287 +2014-07-23 03:00:00,0.22899999999999998,0.344,0.287 +2014-07-23 04:00:00,0.23,0.349,0.287 +2014-07-23 05:00:00,0.23,0.35,0.287 +2014-07-23 06:00:00,0.23,0.349,0.287 +2014-07-23 07:00:00,0.23,0.348,0.287 +2014-07-23 08:00:00,0.231,0.34600000000000003,0.287 +2014-07-23 09:00:00,0.231,0.345,0.287 +2014-07-23 10:00:00,0.23,0.34600000000000003,0.287 +2014-07-23 11:00:00,0.23,0.34600000000000003,0.28600000000000003 +2014-07-23 12:00:00,0.23,0.34600000000000003,0.28600000000000003 +2014-07-23 13:00:00,0.23,0.345,0.28600000000000003 +2014-07-23 14:00:00,0.23,0.344,0.28600000000000003 +2014-07-23 15:00:00,0.23,0.344,0.285 +2014-07-23 16:00:00,0.228,0.34299999999999997,0.285 +2014-07-23 17:00:00,0.228,0.34299999999999997,0.285 +2014-07-23 18:00:00,0.22699999999999998,0.342,0.285 +2014-07-23 19:00:00,0.22699999999999998,0.341,0.284 +2014-07-23 20:00:00,0.22699999999999998,0.33799999999999997,0.284 +2014-07-23 21:00:00,0.22699999999999998,0.337,0.284 +2014-07-23 22:00:00,0.228,0.428,0.284 +2014-07-23 23:00:00,0.228,0.44299999999999995,0.284 +2014-07-24 00:00:00,0.22699999999999998,0.44,0.284 +2014-07-24 01:00:00,0.22699999999999998,0.43700000000000006,0.284 +2014-07-24 02:00:00,0.226,0.43700000000000006,0.284 +2014-07-24 03:00:00,0.226,0.39899999999999997,0.284 +2014-07-24 04:00:00,0.225,0.361,0.284 +2014-07-24 05:00:00,0.226,0.35100000000000003,0.284 +2014-07-24 06:00:00,0.225,0.35200000000000004,0.284 +2014-07-24 07:00:00,0.226,0.358,0.284 +2014-07-24 08:00:00,0.226,0.354,0.285 +2014-07-24 09:00:00,0.226,0.35,0.284 +2014-07-24 10:00:00,0.225,0.349,0.284 +2014-07-24 11:00:00,0.22399999999999998,0.34600000000000003,0.284 +2014-07-24 12:00:00,0.218,0.344,0.284 +2014-07-24 13:00:00,0.217,0.344,0.28300000000000003 +2014-07-24 14:00:00,0.217,0.344,0.28300000000000003 +2014-07-24 15:00:00,0.217,0.344,0.28300000000000003 +2014-07-24 16:00:00,0.217,0.34299999999999997,0.28300000000000003 +2014-07-24 17:00:00,0.21600000000000003,0.34299999999999997,0.28300000000000003 +2014-07-24 18:00:00,0.243,0.342,0.322 +2014-07-24 19:00:00,0.41700000000000004,0.341,0.39 +2014-07-24 20:00:00,0.312,0.341,0.391 +2014-07-24 21:00:00,0.256,0.341,0.39 +2014-07-24 22:00:00,0.253,0.341,0.391 +2014-07-24 23:00:00,0.251,0.341,0.392 +2014-07-25 00:00:00,0.25,0.34,0.392 +2014-07-25 01:00:00,0.25,0.33899999999999997,0.392 +2014-07-25 02:00:00,0.249,0.33899999999999997,0.392 +2014-07-25 03:00:00,0.249,0.33899999999999997,0.387 +2014-07-25 04:00:00,0.248,0.33799999999999997,0.376 +2014-07-25 05:00:00,0.248,0.33799999999999997,0.366 +2014-07-25 06:00:00,0.248,0.33799999999999997,0.35 +2014-07-25 07:00:00,0.247,0.33799999999999997,0.348 +2014-07-25 08:00:00,0.247,0.33799999999999997,0.34700000000000003 +2014-07-25 09:00:00,0.24600000000000002,0.33799999999999997,0.345 +2014-07-25 10:00:00,0.24600000000000002,0.33799999999999997,0.34299999999999997 +2014-07-25 11:00:00,0.247,0.336,0.341 +2014-07-25 12:00:00,0.248,0.335,0.336 +2014-07-25 13:00:00,0.249,0.33399999999999996,0.33399999999999996 +2014-07-25 14:00:00,0.249,0.332,0.332 +2014-07-25 15:00:00,0.249,0.331,0.32899999999999996 +2014-07-25 16:00:00,0.249,0.33,0.32799999999999996 +2014-07-25 17:00:00,0.248,0.32899999999999996,0.326 +2014-07-25 18:00:00,0.248,0.327,0.325 +2014-07-25 19:00:00,0.248,0.327,0.325 +2014-07-25 20:00:00,0.247,0.326,0.324 +2014-07-25 21:00:00,0.247,0.326,0.32299999999999995 +2014-07-25 22:00:00,0.247,0.326,0.322 +2014-07-25 23:00:00,0.247,0.326,0.322 +2014-07-26 00:00:00,0.24600000000000002,0.326,0.321 +2014-07-26 01:00:00,0.24600000000000002,0.326,0.321 +2014-07-26 02:00:00,0.24600000000000002,0.326,0.321 +2014-07-26 03:00:00,0.245,0.326,0.32 +2014-07-26 04:00:00,0.245,0.326,0.32 +2014-07-26 05:00:00,0.245,0.326,0.32 +2014-07-26 06:00:00,0.245,0.326,0.319 +2014-07-26 07:00:00,0.245,0.326,0.319 +2014-07-26 08:00:00,0.245,0.326,0.319 +2014-07-26 09:00:00,0.245,0.326,0.319 +2014-07-26 10:00:00,0.244,0.325,0.318 +2014-07-26 11:00:00,0.244,0.324,0.318 +2014-07-26 12:00:00,0.244,0.324,0.317 +2014-07-26 13:00:00,0.243,0.324,0.316 +2014-07-26 14:00:00,0.243,0.322,0.315 +2014-07-26 15:00:00,0.242,0.321,0.314 +2014-07-26 16:00:00,0.242,0.321,0.313 +2014-07-26 17:00:00,0.242,0.32,0.313 +2014-07-26 18:00:00,0.24100000000000002,0.319,0.313 +2014-07-26 19:00:00,0.24100000000000002,0.318,0.312 +2014-07-26 20:00:00,0.24100000000000002,0.317,0.312 +2014-07-26 21:00:00,0.24100000000000002,0.317,0.312 +2014-07-26 22:00:00,0.24100000000000002,0.317,0.312 +2014-07-26 23:00:00,0.24,0.317,0.312 +2014-07-27 00:00:00,0.24,0.317,0.312 +2014-07-27 01:00:00,0.24,0.317,0.312 +2014-07-27 02:00:00,0.24,0.317,0.311 +2014-07-27 03:00:00,0.24,0.317,0.311 +2014-07-27 04:00:00,0.24,0.317,0.311 +2014-07-27 05:00:00,0.24,0.317,0.311 +2014-07-27 06:00:00,0.24,0.317,0.311 +2014-07-27 07:00:00,0.239,0.317,0.311 +2014-07-27 08:00:00,0.239,0.317,0.312 +2014-07-27 09:00:00,0.239,0.317,0.312 +2014-07-27 10:00:00,0.239,0.317,0.311 +2014-07-27 11:00:00,0.23800000000000002,0.317,0.311 +2014-07-27 12:00:00,0.23800000000000002,0.317,0.31 +2014-07-27 13:00:00,0.237,0.317,0.309 +2014-07-27 14:00:00,0.237,0.315,0.309 +2014-07-27 15:00:00,0.23600000000000002,0.315,0.308 +2014-07-27 16:00:00,0.23600000000000002,0.315,0.308 +2014-07-27 17:00:00,0.23600000000000002,0.314,0.307 +2014-07-27 18:00:00,0.235,0.314,0.307 +2014-07-27 19:00:00,0.235,0.314,0.306 +2014-07-27 20:00:00,0.235,0.314,0.306 +2014-07-27 21:00:00,0.23399999999999999,0.314,0.306 +2014-07-27 22:00:00,0.23399999999999999,0.314,0.306 +2014-07-27 23:00:00,0.23399999999999999,0.314,0.306 +2014-07-28 00:00:00,0.23399999999999999,0.314,0.306 +2014-07-28 01:00:00,0.233,0.314,0.306 +2014-07-28 02:00:00,0.233,0.314,0.306 +2014-07-28 03:00:00,0.233,0.314,0.306 +2014-07-28 04:00:00,0.233,0.314,0.306 +2014-07-28 05:00:00,0.233,0.314,0.306 +2014-07-28 06:00:00,0.233,0.314,0.306 +2014-07-28 07:00:00,0.233,0.314,0.306 +2014-07-28 08:00:00,0.233,0.314,0.306 +2014-07-28 09:00:00,0.233,0.314,0.306 +2014-07-28 10:00:00,0.23199999999999998,0.314,0.306 +2014-07-28 11:00:00,0.23199999999999998,0.314,0.306 +2014-07-28 12:00:00,0.231,0.314,0.305 +2014-07-28 13:00:00,0.231,0.313,0.304 +2014-07-28 14:00:00,0.231,0.312,0.304 +2014-07-28 15:00:00,0.23,0.312,0.304 +2014-07-28 16:00:00,0.23,0.311,0.303 +2014-07-28 17:00:00,0.22699999999999998,0.31,0.308 +2014-07-28 18:00:00,0.22699999999999998,0.31,0.308 +2014-07-28 19:00:00,0.22699999999999998,0.31,0.308 +2014-07-28 20:00:00,0.228,0.31,0.308 +2014-07-28 21:00:00,0.22699999999999998,0.309,0.308 +2014-07-28 22:00:00,0.22699999999999998,0.309,0.308 +2014-07-28 23:00:00,0.23600000000000002,0.309,0.31 +2014-07-29 00:00:00,0.258,0.31,0.32 +2014-07-29 01:00:00,0.259,0.31,0.325 +2014-07-29 02:00:00,0.258,0.31,0.32799999999999996 +2014-07-29 03:00:00,0.256,0.31,0.326 +2014-07-29 04:00:00,0.256,0.31,0.325 +2014-07-29 05:00:00,0.256,0.31,0.324 +2014-07-29 06:00:00,0.257,0.31,0.32299999999999995 +2014-07-29 07:00:00,0.257,0.309,0.322 +2014-07-29 08:00:00,0.257,0.309,0.321 +2014-07-29 09:00:00,0.257,0.31,0.321 +2014-07-29 10:00:00,0.256,0.309,0.32 +2014-07-29 11:00:00,0.256,0.309,0.32 +2014-07-29 12:00:00,0.255,0.309,0.319 +2014-07-29 13:00:00,0.255,0.309,0.319 +2014-07-29 14:00:00,0.254,0.307,0.318 +2014-07-29 15:00:00,0.254,0.307,0.318 +2014-07-29 16:00:00,0.254,0.306,0.316 +2014-07-29 17:00:00,0.254,0.305,0.316 +2014-07-29 18:00:00,0.254,0.305,0.316 +2014-07-29 19:00:00,0.348,0.305,0.384 +2014-07-29 20:00:00,0.363,0.304,0.401 +2014-07-29 21:00:00,0.303,0.304,0.401 +2014-07-29 22:00:00,0.273,0.304,0.401 +2014-07-29 23:00:00,0.263,0.305,0.401 +2014-07-30 00:00:00,0.26,0.305,0.4 +2014-07-30 01:00:00,0.258,0.305,0.402 +2014-07-30 02:00:00,0.259,0.305,0.401 +2014-07-30 03:00:00,0.268,0.305,0.401 +2014-07-30 04:00:00,0.267,0.305,0.401 +2014-07-30 05:00:00,0.263,0.305,0.401 +2014-07-30 06:00:00,0.261,0.305,0.402 +2014-07-30 07:00:00,0.26,0.305,0.402 +2014-07-30 08:00:00,0.259,0.305,0.401 +2014-07-30 09:00:00,0.258,0.305,0.402 +2014-07-30 10:00:00,0.258,0.305,0.402 +2014-07-30 11:00:00,0.257,0.305,0.402 +2014-07-30 12:00:00,0.256,0.305,0.40299999999999997 +2014-07-30 13:00:00,0.256,0.305,0.40299999999999997 +2014-07-30 14:00:00,0.255,0.304,0.402 +2014-07-30 15:00:00,0.255,0.304,0.4 +2014-07-30 16:00:00,0.254,0.304,0.397 +2014-07-30 17:00:00,0.254,0.304,0.39 +2014-07-30 18:00:00,0.254,0.304,0.387 +2014-07-30 19:00:00,0.254,0.303,0.386 +2014-07-30 20:00:00,0.254,0.302,0.373 +2014-07-30 21:00:00,0.254,0.302,0.355 +2014-07-30 22:00:00,0.254,0.302,0.354 +2014-07-30 23:00:00,0.253,0.302,0.35200000000000004 +2014-07-31 00:00:00,0.253,0.302,0.35100000000000003 +2014-07-31 01:00:00,0.253,0.302,0.35 +2014-07-31 02:00:00,0.253,0.302,0.349 +2014-07-31 03:00:00,0.253,0.302,0.348 +2014-07-31 04:00:00,0.253,0.302,0.348 +2014-07-31 05:00:00,0.253,0.302,0.34700000000000003 +2014-07-31 06:00:00,0.253,0.302,0.34600000000000003 +2014-07-31 07:00:00,0.253,0.302,0.34600000000000003 +2014-07-31 08:00:00,0.253,0.302,0.34600000000000003 +2014-07-31 09:00:00,0.253,0.302,0.345 +2014-07-31 10:00:00,0.253,0.302,0.344 +2014-07-31 11:00:00,0.253,0.302,0.34299999999999997 +2014-07-31 12:00:00,0.253,0.302,0.33899999999999997 +2014-07-31 13:00:00,0.253,0.302,0.331 +2014-07-31 14:00:00,0.252,0.301,0.32899999999999996 +2014-07-31 15:00:00,0.252,0.3,0.32799999999999996 +2014-07-31 16:00:00,0.251,0.3,0.327 +2014-07-31 17:00:00,0.251,0.3,0.326 +2014-07-31 18:00:00,0.25,0.299,0.326 +2014-07-31 19:00:00,0.25,0.298,0.326 +2014-07-31 20:00:00,0.249,0.298,0.325 +2014-07-31 21:00:00,0.249,0.298,0.325 +2014-07-31 22:00:00,0.249,0.298,0.325 +2014-07-31 23:00:00,0.249,0.298,0.325 +2014-08-01 00:00:00,0.249,0.298,0.324 +2014-08-01 01:00:00,0.248,0.298,0.324 +2014-08-01 02:00:00,0.248,0.298,0.324 +2014-08-01 03:00:00,0.248,0.298,0.324 +2014-08-01 04:00:00,0.248,0.298,0.324 +2014-08-01 05:00:00,0.248,0.298,0.324 +2014-08-01 06:00:00,0.248,0.298,0.32299999999999995 +2014-08-01 07:00:00,0.248,0.298,0.32299999999999995 +2014-08-01 08:00:00,0.247,0.298,0.32299999999999995 +2014-08-01 09:00:00,0.247,0.298,0.32299999999999995 +2014-08-01 10:00:00,0.247,0.298,0.32299999999999995 +2014-08-01 11:00:00,0.24600000000000002,0.298,0.322 +2014-08-01 12:00:00,0.24600000000000002,0.298,0.322 +2014-08-01 13:00:00,0.245,0.298,0.321 +2014-08-01 14:00:00,0.245,0.298,0.321 +2014-08-01 15:00:00,0.244,0.298,0.32 +2014-08-01 16:00:00,0.244,0.297,0.319 +2014-08-01 17:00:00,0.243,0.297,0.319 +2014-08-01 18:00:00,0.243,0.297,0.319 +2014-08-01 19:00:00,0.243,0.295,0.319 +2014-08-01 20:00:00,0.242,0.295,0.319 +2014-08-01 21:00:00,0.242,0.295,0.319 +2014-08-01 22:00:00,0.242,0.295,0.319 +2014-08-01 23:00:00,0.242,0.295,0.318 +2014-08-02 00:00:00,0.24100000000000002,0.295,0.318 +2014-08-02 01:00:00,0.24100000000000002,0.295,0.318 +2014-08-02 02:00:00,0.24100000000000002,0.295,0.318 +2014-08-02 03:00:00,0.24100000000000002,0.295,0.318 +2014-08-02 04:00:00,0.24,0.295,0.318 +2014-08-02 05:00:00,0.24,0.295,0.318 +2014-08-02 06:00:00,0.24,0.295,0.318 +2014-08-02 07:00:00,0.24,0.295,0.318 +2014-08-02 08:00:00,0.24,0.295,0.318 +2014-08-02 09:00:00,0.24,0.295,0.318 +2014-08-02 10:00:00,0.24,0.294,0.318 +2014-08-02 11:00:00,0.24,0.293,0.318 +2014-08-02 12:00:00,0.239,0.293,0.317 +2014-08-02 13:00:00,0.239,0.293,0.317 +2014-08-02 14:00:00,0.239,0.293,0.317 +2014-08-02 15:00:00,0.23800000000000002,0.292,0.316 +2014-08-02 16:00:00,0.23800000000000002,0.292,0.316 +2014-08-02 17:00:00,0.23800000000000002,0.29,0.315 +2014-08-02 18:00:00,0.23800000000000002,0.29,0.315 +2014-08-02 19:00:00,0.237,0.29,0.315 +2014-08-02 20:00:00,0.237,0.29,0.315 +2014-08-02 21:00:00,0.237,0.29,0.315 +2014-08-02 22:00:00,0.237,0.29,0.315 +2014-08-02 23:00:00,0.237,0.29,0.315 +2014-08-03 00:00:00,0.237,0.29,0.315 +2014-08-03 01:00:00,0.237,0.29,0.315 +2014-08-03 02:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 03:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 04:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 05:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 06:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 07:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 08:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 09:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 10:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 11:00:00,0.23600000000000002,0.29,0.315 +2014-08-03 12:00:00,0.235,0.29,0.314 +2014-08-03 13:00:00,0.235,0.29,0.314 +2014-08-03 14:00:00,0.23399999999999999,0.29,0.314 +2014-08-03 15:00:00,0.23399999999999999,0.289,0.313 +2014-08-03 16:00:00,0.23399999999999999,0.28800000000000003,0.313 +2014-08-03 17:00:00,0.233,0.287,0.313 +2014-08-03 18:00:00,0.233,0.287,0.313 +2014-08-03 19:00:00,0.233,0.287,0.313 +2014-08-03 20:00:00,0.233,0.287,0.313 +2014-08-03 21:00:00,0.233,0.287,0.312 +2014-08-03 22:00:00,0.23199999999999998,0.287,0.312 +2014-08-03 23:00:00,0.23199999999999998,0.287,0.312 +2014-08-04 00:00:00,0.23199999999999998,0.287,0.312 +2014-08-04 01:00:00,0.23199999999999998,0.287,0.312 +2014-08-04 02:00:00,0.23199999999999998,0.287,0.312 +2014-08-04 03:00:00,0.23199999999999998,0.287,0.312 +2014-08-04 04:00:00,0.23199999999999998,0.287,0.312 +2014-08-04 05:00:00,0.23199999999999998,0.287,0.312 +2014-08-04 06:00:00,0.231,0.287,0.312 +2014-08-04 07:00:00,0.231,0.287,0.312 +2014-08-04 08:00:00,0.231,0.28600000000000003,0.313 +2014-08-04 09:00:00,0.231,0.28600000000000003,0.313 +2014-08-04 10:00:00,0.231,0.28600000000000003,0.312 +2014-08-04 11:00:00,0.231,0.28600000000000003,0.312 +2014-08-04 12:00:00,0.23,0.28600000000000003,0.311 +2014-08-04 13:00:00,0.23,0.285,0.311 +2014-08-04 14:00:00,0.23,0.285,0.31 +2014-08-04 15:00:00,0.22899999999999998,0.285,0.31 +2014-08-04 16:00:00,0.22899999999999998,0.284,0.31 +2014-08-04 17:00:00,0.22899999999999998,0.28300000000000003,0.31 +2014-08-04 18:00:00,0.22899999999999998,0.28300000000000003,0.31 +2014-08-04 19:00:00,0.22899999999999998,0.284,0.31 +2014-08-04 20:00:00,0.22899999999999998,0.284,0.31 +2014-08-04 21:00:00,0.22899999999999998,0.285,0.31 +2014-08-04 22:00:00,0.22899999999999998,0.28300000000000003,0.31 +2014-08-04 23:00:00,0.22899999999999998,0.28600000000000003,0.311 +2014-08-05 00:00:00,0.228,0.287,0.311 +2014-08-05 01:00:00,0.228,0.287,0.311 +2014-08-05 02:00:00,0.228,0.287,0.311 +2014-08-05 03:00:00,0.228,0.287,0.311 +2014-08-05 04:00:00,0.22699999999999998,0.28800000000000003,0.313 +2014-08-05 05:00:00,0.228,0.28800000000000003,0.313 +2014-08-05 06:00:00,0.228,0.28800000000000003,0.313 +2014-08-05 07:00:00,0.228,0.289,0.313 +2014-08-05 08:00:00,0.22699999999999998,0.29,0.313 +2014-08-05 09:00:00,0.228,0.29,0.313 +2014-08-05 10:00:00,0.228,0.29,0.312 +2014-08-05 11:00:00,0.228,0.29,0.312 +2014-08-05 12:00:00,0.228,0.29,0.311 +2014-08-05 13:00:00,0.228,0.29,0.311 +2014-08-05 14:00:00,0.228,0.29,0.31 +2014-08-05 15:00:00,0.228,0.29,0.31 +2014-08-05 16:00:00,0.228,0.29,0.31 +2014-08-05 17:00:00,0.228,0.289,0.309 +2014-08-05 18:00:00,0.22699999999999998,0.28800000000000003,0.309 +2014-08-05 19:00:00,0.22699999999999998,0.28800000000000003,0.309 +2014-08-05 20:00:00,0.22699999999999998,0.28800000000000003,0.309 +2014-08-05 21:00:00,0.22699999999999998,0.28800000000000003,0.309 +2014-08-05 22:00:00,0.22699999999999998,0.28800000000000003,0.309 +2014-08-05 23:00:00,0.22699999999999998,0.28800000000000003,0.309 +2014-08-06 00:00:00,0.22699999999999998,0.28800000000000003,0.309 +2014-08-06 01:00:00,0.22699999999999998,0.289,0.309 +2014-08-06 02:00:00,0.226,0.289,0.309 +2014-08-06 03:00:00,0.226,0.289,0.308 +2014-08-06 04:00:00,0.226,0.289,0.308 +2014-08-06 05:00:00,0.226,0.289,0.308 +2014-08-06 06:00:00,0.226,0.289,0.308 +2014-08-06 07:00:00,0.226,0.289,0.309 +2014-08-06 08:00:00,0.226,0.289,0.309 +2014-08-06 09:00:00,0.226,0.289,0.309 +2014-08-06 10:00:00,0.226,0.289,0.308 +2014-08-06 11:00:00,0.226,0.289,0.308 +2014-08-06 12:00:00,0.226,0.289,0.308 +2014-08-06 13:00:00,0.226,0.28800000000000003,0.307 +2014-08-06 14:00:00,0.226,0.28800000000000003,0.307 +2014-08-06 15:00:00,0.225,0.28800000000000003,0.307 +2014-08-06 16:00:00,0.225,0.287,0.306 +2014-08-06 17:00:00,0.225,0.287,0.306 +2014-08-06 18:00:00,0.225,0.287,0.306 +2014-08-06 19:00:00,0.225,0.287,0.306 +2014-08-06 20:00:00,0.225,0.287,0.306 +2014-08-06 21:00:00,0.225,0.287,0.306 +2014-08-06 22:00:00,0.225,0.287,0.306 +2014-08-06 23:00:00,0.225,0.287,0.306 +2014-08-07 00:00:00,0.225,0.287,0.306 +2014-08-07 01:00:00,0.225,0.287,0.306 +2014-08-07 02:00:00,0.225,0.287,0.306 +2014-08-07 03:00:00,0.225,0.287,0.306 +2014-08-07 04:00:00,0.225,0.287,0.306 +2014-08-07 05:00:00,0.225,0.287,0.307 +2014-08-07 06:00:00,0.225,0.287,0.307 +2014-08-07 07:00:00,0.225,0.287,0.307 +2014-08-07 08:00:00,0.22399999999999998,0.287,0.307 +2014-08-07 09:00:00,0.22399999999999998,0.287,0.307 +2014-08-07 10:00:00,0.22399999999999998,0.287,0.307 +2014-08-07 11:00:00,0.22399999999999998,0.287,0.307 +2014-08-07 12:00:00,0.22399999999999998,0.287,0.306 +2014-08-07 13:00:00,0.22399999999999998,0.287,0.306 +2014-08-07 14:00:00,0.22399999999999998,0.287,0.305 +2014-08-07 15:00:00,0.223,0.287,0.304 +2014-08-07 16:00:00,0.223,0.287,0.304 +2014-08-07 17:00:00,0.223,0.287,0.304 +2014-08-07 18:00:00,0.223,0.287,0.304 +2014-08-07 19:00:00,0.223,0.287,0.303 +2014-08-07 20:00:00,0.223,0.287,0.303 +2014-08-07 21:00:00,0.223,0.287,0.303 +2014-08-07 22:00:00,0.222,0.303,0.303 +2014-08-07 23:00:00,0.222,0.308,0.303 +2014-08-08 00:00:00,0.222,0.308,0.303 +2014-08-08 01:00:00,0.222,0.31,0.303 +2014-08-08 02:00:00,0.222,0.31,0.303 +2014-08-08 03:00:00,0.222,0.31,0.303 +2014-08-08 04:00:00,0.222,0.31,0.303 +2014-08-08 05:00:00,0.221,0.31,0.303 +2014-08-08 06:00:00,0.222,0.309,0.303 +2014-08-08 07:00:00,0.223,0.309,0.303 +2014-08-08 08:00:00,0.223,0.309,0.303 +2014-08-08 09:00:00,0.223,0.309,0.304 +2014-08-08 10:00:00,0.223,0.307,0.303 +2014-08-08 11:00:00,0.223,0.307,0.303 +2014-08-08 12:00:00,0.222,0.307,0.302 +2014-08-08 13:00:00,0.222,0.307,0.302 +2014-08-08 14:00:00,0.223,0.307,0.301 +2014-08-08 15:00:00,0.223,0.306,0.301 +2014-08-08 16:00:00,0.223,0.305,0.3 +2014-08-08 17:00:00,0.222,0.304,0.3 +2014-08-08 18:00:00,0.22,0.304,0.301 +2014-08-08 19:00:00,0.21899999999999997,0.304,0.302 +2014-08-08 20:00:00,0.22,0.304,0.302 +2014-08-08 21:00:00,0.22,0.303,0.302 +2014-08-08 22:00:00,0.21899999999999997,0.303,0.302 +2014-08-08 23:00:00,0.21899999999999997,0.302,0.302 +2014-08-09 00:00:00,0.21899999999999997,0.304,0.302 +2014-08-09 01:00:00,0.221,0.308,0.302 +2014-08-09 02:00:00,0.221,0.309,0.301 +2014-08-09 03:00:00,0.21899999999999997,0.309,0.302 +2014-08-09 04:00:00,0.21899999999999997,0.307,0.302 +2014-08-09 05:00:00,0.21899999999999997,0.307,0.303 +2014-08-09 06:00:00,0.21899999999999997,0.307,0.303 +2014-08-09 07:00:00,0.21899999999999997,0.307,0.303 +2014-08-09 08:00:00,0.21899999999999997,0.307,0.303 +2014-08-09 09:00:00,0.21899999999999997,0.307,0.302 +2014-08-09 10:00:00,0.22,0.306,0.302 +2014-08-09 11:00:00,0.22,0.305,0.302 +2014-08-09 12:00:00,0.21899999999999997,0.305,0.301 +2014-08-09 13:00:00,0.21899999999999997,0.305,0.3 +2014-08-09 14:00:00,0.22,0.306,0.299 +2014-08-09 15:00:00,0.221,0.309,0.299 +2014-08-09 16:00:00,0.221,0.315,0.298 +2014-08-09 17:00:00,0.22,0.322,0.298 +2014-08-09 18:00:00,0.218,0.326,0.298 +2014-08-09 19:00:00,0.218,0.32799999999999996,0.297 +2014-08-09 20:00:00,0.218,0.32899999999999996,0.297 +2014-08-09 21:00:00,0.218,0.33,0.297 +2014-08-09 22:00:00,0.218,0.331,0.297 +2014-08-09 23:00:00,0.217,0.331,0.297 +2014-08-10 00:00:00,0.21600000000000003,0.331,0.297 +2014-08-10 01:00:00,0.21600000000000003,0.331,0.297 +2014-08-10 02:00:00,0.21600000000000003,0.331,0.297 +2014-08-10 03:00:00,0.21600000000000003,0.331,0.297 +2014-08-10 04:00:00,0.214,0.331,0.297 +2014-08-10 05:00:00,0.212,0.33,0.298 +2014-08-10 06:00:00,0.21100000000000002,0.32899999999999996,0.298 +2014-08-10 07:00:00,0.21100000000000002,0.32899999999999996,0.298 +2014-08-10 08:00:00,0.212,0.32799999999999996,0.298 +2014-08-10 09:00:00,0.212,0.327,0.298 +2014-08-10 10:00:00,0.212,0.327,0.298 +2014-08-10 11:00:00,0.212,0.327,0.297 +2014-08-10 12:00:00,0.212,0.326,0.297 +2014-08-10 13:00:00,0.212,0.326,0.297 +2014-08-10 14:00:00,0.213,0.326,0.297 +2014-08-10 15:00:00,0.213,0.324,0.298 +2014-08-10 16:00:00,0.212,0.324,0.3 +2014-08-10 17:00:00,0.212,0.32299999999999995,0.301 +2014-08-10 18:00:00,0.212,0.322,0.301 +2014-08-10 19:00:00,0.22399999999999998,0.321,0.303 +2014-08-10 20:00:00,0.23800000000000002,0.321,0.306 +2014-08-10 21:00:00,0.23800000000000002,0.321,0.308 +2014-08-10 22:00:00,0.237,0.321,0.309 +2014-08-10 23:00:00,0.237,0.32,0.309 +2014-08-11 00:00:00,0.23800000000000002,0.32,0.309 +2014-08-11 01:00:00,0.23800000000000002,0.319,0.309 +2014-08-11 02:00:00,0.23800000000000002,0.319,0.309 +2014-08-11 03:00:00,0.23800000000000002,0.319,0.309 +2014-08-11 04:00:00,0.23800000000000002,0.319,0.309 +2014-08-11 05:00:00,0.237,0.319,0.309 +2014-08-11 06:00:00,0.237,0.319,0.309 +2014-08-11 07:00:00,0.237,0.318,0.309 +2014-08-11 08:00:00,0.237,0.317,0.309 +2014-08-11 09:00:00,0.237,0.317,0.309 +2014-08-11 10:00:00,0.237,0.317,0.309 +2014-08-11 11:00:00,0.237,0.317,0.308 +2014-08-11 12:00:00,0.23800000000000002,0.317,0.308 +2014-08-11 13:00:00,0.239,0.315,0.306 +2014-08-11 14:00:00,0.23800000000000002,0.315,0.306 +2014-08-11 15:00:00,0.23800000000000002,0.314,0.305 +2014-08-11 16:00:00,0.23800000000000002,0.314,0.304 +2014-08-11 17:00:00,0.237,0.314,0.304 +2014-08-11 18:00:00,0.237,0.313,0.303 +2014-08-11 19:00:00,0.23600000000000002,0.313,0.303 +2014-08-11 20:00:00,0.23600000000000002,0.312,0.303 +2014-08-11 21:00:00,0.23600000000000002,0.312,0.303 +2014-08-11 22:00:00,0.23600000000000002,0.312,0.303 +2014-08-11 23:00:00,0.235,0.312,0.303 +2014-08-12 00:00:00,0.23600000000000002,0.312,0.303 +2014-08-12 01:00:00,0.235,0.312,0.303 +2014-08-12 02:00:00,0.235,0.312,0.303 +2014-08-12 03:00:00,0.235,0.312,0.304 +2014-08-12 04:00:00,0.235,0.311,0.304 +2014-08-12 05:00:00,0.235,0.311,0.304 +2014-08-12 06:00:00,0.23399999999999999,0.31,0.304 +2014-08-12 07:00:00,0.23399999999999999,0.31,0.304 +2014-08-12 08:00:00,0.23399999999999999,0.31,0.304 +2014-08-12 09:00:00,0.23399999999999999,0.31,0.304 +2014-08-12 10:00:00,0.23399999999999999,0.31,0.304 +2014-08-12 11:00:00,0.23399999999999999,0.31,0.304 +2014-08-12 12:00:00,0.233,0.31,0.303 +2014-08-12 13:00:00,0.233,0.31,0.303 +2014-08-12 14:00:00,0.23199999999999998,0.31,0.302 +2014-08-12 15:00:00,0.23199999999999998,0.31,0.302 +2014-08-12 16:00:00,0.23199999999999998,0.309,0.301 +2014-08-12 17:00:00,0.231,0.309,0.301 +2014-08-12 18:00:00,0.231,0.309,0.301 +2014-08-12 19:00:00,0.23,0.309,0.3 +2014-08-12 20:00:00,0.23,0.309,0.3 +2014-08-12 21:00:00,0.23,0.307,0.3 +2014-08-12 22:00:00,0.23,0.307,0.3 +2014-08-12 23:00:00,0.23,0.307,0.3 +2014-08-13 00:00:00,0.23,0.307,0.3 +2014-08-13 01:00:00,0.23,0.307,0.301 +2014-08-13 02:00:00,0.23,0.308,0.301 +2014-08-13 03:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 04:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 05:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 06:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 07:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 08:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 09:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 10:00:00,0.22899999999999998,0.307,0.301 +2014-08-13 11:00:00,0.228,0.307,0.301 +2014-08-13 12:00:00,0.228,0.307,0.3 +2014-08-13 13:00:00,0.228,0.307,0.3 +2014-08-13 14:00:00,0.228,0.305,0.3 +2014-08-13 15:00:00,0.228,0.305,0.301 +2014-08-13 16:00:00,0.228,0.304,0.302 +2014-08-13 17:00:00,0.228,0.304,0.303 +2014-08-13 18:00:00,0.22899999999999998,0.304,0.305 +2014-08-13 19:00:00,0.254,0.304,0.325 +2014-08-13 20:00:00,0.258,0.304,0.33899999999999997 +2014-08-13 21:00:00,0.257,0.304,0.337 +2014-08-13 22:00:00,0.255,0.304,0.335 +2014-08-13 23:00:00,0.254,0.304,0.33299999999999996 +2014-08-14 00:00:00,0.253,0.304,0.331 +2014-08-14 01:00:00,0.252,0.304,0.33 +2014-08-14 02:00:00,0.252,0.304,0.32799999999999996 +2014-08-14 03:00:00,0.251,0.304,0.326 +2014-08-14 04:00:00,0.25,0.304,0.324 +2014-08-14 05:00:00,0.25,0.304,0.32299999999999995 +2014-08-14 06:00:00,0.25,0.304,0.321 +2014-08-14 07:00:00,0.249,0.304,0.321 +2014-08-14 08:00:00,0.249,0.304,0.32 +2014-08-14 09:00:00,0.249,0.304,0.32 +2014-08-14 10:00:00,0.249,0.304,0.319 +2014-08-14 11:00:00,0.249,0.304,0.318 +2014-08-14 12:00:00,0.25,0.304,0.316 +2014-08-14 13:00:00,0.251,0.303,0.315 +2014-08-14 14:00:00,0.251,0.302,0.314 +2014-08-14 15:00:00,0.251,0.302,0.313 +2014-08-14 16:00:00,0.25,0.3,0.312 +2014-08-14 17:00:00,0.25,0.3,0.311 +2014-08-14 18:00:00,0.25,0.3,0.311 +2014-08-14 19:00:00,0.249,0.3,0.311 +2014-08-14 20:00:00,0.251,0.3,0.314 +2014-08-14 21:00:00,0.254,0.3,0.315 +2014-08-14 22:00:00,0.255,0.3,0.315 +2014-08-14 23:00:00,0.254,0.3,0.315 +2014-08-15 00:00:00,0.254,0.3,0.315 +2014-08-15 01:00:00,0.256,0.3,0.315 +2014-08-15 02:00:00,0.255,0.3,0.315 +2014-08-15 03:00:00,0.253,0.3,0.315 +2014-08-15 04:00:00,0.253,0.3,0.315 +2014-08-15 05:00:00,0.253,0.3,0.315 +2014-08-15 06:00:00,0.252,0.3,0.315 +2014-08-15 07:00:00,0.252,0.3,0.315 +2014-08-15 08:00:00,0.252,0.3,0.315 +2014-08-15 09:00:00,0.251,0.3,0.315 +2014-08-15 10:00:00,0.253,0.3,0.315 +2014-08-15 11:00:00,0.257,0.3,0.315 +2014-08-15 12:00:00,0.258,0.3,0.316 +2014-08-15 13:00:00,0.261,0.299,0.316 +2014-08-15 14:00:00,0.261,0.298,0.316 +2014-08-15 15:00:00,0.261,0.298,0.316 +2014-08-15 16:00:00,0.261,0.298,0.316 +2014-08-15 17:00:00,0.261,0.297,0.315 +2014-08-15 18:00:00,0.261,0.297,0.315 +2014-08-15 19:00:00,0.26,0.297,0.315 +2014-08-15 20:00:00,0.26,0.297,0.315 +2014-08-15 21:00:00,0.259,0.297,0.316 +2014-08-15 22:00:00,0.259,0.297,0.316 +2014-08-15 23:00:00,0.258,0.297,0.316 +2014-08-16 00:00:00,0.258,0.297,0.316 +2014-08-16 01:00:00,0.258,0.297,0.316 +2014-08-16 02:00:00,0.257,0.297,0.316 +2014-08-16 03:00:00,0.257,0.297,0.316 +2014-08-16 04:00:00,0.256,0.297,0.316 +2014-08-16 05:00:00,0.256,0.297,0.316 +2014-08-16 06:00:00,0.256,0.297,0.316 +2014-08-16 07:00:00,0.256,0.297,0.316 +2014-08-16 08:00:00,0.255,0.297,0.316 +2014-08-16 09:00:00,0.255,0.297,0.316 +2014-08-16 10:00:00,0.255,0.297,0.315 +2014-08-16 11:00:00,0.255,0.297,0.316 +2014-08-16 12:00:00,0.255,0.297,0.315 +2014-08-16 13:00:00,0.255,0.297,0.315 +2014-08-16 14:00:00,0.255,0.29600000000000004,0.314 +2014-08-16 15:00:00,0.255,0.295,0.314 +2014-08-16 16:00:00,0.255,0.295,0.313 +2014-08-16 17:00:00,0.254,0.295,0.313 +2014-08-16 18:00:00,0.254,0.293,0.313 +2014-08-16 19:00:00,0.254,0.293,0.313 +2014-08-16 20:00:00,0.253,0.293,0.313 +2014-08-16 21:00:00,0.253,0.293,0.313 +2014-08-16 22:00:00,0.253,0.293,0.313 +2014-08-16 23:00:00,0.252,0.293,0.313 +2014-08-17 00:00:00,0.252,0.293,0.313 +2014-08-17 01:00:00,0.252,0.293,0.313 +2014-08-17 02:00:00,0.252,0.293,0.313 +2014-08-17 03:00:00,0.252,0.293,0.313 +2014-08-17 04:00:00,0.252,0.293,0.313 +2014-08-17 05:00:00,0.252,0.293,0.313 +2014-08-17 06:00:00,0.251,0.293,0.313 +2014-08-17 07:00:00,0.251,0.293,0.313 +2014-08-17 08:00:00,0.251,0.293,0.313 +2014-08-17 09:00:00,0.251,0.293,0.313 +2014-08-17 10:00:00,0.251,0.293,0.313 +2014-08-17 11:00:00,0.25,0.293,0.312 +2014-08-17 12:00:00,0.25,0.293,0.312 +2014-08-17 13:00:00,0.25,0.293,0.312 +2014-08-17 14:00:00,0.249,0.293,0.312 +2014-08-17 15:00:00,0.249,0.293,0.311 +2014-08-17 16:00:00,0.249,0.292,0.311 +2014-08-17 17:00:00,0.249,0.292,0.311 +2014-08-17 18:00:00,0.248,0.292,0.311 +2014-08-17 19:00:00,0.248,0.292,0.311 +2014-08-17 20:00:00,0.248,0.292,0.311 +2014-08-17 21:00:00,0.248,0.292,0.311 +2014-08-17 22:00:00,0.248,0.292,0.311 +2014-08-17 23:00:00,0.247,0.292,0.311 +2014-08-18 00:00:00,0.248,0.292,0.311 +2014-08-18 01:00:00,0.247,0.293,0.311 +2014-08-18 02:00:00,0.247,0.292,0.311 +2014-08-18 03:00:00,0.247,0.293,0.311 +2014-08-18 04:00:00,0.247,0.293,0.311 +2014-08-18 05:00:00,0.247,0.293,0.311 +2014-08-18 06:00:00,0.24600000000000002,0.293,0.311 +2014-08-18 07:00:00,0.24600000000000002,0.293,0.311 +2014-08-18 08:00:00,0.24600000000000002,0.293,0.311 +2014-08-18 09:00:00,0.24600000000000002,0.293,0.311 +2014-08-18 10:00:00,0.24600000000000002,0.292,0.311 +2014-08-18 11:00:00,0.24600000000000002,0.292,0.311 +2014-08-18 12:00:00,0.24600000000000002,0.292,0.31 +2014-08-18 13:00:00,0.245,0.292,0.31 +2014-08-18 14:00:00,0.245,0.292,0.31 +2014-08-18 15:00:00,0.245,0.29100000000000004,0.31 +2014-08-18 16:00:00,0.245,0.29,0.31 +2014-08-18 17:00:00,0.245,0.29,0.31 +2014-08-18 18:00:00,0.244,0.29,0.31 +2014-08-18 19:00:00,0.244,0.29,0.309 +2014-08-18 20:00:00,0.244,0.29,0.309 +2014-08-18 21:00:00,0.244,0.29,0.309 +2014-08-18 22:00:00,0.243,0.29,0.309 +2014-08-18 23:00:00,0.243,0.29,0.309 +2014-08-19 00:00:00,0.243,0.29,0.309 +2014-08-19 01:00:00,0.243,0.29,0.309 +2014-08-19 02:00:00,0.243,0.29,0.309 +2014-08-19 03:00:00,0.243,0.29,0.309 +2014-08-19 04:00:00,0.243,0.29,0.309 +2014-08-19 05:00:00,0.243,0.29,0.309 +2014-08-19 06:00:00,0.242,0.29,0.309 +2014-08-19 07:00:00,0.242,0.29,0.309 +2014-08-19 08:00:00,0.242,0.29,0.309 +2014-08-19 09:00:00,0.242,0.29,0.309 +2014-08-19 10:00:00,0.242,0.29,0.309 +2014-08-19 11:00:00,0.242,0.29,0.309 +2014-08-19 12:00:00,0.242,0.29,0.309 +2014-08-19 13:00:00,0.24100000000000002,0.29,0.308 +2014-08-19 14:00:00,0.24100000000000002,0.29,0.308 +2014-08-19 15:00:00,0.24,0.289,0.308 +2014-08-19 16:00:00,0.24,0.289,0.308 +2014-08-19 17:00:00,0.24,0.28800000000000003,0.308 +2014-08-19 18:00:00,0.24,0.28800000000000003,0.308 +2014-08-19 19:00:00,0.24,0.28800000000000003,0.308 +2014-08-19 20:00:00,0.24,0.28800000000000003,0.308 +2014-08-19 21:00:00,0.24,0.28800000000000003,0.308 +2014-08-19 22:00:00,0.24,0.28800000000000003,0.308 +2014-08-19 23:00:00,0.239,0.28800000000000003,0.308 +2014-08-20 00:00:00,0.24,0.28800000000000003,0.307 +2014-08-20 01:00:00,0.239,0.28800000000000003,0.308 +2014-08-20 02:00:00,0.239,0.28800000000000003,0.307 +2014-08-20 03:00:00,0.239,0.29,0.307 +2014-08-20 04:00:00,0.239,0.289,0.307 +2014-08-20 05:00:00,0.239,0.28800000000000003,0.307 +2014-08-20 06:00:00,0.239,0.287,0.307 +2014-08-20 07:00:00,0.23800000000000002,0.287,0.307 +2014-08-20 08:00:00,0.23800000000000002,0.299,0.308 +2014-08-20 09:00:00,0.23800000000000002,0.301,0.308 +2014-08-20 10:00:00,0.23800000000000002,0.302,0.307 +2014-08-20 11:00:00,0.23800000000000002,0.302,0.307 +2014-08-20 12:00:00,0.237,0.302,0.307 +2014-08-20 13:00:00,0.237,0.302,0.307 +2014-08-20 14:00:00,0.237,0.302,0.306 +2014-08-20 15:00:00,0.23600000000000002,0.303,0.306 +2014-08-20 16:00:00,0.23600000000000002,0.304,0.306 +2014-08-20 17:00:00,0.23600000000000002,0.302,0.306 +2014-08-20 18:00:00,0.23600000000000002,0.301,0.306 +2014-08-20 19:00:00,0.235,0.304,0.306 +2014-08-20 20:00:00,0.235,0.313,0.306 +2014-08-20 21:00:00,0.235,0.32799999999999996,0.306 +2014-08-20 22:00:00,0.235,0.33,0.306 +2014-08-20 23:00:00,0.23399999999999999,0.331,0.306 +2014-08-21 00:00:00,0.23399999999999999,0.332,0.306 +2014-08-21 01:00:00,0.23399999999999999,0.341,0.306 +2014-08-21 02:00:00,0.23399999999999999,0.34700000000000003,0.306 +2014-08-21 03:00:00,0.23399999999999999,0.34299999999999997,0.306 +2014-08-21 04:00:00,0.23399999999999999,0.341,0.306 +2014-08-21 05:00:00,0.23399999999999999,0.341,0.306 +2014-08-21 06:00:00,0.23399999999999999,0.33899999999999997,0.306 +2014-08-21 07:00:00,0.23399999999999999,0.33899999999999997,0.306 +2014-08-21 08:00:00,0.23399999999999999,0.33799999999999997,0.306 +2014-08-21 09:00:00,0.23399999999999999,0.33799999999999997,0.306 +2014-08-21 10:00:00,0.23399999999999999,0.337,0.306 +2014-08-21 11:00:00,0.233,0.335,0.305 +2014-08-21 12:00:00,0.233,0.33399999999999996,0.305 +2014-08-21 13:00:00,0.233,0.33399999999999996,0.305 +2014-08-21 14:00:00,0.23199999999999998,0.335,0.304 +2014-08-21 15:00:00,0.23199999999999998,0.336,0.304 +2014-08-21 16:00:00,0.23199999999999998,0.336,0.304 +2014-08-21 17:00:00,0.231,0.33399999999999996,0.304 +2014-08-21 18:00:00,0.231,0.33399999999999996,0.304 +2014-08-21 19:00:00,0.231,0.332,0.304 +2014-08-21 20:00:00,0.231,0.332,0.304 +2014-08-21 21:00:00,0.23,0.331,0.303 +2014-08-21 22:00:00,0.23,0.331,0.304 +2014-08-21 23:00:00,0.23,0.331,0.304 +2014-08-22 00:00:00,0.23,0.331,0.304 +2014-08-22 01:00:00,0.23,0.331,0.303 +2014-08-22 02:00:00,0.23,0.33,0.304 +2014-08-22 03:00:00,0.23,0.32899999999999996,0.303 +2014-08-22 04:00:00,0.22899999999999998,0.32899999999999996,0.303 +2014-08-22 05:00:00,0.22899999999999998,0.32799999999999996,0.303 +2014-08-22 06:00:00,0.22899999999999998,0.327,0.304 +2014-08-22 07:00:00,0.22899999999999998,0.327,0.304 +2014-08-22 08:00:00,0.22899999999999998,0.327,0.304 +2014-08-22 09:00:00,0.22899999999999998,0.326,0.304 +2014-08-22 10:00:00,0.22899999999999998,0.326,0.304 +2014-08-22 11:00:00,0.22899999999999998,0.326,0.304 +2014-08-22 12:00:00,0.228,0.324,0.303 +2014-08-22 13:00:00,0.228,0.324,0.303 +2014-08-22 14:00:00,0.228,0.322,0.303 +2014-08-22 15:00:00,0.228,0.321,0.302 +2014-08-22 16:00:00,0.22699999999999998,0.321,0.302 +2014-08-22 17:00:00,0.22699999999999998,0.32,0.302 +2014-08-22 18:00:00,0.22699999999999998,0.319,0.302 +2014-08-22 19:00:00,0.22699999999999998,0.319,0.302 +2014-08-22 20:00:00,0.22699999999999998,0.317,0.302 +2014-08-22 21:00:00,0.226,0.317,0.302 +2014-08-22 22:00:00,0.226,0.317,0.302 +2014-08-22 23:00:00,0.226,0.317,0.302 +2014-08-23 00:00:00,0.226,0.317,0.302 +2014-08-23 01:00:00,0.226,0.317,0.302 +2014-08-23 02:00:00,0.226,0.318,0.302 +2014-08-23 03:00:00,0.226,0.318,0.302 +2014-08-23 04:00:00,0.226,0.317,0.302 +2014-08-23 05:00:00,0.226,0.317,0.302 +2014-08-23 06:00:00,0.226,0.317,0.302 +2014-08-23 07:00:00,0.226,0.317,0.302 +2014-08-23 08:00:00,0.226,0.317,0.302 +2014-08-23 09:00:00,0.226,0.317,0.302 +2014-08-23 10:00:00,0.226,0.317,0.302 +2014-08-23 11:00:00,0.226,0.317,0.302 +2014-08-23 12:00:00,0.226,0.317,0.301 +2014-08-23 13:00:00,0.226,0.317,0.301 +2014-08-23 14:00:00,0.225,0.316,0.301 +2014-08-23 15:00:00,0.225,0.315,0.3 +2014-08-23 16:00:00,0.222,0.315,0.304 +2014-08-23 17:00:00,0.222,0.314,0.305 +2014-08-23 18:00:00,0.223,0.314,0.304 +2014-08-23 19:00:00,0.223,0.314,0.304 +2014-08-23 20:00:00,0.223,0.314,0.304 +2014-08-23 21:00:00,0.223,0.313,0.304 +2014-08-23 22:00:00,0.223,0.313,0.304 +2014-08-23 23:00:00,0.223,0.313,0.304 +2014-08-24 00:00:00,0.223,0.313,0.304 +2014-08-24 01:00:00,0.223,0.314,0.304 +2014-08-24 02:00:00,0.223,0.314,0.304 +2014-08-24 03:00:00,0.223,0.314,0.304 +2014-08-24 04:00:00,0.223,0.314,0.304 +2014-08-24 05:00:00,0.222,0.314,0.304 +2014-08-24 06:00:00,0.222,0.313,0.304 +2014-08-24 07:00:00,0.222,0.313,0.304 +2014-08-24 08:00:00,0.222,0.313,0.304 +2014-08-24 09:00:00,0.222,0.313,0.304 +2014-08-24 10:00:00,0.222,0.313,0.304 +2014-08-24 11:00:00,0.223,0.313,0.302 +2014-08-24 12:00:00,0.223,0.312,0.302 +2014-08-24 13:00:00,0.223,0.312,0.301 +2014-08-24 14:00:00,0.223,0.311,0.3 +2014-08-24 15:00:00,0.222,0.31,0.3 +2014-08-24 16:00:00,0.222,0.31,0.3 +2014-08-24 17:00:00,0.222,0.31,0.299 +2014-08-24 18:00:00,0.222,0.31,0.299 +2014-08-24 19:00:00,0.222,0.31,0.299 +2014-08-24 20:00:00,0.222,0.309,0.299 +2014-08-24 21:00:00,0.222,0.309,0.299 +2014-08-24 22:00:00,0.222,0.31,0.299 +2014-08-24 23:00:00,0.222,0.31,0.299 +2014-08-25 00:00:00,0.222,0.31,0.299 +2014-08-25 01:00:00,0.222,0.31,0.299 +2014-08-25 02:00:00,0.222,0.31,0.299 +2014-08-25 03:00:00,0.222,0.31,0.299 +2014-08-25 04:00:00,0.222,0.31,0.299 +2014-08-25 05:00:00,0.221,0.31,0.3 +2014-08-25 06:00:00,0.221,0.31,0.3 +2014-08-25 07:00:00,0.221,0.31,0.3 +2014-08-25 08:00:00,0.221,0.31,0.3 +2014-08-25 09:00:00,0.221,0.31,0.3 +2014-08-25 10:00:00,0.221,0.31,0.3 +2014-08-25 11:00:00,0.222,0.31,0.3 +2014-08-25 12:00:00,0.221,0.31,0.299 +2014-08-25 13:00:00,0.221,0.309,0.299 +2014-08-25 14:00:00,0.221,0.309,0.299 +2014-08-25 15:00:00,0.221,0.309,0.298 +2014-08-25 16:00:00,0.221,0.309,0.298 +2014-08-25 17:00:00,0.221,0.308,0.298 +2014-08-25 18:00:00,0.221,0.307,0.298 +2014-08-25 19:00:00,0.221,0.307,0.298 +2014-08-25 20:00:00,0.221,0.307,0.298 +2014-08-25 21:00:00,0.221,0.307,0.298 +2014-08-25 22:00:00,0.221,0.307,0.298 +2014-08-25 23:00:00,0.221,0.307,0.3 +2014-08-26 00:00:00,0.221,0.307,0.3 +2014-08-26 01:00:00,0.221,0.307,0.302 +2014-08-26 02:00:00,0.22,0.307,0.303 +2014-08-26 03:00:00,0.22,0.308,0.304 +2014-08-26 04:00:00,0.23800000000000002,0.308,0.306 +2014-08-26 05:00:00,0.249,0.307,0.307 +2014-08-26 06:00:00,0.25,0.307,0.313 +2014-08-26 07:00:00,0.251,0.307,0.325 +2014-08-26 08:00:00,0.251,0.307,0.325 +2014-08-26 09:00:00,0.251,0.307,0.32299999999999995 +2014-08-26 10:00:00,0.251,0.307,0.321 +2014-08-26 11:00:00,0.251,0.307,0.318 +2014-08-26 12:00:00,0.252,0.307,0.316 +2014-08-26 13:00:00,0.251,0.307,0.315 +2014-08-26 14:00:00,0.251,0.307,0.314 +2014-08-26 15:00:00,0.251,0.306,0.314 +2014-08-26 16:00:00,0.254,0.305,0.321 +2014-08-26 17:00:00,0.26,0.305,0.34600000000000003 +2014-08-26 18:00:00,0.26,0.305,0.34600000000000003 +2014-08-26 19:00:00,0.259,0.305,0.344 +2014-08-26 20:00:00,0.258,0.305,0.344 +2014-08-26 21:00:00,0.26,0.305,0.345 +2014-08-26 22:00:00,0.263,0.305,0.349 +2014-08-26 23:00:00,0.264,0.305,0.349 +2014-08-27 00:00:00,0.262,0.305,0.348 +2014-08-27 01:00:00,0.261,0.305,0.34700000000000003 +2014-08-27 02:00:00,0.26,0.305,0.34700000000000003 +2014-08-27 03:00:00,0.259,0.305,0.34600000000000003 +2014-08-27 04:00:00,0.258,0.305,0.345 +2014-08-27 05:00:00,0.258,0.305,0.344 +2014-08-27 06:00:00,0.257,0.305,0.342 +2014-08-27 07:00:00,0.256,0.305,0.34 +2014-08-27 08:00:00,0.256,0.305,0.33899999999999997 +2014-08-27 09:00:00,0.255,0.305,0.33899999999999997 +2014-08-27 10:00:00,0.255,0.305,0.33799999999999997 +2014-08-27 11:00:00,0.255,0.305,0.337 +2014-08-27 12:00:00,0.257,0.305,0.336 +2014-08-27 13:00:00,0.258,0.304,0.33399999999999996 +2014-08-27 14:00:00,0.258,0.304,0.33299999999999996 +2014-08-27 15:00:00,0.258,0.304,0.331 +2014-08-27 16:00:00,0.258,0.304,0.33 +2014-08-27 17:00:00,0.257,0.304,0.32799999999999996 +2014-08-27 18:00:00,0.257,0.304,0.327 +2014-08-27 19:00:00,0.256,0.303,0.327 +2014-08-27 20:00:00,0.256,0.303,0.326 +2014-08-27 21:00:00,0.256,0.303,0.326 +2014-08-27 22:00:00,0.255,0.303,0.326 +2014-08-27 23:00:00,0.255,0.303,0.326 +2014-08-28 00:00:00,0.255,0.303,0.325 +2014-08-28 01:00:00,0.254,0.304,0.325 +2014-08-28 02:00:00,0.254,0.303,0.325 +2014-08-28 03:00:00,0.254,0.303,0.324 +2014-08-28 04:00:00,0.254,0.303,0.324 +2014-08-28 05:00:00,0.253,0.304,0.324 +2014-08-28 06:00:00,0.253,0.304,0.324 +2014-08-28 07:00:00,0.253,0.304,0.32299999999999995 +2014-08-28 08:00:00,0.253,0.304,0.321 +2014-08-28 09:00:00,0.253,0.304,0.32 +2014-08-28 10:00:00,0.252,0.304,0.32 +2014-08-28 11:00:00,0.252,0.304,0.319 +2014-08-28 12:00:00,0.252,0.303,0.318 +2014-08-28 13:00:00,0.252,0.303,0.318 +2014-08-28 14:00:00,0.251,0.303,0.317 +2014-08-28 15:00:00,0.251,0.303,0.316 +2014-08-28 16:00:00,0.251,0.302,0.316 +2014-08-28 17:00:00,0.25,0.302,0.316 +2014-08-28 18:00:00,0.25,0.302,0.316 +2014-08-28 19:00:00,0.25,0.302,0.316 +2014-08-28 20:00:00,0.25,0.302,0.316 +2014-08-28 21:00:00,0.25,0.302,0.316 +2014-08-28 22:00:00,0.25,0.302,0.316 +2014-08-28 23:00:00,0.25,0.302,0.316 +2014-08-29 00:00:00,0.249,0.302,0.316 +2014-08-29 01:00:00,0.249,0.302,0.315 +2014-08-29 02:00:00,0.249,0.302,0.315 +2014-08-29 03:00:00,0.249,0.302,0.316 +2014-08-29 04:00:00,0.249,0.302,0.316 +2014-08-29 05:00:00,0.249,0.302,0.316 +2014-08-29 06:00:00,0.249,0.302,0.316 +2014-08-29 07:00:00,0.249,0.302,0.316 +2014-08-29 08:00:00,0.249,0.302,0.316 +2014-08-29 09:00:00,0.248,0.302,0.316 +2014-08-29 10:00:00,0.249,0.302,0.316 +2014-08-29 11:00:00,0.248,0.302,0.316 +2014-08-29 12:00:00,0.248,0.302,0.315 +2014-08-29 13:00:00,0.248,0.302,0.315 +2014-08-29 14:00:00,0.248,0.302,0.314 +2014-08-29 15:00:00,0.247,0.301,0.314 +2014-08-29 16:00:00,0.247,0.3,0.313 +2014-08-29 17:00:00,0.247,0.3,0.313 +2014-08-29 18:00:00,0.247,0.3,0.313 +2014-08-29 19:00:00,0.24600000000000002,0.3,0.313 +2014-08-29 20:00:00,0.24600000000000002,0.3,0.313 +2014-08-29 21:00:00,0.24600000000000002,0.3,0.313 +2014-08-29 22:00:00,0.24600000000000002,0.3,0.313 +2014-08-29 23:00:00,0.24600000000000002,0.3,0.313 +2014-08-30 00:00:00,0.245,0.3,0.313 +2014-08-30 01:00:00,0.245,0.3,0.313 +2014-08-30 02:00:00,0.245,0.3,0.313 +2014-08-30 03:00:00,0.245,0.3,0.313 +2014-08-30 04:00:00,0.245,0.3,0.313 +2014-08-30 05:00:00,0.245,0.3,0.313 +2014-08-30 06:00:00,0.245,0.3,0.313 +2014-08-30 07:00:00,0.245,0.3,0.313 +2014-08-30 08:00:00,0.245,0.3,0.313 +2014-08-30 09:00:00,0.244,0.3,0.313 +2014-08-30 10:00:00,0.244,0.3,0.313 +2014-08-30 11:00:00,0.244,0.3,0.312 +2014-08-30 12:00:00,0.244,0.3,0.312 +2014-08-30 13:00:00,0.244,0.3,0.311 +2014-08-30 14:00:00,0.244,0.3,0.311 +2014-08-30 15:00:00,0.244,0.3,0.311 +2014-08-30 16:00:00,0.243,0.3,0.311 +2014-08-30 17:00:00,0.243,0.3,0.311 +2014-08-30 18:00:00,0.243,0.3,0.311 +2014-08-30 19:00:00,0.243,0.3,0.311 +2014-08-30 20:00:00,0.243,0.3,0.311 +2014-08-30 21:00:00,0.243,0.3,0.311 +2014-08-30 22:00:00,0.243,0.3,0.311 +2014-08-30 23:00:00,0.242,0.3,0.311 +2014-08-31 00:00:00,0.242,0.3,0.311 +2014-08-31 01:00:00,0.242,0.3,0.312 +2014-08-31 02:00:00,0.242,0.3,0.312 +2014-08-31 03:00:00,0.242,0.3,0.312 +2014-08-31 04:00:00,0.242,0.3,0.312 +2014-08-31 05:00:00,0.242,0.3,0.312 +2014-08-31 06:00:00,0.242,0.3,0.312 +2014-08-31 07:00:00,0.24100000000000002,0.299,0.312 +2014-08-31 08:00:00,0.24100000000000002,0.299,0.312 +2014-08-31 09:00:00,0.24100000000000002,0.299,0.312 +2014-08-31 10:00:00,0.24100000000000002,0.299,0.312 +2014-08-31 11:00:00,0.242,0.299,0.312 +2014-08-31 12:00:00,0.242,0.299,0.311 +2014-08-31 13:00:00,0.24100000000000002,0.298,0.311 +2014-08-31 14:00:00,0.24100000000000002,0.298,0.31 +2014-08-31 15:00:00,0.24100000000000002,0.298,0.31 +2014-08-31 16:00:00,0.24100000000000002,0.298,0.31 +2014-08-31 17:00:00,0.24100000000000002,0.298,0.31 +2014-08-31 18:00:00,0.24100000000000002,0.298,0.31 +2014-08-31 19:00:00,0.24100000000000002,0.298,0.31 +2014-08-31 20:00:00,0.24100000000000002,0.298,0.31 +2014-08-31 21:00:00,0.24,0.298,0.31 +2014-08-31 22:00:00,0.24,0.298,0.31 +2014-08-31 23:00:00,0.24,0.298,0.31 +2014-09-01 00:00:00,0.24,0.298,0.31 +2014-09-01 01:00:00,0.24,0.299,0.31 +2014-09-01 02:00:00,0.24,0.299,0.31 +2014-09-01 03:00:00,0.24,0.299,0.31 +2014-09-01 04:00:00,0.239,0.299,0.31 +2014-09-01 05:00:00,0.24,0.298,0.31 +2014-09-01 06:00:00,0.239,0.298,0.31 +2014-09-01 07:00:00,0.239,0.298,0.31 +2014-09-01 08:00:00,0.239,0.298,0.31 +2014-09-01 09:00:00,0.239,0.298,0.31 +2014-09-01 10:00:00,0.239,0.298,0.31 +2014-09-01 11:00:00,0.239,0.298,0.31 +2014-09-01 12:00:00,0.239,0.298,0.31 +2014-09-01 13:00:00,0.239,0.298,0.309 +2014-09-01 14:00:00,0.239,0.298,0.309 +2014-09-01 15:00:00,0.239,0.298,0.309 +2014-09-01 16:00:00,0.23800000000000002,0.298,0.309 +2014-09-01 17:00:00,0.23800000000000002,0.298,0.309 +2014-09-01 18:00:00,0.23800000000000002,0.298,0.309 +2014-09-01 19:00:00,0.23800000000000002,0.297,0.308 +2014-09-01 20:00:00,0.23800000000000002,0.297,0.308 +2014-09-01 21:00:00,0.23800000000000002,0.297,0.309 +2014-09-01 22:00:00,0.23800000000000002,0.297,0.308 +2014-09-01 23:00:00,0.237,0.297,0.308 +2014-09-02 00:00:00,0.237,0.297,0.308 +2014-09-02 01:00:00,0.237,0.297,0.308 +2014-09-02 02:00:00,0.237,0.297,0.308 +2014-09-02 03:00:00,0.237,0.297,0.308 +2014-09-02 04:00:00,0.237,0.297,0.309 +2014-09-02 05:00:00,0.237,0.297,0.309 +2014-09-02 06:00:00,0.237,0.297,0.308 +2014-09-02 07:00:00,0.237,0.297,0.309 +2014-09-02 08:00:00,0.237,0.297,0.309 +2014-09-02 09:00:00,0.237,0.297,0.309 +2014-09-02 10:00:00,0.237,0.297,0.308 +2014-09-02 11:00:00,0.237,0.297,0.308 +2014-09-02 12:00:00,0.237,0.297,0.308 +2014-09-02 13:00:00,0.237,0.297,0.308 +2014-09-02 14:00:00,0.23600000000000002,0.297,0.308 +2014-09-02 15:00:00,0.23600000000000002,0.297,0.308 +2014-09-02 16:00:00,0.23600000000000002,0.29600000000000004,0.308 +2014-09-02 17:00:00,0.23600000000000002,0.295,0.308 +2014-09-02 18:00:00,0.235,0.295,0.307 +2014-09-02 19:00:00,0.23600000000000002,0.295,0.307 +2014-09-02 20:00:00,0.235,0.295,0.307 +2014-09-02 21:00:00,0.235,0.295,0.307 +2014-09-02 22:00:00,0.235,0.295,0.308 +2014-09-02 23:00:00,0.235,0.295,0.308 +2014-09-03 00:00:00,0.235,0.295,0.308 +2014-09-03 01:00:00,0.235,0.295,0.308 +2014-09-03 02:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 03:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 04:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 05:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 06:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 07:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 08:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 09:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 10:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 11:00:00,0.23399999999999999,0.295,0.308 +2014-09-03 12:00:00,0.23399999999999999,0.295,0.307 +2014-09-03 13:00:00,0.23399999999999999,0.295,0.307 +2014-09-03 14:00:00,0.23399999999999999,0.295,0.307 +2014-09-03 15:00:00,0.23399999999999999,0.293,0.307 +2014-09-03 16:00:00,0.233,0.293,0.307 +2014-09-03 17:00:00,0.233,0.293,0.307 +2014-09-03 18:00:00,0.233,0.293,0.307 +2014-09-03 19:00:00,0.233,0.293,0.307 +2014-09-03 20:00:00,0.233,0.293,0.307 +2014-09-03 21:00:00,0.233,0.293,0.307 +2014-09-03 22:00:00,0.233,0.293,0.307 +2014-09-03 23:00:00,0.233,0.293,0.307 +2014-09-04 00:00:00,0.233,0.293,0.307 +2014-09-04 01:00:00,0.233,0.293,0.307 +2014-09-04 02:00:00,0.233,0.293,0.307 +2014-09-04 03:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 04:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 05:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 06:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 07:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 08:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 09:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 10:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 11:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 12:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 13:00:00,0.23199999999999998,0.293,0.307 +2014-09-04 14:00:00,0.23199999999999998,0.292,0.306 +2014-09-04 15:00:00,0.23199999999999998,0.292,0.306 +2014-09-04 16:00:00,0.23199999999999998,0.292,0.306 +2014-09-04 17:00:00,0.231,0.292,0.306 +2014-09-04 18:00:00,0.23199999999999998,0.292,0.306 +2014-09-04 19:00:00,0.23199999999999998,0.292,0.306 +2014-09-04 20:00:00,0.231,0.292,0.306 +2014-09-04 21:00:00,0.231,0.292,0.306 +2014-09-04 22:00:00,0.231,0.292,0.306 +2014-09-04 23:00:00,0.231,0.292,0.306 +2014-09-05 00:00:00,0.231,0.292,0.306 +2014-09-05 01:00:00,0.231,0.292,0.306 +2014-09-05 02:00:00,0.231,0.292,0.306 +2014-09-05 03:00:00,0.231,0.292,0.306 +2014-09-05 04:00:00,0.231,0.292,0.306 +2014-09-05 05:00:00,0.231,0.292,0.306 +2014-09-05 06:00:00,0.23,0.292,0.306 +2014-09-05 07:00:00,0.23,0.292,0.306 +2014-09-05 08:00:00,0.23,0.292,0.307 +2014-09-05 09:00:00,0.23,0.292,0.307 +2014-09-05 10:00:00,0.23,0.292,0.306 +2014-09-05 11:00:00,0.23,0.292,0.306 +2014-09-05 12:00:00,0.23,0.29100000000000004,0.306 +2014-09-05 13:00:00,0.23,0.29100000000000004,0.306 +2014-09-05 14:00:00,0.23,0.29,0.306 +2014-09-05 15:00:00,0.23,0.29,0.306 +2014-09-05 16:00:00,0.23,0.29100000000000004,0.306 +2014-09-05 17:00:00,0.23,0.29100000000000004,0.306 +2014-09-05 18:00:00,0.23,0.29,0.306 +2014-09-05 19:00:00,0.23,0.29,0.305 +2014-09-05 20:00:00,0.23,0.29,0.305 +2014-09-05 21:00:00,0.23,0.29,0.305 +2014-09-05 22:00:00,0.23,0.29,0.305 +2014-09-05 23:00:00,0.22899999999999998,0.29,0.305 +2014-09-06 00:00:00,0.22899999999999998,0.29,0.305 +2014-09-06 01:00:00,0.22899999999999998,0.29,0.305 +2014-09-06 02:00:00,0.228,0.29,0.305 +2014-09-06 03:00:00,0.228,0.29,0.305 +2014-09-06 04:00:00,0.228,0.29,0.305 +2014-09-06 05:00:00,0.228,0.29100000000000004,0.306 +2014-09-06 06:00:00,0.228,0.29,0.306 +2014-09-06 07:00:00,0.228,0.29,0.306 +2014-09-06 08:00:00,0.228,0.29,0.306 +2014-09-06 09:00:00,0.228,0.29,0.306 +2014-09-06 10:00:00,0.228,0.29,0.306 +2014-09-06 11:00:00,0.228,0.29,0.306 +2014-09-06 12:00:00,0.228,0.29,0.305 +2014-09-06 13:00:00,0.228,0.29,0.305 +2014-09-06 14:00:00,0.228,0.29,0.305 +2014-09-06 15:00:00,0.228,0.289,0.305 +2014-09-06 16:00:00,0.228,0.289,0.305 +2014-09-06 17:00:00,0.228,0.289,0.305 +2014-09-06 18:00:00,0.228,0.28800000000000003,0.305 +2014-09-06 19:00:00,0.228,0.28800000000000003,0.304 +2014-09-06 20:00:00,0.228,0.289,0.305 +2014-09-06 21:00:00,0.228,0.289,0.307 +2014-09-06 22:00:00,0.228,0.289,0.307 +2014-09-06 23:00:00,0.228,0.289,0.307 +2014-09-07 00:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 01:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 02:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 03:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 04:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 05:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 06:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 07:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 08:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 09:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 10:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 11:00:00,0.22699999999999998,0.289,0.308 +2014-09-07 12:00:00,0.22699999999999998,0.289,0.307 +2014-09-07 13:00:00,0.22699999999999998,0.289,0.306 +2014-09-07 14:00:00,0.22699999999999998,0.289,0.306 +2014-09-07 15:00:00,0.22699999999999998,0.289,0.305 +2014-09-07 16:00:00,0.22699999999999998,0.289,0.304 +2014-09-07 17:00:00,0.22699999999999998,0.289,0.304 +2014-09-07 18:00:00,0.22699999999999998,0.289,0.304 +2014-09-07 19:00:00,0.22699999999999998,0.28800000000000003,0.304 +2014-09-07 20:00:00,0.22699999999999998,0.289,0.304 +2014-09-07 21:00:00,0.22699999999999998,0.28800000000000003,0.304 +2014-09-07 22:00:00,0.22699999999999998,0.289,0.304 +2014-09-07 23:00:00,0.226,0.289,0.304 +2014-09-08 00:00:00,0.226,0.289,0.304 +2014-09-08 01:00:00,0.226,0.289,0.304 +2014-09-08 02:00:00,0.226,0.289,0.304 +2014-09-08 03:00:00,0.226,0.289,0.304 +2014-09-08 04:00:00,0.225,0.289,0.304 +2014-09-08 05:00:00,0.225,0.289,0.304 +2014-09-08 06:00:00,0.225,0.289,0.304 +2014-09-08 07:00:00,0.225,0.28800000000000003,0.304 +2014-09-08 08:00:00,0.225,0.28800000000000003,0.304 +2014-09-08 09:00:00,0.225,0.28800000000000003,0.304 +2014-09-08 10:00:00,0.225,0.28800000000000003,0.304 +2014-09-08 11:00:00,0.225,0.28800000000000003,0.304 +2014-09-08 12:00:00,0.225,0.28800000000000003,0.304 +2014-09-08 13:00:00,0.225,0.28800000000000003,0.303 +2014-09-08 14:00:00,0.225,0.28800000000000003,0.303 +2014-09-08 15:00:00,0.225,0.28800000000000003,0.303 +2014-09-08 16:00:00,0.225,0.28800000000000003,0.303 +2014-09-08 17:00:00,0.225,0.28800000000000003,0.303 +2014-09-08 18:00:00,0.225,0.28800000000000003,0.303 +2014-09-08 19:00:00,0.225,0.28800000000000003,0.302 +2014-09-08 20:00:00,0.22399999999999998,0.28800000000000003,0.303 +2014-09-08 21:00:00,0.22399999999999998,0.28800000000000003,0.302 +2014-09-08 22:00:00,0.22399999999999998,0.28800000000000003,0.303 +2014-09-08 23:00:00,0.22399999999999998,0.28800000000000003,0.302 +2014-09-09 00:00:00,0.22399999999999998,0.28800000000000003,0.302 +2014-09-09 01:00:00,0.22399999999999998,0.28800000000000003,0.302 +2014-09-09 02:00:00,0.223,0.28800000000000003,0.302 +2014-09-09 03:00:00,0.223,0.28800000000000003,0.302 +2014-09-09 04:00:00,0.223,0.28800000000000003,0.302 +2014-09-09 05:00:00,0.223,0.28800000000000003,0.302 +2014-09-09 06:00:00,0.223,0.28800000000000003,0.302 +2014-09-09 07:00:00,0.223,0.28800000000000003,0.303 +2014-09-09 08:00:00,0.223,0.28800000000000003,0.303 +2014-09-09 09:00:00,0.223,0.28800000000000003,0.303 +2014-09-09 10:00:00,0.223,0.28800000000000003,0.303 +2014-09-09 11:00:00,0.223,0.28800000000000003,0.302 +2014-09-09 12:00:00,0.222,0.28800000000000003,0.302 +2014-09-09 13:00:00,0.223,0.28800000000000003,0.302 +2014-09-09 14:00:00,0.222,0.28800000000000003,0.302 +2014-09-09 15:00:00,0.222,0.28800000000000003,0.302 +2014-09-09 16:00:00,0.222,0.28800000000000003,0.302 +2014-09-09 17:00:00,0.222,0.28800000000000003,0.301 +2014-09-09 18:00:00,0.222,0.28800000000000003,0.301 +2014-09-09 19:00:00,0.222,0.28800000000000003,0.301 +2014-09-09 20:00:00,0.222,0.28800000000000003,0.301 +2014-09-09 21:00:00,0.222,0.28800000000000003,0.301 +2014-09-09 22:00:00,0.221,0.28800000000000003,0.301 +2014-09-09 23:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 00:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 01:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 02:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 03:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 04:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 05:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 06:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 07:00:00,0.221,0.28800000000000003,0.301 +2014-09-10 08:00:00,0.221,0.28800000000000003,0.302 +2014-09-10 09:00:00,0.221,0.287,0.301 +2014-09-10 10:00:00,0.221,0.287,0.301 +2014-09-10 11:00:00,0.22,0.287,0.301 +2014-09-10 12:00:00,0.22,0.287,0.301 +2014-09-10 13:00:00,0.22,0.287,0.301 +2014-09-10 14:00:00,0.22,0.287,0.3 +2014-09-10 15:00:00,0.22,0.287,0.3 +2014-09-10 16:00:00,0.22,0.287,0.3 +2014-09-10 17:00:00,0.22,0.287,0.3 +2014-09-10 18:00:00,0.22,0.287,0.3 +2014-09-10 19:00:00,0.22,0.287,0.3 +2014-09-10 20:00:00,0.22,0.287,0.3 +2014-09-10 21:00:00,0.22,0.287,0.3 +2014-09-10 22:00:00,0.21899999999999997,0.287,0.3 +2014-09-10 23:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 00:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 01:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 02:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 03:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 04:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 05:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 06:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 07:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 08:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 09:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 10:00:00,0.218,0.287,0.3 +2014-09-11 11:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 12:00:00,0.21899999999999997,0.287,0.3 +2014-09-11 13:00:00,0.218,0.287,0.301 +2014-09-11 14:00:00,0.217,0.28600000000000003,0.302 +2014-09-11 15:00:00,0.218,0.285,0.302 +2014-09-11 16:00:00,0.21899999999999997,0.285,0.301 +2014-09-11 17:00:00,0.21899999999999997,0.285,0.301 +2014-09-11 18:00:00,0.218,0.285,0.302 +2014-09-11 19:00:00,0.218,0.285,0.302 +2014-09-11 20:00:00,0.218,0.285,0.302 +2014-09-11 21:00:00,0.218,0.285,0.302 +2014-09-11 22:00:00,0.218,0.285,0.302 +2014-09-11 23:00:00,0.218,0.285,0.302 +2014-09-12 00:00:00,0.218,0.285,0.302 +2014-09-12 01:00:00,0.218,0.285,0.302 +2014-09-12 02:00:00,0.218,0.285,0.302 +2014-09-12 03:00:00,0.218,0.285,0.302 +2014-09-12 04:00:00,0.218,0.285,0.302 +2014-09-12 05:00:00,0.218,0.285,0.302 +2014-09-12 06:00:00,0.217,0.285,0.302 +2014-09-12 07:00:00,0.217,0.285,0.302 +2014-09-12 08:00:00,0.217,0.285,0.302 +2014-09-12 09:00:00,0.217,0.285,0.302 +2014-09-12 10:00:00,0.217,0.285,0.302 +2014-09-12 11:00:00,0.218,0.285,0.302 +2014-09-12 12:00:00,0.218,0.285,0.301 +2014-09-12 13:00:00,0.218,0.285,0.301 +2014-09-12 14:00:00,0.218,0.285,0.3 +2014-09-12 15:00:00,0.218,0.285,0.301 +2014-09-12 16:00:00,0.218,0.285,0.301 +2014-09-12 17:00:00,0.218,0.285,0.301 +2014-09-12 18:00:00,0.218,0.285,0.301 +2014-09-12 19:00:00,0.218,0.285,0.301 +2014-09-12 20:00:00,0.218,0.285,0.301 +2014-09-12 21:00:00,0.218,0.285,0.301 +2014-09-12 22:00:00,0.218,0.285,0.3 +2014-09-12 23:00:00,0.218,0.285,0.301 +2014-09-13 00:00:00,0.218,0.285,0.301 +2014-09-13 01:00:00,0.218,0.285,0.301 +2014-09-13 02:00:00,0.218,0.285,0.301 +2014-09-13 03:00:00,0.218,0.285,0.301 +2014-09-13 04:00:00,0.218,0.285,0.301 +2014-09-13 05:00:00,0.218,0.285,0.301 +2014-09-13 06:00:00,0.218,0.285,0.301 +2014-09-13 07:00:00,0.218,0.285,0.301 +2014-09-13 08:00:00,0.218,0.285,0.301 +2014-09-13 09:00:00,0.218,0.285,0.3 +2014-09-13 10:00:00,0.218,0.285,0.3 +2014-09-13 11:00:00,0.218,0.285,0.3 +2014-09-13 12:00:00,0.218,0.285,0.3 +2014-09-13 13:00:00,0.218,0.285,0.3 +2014-09-13 14:00:00,0.218,0.285,0.3 +2014-09-13 15:00:00,0.218,0.285,0.3 +2014-09-13 16:00:00,0.218,0.285,0.3 +2014-09-13 17:00:00,0.218,0.285,0.3 +2014-09-13 18:00:00,0.218,0.285,0.3 +2014-09-13 19:00:00,0.218,0.285,0.3 +2014-09-13 20:00:00,0.218,0.285,0.3 +2014-09-13 21:00:00,0.218,0.285,0.3 +2014-09-13 22:00:00,0.218,0.285,0.3 +2014-09-13 23:00:00,0.218,0.285,0.3 +2014-09-14 00:00:00,0.218,0.285,0.3 +2014-09-14 01:00:00,0.218,0.285,0.3 +2014-09-14 02:00:00,0.218,0.285,0.3 +2014-09-14 03:00:00,0.217,0.285,0.3 +2014-09-14 04:00:00,0.218,0.285,0.3 +2014-09-14 05:00:00,0.217,0.285,0.3 +2014-09-14 06:00:00,0.217,0.285,0.3 +2014-09-14 07:00:00,0.217,0.285,0.3 +2014-09-14 08:00:00,0.217,0.284,0.3 +2014-09-14 09:00:00,0.217,0.284,0.3 +2014-09-14 10:00:00,0.217,0.28300000000000003,0.3 +2014-09-14 11:00:00,0.217,0.28300000000000003,0.3 +2014-09-14 12:00:00,0.217,0.28300000000000003,0.3 +2014-09-14 13:00:00,0.218,0.28300000000000003,0.3 +2014-09-14 14:00:00,0.217,0.28300000000000003,0.3 +2014-09-14 15:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 16:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 17:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 18:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 19:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 20:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 21:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 22:00:00,0.217,0.28300000000000003,0.299 +2014-09-14 23:00:00,0.21600000000000003,0.284,0.299 +2014-09-15 00:00:00,0.21600000000000003,0.285,0.299 +2014-09-15 01:00:00,0.21600000000000003,0.285,0.299 +2014-09-15 02:00:00,0.21600000000000003,0.285,0.299 +2014-09-15 03:00:00,0.21600000000000003,0.285,0.299 +2014-09-15 04:00:00,0.21600000000000003,0.285,0.299 +2014-09-15 05:00:00,0.21600000000000003,0.285,0.299 +2014-09-15 06:00:00,0.21600000000000003,0.284,0.299 +2014-09-15 07:00:00,0.21600000000000003,0.284,0.299 +2014-09-15 08:00:00,0.21600000000000003,0.28300000000000003,0.299 +2014-09-15 09:00:00,0.21600000000000003,0.28300000000000003,0.299 +2014-09-15 10:00:00,0.21600000000000003,0.28300000000000003,0.299 +2014-09-15 11:00:00,0.21600000000000003,0.28300000000000003,0.299 +2014-09-15 12:00:00,0.21600000000000003,0.28300000000000003,0.299 +2014-09-15 13:00:00,0.21600000000000003,0.28300000000000003,0.299 +2014-09-15 14:00:00,0.21600000000000003,0.28300000000000003,0.299 +2014-09-15 15:00:00,0.217,0.282,0.299 +2014-09-15 16:00:00,0.217,0.28,0.299 +2014-09-15 17:00:00,0.217,0.278,0.299 +2014-09-15 18:00:00,0.21600000000000003,0.28300000000000003,0.298 +2014-09-15 19:00:00,0.217,0.28600000000000003,0.298 +2014-09-15 20:00:00,0.21600000000000003,0.287,0.298 +2014-09-15 21:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-15 22:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-15 23:00:00,0.21600000000000003,0.28800000000000003,0.299 +2014-09-16 00:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-16 01:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-16 02:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-16 03:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-16 04:00:00,0.215,0.28800000000000003,0.298 +2014-09-16 05:00:00,0.215,0.28800000000000003,0.298 +2014-09-16 06:00:00,0.215,0.28800000000000003,0.298 +2014-09-16 07:00:00,0.215,0.28800000000000003,0.299 +2014-09-16 08:00:00,0.215,0.28800000000000003,0.299 +2014-09-16 09:00:00,0.215,0.28800000000000003,0.299 +2014-09-16 10:00:00,0.215,0.28800000000000003,0.299 +2014-09-16 11:00:00,0.215,0.28800000000000003,0.299 +2014-09-16 12:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-16 13:00:00,0.215,0.28800000000000003,0.298 +2014-09-16 14:00:00,0.21600000000000003,0.28800000000000003,0.298 +2014-09-16 15:00:00,0.21600000000000003,0.289,0.298 +2014-09-16 16:00:00,0.215,0.287,0.298 +2014-09-16 17:00:00,0.215,0.281,0.298 +2014-09-16 18:00:00,0.215,0.282,0.298 +2014-09-16 19:00:00,0.215,0.285,0.297 +2014-09-16 20:00:00,0.215,0.287,0.297 +2014-09-16 21:00:00,0.215,0.28800000000000003,0.297 +2014-09-16 22:00:00,0.214,0.28800000000000003,0.297 +2014-09-16 23:00:00,0.214,0.289,0.297 +2014-09-17 00:00:00,0.214,0.289,0.297 +2014-09-17 01:00:00,0.214,0.29,0.298 +2014-09-17 02:00:00,0.214,0.29,0.298 +2014-09-17 03:00:00,0.214,0.29,0.297 +2014-09-17 04:00:00,0.214,0.29,0.298 +2014-09-17 05:00:00,0.214,0.29,0.298 +2014-09-17 06:00:00,0.213,0.29,0.297 +2014-09-17 07:00:00,0.213,0.29,0.298 +2014-09-17 08:00:00,0.213,0.29,0.298 +2014-09-17 09:00:00,0.213,0.29,0.298 +2014-09-17 10:00:00,0.214,0.29,0.298 +2014-09-17 11:00:00,0.214,0.29,0.298 +2014-09-17 12:00:00,0.214,0.29,0.297 +2014-09-17 13:00:00,0.214,0.29,0.297 +2014-09-17 14:00:00,0.214,0.29,0.297 +2014-09-17 15:00:00,0.214,0.29,0.297 +2014-09-17 16:00:00,0.214,0.293,0.29600000000000004 +2014-09-17 17:00:00,0.214,0.298,0.29600000000000004 +2014-09-17 18:00:00,0.214,0.298,0.29600000000000004 +2014-09-17 19:00:00,0.214,0.298,0.29600000000000004 +2014-09-17 20:00:00,0.213,0.298,0.29600000000000004 +2014-09-17 21:00:00,0.213,0.298,0.29600000000000004 +2014-09-17 22:00:00,0.213,0.298,0.29600000000000004 +2014-09-17 23:00:00,0.213,0.298,0.29600000000000004 +2014-09-18 00:00:00,0.213,0.298,0.29600000000000004 +2014-09-18 01:00:00,0.213,0.3,0.29600000000000004 +2014-09-18 02:00:00,0.213,0.297,0.29600000000000004 +2014-09-18 03:00:00,0.213,0.297,0.297 +2014-09-18 04:00:00,0.212,0.29600000000000004,0.297 +2014-09-18 05:00:00,0.212,0.297,0.297 +2014-09-18 06:00:00,0.212,0.29600000000000004,0.297 +2014-09-18 07:00:00,0.212,0.29100000000000004,0.297 +2014-09-18 08:00:00,0.212,0.29100000000000004,0.297 +2014-09-18 09:00:00,0.212,0.29100000000000004,0.297 +2014-09-18 10:00:00,0.212,0.292,0.297 +2014-09-18 11:00:00,0.213,0.29100000000000004,0.297 +2014-09-18 12:00:00,0.213,0.29,0.297 +2014-09-18 13:00:00,0.213,0.29,0.297 +2014-09-18 14:00:00,0.213,0.29,0.29600000000000004 +2014-09-18 15:00:00,0.213,0.29,0.29600000000000004 +2014-09-18 16:00:00,0.213,0.29,0.29600000000000004 +2014-09-18 17:00:00,0.213,0.29,0.29600000000000004 +2014-09-18 18:00:00,0.213,0.29,0.29600000000000004 +2014-09-18 19:00:00,0.213,0.29,0.29600000000000004 +2014-09-18 20:00:00,0.213,0.29,0.29600000000000004 +2014-09-18 21:00:00,0.213,0.29,0.297 +2014-09-18 22:00:00,0.213,0.29,0.297 +2014-09-18 23:00:00,0.213,0.29,0.297 +2014-09-19 00:00:00,0.213,0.29,0.297 +2014-09-19 01:00:00,0.213,0.29,0.297 +2014-09-19 02:00:00,0.213,0.29100000000000004,0.298 +2014-09-19 03:00:00,0.212,0.29100000000000004,0.297 +2014-09-19 04:00:00,0.212,0.292,0.297 +2014-09-19 05:00:00,0.212,0.292,0.297 +2014-09-19 06:00:00,0.212,0.292,0.298 +2014-09-19 07:00:00,0.212,0.292,0.298 +2014-09-19 08:00:00,0.212,0.292,0.298 +2014-09-19 09:00:00,0.212,0.292,0.298 +2014-09-19 10:00:00,0.212,0.292,0.298 +2014-09-19 11:00:00,0.213,0.292,0.298 +2014-09-19 12:00:00,0.213,0.292,0.298 +2014-09-19 13:00:00,0.213,0.292,0.297 +2014-09-19 14:00:00,0.213,0.292,0.297 +2014-09-19 15:00:00,0.213,0.292,0.29600000000000004 +2014-09-19 16:00:00,0.213,0.292,0.29600000000000004 +2014-09-19 17:00:00,0.213,0.292,0.29600000000000004 +2014-09-19 18:00:00,0.213,0.292,0.29600000000000004 +2014-09-19 19:00:00,0.213,0.292,0.29600000000000004 +2014-09-19 20:00:00,0.213,0.292,0.295 +2014-09-19 21:00:00,0.213,0.292,0.295 +2014-09-19 22:00:00,0.213,0.292,0.29600000000000004 +2014-09-19 23:00:00,0.213,0.292,0.29600000000000004 +2014-09-20 00:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 01:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 02:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 03:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 04:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 05:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 06:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 07:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 08:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 09:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 10:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 11:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 12:00:00,0.213,0.292,0.29600000000000004 +2014-09-20 13:00:00,0.212,0.292,0.29600000000000004 +2014-09-20 14:00:00,0.213,0.292,0.295 +2014-09-20 15:00:00,0.213,0.292,0.29600000000000004 +2014-09-20 16:00:00,0.213,0.292,0.299 +2014-09-20 17:00:00,0.213,0.292,0.299 +2014-09-20 18:00:00,0.213,0.292,0.299 +2014-09-20 19:00:00,0.213,0.292,0.299 +2014-09-20 20:00:00,0.212,0.292,0.301 +2014-09-20 21:00:00,0.212,0.292,0.301 +2014-09-20 22:00:00,0.212,0.292,0.301 +2014-09-20 23:00:00,0.212,0.292,0.301 +2014-09-21 00:00:00,0.212,0.292,0.301 +2014-09-21 01:00:00,0.21100000000000002,0.292,0.301 +2014-09-21 02:00:00,0.21100000000000002,0.292,0.301 +2014-09-21 03:00:00,0.21100000000000002,0.292,0.301 +2014-09-21 04:00:00,0.21100000000000002,0.292,0.301 +2014-09-21 05:00:00,0.21100000000000002,0.292,0.301 +2014-09-21 06:00:00,0.21100000000000002,0.292,0.302 +2014-09-21 07:00:00,0.21100000000000002,0.292,0.302 +2014-09-21 08:00:00,0.21100000000000002,0.292,0.302 +2014-09-21 09:00:00,0.21,0.292,0.302 +2014-09-21 10:00:00,0.21,0.292,0.302 +2014-09-21 11:00:00,0.21100000000000002,0.292,0.303 +2014-09-21 12:00:00,0.21100000000000002,0.292,0.303 +2014-09-21 13:00:00,0.214,0.292,0.309 +2014-09-21 14:00:00,0.222,0.292,0.325 +2014-09-21 15:00:00,0.223,0.292,0.326 +2014-09-21 16:00:00,0.223,0.292,0.325 +2014-09-21 17:00:00,0.222,0.292,0.324 +2014-09-21 18:00:00,0.222,0.292,0.322 +2014-09-21 19:00:00,0.222,0.292,0.319 +2014-09-21 20:00:00,0.222,0.292,0.315 +2014-09-21 21:00:00,0.221,0.292,0.313 +2014-09-21 22:00:00,0.221,0.292,0.312 +2014-09-21 23:00:00,0.221,0.292,0.312 +2014-09-22 00:00:00,0.221,0.292,0.311 +2014-09-22 01:00:00,0.221,0.292,0.311 +2014-09-22 02:00:00,0.221,0.292,0.311 +2014-09-22 03:00:00,0.221,0.292,0.311 +2014-09-22 04:00:00,0.221,0.292,0.311 +2014-09-22 05:00:00,0.221,0.292,0.311 +2014-09-22 06:00:00,0.221,0.292,0.311 +2014-09-22 07:00:00,0.221,0.292,0.311 +2014-09-22 08:00:00,0.221,0.292,0.311 +2014-09-22 09:00:00,0.221,0.292,0.311 +2014-09-22 10:00:00,0.222,0.292,0.311 +2014-09-22 11:00:00,0.222,0.292,0.311 +2014-09-22 12:00:00,0.223,0.292,0.31 +2014-09-22 13:00:00,0.223,0.292,0.311 +2014-09-22 14:00:00,0.223,0.292,0.312 +2014-09-22 15:00:00,0.22399999999999998,0.292,0.312 +2014-09-22 16:00:00,0.22399999999999998,0.29100000000000004,0.312 +2014-09-22 17:00:00,0.22399999999999998,0.29100000000000004,0.312 +2014-09-22 18:00:00,0.225,0.29,0.311 +2014-09-22 19:00:00,0.225,0.29,0.311 +2014-09-22 20:00:00,0.225,0.29,0.311 +2014-09-22 21:00:00,0.225,0.29,0.311 +2014-09-22 22:00:00,0.226,0.29100000000000004,0.311 +2014-09-22 23:00:00,0.226,0.29100000000000004,0.311 +2014-09-23 00:00:00,0.226,0.29100000000000004,0.311 +2014-09-23 01:00:00,0.226,0.292,0.311 +2014-09-23 02:00:00,0.22699999999999998,0.292,0.311 +2014-09-23 03:00:00,0.22699999999999998,0.292,0.311 +2014-09-23 04:00:00,0.22699999999999998,0.292,0.311 +2014-09-23 05:00:00,0.22699999999999998,0.292,0.311 +2014-09-23 06:00:00,0.22699999999999998,0.292,0.311 +2014-09-23 07:00:00,0.22699999999999998,0.292,0.311 +2014-09-23 08:00:00,0.22699999999999998,0.29100000000000004,0.311 +2014-09-23 09:00:00,0.22699999999999998,0.29100000000000004,0.311 +2014-09-23 10:00:00,0.228,0.29100000000000004,0.31 +2014-09-23 11:00:00,0.22899999999999998,0.29100000000000004,0.31 +2014-09-23 12:00:00,0.23,0.29100000000000004,0.31 +2014-09-23 13:00:00,0.23,0.29,0.309 +2014-09-23 14:00:00,0.231,0.29,0.308 +2014-09-23 15:00:00,0.231,0.29,0.308 +2014-09-23 16:00:00,0.231,0.29,0.307 +2014-09-23 17:00:00,0.231,0.29,0.307 +2014-09-23 18:00:00,0.231,0.29,0.307 +2014-09-23 19:00:00,0.231,0.29,0.307 +2014-09-23 20:00:00,0.231,0.29,0.307 +2014-09-23 21:00:00,0.231,0.29,0.307 +2014-09-23 22:00:00,0.231,0.29100000000000004,0.307 +2014-09-23 23:00:00,0.231,0.292,0.307 +2014-09-24 00:00:00,0.231,0.292,0.307 +2014-09-24 01:00:00,0.231,0.292,0.307 +2014-09-24 02:00:00,0.231,0.292,0.307 +2014-09-24 03:00:00,0.231,0.292,0.307 +2014-09-24 04:00:00,0.231,0.292,0.307 +2014-09-24 05:00:00,0.231,0.292,0.307 +2014-09-24 06:00:00,0.231,0.292,0.307 +2014-09-24 07:00:00,0.231,0.292,0.307 +2014-09-24 08:00:00,0.23,0.292,0.307 +2014-09-24 09:00:00,0.23,0.292,0.307 +2014-09-24 10:00:00,0.23,0.292,0.307 +2014-09-24 11:00:00,0.231,0.292,0.307 +2014-09-24 12:00:00,0.231,0.292,0.307 +2014-09-24 13:00:00,0.231,0.292,0.307 +2014-09-24 14:00:00,0.231,0.292,0.306 +2014-09-24 15:00:00,0.231,0.292,0.306 +2014-09-24 16:00:00,0.231,0.292,0.306 +2014-09-24 17:00:00,0.23,0.292,0.306 +2014-09-24 18:00:00,0.23,0.292,0.306 +2014-09-24 19:00:00,0.23,0.292,0.306 +2014-09-24 20:00:00,0.23,0.292,0.306 +2014-09-24 21:00:00,0.23,0.292,0.306 +2014-09-24 22:00:00,0.23,0.292,0.306 +2014-09-24 23:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 00:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 01:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 02:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 03:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 04:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 05:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 06:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 07:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 08:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 09:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 10:00:00,0.22899999999999998,0.292,0.308 +2014-09-25 11:00:00,0.23,0.292,0.308 +2014-09-25 12:00:00,0.23,0.292,0.307 +2014-09-25 13:00:00,0.23,0.292,0.307 +2014-09-25 14:00:00,0.23,0.292,0.306 +2014-09-25 15:00:00,0.23,0.292,0.306 +2014-09-25 16:00:00,0.23,0.292,0.306 +2014-09-25 17:00:00,0.23,0.292,0.306 +2014-09-25 18:00:00,0.23,0.292,0.305 +2014-09-25 19:00:00,0.23,0.292,0.305 +2014-09-25 20:00:00,0.23,0.292,0.305 +2014-09-25 21:00:00,0.23,0.292,0.305 +2014-09-25 22:00:00,0.22899999999999998,0.292,0.305 +2014-09-25 23:00:00,0.22899999999999998,0.292,0.306 +2014-09-26 00:00:00,0.22899999999999998,0.292,0.306 +2014-09-26 01:00:00,0.23,0.292,0.305 +2014-09-26 02:00:00,0.23,0.292,0.306 +2014-09-26 03:00:00,0.23,0.292,0.306 +2014-09-26 04:00:00,0.23,0.292,0.306 +2014-09-26 05:00:00,0.23,0.292,0.306 +2014-09-26 06:00:00,0.23,0.292,0.305 +2014-09-26 07:00:00,0.23,0.292,0.305 +2014-09-26 08:00:00,0.23,0.292,0.306 +2014-09-26 09:00:00,0.23,0.292,0.305 +2014-09-26 10:00:00,0.23,0.292,0.305 +2014-09-26 11:00:00,0.23,0.292,0.305 +2014-09-26 12:00:00,0.22899999999999998,0.292,0.305 +2014-09-26 13:00:00,0.22899999999999998,0.29100000000000004,0.305 +2014-09-26 14:00:00,0.22899999999999998,0.29100000000000004,0.305 +2014-09-26 15:00:00,0.23,0.29,0.305 +2014-09-26 16:00:00,0.22899999999999998,0.29,0.305 +2014-09-26 17:00:00,0.22899999999999998,0.29,0.305 +2014-09-26 18:00:00,0.22899999999999998,0.29,0.304 +2014-09-26 19:00:00,0.22899999999999998,0.29,0.305 +2014-09-26 20:00:00,0.22899999999999998,0.29,0.305 +2014-09-26 21:00:00,0.22899999999999998,0.29,0.305 +2014-09-26 22:00:00,0.22899999999999998,0.29,0.305 +2014-09-26 23:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 00:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 01:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 02:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 03:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 04:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 05:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 06:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 07:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 08:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 09:00:00,0.228,0.29,0.305 +2014-09-27 10:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 11:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 12:00:00,0.22899999999999998,0.29,0.305 +2014-09-27 13:00:00,0.22899999999999998,0.29,0.304 +2014-09-27 14:00:00,0.22899999999999998,0.29,0.304 +2014-09-27 15:00:00,0.22899999999999998,0.29,0.304 +2014-09-27 16:00:00,0.22899999999999998,0.29,0.304 +2014-09-27 17:00:00,0.228,0.29,0.304 +2014-09-27 18:00:00,0.22899999999999998,0.29,0.304 +2014-09-27 19:00:00,0.228,0.29,0.304 +2014-09-27 20:00:00,0.228,0.29,0.304 +2014-09-27 21:00:00,0.228,0.29,0.304 +2014-09-27 22:00:00,0.228,0.29,0.304 +2014-09-27 23:00:00,0.233,0.29,0.304 +2014-09-28 00:00:00,0.233,0.29,0.304 +2014-09-28 01:00:00,0.23,0.29,0.304 +2014-09-28 02:00:00,0.228,0.29,0.304 +2014-09-28 03:00:00,0.22899999999999998,0.29,0.304 +2014-09-28 04:00:00,0.228,0.29,0.304 +2014-09-28 05:00:00,0.228,0.29,0.304 +2014-09-28 06:00:00,0.228,0.29,0.304 +2014-09-28 07:00:00,0.228,0.29,0.304 +2014-09-28 08:00:00,0.228,0.29,0.304 +2014-09-28 09:00:00,0.228,0.29,0.304 +2014-09-28 10:00:00,0.22899999999999998,0.29,0.304 +2014-09-28 11:00:00,0.22899999999999998,0.29,0.304 +2014-09-28 12:00:00,0.228,0.29,0.304 +2014-09-28 13:00:00,0.228,0.29,0.304 +2014-09-28 14:00:00,0.228,0.29,0.304 +2014-09-28 15:00:00,0.22699999999999998,0.29,0.304 +2014-09-28 16:00:00,0.228,0.29,0.304 +2014-09-28 17:00:00,0.22699999999999998,0.29,0.303 +2014-09-28 18:00:00,0.228,0.29,0.303 +2014-09-28 19:00:00,0.22699999999999998,0.29,0.303 +2014-09-28 20:00:00,0.22699999999999998,0.29,0.303 +2014-09-28 21:00:00,0.22699999999999998,0.29,0.303 +2014-09-28 22:00:00,0.22699999999999998,0.29,0.303 +2014-09-28 23:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 00:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 01:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 02:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 03:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 04:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 05:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 06:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 07:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 08:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 09:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 10:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 11:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 12:00:00,0.22699999999999998,0.29,0.304 +2014-09-29 13:00:00,0.22699999999999998,0.289,0.304 +2014-09-29 14:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 15:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 16:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 17:00:00,0.22699999999999998,0.29,0.303 +2014-09-29 18:00:00,0.22699999999999998,0.289,0.303 +2014-09-29 19:00:00,0.22699999999999998,0.289,0.303 +2014-09-29 20:00:00,0.22699999999999998,0.289,0.303 +2014-09-29 21:00:00,0.22699999999999998,0.289,0.303 +2014-09-29 22:00:00,0.22699999999999998,0.289,0.303 +2014-09-29 23:00:00,0.22699999999999998,0.289,0.304 +2014-09-30 00:00:00,0.22699999999999998,0.29,0.304 +2014-09-30 01:00:00,0.226,0.29,0.304 +2014-09-30 02:00:00,0.22699999999999998,0.29,0.304 +2014-09-30 03:00:00,0.226,0.29,0.304 +2014-09-30 04:00:00,0.22699999999999998,0.29,0.304 +2014-09-30 05:00:00,0.226,0.29,0.304 +2014-09-30 06:00:00,0.226,0.29,0.304 +2014-09-30 07:00:00,0.226,0.29,0.304 +2014-09-30 08:00:00,0.226,0.29,0.304 +2014-09-30 09:00:00,0.226,0.29,0.304 +2014-09-30 10:00:00,0.226,0.29,0.304 +2014-09-30 11:00:00,0.226,0.289,0.304 +2014-09-30 12:00:00,0.22699999999999998,0.289,0.303 +2014-09-30 13:00:00,0.226,0.289,0.303 +2014-09-30 14:00:00,0.22699999999999998,0.289,0.303 +2014-09-30 15:00:00,0.22699999999999998,0.289,0.303 +2014-09-30 16:00:00,0.22699999999999998,0.289,0.303 +2014-09-30 17:00:00,0.22699999999999998,0.289,0.303 +2014-09-30 18:00:00,0.22699999999999998,0.289,0.303 +2014-09-30 19:00:00,0.226,0.289,0.303 +2014-09-30 20:00:00,0.226,0.289,0.303 +2014-09-30 21:00:00,0.226,0.289,0.303 +2014-09-30 22:00:00,0.226,0.289,0.303 +2014-09-30 23:00:00,0.226,0.289,0.303 +2014-10-01 00:00:00,0.226,0.289,0.303 +2014-10-01 01:00:00,0.226,0.289,0.303 +2014-10-01 02:00:00,0.226,0.289,0.303 +2014-10-01 03:00:00,0.226,0.289,0.303 +2014-10-01 04:00:00,0.226,0.289,0.303 +2014-10-01 05:00:00,0.225,0.289,0.303 +2014-10-01 06:00:00,0.225,0.289,0.303 +2014-10-01 07:00:00,0.225,0.289,0.303 +2014-10-01 08:00:00,0.225,0.287,0.303 +2014-10-01 09:00:00,0.225,0.287,0.303 +2014-10-01 10:00:00,0.225,0.287,0.304 +2014-10-01 11:00:00,0.225,0.28800000000000003,0.303 +2014-10-01 12:00:00,0.225,0.28800000000000003,0.303 +2014-10-01 13:00:00,0.225,0.28800000000000003,0.303 +2014-10-01 14:00:00,0.225,0.28800000000000003,0.303 +2014-10-01 15:00:00,0.225,0.289,0.302 +2014-10-01 16:00:00,0.225,0.289,0.302 +2014-10-01 17:00:00,0.225,0.292,0.302 +2014-10-01 18:00:00,0.225,0.292,0.302 +2014-10-01 19:00:00,0.225,0.292,0.302 +2014-10-01 20:00:00,0.225,0.292,0.302 +2014-10-01 21:00:00,0.225,0.292,0.302 +2014-10-01 22:00:00,0.225,0.287,0.302 +2014-10-01 23:00:00,0.225,0.289,0.302 +2014-10-02 00:00:00,0.225,0.293,0.302 +2014-10-02 01:00:00,0.22399999999999998,0.297,0.302 +2014-10-02 02:00:00,0.22399999999999998,0.297,0.302 +2014-10-02 03:00:00,0.22399999999999998,0.298,0.302 +2014-10-02 04:00:00,0.225,0.299,0.302 +2014-10-02 05:00:00,0.22399999999999998,0.299,0.302 +2014-10-02 06:00:00,0.225,0.3,0.302 +2014-10-02 07:00:00,0.22399999999999998,0.3,0.302 +2014-10-02 08:00:00,0.22399999999999998,0.299,0.302 +2014-10-02 09:00:00,0.22399999999999998,0.299,0.302 +2014-10-02 10:00:00,0.22399999999999998,0.299,0.302 +2014-10-02 11:00:00,0.22399999999999998,0.299,0.302 +2014-10-02 12:00:00,0.22399999999999998,0.298,0.302 +2014-10-02 13:00:00,0.22399999999999998,0.298,0.302 +2014-10-02 14:00:00,0.22399999999999998,0.298,0.302 +2014-10-02 15:00:00,0.22399999999999998,0.298,0.302 +2014-10-02 16:00:00,0.22399999999999998,0.294,0.302 +2014-10-02 17:00:00,0.22399999999999998,0.302,0.302 +2014-10-02 18:00:00,0.22399999999999998,0.315,0.301 +2014-10-02 19:00:00,0.223,0.321,0.301 +2014-10-02 20:00:00,0.223,0.32299999999999995,0.301 +2014-10-02 21:00:00,0.223,0.324,0.301 +2014-10-02 22:00:00,0.223,0.324,0.301 +2014-10-02 23:00:00,0.223,0.324,0.301 +2014-10-03 00:00:00,0.223,0.324,0.301 +2014-10-03 01:00:00,0.223,0.324,0.301 +2014-10-03 02:00:00,0.223,0.32299999999999995,0.301 +2014-10-03 03:00:00,0.223,0.321,0.301 +2014-10-03 04:00:00,0.223,0.321,0.301 +2014-10-03 05:00:00,0.223,0.318,0.301 +2014-10-03 06:00:00,0.223,0.318,0.302 +2014-10-03 07:00:00,0.223,0.318,0.302 +2014-10-03 08:00:00,0.223,0.321,0.302 +2014-10-03 09:00:00,0.223,0.32299999999999995,0.302 +2014-10-03 10:00:00,0.223,0.326,0.302 +2014-10-03 11:00:00,0.223,0.331,0.302 +2014-10-03 12:00:00,0.223,0.331,0.302 +2014-10-03 13:00:00,0.223,0.331,0.302 +2014-10-03 14:00:00,0.223,0.32899999999999996,0.301 +2014-10-03 15:00:00,0.223,0.32799999999999996,0.301 +2014-10-03 16:00:00,0.223,0.33,0.301 +2014-10-03 17:00:00,0.223,0.332,0.301 +2014-10-03 18:00:00,0.223,0.331,0.301 +2014-10-03 19:00:00,0.222,0.33,0.301 +2014-10-03 20:00:00,0.222,0.33399999999999996,0.301 +2014-10-03 21:00:00,0.222,0.33299999999999996,0.301 +2014-10-03 22:00:00,0.222,0.33899999999999997,0.301 +2014-10-03 23:00:00,0.222,0.341,0.301 +2014-10-04 00:00:00,0.222,0.33899999999999997,0.301 +2014-10-04 01:00:00,0.222,0.33799999999999997,0.301 +2014-10-04 02:00:00,0.222,0.336,0.301 +2014-10-04 03:00:00,0.222,0.33399999999999996,0.301 +2014-10-04 04:00:00,0.222,0.33399999999999996,0.301 +2014-10-04 05:00:00,0.222,0.332,0.301 +2014-10-04 06:00:00,0.222,0.332,0.301 +2014-10-04 07:00:00,0.222,0.331,0.301 +2014-10-04 08:00:00,0.222,0.331,0.301 +2014-10-04 09:00:00,0.222,0.33,0.301 +2014-10-04 10:00:00,0.222,0.32899999999999996,0.301 +2014-10-04 11:00:00,0.222,0.32799999999999996,0.301 +2014-10-04 12:00:00,0.222,0.327,0.301 +2014-10-04 13:00:00,0.222,0.327,0.301 +2014-10-04 14:00:00,0.222,0.32799999999999996,0.301 +2014-10-04 15:00:00,0.222,0.32899999999999996,0.301 +2014-10-04 16:00:00,0.222,0.331,0.3 +2014-10-04 17:00:00,0.221,0.332,0.3 +2014-10-04 18:00:00,0.221,0.332,0.3 +2014-10-04 19:00:00,0.221,0.332,0.3 +2014-10-04 20:00:00,0.221,0.332,0.3 +2014-10-04 21:00:00,0.221,0.332,0.3 +2014-10-04 22:00:00,0.221,0.332,0.3 +2014-10-04 23:00:00,0.221,0.332,0.3 +2014-10-05 00:00:00,0.221,0.332,0.3 +2014-10-05 01:00:00,0.221,0.332,0.3 +2014-10-05 02:00:00,0.221,0.331,0.3 +2014-10-05 03:00:00,0.221,0.331,0.3 +2014-10-05 04:00:00,0.22,0.331,0.3 +2014-10-05 05:00:00,0.221,0.33,0.3 +2014-10-05 06:00:00,0.221,0.32299999999999995,0.3 +2014-10-05 07:00:00,0.221,0.322,0.3 +2014-10-05 08:00:00,0.221,0.324,0.301 +2014-10-05 09:00:00,0.221,0.325,0.301 +2014-10-05 10:00:00,0.221,0.327,0.301 +2014-10-05 11:00:00,0.221,0.327,0.301 +2014-10-05 12:00:00,0.221,0.32799999999999996,0.3 +2014-10-05 13:00:00,0.221,0.32899999999999996,0.3 +2014-10-05 14:00:00,0.221,0.33,0.3 +2014-10-05 15:00:00,0.221,0.331,0.3 +2014-10-05 16:00:00,0.22,0.332,0.3 +2014-10-05 17:00:00,0.221,0.332,0.3 +2014-10-05 18:00:00,0.22,0.332,0.3 +2014-10-05 19:00:00,0.22,0.33299999999999996,0.3 +2014-10-05 20:00:00,0.22,0.33399999999999996,0.3 +2014-10-05 21:00:00,0.22,0.33399999999999996,0.3 +2014-10-05 22:00:00,0.22,0.33399999999999996,0.3 +2014-10-05 23:00:00,0.22,0.33399999999999996,0.3 +2014-10-06 00:00:00,0.22,0.33299999999999996,0.3 +2014-10-06 01:00:00,0.22,0.332,0.3 +2014-10-06 02:00:00,0.22,0.332,0.3 +2014-10-06 03:00:00,0.22,0.332,0.3 +2014-10-06 04:00:00,0.22,0.332,0.3 +2014-10-06 05:00:00,0.22,0.331,0.3 +2014-10-06 06:00:00,0.22,0.331,0.3 +2014-10-06 07:00:00,0.22,0.331,0.3 +2014-10-06 08:00:00,0.22,0.331,0.3 +2014-10-06 09:00:00,0.22,0.331,0.3 +2014-10-06 10:00:00,0.22,0.331,0.3 +2014-10-06 11:00:00,0.225,0.33,0.3 +2014-10-06 12:00:00,0.222,0.32899999999999996,0.3 +2014-10-06 13:00:00,0.221,0.327,0.3 +2014-10-06 14:00:00,0.221,0.327,0.3 +2014-10-06 15:00:00,0.221,0.327,0.3 +2014-10-06 16:00:00,0.221,0.327,0.3 +2014-10-06 17:00:00,0.221,0.327,0.3 +2014-10-06 18:00:00,0.221,0.327,0.3 +2014-10-06 19:00:00,0.22,0.327,0.299 +2014-10-06 20:00:00,0.221,0.327,0.3 +2014-10-06 21:00:00,0.22,0.327,0.3 +2014-10-06 22:00:00,0.22,0.327,0.3 +2014-10-06 23:00:00,0.22,0.327,0.3 +2014-10-07 00:00:00,0.22,0.325,0.3 +2014-10-07 01:00:00,0.22,0.324,0.3 +2014-10-07 02:00:00,0.22,0.326,0.3 +2014-10-07 03:00:00,0.22,0.33,0.3 +2014-10-07 04:00:00,0.22,0.332,0.302 +2014-10-07 05:00:00,0.218,0.33399999999999996,0.305 +2014-10-07 06:00:00,0.218,0.336,0.305 +2014-10-07 07:00:00,0.218,0.33799999999999997,0.305 +2014-10-07 08:00:00,0.218,0.33799999999999997,0.305 +2014-10-07 09:00:00,0.218,0.33799999999999997,0.305 +2014-10-07 10:00:00,0.21899999999999997,0.336,0.305 +2014-10-07 11:00:00,0.22,0.336,0.305 +2014-10-07 12:00:00,0.22,0.33799999999999997,0.305 +2014-10-07 13:00:00,0.22,0.33799999999999997,0.305 +2014-10-07 14:00:00,0.222,0.33899999999999997,0.304 +2014-10-07 15:00:00,0.222,0.33899999999999997,0.303 +2014-10-07 16:00:00,0.223,0.34,0.303 +2014-10-07 17:00:00,0.223,0.341,0.302 +2014-10-07 18:00:00,0.223,0.341,0.303 +2014-10-07 19:00:00,0.221,0.341,0.307 +2014-10-07 20:00:00,0.22699999999999998,0.341,0.307 +2014-10-07 21:00:00,0.228,0.341,0.308 +2014-10-07 22:00:00,0.22899999999999998,0.341,0.308 +2014-10-07 23:00:00,0.22899999999999998,0.34,0.308 +2014-10-08 00:00:00,0.22899999999999998,0.33899999999999997,0.308 +2014-10-08 01:00:00,0.22899999999999998,0.33899999999999997,0.308 +2014-10-08 02:00:00,0.23,0.33899999999999997,0.308 +2014-10-08 03:00:00,0.23,0.33799999999999997,0.308 +2014-10-08 04:00:00,0.23,0.33799999999999997,0.308 +2014-10-08 05:00:00,0.23,0.33799999999999997,0.308 +2014-10-08 06:00:00,0.23,0.336,0.308 +2014-10-08 07:00:00,0.23,0.336,0.308 +2014-10-08 08:00:00,0.23,0.33399999999999996,0.308 +2014-10-08 09:00:00,0.23,0.33399999999999996,0.308 +2014-10-08 10:00:00,0.23,0.33399999999999996,0.308 +2014-10-08 11:00:00,0.231,0.33399999999999996,0.308 +2014-10-08 12:00:00,0.231,0.332,0.308 +2014-10-08 13:00:00,0.231,0.332,0.309 +2014-10-08 14:00:00,0.239,0.332,0.312 +2014-10-08 15:00:00,0.242,0.331,0.332 +2014-10-08 16:00:00,0.243,0.331,0.33299999999999996 +2014-10-08 17:00:00,0.243,0.331,0.332 +2014-10-08 18:00:00,0.243,0.331,0.332 +2014-10-08 19:00:00,0.243,0.331,0.331 +2014-10-08 20:00:00,0.243,0.331,0.33 +2014-10-08 21:00:00,0.243,0.331,0.32899999999999996 +2014-10-08 22:00:00,0.242,0.331,0.32799999999999996 +2014-10-08 23:00:00,0.242,0.331,0.327 +2014-10-09 00:00:00,0.243,0.331,0.327 +2014-10-09 01:00:00,0.243,0.33,0.326 +2014-10-09 02:00:00,0.244,0.32899999999999996,0.325 +2014-10-09 03:00:00,0.245,0.32899999999999996,0.324 +2014-10-09 04:00:00,0.247,0.32899999999999996,0.32299999999999995 +2014-10-09 05:00:00,0.248,0.32899999999999996,0.32299999999999995 +2014-10-09 06:00:00,0.25,0.327,0.32899999999999996 +2014-10-09 07:00:00,0.252,0.327,0.337 +2014-10-09 08:00:00,0.252,0.327,0.34 +2014-10-09 09:00:00,0.251,0.327,0.33899999999999997 +2014-10-09 10:00:00,0.25,0.327,0.33799999999999997 +2014-10-09 11:00:00,0.25,0.327,0.33799999999999997 +2014-10-09 12:00:00,0.251,0.326,0.337 +2014-10-09 13:00:00,0.252,0.326,0.33799999999999997 +2014-10-09 14:00:00,0.252,0.326,0.33899999999999997 +2014-10-09 15:00:00,0.251,0.326,0.33899999999999997 +2014-10-09 16:00:00,0.254,0.326,0.34 +2014-10-09 17:00:00,0.254,0.325,0.342 +2014-10-09 18:00:00,0.254,0.324,0.342 +2014-10-09 19:00:00,0.258,0.324,0.34600000000000003 +2014-10-09 20:00:00,0.257,0.324,0.349 +2014-10-09 21:00:00,0.255,0.324,0.349 +2014-10-09 22:00:00,0.253,0.324,0.348 +2014-10-09 23:00:00,0.252,0.324,0.34700000000000003 +2014-10-10 00:00:00,0.25,0.324,0.34600000000000003 +2014-10-10 01:00:00,0.25,0.324,0.34600000000000003 +2014-10-10 02:00:00,0.249,0.324,0.345 +2014-10-10 03:00:00,0.248,0.324,0.344 +2014-10-10 04:00:00,0.247,0.32299999999999995,0.344 +2014-10-10 05:00:00,0.24600000000000002,0.322,0.344 +2014-10-10 06:00:00,0.24600000000000002,0.324,0.34299999999999997 +2014-10-10 07:00:00,0.245,0.324,0.34299999999999997 +2014-10-10 08:00:00,0.245,0.326,0.342 +2014-10-10 09:00:00,0.245,0.326,0.342 +2014-10-10 10:00:00,0.244,0.326,0.341 +2014-10-10 11:00:00,0.244,0.326,0.341 +2014-10-10 12:00:00,0.244,0.326,0.34 +2014-10-10 13:00:00,0.244,0.327,0.33899999999999997 +2014-10-10 14:00:00,0.245,0.32899999999999996,0.33799999999999997 +2014-10-10 15:00:00,0.24600000000000002,0.331,0.337 +2014-10-10 16:00:00,0.247,0.326,0.337 +2014-10-10 17:00:00,0.248,0.327,0.336 +2014-10-10 18:00:00,0.248,0.33299999999999996,0.336 +2014-10-10 19:00:00,0.248,0.33799999999999997,0.335 +2014-10-10 20:00:00,0.247,0.33899999999999997,0.335 +2014-10-10 21:00:00,0.247,0.341,0.335 +2014-10-10 22:00:00,0.247,0.341,0.33 +2014-10-10 23:00:00,0.247,0.341,0.32899999999999996 +2014-10-11 00:00:00,0.247,0.34,0.32799999999999996 +2014-10-11 01:00:00,0.24600000000000002,0.33899999999999997,0.32799999999999996 +2014-10-11 02:00:00,0.245,0.33799999999999997,0.32799999999999996 +2014-10-11 03:00:00,0.244,0.33799999999999997,0.32899999999999996 +2014-10-11 04:00:00,0.244,0.33799999999999997,0.32899999999999996 +2014-10-11 05:00:00,0.245,0.337,0.32799999999999996 +2014-10-11 06:00:00,0.245,0.336,0.32799999999999996 +2014-10-11 07:00:00,0.245,0.335,0.32799999999999996 +2014-10-11 08:00:00,0.245,0.33399999999999996,0.32799999999999996 +2014-10-11 09:00:00,0.245,0.33399999999999996,0.32799999999999996 +2014-10-11 10:00:00,0.245,0.33299999999999996,0.32799999999999996 +2014-10-11 11:00:00,0.245,0.33299999999999996,0.327 +2014-10-11 12:00:00,0.245,0.332,0.327 +2014-10-11 13:00:00,0.245,0.331,0.327 +2014-10-11 14:00:00,0.24600000000000002,0.331,0.327 +2014-10-11 15:00:00,0.24600000000000002,0.332,0.326 +2014-10-11 16:00:00,0.247,0.332,0.326 +2014-10-11 17:00:00,0.247,0.332,0.326 +2014-10-11 18:00:00,0.248,0.33299999999999996,0.325 +2014-10-11 19:00:00,0.248,0.33399999999999996,0.325 +2014-10-11 20:00:00,0.248,0.33399999999999996,0.325 +2014-10-11 21:00:00,0.247,0.33399999999999996,0.325 +2014-10-11 22:00:00,0.247,0.33399999999999996,0.324 +2014-10-11 23:00:00,0.247,0.33399999999999996,0.324 +2014-10-12 00:00:00,0.247,0.33299999999999996,0.32299999999999995 +2014-10-12 01:00:00,0.24600000000000002,0.332,0.32299999999999995 +2014-10-12 02:00:00,0.24600000000000002,0.332,0.32299999999999995 +2014-10-12 03:00:00,0.24600000000000002,0.332,0.32299999999999995 +2014-10-12 04:00:00,0.24600000000000002,0.332,0.322 +2014-10-12 05:00:00,0.24600000000000002,0.331,0.322 +2014-10-12 06:00:00,0.24600000000000002,0.331,0.322 +2014-10-12 07:00:00,0.24600000000000002,0.33,0.322 +2014-10-12 08:00:00,0.245,0.32899999999999996,0.322 +2014-10-12 09:00:00,0.245,0.32899999999999996,0.321 +2014-10-12 10:00:00,0.245,0.32899999999999996,0.321 +2014-10-12 11:00:00,0.245,0.327,0.321 +2014-10-12 12:00:00,0.245,0.327,0.32 +2014-10-12 13:00:00,0.245,0.327,0.32 +2014-10-12 14:00:00,0.24600000000000002,0.327,0.319 +2014-10-12 15:00:00,0.24600000000000002,0.327,0.319 +2014-10-12 16:00:00,0.24600000000000002,0.327,0.319 +2014-10-12 17:00:00,0.245,0.327,0.319 +2014-10-12 18:00:00,0.245,0.327,0.318 +2014-10-12 19:00:00,0.245,0.327,0.319 +2014-10-12 20:00:00,0.245,0.327,0.32 +2014-10-12 21:00:00,0.245,0.327,0.321 +2014-10-12 22:00:00,0.248,0.327,0.322 +2014-10-12 23:00:00,0.25,0.326,0.322 +2014-10-13 00:00:00,0.25,0.326,0.322 +2014-10-13 01:00:00,0.25,0.326,0.322 +2014-10-13 02:00:00,0.25,0.326,0.322 +2014-10-13 03:00:00,0.25,0.326,0.32299999999999995 +2014-10-13 04:00:00,0.25,0.326,0.32299999999999995 +2014-10-13 05:00:00,0.249,0.326,0.32299999999999995 +2014-10-13 06:00:00,0.249,0.326,0.324 +2014-10-13 07:00:00,0.248,0.326,0.324 +2014-10-13 08:00:00,0.249,0.325,0.324 +2014-10-13 09:00:00,0.249,0.324,0.325 +2014-10-13 10:00:00,0.249,0.324,0.325 +2014-10-13 11:00:00,0.249,0.324,0.325 +2014-10-13 12:00:00,0.249,0.324,0.326 +2014-10-13 13:00:00,0.249,0.324,0.326 +2014-10-13 14:00:00,0.249,0.324,0.327 +2014-10-13 15:00:00,0.249,0.324,0.327 +2014-10-13 16:00:00,0.249,0.324,0.327 +2014-10-13 17:00:00,0.248,0.324,0.327 +2014-10-13 18:00:00,0.248,0.324,0.327 +2014-10-13 19:00:00,0.248,0.324,0.327 +2014-10-13 20:00:00,0.248,0.324,0.327 +2014-10-13 21:00:00,0.248,0.324,0.326 +2014-10-13 22:00:00,0.247,0.324,0.326 +2014-10-13 23:00:00,0.247,0.324,0.326 +2014-10-14 00:00:00,0.247,0.324,0.326 +2014-10-14 01:00:00,0.247,0.324,0.325 +2014-10-14 02:00:00,0.24600000000000002,0.324,0.325 +2014-10-14 03:00:00,0.24600000000000002,0.317,0.325 +2014-10-14 04:00:00,0.24600000000000002,0.314,0.325 +2014-10-14 05:00:00,0.24600000000000002,0.316,0.324 +2014-10-14 06:00:00,0.24600000000000002,0.318,0.324 +2014-10-14 07:00:00,0.24600000000000002,0.32,0.324 +2014-10-14 08:00:00,0.245,0.321,0.324 +2014-10-14 09:00:00,0.245,0.322,0.32299999999999995 +2014-10-14 10:00:00,0.245,0.322,0.32299999999999995 +2014-10-14 11:00:00,0.245,0.32299999999999995,0.32299999999999995 +2014-10-14 12:00:00,0.245,0.32299999999999995,0.322 +2014-10-14 13:00:00,0.245,0.324,0.322 +2014-10-14 14:00:00,0.24600000000000002,0.326,0.321 +2014-10-14 15:00:00,0.24600000000000002,0.327,0.321 +2014-10-14 16:00:00,0.24600000000000002,0.32899999999999996,0.32 +2014-10-14 17:00:00,0.24600000000000002,0.331,0.32 +2014-10-14 18:00:00,0.24600000000000002,0.331,0.32 +2014-10-14 19:00:00,0.245,0.331,0.319 +2014-10-14 20:00:00,0.245,0.331,0.319 +2014-10-14 21:00:00,0.245,0.331,0.319 +2014-10-14 22:00:00,0.245,0.331,0.319 +2014-10-14 23:00:00,0.245,0.331,0.319 +2014-10-15 00:00:00,0.245,0.331,0.319 +2014-10-15 01:00:00,0.245,0.331,0.319 +2014-10-15 02:00:00,0.245,0.331,0.319 +2014-10-15 03:00:00,0.245,0.33,0.318 +2014-10-15 04:00:00,0.244,0.32899999999999996,0.318 +2014-10-15 05:00:00,0.244,0.32899999999999996,0.318 +2014-10-15 06:00:00,0.244,0.32899999999999996,0.318 +2014-10-15 07:00:00,0.244,0.32799999999999996,0.318 +2014-10-15 08:00:00,0.244,0.327,0.318 +2014-10-15 09:00:00,0.244,0.327,0.318 +2014-10-15 10:00:00,0.244,0.327,0.318 +2014-10-15 11:00:00,0.244,0.327,0.318 +2014-10-15 12:00:00,0.244,0.327,0.318 +2014-10-15 13:00:00,0.243,0.327,0.318 +2014-10-15 14:00:00,0.243,0.326,0.317 +2014-10-15 15:00:00,0.244,0.326,0.317 +2014-10-15 16:00:00,0.244,0.326,0.316 +2014-10-15 17:00:00,0.243,0.326,0.316 +2014-10-15 18:00:00,0.244,0.326,0.316 +2014-10-15 19:00:00,0.243,0.326,0.316 +2014-10-15 20:00:00,0.243,0.324,0.316 +2014-10-15 21:00:00,0.243,0.319,0.316 +2014-10-15 22:00:00,0.243,0.32,0.316 +2014-10-15 23:00:00,0.243,0.321,0.316 +2014-10-16 00:00:00,0.243,0.322,0.317 +2014-10-16 01:00:00,0.242,0.318,0.319 +2014-10-16 02:00:00,0.243,0.319,0.32 +2014-10-16 03:00:00,0.244,0.316,0.32 +2014-10-16 04:00:00,0.244,0.313,0.32 +2014-10-16 05:00:00,0.245,0.315,0.32 +2014-10-16 06:00:00,0.245,0.316,0.32 +2014-10-16 07:00:00,0.245,0.319,0.32 +2014-10-16 08:00:00,0.244,0.321,0.32 +2014-10-16 09:00:00,0.244,0.322,0.32 +2014-10-16 10:00:00,0.245,0.324,0.32 +2014-10-16 11:00:00,0.245,0.324,0.32 +2014-10-16 12:00:00,0.24600000000000002,0.324,0.32 +2014-10-16 13:00:00,0.245,0.324,0.321 +2014-10-16 14:00:00,0.24600000000000002,0.319,0.322 +2014-10-16 15:00:00,0.248,0.321,0.324 +2014-10-16 16:00:00,0.248,0.322,0.326 +2014-10-16 17:00:00,0.247,0.32299999999999995,0.327 +2014-10-16 18:00:00,0.247,0.327,0.32799999999999996 +2014-10-16 19:00:00,0.24600000000000002,0.331,0.32799999999999996 +2014-10-16 20:00:00,0.24600000000000002,0.33299999999999996,0.32799999999999996 +2014-10-16 21:00:00,0.24600000000000002,0.33399999999999996,0.32899999999999996 +2014-10-16 22:00:00,0.245,0.33399999999999996,0.32899999999999996 +2014-10-16 23:00:00,0.245,0.33399999999999996,0.32899999999999996 +2014-10-17 00:00:00,0.245,0.33399999999999996,0.32899999999999996 +2014-10-17 01:00:00,0.245,0.33399999999999996,0.32799999999999996 +2014-10-17 02:00:00,0.245,0.33299999999999996,0.32799999999999996 +2014-10-17 03:00:00,0.245,0.33299999999999996,0.32799999999999996 +2014-10-17 04:00:00,0.244,0.332,0.327 +2014-10-17 05:00:00,0.244,0.332,0.327 +2014-10-17 06:00:00,0.244,0.332,0.327 +2014-10-17 07:00:00,0.244,0.332,0.327 +2014-10-17 08:00:00,0.244,0.331,0.326 +2014-10-17 09:00:00,0.244,0.331,0.326 +2014-10-17 10:00:00,0.244,0.331,0.326 +2014-10-17 11:00:00,0.244,0.331,0.325 +2014-10-17 12:00:00,0.244,0.331,0.325 +2014-10-17 13:00:00,0.244,0.33,0.325 +2014-10-17 14:00:00,0.245,0.32899999999999996,0.324 +2014-10-17 15:00:00,0.245,0.32899999999999996,0.324 +2014-10-17 16:00:00,0.245,0.32899999999999996,0.32299999999999995 +2014-10-17 17:00:00,0.24600000000000002,0.32899999999999996,0.32299999999999995 +2014-10-17 18:00:00,0.24600000000000002,0.32899999999999996,0.322 +2014-10-17 19:00:00,0.24600000000000002,0.32799999999999996,0.322 +2014-10-17 20:00:00,0.24600000000000002,0.327,0.322 +2014-10-17 21:00:00,0.24600000000000002,0.327,0.322 +2014-10-17 22:00:00,0.245,0.327,0.322 +2014-10-17 23:00:00,0.245,0.327,0.321 +2014-10-18 00:00:00,0.245,0.327,0.321 +2014-10-18 01:00:00,0.245,0.327,0.321 +2014-10-18 02:00:00,0.245,0.327,0.321 +2014-10-18 03:00:00,0.244,0.327,0.321 +2014-10-18 04:00:00,0.244,0.327,0.321 +2014-10-18 05:00:00,0.244,0.327,0.321 +2014-10-18 06:00:00,0.243,0.326,0.321 +2014-10-18 07:00:00,0.243,0.326,0.321 +2014-10-18 08:00:00,0.243,0.326,0.321 +2014-10-18 09:00:00,0.243,0.326,0.321 +2014-10-18 10:00:00,0.242,0.326,0.321 +2014-10-18 11:00:00,0.242,0.326,0.321 +2014-10-18 12:00:00,0.243,0.325,0.32 +2014-10-18 13:00:00,0.243,0.324,0.32 +2014-10-18 14:00:00,0.243,0.324,0.319 +2014-10-18 15:00:00,0.243,0.324,0.319 +2014-10-18 16:00:00,0.244,0.324,0.319 +2014-10-18 17:00:00,0.243,0.324,0.318 +2014-10-18 18:00:00,0.243,0.324,0.318 +2014-10-18 19:00:00,0.243,0.324,0.318 +2014-10-18 20:00:00,0.243,0.324,0.318 +2014-10-18 21:00:00,0.243,0.324,0.318 +2014-10-18 22:00:00,0.243,0.324,0.318 +2014-10-18 23:00:00,0.243,0.324,0.318 +2014-10-19 00:00:00,0.243,0.324,0.318 +2014-10-19 01:00:00,0.243,0.324,0.318 +2014-10-19 02:00:00,0.242,0.324,0.318 +2014-10-19 03:00:00,0.242,0.32299999999999995,0.318 +2014-10-19 04:00:00,0.242,0.32299999999999995,0.318 +2014-10-19 05:00:00,0.242,0.32299999999999995,0.318 +2014-10-19 06:00:00,0.242,0.32299999999999995,0.318 +2014-10-19 07:00:00,0.242,0.322,0.318 +2014-10-19 08:00:00,0.242,0.322,0.318 +2014-10-19 09:00:00,0.24100000000000002,0.322,0.318 +2014-10-19 10:00:00,0.24100000000000002,0.322,0.318 +2014-10-19 11:00:00,0.24100000000000002,0.322,0.318 +2014-10-19 12:00:00,0.24100000000000002,0.322,0.318 +2014-10-19 13:00:00,0.242,0.324,0.317 +2014-10-19 14:00:00,0.242,0.324,0.317 +2014-10-19 15:00:00,0.242,0.324,0.317 +2014-10-19 16:00:00,0.242,0.326,0.317 +2014-10-19 17:00:00,0.242,0.326,0.317 +2014-10-19 18:00:00,0.242,0.326,0.317 +2014-10-19 19:00:00,0.242,0.326,0.317 +2014-10-19 20:00:00,0.24100000000000002,0.326,0.317 +2014-10-19 21:00:00,0.24100000000000002,0.326,0.317 +2014-10-19 22:00:00,0.24100000000000002,0.326,0.317 +2014-10-19 23:00:00,0.24100000000000002,0.327,0.317 +2014-10-20 00:00:00,0.239,0.327,0.319 +2014-10-20 01:00:00,0.23800000000000002,0.327,0.321 +2014-10-20 02:00:00,0.239,0.327,0.321 +2014-10-20 03:00:00,0.24,0.327,0.321 +2014-10-20 04:00:00,0.24,0.326,0.321 +2014-10-20 05:00:00,0.239,0.326,0.321 +2014-10-20 06:00:00,0.239,0.326,0.321 +2014-10-20 07:00:00,0.239,0.326,0.321 +2014-10-20 08:00:00,0.239,0.326,0.321 +2014-10-20 09:00:00,0.239,0.326,0.321 +2014-10-20 10:00:00,0.239,0.326,0.321 +2014-10-20 11:00:00,0.24,0.326,0.32 +2014-10-20 12:00:00,0.242,0.326,0.32 +2014-10-20 13:00:00,0.243,0.326,0.319 +2014-10-20 14:00:00,0.244,0.326,0.318 +2014-10-20 15:00:00,0.244,0.326,0.318 +2014-10-20 16:00:00,0.244,0.326,0.317 +2014-10-20 17:00:00,0.244,0.326,0.317 +2014-10-20 18:00:00,0.244,0.325,0.317 +2014-10-20 19:00:00,0.244,0.325,0.317 +2014-10-20 20:00:00,0.244,0.326,0.317 +2014-10-20 21:00:00,0.244,0.325,0.317 +2014-10-20 22:00:00,0.244,0.324,0.317 +2014-10-20 23:00:00,0.244,0.324,0.317 +2014-10-21 00:00:00,0.243,0.324,0.317 +2014-10-21 01:00:00,0.243,0.324,0.317 +2014-10-21 02:00:00,0.243,0.324,0.317 +2014-10-21 03:00:00,0.243,0.324,0.317 +2014-10-21 04:00:00,0.243,0.324,0.317 +2014-10-21 05:00:00,0.243,0.324,0.317 +2014-10-21 06:00:00,0.243,0.324,0.317 +2014-10-21 07:00:00,0.243,0.324,0.317 +2014-10-21 08:00:00,0.243,0.324,0.317 +2014-10-21 09:00:00,0.243,0.324,0.317 +2014-10-21 10:00:00,0.243,0.32299999999999995,0.317 +2014-10-21 11:00:00,0.243,0.32299999999999995,0.317 +2014-10-21 12:00:00,0.243,0.32299999999999995,0.317 +2014-10-21 13:00:00,0.243,0.32299999999999995,0.317 +2014-10-21 14:00:00,0.243,0.322,0.316 +2014-10-21 15:00:00,0.242,0.322,0.318 +2014-10-21 16:00:00,0.24,0.322,0.319 +2014-10-21 17:00:00,0.24,0.322,0.32 +2014-10-21 18:00:00,0.239,0.322,0.321 +2014-10-21 19:00:00,0.239,0.322,0.321 +2014-10-21 20:00:00,0.239,0.322,0.321 +2014-10-21 21:00:00,0.239,0.322,0.32 +2014-10-21 22:00:00,0.239,0.322,0.321 +2014-10-21 23:00:00,0.239,0.322,0.321 +2014-10-22 00:00:00,0.24,0.322,0.321 +2014-10-22 01:00:00,0.24,0.322,0.322 +2014-10-22 02:00:00,0.24,0.322,0.322 +2014-10-22 03:00:00,0.24,0.322,0.321 +2014-10-22 04:00:00,0.24,0.321,0.321 +2014-10-22 05:00:00,0.24,0.321,0.321 +2014-10-22 06:00:00,0.24,0.321,0.321 +2014-10-22 07:00:00,0.239,0.321,0.321 +2014-10-22 08:00:00,0.24,0.321,0.321 +2014-10-22 09:00:00,0.24,0.321,0.321 +2014-10-22 10:00:00,0.24,0.321,0.321 +2014-10-22 11:00:00,0.24100000000000002,0.321,0.322 +2014-10-22 12:00:00,0.24100000000000002,0.321,0.321 +2014-10-22 13:00:00,0.24,0.321,0.321 +2014-10-22 14:00:00,0.24100000000000002,0.321,0.321 +2014-10-22 15:00:00,0.24,0.321,0.321 +2014-10-22 16:00:00,0.24100000000000002,0.321,0.32 +2014-10-22 17:00:00,0.243,0.32,0.32 +2014-10-22 18:00:00,0.244,0.32,0.319 +2014-10-22 19:00:00,0.245,0.32,0.319 +2014-10-22 20:00:00,0.245,0.32,0.319 +2014-10-22 21:00:00,0.245,0.32,0.318 +2014-10-22 22:00:00,0.245,0.32,0.318 +2014-10-22 23:00:00,0.245,0.32,0.318 +2014-10-23 00:00:00,0.245,0.319,0.318 +2014-10-23 01:00:00,0.245,0.319,0.318 +2014-10-23 02:00:00,0.245,0.319,0.318 +2014-10-23 03:00:00,0.245,0.319,0.318 +2014-10-23 04:00:00,0.245,0.319,0.318 +2014-10-23 05:00:00,0.245,0.319,0.318 +2014-10-23 06:00:00,0.245,0.319,0.318 +2014-10-23 07:00:00,0.245,0.319,0.318 +2014-10-23 08:00:00,0.245,0.319,0.317 +2014-10-23 09:00:00,0.244,0.319,0.317 +2014-10-23 10:00:00,0.244,0.319,0.317 +2014-10-23 11:00:00,0.244,0.319,0.317 +2014-10-23 12:00:00,0.244,0.319,0.317 +2014-10-23 13:00:00,0.244,0.319,0.317 +2014-10-23 14:00:00,0.244,0.319,0.317 +2014-10-23 15:00:00,0.244,0.319,0.317 +2014-10-23 16:00:00,0.244,0.319,0.316 +2014-10-23 17:00:00,0.244,0.319,0.316 +2014-10-23 18:00:00,0.244,0.319,0.316 +2014-10-23 19:00:00,0.244,0.319,0.316 +2014-10-23 20:00:00,0.244,0.318,0.316 +2014-10-23 21:00:00,0.244,0.318,0.316 +2014-10-23 22:00:00,0.244,0.317,0.316 +2014-10-23 23:00:00,0.244,0.317,0.316 +2014-10-24 00:00:00,0.244,0.317,0.316 +2014-10-24 01:00:00,0.244,0.317,0.316 +2014-10-24 02:00:00,0.243,0.317,0.316 +2014-10-24 03:00:00,0.243,0.317,0.316 +2014-10-24 04:00:00,0.243,0.317,0.316 +2014-10-24 05:00:00,0.243,0.317,0.316 +2014-10-24 06:00:00,0.243,0.317,0.316 +2014-10-24 07:00:00,0.243,0.317,0.316 +2014-10-24 08:00:00,0.243,0.317,0.316 +2014-10-24 09:00:00,0.243,0.317,0.316 +2014-10-24 10:00:00,0.243,0.317,0.316 +2014-10-24 11:00:00,0.243,0.317,0.316 +2014-10-24 12:00:00,0.243,0.317,0.316 +2014-10-24 13:00:00,0.243,0.317,0.316 +2014-10-24 14:00:00,0.243,0.317,0.316 +2014-10-24 15:00:00,0.243,0.317,0.315 +2014-10-24 16:00:00,0.243,0.318,0.315 +2014-10-24 17:00:00,0.243,0.317,0.315 +2014-10-24 18:00:00,0.243,0.317,0.315 +2014-10-24 19:00:00,0.243,0.317,0.315 +2014-10-24 20:00:00,0.242,0.317,0.315 +2014-10-24 21:00:00,0.243,0.317,0.315 +2014-10-24 22:00:00,0.242,0.317,0.315 +2014-10-24 23:00:00,0.242,0.317,0.315 +2014-10-25 00:00:00,0.242,0.317,0.315 +2014-10-25 01:00:00,0.242,0.317,0.315 +2014-10-25 02:00:00,0.242,0.317,0.315 +2014-10-25 03:00:00,0.242,0.317,0.315 +2014-10-25 04:00:00,0.242,0.317,0.315 +2014-10-25 05:00:00,0.242,0.317,0.315 +2014-10-25 06:00:00,0.242,0.318,0.315 +2014-10-25 07:00:00,0.242,0.319,0.317 +2014-10-25 08:00:00,0.244,0.319,0.319 +2014-10-25 09:00:00,0.245,0.319,0.319 +2014-10-25 10:00:00,0.245,0.319,0.318 +2014-10-25 11:00:00,0.245,0.319,0.318 +2014-10-25 12:00:00,0.24600000000000002,0.319,0.318 +2014-10-25 13:00:00,0.24600000000000002,0.319,0.318 +2014-10-25 14:00:00,0.24600000000000002,0.318,0.317 +2014-10-25 15:00:00,0.24600000000000002,0.319,0.317 +2014-10-25 16:00:00,0.24600000000000002,0.319,0.317 +2014-10-25 17:00:00,0.24600000000000002,0.319,0.317 +2014-10-25 18:00:00,0.24600000000000002,0.319,0.317 +2014-10-25 19:00:00,0.24600000000000002,0.319,0.317 +2014-10-25 20:00:00,0.24600000000000002,0.319,0.317 +2014-10-25 21:00:00,0.245,0.319,0.317 +2014-10-25 22:00:00,0.245,0.319,0.317 +2014-10-25 23:00:00,0.245,0.319,0.317 +2014-10-26 00:00:00,0.245,0.318,0.317 +2014-10-26 01:00:00,0.245,0.318,0.317 +2014-10-26 02:00:00,0.245,0.317,0.317 +2014-10-26 03:00:00,0.245,0.317,0.317 +2014-10-26 04:00:00,0.245,0.317,0.317 +2014-10-26 05:00:00,0.245,0.317,0.317 +2014-10-26 06:00:00,0.245,0.317,0.316 +2014-10-26 07:00:00,0.245,0.317,0.316 +2014-10-26 08:00:00,0.245,0.317,0.316 +2014-10-26 09:00:00,0.244,0.317,0.316 +2014-10-26 10:00:00,0.244,0.317,0.316 +2014-10-26 11:00:00,0.244,0.317,0.316 +2014-10-26 12:00:00,0.244,0.318,0.316 +2014-10-26 13:00:00,0.244,0.318,0.316 +2014-10-26 14:00:00,0.244,0.317,0.316 +2014-10-26 15:00:00,0.244,0.317,0.315 +2014-10-26 16:00:00,0.244,0.317,0.315 +2014-10-26 17:00:00,0.244,0.317,0.315 +2014-10-26 18:00:00,0.244,0.317,0.315 +2014-10-26 19:00:00,0.244,0.317,0.315 +2014-10-26 20:00:00,0.244,0.317,0.315 +2014-10-26 21:00:00,0.244,0.317,0.315 +2014-10-26 22:00:00,0.244,0.317,0.315 +2014-10-26 23:00:00,0.243,0.317,0.315 +2014-10-27 00:00:00,0.243,0.317,0.315 +2014-10-27 01:00:00,0.243,0.326,0.315 +2014-10-27 02:00:00,0.243,0.33399999999999996,0.315 +2014-10-27 03:00:00,0.243,0.33399999999999996,0.315 +2014-10-27 04:00:00,0.243,0.33399999999999996,0.315 +2014-10-27 05:00:00,0.243,0.33399999999999996,0.315 +2014-10-27 06:00:00,0.243,0.33299999999999996,0.315 +2014-10-27 07:00:00,0.243,0.33299999999999996,0.315 +2014-10-27 08:00:00,0.243,0.33399999999999996,0.315 +2014-10-27 09:00:00,0.243,0.33399999999999996,0.315 +2014-10-27 10:00:00,0.243,0.332,0.315 +2014-10-27 11:00:00,0.243,0.318,0.315 +2014-10-27 12:00:00,0.243,0.317,0.315 +2014-10-27 13:00:00,0.243,0.317,0.314 +2014-10-27 14:00:00,0.243,0.317,0.314 +2014-10-27 15:00:00,0.243,0.317,0.314 +2014-10-27 16:00:00,0.243,0.317,0.314 +2014-10-27 17:00:00,0.243,0.317,0.314 +2014-10-27 18:00:00,0.243,0.317,0.314 +2014-10-27 19:00:00,0.242,0.317,0.314 +2014-10-27 20:00:00,0.242,0.317,0.314 +2014-10-27 21:00:00,0.242,0.317,0.314 +2014-10-27 22:00:00,0.242,0.317,0.314 +2014-10-27 23:00:00,0.242,0.317,0.314 +2014-10-28 00:00:00,0.242,0.317,0.314 +2014-10-28 01:00:00,0.242,0.317,0.314 +2014-10-28 02:00:00,0.242,0.317,0.314 +2014-10-28 03:00:00,0.242,0.317,0.313 +2014-10-28 04:00:00,0.242,0.317,0.313 +2014-10-28 05:00:00,0.242,0.317,0.313 +2014-10-28 06:00:00,0.242,0.317,0.313 +2014-10-28 07:00:00,0.242,0.317,0.313 +2014-10-28 08:00:00,0.242,0.316,0.313 +2014-10-28 09:00:00,0.242,0.316,0.313 +2014-10-28 10:00:00,0.242,0.316,0.313 +2014-10-28 11:00:00,0.242,0.316,0.313 +2014-10-28 12:00:00,0.242,0.316,0.313 +2014-10-28 13:00:00,0.242,0.316,0.313 +2014-10-28 14:00:00,0.242,0.316,0.313 +2014-10-28 15:00:00,0.242,0.316,0.313 +2014-10-28 16:00:00,0.24100000000000002,0.316,0.313 +2014-10-28 17:00:00,0.24100000000000002,0.316,0.313 +2014-10-28 18:00:00,0.24100000000000002,0.316,0.313 +2014-10-28 19:00:00,0.24100000000000002,0.317,0.313 +2014-10-28 20:00:00,0.24100000000000002,0.316,0.313 +2014-10-28 21:00:00,0.24100000000000002,0.316,0.313 +2014-10-28 22:00:00,0.24100000000000002,0.316,0.313 +2014-10-28 23:00:00,0.24100000000000002,0.316,0.313 +2014-10-29 00:00:00,0.24100000000000002,0.316,0.313 +2014-10-29 01:00:00,0.24100000000000002,0.315,0.313 +2014-10-29 02:00:00,0.24100000000000002,0.315,0.313 +2014-10-29 03:00:00,0.24100000000000002,0.314,0.313 +2014-10-29 04:00:00,0.24100000000000002,0.314,0.313 +2014-10-29 05:00:00,0.24100000000000002,0.314,0.313 +2014-10-29 06:00:00,0.24100000000000002,0.314,0.313 +2014-10-29 07:00:00,0.24100000000000002,0.314,0.313 +2014-10-29 08:00:00,0.24100000000000002,0.314,0.313 +2014-10-29 09:00:00,0.24100000000000002,0.314,0.313 +2014-10-29 10:00:00,0.24100000000000002,0.315,0.313 +2014-10-29 11:00:00,0.24100000000000002,0.315,0.313 +2014-10-29 12:00:00,0.24100000000000002,0.315,0.313 +2014-10-29 13:00:00,0.24100000000000002,0.316,0.313 +2014-10-29 14:00:00,0.24100000000000002,0.317,0.313 +2014-10-29 15:00:00,0.24100000000000002,0.317,0.312 +2014-10-29 16:00:00,0.24100000000000002,0.317,0.312 +2014-10-29 17:00:00,0.24100000000000002,0.319,0.312 +2014-10-29 18:00:00,0.24100000000000002,0.319,0.312 +2014-10-29 19:00:00,0.24100000000000002,0.32,0.313 +2014-10-29 20:00:00,0.24100000000000002,0.321,0.313 +2014-10-29 21:00:00,0.24100000000000002,0.321,0.313 +2014-10-29 22:00:00,0.24100000000000002,0.321,0.313 +2014-10-29 23:00:00,0.24100000000000002,0.321,0.313 +2014-10-30 00:00:00,0.24100000000000002,0.322,0.313 +2014-10-30 01:00:00,0.24100000000000002,0.322,0.313 +2014-10-30 02:00:00,0.24100000000000002,0.322,0.313 +2014-10-30 03:00:00,0.24100000000000002,0.322,0.313 +2014-10-30 04:00:00,0.24100000000000002,0.32299999999999995,0.313 +2014-10-30 05:00:00,0.24100000000000002,0.324,0.313 +2014-10-30 06:00:00,0.24100000000000002,0.324,0.313 +2014-10-30 07:00:00,0.24100000000000002,0.322,0.313 +2014-10-30 08:00:00,0.24100000000000002,0.326,0.313 +2014-10-30 09:00:00,0.24100000000000002,0.331,0.313 +2014-10-30 10:00:00,0.24100000000000002,0.336,0.313 +2014-10-30 11:00:00,0.24100000000000002,0.33899999999999997,0.313 +2014-10-30 12:00:00,0.24100000000000002,0.341,0.313 +2014-10-30 13:00:00,0.24100000000000002,0.341,0.313 +2014-10-30 14:00:00,0.24100000000000002,0.341,0.313 +2014-10-30 15:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-30 16:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-30 17:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-30 18:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-30 19:00:00,0.24100000000000002,0.344,0.313 +2014-10-30 20:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-30 21:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-30 22:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-30 23:00:00,0.24100000000000002,0.34299999999999997,0.313 +2014-10-31 00:00:00,0.24100000000000002,0.342,0.313 +2014-10-31 01:00:00,0.24100000000000002,0.341,0.313 +2014-10-31 02:00:00,0.24100000000000002,0.341,0.313 +2014-10-31 03:00:00,0.24100000000000002,0.341,0.313 +2014-10-31 04:00:00,0.24100000000000002,0.341,0.313 +2014-10-31 05:00:00,0.24100000000000002,0.341,0.313 +2014-10-31 06:00:00,0.24100000000000002,0.34,0.313 +2014-10-31 07:00:00,0.24100000000000002,0.33899999999999997,0.313 +2014-10-31 08:00:00,0.24100000000000002,0.33899999999999997,0.313 +2014-10-31 09:00:00,0.24100000000000002,0.33899999999999997,0.313 +2014-10-31 10:00:00,0.24100000000000002,0.33799999999999997,0.313 +2014-10-31 11:00:00,0.24100000000000002,0.33799999999999997,0.313 +2014-10-31 12:00:00,0.24100000000000002,0.33799999999999997,0.313 +2014-10-31 13:00:00,0.24100000000000002,0.33799999999999997,0.313 +2014-10-31 14:00:00,0.24100000000000002,0.337,0.312 +2014-10-31 15:00:00,0.24100000000000002,0.336,0.312 +2014-10-31 16:00:00,0.24100000000000002,0.336,0.312 +2014-10-31 17:00:00,0.24100000000000002,0.336,0.312 +2014-10-31 18:00:00,0.24100000000000002,0.33399999999999996,0.312 +2014-10-31 19:00:00,0.24100000000000002,0.33399999999999996,0.312 +2014-10-31 20:00:00,0.24100000000000002,0.33399999999999996,0.312 +2014-10-31 21:00:00,0.24100000000000002,0.33399999999999996,0.312 +2014-10-31 22:00:00,0.24100000000000002,0.33399999999999996,0.312 +2014-10-31 23:00:00,0.24100000000000002,0.33399999999999996,0.312 +2014-11-01 00:00:00,0.24,0.33399999999999996,0.312 +2014-11-01 01:00:00,0.24,0.33399999999999996,0.312 +2014-11-01 02:00:00,0.24,0.33399999999999996,0.312 +2014-11-01 03:00:00,0.24,0.33399999999999996,0.312 +2014-11-01 04:00:00,0.24,0.33299999999999996,0.312 +2014-11-01 05:00:00,0.24,0.332,0.312 +2014-11-01 06:00:00,0.24,0.332,0.312 +2014-11-01 07:00:00,0.24,0.332,0.312 +2014-11-01 08:00:00,0.24,0.332,0.312 +2014-11-01 09:00:00,0.24,0.332,0.312 +2014-11-01 10:00:00,0.24,0.331,0.312 +2014-11-01 11:00:00,0.24,0.331,0.312 +2014-11-01 12:00:00,0.24,0.33,0.312 +2014-11-01 13:00:00,0.24,0.32899999999999996,0.312 +2014-11-01 14:00:00,0.24,0.32899999999999996,0.312 +2014-11-01 15:00:00,0.24,0.32899999999999996,0.311 +2014-11-01 16:00:00,0.24,0.32899999999999996,0.311 +2014-11-01 17:00:00,0.24,0.32899999999999996,0.311 +2014-11-01 18:00:00,0.24,0.32899999999999996,0.311 +2014-11-01 19:00:00,0.24,0.32899999999999996,0.311 +2014-11-01 20:00:00,0.24,0.32799999999999996,0.311 +2014-11-01 21:00:00,0.24,0.327,0.311 +2014-11-01 22:00:00,0.24,0.32799999999999996,0.311 +2014-11-01 23:00:00,0.24,0.327,0.311 +2014-11-02 00:00:00,0.24,0.327,0.311 +2014-11-02 01:00:00,0.24,0.327,0.312 +2014-11-02 02:00:00,0.24,0.327,0.312 +2014-11-02 03:00:00,0.24,0.327,0.312 +2014-11-02 04:00:00,0.24,0.327,0.312 +2014-11-02 05:00:00,0.24,0.327,0.312 +2014-11-02 06:00:00,0.24,0.327,0.312 +2014-11-02 07:00:00,0.24,0.327,0.312 +2014-11-02 08:00:00,0.24,0.327,0.312 +2014-11-02 09:00:00,0.24,0.327,0.312 +2014-11-02 10:00:00,0.24,0.327,0.312 +2014-11-02 11:00:00,0.24,0.327,0.312 +2014-11-02 12:00:00,0.24,0.327,0.312 +2014-11-02 13:00:00,0.24,0.327,0.312 +2014-11-02 14:00:00,0.24,0.327,0.311 +2014-11-02 15:00:00,0.24,0.327,0.311 +2014-11-02 16:00:00,0.24,0.327,0.311 +2014-11-02 17:00:00,0.24,0.327,0.311 +2014-11-02 18:00:00,0.24,0.327,0.311 +2014-11-02 19:00:00,0.24,0.327,0.311 +2014-11-02 20:00:00,0.24,0.327,0.311 +2014-11-02 21:00:00,0.24,0.327,0.311 +2014-11-02 22:00:00,0.24,0.327,0.311 +2014-11-02 23:00:00,0.24,0.327,0.311 +2014-11-03 00:00:00,0.24,0.327,0.311 +2014-11-03 01:00:00,0.24,0.327,0.311 +2014-11-03 02:00:00,0.24,0.327,0.311 +2014-11-03 03:00:00,0.24,0.327,0.311 +2014-11-03 04:00:00,0.24,0.327,0.311 +2014-11-03 05:00:00,0.24,0.326,0.312 +2014-11-03 06:00:00,0.24,0.326,0.312 +2014-11-03 07:00:00,0.24,0.326,0.311 +2014-11-03 08:00:00,0.24,0.326,0.311 +2014-11-03 09:00:00,0.24,0.326,0.311 +2014-11-03 10:00:00,0.24,0.326,0.311 +2014-11-03 11:00:00,0.24,0.326,0.311 +2014-11-03 12:00:00,0.24,0.326,0.312 +2014-11-03 13:00:00,0.24,0.326,0.312 +2014-11-03 14:00:00,0.24,0.325,0.312 +2014-11-03 15:00:00,0.24,0.325,0.311 +2014-11-03 16:00:00,0.24,0.325,0.313 +2014-11-03 17:00:00,0.23800000000000002,0.325,0.315 +2014-11-03 18:00:00,0.239,0.325,0.315 +2014-11-03 19:00:00,0.239,0.325,0.315 +2014-11-03 20:00:00,0.239,0.325,0.315 +2014-11-03 21:00:00,0.239,0.326,0.315 +2014-11-03 22:00:00,0.239,0.326,0.315 +2014-11-03 23:00:00,0.237,0.326,0.316 +2014-11-04 00:00:00,0.237,0.326,0.316 +2014-11-04 01:00:00,0.23800000000000002,0.326,0.316 +2014-11-04 02:00:00,0.239,0.326,0.316 +2014-11-04 03:00:00,0.24,0.325,0.316 +2014-11-04 04:00:00,0.24100000000000002,0.325,0.316 +2014-11-04 05:00:00,0.24100000000000002,0.325,0.317 +2014-11-04 06:00:00,0.242,0.324,0.316 +2014-11-04 07:00:00,0.242,0.324,0.316 +2014-11-04 08:00:00,0.242,0.324,0.316 +2014-11-04 09:00:00,0.243,0.324,0.316 +2014-11-04 10:00:00,0.243,0.324,0.316 +2014-11-04 11:00:00,0.244,0.324,0.316 +2014-11-04 12:00:00,0.245,0.324,0.315 +2014-11-04 13:00:00,0.245,0.324,0.315 +2014-11-04 14:00:00,0.24600000000000002,0.324,0.315 +2014-11-04 15:00:00,0.24600000000000002,0.324,0.315 +2014-11-04 16:00:00,0.24600000000000002,0.324,0.315 +2014-11-04 17:00:00,0.24600000000000002,0.324,0.314 +2014-11-04 18:00:00,0.24600000000000002,0.325,0.314 +2014-11-04 19:00:00,0.24600000000000002,0.325,0.314 +2014-11-04 20:00:00,0.24600000000000002,0.326,0.314 +2014-11-04 21:00:00,0.24600000000000002,0.326,0.314 +2014-11-04 22:00:00,0.24600000000000002,0.326,0.314 +2014-11-04 23:00:00,0.245,0.326,0.315 +2014-11-05 00:00:00,0.245,0.326,0.315 +2014-11-05 01:00:00,0.245,0.326,0.316 +2014-11-05 02:00:00,0.245,0.326,0.316 +2014-11-05 03:00:00,0.24600000000000002,0.326,0.316 +2014-11-05 04:00:00,0.247,0.326,0.316 +2014-11-05 05:00:00,0.249,0.326,0.316 +2014-11-05 06:00:00,0.25,0.325,0.316 +2014-11-05 07:00:00,0.25,0.324,0.316 +2014-11-05 08:00:00,0.25,0.324,0.316 +2014-11-05 09:00:00,0.249,0.324,0.316 +2014-11-05 10:00:00,0.249,0.324,0.316 +2014-11-05 11:00:00,0.249,0.324,0.316 +2014-11-05 12:00:00,0.249,0.324,0.316 +2014-11-05 13:00:00,0.249,0.324,0.316 +2014-11-05 14:00:00,0.249,0.324,0.316 +2014-11-05 15:00:00,0.249,0.324,0.316 +2014-11-05 16:00:00,0.249,0.324,0.315 +2014-11-05 17:00:00,0.249,0.324,0.315 +2014-11-05 18:00:00,0.249,0.324,0.315 +2014-11-05 19:00:00,0.249,0.324,0.315 +2014-11-05 20:00:00,0.249,0.324,0.315 +2014-11-05 21:00:00,0.248,0.324,0.315 +2014-11-05 22:00:00,0.248,0.324,0.315 +2014-11-05 23:00:00,0.248,0.324,0.315 +2014-11-06 00:00:00,0.248,0.324,0.315 +2014-11-06 01:00:00,0.248,0.324,0.315 +2014-11-06 02:00:00,0.248,0.324,0.315 +2014-11-06 03:00:00,0.248,0.32299999999999995,0.315 +2014-11-06 04:00:00,0.247,0.32299999999999995,0.315 +2014-11-06 05:00:00,0.247,0.32299999999999995,0.315 +2014-11-06 06:00:00,0.247,0.32299999999999995,0.315 +2014-11-06 07:00:00,0.247,0.32299999999999995,0.315 +2014-11-06 08:00:00,0.247,0.322,0.315 +2014-11-06 09:00:00,0.24600000000000002,0.322,0.315 +2014-11-06 10:00:00,0.24600000000000002,0.322,0.315 +2014-11-06 11:00:00,0.24600000000000002,0.322,0.315 +2014-11-06 12:00:00,0.24600000000000002,0.322,0.315 +2014-11-06 13:00:00,0.24600000000000002,0.322,0.315 +2014-11-06 14:00:00,0.24600000000000002,0.32299999999999995,0.315 +2014-11-06 15:00:00,0.24600000000000002,0.32299999999999995,0.315 +2014-11-06 16:00:00,0.24600000000000002,0.32299999999999995,0.314 +2014-11-06 17:00:00,0.24600000000000002,0.32299999999999995,0.314 +2014-11-06 18:00:00,0.24600000000000002,0.32299999999999995,0.314 +2014-11-06 19:00:00,0.24600000000000002,0.32299999999999995,0.314 +2014-11-06 20:00:00,0.24600000000000002,0.32299999999999995,0.314 +2014-11-06 21:00:00,0.24600000000000002,0.32299999999999995,0.314 +2014-11-06 22:00:00,0.245,0.32299999999999995,0.314 +2014-11-06 23:00:00,0.245,0.322,0.314 +2014-11-07 00:00:00,0.245,0.322,0.313 +2014-11-07 01:00:00,0.245,0.322,0.313 +2014-11-07 02:00:00,0.245,0.322,0.313 +2014-11-07 03:00:00,0.245,0.322,0.313 +2014-11-07 04:00:00,0.244,0.322,0.313 +2014-11-07 05:00:00,0.245,0.322,0.313 +2014-11-07 06:00:00,0.244,0.322,0.313 +2014-11-07 07:00:00,0.244,0.322,0.313 +2014-11-07 08:00:00,0.244,0.322,0.314 +2014-11-07 09:00:00,0.244,0.321,0.314 +2014-11-07 10:00:00,0.244,0.321,0.314 +2014-11-07 11:00:00,0.244,0.321,0.314 +2014-11-07 12:00:00,0.244,0.321,0.314 +2014-11-07 13:00:00,0.244,0.321,0.314 +2014-11-07 14:00:00,0.244,0.321,0.314 +2014-11-07 15:00:00,0.244,0.321,0.314 +2014-11-07 16:00:00,0.244,0.321,0.314 +2014-11-07 17:00:00,0.244,0.321,0.314 +2014-11-07 18:00:00,0.243,0.322,0.314 +2014-11-07 19:00:00,0.243,0.322,0.314 +2014-11-07 20:00:00,0.243,0.322,0.314 +2014-11-07 21:00:00,0.243,0.322,0.314 +2014-11-07 22:00:00,0.243,0.322,0.314 +2014-11-07 23:00:00,0.244,0.322,0.314 +2014-11-08 00:00:00,0.243,0.322,0.314 +2014-11-08 01:00:00,0.243,0.322,0.314 +2014-11-08 02:00:00,0.243,0.322,0.314 +2014-11-08 03:00:00,0.243,0.322,0.314 +2014-11-08 04:00:00,0.243,0.322,0.314 +2014-11-08 05:00:00,0.243,0.322,0.314 +2014-11-08 06:00:00,0.243,0.322,0.314 +2014-11-08 07:00:00,0.243,0.322,0.314 +2014-11-08 08:00:00,0.243,0.322,0.314 +2014-11-08 09:00:00,0.243,0.32299999999999995,0.313 +2014-11-08 10:00:00,0.243,0.322,0.314 +2014-11-08 11:00:00,0.243,0.32299999999999995,0.313 +2014-11-08 12:00:00,0.243,0.322,0.313 +2014-11-08 13:00:00,0.243,0.322,0.313 +2014-11-08 14:00:00,0.244,0.322,0.313 +2014-11-08 15:00:00,0.244,0.322,0.313 +2014-11-08 16:00:00,0.243,0.322,0.313 +2014-11-08 17:00:00,0.244,0.32299999999999995,0.313 +2014-11-08 18:00:00,0.243,0.32299999999999995,0.312 +2014-11-08 19:00:00,0.243,0.32299999999999995,0.312 +2014-11-08 20:00:00,0.244,0.322,0.312 +2014-11-08 21:00:00,0.243,0.322,0.312 +2014-11-08 22:00:00,0.243,0.322,0.312 +2014-11-08 23:00:00,0.243,0.322,0.312 +2014-11-09 00:00:00,0.243,0.322,0.312 +2014-11-09 01:00:00,0.243,0.322,0.312 +2014-11-09 02:00:00,0.243,0.322,0.312 +2014-11-09 03:00:00,0.243,0.322,0.312 +2014-11-09 04:00:00,0.243,0.322,0.312 +2014-11-09 05:00:00,0.243,0.322,0.312 +2014-11-09 06:00:00,0.243,0.322,0.312 +2014-11-09 07:00:00,0.243,0.322,0.312 +2014-11-09 08:00:00,0.242,0.322,0.312 +2014-11-09 09:00:00,0.242,0.322,0.312 +2014-11-09 10:00:00,0.242,0.322,0.312 +2014-11-09 11:00:00,0.242,0.322,0.312 +2014-11-09 12:00:00,0.242,0.322,0.312 +2014-11-09 13:00:00,0.242,0.322,0.312 +2014-11-09 14:00:00,0.242,0.322,0.312 +2014-11-09 15:00:00,0.242,0.322,0.312 +2014-11-09 16:00:00,0.242,0.322,0.312 +2014-11-09 17:00:00,0.242,0.322,0.312 +2014-11-09 18:00:00,0.242,0.322,0.311 +2014-11-09 19:00:00,0.242,0.322,0.311 +2014-11-09 20:00:00,0.242,0.322,0.311 +2014-11-09 21:00:00,0.242,0.322,0.311 +2014-11-09 22:00:00,0.242,0.322,0.312 +2014-11-09 23:00:00,0.242,0.321,0.312 +2014-11-10 00:00:00,0.242,0.321,0.312 +2014-11-10 01:00:00,0.242,0.321,0.312 +2014-11-10 02:00:00,0.242,0.321,0.312 +2014-11-10 03:00:00,0.242,0.32299999999999995,0.312 +2014-11-10 04:00:00,0.242,0.354,0.312 +2014-11-10 05:00:00,0.242,0.363,0.312 +2014-11-10 06:00:00,0.242,0.365,0.312 +2014-11-10 07:00:00,0.242,0.364,0.312 +2014-11-10 08:00:00,0.242,0.36200000000000004,0.312 +2014-11-10 09:00:00,0.242,0.361,0.312 +2014-11-10 10:00:00,0.242,0.358,0.312 +2014-11-10 11:00:00,0.242,0.358,0.312 +2014-11-10 12:00:00,0.242,0.355,0.312 +2014-11-10 13:00:00,0.242,0.354,0.312 +2014-11-10 14:00:00,0.242,0.353,0.312 +2014-11-10 15:00:00,0.242,0.35200000000000004,0.312 +2014-11-10 16:00:00,0.242,0.35100000000000003,0.312 +2014-11-10 17:00:00,0.242,0.35100000000000003,0.312 +2014-11-10 18:00:00,0.242,0.35100000000000003,0.311 +2014-11-10 19:00:00,0.242,0.35100000000000003,0.311 +2014-11-10 20:00:00,0.242,0.35,0.311 +2014-11-10 21:00:00,0.242,0.349,0.311 +2014-11-10 22:00:00,0.242,0.349,0.311 +2014-11-10 23:00:00,0.242,0.349,0.311 +2014-11-11 00:00:00,0.242,0.34700000000000003,0.311 +2014-11-11 01:00:00,0.242,0.34600000000000003,0.311 +2014-11-11 02:00:00,0.242,0.345,0.312 +2014-11-11 03:00:00,0.242,0.344,0.312 +2014-11-11 04:00:00,0.242,0.344,0.312 +2014-11-11 05:00:00,0.242,0.344,0.312 +2014-11-11 06:00:00,0.242,0.34299999999999997,0.312 +2014-11-11 07:00:00,0.242,0.34299999999999997,0.312 +2014-11-11 08:00:00,0.242,0.34299999999999997,0.311 +2014-11-11 09:00:00,0.242,0.342,0.311 +2014-11-11 10:00:00,0.242,0.341,0.311 +2014-11-11 11:00:00,0.242,0.34,0.311 +2014-11-11 12:00:00,0.242,0.33899999999999997,0.311 +2014-11-11 13:00:00,0.242,0.34,0.311 +2014-11-11 14:00:00,0.242,0.341,0.311 +2014-11-11 15:00:00,0.242,0.342,0.311 +2014-11-11 16:00:00,0.242,0.34299999999999997,0.311 +2014-11-11 17:00:00,0.242,0.344,0.311 +2014-11-11 18:00:00,0.242,0.344,0.311 +2014-11-11 19:00:00,0.242,0.344,0.311 +2014-11-11 20:00:00,0.242,0.344,0.311 +2014-11-11 21:00:00,0.242,0.344,0.311 +2014-11-11 22:00:00,0.24100000000000002,0.344,0.311 +2014-11-11 23:00:00,0.24100000000000002,0.344,0.311 +2014-11-12 00:00:00,0.24100000000000002,0.34299999999999997,0.311 +2014-11-12 01:00:00,0.24100000000000002,0.34299999999999997,0.311 +2014-11-12 02:00:00,0.242,0.34299999999999997,0.311 +2014-11-12 03:00:00,0.242,0.34299999999999997,0.311 +2014-11-12 04:00:00,0.242,0.34600000000000003,0.311 +2014-11-12 05:00:00,0.242,0.34600000000000003,0.311 +2014-11-12 06:00:00,0.24100000000000002,0.345,0.311 +2014-11-12 07:00:00,0.242,0.34600000000000003,0.311 +2014-11-12 08:00:00,0.24100000000000002,0.345,0.311 +2014-11-12 09:00:00,0.242,0.344,0.311 +2014-11-12 10:00:00,0.24100000000000002,0.344,0.311 +2014-11-12 11:00:00,0.242,0.344,0.311 +2014-11-12 12:00:00,0.24100000000000002,0.344,0.311 +2014-11-12 13:00:00,0.24100000000000002,0.344,0.311 +2014-11-12 14:00:00,0.242,0.34299999999999997,0.311 +2014-11-12 15:00:00,0.24100000000000002,0.341,0.311 +2014-11-12 16:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-12 17:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-12 18:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-12 19:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-12 20:00:00,0.24100000000000002,0.337,0.311 +2014-11-12 21:00:00,0.24100000000000002,0.342,0.311 +2014-11-12 22:00:00,0.242,0.35200000000000004,0.311 +2014-11-12 23:00:00,0.242,0.361,0.311 +2014-11-13 00:00:00,0.24100000000000002,0.36,0.312 +2014-11-13 01:00:00,0.24100000000000002,0.359,0.312 +2014-11-13 02:00:00,0.24100000000000002,0.35700000000000004,0.313 +2014-11-13 03:00:00,0.242,0.354,0.313 +2014-11-13 04:00:00,0.242,0.353,0.313 +2014-11-13 05:00:00,0.24100000000000002,0.354,0.313 +2014-11-13 06:00:00,0.242,0.353,0.313 +2014-11-13 07:00:00,0.242,0.35200000000000004,0.313 +2014-11-13 08:00:00,0.242,0.35100000000000003,0.313 +2014-11-13 09:00:00,0.242,0.349,0.313 +2014-11-13 10:00:00,0.242,0.348,0.313 +2014-11-13 11:00:00,0.242,0.348,0.313 +2014-11-13 12:00:00,0.242,0.34700000000000003,0.312 +2014-11-13 13:00:00,0.242,0.34600000000000003,0.312 +2014-11-13 14:00:00,0.242,0.34600000000000003,0.312 +2014-11-13 15:00:00,0.242,0.34600000000000003,0.312 +2014-11-13 16:00:00,0.242,0.34600000000000003,0.312 +2014-11-13 17:00:00,0.242,0.34600000000000003,0.312 +2014-11-13 18:00:00,0.242,0.345,0.312 +2014-11-13 19:00:00,0.242,0.344,0.312 +2014-11-13 20:00:00,0.242,0.344,0.312 +2014-11-13 21:00:00,0.242,0.344,0.312 +2014-11-13 22:00:00,0.242,0.34299999999999997,0.312 +2014-11-13 23:00:00,0.242,0.34299999999999997,0.312 +2014-11-14 00:00:00,0.242,0.34299999999999997,0.312 +2014-11-14 01:00:00,0.242,0.34299999999999997,0.312 +2014-11-14 02:00:00,0.242,0.341,0.311 +2014-11-14 03:00:00,0.242,0.341,0.312 +2014-11-14 04:00:00,0.242,0.341,0.311 +2014-11-14 05:00:00,0.24100000000000002,0.341,0.311 +2014-11-14 06:00:00,0.24100000000000002,0.34,0.311 +2014-11-14 07:00:00,0.24100000000000002,0.33899999999999997,0.311 +2014-11-14 08:00:00,0.24100000000000002,0.33899999999999997,0.311 +2014-11-14 09:00:00,0.24100000000000002,0.33899999999999997,0.311 +2014-11-14 10:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 11:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 12:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 13:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 14:00:00,0.24100000000000002,0.337,0.311 +2014-11-14 15:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 16:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 17:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 18:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 19:00:00,0.24100000000000002,0.33799999999999997,0.311 +2014-11-14 20:00:00,0.24100000000000002,0.337,0.311 +2014-11-14 21:00:00,0.24100000000000002,0.336,0.311 +2014-11-14 22:00:00,0.24100000000000002,0.336,0.311 +2014-11-14 23:00:00,0.24100000000000002,0.336,0.311 +2014-11-15 00:00:00,0.24100000000000002,0.336,0.311 +2014-11-15 01:00:00,0.24100000000000002,0.336,0.311 +2014-11-15 02:00:00,0.24100000000000002,0.335,0.311 +2014-11-15 03:00:00,0.24100000000000002,0.335,0.311 +2014-11-15 04:00:00,0.24100000000000002,0.335,0.311 +2014-11-15 05:00:00,0.24100000000000002,0.33399999999999996,0.311 +2014-11-15 06:00:00,0.24100000000000002,0.33399999999999996,0.311 +2014-11-15 07:00:00,0.24100000000000002,0.33399999999999996,0.311 +2014-11-15 08:00:00,0.24100000000000002,0.33399999999999996,0.311 +2014-11-15 09:00:00,0.24100000000000002,0.33399999999999996,0.311 +2014-11-15 10:00:00,0.24100000000000002,0.33299999999999996,0.311 +2014-11-15 11:00:00,0.24100000000000002,0.33299999999999996,0.311 +2014-11-15 12:00:00,0.24100000000000002,0.332,0.311 +2014-11-15 13:00:00,0.24100000000000002,0.332,0.311 +2014-11-15 14:00:00,0.24100000000000002,0.332,0.311 +2014-11-15 15:00:00,0.24100000000000002,0.332,0.31 +2014-11-15 16:00:00,0.24100000000000002,0.331,0.31 +2014-11-15 17:00:00,0.24100000000000002,0.331,0.31 +2014-11-15 18:00:00,0.24100000000000002,0.331,0.31 +2014-11-15 19:00:00,0.24100000000000002,0.331,0.31 +2014-11-15 20:00:00,0.24100000000000002,0.331,0.31 +2014-11-15 21:00:00,0.24100000000000002,0.331,0.311 +2014-11-15 22:00:00,0.24100000000000002,0.331,0.311 +2014-11-15 23:00:00,0.256,0.331,0.313 +2014-11-16 00:00:00,0.261,0.331,0.313 +2014-11-16 01:00:00,0.261,0.331,0.316 +2014-11-16 02:00:00,0.26,0.331,0.345 +2014-11-16 03:00:00,0.261,0.331,0.35600000000000004 +2014-11-16 04:00:00,0.261,0.33,0.358 +2014-11-16 05:00:00,0.261,0.33,0.35700000000000004 +2014-11-16 06:00:00,0.26,0.32899999999999996,0.35600000000000004 +2014-11-16 07:00:00,0.258,0.32899999999999996,0.35200000000000004 +2014-11-16 08:00:00,0.26,0.32899999999999996,0.358 +2014-11-16 09:00:00,0.258,0.32899999999999996,0.405 +2014-11-16 10:00:00,0.257,0.32899999999999996,0.406 +2014-11-16 11:00:00,0.255,0.32899999999999996,0.41 +2014-11-16 12:00:00,0.254,0.32899999999999996,0.413 +2014-11-16 13:00:00,0.253,0.327,0.413 +2014-11-16 14:00:00,0.252,0.327,0.413 +2014-11-16 15:00:00,0.252,0.327,0.413 +2014-11-16 16:00:00,0.251,0.327,0.413 +2014-11-16 17:00:00,0.251,0.327,0.413 +2014-11-16 18:00:00,0.25,0.327,0.413 +2014-11-16 19:00:00,0.25,0.327,0.413 +2014-11-16 20:00:00,0.249,0.327,0.413 +2014-11-16 21:00:00,0.248,0.327,0.413 +2014-11-16 22:00:00,0.248,0.327,0.413 +2014-11-16 23:00:00,0.248,0.327,0.413 +2014-11-17 00:00:00,0.247,0.327,0.413 +2014-11-17 01:00:00,0.247,0.327,0.413 +2014-11-17 02:00:00,0.247,0.327,0.413 +2014-11-17 03:00:00,0.24600000000000002,0.327,0.413 +2014-11-17 04:00:00,0.24600000000000002,0.326,0.414 +2014-11-17 05:00:00,0.24600000000000002,0.326,0.414 +2014-11-17 06:00:00,0.24600000000000002,0.326,0.413 +2014-11-17 07:00:00,0.24600000000000002,0.326,0.413 +2014-11-17 08:00:00,0.245,0.326,0.41200000000000003 +2014-11-17 09:00:00,0.245,0.326,0.41100000000000003 +2014-11-17 10:00:00,0.24600000000000002,0.326,0.41100000000000003 +2014-11-17 11:00:00,0.24600000000000002,0.326,0.409 +2014-11-17 12:00:00,0.24600000000000002,0.326,0.408 +2014-11-17 13:00:00,0.247,0.326,0.401 +2014-11-17 14:00:00,0.248,0.326,0.39799999999999996 +2014-11-17 15:00:00,0.248,0.326,0.397 +2014-11-17 16:00:00,0.248,0.326,0.396 +2014-11-17 17:00:00,0.248,0.326,0.395 +2014-11-17 18:00:00,0.248,0.326,0.39399999999999996 +2014-11-17 19:00:00,0.248,0.326,0.39399999999999996 +2014-11-17 20:00:00,0.247,0.326,0.39299999999999996 +2014-11-17 21:00:00,0.247,0.326,0.39299999999999996 +2014-11-17 22:00:00,0.247,0.326,0.39299999999999996 +2014-11-17 23:00:00,0.247,0.326,0.39 +2014-11-18 00:00:00,0.247,0.326,0.342 +2014-11-18 01:00:00,0.24600000000000002,0.326,0.341 +2014-11-18 02:00:00,0.24600000000000002,0.326,0.34 +2014-11-18 03:00:00,0.24600000000000002,0.326,0.34 +2014-11-18 04:00:00,0.24600000000000002,0.326,0.33899999999999997 +2014-11-18 05:00:00,0.24600000000000002,0.326,0.33899999999999997 +2014-11-18 06:00:00,0.24600000000000002,0.326,0.33799999999999997 +2014-11-18 07:00:00,0.24600000000000002,0.326,0.33799999999999997 +2014-11-18 08:00:00,0.24600000000000002,0.326,0.33799999999999997 +2014-11-18 09:00:00,0.24600000000000002,0.326,0.33799999999999997 +2014-11-18 10:00:00,0.24600000000000002,0.326,0.337 +2014-11-18 11:00:00,0.245,0.326,0.337 +2014-11-18 12:00:00,0.245,0.326,0.336 +2014-11-18 13:00:00,0.245,0.326,0.336 +2014-11-18 14:00:00,0.245,0.324,0.335 +2014-11-18 15:00:00,0.245,0.324,0.335 +2014-11-18 16:00:00,0.245,0.326,0.335 +2014-11-18 17:00:00,0.247,0.326,0.336 +2014-11-18 18:00:00,0.256,0.326,0.336 +2014-11-18 19:00:00,0.258,0.326,0.34299999999999997 +2014-11-18 20:00:00,0.259,0.326,0.354 +2014-11-18 21:00:00,0.259,0.326,0.355 +2014-11-18 22:00:00,0.257,0.326,0.35600000000000004 +2014-11-18 23:00:00,0.255,0.327,0.363 +2014-11-19 00:00:00,0.254,0.326,0.36700000000000005 +2014-11-19 01:00:00,0.254,0.326,0.366 +2014-11-19 02:00:00,0.254,0.326,0.366 +2014-11-19 03:00:00,0.252,0.32799999999999996,0.366 +2014-11-19 04:00:00,0.251,0.327,0.366 +2014-11-19 05:00:00,0.25,0.327,0.366 +2014-11-19 06:00:00,0.249,0.326,0.36700000000000005 +2014-11-19 07:00:00,0.249,0.327,0.36700000000000005 +2014-11-19 08:00:00,0.248,0.326,0.36700000000000005 +2014-11-19 09:00:00,0.248,0.326,0.36700000000000005 +2014-11-19 10:00:00,0.247,0.326,0.36700000000000005 +2014-11-19 11:00:00,0.247,0.326,0.368 +2014-11-19 12:00:00,0.24600000000000002,0.326,0.368 +2014-11-19 13:00:00,0.24600000000000002,0.326,0.368 +2014-11-19 14:00:00,0.24600000000000002,0.326,0.368 +2014-11-19 15:00:00,0.24600000000000002,0.325,0.369 +2014-11-19 16:00:00,0.24600000000000002,0.325,0.369 +2014-11-19 17:00:00,0.24600000000000002,0.325,0.369 +2014-11-19 18:00:00,0.24600000000000002,0.324,0.369 +2014-11-19 19:00:00,0.24600000000000002,0.324,0.369 +2014-11-19 20:00:00,0.24600000000000002,0.325,0.369 +2014-11-19 21:00:00,0.24600000000000002,0.326,0.366 +2014-11-19 22:00:00,0.245,0.326,0.36200000000000004 +2014-11-19 23:00:00,0.245,0.326,0.36 +2014-11-20 00:00:00,0.245,0.326,0.36 +2014-11-20 01:00:00,0.245,0.326,0.359 +2014-11-20 02:00:00,0.245,0.326,0.358 +2014-11-20 03:00:00,0.245,0.326,0.358 +2014-11-20 04:00:00,0.244,0.326,0.35700000000000004 +2014-11-20 05:00:00,0.244,0.326,0.35700000000000004 +2014-11-20 06:00:00,0.244,0.326,0.35700000000000004 +2014-11-20 07:00:00,0.244,0.326,0.355 +2014-11-20 08:00:00,0.244,0.326,0.344 +2014-11-20 09:00:00,0.244,0.326,0.34299999999999997 +2014-11-20 10:00:00,0.244,0.326,0.34299999999999997 +2014-11-20 11:00:00,0.244,0.326,0.342 +2014-11-20 12:00:00,0.244,0.326,0.342 +2014-11-20 13:00:00,0.245,0.324,0.341 +2014-11-20 14:00:00,0.24600000000000002,0.324,0.341 +2014-11-20 15:00:00,0.24600000000000002,0.324,0.34 +2014-11-20 16:00:00,0.24600000000000002,0.324,0.34 +2014-11-20 17:00:00,0.24600000000000002,0.324,0.34 +2014-11-20 18:00:00,0.24600000000000002,0.324,0.33899999999999997 +2014-11-20 19:00:00,0.24600000000000002,0.324,0.33799999999999997 +2014-11-20 20:00:00,0.24600000000000002,0.324,0.33799999999999997 +2014-11-20 21:00:00,0.24600000000000002,0.324,0.33799999999999997 +2014-11-20 22:00:00,0.24600000000000002,0.324,0.337 +2014-11-20 23:00:00,0.24600000000000002,0.324,0.337 +2014-11-21 00:00:00,0.24600000000000002,0.324,0.337 +2014-11-21 01:00:00,0.24600000000000002,0.324,0.336 +2014-11-21 02:00:00,0.24600000000000002,0.325,0.336 +2014-11-21 03:00:00,0.245,0.325,0.336 +2014-11-21 04:00:00,0.245,0.326,0.336 +2014-11-21 05:00:00,0.24600000000000002,0.326,0.336 +2014-11-21 06:00:00,0.245,0.326,0.335 +2014-11-21 07:00:00,0.245,0.326,0.335 +2014-11-21 08:00:00,0.245,0.326,0.335 +2014-11-21 09:00:00,0.245,0.326,0.335 +2014-11-21 10:00:00,0.245,0.326,0.33399999999999996 +2014-11-21 11:00:00,0.245,0.326,0.33399999999999996 +2014-11-21 12:00:00,0.245,0.326,0.33399999999999996 +2014-11-21 13:00:00,0.245,0.326,0.33399999999999996 +2014-11-21 14:00:00,0.245,0.326,0.33399999999999996 +2014-11-21 15:00:00,0.245,0.326,0.33299999999999996 +2014-11-21 16:00:00,0.245,0.326,0.33299999999999996 +2014-11-21 17:00:00,0.245,0.326,0.332 +2014-11-21 18:00:00,0.245,0.326,0.332 +2014-11-21 19:00:00,0.245,0.326,0.332 +2014-11-21 20:00:00,0.245,0.326,0.332 +2014-11-21 21:00:00,0.244,0.326,0.332 +2014-11-21 22:00:00,0.245,0.326,0.332 +2014-11-21 23:00:00,0.245,0.326,0.332 +2014-11-22 00:00:00,0.244,0.326,0.332 +2014-11-22 01:00:00,0.244,0.326,0.331 +2014-11-22 02:00:00,0.244,0.326,0.331 +2014-11-22 03:00:00,0.244,0.326,0.331 +2014-11-22 04:00:00,0.244,0.326,0.331 +2014-11-22 05:00:00,0.244,0.326,0.331 +2014-11-22 06:00:00,0.244,0.326,0.331 +2014-11-22 07:00:00,0.244,0.326,0.331 +2014-11-22 08:00:00,0.244,0.326,0.331 +2014-11-22 09:00:00,0.244,0.326,0.33 +2014-11-22 10:00:00,0.243,0.326,0.331 +2014-11-22 11:00:00,0.243,0.326,0.332 +2014-11-22 12:00:00,0.243,0.326,0.332 +2014-11-22 13:00:00,0.243,0.326,0.332 +2014-11-22 14:00:00,0.243,0.326,0.331 +2014-11-22 15:00:00,0.243,0.326,0.331 +2014-11-22 16:00:00,0.243,0.326,0.331 +2014-11-22 17:00:00,0.243,0.326,0.331 +2014-11-22 18:00:00,0.243,0.326,0.331 +2014-11-22 19:00:00,0.243,0.327,0.331 +2014-11-22 20:00:00,0.243,0.327,0.331 +2014-11-22 21:00:00,0.243,0.327,0.331 +2014-11-22 22:00:00,0.243,0.327,0.331 +2014-11-22 23:00:00,0.243,0.327,0.331 +2014-11-23 00:00:00,0.243,0.327,0.331 +2014-11-23 01:00:00,0.243,0.327,0.331 +2014-11-23 02:00:00,0.243,0.327,0.331 +2014-11-23 03:00:00,0.243,0.327,0.33 +2014-11-23 04:00:00,0.243,0.327,0.33 +2014-11-23 05:00:00,0.243,0.327,0.33 +2014-11-23 06:00:00,0.243,0.327,0.33 +2014-11-23 07:00:00,0.243,0.327,0.33 +2014-11-23 08:00:00,0.243,0.327,0.33 +2014-11-23 09:00:00,0.243,0.327,0.33 +2014-11-23 10:00:00,0.243,0.327,0.33 +2014-11-23 11:00:00,0.243,0.327,0.33 +2014-11-23 12:00:00,0.243,0.327,0.33 +2014-11-23 13:00:00,0.243,0.327,0.33 +2014-11-23 14:00:00,0.243,0.327,0.32899999999999996 +2014-11-23 15:00:00,0.243,0.327,0.32799999999999996 +2014-11-23 16:00:00,0.243,0.327,0.32799999999999996 +2014-11-23 17:00:00,0.243,0.327,0.32799999999999996 +2014-11-23 18:00:00,0.243,0.327,0.327 +2014-11-23 19:00:00,0.244,0.327,0.327 +2014-11-23 20:00:00,0.244,0.327,0.327 +2014-11-23 21:00:00,0.243,0.327,0.327 +2014-11-23 22:00:00,0.243,0.327,0.327 +2014-11-23 23:00:00,0.243,0.327,0.327 +2014-11-24 00:00:00,0.243,0.327,0.327 +2014-11-24 01:00:00,0.243,0.327,0.327 +2014-11-24 02:00:00,0.243,0.327,0.327 +2014-11-24 03:00:00,0.243,0.327,0.327 +2014-11-24 04:00:00,0.243,0.327,0.327 +2014-11-24 05:00:00,0.243,0.327,0.327 +2014-11-24 06:00:00,0.243,0.327,0.327 +2014-11-24 07:00:00,0.243,0.327,0.327 +2014-11-24 08:00:00,0.243,0.327,0.327 +2014-11-24 09:00:00,0.243,0.327,0.327 +2014-11-24 10:00:00,0.243,0.327,0.32799999999999996 +2014-11-24 11:00:00,0.243,0.326,0.32799999999999996 +2014-11-24 12:00:00,0.243,0.327,0.32799999999999996 +2014-11-24 13:00:00,0.243,0.327,0.327 +2014-11-24 14:00:00,0.243,0.327,0.327 +2014-11-24 15:00:00,0.244,0.327,0.327 +2014-11-24 16:00:00,0.244,0.327,0.327 +2014-11-24 17:00:00,0.244,0.327,0.326 +2014-11-24 18:00:00,0.244,0.327,0.326 +2014-11-24 19:00:00,0.244,0.327,0.326 +2014-11-24 20:00:00,0.244,0.327,0.326 +2014-11-24 21:00:00,0.243,0.327,0.326 +2014-11-24 22:00:00,0.243,0.327,0.326 +2014-11-24 23:00:00,0.244,0.327,0.326 +2014-11-25 00:00:00,0.243,0.327,0.326 +2014-11-25 01:00:00,0.243,0.327,0.324 +2014-11-25 02:00:00,0.243,0.327,0.324 +2014-11-25 03:00:00,0.243,0.327,0.324 +2014-11-25 04:00:00,0.243,0.327,0.32299999999999995 +2014-11-25 05:00:00,0.243,0.327,0.322 +2014-11-25 06:00:00,0.243,0.327,0.321 +2014-11-25 07:00:00,0.243,0.327,0.321 +2014-11-25 08:00:00,0.243,0.327,0.321 +2014-11-25 09:00:00,0.243,0.327,0.321 +2014-11-25 10:00:00,0.243,0.327,0.321 +2014-11-25 11:00:00,0.243,0.327,0.322 +2014-11-25 12:00:00,0.243,0.327,0.322 +2014-11-25 13:00:00,0.243,0.327,0.322 +2014-11-25 14:00:00,0.243,0.327,0.322 +2014-11-25 15:00:00,0.243,0.327,0.322 +2014-11-25 16:00:00,0.243,0.327,0.322 +2014-11-25 17:00:00,0.243,0.327,0.322 +2014-11-25 18:00:00,0.243,0.327,0.322 +2014-11-25 19:00:00,0.243,0.327,0.322 +2014-11-25 20:00:00,0.243,0.327,0.322 +2014-11-25 21:00:00,0.243,0.327,0.321 +2014-11-25 22:00:00,0.243,0.327,0.321 +2014-11-25 23:00:00,0.243,0.327,0.321 +2014-11-26 00:00:00,0.243,0.327,0.321 +2014-11-26 01:00:00,0.243,0.327,0.321 +2014-11-26 02:00:00,0.243,0.327,0.321 +2014-11-26 03:00:00,0.243,0.327,0.321 +2014-11-26 04:00:00,0.243,0.327,0.321 +2014-11-26 05:00:00,0.243,0.327,0.321 +2014-11-26 06:00:00,0.243,0.327,0.321 +2014-11-26 07:00:00,0.243,0.327,0.321 +2014-11-26 08:00:00,0.243,0.327,0.321 +2014-11-26 09:00:00,0.243,0.327,0.321 +2014-11-26 10:00:00,0.242,0.327,0.322 +2014-11-26 11:00:00,0.242,0.327,0.322 +2014-11-26 12:00:00,0.242,0.327,0.322 +2014-11-26 13:00:00,0.242,0.327,0.32299999999999995 +2014-11-26 14:00:00,0.242,0.327,0.32299999999999995 +2014-11-26 15:00:00,0.242,0.326,0.322 +2014-11-26 16:00:00,0.242,0.327,0.322 +2014-11-26 17:00:00,0.243,0.327,0.322 +2014-11-26 18:00:00,0.243,0.327,0.322 +2014-11-26 19:00:00,0.243,0.327,0.322 +2014-11-26 20:00:00,0.243,0.327,0.322 +2014-11-26 21:00:00,0.243,0.327,0.322 +2014-11-26 22:00:00,0.243,0.327,0.322 +2014-11-26 23:00:00,0.243,0.327,0.322 +2014-11-27 00:00:00,0.243,0.327,0.322 +2014-11-27 01:00:00,0.243,0.327,0.322 +2014-11-27 02:00:00,0.243,0.327,0.322 +2014-11-27 03:00:00,0.242,0.327,0.322 +2014-11-27 04:00:00,0.243,0.327,0.322 +2014-11-27 05:00:00,0.243,0.327,0.322 +2014-11-27 06:00:00,0.243,0.327,0.321 +2014-11-27 07:00:00,0.242,0.327,0.321 +2014-11-27 08:00:00,0.243,0.327,0.321 +2014-11-27 09:00:00,0.243,0.327,0.321 +2014-11-27 10:00:00,0.242,0.327,0.321 +2014-11-27 11:00:00,0.243,0.327,0.321 +2014-11-27 12:00:00,0.243,0.327,0.321 +2014-11-27 13:00:00,0.243,0.327,0.32 +2014-11-27 14:00:00,0.242,0.327,0.32 +2014-11-27 15:00:00,0.242,0.327,0.32 +2014-11-27 16:00:00,0.242,0.327,0.319 +2014-11-27 17:00:00,0.242,0.327,0.319 +2014-11-27 18:00:00,0.242,0.327,0.32 +2014-11-27 19:00:00,0.242,0.327,0.32 +2014-11-27 20:00:00,0.242,0.327,0.321 +2014-11-27 21:00:00,0.242,0.327,0.321 +2014-11-27 22:00:00,0.242,0.327,0.321 +2014-11-27 23:00:00,0.242,0.327,0.321 +2014-11-28 00:00:00,0.243,0.327,0.321 +2014-11-28 01:00:00,0.243,0.327,0.32 +2014-11-28 02:00:00,0.243,0.327,0.32 +2014-11-28 03:00:00,0.243,0.327,0.32 +2014-11-28 04:00:00,0.243,0.327,0.32 +2014-11-28 05:00:00,0.243,0.327,0.32 +2014-11-28 06:00:00,0.243,0.327,0.321 +2014-11-28 07:00:00,0.242,0.327,0.322 +2014-11-28 08:00:00,0.242,0.327,0.322 +2014-11-28 09:00:00,0.242,0.327,0.322 +2014-11-28 10:00:00,0.242,0.327,0.322 +2014-11-28 11:00:00,0.242,0.327,0.322 +2014-11-28 12:00:00,0.242,0.327,0.322 +2014-11-28 13:00:00,0.242,0.327,0.321 +2014-11-28 14:00:00,0.243,0.327,0.321 +2014-11-28 15:00:00,0.243,0.327,0.321 +2014-11-28 16:00:00,0.243,0.327,0.321 +2014-11-28 17:00:00,0.243,0.327,0.321 +2014-11-28 18:00:00,0.243,0.327,0.321 +2014-11-28 19:00:00,0.243,0.327,0.321 +2014-11-28 20:00:00,0.243,0.327,0.321 +2014-11-28 21:00:00,0.243,0.327,0.321 +2014-11-28 22:00:00,0.243,0.327,0.321 +2014-11-28 23:00:00,0.243,0.327,0.321 +2014-11-29 00:00:00,0.243,0.327,0.32 +2014-11-29 01:00:00,0.243,0.327,0.32 +2014-11-29 02:00:00,0.243,0.327,0.32 +2014-11-29 03:00:00,0.243,0.327,0.32 +2014-11-29 04:00:00,0.243,0.327,0.32 +2014-11-29 05:00:00,0.243,0.327,0.32 +2014-11-29 06:00:00,0.243,0.327,0.32 +2014-11-29 07:00:00,0.243,0.327,0.32 +2014-11-29 08:00:00,0.243,0.327,0.32 +2014-11-29 09:00:00,0.243,0.327,0.319 +2014-11-29 10:00:00,0.243,0.327,0.319 +2014-11-29 11:00:00,0.243,0.327,0.319 +2014-11-29 12:00:00,0.243,0.327,0.319 +2014-11-29 13:00:00,0.243,0.327,0.319 +2014-11-29 14:00:00,0.243,0.327,0.319 +2014-11-29 15:00:00,0.243,0.327,0.319 +2014-11-29 16:00:00,0.243,0.327,0.319 +2014-11-29 17:00:00,0.243,0.327,0.319 +2014-11-29 18:00:00,0.243,0.327,0.319 +2014-11-29 19:00:00,0.243,0.327,0.319 +2014-11-29 20:00:00,0.243,0.327,0.319 +2014-11-29 21:00:00,0.243,0.327,0.318 +2014-11-29 22:00:00,0.243,0.327,0.318 +2014-11-29 23:00:00,0.243,0.327,0.318 +2014-11-30 00:00:00,0.243,0.327,0.318 +2014-11-30 01:00:00,0.243,0.327,0.318 +2014-11-30 02:00:00,0.243,0.327,0.318 +2014-11-30 03:00:00,0.243,0.327,0.318 +2014-11-30 04:00:00,0.243,0.327,0.318 +2014-11-30 05:00:00,0.243,0.327,0.318 +2014-11-30 06:00:00,0.243,0.327,0.318 +2014-11-30 07:00:00,0.243,0.327,0.318 +2014-11-30 08:00:00,0.242,0.327,0.318 +2014-11-30 09:00:00,0.242,0.327,0.318 +2014-11-30 10:00:00,0.242,0.32799999999999996,0.318 +2014-11-30 11:00:00,0.242,0.32899999999999996,0.318 +2014-11-30 12:00:00,0.242,0.32899999999999996,0.318 +2014-11-30 13:00:00,0.242,0.32799999999999996,0.318 +2014-11-30 14:00:00,0.242,0.327,0.318 +2014-11-30 15:00:00,0.242,0.32799999999999996,0.318 +2014-11-30 16:00:00,0.242,0.32799999999999996,0.318 +2014-11-30 17:00:00,0.242,0.327,0.318 +2014-11-30 18:00:00,0.242,0.32799999999999996,0.318 +2014-11-30 19:00:00,0.242,0.32799999999999996,0.318 +2014-11-30 20:00:00,0.242,0.32799999999999996,0.318 +2014-11-30 21:00:00,0.242,0.32899999999999996,0.318 +2014-11-30 22:00:00,0.242,0.32899999999999996,0.318 +2014-11-30 23:00:00,0.242,0.32899999999999996,0.318 +2014-12-01 00:00:00,0.242,0.32899999999999996,0.318 +2014-12-01 01:00:00,0.242,0.32899999999999996,0.318 +2014-12-01 02:00:00,0.242,0.32899999999999996,0.318 +2014-12-01 03:00:00,0.242,0.32799999999999996,0.318 +2014-12-01 04:00:00,0.242,0.32799999999999996,0.318 +2014-12-01 05:00:00,0.242,0.327,0.318 +2014-12-01 06:00:00,0.242,0.32799999999999996,0.318 +2014-12-01 07:00:00,0.242,0.32799999999999996,0.318 +2014-12-01 08:00:00,0.242,0.32799999999999996,0.318 +2014-12-01 09:00:00,0.242,0.32899999999999996,0.318 +2014-12-01 10:00:00,0.242,0.32899999999999996,0.317 +2014-12-01 11:00:00,0.242,0.32799999999999996,0.317 +2014-12-01 12:00:00,0.242,0.32799999999999996,0.317 +2014-12-01 13:00:00,0.242,0.327,0.317 +2014-12-01 14:00:00,0.242,0.327,0.317 +2014-12-01 15:00:00,0.242,0.327,0.317 +2014-12-01 16:00:00,0.242,0.327,0.317 +2014-12-01 17:00:00,0.242,0.32799999999999996,0.317 +2014-12-01 18:00:00,0.242,0.32899999999999996,0.317 +2014-12-01 19:00:00,0.242,0.32899999999999996,0.317 +2014-12-01 20:00:00,0.242,0.32899999999999996,0.317 +2014-12-01 21:00:00,0.242,0.32899999999999996,0.317 +2014-12-01 22:00:00,0.242,0.32799999999999996,0.317 +2014-12-01 23:00:00,0.242,0.32799999999999996,0.317 +2014-12-02 00:00:00,0.242,0.32899999999999996,0.317 +2014-12-02 01:00:00,0.242,0.32899999999999996,0.317 +2014-12-02 02:00:00,0.242,0.32899999999999996,0.316 +2014-12-02 03:00:00,0.242,0.32899999999999996,0.316 +2014-12-02 04:00:00,0.242,0.32899999999999996,0.316 +2014-12-02 05:00:00,0.242,0.32799999999999996,0.316 +2014-12-02 06:00:00,0.242,0.32799999999999996,0.316 +2014-12-02 07:00:00,0.242,0.32899999999999996,0.316 +2014-12-02 08:00:00,0.242,0.32899999999999996,0.316 +2014-12-02 09:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-02 10:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-02 11:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-02 12:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-02 13:00:00,0.243,0.32899999999999996,0.316 +2014-12-02 14:00:00,0.244,0.32899999999999996,0.316 +2014-12-02 15:00:00,0.244,0.32799999999999996,0.316 +2014-12-02 16:00:00,0.244,0.327,0.316 +2014-12-02 17:00:00,0.244,0.327,0.316 +2014-12-02 18:00:00,0.244,0.327,0.316 +2014-12-02 19:00:00,0.244,0.32799999999999996,0.316 +2014-12-02 20:00:00,0.244,0.32899999999999996,0.316 +2014-12-02 21:00:00,0.244,0.32899999999999996,0.316 +2014-12-02 22:00:00,0.244,0.32899999999999996,0.316 +2014-12-02 23:00:00,0.244,0.32899999999999996,0.316 +2014-12-03 00:00:00,0.244,0.32899999999999996,0.316 +2014-12-03 01:00:00,0.244,0.32899999999999996,0.316 +2014-12-03 02:00:00,0.244,0.32899999999999996,0.316 +2014-12-03 03:00:00,0.243,0.32899999999999996,0.316 +2014-12-03 04:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 05:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 06:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 07:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 08:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 09:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 10:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 11:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-03 12:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-03 13:00:00,0.24100000000000002,0.32799999999999996,0.317 +2014-12-03 14:00:00,0.24100000000000002,0.32799999999999996,0.317 +2014-12-03 15:00:00,0.242,0.327,0.317 +2014-12-03 16:00:00,0.24100000000000002,0.327,0.316 +2014-12-03 17:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 18:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 19:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 20:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 21:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 22:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-03 23:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-04 00:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-04 01:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-04 02:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-04 03:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-04 04:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-04 05:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-04 06:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-04 07:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-04 08:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-04 09:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-04 10:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-04 11:00:00,0.24100000000000002,0.33,0.317 +2014-12-04 12:00:00,0.24100000000000002,0.33,0.317 +2014-12-04 13:00:00,0.24100000000000002,0.327,0.317 +2014-12-04 14:00:00,0.24100000000000002,0.327,0.317 +2014-12-04 15:00:00,0.24100000000000002,0.326,0.317 +2014-12-04 16:00:00,0.24100000000000002,0.326,0.317 +2014-12-04 17:00:00,0.24100000000000002,0.326,0.317 +2014-12-04 18:00:00,0.24100000000000002,0.327,0.317 +2014-12-04 19:00:00,0.24100000000000002,0.327,0.317 +2014-12-04 20:00:00,0.24100000000000002,0.327,0.317 +2014-12-04 21:00:00,0.24100000000000002,0.327,0.317 +2014-12-04 22:00:00,0.24100000000000002,0.327,0.317 +2014-12-04 23:00:00,0.24100000000000002,0.327,0.317 +2014-12-05 00:00:00,0.24100000000000002,0.32799999999999996,0.317 +2014-12-05 01:00:00,0.24100000000000002,0.33,0.317 +2014-12-05 02:00:00,0.24100000000000002,0.33,0.317 +2014-12-05 03:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-05 04:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-05 05:00:00,0.24100000000000002,0.32899999999999996,0.317 +2014-12-05 06:00:00,0.24100000000000002,0.325,0.317 +2014-12-05 07:00:00,0.24100000000000002,0.324,0.317 +2014-12-05 08:00:00,0.24100000000000002,0.324,0.317 +2014-12-05 09:00:00,0.24100000000000002,0.324,0.317 +2014-12-05 10:00:00,0.24100000000000002,0.324,0.317 +2014-12-05 11:00:00,0.24100000000000002,0.324,0.316 +2014-12-05 12:00:00,0.24100000000000002,0.324,0.316 +2014-12-05 13:00:00,0.24100000000000002,0.32299999999999995,0.316 +2014-12-05 14:00:00,0.24100000000000002,0.32,0.316 +2014-12-05 15:00:00,0.24100000000000002,0.321,0.316 +2014-12-05 16:00:00,0.24100000000000002,0.319,0.316 +2014-12-05 17:00:00,0.24100000000000002,0.322,0.316 +2014-12-05 18:00:00,0.24100000000000002,0.32899999999999996,0.316 +2014-12-05 19:00:00,0.24100000000000002,0.33,0.316 +2014-12-05 20:00:00,0.24100000000000002,0.33399999999999996,0.316 +2014-12-05 21:00:00,0.24100000000000002,0.337,0.316 +2014-12-05 22:00:00,0.24100000000000002,0.34600000000000003,0.316 +2014-12-05 23:00:00,0.24100000000000002,0.354,0.316 +2014-12-06 00:00:00,0.24100000000000002,0.353,0.316 +2014-12-06 01:00:00,0.24100000000000002,0.353,0.316 +2014-12-06 02:00:00,0.24100000000000002,0.353,0.316 +2014-12-06 03:00:00,0.24100000000000002,0.353,0.316 +2014-12-06 04:00:00,0.24100000000000002,0.353,0.316 +2014-12-06 05:00:00,0.24100000000000002,0.349,0.316 +2014-12-06 06:00:00,0.24100000000000002,0.35,0.316 +2014-12-06 07:00:00,0.24100000000000002,0.35200000000000004,0.316 +2014-12-06 08:00:00,0.24100000000000002,0.354,0.316 +2014-12-06 09:00:00,0.24100000000000002,0.355,0.316 +2014-12-06 10:00:00,0.24100000000000002,0.35700000000000004,0.316 +2014-12-06 11:00:00,0.24100000000000002,0.359,0.316 +2014-12-06 12:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 13:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 14:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 15:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 16:00:00,0.24100000000000002,0.36200000000000004,0.316 +2014-12-06 17:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 18:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 19:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 20:00:00,0.24100000000000002,0.361,0.315 +2014-12-06 21:00:00,0.24100000000000002,0.361,0.315 +2014-12-06 22:00:00,0.24100000000000002,0.361,0.316 +2014-12-06 23:00:00,0.24100000000000002,0.361,0.316 +2014-12-07 00:00:00,0.24100000000000002,0.35700000000000004,0.316 +2014-12-07 01:00:00,0.24100000000000002,0.349,0.316 +2014-12-07 02:00:00,0.24100000000000002,0.36,0.316 +2014-12-07 03:00:00,0.24100000000000002,0.359,0.316 +2014-12-07 04:00:00,0.24100000000000002,0.358,0.316 +2014-12-07 05:00:00,0.24100000000000002,0.358,0.316 +2014-12-07 06:00:00,0.24100000000000002,0.35700000000000004,0.315 +2014-12-07 07:00:00,0.24100000000000002,0.35600000000000004,0.315 +2014-12-07 08:00:00,0.24,0.35700000000000004,0.315 +2014-12-07 09:00:00,0.24100000000000002,0.358,0.315 +2014-12-07 10:00:00,0.24100000000000002,0.358,0.315 +2014-12-07 11:00:00,0.24,0.358,0.315 +2014-12-07 12:00:00,0.24,0.359,0.315 +2014-12-07 13:00:00,0.24,0.359,0.315 +2014-12-07 14:00:00,0.24100000000000002,0.359,0.315 +2014-12-07 15:00:00,0.24100000000000002,0.36,0.314 +2014-12-07 16:00:00,0.24100000000000002,0.368,0.314 +2014-12-07 17:00:00,0.24,0.377,0.314 +2014-12-07 18:00:00,0.24100000000000002,0.392,0.314 +2014-12-07 19:00:00,0.24,0.40700000000000003,0.314 +2014-12-07 20:00:00,0.24100000000000002,0.41200000000000003,0.315 +2014-12-07 21:00:00,0.24100000000000002,0.406,0.315 +2014-12-07 22:00:00,0.239,0.406,0.318 +2014-12-07 23:00:00,0.23800000000000002,0.426,0.319 +2014-12-08 00:00:00,0.23800000000000002,0.451,0.319 +2014-12-08 01:00:00,0.23800000000000002,0.45299999999999996,0.319 +2014-12-08 02:00:00,0.23800000000000002,0.452,0.319 +2014-12-08 03:00:00,0.23800000000000002,0.452,0.319 +2014-12-08 04:00:00,0.23800000000000002,0.452,0.319 +2014-12-08 05:00:00,0.23800000000000002,0.452,0.319 +2014-12-08 06:00:00,0.23800000000000002,0.45299999999999996,0.319 +2014-12-08 07:00:00,0.239,0.45299999999999996,0.319 +2014-12-08 08:00:00,0.24,0.45299999999999996,0.318 +2014-12-08 09:00:00,0.24100000000000002,0.45299999999999996,0.316 +2014-12-08 10:00:00,0.24100000000000002,0.45299999999999996,0.316 +2014-12-08 11:00:00,0.239,0.45299999999999996,0.319 +2014-12-08 12:00:00,0.23800000000000002,0.45299999999999996,0.319 +2014-12-08 13:00:00,0.23800000000000002,0.45299999999999996,0.319 +2014-12-08 14:00:00,0.23800000000000002,0.45299999999999996,0.319 +2014-12-08 15:00:00,0.239,0.45299999999999996,0.319 +2014-12-08 16:00:00,0.239,0.45299999999999996,0.319 +2014-12-08 17:00:00,0.24100000000000002,0.445,0.317 +2014-12-08 18:00:00,0.24100000000000002,0.41700000000000004,0.316 +2014-12-08 19:00:00,0.24100000000000002,0.408,0.316 +2014-12-08 20:00:00,0.24100000000000002,0.39899999999999997,0.316 +2014-12-08 21:00:00,0.24100000000000002,0.39399999999999996,0.316 +2014-12-08 22:00:00,0.24100000000000002,0.389,0.316 +2014-12-08 23:00:00,0.24100000000000002,0.38299999999999995,0.315 +2014-12-09 00:00:00,0.24100000000000002,0.382,0.316 +2014-12-09 01:00:00,0.24100000000000002,0.379,0.315 +2014-12-09 02:00:00,0.24100000000000002,0.368,0.315 +2014-12-09 03:00:00,0.24100000000000002,0.366,0.315 +2014-12-09 04:00:00,0.24100000000000002,0.363,0.315 +2014-12-09 05:00:00,0.24100000000000002,0.36,0.315 +2014-12-09 06:00:00,0.24100000000000002,0.36,0.315 +2014-12-09 07:00:00,0.24100000000000002,0.361,0.315 +2014-12-09 08:00:00,0.24100000000000002,0.363,0.316 +2014-12-09 09:00:00,0.24100000000000002,0.361,0.316 +2014-12-09 10:00:00,0.24,0.361,0.318 +2014-12-09 11:00:00,0.23800000000000002,0.361,0.319 +2014-12-09 12:00:00,0.23800000000000002,0.361,0.319 +2014-12-09 13:00:00,0.239,0.359,0.318 +2014-12-09 14:00:00,0.239,0.355,0.318 +2014-12-09 15:00:00,0.24,0.355,0.318 +2014-12-09 16:00:00,0.24,0.355,0.318 +2014-12-09 17:00:00,0.24100000000000002,0.355,0.317 +2014-12-09 18:00:00,0.24100000000000002,0.353,0.317 +2014-12-09 19:00:00,0.24,0.353,0.317 +2014-12-09 20:00:00,0.24,0.353,0.317 +2014-12-09 21:00:00,0.24,0.353,0.317 +2014-12-09 22:00:00,0.24,0.353,0.317 +2014-12-09 23:00:00,0.24100000000000002,0.35200000000000004,0.315 +2014-12-10 00:00:00,0.24100000000000002,0.35100000000000003,0.315 +2014-12-10 01:00:00,0.24100000000000002,0.35100000000000003,0.315 +2014-12-10 02:00:00,0.24100000000000002,0.35100000000000003,0.315 +2014-12-10 03:00:00,0.24100000000000002,0.35100000000000003,0.316 +2014-12-10 04:00:00,0.24100000000000002,0.35100000000000003,0.316 +2014-12-10 05:00:00,0.24100000000000002,0.35100000000000003,0.317 +2014-12-10 06:00:00,0.24100000000000002,0.35100000000000003,0.317 +2014-12-10 07:00:00,0.24100000000000002,0.35100000000000003,0.316 +2014-12-10 08:00:00,0.24100000000000002,0.35100000000000003,0.316 +2014-12-10 09:00:00,0.24100000000000002,0.35100000000000003,0.316 +2014-12-10 10:00:00,0.237,0.35100000000000003,0.319 +2014-12-10 11:00:00,0.23600000000000002,0.35,0.32 +2014-12-10 12:00:00,0.23600000000000002,0.349,0.32 +2014-12-10 13:00:00,0.23600000000000002,0.349,0.32 +2014-12-10 14:00:00,0.23600000000000002,0.349,0.32 +2014-12-10 15:00:00,0.23600000000000002,0.35100000000000003,0.319 +2014-12-10 16:00:00,0.237,0.35100000000000003,0.319 +2014-12-10 17:00:00,0.237,0.35,0.319 +2014-12-10 18:00:00,0.237,0.349,0.319 +2014-12-10 19:00:00,0.237,0.349,0.319 +2014-12-10 20:00:00,0.237,0.349,0.319 +2014-12-10 21:00:00,0.23800000000000002,0.349,0.318 +2014-12-10 22:00:00,0.24,0.349,0.318 +2014-12-10 23:00:00,0.239,0.349,0.318 +2014-12-11 00:00:00,0.237,0.349,0.319 +2014-12-11 01:00:00,0.237,0.348,0.319 +2014-12-11 02:00:00,0.237,0.341,0.319 +2014-12-11 03:00:00,0.237,0.341,0.32 +2014-12-11 04:00:00,0.237,0.342,0.32 +2014-12-11 05:00:00,0.23600000000000002,0.34299999999999997,0.32 +2014-12-11 06:00:00,0.23600000000000002,0.34299999999999997,0.32 +2014-12-11 07:00:00,0.23600000000000002,0.345,0.32 +2014-12-11 08:00:00,0.23600000000000002,0.35200000000000004,0.32 +2014-12-11 09:00:00,0.23600000000000002,0.35200000000000004,0.32 +2014-12-11 10:00:00,0.237,0.349,0.32 +2014-12-11 11:00:00,0.23800000000000002,0.344,0.321 +2014-12-11 12:00:00,0.23800000000000002,0.345,0.321 +2014-12-11 13:00:00,0.239,0.345,0.321 +2014-12-11 14:00:00,0.249,0.34299999999999997,0.322 +2014-12-11 15:00:00,0.251,0.342,0.32299999999999995 +2014-12-11 16:00:00,0.25,0.34299999999999997,0.326 +2014-12-11 17:00:00,0.25,0.34299999999999997,0.326 +2014-12-11 18:00:00,0.251,0.344,0.326 +2014-12-11 19:00:00,0.255,0.34600000000000003,0.336 +2014-12-11 20:00:00,0.253,0.348,0.342 +2014-12-11 21:00:00,0.252,0.349,0.34 +2014-12-11 22:00:00,0.251,0.35,0.33799999999999997 +2014-12-11 23:00:00,0.25,0.35100000000000003,0.337 +2014-12-12 00:00:00,0.25,0.35100000000000003,0.336 +2014-12-12 01:00:00,0.249,0.35100000000000003,0.335 +2014-12-12 02:00:00,0.25,0.35100000000000003,0.335 +2014-12-12 03:00:00,0.25,0.35100000000000003,0.337 +2014-12-12 04:00:00,0.251,0.35100000000000003,0.33799999999999997 +2014-12-12 05:00:00,0.251,0.35100000000000003,0.33899999999999997 +2014-12-12 06:00:00,0.25,0.35200000000000004,0.33899999999999997 +2014-12-12 07:00:00,0.249,0.353,0.33899999999999997 +2014-12-12 08:00:00,0.248,0.353,0.33899999999999997 +2014-12-12 09:00:00,0.249,0.353,0.33799999999999997 +2014-12-12 10:00:00,0.25,0.353,0.337 +2014-12-12 11:00:00,0.251,0.353,0.336 +2014-12-12 12:00:00,0.252,0.353,0.335 +2014-12-12 13:00:00,0.253,0.353,0.33399999999999996 +2014-12-12 14:00:00,0.253,0.353,0.33299999999999996 +2014-12-12 15:00:00,0.253,0.355,0.332 +2014-12-12 16:00:00,0.253,0.355,0.331 +2014-12-12 17:00:00,0.253,0.35600000000000004,0.331 +2014-12-12 18:00:00,0.253,0.35700000000000004,0.33 +2014-12-12 19:00:00,0.253,0.35700000000000004,0.33 +2014-12-12 20:00:00,0.251,0.35700000000000004,0.33 +2014-12-12 21:00:00,0.248,0.35600000000000004,0.33299999999999996 +2014-12-12 22:00:00,0.25,0.35600000000000004,0.33899999999999997 +2014-12-12 23:00:00,0.258,0.355,0.35700000000000004 +2014-12-13 00:00:00,0.256,0.35600000000000004,0.35700000000000004 +2014-12-13 01:00:00,0.255,0.35600000000000004,0.35700000000000004 +2014-12-13 02:00:00,0.255,0.35600000000000004,0.364 +2014-12-13 03:00:00,0.254,0.35600000000000004,0.368 +2014-12-13 04:00:00,0.255,0.355,0.368 +2014-12-13 05:00:00,0.256,0.355,0.36700000000000005 +2014-12-13 06:00:00,0.256,0.355,0.366 +2014-12-13 07:00:00,0.256,0.355,0.36700000000000005 +2014-12-13 08:00:00,0.256,0.355,0.368 +2014-12-13 09:00:00,0.257,0.355,0.37200000000000005 +2014-12-13 10:00:00,0.257,0.355,0.374 +2014-12-13 11:00:00,0.257,0.355,0.375 +2014-12-13 12:00:00,0.256,0.355,0.375 +2014-12-13 13:00:00,0.255,0.35200000000000004,0.375 +2014-12-13 14:00:00,0.256,0.349,0.375 +2014-12-13 15:00:00,0.255,0.342,0.376 +2014-12-13 16:00:00,0.254,0.342,0.376 +2014-12-13 17:00:00,0.253,0.34600000000000003,0.376 +2014-12-13 18:00:00,0.253,0.355,0.376 +2014-12-13 19:00:00,0.255,0.361,0.376 +2014-12-13 20:00:00,0.256,0.366,0.376 +2014-12-13 21:00:00,0.255,0.366,0.376 +2014-12-13 22:00:00,0.255,0.365,0.377 +2014-12-13 23:00:00,0.255,0.363,0.377 +2014-12-14 00:00:00,0.254,0.363,0.377 +2014-12-14 01:00:00,0.253,0.363,0.377 +2014-12-14 02:00:00,0.253,0.363,0.377 +2014-12-14 03:00:00,0.253,0.363,0.377 +2014-12-14 04:00:00,0.254,0.363,0.377 +2014-12-14 05:00:00,0.254,0.36200000000000004,0.377 +2014-12-14 06:00:00,0.254,0.361,0.377 +2014-12-14 07:00:00,0.254,0.361,0.377 +2014-12-14 08:00:00,0.254,0.361,0.377 +2014-12-14 09:00:00,0.253,0.361,0.377 +2014-12-14 10:00:00,0.253,0.36,0.37799999999999995 +2014-12-14 11:00:00,0.252,0.36,0.37799999999999995 +2014-12-14 12:00:00,0.251,0.358,0.37799999999999995 +2014-12-14 13:00:00,0.25,0.358,0.37799999999999995 +2014-12-14 14:00:00,0.25,0.358,0.37799999999999995 +2014-12-14 15:00:00,0.249,0.358,0.37799999999999995 +2014-12-14 16:00:00,0.249,0.358,0.37799999999999995 +2014-12-14 17:00:00,0.248,0.358,0.37799999999999995 +2014-12-14 18:00:00,0.248,0.358,0.37799999999999995 +2014-12-14 19:00:00,0.248,0.35700000000000004,0.379 +2014-12-14 20:00:00,0.248,0.35600000000000004,0.379 +2014-12-14 21:00:00,0.249,0.35600000000000004,0.379 +2014-12-14 22:00:00,0.247,0.353,0.37799999999999995 +2014-12-14 23:00:00,0.247,0.348,0.37799999999999995 +2014-12-15 00:00:00,0.247,0.344,0.37799999999999995 +2014-12-15 01:00:00,0.24600000000000002,0.344,0.37799999999999995 +2014-12-15 02:00:00,0.24600000000000002,0.345,0.37799999999999995 +2014-12-15 03:00:00,0.24600000000000002,0.34700000000000003,0.37799999999999995 +2014-12-15 04:00:00,0.24600000000000002,0.34700000000000003,0.37799999999999995 +2014-12-15 05:00:00,0.249,0.34700000000000003,0.37799999999999995 +2014-12-15 06:00:00,0.252,0.348,0.37799999999999995 +2014-12-15 07:00:00,0.252,0.348,0.37799999999999995 +2014-12-15 08:00:00,0.252,0.348,0.37799999999999995 +2014-12-15 09:00:00,0.251,0.34700000000000003,0.37799999999999995 +2014-12-15 10:00:00,0.249,0.34600000000000003,0.37799999999999995 +2014-12-15 11:00:00,0.245,0.34299999999999997,0.37799999999999995 +2014-12-15 12:00:00,0.245,0.34299999999999997,0.37799999999999995 +2014-12-15 13:00:00,0.245,0.34299999999999997,0.37799999999999995 +2014-12-15 14:00:00,0.24600000000000002,0.344,0.37799999999999995 +2014-12-15 15:00:00,0.244,0.34700000000000003,0.37799999999999995 +2014-12-15 16:00:00,0.244,0.349,0.37799999999999995 +2014-12-15 17:00:00,0.244,0.35100000000000003,0.37799999999999995 +2014-12-15 18:00:00,0.244,0.35200000000000004,0.37799999999999995 +2014-12-15 19:00:00,0.244,0.353,0.37799999999999995 +2014-12-15 20:00:00,0.244,0.353,0.37799999999999995 +2014-12-15 21:00:00,0.244,0.353,0.37799999999999995 +2014-12-15 22:00:00,0.244,0.353,0.37799999999999995 +2014-12-15 23:00:00,0.244,0.353,0.37799999999999995 +2014-12-16 00:00:00,0.244,0.35200000000000004,0.379 +2014-12-16 01:00:00,0.244,0.35100000000000003,0.379 +2014-12-16 02:00:00,0.244,0.35200000000000004,0.379 +2014-12-16 03:00:00,0.244,0.35100000000000003,0.379 +2014-12-16 04:00:00,0.244,0.35100000000000003,0.379 +2014-12-16 05:00:00,0.244,0.35100000000000003,0.379 +2014-12-16 06:00:00,0.244,0.35100000000000003,0.379 +2014-12-16 07:00:00,0.244,0.35100000000000003,0.379 +2014-12-16 08:00:00,0.244,0.35100000000000003,0.38 +2014-12-16 09:00:00,0.243,0.35100000000000003,0.38 +2014-12-16 10:00:00,0.243,0.35100000000000003,0.38 +2014-12-16 11:00:00,0.243,0.35100000000000003,0.38 +2014-12-16 12:00:00,0.244,0.348,0.38 +2014-12-16 13:00:00,0.244,0.348,0.38 +2014-12-16 14:00:00,0.244,0.348,0.38 +2014-12-16 15:00:00,0.244,0.348,0.38 +2014-12-16 16:00:00,0.244,0.348,0.38 +2014-12-16 17:00:00,0.244,0.349,0.38 +2014-12-16 18:00:00,0.244,0.349,0.38 +2014-12-16 19:00:00,0.244,0.349,0.38 +2014-12-16 20:00:00,0.244,0.349,0.38 +2014-12-16 21:00:00,0.244,0.349,0.38 +2014-12-16 22:00:00,0.244,0.349,0.38 +2014-12-16 23:00:00,0.244,0.349,0.381 +2014-12-17 00:00:00,0.243,0.348,0.381 +2014-12-17 01:00:00,0.243,0.348,0.381 +2014-12-17 02:00:00,0.243,0.348,0.38 +2014-12-17 03:00:00,0.243,0.348,0.38 +2014-12-17 04:00:00,0.243,0.348,0.38 +2014-12-17 05:00:00,0.242,0.348,0.376 +2014-12-17 06:00:00,0.242,0.348,0.375 +2014-12-17 07:00:00,0.242,0.348,0.374 +2014-12-17 08:00:00,0.243,0.348,0.373 +2014-12-17 09:00:00,0.243,0.348,0.373 +2014-12-17 10:00:00,0.243,0.348,0.373 +2014-12-17 11:00:00,0.243,0.348,0.373 +2014-12-17 12:00:00,0.244,0.348,0.37200000000000005 +2014-12-17 13:00:00,0.244,0.348,0.373 +2014-12-17 14:00:00,0.245,0.348,0.374 +2014-12-17 15:00:00,0.245,0.34700000000000003,0.377 +2014-12-17 16:00:00,0.24600000000000002,0.34700000000000003,0.37799999999999995 +2014-12-17 17:00:00,0.24600000000000002,0.34700000000000003,0.38 +2014-12-17 18:00:00,0.24600000000000002,0.34600000000000003,0.38 +2014-12-17 19:00:00,0.24600000000000002,0.34600000000000003,0.38 +2014-12-17 20:00:00,0.24600000000000002,0.34600000000000003,0.38 +2014-12-17 21:00:00,0.24600000000000002,0.34600000000000003,0.38 +2014-12-17 22:00:00,0.24600000000000002,0.34600000000000003,0.381 +2014-12-17 23:00:00,0.24600000000000002,0.34600000000000003,0.381 +2014-12-18 00:00:00,0.24600000000000002,0.34600000000000003,0.381 +2014-12-18 01:00:00,0.245,0.34600000000000003,0.381 +2014-12-18 02:00:00,0.245,0.34600000000000003,0.381 +2014-12-18 03:00:00,0.245,0.34600000000000003,0.381 +2014-12-18 04:00:00,0.245,0.345,0.381 +2014-12-18 05:00:00,0.245,0.344,0.381 +2014-12-18 06:00:00,0.245,0.344,0.381 +2014-12-18 07:00:00,0.245,0.344,0.38 +2014-12-18 08:00:00,0.245,0.344,0.377 +2014-12-18 09:00:00,0.244,0.344,0.375 +2014-12-18 10:00:00,0.244,0.344,0.375 +2014-12-18 11:00:00,0.244,0.344,0.373 +2014-12-18 12:00:00,0.244,0.344,0.373 +2014-12-18 13:00:00,0.245,0.344,0.37200000000000005 +2014-12-18 14:00:00,0.24600000000000002,0.344,0.371 +2014-12-18 15:00:00,0.247,0.344,0.37 +2014-12-18 16:00:00,0.248,0.344,0.37 +2014-12-18 17:00:00,0.248,0.344,0.369 +2014-12-18 18:00:00,0.248,0.34299999999999997,0.369 +2014-12-18 19:00:00,0.247,0.341,0.369 +2014-12-18 20:00:00,0.247,0.34,0.369 +2014-12-18 21:00:00,0.248,0.335,0.369 +2014-12-18 22:00:00,0.249,0.335,0.368 +2014-12-18 23:00:00,0.249,0.336,0.368 +2014-12-19 00:00:00,0.25,0.33799999999999997,0.36700000000000005 +2014-12-19 01:00:00,0.25,0.337,0.36700000000000005 +2014-12-19 02:00:00,0.25,0.33399999999999996,0.36700000000000005 +2014-12-19 03:00:00,0.25,0.33399999999999996,0.366 +2014-12-19 04:00:00,0.25,0.336,0.366 +2014-12-19 05:00:00,0.25,0.33799999999999997,0.366 +2014-12-19 06:00:00,0.249,0.33899999999999997,0.36700000000000005 +2014-12-19 07:00:00,0.249,0.33899999999999997,0.36700000000000005 +2014-12-19 08:00:00,0.249,0.34,0.366 +2014-12-19 09:00:00,0.249,0.341,0.366 +2014-12-19 10:00:00,0.248,0.341,0.36700000000000005 +2014-12-19 11:00:00,0.245,0.341,0.36200000000000004 +2014-12-19 12:00:00,0.245,0.341,0.361 +2014-12-19 13:00:00,0.24600000000000002,0.341,0.36200000000000004 +2014-12-19 14:00:00,0.25,0.341,0.36200000000000004 +2014-12-19 15:00:00,0.256,0.341,0.369 +2014-12-19 16:00:00,0.256,0.341,0.377 +2014-12-19 17:00:00,0.258,0.341,0.376 +2014-12-19 18:00:00,0.258,0.341,0.375 +2014-12-19 19:00:00,0.255,0.341,0.37799999999999995 +2014-12-19 20:00:00,0.253,0.341,0.37799999999999995 +2014-12-19 21:00:00,0.252,0.341,0.379 +2014-12-19 22:00:00,0.25,0.341,0.379 +2014-12-19 23:00:00,0.249,0.341,0.379 +2014-12-20 00:00:00,0.248,0.341,0.379 +2014-12-20 01:00:00,0.248,0.341,0.38 +2014-12-20 02:00:00,0.248,0.341,0.38 +2014-12-20 03:00:00,0.248,0.341,0.38 +2014-12-20 04:00:00,0.248,0.34,0.38 +2014-12-20 05:00:00,0.249,0.341,0.38 +2014-12-20 06:00:00,0.249,0.341,0.38 +2014-12-20 07:00:00,0.249,0.33899999999999997,0.38 +2014-12-20 08:00:00,0.249,0.33899999999999997,0.379 +2014-12-20 09:00:00,0.249,0.34,0.379 +2014-12-20 10:00:00,0.249,0.34,0.379 +2014-12-20 11:00:00,0.25,0.33899999999999997,0.379 +2014-12-20 12:00:00,0.251,0.33899999999999997,0.379 +2014-12-20 13:00:00,0.251,0.33899999999999997,0.379 +2014-12-20 14:00:00,0.251,0.33799999999999997,0.379 +2014-12-20 15:00:00,0.251,0.33799999999999997,0.37799999999999995 +2014-12-20 16:00:00,0.251,0.33799999999999997,0.37799999999999995 +2014-12-20 17:00:00,0.251,0.33799999999999997,0.37799999999999995 +2014-12-20 18:00:00,0.251,0.33799999999999997,0.379 +2014-12-20 19:00:00,0.249,0.33899999999999997,0.38 +2014-12-20 20:00:00,0.247,0.33899999999999997,0.38 +2014-12-20 21:00:00,0.24600000000000002,0.33899999999999997,0.38 +2014-12-20 22:00:00,0.24600000000000002,0.33899999999999997,0.38 +2014-12-20 23:00:00,0.24600000000000002,0.33899999999999997,0.381 +2014-12-21 00:00:00,0.245,0.33899999999999997,0.381 +2014-12-21 01:00:00,0.245,0.33899999999999997,0.381 +2014-12-21 02:00:00,0.245,0.33899999999999997,0.381 +2014-12-21 03:00:00,0.245,0.33899999999999997,0.381 +2014-12-21 04:00:00,0.245,0.33899999999999997,0.382 +2014-12-21 05:00:00,0.244,0.33899999999999997,0.382 +2014-12-21 06:00:00,0.244,0.33899999999999997,0.382 +2014-12-21 07:00:00,0.244,0.33899999999999997,0.382 +2014-12-21 08:00:00,0.245,0.33899999999999997,0.382 +2014-12-21 09:00:00,0.245,0.33899999999999997,0.382 +2014-12-21 10:00:00,0.244,0.33899999999999997,0.382 +2014-12-21 11:00:00,0.244,0.33899999999999997,0.382 +2014-12-21 12:00:00,0.244,0.33899999999999997,0.382 +2014-12-21 13:00:00,0.244,0.33899999999999997,0.382 +2014-12-21 14:00:00,0.24600000000000002,0.33899999999999997,0.381 +2014-12-21 15:00:00,0.248,0.33899999999999997,0.381 +2014-12-21 16:00:00,0.249,0.33799999999999997,0.381 +2014-12-21 17:00:00,0.249,0.33799999999999997,0.381 +2014-12-21 18:00:00,0.249,0.33799999999999997,0.38 +2014-12-21 19:00:00,0.249,0.33899999999999997,0.38 +2014-12-21 20:00:00,0.25,0.33899999999999997,0.38 +2014-12-21 21:00:00,0.25,0.33899999999999997,0.38 +2014-12-21 22:00:00,0.25,0.33899999999999997,0.38 +2014-12-21 23:00:00,0.25,0.33899999999999997,0.38 +2014-12-22 00:00:00,0.25,0.33899999999999997,0.379 +2014-12-22 01:00:00,0.249,0.33899999999999997,0.377 +2014-12-22 02:00:00,0.25,0.33899999999999997,0.376 +2014-12-22 03:00:00,0.249,0.34,0.376 +2014-12-22 04:00:00,0.249,0.34,0.375 +2014-12-22 05:00:00,0.249,0.34,0.375 +2014-12-22 06:00:00,0.249,0.34,0.375 +2014-12-22 07:00:00,0.249,0.34,0.375 +2014-12-22 08:00:00,0.249,0.34,0.375 +2014-12-22 09:00:00,0.247,0.34,0.37200000000000005 +2014-12-22 10:00:00,0.24600000000000002,0.34,0.37 +2014-12-22 11:00:00,0.247,0.341,0.369 +2014-12-22 12:00:00,0.247,0.342,0.369 +2014-12-22 13:00:00,0.248,0.34299999999999997,0.368 +2014-12-22 14:00:00,0.249,0.342,0.366 +2014-12-22 15:00:00,0.249,0.341,0.365 +2014-12-22 16:00:00,0.249,0.341,0.366 +2014-12-22 17:00:00,0.249,0.341,0.365 +2014-12-22 18:00:00,0.249,0.341,0.364 +2014-12-22 19:00:00,0.249,0.341,0.364 +2014-12-22 20:00:00,0.249,0.34,0.364 +2014-12-22 21:00:00,0.249,0.341,0.363 +2014-12-22 22:00:00,0.249,0.341,0.36200000000000004 +2014-12-22 23:00:00,0.249,0.34,0.36200000000000004 +2014-12-23 00:00:00,0.249,0.34,0.36200000000000004 +2014-12-23 01:00:00,0.249,0.34,0.36200000000000004 +2014-12-23 02:00:00,0.249,0.34,0.36200000000000004 +2014-12-23 03:00:00,0.249,0.34,0.36200000000000004 +2014-12-23 04:00:00,0.249,0.33899999999999997,0.36200000000000004 +2014-12-23 05:00:00,0.249,0.33899999999999997,0.361 +2014-12-23 06:00:00,0.249,0.33899999999999997,0.361 +2014-12-23 07:00:00,0.249,0.33899999999999997,0.361 +2014-12-23 08:00:00,0.249,0.33899999999999997,0.361 +2014-12-23 09:00:00,0.249,0.33899999999999997,0.361 +2014-12-23 10:00:00,0.249,0.33899999999999997,0.361 +2014-12-23 11:00:00,0.249,0.33899999999999997,0.36 +2014-12-23 12:00:00,0.248,0.33899999999999997,0.36 +2014-12-23 13:00:00,0.249,0.33899999999999997,0.36 +2014-12-23 14:00:00,0.249,0.33899999999999997,0.36 +2014-12-23 15:00:00,0.249,0.337,0.36 +2014-12-23 16:00:00,0.249,0.336,0.36 +2014-12-23 17:00:00,0.249,0.336,0.36 +2014-12-23 18:00:00,0.248,0.337,0.36 +2014-12-23 19:00:00,0.249,0.33799999999999997,0.36 +2014-12-23 20:00:00,0.249,0.33899999999999997,0.36 +2014-12-23 21:00:00,0.248,0.33899999999999997,0.36 +2014-12-23 22:00:00,0.249,0.33899999999999997,0.359 +2014-12-23 23:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 00:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 01:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 02:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 03:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 04:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 05:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 06:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 07:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 08:00:00,0.248,0.33899999999999997,0.359 +2014-12-24 09:00:00,0.248,0.33899999999999997,0.358 +2014-12-24 10:00:00,0.248,0.33899999999999997,0.358 +2014-12-24 11:00:00,0.248,0.33899999999999997,0.35600000000000004 +2014-12-24 12:00:00,0.248,0.33899999999999997,0.342 +2014-12-24 13:00:00,0.248,0.33799999999999997,0.341 +2014-12-24 14:00:00,0.248,0.33799999999999997,0.342 +2014-12-24 15:00:00,0.247,0.33799999999999997,0.344 +2014-12-24 16:00:00,0.247,0.33799999999999997,0.344 +2014-12-24 17:00:00,0.245,0.33899999999999997,0.344 +2014-12-24 18:00:00,0.243,0.34,0.345 +2014-12-24 19:00:00,0.243,0.34,0.345 +2014-12-24 20:00:00,0.243,0.341,0.345 +2014-12-24 21:00:00,0.243,0.341,0.345 +2014-12-24 22:00:00,0.243,0.341,0.345 +2014-12-24 23:00:00,0.243,0.341,0.345 +2014-12-25 00:00:00,0.243,0.341,0.345 +2014-12-25 01:00:00,0.243,0.341,0.344 +2014-12-25 02:00:00,0.244,0.341,0.344 +2014-12-25 03:00:00,0.245,0.342,0.344 +2014-12-25 04:00:00,0.245,0.34299999999999997,0.344 +2014-12-25 05:00:00,0.24600000000000002,0.34299999999999997,0.34299999999999997 +2014-12-25 06:00:00,0.24600000000000002,0.34299999999999997,0.34299999999999997 +2014-12-25 07:00:00,0.247,0.34299999999999997,0.34299999999999997 +2014-12-25 08:00:00,0.247,0.34299999999999997,0.342 +2014-12-25 09:00:00,0.248,0.344,0.342 +2014-12-25 10:00:00,0.248,0.344,0.342 +2014-12-25 11:00:00,0.248,0.344,0.342 +2014-12-25 12:00:00,0.248,0.344,0.341 +2014-12-25 13:00:00,0.248,0.345,0.341 +2014-12-25 14:00:00,0.248,0.34600000000000003,0.341 +2014-12-25 15:00:00,0.248,0.34600000000000003,0.341 +2014-12-25 16:00:00,0.248,0.348,0.341 +2014-12-25 17:00:00,0.247,0.349,0.341 +2014-12-25 18:00:00,0.248,0.35100000000000003,0.341 +2014-12-25 19:00:00,0.247,0.353,0.341 +2014-12-25 20:00:00,0.247,0.354,0.34 +2014-12-25 21:00:00,0.247,0.355,0.34 +2014-12-25 22:00:00,0.247,0.355,0.34 +2014-12-25 23:00:00,0.247,0.355,0.33899999999999997 +2014-12-26 00:00:00,0.247,0.355,0.33899999999999997 +2014-12-26 01:00:00,0.247,0.355,0.34 +2014-12-26 02:00:00,0.247,0.355,0.33899999999999997 +2014-12-26 03:00:00,0.247,0.35600000000000004,0.33899999999999997 +2014-12-26 04:00:00,0.247,0.35700000000000004,0.33899999999999997 +2014-12-26 05:00:00,0.24600000000000002,0.35600000000000004,0.33899999999999997 +2014-12-26 06:00:00,0.247,0.35700000000000004,0.33799999999999997 +2014-12-26 07:00:00,0.247,0.35700000000000004,0.33799999999999997 +2014-12-26 08:00:00,0.24600000000000002,0.35600000000000004,0.33799999999999997 +2014-12-26 09:00:00,0.247,0.35600000000000004,0.33799999999999997 +2014-12-26 10:00:00,0.24600000000000002,0.35600000000000004,0.33799999999999997 +2014-12-26 11:00:00,0.245,0.35600000000000004,0.33899999999999997 +2014-12-26 12:00:00,0.245,0.358,0.33899999999999997 +2014-12-26 13:00:00,0.245,0.358,0.33899999999999997 +2014-12-26 14:00:00,0.24600000000000002,0.36,0.33899999999999997 +2014-12-26 15:00:00,0.24600000000000002,0.361,0.33799999999999997 +2014-12-26 16:00:00,0.247,0.36200000000000004,0.33799999999999997 +2014-12-26 17:00:00,0.247,0.364,0.33799999999999997 +2014-12-26 18:00:00,0.247,0.365,0.337 +2014-12-26 19:00:00,0.24600000000000002,0.366,0.337 +2014-12-26 20:00:00,0.24600000000000002,0.36700000000000005,0.336 +2014-12-26 21:00:00,0.24600000000000002,0.366,0.336 +2014-12-26 22:00:00,0.24600000000000002,0.366,0.337 +2014-12-26 23:00:00,0.24600000000000002,0.366,0.336 +2014-12-27 00:00:00,0.24600000000000002,0.365,0.336 +2014-12-27 01:00:00,0.24600000000000002,0.365,0.336 +2014-12-27 02:00:00,0.24600000000000002,0.365,0.336 +2014-12-27 03:00:00,0.24600000000000002,0.365,0.337 +2014-12-27 04:00:00,0.24600000000000002,0.364,0.337 +2014-12-27 05:00:00,0.24600000000000002,0.363,0.336 +2014-12-27 06:00:00,0.24600000000000002,0.36200000000000004,0.337 +2014-12-27 07:00:00,0.24600000000000002,0.361,0.337 +2014-12-27 08:00:00,0.24600000000000002,0.359,0.337 +2014-12-27 09:00:00,0.24600000000000002,0.355,0.337 +2014-12-27 10:00:00,0.24600000000000002,0.355,0.337 +2014-12-27 11:00:00,0.24600000000000002,0.36,0.33799999999999997 +2014-12-27 12:00:00,0.244,0.361,0.33899999999999997 +2014-12-27 13:00:00,0.24100000000000002,0.36200000000000004,0.33899999999999997 +2014-12-27 14:00:00,0.24,0.366,0.34 +2014-12-27 15:00:00,0.24,0.37,0.34 +2014-12-27 16:00:00,0.243,0.369,0.33899999999999997 +2014-12-27 17:00:00,0.24600000000000002,0.369,0.33799999999999997 +2014-12-27 18:00:00,0.24600000000000002,0.37,0.33799999999999997 +2014-12-27 19:00:00,0.24600000000000002,0.37,0.33799999999999997 +2014-12-27 20:00:00,0.24600000000000002,0.37,0.33799999999999997 +2014-12-27 21:00:00,0.24600000000000002,0.369,0.33799999999999997 +2014-12-27 22:00:00,0.24600000000000002,0.368,0.33799999999999997 +2014-12-27 23:00:00,0.247,0.368,0.33799999999999997 +2014-12-28 00:00:00,0.247,0.368,0.33799999999999997 +2014-12-28 01:00:00,0.247,0.366,0.33799999999999997 +2014-12-28 02:00:00,0.247,0.366,0.33799999999999997 +2014-12-28 03:00:00,0.247,0.365,0.33799999999999997 +2014-12-28 04:00:00,0.247,0.365,0.33799999999999997 +2014-12-28 05:00:00,0.247,0.365,0.33799999999999997 +2014-12-28 06:00:00,0.247,0.364,0.33799999999999997 +2014-12-28 07:00:00,0.247,0.363,0.33799999999999997 +2014-12-28 08:00:00,0.247,0.363,0.33799999999999997 +2014-12-28 09:00:00,0.248,0.36200000000000004,0.33799999999999997 +2014-12-28 10:00:00,0.247,0.361,0.337 +2014-12-28 11:00:00,0.247,0.361,0.337 +2014-12-28 12:00:00,0.247,0.361,0.337 +2014-12-28 13:00:00,0.247,0.361,0.337 +2014-12-28 14:00:00,0.247,0.361,0.337 +2014-12-28 15:00:00,0.247,0.359,0.337 +2014-12-28 16:00:00,0.24600000000000002,0.355,0.337 +2014-12-28 17:00:00,0.247,0.35600000000000004,0.337 +2014-12-28 18:00:00,0.24600000000000002,0.358,0.337 +2014-12-28 19:00:00,0.24600000000000002,0.36,0.337 +2014-12-28 20:00:00,0.24600000000000002,0.36,0.337 +2014-12-28 21:00:00,0.24600000000000002,0.36,0.337 +2014-12-28 22:00:00,0.24600000000000002,0.359,0.336 +2014-12-28 23:00:00,0.24600000000000002,0.358,0.337 +2014-12-29 00:00:00,0.24600000000000002,0.35700000000000004,0.337 +2014-12-29 01:00:00,0.24600000000000002,0.355,0.336 +2014-12-29 02:00:00,0.24600000000000002,0.35600000000000004,0.337 +2014-12-29 03:00:00,0.24600000000000002,0.358,0.337 +2014-12-29 04:00:00,0.245,0.358,0.337 +2014-12-29 05:00:00,0.245,0.36,0.337 +2014-12-29 06:00:00,0.245,0.36,0.336 +2014-12-29 07:00:00,0.245,0.361,0.337 +2014-12-29 08:00:00,0.245,0.36200000000000004,0.337 +2014-12-29 09:00:00,0.245,0.363,0.337 +2014-12-29 10:00:00,0.245,0.365,0.337 +2014-12-29 11:00:00,0.244,0.361,0.33799999999999997 +2014-12-29 12:00:00,0.24,0.361,0.33899999999999997 +2014-12-29 13:00:00,0.239,0.361,0.33899999999999997 +2014-12-29 14:00:00,0.239,0.361,0.34 +2014-12-29 15:00:00,0.239,0.361,0.33899999999999997 +2014-12-29 16:00:00,0.24,0.36200000000000004,0.33899999999999997 +2014-12-29 17:00:00,0.244,0.365,0.337 +2014-12-29 18:00:00,0.245,0.365,0.337 +2014-12-29 19:00:00,0.245,0.366,0.337 +2014-12-29 20:00:00,0.245,0.366,0.337 +2014-12-29 21:00:00,0.245,0.366,0.337 +2014-12-29 22:00:00,0.245,0.366,0.336 +2014-12-29 23:00:00,0.245,0.365,0.336 +2014-12-30 00:00:00,0.24600000000000002,0.365,0.336 +2014-12-30 01:00:00,0.245,0.365,0.336 +2014-12-30 02:00:00,0.245,0.365,0.336 +2014-12-30 03:00:00,0.245,0.365,0.337 +2014-12-30 04:00:00,0.24600000000000002,0.364,0.337 +2014-12-30 05:00:00,0.245,0.363,0.337 +2014-12-30 06:00:00,0.245,0.363,0.337 +2014-12-30 07:00:00,0.245,0.363,0.337 +2014-12-30 08:00:00,0.245,0.363,0.337 +2014-12-30 09:00:00,0.24100000000000002,0.361,0.33899999999999997 +2014-12-30 10:00:00,0.24,0.361,0.33899999999999997 +2014-12-30 11:00:00,0.24,0.361,0.33899999999999997 +2014-12-30 12:00:00,0.24,0.361,0.33899999999999997 +2014-12-30 13:00:00,0.242,0.361,0.33899999999999997 +2014-12-30 14:00:00,0.243,0.36,0.33899999999999997 +2014-12-30 15:00:00,0.243,0.36,0.33899999999999997 +2014-12-30 16:00:00,0.243,0.36,0.33899999999999997 +2014-12-30 17:00:00,0.243,0.36,0.33899999999999997 +2014-12-30 18:00:00,0.244,0.36,0.33899999999999997 +2014-12-30 19:00:00,0.244,0.36,0.33899999999999997 +2014-12-30 20:00:00,0.244,0.358,0.33899999999999997 +2014-12-30 21:00:00,0.244,0.358,0.33899999999999997 +2014-12-30 22:00:00,0.244,0.358,0.33899999999999997 +2014-12-30 23:00:00,0.245,0.358,0.33899999999999997 +2014-12-31 00:00:00,0.245,0.358,0.33899999999999997 +2014-12-31 01:00:00,0.245,0.358,0.33899999999999997 +2014-12-31 02:00:00,0.24600000000000002,0.358,0.33899999999999997 +2014-12-31 03:00:00,0.24600000000000002,0.358,0.33899999999999997 +2014-12-31 04:00:00,0.24600000000000002,0.35700000000000004,0.33899999999999997 +2014-12-31 05:00:00,0.247,0.35700000000000004,0.33899999999999997 +2014-12-31 06:00:00,0.247,0.35600000000000004,0.34 +2014-12-31 07:00:00,0.247,0.35600000000000004,0.34 +2014-12-31 08:00:00,0.248,0.35600000000000004,0.34 +2014-12-31 09:00:00,0.248,0.35600000000000004,0.34 +2014-12-31 10:00:00,0.248,0.355,0.34 +2014-12-31 11:00:00,0.248,0.355,0.34 +2014-12-31 12:00:00,0.249,0.355,0.34 +2014-12-31 13:00:00,0.25,0.355,0.341 +2014-12-31 14:00:00,0.25,0.355,0.344 +2014-12-31 15:00:00,0.251,0.355,0.34700000000000003 +2014-12-31 16:00:00,0.251,0.355,0.35200000000000004 +2014-12-31 17:00:00,0.251,0.355,0.359 +2014-12-31 18:00:00,0.25,0.354,0.369 +2014-12-31 19:00:00,0.25,0.353,0.373 +2014-12-31 20:00:00,0.25,0.353,0.374 +2014-12-31 21:00:00,0.251,0.353,0.375 +2014-12-31 22:00:00,0.251,0.353,0.375 +2014-12-31 23:00:00,0.251,0.35200000000000004,0.375 +2015-01-01 00:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 01:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 02:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 03:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 04:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 05:00:00,0.252,0.35200000000000004,0.375 +2015-01-01 06:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 07:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 08:00:00,0.252,0.35100000000000003,0.375 +2015-01-01 09:00:00,0.253,0.35,0.375 +2015-01-01 10:00:00,0.253,0.35,0.375 +2015-01-01 11:00:00,0.254,0.349,0.375 +2015-01-01 12:00:00,0.255,0.349,0.375 +2015-01-01 13:00:00,0.255,0.349,0.375 +2015-01-01 14:00:00,0.256,0.349,0.375 +2015-01-01 15:00:00,0.256,0.349,0.376 +2015-01-01 16:00:00,0.256,0.349,0.376 +2015-01-01 17:00:00,0.257,0.349,0.376 +2015-01-01 18:00:00,0.256,0.349,0.376 +2015-01-01 19:00:00,0.256,0.349,0.376 +2015-01-01 20:00:00,0.256,0.349,0.376 +2015-01-01 21:00:00,0.256,0.349,0.376 +2015-01-01 22:00:00,0.256,0.349,0.376 +2015-01-01 23:00:00,0.256,0.349,0.376 +2015-01-02 00:00:00,0.255,0.349,0.376 +2015-01-02 01:00:00,0.255,0.349,0.376 +2015-01-02 02:00:00,0.255,0.349,0.375 +2015-01-02 03:00:00,0.255,0.349,0.375 +2015-01-02 04:00:00,0.254,0.349,0.376 +2015-01-02 05:00:00,0.252,0.349,0.376 +2015-01-02 06:00:00,0.248,0.349,0.376 +2015-01-02 07:00:00,0.247,0.349,0.376 +2015-01-02 08:00:00,0.248,0.349,0.376 +2015-01-02 09:00:00,0.248,0.349,0.376 +2015-01-02 10:00:00,0.248,0.349,0.376 +2015-01-02 11:00:00,0.249,0.34700000000000003,0.377 +2015-01-02 12:00:00,0.25,0.34700000000000003,0.377 +2015-01-02 13:00:00,0.251,0.349,0.377 +2015-01-02 14:00:00,0.251,0.349,0.377 +2015-01-02 15:00:00,0.251,0.35100000000000003,0.37799999999999995 +2015-01-02 16:00:00,0.252,0.344,0.37799999999999995 +2015-01-02 17:00:00,0.252,0.34700000000000003,0.37799999999999995 +2015-01-02 18:00:00,0.252,0.349,0.37799999999999995 +2015-01-02 19:00:00,0.252,0.349,0.37799999999999995 +2015-01-02 20:00:00,0.253,0.359,0.37799999999999995 +2015-01-02 21:00:00,0.253,0.369,0.37799999999999995 +2015-01-02 22:00:00,0.254,0.37200000000000005,0.37799999999999995 +2015-01-02 23:00:00,0.255,0.37200000000000005,0.37799999999999995 +2015-01-03 00:00:00,0.255,0.377,0.37799999999999995 +2015-01-03 01:00:00,0.255,0.37799999999999995,0.37799999999999995 +2015-01-03 02:00:00,0.255,0.374,0.37799999999999995 +2015-01-03 03:00:00,0.255,0.366,0.37799999999999995 +2015-01-03 04:00:00,0.255,0.366,0.37799999999999995 +2015-01-03 05:00:00,0.255,0.366,0.37799999999999995 +2015-01-03 06:00:00,0.255,0.366,0.377 +2015-01-03 07:00:00,0.254,0.368,0.377 +2015-01-03 08:00:00,0.254,0.368,0.377 +2015-01-03 09:00:00,0.254,0.368,0.377 +2015-01-03 10:00:00,0.254,0.368,0.377 +2015-01-03 11:00:00,0.253,0.368,0.377 +2015-01-03 12:00:00,0.251,0.368,0.377 +2015-01-03 13:00:00,0.25,0.36700000000000005,0.377 +2015-01-03 14:00:00,0.252,0.366,0.377 +2015-01-03 15:00:00,0.253,0.366,0.377 +2015-01-03 16:00:00,0.253,0.366,0.377 +2015-01-03 17:00:00,0.253,0.365,0.377 +2015-01-03 18:00:00,0.253,0.365,0.377 +2015-01-03 19:00:00,0.252,0.365,0.377 +2015-01-03 20:00:00,0.252,0.365,0.377 +2015-01-03 21:00:00,0.252,0.364,0.377 +2015-01-03 22:00:00,0.252,0.361,0.377 +2015-01-03 23:00:00,0.252,0.355,0.37799999999999995 +2015-01-04 00:00:00,0.251,0.35200000000000004,0.37799999999999995 +2015-01-04 01:00:00,0.251,0.35100000000000003,0.37799999999999995 +2015-01-04 02:00:00,0.251,0.36,0.37799999999999995 +2015-01-04 03:00:00,0.251,0.366,0.37799999999999995 +2015-01-04 04:00:00,0.251,0.39,0.37799999999999995 +2015-01-04 05:00:00,0.252,0.43799999999999994,0.37799999999999995 +2015-01-04 06:00:00,0.252,0.451,0.379 +2015-01-04 07:00:00,0.255,0.451,0.379 +2015-01-04 08:00:00,0.252,0.45299999999999996,0.379 +2015-01-04 09:00:00,0.252,0.456,0.379 +2015-01-04 10:00:00,0.252,0.457,0.379 +2015-01-04 11:00:00,0.252,0.45799999999999996,0.379 +2015-01-04 12:00:00,0.253,0.44299999999999995,0.379 +2015-01-04 13:00:00,0.254,0.424,0.379 +2015-01-04 14:00:00,0.256,0.428,0.379 +2015-01-04 15:00:00,0.257,0.426,0.379 +2015-01-04 16:00:00,0.257,0.414,0.379 +2015-01-04 17:00:00,0.257,0.406,0.379 +2015-01-04 18:00:00,0.257,0.401,0.379 +2015-01-04 19:00:00,0.257,0.392,0.38 +2015-01-04 20:00:00,0.257,0.396,0.38 +2015-01-04 21:00:00,0.256,0.452,0.38 +2015-01-04 22:00:00,0.256,0.45399999999999996,0.38 +2015-01-04 23:00:00,0.256,0.456,0.38 +2015-01-05 00:00:00,0.256,0.457,0.38 +2015-01-05 01:00:00,0.255,0.45799999999999996,0.38 +2015-01-05 02:00:00,0.255,0.45899999999999996,0.38 +2015-01-05 03:00:00,0.255,0.46,0.38 +2015-01-05 04:00:00,0.255,0.461,0.38 +2015-01-05 05:00:00,0.255,0.46,0.38 +2015-01-05 06:00:00,0.255,0.435,0.38 +2015-01-05 07:00:00,0.255,0.42100000000000004,0.38 +2015-01-05 08:00:00,0.255,0.415,0.38 +2015-01-05 09:00:00,0.254,0.408,0.38 +2015-01-05 10:00:00,0.254,0.40399999999999997,0.38 +2015-01-05 11:00:00,0.253,0.4,0.38 +2015-01-05 12:00:00,0.253,0.389,0.38 +2015-01-05 13:00:00,0.253,0.387,0.38 +2015-01-05 14:00:00,0.253,0.38299999999999995,0.38 +2015-01-05 15:00:00,0.253,0.382,0.38 +2015-01-05 16:00:00,0.253,0.382,0.38 +2015-01-05 17:00:00,0.253,0.376,0.38 +2015-01-05 18:00:00,0.253,0.37200000000000005,0.38 +2015-01-05 19:00:00,0.253,0.37200000000000005,0.38 +2015-01-05 20:00:00,0.253,0.371,0.38 +2015-01-05 21:00:00,0.253,0.37,0.38 +2015-01-05 22:00:00,0.253,0.37,0.38 +2015-01-05 23:00:00,0.252,0.368,0.38 +2015-01-06 00:00:00,0.252,0.368,0.379 +2015-01-06 01:00:00,0.252,0.36700000000000005,0.379 +2015-01-06 02:00:00,0.252,0.366,0.379 +2015-01-06 03:00:00,0.252,0.365,0.379 +2015-01-06 04:00:00,0.252,0.365,0.379 +2015-01-06 05:00:00,0.251,0.36,0.379 +2015-01-06 06:00:00,0.251,0.36,0.379 +2015-01-06 07:00:00,0.251,0.361,0.379 +2015-01-06 08:00:00,0.251,0.361,0.379 +2015-01-06 09:00:00,0.251,0.36200000000000004,0.379 +2015-01-06 10:00:00,0.25,0.363,0.379 +2015-01-06 11:00:00,0.25,0.363,0.379 +2015-01-06 12:00:00,0.25,0.363,0.379 +2015-01-06 13:00:00,0.25,0.363,0.379 +2015-01-06 14:00:00,0.25,0.363,0.379 +2015-01-06 15:00:00,0.25,0.363,0.379 +2015-01-06 16:00:00,0.25,0.363,0.379 +2015-01-06 17:00:00,0.25,0.363,0.379 +2015-01-06 18:00:00,0.25,0.363,0.379 +2015-01-06 19:00:00,0.25,0.36200000000000004,0.379 +2015-01-06 20:00:00,0.25,0.361,0.379 +2015-01-06 21:00:00,0.25,0.361,0.379 +2015-01-06 22:00:00,0.25,0.361,0.379 +2015-01-06 23:00:00,0.25,0.361,0.379 +2015-01-07 00:00:00,0.25,0.361,0.38 +2015-01-07 01:00:00,0.25,0.361,0.38 +2015-01-07 02:00:00,0.25,0.361,0.38 +2015-01-07 03:00:00,0.249,0.361,0.38 +2015-01-07 04:00:00,0.249,0.361,0.38 +2015-01-07 05:00:00,0.249,0.36,0.38 +2015-01-07 06:00:00,0.249,0.36,0.38 +2015-01-07 07:00:00,0.249,0.36,0.38 +2015-01-07 08:00:00,0.248,0.36,0.38 +2015-01-07 09:00:00,0.248,0.36,0.38 +2015-01-07 10:00:00,0.248,0.36,0.38 +2015-01-07 11:00:00,0.248,0.36,0.379 +2015-01-07 12:00:00,0.249,0.36,0.379 +2015-01-07 13:00:00,0.249,0.36,0.379 +2015-01-07 14:00:00,0.25,0.359,0.379 +2015-01-07 15:00:00,0.25,0.359,0.37799999999999995 +2015-01-07 16:00:00,0.25,0.359,0.37799999999999995 +2015-01-07 17:00:00,0.25,0.358,0.37799999999999995 +2015-01-07 18:00:00,0.25,0.358,0.37799999999999995 +2015-01-07 19:00:00,0.25,0.358,0.37799999999999995 +2015-01-07 20:00:00,0.251,0.358,0.377 +2015-01-07 21:00:00,0.251,0.355,0.377 +2015-01-07 22:00:00,0.251,0.349,0.377 +2015-01-07 23:00:00,0.251,0.35,0.377 +2015-01-08 00:00:00,0.251,0.354,0.377 +2015-01-08 01:00:00,0.251,0.35600000000000004,0.377 +2015-01-08 02:00:00,0.251,0.35700000000000004,0.377 +2015-01-08 03:00:00,0.251,0.358,0.377 +2015-01-08 04:00:00,0.251,0.358,0.377 +2015-01-08 05:00:00,0.25,0.355,0.377 +2015-01-08 06:00:00,0.249,0.35600000000000004,0.37799999999999995 +2015-01-08 07:00:00,0.247,0.358,0.37799999999999995 +2015-01-08 08:00:00,0.245,0.349,0.37799999999999995 +2015-01-08 09:00:00,0.245,0.35200000000000004,0.379 +2015-01-08 10:00:00,0.24600000000000002,0.355,0.379 +2015-01-08 11:00:00,0.248,0.359,0.379 +2015-01-08 12:00:00,0.249,0.361,0.379 +2015-01-08 13:00:00,0.24600000000000002,0.361,0.381 +2015-01-08 14:00:00,0.247,0.361,0.381 +2015-01-08 15:00:00,0.248,0.361,0.382 +2015-01-08 16:00:00,0.249,0.35,0.382 +2015-01-08 17:00:00,0.252,0.355,0.381 +2015-01-08 18:00:00,0.258,0.35600000000000004,0.38 +2015-01-08 19:00:00,0.259,0.35600000000000004,0.381 +2015-01-08 20:00:00,0.256,0.36200000000000004,0.382 +2015-01-08 21:00:00,0.253,0.364,0.38299999999999995 +2015-01-08 22:00:00,0.252,0.365,0.38299999999999995 +2015-01-08 23:00:00,0.252,0.365,0.38299999999999995 +2015-01-09 00:00:00,0.253,0.366,0.382 +2015-01-09 01:00:00,0.253,0.366,0.382 +2015-01-09 02:00:00,0.252,0.366,0.382 +2015-01-09 03:00:00,0.252,0.366,0.38299999999999995 +2015-01-09 04:00:00,0.252,0.366,0.38299999999999995 +2015-01-09 05:00:00,0.253,0.365,0.38299999999999995 +2015-01-09 06:00:00,0.255,0.365,0.382 +2015-01-09 07:00:00,0.257,0.365,0.382 +2015-01-09 08:00:00,0.258,0.365,0.382 +2015-01-09 09:00:00,0.258,0.365,0.382 +2015-01-09 10:00:00,0.258,0.365,0.382 +2015-01-09 11:00:00,0.258,0.365,0.382 +2015-01-09 12:00:00,0.258,0.365,0.382 +2015-01-09 13:00:00,0.258,0.363,0.382 +2015-01-09 14:00:00,0.258,0.363,0.381 +2015-01-09 15:00:00,0.258,0.363,0.381 +2015-01-09 16:00:00,0.258,0.363,0.381 +2015-01-09 17:00:00,0.257,0.363,0.381 +2015-01-09 18:00:00,0.256,0.363,0.382 +2015-01-09 19:00:00,0.252,0.36200000000000004,0.382 +2015-01-09 20:00:00,0.251,0.361,0.381 +2015-01-09 21:00:00,0.251,0.361,0.381 +2015-01-09 22:00:00,0.252,0.361,0.381 +2015-01-09 23:00:00,0.257,0.361,0.381 +2015-01-10 00:00:00,0.261,0.361,0.381 +2015-01-10 01:00:00,0.26,0.36,0.381 +2015-01-10 02:00:00,0.259,0.36,0.382 +2015-01-10 03:00:00,0.258,0.36,0.382 +2015-01-10 04:00:00,0.256,0.36,0.38299999999999995 +2015-01-10 05:00:00,0.256,0.354,0.38299999999999995 +2015-01-10 06:00:00,0.257,0.355,0.38299999999999995 +2015-01-10 07:00:00,0.259,0.35700000000000004,0.38299999999999995 +2015-01-10 08:00:00,0.261,0.358,0.38299999999999995 +2015-01-10 09:00:00,0.261,0.358,0.38299999999999995 +2015-01-10 10:00:00,0.261,0.358,0.38299999999999995 +2015-01-10 11:00:00,0.261,0.358,0.38299999999999995 +2015-01-10 12:00:00,0.261,0.358,0.38299999999999995 +2015-01-10 13:00:00,0.261,0.358,0.38299999999999995 +2015-01-10 14:00:00,0.261,0.358,0.38299999999999995 +2015-01-10 15:00:00,0.26,0.358,0.38299999999999995 +2015-01-10 16:00:00,0.257,0.35700000000000004,0.382 +2015-01-10 17:00:00,0.257,0.35700000000000004,0.381 +2015-01-10 18:00:00,0.261,0.35700000000000004,0.382 +2015-01-10 19:00:00,0.258,0.35700000000000004,0.38299999999999995 +2015-01-10 20:00:00,0.262,0.35700000000000004,0.38299999999999995 +2015-01-10 21:00:00,0.264,0.35600000000000004,0.38299999999999995 +2015-01-10 22:00:00,0.264,0.35600000000000004,0.38299999999999995 +2015-01-10 23:00:00,0.263,0.35600000000000004,0.38299999999999995 +2015-01-11 00:00:00,0.263,0.355,0.38299999999999995 +2015-01-11 01:00:00,0.262,0.355,0.38299999999999995 +2015-01-11 02:00:00,0.262,0.355,0.38299999999999995 +2015-01-11 03:00:00,0.261,0.355,0.38299999999999995 +2015-01-11 04:00:00,0.261,0.355,0.38299999999999995 +2015-01-11 05:00:00,0.26,0.355,0.38299999999999995 +2015-01-11 06:00:00,0.26,0.355,0.38299999999999995 +2015-01-11 07:00:00,0.26,0.355,0.38299999999999995 +2015-01-11 08:00:00,0.259,0.355,0.38299999999999995 +2015-01-11 09:00:00,0.259,0.355,0.38299999999999995 +2015-01-11 10:00:00,0.259,0.355,0.38299999999999995 +2015-01-11 11:00:00,0.258,0.355,0.38299999999999995 +2015-01-11 12:00:00,0.257,0.355,0.38299999999999995 +2015-01-11 13:00:00,0.257,0.355,0.38299999999999995 +2015-01-11 14:00:00,0.257,0.355,0.38299999999999995 +2015-01-11 15:00:00,0.257,0.355,0.38299999999999995 +2015-01-11 16:00:00,0.258,0.355,0.38299999999999995 +2015-01-11 17:00:00,0.258,0.355,0.38299999999999995 +2015-01-11 18:00:00,0.258,0.355,0.38299999999999995 +2015-01-11 19:00:00,0.257,0.355,0.38299999999999995 +2015-01-11 20:00:00,0.257,0.355,0.38299999999999995 +2015-01-11 21:00:00,0.256,0.355,0.38299999999999995 +2015-01-11 22:00:00,0.256,0.355,0.38299999999999995 +2015-01-11 23:00:00,0.255,0.355,0.38299999999999995 +2015-01-12 00:00:00,0.256,0.355,0.38299999999999995 +2015-01-12 01:00:00,0.256,0.355,0.38299999999999995 +2015-01-12 02:00:00,0.251,0.355,0.38299999999999995 +2015-01-12 03:00:00,0.251,0.354,0.38299999999999995 +2015-01-12 04:00:00,0.252,0.354,0.38299999999999995 +2015-01-12 05:00:00,0.253,0.353,0.38299999999999995 +2015-01-12 06:00:00,0.254,0.353,0.38299999999999995 +2015-01-12 07:00:00,0.254,0.353,0.38299999999999995 +2015-01-12 08:00:00,0.255,0.353,0.38299999999999995 +2015-01-12 09:00:00,0.255,0.355,0.38299999999999995 +2015-01-12 10:00:00,0.256,0.353,0.38299999999999995 +2015-01-12 11:00:00,0.256,0.35200000000000004,0.38299999999999995 +2015-01-12 12:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 13:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 14:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 15:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 16:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 17:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 18:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 19:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 20:00:00,0.255,0.35100000000000003,0.38299999999999995 +2015-01-12 21:00:00,0.255,0.35100000000000003,0.382 +2015-01-12 22:00:00,0.255,0.35100000000000003,0.382 +2015-01-12 23:00:00,0.255,0.35100000000000003,0.382 +2015-01-13 00:00:00,0.255,0.35100000000000003,0.382 +2015-01-13 01:00:00,0.255,0.35100000000000003,0.382 +2015-01-13 02:00:00,0.255,0.35100000000000003,0.382 +2015-01-13 03:00:00,0.255,0.35100000000000003,0.382 +2015-01-13 04:00:00,0.255,0.35,0.382 +2015-01-13 05:00:00,0.254,0.35,0.382 +2015-01-13 06:00:00,0.254,0.35,0.382 +2015-01-13 07:00:00,0.254,0.35,0.382 +2015-01-13 08:00:00,0.254,0.349,0.382 +2015-01-13 09:00:00,0.254,0.349,0.382 +2015-01-13 10:00:00,0.254,0.349,0.382 +2015-01-13 11:00:00,0.254,0.349,0.382 +2015-01-13 12:00:00,0.254,0.349,0.382 +2015-01-13 13:00:00,0.254,0.349,0.382 +2015-01-13 14:00:00,0.254,0.349,0.382 +2015-01-13 15:00:00,0.254,0.349,0.382 +2015-01-13 16:00:00,0.254,0.349,0.382 +2015-01-13 17:00:00,0.254,0.349,0.382 +2015-01-13 18:00:00,0.251,0.349,0.38299999999999995 +2015-01-13 19:00:00,0.249,0.349,0.382 +2015-01-13 20:00:00,0.248,0.349,0.382 +2015-01-13 21:00:00,0.248,0.349,0.38299999999999995 +2015-01-13 22:00:00,0.249,0.348,0.38299999999999995 +2015-01-13 23:00:00,0.25,0.348,0.38299999999999995 +2015-01-14 00:00:00,0.252,0.348,0.38299999999999995 +2015-01-14 01:00:00,0.252,0.348,0.38299999999999995 +2015-01-14 02:00:00,0.251,0.348,0.38299999999999995 +2015-01-14 03:00:00,0.251,0.348,0.38299999999999995 +2015-01-14 04:00:00,0.253,0.348,0.38299999999999995 +2015-01-14 05:00:00,0.251,0.348,0.382 +2015-01-14 06:00:00,0.25,0.348,0.38299999999999995 +2015-01-14 07:00:00,0.25,0.348,0.38299999999999995 +2015-01-14 08:00:00,0.25,0.348,0.38299999999999995 +2015-01-14 09:00:00,0.253,0.348,0.38299999999999995 +2015-01-14 10:00:00,0.255,0.348,0.38299999999999995 +2015-01-14 11:00:00,0.257,0.348,0.38299999999999995 +2015-01-14 12:00:00,0.256,0.348,0.38299999999999995 +2015-01-14 13:00:00,0.252,0.348,0.38299999999999995 +2015-01-14 14:00:00,0.252,0.348,0.38299999999999995 +2015-01-14 15:00:00,0.253,0.348,0.38299999999999995 +2015-01-14 16:00:00,0.256,0.348,0.38299999999999995 +2015-01-14 17:00:00,0.256,0.348,0.38299999999999995 +2015-01-14 18:00:00,0.256,0.348,0.38299999999999995 +2015-01-14 19:00:00,0.255,0.348,0.384 +2015-01-14 20:00:00,0.254,0.348,0.384 +2015-01-14 21:00:00,0.253,0.348,0.384 +2015-01-14 22:00:00,0.253,0.348,0.384 +2015-01-14 23:00:00,0.254,0.348,0.384 +2015-01-15 00:00:00,0.254,0.348,0.384 +2015-01-15 01:00:00,0.254,0.348,0.384 +2015-01-15 02:00:00,0.255,0.348,0.384 +2015-01-15 03:00:00,0.255,0.348,0.38299999999999995 +2015-01-15 04:00:00,0.256,0.348,0.38299999999999995 +2015-01-15 05:00:00,0.257,0.348,0.38299999999999995 +2015-01-15 06:00:00,0.257,0.348,0.38299999999999995 +2015-01-15 07:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 08:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 09:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 10:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 11:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 12:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 13:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 14:00:00,0.258,0.348,0.38299999999999995 +2015-01-15 15:00:00,0.258,0.348,0.382 +2015-01-15 16:00:00,0.258,0.348,0.382 +2015-01-15 17:00:00,0.257,0.348,0.382 +2015-01-15 18:00:00,0.257,0.34700000000000003,0.382 +2015-01-15 19:00:00,0.257,0.34700000000000003,0.382 +2015-01-15 20:00:00,0.257,0.34700000000000003,0.382 +2015-01-15 21:00:00,0.257,0.34700000000000003,0.382 +2015-01-15 22:00:00,0.257,0.34700000000000003,0.382 +2015-01-15 23:00:00,0.256,0.34600000000000003,0.382 +2015-01-16 00:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 01:00:00,0.255,0.34600000000000003,0.38299999999999995 +2015-01-16 02:00:00,0.251,0.34600000000000003,0.38299999999999995 +2015-01-16 03:00:00,0.251,0.34600000000000003,0.38299999999999995 +2015-01-16 04:00:00,0.253,0.34600000000000003,0.38299999999999995 +2015-01-16 05:00:00,0.253,0.34600000000000003,0.38299999999999995 +2015-01-16 06:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 07:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 08:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 09:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 10:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 11:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 12:00:00,0.255,0.34600000000000003,0.38299999999999995 +2015-01-16 13:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 14:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 15:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 16:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 17:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 18:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 19:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 20:00:00,0.254,0.34600000000000003,0.38299999999999995 +2015-01-16 21:00:00,0.253,0.34600000000000003,0.38299999999999995 +2015-01-16 22:00:00,0.253,0.345,0.38299999999999995 +2015-01-16 23:00:00,0.253,0.345,0.38299999999999995 +2015-01-17 00:00:00,0.253,0.345,0.38299999999999995 +2015-01-17 01:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 02:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 03:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 04:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 05:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 06:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 07:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 08:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 09:00:00,0.253,0.344,0.38299999999999995 +2015-01-17 10:00:00,0.254,0.344,0.38299999999999995 +2015-01-17 11:00:00,0.254,0.344,0.38299999999999995 +2015-01-17 12:00:00,0.254,0.344,0.38299999999999995 +2015-01-17 13:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 14:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 15:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 16:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 17:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 18:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 19:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 20:00:00,0.255,0.344,0.38299999999999995 +2015-01-17 21:00:00,0.254,0.344,0.38299999999999995 +2015-01-17 22:00:00,0.254,0.344,0.38299999999999995 +2015-01-17 23:00:00,0.254,0.344,0.38299999999999995 +2015-01-18 00:00:00,0.254,0.344,0.38299999999999995 +2015-01-18 01:00:00,0.254,0.344,0.38299999999999995 +2015-01-18 02:00:00,0.254,0.344,0.38299999999999995 +2015-01-18 03:00:00,0.254,0.344,0.382 +2015-01-18 04:00:00,0.254,0.344,0.382 +2015-01-18 05:00:00,0.253,0.344,0.382 +2015-01-18 06:00:00,0.253,0.344,0.382 +2015-01-18 07:00:00,0.253,0.344,0.382 +2015-01-18 08:00:00,0.253,0.344,0.382 +2015-01-18 09:00:00,0.253,0.344,0.382 +2015-01-18 10:00:00,0.253,0.344,0.382 +2015-01-18 11:00:00,0.253,0.344,0.381 +2015-01-18 12:00:00,0.253,0.344,0.381 +2015-01-18 13:00:00,0.253,0.344,0.381 +2015-01-18 14:00:00,0.253,0.34299999999999997,0.381 +2015-01-18 15:00:00,0.253,0.34299999999999997,0.381 +2015-01-18 16:00:00,0.253,0.344,0.381 +2015-01-18 17:00:00,0.253,0.344,0.381 +2015-01-18 18:00:00,0.253,0.344,0.381 +2015-01-18 19:00:00,0.253,0.344,0.381 +2015-01-18 20:00:00,0.253,0.344,0.381 +2015-01-18 21:00:00,0.253,0.344,0.381 +2015-01-18 22:00:00,0.253,0.34299999999999997,0.381 +2015-01-18 23:00:00,0.252,0.34299999999999997,0.381 +2015-01-19 00:00:00,0.253,0.34299999999999997,0.381 +2015-01-19 01:00:00,0.253,0.34299999999999997,0.381 +2015-01-19 02:00:00,0.252,0.34299999999999997,0.381 +2015-01-19 03:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 04:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 05:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 06:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 07:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 08:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 09:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 10:00:00,0.252,0.34299999999999997,0.381 +2015-01-19 11:00:00,0.251,0.34299999999999997,0.381 +2015-01-19 12:00:00,0.251,0.34299999999999997,0.381 +2015-01-19 13:00:00,0.252,0.342,0.38 +2015-01-19 14:00:00,0.252,0.33799999999999997,0.38 +2015-01-19 15:00:00,0.252,0.34,0.38 +2015-01-19 16:00:00,0.252,0.34299999999999997,0.38 +2015-01-19 17:00:00,0.252,0.344,0.38 +2015-01-19 18:00:00,0.252,0.344,0.38 +2015-01-19 19:00:00,0.252,0.34600000000000003,0.38 +2015-01-19 20:00:00,0.252,0.34600000000000003,0.38 +2015-01-19 21:00:00,0.252,0.34600000000000003,0.38 +2015-01-19 22:00:00,0.252,0.34600000000000003,0.38 +2015-01-19 23:00:00,0.252,0.34600000000000003,0.38 +2015-01-20 00:00:00,0.252,0.34600000000000003,0.38 +2015-01-20 01:00:00,0.252,0.34600000000000003,0.38 +2015-01-20 02:00:00,0.252,0.34600000000000003,0.379 +2015-01-20 03:00:00,0.252,0.344,0.379 +2015-01-20 04:00:00,0.252,0.342,0.379 +2015-01-20 05:00:00,0.252,0.341,0.379 +2015-01-20 06:00:00,0.252,0.341,0.379 +2015-01-20 07:00:00,0.252,0.341,0.379 +2015-01-20 08:00:00,0.252,0.342,0.379 +2015-01-20 09:00:00,0.252,0.34299999999999997,0.37799999999999995 +2015-01-20 10:00:00,0.252,0.344,0.37799999999999995 +2015-01-20 11:00:00,0.252,0.344,0.37799999999999995 +2015-01-20 12:00:00,0.252,0.345,0.37799999999999995 +2015-01-20 13:00:00,0.252,0.344,0.37799999999999995 +2015-01-20 14:00:00,0.251,0.34299999999999997,0.37799999999999995 +2015-01-20 15:00:00,0.251,0.33899999999999997,0.377 +2015-01-20 16:00:00,0.252,0.33899999999999997,0.377 +2015-01-20 17:00:00,0.252,0.36,0.377 +2015-01-20 18:00:00,0.252,0.366,0.377 +2015-01-20 19:00:00,0.252,0.368,0.377 +2015-01-20 20:00:00,0.252,0.368,0.377 +2015-01-20 21:00:00,0.252,0.366,0.376 +2015-01-20 22:00:00,0.251,0.361,0.376 +2015-01-20 23:00:00,0.251,0.361,0.376 +2015-01-21 00:00:00,0.251,0.361,0.376 +2015-01-21 01:00:00,0.251,0.361,0.374 +2015-01-21 02:00:00,0.251,0.361,0.37200000000000005 +2015-01-21 03:00:00,0.251,0.361,0.371 +2015-01-21 04:00:00,0.251,0.36,0.37 +2015-01-21 05:00:00,0.251,0.359,0.369 +2015-01-21 06:00:00,0.251,0.359,0.369 +2015-01-21 07:00:00,0.251,0.358,0.368 +2015-01-21 08:00:00,0.251,0.359,0.368 +2015-01-21 09:00:00,0.251,0.36,0.368 +2015-01-21 10:00:00,0.25,0.359,0.36700000000000005 +2015-01-21 11:00:00,0.25,0.355,0.36700000000000005 +2015-01-21 12:00:00,0.25,0.353,0.366 +2015-01-21 13:00:00,0.25,0.353,0.366 +2015-01-21 14:00:00,0.25,0.355,0.366 +2015-01-21 15:00:00,0.25,0.355,0.366 +2015-01-21 16:00:00,0.25,0.35600000000000004,0.366 +2015-01-21 17:00:00,0.25,0.35600000000000004,0.366 +2015-01-21 18:00:00,0.25,0.35600000000000004,0.365 +2015-01-21 19:00:00,0.25,0.35600000000000004,0.365 +2015-01-21 20:00:00,0.25,0.35600000000000004,0.365 +2015-01-21 21:00:00,0.25,0.35600000000000004,0.365 +2015-01-21 22:00:00,0.25,0.355,0.365 +2015-01-21 23:00:00,0.25,0.355,0.365 +2015-01-22 00:00:00,0.25,0.355,0.365 +2015-01-22 01:00:00,0.25,0.355,0.365 +2015-01-22 02:00:00,0.25,0.355,0.365 +2015-01-22 03:00:00,0.25,0.355,0.365 +2015-01-22 04:00:00,0.25,0.354,0.365 +2015-01-22 05:00:00,0.25,0.353,0.365 +2015-01-22 06:00:00,0.25,0.354,0.365 +2015-01-22 07:00:00,0.25,0.353,0.364 +2015-01-22 08:00:00,0.25,0.353,0.364 +2015-01-22 09:00:00,0.25,0.353,0.364 +2015-01-22 10:00:00,0.25,0.353,0.364 +2015-01-22 11:00:00,0.25,0.353,0.364 +2015-01-22 12:00:00,0.25,0.353,0.364 +2015-01-22 13:00:00,0.25,0.353,0.364 +2015-01-22 14:00:00,0.25,0.35100000000000003,0.364 +2015-01-22 15:00:00,0.25,0.35100000000000003,0.364 +2015-01-22 16:00:00,0.25,0.35100000000000003,0.364 +2015-01-22 17:00:00,0.25,0.35100000000000003,0.364 +2015-01-22 18:00:00,0.25,0.35100000000000003,0.364 +2015-01-22 19:00:00,0.25,0.35100000000000003,0.364 +2015-01-22 20:00:00,0.25,0.35200000000000004,0.364 +2015-01-22 21:00:00,0.25,0.345,0.364 +2015-01-22 22:00:00,0.25,0.34600000000000003,0.364 +2015-01-22 23:00:00,0.25,0.34299999999999997,0.364 +2015-01-23 00:00:00,0.25,0.355,0.363 +2015-01-23 01:00:00,0.25,0.36200000000000004,0.363 +2015-01-23 02:00:00,0.25,0.365,0.363 +2015-01-23 03:00:00,0.25,0.366,0.363 +2015-01-23 04:00:00,0.25,0.366,0.363 +2015-01-23 05:00:00,0.25,0.366,0.363 +2015-01-23 06:00:00,0.25,0.365,0.363 +2015-01-23 07:00:00,0.25,0.365,0.363 +2015-01-23 08:00:00,0.25,0.365,0.363 +2015-01-23 09:00:00,0.25,0.364,0.363 +2015-01-23 10:00:00,0.25,0.363,0.363 +2015-01-23 11:00:00,0.25,0.363,0.363 +2015-01-23 12:00:00,0.25,0.361,0.363 +2015-01-23 13:00:00,0.25,0.361,0.363 +2015-01-23 14:00:00,0.25,0.361,0.363 +2015-01-23 15:00:00,0.25,0.361,0.363 +2015-01-23 16:00:00,0.25,0.361,0.36200000000000004 +2015-01-23 17:00:00,0.25,0.361,0.36200000000000004 +2015-01-23 18:00:00,0.25,0.36,0.36200000000000004 +2015-01-23 19:00:00,0.25,0.359,0.36200000000000004 +2015-01-23 20:00:00,0.25,0.354,0.36200000000000004 +2015-01-23 21:00:00,0.25,0.353,0.36200000000000004 +2015-01-23 22:00:00,0.25,0.35,0.36200000000000004 +2015-01-23 23:00:00,0.25,0.35100000000000003,0.36200000000000004 +2015-01-24 00:00:00,0.25,0.358,0.36200000000000004 +2015-01-24 01:00:00,0.25,0.364,0.36200000000000004 +2015-01-24 02:00:00,0.25,0.361,0.36200000000000004 +2015-01-24 03:00:00,0.25,0.365,0.36200000000000004 +2015-01-24 04:00:00,0.25,0.368,0.36200000000000004 +2015-01-24 05:00:00,0.25,0.368,0.36200000000000004 +2015-01-24 06:00:00,0.25,0.368,0.36200000000000004 +2015-01-24 07:00:00,0.25,0.366,0.36200000000000004 +2015-01-24 08:00:00,0.249,0.374,0.36200000000000004 +2015-01-24 09:00:00,0.249,0.375,0.36200000000000004 +2015-01-24 10:00:00,0.249,0.375,0.36200000000000004 +2015-01-24 11:00:00,0.25,0.373,0.36200000000000004 +2015-01-24 12:00:00,0.25,0.37,0.36200000000000004 +2015-01-24 13:00:00,0.249,0.368,0.363 +2015-01-24 14:00:00,0.249,0.36700000000000005,0.364 +2015-01-24 15:00:00,0.249,0.366,0.364 +2015-01-24 16:00:00,0.249,0.368,0.364 +2015-01-24 17:00:00,0.25,0.368,0.363 +2015-01-24 18:00:00,0.249,0.368,0.363 +2015-01-24 19:00:00,0.25,0.368,0.363 +2015-01-24 20:00:00,0.249,0.366,0.363 +2015-01-24 21:00:00,0.25,0.366,0.36200000000000004 +2015-01-24 22:00:00,0.25,0.366,0.363 +2015-01-24 23:00:00,0.25,0.366,0.36200000000000004 +2015-01-25 00:00:00,0.25,0.365,0.36200000000000004 +2015-01-25 01:00:00,0.25,0.365,0.363 +2015-01-25 02:00:00,0.25,0.365,0.358 +2015-01-25 03:00:00,0.25,0.363,0.35 +2015-01-25 04:00:00,0.25,0.363,0.35 +2015-01-25 05:00:00,0.25,0.363,0.35 +2015-01-25 06:00:00,0.249,0.361,0.35 +2015-01-25 07:00:00,0.249,0.361,0.35 +2015-01-25 08:00:00,0.249,0.361,0.35 +2015-01-25 09:00:00,0.24600000000000002,0.361,0.35200000000000004 +2015-01-25 10:00:00,0.24600000000000002,0.361,0.35200000000000004 +2015-01-25 11:00:00,0.24600000000000002,0.36,0.35200000000000004 +2015-01-25 12:00:00,0.247,0.359,0.35100000000000003 +2015-01-25 13:00:00,0.248,0.358,0.35100000000000003 +2015-01-25 14:00:00,0.249,0.358,0.35100000000000003 +2015-01-25 15:00:00,0.249,0.358,0.35100000000000003 +2015-01-25 16:00:00,0.25,0.358,0.35100000000000003 +2015-01-25 17:00:00,0.251,0.358,0.35100000000000003 +2015-01-25 18:00:00,0.252,0.35700000000000004,0.35100000000000003 +2015-01-25 19:00:00,0.252,0.35600000000000004,0.35200000000000004 +2015-01-25 20:00:00,0.252,0.35600000000000004,0.35200000000000004 +2015-01-25 21:00:00,0.252,0.35600000000000004,0.35200000000000004 +2015-01-25 22:00:00,0.253,0.35600000000000004,0.35200000000000004 +2015-01-25 23:00:00,0.253,0.35600000000000004,0.35200000000000004 +2015-01-26 00:00:00,0.25,0.355,0.354 +2015-01-26 01:00:00,0.249,0.355,0.354 +2015-01-26 02:00:00,0.249,0.355,0.355 +2015-01-26 03:00:00,0.249,0.355,0.355 +2015-01-26 04:00:00,0.25,0.355,0.355 +2015-01-26 05:00:00,0.25,0.355,0.355 +2015-01-26 06:00:00,0.251,0.355,0.355 +2015-01-26 07:00:00,0.252,0.355,0.355 +2015-01-26 08:00:00,0.252,0.354,0.355 +2015-01-26 09:00:00,0.253,0.353,0.355 +2015-01-26 10:00:00,0.252,0.353,0.35600000000000004 +2015-01-26 11:00:00,0.251,0.353,0.35700000000000004 +2015-01-26 12:00:00,0.251,0.353,0.35700000000000004 +2015-01-26 13:00:00,0.252,0.35100000000000003,0.36 +2015-01-26 14:00:00,0.256,0.35100000000000003,0.365 +2015-01-26 15:00:00,0.258,0.35100000000000003,0.371 +2015-01-26 16:00:00,0.258,0.35100000000000003,0.37200000000000005 +2015-01-26 17:00:00,0.257,0.35100000000000003,0.37200000000000005 +2015-01-26 18:00:00,0.257,0.35100000000000003,0.37200000000000005 +2015-01-26 19:00:00,0.257,0.35100000000000003,0.37200000000000005 +2015-01-26 20:00:00,0.256,0.35,0.37200000000000005 +2015-01-26 21:00:00,0.256,0.35,0.37200000000000005 +2015-01-26 22:00:00,0.255,0.35,0.37200000000000005 +2015-01-26 23:00:00,0.255,0.349,0.373 +2015-01-27 00:00:00,0.255,0.349,0.373 +2015-01-27 01:00:00,0.255,0.349,0.376 +2015-01-27 02:00:00,0.255,0.349,0.379 +2015-01-27 03:00:00,0.255,0.349,0.379 +2015-01-27 04:00:00,0.255,0.349,0.379 +2015-01-27 05:00:00,0.256,0.349,0.37799999999999995 +2015-01-27 06:00:00,0.258,0.349,0.37799999999999995 +2015-01-27 07:00:00,0.257,0.348,0.37799999999999995 +2015-01-27 08:00:00,0.254,0.348,0.37799999999999995 +2015-01-27 09:00:00,0.253,0.348,0.379 +2015-01-27 10:00:00,0.253,0.348,0.379 +2015-01-27 11:00:00,0.254,0.348,0.37799999999999995 +2015-01-27 12:00:00,0.255,0.348,0.37799999999999995 +2015-01-27 13:00:00,0.257,0.348,0.377 +2015-01-27 14:00:00,0.258,0.34600000000000003,0.377 +2015-01-27 15:00:00,0.258,0.348,0.377 +2015-01-27 16:00:00,0.258,0.348,0.377 +2015-01-27 17:00:00,0.258,0.348,0.377 +2015-01-27 18:00:00,0.258,0.348,0.376 +2015-01-27 19:00:00,0.258,0.348,0.376 +2015-01-27 20:00:00,0.258,0.348,0.376 +2015-01-27 21:00:00,0.258,0.348,0.376 +2015-01-27 22:00:00,0.257,0.348,0.376 +2015-01-27 23:00:00,0.257,0.348,0.376 +2015-01-28 00:00:00,0.257,0.348,0.376 +2015-01-28 01:00:00,0.257,0.348,0.375 +2015-01-28 02:00:00,0.257,0.348,0.375 +2015-01-28 03:00:00,0.257,0.348,0.375 +2015-01-28 04:00:00,0.257,0.348,0.375 +2015-01-28 05:00:00,0.257,0.34700000000000003,0.375 +2015-01-28 06:00:00,0.257,0.34700000000000003,0.374 +2015-01-28 07:00:00,0.256,0.34700000000000003,0.374 +2015-01-28 08:00:00,0.257,0.34700000000000003,0.374 +2015-01-28 09:00:00,0.257,0.34700000000000003,0.373 +2015-01-28 10:00:00,0.257,0.34700000000000003,0.373 +2015-01-28 11:00:00,0.257,0.34600000000000003,0.373 +2015-01-28 12:00:00,0.257,0.34700000000000003,0.373 +2015-01-28 13:00:00,0.257,0.34600000000000003,0.373 +2015-01-28 14:00:00,0.257,0.34600000000000003,0.373 +2015-01-28 15:00:00,0.257,0.34600000000000003,0.373 +2015-01-28 16:00:00,0.256,0.34600000000000003,0.373 +2015-01-28 17:00:00,0.254,0.34600000000000003,0.375 +2015-01-28 18:00:00,0.251,0.34600000000000003,0.376 +2015-01-28 19:00:00,0.251,0.34600000000000003,0.376 +2015-01-28 20:00:00,0.253,0.34600000000000003,0.37799999999999995 +2015-01-28 21:00:00,0.253,0.34600000000000003,0.379 +2015-01-28 22:00:00,0.254,0.34600000000000003,0.38 +2015-01-28 23:00:00,0.255,0.34600000000000003,0.379 +2015-01-29 00:00:00,0.257,0.34600000000000003,0.379 +2015-01-29 01:00:00,0.258,0.34600000000000003,0.379 +2015-01-29 02:00:00,0.259,0.34600000000000003,0.37799999999999995 +2015-01-29 03:00:00,0.261,0.345,0.37799999999999995 +2015-01-29 04:00:00,0.261,0.344,0.37799999999999995 +2015-01-29 05:00:00,0.26,0.344,0.37799999999999995 +2015-01-29 06:00:00,0.26,0.344,0.37799999999999995 +2015-01-29 07:00:00,0.26,0.344,0.37799999999999995 +2015-01-29 08:00:00,0.259,0.344,0.37799999999999995 +2015-01-29 09:00:00,0.259,0.344,0.37799999999999995 +2015-01-29 10:00:00,0.259,0.344,0.37799999999999995 +2015-01-29 11:00:00,0.259,0.344,0.37799999999999995 +2015-01-29 12:00:00,0.259,0.344,0.37799999999999995 +2015-01-29 13:00:00,0.259,0.344,0.37799999999999995 +2015-01-29 14:00:00,0.259,0.344,0.377 +2015-01-29 15:00:00,0.259,0.344,0.377 +2015-01-29 16:00:00,0.258,0.344,0.377 +2015-01-29 17:00:00,0.254,0.344,0.37799999999999995 +2015-01-29 18:00:00,0.253,0.344,0.379 +2015-01-29 19:00:00,0.254,0.344,0.379 +2015-01-29 20:00:00,0.255,0.344,0.37799999999999995 +2015-01-29 21:00:00,0.256,0.34299999999999997,0.37799999999999995 +2015-01-29 22:00:00,0.256,0.34299999999999997,0.37799999999999995 +2015-01-29 23:00:00,0.258,0.34299999999999997,0.37799999999999995 +2015-01-30 00:00:00,0.259,0.34299999999999997,0.37799999999999995 +2015-01-30 01:00:00,0.259,0.34299999999999997,0.37799999999999995 +2015-01-30 02:00:00,0.259,0.34299999999999997,0.37799999999999995 +2015-01-30 03:00:00,0.258,0.349,0.37799999999999995 +2015-01-30 04:00:00,0.258,0.35,0.37799999999999995 +2015-01-30 05:00:00,0.258,0.35100000000000003,0.379 +2015-01-30 06:00:00,0.262,0.348,0.379 +2015-01-30 07:00:00,0.262,0.349,0.379 +2015-01-30 08:00:00,0.261,0.349,0.379 +2015-01-30 09:00:00,0.256,0.349,0.379 +2015-01-30 10:00:00,0.255,0.349,0.379 +2015-01-30 11:00:00,0.255,0.349,0.379 +2015-01-30 12:00:00,0.256,0.35,0.379 +2015-01-30 13:00:00,0.259,0.35100000000000003,0.379 +2015-01-30 14:00:00,0.261,0.35,0.379 +2015-01-30 15:00:00,0.261,0.35,0.379 +2015-01-30 16:00:00,0.261,0.35,0.379 +2015-01-30 17:00:00,0.261,0.35,0.379 +2015-01-30 18:00:00,0.261,0.35100000000000003,0.379 +2015-01-30 19:00:00,0.261,0.35100000000000003,0.379 +2015-01-30 20:00:00,0.26,0.35200000000000004,0.379 +2015-01-30 21:00:00,0.26,0.35100000000000003,0.379 +2015-01-30 22:00:00,0.26,0.35100000000000003,0.379 +2015-01-30 23:00:00,0.26,0.35,0.379 +2015-01-31 00:00:00,0.26,0.35,0.379 +2015-01-31 01:00:00,0.259,0.35100000000000003,0.379 +2015-01-31 02:00:00,0.259,0.35,0.379 +2015-01-31 03:00:00,0.259,0.35100000000000003,0.379 +2015-01-31 04:00:00,0.259,0.35100000000000003,0.379 +2015-01-31 05:00:00,0.259,0.35,0.379 +2015-01-31 06:00:00,0.258,0.35,0.379 +2015-01-31 07:00:00,0.258,0.35,0.379 +2015-01-31 08:00:00,0.258,0.349,0.379 +2015-01-31 09:00:00,0.258,0.344,0.379 +2015-01-31 10:00:00,0.258,0.34299999999999997,0.379 +2015-01-31 11:00:00,0.258,0.345,0.379 +2015-01-31 12:00:00,0.258,0.34700000000000003,0.379 +2015-01-31 13:00:00,0.258,0.34700000000000003,0.379 +2015-01-31 14:00:00,0.258,0.348,0.379 +2015-01-31 15:00:00,0.258,0.348,0.379 +2015-01-31 16:00:00,0.258,0.348,0.379 +2015-01-31 17:00:00,0.257,0.345,0.379 +2015-01-31 18:00:00,0.257,0.341,0.379 +2015-01-31 19:00:00,0.257,0.341,0.379 +2015-01-31 20:00:00,0.257,0.33899999999999997,0.379 +2015-01-31 21:00:00,0.257,0.34,0.379 +2015-01-31 22:00:00,0.257,0.34,0.379 +2015-01-31 23:00:00,0.256,0.34,0.379 +2015-02-01 00:00:00,0.256,0.33899999999999997,0.379 +2015-02-01 01:00:00,0.256,0.33899999999999997,0.379 +2015-02-01 02:00:00,0.256,0.33899999999999997,0.379 +2015-02-01 03:00:00,0.256,0.33899999999999997,0.379 +2015-02-01 04:00:00,0.255,0.33899999999999997,0.379 +2015-02-01 05:00:00,0.255,0.33899999999999997,0.379 +2015-02-01 06:00:00,0.255,0.33899999999999997,0.379 +2015-02-01 07:00:00,0.255,0.33899999999999997,0.38 +2015-02-01 08:00:00,0.255,0.33899999999999997,0.379 +2015-02-01 09:00:00,0.254,0.33899999999999997,0.38 +2015-02-01 10:00:00,0.253,0.33899999999999997,0.38 +2015-02-01 11:00:00,0.254,0.33899999999999997,0.38 +2015-02-01 12:00:00,0.254,0.33899999999999997,0.379 +2015-02-01 13:00:00,0.254,0.33899999999999997,0.379 +2015-02-01 14:00:00,0.254,0.33799999999999997,0.379 +2015-02-01 15:00:00,0.254,0.33799999999999997,0.379 +2015-02-01 16:00:00,0.254,0.33899999999999997,0.379 +2015-02-01 17:00:00,0.254,0.33899999999999997,0.379 +2015-02-01 18:00:00,0.254,0.33799999999999997,0.379 +2015-02-01 19:00:00,0.254,0.33799999999999997,0.37799999999999995 +2015-02-01 20:00:00,0.254,0.33799999999999997,0.37799999999999995 +2015-02-01 21:00:00,0.254,0.33799999999999997,0.37799999999999995 +2015-02-01 22:00:00,0.254,0.33799999999999997,0.37799999999999995 +2015-02-01 23:00:00,0.254,0.33799999999999997,0.37799999999999995 +2015-02-02 00:00:00,0.254,0.33799999999999997,0.37799999999999995 +2015-02-02 01:00:00,0.254,0.33799999999999997,0.377 +2015-02-02 02:00:00,0.254,0.33799999999999997,0.377 +2015-02-02 03:00:00,0.254,0.33799999999999997,0.377 +2015-02-02 04:00:00,0.254,0.33799999999999997,0.377 +2015-02-02 05:00:00,0.254,0.33799999999999997,0.377 +2015-02-02 06:00:00,0.254,0.33799999999999997,0.377 +2015-02-02 07:00:00,0.254,0.33799999999999997,0.377 +2015-02-02 08:00:00,0.253,0.33799999999999997,0.377 +2015-02-02 09:00:00,0.252,0.33799999999999997,0.377 +2015-02-02 10:00:00,0.252,0.33799999999999997,0.377 +2015-02-02 11:00:00,0.252,0.33799999999999997,0.377 +2015-02-02 12:00:00,0.253,0.33799999999999997,0.376 +2015-02-02 13:00:00,0.253,0.337,0.375 +2015-02-02 14:00:00,0.254,0.337,0.375 +2015-02-02 15:00:00,0.254,0.337,0.375 +2015-02-02 16:00:00,0.254,0.337,0.375 +2015-02-02 17:00:00,0.254,0.337,0.375 +2015-02-02 18:00:00,0.254,0.337,0.375 +2015-02-02 19:00:00,0.254,0.336,0.375 +2015-02-02 20:00:00,0.254,0.336,0.375 +2015-02-02 21:00:00,0.254,0.336,0.374 +2015-02-02 22:00:00,0.254,0.337,0.374 +2015-02-02 23:00:00,0.254,0.337,0.374 +2015-02-03 00:00:00,0.254,0.337,0.374 +2015-02-03 01:00:00,0.254,0.336,0.373 +2015-02-03 02:00:00,0.254,0.336,0.371 +2015-02-03 03:00:00,0.254,0.336,0.37 +2015-02-03 04:00:00,0.254,0.336,0.369 +2015-02-03 05:00:00,0.254,0.336,0.368 +2015-02-03 06:00:00,0.254,0.336,0.36700000000000005 +2015-02-03 07:00:00,0.254,0.336,0.36700000000000005 +2015-02-03 08:00:00,0.254,0.336,0.366 +2015-02-03 09:00:00,0.253,0.336,0.366 +2015-02-03 10:00:00,0.254,0.336,0.365 +2015-02-03 11:00:00,0.253,0.336,0.365 +2015-02-03 12:00:00,0.253,0.336,0.365 +2015-02-03 13:00:00,0.253,0.336,0.365 +2015-02-03 14:00:00,0.253,0.336,0.365 +2015-02-03 15:00:00,0.253,0.336,0.365 +2015-02-03 16:00:00,0.253,0.336,0.365 +2015-02-03 17:00:00,0.253,0.336,0.365 +2015-02-03 18:00:00,0.253,0.336,0.364 +2015-02-03 19:00:00,0.253,0.336,0.364 +2015-02-03 20:00:00,0.253,0.336,0.364 +2015-02-03 21:00:00,0.253,0.335,0.364 +2015-02-03 22:00:00,0.253,0.335,0.363 +2015-02-03 23:00:00,0.253,0.335,0.363 +2015-02-04 00:00:00,0.253,0.336,0.363 +2015-02-04 01:00:00,0.253,0.336,0.363 +2015-02-04 02:00:00,0.253,0.336,0.363 +2015-02-04 03:00:00,0.253,0.336,0.363 +2015-02-04 04:00:00,0.253,0.336,0.36200000000000004 +2015-02-04 05:00:00,0.253,0.336,0.36200000000000004 +2015-02-04 06:00:00,0.253,0.336,0.36200000000000004 +2015-02-04 07:00:00,0.252,0.336,0.36200000000000004 +2015-02-04 08:00:00,0.252,0.335,0.36200000000000004 +2015-02-04 09:00:00,0.252,0.336,0.36200000000000004 +2015-02-04 10:00:00,0.252,0.335,0.36200000000000004 +2015-02-04 11:00:00,0.252,0.33399999999999996,0.36200000000000004 +2015-02-04 12:00:00,0.252,0.33399999999999996,0.361 +2015-02-04 13:00:00,0.252,0.335,0.361 +2015-02-04 14:00:00,0.252,0.33399999999999996,0.361 +2015-02-04 15:00:00,0.252,0.33399999999999996,0.361 +2015-02-04 16:00:00,0.252,0.33399999999999996,0.361 +2015-02-04 17:00:00,0.252,0.33399999999999996,0.361 +2015-02-04 18:00:00,0.251,0.33399999999999996,0.361 +2015-02-04 19:00:00,0.251,0.33399999999999996,0.361 +2015-02-04 20:00:00,0.251,0.33399999999999996,0.361 +2015-02-04 21:00:00,0.251,0.33399999999999996,0.361 +2015-02-04 22:00:00,0.251,0.33399999999999996,0.361 +2015-02-04 23:00:00,0.251,0.33399999999999996,0.361 +2015-02-05 00:00:00,0.251,0.33399999999999996,0.36 +2015-02-05 01:00:00,0.251,0.33399999999999996,0.36 +2015-02-05 02:00:00,0.251,0.33399999999999996,0.36 +2015-02-05 03:00:00,0.251,0.33399999999999996,0.361 +2015-02-05 04:00:00,0.251,0.33399999999999996,0.36 +2015-02-05 05:00:00,0.251,0.33399999999999996,0.361 +2015-02-05 06:00:00,0.251,0.33399999999999996,0.361 +2015-02-05 07:00:00,0.251,0.33399999999999996,0.36 +2015-02-05 08:00:00,0.25,0.33399999999999996,0.36 +2015-02-05 09:00:00,0.25,0.33399999999999996,0.36 +2015-02-05 10:00:00,0.25,0.33399999999999996,0.36 +2015-02-05 11:00:00,0.25,0.33399999999999996,0.36 +2015-02-05 12:00:00,0.25,0.33399999999999996,0.36 +2015-02-05 13:00:00,0.25,0.33399999999999996,0.36 +2015-02-05 14:00:00,0.25,0.33399999999999996,0.36 +2015-02-05 15:00:00,0.25,0.336,0.36 +2015-02-05 16:00:00,0.25,0.33799999999999997,0.36 +2015-02-05 17:00:00,0.25,0.33799999999999997,0.36 +2015-02-05 18:00:00,0.25,0.33799999999999997,0.36 +2015-02-05 19:00:00,0.25,0.33799999999999997,0.36 +2015-02-05 20:00:00,0.25,0.33799999999999997,0.36 +2015-02-05 21:00:00,0.25,0.33799999999999997,0.36 +2015-02-05 22:00:00,0.25,0.33799999999999997,0.36 +2015-02-05 23:00:00,0.249,0.33799999999999997,0.353 +2015-02-06 00:00:00,0.249,0.33799999999999997,0.35200000000000004 +2015-02-06 01:00:00,0.249,0.33799999999999997,0.35200000000000004 +2015-02-06 02:00:00,0.249,0.33799999999999997,0.35200000000000004 +2015-02-06 03:00:00,0.249,0.33799999999999997,0.35200000000000004 +2015-02-06 04:00:00,0.249,0.33799999999999997,0.35200000000000004 +2015-02-06 05:00:00,0.249,0.33799999999999997,0.35200000000000004 +2015-02-06 06:00:00,0.249,0.33799999999999997,0.35200000000000004 +2015-02-06 07:00:00,0.249,0.33799999999999997,0.35100000000000003 +2015-02-06 08:00:00,0.249,0.33799999999999997,0.35100000000000003 +2015-02-06 09:00:00,0.249,0.33799999999999997,0.35100000000000003 +2015-02-06 10:00:00,0.249,0.33799999999999997,0.35100000000000003 +2015-02-06 11:00:00,0.249,0.33799999999999997,0.35100000000000003 +2015-02-06 12:00:00,0.249,0.33799999999999997,0.35100000000000003 +2015-02-06 13:00:00,0.248,0.33799999999999997,0.35100000000000003 +2015-02-06 14:00:00,0.248,0.33799999999999997,0.35100000000000003 +2015-02-06 15:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 16:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 17:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 18:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 19:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 20:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 21:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 22:00:00,0.248,0.33799999999999997,0.35 +2015-02-06 23:00:00,0.248,0.33799999999999997,0.35 +2015-02-07 00:00:00,0.248,0.33799999999999997,0.35 +2015-02-07 01:00:00,0.248,0.33799999999999997,0.35 +2015-02-07 02:00:00,0.248,0.33799999999999997,0.349 +2015-02-07 03:00:00,0.247,0.33799999999999997,0.349 +2015-02-07 04:00:00,0.247,0.33799999999999997,0.349 +2015-02-07 05:00:00,0.247,0.33799999999999997,0.349 +2015-02-07 06:00:00,0.247,0.33799999999999997,0.349 +2015-02-07 07:00:00,0.247,0.33799999999999997,0.348 +2015-02-07 08:00:00,0.247,0.33799999999999997,0.348 +2015-02-07 09:00:00,0.247,0.33799999999999997,0.348 +2015-02-07 10:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 11:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 12:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-07 13:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-07 14:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 15:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 16:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 17:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 18:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 19:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 20:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 21:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 22:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-07 23:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 00:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 01:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-08 02:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-08 03:00:00,0.244,0.33799999999999997,0.35100000000000003 +2015-02-08 04:00:00,0.244,0.33799999999999997,0.35100000000000003 +2015-02-08 05:00:00,0.245,0.33799999999999997,0.35100000000000003 +2015-02-08 06:00:00,0.24600000000000002,0.33799999999999997,0.35100000000000003 +2015-02-08 07:00:00,0.24600000000000002,0.33799999999999997,0.35 +2015-02-08 08:00:00,0.24600000000000002,0.33799999999999997,0.35 +2015-02-08 09:00:00,0.24600000000000002,0.33799999999999997,0.35 +2015-02-08 10:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-08 11:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-08 12:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-08 13:00:00,0.24600000000000002,0.33799999999999997,0.349 +2015-02-08 14:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 15:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 16:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 17:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 18:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 19:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 20:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 21:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 22:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-08 23:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 00:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 01:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 02:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 03:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 04:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 05:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 06:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 07:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 08:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 09:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 10:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 11:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 12:00:00,0.24600000000000002,0.337,0.348 +2015-02-09 13:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 14:00:00,0.24600000000000002,0.33799999999999997,0.348 +2015-02-09 15:00:00,0.24600000000000002,0.336,0.348 +2015-02-09 16:00:00,0.24600000000000002,0.337,0.349 +2015-02-09 17:00:00,0.24600000000000002,0.336,0.349 +2015-02-09 18:00:00,0.24600000000000002,0.336,0.349 +2015-02-09 19:00:00,0.24600000000000002,0.336,0.349 +2015-02-09 20:00:00,0.24600000000000002,0.337,0.349 +2015-02-09 21:00:00,0.247,0.336,0.349 +2015-02-09 22:00:00,0.24600000000000002,0.336,0.35 +2015-02-09 23:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 00:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 01:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 02:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 03:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 04:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 05:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 06:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 07:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 08:00:00,0.24600000000000002,0.336,0.35100000000000003 +2015-02-10 09:00:00,0.24600000000000002,0.336,0.35 +2015-02-10 10:00:00,0.24600000000000002,0.336,0.35 +2015-02-10 11:00:00,0.247,0.336,0.35 +2015-02-10 12:00:00,0.248,0.336,0.35 +2015-02-10 13:00:00,0.248,0.336,0.349 +2015-02-10 14:00:00,0.248,0.336,0.349 +2015-02-10 15:00:00,0.248,0.336,0.349 +2015-02-10 16:00:00,0.248,0.336,0.349 +2015-02-10 17:00:00,0.248,0.336,0.349 +2015-02-10 18:00:00,0.248,0.336,0.349 +2015-02-10 19:00:00,0.248,0.336,0.349 +2015-02-10 20:00:00,0.248,0.336,0.349 +2015-02-10 21:00:00,0.248,0.335,0.349 +2015-02-10 22:00:00,0.248,0.335,0.349 +2015-02-10 23:00:00,0.248,0.33399999999999996,0.349 +2015-02-11 00:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 01:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 02:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 03:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 04:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 05:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 06:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 07:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 08:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 09:00:00,0.248,0.33399999999999996,0.348 +2015-02-11 10:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 11:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 12:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 13:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 14:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 15:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 16:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 17:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 18:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 19:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 20:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 21:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 22:00:00,0.249,0.33399999999999996,0.348 +2015-02-11 23:00:00,0.249,0.335,0.348 +2015-02-12 00:00:00,0.249,0.336,0.348 +2015-02-12 01:00:00,0.249,0.336,0.348 +2015-02-12 02:00:00,0.249,0.33399999999999996,0.348 +2015-02-12 03:00:00,0.249,0.336,0.348 +2015-02-12 04:00:00,0.249,0.335,0.348 +2015-02-12 05:00:00,0.249,0.335,0.348 +2015-02-12 06:00:00,0.249,0.335,0.348 +2015-02-12 07:00:00,0.249,0.335,0.348 +2015-02-12 08:00:00,0.249,0.33399999999999996,0.348 +2015-02-12 09:00:00,0.249,0.335,0.348 +2015-02-12 10:00:00,0.249,0.335,0.348 +2015-02-12 11:00:00,0.249,0.335,0.348 +2015-02-12 12:00:00,0.249,0.335,0.348 +2015-02-12 13:00:00,0.249,0.335,0.348 +2015-02-12 14:00:00,0.249,0.335,0.348 +2015-02-12 15:00:00,0.249,0.335,0.348 +2015-02-12 16:00:00,0.249,0.335,0.348 +2015-02-12 17:00:00,0.249,0.33399999999999996,0.348 +2015-02-12 18:00:00,0.249,0.33399999999999996,0.348 +2015-02-12 19:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-12 20:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-12 21:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-12 22:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-12 23:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 00:00:00,0.249,0.335,0.34700000000000003 +2015-02-13 01:00:00,0.249,0.335,0.34700000000000003 +2015-02-13 02:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 03:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 04:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 05:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 06:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 07:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 08:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 09:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 10:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 11:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 12:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 13:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 14:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 15:00:00,0.249,0.335,0.34700000000000003 +2015-02-13 16:00:00,0.249,0.335,0.34700000000000003 +2015-02-13 17:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 18:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 19:00:00,0.249,0.33399999999999996,0.34700000000000003 +2015-02-13 20:00:00,0.249,0.335,0.34700000000000003 +2015-02-13 21:00:00,0.249,0.335,0.34700000000000003 +2015-02-13 22:00:00,0.249,0.335,0.34700000000000003 +2015-02-13 23:00:00,0.249,0.335,0.34700000000000003 +2015-02-14 00:00:00,0.249,0.335,0.34700000000000003 +2015-02-14 01:00:00,0.249,0.335,0.34700000000000003 +2015-02-14 02:00:00,0.249,0.335,0.34700000000000003 +2015-02-14 03:00:00,0.249,0.336,0.34700000000000003 +2015-02-14 04:00:00,0.249,0.336,0.34700000000000003 +2015-02-14 05:00:00,0.249,0.336,0.34600000000000003 +2015-02-14 06:00:00,0.249,0.336,0.34600000000000003 +2015-02-14 07:00:00,0.249,0.336,0.34600000000000003 +2015-02-14 08:00:00,0.248,0.336,0.34600000000000003 +2015-02-14 09:00:00,0.249,0.336,0.34600000000000003 +2015-02-14 10:00:00,0.248,0.336,0.34600000000000003 +2015-02-14 11:00:00,0.248,0.336,0.34600000000000003 +2015-02-14 12:00:00,0.248,0.335,0.34600000000000003 +2015-02-14 13:00:00,0.248,0.335,0.34600000000000003 +2015-02-14 14:00:00,0.248,0.335,0.34600000000000003 +2015-02-14 15:00:00,0.248,0.33399999999999996,0.34600000000000003 +2015-02-14 16:00:00,0.248,0.33399999999999996,0.34600000000000003 +2015-02-14 17:00:00,0.248,0.335,0.34600000000000003 +2015-02-14 18:00:00,0.248,0.336,0.34600000000000003 +2015-02-14 19:00:00,0.248,0.335,0.34600000000000003 +2015-02-14 20:00:00,0.248,0.335,0.34600000000000003 +2015-02-14 21:00:00,0.248,0.336,0.34600000000000003 +2015-02-14 22:00:00,0.248,0.336,0.34600000000000003 +2015-02-14 23:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 00:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 01:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 02:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 03:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 04:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 05:00:00,0.248,0.336,0.345 +2015-02-15 06:00:00,0.248,0.336,0.345 +2015-02-15 07:00:00,0.248,0.336,0.345 +2015-02-15 08:00:00,0.248,0.336,0.345 +2015-02-15 09:00:00,0.248,0.336,0.345 +2015-02-15 10:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 11:00:00,0.248,0.336,0.348 +2015-02-15 12:00:00,0.248,0.336,0.34700000000000003 +2015-02-15 13:00:00,0.248,0.336,0.34700000000000003 +2015-02-15 14:00:00,0.248,0.336,0.34600000000000003 +2015-02-15 15:00:00,0.248,0.336,0.345 +2015-02-15 16:00:00,0.247,0.336,0.345 +2015-02-15 17:00:00,0.247,0.336,0.345 +2015-02-15 18:00:00,0.247,0.336,0.345 +2015-02-15 19:00:00,0.248,0.336,0.345 +2015-02-15 20:00:00,0.247,0.336,0.345 +2015-02-15 21:00:00,0.248,0.336,0.345 +2015-02-15 22:00:00,0.248,0.336,0.345 +2015-02-15 23:00:00,0.247,0.336,0.344 +2015-02-16 00:00:00,0.247,0.336,0.344 +2015-02-16 01:00:00,0.247,0.336,0.344 +2015-02-16 02:00:00,0.247,0.336,0.344 +2015-02-16 03:00:00,0.247,0.337,0.344 +2015-02-16 04:00:00,0.247,0.337,0.344 +2015-02-16 05:00:00,0.247,0.337,0.344 +2015-02-16 06:00:00,0.247,0.337,0.344 +2015-02-16 07:00:00,0.247,0.337,0.344 +2015-02-16 08:00:00,0.247,0.337,0.344 +2015-02-16 09:00:00,0.247,0.337,0.344 +2015-02-16 10:00:00,0.247,0.337,0.344 +2015-02-16 11:00:00,0.248,0.337,0.345 +2015-02-16 12:00:00,0.248,0.337,0.345 +2015-02-16 13:00:00,0.248,0.336,0.345 +2015-02-16 14:00:00,0.247,0.336,0.345 +2015-02-16 15:00:00,0.247,0.336,0.344 +2015-02-16 16:00:00,0.247,0.336,0.344 +2015-02-16 17:00:00,0.247,0.336,0.344 +2015-02-16 18:00:00,0.247,0.336,0.344 +2015-02-16 19:00:00,0.247,0.336,0.344 +2015-02-16 20:00:00,0.247,0.336,0.344 +2015-02-16 21:00:00,0.247,0.336,0.344 +2015-02-16 22:00:00,0.247,0.336,0.344 +2015-02-16 23:00:00,0.247,0.336,0.344 +2015-02-17 00:00:00,0.247,0.336,0.344 +2015-02-17 01:00:00,0.247,0.336,0.344 +2015-02-17 02:00:00,0.247,0.336,0.344 +2015-02-17 03:00:00,0.247,0.336,0.344 +2015-02-17 04:00:00,0.247,0.336,0.344 +2015-02-17 05:00:00,0.247,0.336,0.344 +2015-02-17 06:00:00,0.247,0.336,0.344 +2015-02-17 07:00:00,0.247,0.336,0.344 +2015-02-17 08:00:00,0.247,0.336,0.344 +2015-02-17 09:00:00,0.247,0.336,0.344 +2015-02-17 10:00:00,0.247,0.337,0.34299999999999997 +2015-02-17 11:00:00,0.24600000000000002,0.336,0.34299999999999997 +2015-02-17 12:00:00,0.24600000000000002,0.332,0.34299999999999997 +2015-02-17 13:00:00,0.24600000000000002,0.32899999999999996,0.34299999999999997 +2015-02-17 14:00:00,0.247,0.326,0.34299999999999997 +2015-02-17 15:00:00,0.247,0.332,0.34299999999999997 +2015-02-17 16:00:00,0.247,0.332,0.34299999999999997 +2015-02-17 17:00:00,0.247,0.34,0.34299999999999997 +2015-02-17 18:00:00,0.247,0.34299999999999997,0.34299999999999997 +2015-02-17 19:00:00,0.247,0.34700000000000003,0.34299999999999997 +2015-02-17 20:00:00,0.247,0.349,0.34299999999999997 +2015-02-17 21:00:00,0.247,0.35,0.34299999999999997 +2015-02-17 22:00:00,0.247,0.35200000000000004,0.34299999999999997 +2015-02-17 23:00:00,0.247,0.353,0.342 +2015-02-18 00:00:00,0.247,0.353,0.342 +2015-02-18 01:00:00,0.247,0.35,0.342 +2015-02-18 02:00:00,0.247,0.349,0.342 +2015-02-18 03:00:00,0.247,0.349,0.342 +2015-02-18 04:00:00,0.247,0.349,0.342 +2015-02-18 05:00:00,0.247,0.349,0.342 +2015-02-18 06:00:00,0.247,0.349,0.342 +2015-02-18 07:00:00,0.247,0.349,0.342 +2015-02-18 08:00:00,0.247,0.349,0.342 +2015-02-18 09:00:00,0.247,0.349,0.342 +2015-02-18 10:00:00,0.247,0.349,0.342 +2015-02-18 11:00:00,0.247,0.349,0.342 +2015-02-18 12:00:00,0.247,0.349,0.342 +2015-02-18 13:00:00,0.247,0.348,0.342 +2015-02-18 14:00:00,0.247,0.348,0.342 +2015-02-18 15:00:00,0.247,0.348,0.342 +2015-02-18 16:00:00,0.247,0.35,0.342 +2015-02-18 17:00:00,0.247,0.374,0.342 +2015-02-18 18:00:00,0.247,0.377,0.342 +2015-02-18 19:00:00,0.247,0.375,0.342 +2015-02-18 20:00:00,0.247,0.374,0.342 +2015-02-18 21:00:00,0.247,0.37200000000000005,0.342 +2015-02-18 22:00:00,0.247,0.371,0.341 +2015-02-18 23:00:00,0.247,0.369,0.341 +2015-02-19 00:00:00,0.247,0.36700000000000005,0.341 +2015-02-19 01:00:00,0.247,0.366,0.341 +2015-02-19 02:00:00,0.247,0.365,0.342 +2015-02-19 03:00:00,0.247,0.363,0.342 +2015-02-19 04:00:00,0.247,0.36200000000000004,0.342 +2015-02-19 05:00:00,0.24600000000000002,0.361,0.342 +2015-02-19 06:00:00,0.24600000000000002,0.361,0.342 +2015-02-19 07:00:00,0.24600000000000002,0.36,0.342 +2015-02-19 08:00:00,0.24600000000000002,0.358,0.342 +2015-02-19 09:00:00,0.24600000000000002,0.35700000000000004,0.342 +2015-02-19 10:00:00,0.24600000000000002,0.35600000000000004,0.342 +2015-02-19 11:00:00,0.24600000000000002,0.355,0.342 +2015-02-19 12:00:00,0.24600000000000002,0.355,0.342 +2015-02-19 13:00:00,0.24600000000000002,0.355,0.342 +2015-02-19 14:00:00,0.24600000000000002,0.354,0.342 +2015-02-19 15:00:00,0.24600000000000002,0.353,0.342 +2015-02-19 16:00:00,0.24600000000000002,0.353,0.342 +2015-02-19 17:00:00,0.247,0.35100000000000003,0.342 +2015-02-19 18:00:00,0.24600000000000002,0.35100000000000003,0.341 +2015-02-19 19:00:00,0.24600000000000002,0.35100000000000003,0.341 +2015-02-19 20:00:00,0.24600000000000002,0.35100000000000003,0.341 +2015-02-19 21:00:00,0.24600000000000002,0.35,0.342 +2015-02-19 22:00:00,0.247,0.349,0.341 +2015-02-19 23:00:00,0.24600000000000002,0.349,0.341 +2015-02-20 00:00:00,0.24600000000000002,0.349,0.341 +2015-02-20 01:00:00,0.24600000000000002,0.349,0.341 +2015-02-20 02:00:00,0.24600000000000002,0.348,0.341 +2015-02-20 03:00:00,0.24600000000000002,0.349,0.341 +2015-02-20 04:00:00,0.247,0.349,0.342 +2015-02-20 05:00:00,0.24600000000000002,0.348,0.342 +2015-02-20 06:00:00,0.24600000000000002,0.348,0.342 +2015-02-20 07:00:00,0.24600000000000002,0.348,0.342 +2015-02-20 08:00:00,0.24600000000000002,0.348,0.342 +2015-02-20 09:00:00,0.24600000000000002,0.348,0.342 +2015-02-20 10:00:00,0.24600000000000002,0.348,0.342 +2015-02-20 11:00:00,0.24600000000000002,0.34700000000000003,0.342 +2015-02-20 12:00:00,0.24600000000000002,0.34700000000000003,0.342 +2015-02-20 13:00:00,0.24600000000000002,0.34600000000000003,0.342 +2015-02-20 14:00:00,0.247,0.34600000000000003,0.342 +2015-02-20 15:00:00,0.247,0.34600000000000003,0.342 +2015-02-20 16:00:00,0.247,0.34600000000000003,0.342 +2015-02-20 17:00:00,0.247,0.34600000000000003,0.342 +2015-02-20 18:00:00,0.247,0.34600000000000003,0.342 +2015-02-20 19:00:00,0.247,0.345,0.342 +2015-02-20 20:00:00,0.247,0.345,0.342 +2015-02-20 21:00:00,0.247,0.345,0.342 +2015-02-20 22:00:00,0.247,0.345,0.342 +2015-02-20 23:00:00,0.247,0.344,0.342 +2015-02-21 00:00:00,0.247,0.344,0.342 +2015-02-21 01:00:00,0.247,0.344,0.342 +2015-02-21 02:00:00,0.247,0.344,0.342 +2015-02-21 03:00:00,0.24600000000000002,0.344,0.342 +2015-02-21 04:00:00,0.247,0.344,0.342 +2015-02-21 05:00:00,0.247,0.344,0.342 +2015-02-21 06:00:00,0.247,0.344,0.342 +2015-02-21 07:00:00,0.247,0.344,0.342 +2015-02-21 08:00:00,0.247,0.344,0.342 +2015-02-21 09:00:00,0.247,0.344,0.342 +2015-02-21 10:00:00,0.247,0.344,0.345 +2015-02-21 11:00:00,0.247,0.344,0.34600000000000003 +2015-02-21 12:00:00,0.248,0.34600000000000003,0.345 +2015-02-21 13:00:00,0.248,0.373,0.344 +2015-02-21 14:00:00,0.248,0.374,0.34299999999999997 +2015-02-21 15:00:00,0.247,0.374,0.342 +2015-02-21 16:00:00,0.247,0.375,0.342 +2015-02-21 17:00:00,0.247,0.37,0.342 +2015-02-21 18:00:00,0.247,0.366,0.342 +2015-02-21 19:00:00,0.247,0.369,0.342 +2015-02-21 20:00:00,0.247,0.366,0.342 +2015-02-21 21:00:00,0.247,0.368,0.342 +2015-02-21 22:00:00,0.247,0.37200000000000005,0.342 +2015-02-21 23:00:00,0.247,0.373,0.342 +2015-02-22 00:00:00,0.247,0.374,0.342 +2015-02-22 01:00:00,0.247,0.373,0.342 +2015-02-22 02:00:00,0.247,0.373,0.342 +2015-02-22 03:00:00,0.247,0.37200000000000005,0.342 +2015-02-22 04:00:00,0.247,0.37200000000000005,0.342 +2015-02-22 05:00:00,0.247,0.37200000000000005,0.342 +2015-02-22 06:00:00,0.24600000000000002,0.371,0.342 +2015-02-22 07:00:00,0.24600000000000002,0.37,0.342 +2015-02-22 08:00:00,0.24600000000000002,0.368,0.342 +2015-02-22 09:00:00,0.24600000000000002,0.368,0.342 +2015-02-22 10:00:00,0.247,0.366,0.342 +2015-02-22 11:00:00,0.24600000000000002,0.366,0.341 +2015-02-22 12:00:00,0.24600000000000002,0.365,0.341 +2015-02-22 13:00:00,0.24600000000000002,0.364,0.341 +2015-02-22 14:00:00,0.24600000000000002,0.361,0.341 +2015-02-22 15:00:00,0.24600000000000002,0.361,0.341 +2015-02-22 16:00:00,0.24600000000000002,0.361,0.341 +2015-02-22 17:00:00,0.24600000000000002,0.361,0.341 +2015-02-22 18:00:00,0.24600000000000002,0.36,0.341 +2015-02-22 19:00:00,0.24600000000000002,0.36,0.34 +2015-02-22 20:00:00,0.24600000000000002,0.359,0.34 +2015-02-22 21:00:00,0.24600000000000002,0.358,0.34 +2015-02-22 22:00:00,0.24600000000000002,0.358,0.34 +2015-02-22 23:00:00,0.24600000000000002,0.358,0.34 +2015-02-23 00:00:00,0.24600000000000002,0.358,0.34 +2015-02-23 01:00:00,0.24600000000000002,0.35700000000000004,0.34 +2015-02-23 02:00:00,0.24600000000000002,0.35600000000000004,0.34 +2015-02-23 03:00:00,0.24600000000000002,0.35600000000000004,0.34 +2015-02-23 04:00:00,0.24600000000000002,0.35600000000000004,0.34 +2015-02-23 05:00:00,0.24600000000000002,0.355,0.34 +2015-02-23 06:00:00,0.24600000000000002,0.355,0.34 +2015-02-23 07:00:00,0.247,0.355,0.34299999999999997 +2015-02-23 08:00:00,0.245,0.355,0.34600000000000003 +2015-02-23 09:00:00,0.242,0.354,0.34700000000000003 +2015-02-23 10:00:00,0.242,0.35200000000000004,0.34700000000000003 +2015-02-23 11:00:00,0.242,0.348,0.34700000000000003 +2015-02-23 12:00:00,0.242,0.349,0.34700000000000003 +2015-02-23 13:00:00,0.242,0.353,0.34700000000000003 +2015-02-23 14:00:00,0.242,0.355,0.34700000000000003 +2015-02-23 15:00:00,0.242,0.359,0.34700000000000003 +2015-02-23 16:00:00,0.242,0.361,0.34700000000000003 +2015-02-23 17:00:00,0.243,0.361,0.34700000000000003 +2015-02-23 18:00:00,0.244,0.363,0.34700000000000003 +2015-02-23 19:00:00,0.245,0.365,0.348 +2015-02-23 20:00:00,0.245,0.365,0.348 +2015-02-23 21:00:00,0.24600000000000002,0.366,0.348 +2015-02-23 22:00:00,0.245,0.365,0.349 +2015-02-23 23:00:00,0.245,0.365,0.349 +2015-02-24 00:00:00,0.245,0.365,0.349 +2015-02-24 01:00:00,0.24600000000000002,0.365,0.349 +2015-02-24 02:00:00,0.247,0.365,0.349 +2015-02-24 03:00:00,0.248,0.365,0.348 +2015-02-24 04:00:00,0.249,0.365,0.348 +2015-02-24 05:00:00,0.249,0.364,0.348 +2015-02-24 06:00:00,0.25,0.363,0.348 +2015-02-24 07:00:00,0.251,0.35200000000000004,0.348 +2015-02-24 08:00:00,0.251,0.35600000000000004,0.34700000000000003 +2015-02-24 09:00:00,0.251,0.365,0.34700000000000003 +2015-02-24 10:00:00,0.252,0.37,0.34600000000000003 +2015-02-24 11:00:00,0.252,0.36700000000000005,0.34600000000000003 +2015-02-24 12:00:00,0.252,0.361,0.34600000000000003 +2015-02-24 13:00:00,0.258,0.368,0.349 +2015-02-24 14:00:00,0.262,0.375,0.35200000000000004 +2015-02-24 15:00:00,0.261,0.376,0.35 +2015-02-24 16:00:00,0.261,0.375,0.35 +2015-02-24 17:00:00,0.26,0.375,0.349 +2015-02-24 18:00:00,0.259,0.373,0.349 +2015-02-24 19:00:00,0.259,0.373,0.349 +2015-02-24 20:00:00,0.259,0.37200000000000005,0.349 +2015-02-24 21:00:00,0.259,0.361,0.348 +2015-02-24 22:00:00,0.258,0.364,0.348 +2015-02-24 23:00:00,0.258,0.376,0.348 +2015-02-25 00:00:00,0.258,0.377,0.348 +2015-02-25 01:00:00,0.258,0.376,0.348 +2015-02-25 02:00:00,0.257,0.375,0.34700000000000003 +2015-02-25 03:00:00,0.257,0.374,0.34700000000000003 +2015-02-25 04:00:00,0.257,0.373,0.34700000000000003 +2015-02-25 05:00:00,0.257,0.373,0.34700000000000003 +2015-02-25 06:00:00,0.256,0.373,0.34700000000000003 +2015-02-25 07:00:00,0.256,0.373,0.34700000000000003 +2015-02-25 08:00:00,0.256,0.37200000000000005,0.34600000000000003 +2015-02-25 09:00:00,0.256,0.371,0.34600000000000003 +2015-02-25 10:00:00,0.256,0.37,0.34600000000000003 +2015-02-25 11:00:00,0.256,0.368,0.34600000000000003 +2015-02-25 12:00:00,0.255,0.36700000000000005,0.34600000000000003 +2015-02-25 13:00:00,0.255,0.366,0.34600000000000003 +2015-02-25 14:00:00,0.255,0.365,0.34600000000000003 +2015-02-25 15:00:00,0.255,0.365,0.345 +2015-02-25 16:00:00,0.255,0.365,0.345 +2015-02-25 17:00:00,0.255,0.364,0.345 +2015-02-25 18:00:00,0.255,0.364,0.345 +2015-02-25 19:00:00,0.255,0.363,0.345 +2015-02-25 20:00:00,0.255,0.363,0.345 +2015-02-25 21:00:00,0.255,0.363,0.345 +2015-02-25 22:00:00,0.255,0.363,0.345 +2015-02-25 23:00:00,0.255,0.35600000000000004,0.345 +2015-02-26 00:00:00,0.255,0.355,0.34600000000000003 +2015-02-26 01:00:00,0.255,0.361,0.34700000000000003 +2015-02-26 02:00:00,0.255,0.365,0.34700000000000003 +2015-02-26 03:00:00,0.255,0.368,0.34700000000000003 +2015-02-26 04:00:00,0.254,0.37,0.34700000000000003 +2015-02-26 05:00:00,0.254,0.37,0.34700000000000003 +2015-02-26 06:00:00,0.254,0.368,0.34700000000000003 +2015-02-26 07:00:00,0.254,0.368,0.34700000000000003 +2015-02-26 08:00:00,0.254,0.366,0.34700000000000003 +2015-02-26 09:00:00,0.254,0.366,0.34700000000000003 +2015-02-26 10:00:00,0.254,0.365,0.34700000000000003 +2015-02-26 11:00:00,0.254,0.363,0.34600000000000003 +2015-02-26 12:00:00,0.255,0.363,0.345 +2015-02-26 13:00:00,0.255,0.361,0.345 +2015-02-26 14:00:00,0.254,0.361,0.344 +2015-02-26 15:00:00,0.254,0.361,0.344 +2015-02-26 16:00:00,0.254,0.361,0.344 +2015-02-26 17:00:00,0.254,0.36,0.344 +2015-02-26 18:00:00,0.254,0.36,0.344 +2015-02-26 19:00:00,0.254,0.359,0.344 +2015-02-26 20:00:00,0.254,0.358,0.344 +2015-02-26 21:00:00,0.254,0.35600000000000004,0.344 +2015-02-26 22:00:00,0.254,0.34299999999999997,0.344 +2015-02-26 23:00:00,0.254,0.345,0.344 +2015-02-27 00:00:00,0.254,0.349,0.344 +2015-02-27 01:00:00,0.253,0.35100000000000003,0.344 +2015-02-27 02:00:00,0.253,0.354,0.344 +2015-02-27 03:00:00,0.253,0.355,0.344 +2015-02-27 04:00:00,0.254,0.35700000000000004,0.344 +2015-02-27 05:00:00,0.253,0.358,0.34700000000000003 +2015-02-27 06:00:00,0.252,0.358,0.34700000000000003 +2015-02-27 07:00:00,0.251,0.358,0.348 +2015-02-27 08:00:00,0.251,0.358,0.349 +2015-02-27 09:00:00,0.258,0.358,0.35100000000000003 +2015-02-27 10:00:00,0.26,0.358,0.35600000000000004 +2015-02-27 11:00:00,0.259,0.35700000000000004,0.358 +2015-02-27 12:00:00,0.259,0.35600000000000004,0.36 +2015-02-27 13:00:00,0.259,0.35600000000000004,0.361 +2015-02-27 14:00:00,0.258,0.355,0.363 +2015-02-27 15:00:00,0.258,0.355,0.369 +2015-02-27 16:00:00,0.259,0.355,0.37200000000000005 +2015-02-27 17:00:00,0.259,0.355,0.37200000000000005 +2015-02-27 18:00:00,0.258,0.355,0.375 +2015-02-27 19:00:00,0.257,0.355,0.376 +2015-02-27 20:00:00,0.256,0.355,0.376 +2015-02-27 21:00:00,0.256,0.355,0.376 +2015-02-27 22:00:00,0.256,0.354,0.376 +2015-02-27 23:00:00,0.256,0.354,0.376 +2015-02-28 00:00:00,0.257,0.353,0.376 +2015-02-28 01:00:00,0.257,0.353,0.376 +2015-02-28 02:00:00,0.258,0.353,0.376 +2015-02-28 03:00:00,0.26,0.353,0.375 +2015-02-28 04:00:00,0.259,0.35200000000000004,0.375 +2015-02-28 05:00:00,0.259,0.35100000000000003,0.375 +2015-02-28 06:00:00,0.259,0.35100000000000003,0.375 +2015-02-28 07:00:00,0.259,0.35100000000000003,0.375 +2015-02-28 08:00:00,0.258,0.35100000000000003,0.373 +2015-02-28 09:00:00,0.258,0.35,0.37200000000000005 +2015-02-28 10:00:00,0.256,0.35,0.369 +2015-02-28 11:00:00,0.252,0.349,0.366 +2015-02-28 12:00:00,0.253,0.349,0.364 +2015-02-28 13:00:00,0.255,0.349,0.363 +2015-02-28 14:00:00,0.257,0.349,0.36200000000000004 +2015-02-28 15:00:00,0.257,0.349,0.361 +2015-02-28 16:00:00,0.257,0.348,0.36 +2015-02-28 17:00:00,0.257,0.348,0.36 +2015-02-28 18:00:00,0.257,0.348,0.359 +2015-02-28 19:00:00,0.257,0.348,0.359 +2015-02-28 20:00:00,0.256,0.348,0.359 +2015-02-28 21:00:00,0.256,0.348,0.359 +2015-02-28 22:00:00,0.256,0.348,0.358 +2015-02-28 23:00:00,0.256,0.348,0.358 +2015-03-01 00:00:00,0.256,0.348,0.358 +2015-03-01 01:00:00,0.255,0.348,0.358 +2015-03-01 02:00:00,0.255,0.348,0.358 +2015-03-01 03:00:00,0.255,0.348,0.358 +2015-03-01 04:00:00,0.255,0.348,0.358 +2015-03-01 05:00:00,0.255,0.348,0.359 +2015-03-01 06:00:00,0.252,0.348,0.361 +2015-03-01 07:00:00,0.251,0.348,0.361 +2015-03-01 08:00:00,0.251,0.34700000000000003,0.361 +2015-03-01 09:00:00,0.252,0.34700000000000003,0.361 +2015-03-01 10:00:00,0.254,0.34700000000000003,0.361 +2015-03-01 11:00:00,0.256,0.34700000000000003,0.36 +2015-03-01 12:00:00,0.258,0.34600000000000003,0.36 +2015-03-01 13:00:00,0.259,0.34600000000000003,0.36 +2015-03-01 14:00:00,0.26,0.34600000000000003,0.359 +2015-03-01 15:00:00,0.26,0.34600000000000003,0.358 +2015-03-01 16:00:00,0.26,0.34600000000000003,0.358 +2015-03-01 17:00:00,0.259,0.34600000000000003,0.358 +2015-03-01 18:00:00,0.258,0.34600000000000003,0.359 +2015-03-01 19:00:00,0.254,0.34600000000000003,0.361 +2015-03-01 20:00:00,0.254,0.34600000000000003,0.361 +2015-03-01 21:00:00,0.254,0.34600000000000003,0.361 +2015-03-01 22:00:00,0.254,0.34600000000000003,0.361 +2015-03-01 23:00:00,0.257,0.345,0.36 +2015-03-02 00:00:00,0.258,0.345,0.359 +2015-03-02 01:00:00,0.258,0.345,0.359 +2015-03-02 02:00:00,0.258,0.344,0.359 +2015-03-02 03:00:00,0.256,0.344,0.361 +2015-03-02 04:00:00,0.255,0.344,0.36200000000000004 +2015-03-02 05:00:00,0.254,0.344,0.361 +2015-03-02 06:00:00,0.257,0.344,0.361 +2015-03-02 07:00:00,0.259,0.344,0.36 +2015-03-02 08:00:00,0.259,0.344,0.361 +2015-03-02 09:00:00,0.259,0.344,0.36200000000000004 +2015-03-02 10:00:00,0.259,0.344,0.36200000000000004 +2015-03-02 11:00:00,0.261,0.344,0.36200000000000004 +2015-03-02 12:00:00,0.264,0.344,0.361 +2015-03-02 13:00:00,0.263,0.344,0.361 +2015-03-02 14:00:00,0.263,0.344,0.361 +2015-03-02 15:00:00,0.262,0.344,0.361 +2015-03-02 16:00:00,0.262,0.344,0.36200000000000004 +2015-03-02 17:00:00,0.261,0.344,0.36200000000000004 +2015-03-02 18:00:00,0.256,0.344,0.365 +2015-03-02 19:00:00,0.261,0.344,0.37200000000000005 +2015-03-02 20:00:00,0.26,0.344,0.375 +2015-03-02 21:00:00,0.258,0.344,0.375 +2015-03-02 22:00:00,0.257,0.344,0.375 +2015-03-02 23:00:00,0.257,0.344,0.375 +2015-03-03 00:00:00,0.257,0.344,0.376 +2015-03-03 01:00:00,0.257,0.344,0.376 +2015-03-03 02:00:00,0.261,0.344,0.375 +2015-03-03 03:00:00,0.261,0.344,0.375 +2015-03-03 04:00:00,0.261,0.344,0.375 +2015-03-03 05:00:00,0.261,0.344,0.375 +2015-03-03 06:00:00,0.26,0.344,0.375 +2015-03-03 07:00:00,0.26,0.344,0.375 +2015-03-03 08:00:00,0.26,0.344,0.375 +2015-03-03 09:00:00,0.258,0.344,0.375 +2015-03-03 10:00:00,0.257,0.34299999999999997,0.376 +2015-03-03 11:00:00,0.258,0.34299999999999997,0.375 +2015-03-03 12:00:00,0.259,0.344,0.375 +2015-03-03 13:00:00,0.259,0.344,0.375 +2015-03-03 14:00:00,0.259,0.34299999999999997,0.374 +2015-03-03 15:00:00,0.259,0.34299999999999997,0.374 +2015-03-03 16:00:00,0.259,0.34299999999999997,0.374 +2015-03-03 17:00:00,0.259,0.34299999999999997,0.373 +2015-03-03 18:00:00,0.258,0.34299999999999997,0.373 +2015-03-03 19:00:00,0.258,0.34299999999999997,0.373 +2015-03-03 20:00:00,0.256,0.34299999999999997,0.374 +2015-03-03 21:00:00,0.255,0.344,0.375 +2015-03-03 22:00:00,0.255,0.344,0.375 +2015-03-03 23:00:00,0.256,0.344,0.375 +2015-03-04 00:00:00,0.256,0.344,0.375 +2015-03-04 01:00:00,0.258,0.344,0.374 +2015-03-04 02:00:00,0.259,0.344,0.373 +2015-03-04 03:00:00,0.259,0.344,0.371 +2015-03-04 04:00:00,0.26,0.344,0.368 +2015-03-04 05:00:00,0.26,0.344,0.36700000000000005 +2015-03-04 06:00:00,0.259,0.344,0.366 +2015-03-04 07:00:00,0.259,0.344,0.365 +2015-03-04 08:00:00,0.259,0.344,0.365 +2015-03-04 09:00:00,0.259,0.344,0.365 +2015-03-04 10:00:00,0.258,0.344,0.364 +2015-03-04 11:00:00,0.258,0.344,0.364 +2015-03-04 12:00:00,0.258,0.344,0.363 +2015-03-04 13:00:00,0.258,0.344,0.363 +2015-03-04 14:00:00,0.258,0.34299999999999997,0.363 +2015-03-04 15:00:00,0.258,0.34299999999999997,0.36200000000000004 +2015-03-04 16:00:00,0.258,0.344,0.36200000000000004 +2015-03-04 17:00:00,0.258,0.34299999999999997,0.36200000000000004 +2015-03-04 18:00:00,0.256,0.34299999999999997,0.363 +2015-03-04 19:00:00,0.253,0.34299999999999997,0.366 +2015-03-04 20:00:00,0.253,0.34299999999999997,0.365 +2015-03-04 21:00:00,0.252,0.34299999999999997,0.365 +2015-03-04 22:00:00,0.252,0.34299999999999997,0.365 +2015-03-04 23:00:00,0.252,0.34299999999999997,0.364 +2015-03-05 00:00:00,0.253,0.34299999999999997,0.364 +2015-03-05 01:00:00,0.254,0.34299999999999997,0.364 +2015-03-05 02:00:00,0.256,0.34299999999999997,0.364 +2015-03-05 03:00:00,0.257,0.34299999999999997,0.364 +2015-03-05 04:00:00,0.257,0.34299999999999997,0.363 +2015-03-05 05:00:00,0.257,0.34299999999999997,0.363 +2015-03-05 06:00:00,0.257,0.34299999999999997,0.363 +2015-03-05 07:00:00,0.257,0.34299999999999997,0.363 +2015-03-05 08:00:00,0.257,0.34299999999999997,0.363 +2015-03-05 09:00:00,0.256,0.34299999999999997,0.36200000000000004 +2015-03-05 10:00:00,0.256,0.344,0.36200000000000004 +2015-03-05 11:00:00,0.256,0.344,0.36200000000000004 +2015-03-05 12:00:00,0.256,0.34299999999999997,0.36200000000000004 +2015-03-05 13:00:00,0.256,0.34299999999999997,0.361 +2015-03-05 14:00:00,0.256,0.34299999999999997,0.361 +2015-03-05 15:00:00,0.256,0.342,0.361 +2015-03-05 16:00:00,0.256,0.341,0.361 +2015-03-05 17:00:00,0.256,0.34299999999999997,0.361 +2015-03-05 18:00:00,0.256,0.34299999999999997,0.361 +2015-03-05 19:00:00,0.256,0.34299999999999997,0.361 +2015-03-05 20:00:00,0.256,0.34299999999999997,0.361 +2015-03-05 21:00:00,0.256,0.34299999999999997,0.361 +2015-03-05 22:00:00,0.255,0.34299999999999997,0.361 +2015-03-05 23:00:00,0.255,0.34299999999999997,0.361 +2015-03-06 00:00:00,0.255,0.34299999999999997,0.361 +2015-03-06 01:00:00,0.255,0.34299999999999997,0.361 +2015-03-06 02:00:00,0.255,0.34299999999999997,0.361 +2015-03-06 03:00:00,0.254,0.34299999999999997,0.361 +2015-03-06 04:00:00,0.254,0.34299999999999997,0.36 +2015-03-06 05:00:00,0.254,0.34299999999999997,0.36 +2015-03-06 06:00:00,0.254,0.34299999999999997,0.361 +2015-03-06 07:00:00,0.254,0.34299999999999997,0.35600000000000004 +2015-03-06 08:00:00,0.254,0.34299999999999997,0.35200000000000004 +2015-03-06 09:00:00,0.254,0.34299999999999997,0.35200000000000004 +2015-03-06 10:00:00,0.254,0.34299999999999997,0.353 +2015-03-06 11:00:00,0.254,0.34299999999999997,0.353 +2015-03-06 12:00:00,0.254,0.34299999999999997,0.35200000000000004 +2015-03-06 13:00:00,0.254,0.342,0.35200000000000004 +2015-03-06 14:00:00,0.254,0.341,0.35200000000000004 +2015-03-06 15:00:00,0.254,0.341,0.35200000000000004 +2015-03-06 16:00:00,0.254,0.341,0.35100000000000003 +2015-03-06 17:00:00,0.254,0.341,0.35100000000000003 +2015-03-06 18:00:00,0.254,0.34299999999999997,0.35100000000000003 +2015-03-06 19:00:00,0.254,0.35,0.35100000000000003 +2015-03-06 20:00:00,0.254,0.35,0.35100000000000003 +2015-03-06 21:00:00,0.253,0.35,0.35100000000000003 +2015-03-06 22:00:00,0.253,0.35,0.35100000000000003 +2015-03-06 23:00:00,0.253,0.35,0.35100000000000003 +2015-03-07 00:00:00,0.253,0.349,0.35100000000000003 +2015-03-07 01:00:00,0.253,0.349,0.35100000000000003 +2015-03-07 02:00:00,0.253,0.35100000000000003,0.35100000000000003 +2015-03-07 03:00:00,0.253,0.349,0.35100000000000003 +2015-03-07 04:00:00,0.253,0.349,0.35100000000000003 +2015-03-07 05:00:00,0.253,0.348,0.35100000000000003 +2015-03-07 06:00:00,0.252,0.34700000000000003,0.35100000000000003 +2015-03-07 07:00:00,0.252,0.34600000000000003,0.35100000000000003 +2015-03-07 08:00:00,0.252,0.345,0.35100000000000003 +2015-03-07 09:00:00,0.252,0.345,0.35100000000000003 +2015-03-07 10:00:00,0.253,0.345,0.35200000000000004 +2015-03-07 11:00:00,0.252,0.344,0.35200000000000004 +2015-03-07 12:00:00,0.252,0.344,0.35100000000000003 +2015-03-07 13:00:00,0.252,0.344,0.35 +2015-03-07 14:00:00,0.252,0.344,0.35 +2015-03-07 15:00:00,0.252,0.344,0.35 +2015-03-07 16:00:00,0.252,0.344,0.35 +2015-03-07 17:00:00,0.252,0.344,0.35 +2015-03-07 18:00:00,0.252,0.344,0.349 +2015-03-07 19:00:00,0.252,0.344,0.349 +2015-03-07 20:00:00,0.252,0.344,0.349 +2015-03-07 21:00:00,0.252,0.344,0.349 +2015-03-07 22:00:00,0.252,0.344,0.349 +2015-03-07 23:00:00,0.252,0.345,0.349 +2015-03-08 00:00:00,0.252,0.345,0.349 +2015-03-08 01:00:00,0.252,0.344,0.349 +2015-03-08 02:00:00,0.252,0.344,0.349 +2015-03-08 03:00:00,0.252,0.344,0.349 +2015-03-08 04:00:00,0.251,0.344,0.349 +2015-03-08 05:00:00,0.251,0.344,0.349 +2015-03-08 06:00:00,0.251,0.34600000000000003,0.349 +2015-03-08 07:00:00,0.251,0.345,0.349 +2015-03-08 08:00:00,0.251,0.344,0.349 +2015-03-08 09:00:00,0.251,0.344,0.349 +2015-03-08 10:00:00,0.251,0.344,0.35100000000000003 +2015-03-08 11:00:00,0.252,0.344,0.35 +2015-03-08 12:00:00,0.251,0.344,0.349 +2015-03-08 13:00:00,0.251,0.344,0.349 +2015-03-08 14:00:00,0.251,0.344,0.349 +2015-03-08 15:00:00,0.251,0.344,0.349 +2015-03-08 16:00:00,0.251,0.344,0.349 +2015-03-08 17:00:00,0.251,0.344,0.349 +2015-03-08 18:00:00,0.252,0.344,0.349 +2015-03-08 19:00:00,0.252,0.344,0.349 +2015-03-08 20:00:00,0.252,0.344,0.349 +2015-03-08 21:00:00,0.252,0.344,0.349 +2015-03-08 22:00:00,0.251,0.344,0.349 +2015-03-08 23:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 00:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 01:00:00,0.251,0.344,0.349 +2015-03-09 02:00:00,0.251,0.344,0.349 +2015-03-09 03:00:00,0.251,0.344,0.349 +2015-03-09 04:00:00,0.251,0.344,0.349 +2015-03-09 05:00:00,0.251,0.344,0.349 +2015-03-09 06:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 07:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 08:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 09:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 10:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 11:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 12:00:00,0.251,0.34299999999999997,0.349 +2015-03-09 13:00:00,0.251,0.341,0.349 +2015-03-09 14:00:00,0.251,0.341,0.349 +2015-03-09 15:00:00,0.251,0.342,0.349 +2015-03-09 16:00:00,0.251,0.344,0.348 +2015-03-09 17:00:00,0.251,0.344,0.348 +2015-03-09 18:00:00,0.251,0.344,0.348 +2015-03-09 19:00:00,0.251,0.344,0.348 +2015-03-09 20:00:00,0.251,0.344,0.348 +2015-03-09 21:00:00,0.251,0.344,0.348 +2015-03-09 22:00:00,0.251,0.344,0.348 +2015-03-09 23:00:00,0.251,0.344,0.348 +2015-03-10 00:00:00,0.251,0.344,0.348 +2015-03-10 01:00:00,0.251,0.344,0.348 +2015-03-10 02:00:00,0.251,0.344,0.348 +2015-03-10 03:00:00,0.25,0.344,0.348 +2015-03-10 04:00:00,0.25,0.344,0.348 +2015-03-10 05:00:00,0.25,0.344,0.34700000000000003 +2015-03-10 06:00:00,0.25,0.344,0.34700000000000003 +2015-03-10 07:00:00,0.25,0.344,0.34700000000000003 +2015-03-10 08:00:00,0.25,0.344,0.349 +2015-03-10 09:00:00,0.25,0.344,0.35 +2015-03-10 10:00:00,0.249,0.344,0.35 +2015-03-10 11:00:00,0.249,0.344,0.35 +2015-03-10 12:00:00,0.25,0.344,0.349 +2015-03-10 13:00:00,0.25,0.34299999999999997,0.349 +2015-03-10 14:00:00,0.25,0.34600000000000003,0.349 +2015-03-10 15:00:00,0.251,0.348,0.348 +2015-03-10 16:00:00,0.251,0.348,0.348 +2015-03-10 17:00:00,0.251,0.34700000000000003,0.348 +2015-03-10 18:00:00,0.251,0.34700000000000003,0.348 +2015-03-10 19:00:00,0.251,0.348,0.348 +2015-03-10 20:00:00,0.251,0.34600000000000003,0.34700000000000003 +2015-03-10 21:00:00,0.251,0.34700000000000003,0.34700000000000003 +2015-03-10 22:00:00,0.25,0.348,0.34700000000000003 +2015-03-10 23:00:00,0.251,0.348,0.34700000000000003 +2015-03-11 00:00:00,0.25,0.348,0.34700000000000003 +2015-03-11 01:00:00,0.25,0.348,0.34700000000000003 +2015-03-11 02:00:00,0.25,0.348,0.34700000000000003 +2015-03-11 03:00:00,0.25,0.34700000000000003,0.34700000000000003 +2015-03-11 04:00:00,0.25,0.34700000000000003,0.34700000000000003 +2015-03-11 05:00:00,0.25,0.34700000000000003,0.34700000000000003 +2015-03-11 06:00:00,0.25,0.34700000000000003,0.34700000000000003 +2015-03-11 07:00:00,0.25,0.348,0.34700000000000003 +2015-03-11 08:00:00,0.25,0.34700000000000003,0.34700000000000003 +2015-03-11 09:00:00,0.25,0.34700000000000003,0.34700000000000003 +2015-03-11 10:00:00,0.249,0.34600000000000003,0.349 +2015-03-11 11:00:00,0.25,0.34600000000000003,0.348 +2015-03-11 12:00:00,0.25,0.345,0.34700000000000003 +2015-03-11 13:00:00,0.25,0.344,0.34700000000000003 +2015-03-11 14:00:00,0.25,0.345,0.34600000000000003 +2015-03-11 15:00:00,0.25,0.34600000000000003,0.34600000000000003 +2015-03-11 16:00:00,0.25,0.34600000000000003,0.34600000000000003 +2015-03-11 17:00:00,0.25,0.34600000000000003,0.34600000000000003 +2015-03-11 18:00:00,0.25,0.34700000000000003,0.34600000000000003 +2015-03-11 19:00:00,0.25,0.34700000000000003,0.34600000000000003 +2015-03-11 20:00:00,0.25,0.34700000000000003,0.34600000000000003 +2015-03-11 21:00:00,0.249,0.348,0.345 +2015-03-11 22:00:00,0.249,0.34700000000000003,0.345 +2015-03-11 23:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 00:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 01:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 02:00:00,0.249,0.345,0.345 +2015-03-12 03:00:00,0.249,0.345,0.345 +2015-03-12 04:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 05:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 06:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 07:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 08:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 09:00:00,0.249,0.34600000000000003,0.345 +2015-03-12 10:00:00,0.249,0.34600000000000003,0.34700000000000003 +2015-03-12 11:00:00,0.249,0.344,0.34600000000000003 +2015-03-12 12:00:00,0.249,0.344,0.34600000000000003 +2015-03-12 13:00:00,0.249,0.344,0.345 +2015-03-12 14:00:00,0.249,0.34700000000000003,0.345 +2015-03-12 15:00:00,0.249,0.348,0.345 +2015-03-12 16:00:00,0.25,0.348,0.344 +2015-03-12 17:00:00,0.25,0.348,0.344 +2015-03-12 18:00:00,0.25,0.34700000000000003,0.344 +2015-03-12 19:00:00,0.25,0.34600000000000003,0.344 +2015-03-12 20:00:00,0.25,0.348,0.344 +2015-03-12 21:00:00,0.249,0.348,0.344 +2015-03-12 22:00:00,0.249,0.348,0.344 +2015-03-12 23:00:00,0.249,0.34700000000000003,0.344 +2015-03-13 00:00:00,0.249,0.34700000000000003,0.344 +2015-03-13 01:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 02:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 03:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 04:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 05:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 06:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 07:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 08:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 09:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 10:00:00,0.25,0.34600000000000003,0.345 +2015-03-13 11:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 12:00:00,0.249,0.344,0.344 +2015-03-13 13:00:00,0.249,0.344,0.344 +2015-03-13 14:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 15:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 16:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 17:00:00,0.249,0.34700000000000003,0.344 +2015-03-13 18:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 19:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 20:00:00,0.249,0.34600000000000003,0.344 +2015-03-13 21:00:00,0.249,0.34700000000000003,0.344 +2015-03-13 22:00:00,0.249,0.345,0.344 +2015-03-13 23:00:00,0.249,0.344,0.344 +2015-03-14 00:00:00,0.249,0.344,0.344 +2015-03-14 01:00:00,0.249,0.344,0.344 +2015-03-14 02:00:00,0.249,0.344,0.344 +2015-03-14 03:00:00,0.249,0.344,0.34299999999999997 +2015-03-14 04:00:00,0.249,0.344,0.34299999999999997 +2015-03-14 05:00:00,0.249,0.344,0.344 +2015-03-14 06:00:00,0.249,0.344,0.344 +2015-03-14 07:00:00,0.249,0.344,0.344 +2015-03-14 08:00:00,0.248,0.344,0.34299999999999997 +2015-03-14 09:00:00,0.249,0.344,0.34299999999999997 +2015-03-14 10:00:00,0.249,0.344,0.34299999999999997 +2015-03-14 11:00:00,0.249,0.344,0.34299999999999997 +2015-03-14 12:00:00,0.249,0.34299999999999997,0.344 +2015-03-14 13:00:00,0.249,0.34299999999999997,0.344 +2015-03-14 14:00:00,0.249,0.34299999999999997,0.344 +2015-03-14 15:00:00,0.249,0.34299999999999997,0.344 +2015-03-14 16:00:00,0.249,0.34600000000000003,0.344 +2015-03-14 17:00:00,0.249,0.34700000000000003,0.344 +2015-03-14 18:00:00,0.249,0.348,0.344 +2015-03-14 19:00:00,0.25,0.348,0.345 +2015-03-14 20:00:00,0.249,0.348,0.34600000000000003 +2015-03-14 21:00:00,0.25,0.348,0.34600000000000003 +2015-03-14 22:00:00,0.249,0.34600000000000003,0.34600000000000003 +2015-03-14 23:00:00,0.249,0.344,0.34600000000000003 +2015-03-15 00:00:00,0.249,0.344,0.34600000000000003 +2015-03-15 01:00:00,0.249,0.344,0.345 +2015-03-15 02:00:00,0.249,0.344,0.345 +2015-03-15 03:00:00,0.249,0.344,0.34600000000000003 +2015-03-15 04:00:00,0.249,0.344,0.34600000000000003 +2015-03-15 05:00:00,0.249,0.344,0.34700000000000003 +2015-03-15 06:00:00,0.249,0.344,0.34700000000000003 +2015-03-15 07:00:00,0.249,0.34299999999999997,0.348 +2015-03-15 08:00:00,0.247,0.34299999999999997,0.348 +2015-03-15 09:00:00,0.247,0.34299999999999997,0.348 +2015-03-15 10:00:00,0.248,0.34299999999999997,0.348 +2015-03-15 11:00:00,0.249,0.34299999999999997,0.348 +2015-03-15 12:00:00,0.249,0.34299999999999997,0.34700000000000003 +2015-03-15 13:00:00,0.25,0.34299999999999997,0.34600000000000003 +2015-03-15 14:00:00,0.25,0.34299999999999997,0.34600000000000003 +2015-03-15 15:00:00,0.25,0.34299999999999997,0.345 +2015-03-15 16:00:00,0.25,0.34299999999999997,0.345 +2015-03-15 17:00:00,0.25,0.34299999999999997,0.345 +2015-03-15 18:00:00,0.25,0.344,0.344 +2015-03-15 19:00:00,0.25,0.34299999999999997,0.344 +2015-03-15 20:00:00,0.25,0.34299999999999997,0.344 +2015-03-15 21:00:00,0.25,0.34299999999999997,0.344 +2015-03-15 22:00:00,0.25,0.34299999999999997,0.344 +2015-03-15 23:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 00:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 01:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 02:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 03:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 04:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 05:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 06:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 07:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 08:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 09:00:00,0.251,0.34299999999999997,0.34600000000000003 +2015-03-16 10:00:00,0.25,0.34299999999999997,0.34600000000000003 +2015-03-16 11:00:00,0.25,0.34299999999999997,0.34600000000000003 +2015-03-16 12:00:00,0.25,0.34299999999999997,0.345 +2015-03-16 13:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 14:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 15:00:00,0.25,0.34299999999999997,0.344 +2015-03-16 16:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-16 17:00:00,0.251,0.34299999999999997,0.34299999999999997 +2015-03-16 18:00:00,0.251,0.34299999999999997,0.34299999999999997 +2015-03-16 19:00:00,0.251,0.34299999999999997,0.34299999999999997 +2015-03-16 20:00:00,0.251,0.34299999999999997,0.34299999999999997 +2015-03-16 21:00:00,0.251,0.34299999999999997,0.34299999999999997 +2015-03-16 22:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-16 23:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 00:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 01:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 02:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 03:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 04:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 05:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 06:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 07:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 08:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 09:00:00,0.251,0.34299999999999997,0.345 +2015-03-17 10:00:00,0.25,0.34299999999999997,0.345 +2015-03-17 11:00:00,0.25,0.34299999999999997,0.344 +2015-03-17 12:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 13:00:00,0.25,0.341,0.34299999999999997 +2015-03-17 14:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 15:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-17 16:00:00,0.25,0.344,0.34299999999999997 +2015-03-17 17:00:00,0.25,0.344,0.342 +2015-03-17 18:00:00,0.251,0.344,0.342 +2015-03-17 19:00:00,0.251,0.34299999999999997,0.342 +2015-03-17 20:00:00,0.251,0.34299999999999997,0.342 +2015-03-17 21:00:00,0.25,0.344,0.342 +2015-03-17 22:00:00,0.25,0.344,0.342 +2015-03-17 23:00:00,0.25,0.344,0.342 +2015-03-18 00:00:00,0.25,0.344,0.342 +2015-03-18 01:00:00,0.25,0.344,0.342 +2015-03-18 02:00:00,0.25,0.344,0.342 +2015-03-18 03:00:00,0.25,0.344,0.342 +2015-03-18 04:00:00,0.25,0.344,0.342 +2015-03-18 05:00:00,0.25,0.344,0.342 +2015-03-18 06:00:00,0.25,0.344,0.342 +2015-03-18 07:00:00,0.25,0.344,0.342 +2015-03-18 08:00:00,0.249,0.34299999999999997,0.342 +2015-03-18 09:00:00,0.251,0.34299999999999997,0.344 +2015-03-18 10:00:00,0.25,0.34299999999999997,0.344 +2015-03-18 11:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-18 12:00:00,0.25,0.34299999999999997,0.342 +2015-03-18 13:00:00,0.25,0.34299999999999997,0.342 +2015-03-18 14:00:00,0.25,0.34299999999999997,0.342 +2015-03-18 15:00:00,0.25,0.344,0.342 +2015-03-18 16:00:00,0.25,0.34299999999999997,0.342 +2015-03-18 17:00:00,0.25,0.34299999999999997,0.342 +2015-03-18 18:00:00,0.251,0.34299999999999997,0.341 +2015-03-18 19:00:00,0.251,0.34299999999999997,0.341 +2015-03-18 20:00:00,0.251,0.34299999999999997,0.341 +2015-03-18 21:00:00,0.25,0.34299999999999997,0.341 +2015-03-18 22:00:00,0.25,0.34299999999999997,0.341 +2015-03-18 23:00:00,0.25,0.344,0.341 +2015-03-19 00:00:00,0.25,0.344,0.341 +2015-03-19 01:00:00,0.25,0.344,0.341 +2015-03-19 02:00:00,0.25,0.344,0.341 +2015-03-19 03:00:00,0.25,0.344,0.341 +2015-03-19 04:00:00,0.25,0.344,0.342 +2015-03-19 05:00:00,0.25,0.344,0.342 +2015-03-19 06:00:00,0.25,0.344,0.342 +2015-03-19 07:00:00,0.25,0.344,0.342 +2015-03-19 08:00:00,0.25,0.344,0.342 +2015-03-19 09:00:00,0.25,0.344,0.342 +2015-03-19 10:00:00,0.25,0.344,0.342 +2015-03-19 11:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 12:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 13:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 14:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 15:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 16:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 17:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 18:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 19:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 20:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 21:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 22:00:00,0.25,0.34299999999999997,0.341 +2015-03-19 23:00:00,0.25,0.34299999999999997,0.341 +2015-03-20 00:00:00,0.25,0.34299999999999997,0.341 +2015-03-20 01:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 02:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 03:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 04:00:00,0.249,0.34299999999999997,0.34 +2015-03-20 05:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 06:00:00,0.249,0.34299999999999997,0.34 +2015-03-20 07:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 08:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 09:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-20 10:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-20 11:00:00,0.25,0.34299999999999997,0.34299999999999997 +2015-03-20 12:00:00,0.25,0.34299999999999997,0.342 +2015-03-20 13:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 14:00:00,0.249,0.34299999999999997,0.341 +2015-03-20 15:00:00,0.249,0.34299999999999997,0.34 +2015-03-20 16:00:00,0.249,0.34299999999999997,0.34 +2015-03-20 17:00:00,0.25,0.34299999999999997,0.34 +2015-03-20 18:00:00,0.25,0.34299999999999997,0.34 +2015-03-20 19:00:00,0.25,0.34299999999999997,0.34 +2015-03-20 20:00:00,0.249,0.34299999999999997,0.34 +2015-03-20 21:00:00,0.249,0.34299999999999997,0.34 +2015-03-20 22:00:00,0.249,0.34299999999999997,0.34 +2015-03-20 23:00:00,0.249,0.344,0.34 +2015-03-21 00:00:00,0.249,0.344,0.34 +2015-03-21 01:00:00,0.249,0.344,0.34 +2015-03-21 02:00:00,0.249,0.344,0.34 +2015-03-21 03:00:00,0.249,0.344,0.341 +2015-03-21 04:00:00,0.249,0.34299999999999997,0.342 +2015-03-21 05:00:00,0.249,0.34299999999999997,0.342 +2015-03-21 06:00:00,0.249,0.344,0.342 +2015-03-21 07:00:00,0.249,0.34299999999999997,0.342 +2015-03-21 08:00:00,0.249,0.34299999999999997,0.342 +2015-03-21 09:00:00,0.249,0.34299999999999997,0.341 +2015-03-21 10:00:00,0.249,0.34299999999999997,0.341 +2015-03-21 11:00:00,0.249,0.34299999999999997,0.341 +2015-03-21 12:00:00,0.248,0.34299999999999997,0.34 +2015-03-21 13:00:00,0.248,0.34299999999999997,0.34 +2015-03-21 14:00:00,0.248,0.34299999999999997,0.34 +2015-03-21 15:00:00,0.248,0.34299999999999997,0.34 +2015-03-21 16:00:00,0.248,0.34299999999999997,0.34 +2015-03-21 17:00:00,0.249,0.34299999999999997,0.341 +2015-03-21 18:00:00,0.249,0.34299999999999997,0.341 +2015-03-21 19:00:00,0.249,0.34299999999999997,0.341 +2015-03-21 20:00:00,0.249,0.34299999999999997,0.34 +2015-03-21 21:00:00,0.249,0.34299999999999997,0.34 +2015-03-21 22:00:00,0.249,0.34299999999999997,0.34 +2015-03-21 23:00:00,0.248,0.34299999999999997,0.34 +2015-03-22 00:00:00,0.248,0.34299999999999997,0.34 +2015-03-22 01:00:00,0.248,0.34299999999999997,0.34 +2015-03-22 02:00:00,0.249,0.34299999999999997,0.34 +2015-03-22 03:00:00,0.249,0.34299999999999997,0.341 +2015-03-22 04:00:00,0.249,0.34299999999999997,0.341 +2015-03-22 05:00:00,0.249,0.34299999999999997,0.341 +2015-03-22 06:00:00,0.249,0.34299999999999997,0.341 +2015-03-22 07:00:00,0.249,0.34299999999999997,0.34 +2015-03-22 08:00:00,0.248,0.34299999999999997,0.34 +2015-03-22 09:00:00,0.248,0.34299999999999997,0.34 +2015-03-22 10:00:00,0.248,0.344,0.33899999999999997 +2015-03-22 11:00:00,0.248,0.34299999999999997,0.33899999999999997 +2015-03-22 12:00:00,0.248,0.34299999999999997,0.33899999999999997 +2015-03-22 13:00:00,0.248,0.342,0.33899999999999997 +2015-03-22 14:00:00,0.248,0.342,0.33899999999999997 +2015-03-22 15:00:00,0.248,0.34299999999999997,0.33899999999999997 +2015-03-22 16:00:00,0.248,0.34299999999999997,0.33899999999999997 +2015-03-22 17:00:00,0.248,0.34299999999999997,0.33899999999999997 +2015-03-22 18:00:00,0.248,0.34299999999999997,0.33799999999999997 +2015-03-22 19:00:00,0.248,0.34299999999999997,0.33799999999999997 +2015-03-22 20:00:00,0.248,0.34299999999999997,0.33799999999999997 +2015-03-22 21:00:00,0.248,0.34299999999999997,0.33799999999999997 +2015-03-22 22:00:00,0.248,0.34299999999999997,0.33799999999999997 +2015-03-22 23:00:00,0.248,0.34299999999999997,0.33799999999999997 +2015-03-23 00:00:00,0.247,0.34299999999999997,0.33799999999999997 +2015-03-23 01:00:00,0.248,0.34299999999999997,0.33799999999999997 +2015-03-23 02:00:00,0.247,0.34299999999999997,0.33799999999999997 +2015-03-23 03:00:00,0.247,0.34299999999999997,0.33799999999999997 +2015-03-23 04:00:00,0.247,0.34299999999999997,0.33799999999999997 +2015-03-23 05:00:00,0.247,0.34,0.33799999999999997 +2015-03-23 06:00:00,0.247,0.341,0.33799999999999997 +2015-03-23 07:00:00,0.247,0.341,0.33799999999999997 +2015-03-23 08:00:00,0.247,0.341,0.33799999999999997 +2015-03-23 09:00:00,0.247,0.341,0.33899999999999997 +2015-03-23 10:00:00,0.248,0.341,0.34 +2015-03-23 11:00:00,0.248,0.341,0.33899999999999997 +2015-03-23 12:00:00,0.247,0.342,0.33799999999999997 +2015-03-23 13:00:00,0.247,0.34299999999999997,0.33799999999999997 +2015-03-23 14:00:00,0.247,0.34299999999999997,0.33799999999999997 +2015-03-23 15:00:00,0.247,0.342,0.33799999999999997 +2015-03-23 16:00:00,0.248,0.34,0.33799999999999997 +2015-03-23 17:00:00,0.248,0.33799999999999997,0.33799999999999997 +2015-03-23 18:00:00,0.248,0.337,0.33799999999999997 +2015-03-23 19:00:00,0.248,0.337,0.33799999999999997 +2015-03-23 20:00:00,0.248,0.336,0.33799999999999997 +2015-03-23 21:00:00,0.247,0.35200000000000004,0.33799999999999997 +2015-03-23 22:00:00,0.247,0.38,0.33799999999999997 +2015-03-23 23:00:00,0.248,0.38,0.33799999999999997 +2015-03-24 00:00:00,0.247,0.373,0.33799999999999997 +2015-03-24 01:00:00,0.247,0.382,0.33799999999999997 +2015-03-24 02:00:00,0.247,0.381,0.33799999999999997 +2015-03-24 03:00:00,0.247,0.385,0.33799999999999997 +2015-03-24 04:00:00,0.247,0.38299999999999995,0.33799999999999997 +2015-03-24 05:00:00,0.247,0.382,0.33799999999999997 +2015-03-24 06:00:00,0.247,0.382,0.33799999999999997 +2015-03-24 07:00:00,0.247,0.38,0.33799999999999997 +2015-03-24 08:00:00,0.248,0.37799999999999995,0.33899999999999997 +2015-03-24 09:00:00,0.248,0.37799999999999995,0.34 +2015-03-24 10:00:00,0.248,0.377,0.34 +2015-03-24 11:00:00,0.248,0.377,0.33899999999999997 +2015-03-24 12:00:00,0.247,0.375,0.33799999999999997 +2015-03-24 13:00:00,0.247,0.373,0.33799999999999997 +2015-03-24 14:00:00,0.247,0.373,0.33799999999999997 +2015-03-24 15:00:00,0.247,0.373,0.33799999999999997 +2015-03-24 16:00:00,0.247,0.37200000000000005,0.33799999999999997 +2015-03-24 17:00:00,0.248,0.37,0.33799999999999997 +2015-03-24 18:00:00,0.248,0.36700000000000005,0.33799999999999997 +2015-03-24 19:00:00,0.248,0.37,0.337 +2015-03-24 20:00:00,0.247,0.369,0.337 +2015-03-24 21:00:00,0.247,0.37,0.33799999999999997 +2015-03-24 22:00:00,0.247,0.37,0.33799999999999997 +2015-03-24 23:00:00,0.247,0.37,0.33799999999999997 +2015-03-25 00:00:00,0.247,0.37,0.33799999999999997 +2015-03-25 01:00:00,0.247,0.37,0.33799999999999997 +2015-03-25 02:00:00,0.247,0.37,0.33799999999999997 +2015-03-25 03:00:00,0.247,0.368,0.33799999999999997 +2015-03-25 04:00:00,0.247,0.36700000000000005,0.33799999999999997 +2015-03-25 05:00:00,0.247,0.366,0.33799999999999997 +2015-03-25 06:00:00,0.247,0.365,0.33899999999999997 +2015-03-25 07:00:00,0.247,0.365,0.33899999999999997 +2015-03-25 08:00:00,0.248,0.361,0.33899999999999997 +2015-03-25 09:00:00,0.248,0.366,0.33899999999999997 +2015-03-25 10:00:00,0.247,0.358,0.33799999999999997 +2015-03-25 11:00:00,0.247,0.379,0.33799999999999997 +2015-03-25 12:00:00,0.247,0.381,0.33799999999999997 +2015-03-25 13:00:00,0.247,0.377,0.33799999999999997 +2015-03-25 14:00:00,0.248,0.42100000000000004,0.33799999999999997 +2015-03-25 15:00:00,0.248,0.45,0.33799999999999997 +2015-03-25 16:00:00,0.248,0.449,0.33799999999999997 +2015-03-25 17:00:00,0.248,0.452,0.337 +2015-03-25 18:00:00,0.248,0.456,0.337 +2015-03-25 19:00:00,0.248,0.457,0.337 +2015-03-25 20:00:00,0.248,0.45899999999999996,0.337 +2015-03-25 21:00:00,0.248,0.451,0.337 +2015-03-25 22:00:00,0.248,0.418,0.337 +2015-03-25 23:00:00,0.248,0.405,0.337 +2015-03-26 00:00:00,0.247,0.384,0.337 +2015-03-26 01:00:00,0.247,0.37799999999999995,0.337 +2015-03-26 02:00:00,0.247,0.381,0.337 +2015-03-26 03:00:00,0.247,0.382,0.337 +2015-03-26 04:00:00,0.247,0.381,0.337 +2015-03-26 05:00:00,0.247,0.379,0.337 +2015-03-26 06:00:00,0.247,0.376,0.337 +2015-03-26 07:00:00,0.247,0.364,0.337 +2015-03-26 08:00:00,0.247,0.369,0.337 +2015-03-26 09:00:00,0.247,0.373,0.337 +2015-03-26 10:00:00,0.247,0.376,0.337 +2015-03-26 11:00:00,0.247,0.37799999999999995,0.337 +2015-03-26 12:00:00,0.247,0.37799999999999995,0.337 +2015-03-26 13:00:00,0.247,0.37799999999999995,0.337 +2015-03-26 14:00:00,0.247,0.377,0.337 +2015-03-26 15:00:00,0.247,0.376,0.337 +2015-03-26 16:00:00,0.247,0.375,0.337 +2015-03-26 17:00:00,0.247,0.369,0.337 +2015-03-26 18:00:00,0.247,0.37200000000000005,0.337 +2015-03-26 19:00:00,0.247,0.375,0.337 +2015-03-26 20:00:00,0.248,0.374,0.33799999999999997 +2015-03-26 21:00:00,0.248,0.361,0.33899999999999997 +2015-03-26 22:00:00,0.248,0.366,0.33799999999999997 +2015-03-26 23:00:00,0.248,0.373,0.33799999999999997 +2015-03-27 00:00:00,0.248,0.375,0.33799999999999997 +2015-03-27 01:00:00,0.249,0.377,0.337 +2015-03-27 02:00:00,0.251,0.377,0.337 +2015-03-27 03:00:00,0.251,0.375,0.33899999999999997 +2015-03-27 04:00:00,0.252,0.375,0.33899999999999997 +2015-03-27 05:00:00,0.25,0.374,0.33899999999999997 +2015-03-27 06:00:00,0.251,0.373,0.33799999999999997 +2015-03-27 07:00:00,0.25,0.373,0.33799999999999997 +2015-03-27 08:00:00,0.25,0.37200000000000005,0.33799999999999997 +2015-03-27 09:00:00,0.248,0.37,0.337 +2015-03-27 10:00:00,0.248,0.366,0.337 +2015-03-27 11:00:00,0.248,0.37200000000000005,0.337 +2015-03-27 12:00:00,0.248,0.374,0.337 +2015-03-27 13:00:00,0.248,0.374,0.337 +2015-03-27 14:00:00,0.249,0.376,0.337 +2015-03-27 15:00:00,0.249,0.377,0.337 +2015-03-27 16:00:00,0.248,0.375,0.337 +2015-03-27 17:00:00,0.248,0.377,0.336 +2015-03-27 18:00:00,0.248,0.377,0.336 +2015-03-27 19:00:00,0.248,0.375,0.336 +2015-03-27 20:00:00,0.248,0.375,0.336 +2015-03-27 21:00:00,0.248,0.373,0.336 +2015-03-27 22:00:00,0.248,0.373,0.336 +2015-03-27 23:00:00,0.248,0.37200000000000005,0.336 +2015-03-28 00:00:00,0.248,0.37200000000000005,0.336 +2015-03-28 01:00:00,0.248,0.37200000000000005,0.336 +2015-03-28 02:00:00,0.248,0.37200000000000005,0.336 +2015-03-28 03:00:00,0.248,0.37200000000000005,0.336 +2015-03-28 04:00:00,0.248,0.37200000000000005,0.336 +2015-03-28 05:00:00,0.248,0.371,0.336 +2015-03-28 06:00:00,0.247,0.37,0.336 +2015-03-28 07:00:00,0.248,0.369,0.336 +2015-03-28 08:00:00,0.247,0.368,0.336 +2015-03-28 09:00:00,0.247,0.368,0.336 +2015-03-28 10:00:00,0.247,0.36700000000000005,0.336 +2015-03-28 11:00:00,0.247,0.366,0.336 +2015-03-28 12:00:00,0.247,0.366,0.336 +2015-03-28 13:00:00,0.248,0.366,0.336 +2015-03-28 14:00:00,0.248,0.366,0.336 +2015-03-28 15:00:00,0.248,0.365,0.336 +2015-03-28 16:00:00,0.248,0.365,0.336 +2015-03-28 17:00:00,0.248,0.365,0.336 +2015-03-28 18:00:00,0.248,0.365,0.336 +2015-03-28 19:00:00,0.248,0.365,0.336 +2015-03-28 20:00:00,0.248,0.365,0.336 +2015-03-28 21:00:00,0.248,0.366,0.337 +2015-03-28 22:00:00,0.248,0.365,0.336 +2015-03-28 23:00:00,0.248,0.365,0.336 +2015-03-29 00:00:00,0.249,0.365,0.33799999999999997 +2015-03-29 01:00:00,0.249,0.365,0.341 +2015-03-29 02:00:00,0.248,0.365,0.342 +2015-03-29 03:00:00,0.249,0.365,0.341 +2015-03-29 04:00:00,0.249,0.365,0.34 +2015-03-29 05:00:00,0.249,0.364,0.34 +2015-03-29 06:00:00,0.249,0.363,0.34 +2015-03-29 07:00:00,0.249,0.363,0.33799999999999997 +2015-03-29 08:00:00,0.248,0.363,0.33799999999999997 +2015-03-29 09:00:00,0.248,0.36200000000000004,0.337 +2015-03-29 10:00:00,0.248,0.361,0.337 +2015-03-29 11:00:00,0.249,0.361,0.33799999999999997 +2015-03-29 12:00:00,0.25,0.361,0.341 +2015-03-29 13:00:00,0.248,0.36,0.344 +2015-03-29 14:00:00,0.245,0.36,0.345 +2015-03-29 15:00:00,0.245,0.36,0.345 +2015-03-29 16:00:00,0.245,0.358,0.34600000000000003 +2015-03-29 17:00:00,0.249,0.358,0.34700000000000003 +2015-03-29 18:00:00,0.26,0.358,0.35100000000000003 +2015-03-29 19:00:00,0.262,0.358,0.35200000000000004 +2015-03-29 20:00:00,0.265,0.358,0.349 +2015-03-29 21:00:00,0.259,0.358,0.353 +2015-03-29 22:00:00,0.263,0.358,0.365 +2015-03-29 23:00:00,0.261,0.359,0.379 +2015-03-30 00:00:00,0.264,0.358,0.38299999999999995 +2015-03-30 01:00:00,0.267,0.358,0.38299999999999995 +2015-03-30 02:00:00,0.266,0.358,0.38299999999999995 +2015-03-30 03:00:00,0.265,0.358,0.38299999999999995 +2015-03-30 04:00:00,0.265,0.35700000000000004,0.38299999999999995 +2015-03-30 05:00:00,0.264,0.35600000000000004,0.38299999999999995 +2015-03-30 06:00:00,0.264,0.35600000000000004,0.382 +2015-03-30 07:00:00,0.263,0.35600000000000004,0.382 +2015-03-30 08:00:00,0.263,0.355,0.382 +2015-03-30 09:00:00,0.263,0.355,0.382 +2015-03-30 10:00:00,0.26,0.355,0.38299999999999995 +2015-03-30 11:00:00,0.262,0.355,0.384 +2015-03-30 12:00:00,0.262,0.354,0.382 +2015-03-30 13:00:00,0.262,0.353,0.382 +2015-03-30 14:00:00,0.259,0.353,0.384 +2015-03-30 15:00:00,0.258,0.353,0.385 +2015-03-30 16:00:00,0.261,0.353,0.38299999999999995 +2015-03-30 17:00:00,0.261,0.353,0.38299999999999995 +2015-03-30 18:00:00,0.261,0.353,0.382 +2015-03-30 19:00:00,0.26,0.353,0.37799999999999995 +2015-03-30 20:00:00,0.26,0.353,0.373 +2015-03-30 21:00:00,0.259,0.353,0.369 +2015-03-30 22:00:00,0.259,0.353,0.364 +2015-03-30 23:00:00,0.259,0.353,0.364 +2015-03-31 00:00:00,0.259,0.353,0.363 +2015-03-31 01:00:00,0.258,0.353,0.366 +2015-03-31 02:00:00,0.254,0.353,0.36700000000000005 +2015-03-31 03:00:00,0.254,0.353,0.366 +2015-03-31 04:00:00,0.255,0.353,0.366 +2015-03-31 05:00:00,0.254,0.353,0.366 +2015-03-31 06:00:00,0.259,0.35100000000000003,0.366 +2015-03-31 07:00:00,0.26,0.35100000000000003,0.368 +2015-03-31 08:00:00,0.263,0.35100000000000003,0.373 +2015-03-31 09:00:00,0.267,0.35100000000000003,0.377 +2015-03-31 10:00:00,0.266,0.35100000000000003,0.37799999999999995 +2015-03-31 11:00:00,0.26899999999999996,0.35100000000000003,0.384 +2015-03-31 12:00:00,0.26899999999999996,0.35,0.386 +2015-03-31 13:00:00,0.268,0.349,0.386 +2015-03-31 14:00:00,0.26899999999999996,0.349,0.387 +2015-03-31 15:00:00,0.26899999999999996,0.349,0.387 +2015-03-31 16:00:00,0.268,0.349,0.387 +2015-03-31 17:00:00,0.267,0.349,0.387 +2015-03-31 18:00:00,0.267,0.349,0.391 +2015-03-31 19:00:00,0.266,0.348,0.391 +2015-03-31 20:00:00,0.264,0.348,0.391 +2015-03-31 21:00:00,0.257,0.349,0.391 +2015-03-31 22:00:00,0.257,0.349,0.391 +2015-03-31 23:00:00,0.261,0.349,0.391 +2015-04-01 00:00:00,0.265,0.349,0.391 +2015-04-01 01:00:00,0.265,0.349,0.391 +2015-04-01 02:00:00,0.265,0.349,0.391 +2015-04-01 03:00:00,0.261,0.349,0.391 +2015-04-01 04:00:00,0.256,0.349,0.391 +2015-04-01 05:00:00,0.255,0.349,0.391 +2015-04-01 06:00:00,0.256,0.349,0.391 +2015-04-01 07:00:00,0.259,0.349,0.391 +2015-04-01 08:00:00,0.264,0.349,0.391 +2015-04-01 09:00:00,0.266,0.349,0.391 +2015-04-01 10:00:00,0.265,0.349,0.391 +2015-04-01 11:00:00,0.265,0.348,0.391 +2015-04-01 12:00:00,0.265,0.34700000000000003,0.391 +2015-04-01 13:00:00,0.266,0.34600000000000003,0.39 +2015-04-01 14:00:00,0.259,0.348,0.391 +2015-04-01 15:00:00,0.262,0.348,0.391 +2015-04-01 16:00:00,0.266,0.348,0.39 +2015-04-01 17:00:00,0.264,0.348,0.391 +2015-04-01 18:00:00,0.258,0.348,0.391 +2015-04-01 19:00:00,0.26,0.349,0.391 +2015-04-01 20:00:00,0.259,0.349,0.391 +2015-04-01 21:00:00,0.261,0.349,0.391 +2015-04-01 22:00:00,0.264,0.349,0.391 +2015-04-01 23:00:00,0.265,0.348,0.391 +2015-04-02 00:00:00,0.265,0.349,0.39 +2015-04-02 01:00:00,0.264,0.348,0.39 +2015-04-02 02:00:00,0.264,0.348,0.39 +2015-04-02 03:00:00,0.263,0.348,0.39 +2015-04-02 04:00:00,0.263,0.348,0.39 +2015-04-02 05:00:00,0.262,0.348,0.391 +2015-04-02 06:00:00,0.261,0.348,0.391 +2015-04-02 07:00:00,0.258,0.348,0.392 +2015-04-02 08:00:00,0.263,0.348,0.391 +2015-04-02 09:00:00,0.264,0.348,0.391 +2015-04-02 10:00:00,0.264,0.348,0.391 +2015-04-02 11:00:00,0.265,0.348,0.392 +2015-04-02 12:00:00,0.265,0.348,0.391 +2015-04-02 13:00:00,0.264,0.34600000000000003,0.391 +2015-04-02 14:00:00,0.267,0.34600000000000003,0.391 +2015-04-02 15:00:00,0.266,0.34600000000000003,0.391 +2015-04-02 16:00:00,0.265,0.34600000000000003,0.391 +2015-04-02 17:00:00,0.265,0.34600000000000003,0.391 +2015-04-02 18:00:00,0.264,0.34600000000000003,0.391 +2015-04-02 19:00:00,0.264,0.34600000000000003,0.391 +2015-04-02 20:00:00,0.263,0.34600000000000003,0.391 +2015-04-02 21:00:00,0.262,0.34600000000000003,0.391 +2015-04-02 22:00:00,0.262,0.34600000000000003,0.391 +2015-04-02 23:00:00,0.261,0.34600000000000003,0.391 +2015-04-03 00:00:00,0.261,0.34700000000000003,0.391 +2015-04-03 01:00:00,0.261,0.34700000000000003,0.391 +2015-04-03 02:00:00,0.26,0.34700000000000003,0.391 +2015-04-03 03:00:00,0.26,0.34700000000000003,0.391 +2015-04-03 04:00:00,0.26,0.34600000000000003,0.391 +2015-04-03 05:00:00,0.259,0.34600000000000003,0.391 +2015-04-03 06:00:00,0.259,0.34600000000000003,0.391 +2015-04-03 07:00:00,0.261,0.34600000000000003,0.391 +2015-04-03 08:00:00,0.262,0.34600000000000003,0.391 +2015-04-03 09:00:00,0.262,0.34600000000000003,0.391 +2015-04-03 10:00:00,0.259,0.34600000000000003,0.391 +2015-04-03 11:00:00,0.258,0.34600000000000003,0.391 +2015-04-03 12:00:00,0.258,0.344,0.391 +2015-04-03 13:00:00,0.258,0.344,0.391 +2015-04-03 14:00:00,0.259,0.344,0.389 +2015-04-03 15:00:00,0.259,0.344,0.38799999999999996 +2015-04-03 16:00:00,0.259,0.344,0.38799999999999996 +2015-04-03 17:00:00,0.259,0.344,0.38799999999999996 +2015-04-03 18:00:00,0.259,0.344,0.387 +2015-04-03 19:00:00,0.259,0.344,0.387 +2015-04-03 20:00:00,0.259,0.344,0.387 +2015-04-03 21:00:00,0.258,0.344,0.386 +2015-04-03 22:00:00,0.258,0.345,0.385 +2015-04-03 23:00:00,0.258,0.34600000000000003,0.385 +2015-04-04 00:00:00,0.258,0.34600000000000003,0.385 +2015-04-04 01:00:00,0.258,0.34600000000000003,0.385 +2015-04-04 02:00:00,0.258,0.34600000000000003,0.384 +2015-04-04 03:00:00,0.258,0.34600000000000003,0.384 +2015-04-04 04:00:00,0.258,0.34600000000000003,0.38 +2015-04-04 05:00:00,0.257,0.34600000000000003,0.37799999999999995 +2015-04-04 06:00:00,0.257,0.34600000000000003,0.37799999999999995 +2015-04-04 07:00:00,0.257,0.34600000000000003,0.377 +2015-04-04 08:00:00,0.257,0.34600000000000003,0.376 +2015-04-04 09:00:00,0.257,0.345,0.376 +2015-04-04 10:00:00,0.257,0.344,0.375 +2015-04-04 11:00:00,0.257,0.344,0.375 +2015-04-04 12:00:00,0.257,0.344,0.375 +2015-04-04 13:00:00,0.257,0.34299999999999997,0.374 +2015-04-04 14:00:00,0.257,0.34299999999999997,0.374 +2015-04-04 15:00:00,0.257,0.34299999999999997,0.374 +2015-04-04 16:00:00,0.257,0.34299999999999997,0.373 +2015-04-04 17:00:00,0.257,0.34299999999999997,0.373 +2015-04-04 18:00:00,0.257,0.34299999999999997,0.373 +2015-04-04 19:00:00,0.257,0.34299999999999997,0.373 +2015-04-04 20:00:00,0.257,0.34299999999999997,0.373 +2015-04-04 21:00:00,0.256,0.34299999999999997,0.37200000000000005 +2015-04-04 22:00:00,0.256,0.34299999999999997,0.37200000000000005 +2015-04-04 23:00:00,0.256,0.344,0.37200000000000005 +2015-04-05 00:00:00,0.255,0.344,0.37200000000000005 +2015-04-05 01:00:00,0.255,0.344,0.37200000000000005 +2015-04-05 02:00:00,0.255,0.344,0.37200000000000005 +2015-04-05 03:00:00,0.255,0.344,0.37200000000000005 +2015-04-05 04:00:00,0.255,0.34299999999999997,0.37200000000000005 +2015-04-05 05:00:00,0.255,0.34299999999999997,0.37200000000000005 +2015-04-05 06:00:00,0.255,0.344,0.371 +2015-04-05 07:00:00,0.254,0.344,0.371 +2015-04-05 08:00:00,0.254,0.344,0.371 +2015-04-05 09:00:00,0.255,0.34299999999999997,0.37200000000000005 +2015-04-05 10:00:00,0.254,0.34299999999999997,0.371 +2015-04-05 11:00:00,0.254,0.34299999999999997,0.371 +2015-04-05 12:00:00,0.254,0.34299999999999997,0.371 +2015-04-05 13:00:00,0.255,0.342,0.371 +2015-04-05 14:00:00,0.255,0.341,0.371 +2015-04-05 15:00:00,0.255,0.341,0.371 +2015-04-05 16:00:00,0.255,0.341,0.371 +2015-04-05 17:00:00,0.255,0.341,0.371 +2015-04-05 18:00:00,0.255,0.341,0.369 +2015-04-05 19:00:00,0.255,0.341,0.361 +2015-04-05 20:00:00,0.255,0.341,0.358 +2015-04-05 21:00:00,0.255,0.341,0.358 +2015-04-05 22:00:00,0.254,0.341,0.358 +2015-04-05 23:00:00,0.254,0.341,0.35700000000000004 +2015-04-06 00:00:00,0.254,0.341,0.35700000000000004 +2015-04-06 01:00:00,0.254,0.341,0.35700000000000004 +2015-04-06 02:00:00,0.254,0.341,0.35700000000000004 +2015-04-06 03:00:00,0.254,0.341,0.35700000000000004 +2015-04-06 04:00:00,0.253,0.341,0.35700000000000004 +2015-04-06 05:00:00,0.253,0.341,0.35700000000000004 +2015-04-06 06:00:00,0.253,0.341,0.35700000000000004 +2015-04-06 07:00:00,0.253,0.341,0.35700000000000004 +2015-04-06 08:00:00,0.253,0.341,0.35700000000000004 +2015-04-06 09:00:00,0.253,0.341,0.35700000000000004 +2015-04-06 10:00:00,0.253,0.341,0.35700000000000004 +2015-04-06 11:00:00,0.253,0.341,0.35600000000000004 +2015-04-06 12:00:00,0.253,0.341,0.35600000000000004 +2015-04-06 13:00:00,0.253,0.341,0.35600000000000004 +2015-04-06 14:00:00,0.253,0.341,0.35600000000000004 +2015-04-06 15:00:00,0.253,0.34,0.35600000000000004 +2015-04-06 16:00:00,0.253,0.34,0.35600000000000004 +2015-04-06 17:00:00,0.254,0.34,0.35600000000000004 +2015-04-06 18:00:00,0.254,0.34,0.35600000000000004 +2015-04-06 19:00:00,0.254,0.34,0.35600000000000004 +2015-04-06 20:00:00,0.253,0.34,0.35600000000000004 +2015-04-06 21:00:00,0.253,0.34,0.35600000000000004 +2015-04-06 22:00:00,0.253,0.34,0.35600000000000004 +2015-04-06 23:00:00,0.253,0.341,0.35600000000000004 +2015-04-07 00:00:00,0.253,0.341,0.355 +2015-04-07 01:00:00,0.253,0.341,0.355 +2015-04-07 02:00:00,0.253,0.341,0.355 +2015-04-07 03:00:00,0.252,0.341,0.355 +2015-04-07 04:00:00,0.252,0.341,0.355 +2015-04-07 05:00:00,0.252,0.34,0.355 +2015-04-07 06:00:00,0.252,0.34,0.355 +2015-04-07 07:00:00,0.252,0.33899999999999997,0.355 +2015-04-07 08:00:00,0.252,0.33899999999999997,0.355 +2015-04-07 09:00:00,0.252,0.33899999999999997,0.35700000000000004 +2015-04-07 10:00:00,0.252,0.33899999999999997,0.35600000000000004 +2015-04-07 11:00:00,0.252,0.33899999999999997,0.355 +2015-04-07 12:00:00,0.252,0.33899999999999997,0.355 +2015-04-07 13:00:00,0.252,0.33899999999999997,0.355 +2015-04-07 14:00:00,0.252,0.33799999999999997,0.355 +2015-04-07 15:00:00,0.253,0.33799999999999997,0.354 +2015-04-07 16:00:00,0.253,0.33799999999999997,0.354 +2015-04-07 17:00:00,0.253,0.33799999999999997,0.354 +2015-04-07 18:00:00,0.253,0.33799999999999997,0.354 +2015-04-07 19:00:00,0.253,0.33799999999999997,0.354 +2015-04-07 20:00:00,0.253,0.33799999999999997,0.354 +2015-04-07 21:00:00,0.252,0.33799999999999997,0.354 +2015-04-07 22:00:00,0.252,0.33799999999999997,0.354 +2015-04-07 23:00:00,0.252,0.33899999999999997,0.354 +2015-04-08 00:00:00,0.252,0.33899999999999997,0.354 +2015-04-08 01:00:00,0.252,0.33899999999999997,0.354 +2015-04-08 02:00:00,0.251,0.33899999999999997,0.354 +2015-04-08 03:00:00,0.252,0.33899999999999997,0.354 +2015-04-08 04:00:00,0.251,0.33899999999999997,0.354 +2015-04-08 05:00:00,0.251,0.33799999999999997,0.354 +2015-04-08 06:00:00,0.251,0.33799999999999997,0.354 +2015-04-08 07:00:00,0.251,0.33799999999999997,0.354 +2015-04-08 08:00:00,0.251,0.33799999999999997,0.354 +2015-04-08 09:00:00,0.251,0.33799999999999997,0.353 +2015-04-08 10:00:00,0.251,0.33799999999999997,0.353 +2015-04-08 11:00:00,0.251,0.33799999999999997,0.353 +2015-04-08 12:00:00,0.251,0.33799999999999997,0.353 +2015-04-08 13:00:00,0.251,0.33799999999999997,0.353 +2015-04-08 14:00:00,0.252,0.33799999999999997,0.353 +2015-04-08 15:00:00,0.252,0.33799999999999997,0.353 +2015-04-08 16:00:00,0.252,0.337,0.353 +2015-04-08 17:00:00,0.252,0.336,0.353 +2015-04-08 18:00:00,0.252,0.336,0.353 +2015-04-08 19:00:00,0.252,0.336,0.353 +2015-04-08 20:00:00,0.252,0.336,0.353 +2015-04-08 21:00:00,0.252,0.336,0.353 +2015-04-08 22:00:00,0.252,0.337,0.353 +2015-04-08 23:00:00,0.251,0.33799999999999997,0.353 +2015-04-09 00:00:00,0.251,0.33799999999999997,0.35 +2015-04-09 01:00:00,0.251,0.33799999999999997,0.348 +2015-04-09 02:00:00,0.251,0.33799999999999997,0.348 +2015-04-09 03:00:00,0.251,0.337,0.348 +2015-04-09 04:00:00,0.251,0.337,0.348 +2015-04-09 05:00:00,0.251,0.337,0.34700000000000003 +2015-04-09 06:00:00,0.251,0.336,0.34700000000000003 +2015-04-09 07:00:00,0.25,0.336,0.34700000000000003 +2015-04-09 08:00:00,0.251,0.336,0.348 +2015-04-09 09:00:00,0.251,0.336,0.348 +2015-04-09 10:00:00,0.251,0.336,0.348 +2015-04-09 11:00:00,0.25,0.336,0.34700000000000003 +2015-04-09 12:00:00,0.251,0.336,0.34700000000000003 +2015-04-09 13:00:00,0.251,0.336,0.34700000000000003 +2015-04-09 14:00:00,0.251,0.33399999999999996,0.34700000000000003 +2015-04-09 15:00:00,0.251,0.33399999999999996,0.34700000000000003 +2015-04-09 16:00:00,0.252,0.33399999999999996,0.34700000000000003 +2015-04-09 17:00:00,0.252,0.33399999999999996,0.34700000000000003 +2015-04-09 18:00:00,0.252,0.33399999999999996,0.34700000000000003 +2015-04-09 19:00:00,0.252,0.33399999999999996,0.34600000000000003 +2015-04-09 20:00:00,0.252,0.33399999999999996,0.34600000000000003 +2015-04-09 21:00:00,0.252,0.33399999999999996,0.34600000000000003 +2015-04-09 22:00:00,0.251,0.33399999999999996,0.34600000000000003 +2015-04-09 23:00:00,0.251,0.336,0.34600000000000003 +2015-04-10 00:00:00,0.251,0.336,0.34600000000000003 +2015-04-10 01:00:00,0.251,0.336,0.34600000000000003 +2015-04-10 02:00:00,0.251,0.336,0.34600000000000003 +2015-04-10 03:00:00,0.251,0.336,0.34600000000000003 +2015-04-10 04:00:00,0.251,0.336,0.34600000000000003 +2015-04-10 05:00:00,0.25,0.335,0.34600000000000003 +2015-04-10 06:00:00,0.25,0.335,0.34600000000000003 +2015-04-10 07:00:00,0.25,0.33399999999999996,0.34600000000000003 +2015-04-10 08:00:00,0.25,0.33399999999999996,0.34700000000000003 +2015-04-10 09:00:00,0.25,0.33399999999999996,0.34600000000000003 +2015-04-10 10:00:00,0.25,0.33399999999999996,0.34600000000000003 +2015-04-10 11:00:00,0.25,0.33399999999999996,0.34600000000000003 +2015-04-10 12:00:00,0.25,0.33399999999999996,0.34600000000000003 +2015-04-10 13:00:00,0.251,0.33399999999999996,0.34600000000000003 +2015-04-10 14:00:00,0.251,0.33399999999999996,0.34600000000000003 +2015-04-10 15:00:00,0.251,0.33299999999999996,0.34600000000000003 +2015-04-10 16:00:00,0.251,0.332,0.34600000000000003 +2015-04-10 17:00:00,0.251,0.332,0.34600000000000003 +2015-04-10 18:00:00,0.252,0.332,0.345 +2015-04-10 19:00:00,0.251,0.332,0.345 +2015-04-10 20:00:00,0.251,0.332,0.345 +2015-04-10 21:00:00,0.251,0.332,0.345 +2015-04-10 22:00:00,0.251,0.33399999999999996,0.345 +2015-04-10 23:00:00,0.251,0.33299999999999996,0.344 +2015-04-11 00:00:00,0.25,0.33399999999999996,0.344 +2015-04-11 01:00:00,0.25,0.33299999999999996,0.344 +2015-04-11 02:00:00,0.25,0.33299999999999996,0.344 +2015-04-11 03:00:00,0.25,0.33299999999999996,0.344 +2015-04-11 04:00:00,0.25,0.332,0.344 +2015-04-11 05:00:00,0.25,0.331,0.344 +2015-04-11 06:00:00,0.25,0.331,0.344 +2015-04-11 07:00:00,0.249,0.331,0.344 +2015-04-11 08:00:00,0.249,0.331,0.344 +2015-04-11 09:00:00,0.249,0.331,0.344 +2015-04-11 10:00:00,0.249,0.331,0.344 +2015-04-11 11:00:00,0.25,0.331,0.344 +2015-04-11 12:00:00,0.25,0.331,0.344 +2015-04-11 13:00:00,0.25,0.331,0.344 +2015-04-11 14:00:00,0.25,0.331,0.344 +2015-04-11 15:00:00,0.25,0.331,0.344 +2015-04-11 16:00:00,0.25,0.331,0.344 +2015-04-11 17:00:00,0.25,0.331,0.344 +2015-04-11 18:00:00,0.25,0.331,0.344 +2015-04-11 19:00:00,0.25,0.331,0.344 +2015-04-11 20:00:00,0.25,0.331,0.344 +2015-04-11 21:00:00,0.25,0.331,0.344 +2015-04-11 22:00:00,0.249,0.331,0.34700000000000003 +2015-04-11 23:00:00,0.249,0.331,0.348 +2015-04-12 00:00:00,0.25,0.331,0.34700000000000003 +2015-04-12 01:00:00,0.251,0.331,0.345 +2015-04-12 02:00:00,0.25,0.331,0.345 +2015-04-12 03:00:00,0.25,0.331,0.344 +2015-04-12 04:00:00,0.25,0.331,0.344 +2015-04-12 05:00:00,0.249,0.331,0.344 +2015-04-12 06:00:00,0.249,0.331,0.344 +2015-04-12 07:00:00,0.249,0.33,0.344 +2015-04-12 08:00:00,0.249,0.33,0.344 +2015-04-12 09:00:00,0.249,0.32899999999999996,0.344 +2015-04-12 10:00:00,0.249,0.32899999999999996,0.34299999999999997 +2015-04-12 11:00:00,0.249,0.32899999999999996,0.34299999999999997 +2015-04-12 12:00:00,0.249,0.32899999999999996,0.34299999999999997 +2015-04-12 13:00:00,0.249,0.32899999999999996,0.34299999999999997 +2015-04-12 14:00:00,0.249,0.33,0.34299999999999997 +2015-04-12 15:00:00,0.25,0.32899999999999996,0.34299999999999997 +2015-04-12 16:00:00,0.25,0.32899999999999996,0.34299999999999997 +2015-04-12 17:00:00,0.25,0.32899999999999996,0.34299999999999997 +2015-04-12 18:00:00,0.25,0.32899999999999996,0.34299999999999997 +2015-04-12 19:00:00,0.25,0.32899999999999996,0.34299999999999997 +2015-04-12 20:00:00,0.249,0.32899999999999996,0.342 +2015-04-12 21:00:00,0.249,0.32899999999999996,0.342 +2015-04-12 22:00:00,0.249,0.32899999999999996,0.342 +2015-04-12 23:00:00,0.249,0.32899999999999996,0.342 +2015-04-13 00:00:00,0.249,0.32899999999999996,0.342 +2015-04-13 01:00:00,0.249,0.32899999999999996,0.342 +2015-04-13 02:00:00,0.248,0.32899999999999996,0.342 +2015-04-13 03:00:00,0.248,0.32899999999999996,0.342 +2015-04-13 04:00:00,0.248,0.32899999999999996,0.342 +2015-04-13 05:00:00,0.248,0.32899999999999996,0.342 +2015-04-13 06:00:00,0.248,0.32899999999999996,0.342 +2015-04-13 07:00:00,0.248,0.32799999999999996,0.342 +2015-04-13 08:00:00,0.248,0.327,0.342 +2015-04-13 09:00:00,0.248,0.327,0.342 +2015-04-13 10:00:00,0.248,0.327,0.342 +2015-04-13 11:00:00,0.248,0.327,0.342 +2015-04-13 12:00:00,0.248,0.327,0.342 +2015-04-13 13:00:00,0.248,0.327,0.342 +2015-04-13 14:00:00,0.248,0.327,0.342 +2015-04-13 15:00:00,0.248,0.327,0.342 +2015-04-13 16:00:00,0.249,0.327,0.342 +2015-04-13 17:00:00,0.249,0.327,0.342 +2015-04-13 18:00:00,0.248,0.327,0.342 +2015-04-13 19:00:00,0.248,0.326,0.342 +2015-04-13 20:00:00,0.248,0.326,0.341 +2015-04-13 21:00:00,0.248,0.327,0.341 +2015-04-13 22:00:00,0.248,0.327,0.341 +2015-04-13 23:00:00,0.248,0.32799999999999996,0.341 +2015-04-14 00:00:00,0.247,0.327,0.341 +2015-04-14 01:00:00,0.247,0.327,0.341 +2015-04-14 02:00:00,0.247,0.327,0.341 +2015-04-14 03:00:00,0.24600000000000002,0.327,0.341 +2015-04-14 04:00:00,0.24600000000000002,0.327,0.341 +2015-04-14 05:00:00,0.24600000000000002,0.327,0.341 +2015-04-14 06:00:00,0.24600000000000002,0.327,0.341 +2015-04-14 07:00:00,0.24600000000000002,0.327,0.341 +2015-04-14 08:00:00,0.24600000000000002,0.327,0.341 +2015-04-14 09:00:00,0.24600000000000002,0.326,0.341 +2015-04-14 10:00:00,0.24600000000000002,0.326,0.341 +2015-04-14 11:00:00,0.24600000000000002,0.326,0.341 +2015-04-14 12:00:00,0.24600000000000002,0.326,0.341 +2015-04-14 13:00:00,0.24600000000000002,0.326,0.341 +2015-04-14 14:00:00,0.247,0.326,0.341 +2015-04-14 15:00:00,0.247,0.326,0.341 +2015-04-14 16:00:00,0.248,0.326,0.341 +2015-04-14 17:00:00,0.247,0.326,0.341 +2015-04-14 18:00:00,0.248,0.326,0.341 +2015-04-14 19:00:00,0.247,0.326,0.341 +2015-04-14 20:00:00,0.247,0.326,0.341 +2015-04-14 21:00:00,0.251,0.326,0.341 +2015-04-14 22:00:00,0.252,0.326,0.341 +2015-04-14 23:00:00,0.251,0.327,0.341 +2015-04-15 00:00:00,0.25,0.327,0.341 +2015-04-15 01:00:00,0.252,0.327,0.341 +2015-04-15 02:00:00,0.251,0.327,0.341 +2015-04-15 03:00:00,0.25,0.327,0.341 +2015-04-15 04:00:00,0.248,0.327,0.341 +2015-04-15 05:00:00,0.24600000000000002,0.326,0.341 +2015-04-15 06:00:00,0.245,0.326,0.341 +2015-04-15 07:00:00,0.245,0.326,0.341 +2015-04-15 08:00:00,0.245,0.326,0.341 +2015-04-15 09:00:00,0.245,0.326,0.341 +2015-04-15 10:00:00,0.245,0.326,0.341 +2015-04-15 11:00:00,0.245,0.326,0.341 +2015-04-15 12:00:00,0.24600000000000002,0.326,0.341 +2015-04-15 13:00:00,0.24600000000000002,0.326,0.341 +2015-04-15 14:00:00,0.24600000000000002,0.325,0.341 +2015-04-15 15:00:00,0.24600000000000002,0.324,0.341 +2015-04-15 16:00:00,0.24600000000000002,0.324,0.341 +2015-04-15 17:00:00,0.24600000000000002,0.324,0.341 +2015-04-15 18:00:00,0.24600000000000002,0.324,0.341 +2015-04-15 19:00:00,0.24600000000000002,0.324,0.341 +2015-04-15 20:00:00,0.24600000000000002,0.324,0.34 +2015-04-15 21:00:00,0.245,0.324,0.34 +2015-04-15 22:00:00,0.245,0.324,0.34 +2015-04-15 23:00:00,0.245,0.326,0.34 +2015-04-16 00:00:00,0.245,0.327,0.34 +2015-04-16 01:00:00,0.245,0.327,0.34 +2015-04-16 02:00:00,0.245,0.326,0.34 +2015-04-16 03:00:00,0.244,0.326,0.34 +2015-04-16 04:00:00,0.244,0.326,0.341 +2015-04-16 05:00:00,0.244,0.326,0.341 +2015-04-16 06:00:00,0.244,0.326,0.34 +2015-04-16 07:00:00,0.244,0.326,0.341 +2015-04-16 08:00:00,0.244,0.326,0.34 +2015-04-16 09:00:00,0.244,0.326,0.34 +2015-04-16 10:00:00,0.244,0.326,0.34 +2015-04-16 11:00:00,0.244,0.326,0.34 +2015-04-16 12:00:00,0.244,0.324,0.34 +2015-04-16 13:00:00,0.244,0.324,0.34 +2015-04-16 14:00:00,0.244,0.324,0.34 +2015-04-16 15:00:00,0.244,0.32299999999999995,0.34 +2015-04-16 16:00:00,0.244,0.32299999999999995,0.34 +2015-04-16 17:00:00,0.245,0.322,0.34 +2015-04-16 18:00:00,0.244,0.322,0.34 +2015-04-16 19:00:00,0.244,0.322,0.34 +2015-04-16 20:00:00,0.244,0.322,0.34 +2015-04-16 21:00:00,0.244,0.322,0.34 +2015-04-16 22:00:00,0.244,0.324,0.33899999999999997 +2015-04-16 23:00:00,0.243,0.324,0.33899999999999997 +2015-04-17 00:00:00,0.243,0.324,0.33899999999999997 +2015-04-17 01:00:00,0.242,0.324,0.344 +2015-04-17 02:00:00,0.24,0.324,0.34600000000000003 +2015-04-17 03:00:00,0.24100000000000002,0.324,0.345 +2015-04-17 04:00:00,0.242,0.324,0.345 +2015-04-17 05:00:00,0.242,0.324,0.345 +2015-04-17 06:00:00,0.242,0.324,0.345 +2015-04-17 07:00:00,0.243,0.324,0.345 +2015-04-17 08:00:00,0.244,0.324,0.344 +2015-04-17 09:00:00,0.244,0.324,0.342 +2015-04-17 10:00:00,0.244,0.324,0.341 +2015-04-17 11:00:00,0.243,0.324,0.341 +2015-04-17 12:00:00,0.244,0.322,0.34 +2015-04-17 13:00:00,0.243,0.321,0.34 +2015-04-17 14:00:00,0.244,0.321,0.34 +2015-04-17 15:00:00,0.244,0.321,0.34 +2015-04-17 16:00:00,0.244,0.321,0.34 +2015-04-17 17:00:00,0.244,0.321,0.34 +2015-04-17 18:00:00,0.244,0.321,0.34 +2015-04-17 19:00:00,0.243,0.321,0.34 +2015-04-17 20:00:00,0.243,0.321,0.33899999999999997 +2015-04-17 21:00:00,0.243,0.321,0.34 +2015-04-17 22:00:00,0.243,0.321,0.34 +2015-04-17 23:00:00,0.243,0.321,0.33899999999999997 +2015-04-18 00:00:00,0.243,0.322,0.33899999999999997 +2015-04-18 01:00:00,0.243,0.322,0.33899999999999997 +2015-04-18 02:00:00,0.243,0.322,0.33899999999999997 +2015-04-18 03:00:00,0.242,0.322,0.33899999999999997 +2015-04-18 04:00:00,0.242,0.322,0.33899999999999997 +2015-04-18 05:00:00,0.242,0.322,0.33899999999999997 +2015-04-18 06:00:00,0.242,0.321,0.33899999999999997 +2015-04-18 07:00:00,0.242,0.321,0.33899999999999997 +2015-04-18 08:00:00,0.242,0.321,0.34 +2015-04-18 09:00:00,0.242,0.321,0.34 +2015-04-18 10:00:00,0.242,0.321,0.33899999999999997 +2015-04-18 11:00:00,0.242,0.321,0.33899999999999997 +2015-04-18 12:00:00,0.242,0.321,0.33899999999999997 +2015-04-18 13:00:00,0.242,0.321,0.33899999999999997 +2015-04-18 14:00:00,0.242,0.32,0.33899999999999997 +2015-04-18 15:00:00,0.242,0.319,0.33899999999999997 +2015-04-18 16:00:00,0.242,0.319,0.33899999999999997 +2015-04-18 17:00:00,0.242,0.319,0.33899999999999997 +2015-04-18 18:00:00,0.242,0.318,0.33899999999999997 +2015-04-18 19:00:00,0.242,0.317,0.33899999999999997 +2015-04-18 20:00:00,0.242,0.317,0.33799999999999997 +2015-04-18 21:00:00,0.242,0.318,0.33799999999999997 +2015-04-18 22:00:00,0.24100000000000002,0.319,0.33799999999999997 +2015-04-18 23:00:00,0.24100000000000002,0.32,0.33799999999999997 +2015-04-19 00:00:00,0.24100000000000002,0.321,0.33799999999999997 +2015-04-19 01:00:00,0.24100000000000002,0.321,0.33899999999999997 +2015-04-19 02:00:00,0.24100000000000002,0.321,0.33799999999999997 +2015-04-19 03:00:00,0.24,0.321,0.33799999999999997 +2015-04-19 04:00:00,0.24,0.321,0.33799999999999997 +2015-04-19 05:00:00,0.24,0.321,0.33799999999999997 +2015-04-19 06:00:00,0.24,0.321,0.33799999999999997 +2015-04-19 07:00:00,0.24,0.321,0.33799999999999997 +2015-04-19 08:00:00,0.24,0.321,0.33899999999999997 +2015-04-19 09:00:00,0.24100000000000002,0.321,0.34 +2015-04-19 10:00:00,0.242,0.32,0.33899999999999997 +2015-04-19 11:00:00,0.243,0.319,0.33799999999999997 +2015-04-19 12:00:00,0.243,0.319,0.33799999999999997 +2015-04-19 13:00:00,0.243,0.319,0.33799999999999997 +2015-04-19 14:00:00,0.243,0.318,0.33899999999999997 +2015-04-19 15:00:00,0.244,0.317,0.33899999999999997 +2015-04-19 16:00:00,0.244,0.319,0.33899999999999997 +2015-04-19 17:00:00,0.244,0.319,0.33899999999999997 +2015-04-19 18:00:00,0.244,0.319,0.33899999999999997 +2015-04-19 19:00:00,0.243,0.319,0.33799999999999997 +2015-04-19 20:00:00,0.243,0.319,0.33799999999999997 +2015-04-19 21:00:00,0.243,0.319,0.33799999999999997 +2015-04-19 22:00:00,0.243,0.319,0.33799999999999997 +2015-04-19 23:00:00,0.243,0.319,0.33799999999999997 +2015-04-20 00:00:00,0.243,0.319,0.33799999999999997 +2015-04-20 01:00:00,0.243,0.319,0.33799999999999997 +2015-04-20 02:00:00,0.243,0.319,0.33799999999999997 +2015-04-20 03:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 04:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 05:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 06:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 07:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 08:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 09:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 10:00:00,0.242,0.319,0.33799999999999997 +2015-04-20 11:00:00,0.242,0.318,0.33799999999999997 +2015-04-20 12:00:00,0.242,0.317,0.33799999999999997 +2015-04-20 13:00:00,0.242,0.317,0.33799999999999997 +2015-04-20 14:00:00,0.242,0.317,0.33799999999999997 +2015-04-20 15:00:00,0.242,0.317,0.33799999999999997 +2015-04-20 16:00:00,0.242,0.317,0.33799999999999997 +2015-04-20 17:00:00,0.242,0.317,0.33799999999999997 +2015-04-20 18:00:00,0.24100000000000002,0.317,0.33799999999999997 +2015-04-20 19:00:00,0.24100000000000002,0.316,0.33799999999999997 +2015-04-20 20:00:00,0.242,0.316,0.33799999999999997 +2015-04-20 21:00:00,0.24100000000000002,0.316,0.33799999999999997 +2015-04-20 22:00:00,0.24100000000000002,0.316,0.33799999999999997 +2015-04-20 23:00:00,0.24100000000000002,0.317,0.33799999999999997 +2015-04-21 00:00:00,0.24100000000000002,0.317,0.33799999999999997 +2015-04-21 01:00:00,0.24100000000000002,0.317,0.33799999999999997 +2015-04-21 02:00:00,0.24,0.317,0.33799999999999997 +2015-04-21 03:00:00,0.24,0.317,0.33799999999999997 +2015-04-21 04:00:00,0.24,0.317,0.33799999999999997 +2015-04-21 05:00:00,0.24,0.315,0.33799999999999997 +2015-04-21 06:00:00,0.24,0.314,0.33799999999999997 +2015-04-21 07:00:00,0.24,0.315,0.33799999999999997 +2015-04-21 08:00:00,0.24,0.317,0.33799999999999997 +2015-04-21 09:00:00,0.24,0.317,0.33799999999999997 +2015-04-21 10:00:00,0.24,0.315,0.33799999999999997 +2015-04-21 11:00:00,0.24,0.313,0.33799999999999997 +2015-04-21 12:00:00,0.24,0.315,0.33799999999999997 +2015-04-21 13:00:00,0.24,0.317,0.33799999999999997 +2015-04-21 14:00:00,0.24,0.316,0.33799999999999997 +2015-04-21 15:00:00,0.24,0.317,0.33799999999999997 +2015-04-21 16:00:00,0.24,0.313,0.33799999999999997 +2015-04-21 17:00:00,0.24,0.309,0.33799999999999997 +2015-04-21 18:00:00,0.24,0.309,0.33799999999999997 +2015-04-21 19:00:00,0.239,0.325,0.33799999999999997 +2015-04-21 20:00:00,0.239,0.349,0.337 +2015-04-21 21:00:00,0.239,0.35700000000000004,0.337 +2015-04-21 22:00:00,0.239,0.355,0.337 +2015-04-21 23:00:00,0.23800000000000002,0.358,0.337 +2015-04-22 00:00:00,0.23800000000000002,0.361,0.337 +2015-04-22 01:00:00,0.23800000000000002,0.363,0.337 +2015-04-22 02:00:00,0.23800000000000002,0.365,0.337 +2015-04-22 03:00:00,0.23800000000000002,0.364,0.337 +2015-04-22 04:00:00,0.23800000000000002,0.363,0.337 +2015-04-22 05:00:00,0.23800000000000002,0.361,0.337 +2015-04-22 06:00:00,0.23800000000000002,0.361,0.337 +2015-04-22 07:00:00,0.237,0.36,0.337 +2015-04-22 08:00:00,0.237,0.358,0.337 +2015-04-22 09:00:00,0.237,0.358,0.337 +2015-04-22 10:00:00,0.237,0.35600000000000004,0.337 +2015-04-22 11:00:00,0.237,0.355,0.337 +2015-04-22 12:00:00,0.237,0.353,0.337 +2015-04-22 13:00:00,0.237,0.35100000000000003,0.337 +2015-04-22 14:00:00,0.237,0.35100000000000003,0.337 +2015-04-22 15:00:00,0.237,0.349,0.337 +2015-04-22 16:00:00,0.237,0.348,0.337 +2015-04-22 17:00:00,0.237,0.348,0.337 +2015-04-22 18:00:00,0.237,0.348,0.337 +2015-04-22 19:00:00,0.23600000000000002,0.34700000000000003,0.337 +2015-04-22 20:00:00,0.23600000000000002,0.34600000000000003,0.337 +2015-04-22 21:00:00,0.23600000000000002,0.344,0.337 +2015-04-22 22:00:00,0.23600000000000002,0.344,0.337 +2015-04-22 23:00:00,0.23600000000000002,0.344,0.337 +2015-04-23 00:00:00,0.23600000000000002,0.34299999999999997,0.337 +2015-04-23 01:00:00,0.23600000000000002,0.34299999999999997,0.337 +2015-04-23 02:00:00,0.235,0.34299999999999997,0.337 +2015-04-23 03:00:00,0.23600000000000002,0.34299999999999997,0.337 +2015-04-23 04:00:00,0.235,0.34299999999999997,0.337 +2015-04-23 05:00:00,0.235,0.34299999999999997,0.337 +2015-04-23 06:00:00,0.235,0.341,0.337 +2015-04-23 07:00:00,0.235,0.341,0.337 +2015-04-23 08:00:00,0.23600000000000002,0.341,0.33799999999999997 +2015-04-23 09:00:00,0.23600000000000002,0.341,0.33799999999999997 +2015-04-23 10:00:00,0.235,0.34,0.337 +2015-04-23 11:00:00,0.23399999999999999,0.33799999999999997,0.337 +2015-04-23 12:00:00,0.23399999999999999,0.33799999999999997,0.337 +2015-04-23 13:00:00,0.23399999999999999,0.33799999999999997,0.337 +2015-04-23 14:00:00,0.23399999999999999,0.337,0.337 +2015-04-23 15:00:00,0.23399999999999999,0.336,0.337 +2015-04-23 16:00:00,0.23399999999999999,0.33399999999999996,0.337 +2015-04-23 17:00:00,0.23399999999999999,0.33299999999999996,0.337 +2015-04-23 18:00:00,0.23399999999999999,0.332,0.337 +2015-04-23 19:00:00,0.23399999999999999,0.332,0.337 +2015-04-23 20:00:00,0.23399999999999999,0.331,0.336 +2015-04-23 21:00:00,0.23399999999999999,0.331,0.336 +2015-04-23 22:00:00,0.23399999999999999,0.331,0.336 +2015-04-23 23:00:00,0.23399999999999999,0.332,0.336 +2015-04-24 00:00:00,0.233,0.332,0.336 +2015-04-24 01:00:00,0.233,0.332,0.336 +2015-04-24 02:00:00,0.233,0.332,0.336 +2015-04-24 03:00:00,0.233,0.332,0.336 +2015-04-24 04:00:00,0.233,0.332,0.336 +2015-04-24 05:00:00,0.233,0.332,0.336 +2015-04-24 06:00:00,0.233,0.332,0.336 +2015-04-24 07:00:00,0.23199999999999998,0.332,0.336 +2015-04-24 08:00:00,0.23199999999999998,0.332,0.337 +2015-04-24 09:00:00,0.233,0.331,0.337 +2015-04-24 10:00:00,0.23199999999999998,0.331,0.336 +2015-04-24 11:00:00,0.23199999999999998,0.331,0.336 +2015-04-24 12:00:00,0.23199999999999998,0.331,0.336 +2015-04-24 13:00:00,0.23199999999999998,0.33,0.336 +2015-04-24 14:00:00,0.23199999999999998,0.32799999999999996,0.336 +2015-04-24 15:00:00,0.23199999999999998,0.327,0.336 +2015-04-24 16:00:00,0.23199999999999998,0.327,0.337 +2015-04-24 17:00:00,0.23199999999999998,0.327,0.336 +2015-04-24 18:00:00,0.23199999999999998,0.326,0.336 +2015-04-24 19:00:00,0.23199999999999998,0.32299999999999995,0.336 +2015-04-24 20:00:00,0.23199999999999998,0.326,0.336 +2015-04-24 21:00:00,0.231,0.326,0.336 +2015-04-24 22:00:00,0.231,0.324,0.336 +2015-04-24 23:00:00,0.231,0.326,0.336 +2015-04-25 00:00:00,0.231,0.327,0.336 +2015-04-25 01:00:00,0.231,0.326,0.336 +2015-04-25 02:00:00,0.231,0.325,0.336 +2015-04-25 03:00:00,0.23,0.324,0.336 +2015-04-25 04:00:00,0.23,0.326,0.336 +2015-04-25 05:00:00,0.23,0.326,0.336 +2015-04-25 06:00:00,0.23,0.326,0.336 +2015-04-25 07:00:00,0.23,0.326,0.336 +2015-04-25 08:00:00,0.23,0.326,0.336 +2015-04-25 09:00:00,0.23,0.327,0.336 +2015-04-25 10:00:00,0.23,0.327,0.336 +2015-04-25 11:00:00,0.23,0.327,0.336 +2015-04-25 12:00:00,0.231,0.327,0.337 +2015-04-25 13:00:00,0.23,0.327,0.336 +2015-04-25 14:00:00,0.231,0.327,0.336 +2015-04-25 15:00:00,0.231,0.327,0.336 +2015-04-25 16:00:00,0.231,0.327,0.336 +2015-04-25 17:00:00,0.231,0.327,0.336 +2015-04-25 18:00:00,0.231,0.327,0.336 +2015-04-25 19:00:00,0.23199999999999998,0.327,0.341 +2015-04-25 20:00:00,0.23199999999999998,0.327,0.341 +2015-04-25 21:00:00,0.23199999999999998,0.327,0.341 +2015-04-25 22:00:00,0.23199999999999998,0.327,0.341 +2015-04-25 23:00:00,0.23199999999999998,0.327,0.341 +2015-04-26 00:00:00,0.23199999999999998,0.327,0.341 +2015-04-26 01:00:00,0.23199999999999998,0.327,0.341 +2015-04-26 02:00:00,0.231,0.327,0.341 +2015-04-26 03:00:00,0.231,0.327,0.341 +2015-04-26 04:00:00,0.231,0.327,0.342 +2015-04-26 05:00:00,0.23,0.327,0.342 +2015-04-26 06:00:00,0.23,0.327,0.342 +2015-04-26 07:00:00,0.23,0.327,0.342 +2015-04-26 08:00:00,0.231,0.327,0.341 +2015-04-26 09:00:00,0.231,0.327,0.33899999999999997 +2015-04-26 10:00:00,0.231,0.326,0.33799999999999997 +2015-04-26 11:00:00,0.23,0.326,0.337 +2015-04-26 12:00:00,0.231,0.326,0.337 +2015-04-26 13:00:00,0.231,0.32899999999999996,0.337 +2015-04-26 14:00:00,0.231,0.326,0.337 +2015-04-26 15:00:00,0.231,0.326,0.337 +2015-04-26 16:00:00,0.231,0.326,0.337 +2015-04-26 17:00:00,0.231,0.326,0.337 +2015-04-26 18:00:00,0.231,0.326,0.337 +2015-04-26 19:00:00,0.231,0.325,0.336 +2015-04-26 20:00:00,0.231,0.325,0.336 +2015-04-26 21:00:00,0.231,0.326,0.336 +2015-04-26 22:00:00,0.23,0.326,0.336 +2015-04-26 23:00:00,0.23,0.326,0.337 +2015-04-27 00:00:00,0.23,0.327,0.341 +2015-04-27 01:00:00,0.23,0.327,0.342 +2015-04-27 02:00:00,0.231,0.327,0.344 +2015-04-27 03:00:00,0.237,0.327,0.345 +2015-04-27 04:00:00,0.23600000000000002,0.327,0.344 +2015-04-27 05:00:00,0.23600000000000002,0.327,0.344 +2015-04-27 06:00:00,0.23600000000000002,0.327,0.344 +2015-04-27 07:00:00,0.235,0.327,0.345 +2015-04-27 08:00:00,0.23399999999999999,0.327,0.34600000000000003 +2015-04-27 09:00:00,0.233,0.327,0.345 +2015-04-27 10:00:00,0.235,0.327,0.344 +2015-04-27 11:00:00,0.23399999999999999,0.327,0.345 +2015-04-27 12:00:00,0.23399999999999999,0.326,0.344 +2015-04-27 13:00:00,0.23600000000000002,0.326,0.345 +2015-04-27 14:00:00,0.258,0.326,0.34700000000000003 +2015-04-27 15:00:00,0.262,0.324,0.35100000000000003 +2015-04-27 16:00:00,0.265,0.324,0.355 +2015-04-27 17:00:00,0.265,0.326,0.35600000000000004 +2015-04-27 18:00:00,0.262,0.326,0.35600000000000004 +2015-04-27 19:00:00,0.261,0.326,0.35600000000000004 +2015-04-27 20:00:00,0.26,0.321,0.35700000000000004 +2015-04-27 21:00:00,0.259,0.321,0.35700000000000004 +2015-04-27 22:00:00,0.259,0.322,0.35700000000000004 +2015-04-27 23:00:00,0.261,0.321,0.35700000000000004 +2015-04-28 00:00:00,0.262,0.321,0.35600000000000004 +2015-04-28 01:00:00,0.263,0.322,0.354 +2015-04-28 02:00:00,0.263,0.322,0.354 +2015-04-28 03:00:00,0.263,0.32299999999999995,0.354 +2015-04-28 04:00:00,0.263,0.32299999999999995,0.353 +2015-04-28 05:00:00,0.263,0.32299999999999995,0.353 +2015-04-28 06:00:00,0.262,0.322,0.35200000000000004 +2015-04-28 07:00:00,0.262,0.322,0.35200000000000004 +2015-04-28 08:00:00,0.262,0.322,0.35100000000000003 +2015-04-28 09:00:00,0.261,0.322,0.35100000000000003 +2015-04-28 10:00:00,0.261,0.32299999999999995,0.35 +2015-04-28 11:00:00,0.26,0.324,0.349 +2015-04-28 12:00:00,0.26,0.324,0.349 +2015-04-28 13:00:00,0.259,0.324,0.348 +2015-04-28 14:00:00,0.259,0.324,0.34700000000000003 +2015-04-28 15:00:00,0.258,0.324,0.34700000000000003 +2015-04-28 16:00:00,0.258,0.324,0.34600000000000003 +2015-04-28 17:00:00,0.258,0.324,0.34600000000000003 +2015-04-28 18:00:00,0.258,0.324,0.34600000000000003 +2015-04-28 19:00:00,0.257,0.324,0.345 +2015-04-28 20:00:00,0.257,0.324,0.345 +2015-04-28 21:00:00,0.257,0.324,0.345 +2015-04-28 22:00:00,0.257,0.324,0.345 +2015-04-28 23:00:00,0.256,0.326,0.345 +2015-04-29 00:00:00,0.256,0.326,0.344 +2015-04-29 01:00:00,0.256,0.326,0.344 +2015-04-29 02:00:00,0.256,0.326,0.344 +2015-04-29 03:00:00,0.256,0.326,0.344 +2015-04-29 04:00:00,0.255,0.326,0.34299999999999997 +2015-04-29 05:00:00,0.255,0.326,0.34299999999999997 +2015-04-29 06:00:00,0.255,0.326,0.34299999999999997 +2015-04-29 07:00:00,0.255,0.326,0.34299999999999997 +2015-04-29 08:00:00,0.255,0.326,0.344 +2015-04-29 09:00:00,0.255,0.326,0.344 +2015-04-29 10:00:00,0.255,0.326,0.34299999999999997 +2015-04-29 11:00:00,0.254,0.326,0.34299999999999997 +2015-04-29 12:00:00,0.254,0.326,0.342 +2015-04-29 13:00:00,0.254,0.326,0.342 +2015-04-29 14:00:00,0.254,0.326,0.342 +2015-04-29 15:00:00,0.254,0.326,0.342 +2015-04-29 16:00:00,0.254,0.324,0.342 +2015-04-29 17:00:00,0.254,0.324,0.342 +2015-04-29 18:00:00,0.254,0.324,0.342 +2015-04-29 19:00:00,0.254,0.324,0.342 +2015-04-29 20:00:00,0.254,0.324,0.342 +2015-04-29 21:00:00,0.254,0.324,0.342 +2015-04-29 22:00:00,0.254,0.324,0.341 +2015-04-29 23:00:00,0.254,0.326,0.341 +2015-04-30 00:00:00,0.254,0.326,0.341 +2015-04-30 01:00:00,0.253,0.326,0.341 +2015-04-30 02:00:00,0.253,0.326,0.341 +2015-04-30 03:00:00,0.253,0.327,0.341 +2015-04-30 04:00:00,0.253,0.327,0.341 +2015-04-30 05:00:00,0.253,0.326,0.341 +2015-04-30 06:00:00,0.253,0.326,0.341 +2015-04-30 07:00:00,0.253,0.327,0.341 +2015-04-30 08:00:00,0.252,0.327,0.341 +2015-04-30 09:00:00,0.252,0.326,0.341 +2015-04-30 10:00:00,0.252,0.326,0.341 +2015-04-30 11:00:00,0.252,0.325,0.341 +2015-04-30 12:00:00,0.252,0.324,0.341 +2015-04-30 13:00:00,0.253,0.325,0.344 +2015-04-30 14:00:00,0.253,0.325,0.342 +2015-04-30 15:00:00,0.252,0.324,0.344 +2015-04-30 16:00:00,0.248,0.324,0.34600000000000003 +2015-04-30 17:00:00,0.249,0.324,0.34600000000000003 +2015-04-30 18:00:00,0.249,0.324,0.34600000000000003 +2015-04-30 19:00:00,0.248,0.324,0.34600000000000003 +2015-04-30 20:00:00,0.249,0.324,0.34600000000000003 +2015-04-30 21:00:00,0.25,0.324,0.345 +2015-04-30 22:00:00,0.249,0.326,0.34600000000000003 +2015-04-30 23:00:00,0.248,0.326,0.34600000000000003 +2015-05-01 00:00:00,0.248,0.326,0.34600000000000003 +2015-05-01 01:00:00,0.248,0.326,0.34600000000000003 +2015-05-01 02:00:00,0.248,0.326,0.34600000000000003 +2015-05-01 03:00:00,0.248,0.326,0.34600000000000003 +2015-05-01 04:00:00,0.248,0.326,0.34600000000000003 +2015-05-01 05:00:00,0.249,0.326,0.34600000000000003 +2015-05-01 06:00:00,0.249,0.326,0.34600000000000003 +2015-05-01 07:00:00,0.25,0.326,0.34600000000000003 +2015-05-01 08:00:00,0.251,0.326,0.345 +2015-05-01 09:00:00,0.252,0.326,0.344 +2015-05-01 10:00:00,0.253,0.326,0.344 +2015-05-01 11:00:00,0.253,0.325,0.34299999999999997 +2015-05-01 12:00:00,0.253,0.325,0.342 +2015-05-01 13:00:00,0.253,0.326,0.342 +2015-05-01 14:00:00,0.253,0.325,0.342 +2015-05-01 15:00:00,0.253,0.324,0.342 +2015-05-01 16:00:00,0.253,0.324,0.342 +2015-05-01 17:00:00,0.253,0.324,0.341 +2015-05-01 18:00:00,0.253,0.32299999999999995,0.341 +2015-05-01 19:00:00,0.253,0.322,0.342 +2015-05-01 20:00:00,0.253,0.322,0.341 +2015-05-01 21:00:00,0.253,0.322,0.341 +2015-05-01 22:00:00,0.253,0.322,0.341 +2015-05-01 23:00:00,0.253,0.324,0.341 +2015-05-02 00:00:00,0.253,0.324,0.342 +2015-05-02 01:00:00,0.252,0.324,0.342 +2015-05-02 02:00:00,0.252,0.324,0.342 +2015-05-02 03:00:00,0.252,0.324,0.342 +2015-05-02 04:00:00,0.252,0.324,0.342 +2015-05-02 05:00:00,0.252,0.324,0.342 +2015-05-02 06:00:00,0.252,0.324,0.342 +2015-05-02 07:00:00,0.252,0.324,0.342 +2015-05-02 08:00:00,0.252,0.324,0.34299999999999997 +2015-05-02 09:00:00,0.252,0.324,0.342 +2015-05-02 10:00:00,0.252,0.324,0.342 +2015-05-02 11:00:00,0.252,0.324,0.341 +2015-05-02 12:00:00,0.252,0.324,0.341 +2015-05-02 13:00:00,0.252,0.324,0.341 +2015-05-02 14:00:00,0.252,0.32299999999999995,0.341 +2015-05-02 15:00:00,0.252,0.321,0.341 +2015-05-02 16:00:00,0.252,0.321,0.341 +2015-05-02 17:00:00,0.252,0.321,0.341 +2015-05-02 18:00:00,0.252,0.321,0.341 +2015-05-02 19:00:00,0.252,0.32,0.341 +2015-05-02 20:00:00,0.252,0.319,0.341 +2015-05-02 21:00:00,0.252,0.32,0.341 +2015-05-02 22:00:00,0.252,0.321,0.341 +2015-05-02 23:00:00,0.252,0.321,0.341 +2015-05-03 00:00:00,0.252,0.321,0.341 +2015-05-03 01:00:00,0.252,0.32299999999999995,0.341 +2015-05-03 02:00:00,0.252,0.324,0.341 +2015-05-03 03:00:00,0.251,0.324,0.341 +2015-05-03 04:00:00,0.251,0.32299999999999995,0.341 +2015-05-03 05:00:00,0.251,0.324,0.341 +2015-05-03 06:00:00,0.251,0.324,0.341 +2015-05-03 07:00:00,0.251,0.324,0.341 +2015-05-03 08:00:00,0.251,0.324,0.341 +2015-05-03 09:00:00,0.251,0.324,0.341 +2015-05-03 10:00:00,0.251,0.324,0.341 +2015-05-03 11:00:00,0.251,0.324,0.341 +2015-05-03 12:00:00,0.251,0.322,0.341 +2015-05-03 13:00:00,0.251,0.322,0.341 +2015-05-03 14:00:00,0.251,0.322,0.341 +2015-05-03 15:00:00,0.252,0.322,0.341 +2015-05-03 16:00:00,0.251,0.322,0.34299999999999997 +2015-05-03 17:00:00,0.248,0.321,0.34600000000000003 +2015-05-03 18:00:00,0.247,0.321,0.34600000000000003 +2015-05-03 19:00:00,0.248,0.321,0.345 +2015-05-03 20:00:00,0.248,0.32,0.34600000000000003 +2015-05-03 21:00:00,0.248,0.315,0.34600000000000003 +2015-05-03 22:00:00,0.248,0.317,0.34600000000000003 +2015-05-03 23:00:00,0.249,0.318,0.345 +2015-05-04 00:00:00,0.249,0.319,0.345 +2015-05-04 01:00:00,0.249,0.321,0.345 +2015-05-04 02:00:00,0.249,0.321,0.345 +2015-05-04 03:00:00,0.249,0.322,0.345 +2015-05-04 04:00:00,0.25,0.321,0.345 +2015-05-04 05:00:00,0.25,0.321,0.345 +2015-05-04 06:00:00,0.25,0.321,0.345 +2015-05-04 07:00:00,0.251,0.321,0.345 +2015-05-04 08:00:00,0.252,0.321,0.344 +2015-05-04 09:00:00,0.253,0.321,0.34299999999999997 +2015-05-04 10:00:00,0.253,0.321,0.342 +2015-05-04 11:00:00,0.253,0.321,0.342 +2015-05-04 12:00:00,0.253,0.322,0.342 +2015-05-04 13:00:00,0.253,0.322,0.342 +2015-05-04 14:00:00,0.253,0.321,0.342 +2015-05-04 15:00:00,0.253,0.321,0.342 +2015-05-04 16:00:00,0.253,0.322,0.341 +2015-05-04 17:00:00,0.253,0.321,0.341 +2015-05-04 18:00:00,0.254,0.321,0.341 +2015-05-04 19:00:00,0.254,0.321,0.341 +2015-05-04 20:00:00,0.254,0.321,0.341 +2015-05-04 21:00:00,0.254,0.321,0.341 +2015-05-04 22:00:00,0.254,0.321,0.341 +2015-05-04 23:00:00,0.254,0.321,0.34299999999999997 +2015-05-05 00:00:00,0.254,0.324,0.344 +2015-05-05 01:00:00,0.254,0.322,0.344 +2015-05-05 02:00:00,0.254,0.322,0.344 +2015-05-05 03:00:00,0.254,0.322,0.344 +2015-05-05 04:00:00,0.254,0.322,0.344 +2015-05-05 05:00:00,0.254,0.322,0.344 +2015-05-05 06:00:00,0.255,0.322,0.344 +2015-05-05 07:00:00,0.255,0.322,0.344 +2015-05-05 08:00:00,0.255,0.322,0.344 +2015-05-05 09:00:00,0.255,0.322,0.344 +2015-05-05 10:00:00,0.255,0.322,0.344 +2015-05-05 11:00:00,0.255,0.322,0.34299999999999997 +2015-05-05 12:00:00,0.255,0.321,0.34299999999999997 +2015-05-05 13:00:00,0.255,0.321,0.342 +2015-05-05 14:00:00,0.255,0.321,0.342 +2015-05-05 15:00:00,0.255,0.32,0.342 +2015-05-05 16:00:00,0.255,0.319,0.342 +2015-05-05 17:00:00,0.255,0.318,0.341 +2015-05-05 18:00:00,0.255,0.317,0.341 +2015-05-05 19:00:00,0.254,0.317,0.341 +2015-05-05 20:00:00,0.254,0.317,0.341 +2015-05-05 21:00:00,0.254,0.317,0.341 +2015-05-05 22:00:00,0.254,0.317,0.341 +2015-05-05 23:00:00,0.254,0.319,0.341 +2015-05-06 00:00:00,0.254,0.32,0.341 +2015-05-06 01:00:00,0.254,0.32,0.341 +2015-05-06 02:00:00,0.253,0.321,0.341 +2015-05-06 03:00:00,0.253,0.321,0.341 +2015-05-06 04:00:00,0.253,0.321,0.341 +2015-05-06 05:00:00,0.253,0.321,0.341 +2015-05-06 06:00:00,0.253,0.321,0.341 +2015-05-06 07:00:00,0.253,0.321,0.341 +2015-05-06 08:00:00,0.253,0.321,0.341 +2015-05-06 09:00:00,0.252,0.321,0.341 +2015-05-06 10:00:00,0.252,0.321,0.341 +2015-05-06 11:00:00,0.252,0.321,0.341 +2015-05-06 12:00:00,0.252,0.319,0.341 +2015-05-06 13:00:00,0.252,0.319,0.341 +2015-05-06 14:00:00,0.252,0.317,0.34 +2015-05-06 15:00:00,0.252,0.317,0.34 +2015-05-06 16:00:00,0.252,0.315,0.34 +2015-05-06 17:00:00,0.251,0.315,0.34 +2015-05-06 18:00:00,0.252,0.315,0.34 +2015-05-06 19:00:00,0.252,0.315,0.34 +2015-05-06 20:00:00,0.251,0.315,0.34 +2015-05-06 21:00:00,0.251,0.315,0.34 +2015-05-06 22:00:00,0.251,0.315,0.34 +2015-05-06 23:00:00,0.251,0.316,0.34 +2015-05-07 00:00:00,0.251,0.318,0.34 +2015-05-07 01:00:00,0.251,0.319,0.34 +2015-05-07 02:00:00,0.251,0.32,0.34 +2015-05-07 03:00:00,0.25,0.321,0.34 +2015-05-07 04:00:00,0.25,0.321,0.34 +2015-05-07 05:00:00,0.25,0.321,0.34 +2015-05-07 06:00:00,0.25,0.321,0.34 +2015-05-07 07:00:00,0.25,0.321,0.34 +2015-05-07 08:00:00,0.25,0.321,0.34 +2015-05-07 09:00:00,0.25,0.321,0.34 +2015-05-07 10:00:00,0.25,0.321,0.34 +2015-05-07 11:00:00,0.25,0.32,0.34 +2015-05-07 12:00:00,0.249,0.317,0.34 +2015-05-07 13:00:00,0.249,0.315,0.34 +2015-05-07 14:00:00,0.249,0.315,0.34 +2015-05-07 15:00:00,0.249,0.314,0.34 +2015-05-07 16:00:00,0.248,0.314,0.33899999999999997 +2015-05-07 17:00:00,0.248,0.314,0.33899999999999997 +2015-05-07 18:00:00,0.248,0.313,0.33899999999999997 +2015-05-07 19:00:00,0.248,0.312,0.33899999999999997 +2015-05-07 20:00:00,0.248,0.312,0.33899999999999997 +2015-05-07 21:00:00,0.248,0.312,0.33899999999999997 +2015-05-07 22:00:00,0.248,0.313,0.33899999999999997 +2015-05-07 23:00:00,0.248,0.314,0.33899999999999997 +2015-05-08 00:00:00,0.247,0.315,0.33899999999999997 +2015-05-08 01:00:00,0.247,0.315,0.33899999999999997 +2015-05-08 02:00:00,0.247,0.316,0.33899999999999997 +2015-05-08 03:00:00,0.247,0.316,0.33899999999999997 +2015-05-08 04:00:00,0.247,0.316,0.33899999999999997 +2015-05-08 05:00:00,0.247,0.315,0.33899999999999997 +2015-05-08 06:00:00,0.24600000000000002,0.315,0.33899999999999997 +2015-05-08 07:00:00,0.24600000000000002,0.315,0.33899999999999997 +2015-05-08 08:00:00,0.24600000000000002,0.315,0.33899999999999997 +2015-05-08 09:00:00,0.24600000000000002,0.315,0.33899999999999997 +2015-05-08 10:00:00,0.24600000000000002,0.315,0.33899999999999997 +2015-05-08 11:00:00,0.24600000000000002,0.315,0.33899999999999997 +2015-05-08 12:00:00,0.24600000000000002,0.314,0.33899999999999997 +2015-05-08 13:00:00,0.245,0.314,0.33899999999999997 +2015-05-08 14:00:00,0.245,0.313,0.33899999999999997 +2015-05-08 15:00:00,0.244,0.312,0.33899999999999997 +2015-05-08 16:00:00,0.244,0.312,0.33899999999999997 +2015-05-08 17:00:00,0.244,0.311,0.33899999999999997 +2015-05-08 18:00:00,0.244,0.31,0.33799999999999997 +2015-05-08 19:00:00,0.244,0.31,0.33799999999999997 +2015-05-08 20:00:00,0.244,0.31,0.33799999999999997 +2015-05-08 21:00:00,0.244,0.31,0.33799999999999997 +2015-05-08 22:00:00,0.244,0.31,0.33799999999999997 +2015-05-08 23:00:00,0.244,0.31,0.33799999999999997 +2015-05-09 00:00:00,0.243,0.31,0.33799999999999997 +2015-05-09 01:00:00,0.243,0.311,0.33799999999999997 +2015-05-09 02:00:00,0.243,0.311,0.33799999999999997 +2015-05-09 03:00:00,0.243,0.31,0.33799999999999997 +2015-05-09 04:00:00,0.243,0.31,0.33799999999999997 +2015-05-09 05:00:00,0.243,0.311,0.33799999999999997 +2015-05-09 06:00:00,0.243,0.311,0.33799999999999997 +2015-05-09 07:00:00,0.243,0.311,0.33799999999999997 +2015-05-09 08:00:00,0.243,0.312,0.33799999999999997 +2015-05-09 09:00:00,0.243,0.312,0.33799999999999997 +2015-05-09 10:00:00,0.242,0.312,0.33799999999999997 +2015-05-09 11:00:00,0.242,0.312,0.33799999999999997 +2015-05-09 12:00:00,0.242,0.311,0.33799999999999997 +2015-05-09 13:00:00,0.24100000000000002,0.31,0.33799999999999997 +2015-05-09 14:00:00,0.24100000000000002,0.31,0.33799999999999997 +2015-05-09 15:00:00,0.24100000000000002,0.309,0.33799999999999997 +2015-05-09 16:00:00,0.24,0.309,0.33799999999999997 +2015-05-09 17:00:00,0.24,0.307,0.337 +2015-05-09 18:00:00,0.242,0.307,0.34 +2015-05-09 19:00:00,0.245,0.307,0.34299999999999997 +2015-05-09 20:00:00,0.244,0.307,0.34299999999999997 +2015-05-09 21:00:00,0.243,0.307,0.34299999999999997 +2015-05-09 22:00:00,0.243,0.307,0.34299999999999997 +2015-05-09 23:00:00,0.242,0.307,0.34299999999999997 +2015-05-10 00:00:00,0.242,0.308,0.342 +2015-05-10 01:00:00,0.242,0.31,0.342 +2015-05-10 02:00:00,0.242,0.31,0.342 +2015-05-10 03:00:00,0.242,0.31,0.342 +2015-05-10 04:00:00,0.242,0.31,0.342 +2015-05-10 05:00:00,0.242,0.31,0.342 +2015-05-10 06:00:00,0.24100000000000002,0.31,0.342 +2015-05-10 07:00:00,0.242,0.31,0.342 +2015-05-10 08:00:00,0.242,0.31,0.342 +2015-05-10 09:00:00,0.243,0.31,0.341 +2015-05-10 10:00:00,0.24600000000000002,0.31,0.34 +2015-05-10 11:00:00,0.247,0.31,0.33899999999999997 +2015-05-10 12:00:00,0.24600000000000002,0.308,0.33799999999999997 +2015-05-10 13:00:00,0.24600000000000002,0.307,0.33799999999999997 +2015-05-10 14:00:00,0.245,0.307,0.33799999999999997 +2015-05-10 15:00:00,0.245,0.306,0.33799999999999997 +2015-05-10 16:00:00,0.245,0.305,0.337 +2015-05-10 17:00:00,0.244,0.305,0.337 +2015-05-10 18:00:00,0.244,0.305,0.337 +2015-05-10 19:00:00,0.244,0.305,0.337 +2015-05-10 20:00:00,0.244,0.305,0.337 +2015-05-10 21:00:00,0.244,0.305,0.337 +2015-05-10 22:00:00,0.244,0.305,0.336 +2015-05-10 23:00:00,0.244,0.305,0.336 +2015-05-11 00:00:00,0.244,0.305,0.336 +2015-05-11 01:00:00,0.243,0.305,0.336 +2015-05-11 02:00:00,0.243,0.305,0.336 +2015-05-11 03:00:00,0.243,0.305,0.336 +2015-05-11 04:00:00,0.243,0.305,0.336 +2015-05-11 05:00:00,0.243,0.306,0.336 +2015-05-11 06:00:00,0.243,0.306,0.336 +2015-05-11 07:00:00,0.243,0.307,0.337 +2015-05-11 08:00:00,0.243,0.307,0.337 +2015-05-11 09:00:00,0.243,0.308,0.337 +2015-05-11 10:00:00,0.243,0.308,0.336 +2015-05-11 11:00:00,0.242,0.307,0.336 +2015-05-11 12:00:00,0.242,0.306,0.336 +2015-05-11 13:00:00,0.243,0.305,0.336 +2015-05-11 14:00:00,0.243,0.305,0.336 +2015-05-11 15:00:00,0.242,0.305,0.336 +2015-05-11 16:00:00,0.243,0.304,0.336 +2015-05-11 17:00:00,0.242,0.304,0.336 +2015-05-11 18:00:00,0.24100000000000002,0.304,0.336 +2015-05-11 19:00:00,0.24100000000000002,0.303,0.335 +2015-05-11 20:00:00,0.24100000000000002,0.303,0.335 +2015-05-11 21:00:00,0.24,0.302,0.335 +2015-05-11 22:00:00,0.24,0.303,0.335 +2015-05-11 23:00:00,0.239,0.304,0.335 +2015-05-12 00:00:00,0.239,0.304,0.335 +2015-05-12 01:00:00,0.239,0.304,0.335 +2015-05-12 02:00:00,0.239,0.304,0.335 +2015-05-12 03:00:00,0.239,0.304,0.335 +2015-05-12 04:00:00,0.239,0.304,0.335 +2015-05-12 05:00:00,0.24,0.304,0.335 +2015-05-12 06:00:00,0.24100000000000002,0.304,0.335 +2015-05-12 07:00:00,0.243,0.305,0.335 +2015-05-12 08:00:00,0.244,0.305,0.336 +2015-05-12 09:00:00,0.24600000000000002,0.305,0.336 +2015-05-12 10:00:00,0.24600000000000002,0.304,0.335 +2015-05-12 11:00:00,0.24600000000000002,0.304,0.335 +2015-05-12 12:00:00,0.24600000000000002,0.303,0.335 +2015-05-12 13:00:00,0.245,0.304,0.335 +2015-05-12 14:00:00,0.244,0.302,0.335 +2015-05-12 15:00:00,0.243,0.301,0.335 +2015-05-12 16:00:00,0.243,0.3,0.337 +2015-05-12 17:00:00,0.244,0.299,0.336 +2015-05-12 18:00:00,0.243,0.298,0.336 +2015-05-12 19:00:00,0.244,0.298,0.336 +2015-05-12 20:00:00,0.244,0.297,0.335 +2015-05-12 21:00:00,0.243,0.297,0.335 +2015-05-12 22:00:00,0.243,0.297,0.335 +2015-05-12 23:00:00,0.243,0.298,0.335 +2015-05-13 00:00:00,0.243,0.3,0.335 +2015-05-13 01:00:00,0.243,0.299,0.335 +2015-05-13 02:00:00,0.243,0.298,0.335 +2015-05-13 03:00:00,0.24100000000000002,0.299,0.335 +2015-05-13 04:00:00,0.242,0.298,0.335 +2015-05-13 05:00:00,0.24100000000000002,0.298,0.335 +2015-05-13 06:00:00,0.24100000000000002,0.298,0.335 +2015-05-13 07:00:00,0.24100000000000002,0.298,0.335 +2015-05-13 08:00:00,0.24,0.298,0.335 +2015-05-13 09:00:00,0.24,0.298,0.33399999999999996 +2015-05-13 10:00:00,0.24,0.298,0.33399999999999996 +2015-05-13 11:00:00,0.239,0.298,0.33399999999999996 +2015-05-13 12:00:00,0.239,0.298,0.33399999999999996 +2015-05-13 13:00:00,0.23800000000000002,0.297,0.33399999999999996 +2015-05-13 14:00:00,0.237,0.297,0.33399999999999996 +2015-05-13 15:00:00,0.237,0.297,0.33299999999999996 +2015-05-13 16:00:00,0.23600000000000002,0.305,0.33299999999999996 +2015-05-13 17:00:00,0.23600000000000002,0.302,0.33299999999999996 +2015-05-13 18:00:00,0.237,0.302,0.33299999999999996 +2015-05-13 19:00:00,0.237,0.302,0.33299999999999996 +2015-05-13 20:00:00,0.237,0.302,0.33299999999999996 +2015-05-13 21:00:00,0.237,0.301,0.33299999999999996 +2015-05-13 22:00:00,0.237,0.301,0.33299999999999996 +2015-05-13 23:00:00,0.237,0.301,0.33299999999999996 +2015-05-14 00:00:00,0.23800000000000002,0.298,0.33299999999999996 +2015-05-14 01:00:00,0.237,0.297,0.33299999999999996 +2015-05-14 02:00:00,0.237,0.297,0.33299999999999996 +2015-05-14 03:00:00,0.237,0.298,0.33299999999999996 +2015-05-14 04:00:00,0.237,0.298,0.33299999999999996 +2015-05-14 05:00:00,0.237,0.298,0.33299999999999996 +2015-05-14 06:00:00,0.23800000000000002,0.298,0.33299999999999996 +2015-05-14 07:00:00,0.23800000000000002,0.298,0.33299999999999996 +2015-05-14 08:00:00,0.23800000000000002,0.297,0.33299999999999996 +2015-05-14 09:00:00,0.23800000000000002,0.297,0.33299999999999996 +2015-05-14 10:00:00,0.23800000000000002,0.295,0.33299999999999996 +2015-05-14 11:00:00,0.237,0.293,0.33299999999999996 +2015-05-14 12:00:00,0.23600000000000002,0.294,0.33299999999999996 +2015-05-14 13:00:00,0.23600000000000002,0.29600000000000004,0.332 +2015-05-14 14:00:00,0.23399999999999999,0.293,0.332 +2015-05-14 15:00:00,0.23399999999999999,0.293,0.332 +2015-05-14 16:00:00,0.235,0.29600000000000004,0.332 +2015-05-14 17:00:00,0.23399999999999999,0.298,0.332 +2015-05-14 18:00:00,0.23399999999999999,0.3,0.332 +2015-05-14 19:00:00,0.23399999999999999,0.298,0.332 +2015-05-14 20:00:00,0.235,0.298,0.332 +2015-05-14 21:00:00,0.235,0.3,0.332 +2015-05-14 22:00:00,0.23600000000000002,0.3,0.332 +2015-05-14 23:00:00,0.237,0.3,0.332 +2015-05-15 00:00:00,0.237,0.302,0.332 +2015-05-15 01:00:00,0.237,0.3,0.332 +2015-05-15 02:00:00,0.237,0.298,0.332 +2015-05-15 03:00:00,0.239,0.298,0.332 +2015-05-15 04:00:00,0.23800000000000002,0.298,0.332 +2015-05-15 05:00:00,0.23800000000000002,0.298,0.332 +2015-05-15 06:00:00,0.23800000000000002,0.298,0.332 +2015-05-15 07:00:00,0.23800000000000002,0.298,0.332 +2015-05-15 08:00:00,0.23800000000000002,0.298,0.332 +2015-05-15 09:00:00,0.237,0.298,0.33299999999999996 +2015-05-15 10:00:00,0.23800000000000002,0.298,0.33299999999999996 +2015-05-15 11:00:00,0.239,0.297,0.332 +2015-05-15 12:00:00,0.239,0.298,0.331 +2015-05-15 13:00:00,0.23800000000000002,0.297,0.331 +2015-05-15 14:00:00,0.23800000000000002,0.297,0.331 +2015-05-15 15:00:00,0.237,0.29600000000000004,0.331 +2015-05-15 16:00:00,0.237,0.294,0.331 +2015-05-15 17:00:00,0.237,0.293,0.331 +2015-05-15 18:00:00,0.23600000000000002,0.293,0.331 +2015-05-15 19:00:00,0.23600000000000002,0.293,0.331 +2015-05-15 20:00:00,0.237,0.295,0.33 +2015-05-15 21:00:00,0.23600000000000002,0.295,0.33 +2015-05-15 22:00:00,0.237,0.295,0.33 +2015-05-15 23:00:00,0.237,0.29600000000000004,0.33 +2015-05-16 00:00:00,0.237,0.29600000000000004,0.33 +2015-05-16 01:00:00,0.237,0.29600000000000004,0.33 +2015-05-16 02:00:00,0.237,0.29600000000000004,0.33 +2015-05-16 03:00:00,0.237,0.297,0.33 +2015-05-16 04:00:00,0.23600000000000002,0.298,0.33 +2015-05-16 05:00:00,0.23600000000000002,0.298,0.33 +2015-05-16 06:00:00,0.23600000000000002,0.298,0.33 +2015-05-16 07:00:00,0.23600000000000002,0.297,0.33 +2015-05-16 08:00:00,0.23600000000000002,0.298,0.33 +2015-05-16 09:00:00,0.23600000000000002,0.298,0.33 +2015-05-16 10:00:00,0.23600000000000002,0.297,0.33 +2015-05-16 11:00:00,0.235,0.297,0.33 +2015-05-16 12:00:00,0.235,0.29600000000000004,0.32899999999999996 +2015-05-16 13:00:00,0.235,0.293,0.32899999999999996 +2015-05-16 14:00:00,0.235,0.292,0.32899999999999996 +2015-05-16 15:00:00,0.23399999999999999,0.29100000000000004,0.32899999999999996 +2015-05-16 16:00:00,0.23399999999999999,0.28800000000000003,0.32899999999999996 +2015-05-16 17:00:00,0.23399999999999999,0.287,0.32899999999999996 +2015-05-16 18:00:00,0.23399999999999999,0.287,0.32899999999999996 +2015-05-16 19:00:00,0.233,0.287,0.32899999999999996 +2015-05-16 20:00:00,0.23399999999999999,0.287,0.32899999999999996 +2015-05-16 21:00:00,0.23399999999999999,0.287,0.32899999999999996 +2015-05-16 22:00:00,0.23399999999999999,0.287,0.32899999999999996 +2015-05-16 23:00:00,0.235,0.287,0.332 +2015-05-17 00:00:00,0.235,0.287,0.332 +2015-05-17 01:00:00,0.235,0.287,0.332 +2015-05-17 02:00:00,0.235,0.287,0.332 +2015-05-17 03:00:00,0.235,0.287,0.331 +2015-05-17 04:00:00,0.23600000000000002,0.287,0.331 +2015-05-17 05:00:00,0.23600000000000002,0.287,0.331 +2015-05-17 06:00:00,0.235,0.287,0.331 +2015-05-17 07:00:00,0.235,0.287,0.331 +2015-05-17 08:00:00,0.235,0.287,0.331 +2015-05-17 09:00:00,0.235,0.287,0.331 +2015-05-17 10:00:00,0.23399999999999999,0.287,0.33 +2015-05-17 11:00:00,0.23399999999999999,0.287,0.32899999999999996 +2015-05-17 12:00:00,0.23399999999999999,0.287,0.32799999999999996 +2015-05-17 13:00:00,0.233,0.28600000000000003,0.32799999999999996 +2015-05-17 14:00:00,0.233,0.285,0.32799999999999996 +2015-05-17 15:00:00,0.23199999999999998,0.285,0.32799999999999996 +2015-05-17 16:00:00,0.23199999999999998,0.285,0.32799999999999996 +2015-05-17 17:00:00,0.23199999999999998,0.285,0.32799999999999996 +2015-05-17 18:00:00,0.23199999999999998,0.284,0.32799999999999996 +2015-05-17 19:00:00,0.23199999999999998,0.28300000000000003,0.32799999999999996 +2015-05-17 20:00:00,0.23199999999999998,0.28300000000000003,0.32799999999999996 +2015-05-17 21:00:00,0.23199999999999998,0.28300000000000003,0.327 +2015-05-17 22:00:00,0.23199999999999998,0.28300000000000003,0.327 +2015-05-17 23:00:00,0.23199999999999998,0.28300000000000003,0.327 +2015-05-18 00:00:00,0.23199999999999998,0.28300000000000003,0.327 +2015-05-18 01:00:00,0.23199999999999998,0.28300000000000003,0.327 +2015-05-18 02:00:00,0.231,0.28300000000000003,0.32799999999999996 +2015-05-18 03:00:00,0.231,0.28300000000000003,0.327 +2015-05-18 04:00:00,0.231,0.28300000000000003,0.327 +2015-05-18 05:00:00,0.231,0.28300000000000003,0.32799999999999996 +2015-05-18 06:00:00,0.231,0.28300000000000003,0.32799999999999996 +2015-05-18 07:00:00,0.231,0.28300000000000003,0.32799999999999996 +2015-05-18 08:00:00,0.231,0.28300000000000003,0.32799999999999996 +2015-05-18 09:00:00,0.231,0.28300000000000003,0.32799999999999996 +2015-05-18 10:00:00,0.231,0.28300000000000003,0.327 +2015-05-18 11:00:00,0.23,0.28300000000000003,0.327 +2015-05-18 12:00:00,0.23,0.28300000000000003,0.327 +2015-05-18 13:00:00,0.23,0.28300000000000003,0.327 +2015-05-18 14:00:00,0.23,0.28300000000000003,0.326 +2015-05-18 15:00:00,0.23,0.282,0.325 +2015-05-18 16:00:00,0.23,0.281,0.325 +2015-05-18 17:00:00,0.23,0.281,0.325 +2015-05-18 18:00:00,0.23,0.281,0.325 +2015-05-18 19:00:00,0.23,0.28,0.324 +2015-05-18 20:00:00,0.23,0.281,0.324 +2015-05-18 21:00:00,0.23,0.281,0.324 +2015-05-18 22:00:00,0.23,0.281,0.324 +2015-05-18 23:00:00,0.23,0.281,0.324 +2015-05-19 00:00:00,0.23,0.281,0.324 +2015-05-19 01:00:00,0.23,0.281,0.324 +2015-05-19 02:00:00,0.23,0.281,0.324 +2015-05-19 03:00:00,0.23,0.281,0.324 +2015-05-19 04:00:00,0.23,0.28,0.324 +2015-05-19 05:00:00,0.22899999999999998,0.28,0.324 +2015-05-19 06:00:00,0.23,0.28,0.325 +2015-05-19 07:00:00,0.23,0.28,0.325 +2015-05-19 08:00:00,0.23,0.28,0.324 +2015-05-19 09:00:00,0.22899999999999998,0.28,0.324 +2015-05-19 10:00:00,0.22899999999999998,0.28,0.324 +2015-05-19 11:00:00,0.22899999999999998,0.28,0.324 +2015-05-19 12:00:00,0.228,0.28,0.324 +2015-05-19 13:00:00,0.22899999999999998,0.28,0.322 +2015-05-19 14:00:00,0.231,0.28,0.322 +2015-05-19 15:00:00,0.231,0.28,0.322 +2015-05-19 16:00:00,0.23,0.28,0.321 +2015-05-19 17:00:00,0.23,0.28,0.321 +2015-05-19 18:00:00,0.228,0.28,0.321 +2015-05-19 19:00:00,0.228,0.28,0.32 +2015-05-19 20:00:00,0.228,0.28,0.32 +2015-05-19 21:00:00,0.228,0.28,0.321 +2015-05-19 22:00:00,0.228,0.28,0.321 +2015-05-19 23:00:00,0.228,0.28,0.321 +2015-05-20 00:00:00,0.228,0.28,0.321 +2015-05-20 01:00:00,0.228,0.28,0.321 +2015-05-20 02:00:00,0.228,0.28,0.321 +2015-05-20 03:00:00,0.22699999999999998,0.28,0.321 +2015-05-20 04:00:00,0.22699999999999998,0.28,0.321 +2015-05-20 05:00:00,0.22699999999999998,0.28,0.321 +2015-05-20 06:00:00,0.228,0.28,0.322 +2015-05-20 07:00:00,0.228,0.28,0.32299999999999995 +2015-05-20 08:00:00,0.228,0.28,0.322 +2015-05-20 09:00:00,0.228,0.28,0.322 +2015-05-20 10:00:00,0.226,0.28,0.321 +2015-05-20 11:00:00,0.226,0.28,0.321 +2015-05-20 12:00:00,0.226,0.28,0.321 +2015-05-20 13:00:00,0.226,0.28,0.32 +2015-05-20 14:00:00,0.225,0.27899999999999997,0.321 +2015-05-20 15:00:00,0.225,0.278,0.32 +2015-05-20 16:00:00,0.225,0.27699999999999997,0.322 +2015-05-20 17:00:00,0.226,0.276,0.322 +2015-05-20 18:00:00,0.225,0.276,0.321 +2015-05-20 19:00:00,0.225,0.276,0.32 +2015-05-20 20:00:00,0.225,0.276,0.32 +2015-05-20 21:00:00,0.225,0.275,0.319 +2015-05-20 22:00:00,0.225,0.275,0.319 +2015-05-20 23:00:00,0.22399999999999998,0.275,0.319 +2015-05-21 00:00:00,0.22399999999999998,0.276,0.319 +2015-05-21 01:00:00,0.223,0.276,0.319 +2015-05-21 02:00:00,0.223,0.276,0.319 +2015-05-21 03:00:00,0.223,0.276,0.32 +2015-05-21 04:00:00,0.223,0.276,0.319 +2015-05-21 05:00:00,0.223,0.276,0.319 +2015-05-21 06:00:00,0.223,0.278,0.319 +2015-05-21 07:00:00,0.223,0.27899999999999997,0.32 +2015-05-21 08:00:00,0.223,0.278,0.32 +2015-05-21 09:00:00,0.223,0.27699999999999997,0.32 +2015-05-21 10:00:00,0.223,0.276,0.32 +2015-05-21 11:00:00,0.223,0.276,0.319 +2015-05-21 12:00:00,0.222,0.275,0.319 +2015-05-21 13:00:00,0.222,0.273,0.319 +2015-05-21 14:00:00,0.222,0.273,0.319 +2015-05-21 15:00:00,0.222,0.273,0.319 +2015-05-21 16:00:00,0.222,0.273,0.319 +2015-05-21 17:00:00,0.222,0.271,0.318 +2015-05-21 18:00:00,0.222,0.271,0.318 +2015-05-21 19:00:00,0.222,0.27,0.318 +2015-05-21 20:00:00,0.222,0.27,0.318 +2015-05-21 21:00:00,0.222,0.27,0.318 +2015-05-21 22:00:00,0.222,0.27,0.318 +2015-05-21 23:00:00,0.222,0.27,0.319 +2015-05-22 00:00:00,0.221,0.271,0.318 +2015-05-22 01:00:00,0.221,0.271,0.318 +2015-05-22 02:00:00,0.221,0.271,0.318 +2015-05-22 03:00:00,0.221,0.271,0.318 +2015-05-22 04:00:00,0.221,0.271,0.318 +2015-05-22 05:00:00,0.221,0.271,0.318 +2015-05-22 06:00:00,0.221,0.271,0.318 +2015-05-22 07:00:00,0.221,0.27,0.318 +2015-05-22 08:00:00,0.221,0.271,0.318 +2015-05-22 09:00:00,0.221,0.27,0.318 +2015-05-22 10:00:00,0.221,0.27,0.318 +2015-05-22 11:00:00,0.22,0.27,0.318 +2015-05-22 12:00:00,0.22,0.27,0.318 +2015-05-22 13:00:00,0.22,0.27,0.317 +2015-05-22 14:00:00,0.22,0.27,0.317 +2015-05-22 15:00:00,0.22,0.27,0.317 +2015-05-22 16:00:00,0.22,0.268,0.316 +2015-05-22 17:00:00,0.22,0.268,0.316 +2015-05-22 18:00:00,0.22,0.268,0.316 +2015-05-22 19:00:00,0.22,0.268,0.315 +2015-05-22 20:00:00,0.22,0.268,0.315 +2015-05-22 21:00:00,0.22,0.268,0.315 +2015-05-22 22:00:00,0.22,0.26899999999999996,0.316 +2015-05-22 23:00:00,0.22,0.26899999999999996,0.316 +2015-05-23 00:00:00,0.22,0.26899999999999996,0.316 +2015-05-23 01:00:00,0.22,0.26899999999999996,0.316 +2015-05-23 02:00:00,0.22,0.26899999999999996,0.316 +2015-05-23 03:00:00,0.22,0.26899999999999996,0.316 +2015-05-23 04:00:00,0.22,0.268,0.316 +2015-05-23 05:00:00,0.22,0.268,0.316 +2015-05-23 06:00:00,0.22,0.268,0.316 +2015-05-23 07:00:00,0.22,0.268,0.316 +2015-05-23 08:00:00,0.22,0.268,0.316 +2015-05-23 09:00:00,0.22,0.268,0.316 +2015-05-23 10:00:00,0.22,0.268,0.316 +2015-05-23 11:00:00,0.22,0.26899999999999996,0.315 +2015-05-23 12:00:00,0.22,0.267,0.315 +2015-05-23 13:00:00,0.22,0.266,0.315 +2015-05-23 14:00:00,0.21899999999999997,0.266,0.315 +2015-05-23 15:00:00,0.21899999999999997,0.266,0.315 +2015-05-23 16:00:00,0.21899999999999997,0.266,0.315 +2015-05-23 17:00:00,0.21899999999999997,0.266,0.314 +2015-05-23 18:00:00,0.21899999999999997,0.265,0.314 +2015-05-23 19:00:00,0.21899999999999997,0.262,0.314 +2015-05-23 20:00:00,0.21899999999999997,0.262,0.314 +2015-05-23 21:00:00,0.21899999999999997,0.263,0.314 +2015-05-23 22:00:00,0.21899999999999997,0.264,0.314 +2015-05-23 23:00:00,0.21899999999999997,0.264,0.314 +2015-05-24 00:00:00,0.21899999999999997,0.264,0.314 +2015-05-24 01:00:00,0.21899999999999997,0.264,0.314 +2015-05-24 02:00:00,0.21899999999999997,0.264,0.314 +2015-05-24 03:00:00,0.21899999999999997,0.264,0.315 +2015-05-24 04:00:00,0.21899999999999997,0.265,0.315 +2015-05-24 05:00:00,0.218,0.264,0.315 +2015-05-24 06:00:00,0.218,0.262,0.314 +2015-05-24 07:00:00,0.218,0.263,0.314 +2015-05-24 08:00:00,0.218,0.263,0.314 +2015-05-24 09:00:00,0.218,0.263,0.314 +2015-05-24 10:00:00,0.218,0.262,0.314 +2015-05-24 11:00:00,0.218,0.263,0.314 +2015-05-24 12:00:00,0.218,0.264,0.314 +2015-05-24 13:00:00,0.218,0.264,0.314 +2015-05-24 14:00:00,0.218,0.264,0.313 +2015-05-24 15:00:00,0.218,0.265,0.313 +2015-05-24 16:00:00,0.218,0.265,0.313 +2015-05-24 17:00:00,0.218,0.265,0.313 +2015-05-24 18:00:00,0.218,0.265,0.312 +2015-05-24 19:00:00,0.218,0.265,0.313 +2015-05-24 20:00:00,0.218,0.265,0.313 +2015-05-24 21:00:00,0.218,0.265,0.313 +2015-05-24 22:00:00,0.218,0.266,0.313 +2015-05-24 23:00:00,0.218,0.266,0.313 +2015-05-25 00:00:00,0.218,0.266,0.314 +2015-05-25 01:00:00,0.22,0.266,0.317 +2015-05-25 02:00:00,0.22,0.266,0.317 +2015-05-25 03:00:00,0.22,0.266,0.317 +2015-05-25 04:00:00,0.22,0.266,0.318 +2015-05-25 05:00:00,0.22,0.266,0.318 +2015-05-25 06:00:00,0.22,0.266,0.318 +2015-05-25 07:00:00,0.21899999999999997,0.266,0.318 +2015-05-25 08:00:00,0.21899999999999997,0.266,0.318 +2015-05-25 09:00:00,0.21899999999999997,0.266,0.316 +2015-05-25 10:00:00,0.21899999999999997,0.266,0.315 +2015-05-25 11:00:00,0.218,0.265,0.313 +2015-05-25 12:00:00,0.218,0.265,0.313 +2015-05-25 13:00:00,0.218,0.265,0.313 +2015-05-25 14:00:00,0.218,0.264,0.312 +2015-05-25 15:00:00,0.218,0.264,0.312 +2015-05-25 16:00:00,0.218,0.264,0.312 +2015-05-25 17:00:00,0.218,0.264,0.312 +2015-05-25 18:00:00,0.218,0.264,0.312 +2015-05-25 19:00:00,0.218,0.264,0.312 +2015-05-25 20:00:00,0.218,0.264,0.312 +2015-05-25 21:00:00,0.218,0.264,0.312 +2015-05-25 22:00:00,0.218,0.264,0.312 +2015-05-25 23:00:00,0.218,0.264,0.312 +2015-05-26 00:00:00,0.218,0.264,0.312 +2015-05-26 01:00:00,0.218,0.264,0.312 +2015-05-26 02:00:00,0.217,0.264,0.312 +2015-05-26 03:00:00,0.217,0.265,0.312 +2015-05-26 04:00:00,0.217,0.265,0.312 +2015-05-26 05:00:00,0.217,0.264,0.312 +2015-05-26 06:00:00,0.217,0.263,0.312 +2015-05-26 07:00:00,0.217,0.262,0.312 +2015-05-26 08:00:00,0.217,0.261,0.311 +2015-05-26 09:00:00,0.217,0.261,0.311 +2015-05-26 10:00:00,0.217,0.261,0.311 +2015-05-26 11:00:00,0.217,0.261,0.311 +2015-05-26 12:00:00,0.217,0.261,0.311 +2015-05-26 13:00:00,0.21600000000000003,0.263,0.311 +2015-05-26 14:00:00,0.21600000000000003,0.263,0.311 +2015-05-26 15:00:00,0.21600000000000003,0.263,0.31 +2015-05-26 16:00:00,0.21600000000000003,0.263,0.31 +2015-05-26 17:00:00,0.21600000000000003,0.263,0.31 +2015-05-26 18:00:00,0.21600000000000003,0.264,0.31 +2015-05-26 19:00:00,0.21600000000000003,0.264,0.31 +2015-05-26 20:00:00,0.21600000000000003,0.264,0.31 +2015-05-26 21:00:00,0.21600000000000003,0.264,0.31 +2015-05-26 22:00:00,0.21600000000000003,0.265,0.31 +2015-05-26 23:00:00,0.215,0.265,0.31 +2015-05-27 00:00:00,0.215,0.266,0.31 +2015-05-27 01:00:00,0.215,0.266,0.309 +2015-05-27 02:00:00,0.214,0.266,0.309 +2015-05-27 03:00:00,0.214,0.266,0.309 +2015-05-27 04:00:00,0.214,0.266,0.309 +2015-05-27 05:00:00,0.214,0.266,0.309 +2015-05-27 06:00:00,0.214,0.265,0.31 +2015-05-27 07:00:00,0.214,0.266,0.31 +2015-05-27 08:00:00,0.214,0.265,0.31 +2015-05-27 09:00:00,0.214,0.264,0.31 +2015-05-27 10:00:00,0.214,0.264,0.31 +2015-05-27 11:00:00,0.214,0.264,0.309 +2015-05-27 12:00:00,0.214,0.264,0.309 +2015-05-27 13:00:00,0.214,0.265,0.309 +2015-05-27 14:00:00,0.214,0.265,0.308 +2015-05-27 15:00:00,0.214,0.265,0.308 +2015-05-27 16:00:00,0.214,0.265,0.308 +2015-05-27 17:00:00,0.214,0.265,0.308 +2015-05-27 18:00:00,0.214,0.264,0.308 +2015-05-27 19:00:00,0.213,0.264,0.307 +2015-05-27 20:00:00,0.213,0.264,0.307 +2015-05-27 21:00:00,0.213,0.264,0.307 +2015-05-27 22:00:00,0.213,0.264,0.307 +2015-05-27 23:00:00,0.213,0.266,0.307 +2015-05-28 00:00:00,0.213,0.266,0.307 +2015-05-28 01:00:00,0.213,0.266,0.307 +2015-05-28 02:00:00,0.213,0.266,0.307 +2015-05-28 03:00:00,0.212,0.266,0.307 +2015-05-28 04:00:00,0.212,0.265,0.308 +2015-05-28 05:00:00,0.212,0.265,0.307 +2015-05-28 06:00:00,0.212,0.265,0.308 +2015-05-28 07:00:00,0.212,0.265,0.308 +2015-05-28 08:00:00,0.212,0.264,0.308 +2015-05-28 09:00:00,0.212,0.264,0.307 +2015-05-28 10:00:00,0.212,0.264,0.307 +2015-05-28 11:00:00,0.212,0.264,0.307 +2015-05-28 12:00:00,0.212,0.264,0.307 +2015-05-28 13:00:00,0.212,0.264,0.306 +2015-05-28 14:00:00,0.21100000000000002,0.264,0.305 +2015-05-28 15:00:00,0.21100000000000002,0.264,0.305 +2015-05-28 16:00:00,0.212,0.264,0.305 +2015-05-28 17:00:00,0.212,0.264,0.306 +2015-05-28 18:00:00,0.21100000000000002,0.264,0.306 +2015-05-28 19:00:00,0.21100000000000002,0.264,0.306 +2015-05-28 20:00:00,0.212,0.263,0.306 +2015-05-28 21:00:00,0.21100000000000002,0.263,0.305 +2015-05-28 22:00:00,0.21100000000000002,0.263,0.305 +2015-05-28 23:00:00,0.21100000000000002,0.264,0.304 +2015-05-29 00:00:00,0.21100000000000002,0.264,0.305 +2015-05-29 01:00:00,0.21100000000000002,0.264,0.305 +2015-05-29 02:00:00,0.21100000000000002,0.264,0.305 +2015-05-29 03:00:00,0.21100000000000002,0.264,0.305 +2015-05-29 04:00:00,0.21,0.264,0.305 +2015-05-29 05:00:00,0.21,0.264,0.305 +2015-05-29 06:00:00,0.21,0.264,0.305 +2015-05-29 07:00:00,0.21,0.264,0.305 +2015-05-29 08:00:00,0.21,0.264,0.305 +2015-05-29 09:00:00,0.21,0.264,0.305 +2015-05-29 10:00:00,0.21,0.264,0.305 +2015-05-29 11:00:00,0.21,0.264,0.304 +2015-05-29 12:00:00,0.21,0.263,0.304 +2015-05-29 13:00:00,0.21,0.263,0.304 +2015-05-29 14:00:00,0.21,0.263,0.304 +2015-05-29 15:00:00,0.21100000000000002,0.262,0.304 +2015-05-29 16:00:00,0.21100000000000002,0.261,0.308 +2015-05-29 17:00:00,0.212,0.26,0.308 +2015-05-29 18:00:00,0.212,0.259,0.307 +2015-05-29 19:00:00,0.212,0.259,0.306 +2015-05-29 20:00:00,0.212,0.259,0.306 +2015-05-29 21:00:00,0.21100000000000002,0.259,0.305 +2015-05-29 22:00:00,0.21100000000000002,0.259,0.305 +2015-05-29 23:00:00,0.21100000000000002,0.26,0.305 +2015-05-30 00:00:00,0.21100000000000002,0.259,0.305 +2015-05-30 01:00:00,0.21100000000000002,0.261,0.305 +2015-05-30 02:00:00,0.217,0.261,0.31 +2015-05-30 03:00:00,0.21899999999999997,0.259,0.313 +2015-05-30 04:00:00,0.217,0.259,0.313 +2015-05-30 05:00:00,0.21600000000000003,0.259,0.313 +2015-05-30 06:00:00,0.215,0.259,0.313 +2015-05-30 07:00:00,0.214,0.259,0.313 +2015-05-30 08:00:00,0.214,0.259,0.312 +2015-05-30 09:00:00,0.21600000000000003,0.259,0.309 +2015-05-30 10:00:00,0.21600000000000003,0.258,0.306 +2015-05-30 11:00:00,0.215,0.258,0.306 +2015-05-30 12:00:00,0.215,0.259,0.305 +2015-05-30 13:00:00,0.214,0.258,0.304 +2015-05-30 14:00:00,0.214,0.258,0.304 +2015-05-30 15:00:00,0.213,0.257,0.304 +2015-05-30 16:00:00,0.213,0.256,0.304 +2015-05-30 17:00:00,0.213,0.256,0.303 +2015-05-30 18:00:00,0.213,0.255,0.303 +2015-05-30 19:00:00,0.213,0.254,0.303 +2015-05-30 20:00:00,0.213,0.254,0.303 +2015-05-30 21:00:00,0.213,0.254,0.304 +2015-05-30 22:00:00,0.212,0.254,0.303 +2015-05-30 23:00:00,0.212,0.256,0.304 +2015-05-31 00:00:00,0.21100000000000002,0.256,0.303 +2015-05-31 01:00:00,0.21100000000000002,0.256,0.303 +2015-05-31 02:00:00,0.21100000000000002,0.256,0.303 +2015-05-31 03:00:00,0.21100000000000002,0.256,0.303 +2015-05-31 04:00:00,0.21,0.256,0.303 +2015-05-31 05:00:00,0.21,0.256,0.303 +2015-05-31 06:00:00,0.21,0.256,0.303 +2015-05-31 07:00:00,0.21,0.256,0.304 +2015-05-31 08:00:00,0.21,0.255,0.304 +2015-05-31 09:00:00,0.21,0.253,0.304 +2015-05-31 10:00:00,0.21,0.253,0.304 +2015-05-31 11:00:00,0.21,0.253,0.304 +2015-05-31 12:00:00,0.21,0.253,0.303 +2015-05-31 13:00:00,0.21,0.254,0.303 +2015-05-31 14:00:00,0.21,0.254,0.303 +2015-05-31 15:00:00,0.21,0.255,0.302 +2015-05-31 16:00:00,0.21,0.256,0.302 +2015-05-31 17:00:00,0.21,0.256,0.303 +2015-05-31 18:00:00,0.21,0.256,0.303 +2015-05-31 19:00:00,0.21,0.256,0.303 +2015-05-31 20:00:00,0.21,0.256,0.303 +2015-05-31 21:00:00,0.21,0.256,0.303 +2015-05-31 22:00:00,0.21,0.256,0.303 +2015-05-31 23:00:00,0.21,0.256,0.303 +2015-06-01 00:00:00,0.21,0.256,0.303 +2015-06-01 01:00:00,0.21,0.256,0.303 +2015-06-01 02:00:00,0.21,0.256,0.304 +2015-06-01 03:00:00,0.21100000000000002,0.256,0.306 +2015-06-01 04:00:00,0.21,0.256,0.308 +2015-06-01 05:00:00,0.209,0.256,0.31 +2015-06-01 06:00:00,0.209,0.256,0.31 +2015-06-01 07:00:00,0.209,0.256,0.31 +2015-06-01 08:00:00,0.21,0.256,0.31 +2015-06-01 09:00:00,0.21100000000000002,0.257,0.309 +2015-06-01 10:00:00,0.212,0.256,0.308 +2015-06-01 11:00:00,0.212,0.256,0.308 +2015-06-01 12:00:00,0.212,0.256,0.307 +2015-06-01 13:00:00,0.212,0.254,0.307 +2015-06-01 14:00:00,0.212,0.254,0.306 +2015-06-01 15:00:00,0.21100000000000002,0.254,0.304 +2015-06-01 16:00:00,0.21100000000000002,0.254,0.304 +2015-06-01 17:00:00,0.21100000000000002,0.253,0.303 +2015-06-01 18:00:00,0.21100000000000002,0.253,0.303 +2015-06-01 19:00:00,0.21100000000000002,0.253,0.303 +2015-06-01 20:00:00,0.21100000000000002,0.253,0.303 +2015-06-01 21:00:00,0.21100000000000002,0.253,0.302 +2015-06-01 22:00:00,0.21100000000000002,0.253,0.302 +2015-06-01 23:00:00,0.21,0.253,0.302 +2015-06-02 00:00:00,0.21,0.253,0.303 +2015-06-02 01:00:00,0.21,0.253,0.302 +2015-06-02 02:00:00,0.21,0.253,0.303 +2015-06-02 03:00:00,0.21,0.253,0.303 +2015-06-02 04:00:00,0.21,0.253,0.303 +2015-06-02 05:00:00,0.21,0.253,0.303 +2015-06-02 06:00:00,0.21,0.253,0.304 +2015-06-02 07:00:00,0.21,0.253,0.305 +2015-06-02 08:00:00,0.21,0.253,0.305 +2015-06-02 09:00:00,0.21,0.253,0.305 +2015-06-02 10:00:00,0.21,0.253,0.305 +2015-06-02 11:00:00,0.21,0.253,0.304 +2015-06-02 12:00:00,0.21,0.252,0.304 +2015-06-02 13:00:00,0.21,0.251,0.304 +2015-06-02 14:00:00,0.21,0.251,0.304 +2015-06-02 15:00:00,0.21,0.251,0.302 +2015-06-02 16:00:00,0.21,0.251,0.302 +2015-06-02 17:00:00,0.21,0.249,0.301 +2015-06-02 18:00:00,0.21,0.249,0.301 +2015-06-02 19:00:00,0.21,0.249,0.301 +2015-06-02 20:00:00,0.21,0.249,0.301 +2015-06-02 21:00:00,0.21,0.249,0.301 +2015-06-02 22:00:00,0.21,0.249,0.3 +2015-06-02 23:00:00,0.21,0.249,0.301 +2015-06-03 00:00:00,0.21,0.249,0.301 +2015-06-03 01:00:00,0.21,0.249,0.301 +2015-06-03 02:00:00,0.21,0.249,0.301 +2015-06-03 03:00:00,0.21,0.249,0.301 +2015-06-03 04:00:00,0.21,0.249,0.301 +2015-06-03 05:00:00,0.21,0.249,0.301 +2015-06-03 06:00:00,0.21,0.249,0.302 +2015-06-03 07:00:00,0.21,0.249,0.303 +2015-06-03 08:00:00,0.21,0.249,0.302 +2015-06-03 09:00:00,0.21,0.249,0.301 +2015-06-03 10:00:00,0.21,0.249,0.3 +2015-06-03 11:00:00,0.21,0.249,0.3 +2015-06-03 12:00:00,0.21,0.249,0.3 +2015-06-03 13:00:00,0.21,0.248,0.3 +2015-06-03 14:00:00,0.21,0.247,0.3 +2015-06-03 15:00:00,0.21,0.247,0.299 +2015-06-03 16:00:00,0.21,0.247,0.299 +2015-06-03 17:00:00,0.21,0.24600000000000002,0.298 +2015-06-03 18:00:00,0.21,0.24600000000000002,0.298 +2015-06-03 19:00:00,0.209,0.24600000000000002,0.298 +2015-06-03 20:00:00,0.21,0.24600000000000002,0.298 +2015-06-03 21:00:00,0.21,0.24600000000000002,0.298 +2015-06-03 22:00:00,0.209,0.24600000000000002,0.298 +2015-06-03 23:00:00,0.209,0.24600000000000002,0.298 +2015-06-04 00:00:00,0.209,0.24600000000000002,0.298 +2015-06-04 01:00:00,0.20800000000000002,0.247,0.298 +2015-06-04 02:00:00,0.20800000000000002,0.247,0.298 +2015-06-04 03:00:00,0.20800000000000002,0.247,0.298 +2015-06-04 04:00:00,0.20800000000000002,0.247,0.298 +2015-06-04 05:00:00,0.20800000000000002,0.247,0.298 +2015-06-04 06:00:00,0.20800000000000002,0.247,0.298 +2015-06-04 07:00:00,0.20800000000000002,0.24600000000000002,0.298 +2015-06-04 08:00:00,0.20800000000000002,0.24600000000000002,0.298 +2015-06-04 09:00:00,0.20800000000000002,0.24600000000000002,0.298 +2015-06-04 10:00:00,0.207,0.24600000000000002,0.298 +2015-06-04 11:00:00,0.207,0.24600000000000002,0.297 +2015-06-04 12:00:00,0.207,0.24600000000000002,0.29600000000000004 +2015-06-04 13:00:00,0.207,0.24600000000000002,0.29600000000000004 +2015-06-04 14:00:00,0.207,0.245,0.295 +2015-06-04 15:00:00,0.207,0.245,0.295 +2015-06-04 16:00:00,0.207,0.244,0.294 +2015-06-04 17:00:00,0.207,0.244,0.294 +2015-06-04 18:00:00,0.207,0.244,0.293 +2015-06-04 19:00:00,0.207,0.244,0.293 +2015-06-04 20:00:00,0.207,0.244,0.293 +2015-06-04 21:00:00,0.207,0.244,0.293 +2015-06-04 22:00:00,0.207,0.244,0.293 +2015-06-04 23:00:00,0.207,0.244,0.293 +2015-06-05 00:00:00,0.207,0.244,0.293 +2015-06-05 01:00:00,0.20600000000000002,0.244,0.293 +2015-06-05 02:00:00,0.20600000000000002,0.244,0.293 +2015-06-05 03:00:00,0.20600000000000002,0.244,0.293 +2015-06-05 04:00:00,0.20600000000000002,0.245,0.293 +2015-06-05 05:00:00,0.205,0.245,0.293 +2015-06-05 06:00:00,0.205,0.245,0.293 +2015-06-05 07:00:00,0.20600000000000002,0.245,0.293 +2015-06-05 08:00:00,0.20600000000000002,0.245,0.294 +2015-06-05 09:00:00,0.205,0.245,0.293 +2015-06-05 10:00:00,0.205,0.245,0.293 +2015-06-05 11:00:00,0.205,0.245,0.292 +2015-06-05 12:00:00,0.205,0.244,0.292 +2015-06-05 13:00:00,0.205,0.244,0.29100000000000004 +2015-06-05 14:00:00,0.20600000000000002,0.243,0.29100000000000004 +2015-06-05 15:00:00,0.20600000000000002,0.242,0.29 +2015-06-05 16:00:00,0.20600000000000002,0.242,0.29 +2015-06-05 17:00:00,0.20600000000000002,0.242,0.289 +2015-06-05 18:00:00,0.20600000000000002,0.242,0.289 +2015-06-05 19:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-05 20:00:00,0.20600000000000002,0.242,0.289 +2015-06-05 21:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-05 22:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-05 23:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-06 00:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-06 01:00:00,0.20600000000000002,0.242,0.289 +2015-06-06 02:00:00,0.20600000000000002,0.242,0.289 +2015-06-06 03:00:00,0.20600000000000002,0.242,0.289 +2015-06-06 04:00:00,0.20600000000000002,0.242,0.289 +2015-06-06 05:00:00,0.20600000000000002,0.242,0.29 +2015-06-06 06:00:00,0.21600000000000003,0.242,0.292 +2015-06-06 07:00:00,0.217,0.242,0.293 +2015-06-06 08:00:00,0.215,0.242,0.292 +2015-06-06 09:00:00,0.214,0.242,0.292 +2015-06-06 10:00:00,0.213,0.242,0.29 +2015-06-06 11:00:00,0.21100000000000002,0.242,0.29 +2015-06-06 12:00:00,0.21100000000000002,0.242,0.29 +2015-06-06 13:00:00,0.21100000000000002,0.24100000000000002,0.289 +2015-06-06 14:00:00,0.21,0.24100000000000002,0.289 +2015-06-06 15:00:00,0.21,0.24100000000000002,0.28800000000000003 +2015-06-06 16:00:00,0.209,0.239,0.28800000000000003 +2015-06-06 17:00:00,0.209,0.239,0.28800000000000003 +2015-06-06 18:00:00,0.209,0.239,0.28800000000000003 +2015-06-06 19:00:00,0.20800000000000002,0.239,0.287 +2015-06-06 20:00:00,0.20800000000000002,0.239,0.287 +2015-06-06 21:00:00,0.20800000000000002,0.239,0.287 +2015-06-06 22:00:00,0.20800000000000002,0.239,0.287 +2015-06-06 23:00:00,0.20800000000000002,0.239,0.287 +2015-06-07 00:00:00,0.207,0.239,0.287 +2015-06-07 01:00:00,0.207,0.24100000000000002,0.287 +2015-06-07 02:00:00,0.207,0.24100000000000002,0.287 +2015-06-07 03:00:00,0.207,0.24100000000000002,0.287 +2015-06-07 04:00:00,0.207,0.24100000000000002,0.287 +2015-06-07 05:00:00,0.20600000000000002,0.24100000000000002,0.287 +2015-06-07 06:00:00,0.20600000000000002,0.242,0.287 +2015-06-07 07:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-07 08:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-07 09:00:00,0.20600000000000002,0.242,0.28800000000000003 +2015-06-07 10:00:00,0.20600000000000002,0.242,0.287 +2015-06-07 11:00:00,0.20600000000000002,0.24,0.287 +2015-06-07 12:00:00,0.205,0.24100000000000002,0.28600000000000003 +2015-06-07 13:00:00,0.205,0.24100000000000002,0.28600000000000003 +2015-06-07 14:00:00,0.205,0.24100000000000002,0.285 +2015-06-07 15:00:00,0.205,0.24100000000000002,0.285 +2015-06-07 16:00:00,0.205,0.24,0.284 +2015-06-07 17:00:00,0.205,0.239,0.284 +2015-06-07 18:00:00,0.205,0.239,0.28300000000000003 +2015-06-07 19:00:00,0.204,0.239,0.28300000000000003 +2015-06-07 20:00:00,0.204,0.239,0.28300000000000003 +2015-06-07 21:00:00,0.204,0.239,0.28300000000000003 +2015-06-07 22:00:00,0.204,0.239,0.28300000000000003 +2015-06-07 23:00:00,0.204,0.239,0.28300000000000003 +2015-06-08 00:00:00,0.203,0.24,0.28300000000000003 +2015-06-08 01:00:00,0.203,0.24100000000000002,0.28300000000000003 +2015-06-08 02:00:00,0.203,0.24100000000000002,0.28300000000000003 +2015-06-08 03:00:00,0.203,0.24100000000000002,0.28300000000000003 +2015-06-08 04:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 +2015-06-08 05:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 +2015-06-08 06:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 +2015-06-08 07:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 +2015-06-08 08:00:00,0.20199999999999999,0.24100000000000002,0.28300000000000003 +2015-06-08 09:00:00,0.20199999999999999,0.24,0.28300000000000003 +2015-06-08 10:00:00,0.20199999999999999,0.239,0.28300000000000003 +2015-06-08 11:00:00,0.20199999999999999,0.239,0.282 +2015-06-08 12:00:00,0.20199999999999999,0.239,0.282 +2015-06-08 13:00:00,0.20199999999999999,0.239,0.282 +2015-06-08 14:00:00,0.20199999999999999,0.23800000000000002,0.281 +2015-06-08 15:00:00,0.20199999999999999,0.237,0.281 +2015-06-08 16:00:00,0.20199999999999999,0.237,0.28 +2015-06-08 17:00:00,0.20199999999999999,0.237,0.28 +2015-06-08 18:00:00,0.20199999999999999,0.23600000000000002,0.28 +2015-06-08 19:00:00,0.20199999999999999,0.23600000000000002,0.28 +2015-06-08 20:00:00,0.20199999999999999,0.23600000000000002,0.28 +2015-06-08 21:00:00,0.20199999999999999,0.23600000000000002,0.27899999999999997 +2015-06-08 22:00:00,0.20199999999999999,0.23600000000000002,0.27899999999999997 +2015-06-08 23:00:00,0.20199999999999999,0.237,0.27899999999999997 +2015-06-09 00:00:00,0.201,0.237,0.27899999999999997 +2015-06-09 01:00:00,0.201,0.237,0.27899999999999997 +2015-06-09 02:00:00,0.201,0.23800000000000002,0.27899999999999997 +2015-06-09 03:00:00,0.201,0.23800000000000002,0.27899999999999997 +2015-06-09 04:00:00,0.201,0.23800000000000002,0.27899999999999997 +2015-06-09 05:00:00,0.201,0.23800000000000002,0.27899999999999997 +2015-06-09 06:00:00,0.201,0.23800000000000002,0.27899999999999997 +2015-06-09 07:00:00,0.201,0.23800000000000002,0.27899999999999997 +2015-06-09 08:00:00,0.201,0.23800000000000002,0.27899999999999997 +2015-06-09 09:00:00,0.201,0.237,0.27899999999999997 +2015-06-09 10:00:00,0.201,0.237,0.27899999999999997 +2015-06-09 11:00:00,0.201,0.237,0.27899999999999997 +2015-06-09 12:00:00,0.201,0.237,0.278 +2015-06-09 13:00:00,0.2,0.237,0.278 +2015-06-09 14:00:00,0.19899999999999998,0.237,0.278 +2015-06-09 15:00:00,0.19899999999999998,0.23600000000000002,0.278 +2015-06-09 16:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-09 17:00:00,0.19699999999999998,0.23600000000000002,0.27699999999999997 +2015-06-09 18:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-09 19:00:00,0.19899999999999998,0.23600000000000002,0.27699999999999997 +2015-06-09 20:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-09 21:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-09 22:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-09 23:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-10 00:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-10 01:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-10 02:00:00,0.198,0.23600000000000002,0.276 +2015-06-10 03:00:00,0.198,0.23600000000000002,0.276 +2015-06-10 04:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-10 05:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-10 06:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-10 07:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-10 08:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-10 09:00:00,0.198,0.23600000000000002,0.27699999999999997 +2015-06-10 10:00:00,0.198,0.23600000000000002,0.276 +2015-06-10 11:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-10 12:00:00,0.19899999999999998,0.23600000000000002,0.276 +2015-06-10 13:00:00,0.19899999999999998,0.235,0.276 +2015-06-10 14:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-10 15:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-10 16:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-10 17:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-10 18:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-10 19:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-10 20:00:00,0.19899999999999998,0.23399999999999999,0.27399999999999997 +2015-06-10 21:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-10 22:00:00,0.19899999999999998,0.23399999999999999,0.27399999999999997 +2015-06-10 23:00:00,0.19899999999999998,0.23399999999999999,0.27399999999999997 +2015-06-11 00:00:00,0.19899999999999998,0.235,0.275 +2015-06-11 01:00:00,0.19899999999999998,0.23600000000000002,0.275 +2015-06-11 02:00:00,0.19899999999999998,0.23600000000000002,0.275 +2015-06-11 03:00:00,0.198,0.23600000000000002,0.275 +2015-06-11 04:00:00,0.19899999999999998,0.23600000000000002,0.275 +2015-06-11 05:00:00,0.198,0.23600000000000002,0.275 +2015-06-11 06:00:00,0.19899999999999998,0.235,0.275 +2015-06-11 07:00:00,0.198,0.235,0.275 +2015-06-11 08:00:00,0.19899999999999998,0.235,0.275 +2015-06-11 09:00:00,0.19899999999999998,0.23399999999999999,0.275 +2015-06-11 10:00:00,0.198,0.23399999999999999,0.275 +2015-06-11 11:00:00,0.198,0.233,0.27399999999999997 +2015-06-11 12:00:00,0.198,0.23199999999999998,0.27399999999999997 +2015-06-11 13:00:00,0.198,0.23199999999999998,0.27399999999999997 +2015-06-11 14:00:00,0.19899999999999998,0.23199999999999998,0.273 +2015-06-11 15:00:00,0.19899999999999998,0.23199999999999998,0.273 +2015-06-11 16:00:00,0.19899999999999998,0.231,0.273 +2015-06-11 17:00:00,0.19899999999999998,0.231,0.272 +2015-06-11 18:00:00,0.19899999999999998,0.231,0.272 +2015-06-11 19:00:00,0.19899999999999998,0.231,0.272 +2015-06-11 20:00:00,0.19899999999999998,0.231,0.272 +2015-06-11 21:00:00,0.19899999999999998,0.231,0.272 +2015-06-11 22:00:00,0.198,0.23199999999999998,0.272 +2015-06-11 23:00:00,0.198,0.23199999999999998,0.272 +2015-06-12 00:00:00,0.198,0.23199999999999998,0.272 +2015-06-12 01:00:00,0.198,0.23199999999999998,0.272 +2015-06-12 02:00:00,0.19699999999999998,0.23199999999999998,0.272 +2015-06-12 03:00:00,0.19699999999999998,0.23199999999999998,0.272 +2015-06-12 04:00:00,0.19699999999999998,0.23199999999999998,0.272 +2015-06-12 05:00:00,0.19699999999999998,0.23199999999999998,0.272 +2015-06-12 06:00:00,0.19699999999999998,0.23199999999999998,0.272 +2015-06-12 07:00:00,0.19699999999999998,0.23199999999999998,0.272 +2015-06-12 08:00:00,0.19699999999999998,0.231,0.272 +2015-06-12 09:00:00,0.19699999999999998,0.23,0.272 +2015-06-12 10:00:00,0.19699999999999998,0.23,0.272 +2015-06-12 11:00:00,0.19699999999999998,0.23,0.272 +2015-06-12 12:00:00,0.19699999999999998,0.23,0.272 +2015-06-12 13:00:00,0.198,0.23,0.271 +2015-06-12 14:00:00,0.198,0.23,0.271 +2015-06-12 15:00:00,0.198,0.23,0.27 +2015-06-12 16:00:00,0.198,0.231,0.27 +2015-06-12 17:00:00,0.198,0.23199999999999998,0.27 +2015-06-12 18:00:00,0.198,0.23199999999999998,0.27 +2015-06-12 19:00:00,0.198,0.233,0.27 +2015-06-12 20:00:00,0.198,0.23399999999999999,0.27 +2015-06-12 21:00:00,0.19899999999999998,0.23399999999999999,0.27 +2015-06-12 22:00:00,0.198,0.23399999999999999,0.27 +2015-06-12 23:00:00,0.198,0.23399999999999999,0.27 +2015-06-13 00:00:00,0.198,0.23399999999999999,0.27 +2015-06-13 01:00:00,0.198,0.235,0.27 +2015-06-13 02:00:00,0.198,0.235,0.27 +2015-06-13 03:00:00,0.198,0.23600000000000002,0.27 +2015-06-13 04:00:00,0.198,0.23600000000000002,0.27 +2015-06-13 05:00:00,0.198,0.23600000000000002,0.271 +2015-06-13 06:00:00,0.19699999999999998,0.23600000000000002,0.271 +2015-06-13 07:00:00,0.198,0.23600000000000002,0.271 +2015-06-13 08:00:00,0.198,0.23600000000000002,0.271 +2015-06-13 09:00:00,0.198,0.23600000000000002,0.271 +2015-06-13 10:00:00,0.198,0.23600000000000002,0.271 +2015-06-13 11:00:00,0.198,0.235,0.27 +2015-06-13 12:00:00,0.198,0.235,0.27 +2015-06-13 13:00:00,0.198,0.23399999999999999,0.27 +2015-06-13 14:00:00,0.198,0.23399999999999999,0.27 +2015-06-13 15:00:00,0.198,0.23399999999999999,0.27 +2015-06-13 16:00:00,0.198,0.23399999999999999,0.27 +2015-06-13 17:00:00,0.198,0.23399999999999999,0.26899999999999996 +2015-06-13 18:00:00,0.198,0.23199999999999998,0.26899999999999996 +2015-06-13 19:00:00,0.198,0.23199999999999998,0.26899999999999996 +2015-06-13 20:00:00,0.198,0.23199999999999998,0.26899999999999996 +2015-06-13 21:00:00,0.198,0.233,0.26899999999999996 +2015-06-13 22:00:00,0.198,0.23399999999999999,0.26899999999999996 +2015-06-13 23:00:00,0.19699999999999998,0.23399999999999999,0.26899999999999996 +2015-06-14 00:00:00,0.19699999999999998,0.23399999999999999,0.26899999999999996 +2015-06-14 01:00:00,0.19699999999999998,0.23399999999999999,0.26899999999999996 +2015-06-14 02:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 03:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 04:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 05:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 06:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 07:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 08:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 09:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 10:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 11:00:00,0.196,0.23399999999999999,0.26899999999999996 +2015-06-14 12:00:00,0.196,0.23399999999999999,0.268 +2015-06-14 13:00:00,0.196,0.23399999999999999,0.268 +2015-06-14 14:00:00,0.196,0.23399999999999999,0.268 +2015-06-14 15:00:00,0.196,0.235,0.267 +2015-06-14 16:00:00,0.196,0.235,0.267 +2015-06-14 17:00:00,0.196,0.235,0.267 +2015-06-14 18:00:00,0.196,0.235,0.267 +2015-06-14 19:00:00,0.196,0.235,0.266 +2015-06-14 20:00:00,0.196,0.235,0.266 +2015-06-14 21:00:00,0.196,0.235,0.266 +2015-06-14 22:00:00,0.196,0.23600000000000002,0.266 +2015-06-14 23:00:00,0.196,0.23600000000000002,0.266 +2015-06-15 00:00:00,0.196,0.23600000000000002,0.266 +2015-06-15 01:00:00,0.196,0.23600000000000002,0.267 +2015-06-15 02:00:00,0.195,0.23600000000000002,0.266 +2015-06-15 03:00:00,0.195,0.23600000000000002,0.266 +2015-06-15 04:00:00,0.195,0.23600000000000002,0.266 +2015-06-15 05:00:00,0.195,0.23600000000000002,0.267 +2015-06-15 06:00:00,0.195,0.23600000000000002,0.267 +2015-06-15 07:00:00,0.195,0.235,0.267 +2015-06-15 08:00:00,0.195,0.23600000000000002,0.267 +2015-06-15 09:00:00,0.195,0.235,0.267 +2015-06-15 10:00:00,0.195,0.235,0.266 +2015-06-15 11:00:00,0.195,0.23399999999999999,0.266 +2015-06-15 12:00:00,0.195,0.23399999999999999,0.266 +2015-06-15 13:00:00,0.195,0.23399999999999999,0.266 +2015-06-15 14:00:00,0.195,0.23399999999999999,0.266 +2015-06-15 15:00:00,0.195,0.23399999999999999,0.265 +2015-06-15 16:00:00,0.195,0.23399999999999999,0.265 +2015-06-15 17:00:00,0.195,0.23399999999999999,0.265 +2015-06-15 18:00:00,0.195,0.235,0.265 +2015-06-15 19:00:00,0.195,0.23600000000000002,0.265 +2015-06-15 20:00:00,0.195,0.23399999999999999,0.265 +2015-06-15 21:00:00,0.195,0.235,0.265 +2015-06-15 22:00:00,0.19399999999999998,0.23199999999999998,0.265 +2015-06-15 23:00:00,0.19399999999999998,0.23199999999999998,0.265 +2015-06-16 00:00:00,0.19399999999999998,0.233,0.265 +2015-06-16 01:00:00,0.19399999999999998,0.23399999999999999,0.265 +2015-06-16 02:00:00,0.19399999999999998,0.23399999999999999,0.265 +2015-06-16 03:00:00,0.19399999999999998,0.23399999999999999,0.265 +2015-06-16 04:00:00,0.19399999999999998,0.23399999999999999,0.265 +2015-06-16 05:00:00,0.193,0.23399999999999999,0.265 +2015-06-16 06:00:00,0.193,0.23399999999999999,0.265 +2015-06-16 07:00:00,0.193,0.235,0.265 +2015-06-16 08:00:00,0.193,0.235,0.265 +2015-06-16 09:00:00,0.193,0.23600000000000002,0.265 +2015-06-16 10:00:00,0.193,0.23399999999999999,0.265 +2015-06-16 11:00:00,0.193,0.233,0.264 +2015-06-16 12:00:00,0.193,0.23199999999999998,0.264 +2015-06-16 13:00:00,0.193,0.233,0.264 +2015-06-16 14:00:00,0.193,0.233,0.263 +2015-06-16 15:00:00,0.19399999999999998,0.23399999999999999,0.263 +2015-06-16 16:00:00,0.19399999999999998,0.23399999999999999,0.263 +2015-06-16 17:00:00,0.19399999999999998,0.23399999999999999,0.263 +2015-06-16 18:00:00,0.19399999999999998,0.23399999999999999,0.263 +2015-06-16 19:00:00,0.19399999999999998,0.23600000000000002,0.263 +2015-06-16 20:00:00,0.193,0.24600000000000002,0.263 +2015-06-16 21:00:00,0.193,0.243,0.263 +2015-06-16 22:00:00,0.193,0.242,0.263 +2015-06-16 23:00:00,0.193,0.242,0.263 +2015-06-17 00:00:00,0.192,0.247,0.263 +2015-06-17 01:00:00,0.192,0.258,0.263 +2015-06-17 02:00:00,0.191,0.257,0.262 +2015-06-17 03:00:00,0.191,0.258,0.262 +2015-06-17 04:00:00,0.191,0.261,0.262 +2015-06-17 05:00:00,0.191,0.261,0.262 +2015-06-17 06:00:00,0.191,0.261,0.262 +2015-06-17 07:00:00,0.191,0.259,0.262 +2015-06-17 08:00:00,0.191,0.259,0.262 +2015-06-17 09:00:00,0.191,0.259,0.262 +2015-06-17 10:00:00,0.191,0.259,0.262 +2015-06-17 11:00:00,0.191,0.259,0.262 +2015-06-17 12:00:00,0.191,0.259,0.262 +2015-06-17 13:00:00,0.192,0.259,0.261 +2015-06-17 14:00:00,0.192,0.256,0.261 +2015-06-17 15:00:00,0.192,0.261,0.261 +2015-06-17 16:00:00,0.192,0.266,0.26 +2015-06-17 17:00:00,0.192,0.267,0.26 +2015-06-17 18:00:00,0.192,0.266,0.26 +2015-06-17 19:00:00,0.192,0.266,0.26 +2015-06-17 20:00:00,0.192,0.266,0.26 +2015-06-17 21:00:00,0.192,0.266,0.26 +2015-06-17 22:00:00,0.192,0.265,0.26 +2015-06-17 23:00:00,0.192,0.264,0.26 +2015-06-18 00:00:00,0.192,0.264,0.26 +2015-06-18 01:00:00,0.191,0.264,0.26 +2015-06-18 02:00:00,0.192,0.264,0.26 +2015-06-18 03:00:00,0.192,0.264,0.26 +2015-06-18 04:00:00,0.192,0.264,0.26 +2015-06-18 05:00:00,0.193,0.264,0.26 +2015-06-18 06:00:00,0.193,0.264,0.262 +2015-06-18 07:00:00,0.193,0.264,0.264 +2015-06-18 08:00:00,0.204,0.263,0.264 +2015-06-18 09:00:00,0.201,0.263,0.264 +2015-06-18 10:00:00,0.201,0.263,0.264 +2015-06-18 11:00:00,0.2,0.263,0.264 +2015-06-18 12:00:00,0.2,0.263,0.263 +2015-06-18 13:00:00,0.2,0.263,0.262 +2015-06-18 14:00:00,0.19899999999999998,0.263,0.262 +2015-06-18 15:00:00,0.19899999999999998,0.263,0.261 +2015-06-18 16:00:00,0.19899999999999998,0.264,0.261 +2015-06-18 17:00:00,0.19899999999999998,0.264,0.261 +2015-06-18 18:00:00,0.198,0.264,0.261 +2015-06-18 19:00:00,0.198,0.264,0.261 +2015-06-18 20:00:00,0.198,0.264,0.261 +2015-06-18 21:00:00,0.198,0.264,0.261 +2015-06-18 22:00:00,0.198,0.264,0.261 +2015-06-18 23:00:00,0.198,0.264,0.261 +2015-06-19 00:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 01:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 02:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 03:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 04:00:00,0.196,0.264,0.261 +2015-06-19 05:00:00,0.196,0.264,0.261 +2015-06-19 06:00:00,0.196,0.264,0.261 +2015-06-19 07:00:00,0.196,0.264,0.261 +2015-06-19 08:00:00,0.196,0.264,0.261 +2015-06-19 09:00:00,0.196,0.264,0.261 +2015-06-19 10:00:00,0.196,0.264,0.261 +2015-06-19 11:00:00,0.196,0.264,0.261 +2015-06-19 12:00:00,0.196,0.264,0.261 +2015-06-19 13:00:00,0.196,0.264,0.261 +2015-06-19 14:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 15:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 16:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 17:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 18:00:00,0.19699999999999998,0.263,0.261 +2015-06-19 19:00:00,0.19699999999999998,0.263,0.261 +2015-06-19 20:00:00,0.19699999999999998,0.263,0.261 +2015-06-19 21:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 22:00:00,0.19699999999999998,0.264,0.261 +2015-06-19 23:00:00,0.19699999999999998,0.264,0.261 +2015-06-20 00:00:00,0.19699999999999998,0.264,0.261 +2015-06-20 01:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 02:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 03:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 04:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 05:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 06:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 07:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 08:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 09:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 10:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 11:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 12:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 13:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 14:00:00,0.19699999999999998,0.264,0.262 +2015-06-20 15:00:00,0.19699999999999998,0.263,0.262 +2015-06-20 16:00:00,0.19699999999999998,0.263,0.262 +2015-06-20 17:00:00,0.19699999999999998,0.262,0.262 +2015-06-20 18:00:00,0.19699999999999998,0.262,0.261 +2015-06-20 19:00:00,0.19699999999999998,0.263,0.261 +2015-06-20 20:00:00,0.19699999999999998,0.263,0.261 +2015-06-20 21:00:00,0.19699999999999998,0.263,0.261 +2015-06-20 22:00:00,0.19699999999999998,0.263,0.261 +2015-06-20 23:00:00,0.19699999999999998,0.263,0.261 +2015-06-21 00:00:00,0.196,0.263,0.261 +2015-06-21 01:00:00,0.196,0.263,0.261 +2015-06-21 02:00:00,0.196,0.263,0.261 +2015-06-21 03:00:00,0.196,0.263,0.262 +2015-06-21 04:00:00,0.196,0.263,0.262 +2015-06-21 05:00:00,0.196,0.263,0.262 +2015-06-21 06:00:00,0.196,0.263,0.262 +2015-06-21 07:00:00,0.196,0.263,0.262 +2015-06-21 08:00:00,0.196,0.263,0.263 +2015-06-21 09:00:00,0.19699999999999998,0.263,0.263 +2015-06-21 10:00:00,0.19699999999999998,0.263,0.262 +2015-06-21 11:00:00,0.19699999999999998,0.262,0.262 +2015-06-21 12:00:00,0.19699999999999998,0.259,0.262 +2015-06-21 13:00:00,0.19699999999999998,0.259,0.262 +2015-06-21 14:00:00,0.19699999999999998,0.261,0.262 +2015-06-21 15:00:00,0.19699999999999998,0.262,0.262 +2015-06-21 16:00:00,0.19699999999999998,0.263,0.262 +2015-06-21 17:00:00,0.198,0.263,0.262 +2015-06-21 18:00:00,0.198,0.263,0.262 +2015-06-21 19:00:00,0.214,0.263,0.265 +2015-06-21 20:00:00,0.213,0.263,0.266 +2015-06-21 21:00:00,0.21100000000000002,0.263,0.266 +2015-06-21 22:00:00,0.21,0.263,0.266 +2015-06-21 23:00:00,0.209,0.263,0.266 +2015-06-22 00:00:00,0.20800000000000002,0.263,0.266 +2015-06-22 01:00:00,0.207,0.264,0.266 +2015-06-22 02:00:00,0.207,0.264,0.266 +2015-06-22 03:00:00,0.207,0.264,0.266 +2015-06-22 04:00:00,0.20600000000000002,0.264,0.266 +2015-06-22 05:00:00,0.20600000000000002,0.264,0.267 +2015-06-22 06:00:00,0.205,0.264,0.267 +2015-06-22 07:00:00,0.205,0.263,0.267 +2015-06-22 08:00:00,0.20600000000000002,0.263,0.267 +2015-06-22 09:00:00,0.20600000000000002,0.263,0.266 +2015-06-22 10:00:00,0.20600000000000002,0.263,0.266 +2015-06-22 11:00:00,0.20600000000000002,0.263,0.267 +2015-06-22 12:00:00,0.207,0.263,0.266 +2015-06-22 13:00:00,0.207,0.263,0.265 +2015-06-22 14:00:00,0.207,0.262,0.265 +2015-06-22 15:00:00,0.207,0.261,0.265 +2015-06-22 16:00:00,0.231,0.261,0.287 +2015-06-22 17:00:00,0.243,0.261,0.287 +2015-06-22 18:00:00,0.24,0.261,0.27699999999999997 +2015-06-22 19:00:00,0.23800000000000002,0.261,0.275 +2015-06-22 20:00:00,0.23600000000000002,0.261,0.275 +2015-06-22 21:00:00,0.254,0.261,0.29 +2015-06-22 22:00:00,0.266,0.261,0.294 +2015-06-22 23:00:00,0.266,0.261,0.285 +2015-06-23 00:00:00,0.278,0.261,0.302 +2015-06-23 01:00:00,0.275,0.261,0.309 +2015-06-23 02:00:00,0.26899999999999996,0.262,0.301 +2015-06-23 03:00:00,0.266,0.262,0.293 +2015-06-23 04:00:00,0.263,0.262,0.289 +2015-06-23 05:00:00,0.262,0.262,0.287 +2015-06-23 06:00:00,0.26,0.262,0.285 +2015-06-23 07:00:00,0.259,0.262,0.284 +2015-06-23 08:00:00,0.258,0.262,0.28300000000000003 +2015-06-23 09:00:00,0.259,0.261,0.282 +2015-06-23 10:00:00,0.26,0.261,0.281 +2015-06-23 11:00:00,0.264,0.262,0.28300000000000003 +2015-06-23 12:00:00,0.275,0.262,0.282 +2015-06-23 13:00:00,0.275,0.261,0.281 +2015-06-23 14:00:00,0.278,0.261,0.28 +2015-06-23 15:00:00,0.27699999999999997,0.261,0.27899999999999997 +2015-06-23 16:00:00,0.275,0.261,0.27899999999999997 +2015-06-23 17:00:00,0.275,0.259,0.27899999999999997 +2015-06-23 18:00:00,0.27399999999999997,0.259,0.27899999999999997 +2015-06-23 19:00:00,0.273,0.259,0.278 +2015-06-23 20:00:00,0.272,0.259,0.278 +2015-06-23 21:00:00,0.271,0.259,0.278 +2015-06-23 22:00:00,0.27,0.259,0.278 +2015-06-23 23:00:00,0.26899999999999996,0.259,0.278 +2015-06-24 00:00:00,0.26899999999999996,0.259,0.278 +2015-06-24 01:00:00,0.268,0.261,0.278 +2015-06-24 02:00:00,0.268,0.261,0.278 +2015-06-24 03:00:00,0.267,0.26,0.278 +2015-06-24 04:00:00,0.266,0.259,0.278 +2015-06-24 05:00:00,0.265,0.259,0.278 +2015-06-24 06:00:00,0.265,0.259,0.278 +2015-06-24 07:00:00,0.264,0.259,0.278 +2015-06-24 08:00:00,0.264,0.259,0.278 +2015-06-24 09:00:00,0.264,0.259,0.27699999999999997 +2015-06-24 10:00:00,0.264,0.259,0.27699999999999997 +2015-06-24 11:00:00,0.263,0.259,0.27699999999999997 +2015-06-24 12:00:00,0.263,0.259,0.27699999999999997 +2015-06-24 13:00:00,0.263,0.259,0.27699999999999997 +2015-06-24 14:00:00,0.262,0.259,0.276 +2015-06-24 15:00:00,0.262,0.258,0.276 +2015-06-24 16:00:00,0.261,0.258,0.276 +2015-06-24 17:00:00,0.26,0.256,0.275 +2015-06-24 18:00:00,0.259,0.256,0.275 +2015-06-24 19:00:00,0.259,0.256,0.275 +2015-06-24 20:00:00,0.259,0.256,0.275 +2015-06-24 21:00:00,0.258,0.256,0.275 +2015-06-24 22:00:00,0.258,0.256,0.275 +2015-06-24 23:00:00,0.258,0.256,0.275 +2015-06-25 00:00:00,0.258,0.256,0.275 +2015-06-25 01:00:00,0.258,0.257,0.275 +2015-06-25 02:00:00,0.257,0.258,0.275 +2015-06-25 03:00:00,0.257,0.258,0.275 +2015-06-25 04:00:00,0.257,0.258,0.275 +2015-06-25 05:00:00,0.257,0.257,0.275 +2015-06-25 06:00:00,0.257,0.257,0.275 +2015-06-25 07:00:00,0.256,0.256,0.275 +2015-06-25 08:00:00,0.256,0.256,0.276 +2015-06-25 09:00:00,0.255,0.256,0.276 +2015-06-25 10:00:00,0.255,0.256,0.276 +2015-06-25 11:00:00,0.254,0.256,0.275 +2015-06-25 12:00:00,0.253,0.256,0.275 +2015-06-25 13:00:00,0.252,0.256,0.275 +2015-06-25 14:00:00,0.25,0.254,0.27399999999999997 +2015-06-25 15:00:00,0.249,0.254,0.27399999999999997 +2015-06-25 16:00:00,0.248,0.253,0.27399999999999997 +2015-06-25 17:00:00,0.248,0.253,0.27399999999999997 +2015-06-25 18:00:00,0.247,0.253,0.27399999999999997 +2015-06-25 19:00:00,0.24600000000000002,0.253,0.27399999999999997 +2015-06-25 20:00:00,0.24600000000000002,0.253,0.273 +2015-06-25 21:00:00,0.24600000000000002,0.253,0.273 +2015-06-25 22:00:00,0.24600000000000002,0.253,0.273 +2015-06-25 23:00:00,0.24600000000000002,0.253,0.273 +2015-06-26 00:00:00,0.24600000000000002,0.253,0.273 +2015-06-26 01:00:00,0.24600000000000002,0.253,0.27399999999999997 +2015-06-26 02:00:00,0.245,0.253,0.273 +2015-06-26 03:00:00,0.245,0.253,0.27399999999999997 +2015-06-26 04:00:00,0.245,0.253,0.27399999999999997 +2015-06-26 05:00:00,0.245,0.253,0.27399999999999997 +2015-06-26 06:00:00,0.245,0.253,0.27399999999999997 +2015-06-26 07:00:00,0.245,0.253,0.27399999999999997 +2015-06-26 08:00:00,0.245,0.253,0.27399999999999997 +2015-06-26 09:00:00,0.244,0.253,0.27399999999999997 +2015-06-26 10:00:00,0.244,0.253,0.27399999999999997 +2015-06-26 11:00:00,0.242,0.253,0.27399999999999997 +2015-06-26 12:00:00,0.24100000000000002,0.253,0.273 +2015-06-26 13:00:00,0.239,0.253,0.273 +2015-06-26 14:00:00,0.23800000000000002,0.251,0.273 +2015-06-26 15:00:00,0.237,0.251,0.272 +2015-06-26 16:00:00,0.23600000000000002,0.249,0.272 +2015-06-26 17:00:00,0.23600000000000002,0.249,0.272 +2015-06-26 18:00:00,0.23600000000000002,0.249,0.272 +2015-06-26 19:00:00,0.23600000000000002,0.249,0.272 +2015-06-26 20:00:00,0.23600000000000002,0.249,0.272 +2015-06-26 21:00:00,0.23600000000000002,0.249,0.272 +2015-06-26 22:00:00,0.23600000000000002,0.249,0.272 +2015-06-26 23:00:00,0.23600000000000002,0.249,0.273 +2015-06-27 00:00:00,0.23600000000000002,0.249,0.273 +2015-06-27 01:00:00,0.23600000000000002,0.249,0.273 +2015-06-27 02:00:00,0.23600000000000002,0.249,0.273 +2015-06-27 03:00:00,0.23600000000000002,0.249,0.273 +2015-06-27 04:00:00,0.23600000000000002,0.249,0.273 +2015-06-27 05:00:00,0.23600000000000002,0.249,0.273 +2015-06-27 06:00:00,0.23600000000000002,0.249,0.27399999999999997 +2015-06-27 07:00:00,0.235,0.249,0.275 +2015-06-27 08:00:00,0.23600000000000002,0.249,0.27699999999999997 +2015-06-27 09:00:00,0.245,0.249,0.278 +2015-06-27 10:00:00,0.248,0.249,0.27699999999999997 +2015-06-27 11:00:00,0.25,0.249,0.27699999999999997 +2015-06-27 12:00:00,0.252,0.249,0.276 +2015-06-27 13:00:00,0.252,0.249,0.275 +2015-06-27 14:00:00,0.251,0.247,0.275 +2015-06-27 15:00:00,0.25,0.247,0.27399999999999997 +2015-06-27 16:00:00,0.248,0.247,0.27399999999999997 +2015-06-27 17:00:00,0.247,0.247,0.27399999999999997 +2015-06-27 18:00:00,0.24600000000000002,0.247,0.27399999999999997 +2015-06-27 19:00:00,0.245,0.247,0.27399999999999997 +2015-06-27 20:00:00,0.245,0.247,0.27399999999999997 +2015-06-27 21:00:00,0.245,0.247,0.27399999999999997 +2015-06-27 22:00:00,0.245,0.247,0.27399999999999997 +2015-06-27 23:00:00,0.245,0.247,0.27399999999999997 +2015-06-28 00:00:00,0.245,0.247,0.27399999999999997 +2015-06-28 01:00:00,0.244,0.248,0.27399999999999997 +2015-06-28 02:00:00,0.244,0.248,0.27399999999999997 +2015-06-28 03:00:00,0.244,0.248,0.27399999999999997 +2015-06-28 04:00:00,0.244,0.248,0.27399999999999997 +2015-06-28 05:00:00,0.244,0.248,0.27399999999999997 +2015-06-28 06:00:00,0.244,0.248,0.27399999999999997 +2015-06-28 07:00:00,0.244,0.248,0.27399999999999997 +2015-06-28 08:00:00,0.243,0.247,0.275 +2015-06-28 09:00:00,0.243,0.247,0.27399999999999997 +2015-06-28 10:00:00,0.242,0.247,0.27399999999999997 +2015-06-28 11:00:00,0.24100000000000002,0.247,0.273 +2015-06-28 12:00:00,0.239,0.247,0.273 +2015-06-28 13:00:00,0.23800000000000002,0.247,0.273 +2015-06-28 14:00:00,0.237,0.24600000000000002,0.272 +2015-06-28 15:00:00,0.23600000000000002,0.24600000000000002,0.272 +2015-06-28 16:00:00,0.23600000000000002,0.24600000000000002,0.272 +2015-06-28 17:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-28 18:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-28 19:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-28 20:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-28 21:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-28 22:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-28 23:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 00:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 01:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 02:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 03:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 04:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 05:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 06:00:00,0.23399999999999999,0.24600000000000002,0.273 +2015-06-29 07:00:00,0.23399999999999999,0.24600000000000002,0.273 +2015-06-29 08:00:00,0.23399999999999999,0.24600000000000002,0.273 +2015-06-29 09:00:00,0.23399999999999999,0.24600000000000002,0.272 +2015-06-29 10:00:00,0.233,0.24600000000000002,0.272 +2015-06-29 11:00:00,0.23199999999999998,0.24600000000000002,0.272 +2015-06-29 12:00:00,0.231,0.245,0.272 +2015-06-29 13:00:00,0.23,0.244,0.272 +2015-06-29 14:00:00,0.22899999999999998,0.244,0.271 +2015-06-29 15:00:00,0.228,0.242,0.272 +2015-06-29 16:00:00,0.228,0.242,0.271 +2015-06-29 17:00:00,0.22699999999999998,0.242,0.271 +2015-06-29 18:00:00,0.22699999999999998,0.242,0.271 +2015-06-29 19:00:00,0.226,0.242,0.271 +2015-06-29 20:00:00,0.226,0.242,0.271 +2015-06-29 21:00:00,0.22699999999999998,0.242,0.271 +2015-06-29 22:00:00,0.226,0.242,0.271 +2015-06-29 23:00:00,0.226,0.242,0.271 +2015-06-30 00:00:00,0.226,0.242,0.271 +2015-06-30 01:00:00,0.226,0.242,0.271 +2015-06-30 02:00:00,0.226,0.242,0.271 +2015-06-30 03:00:00,0.226,0.242,0.271 +2015-06-30 04:00:00,0.226,0.242,0.271 +2015-06-30 05:00:00,0.226,0.242,0.272 +2015-06-30 06:00:00,0.225,0.242,0.272 +2015-06-30 07:00:00,0.225,0.242,0.272 +2015-06-30 08:00:00,0.226,0.242,0.272 +2015-06-30 09:00:00,0.225,0.242,0.272 +2015-06-30 10:00:00,0.223,0.242,0.271 +2015-06-30 11:00:00,0.222,0.242,0.271 +2015-06-30 12:00:00,0.221,0.242,0.271 +2015-06-30 13:00:00,0.221,0.242,0.271 +2015-06-30 14:00:00,0.22,0.24100000000000002,0.27 +2015-06-30 15:00:00,0.21899999999999997,0.24100000000000002,0.27 +2015-06-30 16:00:00,0.21899999999999997,0.24100000000000002,0.27 +2015-06-30 17:00:00,0.218,0.24100000000000002,0.27 +2015-06-30 18:00:00,0.218,0.24100000000000002,0.26899999999999996 +2015-06-30 19:00:00,0.217,0.24100000000000002,0.26899999999999996 +2015-06-30 20:00:00,0.217,0.24100000000000002,0.26899999999999996 +2015-06-30 21:00:00,0.218,0.24100000000000002,0.26899999999999996 +2015-06-30 22:00:00,0.218,0.24100000000000002,0.26899999999999996 +2015-06-30 23:00:00,0.217,0.24100000000000002,0.26899999999999996 +2015-07-01 00:00:00,0.217,0.24100000000000002,0.26899999999999996 +2015-07-01 01:00:00,0.217,0.24100000000000002,0.26899999999999996 +2015-07-01 02:00:00,0.217,0.24100000000000002,0.26899999999999996 +2015-07-01 03:00:00,0.217,0.24100000000000002,0.26899999999999996 +2015-07-01 04:00:00,0.217,0.24100000000000002,0.27 +2015-07-01 05:00:00,0.217,0.24,0.27 +2015-07-01 06:00:00,0.217,0.239,0.27 +2015-07-01 07:00:00,0.217,0.239,0.27 +2015-07-01 08:00:00,0.217,0.239,0.27 +2015-07-01 09:00:00,0.21600000000000003,0.239,0.27 +2015-07-01 10:00:00,0.21600000000000003,0.239,0.27 +2015-07-01 11:00:00,0.214,0.239,0.26899999999999996 +2015-07-01 12:00:00,0.214,0.239,0.26899999999999996 +2015-07-01 13:00:00,0.213,0.23800000000000002,0.26899999999999996 +2015-07-01 14:00:00,0.213,0.237,0.26899999999999996 +2015-07-01 15:00:00,0.212,0.237,0.268 +2015-07-01 16:00:00,0.212,0.237,0.268 +2015-07-01 17:00:00,0.21100000000000002,0.23600000000000002,0.268 +2015-07-01 18:00:00,0.21100000000000002,0.23600000000000002,0.268 +2015-07-01 19:00:00,0.21100000000000002,0.23600000000000002,0.268 +2015-07-01 20:00:00,0.21100000000000002,0.237,0.268 +2015-07-01 21:00:00,0.21100000000000002,0.237,0.268 +2015-07-01 22:00:00,0.21100000000000002,0.237,0.268 +2015-07-01 23:00:00,0.21100000000000002,0.237,0.268 +2015-07-02 00:00:00,0.21100000000000002,0.237,0.268 +2015-07-02 01:00:00,0.21100000000000002,0.237,0.268 +2015-07-02 02:00:00,0.21100000000000002,0.237,0.268 +2015-07-02 03:00:00,0.21100000000000002,0.237,0.268 +2015-07-02 04:00:00,0.21100000000000002,0.237,0.268 +2015-07-02 05:00:00,0.21100000000000002,0.23600000000000002,0.268 +2015-07-02 06:00:00,0.21100000000000002,0.23600000000000002,0.268 +2015-07-02 07:00:00,0.21,0.23600000000000002,0.268 +2015-07-02 08:00:00,0.21,0.23600000000000002,0.26899999999999996 +2015-07-02 09:00:00,0.21,0.23600000000000002,0.268 +2015-07-02 10:00:00,0.21,0.23600000000000002,0.268 +2015-07-02 11:00:00,0.209,0.23600000000000002,0.268 +2015-07-02 12:00:00,0.20800000000000002,0.23600000000000002,0.267 +2015-07-02 13:00:00,0.20800000000000002,0.23600000000000002,0.268 +2015-07-02 14:00:00,0.207,0.23600000000000002,0.268 +2015-07-02 15:00:00,0.207,0.23600000000000002,0.268 +2015-07-02 16:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-02 17:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-02 18:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-02 19:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-02 20:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-02 21:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-02 22:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-02 23:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-03 00:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-03 01:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-03 02:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-03 03:00:00,0.20600000000000002,0.23600000000000002,0.267 +2015-07-03 04:00:00,0.20600000000000002,0.23600000000000002,0.268 +2015-07-03 05:00:00,0.20600000000000002,0.23600000000000002,0.268 +2015-07-03 06:00:00,0.20600000000000002,0.23600000000000002,0.268 +2015-07-03 07:00:00,0.20600000000000002,0.235,0.268 +2015-07-03 08:00:00,0.20600000000000002,0.235,0.268 +2015-07-03 09:00:00,0.205,0.235,0.268 +2015-07-03 10:00:00,0.204,0.235,0.267 +2015-07-03 11:00:00,0.204,0.235,0.267 +2015-07-03 12:00:00,0.204,0.235,0.267 +2015-07-03 13:00:00,0.204,0.235,0.267 +2015-07-03 14:00:00,0.204,0.235,0.266 +2015-07-03 15:00:00,0.204,0.235,0.266 +2015-07-03 16:00:00,0.203,0.235,0.266 +2015-07-03 17:00:00,0.203,0.23399999999999999,0.266 +2015-07-03 18:00:00,0.203,0.23399999999999999,0.266 +2015-07-03 19:00:00,0.203,0.23399999999999999,0.266 +2015-07-03 20:00:00,0.203,0.23399999999999999,0.266 +2015-07-03 21:00:00,0.203,0.23399999999999999,0.266 +2015-07-03 22:00:00,0.203,0.23399999999999999,0.266 +2015-07-03 23:00:00,0.203,0.235,0.266 +2015-07-04 00:00:00,0.203,0.235,0.266 +2015-07-04 01:00:00,0.203,0.235,0.266 +2015-07-04 02:00:00,0.203,0.23399999999999999,0.266 +2015-07-04 03:00:00,0.20199999999999999,0.23399999999999999,0.266 +2015-07-04 04:00:00,0.20199999999999999,0.23399999999999999,0.266 +2015-07-04 05:00:00,0.20199999999999999,0.23399999999999999,0.266 +2015-07-04 06:00:00,0.20199999999999999,0.23399999999999999,0.266 +2015-07-04 07:00:00,0.20199999999999999,0.23399999999999999,0.266 +2015-07-04 08:00:00,0.20199999999999999,0.23399999999999999,0.267 +2015-07-04 09:00:00,0.20199999999999999,0.23399999999999999,0.266 +2015-07-04 10:00:00,0.201,0.233,0.266 +2015-07-04 11:00:00,0.201,0.23199999999999998,0.266 +2015-07-04 12:00:00,0.201,0.23199999999999998,0.266 +2015-07-04 13:00:00,0.201,0.23199999999999998,0.265 +2015-07-04 14:00:00,0.201,0.23199999999999998,0.265 +2015-07-04 15:00:00,0.201,0.23199999999999998,0.265 +2015-07-04 16:00:00,0.201,0.23199999999999998,0.264 +2015-07-04 17:00:00,0.2,0.23199999999999998,0.264 +2015-07-04 18:00:00,0.2,0.23199999999999998,0.264 +2015-07-04 19:00:00,0.2,0.23199999999999998,0.264 +2015-07-04 20:00:00,0.2,0.23199999999999998,0.264 +2015-07-04 21:00:00,0.2,0.23199999999999998,0.264 +2015-07-04 22:00:00,0.2,0.23199999999999998,0.264 +2015-07-04 23:00:00,0.2,0.23199999999999998,0.264 +2015-07-05 00:00:00,0.2,0.23199999999999998,0.264 +2015-07-05 01:00:00,0.2,0.23199999999999998,0.265 +2015-07-05 02:00:00,0.2,0.23199999999999998,0.265 +2015-07-05 03:00:00,0.19899999999999998,0.23199999999999998,0.265 +2015-07-05 04:00:00,0.19899999999999998,0.23199999999999998,0.265 +2015-07-05 05:00:00,0.19899999999999998,0.23199999999999998,0.265 +2015-07-05 06:00:00,0.19899999999999998,0.23199999999999998,0.265 +2015-07-05 07:00:00,0.19899999999999998,0.23199999999999998,0.265 +2015-07-05 08:00:00,0.19899999999999998,0.23199999999999998,0.265 +2015-07-05 09:00:00,0.19899999999999998,0.23199999999999998,0.265 +2015-07-05 10:00:00,0.19899999999999998,0.231,0.264 +2015-07-05 11:00:00,0.19899999999999998,0.231,0.264 +2015-07-05 12:00:00,0.19899999999999998,0.231,0.264 +2015-07-05 13:00:00,0.19899999999999998,0.23,0.263 +2015-07-05 14:00:00,0.198,0.23,0.263 +2015-07-05 15:00:00,0.198,0.23,0.263 +2015-07-05 16:00:00,0.198,0.23,0.263 +2015-07-05 17:00:00,0.19899999999999998,0.23,0.264 +2015-07-05 18:00:00,0.19899999999999998,0.23,0.264 +2015-07-05 19:00:00,0.19899999999999998,0.23,0.263 +2015-07-05 20:00:00,0.19899999999999998,0.23,0.263 +2015-07-05 21:00:00,0.19899999999999998,0.23,0.263 +2015-07-05 22:00:00,0.19899999999999998,0.23,0.263 +2015-07-05 23:00:00,0.19899999999999998,0.23,0.264 +2015-07-06 00:00:00,0.19899999999999998,0.23,0.265 +2015-07-06 01:00:00,0.198,0.23,0.266 +2015-07-06 02:00:00,0.198,0.23,0.266 +2015-07-06 03:00:00,0.198,0.23,0.266 +2015-07-06 04:00:00,0.198,0.23,0.265 +2015-07-06 05:00:00,0.198,0.23,0.265 +2015-07-06 06:00:00,0.198,0.23,0.266 +2015-07-06 07:00:00,0.19699999999999998,0.23,0.266 +2015-07-06 08:00:00,0.198,0.23,0.265 +2015-07-06 09:00:00,0.198,0.23,0.264 +2015-07-06 10:00:00,0.198,0.23,0.263 +2015-07-06 11:00:00,0.19699999999999998,0.23,0.263 +2015-07-06 12:00:00,0.19699999999999998,0.23,0.263 +2015-07-06 13:00:00,0.19699999999999998,0.23,0.262 +2015-07-06 14:00:00,0.19699999999999998,0.23,0.262 +2015-07-06 15:00:00,0.19699999999999998,0.23,0.262 +2015-07-06 16:00:00,0.196,0.23,0.262 +2015-07-06 17:00:00,0.196,0.23,0.262 +2015-07-06 18:00:00,0.196,0.23,0.262 +2015-07-06 19:00:00,0.196,0.23,0.262 +2015-07-06 20:00:00,0.196,0.23,0.262 +2015-07-06 21:00:00,0.196,0.23,0.262 +2015-07-06 22:00:00,0.196,0.23,0.262 +2015-07-06 23:00:00,0.196,0.23,0.262 +2015-07-07 00:00:00,0.196,0.23,0.262 +2015-07-07 01:00:00,0.195,0.23,0.262 +2015-07-07 02:00:00,0.195,0.23,0.262 +2015-07-07 03:00:00,0.195,0.23,0.262 +2015-07-07 04:00:00,0.195,0.23,0.262 +2015-07-07 05:00:00,0.19399999999999998,0.23,0.262 +2015-07-07 06:00:00,0.196,0.23,0.262 +2015-07-07 07:00:00,0.196,0.23,0.262 +2015-07-07 08:00:00,0.196,0.23,0.262 +2015-07-07 09:00:00,0.196,0.23,0.262 +2015-07-07 10:00:00,0.196,0.23,0.262 +2015-07-07 11:00:00,0.196,0.23,0.261 +2015-07-07 12:00:00,0.196,0.23,0.261 +2015-07-07 13:00:00,0.196,0.23,0.261 +2015-07-07 14:00:00,0.196,0.23,0.26 +2015-07-07 15:00:00,0.196,0.23,0.26 +2015-07-07 16:00:00,0.19399999999999998,0.23600000000000002,0.26 +2015-07-07 17:00:00,0.19399999999999998,0.243,0.26 +2015-07-07 18:00:00,0.195,0.242,0.26 +2015-07-07 19:00:00,0.19399999999999998,0.242,0.26 +2015-07-07 20:00:00,0.195,0.242,0.26 +2015-07-07 21:00:00,0.196,0.242,0.26 +2015-07-07 22:00:00,0.19699999999999998,0.242,0.261 +2015-07-07 23:00:00,0.196,0.242,0.261 +2015-07-08 00:00:00,0.196,0.242,0.261 +2015-07-08 01:00:00,0.196,0.242,0.261 +2015-07-08 02:00:00,0.196,0.242,0.262 +2015-07-08 03:00:00,0.196,0.242,0.262 +2015-07-08 04:00:00,0.196,0.242,0.262 +2015-07-08 05:00:00,0.196,0.242,0.262 +2015-07-08 06:00:00,0.195,0.242,0.262 +2015-07-08 07:00:00,0.195,0.242,0.262 +2015-07-08 08:00:00,0.195,0.242,0.262 +2015-07-08 09:00:00,0.195,0.242,0.261 +2015-07-08 10:00:00,0.19399999999999998,0.242,0.26 +2015-07-08 11:00:00,0.19399999999999998,0.242,0.26 +2015-07-08 12:00:00,0.193,0.242,0.26 +2015-07-08 13:00:00,0.193,0.242,0.26 +2015-07-08 14:00:00,0.193,0.242,0.26 +2015-07-08 15:00:00,0.193,0.24100000000000002,0.26 +2015-07-08 16:00:00,0.193,0.24100000000000002,0.259 +2015-07-08 17:00:00,0.193,0.24100000000000002,0.259 +2015-07-08 18:00:00,0.193,0.24100000000000002,0.259 +2015-07-08 19:00:00,0.193,0.24100000000000002,0.259 +2015-07-08 20:00:00,0.193,0.24100000000000002,0.259 +2015-07-08 21:00:00,0.193,0.242,0.259 +2015-07-08 22:00:00,0.193,0.242,0.259 +2015-07-08 23:00:00,0.19399999999999998,0.243,0.259 +2015-07-09 00:00:00,0.195,0.244,0.261 +2015-07-09 01:00:00,0.195,0.244,0.261 +2015-07-09 02:00:00,0.19399999999999998,0.244,0.261 +2015-07-09 03:00:00,0.19399999999999998,0.244,0.261 +2015-07-09 04:00:00,0.19399999999999998,0.245,0.261 +2015-07-09 05:00:00,0.19399999999999998,0.244,0.261 +2015-07-09 06:00:00,0.19399999999999998,0.244,0.261 +2015-07-09 07:00:00,0.19399999999999998,0.244,0.26 +2015-07-09 08:00:00,0.193,0.244,0.26 +2015-07-09 09:00:00,0.193,0.244,0.259 +2015-07-09 10:00:00,0.192,0.244,0.259 +2015-07-09 11:00:00,0.192,0.243,0.259 +2015-07-09 12:00:00,0.192,0.242,0.259 +2015-07-09 13:00:00,0.192,0.242,0.259 +2015-07-09 14:00:00,0.192,0.242,0.259 +2015-07-09 15:00:00,0.192,0.23600000000000002,0.259 +2015-07-09 16:00:00,0.192,0.23600000000000002,0.259 +2015-07-09 17:00:00,0.192,0.23600000000000002,0.259 +2015-07-09 18:00:00,0.192,0.23600000000000002,0.258 +2015-07-09 19:00:00,0.192,0.235,0.258 +2015-07-09 20:00:00,0.192,0.235,0.258 +2015-07-09 21:00:00,0.191,0.23600000000000002,0.258 +2015-07-09 22:00:00,0.191,0.23600000000000002,0.258 +2015-07-09 23:00:00,0.191,0.23600000000000002,0.258 +2015-07-10 00:00:00,0.191,0.23600000000000002,0.259 +2015-07-10 01:00:00,0.191,0.23600000000000002,0.258 +2015-07-10 02:00:00,0.19,0.23600000000000002,0.259 +2015-07-10 03:00:00,0.19,0.237,0.259 +2015-07-10 04:00:00,0.19,0.237,0.259 +2015-07-10 05:00:00,0.18899999999999997,0.237,0.258 +2015-07-10 06:00:00,0.18899999999999997,0.237,0.258 +2015-07-10 07:00:00,0.18899999999999997,0.237,0.258 +2015-07-10 08:00:00,0.18899999999999997,0.237,0.259 +2015-07-10 09:00:00,0.18899999999999997,0.237,0.258 +2015-07-10 10:00:00,0.18899999999999997,0.237,0.258 +2015-07-10 11:00:00,0.18899999999999997,0.23600000000000002,0.258 +2015-07-10 12:00:00,0.18899999999999997,0.235,0.258 +2015-07-10 13:00:00,0.18899999999999997,0.23399999999999999,0.258 +2015-07-10 14:00:00,0.18899999999999997,0.235,0.257 +2015-07-10 15:00:00,0.18899999999999997,0.23399999999999999,0.257 +2015-07-10 16:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-10 17:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-10 18:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-10 19:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-10 20:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-10 21:00:00,0.18899999999999997,0.23199999999999998,0.256 +2015-07-10 22:00:00,0.18899999999999997,0.23199999999999998,0.256 +2015-07-10 23:00:00,0.18899999999999997,0.23199999999999998,0.256 +2015-07-11 00:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-11 01:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-11 02:00:00,0.18899999999999997,0.23199999999999998,0.257 +2015-07-11 03:00:00,0.188,0.231,0.257 +2015-07-11 04:00:00,0.188,0.231,0.257 +2015-07-11 05:00:00,0.188,0.23,0.257 +2015-07-11 06:00:00,0.188,0.23,0.257 +2015-07-11 07:00:00,0.188,0.23,0.257 +2015-07-11 08:00:00,0.188,0.23,0.257 +2015-07-11 09:00:00,0.188,0.23,0.257 +2015-07-11 10:00:00,0.188,0.23,0.256 +2015-07-11 11:00:00,0.188,0.22899999999999998,0.256 +2015-07-11 12:00:00,0.188,0.22899999999999998,0.256 +2015-07-11 13:00:00,0.18899999999999997,0.23,0.256 +2015-07-11 14:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-11 15:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-11 16:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-11 17:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-11 18:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-11 19:00:00,0.18899999999999997,0.22899999999999998,0.254 +2015-07-11 20:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-11 21:00:00,0.18899999999999997,0.22899999999999998,0.254 +2015-07-11 22:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-11 23:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-12 00:00:00,0.18899999999999997,0.22899999999999998,0.255 +2015-07-12 01:00:00,0.188,0.22899999999999998,0.255 +2015-07-12 02:00:00,0.188,0.22899999999999998,0.255 +2015-07-12 03:00:00,0.188,0.22899999999999998,0.255 +2015-07-12 04:00:00,0.188,0.22899999999999998,0.255 +2015-07-12 05:00:00,0.188,0.228,0.255 +2015-07-12 06:00:00,0.188,0.22899999999999998,0.255 +2015-07-12 07:00:00,0.188,0.22899999999999998,0.255 +2015-07-12 08:00:00,0.188,0.228,0.255 +2015-07-12 09:00:00,0.188,0.228,0.255 +2015-07-12 10:00:00,0.188,0.228,0.255 +2015-07-12 11:00:00,0.188,0.22699999999999998,0.254 +2015-07-12 12:00:00,0.188,0.22699999999999998,0.254 +2015-07-12 13:00:00,0.188,0.228,0.254 +2015-07-12 14:00:00,0.188,0.22899999999999998,0.254 +2015-07-12 15:00:00,0.18899999999999997,0.22899999999999998,0.253 +2015-07-12 16:00:00,0.18899999999999997,0.22899999999999998,0.253 +2015-07-12 17:00:00,0.18899999999999997,0.228,0.253 +2015-07-12 18:00:00,0.18899999999999997,0.228,0.253 +2015-07-12 19:00:00,0.191,0.228,0.253 +2015-07-12 20:00:00,0.191,0.228,0.254 +2015-07-12 21:00:00,0.191,0.228,0.254 +2015-07-12 22:00:00,0.191,0.228,0.254 +2015-07-12 23:00:00,0.191,0.228,0.254 +2015-07-13 00:00:00,0.19,0.22899999999999998,0.254 +2015-07-13 01:00:00,0.19,0.22699999999999998,0.254 +2015-07-13 02:00:00,0.19,0.22699999999999998,0.254 +2015-07-13 03:00:00,0.19,0.22699999999999998,0.254 +2015-07-13 04:00:00,0.19,0.22699999999999998,0.254 +2015-07-13 05:00:00,0.19,0.22699999999999998,0.254 +2015-07-13 06:00:00,0.19,0.228,0.254 +2015-07-13 07:00:00,0.19,0.22699999999999998,0.254 +2015-07-13 08:00:00,0.18899999999999997,0.22699999999999998,0.254 +2015-07-13 09:00:00,0.18899999999999997,0.225,0.254 +2015-07-13 10:00:00,0.18899999999999997,0.22899999999999998,0.254 +2015-07-13 11:00:00,0.18899999999999997,0.228,0.254 +2015-07-13 12:00:00,0.18899999999999997,0.22899999999999998,0.254 +2015-07-13 13:00:00,0.18899999999999997,0.23,0.254 +2015-07-13 14:00:00,0.18899999999999997,0.23,0.254 +2015-07-13 15:00:00,0.18899999999999997,0.23199999999999998,0.254 +2015-07-13 16:00:00,0.18899999999999997,0.23199999999999998,0.254 +2015-07-13 17:00:00,0.18899999999999997,0.23199999999999998,0.254 +2015-07-13 18:00:00,0.18899999999999997,0.23199999999999998,0.254 +2015-07-13 19:00:00,0.19,0.23199999999999998,0.254 +2015-07-13 20:00:00,0.191,0.233,0.255 +2015-07-13 21:00:00,0.192,0.233,0.256 +2015-07-13 22:00:00,0.191,0.233,0.256 +2015-07-13 23:00:00,0.191,0.23399999999999999,0.256 +2015-07-14 00:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 01:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 02:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 03:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 04:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 05:00:00,0.19,0.23399999999999999,0.257 +2015-07-14 06:00:00,0.19,0.23399999999999999,0.257 +2015-07-14 07:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 08:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 09:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 10:00:00,0.191,0.23399999999999999,0.257 +2015-07-14 11:00:00,0.191,0.233,0.256 +2015-07-14 12:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 13:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 14:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 15:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 16:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 17:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 18:00:00,0.191,0.233,0.255 +2015-07-14 19:00:00,0.191,0.231,0.255 +2015-07-14 20:00:00,0.191,0.231,0.255 +2015-07-14 21:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 22:00:00,0.191,0.23199999999999998,0.255 +2015-07-14 23:00:00,0.191,0.23199999999999998,0.255 +2015-07-15 00:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 01:00:00,0.19,0.23199999999999998,0.255 +2015-07-15 02:00:00,0.19,0.233,0.255 +2015-07-15 03:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 04:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 05:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 06:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 07:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 08:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 09:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 10:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 11:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 12:00:00,0.19,0.23399999999999999,0.255 +2015-07-15 13:00:00,0.19,0.235,0.254 +2015-07-15 14:00:00,0.19,0.235,0.254 +2015-07-15 15:00:00,0.19,0.235,0.254 +2015-07-15 16:00:00,0.191,0.23600000000000002,0.254 +2015-07-15 17:00:00,0.191,0.23600000000000002,0.254 +2015-07-15 18:00:00,0.191,0.23600000000000002,0.254 +2015-07-15 19:00:00,0.191,0.23600000000000002,0.254 +2015-07-15 20:00:00,0.191,0.23600000000000002,0.254 +2015-07-15 21:00:00,0.191,0.23600000000000002,0.254 +2015-07-15 22:00:00,0.191,0.23600000000000002,0.254 +2015-07-15 23:00:00,0.191,0.23600000000000002,0.254 +2015-07-16 00:00:00,0.191,0.237,0.254 +2015-07-16 01:00:00,0.19,0.237,0.254 +2015-07-16 02:00:00,0.19,0.237,0.254 +2015-07-16 03:00:00,0.19,0.237,0.254 +2015-07-16 04:00:00,0.19,0.237,0.254 +2015-07-16 05:00:00,0.18899999999999997,0.237,0.255 +2015-07-16 06:00:00,0.18899999999999997,0.237,0.255 +2015-07-16 07:00:00,0.18899999999999997,0.237,0.255 +2015-07-16 08:00:00,0.18899999999999997,0.237,0.255 +2015-07-16 09:00:00,0.18899999999999997,0.23600000000000002,0.255 +2015-07-16 10:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-16 11:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-16 12:00:00,0.19,0.23600000000000002,0.254 +2015-07-16 13:00:00,0.19,0.23600000000000002,0.253 +2015-07-16 14:00:00,0.19,0.23600000000000002,0.253 +2015-07-16 15:00:00,0.19,0.235,0.253 +2015-07-16 16:00:00,0.19,0.23600000000000002,0.253 +2015-07-16 17:00:00,0.19,0.235,0.253 +2015-07-16 18:00:00,0.19,0.235,0.253 +2015-07-16 19:00:00,0.19,0.23600000000000002,0.253 +2015-07-16 20:00:00,0.191,0.23600000000000002,0.253 +2015-07-16 21:00:00,0.191,0.23600000000000002,0.253 +2015-07-16 22:00:00,0.19,0.23600000000000002,0.253 +2015-07-16 23:00:00,0.19,0.23600000000000002,0.253 +2015-07-17 00:00:00,0.19,0.23600000000000002,0.253 +2015-07-17 01:00:00,0.19,0.23600000000000002,0.253 +2015-07-17 02:00:00,0.19,0.23600000000000002,0.254 +2015-07-17 03:00:00,0.19,0.23600000000000002,0.254 +2015-07-17 04:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-17 05:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-17 06:00:00,0.18899999999999997,0.237,0.254 +2015-07-17 07:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-17 08:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-17 09:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-17 10:00:00,0.18899999999999997,0.23600000000000002,0.254 +2015-07-17 11:00:00,0.18899999999999997,0.23600000000000002,0.253 +2015-07-17 12:00:00,0.18899999999999997,0.23600000000000002,0.253 +2015-07-17 13:00:00,0.18899999999999997,0.23399999999999999,0.253 +2015-07-17 14:00:00,0.19,0.23399999999999999,0.252 +2015-07-17 15:00:00,0.19,0.23399999999999999,0.252 +2015-07-17 16:00:00,0.19,0.233,0.252 +2015-07-17 17:00:00,0.19,0.23199999999999998,0.252 +2015-07-17 18:00:00,0.19,0.23199999999999998,0.252 +2015-07-17 19:00:00,0.19,0.23199999999999998,0.252 +2015-07-17 20:00:00,0.19,0.23199999999999998,0.252 +2015-07-17 21:00:00,0.191,0.23199999999999998,0.252 +2015-07-17 22:00:00,0.191,0.23399999999999999,0.252 +2015-07-17 23:00:00,0.191,0.235,0.252 +2015-07-18 00:00:00,0.191,0.23600000000000002,0.252 +2015-07-18 01:00:00,0.19,0.23399999999999999,0.252 +2015-07-18 02:00:00,0.18899999999999997,0.23399999999999999,0.252 +2015-07-18 03:00:00,0.18899999999999997,0.23399999999999999,0.252 +2015-07-18 04:00:00,0.18899999999999997,0.23399999999999999,0.252 +2015-07-18 05:00:00,0.18899999999999997,0.23399999999999999,0.252 +2015-07-18 06:00:00,0.18899999999999997,0.23399999999999999,0.253 +2015-07-18 07:00:00,0.18899999999999997,0.23399999999999999,0.253 +2015-07-18 08:00:00,0.18899999999999997,0.233,0.253 +2015-07-18 09:00:00,0.18899999999999997,0.23199999999999998,0.253 +2015-07-18 10:00:00,0.18899999999999997,0.23199999999999998,0.252 +2015-07-18 11:00:00,0.18899999999999997,0.23199999999999998,0.252 +2015-07-18 12:00:00,0.18899999999999997,0.23199999999999998,0.252 +2015-07-18 13:00:00,0.18899999999999997,0.23199999999999998,0.252 +2015-07-18 14:00:00,0.18899999999999997,0.23,0.251 +2015-07-18 15:00:00,0.18899999999999997,0.23,0.251 +2015-07-18 16:00:00,0.18899999999999997,0.23,0.251 +2015-07-18 17:00:00,0.18899999999999997,0.22899999999999998,0.251 +2015-07-18 18:00:00,0.19,0.22899999999999998,0.251 +2015-07-18 19:00:00,0.18899999999999997,0.22899999999999998,0.251 +2015-07-18 20:00:00,0.19,0.22899999999999998,0.251 +2015-07-18 21:00:00,0.18899999999999997,0.23,0.251 +2015-07-18 22:00:00,0.18899999999999997,0.23,0.251 +2015-07-18 23:00:00,0.18899999999999997,0.23199999999999998,0.251 +2015-07-19 00:00:00,0.18899999999999997,0.233,0.251 +2015-07-19 01:00:00,0.18899999999999997,0.23199999999999998,0.251 +2015-07-19 02:00:00,0.18899999999999997,0.23199999999999998,0.251 +2015-07-19 03:00:00,0.18899999999999997,0.231,0.251 +2015-07-19 04:00:00,0.18899999999999997,0.23,0.251 +2015-07-19 05:00:00,0.18899999999999997,0.23,0.251 +2015-07-19 06:00:00,0.20600000000000002,0.23,0.28300000000000003 +2015-07-19 07:00:00,0.21100000000000002,0.23,0.27899999999999997 +2015-07-19 08:00:00,0.20800000000000002,0.23,0.27399999999999997 +2015-07-19 09:00:00,0.207,0.23,0.272 +2015-07-19 10:00:00,0.20800000000000002,0.23,0.27 +2015-07-19 11:00:00,0.209,0.23,0.26899999999999996 +2015-07-19 12:00:00,0.20800000000000002,0.23,0.267 +2015-07-19 13:00:00,0.20800000000000002,0.23,0.266 +2015-07-19 14:00:00,0.207,0.23,0.265 +2015-07-19 15:00:00,0.207,0.22899999999999998,0.265 +2015-07-19 16:00:00,0.207,0.22899999999999998,0.264 +2015-07-19 17:00:00,0.20600000000000002,0.22899999999999998,0.264 +2015-07-19 18:00:00,0.207,0.22899999999999998,0.265 +2015-07-19 19:00:00,0.20600000000000002,0.22899999999999998,0.266 +2015-07-19 20:00:00,0.207,0.23,0.265 +2015-07-19 21:00:00,0.207,0.23,0.265 +2015-07-19 22:00:00,0.207,0.23,0.265 +2015-07-19 23:00:00,0.20600000000000002,0.23,0.265 +2015-07-20 00:00:00,0.20600000000000002,0.23,0.265 +2015-07-20 01:00:00,0.20600000000000002,0.23,0.265 +2015-07-20 02:00:00,0.20600000000000002,0.23,0.265 +2015-07-20 03:00:00,0.20600000000000002,0.23,0.264 +2015-07-20 04:00:00,0.205,0.23,0.264 +2015-07-20 05:00:00,0.205,0.23,0.264 +2015-07-20 06:00:00,0.205,0.231,0.264 +2015-07-20 07:00:00,0.205,0.23,0.265 +2015-07-20 08:00:00,0.204,0.23,0.265 +2015-07-20 09:00:00,0.204,0.23,0.265 +2015-07-20 10:00:00,0.204,0.22899999999999998,0.265 +2015-07-20 11:00:00,0.205,0.22899999999999998,0.265 +2015-07-20 12:00:00,0.205,0.22899999999999998,0.265 +2015-07-20 13:00:00,0.205,0.22899999999999998,0.264 +2015-07-20 14:00:00,0.205,0.228,0.264 +2015-07-20 15:00:00,0.205,0.228,0.263 +2015-07-20 16:00:00,0.20600000000000002,0.22699999999999998,0.265 +2015-07-20 17:00:00,0.20600000000000002,0.22699999999999998,0.265 +2015-07-20 18:00:00,0.20600000000000002,0.22699999999999998,0.265 +2015-07-20 19:00:00,0.207,0.22699999999999998,0.265 +2015-07-20 20:00:00,0.207,0.22699999999999998,0.264 +2015-07-20 21:00:00,0.207,0.22699999999999998,0.264 +2015-07-20 22:00:00,0.207,0.22899999999999998,0.265 +2015-07-20 23:00:00,0.207,0.22899999999999998,0.265 +2015-07-21 00:00:00,0.207,0.22899999999999998,0.265 +2015-07-21 01:00:00,0.207,0.22899999999999998,0.265 +2015-07-21 02:00:00,0.207,0.23,0.265 +2015-07-21 03:00:00,0.207,0.23,0.265 +2015-07-21 04:00:00,0.207,0.22899999999999998,0.266 +2015-07-21 05:00:00,0.20600000000000002,0.22899999999999998,0.266 +2015-07-21 06:00:00,0.20600000000000002,0.22899999999999998,0.266 +2015-07-21 07:00:00,0.20600000000000002,0.22899999999999998,0.266 +2015-07-21 08:00:00,0.20600000000000002,0.22899999999999998,0.266 +2015-07-21 09:00:00,0.20600000000000002,0.22899999999999998,0.266 +2015-07-21 10:00:00,0.207,0.22899999999999998,0.264 +2015-07-21 11:00:00,0.20600000000000002,0.22899999999999998,0.264 +2015-07-21 12:00:00,0.20600000000000002,0.228,0.263 +2015-07-21 13:00:00,0.20600000000000002,0.22699999999999998,0.263 +2015-07-21 14:00:00,0.205,0.22699999999999998,0.262 +2015-07-21 15:00:00,0.205,0.22699999999999998,0.262 +2015-07-21 16:00:00,0.205,0.22699999999999998,0.262 +2015-07-21 17:00:00,0.205,0.22699999999999998,0.262 +2015-07-21 18:00:00,0.205,0.22699999999999998,0.262 +2015-07-21 19:00:00,0.205,0.22699999999999998,0.262 +2015-07-21 20:00:00,0.20600000000000002,0.22699999999999998,0.262 +2015-07-21 21:00:00,0.20600000000000002,0.22699999999999998,0.262 +2015-07-21 22:00:00,0.205,0.22699999999999998,0.262 +2015-07-21 23:00:00,0.205,0.22699999999999998,0.262 +2015-07-22 00:00:00,0.205,0.22699999999999998,0.262 +2015-07-22 01:00:00,0.205,0.22699999999999998,0.262 +2015-07-22 02:00:00,0.205,0.22899999999999998,0.262 +2015-07-22 03:00:00,0.205,0.22899999999999998,0.262 +2015-07-22 04:00:00,0.204,0.22899999999999998,0.262 +2015-07-22 05:00:00,0.205,0.22899999999999998,0.263 +2015-07-22 06:00:00,0.204,0.22899999999999998,0.263 +2015-07-22 07:00:00,0.204,0.22899999999999998,0.263 +2015-07-22 08:00:00,0.204,0.22899999999999998,0.263 +2015-07-22 09:00:00,0.204,0.22899999999999998,0.262 +2015-07-22 10:00:00,0.204,0.22899999999999998,0.262 +2015-07-22 11:00:00,0.204,0.228,0.262 +2015-07-22 12:00:00,0.204,0.22699999999999998,0.262 +2015-07-22 13:00:00,0.204,0.22699999999999998,0.262 +2015-07-22 14:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 15:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 16:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 17:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 18:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 19:00:00,0.204,0.22699999999999998,0.261 +2015-07-22 20:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 21:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 22:00:00,0.203,0.22699999999999998,0.261 +2015-07-22 23:00:00,0.203,0.228,0.261 +2015-07-23 00:00:00,0.203,0.22899999999999998,0.261 +2015-07-23 01:00:00,0.20199999999999999,0.22899999999999998,0.261 +2015-07-23 02:00:00,0.203,0.22899999999999998,0.261 +2015-07-23 03:00:00,0.203,0.22899999999999998,0.261 +2015-07-23 04:00:00,0.20199999999999999,0.228,0.261 +2015-07-23 05:00:00,0.20199999999999999,0.22699999999999998,0.261 +2015-07-23 06:00:00,0.20199999999999999,0.22699999999999998,0.261 +2015-07-23 07:00:00,0.20199999999999999,0.22699999999999998,0.261 +2015-07-23 08:00:00,0.201,0.22699999999999998,0.261 +2015-07-23 09:00:00,0.201,0.22699999999999998,0.261 +2015-07-23 10:00:00,0.201,0.22699999999999998,0.261 +2015-07-23 11:00:00,0.2,0.22699999999999998,0.26 +2015-07-23 12:00:00,0.2,0.225,0.26 +2015-07-23 13:00:00,0.2,0.22699999999999998,0.26 +2015-07-23 14:00:00,0.19899999999999998,0.22699999999999998,0.259 +2015-07-23 15:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 16:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 17:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 18:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 19:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 20:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 21:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 22:00:00,0.19899999999999998,0.225,0.259 +2015-07-23 23:00:00,0.19899999999999998,0.226,0.259 +2015-07-24 00:00:00,0.198,0.22699999999999998,0.259 +2015-07-24 01:00:00,0.198,0.228,0.259 +2015-07-24 02:00:00,0.198,0.228,0.259 +2015-07-24 03:00:00,0.198,0.228,0.259 +2015-07-24 04:00:00,0.198,0.22899999999999998,0.259 +2015-07-24 05:00:00,0.198,0.22899999999999998,0.259 +2015-07-24 06:00:00,0.198,0.22899999999999998,0.259 +2015-07-24 07:00:00,0.198,0.22899999999999998,0.259 +2015-07-24 08:00:00,0.198,0.22899999999999998,0.259 +2015-07-24 09:00:00,0.19699999999999998,0.22899999999999998,0.259 +2015-07-24 10:00:00,0.19699999999999998,0.228,0.258 +2015-07-24 11:00:00,0.196,0.22699999999999998,0.258 +2015-07-24 12:00:00,0.196,0.225,0.258 +2015-07-24 13:00:00,0.196,0.225,0.258 +2015-07-24 14:00:00,0.196,0.22399999999999998,0.258 +2015-07-24 15:00:00,0.196,0.22399999999999998,0.257 +2015-07-24 16:00:00,0.196,0.22399999999999998,0.257 +2015-07-24 17:00:00,0.196,0.223,0.257 +2015-07-24 18:00:00,0.19699999999999998,0.22399999999999998,0.257 +2015-07-24 19:00:00,0.19699999999999998,0.22399999999999998,0.257 +2015-07-24 20:00:00,0.19699999999999998,0.22399999999999998,0.257 +2015-07-24 21:00:00,0.19699999999999998,0.22399999999999998,0.257 +2015-07-24 22:00:00,0.19699999999999998,0.22399999999999998,0.257 +2015-07-24 23:00:00,0.19699999999999998,0.22399999999999998,0.257 +2015-07-25 00:00:00,0.19699999999999998,0.22399999999999998,0.258 +2015-07-25 01:00:00,0.19399999999999998,0.22399999999999998,0.26 +2015-07-25 02:00:00,0.195,0.225,0.26 +2015-07-25 03:00:00,0.195,0.225,0.26 +2015-07-25 04:00:00,0.196,0.225,0.26 +2015-07-25 05:00:00,0.196,0.225,0.26 +2015-07-25 06:00:00,0.195,0.225,0.26 +2015-07-25 07:00:00,0.195,0.225,0.26 +2015-07-25 08:00:00,0.196,0.225,0.26 +2015-07-25 09:00:00,0.19699999999999998,0.225,0.26 +2015-07-25 10:00:00,0.198,0.225,0.259 +2015-07-25 11:00:00,0.19699999999999998,0.225,0.258 +2015-07-25 12:00:00,0.198,0.225,0.258 +2015-07-25 13:00:00,0.198,0.22399999999999998,0.258 +2015-07-25 14:00:00,0.198,0.223,0.258 +2015-07-25 15:00:00,0.198,0.222,0.258 +2015-07-25 16:00:00,0.198,0.222,0.258 +2015-07-25 17:00:00,0.198,0.222,0.258 +2015-07-25 18:00:00,0.198,0.222,0.258 +2015-07-25 19:00:00,0.198,0.222,0.258 +2015-07-25 20:00:00,0.196,0.222,0.259 +2015-07-25 21:00:00,0.196,0.222,0.259 +2015-07-25 22:00:00,0.196,0.222,0.259 +2015-07-25 23:00:00,0.196,0.222,0.259 +2015-07-26 00:00:00,0.196,0.22399999999999998,0.259 +2015-07-26 01:00:00,0.196,0.22399999999999998,0.259 +2015-07-26 02:00:00,0.196,0.22399999999999998,0.259 +2015-07-26 03:00:00,0.196,0.225,0.259 +2015-07-26 04:00:00,0.196,0.225,0.259 +2015-07-26 05:00:00,0.196,0.225,0.259 +2015-07-26 06:00:00,0.195,0.225,0.259 +2015-07-26 07:00:00,0.195,0.22399999999999998,0.259 +2015-07-26 08:00:00,0.195,0.22399999999999998,0.259 +2015-07-26 09:00:00,0.196,0.22399999999999998,0.259 +2015-07-26 10:00:00,0.196,0.22399999999999998,0.258 +2015-07-26 11:00:00,0.195,0.22399999999999998,0.257 +2015-07-26 12:00:00,0.19399999999999998,0.22399999999999998,0.257 +2015-07-26 13:00:00,0.19399999999999998,0.222,0.256 +2015-07-26 14:00:00,0.19399999999999998,0.222,0.256 +2015-07-26 15:00:00,0.19399999999999998,0.22,0.256 +2015-07-26 16:00:00,0.19399999999999998,0.22,0.256 +2015-07-26 17:00:00,0.19399999999999998,0.22,0.256 +2015-07-26 18:00:00,0.19399999999999998,0.22,0.256 +2015-07-26 19:00:00,0.19399999999999998,0.22,0.256 +2015-07-26 20:00:00,0.195,0.22,0.256 +2015-07-26 21:00:00,0.196,0.22,0.257 +2015-07-26 22:00:00,0.196,0.22,0.258 +2015-07-26 23:00:00,0.195,0.221,0.258 +2015-07-27 00:00:00,0.195,0.221,0.258 +2015-07-27 01:00:00,0.195,0.221,0.258 +2015-07-27 02:00:00,0.195,0.221,0.258 +2015-07-27 03:00:00,0.195,0.221,0.258 +2015-07-27 04:00:00,0.195,0.221,0.258 +2015-07-27 05:00:00,0.19399999999999998,0.221,0.258 +2015-07-27 06:00:00,0.191,0.221,0.26 +2015-07-27 07:00:00,0.192,0.222,0.26 +2015-07-27 08:00:00,0.193,0.222,0.259 +2015-07-27 09:00:00,0.192,0.222,0.26 +2015-07-27 10:00:00,0.192,0.222,0.26 +2015-07-27 11:00:00,0.19399999999999998,0.221,0.259 +2015-07-27 12:00:00,0.19699999999999998,0.221,0.258 +2015-07-27 13:00:00,0.19699999999999998,0.22,0.258 +2015-07-27 14:00:00,0.19699999999999998,0.22,0.257 +2015-07-27 15:00:00,0.19699999999999998,0.22,0.257 +2015-07-27 16:00:00,0.198,0.21899999999999997,0.257 +2015-07-27 17:00:00,0.198,0.21899999999999997,0.258 +2015-07-27 18:00:00,0.198,0.21899999999999997,0.258 +2015-07-27 19:00:00,0.198,0.21899999999999997,0.258 +2015-07-27 20:00:00,0.198,0.22,0.257 +2015-07-27 21:00:00,0.198,0.22,0.257 +2015-07-27 22:00:00,0.198,0.22,0.258 +2015-07-27 23:00:00,0.198,0.22,0.259 +2015-07-28 00:00:00,0.198,0.22,0.259 +2015-07-28 01:00:00,0.19699999999999998,0.22,0.259 +2015-07-28 02:00:00,0.19699999999999998,0.22,0.259 +2015-07-28 03:00:00,0.19699999999999998,0.22,0.259 +2015-07-28 04:00:00,0.19699999999999998,0.22,0.259 +2015-07-28 05:00:00,0.198,0.22,0.259 +2015-07-28 06:00:00,0.198,0.22,0.259 +2015-07-28 07:00:00,0.19699999999999998,0.22,0.259 +2015-07-28 08:00:00,0.19699999999999998,0.22,0.259 +2015-07-28 09:00:00,0.198,0.22,0.259 +2015-07-28 10:00:00,0.198,0.22,0.258 +2015-07-28 11:00:00,0.19699999999999998,0.22,0.258 +2015-07-28 12:00:00,0.196,0.22,0.257 +2015-07-28 13:00:00,0.196,0.21899999999999997,0.257 +2015-07-28 14:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 15:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 16:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 17:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 18:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 19:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 20:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 21:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 22:00:00,0.196,0.21899999999999997,0.256 +2015-07-28 23:00:00,0.196,0.21899999999999997,0.256 +2015-07-29 00:00:00,0.196,0.22,0.256 +2015-07-29 01:00:00,0.196,0.22,0.256 +2015-07-29 02:00:00,0.196,0.22,0.256 +2015-07-29 03:00:00,0.195,0.22,0.256 +2015-07-29 04:00:00,0.196,0.22,0.256 +2015-07-29 05:00:00,0.195,0.22,0.256 +2015-07-29 06:00:00,0.195,0.22,0.256 +2015-07-29 07:00:00,0.195,0.22,0.256 +2015-07-29 08:00:00,0.195,0.22,0.256 +2015-07-29 09:00:00,0.195,0.22,0.256 +2015-07-29 10:00:00,0.195,0.21899999999999997,0.256 +2015-07-29 11:00:00,0.195,0.21899999999999997,0.256 +2015-07-29 12:00:00,0.195,0.21899999999999997,0.256 +2015-07-29 13:00:00,0.195,0.21899999999999997,0.255 +2015-07-29 14:00:00,0.195,0.21899999999999997,0.255 +2015-07-29 15:00:00,0.195,0.21899999999999997,0.255 +2015-07-29 16:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-29 17:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-29 18:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-29 19:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-29 20:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-29 21:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-29 22:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-29 23:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-30 00:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-30 01:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-30 02:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-30 03:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 04:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 05:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 06:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 07:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 08:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 09:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 10:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 11:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 12:00:00,0.193,0.21899999999999997,0.255 +2015-07-30 13:00:00,0.193,0.21899999999999997,0.254 +2015-07-30 14:00:00,0.193,0.21899999999999997,0.254 +2015-07-30 15:00:00,0.193,0.21899999999999997,0.254 +2015-07-30 16:00:00,0.193,0.21899999999999997,0.254 +2015-07-30 17:00:00,0.193,0.21899999999999997,0.254 +2015-07-30 18:00:00,0.193,0.21899999999999997,0.254 +2015-07-30 19:00:00,0.19399999999999998,0.21899999999999997,0.254 +2015-07-30 20:00:00,0.19399999999999998,0.21899999999999997,0.254 +2015-07-30 21:00:00,0.19399999999999998,0.21899999999999997,0.254 +2015-07-30 22:00:00,0.19399999999999998,0.21899999999999997,0.254 +2015-07-30 23:00:00,0.19399999999999998,0.21899999999999997,0.254 +2015-07-31 00:00:00,0.19399999999999998,0.21899999999999997,0.254 +2015-07-31 01:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-31 02:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-31 03:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-31 04:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-31 05:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-31 06:00:00,0.19399999999999998,0.21899999999999997,0.255 +2015-07-31 07:00:00,0.193,0.21899999999999997,0.255 +2015-07-31 08:00:00,0.193,0.21899999999999997,0.255 +2015-07-31 09:00:00,0.193,0.21899999999999997,0.255 +2015-07-31 10:00:00,0.193,0.21899999999999997,0.254 +2015-07-31 11:00:00,0.192,0.21899999999999997,0.254 +2015-07-31 12:00:00,0.192,0.21899999999999997,0.254 +2015-07-31 13:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 14:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 15:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 16:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 17:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 18:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 19:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 20:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 21:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 22:00:00,0.191,0.21899999999999997,0.253 +2015-07-31 23:00:00,0.191,0.21899999999999997,0.253 +2015-08-01 00:00:00,0.191,0.21899999999999997,0.253 +2015-08-01 01:00:00,0.191,0.21899999999999997,0.253 +2015-08-01 02:00:00,0.191,0.22,0.253 +2015-08-01 03:00:00,0.191,0.22,0.253 +2015-08-01 04:00:00,0.19,0.22,0.253 +2015-08-01 05:00:00,0.19,0.22,0.253 +2015-08-01 06:00:00,0.19,0.22,0.253 +2015-08-01 07:00:00,0.191,0.22,0.253 +2015-08-01 08:00:00,0.19,0.22,0.253 +2015-08-01 09:00:00,0.19,0.22,0.253 +2015-08-01 10:00:00,0.19,0.22,0.253 +2015-08-01 11:00:00,0.19,0.22,0.253 +2015-08-01 12:00:00,0.19,0.22,0.253 +2015-08-01 13:00:00,0.19,0.21899999999999997,0.252 +2015-08-01 14:00:00,0.19,0.21899999999999997,0.252 +2015-08-01 15:00:00,0.19,0.21899999999999997,0.252 +2015-08-01 16:00:00,0.19,0.21899999999999997,0.252 +2015-08-01 17:00:00,0.19,0.21899999999999997,0.252 +2015-08-01 18:00:00,0.191,0.21899999999999997,0.252 +2015-08-01 19:00:00,0.191,0.21899999999999997,0.251 +2015-08-01 20:00:00,0.191,0.21899999999999997,0.252 +2015-08-01 21:00:00,0.191,0.21899999999999997,0.252 +2015-08-01 22:00:00,0.191,0.22,0.252 +2015-08-01 23:00:00,0.191,0.22,0.252 +2015-08-02 00:00:00,0.19,0.22,0.252 +2015-08-02 01:00:00,0.19,0.22,0.252 +2015-08-02 02:00:00,0.19,0.22,0.252 +2015-08-02 03:00:00,0.19,0.22,0.252 +2015-08-02 04:00:00,0.19,0.22,0.252 +2015-08-02 05:00:00,0.19,0.22,0.252 +2015-08-02 06:00:00,0.18899999999999997,0.22,0.252 +2015-08-02 07:00:00,0.18899999999999997,0.22,0.252 +2015-08-02 08:00:00,0.18899999999999997,0.22,0.252 +2015-08-02 09:00:00,0.18899999999999997,0.22,0.252 +2015-08-02 10:00:00,0.18899999999999997,0.22,0.252 +2015-08-02 11:00:00,0.18899999999999997,0.22,0.252 +2015-08-02 12:00:00,0.18899999999999997,0.22,0.251 +2015-08-02 13:00:00,0.18899999999999997,0.22,0.251 +2015-08-02 14:00:00,0.18899999999999997,0.22,0.251 +2015-08-02 15:00:00,0.18899999999999997,0.22,0.251 +2015-08-02 16:00:00,0.18899999999999997,0.22,0.25 +2015-08-02 17:00:00,0.18899999999999997,0.22,0.25 +2015-08-02 18:00:00,0.18899999999999997,0.22,0.25 +2015-08-02 19:00:00,0.19,0.22,0.25 +2015-08-02 20:00:00,0.19,0.22,0.25 +2015-08-02 21:00:00,0.19,0.22,0.25 +2015-08-02 22:00:00,0.19,0.22,0.25 +2015-08-02 23:00:00,0.19,0.22,0.25 +2015-08-03 00:00:00,0.18899999999999997,0.22,0.251 +2015-08-03 01:00:00,0.18899999999999997,0.22,0.251 +2015-08-03 02:00:00,0.18899999999999997,0.22,0.251 +2015-08-03 03:00:00,0.18899999999999997,0.221,0.251 +2015-08-03 04:00:00,0.18899999999999997,0.221,0.251 +2015-08-03 05:00:00,0.18899999999999997,0.221,0.251 +2015-08-03 06:00:00,0.18899999999999997,0.22,0.251 +2015-08-03 07:00:00,0.188,0.22,0.251 +2015-08-03 08:00:00,0.18899999999999997,0.22,0.251 +2015-08-03 09:00:00,0.188,0.22,0.251 +2015-08-03 10:00:00,0.188,0.22,0.251 +2015-08-03 11:00:00,0.188,0.22,0.25 +2015-08-03 12:00:00,0.188,0.22,0.25 +2015-08-03 13:00:00,0.18899999999999997,0.22,0.25 +2015-08-03 14:00:00,0.18899999999999997,0.22,0.25 +2015-08-03 15:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 16:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 17:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 18:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 19:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 20:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 21:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 22:00:00,0.18899999999999997,0.22,0.249 +2015-08-03 23:00:00,0.18899999999999997,0.22,0.249 +2015-08-04 00:00:00,0.18899999999999997,0.22,0.249 +2015-08-04 01:00:00,0.18899999999999997,0.22,0.25 +2015-08-04 02:00:00,0.188,0.22,0.25 +2015-08-04 03:00:00,0.188,0.22,0.25 +2015-08-04 04:00:00,0.188,0.22,0.25 +2015-08-04 05:00:00,0.188,0.22,0.25 +2015-08-04 06:00:00,0.188,0.22,0.25 +2015-08-04 07:00:00,0.188,0.22,0.25 +2015-08-04 08:00:00,0.188,0.22,0.25 +2015-08-04 09:00:00,0.188,0.22,0.25 +2015-08-04 10:00:00,0.188,0.22,0.25 +2015-08-04 11:00:00,0.188,0.22,0.25 +2015-08-04 12:00:00,0.188,0.22,0.249 +2015-08-04 13:00:00,0.188,0.22,0.249 +2015-08-04 14:00:00,0.188,0.22,0.251 +2015-08-04 15:00:00,0.187,0.22,0.253 +2015-08-04 16:00:00,0.188,0.22,0.252 +2015-08-04 17:00:00,0.18899999999999997,0.22,0.252 +2015-08-04 18:00:00,0.188,0.22,0.252 +2015-08-04 19:00:00,0.188,0.22,0.253 +2015-08-04 20:00:00,0.18899999999999997,0.22,0.253 +2015-08-04 21:00:00,0.18899999999999997,0.22,0.253 +2015-08-04 22:00:00,0.18899999999999997,0.22,0.253 +2015-08-04 23:00:00,0.18899999999999997,0.222,0.253 +2015-08-05 00:00:00,0.18899999999999997,0.222,0.253 +2015-08-05 01:00:00,0.18899999999999997,0.222,0.253 +2015-08-05 02:00:00,0.18899999999999997,0.223,0.253 +2015-08-05 03:00:00,0.18899999999999997,0.22399999999999998,0.253 +2015-08-05 04:00:00,0.18899999999999997,0.22399999999999998,0.253 +2015-08-05 05:00:00,0.18899999999999997,0.22399999999999998,0.253 +2015-08-05 06:00:00,0.188,0.22399999999999998,0.253 +2015-08-05 07:00:00,0.188,0.22399999999999998,0.253 +2015-08-05 08:00:00,0.188,0.225,0.253 +2015-08-05 09:00:00,0.18899999999999997,0.225,0.253 +2015-08-05 10:00:00,0.18899999999999997,0.225,0.252 +2015-08-05 11:00:00,0.18899999999999997,0.225,0.251 +2015-08-05 12:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 13:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 14:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 15:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 16:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 17:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 18:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 19:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 20:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 21:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 22:00:00,0.18899999999999997,0.225,0.25 +2015-08-05 23:00:00,0.18899999999999997,0.225,0.25 +2015-08-06 00:00:00,0.18899999999999997,0.225,0.25 +2015-08-06 01:00:00,0.18899999999999997,0.225,0.25 +2015-08-06 02:00:00,0.18899999999999997,0.226,0.25 +2015-08-06 03:00:00,0.18899999999999997,0.226,0.25 +2015-08-06 04:00:00,0.188,0.22699999999999998,0.25 +2015-08-06 05:00:00,0.188,0.22699999999999998,0.25 +2015-08-06 06:00:00,0.188,0.22699999999999998,0.25 +2015-08-06 07:00:00,0.188,0.22699999999999998,0.25 +2015-08-06 08:00:00,0.188,0.22699999999999998,0.25 +2015-08-06 09:00:00,0.188,0.22699999999999998,0.25 +2015-08-06 10:00:00,0.188,0.22699999999999998,0.25 +2015-08-06 11:00:00,0.188,0.226,0.25 +2015-08-06 12:00:00,0.188,0.226,0.25 +2015-08-06 13:00:00,0.18899999999999997,0.225,0.25 +2015-08-06 14:00:00,0.18899999999999997,0.225,0.249 +2015-08-06 15:00:00,0.18899999999999997,0.225,0.249 +2015-08-06 16:00:00,0.18899999999999997,0.225,0.249 +2015-08-06 17:00:00,0.18899999999999997,0.225,0.249 +2015-08-06 18:00:00,0.18899999999999997,0.225,0.249 +2015-08-06 19:00:00,0.19,0.225,0.249 +2015-08-06 20:00:00,0.19,0.225,0.249 +2015-08-06 21:00:00,0.19,0.225,0.249 +2015-08-06 22:00:00,0.19,0.225,0.249 +2015-08-06 23:00:00,0.19,0.225,0.249 +2015-08-07 00:00:00,0.18899999999999997,0.226,0.249 +2015-08-07 01:00:00,0.18899999999999997,0.22699999999999998,0.249 +2015-08-07 02:00:00,0.18899999999999997,0.22699999999999998,0.249 +2015-08-07 03:00:00,0.18899999999999997,0.22699999999999998,0.25 +2015-08-07 04:00:00,0.18899999999999997,0.22699999999999998,0.25 +2015-08-07 05:00:00,0.18899999999999997,0.22699999999999998,0.25 +2015-08-07 06:00:00,0.18899999999999997,0.22699999999999998,0.25 +2015-08-07 07:00:00,0.18899999999999997,0.22699999999999998,0.25 +2015-08-07 08:00:00,0.18899999999999997,0.226,0.25 +2015-08-07 09:00:00,0.18899999999999997,0.226,0.25 +2015-08-07 10:00:00,0.18899999999999997,0.225,0.25 +2015-08-07 11:00:00,0.18899999999999997,0.225,0.249 +2015-08-07 12:00:00,0.18899999999999997,0.225,0.249 +2015-08-07 13:00:00,0.18899999999999997,0.225,0.249 +2015-08-07 14:00:00,0.18899999999999997,0.225,0.249 +2015-08-07 15:00:00,0.18899999999999997,0.225,0.249 +2015-08-07 16:00:00,0.19,0.225,0.249 +2015-08-07 17:00:00,0.19,0.225,0.248 +2015-08-07 18:00:00,0.19,0.225,0.248 +2015-08-07 19:00:00,0.19,0.225,0.248 +2015-08-07 20:00:00,0.19,0.225,0.249 +2015-08-07 21:00:00,0.19,0.225,0.249 +2015-08-07 22:00:00,0.19,0.225,0.249 +2015-08-07 23:00:00,0.19,0.225,0.249 +2015-08-08 00:00:00,0.19,0.225,0.249 +2015-08-08 01:00:00,0.19,0.225,0.249 +2015-08-08 02:00:00,0.19,0.225,0.249 +2015-08-08 03:00:00,0.19,0.225,0.249 +2015-08-08 04:00:00,0.19,0.225,0.249 +2015-08-08 05:00:00,0.19,0.225,0.249 +2015-08-08 06:00:00,0.19,0.225,0.249 +2015-08-08 07:00:00,0.192,0.225,0.251 +2015-08-08 08:00:00,0.192,0.225,0.251 +2015-08-08 09:00:00,0.192,0.225,0.251 +2015-08-08 10:00:00,0.191,0.225,0.25 +2015-08-08 11:00:00,0.191,0.225,0.249 +2015-08-08 12:00:00,0.19,0.225,0.249 +2015-08-08 13:00:00,0.19,0.225,0.249 +2015-08-08 14:00:00,0.19,0.225,0.249 +2015-08-08 15:00:00,0.19,0.225,0.249 +2015-08-08 16:00:00,0.19,0.225,0.249 +2015-08-08 17:00:00,0.191,0.225,0.248 +2015-08-08 18:00:00,0.191,0.225,0.248 +2015-08-08 19:00:00,0.191,0.225,0.248 +2015-08-08 20:00:00,0.191,0.225,0.248 +2015-08-08 21:00:00,0.191,0.225,0.249 +2015-08-08 22:00:00,0.191,0.225,0.249 +2015-08-08 23:00:00,0.191,0.225,0.249 +2015-08-09 00:00:00,0.191,0.225,0.249 +2015-08-09 01:00:00,0.19,0.225,0.249 +2015-08-09 02:00:00,0.19,0.225,0.249 +2015-08-09 03:00:00,0.19,0.225,0.249 +2015-08-09 04:00:00,0.19,0.225,0.249 +2015-08-09 05:00:00,0.19,0.225,0.249 +2015-08-09 06:00:00,0.19,0.225,0.249 +2015-08-09 07:00:00,0.19,0.225,0.249 +2015-08-09 08:00:00,0.19,0.225,0.249 +2015-08-09 09:00:00,0.19,0.225,0.249 +2015-08-09 10:00:00,0.19,0.225,0.249 +2015-08-09 11:00:00,0.19,0.225,0.249 +2015-08-09 12:00:00,0.19,0.225,0.249 +2015-08-09 13:00:00,0.19,0.225,0.249 +2015-08-09 14:00:00,0.19,0.225,0.248 +2015-08-09 15:00:00,0.19,0.225,0.248 +2015-08-09 16:00:00,0.19,0.225,0.248 +2015-08-09 17:00:00,0.19,0.225,0.248 +2015-08-09 18:00:00,0.191,0.225,0.248 +2015-08-09 19:00:00,0.191,0.225,0.248 +2015-08-09 20:00:00,0.191,0.225,0.248 +2015-08-09 21:00:00,0.191,0.225,0.248 +2015-08-09 22:00:00,0.19,0.225,0.248 +2015-08-09 23:00:00,0.19,0.225,0.248 +2015-08-10 00:00:00,0.19,0.225,0.248 +2015-08-10 01:00:00,0.19,0.225,0.249 +2015-08-10 02:00:00,0.19,0.225,0.249 +2015-08-10 03:00:00,0.19,0.225,0.249 +2015-08-10 04:00:00,0.19,0.225,0.249 +2015-08-10 05:00:00,0.19,0.225,0.249 +2015-08-10 06:00:00,0.19,0.225,0.249 +2015-08-10 07:00:00,0.19,0.225,0.249 +2015-08-10 08:00:00,0.19,0.225,0.249 +2015-08-10 09:00:00,0.18899999999999997,0.225,0.249 +2015-08-10 10:00:00,0.19,0.22399999999999998,0.249 +2015-08-10 11:00:00,0.19,0.22399999999999998,0.248 +2015-08-10 12:00:00,0.18899999999999997,0.222,0.248 +2015-08-10 13:00:00,0.19,0.222,0.248 +2015-08-10 14:00:00,0.19,0.222,0.248 +2015-08-10 15:00:00,0.19,0.222,0.248 +2015-08-10 16:00:00,0.19,0.222,0.248 +2015-08-10 17:00:00,0.19,0.221,0.248 +2015-08-10 18:00:00,0.19,0.221,0.247 +2015-08-10 19:00:00,0.188,0.22,0.252 +2015-08-10 20:00:00,0.191,0.222,0.252 +2015-08-10 21:00:00,0.192,0.223,0.253 +2015-08-10 22:00:00,0.193,0.225,0.253 +2015-08-10 23:00:00,0.19399999999999998,0.225,0.253 +2015-08-11 00:00:00,0.19399999999999998,0.225,0.253 +2015-08-11 01:00:00,0.19399999999999998,0.225,0.253 +2015-08-11 02:00:00,0.193,0.225,0.253 +2015-08-11 03:00:00,0.193,0.225,0.253 +2015-08-11 04:00:00,0.19399999999999998,0.225,0.253 +2015-08-11 05:00:00,0.193,0.225,0.253 +2015-08-11 06:00:00,0.193,0.225,0.253 +2015-08-11 07:00:00,0.193,0.225,0.253 +2015-08-11 08:00:00,0.19399999999999998,0.225,0.253 +2015-08-11 09:00:00,0.19399999999999998,0.225,0.253 +2015-08-11 10:00:00,0.196,0.225,0.253 +2015-08-11 11:00:00,0.196,0.225,0.253 +2015-08-11 12:00:00,0.19699999999999998,0.225,0.252 +2015-08-11 13:00:00,0.19699999999999998,0.225,0.252 +2015-08-11 14:00:00,0.19699999999999998,0.226,0.251 +2015-08-11 15:00:00,0.19699999999999998,0.22699999999999998,0.251 +2015-08-11 16:00:00,0.198,0.22699999999999998,0.251 +2015-08-11 17:00:00,0.198,0.225,0.251 +2015-08-11 18:00:00,0.198,0.22,0.251 +2015-08-11 19:00:00,0.198,0.22699999999999998,0.251 +2015-08-11 20:00:00,0.198,0.244,0.251 +2015-08-11 21:00:00,0.198,0.264,0.251 +2015-08-11 22:00:00,0.198,0.27899999999999997,0.251 +2015-08-11 23:00:00,0.198,0.28600000000000003,0.251 +2015-08-12 00:00:00,0.198,0.287,0.251 +2015-08-12 01:00:00,0.198,0.287,0.251 +2015-08-12 02:00:00,0.198,0.287,0.251 +2015-08-12 03:00:00,0.198,0.285,0.251 +2015-08-12 04:00:00,0.19699999999999998,0.284,0.251 +2015-08-12 05:00:00,0.19699999999999998,0.282,0.251 +2015-08-12 06:00:00,0.19699999999999998,0.281,0.251 +2015-08-12 07:00:00,0.19699999999999998,0.28,0.251 +2015-08-12 08:00:00,0.19699999999999998,0.278,0.252 +2015-08-12 09:00:00,0.19699999999999998,0.276,0.251 +2015-08-12 10:00:00,0.19699999999999998,0.275,0.251 +2015-08-12 11:00:00,0.19699999999999998,0.275,0.251 +2015-08-12 12:00:00,0.19699999999999998,0.27399999999999997,0.251 +2015-08-12 13:00:00,0.19699999999999998,0.273,0.251 +2015-08-12 14:00:00,0.19699999999999998,0.272,0.251 +2015-08-12 15:00:00,0.198,0.272,0.251 +2015-08-12 16:00:00,0.198,0.271,0.251 +2015-08-12 17:00:00,0.198,0.271,0.251 +2015-08-12 18:00:00,0.198,0.27,0.25 +2015-08-12 19:00:00,0.198,0.27,0.25 +2015-08-12 20:00:00,0.198,0.27,0.25 +2015-08-12 21:00:00,0.198,0.27,0.251 +2015-08-12 22:00:00,0.198,0.26899999999999996,0.251 +2015-08-12 23:00:00,0.198,0.268,0.251 +2015-08-13 00:00:00,0.19699999999999998,0.268,0.251 +2015-08-13 01:00:00,0.19699999999999998,0.268,0.251 +2015-08-13 02:00:00,0.19699999999999998,0.268,0.251 +2015-08-13 03:00:00,0.19699999999999998,0.267,0.251 +2015-08-13 04:00:00,0.19699999999999998,0.266,0.251 +2015-08-13 05:00:00,0.19699999999999998,0.266,0.251 +2015-08-13 06:00:00,0.196,0.266,0.251 +2015-08-13 07:00:00,0.196,0.266,0.251 +2015-08-13 08:00:00,0.19699999999999998,0.266,0.251 +2015-08-13 09:00:00,0.196,0.266,0.251 +2015-08-13 10:00:00,0.196,0.266,0.251 +2015-08-13 11:00:00,0.196,0.265,0.251 +2015-08-13 12:00:00,0.196,0.264,0.251 +2015-08-13 13:00:00,0.196,0.264,0.25 +2015-08-13 14:00:00,0.196,0.264,0.25 +2015-08-13 15:00:00,0.196,0.263,0.25 +2015-08-13 16:00:00,0.196,0.263,0.25 +2015-08-13 17:00:00,0.196,0.263,0.25 +2015-08-13 18:00:00,0.196,0.262,0.25 +2015-08-13 19:00:00,0.196,0.261,0.25 +2015-08-13 20:00:00,0.196,0.261,0.25 +2015-08-13 21:00:00,0.196,0.261,0.25 +2015-08-13 22:00:00,0.196,0.261,0.25 +2015-08-13 23:00:00,0.196,0.261,0.25 +2015-08-14 00:00:00,0.196,0.261,0.25 +2015-08-14 01:00:00,0.196,0.261,0.25 +2015-08-14 02:00:00,0.196,0.261,0.25 +2015-08-14 03:00:00,0.196,0.261,0.25 +2015-08-14 04:00:00,0.196,0.261,0.25 +2015-08-14 05:00:00,0.196,0.26,0.25 +2015-08-14 06:00:00,0.196,0.26,0.25 +2015-08-14 07:00:00,0.196,0.259,0.251 +2015-08-14 08:00:00,0.196,0.259,0.251 +2015-08-14 09:00:00,0.196,0.259,0.25 +2015-08-14 10:00:00,0.196,0.259,0.25 +2015-08-14 11:00:00,0.196,0.259,0.25 +2015-08-14 12:00:00,0.196,0.259,0.25 +2015-08-14 13:00:00,0.196,0.259,0.25 +2015-08-14 14:00:00,0.196,0.259,0.25 +2015-08-14 15:00:00,0.196,0.259,0.25 +2015-08-14 16:00:00,0.196,0.259,0.25 +2015-08-14 17:00:00,0.196,0.259,0.25 +2015-08-14 18:00:00,0.196,0.258,0.25 +2015-08-14 19:00:00,0.196,0.258,0.25 +2015-08-14 20:00:00,0.196,0.258,0.25 +2015-08-14 21:00:00,0.196,0.258,0.25 +2015-08-14 22:00:00,0.19699999999999998,0.258,0.251 +2015-08-14 23:00:00,0.19699999999999998,0.258,0.251 +2015-08-15 00:00:00,0.19699999999999998,0.258,0.251 +2015-08-15 01:00:00,0.19699999999999998,0.258,0.251 +2015-08-15 02:00:00,0.19699999999999998,0.258,0.251 +2015-08-15 03:00:00,0.19699999999999998,0.258,0.251 +2015-08-15 04:00:00,0.196,0.258,0.251 +2015-08-15 05:00:00,0.196,0.258,0.251 +2015-08-15 06:00:00,0.196,0.257,0.251 +2015-08-15 07:00:00,0.196,0.256,0.251 +2015-08-15 08:00:00,0.196,0.256,0.251 +2015-08-15 09:00:00,0.196,0.256,0.251 +2015-08-15 10:00:00,0.196,0.256,0.251 +2015-08-15 11:00:00,0.196,0.256,0.251 +2015-08-15 12:00:00,0.195,0.256,0.25 +2015-08-15 13:00:00,0.195,0.256,0.25 +2015-08-15 14:00:00,0.195,0.256,0.25 +2015-08-15 15:00:00,0.195,0.254,0.25 +2015-08-15 16:00:00,0.195,0.254,0.25 +2015-08-15 17:00:00,0.195,0.253,0.25 +2015-08-15 18:00:00,0.195,0.253,0.25 +2015-08-15 19:00:00,0.195,0.253,0.25 +2015-08-15 20:00:00,0.195,0.253,0.25 +2015-08-15 21:00:00,0.19399999999999998,0.253,0.25 +2015-08-15 22:00:00,0.19399999999999998,0.253,0.25 +2015-08-15 23:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 00:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 01:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 02:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 03:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 04:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 05:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 06:00:00,0.19399999999999998,0.253,0.25 +2015-08-16 07:00:00,0.195,0.253,0.252 +2015-08-16 08:00:00,0.195,0.253,0.253 +2015-08-16 09:00:00,0.195,0.253,0.253 +2015-08-16 10:00:00,0.19399999999999998,0.253,0.254 +2015-08-16 11:00:00,0.19399999999999998,0.252,0.254 +2015-08-16 12:00:00,0.196,0.252,0.254 +2015-08-16 13:00:00,0.19899999999999998,0.251,0.254 +2015-08-16 14:00:00,0.21600000000000003,0.251,0.254 +2015-08-16 15:00:00,0.22699999999999998,0.251,0.255 +2015-08-16 16:00:00,0.23199999999999998,0.249,0.255 +2015-08-16 17:00:00,0.237,0.249,0.255 +2015-08-16 18:00:00,0.237,0.249,0.255 +2015-08-16 19:00:00,0.237,0.249,0.255 +2015-08-16 20:00:00,0.237,0.249,0.255 +2015-08-16 21:00:00,0.237,0.249,0.254 +2015-08-16 22:00:00,0.23600000000000002,0.249,0.255 +2015-08-16 23:00:00,0.237,0.248,0.254 +2015-08-17 00:00:00,0.23600000000000002,0.248,0.254 +2015-08-17 01:00:00,0.23399999999999999,0.248,0.255 +2015-08-17 02:00:00,0.23199999999999998,0.248,0.255 +2015-08-17 03:00:00,0.231,0.248,0.255 +2015-08-17 04:00:00,0.23,0.248,0.255 +2015-08-17 05:00:00,0.23,0.248,0.255 +2015-08-17 06:00:00,0.22899999999999998,0.248,0.255 +2015-08-17 07:00:00,0.228,0.247,0.255 +2015-08-17 08:00:00,0.22899999999999998,0.247,0.255 +2015-08-17 09:00:00,0.22899999999999998,0.247,0.255 +2015-08-17 10:00:00,0.23,0.247,0.255 +2015-08-17 11:00:00,0.233,0.247,0.255 +2015-08-17 12:00:00,0.23399999999999999,0.247,0.255 +2015-08-17 13:00:00,0.235,0.247,0.255 +2015-08-17 14:00:00,0.23600000000000002,0.24600000000000002,0.255 +2015-08-17 15:00:00,0.24,0.24600000000000002,0.256 +2015-08-17 16:00:00,0.263,0.245,0.256 +2015-08-17 17:00:00,0.26899999999999996,0.244,0.256 +2015-08-17 18:00:00,0.27,0.244,0.256 +2015-08-17 19:00:00,0.27,0.244,0.256 +2015-08-17 20:00:00,0.26899999999999996,0.244,0.256 +2015-08-17 21:00:00,0.267,0.244,0.256 +2015-08-17 22:00:00,0.266,0.244,0.256 +2015-08-17 23:00:00,0.265,0.244,0.256 +2015-08-18 00:00:00,0.263,0.244,0.256 +2015-08-18 01:00:00,0.262,0.244,0.256 +2015-08-18 02:00:00,0.261,0.244,0.256 +2015-08-18 03:00:00,0.26,0.244,0.255 +2015-08-18 04:00:00,0.259,0.244,0.255 +2015-08-18 05:00:00,0.259,0.244,0.256 +2015-08-18 06:00:00,0.258,0.244,0.255 +2015-08-18 07:00:00,0.258,0.244,0.255 +2015-08-18 08:00:00,0.257,0.244,0.255 +2015-08-18 09:00:00,0.257,0.244,0.255 +2015-08-18 10:00:00,0.257,0.244,0.255 +2015-08-18 11:00:00,0.256,0.244,0.255 +2015-08-18 12:00:00,0.258,0.244,0.255 +2015-08-18 13:00:00,0.26,0.244,0.255 +2015-08-18 14:00:00,0.261,0.244,0.254 +2015-08-18 15:00:00,0.26,0.244,0.254 +2015-08-18 16:00:00,0.259,0.244,0.254 +2015-08-18 17:00:00,0.258,0.244,0.253 +2015-08-18 18:00:00,0.258,0.244,0.253 +2015-08-18 19:00:00,0.258,0.244,0.253 +2015-08-18 20:00:00,0.257,0.244,0.253 +2015-08-18 21:00:00,0.257,0.244,0.253 +2015-08-18 22:00:00,0.257,0.244,0.254 +2015-08-18 23:00:00,0.257,0.244,0.254 +2015-08-19 00:00:00,0.257,0.244,0.254 +2015-08-19 01:00:00,0.256,0.244,0.254 +2015-08-19 02:00:00,0.256,0.244,0.254 +2015-08-19 03:00:00,0.256,0.242,0.254 +2015-08-19 04:00:00,0.256,0.243,0.253 +2015-08-19 05:00:00,0.255,0.243,0.254 +2015-08-19 06:00:00,0.255,0.244,0.254 +2015-08-19 07:00:00,0.255,0.244,0.254 +2015-08-19 08:00:00,0.255,0.244,0.254 +2015-08-19 09:00:00,0.255,0.243,0.254 +2015-08-19 10:00:00,0.254,0.242,0.253 +2015-08-19 11:00:00,0.254,0.242,0.253 +2015-08-19 12:00:00,0.252,0.242,0.253 +2015-08-19 13:00:00,0.251,0.242,0.253 +2015-08-19 14:00:00,0.25,0.242,0.253 +2015-08-19 15:00:00,0.249,0.242,0.253 +2015-08-19 16:00:00,0.248,0.242,0.253 +2015-08-19 17:00:00,0.248,0.242,0.253 +2015-08-19 18:00:00,0.248,0.242,0.253 +2015-08-19 19:00:00,0.247,0.242,0.253 +2015-08-19 20:00:00,0.247,0.242,0.253 +2015-08-19 21:00:00,0.247,0.242,0.253 +2015-08-19 22:00:00,0.247,0.242,0.253 +2015-08-19 23:00:00,0.247,0.242,0.253 +2015-08-20 00:00:00,0.247,0.242,0.253 +2015-08-20 01:00:00,0.247,0.242,0.253 +2015-08-20 02:00:00,0.247,0.242,0.253 +2015-08-20 03:00:00,0.247,0.242,0.253 +2015-08-20 04:00:00,0.248,0.242,0.253 +2015-08-20 05:00:00,0.249,0.242,0.253 +2015-08-20 06:00:00,0.249,0.242,0.253 +2015-08-20 07:00:00,0.247,0.242,0.253 +2015-08-20 08:00:00,0.24600000000000002,0.242,0.253 +2015-08-20 09:00:00,0.247,0.242,0.253 +2015-08-20 10:00:00,0.248,0.242,0.253 +2015-08-20 11:00:00,0.248,0.242,0.253 +2015-08-20 12:00:00,0.247,0.242,0.253 +2015-08-20 13:00:00,0.245,0.242,0.253 +2015-08-20 14:00:00,0.244,0.242,0.253 +2015-08-20 15:00:00,0.243,0.242,0.253 +2015-08-20 16:00:00,0.242,0.242,0.253 +2015-08-20 17:00:00,0.242,0.24100000000000002,0.253 +2015-08-20 18:00:00,0.243,0.24100000000000002,0.253 +2015-08-20 19:00:00,0.244,0.24100000000000002,0.253 +2015-08-20 20:00:00,0.248,0.24100000000000002,0.253 +2015-08-20 21:00:00,0.248,0.24100000000000002,0.253 +2015-08-20 22:00:00,0.248,0.24100000000000002,0.253 +2015-08-20 23:00:00,0.248,0.24100000000000002,0.253 +2015-08-21 00:00:00,0.248,0.24100000000000002,0.253 +2015-08-21 01:00:00,0.247,0.24100000000000002,0.253 +2015-08-21 02:00:00,0.248,0.24100000000000002,0.253 +2015-08-21 03:00:00,0.247,0.24100000000000002,0.253 +2015-08-21 04:00:00,0.247,0.24100000000000002,0.253 +2015-08-21 05:00:00,0.247,0.24100000000000002,0.253 +2015-08-21 06:00:00,0.247,0.24100000000000002,0.253 +2015-08-21 07:00:00,0.248,0.24100000000000002,0.253 +2015-08-21 08:00:00,0.247,0.24100000000000002,0.253 +2015-08-21 09:00:00,0.24600000000000002,0.24100000000000002,0.253 +2015-08-21 10:00:00,0.24600000000000002,0.24100000000000002,0.253 +2015-08-21 11:00:00,0.245,0.24100000000000002,0.253 +2015-08-21 12:00:00,0.244,0.24100000000000002,0.253 +2015-08-21 13:00:00,0.243,0.24100000000000002,0.253 +2015-08-21 14:00:00,0.242,0.24100000000000002,0.253 +2015-08-21 15:00:00,0.24100000000000002,0.24100000000000002,0.253 +2015-08-21 16:00:00,0.24,0.24100000000000002,0.253 +2015-08-21 17:00:00,0.24,0.24100000000000002,0.252 +2015-08-21 18:00:00,0.239,0.24,0.252 +2015-08-21 19:00:00,0.239,0.24,0.253 +2015-08-21 20:00:00,0.239,0.24,0.252 +2015-08-21 21:00:00,0.239,0.24,0.252 +2015-08-21 22:00:00,0.239,0.24,0.253 +2015-08-21 23:00:00,0.239,0.239,0.253 +2015-08-22 00:00:00,0.239,0.239,0.253 +2015-08-22 01:00:00,0.23800000000000002,0.239,0.253 +2015-08-22 02:00:00,0.23800000000000002,0.239,0.253 +2015-08-22 03:00:00,0.23800000000000002,0.239,0.253 +2015-08-22 04:00:00,0.23800000000000002,0.255,0.253 +2015-08-22 05:00:00,0.23800000000000002,0.27,0.253 +2015-08-22 06:00:00,0.23800000000000002,0.263,0.253 +2015-08-22 07:00:00,0.23800000000000002,0.262,0.253 +2015-08-22 08:00:00,0.23800000000000002,0.263,0.253 +2015-08-22 09:00:00,0.23800000000000002,0.263,0.253 +2015-08-22 10:00:00,0.239,0.262,0.253 +2015-08-22 11:00:00,0.23800000000000002,0.261,0.253 +2015-08-22 12:00:00,0.237,0.261,0.253 +2015-08-22 13:00:00,0.237,0.261,0.252 +2015-08-22 14:00:00,0.23600000000000002,0.261,0.252 +2015-08-22 15:00:00,0.237,0.261,0.252 +2015-08-22 16:00:00,0.23600000000000002,0.261,0.252 +2015-08-22 17:00:00,0.23600000000000002,0.261,0.252 +2015-08-22 18:00:00,0.23600000000000002,0.261,0.252 +2015-08-22 19:00:00,0.23600000000000002,0.261,0.252 +2015-08-22 20:00:00,0.23600000000000002,0.26,0.252 +2015-08-22 21:00:00,0.235,0.259,0.252 +2015-08-22 22:00:00,0.235,0.259,0.252 +2015-08-22 23:00:00,0.235,0.259,0.252 +2015-08-23 00:00:00,0.235,0.259,0.252 +2015-08-23 01:00:00,0.235,0.259,0.252 +2015-08-23 02:00:00,0.235,0.259,0.252 +2015-08-23 03:00:00,0.235,0.259,0.252 +2015-08-23 04:00:00,0.235,0.259,0.252 +2015-08-23 05:00:00,0.23399999999999999,0.259,0.252 +2015-08-23 06:00:00,0.23399999999999999,0.259,0.252 +2015-08-23 07:00:00,0.23399999999999999,0.259,0.252 +2015-08-23 08:00:00,0.23399999999999999,0.259,0.252 +2015-08-23 09:00:00,0.23600000000000002,0.259,0.252 +2015-08-23 10:00:00,0.235,0.259,0.252 +2015-08-23 11:00:00,0.23399999999999999,0.258,0.252 +2015-08-23 12:00:00,0.233,0.258,0.252 +2015-08-23 13:00:00,0.23199999999999998,0.258,0.252 +2015-08-23 14:00:00,0.23199999999999998,0.258,0.252 +2015-08-23 15:00:00,0.231,0.258,0.252 +2015-08-23 16:00:00,0.231,0.256,0.251 +2015-08-23 17:00:00,0.23,0.256,0.251 +2015-08-23 18:00:00,0.23,0.256,0.251 +2015-08-23 19:00:00,0.23,0.256,0.251 +2015-08-23 20:00:00,0.23,0.256,0.251 +2015-08-23 21:00:00,0.23,0.256,0.251 +2015-08-23 22:00:00,0.231,0.256,0.253 +2015-08-23 23:00:00,0.23,0.256,0.254 +2015-08-24 00:00:00,0.23,0.256,0.254 +2015-08-24 01:00:00,0.23,0.256,0.254 +2015-08-24 02:00:00,0.23,0.256,0.255 +2015-08-24 03:00:00,0.23,0.256,0.255 +2015-08-24 04:00:00,0.231,0.256,0.254 +2015-08-24 05:00:00,0.231,0.256,0.255 +2015-08-24 06:00:00,0.231,0.256,0.255 +2015-08-24 07:00:00,0.231,0.256,0.255 +2015-08-24 08:00:00,0.231,0.256,0.255 +2015-08-24 09:00:00,0.231,0.256,0.255 +2015-08-24 10:00:00,0.231,0.256,0.254 +2015-08-24 11:00:00,0.23199999999999998,0.256,0.254 +2015-08-24 12:00:00,0.23199999999999998,0.256,0.254 +2015-08-24 13:00:00,0.23199999999999998,0.256,0.253 +2015-08-24 14:00:00,0.23199999999999998,0.256,0.253 +2015-08-24 15:00:00,0.23199999999999998,0.256,0.253 +2015-08-24 16:00:00,0.23199999999999998,0.255,0.253 +2015-08-24 17:00:00,0.231,0.254,0.254 +2015-08-24 18:00:00,0.23,0.254,0.255 +2015-08-24 19:00:00,0.231,0.254,0.255 +2015-08-24 20:00:00,0.231,0.254,0.255 +2015-08-24 21:00:00,0.231,0.254,0.255 +2015-08-24 22:00:00,0.231,0.254,0.255 +2015-08-24 23:00:00,0.231,0.254,0.255 +2015-08-25 00:00:00,0.226,0.254,0.256 +2015-08-25 01:00:00,0.226,0.255,0.256 +2015-08-25 02:00:00,0.226,0.255,0.256 +2015-08-25 03:00:00,0.226,0.255,0.256 +2015-08-25 04:00:00,0.226,0.255,0.256 +2015-08-25 05:00:00,0.22699999999999998,0.255,0.256 +2015-08-25 06:00:00,0.22699999999999998,0.255,0.256 +2015-08-25 07:00:00,0.22699999999999998,0.254,0.255 +2015-08-25 08:00:00,0.22699999999999998,0.254,0.255 +2015-08-25 09:00:00,0.228,0.254,0.255 +2015-08-25 10:00:00,0.23,0.254,0.255 +2015-08-25 11:00:00,0.231,0.254,0.255 +2015-08-25 12:00:00,0.231,0.254,0.254 +2015-08-25 13:00:00,0.231,0.254,0.254 +2015-08-25 14:00:00,0.231,0.254,0.253 +2015-08-25 15:00:00,0.231,0.253,0.253 +2015-08-25 16:00:00,0.231,0.253,0.253 +2015-08-25 17:00:00,0.23,0.253,0.253 +2015-08-25 18:00:00,0.23,0.252,0.253 +2015-08-25 19:00:00,0.23,0.251,0.252 +2015-08-25 20:00:00,0.23,0.251,0.253 +2015-08-25 21:00:00,0.23,0.251,0.253 +2015-08-25 22:00:00,0.23,0.252,0.253 +2015-08-25 23:00:00,0.23,0.253,0.253 +2015-08-26 00:00:00,0.23,0.254,0.253 +2015-08-26 01:00:00,0.23,0.254,0.253 +2015-08-26 02:00:00,0.23,0.254,0.253 +2015-08-26 03:00:00,0.23,0.256,0.253 +2015-08-26 04:00:00,0.23,0.259,0.253 +2015-08-26 05:00:00,0.23,0.259,0.253 +2015-08-26 06:00:00,0.23,0.258,0.253 +2015-08-26 07:00:00,0.23,0.258,0.253 +2015-08-26 08:00:00,0.23,0.258,0.253 +2015-08-26 09:00:00,0.23,0.256,0.253 +2015-08-26 10:00:00,0.22899999999999998,0.254,0.253 +2015-08-26 11:00:00,0.228,0.252,0.253 +2015-08-26 12:00:00,0.228,0.251,0.252 +2015-08-26 13:00:00,0.228,0.251,0.252 +2015-08-26 14:00:00,0.228,0.25,0.252 +2015-08-26 15:00:00,0.22699999999999998,0.25,0.252 +2015-08-26 16:00:00,0.22699999999999998,0.249,0.252 +2015-08-26 17:00:00,0.22699999999999998,0.252,0.252 +2015-08-26 18:00:00,0.22699999999999998,0.257,0.252 +2015-08-26 19:00:00,0.22699999999999998,0.264,0.252 +2015-08-26 20:00:00,0.22699999999999998,0.265,0.252 +2015-08-26 21:00:00,0.22699999999999998,0.265,0.252 +2015-08-26 22:00:00,0.22699999999999998,0.264,0.252 +2015-08-26 23:00:00,0.22699999999999998,0.266,0.252 +2015-08-27 00:00:00,0.22699999999999998,0.266,0.252 +2015-08-27 01:00:00,0.22699999999999998,0.268,0.252 +2015-08-27 02:00:00,0.226,0.27,0.252 +2015-08-27 03:00:00,0.22699999999999998,0.268,0.252 +2015-08-27 04:00:00,0.226,0.26899999999999996,0.252 +2015-08-27 05:00:00,0.226,0.268,0.253 +2015-08-27 06:00:00,0.226,0.266,0.252 +2015-08-27 07:00:00,0.226,0.266,0.252 +2015-08-27 08:00:00,0.226,0.266,0.252 +2015-08-27 09:00:00,0.226,0.266,0.252 +2015-08-27 10:00:00,0.226,0.265,0.252 +2015-08-27 11:00:00,0.226,0.262,0.252 +2015-08-27 12:00:00,0.226,0.261,0.252 +2015-08-27 13:00:00,0.226,0.259,0.252 +2015-08-27 14:00:00,0.226,0.259,0.252 +2015-08-27 15:00:00,0.226,0.259,0.252 +2015-08-27 16:00:00,0.226,0.259,0.252 +2015-08-27 17:00:00,0.226,0.259,0.252 +2015-08-27 18:00:00,0.226,0.259,0.252 +2015-08-27 19:00:00,0.226,0.259,0.253 +2015-08-27 20:00:00,0.225,0.259,0.254 +2015-08-27 21:00:00,0.225,0.259,0.255 +2015-08-27 22:00:00,0.223,0.259,0.256 +2015-08-27 23:00:00,0.222,0.259,0.256 +2015-08-28 00:00:00,0.222,0.259,0.256 +2015-08-28 01:00:00,0.231,0.259,0.256 +2015-08-28 02:00:00,0.245,0.259,0.256 +2015-08-28 03:00:00,0.248,0.259,0.256 +2015-08-28 04:00:00,0.249,0.259,0.256 +2015-08-28 05:00:00,0.249,0.259,0.256 +2015-08-28 06:00:00,0.249,0.259,0.256 +2015-08-28 07:00:00,0.249,0.259,0.256 +2015-08-28 08:00:00,0.249,0.259,0.256 +2015-08-28 09:00:00,0.249,0.259,0.256 +2015-08-28 10:00:00,0.25,0.259,0.256 +2015-08-28 11:00:00,0.251,0.259,0.256 +2015-08-28 12:00:00,0.253,0.259,0.255 +2015-08-28 13:00:00,0.254,0.258,0.255 +2015-08-28 14:00:00,0.254,0.258,0.255 +2015-08-28 15:00:00,0.254,0.258,0.254 +2015-08-28 16:00:00,0.254,0.258,0.254 +2015-08-28 17:00:00,0.253,0.257,0.254 +2015-08-28 18:00:00,0.253,0.256,0.254 +2015-08-28 19:00:00,0.252,0.256,0.254 +2015-08-28 20:00:00,0.252,0.256,0.254 +2015-08-28 21:00:00,0.252,0.256,0.254 +2015-08-28 22:00:00,0.252,0.256,0.254 +2015-08-28 23:00:00,0.252,0.257,0.254 +2015-08-29 00:00:00,0.251,0.258,0.254 +2015-08-29 01:00:00,0.251,0.258,0.254 +2015-08-29 02:00:00,0.251,0.258,0.254 +2015-08-29 03:00:00,0.251,0.258,0.254 +2015-08-29 04:00:00,0.251,0.258,0.254 +2015-08-29 05:00:00,0.251,0.257,0.254 +2015-08-29 06:00:00,0.251,0.257,0.254 +2015-08-29 07:00:00,0.251,0.256,0.254 +2015-08-29 08:00:00,0.251,0.256,0.254 +2015-08-29 09:00:00,0.251,0.256,0.254 +2015-08-29 10:00:00,0.25,0.256,0.254 +2015-08-29 11:00:00,0.25,0.256,0.254 +2015-08-29 12:00:00,0.249,0.256,0.254 +2015-08-29 13:00:00,0.248,0.256,0.253 +2015-08-29 14:00:00,0.247,0.256,0.253 +2015-08-29 15:00:00,0.24600000000000002,0.256,0.253 +2015-08-29 16:00:00,0.24600000000000002,0.255,0.253 +2015-08-29 17:00:00,0.245,0.255,0.253 +2015-08-29 18:00:00,0.245,0.255,0.253 +2015-08-29 19:00:00,0.245,0.254,0.253 +2015-08-29 20:00:00,0.245,0.254,0.253 +2015-08-29 21:00:00,0.245,0.254,0.253 +2015-08-29 22:00:00,0.245,0.254,0.253 +2015-08-29 23:00:00,0.245,0.255,0.253 +2015-08-30 00:00:00,0.245,0.255,0.254 +2015-08-30 01:00:00,0.245,0.255,0.254 +2015-08-30 02:00:00,0.245,0.255,0.254 +2015-08-30 03:00:00,0.245,0.255,0.254 +2015-08-30 04:00:00,0.245,0.255,0.254 +2015-08-30 05:00:00,0.245,0.255,0.254 +2015-08-30 06:00:00,0.245,0.254,0.254 +2015-08-30 07:00:00,0.245,0.254,0.254 +2015-08-30 08:00:00,0.245,0.254,0.254 +2015-08-30 09:00:00,0.245,0.254,0.254 +2015-08-30 10:00:00,0.245,0.255,0.254 +2015-08-30 11:00:00,0.244,0.254,0.254 +2015-08-30 12:00:00,0.243,0.254,0.254 +2015-08-30 13:00:00,0.243,0.254,0.254 +2015-08-30 14:00:00,0.242,0.254,0.254 +2015-08-30 15:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 16:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 17:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 18:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 19:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 20:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 21:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 22:00:00,0.24100000000000002,0.253,0.254 +2015-08-30 23:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 00:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 01:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 02:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 03:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 04:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 05:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 06:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 07:00:00,0.24100000000000002,0.253,0.254 +2015-08-31 08:00:00,0.24100000000000002,0.253,0.255 +2015-08-31 09:00:00,0.24,0.253,0.255 +2015-08-31 10:00:00,0.24,0.253,0.255 +2015-08-31 11:00:00,0.239,0.253,0.254 +2015-08-31 12:00:00,0.24,0.253,0.254 +2015-08-31 13:00:00,0.24,0.253,0.254 +2015-08-31 14:00:00,0.239,0.253,0.254 +2015-08-31 15:00:00,0.23800000000000002,0.253,0.254 +2015-08-31 16:00:00,0.237,0.253,0.254 +2015-08-31 17:00:00,0.237,0.253,0.254 +2015-08-31 18:00:00,0.237,0.252,0.254 +2015-08-31 19:00:00,0.237,0.252,0.254 +2015-08-31 20:00:00,0.237,0.252,0.254 +2015-08-31 21:00:00,0.237,0.252,0.254 +2015-08-31 22:00:00,0.237,0.252,0.254 +2015-08-31 23:00:00,0.237,0.252,0.254 +2015-09-01 00:00:00,0.237,0.252,0.254 +2015-09-01 01:00:00,0.23600000000000002,0.252,0.254 +2015-09-01 02:00:00,0.237,0.252,0.254 +2015-09-01 03:00:00,0.23600000000000002,0.252,0.254 +2015-09-01 04:00:00,0.23600000000000002,0.252,0.254 +2015-09-01 05:00:00,0.23600000000000002,0.252,0.255 +2015-09-01 06:00:00,0.23600000000000002,0.252,0.255 +2015-09-01 07:00:00,0.23600000000000002,0.252,0.255 +2015-09-01 08:00:00,0.23600000000000002,0.252,0.257 +2015-09-01 09:00:00,0.23600000000000002,0.251,0.257 +2015-09-01 10:00:00,0.237,0.251,0.256 +2015-09-01 11:00:00,0.23600000000000002,0.251,0.257 +2015-09-01 12:00:00,0.231,0.251,0.258 +2015-09-01 13:00:00,0.231,0.251,0.258 +2015-09-01 14:00:00,0.231,0.251,0.258 +2015-09-01 15:00:00,0.23399999999999999,0.251,0.258 +2015-09-01 16:00:00,0.237,0.251,0.259 +2015-09-01 17:00:00,0.239,0.251,0.26 +2015-09-01 18:00:00,0.24100000000000002,0.251,0.26 +2015-09-01 19:00:00,0.24100000000000002,0.251,0.26 +2015-09-01 20:00:00,0.242,0.251,0.26 +2015-09-01 21:00:00,0.243,0.25,0.26 +2015-09-01 22:00:00,0.244,0.25,0.26 +2015-09-01 23:00:00,0.245,0.25,0.26 +2015-09-02 00:00:00,0.245,0.251,0.261 +2015-09-02 01:00:00,0.24600000000000002,0.251,0.261 +2015-09-02 02:00:00,0.24600000000000002,0.251,0.261 +2015-09-02 03:00:00,0.247,0.251,0.261 +2015-09-02 04:00:00,0.247,0.251,0.261 +2015-09-02 05:00:00,0.248,0.251,0.261 +2015-09-02 06:00:00,0.248,0.251,0.26 +2015-09-02 07:00:00,0.24600000000000002,0.251,0.261 +2015-09-02 08:00:00,0.24600000000000002,0.251,0.261 +2015-09-02 09:00:00,0.248,0.251,0.26 +2015-09-02 10:00:00,0.249,0.25,0.26 +2015-09-02 11:00:00,0.252,0.251,0.26 +2015-09-02 12:00:00,0.253,0.25,0.259 +2015-09-02 13:00:00,0.253,0.251,0.259 +2015-09-02 14:00:00,0.252,0.251,0.258 +2015-09-02 15:00:00,0.252,0.251,0.258 +2015-09-02 16:00:00,0.252,0.25,0.258 +2015-09-02 17:00:00,0.252,0.25,0.258 +2015-09-02 18:00:00,0.252,0.249,0.258 +2015-09-02 19:00:00,0.252,0.249,0.258 +2015-09-02 20:00:00,0.252,0.249,0.258 +2015-09-02 21:00:00,0.252,0.249,0.258 +2015-09-02 22:00:00,0.252,0.249,0.258 +2015-09-02 23:00:00,0.252,0.25,0.258 +2015-09-03 00:00:00,0.252,0.25,0.258 +2015-09-03 01:00:00,0.252,0.251,0.258 +2015-09-03 02:00:00,0.252,0.251,0.258 +2015-09-03 03:00:00,0.252,0.251,0.258 +2015-09-03 04:00:00,0.252,0.251,0.258 +2015-09-03 05:00:00,0.252,0.251,0.258 +2015-09-03 06:00:00,0.252,0.251,0.258 +2015-09-03 07:00:00,0.252,0.251,0.258 +2015-09-03 08:00:00,0.252,0.25,0.258 +2015-09-03 09:00:00,0.252,0.25,0.258 +2015-09-03 10:00:00,0.252,0.25,0.258 +2015-09-03 11:00:00,0.251,0.25,0.258 +2015-09-03 12:00:00,0.251,0.249,0.258 +2015-09-03 13:00:00,0.25,0.249,0.258 +2015-09-03 14:00:00,0.249,0.249,0.257 +2015-09-03 15:00:00,0.249,0.249,0.257 +2015-09-03 16:00:00,0.249,0.249,0.257 +2015-09-03 17:00:00,0.248,0.249,0.257 +2015-09-03 18:00:00,0.248,0.249,0.257 +2015-09-03 19:00:00,0.248,0.249,0.257 +2015-09-03 20:00:00,0.248,0.249,0.257 +2015-09-03 21:00:00,0.248,0.248,0.257 +2015-09-03 22:00:00,0.248,0.249,0.257 +2015-09-03 23:00:00,0.248,0.249,0.257 +2015-09-04 00:00:00,0.248,0.249,0.257 +2015-09-04 01:00:00,0.248,0.249,0.257 +2015-09-04 02:00:00,0.248,0.249,0.257 +2015-09-04 03:00:00,0.248,0.249,0.257 +2015-09-04 04:00:00,0.248,0.249,0.257 +2015-09-04 05:00:00,0.248,0.249,0.257 +2015-09-04 06:00:00,0.248,0.249,0.257 +2015-09-04 07:00:00,0.248,0.248,0.257 +2015-09-04 08:00:00,0.248,0.248,0.257 +2015-09-04 09:00:00,0.248,0.248,0.257 +2015-09-04 10:00:00,0.248,0.247,0.257 +2015-09-04 11:00:00,0.248,0.247,0.257 +2015-09-04 12:00:00,0.247,0.247,0.257 +2015-09-04 13:00:00,0.24600000000000002,0.247,0.257 +2015-09-04 14:00:00,0.24600000000000002,0.247,0.257 +2015-09-04 15:00:00,0.245,0.247,0.257 +2015-09-04 16:00:00,0.245,0.24600000000000002,0.257 +2015-09-04 17:00:00,0.244,0.24600000000000002,0.257 +2015-09-04 18:00:00,0.244,0.24600000000000002,0.257 +2015-09-04 19:00:00,0.244,0.24600000000000002,0.257 +2015-09-04 20:00:00,0.244,0.24600000000000002,0.257 +2015-09-04 21:00:00,0.244,0.24600000000000002,0.257 +2015-09-04 22:00:00,0.244,0.24600000000000002,0.257 +2015-09-04 23:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 00:00:00,0.245,0.24600000000000002,0.257 +2015-09-05 01:00:00,0.245,0.24600000000000002,0.257 +2015-09-05 02:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 03:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 04:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 05:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 06:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 07:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 08:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 09:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 10:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 11:00:00,0.244,0.24600000000000002,0.257 +2015-09-05 12:00:00,0.243,0.24600000000000002,0.256 +2015-09-05 13:00:00,0.243,0.245,0.256 +2015-09-05 14:00:00,0.243,0.245,0.256 +2015-09-05 15:00:00,0.242,0.244,0.256 +2015-09-05 16:00:00,0.242,0.244,0.256 +2015-09-05 17:00:00,0.24100000000000002,0.244,0.257 +2015-09-05 18:00:00,0.24100000000000002,0.243,0.258 +2015-09-05 19:00:00,0.24100000000000002,0.242,0.258 +2015-09-05 20:00:00,0.24100000000000002,0.242,0.258 +2015-09-05 21:00:00,0.24,0.242,0.258 +2015-09-05 22:00:00,0.24,0.242,0.258 +2015-09-05 23:00:00,0.24100000000000002,0.243,0.258 +2015-09-06 00:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 01:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 02:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 03:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 04:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 05:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 06:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 07:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 08:00:00,0.24100000000000002,0.244,0.258 +2015-09-06 09:00:00,0.242,0.243,0.258 +2015-09-06 10:00:00,0.242,0.243,0.258 +2015-09-06 11:00:00,0.242,0.242,0.258 +2015-09-06 12:00:00,0.242,0.242,0.257 +2015-09-06 13:00:00,0.242,0.242,0.257 +2015-09-06 14:00:00,0.24100000000000002,0.242,0.256 +2015-09-06 15:00:00,0.24100000000000002,0.242,0.256 +2015-09-06 16:00:00,0.24,0.242,0.256 +2015-09-06 17:00:00,0.24,0.242,0.256 +2015-09-06 18:00:00,0.24,0.242,0.256 +2015-09-06 19:00:00,0.24,0.242,0.256 +2015-09-06 20:00:00,0.24,0.242,0.256 +2015-09-06 21:00:00,0.24,0.242,0.256 +2015-09-06 22:00:00,0.24,0.242,0.256 +2015-09-06 23:00:00,0.24,0.242,0.256 +2015-09-07 00:00:00,0.24,0.242,0.256 +2015-09-07 01:00:00,0.24,0.242,0.256 +2015-09-07 02:00:00,0.24,0.242,0.256 +2015-09-07 03:00:00,0.24,0.242,0.256 +2015-09-07 04:00:00,0.24,0.242,0.256 +2015-09-07 05:00:00,0.24,0.242,0.256 +2015-09-07 06:00:00,0.24,0.242,0.256 +2015-09-07 07:00:00,0.24,0.242,0.256 +2015-09-07 08:00:00,0.24,0.242,0.256 +2015-09-07 09:00:00,0.24,0.242,0.256 +2015-09-07 10:00:00,0.24,0.242,0.256 +2015-09-07 11:00:00,0.24,0.242,0.256 +2015-09-07 12:00:00,0.239,0.242,0.256 +2015-09-07 13:00:00,0.239,0.242,0.256 +2015-09-07 14:00:00,0.239,0.242,0.256 +2015-09-07 15:00:00,0.239,0.242,0.256 +2015-09-07 16:00:00,0.239,0.242,0.256 +2015-09-07 17:00:00,0.23800000000000002,0.242,0.256 +2015-09-07 18:00:00,0.23399999999999999,0.242,0.258 +2015-09-07 19:00:00,0.23399999999999999,0.242,0.258 +2015-09-07 20:00:00,0.235,0.242,0.258 +2015-09-07 21:00:00,0.235,0.242,0.258 +2015-09-07 22:00:00,0.235,0.242,0.258 +2015-09-07 23:00:00,0.23600000000000002,0.243,0.258 +2015-09-08 00:00:00,0.23600000000000002,0.244,0.258 +2015-09-08 01:00:00,0.23600000000000002,0.244,0.258 +2015-09-08 02:00:00,0.23600000000000002,0.244,0.258 +2015-09-08 03:00:00,0.23600000000000002,0.244,0.258 +2015-09-08 04:00:00,0.237,0.244,0.258 +2015-09-08 05:00:00,0.237,0.244,0.258 +2015-09-08 06:00:00,0.237,0.244,0.258 +2015-09-08 07:00:00,0.237,0.244,0.258 +2015-09-08 08:00:00,0.237,0.242,0.258 +2015-09-08 09:00:00,0.237,0.242,0.258 +2015-09-08 10:00:00,0.23800000000000002,0.242,0.258 +2015-09-08 11:00:00,0.239,0.242,0.258 +2015-09-08 12:00:00,0.239,0.242,0.257 +2015-09-08 13:00:00,0.239,0.242,0.257 +2015-09-08 14:00:00,0.239,0.242,0.257 +2015-09-08 15:00:00,0.23800000000000002,0.242,0.256 +2015-09-08 16:00:00,0.23800000000000002,0.242,0.256 +2015-09-08 17:00:00,0.23800000000000002,0.242,0.256 +2015-09-08 18:00:00,0.23800000000000002,0.242,0.256 +2015-09-08 19:00:00,0.23800000000000002,0.242,0.256 +2015-09-08 20:00:00,0.23800000000000002,0.242,0.256 +2015-09-08 21:00:00,0.23800000000000002,0.243,0.256 +2015-09-08 22:00:00,0.237,0.243,0.256 +2015-09-08 23:00:00,0.23800000000000002,0.243,0.256 +2015-09-09 00:00:00,0.23800000000000002,0.244,0.256 +2015-09-09 01:00:00,0.23800000000000002,0.244,0.256 +2015-09-09 02:00:00,0.23800000000000002,0.244,0.256 +2015-09-09 03:00:00,0.23800000000000002,0.244,0.257 +2015-09-09 04:00:00,0.23800000000000002,0.244,0.257 +2015-09-09 05:00:00,0.23800000000000002,0.244,0.257 +2015-09-09 06:00:00,0.237,0.243,0.256 +2015-09-09 07:00:00,0.23800000000000002,0.243,0.256 +2015-09-09 08:00:00,0.237,0.243,0.257 +2015-09-09 09:00:00,0.237,0.242,0.257 +2015-09-09 10:00:00,0.237,0.242,0.257 +2015-09-09 11:00:00,0.237,0.242,0.256 +2015-09-09 12:00:00,0.237,0.242,0.256 +2015-09-09 13:00:00,0.23600000000000002,0.242,0.256 +2015-09-09 14:00:00,0.23600000000000002,0.242,0.256 +2015-09-09 15:00:00,0.235,0.242,0.256 +2015-09-09 16:00:00,0.235,0.242,0.256 +2015-09-09 17:00:00,0.235,0.242,0.256 +2015-09-09 18:00:00,0.235,0.242,0.256 +2015-09-09 19:00:00,0.23399999999999999,0.242,0.256 +2015-09-09 20:00:00,0.23399999999999999,0.242,0.256 +2015-09-09 21:00:00,0.23399999999999999,0.242,0.256 +2015-09-09 22:00:00,0.23399999999999999,0.242,0.256 +2015-09-09 23:00:00,0.23399999999999999,0.242,0.256 +2015-09-10 00:00:00,0.23399999999999999,0.242,0.256 +2015-09-10 01:00:00,0.23399999999999999,0.242,0.256 +2015-09-10 02:00:00,0.23399999999999999,0.242,0.256 +2015-09-10 03:00:00,0.23399999999999999,0.242,0.256 +2015-09-10 04:00:00,0.23399999999999999,0.242,0.256 +2015-09-10 05:00:00,0.233,0.242,0.256 +2015-09-10 06:00:00,0.233,0.242,0.256 +2015-09-10 07:00:00,0.233,0.242,0.256 +2015-09-10 08:00:00,0.233,0.242,0.256 +2015-09-10 09:00:00,0.233,0.242,0.256 +2015-09-10 10:00:00,0.23399999999999999,0.242,0.256 +2015-09-10 11:00:00,0.233,0.242,0.256 +2015-09-10 12:00:00,0.233,0.242,0.256 +2015-09-10 13:00:00,0.233,0.242,0.255 +2015-09-10 14:00:00,0.23199999999999998,0.242,0.255 +2015-09-10 15:00:00,0.23199999999999998,0.242,0.255 +2015-09-10 16:00:00,0.231,0.242,0.255 +2015-09-10 17:00:00,0.231,0.242,0.255 +2015-09-10 18:00:00,0.231,0.242,0.255 +2015-09-10 19:00:00,0.231,0.244,0.255 +2015-09-10 20:00:00,0.231,0.244,0.255 +2015-09-10 21:00:00,0.231,0.244,0.255 +2015-09-10 22:00:00,0.231,0.244,0.255 +2015-09-10 23:00:00,0.231,0.242,0.255 +2015-09-11 00:00:00,0.231,0.244,0.255 +2015-09-11 01:00:00,0.231,0.244,0.255 +2015-09-11 02:00:00,0.231,0.245,0.255 +2015-09-11 03:00:00,0.231,0.244,0.255 +2015-09-11 04:00:00,0.231,0.244,0.255 +2015-09-11 05:00:00,0.231,0.245,0.255 +2015-09-11 06:00:00,0.231,0.24600000000000002,0.255 +2015-09-11 07:00:00,0.231,0.24600000000000002,0.255 +2015-09-11 08:00:00,0.231,0.24600000000000002,0.255 +2015-09-11 09:00:00,0.231,0.24600000000000002,0.255 +2015-09-11 10:00:00,0.231,0.24600000000000002,0.255 +2015-09-11 11:00:00,0.231,0.247,0.255 +2015-09-11 12:00:00,0.23,0.247,0.255 +2015-09-11 13:00:00,0.23,0.24600000000000002,0.255 +2015-09-11 14:00:00,0.23,0.24600000000000002,0.255 +2015-09-11 15:00:00,0.22899999999999998,0.24600000000000002,0.255 +2015-09-11 16:00:00,0.22899999999999998,0.247,0.255 +2015-09-11 17:00:00,0.22899999999999998,0.247,0.255 +2015-09-11 18:00:00,0.22899999999999998,0.247,0.254 +2015-09-11 19:00:00,0.22899999999999998,0.248,0.254 +2015-09-11 20:00:00,0.22899999999999998,0.248,0.254 +2015-09-11 21:00:00,0.22899999999999998,0.248,0.254 +2015-09-11 22:00:00,0.22899999999999998,0.248,0.254 +2015-09-11 23:00:00,0.22899999999999998,0.248,0.254 +2015-09-12 00:00:00,0.22899999999999998,0.249,0.254 +2015-09-12 01:00:00,0.22899999999999998,0.249,0.254 +2015-09-12 02:00:00,0.22899999999999998,0.249,0.254 +2015-09-12 03:00:00,0.22899999999999998,0.249,0.254 +2015-09-12 04:00:00,0.228,0.249,0.255 +2015-09-12 05:00:00,0.228,0.249,0.255 +2015-09-12 06:00:00,0.228,0.25,0.255 +2015-09-12 07:00:00,0.228,0.25,0.255 +2015-09-12 08:00:00,0.228,0.25,0.255 +2015-09-12 09:00:00,0.228,0.25,0.255 +2015-09-12 10:00:00,0.228,0.251,0.255 +2015-09-12 11:00:00,0.228,0.251,0.254 +2015-09-12 12:00:00,0.228,0.25,0.254 +2015-09-12 13:00:00,0.228,0.25,0.254 +2015-09-12 14:00:00,0.22699999999999998,0.251,0.254 +2015-09-12 15:00:00,0.22699999999999998,0.251,0.254 +2015-09-12 16:00:00,0.22699999999999998,0.251,0.254 +2015-09-12 17:00:00,0.22699999999999998,0.251,0.254 +2015-09-12 18:00:00,0.22699999999999998,0.25,0.254 +2015-09-12 19:00:00,0.22699999999999998,0.251,0.254 +2015-09-12 20:00:00,0.22699999999999998,0.252,0.254 +2015-09-12 21:00:00,0.22699999999999998,0.253,0.254 +2015-09-12 22:00:00,0.22699999999999998,0.253,0.254 +2015-09-12 23:00:00,0.22699999999999998,0.253,0.255 +2015-09-13 00:00:00,0.22699999999999998,0.253,0.255 +2015-09-13 01:00:00,0.22699999999999998,0.253,0.255 +2015-09-13 02:00:00,0.22699999999999998,0.253,0.255 +2015-09-13 03:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 04:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 05:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 06:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 07:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 08:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 09:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 10:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 11:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 12:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 13:00:00,0.22699999999999998,0.254,0.255 +2015-09-13 14:00:00,0.228,0.254,0.255 +2015-09-13 15:00:00,0.228,0.255,0.256 +2015-09-13 16:00:00,0.228,0.255,0.256 +2015-09-13 17:00:00,0.228,0.255,0.256 +2015-09-13 18:00:00,0.22899999999999998,0.256,0.256 +2015-09-13 19:00:00,0.22899999999999998,0.256,0.256 +2015-09-13 20:00:00,0.22899999999999998,0.256,0.255 +2015-09-13 21:00:00,0.22899999999999998,0.256,0.256 +2015-09-13 22:00:00,0.22899999999999998,0.256,0.256 +2015-09-13 23:00:00,0.228,0.256,0.256 +2015-09-14 00:00:00,0.228,0.256,0.256 +2015-09-14 01:00:00,0.228,0.256,0.256 +2015-09-14 02:00:00,0.228,0.256,0.256 +2015-09-14 03:00:00,0.228,0.256,0.257 +2015-09-14 04:00:00,0.228,0.256,0.257 +2015-09-14 05:00:00,0.228,0.256,0.257 +2015-09-14 06:00:00,0.228,0.257,0.257 +2015-09-14 07:00:00,0.22699999999999998,0.257,0.257 +2015-09-14 08:00:00,0.22699999999999998,0.258,0.257 +2015-09-14 09:00:00,0.226,0.258,0.257 +2015-09-14 10:00:00,0.226,0.258,0.257 +2015-09-14 11:00:00,0.22699999999999998,0.258,0.257 +2015-09-14 12:00:00,0.22699999999999998,0.258,0.257 +2015-09-14 13:00:00,0.228,0.258,0.256 +2015-09-14 14:00:00,0.228,0.258,0.256 +2015-09-14 15:00:00,0.228,0.258,0.256 +2015-09-14 16:00:00,0.228,0.258,0.256 +2015-09-14 17:00:00,0.228,0.258,0.256 +2015-09-14 18:00:00,0.228,0.257,0.256 +2015-09-14 19:00:00,0.228,0.257,0.256 +2015-09-14 20:00:00,0.228,0.257,0.256 +2015-09-14 21:00:00,0.22899999999999998,0.258,0.256 +2015-09-14 22:00:00,0.228,0.258,0.256 +2015-09-14 23:00:00,0.228,0.258,0.256 +2015-09-15 00:00:00,0.228,0.258,0.256 +2015-09-15 01:00:00,0.228,0.258,0.256 +2015-09-15 02:00:00,0.228,0.258,0.256 +2015-09-15 03:00:00,0.228,0.258,0.256 +2015-09-15 04:00:00,0.228,0.258,0.256 +2015-09-15 05:00:00,0.228,0.258,0.256 +2015-09-15 06:00:00,0.228,0.258,0.256 +2015-09-15 07:00:00,0.228,0.258,0.256 +2015-09-15 08:00:00,0.228,0.258,0.256 +2015-09-15 09:00:00,0.228,0.258,0.256 +2015-09-15 10:00:00,0.228,0.258,0.256 +2015-09-15 11:00:00,0.228,0.258,0.256 +2015-09-15 12:00:00,0.228,0.258,0.256 +2015-09-15 13:00:00,0.228,0.258,0.256 +2015-09-15 14:00:00,0.228,0.258,0.256 +2015-09-15 15:00:00,0.22699999999999998,0.258,0.256 +2015-09-15 16:00:00,0.22699999999999998,0.258,0.256 +2015-09-15 17:00:00,0.22699999999999998,0.258,0.255 +2015-09-15 18:00:00,0.22699999999999998,0.258,0.255 +2015-09-15 19:00:00,0.228,0.258,0.255 +2015-09-15 20:00:00,0.22699999999999998,0.258,0.255 +2015-09-15 21:00:00,0.22699999999999998,0.258,0.255 +2015-09-15 22:00:00,0.22699999999999998,0.258,0.255 +2015-09-15 23:00:00,0.22699999999999998,0.258,0.255 +2015-09-16 00:00:00,0.22699999999999998,0.258,0.255 +2015-09-16 01:00:00,0.22699999999999998,0.258,0.256 +2015-09-16 02:00:00,0.22699999999999998,0.258,0.256 +2015-09-16 03:00:00,0.225,0.258,0.257 +2015-09-16 04:00:00,0.222,0.258,0.258 +2015-09-16 05:00:00,0.22,0.258,0.258 +2015-09-16 06:00:00,0.221,0.258,0.258 +2015-09-16 07:00:00,0.222,0.258,0.258 +2015-09-16 08:00:00,0.222,0.258,0.258 +2015-09-16 09:00:00,0.222,0.258,0.258 +2015-09-16 10:00:00,0.223,0.258,0.258 +2015-09-16 11:00:00,0.223,0.258,0.258 +2015-09-16 12:00:00,0.22399999999999998,0.258,0.259 +2015-09-16 13:00:00,0.233,0.258,0.259 +2015-09-16 14:00:00,0.254,0.258,0.259 +2015-09-16 15:00:00,0.258,0.258,0.258 +2015-09-16 16:00:00,0.26,0.258,0.258 +2015-09-16 17:00:00,0.261,0.258,0.258 +2015-09-16 18:00:00,0.262,0.258,0.258 +2015-09-16 19:00:00,0.261,0.258,0.259 +2015-09-16 20:00:00,0.265,0.258,0.259 +2015-09-16 21:00:00,0.27,0.258,0.259 +2015-09-16 22:00:00,0.27,0.258,0.259 +2015-09-16 23:00:00,0.27,0.257,0.259 +2015-09-17 00:00:00,0.27,0.256,0.259 +2015-09-17 01:00:00,0.272,0.256,0.259 +2015-09-17 02:00:00,0.273,0.256,0.259 +2015-09-17 03:00:00,0.272,0.257,0.259 +2015-09-17 04:00:00,0.272,0.258,0.259 +2015-09-17 05:00:00,0.271,0.258,0.259 +2015-09-17 06:00:00,0.27,0.258,0.259 +2015-09-17 07:00:00,0.26899999999999996,0.258,0.259 +2015-09-17 08:00:00,0.26899999999999996,0.259,0.259 +2015-09-17 09:00:00,0.268,0.259,0.26 +2015-09-17 10:00:00,0.268,0.259,0.26 +2015-09-17 11:00:00,0.26899999999999996,0.258,0.26 +2015-09-17 12:00:00,0.271,0.259,0.26 +2015-09-17 13:00:00,0.273,0.259,0.26 +2015-09-17 14:00:00,0.273,0.259,0.26 +2015-09-17 15:00:00,0.272,0.259,0.26 +2015-09-17 16:00:00,0.272,0.259,0.26 +2015-09-17 17:00:00,0.271,0.26,0.26 +2015-09-17 18:00:00,0.271,0.261,0.26 +2015-09-17 19:00:00,0.27399999999999997,0.261,0.261 +2015-09-17 20:00:00,0.275,0.261,0.261 +2015-09-17 21:00:00,0.275,0.261,0.261 +2015-09-17 22:00:00,0.273,0.261,0.261 +2015-09-17 23:00:00,0.272,0.261,0.261 +2015-09-18 00:00:00,0.271,0.261,0.261 +2015-09-18 01:00:00,0.27,0.261,0.262 +2015-09-18 02:00:00,0.26899999999999996,0.261,0.262 +2015-09-18 03:00:00,0.268,0.262,0.262 +2015-09-18 04:00:00,0.267,0.262,0.262 +2015-09-18 05:00:00,0.266,0.262,0.262 +2015-09-18 06:00:00,0.265,0.262,0.262 +2015-09-18 07:00:00,0.265,0.263,0.262 +2015-09-18 08:00:00,0.265,0.263,0.263 +2015-09-18 09:00:00,0.264,0.263,0.263 +2015-09-18 10:00:00,0.264,0.263,0.263 +2015-09-18 11:00:00,0.265,0.263,0.263 +2015-09-18 12:00:00,0.267,0.263,0.263 +2015-09-18 13:00:00,0.268,0.263,0.262 +2015-09-18 14:00:00,0.266,0.263,0.263 +2015-09-18 15:00:00,0.265,0.263,0.263 +2015-09-18 16:00:00,0.26899999999999996,0.263,0.263 +2015-09-18 17:00:00,0.27,0.263,0.263 +2015-09-18 18:00:00,0.271,0.263,0.263 +2015-09-18 19:00:00,0.271,0.263,0.263 +2015-09-18 20:00:00,0.271,0.264,0.263 +2015-09-18 21:00:00,0.27,0.264,0.263 +2015-09-18 22:00:00,0.27,0.264,0.263 +2015-09-18 23:00:00,0.26899999999999996,0.264,0.264 +2015-09-19 00:00:00,0.26899999999999996,0.264,0.264 +2015-09-19 01:00:00,0.26899999999999996,0.264,0.264 +2015-09-19 02:00:00,0.26899999999999996,0.264,0.264 +2015-09-19 03:00:00,0.268,0.264,0.264 +2015-09-19 04:00:00,0.268,0.265,0.264 +2015-09-19 05:00:00,0.268,0.265,0.264 +2015-09-19 06:00:00,0.267,0.265,0.264 +2015-09-19 07:00:00,0.266,0.265,0.264 +2015-09-19 08:00:00,0.265,0.265,0.264 +2015-09-19 09:00:00,0.265,0.265,0.264 +2015-09-19 10:00:00,0.266,0.265,0.264 +2015-09-19 11:00:00,0.267,0.265,0.264 +2015-09-19 12:00:00,0.268,0.265,0.264 +2015-09-19 13:00:00,0.26899999999999996,0.265,0.264 +2015-09-19 14:00:00,0.26899999999999996,0.265,0.264 +2015-09-19 15:00:00,0.26899999999999996,0.265,0.263 +2015-09-19 16:00:00,0.26899999999999996,0.265,0.263 +2015-09-19 17:00:00,0.26899999999999996,0.264,0.263 +2015-09-19 18:00:00,0.268,0.264,0.263 +2015-09-19 19:00:00,0.268,0.264,0.263 +2015-09-19 20:00:00,0.268,0.264,0.263 +2015-09-19 21:00:00,0.268,0.264,0.263 +2015-09-19 22:00:00,0.267,0.264,0.263 +2015-09-19 23:00:00,0.267,0.264,0.264 +2015-09-20 00:00:00,0.267,0.264,0.264 +2015-09-20 01:00:00,0.267,0.265,0.264 +2015-09-20 02:00:00,0.267,0.265,0.264 +2015-09-20 03:00:00,0.267,0.265,0.264 +2015-09-20 04:00:00,0.267,0.265,0.264 +2015-09-20 05:00:00,0.267,0.265,0.264 +2015-09-20 06:00:00,0.266,0.265,0.264 +2015-09-20 07:00:00,0.266,0.265,0.264 +2015-09-20 08:00:00,0.266,0.265,0.264 +2015-09-20 09:00:00,0.266,0.266,0.264 +2015-09-20 10:00:00,0.266,0.266,0.264 +2015-09-20 11:00:00,0.266,0.266,0.264 +2015-09-20 12:00:00,0.266,0.266,0.264 +2015-09-20 13:00:00,0.265,0.266,0.264 +2015-09-20 14:00:00,0.264,0.266,0.263 +2015-09-20 15:00:00,0.264,0.266,0.263 +2015-09-20 16:00:00,0.263,0.265,0.263 +2015-09-20 17:00:00,0.263,0.264,0.263 +2015-09-20 18:00:00,0.263,0.264,0.263 +2015-09-20 19:00:00,0.263,0.264,0.263 +2015-09-20 20:00:00,0.263,0.264,0.263 +2015-09-20 21:00:00,0.262,0.264,0.263 +2015-09-20 22:00:00,0.263,0.264,0.263 +2015-09-20 23:00:00,0.263,0.264,0.264 +2015-09-21 00:00:00,0.263,0.264,0.264 +2015-09-21 01:00:00,0.262,0.265,0.264 +2015-09-21 02:00:00,0.263,0.265,0.264 +2015-09-21 03:00:00,0.263,0.265,0.263 +2015-09-21 04:00:00,0.263,0.265,0.263 +2015-09-21 05:00:00,0.263,0.265,0.264 +2015-09-21 06:00:00,0.262,0.265,0.264 +2015-09-21 07:00:00,0.262,0.265,0.264 +2015-09-21 08:00:00,0.262,0.265,0.264 +2015-09-21 09:00:00,0.262,0.266,0.264 +2015-09-21 10:00:00,0.262,0.265,0.264 +2015-09-21 11:00:00,0.262,0.265,0.264 +2015-09-21 12:00:00,0.262,0.265,0.264 +2015-09-21 13:00:00,0.261,0.264,0.263 +2015-09-21 14:00:00,0.261,0.264,0.263 +2015-09-21 15:00:00,0.261,0.264,0.263 +2015-09-21 16:00:00,0.26,0.264,0.263 +2015-09-21 17:00:00,0.26,0.264,0.263 +2015-09-21 18:00:00,0.26,0.263,0.263 +2015-09-21 19:00:00,0.26,0.263,0.263 +2015-09-21 20:00:00,0.26,0.263,0.263 +2015-09-21 21:00:00,0.26,0.263,0.263 +2015-09-21 22:00:00,0.26,0.263,0.263 +2015-09-21 23:00:00,0.26,0.263,0.263 +2015-09-22 00:00:00,0.26,0.263,0.264 +2015-09-22 01:00:00,0.26,0.264,0.264 +2015-09-22 02:00:00,0.26,0.264,0.264 +2015-09-22 03:00:00,0.26,0.264,0.264 +2015-09-22 04:00:00,0.26,0.264,0.264 +2015-09-22 05:00:00,0.26,0.264,0.264 +2015-09-22 06:00:00,0.26,0.264,0.264 +2015-09-22 07:00:00,0.26,0.264,0.264 +2015-09-22 08:00:00,0.26,0.264,0.264 +2015-09-22 09:00:00,0.26,0.264,0.264 +2015-09-22 10:00:00,0.26,0.264,0.264 +2015-09-22 11:00:00,0.26,0.263,0.264 +2015-09-22 12:00:00,0.259,0.263,0.264 +2015-09-22 13:00:00,0.259,0.263,0.265 +2015-09-22 14:00:00,0.259,0.263,0.265 +2015-09-22 15:00:00,0.254,0.263,0.266 +2015-09-22 16:00:00,0.25,0.263,0.266 +2015-09-22 17:00:00,0.251,0.263,0.266 +2015-09-22 18:00:00,0.252,0.262,0.266 +2015-09-22 19:00:00,0.253,0.262,0.266 +2015-09-22 20:00:00,0.254,0.262,0.266 +2015-09-22 21:00:00,0.268,0.262,0.267 +2015-09-22 22:00:00,0.271,0.262,0.268 +2015-09-22 23:00:00,0.27,0.262,0.268 +2015-09-23 00:00:00,0.26899999999999996,0.262,0.268 +2015-09-23 01:00:00,0.268,0.263,0.26899999999999996 +2015-09-23 02:00:00,0.267,0.263,0.26899999999999996 +2015-09-23 03:00:00,0.267,0.263,0.26899999999999996 +2015-09-23 04:00:00,0.267,0.263,0.26899999999999996 +2015-09-23 05:00:00,0.266,0.263,0.26899999999999996 +2015-09-23 06:00:00,0.266,0.263,0.26899999999999996 +2015-09-23 07:00:00,0.265,0.263,0.26899999999999996 +2015-09-23 08:00:00,0.265,0.263,0.26899999999999996 +2015-09-23 09:00:00,0.265,0.263,0.26899999999999996 +2015-09-23 10:00:00,0.265,0.262,0.26899999999999996 +2015-09-23 11:00:00,0.265,0.262,0.26899999999999996 +2015-09-23 12:00:00,0.266,0.262,0.26899999999999996 +2015-09-23 13:00:00,0.268,0.262,0.26899999999999996 +2015-09-23 14:00:00,0.27,0.262,0.268 +2015-09-23 15:00:00,0.27,0.261,0.268 +2015-09-23 16:00:00,0.266,0.261,0.26899999999999996 +2015-09-23 17:00:00,0.267,0.261,0.26899999999999996 +2015-09-23 18:00:00,0.268,0.261,0.26899999999999996 +2015-09-23 19:00:00,0.268,0.26,0.26899999999999996 +2015-09-23 20:00:00,0.265,0.26,0.26899999999999996 +2015-09-23 21:00:00,0.265,0.259,0.26899999999999996 +2015-09-23 22:00:00,0.263,0.26,0.26899999999999996 +2015-09-23 23:00:00,0.263,0.261,0.26899999999999996 +2015-09-24 00:00:00,0.263,0.261,0.26899999999999996 +2015-09-24 01:00:00,0.263,0.261,0.26899999999999996 +2015-09-24 02:00:00,0.263,0.261,0.26899999999999996 +2015-09-24 03:00:00,0.264,0.261,0.26899999999999996 +2015-09-24 04:00:00,0.265,0.261,0.26899999999999996 +2015-09-24 05:00:00,0.265,0.261,0.26899999999999996 +2015-09-24 06:00:00,0.265,0.261,0.26899999999999996 +2015-09-24 07:00:00,0.265,0.261,0.26899999999999996 +2015-09-24 08:00:00,0.265,0.261,0.26899999999999996 +2015-09-24 09:00:00,0.265,0.261,0.26899999999999996 +2015-09-24 10:00:00,0.266,0.261,0.26899999999999996 +2015-09-24 11:00:00,0.268,0.261,0.26899999999999996 +2015-09-24 12:00:00,0.27,0.261,0.26899999999999996 +2015-09-24 13:00:00,0.27,0.261,0.26899999999999996 +2015-09-24 14:00:00,0.27,0.261,0.268 +2015-09-24 15:00:00,0.27,0.26,0.268 +2015-09-24 16:00:00,0.27,0.259,0.268 +2015-09-24 17:00:00,0.26899999999999996,0.259,0.268 +2015-09-24 18:00:00,0.26899999999999996,0.259,0.268 +2015-09-24 19:00:00,0.26899999999999996,0.259,0.268 +2015-09-24 20:00:00,0.26899999999999996,0.259,0.268 +2015-09-24 21:00:00,0.26899999999999996,0.259,0.268 +2015-09-24 22:00:00,0.26899999999999996,0.259,0.268 +2015-09-24 23:00:00,0.26899999999999996,0.259,0.268 +2015-09-25 00:00:00,0.26899999999999996,0.259,0.268 +2015-09-25 01:00:00,0.26899999999999996,0.259,0.268 +2015-09-25 02:00:00,0.26899999999999996,0.259,0.268 +2015-09-25 03:00:00,0.26899999999999996,0.259,0.268 +2015-09-25 04:00:00,0.268,0.259,0.268 +2015-09-25 05:00:00,0.268,0.259,0.268 +2015-09-25 06:00:00,0.268,0.259,0.268 +2015-09-25 07:00:00,0.268,0.259,0.268 +2015-09-25 08:00:00,0.268,0.259,0.26899999999999996 +2015-09-25 09:00:00,0.267,0.259,0.268 +2015-09-25 10:00:00,0.267,0.259,0.26899999999999996 +2015-09-25 11:00:00,0.267,0.259,0.268 +2015-09-25 12:00:00,0.267,0.259,0.268 +2015-09-25 13:00:00,0.267,0.259,0.268 +2015-09-25 14:00:00,0.266,0.259,0.268 +2015-09-25 15:00:00,0.266,0.259,0.268 +2015-09-25 16:00:00,0.265,0.259,0.268 +2015-09-25 17:00:00,0.265,0.259,0.268 +2015-09-25 18:00:00,0.265,0.258,0.268 +2015-09-25 19:00:00,0.265,0.258,0.268 +2015-09-25 20:00:00,0.265,0.258,0.268 +2015-09-25 21:00:00,0.265,0.258,0.268 +2015-09-25 22:00:00,0.265,0.258,0.268 +2015-09-25 23:00:00,0.264,0.258,0.268 +2015-09-26 00:00:00,0.265,0.258,0.268 +2015-09-26 01:00:00,0.265,0.259,0.268 +2015-09-26 02:00:00,0.264,0.259,0.268 +2015-09-26 03:00:00,0.264,0.259,0.268 +2015-09-26 04:00:00,0.265,0.259,0.268 +2015-09-26 05:00:00,0.265,0.259,0.268 +2015-09-26 06:00:00,0.264,0.259,0.268 +2015-09-26 07:00:00,0.264,0.259,0.268 +2015-09-26 08:00:00,0.264,0.259,0.268 +2015-09-26 09:00:00,0.264,0.259,0.268 +2015-09-26 10:00:00,0.264,0.259,0.268 +2015-09-26 11:00:00,0.264,0.259,0.268 +2015-09-26 12:00:00,0.263,0.259,0.268 +2015-09-26 13:00:00,0.263,0.259,0.268 +2015-09-26 14:00:00,0.262,0.258,0.268 +2015-09-26 15:00:00,0.262,0.258,0.268 +2015-09-26 16:00:00,0.262,0.258,0.268 +2015-09-26 17:00:00,0.262,0.258,0.268 +2015-09-26 18:00:00,0.261,0.257,0.268 +2015-09-26 19:00:00,0.262,0.256,0.268 +2015-09-26 20:00:00,0.261,0.256,0.268 +2015-09-26 21:00:00,0.261,0.256,0.268 +2015-09-26 22:00:00,0.261,0.256,0.268 +2015-09-26 23:00:00,0.261,0.257,0.268 +2015-09-27 00:00:00,0.261,0.258,0.268 +2015-09-27 01:00:00,0.261,0.258,0.268 +2015-09-27 02:00:00,0.261,0.258,0.268 +2015-09-27 03:00:00,0.262,0.258,0.268 +2015-09-27 04:00:00,0.262,0.258,0.268 +2015-09-27 05:00:00,0.262,0.258,0.268 +2015-09-27 06:00:00,0.262,0.258,0.268 +2015-09-27 07:00:00,0.262,0.258,0.268 +2015-09-27 08:00:00,0.262,0.258,0.268 +2015-09-27 09:00:00,0.262,0.258,0.268 +2015-09-27 10:00:00,0.261,0.258,0.268 +2015-09-27 11:00:00,0.261,0.258,0.268 +2015-09-27 12:00:00,0.261,0.258,0.268 +2015-09-27 13:00:00,0.261,0.258,0.268 +2015-09-27 14:00:00,0.26,0.258,0.268 +2015-09-27 15:00:00,0.26,0.258,0.267 +2015-09-27 16:00:00,0.26,0.258,0.267 +2015-09-27 17:00:00,0.26,0.256,0.267 +2015-09-27 18:00:00,0.26,0.256,0.267 +2015-09-27 19:00:00,0.26,0.256,0.267 +2015-09-27 20:00:00,0.26,0.256,0.267 +2015-09-27 21:00:00,0.26,0.256,0.267 +2015-09-27 22:00:00,0.26,0.256,0.267 +2015-09-27 23:00:00,0.26,0.256,0.267 +2015-09-28 00:00:00,0.26,0.256,0.267 +2015-09-28 01:00:00,0.26,0.257,0.267 +2015-09-28 02:00:00,0.26,0.257,0.267 +2015-09-28 03:00:00,0.26,0.258,0.267 +2015-09-28 04:00:00,0.26,0.258,0.267 +2015-09-28 05:00:00,0.26,0.258,0.267 +2015-09-28 06:00:00,0.26,0.258,0.267 +2015-09-28 07:00:00,0.26,0.258,0.267 +2015-09-28 08:00:00,0.259,0.258,0.267 +2015-09-28 09:00:00,0.259,0.258,0.267 +2015-09-28 10:00:00,0.259,0.258,0.267 +2015-09-28 11:00:00,0.259,0.258,0.267 +2015-09-28 12:00:00,0.259,0.258,0.267 +2015-09-28 13:00:00,0.259,0.258,0.267 +2015-09-28 14:00:00,0.258,0.258,0.267 +2015-09-28 15:00:00,0.258,0.258,0.267 +2015-09-28 16:00:00,0.258,0.258,0.266 +2015-09-28 17:00:00,0.257,0.256,0.266 +2015-09-28 18:00:00,0.257,0.256,0.266 +2015-09-28 19:00:00,0.257,0.256,0.266 +2015-09-28 20:00:00,0.257,0.256,0.266 +2015-09-28 21:00:00,0.258,0.256,0.266 +2015-09-28 22:00:00,0.258,0.257,0.266 +2015-09-28 23:00:00,0.258,0.257,0.266 +2015-09-29 00:00:00,0.258,0.258,0.266 +2015-09-29 01:00:00,0.258,0.258,0.266 +2015-09-29 02:00:00,0.258,0.258,0.266 +2015-09-29 03:00:00,0.258,0.258,0.266 +2015-09-29 04:00:00,0.258,0.258,0.266 +2015-09-29 05:00:00,0.258,0.258,0.266 +2015-09-29 06:00:00,0.258,0.258,0.266 +2015-09-29 07:00:00,0.258,0.258,0.266 +2015-09-29 08:00:00,0.258,0.258,0.266 +2015-09-29 09:00:00,0.258,0.258,0.266 +2015-09-29 10:00:00,0.258,0.258,0.266 +2015-09-29 11:00:00,0.257,0.258,0.266 +2015-09-29 12:00:00,0.257,0.258,0.266 +2015-09-29 13:00:00,0.257,0.258,0.266 +2015-09-29 14:00:00,0.257,0.258,0.266 +2015-09-29 15:00:00,0.256,0.258,0.266 +2015-09-29 16:00:00,0.256,0.258,0.266 +2015-09-29 17:00:00,0.256,0.257,0.266 +2015-09-29 18:00:00,0.256,0.256,0.266 +2015-09-29 19:00:00,0.256,0.256,0.266 +2015-09-29 20:00:00,0.256,0.256,0.265 +2015-09-29 21:00:00,0.256,0.256,0.266 +2015-09-29 22:00:00,0.256,0.256,0.266 +2015-09-29 23:00:00,0.256,0.256,0.266 +2015-09-30 00:00:00,0.256,0.257,0.266 +2015-09-30 01:00:00,0.256,0.257,0.266 +2015-09-30 02:00:00,0.256,0.258,0.266 +2015-09-30 03:00:00,0.256,0.258,0.266 +2015-09-30 04:00:00,0.256,0.258,0.266 +2015-09-30 05:00:00,0.256,0.258,0.266 +2015-09-30 06:00:00,0.256,0.258,0.266 +2015-09-30 07:00:00,0.256,0.257,0.266 +2015-09-30 08:00:00,0.256,0.257,0.266 +2015-09-30 09:00:00,0.256,0.256,0.266 +2015-09-30 10:00:00,0.256,0.256,0.266 +2015-09-30 11:00:00,0.256,0.256,0.266 +2015-09-30 12:00:00,0.255,0.256,0.266 +2015-09-30 13:00:00,0.255,0.256,0.266 +2015-09-30 14:00:00,0.254,0.257,0.265 +2015-09-30 15:00:00,0.254,0.258,0.265 +2015-09-30 16:00:00,0.254,0.258,0.265 +2015-09-30 17:00:00,0.254,0.258,0.265 +2015-09-30 18:00:00,0.253,0.258,0.265 +2015-09-30 19:00:00,0.254,0.258,0.265 +2015-09-30 20:00:00,0.253,0.258,0.265 +2015-09-30 21:00:00,0.254,0.258,0.265 +2015-09-30 22:00:00,0.254,0.258,0.265 +2015-09-30 23:00:00,0.254,0.258,0.265 +2015-10-01 00:00:00,0.254,0.259,0.265 +2015-10-01 01:00:00,0.254,0.259,0.265 +2015-10-01 02:00:00,0.254,0.259,0.265 +2015-10-01 03:00:00,0.254,0.259,0.265 +2015-10-01 04:00:00,0.254,0.259,0.265 +2015-10-01 05:00:00,0.254,0.259,0.265 +2015-10-01 06:00:00,0.253,0.259,0.265 +2015-10-01 07:00:00,0.254,0.259,0.265 +2015-10-01 08:00:00,0.253,0.259,0.265 +2015-10-01 09:00:00,0.254,0.259,0.265 +2015-10-01 10:00:00,0.254,0.259,0.265 +2015-10-01 11:00:00,0.253,0.259,0.265 +2015-10-01 12:00:00,0.253,0.258,0.265 +2015-10-01 13:00:00,0.253,0.259,0.265 +2015-10-01 14:00:00,0.252,0.259,0.265 +2015-10-01 15:00:00,0.252,0.259,0.265 +2015-10-01 16:00:00,0.251,0.259,0.264 +2015-10-01 17:00:00,0.251,0.259,0.264 +2015-10-01 18:00:00,0.251,0.259,0.264 +2015-10-01 19:00:00,0.251,0.259,0.264 +2015-10-01 20:00:00,0.251,0.259,0.264 +2015-10-01 21:00:00,0.251,0.259,0.264 +2015-10-01 22:00:00,0.251,0.259,0.264 +2015-10-01 23:00:00,0.251,0.259,0.264 +2015-10-02 00:00:00,0.251,0.259,0.264 +2015-10-02 01:00:00,0.251,0.259,0.264 +2015-10-02 02:00:00,0.251,0.259,0.264 +2015-10-02 03:00:00,0.251,0.259,0.264 +2015-10-02 04:00:00,0.251,0.259,0.264 +2015-10-02 05:00:00,0.251,0.259,0.264 +2015-10-02 06:00:00,0.251,0.259,0.264 +2015-10-02 07:00:00,0.251,0.259,0.264 +2015-10-02 08:00:00,0.251,0.259,0.264 +2015-10-02 09:00:00,0.251,0.259,0.264 +2015-10-02 10:00:00,0.251,0.259,0.264 +2015-10-02 11:00:00,0.251,0.259,0.264 +2015-10-02 12:00:00,0.251,0.259,0.264 +2015-10-02 13:00:00,0.25,0.259,0.264 +2015-10-02 14:00:00,0.25,0.259,0.264 +2015-10-02 15:00:00,0.25,0.259,0.264 +2015-10-02 16:00:00,0.249,0.259,0.264 +2015-10-02 17:00:00,0.249,0.259,0.264 +2015-10-02 18:00:00,0.249,0.259,0.264 +2015-10-02 19:00:00,0.249,0.259,0.264 +2015-10-02 20:00:00,0.249,0.259,0.264 +2015-10-02 21:00:00,0.249,0.259,0.264 +2015-10-02 22:00:00,0.249,0.259,0.264 +2015-10-02 23:00:00,0.249,0.259,0.264 +2015-10-03 00:00:00,0.249,0.259,0.264 +2015-10-03 01:00:00,0.249,0.259,0.264 +2015-10-03 02:00:00,0.249,0.259,0.264 +2015-10-03 03:00:00,0.249,0.259,0.264 +2015-10-03 04:00:00,0.249,0.259,0.264 +2015-10-03 05:00:00,0.249,0.258,0.264 +2015-10-03 06:00:00,0.249,0.258,0.264 +2015-10-03 07:00:00,0.249,0.258,0.264 +2015-10-03 08:00:00,0.249,0.258,0.264 +2015-10-03 09:00:00,0.249,0.258,0.264 +2015-10-03 10:00:00,0.249,0.258,0.264 +2015-10-03 11:00:00,0.249,0.258,0.264 +2015-10-03 12:00:00,0.249,0.258,0.264 +2015-10-03 13:00:00,0.249,0.259,0.264 +2015-10-03 14:00:00,0.248,0.261,0.264 +2015-10-03 15:00:00,0.248,0.263,0.264 +2015-10-03 16:00:00,0.248,0.263,0.264 +2015-10-03 17:00:00,0.248,0.264,0.264 +2015-10-03 18:00:00,0.248,0.264,0.264 +2015-10-03 19:00:00,0.248,0.265,0.264 +2015-10-03 20:00:00,0.248,0.266,0.264 +2015-10-03 21:00:00,0.248,0.266,0.264 +2015-10-03 22:00:00,0.248,0.266,0.264 +2015-10-03 23:00:00,0.248,0.266,0.264 +2015-10-04 00:00:00,0.248,0.266,0.264 +2015-10-04 01:00:00,0.248,0.266,0.264 +2015-10-04 02:00:00,0.248,0.266,0.264 +2015-10-04 03:00:00,0.248,0.266,0.264 +2015-10-04 04:00:00,0.248,0.266,0.264 +2015-10-04 05:00:00,0.248,0.266,0.264 +2015-10-04 06:00:00,0.248,0.266,0.264 +2015-10-04 07:00:00,0.248,0.266,0.264 +2015-10-04 08:00:00,0.248,0.266,0.264 +2015-10-04 09:00:00,0.248,0.266,0.264 +2015-10-04 10:00:00,0.248,0.267,0.264 +2015-10-04 11:00:00,0.248,0.268,0.264 +2015-10-04 12:00:00,0.248,0.268,0.264 +2015-10-04 13:00:00,0.248,0.268,0.264 +2015-10-04 14:00:00,0.247,0.268,0.264 +2015-10-04 15:00:00,0.247,0.268,0.264 +2015-10-04 16:00:00,0.247,0.268,0.264 +2015-10-04 17:00:00,0.247,0.268,0.264 +2015-10-04 18:00:00,0.247,0.268,0.263 +2015-10-04 19:00:00,0.247,0.268,0.263 +2015-10-04 20:00:00,0.247,0.268,0.264 +2015-10-04 21:00:00,0.24600000000000002,0.268,0.264 +2015-10-04 22:00:00,0.247,0.268,0.264 +2015-10-04 23:00:00,0.24600000000000002,0.268,0.264 +2015-10-05 00:00:00,0.24600000000000002,0.26899999999999996,0.264 +2015-10-05 01:00:00,0.24600000000000002,0.26899999999999996,0.264 +2015-10-05 02:00:00,0.247,0.26899999999999996,0.264 +2015-10-05 03:00:00,0.247,0.26899999999999996,0.264 +2015-10-05 04:00:00,0.247,0.26899999999999996,0.264 +2015-10-05 05:00:00,0.247,0.26899999999999996,0.264 +2015-10-05 06:00:00,0.247,0.26899999999999996,0.264 +2015-10-05 07:00:00,0.247,0.26899999999999996,0.264 +2015-10-05 08:00:00,0.247,0.27,0.264 +2015-10-05 09:00:00,0.24600000000000002,0.27,0.264 +2015-10-05 10:00:00,0.24600000000000002,0.27,0.264 +2015-10-05 11:00:00,0.24600000000000002,0.27,0.264 +2015-10-05 12:00:00,0.24600000000000002,0.26899999999999996,0.264 +2015-10-05 13:00:00,0.24600000000000002,0.26899999999999996,0.264 +2015-10-05 14:00:00,0.24600000000000002,0.26899999999999996,0.264 +2015-10-05 15:00:00,0.245,0.268,0.264 +2015-10-05 16:00:00,0.245,0.268,0.264 +2015-10-05 17:00:00,0.245,0.268,0.264 +2015-10-05 18:00:00,0.245,0.268,0.264 +2015-10-05 19:00:00,0.245,0.268,0.263 +2015-10-05 20:00:00,0.245,0.268,0.264 +2015-10-05 21:00:00,0.245,0.268,0.264 +2015-10-05 22:00:00,0.245,0.268,0.264 +2015-10-05 23:00:00,0.245,0.268,0.265 +2015-10-06 00:00:00,0.245,0.268,0.265 +2015-10-06 01:00:00,0.243,0.268,0.266 +2015-10-06 02:00:00,0.243,0.268,0.266 +2015-10-06 03:00:00,0.242,0.268,0.266 +2015-10-06 04:00:00,0.242,0.268,0.267 +2015-10-06 05:00:00,0.242,0.268,0.267 +2015-10-06 06:00:00,0.242,0.268,0.267 +2015-10-06 07:00:00,0.242,0.268,0.267 +2015-10-06 08:00:00,0.24100000000000002,0.268,0.267 +2015-10-06 09:00:00,0.24100000000000002,0.268,0.267 +2015-10-06 10:00:00,0.24100000000000002,0.268,0.267 +2015-10-06 11:00:00,0.242,0.268,0.267 +2015-10-06 12:00:00,0.243,0.267,0.266 +2015-10-06 13:00:00,0.244,0.266,0.266 +2015-10-06 14:00:00,0.245,0.266,0.266 +2015-10-06 15:00:00,0.245,0.266,0.266 +2015-10-06 16:00:00,0.244,0.266,0.267 +2015-10-06 17:00:00,0.244,0.266,0.267 +2015-10-06 18:00:00,0.244,0.266,0.267 +2015-10-06 19:00:00,0.245,0.266,0.266 +2015-10-06 20:00:00,0.245,0.266,0.266 +2015-10-06 21:00:00,0.245,0.266,0.267 +2015-10-06 22:00:00,0.245,0.266,0.267 +2015-10-06 23:00:00,0.245,0.266,0.267 +2015-10-07 00:00:00,0.245,0.266,0.267 +2015-10-07 01:00:00,0.245,0.266,0.267 +2015-10-07 02:00:00,0.245,0.266,0.267 +2015-10-07 03:00:00,0.245,0.266,0.267 +2015-10-07 04:00:00,0.245,0.266,0.267 +2015-10-07 05:00:00,0.245,0.266,0.267 +2015-10-07 06:00:00,0.245,0.266,0.267 +2015-10-07 07:00:00,0.245,0.266,0.267 +2015-10-07 08:00:00,0.244,0.266,0.267 +2015-10-07 09:00:00,0.244,0.266,0.267 +2015-10-07 10:00:00,0.244,0.266,0.267 +2015-10-07 11:00:00,0.245,0.266,0.267 +2015-10-07 12:00:00,0.245,0.266,0.266 +2015-10-07 13:00:00,0.245,0.266,0.266 +2015-10-07 14:00:00,0.24600000000000002,0.266,0.266 +2015-10-07 15:00:00,0.24600000000000002,0.266,0.266 +2015-10-07 16:00:00,0.24600000000000002,0.266,0.265 +2015-10-07 17:00:00,0.24600000000000002,0.266,0.265 +2015-10-07 18:00:00,0.24600000000000002,0.266,0.265 +2015-10-07 19:00:00,0.24600000000000002,0.265,0.265 +2015-10-07 20:00:00,0.24600000000000002,0.266,0.265 +2015-10-07 21:00:00,0.24600000000000002,0.266,0.265 +2015-10-07 22:00:00,0.24600000000000002,0.266,0.265 +2015-10-07 23:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 00:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 01:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 02:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 03:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 04:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 05:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 06:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 07:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 08:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 09:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 10:00:00,0.24600000000000002,0.266,0.266 +2015-10-08 11:00:00,0.24600000000000002,0.266,0.265 +2015-10-08 12:00:00,0.24600000000000002,0.266,0.265 +2015-10-08 13:00:00,0.24600000000000002,0.266,0.265 +2015-10-08 14:00:00,0.24600000000000002,0.267,0.265 +2015-10-08 15:00:00,0.245,0.266,0.265 +2015-10-08 16:00:00,0.245,0.266,0.265 +2015-10-08 17:00:00,0.245,0.266,0.265 +2015-10-08 18:00:00,0.245,0.266,0.265 +2015-10-08 19:00:00,0.245,0.265,0.265 +2015-10-08 20:00:00,0.245,0.265,0.265 +2015-10-08 21:00:00,0.245,0.265,0.265 +2015-10-08 22:00:00,0.245,0.265,0.266 +2015-10-08 23:00:00,0.245,0.265,0.266 +2015-10-09 00:00:00,0.245,0.265,0.266 +2015-10-09 01:00:00,0.245,0.265,0.267 +2015-10-09 02:00:00,0.243,0.265,0.267 +2015-10-09 03:00:00,0.242,0.265,0.268 +2015-10-09 04:00:00,0.24100000000000002,0.265,0.268 +2015-10-09 05:00:00,0.23800000000000002,0.265,0.268 +2015-10-09 06:00:00,0.237,0.265,0.268 +2015-10-09 07:00:00,0.23800000000000002,0.265,0.268 +2015-10-09 08:00:00,0.252,0.265,0.26899999999999996 +2015-10-09 09:00:00,0.261,0.265,0.26899999999999996 +2015-10-09 10:00:00,0.262,0.264,0.26899999999999996 +2015-10-09 11:00:00,0.262,0.264,0.26899999999999996 +2015-10-09 12:00:00,0.263,0.264,0.26899999999999996 +2015-10-09 13:00:00,0.263,0.264,0.27 +2015-10-09 14:00:00,0.263,0.272,0.27 +2015-10-09 15:00:00,0.263,0.301,0.27 +2015-10-09 16:00:00,0.264,0.316,0.27 +2015-10-09 17:00:00,0.264,0.315,0.27 +2015-10-09 18:00:00,0.264,0.315,0.271 +2015-10-09 19:00:00,0.262,0.314,0.271 +2015-10-09 20:00:00,0.262,0.313,0.271 +2015-10-09 21:00:00,0.262,0.312,0.271 +2015-10-09 22:00:00,0.263,0.312,0.271 +2015-10-09 23:00:00,0.263,0.321,0.272 +2015-10-10 00:00:00,0.263,0.32,0.272 +2015-10-10 01:00:00,0.263,0.321,0.272 +2015-10-10 02:00:00,0.263,0.318,0.272 +2015-10-10 03:00:00,0.262,0.317,0.272 +2015-10-10 04:00:00,0.262,0.315,0.272 +2015-10-10 05:00:00,0.262,0.314,0.272 +2015-10-10 06:00:00,0.263,0.313,0.272 +2015-10-10 07:00:00,0.263,0.311,0.272 +2015-10-10 08:00:00,0.263,0.31,0.272 +2015-10-10 09:00:00,0.263,0.309,0.272 +2015-10-10 10:00:00,0.264,0.308,0.272 +2015-10-10 11:00:00,0.265,0.307,0.272 +2015-10-10 12:00:00,0.266,0.306,0.272 +2015-10-10 13:00:00,0.267,0.306,0.272 +2015-10-10 14:00:00,0.26899999999999996,0.305,0.272 +2015-10-10 15:00:00,0.26899999999999996,0.305,0.271 +2015-10-10 16:00:00,0.26899999999999996,0.305,0.271 +2015-10-10 17:00:00,0.26899999999999996,0.305,0.271 +2015-10-10 18:00:00,0.26899999999999996,0.305,0.271 +2015-10-10 19:00:00,0.26899999999999996,0.304,0.271 +2015-10-10 20:00:00,0.268,0.304,0.271 +2015-10-10 21:00:00,0.268,0.304,0.271 +2015-10-10 22:00:00,0.268,0.304,0.271 +2015-10-10 23:00:00,0.268,0.304,0.271 +2015-10-11 00:00:00,0.268,0.304,0.271 +2015-10-11 01:00:00,0.268,0.303,0.271 +2015-10-11 02:00:00,0.268,0.303,0.271 +2015-10-11 03:00:00,0.268,0.302,0.271 +2015-10-11 04:00:00,0.268,0.302,0.271 +2015-10-11 05:00:00,0.268,0.302,0.271 +2015-10-11 06:00:00,0.268,0.302,0.271 +2015-10-11 07:00:00,0.268,0.302,0.271 +2015-10-11 08:00:00,0.267,0.3,0.271 +2015-10-11 09:00:00,0.267,0.3,0.271 +2015-10-11 10:00:00,0.267,0.3,0.271 +2015-10-11 11:00:00,0.267,0.3,0.271 +2015-10-11 12:00:00,0.267,0.299,0.271 +2015-10-11 13:00:00,0.266,0.298,0.271 +2015-10-11 14:00:00,0.266,0.298,0.271 +2015-10-11 15:00:00,0.266,0.298,0.27 +2015-10-11 16:00:00,0.265,0.298,0.27 +2015-10-11 17:00:00,0.265,0.298,0.27 +2015-10-11 18:00:00,0.265,0.298,0.27 +2015-10-11 19:00:00,0.265,0.298,0.27 +2015-10-11 20:00:00,0.265,0.298,0.27 +2015-10-11 21:00:00,0.265,0.298,0.27 +2015-10-11 22:00:00,0.265,0.298,0.27 +2015-10-11 23:00:00,0.265,0.298,0.27 +2015-10-12 00:00:00,0.265,0.298,0.27 +2015-10-12 01:00:00,0.265,0.297,0.27 +2015-10-12 02:00:00,0.265,0.297,0.27 +2015-10-12 03:00:00,0.265,0.297,0.27 +2015-10-12 04:00:00,0.265,0.297,0.27 +2015-10-12 05:00:00,0.265,0.297,0.27 +2015-10-12 06:00:00,0.265,0.297,0.27 +2015-10-12 07:00:00,0.265,0.297,0.26899999999999996 +2015-10-12 08:00:00,0.265,0.297,0.26899999999999996 +2015-10-12 09:00:00,0.265,0.297,0.26899999999999996 +2015-10-12 10:00:00,0.264,0.297,0.27 +2015-10-12 11:00:00,0.264,0.297,0.27 +2015-10-12 12:00:00,0.264,0.297,0.27 +2015-10-12 13:00:00,0.264,0.297,0.27 +2015-10-12 14:00:00,0.264,0.29600000000000004,0.27 +2015-10-12 15:00:00,0.264,0.29600000000000004,0.26899999999999996 +2015-10-12 16:00:00,0.263,0.29600000000000004,0.26899999999999996 +2015-10-12 17:00:00,0.263,0.29600000000000004,0.26899999999999996 +2015-10-12 18:00:00,0.264,0.29600000000000004,0.26899999999999996 +2015-10-12 19:00:00,0.264,0.295,0.26899999999999996 +2015-10-12 20:00:00,0.263,0.295,0.26899999999999996 +2015-10-12 21:00:00,0.264,0.295,0.26899999999999996 +2015-10-12 22:00:00,0.264,0.295,0.26899999999999996 +2015-10-12 23:00:00,0.264,0.295,0.26899999999999996 +2015-10-13 00:00:00,0.264,0.295,0.26899999999999996 +2015-10-13 01:00:00,0.264,0.295,0.26899999999999996 +2015-10-13 02:00:00,0.264,0.295,0.26899999999999996 +2015-10-13 03:00:00,0.264,0.295,0.26899999999999996 +2015-10-13 04:00:00,0.264,0.295,0.26899999999999996 +2015-10-13 05:00:00,0.264,0.295,0.26899999999999996 +2015-10-13 06:00:00,0.264,0.294,0.26899999999999996 +2015-10-13 07:00:00,0.264,0.293,0.26899999999999996 +2015-10-13 08:00:00,0.264,0.293,0.26899999999999996 +2015-10-13 09:00:00,0.264,0.293,0.26899999999999996 +2015-10-13 10:00:00,0.263,0.293,0.26899999999999996 +2015-10-13 11:00:00,0.263,0.293,0.26899999999999996 +2015-10-13 12:00:00,0.263,0.293,0.26899999999999996 +2015-10-13 13:00:00,0.263,0.293,0.26899999999999996 +2015-10-13 14:00:00,0.263,0.293,0.26899999999999996 +2015-10-13 15:00:00,0.263,0.293,0.26899999999999996 +2015-10-13 16:00:00,0.263,0.292,0.26899999999999996 +2015-10-13 17:00:00,0.263,0.292,0.26899999999999996 +2015-10-13 18:00:00,0.262,0.292,0.26899999999999996 +2015-10-13 19:00:00,0.263,0.292,0.26899999999999996 +2015-10-13 20:00:00,0.263,0.292,0.26899999999999996 +2015-10-13 21:00:00,0.263,0.292,0.26899999999999996 +2015-10-13 22:00:00,0.263,0.292,0.26899999999999996 +2015-10-13 23:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 00:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 01:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 02:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 03:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 04:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 05:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 06:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 07:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 08:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 09:00:00,0.262,0.292,0.26899999999999996 +2015-10-14 10:00:00,0.262,0.292,0.27 +2015-10-14 11:00:00,0.261,0.292,0.27 +2015-10-14 12:00:00,0.26,0.292,0.271 +2015-10-14 13:00:00,0.259,0.292,0.271 +2015-10-14 14:00:00,0.259,0.292,0.271 +2015-10-14 15:00:00,0.26,0.292,0.271 +2015-10-14 16:00:00,0.26,0.292,0.271 +2015-10-14 17:00:00,0.261,0.292,0.271 +2015-10-14 18:00:00,0.261,0.292,0.27 +2015-10-14 19:00:00,0.261,0.292,0.27 +2015-10-14 20:00:00,0.261,0.292,0.27 +2015-10-14 21:00:00,0.261,0.292,0.27 +2015-10-14 22:00:00,0.261,0.292,0.27 +2015-10-14 23:00:00,0.261,0.29100000000000004,0.27 +2015-10-15 00:00:00,0.261,0.29100000000000004,0.271 +2015-10-15 01:00:00,0.261,0.29100000000000004,0.27 +2015-10-15 02:00:00,0.261,0.29100000000000004,0.27 +2015-10-15 03:00:00,0.262,0.29,0.27 +2015-10-15 04:00:00,0.262,0.29,0.27 +2015-10-15 05:00:00,0.262,0.29,0.27 +2015-10-15 06:00:00,0.261,0.29,0.27 +2015-10-15 07:00:00,0.259,0.29,0.271 +2015-10-15 08:00:00,0.26,0.29,0.271 +2015-10-15 09:00:00,0.263,0.29,0.271 +2015-10-15 10:00:00,0.265,0.29,0.271 +2015-10-15 11:00:00,0.278,0.29,0.273 +2015-10-15 12:00:00,0.285,0.29,0.304 +2015-10-15 13:00:00,0.284,0.29,0.312 +2015-10-15 14:00:00,0.281,0.29,0.312 +2015-10-15 15:00:00,0.278,0.29,0.312 +2015-10-15 16:00:00,0.276,0.29,0.311 +2015-10-15 17:00:00,0.27399999999999997,0.29,0.311 +2015-10-15 18:00:00,0.273,0.29,0.311 +2015-10-15 19:00:00,0.281,0.29,0.313 +2015-10-15 20:00:00,0.295,0.29,0.32 +2015-10-15 21:00:00,0.299,0.29,0.322 +2015-10-15 22:00:00,0.294,0.29,0.321 +2015-10-15 23:00:00,0.28800000000000003,0.29,0.32 +2015-10-16 00:00:00,0.281,0.29,0.318 +2015-10-16 01:00:00,0.27699999999999997,0.29,0.316 +2015-10-16 02:00:00,0.275,0.29,0.315 +2015-10-16 03:00:00,0.273,0.29,0.314 +2015-10-16 04:00:00,0.271,0.29,0.313 +2015-10-16 05:00:00,0.27,0.29,0.313 +2015-10-16 06:00:00,0.26899999999999996,0.29,0.312 +2015-10-16 07:00:00,0.268,0.29,0.312 +2015-10-16 08:00:00,0.268,0.289,0.311 +2015-10-16 09:00:00,0.267,0.289,0.31 +2015-10-16 10:00:00,0.267,0.289,0.31 +2015-10-16 11:00:00,0.267,0.289,0.309 +2015-10-16 12:00:00,0.267,0.289,0.308 +2015-10-16 13:00:00,0.26899999999999996,0.289,0.307 +2015-10-16 14:00:00,0.27,0.289,0.306 +2015-10-16 15:00:00,0.271,0.289,0.306 +2015-10-16 16:00:00,0.272,0.28800000000000003,0.305 +2015-10-16 17:00:00,0.272,0.28800000000000003,0.304 +2015-10-16 18:00:00,0.272,0.28800000000000003,0.304 +2015-10-16 19:00:00,0.272,0.28800000000000003,0.303 +2015-10-16 20:00:00,0.272,0.28800000000000003,0.302 +2015-10-16 21:00:00,0.272,0.28800000000000003,0.302 +2015-10-16 22:00:00,0.271,0.28800000000000003,0.302 +2015-10-16 23:00:00,0.271,0.28800000000000003,0.301 +2015-10-17 00:00:00,0.271,0.28800000000000003,0.301 +2015-10-17 01:00:00,0.271,0.28800000000000003,0.3 +2015-10-17 02:00:00,0.271,0.28800000000000003,0.299 +2015-10-17 03:00:00,0.27,0.28800000000000003,0.299 +2015-10-17 04:00:00,0.27,0.28800000000000003,0.298 +2015-10-17 05:00:00,0.26899999999999996,0.28800000000000003,0.298 +2015-10-17 06:00:00,0.26899999999999996,0.28800000000000003,0.298 +2015-10-17 07:00:00,0.26899999999999996,0.28800000000000003,0.297 +2015-10-17 08:00:00,0.26899999999999996,0.28800000000000003,0.297 +2015-10-17 09:00:00,0.26899999999999996,0.28800000000000003,0.297 +2015-10-17 10:00:00,0.26899999999999996,0.28800000000000003,0.29600000000000004 +2015-10-17 11:00:00,0.27,0.28800000000000003,0.29600000000000004 +2015-10-17 12:00:00,0.27,0.287,0.295 +2015-10-17 13:00:00,0.271,0.287,0.295 +2015-10-17 14:00:00,0.271,0.28800000000000003,0.295 +2015-10-17 15:00:00,0.271,0.28800000000000003,0.294 +2015-10-17 16:00:00,0.272,0.28800000000000003,0.294 +2015-10-17 17:00:00,0.272,0.28800000000000003,0.293 +2015-10-17 18:00:00,0.272,0.28800000000000003,0.293 +2015-10-17 19:00:00,0.271,0.28800000000000003,0.293 +2015-10-17 20:00:00,0.271,0.28800000000000003,0.293 +2015-10-17 21:00:00,0.271,0.28800000000000003,0.292 +2015-10-17 22:00:00,0.271,0.28800000000000003,0.292 +2015-10-17 23:00:00,0.271,0.28800000000000003,0.292 +2015-10-18 00:00:00,0.271,0.28800000000000003,0.292 +2015-10-18 01:00:00,0.271,0.28800000000000003,0.292 +2015-10-18 02:00:00,0.271,0.28800000000000003,0.292 +2015-10-18 03:00:00,0.27,0.28800000000000003,0.29100000000000004 +2015-10-18 04:00:00,0.27,0.287,0.29100000000000004 +2015-10-18 05:00:00,0.27,0.287,0.29100000000000004 +2015-10-18 06:00:00,0.27,0.287,0.29100000000000004 +2015-10-18 07:00:00,0.27,0.287,0.29100000000000004 +2015-10-18 08:00:00,0.27,0.287,0.29 +2015-10-18 09:00:00,0.26899999999999996,0.287,0.29 +2015-10-18 10:00:00,0.27,0.287,0.29 +2015-10-18 11:00:00,0.26899999999999996,0.287,0.29 +2015-10-18 12:00:00,0.26899999999999996,0.287,0.29 +2015-10-18 13:00:00,0.26899999999999996,0.287,0.29 +2015-10-18 14:00:00,0.26899999999999996,0.287,0.29 +2015-10-18 15:00:00,0.26899999999999996,0.287,0.29 +2015-10-18 16:00:00,0.26899999999999996,0.287,0.289 +2015-10-18 17:00:00,0.26899999999999996,0.287,0.289 +2015-10-18 18:00:00,0.26899999999999996,0.287,0.289 +2015-10-18 19:00:00,0.26899999999999996,0.287,0.289 +2015-10-18 20:00:00,0.26899999999999996,0.287,0.289 +2015-10-18 21:00:00,0.26899999999999996,0.28600000000000003,0.289 +2015-10-18 22:00:00,0.26899999999999996,0.28600000000000003,0.289 +2015-10-18 23:00:00,0.26899999999999996,0.28600000000000003,0.28800000000000003 +2015-10-19 00:00:00,0.26899999999999996,0.28600000000000003,0.28800000000000003 +2015-10-19 01:00:00,0.268,0.28600000000000003,0.28800000000000003 +2015-10-19 02:00:00,0.26899999999999996,0.28600000000000003,0.28800000000000003 +2015-10-19 03:00:00,0.268,0.28600000000000003,0.28800000000000003 +2015-10-19 04:00:00,0.268,0.28600000000000003,0.28800000000000003 +2015-10-19 05:00:00,0.268,0.28600000000000003,0.28800000000000003 +2015-10-19 06:00:00,0.268,0.285,0.28800000000000003 +2015-10-19 07:00:00,0.268,0.285,0.28800000000000003 +2015-10-19 08:00:00,0.268,0.285,0.28800000000000003 +2015-10-19 09:00:00,0.268,0.285,0.28800000000000003 +2015-10-19 10:00:00,0.268,0.285,0.28800000000000003 +2015-10-19 11:00:00,0.268,0.285,0.287 +2015-10-19 12:00:00,0.268,0.285,0.287 +2015-10-19 13:00:00,0.267,0.285,0.287 +2015-10-19 14:00:00,0.267,0.285,0.287 +2015-10-19 15:00:00,0.267,0.285,0.287 +2015-10-19 16:00:00,0.267,0.285,0.287 +2015-10-19 17:00:00,0.267,0.285,0.287 +2015-10-19 18:00:00,0.267,0.285,0.287 +2015-10-19 19:00:00,0.267,0.285,0.287 +2015-10-19 20:00:00,0.267,0.285,0.287 +2015-10-19 21:00:00,0.267,0.285,0.287 +2015-10-19 22:00:00,0.267,0.285,0.287 +2015-10-19 23:00:00,0.267,0.285,0.287 +2015-10-20 00:00:00,0.266,0.285,0.287 +2015-10-20 01:00:00,0.266,0.285,0.287 +2015-10-20 02:00:00,0.266,0.285,0.287 +2015-10-20 03:00:00,0.266,0.285,0.287 +2015-10-20 04:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 05:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 06:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 07:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 08:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 09:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 10:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 11:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 12:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 13:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 14:00:00,0.266,0.285,0.28600000000000003 +2015-10-20 15:00:00,0.265,0.285,0.285 +2015-10-20 16:00:00,0.265,0.285,0.285 +2015-10-20 17:00:00,0.265,0.285,0.285 +2015-10-20 18:00:00,0.265,0.285,0.285 +2015-10-20 19:00:00,0.265,0.285,0.285 +2015-10-20 20:00:00,0.265,0.285,0.285 +2015-10-20 21:00:00,0.265,0.285,0.285 +2015-10-20 22:00:00,0.265,0.285,0.285 +2015-10-20 23:00:00,0.265,0.285,0.285 +2015-10-21 00:00:00,0.265,0.285,0.285 +2015-10-21 01:00:00,0.265,0.285,0.285 +2015-10-21 02:00:00,0.264,0.285,0.285 +2015-10-21 03:00:00,0.264,0.285,0.285 +2015-10-21 04:00:00,0.264,0.285,0.285 +2015-10-21 05:00:00,0.265,0.285,0.285 +2015-10-21 06:00:00,0.264,0.285,0.285 +2015-10-21 07:00:00,0.264,0.285,0.285 +2015-10-21 08:00:00,0.264,0.284,0.285 +2015-10-21 09:00:00,0.264,0.28300000000000003,0.285 +2015-10-21 10:00:00,0.264,0.28300000000000003,0.285 +2015-10-21 11:00:00,0.264,0.28300000000000003,0.285 +2015-10-21 12:00:00,0.264,0.28300000000000003,0.285 +2015-10-21 13:00:00,0.264,0.28300000000000003,0.285 +2015-10-21 14:00:00,0.264,0.28300000000000003,0.284 +2015-10-21 15:00:00,0.264,0.28300000000000003,0.284 +2015-10-21 16:00:00,0.263,0.28300000000000003,0.284 +2015-10-21 17:00:00,0.264,0.28300000000000003,0.284 +2015-10-21 18:00:00,0.263,0.28300000000000003,0.284 +2015-10-21 19:00:00,0.263,0.28300000000000003,0.284 +2015-10-21 20:00:00,0.263,0.28300000000000003,0.284 +2015-10-21 21:00:00,0.263,0.28300000000000003,0.284 +2015-10-21 22:00:00,0.263,0.28300000000000003,0.284 +2015-10-21 23:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 00:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 01:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 02:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 03:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 04:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 05:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 06:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 07:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 08:00:00,0.263,0.28300000000000003,0.284 +2015-10-22 09:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 10:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 11:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 12:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 13:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 14:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 15:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 16:00:00,0.262,0.28300000000000003,0.28300000000000003 +2015-10-22 17:00:00,0.262,0.28300000000000003,0.28300000000000003 +2015-10-22 18:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 19:00:00,0.262,0.28300000000000003,0.284 +2015-10-22 20:00:00,0.261,0.28300000000000003,0.284 +2015-10-22 21:00:00,0.261,0.28300000000000003,0.284 +2015-10-22 22:00:00,0.261,0.28300000000000003,0.284 +2015-10-22 23:00:00,0.261,0.28300000000000003,0.284 +2015-10-23 00:00:00,0.261,0.28300000000000003,0.284 +2015-10-23 01:00:00,0.261,0.28300000000000003,0.284 +2015-10-23 02:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 03:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 04:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 05:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 06:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 07:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 08:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 09:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 10:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 11:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 12:00:00,0.26,0.28300000000000003,0.284 +2015-10-23 13:00:00,0.259,0.28300000000000003,0.284 +2015-10-23 14:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 15:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 16:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 17:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 18:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 19:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 20:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 21:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 22:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-23 23:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 00:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 01:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 02:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 03:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 04:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 05:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 06:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 07:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 08:00:00,0.259,0.28300000000000003,0.28300000000000003 +2015-10-24 09:00:00,0.258,0.28300000000000003,0.28300000000000003 +2015-10-24 10:00:00,0.258,0.282,0.28300000000000003 +2015-10-24 11:00:00,0.258,0.282,0.28300000000000003 +2015-10-24 12:00:00,0.258,0.282,0.28300000000000003 +2015-10-24 13:00:00,0.258,0.282,0.28300000000000003 +2015-10-24 14:00:00,0.258,0.282,0.28300000000000003 +2015-10-24 15:00:00,0.258,0.282,0.28300000000000003 +2015-10-24 16:00:00,0.258,0.28300000000000003,0.282 +2015-10-24 17:00:00,0.258,0.28300000000000003,0.282 +2015-10-24 18:00:00,0.258,0.282,0.282 +2015-10-24 19:00:00,0.258,0.282,0.282 +2015-10-24 20:00:00,0.258,0.282,0.282 +2015-10-24 21:00:00,0.258,0.282,0.282 +2015-10-24 22:00:00,0.258,0.282,0.282 +2015-10-24 23:00:00,0.258,0.282,0.282 +2015-10-25 00:00:00,0.258,0.282,0.282 +2015-10-25 01:00:00,0.258,0.282,0.282 +2015-10-25 02:00:00,0.258,0.282,0.282 +2015-10-25 03:00:00,0.258,0.282,0.282 +2015-10-25 04:00:00,0.258,0.282,0.282 +2015-10-25 05:00:00,0.257,0.282,0.282 +2015-10-25 06:00:00,0.258,0.281,0.282 +2015-10-25 07:00:00,0.258,0.281,0.28300000000000003 +2015-10-25 08:00:00,0.257,0.281,0.28300000000000003 +2015-10-25 09:00:00,0.257,0.281,0.28300000000000003 +2015-10-25 10:00:00,0.257,0.281,0.28300000000000003 +2015-10-25 11:00:00,0.257,0.281,0.28300000000000003 +2015-10-25 12:00:00,0.257,0.281,0.28300000000000003 +2015-10-25 13:00:00,0.257,0.281,0.282 +2015-10-25 14:00:00,0.257,0.281,0.282 +2015-10-25 15:00:00,0.257,0.281,0.282 +2015-10-25 16:00:00,0.257,0.281,0.282 +2015-10-25 17:00:00,0.257,0.281,0.282 +2015-10-25 18:00:00,0.257,0.281,0.282 +2015-10-25 19:00:00,0.257,0.281,0.282 +2015-10-25 20:00:00,0.257,0.281,0.282 +2015-10-25 21:00:00,0.257,0.281,0.282 +2015-10-25 22:00:00,0.257,0.281,0.282 +2015-10-25 23:00:00,0.257,0.281,0.282 +2015-10-26 00:00:00,0.257,0.281,0.282 +2015-10-26 01:00:00,0.257,0.281,0.282 +2015-10-26 02:00:00,0.257,0.281,0.282 +2015-10-26 03:00:00,0.257,0.281,0.282 +2015-10-26 04:00:00,0.257,0.281,0.282 +2015-10-26 05:00:00,0.257,0.281,0.282 +2015-10-26 06:00:00,0.257,0.281,0.282 +2015-10-26 07:00:00,0.257,0.281,0.282 +2015-10-26 08:00:00,0.257,0.281,0.282 +2015-10-26 09:00:00,0.256,0.28,0.282 +2015-10-26 10:00:00,0.257,0.28,0.282 +2015-10-26 11:00:00,0.257,0.28,0.282 +2015-10-26 12:00:00,0.257,0.28,0.282 +2015-10-26 13:00:00,0.256,0.28,0.282 +2015-10-26 14:00:00,0.257,0.28,0.282 +2015-10-26 15:00:00,0.256,0.28,0.282 +2015-10-26 16:00:00,0.257,0.28,0.282 +2015-10-26 17:00:00,0.256,0.28,0.282 +2015-10-26 18:00:00,0.257,0.28,0.281 +2015-10-26 19:00:00,0.256,0.28,0.281 +2015-10-26 20:00:00,0.256,0.28,0.281 +2015-10-26 21:00:00,0.257,0.28,0.281 +2015-10-26 22:00:00,0.256,0.28,0.281 +2015-10-26 23:00:00,0.256,0.28,0.281 +2015-10-27 00:00:00,0.256,0.28,0.281 +2015-10-27 01:00:00,0.256,0.28,0.281 +2015-10-27 02:00:00,0.256,0.28,0.282 +2015-10-27 03:00:00,0.256,0.28,0.282 +2015-10-27 04:00:00,0.256,0.28,0.282 +2015-10-27 05:00:00,0.256,0.28,0.282 +2015-10-27 06:00:00,0.256,0.28,0.282 +2015-10-27 07:00:00,0.256,0.28,0.282 +2015-10-27 08:00:00,0.256,0.28,0.282 +2015-10-27 09:00:00,0.256,0.28,0.282 +2015-10-27 10:00:00,0.256,0.28,0.282 +2015-10-27 11:00:00,0.256,0.28,0.281 +2015-10-27 12:00:00,0.256,0.28,0.281 +2015-10-27 13:00:00,0.256,0.28,0.281 +2015-10-27 14:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 15:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 16:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 17:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 18:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 19:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 20:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 21:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 22:00:00,0.256,0.27899999999999997,0.281 +2015-10-27 23:00:00,0.256,0.27899999999999997,0.281 +2015-10-28 00:00:00,0.256,0.27899999999999997,0.281 +2015-10-28 01:00:00,0.256,0.27899999999999997,0.281 +2015-10-28 02:00:00,0.256,0.27899999999999997,0.281 +2015-10-28 03:00:00,0.256,0.27899999999999997,0.281 +2015-10-28 04:00:00,0.256,0.27899999999999997,0.281 +2015-10-28 05:00:00,0.256,0.278,0.281 +2015-10-28 06:00:00,0.256,0.278,0.281 +2015-10-28 07:00:00,0.255,0.278,0.281 +2015-10-28 08:00:00,0.256,0.278,0.281 +2015-10-28 09:00:00,0.256,0.278,0.281 +2015-10-28 10:00:00,0.256,0.278,0.281 +2015-10-28 11:00:00,0.256,0.278,0.281 +2015-10-28 12:00:00,0.256,0.278,0.281 +2015-10-28 13:00:00,0.256,0.278,0.281 +2015-10-28 14:00:00,0.255,0.278,0.281 +2015-10-28 15:00:00,0.255,0.278,0.281 +2015-10-28 16:00:00,0.256,0.278,0.281 +2015-10-28 17:00:00,0.256,0.278,0.281 +2015-10-28 18:00:00,0.256,0.278,0.281 +2015-10-28 19:00:00,0.255,0.278,0.281 +2015-10-28 20:00:00,0.256,0.278,0.281 +2015-10-28 21:00:00,0.255,0.278,0.281 +2015-10-28 22:00:00,0.255,0.278,0.281 +2015-10-28 23:00:00,0.255,0.278,0.281 +2015-10-29 00:00:00,0.255,0.278,0.281 +2015-10-29 01:00:00,0.255,0.278,0.281 +2015-10-29 02:00:00,0.255,0.278,0.281 +2015-10-29 03:00:00,0.255,0.278,0.281 +2015-10-29 04:00:00,0.255,0.278,0.281 +2015-10-29 05:00:00,0.255,0.278,0.281 +2015-10-29 06:00:00,0.255,0.278,0.281 +2015-10-29 07:00:00,0.255,0.278,0.281 +2015-10-29 08:00:00,0.255,0.278,0.281 +2015-10-29 09:00:00,0.255,0.278,0.281 +2015-10-29 10:00:00,0.255,0.278,0.281 +2015-10-29 11:00:00,0.255,0.278,0.281 +2015-10-29 12:00:00,0.255,0.278,0.28 +2015-10-29 13:00:00,0.255,0.278,0.28 +2015-10-29 14:00:00,0.255,0.278,0.28 +2015-10-29 15:00:00,0.255,0.278,0.28 +2015-10-29 16:00:00,0.255,0.278,0.28 +2015-10-29 17:00:00,0.255,0.278,0.28 +2015-10-29 18:00:00,0.255,0.278,0.28 +2015-10-29 19:00:00,0.255,0.278,0.28 +2015-10-29 20:00:00,0.255,0.278,0.28 +2015-10-29 21:00:00,0.255,0.278,0.28 +2015-10-29 22:00:00,0.255,0.278,0.28 +2015-10-29 23:00:00,0.255,0.278,0.28 +2015-10-30 00:00:00,0.255,0.278,0.28 +2015-10-30 01:00:00,0.255,0.278,0.28 +2015-10-30 02:00:00,0.255,0.278,0.28 +2015-10-30 03:00:00,0.255,0.278,0.28 +2015-10-30 04:00:00,0.255,0.278,0.28 +2015-10-30 05:00:00,0.255,0.278,0.28 +2015-10-30 06:00:00,0.255,0.278,0.281 +2015-10-30 07:00:00,0.254,0.278,0.281 +2015-10-30 08:00:00,0.254,0.278,0.281 +2015-10-30 09:00:00,0.254,0.278,0.281 +2015-10-30 10:00:00,0.254,0.278,0.281 +2015-10-30 11:00:00,0.254,0.278,0.281 +2015-10-30 12:00:00,0.254,0.278,0.28 +2015-10-30 13:00:00,0.254,0.278,0.28 +2015-10-30 14:00:00,0.254,0.278,0.28 +2015-10-30 15:00:00,0.254,0.278,0.28 +2015-10-30 16:00:00,0.254,0.278,0.28 +2015-10-30 17:00:00,0.254,0.278,0.28 +2015-10-30 18:00:00,0.254,0.278,0.28 +2015-10-30 19:00:00,0.254,0.278,0.28 +2015-10-30 20:00:00,0.254,0.278,0.28 +2015-10-30 21:00:00,0.254,0.278,0.28 +2015-10-30 22:00:00,0.254,0.278,0.28 +2015-10-30 23:00:00,0.254,0.278,0.28 +2015-10-31 00:00:00,0.254,0.278,0.28 +2015-10-31 01:00:00,0.254,0.278,0.28 +2015-10-31 02:00:00,0.254,0.278,0.28 +2015-10-31 03:00:00,0.254,0.278,0.28 +2015-10-31 04:00:00,0.254,0.278,0.28 +2015-10-31 05:00:00,0.254,0.278,0.28 +2015-10-31 06:00:00,0.254,0.278,0.28 +2015-10-31 07:00:00,0.254,0.278,0.28 +2015-10-31 08:00:00,0.254,0.278,0.28 +2015-10-31 09:00:00,0.254,0.278,0.28 +2015-10-31 10:00:00,0.254,0.278,0.28 +2015-10-31 11:00:00,0.254,0.278,0.28 +2015-10-31 12:00:00,0.254,0.278,0.28 +2015-10-31 13:00:00,0.254,0.278,0.28 +2015-10-31 14:00:00,0.254,0.278,0.28 +2015-10-31 15:00:00,0.254,0.278,0.28 +2015-10-31 16:00:00,0.254,0.278,0.28 +2015-10-31 17:00:00,0.254,0.278,0.27899999999999997 +2015-10-31 18:00:00,0.253,0.278,0.27899999999999997 +2015-10-31 19:00:00,0.253,0.278,0.27899999999999997 +2015-10-31 20:00:00,0.254,0.278,0.27899999999999997 +2015-10-31 21:00:00,0.254,0.278,0.27899999999999997 +2015-10-31 22:00:00,0.254,0.278,0.27899999999999997 +2015-10-31 23:00:00,0.254,0.278,0.27899999999999997 +2015-11-01 00:00:00,0.254,0.278,0.27899999999999997 +2015-11-01 01:00:00,0.254,0.278,0.27899999999999997 +2015-11-01 02:00:00,0.254,0.278,0.27899999999999997 +2015-11-01 03:00:00,0.253,0.278,0.27899999999999997 +2015-11-01 04:00:00,0.254,0.278,0.28 +2015-11-01 05:00:00,0.254,0.278,0.28 +2015-11-01 06:00:00,0.254,0.278,0.28 +2015-11-01 07:00:00,0.253,0.278,0.27899999999999997 +2015-11-01 08:00:00,0.254,0.278,0.27899999999999997 +2015-11-01 09:00:00,0.254,0.278,0.28 +2015-11-01 10:00:00,0.254,0.278,0.28 +2015-11-01 11:00:00,0.254,0.278,0.28 +2015-11-01 12:00:00,0.254,0.278,0.28 +2015-11-01 13:00:00,0.253,0.278,0.28 +2015-11-01 14:00:00,0.253,0.278,0.28 +2015-11-01 15:00:00,0.253,0.278,0.27899999999999997 +2015-11-01 16:00:00,0.253,0.278,0.27899999999999997 +2015-11-01 17:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-01 18:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-01 19:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-01 20:00:00,0.253,0.28,0.27899999999999997 +2015-11-01 21:00:00,0.253,0.28,0.27899999999999997 +2015-11-01 22:00:00,0.253,0.28,0.27899999999999997 +2015-11-01 23:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 00:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 01:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 02:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 03:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 04:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 05:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 06:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 07:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 08:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 09:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 10:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 11:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 12:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 13:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 14:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-02 15:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-02 16:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-02 17:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 18:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 19:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 20:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 21:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 22:00:00,0.253,0.28,0.27899999999999997 +2015-11-02 23:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 00:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 01:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 02:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 03:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 04:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 05:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 06:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-03 07:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-03 08:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-03 09:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-03 10:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 11:00:00,0.252,0.281,0.27899999999999997 +2015-11-03 12:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-03 13:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-03 14:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-03 15:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-03 16:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 17:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 18:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 19:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 20:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 21:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 22:00:00,0.253,0.28,0.27899999999999997 +2015-11-03 23:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 00:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 01:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 02:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 03:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 04:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 05:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 06:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 07:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 08:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 09:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 10:00:00,0.253,0.28,0.27899999999999997 +2015-11-04 11:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 12:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 13:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 14:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 15:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 16:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 17:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 18:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 19:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 20:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 21:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-04 22:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-04 23:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 00:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 01:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 02:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 03:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 04:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 05:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 06:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 07:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 08:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 09:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 10:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 11:00:00,0.253,0.27899999999999997,0.27899999999999997 +2015-11-05 12:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 13:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 14:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 15:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 16:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 17:00:00,0.252,0.27899999999999997,0.278 +2015-11-05 18:00:00,0.252,0.27899999999999997,0.278 +2015-11-05 19:00:00,0.252,0.27899999999999997,0.278 +2015-11-05 20:00:00,0.252,0.27899999999999997,0.278 +2015-11-05 21:00:00,0.252,0.27899999999999997,0.278 +2015-11-05 22:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-05 23:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-06 00:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-06 01:00:00,0.252,0.27899999999999997,0.27899999999999997 +2015-11-06 02:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 03:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 04:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 05:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 06:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 07:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 08:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 09:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 10:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 11:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 12:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 13:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 14:00:00,0.252,0.278,0.278 +2015-11-06 15:00:00,0.252,0.278,0.278 +2015-11-06 16:00:00,0.252,0.278,0.278 +2015-11-06 17:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 18:00:00,0.252,0.278,0.278 +2015-11-06 19:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 20:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 21:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 22:00:00,0.252,0.278,0.27899999999999997 +2015-11-06 23:00:00,0.252,0.278,0.27899999999999997 +2015-11-07 00:00:00,0.251,0.278,0.27899999999999997 +2015-11-07 01:00:00,0.248,0.278,0.281 +2015-11-07 02:00:00,0.248,0.278,0.281 +2015-11-07 03:00:00,0.248,0.278,0.281 +2015-11-07 04:00:00,0.248,0.278,0.281 +2015-11-07 05:00:00,0.248,0.278,0.281 +2015-11-07 06:00:00,0.248,0.278,0.281 +2015-11-07 07:00:00,0.248,0.278,0.281 +2015-11-07 08:00:00,0.248,0.278,0.281 +2015-11-07 09:00:00,0.247,0.278,0.281 +2015-11-07 10:00:00,0.247,0.278,0.281 +2015-11-07 11:00:00,0.248,0.278,0.281 +2015-11-07 12:00:00,0.248,0.278,0.281 +2015-11-07 13:00:00,0.25,0.278,0.281 +2015-11-07 14:00:00,0.251,0.278,0.28 +2015-11-07 15:00:00,0.251,0.278,0.28 +2015-11-07 16:00:00,0.252,0.278,0.28 +2015-11-07 17:00:00,0.252,0.278,0.28 +2015-11-07 18:00:00,0.252,0.278,0.28 +2015-11-07 19:00:00,0.252,0.278,0.28 +2015-11-07 20:00:00,0.251,0.278,0.28 +2015-11-07 21:00:00,0.252,0.276,0.28 +2015-11-07 22:00:00,0.251,0.276,0.28 +2015-11-07 23:00:00,0.252,0.276,0.28 +2015-11-08 00:00:00,0.252,0.276,0.28 +2015-11-08 01:00:00,0.252,0.276,0.28 +2015-11-08 02:00:00,0.252,0.276,0.28 +2015-11-08 03:00:00,0.251,0.276,0.28 +2015-11-08 04:00:00,0.251,0.276,0.28 +2015-11-08 05:00:00,0.251,0.276,0.28 +2015-11-08 06:00:00,0.251,0.276,0.28 +2015-11-08 07:00:00,0.251,0.276,0.28 +2015-11-08 08:00:00,0.251,0.276,0.28 +2015-11-08 09:00:00,0.251,0.276,0.28 +2015-11-08 10:00:00,0.251,0.276,0.28 +2015-11-08 11:00:00,0.251,0.276,0.28 +2015-11-08 12:00:00,0.251,0.276,0.28 +2015-11-08 13:00:00,0.251,0.276,0.28 +2015-11-08 14:00:00,0.252,0.276,0.28 +2015-11-08 15:00:00,0.252,0.276,0.28 +2015-11-08 16:00:00,0.252,0.276,0.27899999999999997 +2015-11-08 17:00:00,0.252,0.276,0.27899999999999997 +2015-11-08 18:00:00,0.253,0.276,0.27899999999999997 +2015-11-08 19:00:00,0.252,0.276,0.27899999999999997 +2015-11-08 20:00:00,0.252,0.276,0.27899999999999997 +2015-11-08 21:00:00,0.252,0.276,0.27899999999999997 +2015-11-08 22:00:00,0.252,0.276,0.27899999999999997 +2015-11-08 23:00:00,0.252,0.276,0.27899999999999997 +2015-11-09 00:00:00,0.252,0.276,0.27899999999999997 +2015-11-09 01:00:00,0.252,0.275,0.27899999999999997 +2015-11-09 02:00:00,0.252,0.275,0.28 +2015-11-09 03:00:00,0.252,0.275,0.28 +2015-11-09 04:00:00,0.252,0.275,0.28 +2015-11-09 05:00:00,0.252,0.275,0.28 +2015-11-09 06:00:00,0.252,0.275,0.28 +2015-11-09 07:00:00,0.252,0.275,0.28 +2015-11-09 08:00:00,0.252,0.275,0.28 +2015-11-09 09:00:00,0.252,0.275,0.28 +2015-11-09 10:00:00,0.252,0.275,0.28 +2015-11-09 11:00:00,0.252,0.275,0.28 +2015-11-09 12:00:00,0.253,0.275,0.27899999999999997 +2015-11-09 13:00:00,0.253,0.276,0.27899999999999997 +2015-11-09 14:00:00,0.253,0.276,0.27899999999999997 +2015-11-09 15:00:00,0.253,0.276,0.27899999999999997 +2015-11-09 16:00:00,0.253,0.276,0.27899999999999997 +2015-11-09 17:00:00,0.253,0.276,0.27899999999999997 +2015-11-09 18:00:00,0.253,0.27699999999999997,0.27899999999999997 +2015-11-09 19:00:00,0.253,0.278,0.27899999999999997 +2015-11-09 20:00:00,0.253,0.278,0.27899999999999997 +2015-11-09 21:00:00,0.253,0.278,0.27899999999999997 +2015-11-09 22:00:00,0.253,0.278,0.27899999999999997 +2015-11-09 23:00:00,0.253,0.278,0.27899999999999997 +2015-11-10 00:00:00,0.253,0.278,0.27899999999999997 +2015-11-10 01:00:00,0.253,0.278,0.27899999999999997 +2015-11-10 02:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 03:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 04:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 05:00:00,0.253,0.278,0.27899999999999997 +2015-11-10 06:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 07:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 08:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 09:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 10:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 11:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 12:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 13:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 14:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 15:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 16:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 17:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 18:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 19:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 20:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 21:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 22:00:00,0.252,0.278,0.27899999999999997 +2015-11-10 23:00:00,0.252,0.278,0.27899999999999997 +2015-11-11 00:00:00,0.252,0.278,0.27899999999999997 +2015-11-11 01:00:00,0.252,0.278,0.27899999999999997 +2015-11-11 02:00:00,0.252,0.278,0.27899999999999997 +2015-11-11 03:00:00,0.252,0.276,0.27899999999999997 +2015-11-11 04:00:00,0.252,0.275,0.27899999999999997 +2015-11-11 05:00:00,0.252,0.275,0.27899999999999997 +2015-11-11 06:00:00,0.252,0.275,0.27899999999999997 +2015-11-11 07:00:00,0.252,0.275,0.27899999999999997 +2015-11-11 08:00:00,0.252,0.275,0.27899999999999997 +2015-11-11 09:00:00,0.252,0.272,0.27899999999999997 +2015-11-11 10:00:00,0.252,0.281,0.27899999999999997 +2015-11-11 11:00:00,0.252,0.287,0.27899999999999997 +2015-11-11 12:00:00,0.252,0.287,0.27899999999999997 +2015-11-11 13:00:00,0.252,0.29600000000000004,0.27899999999999997 +2015-11-11 14:00:00,0.252,0.303,0.27899999999999997 +2015-11-11 15:00:00,0.252,0.305,0.278 +2015-11-11 16:00:00,0.252,0.314,0.278 +2015-11-11 17:00:00,0.252,0.312,0.278 +2015-11-11 18:00:00,0.252,0.319,0.278 +2015-11-11 19:00:00,0.252,0.317,0.278 +2015-11-11 20:00:00,0.252,0.316,0.278 +2015-11-11 21:00:00,0.252,0.315,0.27899999999999997 +2015-11-11 22:00:00,0.252,0.31,0.27899999999999997 +2015-11-11 23:00:00,0.252,0.31,0.27899999999999997 +2015-11-12 00:00:00,0.252,0.308,0.27899999999999997 +2015-11-12 01:00:00,0.252,0.305,0.27899999999999997 +2015-11-12 02:00:00,0.252,0.308,0.27899999999999997 +2015-11-12 03:00:00,0.252,0.309,0.27899999999999997 +2015-11-12 04:00:00,0.252,0.31,0.27899999999999997 +2015-11-12 05:00:00,0.251,0.315,0.27899999999999997 +2015-11-12 06:00:00,0.252,0.317,0.27899999999999997 +2015-11-12 07:00:00,0.252,0.317,0.27899999999999997 +2015-11-12 08:00:00,0.251,0.317,0.278 +2015-11-12 09:00:00,0.252,0.317,0.27899999999999997 +2015-11-12 10:00:00,0.252,0.316,0.27899999999999997 +2015-11-12 11:00:00,0.252,0.315,0.27899999999999997 +2015-11-12 12:00:00,0.252,0.315,0.278 +2015-11-12 13:00:00,0.252,0.314,0.278 +2015-11-12 14:00:00,0.252,0.314,0.278 +2015-11-12 15:00:00,0.252,0.313,0.278 +2015-11-12 16:00:00,0.252,0.312,0.278 +2015-11-12 17:00:00,0.252,0.312,0.278 +2015-11-12 18:00:00,0.252,0.312,0.278 +2015-11-12 19:00:00,0.252,0.31,0.278 +2015-11-12 20:00:00,0.252,0.31,0.278 +2015-11-12 21:00:00,0.252,0.31,0.278 +2015-11-12 22:00:00,0.252,0.31,0.278 +2015-11-12 23:00:00,0.252,0.31,0.27899999999999997 +2015-11-13 00:00:00,0.252,0.31,0.278 +2015-11-13 01:00:00,0.252,0.309,0.278 +2015-11-13 02:00:00,0.252,0.309,0.278 +2015-11-13 03:00:00,0.252,0.309,0.278 +2015-11-13 04:00:00,0.252,0.309,0.27899999999999997 +2015-11-13 05:00:00,0.252,0.308,0.27899999999999997 +2015-11-13 06:00:00,0.252,0.305,0.278 +2015-11-13 07:00:00,0.252,0.304,0.27899999999999997 +2015-11-13 08:00:00,0.252,0.305,0.27899999999999997 +2015-11-13 09:00:00,0.252,0.305,0.27899999999999997 +2015-11-13 10:00:00,0.252,0.305,0.27899999999999997 +2015-11-13 11:00:00,0.252,0.302,0.27899999999999997 +2015-11-13 12:00:00,0.252,0.301,0.278 +2015-11-13 13:00:00,0.252,0.302,0.278 +2015-11-13 14:00:00,0.252,0.304,0.278 +2015-11-13 15:00:00,0.252,0.305,0.278 +2015-11-13 16:00:00,0.252,0.304,0.278 +2015-11-13 17:00:00,0.252,0.303,0.278 +2015-11-13 18:00:00,0.251,0.304,0.28 +2015-11-13 19:00:00,0.25,0.299,0.28 +2015-11-13 20:00:00,0.247,0.322,0.281 +2015-11-13 21:00:00,0.24600000000000002,0.32,0.281 +2015-11-13 22:00:00,0.243,0.321,0.282 +2015-11-13 23:00:00,0.243,0.321,0.282 +2015-11-14 00:00:00,0.243,0.321,0.282 +2015-11-14 01:00:00,0.243,0.324,0.282 +2015-11-14 02:00:00,0.244,0.324,0.281 +2015-11-14 03:00:00,0.245,0.32299999999999995,0.281 +2015-11-14 04:00:00,0.245,0.321,0.281 +2015-11-14 05:00:00,0.24600000000000002,0.32,0.281 +2015-11-14 06:00:00,0.24600000000000002,0.318,0.281 +2015-11-14 07:00:00,0.24600000000000002,0.317,0.281 +2015-11-14 08:00:00,0.247,0.317,0.281 +2015-11-14 09:00:00,0.248,0.315,0.281 +2015-11-14 10:00:00,0.249,0.315,0.281 +2015-11-14 11:00:00,0.251,0.315,0.28 +2015-11-14 12:00:00,0.252,0.315,0.28 +2015-11-14 13:00:00,0.252,0.314,0.27899999999999997 +2015-11-14 14:00:00,0.252,0.314,0.27899999999999997 +2015-11-14 15:00:00,0.252,0.314,0.27899999999999997 +2015-11-14 16:00:00,0.252,0.307,0.27899999999999997 +2015-11-14 17:00:00,0.252,0.308,0.27899999999999997 +2015-11-14 18:00:00,0.252,0.312,0.27899999999999997 +2015-11-14 19:00:00,0.252,0.319,0.27899999999999997 +2015-11-14 20:00:00,0.252,0.321,0.28 +2015-11-14 21:00:00,0.25,0.321,0.281 +2015-11-14 22:00:00,0.25,0.32,0.281 +2015-11-14 23:00:00,0.25,0.319,0.281 +2015-11-15 00:00:00,0.248,0.318,0.281 +2015-11-15 01:00:00,0.245,0.316,0.282 +2015-11-15 02:00:00,0.244,0.316,0.282 +2015-11-15 03:00:00,0.244,0.316,0.282 +2015-11-15 04:00:00,0.245,0.315,0.282 +2015-11-15 05:00:00,0.244,0.315,0.282 +2015-11-15 06:00:00,0.245,0.315,0.282 +2015-11-15 07:00:00,0.245,0.314,0.282 +2015-11-15 08:00:00,0.245,0.314,0.282 +2015-11-15 09:00:00,0.245,0.314,0.282 +2015-11-15 10:00:00,0.24600000000000002,0.313,0.282 +2015-11-15 11:00:00,0.248,0.313,0.281 +2015-11-15 12:00:00,0.25,0.312,0.281 +2015-11-15 13:00:00,0.252,0.312,0.28 +2015-11-15 14:00:00,0.253,0.312,0.27899999999999997 +2015-11-15 15:00:00,0.253,0.312,0.27899999999999997 +2015-11-15 16:00:00,0.253,0.312,0.27899999999999997 +2015-11-15 17:00:00,0.253,0.312,0.27899999999999997 +2015-11-15 18:00:00,0.253,0.312,0.27899999999999997 +2015-11-15 19:00:00,0.253,0.311,0.27899999999999997 +2015-11-15 20:00:00,0.253,0.31,0.27899999999999997 +2015-11-15 21:00:00,0.253,0.31,0.27899999999999997 +2015-11-15 22:00:00,0.253,0.31,0.27899999999999997 +2015-11-15 23:00:00,0.253,0.311,0.27899999999999997 +2015-11-16 00:00:00,0.253,0.312,0.27899999999999997 +2015-11-16 01:00:00,0.253,0.312,0.27899999999999997 +2015-11-16 02:00:00,0.253,0.313,0.27899999999999997 +2015-11-16 03:00:00,0.253,0.313,0.27899999999999997 +2015-11-16 04:00:00,0.254,0.312,0.27899999999999997 +2015-11-16 05:00:00,0.253,0.311,0.27899999999999997 +2015-11-16 06:00:00,0.254,0.31,0.27899999999999997 +2015-11-16 07:00:00,0.254,0.312,0.27899999999999997 +2015-11-16 08:00:00,0.253,0.312,0.27899999999999997 +2015-11-16 09:00:00,0.254,0.312,0.27899999999999997 +2015-11-16 10:00:00,0.254,0.311,0.27899999999999997 +2015-11-16 11:00:00,0.254,0.31,0.27899999999999997 +2015-11-16 12:00:00,0.254,0.31,0.27899999999999997 +2015-11-16 13:00:00,0.253,0.31,0.27899999999999997 +2015-11-16 14:00:00,0.254,0.31,0.27899999999999997 +2015-11-16 15:00:00,0.253,0.31,0.27899999999999997 +2015-11-16 16:00:00,0.254,0.31,0.278 +2015-11-16 17:00:00,0.253,0.31,0.27899999999999997 +2015-11-16 18:00:00,0.253,0.31,0.278 +2015-11-16 19:00:00,0.253,0.31,0.27899999999999997 +2015-11-16 20:00:00,0.253,0.31,0.27899999999999997 +2015-11-16 21:00:00,0.253,0.309,0.27899999999999997 +2015-11-16 22:00:00,0.253,0.31,0.27899999999999997 +2015-11-16 23:00:00,0.253,0.31,0.27899999999999997 +2015-11-17 00:00:00,0.252,0.31,0.281 +2015-11-17 01:00:00,0.25,0.31,0.281 +2015-11-17 02:00:00,0.249,0.309,0.281 +2015-11-17 03:00:00,0.249,0.309,0.281 +2015-11-17 04:00:00,0.248,0.309,0.282 +2015-11-17 05:00:00,0.247,0.309,0.282 +2015-11-17 06:00:00,0.261,0.308,0.285 +2015-11-17 07:00:00,0.27,0.307,0.29 +2015-11-17 08:00:00,0.26899999999999996,0.307,0.292 +2015-11-17 09:00:00,0.271,0.305,0.293 +2015-11-17 10:00:00,0.272,0.305,0.303 +2015-11-17 11:00:00,0.272,0.307,0.306 +2015-11-17 12:00:00,0.275,0.307,0.312 +2015-11-17 13:00:00,0.27399999999999997,0.307,0.315 +2015-11-17 14:00:00,0.275,0.307,0.315 +2015-11-17 15:00:00,0.273,0.307,0.317 +2015-11-17 16:00:00,0.27,0.307,0.316 +2015-11-17 17:00:00,0.268,0.309,0.315 +2015-11-17 18:00:00,0.267,0.31,0.313 +2015-11-17 19:00:00,0.268,0.31,0.312 +2015-11-17 20:00:00,0.26899999999999996,0.31,0.311 +2015-11-17 21:00:00,0.26899999999999996,0.311,0.311 +2015-11-17 22:00:00,0.272,0.312,0.313 +2015-11-17 23:00:00,0.273,0.312,0.315 +2015-11-18 00:00:00,0.275,0.312,0.316 +2015-11-18 01:00:00,0.275,0.312,0.316 +2015-11-18 02:00:00,0.272,0.312,0.316 +2015-11-18 03:00:00,0.26899999999999996,0.311,0.315 +2015-11-18 04:00:00,0.271,0.31,0.314 +2015-11-18 05:00:00,0.275,0.31,0.313 +2015-11-18 06:00:00,0.278,0.31,0.311 +2015-11-18 07:00:00,0.278,0.31,0.311 +2015-11-18 08:00:00,0.278,0.31,0.31 +2015-11-18 09:00:00,0.278,0.31,0.309 +2015-11-18 10:00:00,0.27699999999999997,0.31,0.308 +2015-11-18 11:00:00,0.276,0.31,0.307 +2015-11-18 12:00:00,0.276,0.309,0.306 +2015-11-18 13:00:00,0.275,0.309,0.306 +2015-11-18 14:00:00,0.275,0.308,0.305 +2015-11-18 15:00:00,0.275,0.307,0.304 +2015-11-18 16:00:00,0.27399999999999997,0.307,0.303 +2015-11-18 17:00:00,0.27399999999999997,0.307,0.302 +2015-11-18 18:00:00,0.27399999999999997,0.307,0.302 +2015-11-18 19:00:00,0.273,0.307,0.301 +2015-11-18 20:00:00,0.273,0.307,0.301 +2015-11-18 21:00:00,0.27399999999999997,0.307,0.3 +2015-11-18 22:00:00,0.273,0.307,0.3 +2015-11-18 23:00:00,0.273,0.307,0.299 +2015-11-19 00:00:00,0.273,0.307,0.298 +2015-11-19 01:00:00,0.272,0.307,0.298 +2015-11-19 02:00:00,0.272,0.306,0.297 +2015-11-19 03:00:00,0.27,0.306,0.298 +2015-11-19 04:00:00,0.27,0.306,0.298 +2015-11-19 05:00:00,0.27,0.306,0.298 +2015-11-19 06:00:00,0.271,0.307,0.297 +2015-11-19 07:00:00,0.271,0.307,0.297 +2015-11-19 08:00:00,0.266,0.307,0.298 +2015-11-19 09:00:00,0.264,0.307,0.298 +2015-11-19 10:00:00,0.265,0.306,0.297 +2015-11-19 11:00:00,0.268,0.306,0.297 +2015-11-19 12:00:00,0.272,0.307,0.29600000000000004 +2015-11-19 13:00:00,0.273,0.308,0.295 +2015-11-19 14:00:00,0.26899999999999996,0.31,0.29600000000000004 +2015-11-19 15:00:00,0.268,0.312,0.29600000000000004 +2015-11-19 16:00:00,0.266,0.316,0.297 +2015-11-19 17:00:00,0.293,0.318,0.341 +2015-11-19 18:00:00,0.287,0.319,0.335 +2015-11-19 19:00:00,0.28800000000000003,0.319,0.336 +2015-11-19 20:00:00,0.28600000000000003,0.317,0.33299999999999996 +2015-11-19 21:00:00,0.287,0.315,0.33399999999999996 +2015-11-19 22:00:00,0.29100000000000004,0.317,0.33799999999999997 +2015-11-19 23:00:00,0.28300000000000003,0.319,0.332 +2015-11-20 00:00:00,0.27699999999999997,0.319,0.32799999999999996 +2015-11-20 01:00:00,0.273,0.319,0.325 +2015-11-20 02:00:00,0.271,0.319,0.324 +2015-11-20 03:00:00,0.26899999999999996,0.319,0.321 +2015-11-20 04:00:00,0.268,0.319,0.319 +2015-11-20 05:00:00,0.267,0.317,0.318 +2015-11-20 06:00:00,0.267,0.317,0.317 +2015-11-20 07:00:00,0.266,0.317,0.316 +2015-11-20 08:00:00,0.265,0.317,0.316 +2015-11-20 09:00:00,0.265,0.316,0.315 +2015-11-20 10:00:00,0.265,0.315,0.315 +2015-11-20 11:00:00,0.265,0.315,0.314 +2015-11-20 12:00:00,0.267,0.315,0.313 +2015-11-20 13:00:00,0.266,0.314,0.313 +2015-11-20 14:00:00,0.26899999999999996,0.314,0.313 +2015-11-20 15:00:00,0.28600000000000003,0.314,0.325 +2015-11-20 16:00:00,0.28800000000000003,0.314,0.331 +2015-11-20 17:00:00,0.287,0.314,0.33299999999999996 +2015-11-20 18:00:00,0.27899999999999997,0.314,0.32799999999999996 +2015-11-20 19:00:00,0.275,0.314,0.325 +2015-11-20 20:00:00,0.272,0.314,0.322 +2015-11-20 21:00:00,0.27,0.314,0.321 +2015-11-20 22:00:00,0.26899999999999996,0.314,0.319 +2015-11-20 23:00:00,0.268,0.313,0.318 +2015-11-21 00:00:00,0.266,0.312,0.317 +2015-11-21 01:00:00,0.266,0.312,0.316 +2015-11-21 02:00:00,0.265,0.312,0.316 +2015-11-21 03:00:00,0.264,0.312,0.316 +2015-11-21 04:00:00,0.264,0.312,0.315 +2015-11-21 05:00:00,0.264,0.312,0.315 +2015-11-21 06:00:00,0.265,0.31,0.315 +2015-11-21 07:00:00,0.264,0.31,0.314 +2015-11-21 08:00:00,0.264,0.31,0.313 +2015-11-21 09:00:00,0.264,0.31,0.313 +2015-11-21 10:00:00,0.264,0.31,0.313 +2015-11-21 11:00:00,0.264,0.309,0.312 +2015-11-21 12:00:00,0.265,0.309,0.311 +2015-11-21 13:00:00,0.267,0.309,0.311 +2015-11-21 14:00:00,0.27,0.307,0.31 +2015-11-21 15:00:00,0.271,0.307,0.31 +2015-11-21 16:00:00,0.27,0.307,0.309 +2015-11-21 17:00:00,0.265,0.307,0.31 +2015-11-21 18:00:00,0.264,0.307,0.31 +2015-11-21 19:00:00,0.265,0.307,0.309 +2015-11-21 20:00:00,0.265,0.307,0.309 +2015-11-21 21:00:00,0.273,0.308,0.308 +2015-11-21 22:00:00,0.275,0.309,0.307 +2015-11-21 23:00:00,0.275,0.309,0.307 +2015-11-22 00:00:00,0.273,0.308,0.308 +2015-11-22 01:00:00,0.268,0.308,0.308 +2015-11-22 02:00:00,0.265,0.308,0.308 +2015-11-22 03:00:00,0.265,0.308,0.308 +2015-11-22 04:00:00,0.26899999999999996,0.309,0.308 +2015-11-22 05:00:00,0.27399999999999997,0.308,0.306 +2015-11-22 06:00:00,0.275,0.307,0.306 +2015-11-22 07:00:00,0.27399999999999997,0.307,0.306 +2015-11-22 08:00:00,0.272,0.307,0.305 +2015-11-22 09:00:00,0.267,0.307,0.305 +2015-11-22 10:00:00,0.263,0.306,0.305 +2015-11-22 11:00:00,0.264,0.305,0.305 +2015-11-22 12:00:00,0.264,0.304,0.305 +2015-11-22 13:00:00,0.266,0.304,0.304 +2015-11-22 14:00:00,0.268,0.304,0.304 +2015-11-22 15:00:00,0.27,0.304,0.303 +2015-11-22 16:00:00,0.271,0.304,0.303 +2015-11-22 17:00:00,0.27,0.304,0.303 +2015-11-22 18:00:00,0.264,0.305,0.303 +2015-11-22 19:00:00,0.267,0.305,0.303 +2015-11-22 20:00:00,0.271,0.305,0.302 +2015-11-22 21:00:00,0.26899999999999996,0.307,0.302 +2015-11-22 22:00:00,0.271,0.307,0.302 +2015-11-22 23:00:00,0.271,0.307,0.302 +2015-11-23 00:00:00,0.271,0.306,0.302 +2015-11-23 01:00:00,0.26899999999999996,0.306,0.302 +2015-11-23 02:00:00,0.267,0.306,0.302 +2015-11-23 03:00:00,0.265,0.306,0.302 +2015-11-23 04:00:00,0.263,0.307,0.302 +2015-11-23 05:00:00,0.261,0.306,0.302 +2015-11-23 06:00:00,0.262,0.301,0.302 +2015-11-23 07:00:00,0.262,0.295,0.302 +2015-11-23 08:00:00,0.262,0.308,0.302 +2015-11-23 09:00:00,0.261,0.324,0.302 +2015-11-23 10:00:00,0.262,0.326,0.302 +2015-11-23 11:00:00,0.262,0.326,0.302 +2015-11-23 12:00:00,0.262,0.32299999999999995,0.302 +2015-11-23 13:00:00,0.263,0.32,0.302 +2015-11-23 14:00:00,0.265,0.317,0.301 +2015-11-23 15:00:00,0.267,0.324,0.301 +2015-11-23 16:00:00,0.26899999999999996,0.325,0.301 +2015-11-23 17:00:00,0.271,0.325,0.3 +2015-11-23 18:00:00,0.275,0.319,0.3 +2015-11-23 19:00:00,0.275,0.322,0.299 +2015-11-23 20:00:00,0.275,0.326,0.299 +2015-11-23 21:00:00,0.27399999999999997,0.327,0.299 +2015-11-23 22:00:00,0.275,0.322,0.299 +2015-11-23 23:00:00,0.275,0.319,0.299 +2015-11-24 00:00:00,0.27399999999999997,0.317,0.299 +2015-11-24 01:00:00,0.27399999999999997,0.318,0.299 +2015-11-24 02:00:00,0.273,0.324,0.299 +2015-11-24 03:00:00,0.273,0.322,0.299 +2015-11-24 04:00:00,0.273,0.321,0.299 +2015-11-24 05:00:00,0.273,0.319,0.299 +2015-11-24 06:00:00,0.273,0.331,0.299 +2015-11-24 07:00:00,0.273,0.336,0.299 +2015-11-24 08:00:00,0.273,0.332,0.298 +2015-11-24 09:00:00,0.273,0.32899999999999996,0.298 +2015-11-24 10:00:00,0.272,0.32899999999999996,0.299 +2015-11-24 11:00:00,0.26899999999999996,0.33,0.3 +2015-11-24 12:00:00,0.266,0.32799999999999996,0.3 +2015-11-24 13:00:00,0.266,0.327,0.3 +2015-11-24 14:00:00,0.267,0.326,0.3 +2015-11-24 15:00:00,0.26899999999999996,0.322,0.3 +2015-11-24 16:00:00,0.26899999999999996,0.319,0.299 +2015-11-24 17:00:00,0.27,0.317,0.299 +2015-11-24 18:00:00,0.26899999999999996,0.32299999999999995,0.299 +2015-11-24 19:00:00,0.26899999999999996,0.32299999999999995,0.299 +2015-11-24 20:00:00,0.268,0.32799999999999996,0.299 +2015-11-24 21:00:00,0.266,0.326,0.299 +2015-11-24 22:00:00,0.263,0.32299999999999995,0.3 +2015-11-24 23:00:00,0.261,0.321,0.3 +2015-11-25 00:00:00,0.26,0.33299999999999996,0.3 +2015-11-25 01:00:00,0.26,0.33299999999999996,0.3 +2015-11-25 02:00:00,0.26,0.33,0.3 +2015-11-25 03:00:00,0.261,0.327,0.3 +2015-11-25 04:00:00,0.261,0.326,0.3 +2015-11-25 05:00:00,0.261,0.326,0.3 +2015-11-25 06:00:00,0.261,0.325,0.3 +2015-11-25 07:00:00,0.262,0.325,0.3 +2015-11-25 08:00:00,0.262,0.324,0.3 +2015-11-25 09:00:00,0.262,0.32299999999999995,0.3 +2015-11-25 10:00:00,0.263,0.317,0.3 +2015-11-25 11:00:00,0.263,0.324,0.3 +2015-11-25 12:00:00,0.266,0.32899999999999996,0.301 +2015-11-25 13:00:00,0.268,0.32799999999999996,0.303 +2015-11-25 14:00:00,0.26899999999999996,0.326,0.306 +2015-11-25 15:00:00,0.26899999999999996,0.324,0.307 +2015-11-25 16:00:00,0.26899999999999996,0.324,0.309 +2015-11-25 17:00:00,0.26899999999999996,0.326,0.31 +2015-11-25 18:00:00,0.26899999999999996,0.327,0.311 +2015-11-25 19:00:00,0.26899999999999996,0.32899999999999996,0.313 +2015-11-25 20:00:00,0.26899999999999996,0.33,0.315 +2015-11-25 21:00:00,0.26899999999999996,0.33,0.316 +2015-11-25 22:00:00,0.268,0.326,0.316 +2015-11-25 23:00:00,0.268,0.324,0.316 +2015-11-26 00:00:00,0.268,0.324,0.316 +2015-11-26 01:00:00,0.267,0.32299999999999995,0.315 +2015-11-26 02:00:00,0.267,0.321,0.315 +2015-11-26 03:00:00,0.266,0.321,0.314 +2015-11-26 04:00:00,0.266,0.321,0.314 +2015-11-26 05:00:00,0.266,0.321,0.313 +2015-11-26 06:00:00,0.266,0.321,0.313 +2015-11-26 07:00:00,0.265,0.321,0.312 +2015-11-26 08:00:00,0.265,0.322,0.311 +2015-11-26 09:00:00,0.265,0.322,0.311 +2015-11-26 10:00:00,0.265,0.322,0.311 +2015-11-26 11:00:00,0.266,0.322,0.31 +2015-11-26 12:00:00,0.267,0.321,0.31 +2015-11-26 13:00:00,0.26899999999999996,0.321,0.309 +2015-11-26 14:00:00,0.271,0.321,0.308 +2015-11-26 15:00:00,0.272,0.321,0.306 +2015-11-26 16:00:00,0.273,0.321,0.306 +2015-11-26 17:00:00,0.273,0.321,0.305 +2015-11-26 18:00:00,0.273,0.321,0.305 +2015-11-26 19:00:00,0.273,0.321,0.305 +2015-11-26 20:00:00,0.272,0.321,0.304 +2015-11-26 21:00:00,0.272,0.321,0.304 +2015-11-26 22:00:00,0.272,0.32,0.304 +2015-11-26 23:00:00,0.272,0.319,0.303 +2015-11-27 00:00:00,0.273,0.319,0.302 +2015-11-27 01:00:00,0.273,0.319,0.302 +2015-11-27 02:00:00,0.273,0.319,0.302 +2015-11-27 03:00:00,0.272,0.319,0.302 +2015-11-27 04:00:00,0.27,0.317,0.302 +2015-11-27 05:00:00,0.26899999999999996,0.317,0.302 +2015-11-27 06:00:00,0.26899999999999996,0.317,0.302 +2015-11-27 07:00:00,0.26899999999999996,0.317,0.302 +2015-11-27 08:00:00,0.268,0.317,0.302 +2015-11-27 09:00:00,0.268,0.317,0.302 +2015-11-27 10:00:00,0.268,0.316,0.302 +2015-11-27 11:00:00,0.268,0.315,0.301 +2015-11-27 12:00:00,0.268,0.315,0.301 +2015-11-27 13:00:00,0.26899999999999996,0.315,0.301 +2015-11-27 14:00:00,0.26899999999999996,0.315,0.301 +2015-11-27 15:00:00,0.26899999999999996,0.315,0.301 +2015-11-27 16:00:00,0.26899999999999996,0.315,0.3 +2015-11-27 17:00:00,0.26899999999999996,0.315,0.3 +2015-11-27 18:00:00,0.27,0.315,0.3 +2015-11-27 19:00:00,0.271,0.315,0.299 +2015-11-27 20:00:00,0.271,0.315,0.299 +2015-11-27 21:00:00,0.27,0.315,0.299 +2015-11-27 22:00:00,0.27,0.315,0.299 +2015-11-27 23:00:00,0.27,0.314,0.299 +2015-11-28 00:00:00,0.27,0.314,0.299 +2015-11-28 01:00:00,0.271,0.314,0.298 +2015-11-28 02:00:00,0.27,0.314,0.298 +2015-11-28 03:00:00,0.27,0.314,0.298 +2015-11-28 04:00:00,0.27,0.314,0.299 +2015-11-28 05:00:00,0.26899999999999996,0.314,0.299 +2015-11-28 06:00:00,0.26899999999999996,0.314,0.299 +2015-11-28 07:00:00,0.267,0.313,0.3 +2015-11-28 08:00:00,0.263,0.313,0.3 +2015-11-28 09:00:00,0.262,0.312,0.3 +2015-11-28 10:00:00,0.262,0.312,0.3 +2015-11-28 11:00:00,0.262,0.31,0.3 +2015-11-28 12:00:00,0.262,0.309,0.3 +2015-11-28 13:00:00,0.262,0.307,0.3 +2015-11-28 14:00:00,0.263,0.305,0.299 +2015-11-28 15:00:00,0.265,0.306,0.299 +2015-11-28 16:00:00,0.266,0.307,0.299 +2015-11-28 17:00:00,0.267,0.309,0.299 +2015-11-28 18:00:00,0.26899999999999996,0.31,0.298 +2015-11-28 19:00:00,0.27,0.311,0.298 +2015-11-28 20:00:00,0.26899999999999996,0.313,0.298 +2015-11-28 21:00:00,0.267,0.314,0.298 +2015-11-28 22:00:00,0.268,0.315,0.298 +2015-11-28 23:00:00,0.268,0.315,0.298 +2015-11-29 00:00:00,0.268,0.316,0.298 +2015-11-29 01:00:00,0.26899999999999996,0.316,0.298 +2015-11-29 02:00:00,0.268,0.316,0.298 +2015-11-29 03:00:00,0.261,0.315,0.299 +2015-11-29 04:00:00,0.263,0.315,0.3 +2015-11-29 05:00:00,0.29,0.315,0.321 +2015-11-29 06:00:00,0.293,0.315,0.33799999999999997 +2015-11-29 07:00:00,0.29,0.314,0.336 +2015-11-29 08:00:00,0.28300000000000003,0.314,0.331 +2015-11-29 09:00:00,0.27899999999999997,0.315,0.32899999999999996 +2015-11-29 10:00:00,0.27899999999999997,0.315,0.32799999999999996 +2015-11-29 11:00:00,0.282,0.314,0.327 +2015-11-29 12:00:00,0.28300000000000003,0.314,0.33 +2015-11-29 13:00:00,0.28,0.312,0.32899999999999996 +2015-11-29 14:00:00,0.278,0.31,0.32799999999999996 +2015-11-29 15:00:00,0.27899999999999997,0.31,0.327 +2015-11-29 16:00:00,0.28300000000000003,0.311,0.33 +2015-11-29 17:00:00,0.281,0.312,0.33 +2015-11-29 18:00:00,0.276,0.312,0.32899999999999996 +2015-11-29 19:00:00,0.276,0.312,0.32799999999999996 +2015-11-29 20:00:00,0.27699999999999997,0.312,0.327 +2015-11-29 21:00:00,0.27899999999999997,0.312,0.326 +2015-11-29 22:00:00,0.282,0.314,0.32799999999999996 +2015-11-29 23:00:00,0.284,0.314,0.332 +2015-11-30 00:00:00,0.281,0.314,0.33 +2015-11-30 01:00:00,0.281,0.314,0.32899999999999996 +2015-11-30 02:00:00,0.28,0.313,0.32799999999999996 +2015-11-30 03:00:00,0.297,0.313,0.349 +2015-11-30 04:00:00,0.301,0.313,0.35 +2015-11-30 05:00:00,0.294,0.312,0.348 +2015-11-30 06:00:00,0.287,0.312,0.361 +2015-11-30 07:00:00,0.282,0.312,0.36200000000000004 +2015-11-30 08:00:00,0.278,0.312,0.35100000000000003 +2015-11-30 09:00:00,0.275,0.312,0.34299999999999997 +2015-11-30 10:00:00,0.272,0.312,0.34 +2015-11-30 11:00:00,0.27,0.311,0.337 +2015-11-30 12:00:00,0.271,0.309,0.33399999999999996 +2015-11-30 13:00:00,0.273,0.309,0.332 +2015-11-30 14:00:00,0.278,0.309,0.331 +2015-11-30 15:00:00,0.282,0.309,0.33 +2015-11-30 16:00:00,0.28600000000000003,0.309,0.33 +2015-11-30 17:00:00,0.28600000000000003,0.309,0.331 +2015-11-30 18:00:00,0.28300000000000003,0.31,0.332 +2015-11-30 19:00:00,0.282,0.31,0.33299999999999996 +2015-11-30 20:00:00,0.287,0.31,0.33399999999999996 +2015-11-30 21:00:00,0.298,0.31,0.34700000000000003 +2015-11-30 22:00:00,0.29600000000000004,0.31,0.406 +2015-11-30 23:00:00,0.29100000000000004,0.31,0.418 +2015-12-01 00:00:00,0.289,0.31,0.419 +2015-12-01 01:00:00,0.287,0.31,0.419 +2015-12-01 02:00:00,0.28600000000000003,0.31,0.42 +2015-12-01 03:00:00,0.28300000000000003,0.31,0.42 +2015-12-01 04:00:00,0.281,0.31,0.42100000000000004 +2015-12-01 05:00:00,0.27899999999999997,0.31,0.42100000000000004 +2015-12-01 06:00:00,0.278,0.31,0.42200000000000004 +2015-12-01 07:00:00,0.28,0.31,0.42200000000000004 +2015-12-01 08:00:00,0.29,0.31,0.42200000000000004 +2015-12-01 09:00:00,0.29,0.31,0.42100000000000004 +2015-12-01 10:00:00,0.287,0.309,0.42 +2015-12-01 11:00:00,0.285,0.309,0.42 +2015-12-01 12:00:00,0.284,0.309,0.42 +2015-12-01 13:00:00,0.285,0.309,0.42 +2015-12-01 14:00:00,0.28600000000000003,0.309,0.42 +2015-12-01 15:00:00,0.287,0.309,0.419 +2015-12-01 16:00:00,0.289,0.309,0.419 +2015-12-01 17:00:00,0.28600000000000003,0.309,0.419 +2015-12-01 18:00:00,0.28300000000000003,0.309,0.42 +2015-12-01 19:00:00,0.28,0.309,0.419 +2015-12-01 20:00:00,0.27899999999999997,0.309,0.42 +2015-12-01 21:00:00,0.27699999999999997,0.309,0.42 +2015-12-01 22:00:00,0.275,0.309,0.42 +2015-12-01 23:00:00,0.275,0.309,0.42 +2015-12-02 00:00:00,0.27399999999999997,0.309,0.42100000000000004 +2015-12-02 01:00:00,0.273,0.309,0.42100000000000004 +2015-12-02 02:00:00,0.272,0.309,0.42200000000000004 +2015-12-02 03:00:00,0.271,0.309,0.42200000000000004 +2015-12-02 04:00:00,0.27,0.309,0.423 +2015-12-02 05:00:00,0.26899999999999996,0.309,0.42200000000000004 +2015-12-02 06:00:00,0.268,0.309,0.42200000000000004 +2015-12-02 07:00:00,0.267,0.308,0.42100000000000004 +2015-12-02 08:00:00,0.267,0.307,0.42 +2015-12-02 09:00:00,0.267,0.307,0.418 +2015-12-02 10:00:00,0.267,0.307,0.41700000000000004 +2015-12-02 11:00:00,0.267,0.307,0.409 +2015-12-02 12:00:00,0.268,0.307,0.40700000000000003 +2015-12-02 13:00:00,0.26899999999999996,0.306,0.40399999999999997 +2015-12-02 14:00:00,0.27,0.306,0.40299999999999997 +2015-12-02 15:00:00,0.271,0.306,0.402 +2015-12-02 16:00:00,0.271,0.306,0.401 +2015-12-02 17:00:00,0.271,0.306,0.4 +2015-12-02 18:00:00,0.271,0.306,0.392 +2015-12-02 19:00:00,0.271,0.306,0.34 +2015-12-02 20:00:00,0.272,0.306,0.337 +2015-12-02 21:00:00,0.272,0.306,0.336 +2015-12-02 22:00:00,0.272,0.306,0.335 +2015-12-02 23:00:00,0.272,0.306,0.33299999999999996 +2015-12-03 00:00:00,0.272,0.306,0.33 +2015-12-03 01:00:00,0.272,0.306,0.32899999999999996 +2015-12-03 02:00:00,0.272,0.306,0.32799999999999996 +2015-12-03 03:00:00,0.271,0.306,0.326 +2015-12-03 04:00:00,0.271,0.304,0.325 +2015-12-03 05:00:00,0.271,0.304,0.324 +2015-12-03 06:00:00,0.271,0.304,0.32299999999999995 +2015-12-03 07:00:00,0.271,0.304,0.322 +2015-12-03 08:00:00,0.271,0.304,0.321 +2015-12-03 09:00:00,0.271,0.302,0.32 +2015-12-03 10:00:00,0.271,0.304,0.319 +2015-12-03 11:00:00,0.272,0.304,0.319 +2015-12-03 12:00:00,0.272,0.305,0.318 +2015-12-03 13:00:00,0.273,0.307,0.318 +2015-12-03 14:00:00,0.273,0.308,0.317 +2015-12-03 15:00:00,0.273,0.31,0.316 +2015-12-03 16:00:00,0.273,0.311,0.316 +2015-12-03 17:00:00,0.27399999999999997,0.313,0.315 +2015-12-03 18:00:00,0.27399999999999997,0.315,0.315 +2015-12-03 19:00:00,0.273,0.315,0.315 +2015-12-03 20:00:00,0.273,0.316,0.315 +2015-12-03 21:00:00,0.273,0.317,0.315 +2015-12-03 22:00:00,0.273,0.318,0.315 +2015-12-03 23:00:00,0.273,0.319,0.314 +2015-12-04 00:00:00,0.273,0.319,0.314 +2015-12-04 01:00:00,0.273,0.319,0.314 +2015-12-04 02:00:00,0.273,0.319,0.313 +2015-12-04 03:00:00,0.273,0.319,0.313 +2015-12-04 04:00:00,0.273,0.317,0.313 +2015-12-04 05:00:00,0.272,0.317,0.313 +2015-12-04 06:00:00,0.272,0.315,0.312 +2015-12-04 07:00:00,0.272,0.315,0.312 +2015-12-04 08:00:00,0.271,0.315,0.313 +2015-12-04 09:00:00,0.26899999999999996,0.315,0.313 +2015-12-04 10:00:00,0.265,0.315,0.314 +2015-12-04 11:00:00,0.262,0.315,0.315 +2015-12-04 12:00:00,0.262,0.315,0.314 +2015-12-04 13:00:00,0.264,0.314,0.314 +2015-12-04 14:00:00,0.265,0.314,0.314 +2015-12-04 15:00:00,0.266,0.314,0.313 +2015-12-04 16:00:00,0.267,0.314,0.313 +2015-12-04 17:00:00,0.268,0.314,0.313 +2015-12-04 18:00:00,0.26899999999999996,0.314,0.313 +2015-12-04 19:00:00,0.27,0.314,0.313 +2015-12-04 20:00:00,0.27399999999999997,0.314,0.312 +2015-12-04 21:00:00,0.275,0.314,0.312 +2015-12-04 22:00:00,0.275,0.314,0.312 +2015-12-04 23:00:00,0.275,0.314,0.312 +2015-12-05 00:00:00,0.271,0.314,0.313 +2015-12-05 01:00:00,0.272,0.314,0.313 +2015-12-05 02:00:00,0.27399999999999997,0.314,0.312 +2015-12-05 03:00:00,0.271,0.314,0.312 +2015-12-05 04:00:00,0.266,0.314,0.313 +2015-12-05 05:00:00,0.267,0.314,0.313 +2015-12-05 06:00:00,0.271,0.314,0.312 +2015-12-05 07:00:00,0.27399999999999997,0.314,0.311 +2015-12-05 08:00:00,0.27399999999999997,0.313,0.311 +2015-12-05 09:00:00,0.273,0.312,0.311 +2015-12-05 10:00:00,0.265,0.312,0.313 +2015-12-05 11:00:00,0.263,0.312,0.312 +2015-12-05 12:00:00,0.264,0.312,0.311 +2015-12-05 13:00:00,0.265,0.311,0.31 +2015-12-05 14:00:00,0.267,0.31,0.31 +2015-12-05 15:00:00,0.26899999999999996,0.31,0.31 +2015-12-05 16:00:00,0.26899999999999996,0.31,0.309 +2015-12-05 17:00:00,0.27,0.31,0.309 +2015-12-05 18:00:00,0.27,0.309,0.309 +2015-12-05 19:00:00,0.272,0.308,0.308 +2015-12-05 20:00:00,0.273,0.315,0.308 +2015-12-05 21:00:00,0.273,0.319,0.308 +2015-12-05 22:00:00,0.273,0.32,0.308 +2015-12-05 23:00:00,0.273,0.322,0.308 +2015-12-06 00:00:00,0.273,0.322,0.308 +2015-12-06 01:00:00,0.273,0.326,0.308 +2015-12-06 02:00:00,0.273,0.337,0.308 +2015-12-06 03:00:00,0.273,0.33399999999999996,0.308 +2015-12-06 04:00:00,0.273,0.331,0.307 +2015-12-06 05:00:00,0.273,0.331,0.308 +2015-12-06 06:00:00,0.273,0.327,0.307 +2015-12-06 07:00:00,0.273,0.32899999999999996,0.307 +2015-12-06 08:00:00,0.271,0.33,0.308 +2015-12-06 09:00:00,0.263,0.32899999999999996,0.309 +2015-12-06 10:00:00,0.262,0.326,0.309 +2015-12-06 11:00:00,0.263,0.326,0.309 +2015-12-06 12:00:00,0.264,0.32799999999999996,0.309 +2015-12-06 13:00:00,0.265,0.32899999999999996,0.308 +2015-12-06 14:00:00,0.266,0.32899999999999996,0.308 +2015-12-06 15:00:00,0.268,0.32899999999999996,0.308 +2015-12-06 16:00:00,0.26899999999999996,0.32899999999999996,0.308 +2015-12-06 17:00:00,0.26899999999999996,0.32899999999999996,0.308 +2015-12-06 18:00:00,0.26899999999999996,0.32799999999999996,0.308 +2015-12-06 19:00:00,0.26899999999999996,0.327,0.307 +2015-12-06 20:00:00,0.27,0.327,0.307 +2015-12-06 21:00:00,0.27,0.327,0.307 +2015-12-06 22:00:00,0.27,0.326,0.307 +2015-12-06 23:00:00,0.27,0.326,0.307 +2015-12-07 00:00:00,0.27,0.326,0.307 +2015-12-07 01:00:00,0.271,0.326,0.307 +2015-12-07 02:00:00,0.271,0.324,0.307 +2015-12-07 03:00:00,0.27,0.324,0.307 +2015-12-07 04:00:00,0.27,0.324,0.306 +2015-12-07 05:00:00,0.27,0.324,0.306 +2015-12-07 06:00:00,0.27,0.324,0.306 +2015-12-07 07:00:00,0.27,0.324,0.306 +2015-12-07 08:00:00,0.27,0.32299999999999995,0.306 +2015-12-07 09:00:00,0.27,0.322,0.306 +2015-12-07 10:00:00,0.27,0.322,0.306 +2015-12-07 11:00:00,0.27,0.322,0.306 +2015-12-07 12:00:00,0.27,0.322,0.306 +2015-12-07 13:00:00,0.27,0.321,0.306 +2015-12-07 14:00:00,0.271,0.321,0.306 +2015-12-07 15:00:00,0.271,0.321,0.305 +2015-12-07 16:00:00,0.271,0.321,0.305 +2015-12-07 17:00:00,0.271,0.321,0.305 +2015-12-07 18:00:00,0.271,0.32,0.305 +2015-12-07 19:00:00,0.271,0.319,0.305 +2015-12-07 20:00:00,0.271,0.317,0.305 +2015-12-07 21:00:00,0.271,0.317,0.305 +2015-12-07 22:00:00,0.271,0.317,0.304 +2015-12-07 23:00:00,0.271,0.317,0.304 +2015-12-08 00:00:00,0.271,0.317,0.304 +2015-12-08 01:00:00,0.271,0.317,0.304 +2015-12-08 02:00:00,0.271,0.317,0.304 +2015-12-08 03:00:00,0.271,0.317,0.304 +2015-12-08 04:00:00,0.271,0.317,0.304 +2015-12-08 05:00:00,0.271,0.317,0.304 +2015-12-08 06:00:00,0.271,0.317,0.304 +2015-12-08 07:00:00,0.27,0.317,0.304 +2015-12-08 08:00:00,0.27,0.317,0.304 +2015-12-08 09:00:00,0.27,0.317,0.304 +2015-12-08 10:00:00,0.27,0.317,0.305 +2015-12-08 11:00:00,0.26899999999999996,0.317,0.305 +2015-12-08 12:00:00,0.26899999999999996,0.317,0.305 +2015-12-08 13:00:00,0.26899999999999996,0.317,0.305 +2015-12-08 14:00:00,0.27,0.317,0.305 +2015-12-08 15:00:00,0.27,0.317,0.304 +2015-12-08 16:00:00,0.27,0.317,0.304 +2015-12-08 17:00:00,0.27,0.317,0.304 +2015-12-08 18:00:00,0.27,0.317,0.304 +2015-12-08 19:00:00,0.27,0.318,0.304 +2015-12-08 20:00:00,0.27,0.318,0.304 +2015-12-08 21:00:00,0.27,0.317,0.304 +2015-12-08 22:00:00,0.27,0.317,0.304 +2015-12-08 23:00:00,0.26899999999999996,0.317,0.304 +2015-12-09 00:00:00,0.26899999999999996,0.317,0.304 +2015-12-09 01:00:00,0.267,0.317,0.305 +2015-12-09 02:00:00,0.264,0.317,0.306 +2015-12-09 03:00:00,0.262,0.317,0.306 +2015-12-09 04:00:00,0.261,0.317,0.306 +2015-12-09 05:00:00,0.26,0.317,0.306 +2015-12-09 06:00:00,0.261,0.316,0.307 +2015-12-09 07:00:00,0.261,0.315,0.307 +2015-12-09 08:00:00,0.262,0.315,0.307 +2015-12-09 09:00:00,0.263,0.315,0.307 +2015-12-09 10:00:00,0.264,0.315,0.307 +2015-12-09 11:00:00,0.265,0.314,0.307 +2015-12-09 12:00:00,0.265,0.314,0.307 +2015-12-09 13:00:00,0.265,0.313,0.307 +2015-12-09 14:00:00,0.267,0.312,0.306 +2015-12-09 15:00:00,0.26899999999999996,0.312,0.306 +2015-12-09 16:00:00,0.27,0.312,0.306 +2015-12-09 17:00:00,0.271,0.312,0.306 +2015-12-09 18:00:00,0.275,0.312,0.305 +2015-12-09 19:00:00,0.276,0.312,0.305 +2015-12-09 20:00:00,0.276,0.312,0.305 +2015-12-09 21:00:00,0.276,0.312,0.305 +2015-12-09 22:00:00,0.276,0.312,0.305 +2015-12-09 23:00:00,0.276,0.312,0.304 +2015-12-10 00:00:00,0.276,0.311,0.304 +2015-12-10 01:00:00,0.276,0.312,0.304 +2015-12-10 02:00:00,0.27399999999999997,0.312,0.305 +2015-12-10 03:00:00,0.267,0.312,0.306 +2015-12-10 04:00:00,0.266,0.312,0.306 +2015-12-10 05:00:00,0.266,0.311,0.306 +2015-12-10 06:00:00,0.266,0.311,0.306 +2015-12-10 07:00:00,0.266,0.31,0.306 +2015-12-10 08:00:00,0.266,0.31,0.306 +2015-12-10 09:00:00,0.267,0.31,0.306 +2015-12-10 10:00:00,0.266,0.309,0.306 +2015-12-10 11:00:00,0.266,0.307,0.306 +2015-12-10 12:00:00,0.267,0.31,0.306 +2015-12-10 13:00:00,0.268,0.319,0.306 +2015-12-10 14:00:00,0.268,0.332,0.306 +2015-12-10 15:00:00,0.26899999999999996,0.336,0.306 +2015-12-10 16:00:00,0.27,0.336,0.306 +2015-12-10 17:00:00,0.27,0.33399999999999996,0.305 +2015-12-10 18:00:00,0.27,0.332,0.305 +2015-12-10 19:00:00,0.273,0.332,0.304 +2015-12-10 20:00:00,0.273,0.331,0.304 +2015-12-10 21:00:00,0.273,0.331,0.304 +2015-12-10 22:00:00,0.273,0.33,0.304 +2015-12-10 23:00:00,0.273,0.32799999999999996,0.304 +2015-12-11 00:00:00,0.273,0.327,0.304 +2015-12-11 01:00:00,0.273,0.327,0.304 +2015-12-11 02:00:00,0.273,0.326,0.304 +2015-12-11 03:00:00,0.273,0.326,0.304 +2015-12-11 04:00:00,0.273,0.325,0.304 +2015-12-11 05:00:00,0.272,0.324,0.304 +2015-12-11 06:00:00,0.272,0.324,0.304 +2015-12-11 07:00:00,0.272,0.324,0.304 +2015-12-11 08:00:00,0.272,0.32299999999999995,0.304 +2015-12-11 09:00:00,0.271,0.324,0.304 +2015-12-11 10:00:00,0.26899999999999996,0.324,0.305 +2015-12-11 11:00:00,0.264,0.324,0.306 +2015-12-11 12:00:00,0.264,0.324,0.306 +2015-12-11 13:00:00,0.264,0.32299999999999995,0.306 +2015-12-11 14:00:00,0.263,0.32299999999999995,0.306 +2015-12-11 15:00:00,0.262,0.324,0.306 +2015-12-11 16:00:00,0.262,0.324,0.306 +2015-12-11 17:00:00,0.263,0.324,0.307 +2015-12-11 18:00:00,0.264,0.324,0.307 +2015-12-11 19:00:00,0.268,0.324,0.307 +2015-12-11 20:00:00,0.27,0.324,0.308 +2015-12-11 21:00:00,0.272,0.324,0.309 +2015-12-11 22:00:00,0.27699999999999997,0.324,0.315 +2015-12-11 23:00:00,0.28600000000000003,0.324,0.341 +2015-12-12 00:00:00,0.281,0.32299999999999995,0.34 +2015-12-12 01:00:00,0.27899999999999997,0.322,0.34 +2015-12-12 02:00:00,0.278,0.322,0.34 +2015-12-12 03:00:00,0.27899999999999997,0.322,0.34 +2015-12-12 04:00:00,0.27899999999999997,0.32,0.33399999999999996 +2015-12-12 05:00:00,0.278,0.32,0.33399999999999996 +2015-12-12 06:00:00,0.27699999999999997,0.319,0.33299999999999996 +2015-12-12 07:00:00,0.27699999999999997,0.319,0.332 +2015-12-12 08:00:00,0.276,0.317,0.331 +2015-12-12 09:00:00,0.275,0.317,0.33 +2015-12-12 10:00:00,0.27399999999999997,0.316,0.32899999999999996 +2015-12-12 11:00:00,0.273,0.314,0.32799999999999996 +2015-12-12 12:00:00,0.271,0.314,0.32799999999999996 +2015-12-12 13:00:00,0.27,0.314,0.327 +2015-12-12 14:00:00,0.26899999999999996,0.315,0.326 +2015-12-12 15:00:00,0.26899999999999996,0.315,0.326 +2015-12-12 16:00:00,0.26899999999999996,0.315,0.325 +2015-12-12 17:00:00,0.26899999999999996,0.316,0.325 +2015-12-12 18:00:00,0.268,0.317,0.324 +2015-12-12 19:00:00,0.268,0.317,0.324 +2015-12-12 20:00:00,0.268,0.317,0.324 +2015-12-12 21:00:00,0.26899999999999996,0.317,0.32299999999999995 +2015-12-12 22:00:00,0.26899999999999996,0.317,0.32299999999999995 +2015-12-12 23:00:00,0.27,0.317,0.322 +2015-12-13 00:00:00,0.271,0.317,0.321 +2015-12-13 01:00:00,0.272,0.317,0.321 +2015-12-13 02:00:00,0.273,0.316,0.32 +2015-12-13 03:00:00,0.27399999999999997,0.316,0.32 +2015-12-13 04:00:00,0.27399999999999997,0.316,0.319 +2015-12-13 05:00:00,0.27399999999999997,0.315,0.319 +2015-12-13 06:00:00,0.27399999999999997,0.315,0.319 +2015-12-13 07:00:00,0.275,0.315,0.319 +2015-12-13 08:00:00,0.275,0.315,0.318 +2015-12-13 09:00:00,0.275,0.315,0.318 +2015-12-13 10:00:00,0.275,0.315,0.318 +2015-12-13 11:00:00,0.27399999999999997,0.315,0.317 +2015-12-13 12:00:00,0.27399999999999997,0.314,0.317 +2015-12-13 13:00:00,0.27399999999999997,0.314,0.317 +2015-12-13 14:00:00,0.27399999999999997,0.314,0.317 +2015-12-13 15:00:00,0.27399999999999997,0.315,0.316 +2015-12-13 16:00:00,0.272,0.315,0.316 +2015-12-13 17:00:00,0.268,0.315,0.317 +2015-12-13 18:00:00,0.267,0.315,0.317 +2015-12-13 19:00:00,0.267,0.315,0.317 +2015-12-13 20:00:00,0.267,0.315,0.317 +2015-12-13 21:00:00,0.267,0.315,0.317 +2015-12-13 22:00:00,0.267,0.315,0.317 +2015-12-13 23:00:00,0.267,0.315,0.317 +2015-12-14 00:00:00,0.267,0.315,0.317 +2015-12-14 01:00:00,0.267,0.315,0.317 +2015-12-14 02:00:00,0.267,0.315,0.317 +2015-12-14 03:00:00,0.267,0.314,0.317 +2015-12-14 04:00:00,0.266,0.314,0.316 +2015-12-14 05:00:00,0.266,0.314,0.316 +2015-12-14 06:00:00,0.266,0.314,0.315 +2015-12-14 07:00:00,0.266,0.313,0.314 +2015-12-14 08:00:00,0.266,0.312,0.314 +2015-12-14 09:00:00,0.266,0.312,0.314 +2015-12-14 10:00:00,0.266,0.311,0.314 +2015-12-14 11:00:00,0.266,0.31,0.314 +2015-12-14 12:00:00,0.267,0.31,0.314 +2015-12-14 13:00:00,0.268,0.31,0.314 +2015-12-14 14:00:00,0.27,0.31,0.313 +2015-12-14 15:00:00,0.271,0.31,0.313 +2015-12-14 16:00:00,0.272,0.31,0.313 +2015-12-14 17:00:00,0.272,0.31,0.313 +2015-12-14 18:00:00,0.272,0.31,0.313 +2015-12-14 19:00:00,0.272,0.31,0.312 +2015-12-14 20:00:00,0.273,0.31,0.312 +2015-12-14 21:00:00,0.273,0.31,0.311 +2015-12-14 22:00:00,0.27399999999999997,0.31,0.311 +2015-12-14 23:00:00,0.27399999999999997,0.31,0.311 +2015-12-15 00:00:00,0.27399999999999997,0.31,0.311 +2015-12-15 01:00:00,0.27399999999999997,0.31,0.311 +2015-12-15 02:00:00,0.27399999999999997,0.31,0.31 +2015-12-15 03:00:00,0.27399999999999997,0.31,0.31 +2015-12-15 04:00:00,0.273,0.31,0.31 +2015-12-15 05:00:00,0.273,0.31,0.311 +2015-12-15 06:00:00,0.272,0.31,0.311 +2015-12-15 07:00:00,0.272,0.31,0.311 +2015-12-15 08:00:00,0.271,0.309,0.311 +2015-12-15 09:00:00,0.271,0.307,0.311 +2015-12-15 10:00:00,0.27,0.304,0.311 +2015-12-15 11:00:00,0.27,0.304,0.311 +2015-12-15 12:00:00,0.27,0.306,0.311 +2015-12-15 13:00:00,0.27,0.308,0.311 +2015-12-15 14:00:00,0.27,0.31,0.311 +2015-12-15 15:00:00,0.271,0.311,0.31 +2015-12-15 16:00:00,0.271,0.313,0.31 +2015-12-15 17:00:00,0.271,0.314,0.31 +2015-12-15 18:00:00,0.271,0.315,0.31 +2015-12-15 19:00:00,0.271,0.316,0.31 +2015-12-15 20:00:00,0.27,0.317,0.31 +2015-12-15 21:00:00,0.26899999999999996,0.317,0.31 +2015-12-15 22:00:00,0.26899999999999996,0.318,0.31 +2015-12-15 23:00:00,0.26899999999999996,0.319,0.31 +2015-12-16 00:00:00,0.26899999999999996,0.319,0.31 +2015-12-16 01:00:00,0.26899999999999996,0.319,0.31 +2015-12-16 02:00:00,0.26899999999999996,0.319,0.31 +2015-12-16 03:00:00,0.26899999999999996,0.319,0.31 +2015-12-16 04:00:00,0.26899999999999996,0.319,0.31 +2015-12-16 05:00:00,0.26899999999999996,0.319,0.31 +2015-12-16 06:00:00,0.267,0.319,0.31 +2015-12-16 07:00:00,0.264,0.319,0.311 +2015-12-16 08:00:00,0.262,0.319,0.31 +2015-12-16 09:00:00,0.264,0.319,0.312 +2015-12-16 10:00:00,0.27,0.318,0.33 +2015-12-16 11:00:00,0.27899999999999997,0.312,0.336 +2015-12-16 12:00:00,0.278,0.316,0.33399999999999996 +2015-12-16 13:00:00,0.276,0.32299999999999995,0.331 +2015-12-16 14:00:00,0.275,0.32899999999999996,0.33 +2015-12-16 15:00:00,0.27399999999999997,0.331,0.32899999999999996 +2015-12-16 16:00:00,0.273,0.331,0.32799999999999996 +2015-12-16 17:00:00,0.273,0.331,0.327 +2015-12-16 18:00:00,0.272,0.331,0.325 +2015-12-16 19:00:00,0.272,0.331,0.324 +2015-12-16 20:00:00,0.271,0.331,0.32299999999999995 +2015-12-16 21:00:00,0.271,0.331,0.322 +2015-12-16 22:00:00,0.27,0.33,0.321 +2015-12-16 23:00:00,0.27,0.32899999999999996,0.321 +2015-12-17 00:00:00,0.27,0.32899999999999996,0.32 +2015-12-17 01:00:00,0.27,0.32799999999999996,0.319 +2015-12-17 02:00:00,0.26899999999999996,0.327,0.319 +2015-12-17 03:00:00,0.26899999999999996,0.327,0.319 +2015-12-17 04:00:00,0.26899999999999996,0.327,0.318 +2015-12-17 05:00:00,0.26899999999999996,0.327,0.318 +2015-12-17 06:00:00,0.26899999999999996,0.326,0.318 +2015-12-17 07:00:00,0.26899999999999996,0.326,0.318 +2015-12-17 08:00:00,0.268,0.325,0.317 +2015-12-17 09:00:00,0.268,0.324,0.317 +2015-12-17 10:00:00,0.268,0.324,0.317 +2015-12-17 11:00:00,0.268,0.32299999999999995,0.317 +2015-12-17 12:00:00,0.268,0.322,0.316 +2015-12-17 13:00:00,0.268,0.322,0.316 +2015-12-17 14:00:00,0.27,0.322,0.316 +2015-12-17 15:00:00,0.271,0.321,0.315 +2015-12-17 16:00:00,0.271,0.321,0.315 +2015-12-17 17:00:00,0.272,0.321,0.315 +2015-12-17 18:00:00,0.272,0.321,0.315 +2015-12-17 19:00:00,0.272,0.321,0.315 +2015-12-17 20:00:00,0.272,0.321,0.315 +2015-12-17 21:00:00,0.272,0.321,0.315 +2015-12-17 22:00:00,0.271,0.32,0.314 +2015-12-17 23:00:00,0.271,0.32,0.314 +2015-12-18 00:00:00,0.271,0.319,0.314 +2015-12-18 01:00:00,0.26899999999999996,0.319,0.314 +2015-12-18 02:00:00,0.26899999999999996,0.319,0.314 +2015-12-18 03:00:00,0.26899999999999996,0.317,0.314 +2015-12-18 04:00:00,0.26899999999999996,0.317,0.313 +2015-12-18 05:00:00,0.267,0.317,0.312 +2015-12-18 06:00:00,0.266,0.317,0.312 +2015-12-18 07:00:00,0.266,0.317,0.312 +2015-12-18 08:00:00,0.265,0.317,0.312 +2015-12-18 09:00:00,0.265,0.316,0.312 +2015-12-18 10:00:00,0.265,0.315,0.312 +2015-12-18 11:00:00,0.265,0.315,0.311 +2015-12-18 12:00:00,0.265,0.315,0.311 +2015-12-18 13:00:00,0.265,0.314,0.311 +2015-12-18 14:00:00,0.266,0.314,0.311 +2015-12-18 15:00:00,0.267,0.314,0.311 +2015-12-18 16:00:00,0.268,0.314,0.311 +2015-12-18 17:00:00,0.268,0.314,0.31 +2015-12-18 18:00:00,0.268,0.314,0.31 +2015-12-18 19:00:00,0.268,0.314,0.31 +2015-12-18 20:00:00,0.268,0.314,0.31 +2015-12-18 21:00:00,0.268,0.314,0.31 +2015-12-18 22:00:00,0.268,0.314,0.31 +2015-12-18 23:00:00,0.268,0.314,0.31 +2015-12-19 00:00:00,0.268,0.314,0.31 +2015-12-19 01:00:00,0.268,0.314,0.31 +2015-12-19 02:00:00,0.268,0.314,0.31 +2015-12-19 03:00:00,0.268,0.314,0.31 +2015-12-19 04:00:00,0.268,0.314,0.31 +2015-12-19 05:00:00,0.268,0.314,0.31 +2015-12-19 06:00:00,0.268,0.314,0.31 +2015-12-19 07:00:00,0.268,0.312,0.309 +2015-12-19 08:00:00,0.268,0.31,0.309 +2015-12-19 09:00:00,0.268,0.31,0.309 +2015-12-19 10:00:00,0.268,0.31,0.309 +2015-12-19 11:00:00,0.268,0.31,0.309 +2015-12-19 12:00:00,0.26899999999999996,0.31,0.309 +2015-12-19 13:00:00,0.271,0.31,0.309 +2015-12-19 14:00:00,0.272,0.31,0.308 +2015-12-19 15:00:00,0.272,0.311,0.308 +2015-12-19 16:00:00,0.272,0.31,0.308 +2015-12-19 17:00:00,0.272,0.309,0.308 +2015-12-19 18:00:00,0.272,0.318,0.308 +2015-12-19 19:00:00,0.272,0.32899999999999996,0.308 +2015-12-19 20:00:00,0.272,0.33299999999999996,0.308 +2015-12-19 21:00:00,0.272,0.33399999999999996,0.308 +2015-12-19 22:00:00,0.272,0.33399999999999996,0.308 +2015-12-19 23:00:00,0.272,0.33299999999999996,0.308 +2015-12-20 00:00:00,0.272,0.332,0.308 +2015-12-20 01:00:00,0.272,0.332,0.308 +2015-12-20 02:00:00,0.272,0.331,0.308 +2015-12-20 03:00:00,0.271,0.331,0.308 +2015-12-20 04:00:00,0.271,0.33,0.308 +2015-12-20 05:00:00,0.27,0.32899999999999996,0.308 +2015-12-20 06:00:00,0.26899999999999996,0.32899999999999996,0.308 +2015-12-20 07:00:00,0.26899999999999996,0.327,0.308 +2015-12-20 08:00:00,0.26899999999999996,0.327,0.308 +2015-12-20 09:00:00,0.26899999999999996,0.327,0.308 +2015-12-20 10:00:00,0.268,0.326,0.308 +2015-12-20 11:00:00,0.268,0.326,0.308 +2015-12-20 12:00:00,0.268,0.326,0.308 +2015-12-20 13:00:00,0.26899999999999996,0.325,0.308 +2015-12-20 14:00:00,0.26899999999999996,0.324,0.307 +2015-12-20 15:00:00,0.26899999999999996,0.324,0.307 +2015-12-20 16:00:00,0.26899999999999996,0.324,0.307 +2015-12-20 17:00:00,0.26899999999999996,0.324,0.307 +2015-12-20 18:00:00,0.27,0.324,0.307 +2015-12-20 19:00:00,0.27,0.324,0.307 +2015-12-20 20:00:00,0.27,0.324,0.307 +2015-12-20 21:00:00,0.26899999999999996,0.324,0.307 +2015-12-20 22:00:00,0.26899999999999996,0.322,0.307 +2015-12-20 23:00:00,0.26899999999999996,0.322,0.307 +2015-12-21 00:00:00,0.26899999999999996,0.322,0.307 +2015-12-21 01:00:00,0.26899999999999996,0.322,0.307 +2015-12-21 02:00:00,0.26899999999999996,0.321,0.307 +2015-12-21 03:00:00,0.26899999999999996,0.321,0.307 +2015-12-21 04:00:00,0.268,0.321,0.307 +2015-12-21 05:00:00,0.267,0.321,0.307 +2015-12-21 06:00:00,0.264,0.32,0.308 +2015-12-21 07:00:00,0.264,0.32,0.308 +2015-12-21 08:00:00,0.263,0.319,0.308 +2015-12-21 09:00:00,0.263,0.319,0.308 +2015-12-21 10:00:00,0.264,0.319,0.308 +2015-12-21 11:00:00,0.264,0.317,0.308 +2015-12-21 12:00:00,0.265,0.317,0.308 +2015-12-21 13:00:00,0.267,0.317,0.308 +2015-12-21 14:00:00,0.27,0.315,0.307 +2015-12-21 15:00:00,0.272,0.314,0.307 +2015-12-21 16:00:00,0.27399999999999997,0.314,0.307 +2015-12-21 17:00:00,0.275,0.314,0.307 +2015-12-21 18:00:00,0.275,0.314,0.306 +2015-12-21 19:00:00,0.276,0.314,0.306 +2015-12-21 20:00:00,0.276,0.314,0.306 +2015-12-21 21:00:00,0.276,0.314,0.306 +2015-12-21 22:00:00,0.276,0.314,0.306 +2015-12-21 23:00:00,0.276,0.314,0.306 +2015-12-22 00:00:00,0.276,0.314,0.306 +2015-12-22 01:00:00,0.275,0.314,0.306 +2015-12-22 02:00:00,0.275,0.314,0.306 +2015-12-22 03:00:00,0.275,0.314,0.306 +2015-12-22 04:00:00,0.275,0.314,0.306 +2015-12-22 05:00:00,0.276,0.314,0.306 +2015-12-22 06:00:00,0.275,0.314,0.306 +2015-12-22 07:00:00,0.272,0.314,0.308 +2015-12-22 08:00:00,0.268,0.313,0.309 +2015-12-22 09:00:00,0.271,0.313,0.309 +2015-12-22 10:00:00,0.27399999999999997,0.312,0.309 +2015-12-22 11:00:00,0.27399999999999997,0.31,0.31 +2015-12-22 12:00:00,0.27399999999999997,0.31,0.31 +2015-12-22 13:00:00,0.27399999999999997,0.31,0.311 +2015-12-22 14:00:00,0.27399999999999997,0.31,0.311 +2015-12-22 15:00:00,0.275,0.31,0.311 +2015-12-22 16:00:00,0.278,0.31,0.311 +2015-12-22 17:00:00,0.27899999999999997,0.31,0.31 +2015-12-22 18:00:00,0.28,0.31,0.31 +2015-12-22 19:00:00,0.28,0.31,0.31 +2015-12-22 20:00:00,0.281,0.31,0.31 +2015-12-22 21:00:00,0.281,0.31,0.309 +2015-12-22 22:00:00,0.281,0.31,0.309 +2015-12-22 23:00:00,0.281,0.31,0.309 +2015-12-23 00:00:00,0.281,0.31,0.308 +2015-12-23 01:00:00,0.281,0.31,0.308 +2015-12-23 02:00:00,0.281,0.31,0.308 +2015-12-23 03:00:00,0.28,0.31,0.308 +2015-12-23 04:00:00,0.28,0.31,0.308 +2015-12-23 05:00:00,0.28,0.31,0.308 +2015-12-23 06:00:00,0.28,0.31,0.308 +2015-12-23 07:00:00,0.27899999999999997,0.31,0.307 +2015-12-23 08:00:00,0.27899999999999997,0.31,0.307 +2015-12-23 09:00:00,0.27899999999999997,0.31,0.307 +2015-12-23 10:00:00,0.27899999999999997,0.31,0.307 +2015-12-23 11:00:00,0.278,0.31,0.307 +2015-12-23 12:00:00,0.278,0.31,0.307 +2015-12-23 13:00:00,0.278,0.31,0.307 +2015-12-23 14:00:00,0.278,0.308,0.307 +2015-12-23 15:00:00,0.278,0.307,0.306 +2015-12-23 16:00:00,0.278,0.307,0.306 +2015-12-23 17:00:00,0.278,0.307,0.306 +2015-12-23 18:00:00,0.278,0.307,0.306 +2015-12-23 19:00:00,0.278,0.307,0.306 +2015-12-23 20:00:00,0.27699999999999997,0.307,0.306 +2015-12-23 21:00:00,0.27699999999999997,0.307,0.306 +2015-12-23 22:00:00,0.27699999999999997,0.307,0.306 +2015-12-23 23:00:00,0.27699999999999997,0.307,0.306 +2015-12-24 00:00:00,0.276,0.307,0.306 +2015-12-24 01:00:00,0.276,0.307,0.306 +2015-12-24 02:00:00,0.276,0.307,0.306 +2015-12-24 03:00:00,0.276,0.307,0.306 +2015-12-24 04:00:00,0.276,0.307,0.306 +2015-12-24 05:00:00,0.275,0.307,0.306 +2015-12-24 06:00:00,0.275,0.307,0.306 +2015-12-24 07:00:00,0.275,0.307,0.306 +2015-12-24 08:00:00,0.275,0.307,0.306 +2015-12-24 09:00:00,0.275,0.307,0.306 +2015-12-24 10:00:00,0.275,0.307,0.306 +2015-12-24 11:00:00,0.27399999999999997,0.307,0.306 +2015-12-24 12:00:00,0.27399999999999997,0.307,0.306 +2015-12-24 13:00:00,0.27399999999999997,0.307,0.306 +2015-12-24 14:00:00,0.27399999999999997,0.307,0.306 +2015-12-24 15:00:00,0.27399999999999997,0.307,0.306 +2015-12-24 16:00:00,0.27399999999999997,0.307,0.306 +2015-12-24 17:00:00,0.27399999999999997,0.307,0.306 +2015-12-24 18:00:00,0.275,0.307,0.305 +2015-12-24 19:00:00,0.275,0.308,0.305 +2015-12-24 20:00:00,0.275,0.308,0.305 +2015-12-24 21:00:00,0.275,0.309,0.305 +2015-12-24 22:00:00,0.27399999999999997,0.309,0.305 +2015-12-24 23:00:00,0.27399999999999997,0.309,0.305 +2015-12-25 00:00:00,0.27399999999999997,0.309,0.305 +2015-12-25 01:00:00,0.27399999999999997,0.309,0.305 +2015-12-25 02:00:00,0.27399999999999997,0.309,0.305 +2015-12-25 03:00:00,0.27399999999999997,0.309,0.305 +2015-12-25 04:00:00,0.27,0.309,0.306 +2015-12-25 05:00:00,0.266,0.309,0.307 +2015-12-25 06:00:00,0.266,0.309,0.308 +2015-12-25 07:00:00,0.265,0.309,0.308 +2015-12-25 08:00:00,0.265,0.308,0.307 +2015-12-25 09:00:00,0.265,0.308,0.307 +2015-12-25 10:00:00,0.264,0.307,0.308 +2015-12-25 11:00:00,0.264,0.307,0.308 +2015-12-25 12:00:00,0.264,0.307,0.308 +2015-12-25 13:00:00,0.265,0.307,0.308 +2015-12-25 14:00:00,0.273,0.305,0.308 +2015-12-25 15:00:00,0.282,0.304,0.311 +2015-12-25 16:00:00,0.28300000000000003,0.305,0.324 +2015-12-25 17:00:00,0.28,0.306,0.32899999999999996 +2015-12-25 18:00:00,0.27899999999999997,0.307,0.32799999999999996 +2015-12-25 19:00:00,0.27699999999999997,0.307,0.327 +2015-12-25 20:00:00,0.276,0.307,0.325 +2015-12-25 21:00:00,0.275,0.308,0.322 +2015-12-25 22:00:00,0.27399999999999997,0.309,0.321 +2015-12-25 23:00:00,0.27399999999999997,0.309,0.319 +2015-12-26 00:00:00,0.273,0.309,0.318 +2015-12-26 01:00:00,0.273,0.309,0.316 +2015-12-26 02:00:00,0.273,0.31,0.315 +2015-12-26 03:00:00,0.272,0.31,0.315 +2015-12-26 04:00:00,0.272,0.31,0.314 +2015-12-26 05:00:00,0.272,0.31,0.314 +2015-12-26 06:00:00,0.272,0.31,0.313 +2015-12-26 07:00:00,0.272,0.31,0.313 +2015-12-26 08:00:00,0.273,0.31,0.312 +2015-12-26 09:00:00,0.273,0.31,0.312 +2015-12-26 10:00:00,0.273,0.31,0.311 +2015-12-26 11:00:00,0.273,0.31,0.311 +2015-12-26 12:00:00,0.275,0.31,0.311 +2015-12-26 13:00:00,0.27699999999999997,0.31,0.31 +2015-12-26 14:00:00,0.278,0.31,0.31 +2015-12-26 15:00:00,0.278,0.31,0.31 +2015-12-26 16:00:00,0.27899999999999997,0.31,0.309 +2015-12-26 17:00:00,0.27899999999999997,0.311,0.309 +2015-12-26 18:00:00,0.27899999999999997,0.312,0.309 +2015-12-26 19:00:00,0.278,0.312,0.309 +2015-12-26 20:00:00,0.278,0.312,0.309 +2015-12-26 21:00:00,0.278,0.312,0.309 +2015-12-26 22:00:00,0.278,0.312,0.308 +2015-12-26 23:00:00,0.278,0.312,0.308 +2015-12-27 00:00:00,0.278,0.312,0.308 +2015-12-27 01:00:00,0.278,0.312,0.308 +2015-12-27 02:00:00,0.27699999999999997,0.312,0.308 +2015-12-27 03:00:00,0.27699999999999997,0.312,0.308 +2015-12-27 04:00:00,0.27699999999999997,0.312,0.308 +2015-12-27 05:00:00,0.27699999999999997,0.312,0.308 +2015-12-27 06:00:00,0.27699999999999997,0.312,0.308 +2015-12-27 07:00:00,0.27699999999999997,0.312,0.308 +2015-12-27 08:00:00,0.27699999999999997,0.312,0.307 +2015-12-27 09:00:00,0.276,0.312,0.307 +2015-12-27 10:00:00,0.276,0.312,0.307 +2015-12-27 11:00:00,0.275,0.312,0.308 +2015-12-27 12:00:00,0.27399999999999997,0.312,0.308 +2015-12-27 13:00:00,0.27399999999999997,0.311,0.308 +2015-12-27 14:00:00,0.275,0.308,0.308 +2015-12-27 15:00:00,0.275,0.306,0.307 +2015-12-27 16:00:00,0.275,0.305,0.307 +2015-12-27 17:00:00,0.276,0.317,0.307 +2015-12-27 18:00:00,0.276,0.332,0.306 +2015-12-27 19:00:00,0.276,0.332,0.306 +2015-12-27 20:00:00,0.276,0.337,0.306 +2015-12-27 21:00:00,0.276,0.337,0.306 +2015-12-27 22:00:00,0.275,0.33799999999999997,0.306 +2015-12-27 23:00:00,0.275,0.33899999999999997,0.306 +2015-12-28 00:00:00,0.275,0.33899999999999997,0.306 +2015-12-28 01:00:00,0.275,0.33799999999999997,0.306 +2015-12-28 02:00:00,0.275,0.336,0.306 +2015-12-28 03:00:00,0.275,0.33399999999999996,0.306 +2015-12-28 04:00:00,0.275,0.332,0.306 +2015-12-28 05:00:00,0.275,0.33,0.306 +2015-12-28 06:00:00,0.275,0.332,0.306 +2015-12-28 07:00:00,0.275,0.33399999999999996,0.306 +2015-12-28 08:00:00,0.273,0.33399999999999996,0.306 +2015-12-28 09:00:00,0.272,0.335,0.307 +2015-12-28 10:00:00,0.272,0.33399999999999996,0.307 +2015-12-28 11:00:00,0.272,0.332,0.307 +2015-12-28 12:00:00,0.272,0.331,0.307 +2015-12-28 13:00:00,0.272,0.331,0.307 +2015-12-28 14:00:00,0.272,0.332,0.306 +2015-12-28 15:00:00,0.273,0.332,0.306 +2015-12-28 16:00:00,0.273,0.332,0.306 +2015-12-28 17:00:00,0.273,0.33299999999999996,0.306 +2015-12-28 18:00:00,0.273,0.33399999999999996,0.306 +2015-12-28 19:00:00,0.273,0.33399999999999996,0.306 +2015-12-28 20:00:00,0.273,0.33299999999999996,0.306 +2015-12-28 21:00:00,0.273,0.332,0.306 +2015-12-28 22:00:00,0.27399999999999997,0.332,0.306 +2015-12-28 23:00:00,0.27399999999999997,0.332,0.306 +2015-12-29 00:00:00,0.27399999999999997,0.332,0.305 +2015-12-29 01:00:00,0.27399999999999997,0.331,0.305 +2015-12-29 02:00:00,0.27399999999999997,0.331,0.305 +2015-12-29 03:00:00,0.27399999999999997,0.331,0.305 +2015-12-29 04:00:00,0.27399999999999997,0.331,0.305 +2015-12-29 05:00:00,0.27399999999999997,0.32899999999999996,0.305 +2015-12-29 06:00:00,0.27399999999999997,0.32799999999999996,0.305 +2015-12-29 07:00:00,0.27399999999999997,0.327,0.305 +2015-12-29 08:00:00,0.27399999999999997,0.327,0.305 +2015-12-29 09:00:00,0.27399999999999997,0.327,0.304 +2015-12-29 10:00:00,0.273,0.327,0.304 +2015-12-29 11:00:00,0.273,0.327,0.305 +2015-12-29 12:00:00,0.271,0.326,0.306 +2015-12-29 13:00:00,0.27,0.326,0.306 +2015-12-29 14:00:00,0.27,0.322,0.306 +2015-12-29 15:00:00,0.27,0.32,0.306 +2015-12-29 16:00:00,0.271,0.32299999999999995,0.306 +2015-12-29 17:00:00,0.271,0.326,0.306 +2015-12-29 18:00:00,0.27,0.33799999999999997,0.306 +2015-12-29 19:00:00,0.27,0.345,0.306 +2015-12-29 20:00:00,0.27,0.34299999999999997,0.306 +2015-12-29 21:00:00,0.271,0.341,0.306 +2015-12-29 22:00:00,0.27,0.341,0.306 +2015-12-29 23:00:00,0.27,0.341,0.306 +2015-12-30 00:00:00,0.27,0.34,0.306 +2015-12-30 01:00:00,0.27,0.33799999999999997,0.306 +2015-12-30 02:00:00,0.271,0.337,0.305 +2015-12-30 03:00:00,0.27,0.336,0.305 +2015-12-30 04:00:00,0.27,0.336,0.305 +2015-12-30 05:00:00,0.27,0.336,0.305 +2015-12-30 06:00:00,0.27,0.335,0.305 +2015-12-30 07:00:00,0.27,0.33399999999999996,0.305 +2015-12-30 08:00:00,0.271,0.33399999999999996,0.305 +2015-12-30 09:00:00,0.271,0.33299999999999996,0.305 +2015-12-30 10:00:00,0.271,0.332,0.305 +2015-12-30 11:00:00,0.271,0.332,0.305 +2015-12-30 12:00:00,0.271,0.332,0.305 +2015-12-30 13:00:00,0.272,0.331,0.304 +2015-12-30 14:00:00,0.272,0.33,0.304 +2015-12-30 15:00:00,0.272,0.32899999999999996,0.304 +2015-12-30 16:00:00,0.272,0.32899999999999996,0.304 +2015-12-30 17:00:00,0.272,0.32899999999999996,0.304 +2015-12-30 18:00:00,0.272,0.32899999999999996,0.304 +2015-12-30 19:00:00,0.272,0.32899999999999996,0.304 +2015-12-30 20:00:00,0.273,0.32799999999999996,0.304 +2015-12-30 21:00:00,0.273,0.327,0.304 +2015-12-30 22:00:00,0.273,0.327,0.303 +2015-12-30 23:00:00,0.273,0.327,0.303 +2015-12-31 00:00:00,0.273,0.326,0.303 +2015-12-31 01:00:00,0.273,0.326,0.303 +2015-12-31 02:00:00,0.273,0.326,0.303 +2015-12-31 03:00:00,0.273,0.326,0.303 +2015-12-31 04:00:00,0.273,0.324,0.303 +2015-12-31 05:00:00,0.273,0.32299999999999995,0.303 +2015-12-31 06:00:00,0.273,0.322,0.303 +2015-12-31 07:00:00,0.272,0.321,0.303 +2015-12-31 08:00:00,0.271,0.321,0.304 +2015-12-31 09:00:00,0.27,0.321,0.304 +2015-12-31 10:00:00,0.266,0.322,0.305 +2015-12-31 11:00:00,0.263,0.321,0.305 +2015-12-31 12:00:00,0.262,0.322,0.306 +2015-12-31 13:00:00,0.262,0.322,0.306 +2015-12-31 14:00:00,0.263,0.322,0.306 +2015-12-31 15:00:00,0.265,0.32299999999999995,0.306 +2015-12-31 16:00:00,0.266,0.324,0.305 +2015-12-31 17:00:00,0.266,0.324,0.305 +2015-12-31 18:00:00,0.267,0.324,0.305 +2015-12-31 19:00:00,0.267,0.324,0.305 +2015-12-31 20:00:00,0.267,0.324,0.305 +2015-12-31 21:00:00,0.267,0.324,0.305 +2015-12-31 22:00:00,0.267,0.324,0.305 +2015-12-31 23:00:00,0.267,0.324,0.305 +2016-01-01 00:00:00,0.267,0.324,0.305 +2016-01-01 01:00:00,0.267,0.324,0.305 +2016-01-01 02:00:00,0.266,0.324,0.305 +2016-01-01 03:00:00,0.266,0.32299999999999995,0.305 +2016-01-01 04:00:00,0.266,0.32299999999999995,0.305 +2016-01-01 05:00:00,0.266,0.322,0.305 +2016-01-01 06:00:00,0.266,0.322,0.305 +2016-01-01 07:00:00,0.266,0.322,0.305 +2016-01-01 08:00:00,0.266,0.322,0.305 +2016-01-01 09:00:00,0.266,0.321,0.305 +2016-01-01 10:00:00,0.266,0.321,0.305 +2016-01-01 11:00:00,0.266,0.321,0.305 +2016-01-01 12:00:00,0.266,0.321,0.305 +2016-01-01 13:00:00,0.266,0.321,0.305 +2016-01-01 14:00:00,0.267,0.321,0.305 +2016-01-01 15:00:00,0.268,0.321,0.305 +2016-01-01 16:00:00,0.268,0.321,0.305 +2016-01-01 17:00:00,0.26899999999999996,0.321,0.305 +2016-01-01 18:00:00,0.26899999999999996,0.321,0.305 +2016-01-01 19:00:00,0.26899999999999996,0.314,0.305 +2016-01-01 20:00:00,0.26899999999999996,0.312,0.305 +2016-01-01 21:00:00,0.26899999999999996,0.32799999999999996,0.305 +2016-01-01 22:00:00,0.26899999999999996,0.332,0.305 +2016-01-01 23:00:00,0.27,0.33399999999999996,0.304 +2016-01-02 00:00:00,0.27,0.33299999999999996,0.304 +2016-01-02 01:00:00,0.271,0.331,0.304 +2016-01-02 02:00:00,0.271,0.33399999999999996,0.304 +2016-01-02 03:00:00,0.271,0.336,0.304 +2016-01-02 04:00:00,0.272,0.336,0.304 +2016-01-02 05:00:00,0.272,0.336,0.304 +2016-01-02 06:00:00,0.273,0.33399999999999996,0.304 +2016-01-02 07:00:00,0.273,0.33399999999999996,0.304 +2016-01-02 08:00:00,0.273,0.33399999999999996,0.304 +2016-01-02 09:00:00,0.27399999999999997,0.33299999999999996,0.304 +2016-01-02 10:00:00,0.271,0.332,0.304 +2016-01-02 11:00:00,0.266,0.331,0.306 +2016-01-02 12:00:00,0.268,0.331,0.306 +2016-01-02 13:00:00,0.278,0.33,0.306 +2016-01-02 14:00:00,0.284,0.32899999999999996,0.307 +2016-01-02 15:00:00,0.284,0.32899999999999996,0.315 +2016-01-02 16:00:00,0.287,0.32799999999999996,0.32799999999999996 +2016-01-02 17:00:00,0.28800000000000003,0.32899999999999996,0.337 +2016-01-02 18:00:00,0.289,0.32799999999999996,0.337 +2016-01-02 19:00:00,0.292,0.327,0.341 +2016-01-02 20:00:00,0.29100000000000004,0.327,0.341 +2016-01-02 21:00:00,0.287,0.327,0.33799999999999997 +2016-01-02 22:00:00,0.28300000000000003,0.327,0.336 +2016-01-02 23:00:00,0.282,0.327,0.335 +2016-01-03 00:00:00,0.281,0.327,0.33399999999999996 +2016-01-03 01:00:00,0.28,0.326,0.33299999999999996 +2016-01-03 02:00:00,0.281,0.32799999999999996,0.33299999999999996 +2016-01-03 03:00:00,0.282,0.332,0.33299999999999996 +2016-01-03 04:00:00,0.282,0.332,0.33299999999999996 +2016-01-03 05:00:00,0.28,0.331,0.33299999999999996 +2016-01-03 06:00:00,0.27899999999999997,0.331,0.33299999999999996 +2016-01-03 07:00:00,0.278,0.331,0.33299999999999996 +2016-01-03 08:00:00,0.27899999999999997,0.33,0.33299999999999996 +2016-01-03 09:00:00,0.278,0.32899999999999996,0.332 +2016-01-03 10:00:00,0.27699999999999997,0.32899999999999996,0.331 +2016-01-03 11:00:00,0.27699999999999997,0.32799999999999996,0.33 +2016-01-03 12:00:00,0.275,0.327,0.33 +2016-01-03 13:00:00,0.27399999999999997,0.327,0.32899999999999996 +2016-01-03 14:00:00,0.27399999999999997,0.327,0.32899999999999996 +2016-01-03 15:00:00,0.273,0.326,0.32799999999999996 +2016-01-03 16:00:00,0.273,0.324,0.32799999999999996 +2016-01-03 17:00:00,0.273,0.324,0.327 +2016-01-03 18:00:00,0.272,0.324,0.326 +2016-01-03 19:00:00,0.272,0.324,0.325 +2016-01-03 20:00:00,0.272,0.32299999999999995,0.325 +2016-01-03 21:00:00,0.272,0.32299999999999995,0.324 +2016-01-03 22:00:00,0.272,0.32299999999999995,0.324 +2016-01-03 23:00:00,0.273,0.32299999999999995,0.324 +2016-01-04 00:00:00,0.273,0.32299999999999995,0.32299999999999995 +2016-01-04 01:00:00,0.273,0.32299999999999995,0.32299999999999995 +2016-01-04 02:00:00,0.271,0.32299999999999995,0.32299999999999995 +2016-01-04 03:00:00,0.27,0.322,0.32299999999999995 +2016-01-04 04:00:00,0.27,0.322,0.32299999999999995 +2016-01-04 05:00:00,0.26899999999999996,0.322,0.32299999999999995 +2016-01-04 06:00:00,0.26899999999999996,0.322,0.322 +2016-01-04 07:00:00,0.26899999999999996,0.322,0.322 +2016-01-04 08:00:00,0.26899999999999996,0.322,0.322 +2016-01-04 09:00:00,0.26899999999999996,0.322,0.322 +2016-01-04 10:00:00,0.27,0.32,0.322 +2016-01-04 11:00:00,0.272,0.32,0.322 +2016-01-04 12:00:00,0.273,0.321,0.322 +2016-01-04 13:00:00,0.272,0.321,0.322 +2016-01-04 14:00:00,0.276,0.321,0.322 +2016-01-04 15:00:00,0.287,0.322,0.32799999999999996 +2016-01-04 16:00:00,0.29,0.324,0.33799999999999997 +2016-01-04 17:00:00,0.287,0.324,0.337 +2016-01-04 18:00:00,0.28600000000000003,0.324,0.335 +2016-01-04 19:00:00,0.284,0.325,0.33399999999999996 +2016-01-04 20:00:00,0.28300000000000003,0.326,0.33299999999999996 +2016-01-04 21:00:00,0.28,0.327,0.332 +2016-01-04 22:00:00,0.27899999999999997,0.324,0.331 +2016-01-04 23:00:00,0.278,0.32,0.331 +2016-01-05 00:00:00,0.278,0.348,0.331 +2016-01-05 01:00:00,0.27699999999999997,0.353,0.331 +2016-01-05 02:00:00,0.276,0.355,0.33 +2016-01-05 03:00:00,0.275,0.355,0.33 +2016-01-05 04:00:00,0.27399999999999997,0.355,0.33 +2016-01-05 05:00:00,0.27399999999999997,0.355,0.33 +2016-01-05 06:00:00,0.273,0.355,0.32899999999999996 +2016-01-05 07:00:00,0.273,0.355,0.32899999999999996 +2016-01-05 08:00:00,0.272,0.35700000000000004,0.32799999999999996 +2016-01-05 09:00:00,0.271,0.35700000000000004,0.32799999999999996 +2016-01-05 10:00:00,0.272,0.35600000000000004,0.32799999999999996 +2016-01-05 11:00:00,0.272,0.355,0.327 +2016-01-05 12:00:00,0.271,0.35200000000000004,0.327 +2016-01-05 13:00:00,0.271,0.35,0.326 +2016-01-05 14:00:00,0.271,0.349,0.326 +2016-01-05 15:00:00,0.271,0.34700000000000003,0.326 +2016-01-05 16:00:00,0.272,0.34299999999999997,0.325 +2016-01-05 17:00:00,0.271,0.345,0.325 +2016-01-05 18:00:00,0.27,0.348,0.325 +2016-01-05 19:00:00,0.27,0.34700000000000003,0.324 +2016-01-05 20:00:00,0.27,0.34,0.324 +2016-01-05 21:00:00,0.27,0.353,0.324 +2016-01-05 22:00:00,0.27,0.355,0.324 +2016-01-05 23:00:00,0.26899999999999996,0.353,0.324 +2016-01-06 00:00:00,0.26899999999999996,0.354,0.324 +2016-01-06 01:00:00,0.26899999999999996,0.349,0.32299999999999995 +2016-01-06 02:00:00,0.26899999999999996,0.349,0.32299999999999995 +2016-01-06 03:00:00,0.26899999999999996,0.35100000000000003,0.32299999999999995 +2016-01-06 04:00:00,0.27,0.355,0.32299999999999995 +2016-01-06 05:00:00,0.27,0.35600000000000004,0.32299999999999995 +2016-01-06 06:00:00,0.27,0.35600000000000004,0.32299999999999995 +2016-01-06 07:00:00,0.27,0.35100000000000003,0.32299999999999995 +2016-01-06 08:00:00,0.27,0.35100000000000003,0.32299999999999995 +2016-01-06 09:00:00,0.27,0.353,0.322 +2016-01-06 10:00:00,0.27,0.35,0.322 +2016-01-06 11:00:00,0.27,0.349,0.322 +2016-01-06 12:00:00,0.27,0.34700000000000003,0.322 +2016-01-06 13:00:00,0.26899999999999996,0.349,0.322 +2016-01-06 14:00:00,0.27,0.353,0.322 +2016-01-06 15:00:00,0.27,0.355,0.322 +2016-01-06 16:00:00,0.27,0.35600000000000004,0.321 +2016-01-06 17:00:00,0.27,0.35600000000000004,0.321 +2016-01-06 18:00:00,0.27,0.35600000000000004,0.321 +2016-01-06 19:00:00,0.27,0.35600000000000004,0.321 +2016-01-06 20:00:00,0.27,0.342,0.321 +2016-01-06 21:00:00,0.27,0.341,0.321 +2016-01-06 22:00:00,0.27,0.34,0.321 +2016-01-06 23:00:00,0.27,0.33899999999999997,0.321 +2016-01-07 00:00:00,0.27,0.33899999999999997,0.32 +2016-01-07 01:00:00,0.27,0.33799999999999997,0.32 +2016-01-07 02:00:00,0.27,0.33799999999999997,0.32 +2016-01-07 03:00:00,0.26899999999999996,0.33799999999999997,0.32 +2016-01-07 04:00:00,0.26899999999999996,0.337,0.32 +2016-01-07 05:00:00,0.26899999999999996,0.336,0.32 +2016-01-07 06:00:00,0.26899999999999996,0.336,0.32 +2016-01-07 07:00:00,0.26899999999999996,0.33399999999999996,0.32 +2016-01-07 08:00:00,0.26899999999999996,0.326,0.32 +2016-01-07 09:00:00,0.26899999999999996,0.324,0.32 +2016-01-07 10:00:00,0.26899999999999996,0.332,0.32 +2016-01-07 11:00:00,0.27,0.34,0.319 +2016-01-07 12:00:00,0.272,0.341,0.319 +2016-01-07 13:00:00,0.273,0.341,0.319 +2016-01-07 14:00:00,0.27399999999999997,0.34299999999999997,0.319 +2016-01-07 15:00:00,0.275,0.34299999999999997,0.319 +2016-01-07 16:00:00,0.271,0.34299999999999997,0.32 +2016-01-07 17:00:00,0.276,0.34299999999999997,0.32 +2016-01-07 18:00:00,0.28600000000000003,0.33399999999999996,0.321 +2016-01-07 19:00:00,0.28800000000000003,0.336,0.326 +2016-01-07 20:00:00,0.287,0.33899999999999997,0.332 +2016-01-07 21:00:00,0.285,0.34,0.332 +2016-01-07 22:00:00,0.285,0.341,0.331 +2016-01-07 23:00:00,0.28300000000000003,0.341,0.33 +2016-01-08 00:00:00,0.28,0.341,0.33 +2016-01-08 01:00:00,0.27899999999999997,0.341,0.33 +2016-01-08 02:00:00,0.27699999999999997,0.33899999999999997,0.32899999999999996 +2016-01-08 03:00:00,0.276,0.33899999999999997,0.32799999999999996 +2016-01-08 04:00:00,0.275,0.341,0.32799999999999996 +2016-01-08 05:00:00,0.275,0.341,0.327 +2016-01-08 06:00:00,0.27399999999999997,0.34,0.327 +2016-01-08 07:00:00,0.27399999999999997,0.33899999999999997,0.326 +2016-01-08 08:00:00,0.27399999999999997,0.33899999999999997,0.326 +2016-01-08 09:00:00,0.27399999999999997,0.33799999999999997,0.326 +2016-01-08 10:00:00,0.27399999999999997,0.33799999999999997,0.325 +2016-01-08 11:00:00,0.27399999999999997,0.337,0.325 +2016-01-08 12:00:00,0.275,0.337,0.324 +2016-01-08 13:00:00,0.276,0.34,0.324 +2016-01-08 14:00:00,0.27899999999999997,0.331,0.32299999999999995 +2016-01-08 15:00:00,0.281,0.33,0.32299999999999995 +2016-01-08 16:00:00,0.282,0.331,0.322 +2016-01-08 17:00:00,0.28300000000000003,0.331,0.322 +2016-01-08 18:00:00,0.284,0.331,0.322 +2016-01-08 19:00:00,0.284,0.331,0.321 +2016-01-08 20:00:00,0.284,0.331,0.321 +2016-01-08 21:00:00,0.284,0.324,0.321 +2016-01-08 22:00:00,0.28300000000000003,0.325,0.321 +2016-01-08 23:00:00,0.28300000000000003,0.32299999999999995,0.321 +2016-01-09 00:00:00,0.28300000000000003,0.33,0.32 +2016-01-09 01:00:00,0.28300000000000003,0.32899999999999996,0.32 +2016-01-09 02:00:00,0.282,0.326,0.32 +2016-01-09 03:00:00,0.282,0.327,0.32 +2016-01-09 04:00:00,0.282,0.32799999999999996,0.32 +2016-01-09 05:00:00,0.281,0.33,0.32 +2016-01-09 06:00:00,0.281,0.332,0.32 +2016-01-09 07:00:00,0.281,0.332,0.32 +2016-01-09 08:00:00,0.281,0.332,0.319 +2016-01-09 09:00:00,0.281,0.32799999999999996,0.319 +2016-01-09 10:00:00,0.281,0.326,0.319 +2016-01-09 11:00:00,0.28,0.327,0.319 +2016-01-09 12:00:00,0.27899999999999997,0.326,0.32 +2016-01-09 13:00:00,0.276,0.326,0.321 +2016-01-09 14:00:00,0.275,0.322,0.321 +2016-01-09 15:00:00,0.275,0.326,0.321 +2016-01-09 16:00:00,0.275,0.33,0.321 +2016-01-09 17:00:00,0.276,0.335,0.32 +2016-01-09 18:00:00,0.276,0.33899999999999997,0.32 +2016-01-09 19:00:00,0.276,0.33799999999999997,0.32 +2016-01-09 20:00:00,0.275,0.33899999999999997,0.32 +2016-01-09 21:00:00,0.275,0.341,0.32 +2016-01-09 22:00:00,0.275,0.341,0.32 +2016-01-09 23:00:00,0.275,0.34,0.32 +2016-01-10 00:00:00,0.275,0.33899999999999997,0.32 +2016-01-10 01:00:00,0.275,0.33899999999999997,0.32 +2016-01-10 02:00:00,0.27399999999999997,0.33899999999999997,0.32 +2016-01-10 03:00:00,0.27399999999999997,0.34299999999999997,0.319 +2016-01-10 04:00:00,0.27399999999999997,0.34,0.319 +2016-01-10 05:00:00,0.27399999999999997,0.33899999999999997,0.319 +2016-01-10 06:00:00,0.273,0.33899999999999997,0.319 +2016-01-10 07:00:00,0.26899999999999996,0.33799999999999997,0.32 +2016-01-10 08:00:00,0.268,0.337,0.32 +2016-01-10 09:00:00,0.268,0.336,0.32 +2016-01-10 10:00:00,0.268,0.336,0.32 +2016-01-10 11:00:00,0.267,0.33399999999999996,0.32 +2016-01-10 12:00:00,0.268,0.33399999999999996,0.319 +2016-01-10 13:00:00,0.27,0.33299999999999996,0.319 +2016-01-10 14:00:00,0.27399999999999997,0.332,0.319 +2016-01-10 15:00:00,0.276,0.331,0.319 +2016-01-10 16:00:00,0.27699999999999997,0.331,0.318 +2016-01-10 17:00:00,0.278,0.32899999999999996,0.318 +2016-01-10 18:00:00,0.278,0.32799999999999996,0.318 +2016-01-10 19:00:00,0.271,0.32299999999999995,0.32 +2016-01-10 20:00:00,0.275,0.326,0.321 +2016-01-10 21:00:00,0.29,0.326,0.335 +2016-01-10 22:00:00,0.289,0.326,0.33899999999999997 +2016-01-10 23:00:00,0.287,0.32799999999999996,0.337 +2016-01-11 00:00:00,0.284,0.331,0.336 +2016-01-11 01:00:00,0.282,0.332,0.335 +2016-01-11 02:00:00,0.28,0.332,0.33399999999999996 +2016-01-11 03:00:00,0.27899999999999997,0.332,0.332 +2016-01-11 04:00:00,0.278,0.332,0.331 +2016-01-11 05:00:00,0.275,0.331,0.33 +2016-01-11 06:00:00,0.281,0.332,0.32899999999999996 +2016-01-11 07:00:00,0.285,0.332,0.32799999999999996 +2016-01-11 08:00:00,0.28300000000000003,0.332,0.32799999999999996 +2016-01-11 09:00:00,0.275,0.331,0.32799999999999996 +2016-01-11 10:00:00,0.275,0.331,0.32799999999999996 +2016-01-11 11:00:00,0.27399999999999997,0.331,0.32799999999999996 +2016-01-11 12:00:00,0.275,0.331,0.327 +2016-01-11 13:00:00,0.27699999999999997,0.33,0.327 +2016-01-11 14:00:00,0.276,0.32899999999999996,0.327 +2016-01-11 15:00:00,0.275,0.327,0.327 +2016-01-11 16:00:00,0.275,0.326,0.327 +2016-01-11 17:00:00,0.28,0.326,0.327 +2016-01-11 18:00:00,0.28800000000000003,0.327,0.337 +2016-01-11 19:00:00,0.287,0.327,0.33799999999999997 +2016-01-11 20:00:00,0.28600000000000003,0.327,0.336 +2016-01-11 21:00:00,0.285,0.327,0.335 +2016-01-11 22:00:00,0.28600000000000003,0.327,0.335 +2016-01-11 23:00:00,0.287,0.327,0.33399999999999996 +2016-01-12 00:00:00,0.29,0.327,0.337 +2016-01-12 01:00:00,0.29100000000000004,0.327,0.33899999999999997 +2016-01-12 02:00:00,0.287,0.327,0.33799999999999997 +2016-01-12 03:00:00,0.285,0.327,0.336 +2016-01-12 04:00:00,0.285,0.327,0.335 +2016-01-12 05:00:00,0.284,0.327,0.335 +2016-01-12 06:00:00,0.28300000000000003,0.327,0.33399999999999996 +2016-01-12 07:00:00,0.28300000000000003,0.327,0.33399999999999996 +2016-01-12 08:00:00,0.282,0.324,0.33399999999999996 +2016-01-12 09:00:00,0.28300000000000003,0.322,0.33399999999999996 +2016-01-12 10:00:00,0.28300000000000003,0.322,0.33399999999999996 +2016-01-12 11:00:00,0.282,0.322,0.33399999999999996 +2016-01-12 12:00:00,0.28,0.322,0.33399999999999996 +2016-01-12 13:00:00,0.278,0.321,0.33399999999999996 +2016-01-12 14:00:00,0.27699999999999997,0.321,0.33299999999999996 +2016-01-12 15:00:00,0.276,0.321,0.33299999999999996 +2016-01-12 16:00:00,0.27699999999999997,0.321,0.332 +2016-01-12 17:00:00,0.278,0.321,0.332 +2016-01-12 18:00:00,0.27899999999999997,0.321,0.332 +2016-01-12 19:00:00,0.28,0.321,0.331 +2016-01-12 20:00:00,0.281,0.321,0.33 +2016-01-12 21:00:00,0.282,0.32,0.33 +2016-01-12 22:00:00,0.282,0.32,0.33 +2016-01-12 23:00:00,0.282,0.32,0.33 +2016-01-13 00:00:00,0.282,0.32,0.32899999999999996 +2016-01-13 01:00:00,0.282,0.319,0.32899999999999996 +2016-01-13 02:00:00,0.282,0.319,0.32899999999999996 +2016-01-13 03:00:00,0.282,0.319,0.32799999999999996 +2016-01-13 04:00:00,0.28,0.319,0.32799999999999996 +2016-01-13 05:00:00,0.275,0.319,0.32899999999999996 +2016-01-13 06:00:00,0.27899999999999997,0.319,0.32899999999999996 +2016-01-13 07:00:00,0.28600000000000003,0.319,0.33299999999999996 +2016-01-13 08:00:00,0.28600000000000003,0.318,0.335 +2016-01-13 09:00:00,0.285,0.317,0.33399999999999996 +2016-01-13 10:00:00,0.28300000000000003,0.317,0.33299999999999996 +2016-01-13 11:00:00,0.28,0.317,0.332 +2016-01-13 12:00:00,0.27899999999999997,0.317,0.332 +2016-01-13 13:00:00,0.27899999999999997,0.317,0.331 +2016-01-13 14:00:00,0.28300000000000003,0.317,0.331 +2016-01-13 15:00:00,0.28300000000000003,0.317,0.331 +2016-01-13 16:00:00,0.289,0.317,0.33399999999999996 +2016-01-13 17:00:00,0.287,0.317,0.335 +2016-01-13 18:00:00,0.285,0.317,0.335 +2016-01-13 19:00:00,0.28300000000000003,0.317,0.33399999999999996 +2016-01-13 20:00:00,0.281,0.316,0.33399999999999996 +2016-01-13 21:00:00,0.27899999999999997,0.316,0.33299999999999996 +2016-01-13 22:00:00,0.278,0.316,0.33299999999999996 +2016-01-13 23:00:00,0.276,0.316,0.33299999999999996 +2016-01-14 00:00:00,0.275,0.316,0.332 +2016-01-14 01:00:00,0.278,0.315,0.332 +2016-01-14 02:00:00,0.284,0.315,0.331 +2016-01-14 03:00:00,0.28600000000000003,0.315,0.331 +2016-01-14 04:00:00,0.28600000000000003,0.315,0.331 +2016-01-14 05:00:00,0.285,0.315,0.331 +2016-01-14 06:00:00,0.285,0.315,0.331 +2016-01-14 07:00:00,0.284,0.315,0.33 +2016-01-14 08:00:00,0.284,0.315,0.33 +2016-01-14 09:00:00,0.284,0.315,0.33 +2016-01-14 10:00:00,0.281,0.315,0.33 +2016-01-14 11:00:00,0.272,0.315,0.33 +2016-01-14 12:00:00,0.272,0.314,0.33 +2016-01-14 13:00:00,0.272,0.314,0.33 +2016-01-14 14:00:00,0.273,0.314,0.33 +2016-01-14 15:00:00,0.275,0.314,0.32899999999999996 +2016-01-14 16:00:00,0.276,0.314,0.32899999999999996 +2016-01-14 17:00:00,0.276,0.314,0.32899999999999996 +2016-01-14 18:00:00,0.272,0.314,0.33 +2016-01-14 19:00:00,0.271,0.314,0.32899999999999996 +2016-01-14 20:00:00,0.273,0.314,0.32899999999999996 +2016-01-14 21:00:00,0.27,0.314,0.32899999999999996 +2016-01-14 22:00:00,0.272,0.314,0.32899999999999996 +2016-01-14 23:00:00,0.273,0.314,0.32899999999999996 +2016-01-15 00:00:00,0.273,0.314,0.32899999999999996 +2016-01-15 01:00:00,0.273,0.314,0.32899999999999996 +2016-01-15 02:00:00,0.273,0.314,0.32899999999999996 +2016-01-15 03:00:00,0.272,0.314,0.32899999999999996 +2016-01-15 04:00:00,0.272,0.314,0.32899999999999996 +2016-01-15 05:00:00,0.272,0.314,0.32899999999999996 +2016-01-15 06:00:00,0.27399999999999997,0.314,0.32899999999999996 +2016-01-15 07:00:00,0.275,0.314,0.32899999999999996 +2016-01-15 08:00:00,0.275,0.314,0.32899999999999996 +2016-01-15 09:00:00,0.276,0.314,0.32899999999999996 +2016-01-15 10:00:00,0.27699999999999997,0.314,0.33 +2016-01-15 11:00:00,0.27899999999999997,0.314,0.33 +2016-01-15 12:00:00,0.28,0.314,0.33 +2016-01-15 13:00:00,0.281,0.314,0.331 +2016-01-15 14:00:00,0.28300000000000003,0.314,0.33299999999999996 +2016-01-15 15:00:00,0.285,0.314,0.33399999999999996 +2016-01-15 16:00:00,0.28600000000000003,0.314,0.335 +2016-01-15 17:00:00,0.285,0.313,0.335 +2016-01-15 18:00:00,0.28300000000000003,0.314,0.33399999999999996 +2016-01-15 19:00:00,0.282,0.314,0.33399999999999996 +2016-01-15 20:00:00,0.28,0.314,0.33399999999999996 +2016-01-15 21:00:00,0.27899999999999997,0.314,0.33399999999999996 +2016-01-15 22:00:00,0.278,0.314,0.33299999999999996 +2016-01-15 23:00:00,0.27699999999999997,0.314,0.33299999999999996 +2016-01-16 00:00:00,0.275,0.314,0.33299999999999996 +2016-01-16 01:00:00,0.275,0.314,0.33299999999999996 +2016-01-16 02:00:00,0.27399999999999997,0.315,0.332 +2016-01-16 03:00:00,0.273,0.314,0.332 +2016-01-16 04:00:00,0.276,0.313,0.331 +2016-01-16 05:00:00,0.27899999999999997,0.315,0.331 +2016-01-16 06:00:00,0.27899999999999997,0.314,0.331 +2016-01-16 07:00:00,0.27899999999999997,0.314,0.33 +2016-01-16 08:00:00,0.27899999999999997,0.314,0.33 +2016-01-16 09:00:00,0.27899999999999997,0.314,0.33 +2016-01-16 10:00:00,0.27399999999999997,0.314,0.33 +2016-01-16 11:00:00,0.271,0.314,0.33 +2016-01-16 12:00:00,0.271,0.314,0.33 +2016-01-16 13:00:00,0.271,0.314,0.33 +2016-01-16 14:00:00,0.272,0.314,0.33 +2016-01-16 15:00:00,0.272,0.314,0.33 +2016-01-16 16:00:00,0.273,0.314,0.33 +2016-01-16 17:00:00,0.272,0.314,0.33 +2016-01-16 18:00:00,0.272,0.314,0.33 +2016-01-16 19:00:00,0.272,0.314,0.33 +2016-01-16 20:00:00,0.271,0.314,0.33 +2016-01-16 21:00:00,0.27899999999999997,0.314,0.32899999999999996 +2016-01-16 22:00:00,0.282,0.314,0.32799999999999996 +2016-01-16 23:00:00,0.282,0.314,0.32799999999999996 +2016-01-17 00:00:00,0.282,0.314,0.32799999999999996 +2016-01-17 01:00:00,0.28300000000000003,0.314,0.32799999999999996 +2016-01-17 02:00:00,0.282,0.314,0.32799999999999996 +2016-01-17 03:00:00,0.282,0.314,0.32799999999999996 +2016-01-17 04:00:00,0.282,0.314,0.327 +2016-01-17 05:00:00,0.282,0.314,0.327 +2016-01-17 06:00:00,0.282,0.314,0.327 +2016-01-17 07:00:00,0.282,0.314,0.327 +2016-01-17 08:00:00,0.282,0.314,0.327 +2016-01-17 09:00:00,0.282,0.314,0.327 +2016-01-17 10:00:00,0.282,0.314,0.326 +2016-01-17 11:00:00,0.28,0.313,0.326 +2016-01-17 12:00:00,0.271,0.312,0.32799999999999996 +2016-01-17 13:00:00,0.272,0.312,0.327 +2016-01-17 14:00:00,0.273,0.312,0.327 +2016-01-17 15:00:00,0.27699999999999997,0.312,0.326 +2016-01-17 16:00:00,0.282,0.312,0.326 +2016-01-17 17:00:00,0.282,0.312,0.325 +2016-01-17 18:00:00,0.282,0.34,0.325 +2016-01-17 19:00:00,0.282,0.355,0.325 +2016-01-17 20:00:00,0.282,0.355,0.325 +2016-01-17 21:00:00,0.282,0.354,0.325 +2016-01-17 22:00:00,0.282,0.353,0.325 +2016-01-17 23:00:00,0.282,0.355,0.325 +2016-01-18 00:00:00,0.282,0.353,0.324 +2016-01-18 01:00:00,0.282,0.35600000000000004,0.324 +2016-01-18 02:00:00,0.282,0.348,0.324 +2016-01-18 03:00:00,0.282,0.348,0.32299999999999995 +2016-01-18 04:00:00,0.282,0.348,0.32299999999999995 +2016-01-18 05:00:00,0.282,0.348,0.32299999999999995 +2016-01-18 06:00:00,0.282,0.349,0.32299999999999995 +2016-01-18 07:00:00,0.282,0.349,0.32299999999999995 +2016-01-18 08:00:00,0.281,0.349,0.322 +2016-01-18 09:00:00,0.281,0.349,0.322 +2016-01-18 10:00:00,0.281,0.349,0.322 +2016-01-18 11:00:00,0.28,0.349,0.322 +2016-01-18 12:00:00,0.28,0.348,0.322 +2016-01-18 13:00:00,0.27899999999999997,0.34700000000000003,0.322 +2016-01-18 14:00:00,0.27899999999999997,0.34600000000000003,0.322 +2016-01-18 15:00:00,0.27899999999999997,0.34600000000000003,0.322 +2016-01-18 16:00:00,0.27899999999999997,0.35,0.322 +2016-01-18 17:00:00,0.27899999999999997,0.354,0.321 +2016-01-18 18:00:00,0.27899999999999997,0.354,0.321 +2016-01-18 19:00:00,0.27899999999999997,0.353,0.321 +2016-01-18 20:00:00,0.27899999999999997,0.353,0.321 +2016-01-18 21:00:00,0.27899999999999997,0.35200000000000004,0.321 +2016-01-18 22:00:00,0.278,0.35100000000000003,0.321 +2016-01-18 23:00:00,0.278,0.35100000000000003,0.32 +2016-01-19 00:00:00,0.278,0.35100000000000003,0.32 +2016-01-19 01:00:00,0.278,0.35100000000000003,0.32 +2016-01-19 02:00:00,0.278,0.349,0.32 +2016-01-19 03:00:00,0.278,0.349,0.32 +2016-01-19 04:00:00,0.27699999999999997,0.349,0.32 +2016-01-19 05:00:00,0.27699999999999997,0.348,0.319 +2016-01-19 06:00:00,0.27699999999999997,0.348,0.319 +2016-01-19 07:00:00,0.27699999999999997,0.34700000000000003,0.319 +2016-01-19 08:00:00,0.276,0.34600000000000003,0.319 +2016-01-19 09:00:00,0.276,0.34600000000000003,0.319 +2016-01-19 10:00:00,0.276,0.34600000000000003,0.319 +2016-01-19 11:00:00,0.275,0.345,0.318 +2016-01-19 12:00:00,0.275,0.344,0.317 +2016-01-19 13:00:00,0.275,0.344,0.317 +2016-01-19 14:00:00,0.275,0.34299999999999997,0.317 +2016-01-19 15:00:00,0.275,0.34299999999999997,0.317 +2016-01-19 16:00:00,0.275,0.34299999999999997,0.317 +2016-01-19 17:00:00,0.275,0.34299999999999997,0.317 +2016-01-19 18:00:00,0.275,0.34299999999999997,0.317 +2016-01-19 19:00:00,0.27399999999999997,0.34299999999999997,0.316 +2016-01-19 20:00:00,0.27399999999999997,0.34299999999999997,0.316 +2016-01-19 21:00:00,0.27399999999999997,0.34299999999999997,0.316 +2016-01-19 22:00:00,0.27399999999999997,0.34299999999999997,0.316 +2016-01-19 23:00:00,0.27399999999999997,0.342,0.316 +2016-01-20 00:00:00,0.27399999999999997,0.341,0.316 +2016-01-20 01:00:00,0.273,0.341,0.315 +2016-01-20 02:00:00,0.273,0.34,0.314 +2016-01-20 03:00:00,0.273,0.33899999999999997,0.314 +2016-01-20 04:00:00,0.273,0.33899999999999997,0.314 +2016-01-20 05:00:00,0.273,0.33899999999999997,0.314 +2016-01-20 06:00:00,0.273,0.33799999999999997,0.314 +2016-01-20 07:00:00,0.273,0.33799999999999997,0.313 +2016-01-20 08:00:00,0.272,0.337,0.313 +2016-01-20 09:00:00,0.272,0.336,0.313 +2016-01-20 10:00:00,0.272,0.336,0.313 +2016-01-20 11:00:00,0.272,0.335,0.313 +2016-01-20 12:00:00,0.272,0.33399999999999996,0.313 +2016-01-20 13:00:00,0.272,0.332,0.313 +2016-01-20 14:00:00,0.272,0.332,0.313 +2016-01-20 15:00:00,0.272,0.332,0.313 +2016-01-20 16:00:00,0.272,0.332,0.313 +2016-01-20 17:00:00,0.272,0.331,0.313 +2016-01-20 18:00:00,0.272,0.331,0.313 +2016-01-20 19:00:00,0.272,0.331,0.313 +2016-01-20 20:00:00,0.272,0.331,0.312 +2016-01-20 21:00:00,0.272,0.331,0.312 +2016-01-20 22:00:00,0.272,0.331,0.312 +2016-01-20 23:00:00,0.272,0.331,0.312 +2016-01-21 00:00:00,0.272,0.331,0.312 +2016-01-21 01:00:00,0.272,0.331,0.312 +2016-01-21 02:00:00,0.272,0.331,0.312 +2016-01-21 03:00:00,0.272,0.331,0.312 +2016-01-21 04:00:00,0.272,0.331,0.312 +2016-01-21 05:00:00,0.272,0.331,0.312 +2016-01-21 06:00:00,0.272,0.331,0.311 +2016-01-21 07:00:00,0.273,0.331,0.311 +2016-01-21 08:00:00,0.273,0.331,0.311 +2016-01-21 09:00:00,0.273,0.33,0.311 +2016-01-21 10:00:00,0.272,0.33,0.311 +2016-01-21 11:00:00,0.272,0.33,0.311 +2016-01-21 12:00:00,0.272,0.32899999999999996,0.311 +2016-01-21 13:00:00,0.272,0.32899999999999996,0.312 +2016-01-21 14:00:00,0.272,0.32899999999999996,0.312 +2016-01-21 15:00:00,0.273,0.32899999999999996,0.312 +2016-01-21 16:00:00,0.273,0.32899999999999996,0.312 +2016-01-21 17:00:00,0.273,0.32899999999999996,0.311 +2016-01-21 18:00:00,0.273,0.32899999999999996,0.311 +2016-01-21 19:00:00,0.273,0.32899999999999996,0.311 +2016-01-21 20:00:00,0.273,0.32899999999999996,0.311 +2016-01-21 21:00:00,0.273,0.32899999999999996,0.311 +2016-01-21 22:00:00,0.273,0.32899999999999996,0.311 +2016-01-21 23:00:00,0.273,0.32899999999999996,0.311 +2016-01-22 00:00:00,0.273,0.33,0.311 +2016-01-22 01:00:00,0.273,0.331,0.311 +2016-01-22 02:00:00,0.273,0.331,0.311 +2016-01-22 03:00:00,0.273,0.33,0.311 +2016-01-22 04:00:00,0.273,0.33,0.311 +2016-01-22 05:00:00,0.273,0.32899999999999996,0.311 +2016-01-22 06:00:00,0.273,0.32899999999999996,0.311 +2016-01-22 07:00:00,0.273,0.32899999999999996,0.311 +2016-01-22 08:00:00,0.273,0.327,0.311 +2016-01-22 09:00:00,0.273,0.326,0.311 +2016-01-22 10:00:00,0.273,0.322,0.311 +2016-01-22 11:00:00,0.273,0.32299999999999995,0.311 +2016-01-22 12:00:00,0.273,0.324,0.311 +2016-01-22 13:00:00,0.272,0.326,0.311 +2016-01-22 14:00:00,0.273,0.326,0.311 +2016-01-22 15:00:00,0.272,0.326,0.311 +2016-01-22 16:00:00,0.273,0.327,0.311 +2016-01-22 17:00:00,0.272,0.32799999999999996,0.31 +2016-01-22 18:00:00,0.272,0.32899999999999996,0.31 +2016-01-22 19:00:00,0.272,0.33,0.31 +2016-01-22 20:00:00,0.272,0.331,0.31 +2016-01-22 21:00:00,0.272,0.331,0.31 +2016-01-22 22:00:00,0.272,0.331,0.31 +2016-01-22 23:00:00,0.272,0.332,0.31 +2016-01-23 00:00:00,0.271,0.332,0.311 +2016-01-23 01:00:00,0.271,0.332,0.311 +2016-01-23 02:00:00,0.271,0.332,0.311 +2016-01-23 03:00:00,0.271,0.332,0.311 +2016-01-23 04:00:00,0.271,0.332,0.311 +2016-01-23 05:00:00,0.271,0.332,0.311 +2016-01-23 06:00:00,0.271,0.331,0.311 +2016-01-23 07:00:00,0.27,0.331,0.312 +2016-01-23 08:00:00,0.264,0.331,0.314 +2016-01-23 09:00:00,0.262,0.331,0.314 +2016-01-23 10:00:00,0.262,0.33,0.314 +2016-01-23 11:00:00,0.262,0.32899999999999996,0.314 +2016-01-23 12:00:00,0.262,0.331,0.314 +2016-01-23 13:00:00,0.263,0.331,0.314 +2016-01-23 14:00:00,0.267,0.326,0.314 +2016-01-23 15:00:00,0.278,0.326,0.314 +2016-01-23 16:00:00,0.285,0.326,0.32799999999999996 +2016-01-23 17:00:00,0.287,0.326,0.33399999999999996 +2016-01-23 18:00:00,0.287,0.326,0.32899999999999996 +2016-01-23 19:00:00,0.287,0.32799999999999996,0.326 +2016-01-23 20:00:00,0.28600000000000003,0.325,0.324 +2016-01-23 21:00:00,0.285,0.32299999999999995,0.322 +2016-01-23 22:00:00,0.285,0.322,0.322 +2016-01-23 23:00:00,0.285,0.322,0.321 +2016-01-24 00:00:00,0.285,0.322,0.321 +2016-01-24 01:00:00,0.285,0.322,0.321 +2016-01-24 02:00:00,0.285,0.322,0.321 +2016-01-24 03:00:00,0.285,0.322,0.321 +2016-01-24 04:00:00,0.285,0.322,0.321 +2016-01-24 05:00:00,0.285,0.322,0.321 +2016-01-24 06:00:00,0.285,0.322,0.321 +2016-01-24 07:00:00,0.29100000000000004,0.322,0.32 +2016-01-24 08:00:00,0.293,0.32299999999999995,0.319 +2016-01-24 09:00:00,0.292,0.32299999999999995,0.319 +2016-01-24 10:00:00,0.28600000000000003,0.32299999999999995,0.32 +2016-01-24 11:00:00,0.284,0.32299999999999995,0.319 +2016-01-24 12:00:00,0.28600000000000003,0.322,0.318 +2016-01-24 13:00:00,0.29100000000000004,0.322,0.318 +2016-01-24 14:00:00,0.294,0.322,0.32299999999999995 +2016-01-24 15:00:00,0.295,0.322,0.327 +2016-01-24 16:00:00,0.295,0.322,0.327 +2016-01-24 17:00:00,0.295,0.322,0.326 +2016-01-24 18:00:00,0.294,0.322,0.324 +2016-01-24 19:00:00,0.292,0.315,0.32299999999999995 +2016-01-24 20:00:00,0.287,0.311,0.32299999999999995 +2016-01-24 21:00:00,0.287,0.326,0.32299999999999995 +2016-01-24 22:00:00,0.28600000000000003,0.33899999999999997,0.324 +2016-01-24 23:00:00,0.285,0.34,0.32299999999999995 +2016-01-25 00:00:00,0.284,0.344,0.322 +2016-01-25 01:00:00,0.284,0.337,0.322 +2016-01-25 02:00:00,0.28300000000000003,0.341,0.321 +2016-01-25 03:00:00,0.282,0.34299999999999997,0.321 +2016-01-25 04:00:00,0.28300000000000003,0.344,0.321 +2016-01-25 05:00:00,0.28300000000000003,0.348,0.321 +2016-01-25 06:00:00,0.28300000000000003,0.34700000000000003,0.321 +2016-01-25 07:00:00,0.282,0.344,0.32 +2016-01-25 08:00:00,0.282,0.342,0.32 +2016-01-25 09:00:00,0.282,0.341,0.32 +2016-01-25 10:00:00,0.281,0.341,0.319 +2016-01-25 11:00:00,0.282,0.342,0.319 +2016-01-25 12:00:00,0.282,0.34,0.319 +2016-01-25 13:00:00,0.28300000000000003,0.33899999999999997,0.319 +2016-01-25 14:00:00,0.284,0.33899999999999997,0.318 +2016-01-25 15:00:00,0.285,0.33899999999999997,0.318 +2016-01-25 16:00:00,0.28600000000000003,0.34,0.318 +2016-01-25 17:00:00,0.287,0.341,0.318 +2016-01-25 18:00:00,0.287,0.341,0.317 +2016-01-25 19:00:00,0.287,0.34,0.317 +2016-01-25 20:00:00,0.28800000000000003,0.34,0.316 +2016-01-25 21:00:00,0.28800000000000003,0.33899999999999997,0.316 +2016-01-25 22:00:00,0.28800000000000003,0.33899999999999997,0.316 +2016-01-25 23:00:00,0.287,0.33799999999999997,0.316 +2016-01-26 00:00:00,0.287,0.33799999999999997,0.316 +2016-01-26 01:00:00,0.287,0.337,0.316 +2016-01-26 02:00:00,0.28600000000000003,0.33399999999999996,0.316 +2016-01-26 03:00:00,0.28600000000000003,0.33299999999999996,0.316 +2016-01-26 04:00:00,0.28600000000000003,0.33299999999999996,0.316 +2016-01-26 05:00:00,0.28600000000000003,0.335,0.316 +2016-01-26 06:00:00,0.28600000000000003,0.337,0.316 +2016-01-26 07:00:00,0.285,0.337,0.315 +2016-01-26 08:00:00,0.285,0.337,0.315 +2016-01-26 09:00:00,0.28300000000000003,0.33799999999999997,0.316 +2016-01-26 10:00:00,0.28,0.337,0.316 +2016-01-26 11:00:00,0.27899999999999997,0.33799999999999997,0.316 +2016-01-26 12:00:00,0.28,0.33799999999999997,0.316 +2016-01-26 13:00:00,0.28,0.33799999999999997,0.316 +2016-01-26 14:00:00,0.28,0.33799999999999997,0.316 +2016-01-26 15:00:00,0.281,0.341,0.316 +2016-01-26 16:00:00,0.282,0.34299999999999997,0.316 +2016-01-26 17:00:00,0.282,0.344,0.315 +2016-01-26 18:00:00,0.28300000000000003,0.344,0.315 +2016-01-26 19:00:00,0.28300000000000003,0.344,0.315 +2016-01-26 20:00:00,0.282,0.344,0.315 +2016-01-26 21:00:00,0.28300000000000003,0.344,0.315 +2016-01-26 22:00:00,0.282,0.344,0.315 +2016-01-26 23:00:00,0.282,0.344,0.315 +2016-01-27 00:00:00,0.282,0.34299999999999997,0.315 +2016-01-27 01:00:00,0.282,0.34299999999999997,0.315 +2016-01-27 02:00:00,0.282,0.34299999999999997,0.315 +2016-01-27 03:00:00,0.282,0.34299999999999997,0.315 +2016-01-27 04:00:00,0.282,0.341,0.314 +2016-01-27 05:00:00,0.282,0.341,0.314 +2016-01-27 06:00:00,0.28300000000000003,0.34,0.314 +2016-01-27 07:00:00,0.28300000000000003,0.33899999999999997,0.314 +2016-01-27 08:00:00,0.28300000000000003,0.33899999999999997,0.314 +2016-01-27 09:00:00,0.282,0.33799999999999997,0.313 +2016-01-27 10:00:00,0.282,0.33799999999999997,0.313 +2016-01-27 11:00:00,0.282,0.33799999999999997,0.313 +2016-01-27 12:00:00,0.282,0.33799999999999997,0.313 +2016-01-27 13:00:00,0.282,0.337,0.314 +2016-01-27 14:00:00,0.282,0.336,0.315 +2016-01-27 15:00:00,0.282,0.336,0.315 +2016-01-27 16:00:00,0.282,0.336,0.314 +2016-01-27 17:00:00,0.28300000000000003,0.336,0.313 +2016-01-27 18:00:00,0.28300000000000003,0.336,0.313 +2016-01-27 19:00:00,0.28300000000000003,0.336,0.313 +2016-01-27 20:00:00,0.28300000000000003,0.33399999999999996,0.313 +2016-01-27 21:00:00,0.28300000000000003,0.322,0.313 +2016-01-27 22:00:00,0.282,0.33,0.313 +2016-01-27 23:00:00,0.282,0.342,0.313 +2016-01-28 00:00:00,0.282,0.345,0.313 +2016-01-28 01:00:00,0.282,0.34600000000000003,0.313 +2016-01-28 02:00:00,0.282,0.34700000000000003,0.313 +2016-01-28 03:00:00,0.282,0.34700000000000003,0.313 +2016-01-28 04:00:00,0.282,0.34600000000000003,0.313 +2016-01-28 05:00:00,0.281,0.34600000000000003,0.314 +2016-01-28 06:00:00,0.27699999999999997,0.345,0.316 +2016-01-28 07:00:00,0.273,0.344,0.316 +2016-01-28 08:00:00,0.273,0.342,0.316 +2016-01-28 09:00:00,0.273,0.341,0.316 +2016-01-28 10:00:00,0.27399999999999997,0.341,0.316 +2016-01-28 11:00:00,0.275,0.341,0.315 +2016-01-28 12:00:00,0.27699999999999997,0.341,0.315 +2016-01-28 13:00:00,0.28300000000000003,0.34,0.314 +2016-01-28 14:00:00,0.28600000000000003,0.33899999999999997,0.313 +2016-01-28 15:00:00,0.287,0.33899999999999997,0.313 +2016-01-28 16:00:00,0.287,0.332,0.313 +2016-01-28 17:00:00,0.287,0.336,0.313 +2016-01-28 18:00:00,0.287,0.33799999999999997,0.313 +2016-01-28 19:00:00,0.287,0.33899999999999997,0.313 +2016-01-28 20:00:00,0.287,0.33899999999999997,0.313 +2016-01-28 21:00:00,0.287,0.33799999999999997,0.313 +2016-01-28 22:00:00,0.287,0.33299999999999996,0.313 +2016-01-28 23:00:00,0.28600000000000003,0.335,0.313 +2016-01-29 00:00:00,0.28600000000000003,0.335,0.312 +2016-01-29 01:00:00,0.28600000000000003,0.33399999999999996,0.312 +2016-01-29 02:00:00,0.28600000000000003,0.336,0.312 +2016-01-29 03:00:00,0.285,0.336,0.312 +2016-01-29 04:00:00,0.285,0.335,0.312 +2016-01-29 05:00:00,0.284,0.33399999999999996,0.312 +2016-01-29 06:00:00,0.284,0.33299999999999996,0.312 +2016-01-29 07:00:00,0.284,0.332,0.312 +2016-01-29 08:00:00,0.284,0.33,0.312 +2016-01-29 09:00:00,0.284,0.33,0.312 +2016-01-29 10:00:00,0.282,0.327,0.313 +2016-01-29 11:00:00,0.27899999999999997,0.331,0.313 +2016-01-29 12:00:00,0.27899999999999997,0.33299999999999996,0.313 +2016-01-29 13:00:00,0.281,0.33399999999999996,0.313 +2016-01-29 14:00:00,0.282,0.336,0.312 +2016-01-29 15:00:00,0.282,0.332,0.312 +2016-01-29 16:00:00,0.28300000000000003,0.327,0.312 +2016-01-29 17:00:00,0.28300000000000003,0.33,0.312 +2016-01-29 18:00:00,0.28300000000000003,0.337,0.312 +2016-01-29 19:00:00,0.28300000000000003,0.34,0.312 +2016-01-29 20:00:00,0.28300000000000003,0.33899999999999997,0.312 +2016-01-29 21:00:00,0.28300000000000003,0.341,0.312 +2016-01-29 22:00:00,0.282,0.342,0.312 +2016-01-29 23:00:00,0.282,0.341,0.312 +2016-01-30 00:00:00,0.282,0.341,0.312 +2016-01-30 01:00:00,0.282,0.341,0.312 +2016-01-30 02:00:00,0.282,0.341,0.312 +2016-01-30 03:00:00,0.282,0.341,0.312 +2016-01-30 04:00:00,0.282,0.342,0.312 +2016-01-30 05:00:00,0.282,0.34,0.312 +2016-01-30 06:00:00,0.282,0.33799999999999997,0.311 +2016-01-30 07:00:00,0.282,0.33799999999999997,0.311 +2016-01-30 08:00:00,0.282,0.33799999999999997,0.311 +2016-01-30 09:00:00,0.282,0.337,0.311 +2016-01-30 10:00:00,0.282,0.336,0.311 +2016-01-30 11:00:00,0.282,0.336,0.311 +2016-01-30 12:00:00,0.282,0.335,0.311 +2016-01-30 13:00:00,0.282,0.33399999999999996,0.311 +2016-01-30 14:00:00,0.282,0.33399999999999996,0.312 +2016-01-30 15:00:00,0.27899999999999997,0.33399999999999996,0.313 +2016-01-30 16:00:00,0.272,0.33399999999999996,0.316 +2016-01-30 17:00:00,0.27699999999999997,0.33399999999999996,0.316 +2016-01-30 18:00:00,0.29,0.33399999999999996,0.317 +2016-01-30 19:00:00,0.28800000000000003,0.33399999999999996,0.321 +2016-01-30 20:00:00,0.287,0.33399999999999996,0.32799999999999996 +2016-01-30 21:00:00,0.284,0.33399999999999996,0.32899999999999996 +2016-01-30 22:00:00,0.29,0.33399999999999996,0.32899999999999996 +2016-01-30 23:00:00,0.29100000000000004,0.33399999999999996,0.335 +2016-01-31 00:00:00,0.287,0.33399999999999996,0.33399999999999996 +2016-01-31 01:00:00,0.284,0.33399999999999996,0.332 +2016-01-31 02:00:00,0.28,0.33299999999999996,0.32899999999999996 +2016-01-31 03:00:00,0.28,0.332,0.32799999999999996 +2016-01-31 04:00:00,0.27899999999999997,0.332,0.32799999999999996 +2016-01-31 05:00:00,0.27899999999999997,0.332,0.327 +2016-01-31 06:00:00,0.27899999999999997,0.332,0.326 +2016-01-31 07:00:00,0.278,0.332,0.326 +2016-01-31 08:00:00,0.27699999999999997,0.332,0.326 +2016-01-31 09:00:00,0.27699999999999997,0.332,0.325 +2016-01-31 10:00:00,0.27699999999999997,0.332,0.325 +2016-01-31 11:00:00,0.27699999999999997,0.331,0.325 +2016-01-31 12:00:00,0.27699999999999997,0.331,0.324 +2016-01-31 13:00:00,0.27899999999999997,0.331,0.324 +2016-01-31 14:00:00,0.28300000000000003,0.33,0.32299999999999995 +2016-01-31 15:00:00,0.28600000000000003,0.33,0.322 +2016-01-31 16:00:00,0.28600000000000003,0.33,0.322 +2016-01-31 17:00:00,0.28600000000000003,0.33,0.322 +2016-01-31 18:00:00,0.284,0.331,0.322 +2016-01-31 19:00:00,0.28300000000000003,0.331,0.322 +2016-01-31 20:00:00,0.282,0.331,0.322 +2016-01-31 21:00:00,0.28,0.33,0.32299999999999995 +2016-01-31 22:00:00,0.278,0.33,0.32299999999999995 +2016-01-31 23:00:00,0.27699999999999997,0.33,0.324 +2016-02-01 00:00:00,0.278,0.33,0.324 +2016-02-01 01:00:00,0.27899999999999997,0.32899999999999996,0.324 +2016-02-01 02:00:00,0.27899999999999997,0.32899999999999996,0.32299999999999995 +2016-02-01 03:00:00,0.28,0.32899999999999996,0.32299999999999995 +2016-02-01 04:00:00,0.282,0.32899999999999996,0.324 +2016-02-01 05:00:00,0.28300000000000003,0.32899999999999996,0.324 +2016-02-01 06:00:00,0.28300000000000003,0.32799999999999996,0.324 +2016-02-01 07:00:00,0.284,0.327,0.325 +2016-02-01 08:00:00,0.284,0.327,0.325 +2016-02-01 09:00:00,0.284,0.327,0.325 +2016-02-01 10:00:00,0.284,0.327,0.326 +2016-02-01 11:00:00,0.28300000000000003,0.327,0.326 +2016-02-01 12:00:00,0.28300000000000003,0.327,0.326 +2016-02-01 13:00:00,0.281,0.327,0.325 +2016-02-01 14:00:00,0.281,0.326,0.325 +2016-02-01 15:00:00,0.28300000000000003,0.326,0.325 +2016-02-01 16:00:00,0.287,0.32299999999999995,0.324 +2016-02-01 17:00:00,0.289,0.321,0.32299999999999995 +2016-02-01 18:00:00,0.289,0.322,0.32299999999999995 +2016-02-01 19:00:00,0.29,0.32299999999999995,0.322 +2016-02-01 20:00:00,0.289,0.324,0.322 +2016-02-01 21:00:00,0.289,0.324,0.322 +2016-02-01 22:00:00,0.289,0.326,0.322 +2016-02-01 23:00:00,0.28800000000000003,0.326,0.322 +2016-02-02 00:00:00,0.28800000000000003,0.326,0.321 +2016-02-02 01:00:00,0.287,0.326,0.321 +2016-02-02 02:00:00,0.287,0.326,0.321 +2016-02-02 03:00:00,0.287,0.326,0.321 +2016-02-02 04:00:00,0.287,0.326,0.321 +2016-02-02 05:00:00,0.28600000000000003,0.326,0.321 +2016-02-02 06:00:00,0.28600000000000003,0.326,0.321 +2016-02-02 07:00:00,0.28600000000000003,0.326,0.321 +2016-02-02 08:00:00,0.285,0.326,0.321 +2016-02-02 09:00:00,0.285,0.326,0.32 +2016-02-02 10:00:00,0.285,0.326,0.32 +2016-02-02 11:00:00,0.285,0.326,0.32 +2016-02-02 12:00:00,0.284,0.326,0.32 +2016-02-02 13:00:00,0.284,0.326,0.32 +2016-02-02 14:00:00,0.284,0.325,0.32 +2016-02-02 15:00:00,0.284,0.319,0.32 +2016-02-02 16:00:00,0.284,0.313,0.319 +2016-02-02 17:00:00,0.28300000000000003,0.33399999999999996,0.32 +2016-02-02 18:00:00,0.27899999999999997,0.35200000000000004,0.324 +2016-02-02 19:00:00,0.29100000000000004,0.354,0.325 +2016-02-02 20:00:00,0.297,0.355,0.33899999999999997 +2016-02-02 21:00:00,0.29100000000000004,0.355,0.337 +2016-02-02 22:00:00,0.28600000000000003,0.353,0.335 +2016-02-02 23:00:00,0.28300000000000003,0.35100000000000003,0.33399999999999996 +2016-02-03 00:00:00,0.281,0.35100000000000003,0.33299999999999996 +2016-02-03 01:00:00,0.28,0.349,0.33299999999999996 +2016-02-03 02:00:00,0.28,0.348,0.332 +2016-02-03 03:00:00,0.28,0.34600000000000003,0.332 +2016-02-03 04:00:00,0.28,0.345,0.332 +2016-02-03 05:00:00,0.27899999999999997,0.344,0.332 +2016-02-03 06:00:00,0.27899999999999997,0.344,0.332 +2016-02-03 07:00:00,0.27899999999999997,0.34299999999999997,0.331 +2016-02-03 08:00:00,0.27899999999999997,0.34299999999999997,0.331 +2016-02-03 09:00:00,0.27899999999999997,0.341,0.331 +2016-02-03 10:00:00,0.27899999999999997,0.341,0.33 +2016-02-03 11:00:00,0.28,0.341,0.33 +2016-02-03 12:00:00,0.28300000000000003,0.34,0.32899999999999996 +2016-02-03 13:00:00,0.28,0.34,0.33 +2016-02-03 14:00:00,0.27699999999999997,0.33899999999999997,0.33 +2016-02-03 15:00:00,0.276,0.33399999999999996,0.33 +2016-02-03 16:00:00,0.278,0.332,0.32899999999999996 +2016-02-03 17:00:00,0.281,0.336,0.32799999999999996 +2016-02-03 18:00:00,0.282,0.33799999999999997,0.32799999999999996 +2016-02-03 19:00:00,0.27699999999999997,0.332,0.32899999999999996 +2016-02-03 20:00:00,0.276,0.344,0.32899999999999996 +2016-02-03 21:00:00,0.276,0.349,0.32799999999999996 +2016-02-03 22:00:00,0.276,0.35100000000000003,0.32799999999999996 +2016-02-03 23:00:00,0.275,0.35200000000000004,0.32799999999999996 +2016-02-04 00:00:00,0.275,0.349,0.32799999999999996 +2016-02-04 01:00:00,0.27399999999999997,0.349,0.32799999999999996 +2016-02-04 02:00:00,0.27399999999999997,0.348,0.32799999999999996 +2016-02-04 03:00:00,0.275,0.34700000000000003,0.32799999999999996 +2016-02-04 04:00:00,0.27399999999999997,0.344,0.32799999999999996 +2016-02-04 05:00:00,0.275,0.345,0.32799999999999996 +2016-02-04 06:00:00,0.275,0.344,0.32799999999999996 +2016-02-04 07:00:00,0.276,0.34299999999999997,0.32799999999999996 +2016-02-04 08:00:00,0.275,0.344,0.32799999999999996 +2016-02-04 09:00:00,0.275,0.344,0.32799999999999996 +2016-02-04 10:00:00,0.275,0.34299999999999997,0.32799999999999996 +2016-02-04 11:00:00,0.275,0.341,0.32799999999999996 +2016-02-04 12:00:00,0.275,0.34,0.32799999999999996 +2016-02-04 13:00:00,0.278,0.337,0.32799999999999996 +2016-02-04 14:00:00,0.284,0.33399999999999996,0.32899999999999996 +2016-02-04 15:00:00,0.29100000000000004,0.337,0.33299999999999996 +2016-02-04 16:00:00,0.29,0.336,0.33799999999999997 +2016-02-04 17:00:00,0.289,0.332,0.337 +2016-02-04 18:00:00,0.287,0.33299999999999996,0.337 +2016-02-04 19:00:00,0.285,0.336,0.336 +2016-02-04 20:00:00,0.28300000000000003,0.33799999999999997,0.336 +2016-02-04 21:00:00,0.282,0.33899999999999997,0.336 +2016-02-04 22:00:00,0.28,0.336,0.336 +2016-02-04 23:00:00,0.27899999999999997,0.336,0.336 +2016-02-05 00:00:00,0.27699999999999997,0.33799999999999997,0.336 +2016-02-05 01:00:00,0.276,0.341,0.336 +2016-02-05 02:00:00,0.275,0.341,0.336 +2016-02-05 03:00:00,0.275,0.341,0.336 +2016-02-05 04:00:00,0.275,0.341,0.336 +2016-02-05 05:00:00,0.275,0.341,0.335 +2016-02-05 06:00:00,0.27399999999999997,0.33799999999999997,0.335 +2016-02-05 07:00:00,0.27399999999999997,0.33799999999999997,0.335 +2016-02-05 08:00:00,0.273,0.33799999999999997,0.33399999999999996 +2016-02-05 09:00:00,0.273,0.33799999999999997,0.33399999999999996 +2016-02-05 10:00:00,0.273,0.336,0.33399999999999996 +2016-02-05 11:00:00,0.273,0.335,0.33299999999999996 +2016-02-05 12:00:00,0.273,0.33299999999999996,0.33299999999999996 +2016-02-05 13:00:00,0.273,0.33399999999999996,0.33299999999999996 +2016-02-05 14:00:00,0.27399999999999997,0.335,0.332 +2016-02-05 15:00:00,0.275,0.336,0.332 +2016-02-05 16:00:00,0.276,0.337,0.332 +2016-02-05 17:00:00,0.276,0.337,0.331 +2016-02-05 18:00:00,0.27699999999999997,0.33799999999999997,0.331 +2016-02-05 19:00:00,0.27699999999999997,0.33799999999999997,0.331 +2016-02-05 20:00:00,0.27699999999999997,0.33799999999999997,0.331 +2016-02-05 21:00:00,0.278,0.336,0.331 +2016-02-05 22:00:00,0.278,0.336,0.33 +2016-02-05 23:00:00,0.27899999999999997,0.336,0.33 +2016-02-06 00:00:00,0.27899999999999997,0.335,0.33 +2016-02-06 01:00:00,0.27899999999999997,0.33399999999999996,0.33 +2016-02-06 02:00:00,0.28,0.33399999999999996,0.33 +2016-02-06 03:00:00,0.28,0.33399999999999996,0.32899999999999996 +2016-02-06 04:00:00,0.281,0.33399999999999996,0.32899999999999996 +2016-02-06 05:00:00,0.281,0.33399999999999996,0.32899999999999996 +2016-02-06 06:00:00,0.281,0.332,0.32899999999999996 +2016-02-06 07:00:00,0.282,0.332,0.32799999999999996 +2016-02-06 08:00:00,0.28,0.332,0.32899999999999996 +2016-02-06 09:00:00,0.28,0.332,0.32799999999999996 +2016-02-06 10:00:00,0.27899999999999997,0.332,0.32799999999999996 +2016-02-06 11:00:00,0.27899999999999997,0.332,0.32799999999999996 +2016-02-06 12:00:00,0.28,0.332,0.32799999999999996 +2016-02-06 13:00:00,0.28,0.331,0.327 +2016-02-06 14:00:00,0.281,0.331,0.327 +2016-02-06 15:00:00,0.281,0.331,0.327 +2016-02-06 16:00:00,0.281,0.331,0.326 +2016-02-06 17:00:00,0.281,0.331,0.326 +2016-02-06 18:00:00,0.281,0.33,0.326 +2016-02-06 19:00:00,0.281,0.33,0.326 +2016-02-06 20:00:00,0.281,0.331,0.326 +2016-02-06 21:00:00,0.281,0.33,0.326 +2016-02-06 22:00:00,0.281,0.33,0.326 +2016-02-06 23:00:00,0.281,0.32899999999999996,0.326 +2016-02-07 00:00:00,0.281,0.32899999999999996,0.326 +2016-02-07 01:00:00,0.281,0.32899999999999996,0.326 +2016-02-07 02:00:00,0.281,0.32899999999999996,0.326 +2016-02-07 03:00:00,0.28,0.32899999999999996,0.326 +2016-02-07 04:00:00,0.28,0.32899999999999996,0.326 +2016-02-07 05:00:00,0.28,0.32899999999999996,0.326 +2016-02-07 06:00:00,0.28,0.327,0.326 +2016-02-07 07:00:00,0.28,0.327,0.326 +2016-02-07 08:00:00,0.28,0.327,0.325 +2016-02-07 09:00:00,0.28,0.327,0.325 +2016-02-07 10:00:00,0.28,0.327,0.325 +2016-02-07 11:00:00,0.28,0.326,0.325 +2016-02-07 12:00:00,0.28,0.326,0.325 +2016-02-07 13:00:00,0.276,0.326,0.327 +2016-02-07 14:00:00,0.26899999999999996,0.325,0.32799999999999996 +2016-02-07 15:00:00,0.27,0.324,0.32799999999999996 +2016-02-07 16:00:00,0.272,0.32299999999999995,0.327 +2016-02-07 17:00:00,0.27399999999999997,0.32299999999999995,0.327 +2016-02-07 18:00:00,0.27699999999999997,0.324,0.326 +2016-02-07 19:00:00,0.278,0.32299999999999995,0.326 +2016-02-07 20:00:00,0.28,0.321,0.325 +2016-02-07 21:00:00,0.28,0.319,0.325 +2016-02-07 22:00:00,0.281,0.318,0.325 +2016-02-07 23:00:00,0.281,0.32299999999999995,0.325 +2016-02-08 00:00:00,0.281,0.326,0.324 +2016-02-08 01:00:00,0.281,0.327,0.324 +2016-02-08 02:00:00,0.281,0.327,0.324 +2016-02-08 03:00:00,0.281,0.32799999999999996,0.324 +2016-02-08 04:00:00,0.281,0.332,0.324 +2016-02-08 05:00:00,0.281,0.345,0.324 +2016-02-08 06:00:00,0.281,0.344,0.324 +2016-02-08 07:00:00,0.281,0.344,0.324 +2016-02-08 08:00:00,0.281,0.34299999999999997,0.324 +2016-02-08 09:00:00,0.28,0.341,0.324 +2016-02-08 10:00:00,0.28,0.342,0.324 +2016-02-08 11:00:00,0.27899999999999997,0.34,0.325 +2016-02-08 12:00:00,0.27,0.34,0.327 +2016-02-08 13:00:00,0.272,0.34299999999999997,0.327 +2016-02-08 14:00:00,0.295,0.344,0.33299999999999996 +2016-02-08 15:00:00,0.3,0.344,0.348 +2016-02-08 16:00:00,0.29100000000000004,0.344,0.35100000000000003 +2016-02-08 17:00:00,0.285,0.33799999999999997,0.359 +2016-02-08 18:00:00,0.287,0.33799999999999997,0.359 +2016-02-08 19:00:00,0.29,0.33799999999999997,0.359 +2016-02-08 20:00:00,0.292,0.33799999999999997,0.359 +2016-02-08 21:00:00,0.293,0.34,0.359 +2016-02-08 22:00:00,0.293,0.341,0.359 +2016-02-08 23:00:00,0.293,0.341,0.359 +2016-02-09 00:00:00,0.292,0.34,0.36 +2016-02-09 01:00:00,0.292,0.33899999999999997,0.36 +2016-02-09 02:00:00,0.29100000000000004,0.33799999999999997,0.36 +2016-02-09 03:00:00,0.29100000000000004,0.33799999999999997,0.36 +2016-02-09 04:00:00,0.29,0.337,0.36 +2016-02-09 05:00:00,0.29,0.33299999999999996,0.36 +2016-02-09 06:00:00,0.289,0.332,0.36 +2016-02-09 07:00:00,0.289,0.33299999999999996,0.35600000000000004 +2016-02-09 08:00:00,0.28800000000000003,0.33399999999999996,0.354 +2016-02-09 09:00:00,0.287,0.335,0.35200000000000004 +2016-02-09 10:00:00,0.287,0.336,0.35100000000000003 +2016-02-09 11:00:00,0.287,0.336,0.35 +2016-02-09 12:00:00,0.27899999999999997,0.336,0.35100000000000003 +2016-02-09 13:00:00,0.276,0.335,0.35100000000000003 +2016-02-09 14:00:00,0.278,0.33399999999999996,0.35100000000000003 +2016-02-09 15:00:00,0.27899999999999997,0.33399999999999996,0.35100000000000003 +2016-02-09 16:00:00,0.28800000000000003,0.335,0.353 +2016-02-09 17:00:00,0.295,0.336,0.358 +2016-02-09 18:00:00,0.29600000000000004,0.336,0.358 +2016-02-09 19:00:00,0.289,0.336,0.361 +2016-02-09 20:00:00,0.284,0.335,0.365 +2016-02-09 21:00:00,0.284,0.33399999999999996,0.366 +2016-02-09 22:00:00,0.28300000000000003,0.33299999999999996,0.366 +2016-02-09 23:00:00,0.28300000000000003,0.332,0.366 +2016-02-10 00:00:00,0.28300000000000003,0.332,0.366 +2016-02-10 01:00:00,0.282,0.332,0.36700000000000005 +2016-02-10 02:00:00,0.281,0.332,0.36700000000000005 +2016-02-10 03:00:00,0.281,0.332,0.36700000000000005 +2016-02-10 04:00:00,0.281,0.332,0.368 +2016-02-10 05:00:00,0.287,0.332,0.368 +2016-02-10 06:00:00,0.29,0.331,0.368 +2016-02-10 07:00:00,0.287,0.331,0.368 +2016-02-10 08:00:00,0.28300000000000003,0.331,0.368 +2016-02-10 09:00:00,0.282,0.331,0.368 +2016-02-10 10:00:00,0.27899999999999997,0.331,0.368 +2016-02-10 11:00:00,0.278,0.331,0.368 +2016-02-10 12:00:00,0.278,0.32899999999999996,0.369 +2016-02-10 13:00:00,0.278,0.32899999999999996,0.369 +2016-02-10 14:00:00,0.27899999999999997,0.32899999999999996,0.369 +2016-02-10 15:00:00,0.27899999999999997,0.327,0.37 +2016-02-10 16:00:00,0.28,0.327,0.37 +2016-02-10 17:00:00,0.281,0.327,0.37 +2016-02-10 18:00:00,0.281,0.327,0.37 +2016-02-10 19:00:00,0.282,0.327,0.37 +2016-02-10 20:00:00,0.282,0.327,0.37 +2016-02-10 21:00:00,0.282,0.327,0.37 +2016-02-10 22:00:00,0.281,0.327,0.371 +2016-02-10 23:00:00,0.28,0.326,0.371 +2016-02-11 00:00:00,0.28,0.326,0.371 +2016-02-11 01:00:00,0.27899999999999997,0.326,0.371 +2016-02-11 02:00:00,0.27899999999999997,0.326,0.371 +2016-02-11 03:00:00,0.27899999999999997,0.326,0.371 +2016-02-11 04:00:00,0.278,0.326,0.371 +2016-02-11 05:00:00,0.27699999999999997,0.326,0.37200000000000005 +2016-02-11 06:00:00,0.27699999999999997,0.324,0.37200000000000005 +2016-02-11 07:00:00,0.276,0.324,0.37200000000000005 +2016-02-11 08:00:00,0.276,0.324,0.37200000000000005 +2016-02-11 09:00:00,0.276,0.324,0.37200000000000005 +2016-02-11 10:00:00,0.275,0.324,0.37200000000000005 +2016-02-11 11:00:00,0.276,0.324,0.37200000000000005 +2016-02-11 12:00:00,0.278,0.324,0.37200000000000005 +2016-02-11 13:00:00,0.281,0.324,0.37200000000000005 +2016-02-11 14:00:00,0.28300000000000003,0.32299999999999995,0.37200000000000005 +2016-02-11 15:00:00,0.285,0.32299999999999995,0.37200000000000005 +2016-02-11 16:00:00,0.28600000000000003,0.32299999999999995,0.37200000000000005 +2016-02-11 17:00:00,0.28600000000000003,0.32299999999999995,0.371 +2016-02-11 18:00:00,0.285,0.322,0.37200000000000005 +2016-02-11 19:00:00,0.28300000000000003,0.322,0.37200000000000005 +2016-02-11 20:00:00,0.28300000000000003,0.322,0.37200000000000005 +2016-02-11 21:00:00,0.28300000000000003,0.322,0.37200000000000005 +2016-02-11 22:00:00,0.28300000000000003,0.322,0.37200000000000005 +2016-02-11 23:00:00,0.28300000000000003,0.322,0.369 +2016-02-12 00:00:00,0.28300000000000003,0.322,0.366 +2016-02-12 01:00:00,0.28300000000000003,0.322,0.366 +2016-02-12 02:00:00,0.28300000000000003,0.322,0.366 +2016-02-12 03:00:00,0.28300000000000003,0.322,0.366 +2016-02-12 04:00:00,0.282,0.322,0.364 +2016-02-12 05:00:00,0.28300000000000003,0.322,0.361 +2016-02-12 06:00:00,0.28300000000000003,0.322,0.36 +2016-02-12 07:00:00,0.28300000000000003,0.322,0.358 +2016-02-12 08:00:00,0.28300000000000003,0.321,0.35700000000000004 +2016-02-12 09:00:00,0.28300000000000003,0.321,0.35600000000000004 +2016-02-12 10:00:00,0.28300000000000003,0.321,0.35600000000000004 +2016-02-12 11:00:00,0.281,0.321,0.35600000000000004 +2016-02-12 12:00:00,0.281,0.321,0.355 +2016-02-12 13:00:00,0.281,0.321,0.355 +2016-02-12 14:00:00,0.282,0.321,0.354 +2016-02-12 15:00:00,0.282,0.321,0.354 +2016-02-12 16:00:00,0.282,0.321,0.353 +2016-02-12 17:00:00,0.28300000000000003,0.321,0.353 +2016-02-12 18:00:00,0.28300000000000003,0.321,0.353 +2016-02-12 19:00:00,0.282,0.321,0.353 +2016-02-12 20:00:00,0.282,0.321,0.353 +2016-02-12 21:00:00,0.282,0.321,0.35200000000000004 +2016-02-12 22:00:00,0.282,0.321,0.35200000000000004 +2016-02-12 23:00:00,0.282,0.321,0.35200000000000004 +2016-02-13 00:00:00,0.282,0.321,0.35200000000000004 +2016-02-13 01:00:00,0.282,0.321,0.35200000000000004 +2016-02-13 02:00:00,0.282,0.321,0.35200000000000004 +2016-02-13 03:00:00,0.282,0.321,0.35200000000000004 +2016-02-13 04:00:00,0.282,0.321,0.35100000000000003 +2016-02-13 05:00:00,0.281,0.321,0.35100000000000003 +2016-02-13 06:00:00,0.281,0.321,0.35100000000000003 +2016-02-13 07:00:00,0.281,0.32,0.35100000000000003 +2016-02-13 08:00:00,0.281,0.32,0.35100000000000003 +2016-02-13 09:00:00,0.28,0.32,0.35 +2016-02-13 10:00:00,0.28,0.319,0.35100000000000003 +2016-02-13 11:00:00,0.28,0.319,0.35100000000000003 +2016-02-13 12:00:00,0.27899999999999997,0.319,0.35100000000000003 +2016-02-13 13:00:00,0.27899999999999997,0.319,0.35100000000000003 +2016-02-13 14:00:00,0.28,0.319,0.35100000000000003 +2016-02-13 15:00:00,0.27899999999999997,0.319,0.35 +2016-02-13 16:00:00,0.27899999999999997,0.319,0.35100000000000003 +2016-02-13 17:00:00,0.275,0.319,0.35100000000000003 +2016-02-13 18:00:00,0.271,0.319,0.35100000000000003 +2016-02-13 19:00:00,0.27,0.319,0.35100000000000003 +2016-02-13 20:00:00,0.273,0.319,0.35100000000000003 +2016-02-13 21:00:00,0.275,0.319,0.35100000000000003 +2016-02-13 22:00:00,0.27699999999999997,0.319,0.35100000000000003 +2016-02-13 23:00:00,0.278,0.319,0.35100000000000003 +2016-02-14 00:00:00,0.28,0.319,0.35100000000000003 +2016-02-14 01:00:00,0.28600000000000003,0.319,0.35100000000000003 +2016-02-14 02:00:00,0.28800000000000003,0.319,0.35100000000000003 +2016-02-14 03:00:00,0.28600000000000003,0.319,0.35200000000000004 +2016-02-14 04:00:00,0.285,0.319,0.353 +2016-02-14 05:00:00,0.285,0.319,0.354 +2016-02-14 06:00:00,0.285,0.319,0.358 +2016-02-14 07:00:00,0.28600000000000003,0.318,0.363 +2016-02-14 08:00:00,0.28600000000000003,0.317,0.364 +2016-02-14 09:00:00,0.28600000000000003,0.317,0.364 +2016-02-14 10:00:00,0.285,0.317,0.364 +2016-02-14 11:00:00,0.284,0.313,0.364 +2016-02-14 12:00:00,0.28300000000000003,0.31,0.365 +2016-02-14 13:00:00,0.282,0.31,0.365 +2016-02-14 14:00:00,0.28300000000000003,0.313,0.365 +2016-02-14 15:00:00,0.28300000000000003,0.315,0.364 +2016-02-14 16:00:00,0.28300000000000003,0.314,0.364 +2016-02-14 17:00:00,0.284,0.31,0.364 +2016-02-14 18:00:00,0.28300000000000003,0.313,0.364 +2016-02-14 19:00:00,0.28300000000000003,0.313,0.365 +2016-02-14 20:00:00,0.282,0.31,0.365 +2016-02-14 21:00:00,0.281,0.307,0.366 +2016-02-14 22:00:00,0.281,0.309,0.366 +2016-02-14 23:00:00,0.281,0.327,0.366 +2016-02-15 00:00:00,0.28,0.33899999999999997,0.36700000000000005 +2016-02-15 01:00:00,0.27899999999999997,0.341,0.36700000000000005 +2016-02-15 02:00:00,0.28,0.34,0.368 +2016-02-15 03:00:00,0.28,0.341,0.368 +2016-02-15 04:00:00,0.28,0.341,0.368 +2016-02-15 05:00:00,0.28,0.341,0.369 +2016-02-15 06:00:00,0.27899999999999997,0.341,0.369 +2016-02-15 07:00:00,0.27899999999999997,0.34299999999999997,0.369 +2016-02-15 08:00:00,0.27899999999999997,0.34299999999999997,0.369 +2016-02-15 09:00:00,0.278,0.34299999999999997,0.369 +2016-02-15 10:00:00,0.278,0.344,0.37 +2016-02-15 11:00:00,0.278,0.34299999999999997,0.37 +2016-02-15 12:00:00,0.27699999999999997,0.34299999999999997,0.37 +2016-02-15 13:00:00,0.278,0.33899999999999997,0.37 +2016-02-15 14:00:00,0.28,0.33299999999999996,0.371 +2016-02-15 15:00:00,0.282,0.33299999999999996,0.371 +2016-02-15 16:00:00,0.28300000000000003,0.335,0.371 +2016-02-15 17:00:00,0.284,0.33399999999999996,0.371 +2016-02-15 18:00:00,0.28300000000000003,0.34,0.371 +2016-02-15 19:00:00,0.28,0.344,0.369 +2016-02-15 20:00:00,0.27899999999999997,0.34600000000000003,0.366 +2016-02-15 21:00:00,0.27899999999999997,0.34600000000000003,0.364 +2016-02-15 22:00:00,0.28,0.345,0.363 +2016-02-15 23:00:00,0.281,0.344,0.36200000000000004 +2016-02-16 00:00:00,0.282,0.344,0.36200000000000004 +2016-02-16 01:00:00,0.284,0.344,0.36200000000000004 +2016-02-16 02:00:00,0.284,0.34299999999999997,0.361 +2016-02-16 03:00:00,0.284,0.34299999999999997,0.361 +2016-02-16 04:00:00,0.284,0.34299999999999997,0.361 +2016-02-16 05:00:00,0.284,0.34299999999999997,0.361 +2016-02-16 06:00:00,0.284,0.342,0.361 +2016-02-16 07:00:00,0.284,0.341,0.36 +2016-02-16 08:00:00,0.28300000000000003,0.341,0.36 +2016-02-16 09:00:00,0.28300000000000003,0.341,0.36 +2016-02-16 10:00:00,0.28300000000000003,0.34,0.36 +2016-02-16 11:00:00,0.282,0.33899999999999997,0.36 +2016-02-16 12:00:00,0.282,0.33899999999999997,0.354 +2016-02-16 13:00:00,0.282,0.33799999999999997,0.349 +2016-02-16 14:00:00,0.282,0.33799999999999997,0.349 +2016-02-16 15:00:00,0.282,0.33799999999999997,0.348 +2016-02-16 16:00:00,0.282,0.33799999999999997,0.348 +2016-02-16 17:00:00,0.282,0.33799999999999997,0.34700000000000003 +2016-02-16 18:00:00,0.282,0.33799999999999997,0.34700000000000003 +2016-02-16 19:00:00,0.282,0.336,0.34600000000000003 +2016-02-16 20:00:00,0.281,0.332,0.34600000000000003 +2016-02-16 21:00:00,0.281,0.332,0.34600000000000003 +2016-02-16 22:00:00,0.281,0.332,0.345 +2016-02-16 23:00:00,0.281,0.33399999999999996,0.345 +2016-02-17 00:00:00,0.28,0.32899999999999996,0.345 +2016-02-17 01:00:00,0.28,0.32799999999999996,0.345 +2016-02-17 02:00:00,0.28,0.34,0.344 +2016-02-17 03:00:00,0.28,0.341,0.344 +2016-02-17 04:00:00,0.28,0.344,0.344 +2016-02-17 05:00:00,0.28,0.34700000000000003,0.344 +2016-02-17 06:00:00,0.28,0.34600000000000003,0.344 +2016-02-17 07:00:00,0.28,0.345,0.34299999999999997 +2016-02-17 08:00:00,0.27899999999999997,0.344,0.34299999999999997 +2016-02-17 09:00:00,0.27899999999999997,0.34600000000000003,0.342 +2016-02-17 10:00:00,0.27899999999999997,0.344,0.342 +2016-02-17 11:00:00,0.27899999999999997,0.344,0.342 +2016-02-17 12:00:00,0.27899999999999997,0.344,0.342 +2016-02-17 13:00:00,0.27899999999999997,0.34299999999999997,0.342 +2016-02-17 14:00:00,0.27899999999999997,0.345,0.341 +2016-02-17 15:00:00,0.27899999999999997,0.35200000000000004,0.341 +2016-02-17 16:00:00,0.27899999999999997,0.359,0.341 +2016-02-17 17:00:00,0.27899999999999997,0.36200000000000004,0.341 +2016-02-17 18:00:00,0.27899999999999997,0.365,0.341 +2016-02-17 19:00:00,0.27899999999999997,0.365,0.341 +2016-02-17 20:00:00,0.27899999999999997,0.365,0.341 +2016-02-17 21:00:00,0.27899999999999997,0.363,0.341 +2016-02-17 22:00:00,0.27899999999999997,0.36,0.34 +2016-02-17 23:00:00,0.27899999999999997,0.354,0.34 +2016-02-18 00:00:00,0.27899999999999997,0.35,0.34 +2016-02-18 01:00:00,0.27899999999999997,0.348,0.34 +2016-02-18 02:00:00,0.27899999999999997,0.34700000000000003,0.34 +2016-02-18 03:00:00,0.27899999999999997,0.34600000000000003,0.34 +2016-02-18 04:00:00,0.27899999999999997,0.345,0.33899999999999997 +2016-02-18 05:00:00,0.27899999999999997,0.34700000000000003,0.33899999999999997 +2016-02-18 06:00:00,0.278,0.34700000000000003,0.33899999999999997 +2016-02-18 07:00:00,0.278,0.344,0.33899999999999997 +2016-02-18 08:00:00,0.278,0.34700000000000003,0.33799999999999997 +2016-02-18 09:00:00,0.278,0.348,0.33799999999999997 +2016-02-18 10:00:00,0.278,0.34700000000000003,0.33799999999999997 +2016-02-18 11:00:00,0.278,0.34600000000000003,0.337 +2016-02-18 12:00:00,0.278,0.34299999999999997,0.337 +2016-02-18 13:00:00,0.278,0.33899999999999997,0.337 +2016-02-18 14:00:00,0.278,0.33899999999999997,0.337 +2016-02-18 15:00:00,0.278,0.33899999999999997,0.337 +2016-02-18 16:00:00,0.278,0.341,0.337 +2016-02-18 17:00:00,0.278,0.33799999999999997,0.337 +2016-02-18 18:00:00,0.278,0.33799999999999997,0.336 +2016-02-18 19:00:00,0.278,0.341,0.336 +2016-02-18 20:00:00,0.278,0.34299999999999997,0.336 +2016-02-18 21:00:00,0.278,0.344,0.336 +2016-02-18 22:00:00,0.278,0.344,0.336 +2016-02-18 23:00:00,0.278,0.345,0.336 +2016-02-19 00:00:00,0.278,0.344,0.336 +2016-02-19 01:00:00,0.278,0.344,0.336 +2016-02-19 02:00:00,0.27699999999999997,0.344,0.336 +2016-02-19 03:00:00,0.278,0.344,0.336 +2016-02-19 04:00:00,0.27699999999999997,0.344,0.335 +2016-02-19 05:00:00,0.27699999999999997,0.344,0.335 +2016-02-19 06:00:00,0.27699999999999997,0.34299999999999997,0.335 +2016-02-19 07:00:00,0.27699999999999997,0.34299999999999997,0.335 +2016-02-19 08:00:00,0.27699999999999997,0.34299999999999997,0.335 +2016-02-19 09:00:00,0.27699999999999997,0.34299999999999997,0.335 +2016-02-19 10:00:00,0.27699999999999997,0.342,0.335 +2016-02-19 11:00:00,0.27699999999999997,0.341,0.335 +2016-02-19 12:00:00,0.27699999999999997,0.341,0.335 +2016-02-19 13:00:00,0.27699999999999997,0.33799999999999997,0.335 +2016-02-19 14:00:00,0.27699999999999997,0.336,0.33399999999999996 +2016-02-19 15:00:00,0.27699999999999997,0.33799999999999997,0.33299999999999996 +2016-02-19 16:00:00,0.27699999999999997,0.33799999999999997,0.33299999999999996 +2016-02-19 17:00:00,0.27699999999999997,0.33799999999999997,0.33299999999999996 +2016-02-19 18:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 +2016-02-19 19:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 +2016-02-19 20:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 +2016-02-19 21:00:00,0.27699999999999997,0.33899999999999997,0.33299999999999996 +2016-02-19 22:00:00,0.27699999999999997,0.33899999999999997,0.332 +2016-02-19 23:00:00,0.27699999999999997,0.33899999999999997,0.332 +2016-02-20 00:00:00,0.27699999999999997,0.33899999999999997,0.332 +2016-02-20 01:00:00,0.27699999999999997,0.33799999999999997,0.332 +2016-02-20 02:00:00,0.276,0.33799999999999997,0.332 +2016-02-20 03:00:00,0.276,0.33799999999999997,0.332 +2016-02-20 04:00:00,0.276,0.33799999999999997,0.332 +2016-02-20 05:00:00,0.276,0.33799999999999997,0.332 +2016-02-20 06:00:00,0.276,0.33799999999999997,0.332 +2016-02-20 07:00:00,0.27399999999999997,0.33799999999999997,0.33299999999999996 +2016-02-20 08:00:00,0.266,0.33799999999999997,0.335 +2016-02-20 09:00:00,0.265,0.33799999999999997,0.336 +2016-02-20 10:00:00,0.265,0.337,0.336 +2016-02-20 11:00:00,0.264,0.337,0.336 +2016-02-20 12:00:00,0.264,0.336,0.335 +2016-02-20 13:00:00,0.265,0.336,0.336 +2016-02-20 14:00:00,0.267,0.336,0.336 +2016-02-20 15:00:00,0.267,0.336,0.336 +2016-02-20 16:00:00,0.268,0.336,0.336 +2016-02-20 17:00:00,0.27,0.336,0.336 +2016-02-20 18:00:00,0.275,0.336,0.336 +2016-02-20 19:00:00,0.285,0.336,0.336 +2016-02-20 20:00:00,0.289,0.336,0.336 +2016-02-20 21:00:00,0.29,0.335,0.337 +2016-02-20 22:00:00,0.29100000000000004,0.33399999999999996,0.33899999999999997 +2016-02-20 23:00:00,0.29100000000000004,0.33399999999999996,0.342 +2016-02-21 00:00:00,0.292,0.33399999999999996,0.35200000000000004 +2016-02-21 01:00:00,0.29,0.33399999999999996,0.36200000000000004 +2016-02-21 02:00:00,0.289,0.33399999999999996,0.363 +2016-02-21 03:00:00,0.287,0.33399999999999996,0.363 +2016-02-21 04:00:00,0.28600000000000003,0.33399999999999996,0.363 +2016-02-21 05:00:00,0.284,0.33399999999999996,0.363 +2016-02-21 06:00:00,0.282,0.33399999999999996,0.364 +2016-02-21 07:00:00,0.27899999999999997,0.33299999999999996,0.364 +2016-02-21 08:00:00,0.27899999999999997,0.33299999999999996,0.364 +2016-02-21 09:00:00,0.27899999999999997,0.33299999999999996,0.364 +2016-02-21 10:00:00,0.28,0.332,0.364 +2016-02-21 11:00:00,0.282,0.332,0.364 +2016-02-21 12:00:00,0.281,0.332,0.365 +2016-02-21 13:00:00,0.282,0.332,0.365 +2016-02-21 14:00:00,0.284,0.332,0.364 +2016-02-21 15:00:00,0.282,0.332,0.364 +2016-02-21 16:00:00,0.281,0.332,0.364 +2016-02-21 17:00:00,0.28600000000000003,0.331,0.365 +2016-02-21 18:00:00,0.29,0.331,0.365 +2016-02-21 19:00:00,0.29100000000000004,0.331,0.365 +2016-02-21 20:00:00,0.292,0.331,0.365 +2016-02-21 21:00:00,0.292,0.331,0.365 +2016-02-21 22:00:00,0.292,0.331,0.365 +2016-02-21 23:00:00,0.292,0.331,0.365 +2016-02-22 00:00:00,0.29100000000000004,0.331,0.365 +2016-02-22 01:00:00,0.29100000000000004,0.331,0.365 +2016-02-22 02:00:00,0.29100000000000004,0.331,0.365 +2016-02-22 03:00:00,0.29,0.331,0.365 +2016-02-22 04:00:00,0.29,0.331,0.365 +2016-02-22 05:00:00,0.29,0.33,0.365 +2016-02-22 06:00:00,0.289,0.33,0.365 +2016-02-22 07:00:00,0.289,0.33,0.365 +2016-02-22 08:00:00,0.28800000000000003,0.32899999999999996,0.365 +2016-02-22 09:00:00,0.28800000000000003,0.32899999999999996,0.365 +2016-02-22 10:00:00,0.28800000000000003,0.32899999999999996,0.365 +2016-02-22 11:00:00,0.287,0.32899999999999996,0.365 +2016-02-22 12:00:00,0.287,0.32899999999999996,0.365 +2016-02-22 13:00:00,0.287,0.32899999999999996,0.365 +2016-02-22 14:00:00,0.287,0.32899999999999996,0.365 +2016-02-22 15:00:00,0.287,0.32799999999999996,0.365 +2016-02-22 16:00:00,0.285,0.327,0.365 +2016-02-22 17:00:00,0.27699999999999997,0.327,0.366 +2016-02-22 18:00:00,0.276,0.327,0.366 +2016-02-22 19:00:00,0.276,0.327,0.364 +2016-02-22 20:00:00,0.27699999999999997,0.327,0.364 +2016-02-22 21:00:00,0.278,0.327,0.364 +2016-02-22 22:00:00,0.285,0.327,0.363 +2016-02-22 23:00:00,0.28800000000000003,0.327,0.363 +2016-02-23 00:00:00,0.29,0.327,0.363 +2016-02-23 01:00:00,0.29100000000000004,0.327,0.363 +2016-02-23 02:00:00,0.29,0.327,0.364 +2016-02-23 03:00:00,0.289,0.327,0.364 +2016-02-23 04:00:00,0.287,0.327,0.364 +2016-02-23 05:00:00,0.287,0.327,0.365 +2016-02-23 06:00:00,0.287,0.327,0.365 +2016-02-23 07:00:00,0.287,0.327,0.365 +2016-02-23 08:00:00,0.287,0.327,0.366 +2016-02-23 09:00:00,0.287,0.327,0.37200000000000005 +2016-02-23 10:00:00,0.287,0.327,0.375 +2016-02-23 11:00:00,0.287,0.327,0.375 +2016-02-23 12:00:00,0.284,0.327,0.376 +2016-02-23 13:00:00,0.282,0.326,0.376 +2016-02-23 14:00:00,0.281,0.326,0.377 +2016-02-23 15:00:00,0.282,0.326,0.377 +2016-02-23 16:00:00,0.28600000000000003,0.326,0.37799999999999995 +2016-02-23 17:00:00,0.28800000000000003,0.326,0.37799999999999995 +2016-02-23 18:00:00,0.289,0.326,0.37799999999999995 +2016-02-23 19:00:00,0.28600000000000003,0.326,0.37799999999999995 +2016-02-23 20:00:00,0.278,0.326,0.377 +2016-02-23 21:00:00,0.278,0.326,0.377 +2016-02-23 22:00:00,0.27699999999999997,0.326,0.37799999999999995 +2016-02-23 23:00:00,0.27699999999999997,0.326,0.37799999999999995 +2016-02-24 00:00:00,0.276,0.326,0.37799999999999995 +2016-02-24 01:00:00,0.276,0.326,0.37799999999999995 +2016-02-24 02:00:00,0.276,0.326,0.37799999999999995 +2016-02-24 03:00:00,0.27899999999999997,0.326,0.379 +2016-02-24 04:00:00,0.275,0.326,0.37799999999999995 +2016-02-24 05:00:00,0.28,0.326,0.379 +2016-02-24 06:00:00,0.284,0.326,0.379 +2016-02-24 07:00:00,0.284,0.326,0.38 +2016-02-24 08:00:00,0.284,0.326,0.38 +2016-02-24 09:00:00,0.278,0.326,0.379 +2016-02-24 10:00:00,0.27399999999999997,0.326,0.37799999999999995 +2016-02-24 11:00:00,0.27399999999999997,0.326,0.37799999999999995 +2016-02-24 12:00:00,0.27399999999999997,0.326,0.379 +2016-02-24 13:00:00,0.275,0.326,0.379 +2016-02-24 14:00:00,0.276,0.326,0.379 +2016-02-24 15:00:00,0.27399999999999997,0.326,0.379 +2016-02-24 16:00:00,0.27899999999999997,0.326,0.379 +2016-02-24 17:00:00,0.28600000000000003,0.326,0.379 +2016-02-24 18:00:00,0.28800000000000003,0.326,0.38 +2016-02-24 19:00:00,0.28800000000000003,0.326,0.38 +2016-02-24 20:00:00,0.289,0.326,0.38 +2016-02-24 21:00:00,0.29,0.326,0.38 +2016-02-24 22:00:00,0.29,0.326,0.38 +2016-02-24 23:00:00,0.29,0.326,0.38 +2016-02-25 00:00:00,0.289,0.325,0.38 +2016-02-25 01:00:00,0.28800000000000003,0.32299999999999995,0.38 +2016-02-25 02:00:00,0.28800000000000003,0.322,0.38 +2016-02-25 03:00:00,0.287,0.322,0.381 +2016-02-25 04:00:00,0.287,0.322,0.381 +2016-02-25 05:00:00,0.287,0.322,0.381 +2016-02-25 06:00:00,0.287,0.322,0.381 +2016-02-25 07:00:00,0.287,0.32299999999999995,0.381 +2016-02-25 08:00:00,0.28600000000000003,0.32299999999999995,0.381 +2016-02-25 09:00:00,0.28600000000000003,0.32299999999999995,0.381 +2016-02-25 10:00:00,0.27899999999999997,0.324,0.381 +2016-02-25 11:00:00,0.275,0.324,0.381 +2016-02-25 12:00:00,0.278,0.324,0.381 +2016-02-25 13:00:00,0.27899999999999997,0.324,0.381 +2016-02-25 14:00:00,0.282,0.32299999999999995,0.381 +2016-02-25 15:00:00,0.28300000000000003,0.321,0.381 +2016-02-25 16:00:00,0.28300000000000003,0.318,0.381 +2016-02-25 17:00:00,0.284,0.32,0.381 +2016-02-25 18:00:00,0.284,0.32299999999999995,0.381 +2016-02-25 19:00:00,0.284,0.324,0.382 +2016-02-25 20:00:00,0.284,0.324,0.382 +2016-02-25 21:00:00,0.284,0.326,0.382 +2016-02-25 22:00:00,0.284,0.326,0.382 +2016-02-25 23:00:00,0.28300000000000003,0.326,0.382 +2016-02-26 00:00:00,0.28300000000000003,0.326,0.382 +2016-02-26 01:00:00,0.28300000000000003,0.326,0.382 +2016-02-26 02:00:00,0.28300000000000003,0.326,0.382 +2016-02-26 03:00:00,0.28300000000000003,0.324,0.382 +2016-02-26 04:00:00,0.28300000000000003,0.324,0.382 +2016-02-26 05:00:00,0.28300000000000003,0.324,0.382 +2016-02-26 06:00:00,0.28300000000000003,0.324,0.382 +2016-02-26 07:00:00,0.28300000000000003,0.324,0.382 +2016-02-26 08:00:00,0.28300000000000003,0.325,0.382 +2016-02-26 09:00:00,0.282,0.326,0.382 +2016-02-26 10:00:00,0.282,0.326,0.382 +2016-02-26 11:00:00,0.282,0.326,0.382 +2016-02-26 12:00:00,0.282,0.326,0.382 +2016-02-26 13:00:00,0.282,0.326,0.382 +2016-02-26 14:00:00,0.281,0.326,0.382 +2016-02-26 15:00:00,0.282,0.326,0.382 +2016-02-26 16:00:00,0.282,0.326,0.382 +2016-02-26 17:00:00,0.282,0.326,0.382 +2016-02-26 18:00:00,0.282,0.326,0.382 +2016-02-26 19:00:00,0.282,0.326,0.382 +2016-02-26 20:00:00,0.282,0.326,0.382 +2016-02-26 21:00:00,0.282,0.326,0.382 +2016-02-26 22:00:00,0.281,0.326,0.382 +2016-02-26 23:00:00,0.281,0.326,0.382 +2016-02-27 00:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 01:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 02:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 03:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 04:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 05:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 06:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 07:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 08:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 09:00:00,0.281,0.326,0.38299999999999995 +2016-02-27 10:00:00,0.28,0.326,0.38299999999999995 +2016-02-27 11:00:00,0.28,0.326,0.38299999999999995 +2016-02-27 12:00:00,0.28,0.325,0.38299999999999995 +2016-02-27 13:00:00,0.28,0.324,0.38299999999999995 +2016-02-27 14:00:00,0.28,0.324,0.38299999999999995 +2016-02-27 15:00:00,0.27899999999999997,0.324,0.38299999999999995 +2016-02-27 16:00:00,0.27899999999999997,0.324,0.38299999999999995 +2016-02-27 17:00:00,0.28,0.324,0.38299999999999995 +2016-02-27 18:00:00,0.27899999999999997,0.325,0.38299999999999995 +2016-02-27 19:00:00,0.28,0.325,0.38299999999999995 +2016-02-27 20:00:00,0.28,0.32299999999999995,0.38299999999999995 +2016-02-27 21:00:00,0.28,0.32,0.38299999999999995 +2016-02-27 22:00:00,0.28,0.32,0.38299999999999995 +2016-02-27 23:00:00,0.28,0.321,0.38299999999999995 +2016-02-28 00:00:00,0.28,0.322,0.38299999999999995 +2016-02-28 01:00:00,0.27899999999999997,0.325,0.38299999999999995 +2016-02-28 02:00:00,0.27899999999999997,0.32799999999999996,0.38299999999999995 +2016-02-28 03:00:00,0.27899999999999997,0.327,0.38299999999999995 +2016-02-28 04:00:00,0.27899999999999997,0.32799999999999996,0.38299999999999995 +2016-02-28 05:00:00,0.27899999999999997,0.332,0.38299999999999995 +2016-02-28 06:00:00,0.27899999999999997,0.33799999999999997,0.384 +2016-02-28 07:00:00,0.27899999999999997,0.33799999999999997,0.384 +2016-02-28 08:00:00,0.27899999999999997,0.337,0.384 +2016-02-28 09:00:00,0.27899999999999997,0.335,0.384 +2016-02-28 10:00:00,0.278,0.33799999999999997,0.384 +2016-02-28 11:00:00,0.278,0.34,0.384 +2016-02-28 12:00:00,0.278,0.33899999999999997,0.384 +2016-02-28 13:00:00,0.278,0.34,0.384 +2016-02-28 14:00:00,0.278,0.341,0.384 +2016-02-28 15:00:00,0.278,0.34299999999999997,0.384 +2016-02-28 16:00:00,0.278,0.342,0.384 +2016-02-28 17:00:00,0.278,0.341,0.384 +2016-02-28 18:00:00,0.278,0.341,0.384 +2016-02-28 19:00:00,0.278,0.341,0.384 +2016-02-28 20:00:00,0.278,0.341,0.384 +2016-02-28 21:00:00,0.278,0.341,0.384 +2016-02-28 22:00:00,0.278,0.34,0.384 +2016-02-28 23:00:00,0.278,0.33899999999999997,0.384 +2016-02-29 00:00:00,0.278,0.33899999999999997,0.384 +2016-02-29 01:00:00,0.278,0.33799999999999997,0.384 +2016-02-29 02:00:00,0.278,0.33799999999999997,0.384 +2016-02-29 03:00:00,0.278,0.33799999999999997,0.385 +2016-02-29 04:00:00,0.278,0.33799999999999997,0.385 +2016-02-29 05:00:00,0.27699999999999997,0.33799999999999997,0.385 +2016-02-29 06:00:00,0.278,0.337,0.385 +2016-02-29 07:00:00,0.278,0.336,0.385 +2016-02-29 08:00:00,0.27699999999999997,0.336,0.385 +2016-02-29 09:00:00,0.27699999999999997,0.33399999999999996,0.385 +2016-02-29 10:00:00,0.27699999999999997,0.33399999999999996,0.385 +2016-02-29 11:00:00,0.27699999999999997,0.33399999999999996,0.385 +2016-02-29 12:00:00,0.27699999999999997,0.33299999999999996,0.385 +2016-02-29 13:00:00,0.27699999999999997,0.332,0.385 +2016-02-29 14:00:00,0.27699999999999997,0.332,0.385 +2016-02-29 15:00:00,0.27699999999999997,0.332,0.385 +2016-02-29 16:00:00,0.27699999999999997,0.332,0.385 +2016-02-29 17:00:00,0.27699999999999997,0.332,0.385 +2016-02-29 18:00:00,0.27699999999999997,0.325,0.385 +2016-02-29 19:00:00,0.27699999999999997,0.327,0.385 +2016-02-29 20:00:00,0.27699999999999997,0.32899999999999996,0.385 +2016-02-29 21:00:00,0.27699999999999997,0.32799999999999996,0.385 +2016-02-29 22:00:00,0.27699999999999997,0.32799999999999996,0.385 +2016-02-29 23:00:00,0.27699999999999997,0.32899999999999996,0.385 +2016-03-01 00:00:00,0.27699999999999997,0.32899999999999996,0.385 +2016-03-01 01:00:00,0.27699999999999997,0.32899999999999996,0.385 +2016-03-01 02:00:00,0.27699999999999997,0.32899999999999996,0.385 +2016-03-01 03:00:00,0.27699999999999997,0.32899999999999996,0.385 +2016-03-01 04:00:00,0.27699999999999997,0.33,0.385 +2016-03-01 05:00:00,0.27699999999999997,0.332,0.385 +2016-03-01 06:00:00,0.27699999999999997,0.33299999999999996,0.385 +2016-03-01 07:00:00,0.27699999999999997,0.33299999999999996,0.385 +2016-03-01 08:00:00,0.27699999999999997,0.33299999999999996,0.385 +2016-03-01 09:00:00,0.276,0.332,0.385 +2016-03-01 10:00:00,0.276,0.332,0.385 +2016-03-01 11:00:00,0.276,0.332,0.385 +2016-03-01 12:00:00,0.276,0.33,0.385 +2016-03-01 13:00:00,0.276,0.327,0.385 +2016-03-01 14:00:00,0.276,0.327,0.385 +2016-03-01 15:00:00,0.276,0.32899999999999996,0.385 +2016-03-01 16:00:00,0.276,0.32899999999999996,0.385 +2016-03-01 17:00:00,0.276,0.33,0.385 +2016-03-01 18:00:00,0.276,0.327,0.385 +2016-03-01 19:00:00,0.276,0.327,0.385 +2016-03-01 20:00:00,0.276,0.33,0.385 +2016-03-01 21:00:00,0.275,0.331,0.385 +2016-03-01 22:00:00,0.273,0.332,0.385 +2016-03-01 23:00:00,0.27,0.332,0.385 +2016-03-02 00:00:00,0.26899999999999996,0.332,0.385 +2016-03-02 01:00:00,0.26899999999999996,0.332,0.385 +2016-03-02 02:00:00,0.26899999999999996,0.332,0.385 +2016-03-02 03:00:00,0.26899999999999996,0.332,0.385 +2016-03-02 04:00:00,0.27,0.331,0.385 +2016-03-02 05:00:00,0.271,0.331,0.385 +2016-03-02 06:00:00,0.272,0.331,0.384 +2016-03-02 07:00:00,0.272,0.331,0.384 +2016-03-02 08:00:00,0.273,0.331,0.384 +2016-03-02 09:00:00,0.27399999999999997,0.331,0.384 +2016-03-02 10:00:00,0.275,0.331,0.384 +2016-03-02 11:00:00,0.271,0.331,0.384 +2016-03-02 12:00:00,0.268,0.33,0.38299999999999995 +2016-03-02 13:00:00,0.267,0.327,0.38299999999999995 +2016-03-02 14:00:00,0.265,0.327,0.38299999999999995 +2016-03-02 15:00:00,0.267,0.327,0.384 +2016-03-02 16:00:00,0.271,0.327,0.384 +2016-03-02 17:00:00,0.27399999999999997,0.327,0.384 +2016-03-02 18:00:00,0.275,0.32899999999999996,0.384 +2016-03-02 19:00:00,0.276,0.32899999999999996,0.384 +2016-03-02 20:00:00,0.27699999999999997,0.32899999999999996,0.384 +2016-03-02 21:00:00,0.27699999999999997,0.32899999999999996,0.384 +2016-03-02 22:00:00,0.27699999999999997,0.32899999999999996,0.384 +2016-03-02 23:00:00,0.27699999999999997,0.32899999999999996,0.384 +2016-03-03 00:00:00,0.272,0.32899999999999996,0.384 +2016-03-03 01:00:00,0.272,0.32899999999999996,0.384 +2016-03-03 02:00:00,0.273,0.32899999999999996,0.384 +2016-03-03 03:00:00,0.275,0.32899999999999996,0.384 +2016-03-03 04:00:00,0.276,0.32899999999999996,0.384 +2016-03-03 05:00:00,0.27699999999999997,0.32899999999999996,0.384 +2016-03-03 06:00:00,0.27699999999999997,0.32799999999999996,0.384 +2016-03-03 07:00:00,0.278,0.327,0.384 +2016-03-03 08:00:00,0.278,0.327,0.384 +2016-03-03 09:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 10:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 11:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 12:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 13:00:00,0.27899999999999997,0.326,0.384 +2016-03-03 14:00:00,0.27899999999999997,0.326,0.384 +2016-03-03 15:00:00,0.27899999999999997,0.326,0.384 +2016-03-03 16:00:00,0.27899999999999997,0.326,0.384 +2016-03-03 17:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 18:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 19:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 20:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 21:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 22:00:00,0.27899999999999997,0.327,0.384 +2016-03-03 23:00:00,0.27899999999999997,0.327,0.385 +2016-03-04 00:00:00,0.27899999999999997,0.327,0.385 +2016-03-04 01:00:00,0.27899999999999997,0.327,0.385 +2016-03-04 02:00:00,0.27899999999999997,0.326,0.385 +2016-03-04 03:00:00,0.27899999999999997,0.326,0.385 +2016-03-04 04:00:00,0.27899999999999997,0.326,0.385 +2016-03-04 05:00:00,0.27899999999999997,0.326,0.385 +2016-03-04 06:00:00,0.27899999999999997,0.326,0.384 +2016-03-04 07:00:00,0.27899999999999997,0.326,0.384 +2016-03-04 08:00:00,0.27899999999999997,0.326,0.384 +2016-03-04 09:00:00,0.27699999999999997,0.326,0.385 +2016-03-04 10:00:00,0.275,0.326,0.385 +2016-03-04 11:00:00,0.276,0.326,0.385 +2016-03-04 12:00:00,0.27699999999999997,0.326,0.385 +2016-03-04 13:00:00,0.278,0.326,0.384 +2016-03-04 14:00:00,0.278,0.326,0.384 +2016-03-04 15:00:00,0.278,0.326,0.384 +2016-03-04 16:00:00,0.276,0.326,0.384 +2016-03-04 17:00:00,0.267,0.326,0.384 +2016-03-04 18:00:00,0.267,0.326,0.384 +2016-03-04 19:00:00,0.268,0.326,0.384 +2016-03-04 20:00:00,0.26899999999999996,0.326,0.384 +2016-03-04 21:00:00,0.272,0.326,0.38299999999999995 +2016-03-04 22:00:00,0.276,0.326,0.38299999999999995 +2016-03-04 23:00:00,0.278,0.326,0.38299999999999995 +2016-03-05 00:00:00,0.278,0.326,0.38299999999999995 +2016-03-05 01:00:00,0.281,0.325,0.38299999999999995 +2016-03-05 02:00:00,0.28300000000000003,0.324,0.38299999999999995 +2016-03-05 03:00:00,0.28300000000000003,0.324,0.38299999999999995 +2016-03-05 04:00:00,0.281,0.324,0.38299999999999995 +2016-03-05 05:00:00,0.281,0.324,0.382 +2016-03-05 06:00:00,0.281,0.324,0.382 +2016-03-05 07:00:00,0.282,0.324,0.382 +2016-03-05 08:00:00,0.28300000000000003,0.324,0.382 +2016-03-05 09:00:00,0.28300000000000003,0.324,0.38299999999999995 +2016-03-05 10:00:00,0.282,0.324,0.38299999999999995 +2016-03-05 11:00:00,0.28,0.324,0.38299999999999995 +2016-03-05 12:00:00,0.28,0.324,0.384 +2016-03-05 13:00:00,0.28300000000000003,0.324,0.384 +2016-03-05 14:00:00,0.28600000000000003,0.324,0.384 +2016-03-05 15:00:00,0.28800000000000003,0.324,0.384 +2016-03-05 16:00:00,0.289,0.324,0.384 +2016-03-05 17:00:00,0.29,0.324,0.384 +2016-03-05 18:00:00,0.29,0.324,0.384 +2016-03-05 19:00:00,0.29,0.324,0.385 +2016-03-05 20:00:00,0.289,0.324,0.385 +2016-03-05 21:00:00,0.289,0.324,0.385 +2016-03-05 22:00:00,0.28800000000000003,0.324,0.385 +2016-03-05 23:00:00,0.28800000000000003,0.324,0.385 +2016-03-06 00:00:00,0.28800000000000003,0.324,0.385 +2016-03-06 01:00:00,0.287,0.324,0.385 +2016-03-06 02:00:00,0.287,0.324,0.385 +2016-03-06 03:00:00,0.287,0.324,0.385 +2016-03-06 04:00:00,0.287,0.324,0.385 +2016-03-06 05:00:00,0.28600000000000003,0.324,0.385 +2016-03-06 06:00:00,0.285,0.324,0.385 +2016-03-06 07:00:00,0.285,0.324,0.385 +2016-03-06 08:00:00,0.285,0.324,0.385 +2016-03-06 09:00:00,0.284,0.324,0.385 +2016-03-06 10:00:00,0.284,0.324,0.385 +2016-03-06 11:00:00,0.284,0.324,0.385 +2016-03-06 12:00:00,0.284,0.324,0.385 +2016-03-06 13:00:00,0.284,0.324,0.385 +2016-03-06 14:00:00,0.282,0.324,0.385 +2016-03-06 15:00:00,0.27399999999999997,0.324,0.384 +2016-03-06 16:00:00,0.275,0.324,0.384 +2016-03-06 17:00:00,0.27699999999999997,0.324,0.384 +2016-03-06 18:00:00,0.276,0.32299999999999995,0.384 +2016-03-06 19:00:00,0.27699999999999997,0.32299999999999995,0.384 +2016-03-06 20:00:00,0.27699999999999997,0.32299999999999995,0.385 +2016-03-06 21:00:00,0.278,0.32299999999999995,0.385 +2016-03-06 22:00:00,0.27699999999999997,0.32299999999999995,0.385 +2016-03-06 23:00:00,0.27699999999999997,0.32299999999999995,0.385 +2016-03-07 00:00:00,0.27699999999999997,0.32299999999999995,0.385 +2016-03-07 01:00:00,0.278,0.32299999999999995,0.385 +2016-03-07 02:00:00,0.281,0.32299999999999995,0.385 +2016-03-07 03:00:00,0.285,0.32299999999999995,0.385 +2016-03-07 04:00:00,0.28600000000000003,0.32299999999999995,0.385 +2016-03-07 05:00:00,0.285,0.32299999999999995,0.385 +2016-03-07 06:00:00,0.285,0.32299999999999995,0.386 +2016-03-07 07:00:00,0.284,0.322,0.386 +2016-03-07 08:00:00,0.28300000000000003,0.322,0.386 +2016-03-07 09:00:00,0.278,0.322,0.385 +2016-03-07 10:00:00,0.275,0.322,0.385 +2016-03-07 11:00:00,0.276,0.322,0.385 +2016-03-07 12:00:00,0.27899999999999997,0.322,0.386 +2016-03-07 13:00:00,0.282,0.322,0.386 +2016-03-07 14:00:00,0.282,0.322,0.386 +2016-03-07 15:00:00,0.278,0.322,0.386 +2016-03-07 16:00:00,0.278,0.322,0.386 +2016-03-07 17:00:00,0.282,0.322,0.386 +2016-03-07 18:00:00,0.284,0.322,0.386 +2016-03-07 19:00:00,0.285,0.322,0.386 +2016-03-07 20:00:00,0.28600000000000003,0.322,0.386 +2016-03-07 21:00:00,0.28600000000000003,0.322,0.386 +2016-03-07 22:00:00,0.28600000000000003,0.322,0.386 +2016-03-07 23:00:00,0.285,0.322,0.386 +2016-03-08 00:00:00,0.285,0.322,0.387 +2016-03-08 01:00:00,0.284,0.322,0.387 +2016-03-08 02:00:00,0.284,0.322,0.387 +2016-03-08 03:00:00,0.284,0.322,0.387 +2016-03-08 04:00:00,0.284,0.322,0.387 +2016-03-08 05:00:00,0.284,0.322,0.387 +2016-03-08 06:00:00,0.28300000000000003,0.322,0.387 +2016-03-08 07:00:00,0.28300000000000003,0.322,0.387 +2016-03-08 08:00:00,0.282,0.322,0.387 +2016-03-08 09:00:00,0.281,0.322,0.387 +2016-03-08 10:00:00,0.27699999999999997,0.322,0.387 +2016-03-08 11:00:00,0.276,0.322,0.387 +2016-03-08 12:00:00,0.27699999999999997,0.322,0.387 +2016-03-08 13:00:00,0.27899999999999997,0.322,0.387 +2016-03-08 14:00:00,0.28,0.322,0.387 +2016-03-08 15:00:00,0.281,0.322,0.387 +2016-03-08 16:00:00,0.281,0.322,0.387 +2016-03-08 17:00:00,0.282,0.322,0.387 +2016-03-08 18:00:00,0.282,0.322,0.387 +2016-03-08 19:00:00,0.282,0.322,0.387 +2016-03-08 20:00:00,0.282,0.322,0.38799999999999996 +2016-03-08 21:00:00,0.281,0.322,0.38799999999999996 +2016-03-08 22:00:00,0.281,0.322,0.38799999999999996 +2016-03-08 23:00:00,0.281,0.322,0.38799999999999996 +2016-03-09 00:00:00,0.281,0.321,0.38799999999999996 +2016-03-09 01:00:00,0.281,0.321,0.38799999999999996 +2016-03-09 02:00:00,0.281,0.321,0.38799999999999996 +2016-03-09 03:00:00,0.28,0.321,0.387 +2016-03-09 04:00:00,0.28,0.321,0.387 +2016-03-09 05:00:00,0.28,0.321,0.387 +2016-03-09 06:00:00,0.28,0.321,0.387 +2016-03-09 07:00:00,0.28,0.321,0.387 +2016-03-09 08:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 09:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 10:00:00,0.27899999999999997,0.321,0.38799999999999996 +2016-03-09 11:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 12:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 13:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 14:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 15:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 16:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 17:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 18:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 19:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 20:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 21:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 22:00:00,0.27899999999999997,0.321,0.387 +2016-03-09 23:00:00,0.27899999999999997,0.321,0.387 +2016-03-10 00:00:00,0.27899999999999997,0.321,0.387 +2016-03-10 01:00:00,0.27899999999999997,0.321,0.387 +2016-03-10 02:00:00,0.27899999999999997,0.321,0.387 +2016-03-10 03:00:00,0.27899999999999997,0.321,0.387 +2016-03-10 04:00:00,0.27899999999999997,0.321,0.387 +2016-03-10 05:00:00,0.27899999999999997,0.321,0.387 +2016-03-10 06:00:00,0.27899999999999997,0.321,0.38799999999999996 +2016-03-10 07:00:00,0.278,0.321,0.387 +2016-03-10 08:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 09:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 10:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 11:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 12:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 13:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-10 14:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-10 15:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-10 16:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 17:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 18:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 19:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 20:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 21:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 22:00:00,0.278,0.321,0.38799999999999996 +2016-03-10 23:00:00,0.278,0.321,0.38799999999999996 +2016-03-11 00:00:00,0.278,0.321,0.38799999999999996 +2016-03-11 01:00:00,0.278,0.321,0.38799999999999996 +2016-03-11 02:00:00,0.278,0.321,0.38799999999999996 +2016-03-11 03:00:00,0.278,0.321,0.38799999999999996 +2016-03-11 04:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 05:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 06:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 07:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 08:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 09:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 10:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 11:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 12:00:00,0.27699999999999997,0.32,0.38799999999999996 +2016-03-11 13:00:00,0.27699999999999997,0.319,0.38799999999999996 +2016-03-11 14:00:00,0.276,0.32,0.38799999999999996 +2016-03-11 15:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 16:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 17:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 18:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 19:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 20:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 21:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 22:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-11 23:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-12 00:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-12 01:00:00,0.27699999999999997,0.321,0.38799999999999996 +2016-03-12 02:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 03:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 04:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 05:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 06:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 07:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 08:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 09:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 10:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 11:00:00,0.276,0.321,0.38799999999999996 +2016-03-12 12:00:00,0.276,0.32,0.387 +2016-03-12 13:00:00,0.276,0.319,0.387 +2016-03-12 14:00:00,0.276,0.32,0.387 +2016-03-12 15:00:00,0.276,0.32,0.387 +2016-03-12 16:00:00,0.276,0.32,0.387 +2016-03-12 17:00:00,0.276,0.32,0.387 +2016-03-12 18:00:00,0.276,0.32,0.387 +2016-03-12 19:00:00,0.276,0.32,0.387 +2016-03-12 20:00:00,0.276,0.321,0.385 +2016-03-12 21:00:00,0.276,0.321,0.384 +2016-03-12 22:00:00,0.276,0.321,0.38299999999999995 +2016-03-12 23:00:00,0.275,0.321,0.38299999999999995 +2016-03-13 00:00:00,0.275,0.321,0.38299999999999995 +2016-03-13 01:00:00,0.275,0.321,0.38299999999999995 +2016-03-13 02:00:00,0.275,0.321,0.382 +2016-03-13 03:00:00,0.275,0.321,0.382 +2016-03-13 04:00:00,0.275,0.321,0.381 +2016-03-13 05:00:00,0.275,0.321,0.381 +2016-03-13 06:00:00,0.275,0.321,0.381 +2016-03-13 07:00:00,0.275,0.321,0.381 +2016-03-13 08:00:00,0.275,0.321,0.38 +2016-03-13 09:00:00,0.275,0.321,0.38 +2016-03-13 10:00:00,0.275,0.321,0.379 +2016-03-13 11:00:00,0.275,0.321,0.379 +2016-03-13 12:00:00,0.275,0.321,0.379 +2016-03-13 13:00:00,0.275,0.321,0.379 +2016-03-13 14:00:00,0.275,0.32,0.379 +2016-03-13 15:00:00,0.275,0.321,0.379 +2016-03-13 16:00:00,0.275,0.321,0.379 +2016-03-13 17:00:00,0.275,0.321,0.379 +2016-03-13 18:00:00,0.275,0.321,0.379 +2016-03-13 19:00:00,0.275,0.321,0.37799999999999995 +2016-03-13 20:00:00,0.275,0.321,0.37799999999999995 +2016-03-13 21:00:00,0.275,0.321,0.37799999999999995 +2016-03-13 22:00:00,0.275,0.321,0.37799999999999995 +2016-03-13 23:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 00:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 01:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 02:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 03:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 04:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 05:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 06:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 07:00:00,0.27399999999999997,0.321,0.37799999999999995 +2016-03-14 08:00:00,0.275,0.321,0.37799999999999995 +2016-03-14 09:00:00,0.275,0.32,0.37799999999999995 +2016-03-14 10:00:00,0.27399999999999997,0.32,0.37799999999999995 +2016-03-14 11:00:00,0.27399999999999997,0.32,0.37799999999999995 +2016-03-14 12:00:00,0.27399999999999997,0.32,0.37799999999999995 +2016-03-14 13:00:00,0.27399999999999997,0.32,0.37799999999999995 +2016-03-14 14:00:00,0.27399999999999997,0.32,0.377 +2016-03-14 15:00:00,0.27399999999999997,0.32,0.377 +2016-03-14 16:00:00,0.27399999999999997,0.32,0.377 +2016-03-14 17:00:00,0.27399999999999997,0.32,0.376 +2016-03-14 18:00:00,0.27399999999999997,0.32,0.376 +2016-03-14 19:00:00,0.27399999999999997,0.32,0.376 +2016-03-14 20:00:00,0.27399999999999997,0.32,0.376 +2016-03-14 21:00:00,0.27399999999999997,0.32,0.376 +2016-03-14 22:00:00,0.27399999999999997,0.32,0.376 +2016-03-14 23:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 00:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 01:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 02:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 03:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 04:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 05:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 06:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 07:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 08:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 09:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 10:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 11:00:00,0.27399999999999997,0.319,0.376 +2016-03-15 12:00:00,0.273,0.32,0.376 +2016-03-15 13:00:00,0.273,0.32,0.376 +2016-03-15 14:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 15:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 16:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 17:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 18:00:00,0.273,0.32,0.376 +2016-03-15 19:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 20:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 21:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 22:00:00,0.27399999999999997,0.32,0.376 +2016-03-15 23:00:00,0.27399999999999997,0.32,0.376 +2016-03-16 00:00:00,0.27399999999999997,0.32,0.375 +2016-03-16 01:00:00,0.273,0.32,0.375 +2016-03-16 02:00:00,0.273,0.32,0.375 +2016-03-16 03:00:00,0.27399999999999997,0.32,0.375 +2016-03-16 04:00:00,0.27399999999999997,0.32,0.375 +2016-03-16 05:00:00,0.27399999999999997,0.32,0.375 +2016-03-16 06:00:00,0.273,0.32,0.375 +2016-03-16 07:00:00,0.27399999999999997,0.32,0.375 +2016-03-16 08:00:00,0.273,0.319,0.375 +2016-03-16 09:00:00,0.273,0.319,0.375 +2016-03-16 10:00:00,0.273,0.319,0.375 +2016-03-16 11:00:00,0.273,0.319,0.375 +2016-03-16 12:00:00,0.273,0.319,0.375 +2016-03-16 13:00:00,0.273,0.319,0.375 +2016-03-16 14:00:00,0.273,0.319,0.375 +2016-03-16 15:00:00,0.273,0.319,0.375 +2016-03-16 16:00:00,0.273,0.319,0.375 +2016-03-16 17:00:00,0.273,0.319,0.375 +2016-03-16 18:00:00,0.273,0.319,0.375 +2016-03-16 19:00:00,0.273,0.319,0.375 +2016-03-16 20:00:00,0.273,0.319,0.375 +2016-03-16 21:00:00,0.273,0.319,0.375 +2016-03-16 22:00:00,0.273,0.319,0.375 +2016-03-16 23:00:00,0.273,0.319,0.375 +2016-03-17 00:00:00,0.273,0.319,0.375 +2016-03-17 01:00:00,0.273,0.319,0.375 +2016-03-17 02:00:00,0.273,0.319,0.374 +2016-03-17 03:00:00,0.273,0.319,0.374 +2016-03-17 04:00:00,0.273,0.319,0.374 +2016-03-17 05:00:00,0.273,0.319,0.374 +2016-03-17 06:00:00,0.273,0.319,0.374 +2016-03-17 07:00:00,0.273,0.319,0.374 +2016-03-17 08:00:00,0.273,0.319,0.374 +2016-03-17 09:00:00,0.273,0.319,0.374 +2016-03-17 10:00:00,0.273,0.319,0.375 +2016-03-17 11:00:00,0.273,0.319,0.375 +2016-03-17 12:00:00,0.272,0.319,0.374 +2016-03-17 13:00:00,0.272,0.319,0.374 +2016-03-17 14:00:00,0.272,0.319,0.374 +2016-03-17 15:00:00,0.272,0.319,0.374 +2016-03-17 16:00:00,0.272,0.319,0.374 +2016-03-17 17:00:00,0.272,0.319,0.374 +2016-03-17 18:00:00,0.272,0.319,0.374 +2016-03-17 19:00:00,0.273,0.319,0.374 +2016-03-17 20:00:00,0.273,0.319,0.374 +2016-03-17 21:00:00,0.273,0.319,0.374 +2016-03-17 22:00:00,0.273,0.319,0.374 +2016-03-17 23:00:00,0.273,0.319,0.374 +2016-03-18 00:00:00,0.273,0.319,0.374 +2016-03-18 01:00:00,0.273,0.319,0.374 +2016-03-18 02:00:00,0.272,0.319,0.374 +2016-03-18 03:00:00,0.273,0.319,0.374 +2016-03-18 04:00:00,0.272,0.319,0.374 +2016-03-18 05:00:00,0.272,0.319,0.374 +2016-03-18 06:00:00,0.272,0.319,0.374 +2016-03-18 07:00:00,0.272,0.319,0.374 +2016-03-18 08:00:00,0.272,0.319,0.374 +2016-03-18 09:00:00,0.272,0.319,0.374 +2016-03-18 10:00:00,0.272,0.319,0.375 +2016-03-18 11:00:00,0.272,0.319,0.374 +2016-03-18 12:00:00,0.272,0.319,0.374 +2016-03-18 13:00:00,0.272,0.319,0.374 +2016-03-18 14:00:00,0.272,0.319,0.374 +2016-03-18 15:00:00,0.272,0.319,0.374 +2016-03-18 16:00:00,0.272,0.319,0.373 +2016-03-18 17:00:00,0.272,0.319,0.373 +2016-03-18 18:00:00,0.272,0.319,0.373 +2016-03-18 19:00:00,0.272,0.319,0.373 +2016-03-18 20:00:00,0.272,0.319,0.373 +2016-03-18 21:00:00,0.272,0.319,0.373 +2016-03-18 22:00:00,0.272,0.319,0.373 +2016-03-18 23:00:00,0.272,0.319,0.373 +2016-03-19 00:00:00,0.272,0.319,0.373 +2016-03-19 01:00:00,0.272,0.319,0.373 +2016-03-19 02:00:00,0.272,0.319,0.373 +2016-03-19 03:00:00,0.272,0.319,0.373 +2016-03-19 04:00:00,0.272,0.319,0.373 +2016-03-19 05:00:00,0.272,0.319,0.373 +2016-03-19 06:00:00,0.272,0.319,0.373 +2016-03-19 07:00:00,0.272,0.319,0.373 +2016-03-19 08:00:00,0.272,0.319,0.373 +2016-03-19 09:00:00,0.272,0.319,0.373 +2016-03-19 10:00:00,0.272,0.319,0.373 +2016-03-19 11:00:00,0.272,0.318,0.373 +2016-03-19 12:00:00,0.272,0.316,0.373 +2016-03-19 13:00:00,0.272,0.317,0.373 +2016-03-19 14:00:00,0.272,0.316,0.373 +2016-03-19 15:00:00,0.272,0.315,0.373 +2016-03-19 16:00:00,0.272,0.315,0.373 +2016-03-19 17:00:00,0.272,0.315,0.373 +2016-03-19 18:00:00,0.272,0.314,0.373 +2016-03-19 19:00:00,0.272,0.314,0.373 +2016-03-19 20:00:00,0.272,0.313,0.373 +2016-03-19 21:00:00,0.272,0.315,0.373 +2016-03-19 22:00:00,0.272,0.315,0.373 +2016-03-19 23:00:00,0.272,0.317,0.373 +2016-03-20 00:00:00,0.272,0.317,0.373 +2016-03-20 01:00:00,0.272,0.317,0.373 +2016-03-20 02:00:00,0.272,0.317,0.373 +2016-03-20 03:00:00,0.272,0.317,0.37200000000000005 +2016-03-20 04:00:00,0.272,0.317,0.373 +2016-03-20 05:00:00,0.272,0.317,0.37200000000000005 +2016-03-20 06:00:00,0.272,0.317,0.37200000000000005 +2016-03-20 07:00:00,0.272,0.317,0.37200000000000005 +2016-03-20 08:00:00,0.272,0.318,0.37200000000000005 +2016-03-20 09:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 10:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 11:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 12:00:00,0.272,0.318,0.37200000000000005 +2016-03-20 13:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 14:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 15:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 16:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 17:00:00,0.272,0.319,0.37200000000000005 +2016-03-20 18:00:00,0.272,0.32,0.37200000000000005 +2016-03-20 19:00:00,0.272,0.32,0.37200000000000005 +2016-03-20 20:00:00,0.272,0.32,0.37200000000000005 +2016-03-20 21:00:00,0.272,0.321,0.37200000000000005 +2016-03-20 22:00:00,0.272,0.321,0.37200000000000005 +2016-03-20 23:00:00,0.272,0.321,0.37200000000000005 +2016-03-21 00:00:00,0.271,0.321,0.37200000000000005 +2016-03-21 01:00:00,0.272,0.321,0.37200000000000005 +2016-03-21 02:00:00,0.272,0.321,0.37200000000000005 +2016-03-21 03:00:00,0.271,0.321,0.371 +2016-03-21 04:00:00,0.271,0.321,0.37200000000000005 +2016-03-21 05:00:00,0.272,0.321,0.371 +2016-03-21 06:00:00,0.272,0.32,0.371 +2016-03-21 07:00:00,0.272,0.32,0.371 +2016-03-21 08:00:00,0.271,0.32,0.371 +2016-03-21 09:00:00,0.271,0.32,0.371 +2016-03-21 10:00:00,0.271,0.32,0.371 +2016-03-21 11:00:00,0.271,0.319,0.36700000000000005 +2016-03-21 12:00:00,0.271,0.319,0.36700000000000005 +2016-03-21 13:00:00,0.271,0.316,0.36700000000000005 +2016-03-21 14:00:00,0.272,0.312,0.368 +2016-03-21 15:00:00,0.272,0.316,0.368 +2016-03-21 16:00:00,0.271,0.318,0.36700000000000005 +2016-03-21 17:00:00,0.271,0.319,0.36700000000000005 +2016-03-21 18:00:00,0.272,0.319,0.36700000000000005 +2016-03-21 19:00:00,0.272,0.319,0.36700000000000005 +2016-03-21 20:00:00,0.271,0.32,0.36700000000000005 +2016-03-21 21:00:00,0.271,0.32,0.36700000000000005 +2016-03-21 22:00:00,0.271,0.32,0.36700000000000005 +2016-03-21 23:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 00:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 01:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 02:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 03:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 04:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 05:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 06:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 07:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 08:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 09:00:00,0.271,0.32,0.36700000000000005 +2016-03-22 10:00:00,0.271,0.319,0.36700000000000005 +2016-03-22 11:00:00,0.271,0.319,0.366 +2016-03-22 12:00:00,0.271,0.319,0.366 +2016-03-22 13:00:00,0.271,0.319,0.366 +2016-03-22 14:00:00,0.271,0.319,0.366 +2016-03-22 15:00:00,0.271,0.319,0.366 +2016-03-22 16:00:00,0.271,0.32,0.366 +2016-03-22 17:00:00,0.271,0.319,0.366 +2016-03-22 18:00:00,0.271,0.32,0.366 +2016-03-22 19:00:00,0.271,0.319,0.366 +2016-03-22 20:00:00,0.271,0.315,0.366 +2016-03-22 21:00:00,0.271,0.34299999999999997,0.36700000000000005 +2016-03-22 22:00:00,0.271,0.344,0.368 +2016-03-22 23:00:00,0.27,0.373,0.368 +2016-03-23 00:00:00,0.26899999999999996,0.447,0.368 +2016-03-23 01:00:00,0.26899999999999996,0.45399999999999996,0.368 +2016-03-23 02:00:00,0.26899999999999996,0.41700000000000004,0.368 +2016-03-23 03:00:00,0.26899999999999996,0.36200000000000004,0.368 +2016-03-23 04:00:00,0.26899999999999996,0.363,0.368 +2016-03-23 05:00:00,0.26899999999999996,0.396,0.368 +2016-03-23 06:00:00,0.26899999999999996,0.396,0.368 +2016-03-23 07:00:00,0.26899999999999996,0.381,0.368 +2016-03-23 08:00:00,0.26899999999999996,0.37,0.368 +2016-03-23 09:00:00,0.26899999999999996,0.36700000000000005,0.368 +2016-03-23 10:00:00,0.27,0.366,0.36700000000000005 +2016-03-23 11:00:00,0.27,0.365,0.36700000000000005 +2016-03-23 12:00:00,0.27,0.35600000000000004,0.36700000000000005 +2016-03-23 13:00:00,0.271,0.355,0.36700000000000005 +2016-03-23 14:00:00,0.271,0.353,0.366 +2016-03-23 15:00:00,0.271,0.35200000000000004,0.366 +2016-03-23 16:00:00,0.271,0.35,0.366 +2016-03-23 17:00:00,0.271,0.349,0.366 +2016-03-23 18:00:00,0.271,0.348,0.366 +2016-03-23 19:00:00,0.271,0.348,0.366 +2016-03-23 20:00:00,0.271,0.34700000000000003,0.366 +2016-03-23 21:00:00,0.271,0.345,0.366 +2016-03-23 22:00:00,0.271,0.344,0.366 +2016-03-23 23:00:00,0.271,0.34299999999999997,0.366 +2016-03-24 00:00:00,0.271,0.34299999999999997,0.366 +2016-03-24 01:00:00,0.271,0.341,0.36 +2016-03-24 02:00:00,0.271,0.341,0.354 +2016-03-24 03:00:00,0.271,0.33899999999999997,0.354 +2016-03-24 04:00:00,0.271,0.33899999999999997,0.353 +2016-03-24 05:00:00,0.271,0.336,0.353 +2016-03-24 06:00:00,0.271,0.33399999999999996,0.353 +2016-03-24 07:00:00,0.271,0.33399999999999996,0.353 +2016-03-24 08:00:00,0.271,0.33399999999999996,0.353 +2016-03-24 09:00:00,0.271,0.33399999999999996,0.353 +2016-03-24 10:00:00,0.271,0.33399999999999996,0.353 +2016-03-24 11:00:00,0.271,0.33399999999999996,0.353 +2016-03-24 12:00:00,0.271,0.33399999999999996,0.353 +2016-03-24 13:00:00,0.271,0.327,0.353 +2016-03-24 14:00:00,0.271,0.325,0.353 +2016-03-24 15:00:00,0.271,0.332,0.353 +2016-03-24 16:00:00,0.271,0.341,0.353 +2016-03-24 17:00:00,0.271,0.349,0.353 +2016-03-24 18:00:00,0.271,0.35100000000000003,0.353 +2016-03-24 19:00:00,0.271,0.35100000000000003,0.353 +2016-03-24 20:00:00,0.271,0.349,0.353 +2016-03-24 21:00:00,0.271,0.348,0.353 +2016-03-24 22:00:00,0.271,0.34700000000000003,0.353 +2016-03-24 23:00:00,0.271,0.344,0.35200000000000004 +2016-03-25 00:00:00,0.271,0.344,0.353 +2016-03-25 01:00:00,0.271,0.34299999999999997,0.35200000000000004 +2016-03-25 02:00:00,0.271,0.341,0.35200000000000004 +2016-03-25 03:00:00,0.271,0.341,0.353 +2016-03-25 04:00:00,0.271,0.33899999999999997,0.353 +2016-03-25 05:00:00,0.27,0.33899999999999997,0.353 +2016-03-25 06:00:00,0.27,0.33899999999999997,0.35200000000000004 +2016-03-25 07:00:00,0.27,0.33799999999999997,0.35200000000000004 +2016-03-25 08:00:00,0.27,0.33799999999999997,0.353 +2016-03-25 09:00:00,0.26899999999999996,0.33799999999999997,0.354 +2016-03-25 10:00:00,0.26899999999999996,0.337,0.354 +2016-03-25 11:00:00,0.264,0.336,0.354 +2016-03-25 12:00:00,0.261,0.336,0.355 +2016-03-25 13:00:00,0.26,0.336,0.355 +2016-03-25 14:00:00,0.26,0.335,0.35600000000000004 +2016-03-25 15:00:00,0.26,0.32899999999999996,0.35600000000000004 +2016-03-25 16:00:00,0.26,0.326,0.35600000000000004 +2016-03-25 17:00:00,0.261,0.32899999999999996,0.35700000000000004 +2016-03-25 18:00:00,0.26,0.341,0.35700000000000004 +2016-03-25 19:00:00,0.261,0.342,0.35700000000000004 +2016-03-25 20:00:00,0.261,0.34600000000000003,0.35700000000000004 +2016-03-25 21:00:00,0.262,0.349,0.35700000000000004 +2016-03-25 22:00:00,0.264,0.35100000000000003,0.35700000000000004 +2016-03-25 23:00:00,0.265,0.354,0.35700000000000004 +2016-03-26 00:00:00,0.266,0.355,0.35700000000000004 +2016-03-26 01:00:00,0.267,0.348,0.35700000000000004 +2016-03-26 02:00:00,0.267,0.436,0.35700000000000004 +2016-03-26 03:00:00,0.268,0.457,0.35700000000000004 +2016-03-26 04:00:00,0.268,0.461,0.35700000000000004 +2016-03-26 05:00:00,0.26899999999999996,0.46299999999999997,0.35700000000000004 +2016-03-26 06:00:00,0.26899999999999996,0.46299999999999997,0.35700000000000004 +2016-03-26 07:00:00,0.273,0.46299999999999997,0.35600000000000004 +2016-03-26 08:00:00,0.271,0.46299999999999997,0.35600000000000004 +2016-03-26 09:00:00,0.26899999999999996,0.46299999999999997,0.35700000000000004 +2016-03-26 10:00:00,0.273,0.46299999999999997,0.35600000000000004 +2016-03-26 11:00:00,0.275,0.46299999999999997,0.355 +2016-03-26 12:00:00,0.275,0.462,0.355 +2016-03-26 13:00:00,0.275,0.462,0.354 +2016-03-26 14:00:00,0.275,0.46,0.354 +2016-03-26 15:00:00,0.275,0.46,0.354 +2016-03-26 16:00:00,0.276,0.46,0.354 +2016-03-26 17:00:00,0.276,0.46,0.354 +2016-03-26 18:00:00,0.276,0.45899999999999996,0.354 +2016-03-26 19:00:00,0.276,0.45899999999999996,0.354 +2016-03-26 20:00:00,0.276,0.45799999999999996,0.354 +2016-03-26 21:00:00,0.276,0.45799999999999996,0.354 +2016-03-26 22:00:00,0.276,0.45799999999999996,0.354 +2016-03-26 23:00:00,0.276,0.457,0.354 +2016-03-27 00:00:00,0.275,0.457,0.354 +2016-03-27 01:00:00,0.275,0.456,0.354 +2016-03-27 02:00:00,0.275,0.456,0.354 +2016-03-27 03:00:00,0.275,0.457,0.354 +2016-03-27 04:00:00,0.275,0.45799999999999996,0.354 +2016-03-27 05:00:00,0.275,0.45799999999999996,0.354 +2016-03-27 06:00:00,0.275,0.46,0.354 +2016-03-27 07:00:00,0.275,0.46,0.354 +2016-03-27 08:00:00,0.275,0.461,0.354 +2016-03-27 09:00:00,0.275,0.462,0.354 +2016-03-27 10:00:00,0.272,0.46299999999999997,0.355 +2016-03-27 11:00:00,0.266,0.46299999999999997,0.35600000000000004 +2016-03-27 12:00:00,0.267,0.462,0.35600000000000004 +2016-03-27 13:00:00,0.272,0.462,0.35600000000000004 +2016-03-27 14:00:00,0.275,0.46299999999999997,0.355 +2016-03-27 15:00:00,0.276,0.465,0.354 +2016-03-27 16:00:00,0.276,0.467,0.354 +2016-03-27 17:00:00,0.276,0.467,0.354 +2016-03-27 18:00:00,0.276,0.467,0.353 +2016-03-27 19:00:00,0.27699999999999997,0.46799999999999997,0.353 +2016-03-27 20:00:00,0.276,0.46799999999999997,0.353 +2016-03-27 21:00:00,0.276,0.46799999999999997,0.353 +2016-03-27 22:00:00,0.276,0.47,0.353 +2016-03-27 23:00:00,0.27699999999999997,0.47,0.353 +2016-03-28 00:00:00,0.276,0.47,0.353 +2016-03-28 01:00:00,0.276,0.47,0.353 +2016-03-28 02:00:00,0.276,0.45299999999999996,0.353 +2016-03-28 03:00:00,0.276,0.43700000000000006,0.353 +2016-03-28 04:00:00,0.276,0.42700000000000005,0.353 +2016-03-28 05:00:00,0.276,0.42100000000000004,0.353 +2016-03-28 06:00:00,0.276,0.413,0.353 +2016-03-28 07:00:00,0.276,0.40399999999999997,0.353 +2016-03-28 08:00:00,0.276,0.397,0.353 +2016-03-28 09:00:00,0.276,0.39299999999999996,0.353 +2016-03-28 10:00:00,0.276,0.386,0.353 +2016-03-28 11:00:00,0.276,0.381,0.353 +2016-03-28 12:00:00,0.276,0.37799999999999995,0.353 +2016-03-28 13:00:00,0.276,0.377,0.353 +2016-03-28 14:00:00,0.276,0.375,0.353 +2016-03-28 15:00:00,0.276,0.375,0.353 +2016-03-28 16:00:00,0.276,0.373,0.353 +2016-03-28 17:00:00,0.282,0.373,0.366 +2016-03-28 18:00:00,0.27899999999999997,0.373,0.375 +2016-03-28 19:00:00,0.282,0.36700000000000005,0.374 +2016-03-28 20:00:00,0.29100000000000004,0.358,0.375 +2016-03-28 21:00:00,0.292,0.35600000000000004,0.377 +2016-03-28 22:00:00,0.29100000000000004,0.355,0.37799999999999995 +2016-03-28 23:00:00,0.28600000000000003,0.355,0.37799999999999995 +2016-03-29 00:00:00,0.28800000000000003,0.355,0.37799999999999995 +2016-03-29 01:00:00,0.29,0.353,0.37799999999999995 +2016-03-29 02:00:00,0.287,0.35200000000000004,0.379 +2016-03-29 03:00:00,0.28300000000000003,0.35,0.379 +2016-03-29 04:00:00,0.27899999999999997,0.34600000000000003,0.38 +2016-03-29 05:00:00,0.27899999999999997,0.34600000000000003,0.38 +2016-03-29 06:00:00,0.284,0.345,0.381 +2016-03-29 07:00:00,0.28800000000000003,0.34299999999999997,0.381 +2016-03-29 08:00:00,0.29,0.341,0.381 +2016-03-29 09:00:00,0.29100000000000004,0.34,0.381 +2016-03-29 10:00:00,0.292,0.341,0.382 +2016-03-29 11:00:00,0.292,0.342,0.382 +2016-03-29 12:00:00,0.292,0.34299999999999997,0.382 +2016-03-29 13:00:00,0.29100000000000004,0.344,0.382 +2016-03-29 14:00:00,0.29100000000000004,0.34600000000000003,0.382 +2016-03-29 15:00:00,0.29,0.345,0.382 +2016-03-29 16:00:00,0.29,0.342,0.382 +2016-03-29 17:00:00,0.289,0.344,0.382 +2016-03-29 18:00:00,0.289,0.344,0.382 +2016-03-29 19:00:00,0.289,0.344,0.382 +2016-03-29 20:00:00,0.28800000000000003,0.344,0.382 +2016-03-29 21:00:00,0.28800000000000003,0.344,0.382 +2016-03-29 22:00:00,0.287,0.344,0.382 +2016-03-29 23:00:00,0.28600000000000003,0.344,0.382 +2016-03-30 00:00:00,0.28600000000000003,0.344,0.382 +2016-03-30 01:00:00,0.285,0.34299999999999997,0.382 +2016-03-30 02:00:00,0.28,0.34299999999999997,0.381 +2016-03-30 03:00:00,0.275,0.34299999999999997,0.381 +2016-03-30 04:00:00,0.275,0.34299999999999997,0.381 +2016-03-30 05:00:00,0.27699999999999997,0.341,0.381 +2016-03-30 06:00:00,0.27899999999999997,0.341,0.382 +2016-03-30 07:00:00,0.281,0.33399999999999996,0.382 +2016-03-30 08:00:00,0.28300000000000003,0.337,0.382 +2016-03-30 09:00:00,0.284,0.336,0.382 +2016-03-30 10:00:00,0.27899999999999997,0.33799999999999997,0.382 +2016-03-30 11:00:00,0.278,0.33799999999999997,0.381 +2016-03-30 12:00:00,0.282,0.33899999999999997,0.381 +2016-03-30 13:00:00,0.28300000000000003,0.342,0.381 +2016-03-30 14:00:00,0.28300000000000003,0.342,0.382 +2016-03-30 15:00:00,0.29,0.34299999999999997,0.38299999999999995 +2016-03-30 16:00:00,0.293,0.344,0.38299999999999995 +2016-03-30 17:00:00,0.293,0.344,0.38299999999999995 +2016-03-30 18:00:00,0.292,0.344,0.38299999999999995 +2016-03-30 19:00:00,0.292,0.34299999999999997,0.38299999999999995 +2016-03-30 20:00:00,0.29100000000000004,0.337,0.38299999999999995 +2016-03-30 21:00:00,0.29,0.341,0.38299999999999995 +2016-03-30 22:00:00,0.289,0.344,0.38299999999999995 +2016-03-30 23:00:00,0.28800000000000003,0.34600000000000003,0.38299999999999995 +2016-03-31 00:00:00,0.28800000000000003,0.34700000000000003,0.38299999999999995 +2016-03-31 01:00:00,0.287,0.34700000000000003,0.38299999999999995 +2016-03-31 02:00:00,0.287,0.34700000000000003,0.38299999999999995 +2016-03-31 03:00:00,0.28600000000000003,0.34700000000000003,0.38299999999999995 +2016-03-31 04:00:00,0.28600000000000003,0.34600000000000003,0.38299999999999995 +2016-03-31 05:00:00,0.28600000000000003,0.34600000000000003,0.38299999999999995 +2016-03-31 06:00:00,0.28600000000000003,0.345,0.384 +2016-03-31 07:00:00,0.285,0.344,0.384 +2016-03-31 08:00:00,0.285,0.34299999999999997,0.384 +2016-03-31 09:00:00,0.285,0.341,0.384 +2016-03-31 10:00:00,0.285,0.341,0.384 +2016-03-31 11:00:00,0.284,0.341,0.384 +2016-03-31 12:00:00,0.278,0.342,0.384 +2016-03-31 13:00:00,0.27899999999999997,0.344,0.38299999999999995 +2016-03-31 14:00:00,0.28300000000000003,0.344,0.38299999999999995 +2016-03-31 15:00:00,0.28300000000000003,0.344,0.38299999999999995 +2016-03-31 16:00:00,0.284,0.344,0.38299999999999995 +2016-03-31 17:00:00,0.287,0.344,0.38299999999999995 +2016-03-31 18:00:00,0.29,0.344,0.38299999999999995 +2016-03-31 19:00:00,0.28800000000000003,0.344,0.384 +2016-03-31 20:00:00,0.28300000000000003,0.34299999999999997,0.385 +2016-03-31 21:00:00,0.28,0.34299999999999997,0.385 +2016-03-31 22:00:00,0.285,0.34299999999999997,0.384 +2016-03-31 23:00:00,0.297,0.34299999999999997,0.385 +2016-04-01 00:00:00,0.298,0.34299999999999997,0.386 +2016-04-01 01:00:00,0.395,0.341,0.386 +2016-04-01 02:00:00,0.43,0.341,0.386 +2016-04-01 03:00:00,0.429,0.341,0.386 +2016-04-01 04:00:00,0.429,0.336,0.386 +2016-04-01 05:00:00,0.429,0.33299999999999996,0.386 +2016-04-01 06:00:00,0.428,0.33399999999999996,0.387 +2016-04-01 07:00:00,0.426,0.335,0.387 +2016-04-01 08:00:00,0.42200000000000004,0.336,0.387 +2016-04-01 09:00:00,0.414,0.33299999999999996,0.387 +2016-04-01 10:00:00,0.40299999999999997,0.326,0.38799999999999996 +2016-04-01 11:00:00,0.40299999999999997,0.331,0.38799999999999996 +2016-04-01 12:00:00,0.414,0.335,0.38799999999999996 +2016-04-01 13:00:00,0.42100000000000004,0.33799999999999997,0.389 +2016-04-01 14:00:00,0.424,0.33799999999999997,0.389 +2016-04-01 15:00:00,0.426,0.33799999999999997,0.389 +2016-04-01 16:00:00,0.428,0.33799999999999997,0.389 +2016-04-01 17:00:00,0.43,0.33799999999999997,0.39 +2016-04-01 18:00:00,0.43200000000000005,0.33799999999999997,0.39 +2016-04-01 19:00:00,0.434,0.33799999999999997,0.39 +2016-04-01 20:00:00,0.436,0.33799999999999997,0.39 +2016-04-01 21:00:00,0.43799999999999994,0.33799999999999997,0.391 +2016-04-01 22:00:00,0.43799999999999994,0.33799999999999997,0.391 +2016-04-01 23:00:00,0.425,0.33799999999999997,0.391 +2016-04-02 00:00:00,0.40399999999999997,0.33799999999999997,0.391 +2016-04-02 01:00:00,0.369,0.337,0.391 +2016-04-02 02:00:00,0.34,0.337,0.391 +2016-04-02 03:00:00,0.322,0.337,0.391 +2016-04-02 04:00:00,0.31,0.336,0.392 +2016-04-02 05:00:00,0.306,0.336,0.392 +2016-04-02 06:00:00,0.301,0.336,0.392 +2016-04-02 07:00:00,0.29600000000000004,0.33399999999999996,0.392 +2016-04-02 08:00:00,0.295,0.33399999999999996,0.392 +2016-04-02 09:00:00,0.29100000000000004,0.33399999999999996,0.391 +2016-04-02 10:00:00,0.29,0.33399999999999996,0.392 +2016-04-02 11:00:00,0.29,0.33399999999999996,0.392 +2016-04-02 12:00:00,0.29,0.33299999999999996,0.392 +2016-04-02 13:00:00,0.289,0.33399999999999996,0.392 +2016-04-02 14:00:00,0.289,0.33399999999999996,0.392 +2016-04-02 15:00:00,0.289,0.33399999999999996,0.392 +2016-04-02 16:00:00,0.28800000000000003,0.33399999999999996,0.392 +2016-04-02 17:00:00,0.28800000000000003,0.33299999999999996,0.392 +2016-04-02 18:00:00,0.287,0.33299999999999996,0.392 +2016-04-02 19:00:00,0.287,0.33299999999999996,0.392 +2016-04-02 20:00:00,0.287,0.33299999999999996,0.392 +2016-04-02 21:00:00,0.28600000000000003,0.33299999999999996,0.392 +2016-04-02 22:00:00,0.28600000000000003,0.33299999999999996,0.392 +2016-04-02 23:00:00,0.285,0.332,0.392 +2016-04-03 00:00:00,0.285,0.332,0.39299999999999996 +2016-04-03 01:00:00,0.285,0.332,0.39299999999999996 +2016-04-03 02:00:00,0.284,0.332,0.39299999999999996 +2016-04-03 03:00:00,0.284,0.332,0.39299999999999996 +2016-04-03 04:00:00,0.284,0.332,0.39299999999999996 +2016-04-03 05:00:00,0.284,0.332,0.39299999999999996 +2016-04-03 06:00:00,0.28300000000000003,0.332,0.39299999999999996 +2016-04-03 07:00:00,0.28300000000000003,0.332,0.39299999999999996 +2016-04-03 08:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 09:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 10:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 11:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 12:00:00,0.28300000000000003,0.33,0.39299999999999996 +2016-04-03 13:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 14:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 15:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 16:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 17:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 18:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 19:00:00,0.28300000000000003,0.331,0.39299999999999996 +2016-04-03 20:00:00,0.282,0.331,0.39299999999999996 +2016-04-03 21:00:00,0.282,0.331,0.39299999999999996 +2016-04-03 22:00:00,0.282,0.331,0.39299999999999996 +2016-04-03 23:00:00,0.282,0.331,0.39299999999999996 +2016-04-04 00:00:00,0.281,0.331,0.39299999999999996 +2016-04-04 01:00:00,0.28,0.331,0.392 +2016-04-04 02:00:00,0.27899999999999997,0.331,0.392 +2016-04-04 03:00:00,0.27899999999999997,0.331,0.392 +2016-04-04 04:00:00,0.278,0.331,0.392 +2016-04-04 05:00:00,0.27399999999999997,0.331,0.391 +2016-04-04 06:00:00,0.27,0.331,0.391 +2016-04-04 07:00:00,0.271,0.331,0.391 +2016-04-04 08:00:00,0.272,0.331,0.391 +2016-04-04 09:00:00,0.273,0.331,0.392 +2016-04-04 10:00:00,0.27899999999999997,0.331,0.392 +2016-04-04 11:00:00,0.282,0.33,0.392 +2016-04-04 12:00:00,0.282,0.33,0.392 +2016-04-04 13:00:00,0.28,0.33,0.392 +2016-04-04 14:00:00,0.282,0.33,0.392 +2016-04-04 15:00:00,0.28300000000000003,0.33,0.39299999999999996 +2016-04-04 16:00:00,0.28300000000000003,0.33,0.39299999999999996 +2016-04-04 17:00:00,0.282,0.33,0.39299999999999996 +2016-04-04 18:00:00,0.28300000000000003,0.33,0.39299999999999996 +2016-04-04 19:00:00,0.282,0.33,0.39299999999999996 +2016-04-04 20:00:00,0.282,0.33,0.39299999999999996 +2016-04-04 21:00:00,0.282,0.33,0.39299999999999996 +2016-04-04 22:00:00,0.282,0.33,0.39299999999999996 +2016-04-04 23:00:00,0.281,0.33,0.39299999999999996 +2016-04-05 00:00:00,0.281,0.33,0.392 +2016-04-05 01:00:00,0.281,0.33,0.392 +2016-04-05 02:00:00,0.28,0.33,0.392 +2016-04-05 03:00:00,0.27899999999999997,0.33,0.392 +2016-04-05 04:00:00,0.272,0.33,0.391 +2016-04-05 05:00:00,0.273,0.32899999999999996,0.391 +2016-04-05 06:00:00,0.275,0.32899999999999996,0.391 +2016-04-05 07:00:00,0.278,0.32899999999999996,0.391 +2016-04-05 08:00:00,0.27899999999999997,0.32899999999999996,0.392 +2016-04-05 09:00:00,0.27899999999999997,0.32899999999999996,0.392 +2016-04-05 10:00:00,0.27899999999999997,0.32899999999999996,0.392 +2016-04-05 11:00:00,0.27899999999999997,0.32899999999999996,0.392 +2016-04-05 12:00:00,0.28,0.32899999999999996,0.392 +2016-04-05 13:00:00,0.284,0.32899999999999996,0.392 +2016-04-05 14:00:00,0.28300000000000003,0.32899999999999996,0.392 +2016-04-05 15:00:00,0.285,0.32799999999999996,0.39299999999999996 +2016-04-05 16:00:00,0.284,0.32799999999999996,0.39299999999999996 +2016-04-05 17:00:00,0.275,0.327,0.391 +2016-04-05 18:00:00,0.278,0.327,0.392 +2016-04-05 19:00:00,0.27899999999999997,0.32799999999999996,0.392 +2016-04-05 20:00:00,0.278,0.32799999999999996,0.392 +2016-04-05 21:00:00,0.278,0.32799999999999996,0.39299999999999996 +2016-04-05 22:00:00,0.27699999999999997,0.32899999999999996,0.39299999999999996 +2016-04-05 23:00:00,0.27699999999999997,0.32899999999999996,0.39299999999999996 +2016-04-06 00:00:00,0.276,0.32799999999999996,0.39299999999999996 +2016-04-06 01:00:00,0.276,0.32799999999999996,0.39299999999999996 +2016-04-06 02:00:00,0.275,0.327,0.39299999999999996 +2016-04-06 03:00:00,0.275,0.327,0.39299999999999996 +2016-04-06 04:00:00,0.27399999999999997,0.327,0.39299999999999996 +2016-04-06 05:00:00,0.273,0.327,0.39299999999999996 +2016-04-06 06:00:00,0.273,0.327,0.39299999999999996 +2016-04-06 07:00:00,0.272,0.327,0.39299999999999996 +2016-04-06 08:00:00,0.272,0.327,0.39299999999999996 +2016-04-06 09:00:00,0.275,0.327,0.39299999999999996 +2016-04-06 10:00:00,0.281,0.327,0.39399999999999996 +2016-04-06 11:00:00,0.282,0.327,0.39399999999999996 +2016-04-06 12:00:00,0.28300000000000003,0.327,0.39399999999999996 +2016-04-06 13:00:00,0.28300000000000003,0.327,0.39399999999999996 +2016-04-06 14:00:00,0.28300000000000003,0.327,0.39399999999999996 +2016-04-06 15:00:00,0.28300000000000003,0.327,0.39399999999999996 +2016-04-06 16:00:00,0.28300000000000003,0.327,0.39399999999999996 +2016-04-06 17:00:00,0.28300000000000003,0.327,0.39399999999999996 +2016-04-06 18:00:00,0.282,0.327,0.39399999999999996 +2016-04-06 19:00:00,0.282,0.327,0.39399999999999996 +2016-04-06 20:00:00,0.282,0.327,0.39399999999999996 +2016-04-06 21:00:00,0.282,0.327,0.39399999999999996 +2016-04-06 22:00:00,0.281,0.327,0.39399999999999996 +2016-04-06 23:00:00,0.281,0.324,0.39399999999999996 +2016-04-07 00:00:00,0.281,0.324,0.39399999999999996 +2016-04-07 01:00:00,0.27699999999999997,0.324,0.39399999999999996 +2016-04-07 02:00:00,0.272,0.324,0.39299999999999996 +2016-04-07 03:00:00,0.272,0.324,0.39299999999999996 +2016-04-07 04:00:00,0.272,0.324,0.39299999999999996 +2016-04-07 05:00:00,0.273,0.324,0.39299999999999996 +2016-04-07 06:00:00,0.272,0.324,0.39299999999999996 +2016-04-07 07:00:00,0.26899999999999996,0.324,0.392 +2016-04-07 08:00:00,0.267,0.325,0.39299999999999996 +2016-04-07 09:00:00,0.271,0.325,0.39299999999999996 +2016-04-07 10:00:00,0.27899999999999997,0.324,0.39399999999999996 +2016-04-07 11:00:00,0.28,0.324,0.39399999999999996 +2016-04-07 12:00:00,0.281,0.324,0.39399999999999996 +2016-04-07 13:00:00,0.281,0.324,0.39399999999999996 +2016-04-07 14:00:00,0.281,0.326,0.39399999999999996 +2016-04-07 15:00:00,0.281,0.326,0.39399999999999996 +2016-04-07 16:00:00,0.281,0.326,0.39399999999999996 +2016-04-07 17:00:00,0.281,0.326,0.39399999999999996 +2016-04-07 18:00:00,0.281,0.326,0.39399999999999996 +2016-04-07 19:00:00,0.281,0.326,0.39399999999999996 +2016-04-07 20:00:00,0.28,0.326,0.39399999999999996 +2016-04-07 21:00:00,0.28,0.326,0.39399999999999996 +2016-04-07 22:00:00,0.28,0.326,0.39399999999999996 +2016-04-07 23:00:00,0.28,0.326,0.39399999999999996 +2016-04-08 00:00:00,0.28,0.326,0.39399999999999996 +2016-04-08 01:00:00,0.28,0.326,0.39399999999999996 +2016-04-08 02:00:00,0.27899999999999997,0.326,0.39399999999999996 +2016-04-08 03:00:00,0.27899999999999997,0.326,0.39399999999999996 +2016-04-08 04:00:00,0.27899999999999997,0.326,0.39399999999999996 +2016-04-08 05:00:00,0.27899999999999997,0.326,0.39399999999999996 +2016-04-08 06:00:00,0.27899999999999997,0.326,0.39399999999999996 +2016-04-08 07:00:00,0.27899999999999997,0.326,0.39399999999999996 +2016-04-08 08:00:00,0.27899999999999997,0.326,0.39399999999999996 +2016-04-08 09:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 10:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 11:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 12:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 13:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 14:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 15:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 16:00:00,0.278,0.326,0.39299999999999996 +2016-04-08 17:00:00,0.278,0.326,0.39299999999999996 +2016-04-08 18:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 19:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 20:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 21:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 22:00:00,0.278,0.326,0.39399999999999996 +2016-04-08 23:00:00,0.278,0.326,0.39399999999999996 +2016-04-09 00:00:00,0.278,0.326,0.39399999999999996 +2016-04-09 01:00:00,0.278,0.326,0.39399999999999996 +2016-04-09 02:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 03:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 04:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 05:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 06:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 07:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 08:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 09:00:00,0.276,0.326,0.39399999999999996 +2016-04-09 10:00:00,0.276,0.326,0.39399999999999996 +2016-04-09 11:00:00,0.276,0.325,0.39399999999999996 +2016-04-09 12:00:00,0.276,0.324,0.39299999999999996 +2016-04-09 13:00:00,0.276,0.326,0.39299999999999996 +2016-04-09 14:00:00,0.276,0.326,0.39299999999999996 +2016-04-09 15:00:00,0.27699999999999997,0.326,0.39299999999999996 +2016-04-09 16:00:00,0.276,0.326,0.39299999999999996 +2016-04-09 17:00:00,0.27699999999999997,0.326,0.39299999999999996 +2016-04-09 18:00:00,0.27699999999999997,0.326,0.39299999999999996 +2016-04-09 19:00:00,0.27699999999999997,0.326,0.39299999999999996 +2016-04-09 20:00:00,0.27699999999999997,0.326,0.39299999999999996 +2016-04-09 21:00:00,0.27699999999999997,0.326,0.39399999999999996 +2016-04-09 22:00:00,0.276,0.326,0.39399999999999996 +2016-04-09 23:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 00:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 01:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 02:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 03:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 04:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 05:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 06:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 07:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 08:00:00,0.275,0.326,0.39399999999999996 +2016-04-10 09:00:00,0.275,0.326,0.39399999999999996 +2016-04-10 10:00:00,0.275,0.321,0.39399999999999996 +2016-04-10 11:00:00,0.275,0.319,0.39399999999999996 +2016-04-10 12:00:00,0.275,0.322,0.39399999999999996 +2016-04-10 13:00:00,0.275,0.324,0.39399999999999996 +2016-04-10 14:00:00,0.275,0.32299999999999995,0.39399999999999996 +2016-04-10 15:00:00,0.275,0.324,0.39399999999999996 +2016-04-10 16:00:00,0.276,0.325,0.39399999999999996 +2016-04-10 17:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 18:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 19:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 20:00:00,0.276,0.326,0.39399999999999996 +2016-04-10 21:00:00,0.275,0.326,0.39399999999999996 +2016-04-10 22:00:00,0.275,0.326,0.39399999999999996 +2016-04-10 23:00:00,0.275,0.326,0.39399999999999996 +2016-04-11 00:00:00,0.275,0.326,0.39399999999999996 +2016-04-11 01:00:00,0.275,0.326,0.39399999999999996 +2016-04-11 02:00:00,0.275,0.32299999999999995,0.39399999999999996 +2016-04-11 03:00:00,0.275,0.319,0.39399999999999996 +2016-04-11 04:00:00,0.275,0.316,0.39399999999999996 +2016-04-11 05:00:00,0.275,0.317,0.39399999999999996 +2016-04-11 06:00:00,0.27399999999999997,0.325,0.39399999999999996 +2016-04-11 07:00:00,0.27399999999999997,0.32799999999999996,0.39399999999999996 +2016-04-11 08:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 09:00:00,0.27399999999999997,0.332,0.39399999999999996 +2016-04-11 10:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 11:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 12:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 13:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 14:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 15:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 16:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 17:00:00,0.27399999999999997,0.331,0.39399999999999996 +2016-04-11 18:00:00,0.27399999999999997,0.33,0.39399999999999996 +2016-04-11 19:00:00,0.27399999999999997,0.33,0.39399999999999996 +2016-04-11 20:00:00,0.27399999999999997,0.33,0.39399999999999996 +2016-04-11 21:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 +2016-04-11 22:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 +2016-04-11 23:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 +2016-04-12 00:00:00,0.27399999999999997,0.32899999999999996,0.39399999999999996 +2016-04-12 01:00:00,0.273,0.32899999999999996,0.39399999999999996 +2016-04-12 02:00:00,0.273,0.32899999999999996,0.39399999999999996 +2016-04-12 03:00:00,0.273,0.32899999999999996,0.39399999999999996 +2016-04-12 04:00:00,0.273,0.32799999999999996,0.39399999999999996 +2016-04-12 05:00:00,0.273,0.327,0.39399999999999996 +2016-04-12 06:00:00,0.273,0.327,0.39399999999999996 +2016-04-12 07:00:00,0.273,0.327,0.39399999999999996 +2016-04-12 08:00:00,0.273,0.327,0.39399999999999996 +2016-04-12 09:00:00,0.272,0.327,0.39399999999999996 +2016-04-12 10:00:00,0.273,0.327,0.39399999999999996 +2016-04-12 11:00:00,0.272,0.327,0.39399999999999996 +2016-04-12 12:00:00,0.272,0.326,0.39399999999999996 +2016-04-12 13:00:00,0.273,0.327,0.39399999999999996 +2016-04-12 14:00:00,0.273,0.327,0.39399999999999996 +2016-04-12 15:00:00,0.273,0.326,0.39399999999999996 +2016-04-12 16:00:00,0.272,0.326,0.39399999999999996 +2016-04-12 17:00:00,0.273,0.326,0.39299999999999996 +2016-04-12 18:00:00,0.273,0.326,0.39299999999999996 +2016-04-12 19:00:00,0.273,0.326,0.39299999999999996 +2016-04-12 20:00:00,0.265,0.326,0.396 +2016-04-12 21:00:00,0.266,0.326,0.396 +2016-04-12 22:00:00,0.267,0.326,0.395 +2016-04-12 23:00:00,0.267,0.326,0.396 +2016-04-13 00:00:00,0.266,0.326,0.396 +2016-04-13 01:00:00,0.267,0.326,0.396 +2016-04-13 02:00:00,0.267,0.326,0.396 +2016-04-13 03:00:00,0.266,0.326,0.396 +2016-04-13 04:00:00,0.266,0.326,0.396 +2016-04-13 05:00:00,0.267,0.326,0.396 +2016-04-13 06:00:00,0.268,0.326,0.396 +2016-04-13 07:00:00,0.265,0.326,0.396 +2016-04-13 08:00:00,0.265,0.326,0.396 +2016-04-13 09:00:00,0.267,0.326,0.396 +2016-04-13 10:00:00,0.26899999999999996,0.326,0.396 +2016-04-13 11:00:00,0.27,0.325,0.395 +2016-04-13 12:00:00,0.271,0.325,0.395 +2016-04-13 13:00:00,0.272,0.325,0.395 +2016-04-13 14:00:00,0.272,0.324,0.395 +2016-04-13 15:00:00,0.273,0.324,0.395 +2016-04-13 16:00:00,0.273,0.325,0.395 +2016-04-13 17:00:00,0.273,0.324,0.395 +2016-04-13 18:00:00,0.273,0.324,0.395 +2016-04-13 19:00:00,0.273,0.324,0.395 +2016-04-13 20:00:00,0.273,0.324,0.395 +2016-04-13 21:00:00,0.273,0.324,0.395 +2016-04-13 22:00:00,0.273,0.324,0.395 +2016-04-13 23:00:00,0.273,0.324,0.395 +2016-04-14 00:00:00,0.273,0.326,0.395 +2016-04-14 01:00:00,0.273,0.327,0.395 +2016-04-14 02:00:00,0.273,0.327,0.395 +2016-04-14 03:00:00,0.273,0.327,0.395 +2016-04-14 04:00:00,0.273,0.32799999999999996,0.39399999999999996 +2016-04-14 05:00:00,0.273,0.32899999999999996,0.391 +2016-04-14 06:00:00,0.273,0.32899999999999996,0.391 +2016-04-14 07:00:00,0.272,0.32799999999999996,0.391 +2016-04-14 08:00:00,0.272,0.326,0.391 +2016-04-14 09:00:00,0.272,0.326,0.39 +2016-04-14 10:00:00,0.272,0.326,0.39 +2016-04-14 11:00:00,0.272,0.326,0.389 +2016-04-14 12:00:00,0.272,0.324,0.389 +2016-04-14 13:00:00,0.272,0.322,0.38799999999999996 +2016-04-14 14:00:00,0.272,0.321,0.38799999999999996 +2016-04-14 15:00:00,0.272,0.321,0.38799999999999996 +2016-04-14 16:00:00,0.272,0.321,0.38799999999999996 +2016-04-14 17:00:00,0.272,0.321,0.38799999999999996 +2016-04-14 18:00:00,0.272,0.321,0.38799999999999996 +2016-04-14 19:00:00,0.272,0.321,0.387 +2016-04-14 20:00:00,0.273,0.321,0.387 +2016-04-14 21:00:00,0.273,0.321,0.387 +2016-04-14 22:00:00,0.272,0.321,0.387 +2016-04-14 23:00:00,0.272,0.321,0.387 +2016-04-15 00:00:00,0.272,0.32299999999999995,0.387 +2016-04-15 01:00:00,0.272,0.324,0.387 +2016-04-15 02:00:00,0.272,0.325,0.387 +2016-04-15 03:00:00,0.272,0.326,0.387 +2016-04-15 04:00:00,0.272,0.324,0.387 +2016-04-15 05:00:00,0.272,0.324,0.387 +2016-04-15 06:00:00,0.272,0.324,0.387 +2016-04-15 07:00:00,0.272,0.324,0.387 +2016-04-15 08:00:00,0.272,0.324,0.387 +2016-04-15 09:00:00,0.272,0.324,0.387 +2016-04-15 10:00:00,0.272,0.324,0.387 +2016-04-15 11:00:00,0.272,0.32299999999999995,0.386 +2016-04-15 12:00:00,0.272,0.321,0.386 +2016-04-15 13:00:00,0.272,0.321,0.386 +2016-04-15 14:00:00,0.272,0.321,0.386 +2016-04-15 15:00:00,0.272,0.321,0.386 +2016-04-15 16:00:00,0.272,0.321,0.386 +2016-04-15 17:00:00,0.272,0.32,0.386 +2016-04-15 18:00:00,0.272,0.32,0.386 +2016-04-15 19:00:00,0.272,0.321,0.386 +2016-04-15 20:00:00,0.272,0.321,0.385 +2016-04-15 21:00:00,0.271,0.321,0.385 +2016-04-15 22:00:00,0.271,0.321,0.385 +2016-04-15 23:00:00,0.271,0.321,0.385 +2016-04-16 00:00:00,0.271,0.321,0.385 +2016-04-16 01:00:00,0.271,0.321,0.385 +2016-04-16 02:00:00,0.271,0.321,0.385 +2016-04-16 03:00:00,0.271,0.321,0.385 +2016-04-16 04:00:00,0.271,0.321,0.385 +2016-04-16 05:00:00,0.271,0.321,0.385 +2016-04-16 06:00:00,0.271,0.321,0.385 +2016-04-16 07:00:00,0.264,0.321,0.38799999999999996 +2016-04-16 08:00:00,0.262,0.321,0.38799999999999996 +2016-04-16 09:00:00,0.262,0.321,0.38799999999999996 +2016-04-16 10:00:00,0.266,0.321,0.38799999999999996 +2016-04-16 11:00:00,0.266,0.321,0.38799999999999996 +2016-04-16 12:00:00,0.27,0.321,0.387 +2016-04-16 13:00:00,0.271,0.321,0.387 +2016-04-16 14:00:00,0.272,0.32,0.386 +2016-04-16 15:00:00,0.272,0.32,0.386 +2016-04-16 16:00:00,0.272,0.32,0.386 +2016-04-16 17:00:00,0.272,0.319,0.386 +2016-04-16 18:00:00,0.272,0.319,0.386 +2016-04-16 19:00:00,0.272,0.319,0.386 +2016-04-16 20:00:00,0.272,0.319,0.386 +2016-04-16 21:00:00,0.272,0.32,0.387 +2016-04-16 22:00:00,0.272,0.32,0.387 +2016-04-16 23:00:00,0.26899999999999996,0.32,0.38799999999999996 +2016-04-17 00:00:00,0.266,0.32,0.38799999999999996 +2016-04-17 01:00:00,0.27699999999999997,0.32,0.391 +2016-04-17 02:00:00,0.284,0.32,0.397 +2016-04-17 03:00:00,0.284,0.32,0.39799999999999996 +2016-04-17 04:00:00,0.284,0.32,0.39799999999999996 +2016-04-17 05:00:00,0.281,0.32,0.39799999999999996 +2016-04-17 06:00:00,0.27899999999999997,0.32,0.39799999999999996 +2016-04-17 07:00:00,0.278,0.32,0.39899999999999997 +2016-04-17 08:00:00,0.27899999999999997,0.32,0.39899999999999997 +2016-04-17 09:00:00,0.282,0.32,0.39899999999999997 +2016-04-17 10:00:00,0.285,0.32,0.39899999999999997 +2016-04-17 11:00:00,0.287,0.319,0.39899999999999997 +2016-04-17 12:00:00,0.287,0.317,0.39899999999999997 +2016-04-17 13:00:00,0.287,0.317,0.39899999999999997 +2016-04-17 14:00:00,0.28600000000000003,0.317,0.39899999999999997 +2016-04-17 15:00:00,0.285,0.319,0.39899999999999997 +2016-04-17 16:00:00,0.284,0.319,0.39899999999999997 +2016-04-17 17:00:00,0.284,0.319,0.39899999999999997 +2016-04-17 18:00:00,0.28300000000000003,0.319,0.39899999999999997 +2016-04-17 19:00:00,0.28300000000000003,0.32,0.39899999999999997 +2016-04-17 20:00:00,0.282,0.32,0.4 +2016-04-17 21:00:00,0.282,0.32,0.4 +2016-04-17 22:00:00,0.282,0.32,0.4 +2016-04-17 23:00:00,0.281,0.32,0.4 +2016-04-18 00:00:00,0.281,0.32,0.4 +2016-04-18 01:00:00,0.28,0.32,0.4 +2016-04-18 02:00:00,0.28,0.32,0.4 +2016-04-18 03:00:00,0.28,0.32,0.401 +2016-04-18 04:00:00,0.27899999999999997,0.319,0.401 +2016-04-18 05:00:00,0.27899999999999997,0.319,0.401 +2016-04-18 06:00:00,0.27899999999999997,0.319,0.401 +2016-04-18 07:00:00,0.27899999999999997,0.319,0.401 +2016-04-18 08:00:00,0.278,0.319,0.401 +2016-04-18 09:00:00,0.278,0.319,0.402 +2016-04-18 10:00:00,0.27699999999999997,0.319,0.39899999999999997 +2016-04-18 11:00:00,0.27699999999999997,0.319,0.397 +2016-04-18 12:00:00,0.27699999999999997,0.319,0.395 +2016-04-18 13:00:00,0.27699999999999997,0.319,0.39399999999999996 +2016-04-18 14:00:00,0.276,0.319,0.39299999999999996 +2016-04-18 15:00:00,0.27699999999999997,0.319,0.39299999999999996 +2016-04-18 16:00:00,0.276,0.318,0.39299999999999996 +2016-04-18 17:00:00,0.276,0.318,0.39299999999999996 +2016-04-18 18:00:00,0.276,0.319,0.392 +2016-04-18 19:00:00,0.276,0.319,0.392 +2016-04-18 20:00:00,0.276,0.319,0.392 +2016-04-18 21:00:00,0.276,0.319,0.392 +2016-04-18 22:00:00,0.276,0.319,0.392 +2016-04-18 23:00:00,0.276,0.319,0.392 +2016-04-19 00:00:00,0.275,0.319,0.391 +2016-04-19 01:00:00,0.275,0.319,0.391 +2016-04-19 02:00:00,0.275,0.319,0.391 +2016-04-19 03:00:00,0.275,0.319,0.391 +2016-04-19 04:00:00,0.275,0.319,0.39 +2016-04-19 05:00:00,0.275,0.319,0.39 +2016-04-19 06:00:00,0.275,0.319,0.39 +2016-04-19 07:00:00,0.275,0.319,0.39 +2016-04-19 08:00:00,0.275,0.318,0.39 +2016-04-19 09:00:00,0.275,0.318,0.39 +2016-04-19 10:00:00,0.275,0.318,0.39 +2016-04-19 11:00:00,0.27399999999999997,0.318,0.39 +2016-04-19 12:00:00,0.27399999999999997,0.318,0.39 +2016-04-19 13:00:00,0.275,0.318,0.39 +2016-04-19 14:00:00,0.27399999999999997,0.318,0.39 +2016-04-19 15:00:00,0.27399999999999997,0.317,0.39 +2016-04-19 16:00:00,0.27399999999999997,0.317,0.39 +2016-04-19 17:00:00,0.27399999999999997,0.317,0.39 +2016-04-19 18:00:00,0.27399999999999997,0.317,0.39 +2016-04-19 19:00:00,0.27399999999999997,0.317,0.39 +2016-04-19 20:00:00,0.27399999999999997,0.317,0.39 +2016-04-19 21:00:00,0.27399999999999997,0.316,0.389 +2016-04-19 22:00:00,0.27399999999999997,0.315,0.389 +2016-04-19 23:00:00,0.27399999999999997,0.314,0.389 +2016-04-20 00:00:00,0.27399999999999997,0.313,0.389 +2016-04-20 01:00:00,0.27399999999999997,0.31,0.389 +2016-04-20 02:00:00,0.273,0.31,0.389 +2016-04-20 03:00:00,0.273,0.31,0.389 +2016-04-20 04:00:00,0.273,0.311,0.389 +2016-04-20 05:00:00,0.273,0.315,0.389 +2016-04-20 06:00:00,0.273,0.315,0.389 +2016-04-20 07:00:00,0.273,0.317,0.389 +2016-04-20 08:00:00,0.273,0.317,0.377 +2016-04-20 09:00:00,0.273,0.317,0.366 +2016-04-20 10:00:00,0.272,0.317,0.365 +2016-04-20 11:00:00,0.272,0.317,0.364 +2016-04-20 12:00:00,0.272,0.318,0.364 +2016-04-20 13:00:00,0.272,0.319,0.363 +2016-04-20 14:00:00,0.271,0.319,0.363 +2016-04-20 15:00:00,0.271,0.319,0.363 +2016-04-20 16:00:00,0.271,0.319,0.363 +2016-04-20 17:00:00,0.271,0.319,0.363 +2016-04-20 18:00:00,0.271,0.319,0.363 +2016-04-20 19:00:00,0.271,0.317,0.36200000000000004 +2016-04-20 20:00:00,0.271,0.316,0.36200000000000004 +2016-04-20 21:00:00,0.271,0.315,0.36200000000000004 +2016-04-20 22:00:00,0.271,0.316,0.36200000000000004 +2016-04-20 23:00:00,0.271,0.317,0.36200000000000004 +2016-04-21 00:00:00,0.271,0.317,0.36200000000000004 +2016-04-21 01:00:00,0.271,0.317,0.36200000000000004 +2016-04-21 02:00:00,0.271,0.317,0.36200000000000004 +2016-04-21 03:00:00,0.271,0.317,0.36200000000000004 +2016-04-21 04:00:00,0.27,0.317,0.36200000000000004 +2016-04-21 05:00:00,0.27,0.317,0.36200000000000004 +2016-04-21 06:00:00,0.27,0.317,0.36200000000000004 +2016-04-21 07:00:00,0.27,0.317,0.36200000000000004 +2016-04-21 08:00:00,0.27,0.318,0.36200000000000004 +2016-04-21 09:00:00,0.27,0.317,0.363 +2016-04-21 10:00:00,0.27,0.318,0.36200000000000004 +2016-04-21 11:00:00,0.26899999999999996,0.319,0.36200000000000004 +2016-04-21 12:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 13:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 14:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 15:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 16:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 17:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 18:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 19:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 20:00:00,0.26899999999999996,0.319,0.361 +2016-04-21 21:00:00,0.26899999999999996,0.318,0.361 +2016-04-21 22:00:00,0.26899999999999996,0.316,0.361 +2016-04-21 23:00:00,0.26899999999999996,0.317,0.361 +2016-04-22 00:00:00,0.26899999999999996,0.317,0.358 +2016-04-22 01:00:00,0.26899999999999996,0.317,0.35600000000000004 +2016-04-22 02:00:00,0.26899999999999996,0.317,0.35600000000000004 +2016-04-22 03:00:00,0.26899999999999996,0.317,0.35600000000000004 +2016-04-22 04:00:00,0.268,0.317,0.35100000000000003 +2016-04-22 05:00:00,0.268,0.317,0.353 +2016-04-22 06:00:00,0.268,0.317,0.353 +2016-04-22 07:00:00,0.268,0.317,0.353 +2016-04-22 08:00:00,0.268,0.317,0.353 +2016-04-22 09:00:00,0.268,0.317,0.353 +2016-04-22 10:00:00,0.268,0.317,0.35200000000000004 +2016-04-22 11:00:00,0.268,0.317,0.35100000000000003 +2016-04-22 12:00:00,0.267,0.317,0.34700000000000003 +2016-04-22 13:00:00,0.267,0.317,0.34700000000000003 +2016-04-22 14:00:00,0.267,0.317,0.34600000000000003 +2016-04-22 15:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 16:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 17:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 18:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 19:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 20:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 21:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 22:00:00,0.266,0.317,0.34600000000000003 +2016-04-22 23:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 00:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 01:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 02:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 03:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 04:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 05:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 06:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 07:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 08:00:00,0.264,0.317,0.34700000000000003 +2016-04-23 09:00:00,0.259,0.317,0.348 +2016-04-23 10:00:00,0.259,0.317,0.348 +2016-04-23 11:00:00,0.262,0.317,0.348 +2016-04-23 12:00:00,0.264,0.317,0.348 +2016-04-23 13:00:00,0.266,0.317,0.348 +2016-04-23 14:00:00,0.266,0.317,0.34700000000000003 +2016-04-23 15:00:00,0.266,0.317,0.34700000000000003 +2016-04-23 16:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 17:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 18:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 19:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 20:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 21:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 22:00:00,0.266,0.317,0.34600000000000003 +2016-04-23 23:00:00,0.266,0.317,0.34600000000000003 +2016-04-24 00:00:00,0.266,0.317,0.34600000000000003 +2016-04-24 01:00:00,0.266,0.317,0.34600000000000003 +2016-04-24 02:00:00,0.266,0.317,0.34600000000000003 +2016-04-24 03:00:00,0.266,0.317,0.34600000000000003 +2016-04-24 04:00:00,0.266,0.317,0.34600000000000003 +2016-04-24 05:00:00,0.266,0.317,0.34600000000000003 +2016-04-24 06:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 07:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 08:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 09:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 10:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 11:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 12:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 13:00:00,0.264,0.317,0.34700000000000003 +2016-04-24 14:00:00,0.264,0.317,0.34700000000000003 +2016-04-24 15:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 16:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 17:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 18:00:00,0.265,0.317,0.34600000000000003 +2016-04-24 19:00:00,0.265,0.317,0.345 +2016-04-24 20:00:00,0.265,0.317,0.345 +2016-04-24 21:00:00,0.265,0.317,0.345 +2016-04-24 22:00:00,0.265,0.317,0.345 +2016-04-24 23:00:00,0.265,0.317,0.345 +2016-04-25 00:00:00,0.265,0.317,0.345 +2016-04-25 01:00:00,0.265,0.317,0.345 +2016-04-25 02:00:00,0.265,0.314,0.345 +2016-04-25 03:00:00,0.265,0.305,0.345 +2016-04-25 04:00:00,0.265,0.312,0.345 +2016-04-25 05:00:00,0.265,0.315,0.345 +2016-04-25 06:00:00,0.265,0.316,0.345 +2016-04-25 07:00:00,0.265,0.317,0.345 +2016-04-25 08:00:00,0.265,0.317,0.345 +2016-04-25 09:00:00,0.265,0.317,0.345 +2016-04-25 10:00:00,0.265,0.317,0.345 +2016-04-25 11:00:00,0.265,0.317,0.345 +2016-04-25 12:00:00,0.265,0.317,0.345 +2016-04-25 13:00:00,0.265,0.317,0.345 +2016-04-25 14:00:00,0.265,0.317,0.345 +2016-04-25 15:00:00,0.265,0.317,0.345 +2016-04-25 16:00:00,0.265,0.317,0.345 +2016-04-25 17:00:00,0.265,0.317,0.34600000000000003 +2016-04-25 18:00:00,0.263,0.317,0.348 +2016-04-25 19:00:00,0.262,0.317,0.348 +2016-04-25 20:00:00,0.258,0.317,0.349 +2016-04-25 21:00:00,0.258,0.317,0.349 +2016-04-25 22:00:00,0.258,0.317,0.35 +2016-04-25 23:00:00,0.258,0.317,0.35 +2016-04-26 00:00:00,0.262,0.317,0.35100000000000003 +2016-04-26 01:00:00,0.271,0.317,0.35200000000000004 +2016-04-26 02:00:00,0.27,0.317,0.35200000000000004 +2016-04-26 03:00:00,0.26899999999999996,0.317,0.353 +2016-04-26 04:00:00,0.26899999999999996,0.317,0.353 +2016-04-26 05:00:00,0.26899999999999996,0.317,0.353 +2016-04-26 06:00:00,0.26899999999999996,0.317,0.353 +2016-04-26 07:00:00,0.27,0.317,0.354 +2016-04-26 08:00:00,0.273,0.317,0.353 +2016-04-26 09:00:00,0.276,0.317,0.353 +2016-04-26 10:00:00,0.276,0.317,0.35200000000000004 +2016-04-26 11:00:00,0.276,0.317,0.35200000000000004 +2016-04-26 12:00:00,0.275,0.317,0.35100000000000003 +2016-04-26 13:00:00,0.275,0.317,0.35100000000000003 +2016-04-26 14:00:00,0.275,0.317,0.35100000000000003 +2016-04-26 15:00:00,0.27399999999999997,0.317,0.35100000000000003 +2016-04-26 16:00:00,0.271,0.316,0.35200000000000004 +2016-04-26 17:00:00,0.264,0.316,0.353 +2016-04-26 18:00:00,0.264,0.316,0.354 +2016-04-26 19:00:00,0.264,0.316,0.353 +2016-04-26 20:00:00,0.266,0.316,0.353 +2016-04-26 21:00:00,0.267,0.316,0.353 +2016-04-26 22:00:00,0.268,0.316,0.353 +2016-04-26 23:00:00,0.27,0.317,0.353 +2016-04-27 00:00:00,0.271,0.317,0.353 +2016-04-27 01:00:00,0.273,0.317,0.35200000000000004 +2016-04-27 02:00:00,0.273,0.317,0.35200000000000004 +2016-04-27 03:00:00,0.27399999999999997,0.317,0.35200000000000004 +2016-04-27 04:00:00,0.27399999999999997,0.317,0.35200000000000004 +2016-04-27 05:00:00,0.27399999999999997,0.317,0.35100000000000003 +2016-04-27 06:00:00,0.27399999999999997,0.317,0.35100000000000003 +2016-04-27 07:00:00,0.27399999999999997,0.317,0.35100000000000003 +2016-04-27 08:00:00,0.27399999999999997,0.317,0.35 +2016-04-27 09:00:00,0.27399999999999997,0.316,0.35 +2016-04-27 10:00:00,0.27399999999999997,0.316,0.35 +2016-04-27 11:00:00,0.27399999999999997,0.316,0.35 +2016-04-27 12:00:00,0.27399999999999997,0.316,0.35 +2016-04-27 13:00:00,0.27399999999999997,0.316,0.35 +2016-04-27 14:00:00,0.27399999999999997,0.315,0.349 +2016-04-27 15:00:00,0.27399999999999997,0.315,0.349 +2016-04-27 16:00:00,0.27399999999999997,0.316,0.348 +2016-04-27 17:00:00,0.27399999999999997,0.316,0.349 +2016-04-27 18:00:00,0.271,0.316,0.35 +2016-04-27 19:00:00,0.268,0.315,0.35 +2016-04-27 20:00:00,0.27,0.315,0.35 +2016-04-27 21:00:00,0.271,0.315,0.349 +2016-04-27 22:00:00,0.272,0.315,0.349 +2016-04-27 23:00:00,0.272,0.316,0.349 +2016-04-28 00:00:00,0.272,0.316,0.349 +2016-04-28 01:00:00,0.272,0.316,0.349 +2016-04-28 02:00:00,0.272,0.316,0.349 +2016-04-28 03:00:00,0.272,0.316,0.348 +2016-04-28 04:00:00,0.272,0.316,0.348 +2016-04-28 05:00:00,0.273,0.315,0.348 +2016-04-28 06:00:00,0.273,0.315,0.348 +2016-04-28 07:00:00,0.272,0.315,0.348 +2016-04-28 08:00:00,0.272,0.315,0.348 +2016-04-28 09:00:00,0.273,0.315,0.34700000000000003 +2016-04-28 10:00:00,0.273,0.315,0.34700000000000003 +2016-04-28 11:00:00,0.273,0.315,0.34700000000000003 +2016-04-28 12:00:00,0.272,0.315,0.34600000000000003 +2016-04-28 13:00:00,0.272,0.315,0.34600000000000003 +2016-04-28 14:00:00,0.272,0.315,0.34600000000000003 +2016-04-28 15:00:00,0.272,0.315,0.34600000000000003 +2016-04-28 16:00:00,0.272,0.315,0.34600000000000003 +2016-04-28 17:00:00,0.271,0.314,0.34600000000000003 +2016-04-28 18:00:00,0.271,0.314,0.34600000000000003 +2016-04-28 19:00:00,0.271,0.314,0.345 +2016-04-28 20:00:00,0.271,0.314,0.345 +2016-04-28 21:00:00,0.271,0.314,0.345 +2016-04-28 22:00:00,0.271,0.314,0.345 +2016-04-28 23:00:00,0.271,0.315,0.345 +2016-04-29 00:00:00,0.271,0.314,0.345 +2016-04-29 01:00:00,0.271,0.315,0.345 +2016-04-29 02:00:00,0.271,0.315,0.345 +2016-04-29 03:00:00,0.271,0.315,0.345 +2016-04-29 04:00:00,0.271,0.315,0.344 +2016-04-29 05:00:00,0.271,0.315,0.344 +2016-04-29 06:00:00,0.271,0.315,0.344 +2016-04-29 07:00:00,0.271,0.314,0.344 +2016-04-29 08:00:00,0.271,0.314,0.344 +2016-04-29 09:00:00,0.271,0.314,0.344 +2016-04-29 10:00:00,0.271,0.314,0.344 +2016-04-29 11:00:00,0.271,0.314,0.344 +2016-04-29 12:00:00,0.27,0.314,0.344 +2016-04-29 13:00:00,0.27,0.314,0.344 +2016-04-29 14:00:00,0.27,0.314,0.34299999999999997 +2016-04-29 15:00:00,0.27,0.314,0.34299999999999997 +2016-04-29 16:00:00,0.27,0.314,0.341 +2016-04-29 17:00:00,0.26899999999999996,0.314,0.341 +2016-04-29 18:00:00,0.26899999999999996,0.313,0.34 +2016-04-29 19:00:00,0.26899999999999996,0.313,0.34 +2016-04-29 20:00:00,0.27,0.313,0.34 +2016-04-29 21:00:00,0.27,0.314,0.34 +2016-04-29 22:00:00,0.27,0.314,0.34 +2016-04-29 23:00:00,0.27,0.314,0.34 +2016-04-30 00:00:00,0.27,0.314,0.34 +2016-04-30 01:00:00,0.27,0.314,0.34 +2016-04-30 02:00:00,0.26899999999999996,0.314,0.34 +2016-04-30 03:00:00,0.27,0.314,0.34 +2016-04-30 04:00:00,0.27,0.314,0.34 +2016-04-30 05:00:00,0.26899999999999996,0.314,0.34 +2016-04-30 06:00:00,0.26899999999999996,0.314,0.34 +2016-04-30 07:00:00,0.26899999999999996,0.314,0.34 +2016-04-30 08:00:00,0.26899999999999996,0.314,0.34 +2016-04-30 09:00:00,0.26899999999999996,0.314,0.34 +2016-04-30 10:00:00,0.26899999999999996,0.314,0.34 +2016-04-30 11:00:00,0.26899999999999996,0.314,0.33899999999999997 +2016-04-30 12:00:00,0.26899999999999996,0.314,0.33899999999999997 +2016-04-30 13:00:00,0.26899999999999996,0.313,0.33799999999999997 +2016-04-30 14:00:00,0.26899999999999996,0.312,0.33799999999999997 +2016-04-30 15:00:00,0.26899999999999996,0.312,0.33799999999999997 +2016-04-30 16:00:00,0.268,0.312,0.33799999999999997 +2016-04-30 17:00:00,0.268,0.312,0.33799999999999997 +2016-04-30 18:00:00,0.268,0.31,0.337 +2016-04-30 19:00:00,0.268,0.31,0.337 +2016-04-30 20:00:00,0.268,0.31,0.337 +2016-04-30 21:00:00,0.268,0.31,0.337 +2016-04-30 22:00:00,0.268,0.312,0.337 +2016-04-30 23:00:00,0.262,0.312,0.34 +2016-05-01 00:00:00,0.285,0.312,0.341 +2016-05-01 01:00:00,0.281,0.312,0.341 +2016-05-01 02:00:00,0.27699999999999997,0.312,0.341 +2016-05-01 03:00:00,0.28,0.312,0.341 +2016-05-01 04:00:00,0.282,0.312,0.341 +2016-05-01 05:00:00,0.28300000000000003,0.312,0.341 +2016-05-01 06:00:00,0.28300000000000003,0.312,0.341 +2016-05-01 07:00:00,0.282,0.312,0.34 +2016-05-01 08:00:00,0.281,0.312,0.34 +2016-05-01 09:00:00,0.281,0.312,0.34 +2016-05-01 10:00:00,0.28,0.312,0.33899999999999997 +2016-05-01 11:00:00,0.27899999999999997,0.312,0.33899999999999997 +2016-05-01 12:00:00,0.27899999999999997,0.312,0.33899999999999997 +2016-05-01 13:00:00,0.278,0.311,0.33899999999999997 +2016-05-01 14:00:00,0.27699999999999997,0.31,0.33899999999999997 +2016-05-01 15:00:00,0.276,0.31,0.33899999999999997 +2016-05-01 16:00:00,0.275,0.31,0.33799999999999997 +2016-05-01 17:00:00,0.275,0.31,0.33799999999999997 +2016-05-01 18:00:00,0.27399999999999997,0.309,0.33799999999999997 +2016-05-01 19:00:00,0.27399999999999997,0.309,0.33799999999999997 +2016-05-01 20:00:00,0.27399999999999997,0.309,0.33799999999999997 +2016-05-01 21:00:00,0.27399999999999997,0.309,0.33799999999999997 +2016-05-01 22:00:00,0.27399999999999997,0.31,0.33799999999999997 +2016-05-01 23:00:00,0.273,0.31,0.33799999999999997 +2016-05-02 00:00:00,0.273,0.31,0.33799999999999997 +2016-05-02 01:00:00,0.273,0.31,0.33799999999999997 +2016-05-02 02:00:00,0.273,0.31,0.33799999999999997 +2016-05-02 03:00:00,0.273,0.31,0.33799999999999997 +2016-05-02 04:00:00,0.273,0.31,0.33799999999999997 +2016-05-02 05:00:00,0.273,0.31,0.33799999999999997 +2016-05-02 06:00:00,0.272,0.31,0.337 +2016-05-02 07:00:00,0.272,0.31,0.33799999999999997 +2016-05-02 08:00:00,0.272,0.31,0.33799999999999997 +2016-05-02 09:00:00,0.272,0.31,0.337 +2016-05-02 10:00:00,0.271,0.31,0.337 +2016-05-02 11:00:00,0.271,0.31,0.337 +2016-05-02 12:00:00,0.271,0.31,0.337 +2016-05-02 13:00:00,0.27,0.309,0.336 +2016-05-02 14:00:00,0.27,0.309,0.336 +2016-05-02 15:00:00,0.26899999999999996,0.308,0.336 +2016-05-02 16:00:00,0.26899999999999996,0.307,0.336 +2016-05-02 17:00:00,0.26899999999999996,0.307,0.336 +2016-05-02 18:00:00,0.26899999999999996,0.307,0.336 +2016-05-02 19:00:00,0.26899999999999996,0.307,0.336 +2016-05-02 20:00:00,0.26899999999999996,0.307,0.336 +2016-05-02 21:00:00,0.26899999999999996,0.307,0.336 +2016-05-02 22:00:00,0.26899999999999996,0.307,0.336 +2016-05-02 23:00:00,0.26899999999999996,0.307,0.336 +2016-05-03 00:00:00,0.268,0.307,0.336 +2016-05-03 01:00:00,0.268,0.307,0.336 +2016-05-03 02:00:00,0.268,0.307,0.336 +2016-05-03 03:00:00,0.268,0.307,0.336 +2016-05-03 04:00:00,0.268,0.308,0.336 +2016-05-03 05:00:00,0.268,0.308,0.336 +2016-05-03 06:00:00,0.268,0.308,0.336 +2016-05-03 07:00:00,0.268,0.307,0.335 +2016-05-03 08:00:00,0.268,0.307,0.335 +2016-05-03 09:00:00,0.268,0.307,0.335 +2016-05-03 10:00:00,0.266,0.307,0.336 +2016-05-03 11:00:00,0.263,0.307,0.33799999999999997 +2016-05-03 12:00:00,0.266,0.307,0.337 +2016-05-03 13:00:00,0.268,0.307,0.336 +2016-05-03 14:00:00,0.268,0.306,0.335 +2016-05-03 15:00:00,0.267,0.305,0.335 +2016-05-03 16:00:00,0.265,0.305,0.336 +2016-05-03 17:00:00,0.266,0.304,0.336 +2016-05-03 18:00:00,0.267,0.304,0.336 +2016-05-03 19:00:00,0.267,0.304,0.335 +2016-05-03 20:00:00,0.267,0.304,0.33399999999999996 +2016-05-03 21:00:00,0.267,0.304,0.33399999999999996 +2016-05-03 22:00:00,0.267,0.304,0.33399999999999996 +2016-05-03 23:00:00,0.267,0.304,0.33399999999999996 +2016-05-04 00:00:00,0.266,0.304,0.33399999999999996 +2016-05-04 01:00:00,0.266,0.305,0.33399999999999996 +2016-05-04 02:00:00,0.266,0.305,0.33399999999999996 +2016-05-04 03:00:00,0.266,0.305,0.33399999999999996 +2016-05-04 04:00:00,0.266,0.305,0.33399999999999996 +2016-05-04 05:00:00,0.266,0.305,0.33399999999999996 +2016-05-04 06:00:00,0.266,0.305,0.33399999999999996 +2016-05-04 07:00:00,0.266,0.305,0.33399999999999996 +2016-05-04 08:00:00,0.266,0.304,0.335 +2016-05-04 09:00:00,0.265,0.305,0.33399999999999996 +2016-05-04 10:00:00,0.265,0.305,0.33399999999999996 +2016-05-04 11:00:00,0.265,0.305,0.33399999999999996 +2016-05-04 12:00:00,0.264,0.304,0.33299999999999996 +2016-05-04 13:00:00,0.264,0.304,0.33299999999999996 +2016-05-04 14:00:00,0.263,0.304,0.33299999999999996 +2016-05-04 15:00:00,0.263,0.302,0.33299999999999996 +2016-05-04 16:00:00,0.262,0.302,0.33299999999999996 +2016-05-04 17:00:00,0.262,0.302,0.332 +2016-05-04 18:00:00,0.262,0.302,0.332 +2016-05-04 19:00:00,0.262,0.301,0.332 +2016-05-04 20:00:00,0.262,0.302,0.332 +2016-05-04 21:00:00,0.262,0.302,0.332 +2016-05-04 22:00:00,0.262,0.302,0.332 +2016-05-04 23:00:00,0.262,0.302,0.332 +2016-05-05 00:00:00,0.262,0.302,0.332 +2016-05-05 01:00:00,0.262,0.302,0.332 +2016-05-05 02:00:00,0.261,0.303,0.332 +2016-05-05 03:00:00,0.261,0.303,0.332 +2016-05-05 04:00:00,0.261,0.303,0.332 +2016-05-05 05:00:00,0.261,0.303,0.332 +2016-05-05 06:00:00,0.261,0.303,0.332 +2016-05-05 07:00:00,0.261,0.303,0.332 +2016-05-05 08:00:00,0.261,0.303,0.33299999999999996 +2016-05-05 09:00:00,0.261,0.303,0.33299999999999996 +2016-05-05 10:00:00,0.261,0.303,0.332 +2016-05-05 11:00:00,0.26,0.302,0.332 +2016-05-05 12:00:00,0.26,0.302,0.332 +2016-05-05 13:00:00,0.259,0.302,0.332 +2016-05-05 14:00:00,0.259,0.301,0.332 +2016-05-05 15:00:00,0.258,0.3,0.331 +2016-05-05 16:00:00,0.258,0.3,0.331 +2016-05-05 17:00:00,0.258,0.298,0.331 +2016-05-05 18:00:00,0.258,0.298,0.331 +2016-05-05 19:00:00,0.258,0.298,0.331 +2016-05-05 20:00:00,0.258,0.298,0.331 +2016-05-05 21:00:00,0.258,0.298,0.331 +2016-05-05 22:00:00,0.258,0.298,0.331 +2016-05-05 23:00:00,0.258,0.298,0.331 +2016-05-06 00:00:00,0.258,0.299,0.331 +2016-05-06 01:00:00,0.258,0.3,0.331 +2016-05-06 02:00:00,0.258,0.3,0.331 +2016-05-06 03:00:00,0.258,0.3,0.331 +2016-05-06 04:00:00,0.258,0.3,0.331 +2016-05-06 05:00:00,0.257,0.3,0.331 +2016-05-06 06:00:00,0.258,0.3,0.331 +2016-05-06 07:00:00,0.257,0.3,0.332 +2016-05-06 08:00:00,0.257,0.3,0.332 +2016-05-06 09:00:00,0.257,0.3,0.331 +2016-05-06 10:00:00,0.256,0.3,0.331 +2016-05-06 11:00:00,0.256,0.3,0.331 +2016-05-06 12:00:00,0.256,0.3,0.331 +2016-05-06 13:00:00,0.255,0.298,0.331 +2016-05-06 14:00:00,0.254,0.298,0.331 +2016-05-06 15:00:00,0.254,0.298,0.331 +2016-05-06 16:00:00,0.254,0.297,0.33 +2016-05-06 17:00:00,0.253,0.297,0.33 +2016-05-06 18:00:00,0.253,0.297,0.33 +2016-05-06 19:00:00,0.253,0.297,0.33 +2016-05-06 20:00:00,0.253,0.297,0.33 +2016-05-06 21:00:00,0.253,0.297,0.33 +2016-05-06 22:00:00,0.253,0.297,0.33 +2016-05-06 23:00:00,0.253,0.297,0.33 +2016-05-07 00:00:00,0.253,0.297,0.33 +2016-05-07 01:00:00,0.253,0.297,0.33 +2016-05-07 02:00:00,0.253,0.297,0.33 +2016-05-07 03:00:00,0.253,0.297,0.33 +2016-05-07 04:00:00,0.252,0.297,0.33 +2016-05-07 05:00:00,0.253,0.297,0.33 +2016-05-07 06:00:00,0.252,0.298,0.331 +2016-05-07 07:00:00,0.253,0.298,0.331 +2016-05-07 08:00:00,0.252,0.297,0.331 +2016-05-07 09:00:00,0.252,0.297,0.331 +2016-05-07 10:00:00,0.251,0.297,0.33 +2016-05-07 11:00:00,0.251,0.297,0.33 +2016-05-07 12:00:00,0.25,0.297,0.33 +2016-05-07 13:00:00,0.25,0.297,0.33 +2016-05-07 14:00:00,0.249,0.29600000000000004,0.32899999999999996 +2016-05-07 15:00:00,0.248,0.295,0.32899999999999996 +2016-05-07 16:00:00,0.248,0.293,0.32899999999999996 +2016-05-07 17:00:00,0.248,0.293,0.32899999999999996 +2016-05-07 18:00:00,0.248,0.293,0.32899999999999996 +2016-05-07 19:00:00,0.248,0.293,0.32899999999999996 +2016-05-07 20:00:00,0.248,0.292,0.32899999999999996 +2016-05-07 21:00:00,0.248,0.292,0.32899999999999996 +2016-05-07 22:00:00,0.248,0.292,0.32899999999999996 +2016-05-07 23:00:00,0.247,0.293,0.32899999999999996 +2016-05-08 00:00:00,0.248,0.293,0.32899999999999996 +2016-05-08 01:00:00,0.248,0.293,0.32899999999999996 +2016-05-08 02:00:00,0.247,0.293,0.32899999999999996 +2016-05-08 03:00:00,0.247,0.293,0.32899999999999996 +2016-05-08 04:00:00,0.247,0.293,0.32899999999999996 +2016-05-08 05:00:00,0.247,0.293,0.32899999999999996 +2016-05-08 06:00:00,0.247,0.294,0.32899999999999996 +2016-05-08 07:00:00,0.24600000000000002,0.294,0.32899999999999996 +2016-05-08 08:00:00,0.24600000000000002,0.293,0.32899999999999996 +2016-05-08 09:00:00,0.24600000000000002,0.293,0.32899999999999996 +2016-05-08 10:00:00,0.24600000000000002,0.293,0.32899999999999996 +2016-05-08 11:00:00,0.245,0.293,0.32899999999999996 +2016-05-08 12:00:00,0.245,0.293,0.32799999999999996 +2016-05-08 13:00:00,0.244,0.293,0.32799999999999996 +2016-05-08 14:00:00,0.243,0.293,0.327 +2016-05-08 15:00:00,0.243,0.293,0.326 +2016-05-08 16:00:00,0.242,0.293,0.325 +2016-05-08 17:00:00,0.242,0.292,0.325 +2016-05-08 18:00:00,0.242,0.292,0.325 +2016-05-08 19:00:00,0.242,0.292,0.325 +2016-05-08 20:00:00,0.242,0.292,0.325 +2016-05-08 21:00:00,0.242,0.292,0.325 +2016-05-08 22:00:00,0.242,0.292,0.325 +2016-05-08 23:00:00,0.242,0.292,0.325 +2016-05-09 00:00:00,0.242,0.292,0.325 +2016-05-09 01:00:00,0.242,0.292,0.325 +2016-05-09 02:00:00,0.24100000000000002,0.292,0.325 +2016-05-09 03:00:00,0.24100000000000002,0.292,0.325 +2016-05-09 04:00:00,0.24100000000000002,0.292,0.325 +2016-05-09 05:00:00,0.24100000000000002,0.292,0.325 +2016-05-09 06:00:00,0.24100000000000002,0.292,0.325 +2016-05-09 07:00:00,0.24100000000000002,0.292,0.325 +2016-05-09 08:00:00,0.24100000000000002,0.292,0.326 +2016-05-09 09:00:00,0.24,0.292,0.325 +2016-05-09 10:00:00,0.24,0.292,0.325 +2016-05-09 11:00:00,0.24,0.292,0.325 +2016-05-09 12:00:00,0.239,0.292,0.325 +2016-05-09 13:00:00,0.239,0.29100000000000004,0.324 +2016-05-09 14:00:00,0.23800000000000002,0.29,0.324 +2016-05-09 15:00:00,0.23800000000000002,0.29,0.324 +2016-05-09 16:00:00,0.23800000000000002,0.29,0.324 +2016-05-09 17:00:00,0.23800000000000002,0.28800000000000003,0.324 +2016-05-09 18:00:00,0.237,0.28800000000000003,0.324 +2016-05-09 19:00:00,0.237,0.28800000000000003,0.324 +2016-05-09 20:00:00,0.237,0.28800000000000003,0.324 +2016-05-09 21:00:00,0.23800000000000002,0.28800000000000003,0.324 +2016-05-09 22:00:00,0.23800000000000002,0.28800000000000003,0.324 +2016-05-09 23:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 00:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 01:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 02:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 03:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 04:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 05:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 06:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 07:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 08:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 09:00:00,0.237,0.28800000000000003,0.324 +2016-05-10 10:00:00,0.23600000000000002,0.28800000000000003,0.324 +2016-05-10 11:00:00,0.23600000000000002,0.28800000000000003,0.324 +2016-05-10 12:00:00,0.235,0.28800000000000003,0.324 +2016-05-10 13:00:00,0.235,0.28800000000000003,0.32299999999999995 +2016-05-10 14:00:00,0.23399999999999999,0.287,0.32299999999999995 +2016-05-10 15:00:00,0.23399999999999999,0.287,0.32299999999999995 +2016-05-10 16:00:00,0.23399999999999999,0.287,0.32299999999999995 +2016-05-10 17:00:00,0.23399999999999999,0.28600000000000003,0.32299999999999995 +2016-05-10 18:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-10 19:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-10 20:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-10 21:00:00,0.235,0.285,0.32299999999999995 +2016-05-10 22:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-10 23:00:00,0.235,0.285,0.32299999999999995 +2016-05-11 00:00:00,0.235,0.285,0.32299999999999995 +2016-05-11 01:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-11 02:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-11 03:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-11 04:00:00,0.23399999999999999,0.285,0.32299999999999995 +2016-05-11 05:00:00,0.23399999999999999,0.28600000000000003,0.32299999999999995 +2016-05-11 06:00:00,0.233,0.28600000000000003,0.32299999999999995 +2016-05-11 07:00:00,0.23399999999999999,0.28600000000000003,0.324 +2016-05-11 08:00:00,0.233,0.28600000000000003,0.324 +2016-05-11 09:00:00,0.233,0.28600000000000003,0.32299999999999995 +2016-05-11 10:00:00,0.233,0.28600000000000003,0.32299999999999995 +2016-05-11 11:00:00,0.233,0.28600000000000003,0.32299999999999995 +2016-05-11 12:00:00,0.233,0.285,0.32299999999999995 +2016-05-11 13:00:00,0.233,0.285,0.32299999999999995 +2016-05-11 14:00:00,0.23199999999999998,0.285,0.32299999999999995 +2016-05-11 15:00:00,0.23199999999999998,0.285,0.322 +2016-05-11 16:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-11 17:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-11 18:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-11 19:00:00,0.23199999999999998,0.282,0.322 +2016-05-11 20:00:00,0.23199999999999998,0.282,0.322 +2016-05-11 21:00:00,0.23199999999999998,0.281,0.322 +2016-05-11 22:00:00,0.23199999999999998,0.282,0.322 +2016-05-11 23:00:00,0.23199999999999998,0.282,0.322 +2016-05-12 00:00:00,0.23199999999999998,0.282,0.322 +2016-05-12 01:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-12 02:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-12 03:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-12 04:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-12 05:00:00,0.23199999999999998,0.28300000000000003,0.322 +2016-05-12 06:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 07:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 08:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 09:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 10:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 11:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 12:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 13:00:00,0.231,0.28300000000000003,0.322 +2016-05-12 14:00:00,0.23,0.28300000000000003,0.322 +2016-05-12 15:00:00,0.23,0.281,0.322 +2016-05-12 16:00:00,0.23,0.281,0.322 +2016-05-12 17:00:00,0.23,0.28,0.321 +2016-05-12 18:00:00,0.23,0.28,0.321 +2016-05-12 19:00:00,0.23,0.28,0.321 +2016-05-12 20:00:00,0.23,0.28,0.321 +2016-05-12 21:00:00,0.23,0.28,0.321 +2016-05-12 22:00:00,0.23,0.28,0.321 +2016-05-12 23:00:00,0.23,0.28,0.321 +2016-05-13 00:00:00,0.23,0.28,0.321 +2016-05-13 01:00:00,0.23,0.28,0.321 +2016-05-13 02:00:00,0.23,0.281,0.321 +2016-05-13 03:00:00,0.23,0.28,0.321 +2016-05-13 04:00:00,0.23,0.28,0.322 +2016-05-13 05:00:00,0.22899999999999998,0.28,0.322 +2016-05-13 06:00:00,0.22899999999999998,0.28,0.322 +2016-05-13 07:00:00,0.22899999999999998,0.28,0.322 +2016-05-13 08:00:00,0.22899999999999998,0.28,0.322 +2016-05-13 09:00:00,0.22899999999999998,0.28,0.322 +2016-05-13 10:00:00,0.22899999999999998,0.28,0.322 +2016-05-13 11:00:00,0.228,0.28,0.322 +2016-05-13 12:00:00,0.228,0.28,0.321 +2016-05-13 13:00:00,0.228,0.28,0.321 +2016-05-13 14:00:00,0.228,0.28,0.321 +2016-05-13 15:00:00,0.228,0.28,0.321 +2016-05-13 16:00:00,0.228,0.27899999999999997,0.321 +2016-05-13 17:00:00,0.22699999999999998,0.278,0.32299999999999995 +2016-05-13 18:00:00,0.225,0.278,0.325 +2016-05-13 19:00:00,0.225,0.278,0.325 +2016-05-13 20:00:00,0.226,0.278,0.325 +2016-05-13 21:00:00,0.226,0.278,0.325 +2016-05-13 22:00:00,0.226,0.278,0.325 +2016-05-13 23:00:00,0.226,0.278,0.325 +2016-05-14 00:00:00,0.226,0.278,0.325 +2016-05-14 01:00:00,0.22699999999999998,0.278,0.325 +2016-05-14 02:00:00,0.226,0.278,0.325 +2016-05-14 03:00:00,0.226,0.27899999999999997,0.325 +2016-05-14 04:00:00,0.226,0.27899999999999997,0.325 +2016-05-14 05:00:00,0.226,0.27899999999999997,0.325 +2016-05-14 06:00:00,0.225,0.27899999999999997,0.325 +2016-05-14 07:00:00,0.225,0.27899999999999997,0.326 +2016-05-14 08:00:00,0.226,0.28,0.325 +2016-05-14 09:00:00,0.22699999999999998,0.28,0.325 +2016-05-14 10:00:00,0.22699999999999998,0.28,0.324 +2016-05-14 11:00:00,0.22699999999999998,0.28,0.322 +2016-05-14 12:00:00,0.22699999999999998,0.27899999999999997,0.321 +2016-05-14 13:00:00,0.226,0.278,0.321 +2016-05-14 14:00:00,0.226,0.27699999999999997,0.321 +2016-05-14 15:00:00,0.226,0.276,0.32 +2016-05-14 16:00:00,0.226,0.276,0.32 +2016-05-14 17:00:00,0.225,0.275,0.32 +2016-05-14 18:00:00,0.226,0.275,0.32 +2016-05-14 19:00:00,0.226,0.275,0.319 +2016-05-14 20:00:00,0.225,0.275,0.319 +2016-05-14 21:00:00,0.225,0.275,0.319 +2016-05-14 22:00:00,0.225,0.275,0.319 +2016-05-14 23:00:00,0.225,0.275,0.319 +2016-05-15 00:00:00,0.225,0.276,0.319 +2016-05-15 01:00:00,0.225,0.276,0.319 +2016-05-15 02:00:00,0.225,0.276,0.319 +2016-05-15 03:00:00,0.225,0.276,0.32 +2016-05-15 04:00:00,0.225,0.276,0.32 +2016-05-15 05:00:00,0.225,0.276,0.32 +2016-05-15 06:00:00,0.225,0.276,0.32 +2016-05-15 07:00:00,0.225,0.276,0.32 +2016-05-15 08:00:00,0.225,0.276,0.32 +2016-05-15 09:00:00,0.225,0.276,0.32 +2016-05-15 10:00:00,0.22399999999999998,0.276,0.32 +2016-05-15 11:00:00,0.22399999999999998,0.276,0.32 +2016-05-15 12:00:00,0.22399999999999998,0.276,0.32 +2016-05-15 13:00:00,0.22399999999999998,0.276,0.319 +2016-05-15 14:00:00,0.22399999999999998,0.275,0.319 +2016-05-15 15:00:00,0.22399999999999998,0.275,0.319 +2016-05-15 16:00:00,0.223,0.275,0.319 +2016-05-15 17:00:00,0.223,0.27399999999999997,0.319 +2016-05-15 18:00:00,0.223,0.273,0.319 +2016-05-15 19:00:00,0.223,0.272,0.319 +2016-05-15 20:00:00,0.223,0.271,0.319 +2016-05-15 21:00:00,0.223,0.271,0.319 +2016-05-15 22:00:00,0.223,0.271,0.319 +2016-05-15 23:00:00,0.223,0.272,0.319 +2016-05-16 00:00:00,0.223,0.273,0.319 +2016-05-16 01:00:00,0.223,0.273,0.319 +2016-05-16 02:00:00,0.223,0.273,0.319 +2016-05-16 03:00:00,0.223,0.273,0.319 +2016-05-16 04:00:00,0.223,0.273,0.319 +2016-05-16 05:00:00,0.223,0.273,0.319 +2016-05-16 06:00:00,0.223,0.273,0.319 +2016-05-16 07:00:00,0.223,0.273,0.319 +2016-05-16 08:00:00,0.223,0.273,0.319 +2016-05-16 09:00:00,0.22399999999999998,0.273,0.319 +2016-05-16 10:00:00,0.225,0.273,0.319 +2016-05-16 11:00:00,0.225,0.273,0.319 +2016-05-16 12:00:00,0.225,0.273,0.319 +2016-05-16 13:00:00,0.225,0.273,0.319 +2016-05-16 14:00:00,0.225,0.271,0.319 +2016-05-16 15:00:00,0.225,0.27,0.319 +2016-05-16 16:00:00,0.225,0.26899999999999996,0.319 +2016-05-16 17:00:00,0.22399999999999998,0.268,0.318 +2016-05-16 18:00:00,0.22399999999999998,0.268,0.318 +2016-05-16 19:00:00,0.22399999999999998,0.266,0.318 +2016-05-16 20:00:00,0.22399999999999998,0.267,0.318 +2016-05-16 21:00:00,0.22399999999999998,0.268,0.318 +2016-05-16 22:00:00,0.22399999999999998,0.268,0.318 +2016-05-16 23:00:00,0.225,0.268,0.318 +2016-05-17 00:00:00,0.22399999999999998,0.26899999999999996,0.318 +2016-05-17 01:00:00,0.22399999999999998,0.26899999999999996,0.318 +2016-05-17 02:00:00,0.22399999999999998,0.27,0.318 +2016-05-17 03:00:00,0.22399999999999998,0.268,0.319 +2016-05-17 04:00:00,0.22399999999999998,0.268,0.319 +2016-05-17 05:00:00,0.22399999999999998,0.268,0.319 +2016-05-17 06:00:00,0.22399999999999998,0.268,0.319 +2016-05-17 07:00:00,0.22399999999999998,0.26899999999999996,0.319 +2016-05-17 08:00:00,0.22399999999999998,0.26899999999999996,0.319 +2016-05-17 09:00:00,0.22399999999999998,0.268,0.319 +2016-05-17 10:00:00,0.22399999999999998,0.268,0.319 +2016-05-17 11:00:00,0.22399999999999998,0.268,0.319 +2016-05-17 12:00:00,0.22399999999999998,0.26899999999999996,0.319 +2016-05-17 13:00:00,0.22399999999999998,0.27,0.319 +2016-05-17 14:00:00,0.22399999999999998,0.27,0.318 +2016-05-17 15:00:00,0.223,0.27,0.318 +2016-05-17 16:00:00,0.223,0.27,0.318 +2016-05-17 17:00:00,0.223,0.27,0.318 +2016-05-17 18:00:00,0.223,0.27,0.318 +2016-05-17 19:00:00,0.22399999999999998,0.27,0.318 +2016-05-17 20:00:00,0.22399999999999998,0.27,0.318 +2016-05-17 21:00:00,0.22399999999999998,0.27,0.318 +2016-05-17 22:00:00,0.223,0.27,0.318 +2016-05-17 23:00:00,0.223,0.27,0.318 +2016-05-18 00:00:00,0.223,0.27,0.318 +2016-05-18 01:00:00,0.223,0.27,0.318 +2016-05-18 02:00:00,0.223,0.27,0.318 +2016-05-18 03:00:00,0.223,0.27,0.318 +2016-05-18 04:00:00,0.223,0.27,0.318 +2016-05-18 05:00:00,0.223,0.27,0.318 +2016-05-18 06:00:00,0.223,0.27,0.318 +2016-05-18 07:00:00,0.223,0.27,0.319 +2016-05-18 08:00:00,0.223,0.27,0.318 +2016-05-18 09:00:00,0.223,0.27,0.318 +2016-05-18 10:00:00,0.223,0.27,0.318 +2016-05-18 11:00:00,0.223,0.27,0.318 +2016-05-18 12:00:00,0.223,0.27,0.318 +2016-05-18 13:00:00,0.223,0.27,0.318 +2016-05-18 14:00:00,0.223,0.268,0.318 +2016-05-18 15:00:00,0.223,0.268,0.318 +2016-05-18 16:00:00,0.223,0.268,0.318 +2016-05-18 17:00:00,0.223,0.268,0.318 +2016-05-18 18:00:00,0.223,0.268,0.318 +2016-05-18 19:00:00,0.223,0.26899999999999996,0.318 +2016-05-18 20:00:00,0.223,0.26899999999999996,0.318 +2016-05-18 21:00:00,0.223,0.27,0.318 +2016-05-18 22:00:00,0.223,0.27,0.318 +2016-05-18 23:00:00,0.223,0.27,0.319 +2016-05-19 00:00:00,0.223,0.27,0.319 +2016-05-19 01:00:00,0.223,0.27,0.319 +2016-05-19 02:00:00,0.223,0.27,0.319 +2016-05-19 03:00:00,0.223,0.27,0.319 +2016-05-19 04:00:00,0.223,0.27,0.319 +2016-05-19 05:00:00,0.223,0.27,0.322 +2016-05-19 06:00:00,0.222,0.27,0.32299999999999995 +2016-05-19 07:00:00,0.222,0.27,0.32299999999999995 +2016-05-19 08:00:00,0.222,0.27,0.32299999999999995 +2016-05-19 09:00:00,0.222,0.27,0.32299999999999995 +2016-05-19 10:00:00,0.223,0.27,0.32299999999999995 +2016-05-19 11:00:00,0.223,0.27,0.322 +2016-05-19 12:00:00,0.223,0.27,0.321 +2016-05-19 13:00:00,0.223,0.27,0.32 +2016-05-19 14:00:00,0.223,0.27,0.319 +2016-05-19 15:00:00,0.223,0.27,0.319 +2016-05-19 16:00:00,0.223,0.27,0.319 +2016-05-19 17:00:00,0.223,0.27,0.319 +2016-05-19 18:00:00,0.223,0.27,0.319 +2016-05-19 19:00:00,0.223,0.27,0.319 +2016-05-19 20:00:00,0.223,0.27,0.319 +2016-05-19 21:00:00,0.223,0.27,0.319 +2016-05-19 22:00:00,0.223,0.27,0.318 +2016-05-19 23:00:00,0.222,0.27,0.318 +2016-05-20 00:00:00,0.222,0.27,0.318 +2016-05-20 01:00:00,0.222,0.27,0.319 +2016-05-20 02:00:00,0.222,0.271,0.319 +2016-05-20 03:00:00,0.222,0.271,0.319 +2016-05-20 04:00:00,0.222,0.271,0.319 +2016-05-20 05:00:00,0.222,0.271,0.319 +2016-05-20 06:00:00,0.222,0.271,0.318 +2016-05-20 07:00:00,0.221,0.271,0.319 +2016-05-20 08:00:00,0.221,0.271,0.319 +2016-05-20 09:00:00,0.221,0.271,0.319 +2016-05-20 10:00:00,0.221,0.271,0.319 +2016-05-20 11:00:00,0.221,0.271,0.319 +2016-05-20 12:00:00,0.221,0.271,0.318 +2016-05-20 13:00:00,0.221,0.27,0.318 +2016-05-20 14:00:00,0.221,0.27,0.318 +2016-05-20 15:00:00,0.221,0.26899999999999996,0.318 +2016-05-20 16:00:00,0.221,0.268,0.318 +2016-05-20 17:00:00,0.221,0.266,0.318 +2016-05-20 18:00:00,0.221,0.266,0.318 +2016-05-20 19:00:00,0.221,0.266,0.318 +2016-05-20 20:00:00,0.222,0.266,0.317 +2016-05-20 21:00:00,0.222,0.266,0.318 +2016-05-20 22:00:00,0.222,0.266,0.318 +2016-05-20 23:00:00,0.221,0.266,0.318 +2016-05-21 00:00:00,0.221,0.266,0.317 +2016-05-21 01:00:00,0.221,0.266,0.318 +2016-05-21 02:00:00,0.221,0.267,0.318 +2016-05-21 03:00:00,0.221,0.268,0.318 +2016-05-21 04:00:00,0.221,0.268,0.318 +2016-05-21 05:00:00,0.221,0.268,0.318 +2016-05-21 06:00:00,0.221,0.268,0.318 +2016-05-21 07:00:00,0.221,0.267,0.318 +2016-05-21 08:00:00,0.221,0.266,0.318 +2016-05-21 09:00:00,0.221,0.265,0.318 +2016-05-21 10:00:00,0.221,0.266,0.318 +2016-05-21 11:00:00,0.221,0.266,0.318 +2016-05-21 12:00:00,0.221,0.265,0.318 +2016-05-21 13:00:00,0.221,0.266,0.317 +2016-05-21 14:00:00,0.221,0.266,0.317 +2016-05-21 15:00:00,0.22,0.267,0.317 +2016-05-21 16:00:00,0.22,0.268,0.316 +2016-05-21 17:00:00,0.22,0.268,0.316 +2016-05-21 18:00:00,0.221,0.268,0.316 +2016-05-21 19:00:00,0.221,0.268,0.316 +2016-05-21 20:00:00,0.221,0.268,0.316 +2016-05-21 21:00:00,0.221,0.268,0.316 +2016-05-21 22:00:00,0.221,0.268,0.316 +2016-05-21 23:00:00,0.22,0.26899999999999996,0.316 +2016-05-22 00:00:00,0.22,0.26899999999999996,0.316 +2016-05-22 01:00:00,0.22,0.26899999999999996,0.316 +2016-05-22 02:00:00,0.22,0.27,0.316 +2016-05-22 03:00:00,0.22,0.27,0.316 +2016-05-22 04:00:00,0.22,0.27,0.316 +2016-05-22 05:00:00,0.21899999999999997,0.27,0.316 +2016-05-22 06:00:00,0.21899999999999997,0.27,0.316 +2016-05-22 07:00:00,0.21899999999999997,0.27,0.317 +2016-05-22 08:00:00,0.21899999999999997,0.27,0.317 +2016-05-22 09:00:00,0.21899999999999997,0.26899999999999996,0.317 +2016-05-22 10:00:00,0.21899999999999997,0.26899999999999996,0.317 +2016-05-22 11:00:00,0.21899999999999997,0.26899999999999996,0.317 +2016-05-22 12:00:00,0.21899999999999997,0.26899999999999996,0.316 +2016-05-22 13:00:00,0.218,0.26899999999999996,0.316 +2016-05-22 14:00:00,0.21899999999999997,0.27,0.316 +2016-05-22 15:00:00,0.21899999999999997,0.27,0.316 +2016-05-22 16:00:00,0.218,0.26899999999999996,0.316 +2016-05-22 17:00:00,0.21899999999999997,0.268,0.315 +2016-05-22 18:00:00,0.21899999999999997,0.268,0.315 +2016-05-22 19:00:00,0.21899999999999997,0.268,0.315 +2016-05-22 20:00:00,0.21899999999999997,0.26899999999999996,0.316 +2016-05-22 21:00:00,0.21899999999999997,0.26899999999999996,0.316 +2016-05-22 22:00:00,0.21899999999999997,0.27,0.316 +2016-05-22 23:00:00,0.21899999999999997,0.27,0.317 +2016-05-23 00:00:00,0.21899999999999997,0.27,0.319 +2016-05-23 01:00:00,0.217,0.27,0.321 +2016-05-23 02:00:00,0.217,0.27,0.322 +2016-05-23 03:00:00,0.217,0.27,0.322 +2016-05-23 04:00:00,0.217,0.27,0.322 +2016-05-23 05:00:00,0.217,0.27,0.322 +2016-05-23 06:00:00,0.215,0.27,0.322 +2016-05-23 07:00:00,0.215,0.27,0.322 +2016-05-23 08:00:00,0.215,0.27,0.322 +2016-05-23 09:00:00,0.21600000000000003,0.27,0.322 +2016-05-23 10:00:00,0.217,0.27,0.321 +2016-05-23 11:00:00,0.218,0.27,0.321 +2016-05-23 12:00:00,0.21899999999999997,0.27,0.321 +2016-05-23 13:00:00,0.21899999999999997,0.27,0.32 +2016-05-23 14:00:00,0.21899999999999997,0.27,0.319 +2016-05-23 15:00:00,0.21899999999999997,0.27,0.319 +2016-05-23 16:00:00,0.21899999999999997,0.27,0.318 +2016-05-23 17:00:00,0.21899999999999997,0.27,0.318 +2016-05-23 18:00:00,0.21899999999999997,0.27,0.317 +2016-05-23 19:00:00,0.21899999999999997,0.27,0.317 +2016-05-23 20:00:00,0.21899999999999997,0.27,0.317 +2016-05-23 21:00:00,0.21899999999999997,0.27,0.317 +2016-05-23 22:00:00,0.21899999999999997,0.27,0.317 +2016-05-23 23:00:00,0.21899999999999997,0.27,0.317 +2016-05-24 00:00:00,0.21899999999999997,0.27,0.317 +2016-05-24 01:00:00,0.21899999999999997,0.27,0.317 +2016-05-24 02:00:00,0.218,0.27,0.317 +2016-05-24 03:00:00,0.218,0.26899999999999996,0.317 +2016-05-24 04:00:00,0.218,0.268,0.317 +2016-05-24 05:00:00,0.218,0.267,0.317 +2016-05-24 06:00:00,0.218,0.297,0.317 +2016-05-24 07:00:00,0.218,0.305,0.317 +2016-05-24 08:00:00,0.218,0.304,0.317 +2016-05-24 09:00:00,0.218,0.301,0.317 +2016-05-24 10:00:00,0.218,0.3,0.32 +2016-05-24 11:00:00,0.21600000000000003,0.299,0.322 +2016-05-24 12:00:00,0.21600000000000003,0.298,0.32299999999999995 +2016-05-24 13:00:00,0.215,0.297,0.32299999999999995 +2016-05-24 14:00:00,0.215,0.298,0.324 +2016-05-24 15:00:00,0.215,0.298,0.324 +2016-05-24 16:00:00,0.21600000000000003,0.298,0.32299999999999995 +2016-05-24 17:00:00,0.21600000000000003,0.297,0.32299999999999995 +2016-05-24 18:00:00,0.217,0.297,0.32299999999999995 +2016-05-24 19:00:00,0.217,0.29600000000000004,0.32299999999999995 +2016-05-24 20:00:00,0.218,0.295,0.32299999999999995 +2016-05-24 21:00:00,0.218,0.295,0.32299999999999995 +2016-05-24 22:00:00,0.218,0.294,0.322 +2016-05-24 23:00:00,0.218,0.293,0.322 +2016-05-25 00:00:00,0.218,0.293,0.322 +2016-05-25 01:00:00,0.218,0.293,0.322 +2016-05-25 02:00:00,0.218,0.293,0.322 +2016-05-25 03:00:00,0.218,0.293,0.322 +2016-05-25 04:00:00,0.218,0.293,0.322 +2016-05-25 05:00:00,0.218,0.293,0.322 +2016-05-25 06:00:00,0.218,0.293,0.322 +2016-05-25 07:00:00,0.218,0.293,0.322 +2016-05-25 08:00:00,0.218,0.293,0.322 +2016-05-25 09:00:00,0.218,0.293,0.322 +2016-05-25 10:00:00,0.218,0.293,0.322 +2016-05-25 11:00:00,0.218,0.292,0.321 +2016-05-25 12:00:00,0.21899999999999997,0.292,0.321 +2016-05-25 13:00:00,0.21899999999999997,0.292,0.32 +2016-05-25 14:00:00,0.21899999999999997,0.292,0.32 +2016-05-25 15:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 16:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 17:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 18:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 19:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 20:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 21:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 22:00:00,0.21899999999999997,0.292,0.319 +2016-05-25 23:00:00,0.21899999999999997,0.292,0.319 +2016-05-26 00:00:00,0.21899999999999997,0.292,0.319 +2016-05-26 01:00:00,0.21899999999999997,0.292,0.319 +2016-05-26 02:00:00,0.218,0.292,0.319 +2016-05-26 03:00:00,0.218,0.292,0.319 +2016-05-26 04:00:00,0.218,0.292,0.319 +2016-05-26 05:00:00,0.218,0.292,0.319 +2016-05-26 06:00:00,0.218,0.292,0.319 +2016-05-26 07:00:00,0.218,0.292,0.319 +2016-05-26 08:00:00,0.218,0.292,0.319 +2016-05-26 09:00:00,0.218,0.29100000000000004,0.319 +2016-05-26 10:00:00,0.218,0.28800000000000003,0.319 +2016-05-26 11:00:00,0.217,0.28800000000000003,0.319 +2016-05-26 12:00:00,0.217,0.28800000000000003,0.318 +2016-05-26 13:00:00,0.217,0.28800000000000003,0.318 +2016-05-26 14:00:00,0.218,0.28800000000000003,0.318 +2016-05-26 15:00:00,0.217,0.289,0.318 +2016-05-26 16:00:00,0.218,0.289,0.318 +2016-05-26 17:00:00,0.218,0.29,0.317 +2016-05-26 18:00:00,0.218,0.29,0.317 +2016-05-26 19:00:00,0.218,0.28600000000000003,0.317 +2016-05-26 20:00:00,0.218,0.284,0.317 +2016-05-26 21:00:00,0.218,0.285,0.317 +2016-05-26 22:00:00,0.218,0.28300000000000003,0.317 +2016-05-26 23:00:00,0.218,0.285,0.317 +2016-05-27 00:00:00,0.218,0.285,0.317 +2016-05-27 01:00:00,0.218,0.285,0.317 +2016-05-27 02:00:00,0.218,0.285,0.317 +2016-05-27 03:00:00,0.217,0.28600000000000003,0.318 +2016-05-27 04:00:00,0.218,0.28600000000000003,0.321 +2016-05-27 05:00:00,0.21600000000000003,0.287,0.32299999999999995 +2016-05-27 06:00:00,0.21600000000000003,0.287,0.324 +2016-05-27 07:00:00,0.215,0.287,0.324 +2016-05-27 08:00:00,0.215,0.287,0.324 +2016-05-27 09:00:00,0.215,0.287,0.324 +2016-05-27 10:00:00,0.21600000000000003,0.287,0.324 +2016-05-27 11:00:00,0.21600000000000003,0.287,0.324 +2016-05-27 12:00:00,0.217,0.287,0.324 +2016-05-27 13:00:00,0.21899999999999997,0.287,0.32299999999999995 +2016-05-27 14:00:00,0.22,0.28800000000000003,0.32299999999999995 +2016-05-27 15:00:00,0.22,0.289,0.322 +2016-05-27 16:00:00,0.22,0.29,0.322 +2016-05-27 17:00:00,0.221,0.29,0.321 +2016-05-27 18:00:00,0.221,0.29,0.321 +2016-05-27 19:00:00,0.221,0.29,0.321 +2016-05-27 20:00:00,0.221,0.29,0.322 +2016-05-27 21:00:00,0.221,0.29,0.32299999999999995 +2016-05-27 22:00:00,0.221,0.28600000000000003,0.32299999999999995 +2016-05-27 23:00:00,0.221,0.285,0.32299999999999995 +2016-05-28 00:00:00,0.221,0.28600000000000003,0.32299999999999995 +2016-05-28 01:00:00,0.221,0.287,0.32299999999999995 +2016-05-28 02:00:00,0.221,0.287,0.32299999999999995 +2016-05-28 03:00:00,0.221,0.287,0.32299999999999995 +2016-05-28 04:00:00,0.221,0.287,0.32299999999999995 +2016-05-28 05:00:00,0.221,0.287,0.32299999999999995 +2016-05-28 06:00:00,0.22,0.287,0.32299999999999995 +2016-05-28 07:00:00,0.22,0.287,0.32299999999999995 +2016-05-28 08:00:00,0.22,0.287,0.32299999999999995 +2016-05-28 09:00:00,0.22,0.287,0.32299999999999995 +2016-05-28 10:00:00,0.22,0.287,0.32299999999999995 +2016-05-28 11:00:00,0.22,0.28600000000000003,0.32299999999999995 +2016-05-28 12:00:00,0.22,0.287,0.32299999999999995 +2016-05-28 13:00:00,0.221,0.287,0.322 +2016-05-28 14:00:00,0.221,0.28600000000000003,0.321 +2016-05-28 15:00:00,0.221,0.284,0.321 +2016-05-28 16:00:00,0.221,0.284,0.321 +2016-05-28 17:00:00,0.221,0.284,0.32 +2016-05-28 18:00:00,0.221,0.285,0.32 +2016-05-28 19:00:00,0.221,0.28600000000000003,0.32 +2016-05-28 20:00:00,0.221,0.28300000000000003,0.32 +2016-05-28 21:00:00,0.222,0.28300000000000003,0.321 +2016-05-28 22:00:00,0.222,0.28300000000000003,0.321 +2016-05-28 23:00:00,0.222,0.284,0.321 +2016-05-29 00:00:00,0.222,0.285,0.321 +2016-05-29 01:00:00,0.222,0.285,0.321 +2016-05-29 02:00:00,0.222,0.285,0.321 +2016-05-29 03:00:00,0.222,0.28600000000000003,0.321 +2016-05-29 04:00:00,0.222,0.287,0.321 +2016-05-29 05:00:00,0.221,0.287,0.321 +2016-05-29 06:00:00,0.221,0.287,0.321 +2016-05-29 07:00:00,0.221,0.287,0.321 +2016-05-29 08:00:00,0.221,0.287,0.322 +2016-05-29 09:00:00,0.221,0.287,0.322 +2016-05-29 10:00:00,0.221,0.287,0.322 +2016-05-29 11:00:00,0.221,0.287,0.321 +2016-05-29 12:00:00,0.221,0.287,0.321 +2016-05-29 13:00:00,0.221,0.287,0.321 +2016-05-29 14:00:00,0.221,0.28800000000000003,0.321 +2016-05-29 15:00:00,0.221,0.28800000000000003,0.321 +2016-05-29 16:00:00,0.221,0.289,0.32 +2016-05-29 17:00:00,0.221,0.29,0.32 +2016-05-29 18:00:00,0.221,0.29,0.32 +2016-05-29 19:00:00,0.221,0.29,0.32 +2016-05-29 20:00:00,0.222,0.29,0.32 +2016-05-29 21:00:00,0.222,0.29,0.32 +2016-05-29 22:00:00,0.222,0.29,0.32 +2016-05-29 23:00:00,0.221,0.29,0.322 +2016-05-30 00:00:00,0.22,0.29,0.324 +2016-05-30 01:00:00,0.218,0.292,0.325 +2016-05-30 02:00:00,0.23600000000000002,0.292,0.326 +2016-05-30 03:00:00,0.27899999999999997,0.292,0.342 +2016-05-30 04:00:00,0.272,0.292,0.354 +2016-05-30 05:00:00,0.267,0.292,0.353 +2016-05-30 06:00:00,0.265,0.292,0.349 +2016-05-30 07:00:00,0.264,0.292,0.34600000000000003 +2016-05-30 08:00:00,0.262,0.292,0.34299999999999997 +2016-05-30 09:00:00,0.261,0.292,0.34 +2016-05-30 10:00:00,0.26,0.292,0.33899999999999997 +2016-05-30 11:00:00,0.26,0.292,0.33799999999999997 +2016-05-30 12:00:00,0.259,0.292,0.336 +2016-05-30 13:00:00,0.259,0.292,0.335 +2016-05-30 14:00:00,0.26,0.29100000000000004,0.33399999999999996 +2016-05-30 15:00:00,0.26,0.29,0.33299999999999996 +2016-05-30 16:00:00,0.26,0.29,0.33299999999999996 +2016-05-30 17:00:00,0.26,0.289,0.332 +2016-05-30 18:00:00,0.26,0.28800000000000003,0.332 +2016-05-30 19:00:00,0.259,0.28800000000000003,0.332 +2016-05-30 20:00:00,0.258,0.28800000000000003,0.33299999999999996 +2016-05-30 21:00:00,0.258,0.287,0.33299999999999996 +2016-05-30 22:00:00,0.257,0.28800000000000003,0.332 +2016-05-30 23:00:00,0.257,0.28800000000000003,0.332 +2016-05-31 00:00:00,0.257,0.28800000000000003,0.332 +2016-05-31 01:00:00,0.257,0.28800000000000003,0.332 +2016-05-31 02:00:00,0.257,0.289,0.332 +2016-05-31 03:00:00,0.256,0.289,0.332 +2016-05-31 04:00:00,0.256,0.29,0.332 +2016-05-31 05:00:00,0.255,0.29,0.332 +2016-05-31 06:00:00,0.255,0.29,0.332 +2016-05-31 07:00:00,0.255,0.29,0.332 +2016-05-31 08:00:00,0.255,0.29,0.332 +2016-05-31 09:00:00,0.254,0.29,0.332 +2016-05-31 10:00:00,0.255,0.29,0.331 +2016-05-31 11:00:00,0.255,0.29,0.331 +2016-05-31 12:00:00,0.255,0.29,0.33 +2016-05-31 13:00:00,0.255,0.28800000000000003,0.33 +2016-05-31 14:00:00,0.255,0.287,0.33 +2016-05-31 15:00:00,0.255,0.287,0.32799999999999996 +2016-05-31 16:00:00,0.254,0.28600000000000003,0.327 +2016-05-31 17:00:00,0.254,0.285,0.327 +2016-05-31 18:00:00,0.254,0.28300000000000003,0.327 +2016-05-31 19:00:00,0.254,0.28300000000000003,0.327 +2016-05-31 20:00:00,0.254,0.28300000000000003,0.327 +2016-05-31 21:00:00,0.254,0.28300000000000003,0.327 +2016-05-31 22:00:00,0.254,0.28300000000000003,0.327 +2016-05-31 23:00:00,0.254,0.28300000000000003,0.327 +2016-06-01 00:00:00,0.253,0.284,0.327 +2016-06-01 01:00:00,0.253,0.285,0.326 +2016-06-01 02:00:00,0.253,0.285,0.326 +2016-06-01 03:00:00,0.253,0.285,0.326 +2016-06-01 04:00:00,0.253,0.285,0.326 +2016-06-01 05:00:00,0.252,0.28600000000000003,0.326 +2016-06-01 06:00:00,0.252,0.28600000000000003,0.327 +2016-06-01 07:00:00,0.248,0.28600000000000003,0.32899999999999996 +2016-06-01 08:00:00,0.248,0.287,0.32899999999999996 +2016-06-01 09:00:00,0.248,0.28600000000000003,0.32899999999999996 +2016-06-01 10:00:00,0.248,0.28600000000000003,0.32899999999999996 +2016-06-01 11:00:00,0.249,0.28600000000000003,0.32899999999999996 +2016-06-01 12:00:00,0.249,0.285,0.32899999999999996 +2016-06-01 13:00:00,0.25,0.284,0.32899999999999996 +2016-06-01 14:00:00,0.25,0.28300000000000003,0.32799999999999996 +2016-06-01 15:00:00,0.25,0.281,0.32799999999999996 +2016-06-01 16:00:00,0.248,0.28,0.32899999999999996 +2016-06-01 17:00:00,0.251,0.28,0.32899999999999996 +2016-06-01 18:00:00,0.259,0.278,0.33 +2016-06-01 19:00:00,0.26899999999999996,0.278,0.33 +2016-06-01 20:00:00,0.272,0.27699999999999997,0.331 +2016-06-01 21:00:00,0.272,0.27699999999999997,0.331 +2016-06-01 22:00:00,0.271,0.278,0.331 +2016-06-01 23:00:00,0.271,0.278,0.331 +2016-06-02 00:00:00,0.27,0.278,0.331 +2016-06-02 01:00:00,0.27,0.27899999999999997,0.331 +2016-06-02 02:00:00,0.26899999999999996,0.28,0.331 +2016-06-02 03:00:00,0.268,0.28,0.331 +2016-06-02 04:00:00,0.268,0.28,0.331 +2016-06-02 05:00:00,0.268,0.28,0.331 +2016-06-02 06:00:00,0.268,0.28,0.331 +2016-06-02 07:00:00,0.267,0.28,0.331 +2016-06-02 08:00:00,0.267,0.28,0.331 +2016-06-02 09:00:00,0.266,0.281,0.33 +2016-06-02 10:00:00,0.266,0.281,0.33 +2016-06-02 11:00:00,0.266,0.28,0.33 +2016-06-02 12:00:00,0.266,0.28,0.33 +2016-06-02 13:00:00,0.265,0.28,0.33 +2016-06-02 14:00:00,0.265,0.28,0.32899999999999996 +2016-06-02 15:00:00,0.265,0.27899999999999997,0.32899999999999996 +2016-06-02 16:00:00,0.265,0.278,0.32899999999999996 +2016-06-02 17:00:00,0.265,0.278,0.32899999999999996 +2016-06-02 18:00:00,0.264,0.278,0.32899999999999996 +2016-06-02 19:00:00,0.261,0.278,0.33 +2016-06-02 20:00:00,0.261,0.278,0.33 +2016-06-02 21:00:00,0.261,0.27899999999999997,0.33 +2016-06-02 22:00:00,0.261,0.27899999999999997,0.33 +2016-06-02 23:00:00,0.261,0.28,0.33 +2016-06-03 00:00:00,0.261,0.28,0.33 +2016-06-03 01:00:00,0.261,0.28,0.33 +2016-06-03 02:00:00,0.261,0.28,0.32899999999999996 +2016-06-03 03:00:00,0.261,0.28,0.33 +2016-06-03 04:00:00,0.261,0.28,0.33 +2016-06-03 05:00:00,0.261,0.28,0.33 +2016-06-03 06:00:00,0.261,0.28,0.33 +2016-06-03 07:00:00,0.261,0.28,0.33 +2016-06-03 08:00:00,0.26,0.281,0.33 +2016-06-03 09:00:00,0.26,0.28,0.33 +2016-06-03 10:00:00,0.26,0.28,0.32899999999999996 +2016-06-03 11:00:00,0.26,0.28,0.32899999999999996 +2016-06-03 12:00:00,0.26,0.28,0.33 +2016-06-03 13:00:00,0.26,0.27899999999999997,0.33 +2016-06-03 14:00:00,0.26,0.27699999999999997,0.33 +2016-06-03 15:00:00,0.261,0.276,0.32899999999999996 +2016-06-03 16:00:00,0.26,0.275,0.32899999999999996 +2016-06-03 17:00:00,0.268,0.275,0.33 +2016-06-03 18:00:00,0.27899999999999997,0.275,0.33 +2016-06-03 19:00:00,0.278,0.27399999999999997,0.331 +2016-06-03 20:00:00,0.27699999999999997,0.273,0.33 +2016-06-03 21:00:00,0.276,0.273,0.331 +2016-06-03 22:00:00,0.276,0.27399999999999997,0.33 +2016-06-03 23:00:00,0.275,0.275,0.33 +2016-06-04 00:00:00,0.275,0.275,0.33 +2016-06-04 01:00:00,0.275,0.275,0.33 +2016-06-04 02:00:00,0.27399999999999997,0.275,0.33 +2016-06-04 03:00:00,0.27399999999999997,0.276,0.33 +2016-06-04 04:00:00,0.273,0.276,0.33 +2016-06-04 05:00:00,0.273,0.276,0.33 +2016-06-04 06:00:00,0.272,0.276,0.33 +2016-06-04 07:00:00,0.272,0.276,0.33 +2016-06-04 08:00:00,0.272,0.276,0.33 +2016-06-04 09:00:00,0.272,0.276,0.33 +2016-06-04 10:00:00,0.271,0.276,0.33 +2016-06-04 11:00:00,0.271,0.276,0.33 +2016-06-04 12:00:00,0.27,0.276,0.33 +2016-06-04 13:00:00,0.26899999999999996,0.275,0.33 +2016-06-04 14:00:00,0.26899999999999996,0.273,0.32899999999999996 +2016-06-04 15:00:00,0.26899999999999996,0.271,0.32899999999999996 +2016-06-04 16:00:00,0.26899999999999996,0.27,0.32899999999999996 +2016-06-04 17:00:00,0.26899999999999996,0.27,0.32899999999999996 +2016-06-04 18:00:00,0.268,0.26899999999999996,0.32899999999999996 +2016-06-04 19:00:00,0.268,0.268,0.32899999999999996 +2016-06-04 20:00:00,0.268,0.268,0.32899999999999996 +2016-06-04 21:00:00,0.268,0.268,0.32899999999999996 +2016-06-04 22:00:00,0.268,0.268,0.32899999999999996 +2016-06-04 23:00:00,0.268,0.268,0.32899999999999996 +2016-06-05 00:00:00,0.267,0.26899999999999996,0.32799999999999996 +2016-06-05 01:00:00,0.267,0.27,0.32899999999999996 +2016-06-05 02:00:00,0.267,0.27,0.32899999999999996 +2016-06-05 03:00:00,0.266,0.27,0.32899999999999996 +2016-06-05 04:00:00,0.266,0.27,0.32899999999999996 +2016-06-05 05:00:00,0.266,0.27,0.32899999999999996 +2016-06-05 06:00:00,0.266,0.271,0.32899999999999996 +2016-06-05 07:00:00,0.264,0.271,0.32899999999999996 +2016-06-05 08:00:00,0.264,0.271,0.32899999999999996 +2016-06-05 09:00:00,0.264,0.271,0.32899999999999996 +2016-06-05 10:00:00,0.264,0.271,0.32899999999999996 +2016-06-05 11:00:00,0.264,0.271,0.32799999999999996 +2016-06-05 12:00:00,0.264,0.271,0.32799999999999996 +2016-06-05 13:00:00,0.264,0.27,0.327 +2016-06-05 14:00:00,0.263,0.27,0.327 +2016-06-05 15:00:00,0.262,0.26899999999999996,0.326 +2016-06-05 16:00:00,0.262,0.268,0.326 +2016-06-05 17:00:00,0.261,0.266,0.326 +2016-06-05 18:00:00,0.261,0.266,0.326 +2016-06-05 19:00:00,0.26,0.266,0.325 +2016-06-05 20:00:00,0.26,0.266,0.325 +2016-06-05 21:00:00,0.261,0.266,0.325 +2016-06-05 22:00:00,0.261,0.266,0.325 +2016-06-05 23:00:00,0.26,0.266,0.325 +2016-06-06 00:00:00,0.26,0.266,0.325 +2016-06-06 01:00:00,0.26,0.266,0.325 +2016-06-06 02:00:00,0.26,0.267,0.325 +2016-06-06 03:00:00,0.26,0.268,0.325 +2016-06-06 04:00:00,0.26,0.268,0.325 +2016-06-06 05:00:00,0.259,0.268,0.325 +2016-06-06 06:00:00,0.259,0.268,0.325 +2016-06-06 07:00:00,0.259,0.268,0.325 +2016-06-06 08:00:00,0.259,0.26899999999999996,0.325 +2016-06-06 09:00:00,0.258,0.26899999999999996,0.325 +2016-06-06 10:00:00,0.258,0.26899999999999996,0.325 +2016-06-06 11:00:00,0.257,0.26899999999999996,0.325 +2016-06-06 12:00:00,0.257,0.268,0.325 +2016-06-06 13:00:00,0.256,0.268,0.324 +2016-06-06 14:00:00,0.255,0.268,0.324 +2016-06-06 15:00:00,0.254,0.268,0.324 +2016-06-06 16:00:00,0.254,0.268,0.324 +2016-06-06 17:00:00,0.253,0.266,0.32299999999999995 +2016-06-06 18:00:00,0.253,0.267,0.32299999999999995 +2016-06-06 19:00:00,0.253,0.268,0.32299999999999995 +2016-06-06 20:00:00,0.253,0.268,0.32299999999999995 +2016-06-06 21:00:00,0.253,0.26899999999999996,0.32299999999999995 +2016-06-06 22:00:00,0.253,0.27,0.32299999999999995 +2016-06-06 23:00:00,0.253,0.27,0.32299999999999995 +2016-06-07 00:00:00,0.253,0.27,0.32299999999999995 +2016-06-07 01:00:00,0.253,0.271,0.32299999999999995 +2016-06-07 02:00:00,0.253,0.271,0.32299999999999995 +2016-06-07 03:00:00,0.252,0.271,0.32299999999999995 +2016-06-07 04:00:00,0.252,0.271,0.32299999999999995 +2016-06-07 05:00:00,0.252,0.272,0.32299999999999995 +2016-06-07 06:00:00,0.252,0.272,0.32299999999999995 +2016-06-07 07:00:00,0.252,0.273,0.324 +2016-06-07 08:00:00,0.252,0.273,0.324 +2016-06-07 09:00:00,0.251,0.273,0.324 +2016-06-07 10:00:00,0.251,0.273,0.32299999999999995 +2016-06-07 11:00:00,0.25,0.273,0.32299999999999995 +2016-06-07 12:00:00,0.249,0.273,0.32299999999999995 +2016-06-07 13:00:00,0.248,0.273,0.322 +2016-06-07 14:00:00,0.248,0.273,0.322 +2016-06-07 15:00:00,0.24600000000000002,0.273,0.322 +2016-06-07 16:00:00,0.24600000000000002,0.273,0.322 +2016-06-07 17:00:00,0.245,0.273,0.322 +2016-06-07 18:00:00,0.245,0.273,0.321 +2016-06-07 19:00:00,0.245,0.273,0.321 +2016-06-07 20:00:00,0.245,0.273,0.322 +2016-06-07 21:00:00,0.245,0.273,0.322 +2016-06-07 22:00:00,0.245,0.27399999999999997,0.322 +2016-06-07 23:00:00,0.244,0.275,0.322 +2016-06-08 00:00:00,0.244,0.275,0.322 +2016-06-08 01:00:00,0.244,0.275,0.322 +2016-06-08 02:00:00,0.245,0.275,0.322 +2016-06-08 03:00:00,0.245,0.275,0.322 +2016-06-08 04:00:00,0.245,0.275,0.322 +2016-06-08 05:00:00,0.245,0.275,0.322 +2016-06-08 06:00:00,0.245,0.275,0.322 +2016-06-08 07:00:00,0.244,0.275,0.322 +2016-06-08 08:00:00,0.244,0.275,0.322 +2016-06-08 09:00:00,0.243,0.275,0.32299999999999995 +2016-06-08 10:00:00,0.243,0.275,0.32299999999999995 +2016-06-08 11:00:00,0.244,0.275,0.32299999999999995 +2016-06-08 12:00:00,0.243,0.275,0.322 +2016-06-08 13:00:00,0.243,0.275,0.322 +2016-06-08 14:00:00,0.242,0.275,0.322 +2016-06-08 15:00:00,0.242,0.275,0.322 +2016-06-08 16:00:00,0.242,0.275,0.322 +2016-06-08 17:00:00,0.242,0.275,0.322 +2016-06-08 18:00:00,0.242,0.275,0.322 +2016-06-08 19:00:00,0.242,0.275,0.322 +2016-06-08 20:00:00,0.242,0.275,0.322 +2016-06-08 21:00:00,0.242,0.275,0.322 +2016-06-08 22:00:00,0.242,0.275,0.322 +2016-06-08 23:00:00,0.242,0.276,0.322 +2016-06-09 00:00:00,0.242,0.276,0.322 +2016-06-09 01:00:00,0.24100000000000002,0.276,0.322 +2016-06-09 02:00:00,0.24100000000000002,0.276,0.322 +2016-06-09 03:00:00,0.24100000000000002,0.276,0.322 +2016-06-09 04:00:00,0.24100000000000002,0.276,0.322 +2016-06-09 05:00:00,0.24100000000000002,0.27699999999999997,0.322 +2016-06-09 06:00:00,0.24100000000000002,0.276,0.322 +2016-06-09 07:00:00,0.24,0.276,0.322 +2016-06-09 08:00:00,0.24100000000000002,0.276,0.322 +2016-06-09 09:00:00,0.24100000000000002,0.276,0.322 +2016-06-09 10:00:00,0.24,0.276,0.321 +2016-06-09 11:00:00,0.24,0.276,0.321 +2016-06-09 12:00:00,0.24,0.276,0.321 +2016-06-09 13:00:00,0.239,0.275,0.321 +2016-06-09 14:00:00,0.239,0.273,0.32 +2016-06-09 15:00:00,0.23800000000000002,0.272,0.32 +2016-06-09 16:00:00,0.23800000000000002,0.273,0.32 +2016-06-09 17:00:00,0.23800000000000002,0.271,0.32 +2016-06-09 18:00:00,0.237,0.271,0.32 +2016-06-09 19:00:00,0.237,0.27,0.32 +2016-06-09 20:00:00,0.237,0.27,0.32 +2016-06-09 21:00:00,0.237,0.271,0.32 +2016-06-09 22:00:00,0.23800000000000002,0.272,0.32 +2016-06-09 23:00:00,0.23800000000000002,0.273,0.32 +2016-06-10 00:00:00,0.23800000000000002,0.273,0.32 +2016-06-10 01:00:00,0.23800000000000002,0.275,0.32 +2016-06-10 02:00:00,0.23800000000000002,0.275,0.32 +2016-06-10 03:00:00,0.23800000000000002,0.275,0.32 +2016-06-10 04:00:00,0.23800000000000002,0.275,0.32 +2016-06-10 05:00:00,0.23800000000000002,0.276,0.32 +2016-06-10 06:00:00,0.23800000000000002,0.276,0.32 +2016-06-10 07:00:00,0.23800000000000002,0.276,0.32 +2016-06-10 08:00:00,0.23800000000000002,0.276,0.32 +2016-06-10 09:00:00,0.237,0.276,0.32 +2016-06-10 10:00:00,0.23600000000000002,0.276,0.32 +2016-06-10 11:00:00,0.235,0.276,0.32 +2016-06-10 12:00:00,0.23399999999999999,0.276,0.319 +2016-06-10 13:00:00,0.23399999999999999,0.276,0.319 +2016-06-10 14:00:00,0.233,0.276,0.319 +2016-06-10 15:00:00,0.233,0.276,0.319 +2016-06-10 16:00:00,0.233,0.276,0.318 +2016-06-10 17:00:00,0.233,0.276,0.318 +2016-06-10 18:00:00,0.233,0.28,0.318 +2016-06-10 19:00:00,0.23199999999999998,0.28,0.318 +2016-06-10 20:00:00,0.233,0.28,0.318 +2016-06-10 21:00:00,0.23199999999999998,0.28,0.318 +2016-06-10 22:00:00,0.23199999999999998,0.28,0.318 +2016-06-10 23:00:00,0.23199999999999998,0.28,0.318 +2016-06-11 00:00:00,0.23199999999999998,0.281,0.318 +2016-06-11 01:00:00,0.23199999999999998,0.281,0.318 +2016-06-11 02:00:00,0.23199999999999998,0.281,0.318 +2016-06-11 03:00:00,0.23199999999999998,0.281,0.318 +2016-06-11 04:00:00,0.231,0.281,0.318 +2016-06-11 05:00:00,0.231,0.281,0.318 +2016-06-11 06:00:00,0.231,0.281,0.318 +2016-06-11 07:00:00,0.231,0.281,0.319 +2016-06-11 08:00:00,0.231,0.281,0.319 +2016-06-11 09:00:00,0.231,0.281,0.319 +2016-06-11 10:00:00,0.231,0.281,0.318 +2016-06-11 11:00:00,0.231,0.281,0.318 +2016-06-11 12:00:00,0.23,0.281,0.318 +2016-06-11 13:00:00,0.23,0.281,0.318 +2016-06-11 14:00:00,0.23,0.282,0.318 +2016-06-11 15:00:00,0.22899999999999998,0.281,0.318 +2016-06-11 16:00:00,0.22899999999999998,0.281,0.318 +2016-06-11 17:00:00,0.22699999999999998,0.281,0.318 +2016-06-11 18:00:00,0.22699999999999998,0.28,0.317 +2016-06-11 19:00:00,0.226,0.27699999999999997,0.318 +2016-06-11 20:00:00,0.226,0.27899999999999997,0.318 +2016-06-11 21:00:00,0.226,0.28,0.318 +2016-06-11 22:00:00,0.226,0.281,0.318 +2016-06-11 23:00:00,0.226,0.281,0.318 +2016-06-12 00:00:00,0.226,0.281,0.318 +2016-06-12 01:00:00,0.226,0.282,0.318 +2016-06-12 02:00:00,0.226,0.282,0.318 +2016-06-12 03:00:00,0.226,0.28300000000000003,0.318 +2016-06-12 04:00:00,0.226,0.28300000000000003,0.318 +2016-06-12 05:00:00,0.225,0.28300000000000003,0.318 +2016-06-12 06:00:00,0.225,0.28300000000000003,0.318 +2016-06-12 07:00:00,0.225,0.28300000000000003,0.318 +2016-06-12 08:00:00,0.225,0.282,0.319 +2016-06-12 09:00:00,0.225,0.282,0.319 +2016-06-12 10:00:00,0.225,0.281,0.319 +2016-06-12 11:00:00,0.225,0.281,0.319 +2016-06-12 12:00:00,0.225,0.281,0.319 +2016-06-12 13:00:00,0.225,0.282,0.319 +2016-06-12 14:00:00,0.23199999999999998,0.281,0.32 +2016-06-12 15:00:00,0.257,0.281,0.324 +2016-06-12 16:00:00,0.254,0.281,0.324 +2016-06-12 17:00:00,0.254,0.281,0.324 +2016-06-12 18:00:00,0.253,0.281,0.324 +2016-06-12 19:00:00,0.252,0.281,0.324 +2016-06-12 20:00:00,0.25,0.281,0.325 +2016-06-12 21:00:00,0.25,0.281,0.325 +2016-06-12 22:00:00,0.249,0.281,0.325 +2016-06-12 23:00:00,0.249,0.281,0.325 +2016-06-13 00:00:00,0.249,0.281,0.325 +2016-06-13 01:00:00,0.248,0.282,0.325 +2016-06-13 02:00:00,0.248,0.282,0.325 +2016-06-13 03:00:00,0.248,0.28300000000000003,0.325 +2016-06-13 04:00:00,0.248,0.28300000000000003,0.325 +2016-06-13 05:00:00,0.247,0.28300000000000003,0.325 +2016-06-13 06:00:00,0.247,0.28300000000000003,0.325 +2016-06-13 07:00:00,0.247,0.28300000000000003,0.325 +2016-06-13 08:00:00,0.24600000000000002,0.28300000000000003,0.325 +2016-06-13 09:00:00,0.251,0.28300000000000003,0.325 +2016-06-13 10:00:00,0.256,0.28300000000000003,0.325 +2016-06-13 11:00:00,0.256,0.281,0.325 +2016-06-13 12:00:00,0.256,0.281,0.325 +2016-06-13 13:00:00,0.257,0.27899999999999997,0.325 +2016-06-13 14:00:00,0.257,0.28,0.325 +2016-06-13 15:00:00,0.262,0.281,0.325 +2016-06-13 16:00:00,0.264,0.281,0.325 +2016-06-13 17:00:00,0.264,0.281,0.325 +2016-06-13 18:00:00,0.266,0.281,0.325 +2016-06-13 19:00:00,0.267,0.281,0.325 +2016-06-13 20:00:00,0.268,0.28,0.325 +2016-06-13 21:00:00,0.268,0.281,0.325 +2016-06-13 22:00:00,0.267,0.281,0.326 +2016-06-13 23:00:00,0.267,0.281,0.326 +2016-06-14 00:00:00,0.267,0.281,0.326 +2016-06-14 01:00:00,0.267,0.281,0.326 +2016-06-14 02:00:00,0.267,0.282,0.326 +2016-06-14 03:00:00,0.267,0.282,0.326 +2016-06-14 04:00:00,0.267,0.282,0.326 +2016-06-14 05:00:00,0.267,0.28300000000000003,0.326 +2016-06-14 06:00:00,0.267,0.28300000000000003,0.326 +2016-06-14 07:00:00,0.266,0.28300000000000003,0.326 +2016-06-14 08:00:00,0.27,0.28300000000000003,0.326 +2016-06-14 09:00:00,0.273,0.282,0.326 +2016-06-14 10:00:00,0.273,0.282,0.326 +2016-06-14 11:00:00,0.273,0.281,0.326 +2016-06-14 12:00:00,0.273,0.281,0.325 +2016-06-14 13:00:00,0.273,0.28,0.325 +2016-06-14 14:00:00,0.272,0.28,0.325 +2016-06-14 15:00:00,0.272,0.27899999999999997,0.325 +2016-06-14 16:00:00,0.271,0.278,0.324 +2016-06-14 17:00:00,0.27,0.278,0.324 +2016-06-14 18:00:00,0.27,0.278,0.324 +2016-06-14 19:00:00,0.26899999999999996,0.278,0.324 +2016-06-14 20:00:00,0.26899999999999996,0.278,0.324 +2016-06-14 21:00:00,0.268,0.278,0.324 +2016-06-14 22:00:00,0.267,0.278,0.324 +2016-06-14 23:00:00,0.267,0.275,0.324 +2016-06-15 00:00:00,0.266,0.273,0.324 +2016-06-15 01:00:00,0.266,0.273,0.324 +2016-06-15 02:00:00,0.266,0.273,0.324 +2016-06-15 03:00:00,0.266,0.273,0.324 +2016-06-15 04:00:00,0.265,0.273,0.324 +2016-06-15 05:00:00,0.265,0.273,0.324 +2016-06-15 06:00:00,0.265,0.27399999999999997,0.324 +2016-06-15 07:00:00,0.264,0.275,0.324 +2016-06-15 08:00:00,0.264,0.275,0.324 +2016-06-15 09:00:00,0.263,0.27399999999999997,0.324 +2016-06-15 10:00:00,0.262,0.275,0.324 +2016-06-15 11:00:00,0.262,0.275,0.324 +2016-06-15 12:00:00,0.262,0.27699999999999997,0.324 +2016-06-15 13:00:00,0.262,0.27899999999999997,0.324 +2016-06-15 14:00:00,0.261,0.28,0.324 +2016-06-15 15:00:00,0.261,0.28,0.324 +2016-06-15 16:00:00,0.261,0.28,0.325 +2016-06-15 17:00:00,0.273,0.28,0.32799999999999996 +2016-06-15 18:00:00,0.273,0.28,0.32899999999999996 +2016-06-15 19:00:00,0.273,0.28,0.32799999999999996 +2016-06-15 20:00:00,0.273,0.28,0.32799999999999996 +2016-06-15 21:00:00,0.273,0.28,0.32799999999999996 +2016-06-15 22:00:00,0.272,0.278,0.32799999999999996 +2016-06-15 23:00:00,0.271,0.278,0.327 +2016-06-16 00:00:00,0.271,0.278,0.327 +2016-06-16 01:00:00,0.271,0.278,0.327 +2016-06-16 02:00:00,0.27,0.278,0.327 +2016-06-16 03:00:00,0.26899999999999996,0.278,0.327 +2016-06-16 04:00:00,0.26899999999999996,0.278,0.327 +2016-06-16 05:00:00,0.26899999999999996,0.278,0.327 +2016-06-16 06:00:00,0.26899999999999996,0.278,0.327 +2016-06-16 07:00:00,0.26899999999999996,0.278,0.327 +2016-06-16 08:00:00,0.26899999999999996,0.278,0.327 +2016-06-16 09:00:00,0.268,0.278,0.326 +2016-06-16 10:00:00,0.268,0.278,0.326 +2016-06-16 11:00:00,0.26899999999999996,0.27899999999999997,0.326 +2016-06-16 12:00:00,0.26899999999999996,0.28,0.326 +2016-06-16 13:00:00,0.26899999999999996,0.28,0.326 +2016-06-16 14:00:00,0.26899999999999996,0.28,0.326 +2016-06-16 15:00:00,0.26899999999999996,0.28,0.326 +2016-06-16 16:00:00,0.272,0.28,0.325 +2016-06-16 17:00:00,0.272,0.28,0.324 +2016-06-16 18:00:00,0.272,0.28,0.324 +2016-06-16 19:00:00,0.272,0.28,0.324 +2016-06-16 20:00:00,0.272,0.28,0.324 +2016-06-16 21:00:00,0.272,0.28,0.324 +2016-06-16 22:00:00,0.272,0.28,0.324 +2016-06-16 23:00:00,0.271,0.28,0.324 +2016-06-17 00:00:00,0.271,0.281,0.324 +2016-06-17 01:00:00,0.271,0.281,0.324 +2016-06-17 02:00:00,0.27,0.281,0.324 +2016-06-17 03:00:00,0.27,0.281,0.324 +2016-06-17 04:00:00,0.27,0.281,0.324 +2016-06-17 05:00:00,0.27,0.282,0.324 +2016-06-17 06:00:00,0.27,0.282,0.324 +2016-06-17 07:00:00,0.26899999999999996,0.282,0.324 +2016-06-17 08:00:00,0.26899999999999996,0.282,0.324 +2016-06-17 09:00:00,0.26899999999999996,0.282,0.324 +2016-06-17 10:00:00,0.26899999999999996,0.282,0.324 +2016-06-17 11:00:00,0.268,0.281,0.32299999999999995 +2016-06-17 12:00:00,0.268,0.281,0.322 +2016-06-17 13:00:00,0.267,0.281,0.322 +2016-06-17 14:00:00,0.266,0.28,0.322 +2016-06-17 15:00:00,0.266,0.278,0.321 +2016-06-17 16:00:00,0.265,0.276,0.322 +2016-06-17 17:00:00,0.266,0.276,0.324 +2016-06-17 18:00:00,0.266,0.276,0.32299999999999995 +2016-06-17 19:00:00,0.266,0.276,0.322 +2016-06-17 20:00:00,0.266,0.276,0.322 +2016-06-17 21:00:00,0.266,0.276,0.322 +2016-06-17 22:00:00,0.265,0.276,0.322 +2016-06-17 23:00:00,0.265,0.276,0.322 +2016-06-18 00:00:00,0.265,0.276,0.322 +2016-06-18 01:00:00,0.265,0.278,0.322 +2016-06-18 02:00:00,0.264,0.278,0.322 +2016-06-18 03:00:00,0.264,0.27899999999999997,0.322 +2016-06-18 04:00:00,0.264,0.27899999999999997,0.322 +2016-06-18 05:00:00,0.264,0.28,0.322 +2016-06-18 06:00:00,0.264,0.28,0.322 +2016-06-18 07:00:00,0.264,0.28,0.322 +2016-06-18 08:00:00,0.263,0.28,0.322 +2016-06-18 09:00:00,0.263,0.28,0.322 +2016-06-18 10:00:00,0.263,0.28,0.322 +2016-06-18 11:00:00,0.262,0.28,0.321 +2016-06-18 12:00:00,0.261,0.28,0.321 +2016-06-18 13:00:00,0.261,0.278,0.321 +2016-06-18 14:00:00,0.26,0.276,0.321 +2016-06-18 15:00:00,0.26,0.275,0.32 +2016-06-18 16:00:00,0.259,0.273,0.32 +2016-06-18 17:00:00,0.259,0.273,0.32 +2016-06-18 18:00:00,0.259,0.366,0.32 +2016-06-18 19:00:00,0.258,0.46299999999999997,0.319 +2016-06-18 20:00:00,0.258,0.46,0.319 +2016-06-18 21:00:00,0.258,0.45899999999999996,0.319 +2016-06-18 22:00:00,0.258,0.45799999999999996,0.319 +2016-06-18 23:00:00,0.258,0.45799999999999996,0.319 +2016-06-19 00:00:00,0.258,0.45799999999999996,0.319 +2016-06-19 01:00:00,0.258,0.45799999999999996,0.32 +2016-06-19 02:00:00,0.258,0.45799999999999996,0.32 +2016-06-19 03:00:00,0.258,0.457,0.32 +2016-06-19 04:00:00,0.257,0.455,0.32 +2016-06-19 05:00:00,0.257,0.45299999999999996,0.32 +2016-06-19 06:00:00,0.257,0.451,0.32 +2016-06-19 07:00:00,0.257,0.451,0.32 +2016-06-19 08:00:00,0.257,0.45299999999999996,0.32 +2016-06-19 09:00:00,0.257,0.45299999999999996,0.32 +2016-06-19 10:00:00,0.257,0.45399999999999996,0.32 +2016-06-19 11:00:00,0.257,0.456,0.321 +2016-06-19 12:00:00,0.257,0.457,0.32 +2016-06-19 13:00:00,0.257,0.456,0.32 +2016-06-19 14:00:00,0.256,0.426,0.32 +2016-06-19 15:00:00,0.256,0.4,0.319 +2016-06-19 16:00:00,0.255,0.375,0.319 +2016-06-19 17:00:00,0.255,0.359,0.319 +2016-06-19 18:00:00,0.255,0.353,0.319 +2016-06-19 19:00:00,0.254,0.34299999999999997,0.319 +2016-06-19 20:00:00,0.254,0.34,0.319 +2016-06-19 21:00:00,0.254,0.33799999999999997,0.319 +2016-06-19 22:00:00,0.254,0.335,0.319 +2016-06-19 23:00:00,0.254,0.332,0.319 +2016-06-20 00:00:00,0.253,0.331,0.319 +2016-06-20 01:00:00,0.254,0.32899999999999996,0.319 +2016-06-20 02:00:00,0.253,0.32799999999999996,0.319 +2016-06-20 03:00:00,0.253,0.327,0.319 +2016-06-20 04:00:00,0.253,0.327,0.319 +2016-06-20 05:00:00,0.253,0.326,0.319 +2016-06-20 06:00:00,0.253,0.326,0.319 +2016-06-20 07:00:00,0.253,0.326,0.319 +2016-06-20 08:00:00,0.252,0.324,0.319 +2016-06-20 09:00:00,0.252,0.324,0.319 +2016-06-20 10:00:00,0.252,0.324,0.319 +2016-06-20 11:00:00,0.251,0.322,0.319 +2016-06-20 12:00:00,0.25,0.322,0.319 +2016-06-20 13:00:00,0.25,0.322,0.319 +2016-06-20 14:00:00,0.249,0.322,0.318 +2016-06-20 15:00:00,0.249,0.322,0.318 +2016-06-20 16:00:00,0.248,0.321,0.318 +2016-06-20 17:00:00,0.248,0.321,0.318 +2016-06-20 18:00:00,0.248,0.321,0.318 +2016-06-20 19:00:00,0.248,0.321,0.318 +2016-06-20 20:00:00,0.249,0.319,0.319 +2016-06-20 21:00:00,0.25,0.319,0.321 +2016-06-20 22:00:00,0.248,0.319,0.322 +2016-06-20 23:00:00,0.24600000000000002,0.319,0.32299999999999995 +2016-06-21 00:00:00,0.245,0.318,0.322 +2016-06-21 01:00:00,0.24600000000000002,0.318,0.322 +2016-06-21 02:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 03:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 04:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 05:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 06:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 07:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 08:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 09:00:00,0.24600000000000002,0.317,0.322 +2016-06-21 10:00:00,0.248,0.316,0.322 +2016-06-21 11:00:00,0.249,0.315,0.321 +2016-06-21 12:00:00,0.249,0.315,0.321 +2016-06-21 13:00:00,0.249,0.315,0.32 +2016-06-21 14:00:00,0.248,0.315,0.32 +2016-06-21 15:00:00,0.248,0.314,0.319 +2016-06-21 16:00:00,0.248,0.314,0.319 +2016-06-21 17:00:00,0.248,0.314,0.319 +2016-06-21 18:00:00,0.248,0.314,0.319 +2016-06-21 19:00:00,0.248,0.313,0.319 +2016-06-21 20:00:00,0.248,0.312,0.32 +2016-06-21 21:00:00,0.248,0.312,0.322 +2016-06-21 22:00:00,0.248,0.312,0.322 +2016-06-21 23:00:00,0.248,0.312,0.322 +2016-06-22 00:00:00,0.248,0.312,0.322 +2016-06-22 01:00:00,0.248,0.312,0.322 +2016-06-22 02:00:00,0.248,0.312,0.322 +2016-06-22 03:00:00,0.248,0.311,0.322 +2016-06-22 04:00:00,0.248,0.307,0.322 +2016-06-22 05:00:00,0.248,0.307,0.322 +2016-06-22 06:00:00,0.248,0.307,0.322 +2016-06-22 07:00:00,0.248,0.307,0.322 +2016-06-22 08:00:00,0.248,0.307,0.322 +2016-06-22 09:00:00,0.248,0.307,0.321 +2016-06-22 10:00:00,0.248,0.307,0.321 +2016-06-22 11:00:00,0.248,0.307,0.32 +2016-06-22 12:00:00,0.247,0.308,0.319 +2016-06-22 13:00:00,0.247,0.309,0.319 +2016-06-22 14:00:00,0.24600000000000002,0.31,0.319 +2016-06-22 15:00:00,0.24600000000000002,0.31,0.319 +2016-06-22 16:00:00,0.24600000000000002,0.31,0.318 +2016-06-22 17:00:00,0.24600000000000002,0.31,0.318 +2016-06-22 18:00:00,0.24600000000000002,0.31,0.318 +2016-06-22 19:00:00,0.24600000000000002,0.31,0.318 +2016-06-22 20:00:00,0.24600000000000002,0.31,0.318 +2016-06-22 21:00:00,0.245,0.31,0.318 +2016-06-22 22:00:00,0.245,0.31,0.318 +2016-06-22 23:00:00,0.245,0.31,0.318 +2016-06-23 00:00:00,0.245,0.31,0.318 +2016-06-23 01:00:00,0.245,0.31,0.318 +2016-06-23 02:00:00,0.245,0.309,0.318 +2016-06-23 03:00:00,0.245,0.309,0.318 +2016-06-23 04:00:00,0.244,0.309,0.318 +2016-06-23 05:00:00,0.244,0.309,0.319 +2016-06-23 06:00:00,0.244,0.31,0.319 +2016-06-23 07:00:00,0.244,0.309,0.319 +2016-06-23 08:00:00,0.244,0.309,0.319 +2016-06-23 09:00:00,0.244,0.309,0.319 +2016-06-23 10:00:00,0.243,0.309,0.319 +2016-06-23 11:00:00,0.242,0.309,0.318 +2016-06-23 12:00:00,0.24100000000000002,0.309,0.318 +2016-06-23 13:00:00,0.24100000000000002,0.309,0.318 +2016-06-23 14:00:00,0.24,0.309,0.318 +2016-06-23 15:00:00,0.24,0.308,0.318 +2016-06-23 16:00:00,0.24,0.307,0.317 +2016-06-23 17:00:00,0.24,0.307,0.317 +2016-06-23 18:00:00,0.24,0.305,0.317 +2016-06-23 19:00:00,0.239,0.305,0.317 +2016-06-23 20:00:00,0.239,0.305,0.317 +2016-06-23 21:00:00,0.239,0.305,0.317 +2016-06-23 22:00:00,0.239,0.304,0.317 +2016-06-23 23:00:00,0.239,0.305,0.317 +2016-06-24 00:00:00,0.239,0.305,0.317 +2016-06-24 01:00:00,0.239,0.305,0.317 +2016-06-24 02:00:00,0.239,0.305,0.317 +2016-06-24 03:00:00,0.239,0.305,0.317 +2016-06-24 04:00:00,0.239,0.305,0.317 +2016-06-24 05:00:00,0.23800000000000002,0.305,0.317 +2016-06-24 06:00:00,0.23800000000000002,0.305,0.317 +2016-06-24 07:00:00,0.23800000000000002,0.305,0.318 +2016-06-24 08:00:00,0.23800000000000002,0.305,0.318 +2016-06-24 09:00:00,0.23800000000000002,0.305,0.318 +2016-06-24 10:00:00,0.237,0.304,0.317 +2016-06-24 11:00:00,0.237,0.304,0.317 +2016-06-24 12:00:00,0.23600000000000002,0.302,0.317 +2016-06-24 13:00:00,0.235,0.302,0.316 +2016-06-24 14:00:00,0.235,0.303,0.316 +2016-06-24 15:00:00,0.33399999999999996,0.304,0.349 +2016-06-24 16:00:00,0.41700000000000004,0.304,0.375 +2016-06-24 17:00:00,0.4,0.304,0.377 +2016-06-24 18:00:00,0.39399999999999996,0.304,0.37799999999999995 +2016-06-24 19:00:00,0.39299999999999996,0.304,0.37799999999999995 +2016-06-24 20:00:00,0.396,0.304,0.379 +2016-06-24 21:00:00,0.397,0.304,0.379 +2016-06-24 22:00:00,0.39899999999999997,0.304,0.38 +2016-06-24 23:00:00,0.40299999999999997,0.304,0.38 +2016-06-25 00:00:00,0.40700000000000003,0.304,0.381 +2016-06-25 01:00:00,0.41100000000000003,0.304,0.381 +2016-06-25 02:00:00,0.40399999999999997,0.304,0.381 +2016-06-25 03:00:00,0.35100000000000003,0.304,0.381 +2016-06-25 04:00:00,0.305,0.304,0.381 +2016-06-25 05:00:00,0.29,0.304,0.382 +2016-06-25 06:00:00,0.28300000000000003,0.304,0.382 +2016-06-25 07:00:00,0.27899999999999997,0.304,0.382 +2016-06-25 08:00:00,0.278,0.304,0.382 +2016-06-25 09:00:00,0.27399999999999997,0.304,0.382 +2016-06-25 10:00:00,0.27399999999999997,0.304,0.382 +2016-06-25 11:00:00,0.275,0.304,0.382 +2016-06-25 12:00:00,0.276,0.304,0.382 +2016-06-25 13:00:00,0.276,0.304,0.382 +2016-06-25 14:00:00,0.276,0.304,0.38299999999999995 +2016-06-25 15:00:00,0.27699999999999997,0.304,0.38299999999999995 +2016-06-25 16:00:00,0.273,0.304,0.382 +2016-06-25 17:00:00,0.27399999999999997,0.303,0.382 +2016-06-25 18:00:00,0.27399999999999997,0.303,0.38299999999999995 +2016-06-25 19:00:00,0.27399999999999997,0.302,0.38299999999999995 +2016-06-25 20:00:00,0.27399999999999997,0.302,0.38299999999999995 +2016-06-25 21:00:00,0.27399999999999997,0.302,0.38299999999999995 +2016-06-25 22:00:00,0.27399999999999997,0.302,0.38299999999999995 +2016-06-25 23:00:00,0.27399999999999997,0.302,0.38299999999999995 +2016-06-26 00:00:00,0.27399999999999997,0.302,0.38299999999999995 +2016-06-26 01:00:00,0.27399999999999997,0.302,0.38299999999999995 +2016-06-26 02:00:00,0.273,0.302,0.38299999999999995 +2016-06-26 03:00:00,0.273,0.302,0.384 +2016-06-26 04:00:00,0.273,0.302,0.384 +2016-06-26 05:00:00,0.273,0.302,0.385 +2016-06-26 06:00:00,0.272,0.302,0.385 +2016-06-26 07:00:00,0.272,0.302,0.387 +2016-06-26 08:00:00,0.271,0.302,0.387 +2016-06-26 09:00:00,0.271,0.302,0.387 +2016-06-26 10:00:00,0.271,0.302,0.387 +2016-06-26 11:00:00,0.272,0.302,0.386 +2016-06-26 12:00:00,0.271,0.302,0.37799999999999995 +2016-06-26 13:00:00,0.271,0.302,0.376 +2016-06-26 14:00:00,0.271,0.302,0.375 +2016-06-26 15:00:00,0.27,0.3,0.374 +2016-06-26 16:00:00,0.27,0.3,0.368 +2016-06-26 17:00:00,0.26899999999999996,0.298,0.35700000000000004 +2016-06-26 18:00:00,0.26899999999999996,0.299,0.35600000000000004 +2016-06-26 19:00:00,0.26899999999999996,0.3,0.354 +2016-06-26 20:00:00,0.26899999999999996,0.3,0.35 +2016-06-26 21:00:00,0.268,0.3,0.34700000000000003 +2016-06-26 22:00:00,0.268,0.3,0.345 +2016-06-26 23:00:00,0.268,0.3,0.33899999999999997 +2016-06-27 00:00:00,0.268,0.3,0.337 +2016-06-27 01:00:00,0.267,0.301,0.336 +2016-06-27 02:00:00,0.267,0.301,0.336 +2016-06-27 03:00:00,0.267,0.301,0.335 +2016-06-27 04:00:00,0.267,0.301,0.335 +2016-06-27 05:00:00,0.267,0.302,0.33399999999999996 +2016-06-27 06:00:00,0.267,0.301,0.33399999999999996 +2016-06-27 07:00:00,0.266,0.301,0.33299999999999996 +2016-06-27 08:00:00,0.266,0.301,0.332 +2016-06-27 09:00:00,0.266,0.3,0.332 +2016-06-27 10:00:00,0.265,0.3,0.332 +2016-06-27 11:00:00,0.265,0.3,0.331 +2016-06-27 12:00:00,0.265,0.3,0.331 +2016-06-27 13:00:00,0.264,0.3,0.331 +2016-06-27 14:00:00,0.264,0.3,0.331 +2016-06-27 15:00:00,0.264,0.3,0.33 +2016-06-27 16:00:00,0.264,0.297,0.33 +2016-06-27 17:00:00,0.264,0.29600000000000004,0.33 +2016-06-27 18:00:00,0.264,0.297,0.33 +2016-06-27 19:00:00,0.264,0.298,0.33 +2016-06-27 20:00:00,0.263,0.298,0.33 +2016-06-27 21:00:00,0.263,0.298,0.33 +2016-06-27 22:00:00,0.263,0.295,0.33 +2016-06-27 23:00:00,0.263,0.295,0.33 +2016-06-28 00:00:00,0.263,0.295,0.33 +2016-06-28 01:00:00,0.263,0.29600000000000004,0.332 +2016-06-28 02:00:00,0.263,0.29600000000000004,0.332 +2016-06-28 03:00:00,0.263,0.297,0.332 +2016-06-28 04:00:00,0.263,0.297,0.332 +2016-06-28 05:00:00,0.263,0.297,0.332 +2016-06-28 06:00:00,0.263,0.297,0.332 +2016-06-28 07:00:00,0.263,0.297,0.332 +2016-06-28 08:00:00,0.263,0.297,0.331 +2016-06-28 09:00:00,0.263,0.297,0.331 +2016-06-28 10:00:00,0.263,0.297,0.331 +2016-06-28 11:00:00,0.264,0.297,0.331 +2016-06-28 12:00:00,0.263,0.297,0.33 +2016-06-28 13:00:00,0.263,0.298,0.33 +2016-06-28 14:00:00,0.263,0.298,0.33 +2016-06-28 15:00:00,0.263,0.299,0.32899999999999996 +2016-06-28 16:00:00,0.263,0.3,0.32899999999999996 +2016-06-28 17:00:00,0.262,0.3,0.32899999999999996 +2016-06-28 18:00:00,0.262,0.3,0.32899999999999996 +2016-06-28 19:00:00,0.262,0.3,0.327 +2016-06-28 20:00:00,0.262,0.3,0.327 +2016-06-28 21:00:00,0.262,0.3,0.327 +2016-06-28 22:00:00,0.262,0.3,0.327 +2016-06-28 23:00:00,0.262,0.3,0.327 +2016-06-29 00:00:00,0.262,0.3,0.327 +2016-06-29 01:00:00,0.262,0.3,0.327 +2016-06-29 02:00:00,0.262,0.3,0.327 +2016-06-29 03:00:00,0.262,0.3,0.327 +2016-06-29 04:00:00,0.262,0.3,0.327 +2016-06-29 05:00:00,0.262,0.3,0.327 +2016-06-29 06:00:00,0.262,0.3,0.327 +2016-06-29 07:00:00,0.262,0.3,0.327 +2016-06-29 08:00:00,0.262,0.3,0.327 +2016-06-29 09:00:00,0.262,0.3,0.327 +2016-06-29 10:00:00,0.261,0.3,0.326 +2016-06-29 11:00:00,0.261,0.3,0.326 +2016-06-29 12:00:00,0.26,0.3,0.326 +2016-06-29 13:00:00,0.26,0.3,0.326 +2016-06-29 14:00:00,0.259,0.3,0.325 +2016-06-29 15:00:00,0.259,0.3,0.325 +2016-06-29 16:00:00,0.259,0.3,0.325 +2016-06-29 17:00:00,0.258,0.299,0.325 +2016-06-29 18:00:00,0.258,0.299,0.324 +2016-06-29 19:00:00,0.258,0.298,0.324 +2016-06-29 20:00:00,0.258,0.298,0.324 +2016-06-29 21:00:00,0.258,0.298,0.324 +2016-06-29 22:00:00,0.258,0.298,0.324 +2016-06-29 23:00:00,0.258,0.298,0.324 +2016-06-30 00:00:00,0.258,0.298,0.324 +2016-06-30 01:00:00,0.258,0.298,0.324 +2016-06-30 02:00:00,0.258,0.298,0.324 +2016-06-30 03:00:00,0.258,0.298,0.324 +2016-06-30 04:00:00,0.258,0.299,0.324 +2016-06-30 05:00:00,0.258,0.299,0.324 +2016-06-30 06:00:00,0.258,0.299,0.325 +2016-06-30 07:00:00,0.258,0.299,0.325 +2016-06-30 08:00:00,0.258,0.299,0.325 +2016-06-30 09:00:00,0.258,0.299,0.326 +2016-06-30 10:00:00,0.258,0.298,0.325 +2016-06-30 11:00:00,0.258,0.298,0.325 +2016-06-30 12:00:00,0.258,0.298,0.325 +2016-06-30 13:00:00,0.257,0.298,0.324 +2016-06-30 14:00:00,0.258,0.298,0.324 +2016-06-30 15:00:00,0.257,0.298,0.324 +2016-06-30 16:00:00,0.257,0.297,0.324 +2016-06-30 17:00:00,0.257,0.297,0.324 +2016-06-30 18:00:00,0.257,0.29600000000000004,0.324 +2016-06-30 19:00:00,0.257,0.295,0.324 +2016-06-30 20:00:00,0.257,0.295,0.32299999999999995 +2016-06-30 21:00:00,0.257,0.295,0.32299999999999995 +2016-06-30 22:00:00,0.257,0.295,0.32299999999999995 +2016-06-30 23:00:00,0.257,0.295,0.32299999999999995 +2016-07-01 00:00:00,0.257,0.295,0.324 +2016-07-01 01:00:00,0.257,0.295,0.324 +2016-07-01 02:00:00,0.257,0.295,0.32299999999999995 +2016-07-01 03:00:00,0.257,0.295,0.324 +2016-07-01 04:00:00,0.257,0.295,0.324 +2016-07-01 05:00:00,0.257,0.295,0.324 +2016-07-01 06:00:00,0.257,0.295,0.324 +2016-07-01 07:00:00,0.256,0.295,0.324 +2016-07-01 08:00:00,0.256,0.295,0.324 +2016-07-01 09:00:00,0.257,0.295,0.324 +2016-07-01 10:00:00,0.256,0.295,0.324 +2016-07-01 11:00:00,0.256,0.295,0.32299999999999995 +2016-07-01 12:00:00,0.256,0.295,0.32299999999999995 +2016-07-01 13:00:00,0.256,0.295,0.32299999999999995 +2016-07-01 14:00:00,0.256,0.294,0.32299999999999995 +2016-07-01 15:00:00,0.256,0.293,0.32299999999999995 +2016-07-01 16:00:00,0.256,0.293,0.32299999999999995 +2016-07-01 17:00:00,0.256,0.292,0.322 +2016-07-01 18:00:00,0.255,0.292,0.322 +2016-07-01 19:00:00,0.255,0.292,0.322 +2016-07-01 20:00:00,0.255,0.292,0.322 +2016-07-01 21:00:00,0.255,0.29100000000000004,0.322 +2016-07-01 22:00:00,0.255,0.292,0.322 +2016-07-01 23:00:00,0.255,0.292,0.322 +2016-07-02 00:00:00,0.255,0.292,0.322 +2016-07-02 01:00:00,0.255,0.292,0.322 +2016-07-02 02:00:00,0.255,0.292,0.322 +2016-07-02 03:00:00,0.255,0.292,0.322 +2016-07-02 04:00:00,0.255,0.292,0.322 +2016-07-02 05:00:00,0.255,0.292,0.322 +2016-07-02 06:00:00,0.255,0.292,0.322 +2016-07-02 07:00:00,0.255,0.292,0.322 +2016-07-02 08:00:00,0.255,0.293,0.32299999999999995 +2016-07-02 09:00:00,0.255,0.293,0.324 +2016-07-02 10:00:00,0.256,0.293,0.324 +2016-07-02 11:00:00,0.255,0.293,0.324 +2016-07-02 12:00:00,0.255,0.293,0.324 +2016-07-02 13:00:00,0.255,0.292,0.324 +2016-07-02 14:00:00,0.255,0.292,0.325 +2016-07-02 15:00:00,0.255,0.292,0.324 +2016-07-02 16:00:00,0.256,0.29,0.324 +2016-07-02 17:00:00,0.256,0.29,0.32299999999999995 +2016-07-02 18:00:00,0.256,0.29,0.32299999999999995 +2016-07-02 19:00:00,0.256,0.29,0.32299999999999995 +2016-07-02 20:00:00,0.255,0.29,0.322 +2016-07-02 21:00:00,0.255,0.29,0.322 +2016-07-02 22:00:00,0.255,0.29,0.322 +2016-07-02 23:00:00,0.255,0.29,0.322 +2016-07-03 00:00:00,0.255,0.29,0.322 +2016-07-03 01:00:00,0.255,0.29,0.322 +2016-07-03 02:00:00,0.255,0.29,0.322 +2016-07-03 03:00:00,0.255,0.29,0.322 +2016-07-03 04:00:00,0.255,0.29,0.322 +2016-07-03 05:00:00,0.254,0.29,0.322 +2016-07-03 06:00:00,0.254,0.29,0.322 +2016-07-03 07:00:00,0.255,0.29,0.32299999999999995 +2016-07-03 08:00:00,0.254,0.29,0.32299999999999995 +2016-07-03 09:00:00,0.254,0.29,0.32299999999999995 +2016-07-03 10:00:00,0.254,0.29,0.322 +2016-07-03 11:00:00,0.254,0.29,0.322 +2016-07-03 12:00:00,0.254,0.29,0.322 +2016-07-03 13:00:00,0.252,0.29,0.324 +2016-07-03 14:00:00,0.253,0.29,0.325 +2016-07-03 15:00:00,0.254,0.29,0.325 +2016-07-03 16:00:00,0.255,0.29,0.324 +2016-07-03 17:00:00,0.255,0.29,0.32299999999999995 +2016-07-03 18:00:00,0.255,0.289,0.32299999999999995 +2016-07-03 19:00:00,0.253,0.28800000000000003,0.325 +2016-07-03 20:00:00,0.254,0.28800000000000003,0.325 +2016-07-03 21:00:00,0.254,0.28800000000000003,0.325 +2016-07-03 22:00:00,0.254,0.28800000000000003,0.325 +2016-07-03 23:00:00,0.255,0.28800000000000003,0.325 +2016-07-04 00:00:00,0.255,0.28800000000000003,0.325 +2016-07-04 01:00:00,0.255,0.28800000000000003,0.325 +2016-07-04 02:00:00,0.255,0.28800000000000003,0.325 +2016-07-04 03:00:00,0.255,0.289,0.325 +2016-07-04 04:00:00,0.255,0.289,0.325 +2016-07-04 05:00:00,0.255,0.289,0.325 +2016-07-04 06:00:00,0.255,0.289,0.325 +2016-07-04 07:00:00,0.255,0.29,0.325 +2016-07-04 08:00:00,0.255,0.29,0.325 +2016-07-04 09:00:00,0.255,0.29,0.325 +2016-07-04 10:00:00,0.256,0.29,0.324 +2016-07-04 11:00:00,0.256,0.29,0.324 +2016-07-04 12:00:00,0.255,0.29,0.32299999999999995 +2016-07-04 13:00:00,0.255,0.289,0.32299999999999995 +2016-07-04 14:00:00,0.255,0.28800000000000003,0.322 +2016-07-04 15:00:00,0.255,0.28800000000000003,0.322 +2016-07-04 16:00:00,0.255,0.287,0.322 +2016-07-04 17:00:00,0.255,0.287,0.322 +2016-07-04 18:00:00,0.255,0.287,0.322 +2016-07-04 19:00:00,0.255,0.28600000000000003,0.322 +2016-07-04 20:00:00,0.255,0.285,0.322 +2016-07-04 21:00:00,0.255,0.285,0.322 +2016-07-04 22:00:00,0.255,0.285,0.322 +2016-07-04 23:00:00,0.255,0.285,0.322 +2016-07-05 00:00:00,0.255,0.28600000000000003,0.322 +2016-07-05 01:00:00,0.255,0.287,0.322 +2016-07-05 02:00:00,0.255,0.287,0.322 +2016-07-05 03:00:00,0.255,0.287,0.322 +2016-07-05 04:00:00,0.255,0.287,0.322 +2016-07-05 05:00:00,0.255,0.287,0.322 +2016-07-05 06:00:00,0.255,0.287,0.32299999999999995 +2016-07-05 07:00:00,0.255,0.287,0.32299999999999995 +2016-07-05 08:00:00,0.255,0.287,0.32299999999999995 +2016-07-05 09:00:00,0.255,0.287,0.32299999999999995 +2016-07-05 10:00:00,0.255,0.287,0.322 +2016-07-05 11:00:00,0.255,0.287,0.322 +2016-07-05 12:00:00,0.255,0.287,0.322 +2016-07-05 13:00:00,0.255,0.287,0.322 +2016-07-05 14:00:00,0.255,0.287,0.322 +2016-07-05 15:00:00,0.255,0.28600000000000003,0.322 +2016-07-05 16:00:00,0.255,0.285,0.322 +2016-07-05 17:00:00,0.255,0.285,0.322 +2016-07-05 18:00:00,0.255,0.28300000000000003,0.322 +2016-07-05 19:00:00,0.255,0.28300000000000003,0.322 +2016-07-05 20:00:00,0.255,0.28300000000000003,0.322 +2016-07-05 21:00:00,0.255,0.28300000000000003,0.322 +2016-07-05 22:00:00,0.254,0.28300000000000003,0.322 +2016-07-05 23:00:00,0.254,0.28300000000000003,0.322 +2016-07-06 00:00:00,0.254,0.28300000000000003,0.322 +2016-07-06 01:00:00,0.254,0.28300000000000003,0.321 +2016-07-06 02:00:00,0.254,0.28300000000000003,0.321 +2016-07-06 03:00:00,0.254,0.28300000000000003,0.321 +2016-07-06 04:00:00,0.254,0.28300000000000003,0.322 +2016-07-06 05:00:00,0.254,0.284,0.322 +2016-07-06 06:00:00,0.254,0.285,0.322 +2016-07-06 07:00:00,0.254,0.285,0.322 +2016-07-06 08:00:00,0.254,0.285,0.322 +2016-07-06 09:00:00,0.254,0.285,0.322 +2016-07-06 10:00:00,0.253,0.285,0.322 +2016-07-06 11:00:00,0.253,0.285,0.322 +2016-07-06 12:00:00,0.253,0.285,0.321 +2016-07-06 13:00:00,0.253,0.28300000000000003,0.321 +2016-07-06 14:00:00,0.253,0.28300000000000003,0.321 +2016-07-06 15:00:00,0.252,0.282,0.321 +2016-07-06 16:00:00,0.252,0.281,0.321 +2016-07-06 17:00:00,0.252,0.281,0.32 +2016-07-06 18:00:00,0.252,0.28,0.32 +2016-07-06 19:00:00,0.252,0.28,0.32 +2016-07-06 20:00:00,0.252,0.28,0.32 +2016-07-06 21:00:00,0.251,0.28,0.32 +2016-07-06 22:00:00,0.251,0.28,0.32 +2016-07-06 23:00:00,0.251,0.28,0.32 +2016-07-07 00:00:00,0.251,0.28,0.32 +2016-07-07 01:00:00,0.251,0.28,0.32 +2016-07-07 02:00:00,0.251,0.28,0.32 +2016-07-07 03:00:00,0.251,0.28,0.32 +2016-07-07 04:00:00,0.251,0.28,0.32 +2016-07-07 05:00:00,0.251,0.28,0.32 +2016-07-07 06:00:00,0.251,0.28,0.32 +2016-07-07 07:00:00,0.25,0.28,0.32 +2016-07-07 08:00:00,0.251,0.28,0.32 +2016-07-07 09:00:00,0.25,0.28,0.321 +2016-07-07 10:00:00,0.25,0.28,0.32 +2016-07-07 11:00:00,0.25,0.28,0.32 +2016-07-07 12:00:00,0.25,0.28,0.32 +2016-07-07 13:00:00,0.249,0.28,0.32 +2016-07-07 14:00:00,0.249,0.28,0.319 +2016-07-07 15:00:00,0.249,0.28,0.319 +2016-07-07 16:00:00,0.249,0.278,0.319 +2016-07-07 17:00:00,0.248,0.278,0.319 +2016-07-07 18:00:00,0.248,0.278,0.319 +2016-07-07 19:00:00,0.248,0.27899999999999997,0.319 +2016-07-07 20:00:00,0.248,0.28,0.319 +2016-07-07 21:00:00,0.248,0.28,0.319 +2016-07-07 22:00:00,0.248,0.28,0.319 +2016-07-07 23:00:00,0.248,0.281,0.319 +2016-07-08 00:00:00,0.248,0.281,0.319 +2016-07-08 01:00:00,0.248,0.281,0.319 +2016-07-08 02:00:00,0.248,0.281,0.319 +2016-07-08 03:00:00,0.248,0.281,0.319 +2016-07-08 04:00:00,0.248,0.281,0.319 +2016-07-08 05:00:00,0.247,0.281,0.319 +2016-07-08 06:00:00,0.247,0.281,0.319 +2016-07-08 07:00:00,0.247,0.281,0.319 +2016-07-08 08:00:00,0.247,0.281,0.319 +2016-07-08 09:00:00,0.247,0.281,0.319 +2016-07-08 10:00:00,0.247,0.281,0.319 +2016-07-08 11:00:00,0.247,0.281,0.319 +2016-07-08 12:00:00,0.24600000000000002,0.281,0.319 +2016-07-08 13:00:00,0.24600000000000002,0.281,0.319 +2016-07-08 14:00:00,0.24600000000000002,0.281,0.317 +2016-07-08 15:00:00,0.245,0.281,0.314 +2016-07-08 16:00:00,0.245,0.281,0.314 +2016-07-08 17:00:00,0.245,0.281,0.314 +2016-07-08 18:00:00,0.245,0.281,0.314 +2016-07-08 19:00:00,0.245,0.281,0.314 +2016-07-08 20:00:00,0.245,0.28,0.314 +2016-07-08 21:00:00,0.245,0.28,0.314 +2016-07-08 22:00:00,0.245,0.28,0.314 +2016-07-08 23:00:00,0.245,0.28,0.314 +2016-07-09 00:00:00,0.245,0.28,0.314 +2016-07-09 01:00:00,0.245,0.28,0.314 +2016-07-09 02:00:00,0.245,0.281,0.315 +2016-07-09 03:00:00,0.245,0.281,0.315 +2016-07-09 04:00:00,0.245,0.281,0.315 +2016-07-09 05:00:00,0.245,0.281,0.315 +2016-07-09 06:00:00,0.245,0.281,0.315 +2016-07-09 07:00:00,0.245,0.281,0.315 +2016-07-09 08:00:00,0.245,0.281,0.315 +2016-07-09 09:00:00,0.245,0.281,0.315 +2016-07-09 10:00:00,0.245,0.281,0.314 +2016-07-09 11:00:00,0.244,0.281,0.314 +2016-07-09 12:00:00,0.244,0.281,0.314 +2016-07-09 13:00:00,0.244,0.281,0.314 +2016-07-09 14:00:00,0.244,0.28,0.314 +2016-07-09 15:00:00,0.243,0.28,0.313 +2016-07-09 16:00:00,0.243,0.28,0.313 +2016-07-09 17:00:00,0.243,0.27899999999999997,0.313 +2016-07-09 18:00:00,0.243,0.27899999999999997,0.313 +2016-07-09 19:00:00,0.243,0.278,0.313 +2016-07-09 20:00:00,0.243,0.278,0.313 +2016-07-09 21:00:00,0.243,0.278,0.313 +2016-07-09 22:00:00,0.243,0.278,0.313 +2016-07-09 23:00:00,0.243,0.278,0.313 +2016-07-10 00:00:00,0.243,0.278,0.313 +2016-07-10 01:00:00,0.242,0.278,0.313 +2016-07-10 02:00:00,0.242,0.27899999999999997,0.313 +2016-07-10 03:00:00,0.242,0.27899999999999997,0.313 +2016-07-10 04:00:00,0.242,0.28,0.313 +2016-07-10 05:00:00,0.242,0.28,0.313 +2016-07-10 06:00:00,0.242,0.28,0.313 +2016-07-10 07:00:00,0.242,0.28,0.313 +2016-07-10 08:00:00,0.242,0.28,0.313 +2016-07-10 09:00:00,0.24100000000000002,0.28,0.313 +2016-07-10 10:00:00,0.242,0.28,0.313 +2016-07-10 11:00:00,0.24100000000000002,0.28,0.313 +2016-07-10 12:00:00,0.24100000000000002,0.28,0.313 +2016-07-10 13:00:00,0.24100000000000002,0.28,0.313 +2016-07-10 14:00:00,0.24100000000000002,0.27899999999999997,0.313 +2016-07-10 15:00:00,0.24,0.278,0.312 +2016-07-10 16:00:00,0.24,0.278,0.312 +2016-07-10 17:00:00,0.24,0.278,0.312 +2016-07-10 18:00:00,0.24,0.27699999999999997,0.312 +2016-07-10 19:00:00,0.24,0.276,0.312 +2016-07-10 20:00:00,0.24,0.276,0.312 +2016-07-10 21:00:00,0.24,0.276,0.312 +2016-07-10 22:00:00,0.24,0.276,0.312 +2016-07-10 23:00:00,0.24,0.276,0.312 +2016-07-11 00:00:00,0.24,0.27699999999999997,0.312 +2016-07-11 01:00:00,0.24,0.278,0.312 +2016-07-11 02:00:00,0.24,0.278,0.312 +2016-07-11 03:00:00,0.24,0.278,0.312 +2016-07-11 04:00:00,0.24,0.278,0.312 +2016-07-11 05:00:00,0.24,0.278,0.312 +2016-07-11 06:00:00,0.24,0.278,0.312 +2016-07-11 07:00:00,0.24,0.278,0.312 +2016-07-11 08:00:00,0.24,0.278,0.312 +2016-07-11 09:00:00,0.239,0.278,0.312 +2016-07-11 10:00:00,0.24,0.278,0.312 +2016-07-11 11:00:00,0.239,0.278,0.312 +2016-07-11 12:00:00,0.239,0.278,0.311 +2016-07-11 13:00:00,0.23800000000000002,0.278,0.311 +2016-07-11 14:00:00,0.23800000000000002,0.278,0.311 +2016-07-11 15:00:00,0.23800000000000002,0.278,0.311 +2016-07-11 16:00:00,0.23800000000000002,0.276,0.311 +2016-07-11 17:00:00,0.23800000000000002,0.276,0.311 +2016-07-11 18:00:00,0.23800000000000002,0.276,0.31 +2016-07-11 19:00:00,0.23800000000000002,0.276,0.31 +2016-07-11 20:00:00,0.237,0.276,0.31 +2016-07-11 21:00:00,0.237,0.276,0.31 +2016-07-11 22:00:00,0.237,0.276,0.31 +2016-07-11 23:00:00,0.237,0.276,0.31 +2016-07-12 00:00:00,0.237,0.276,0.31 +2016-07-12 01:00:00,0.237,0.276,0.31 +2016-07-12 02:00:00,0.237,0.276,0.31 +2016-07-12 03:00:00,0.237,0.276,0.31 +2016-07-12 04:00:00,0.23600000000000002,0.27699999999999997,0.31 +2016-07-12 05:00:00,0.237,0.278,0.31 +2016-07-12 06:00:00,0.23600000000000002,0.278,0.31 +2016-07-12 07:00:00,0.23600000000000002,0.278,0.311 +2016-07-12 08:00:00,0.23600000000000002,0.278,0.311 +2016-07-12 09:00:00,0.23600000000000002,0.278,0.31 +2016-07-12 10:00:00,0.23600000000000002,0.278,0.31 +2016-07-12 11:00:00,0.23600000000000002,0.278,0.31 +2016-07-12 12:00:00,0.235,0.278,0.31 +2016-07-12 13:00:00,0.235,0.278,0.31 +2016-07-12 14:00:00,0.23399999999999999,0.276,0.31 +2016-07-12 15:00:00,0.23399999999999999,0.276,0.31 +2016-07-12 16:00:00,0.23399999999999999,0.275,0.309 +2016-07-12 17:00:00,0.23399999999999999,0.275,0.309 +2016-07-12 18:00:00,0.23399999999999999,0.275,0.309 +2016-07-12 19:00:00,0.23399999999999999,0.275,0.309 +2016-07-12 20:00:00,0.23399999999999999,0.27399999999999997,0.31 +2016-07-12 21:00:00,0.235,0.27399999999999997,0.311 +2016-07-12 22:00:00,0.235,0.275,0.311 +2016-07-12 23:00:00,0.235,0.275,0.311 +2016-07-13 00:00:00,0.23399999999999999,0.275,0.311 +2016-07-13 01:00:00,0.23399999999999999,0.275,0.311 +2016-07-13 02:00:00,0.23399999999999999,0.275,0.311 +2016-07-13 03:00:00,0.23399999999999999,0.275,0.311 +2016-07-13 04:00:00,0.23399999999999999,0.275,0.311 +2016-07-13 05:00:00,0.23399999999999999,0.275,0.311 +2016-07-13 06:00:00,0.23399999999999999,0.276,0.311 +2016-07-13 07:00:00,0.23399999999999999,0.276,0.311 +2016-07-13 08:00:00,0.23399999999999999,0.276,0.311 +2016-07-13 09:00:00,0.233,0.276,0.311 +2016-07-13 10:00:00,0.233,0.276,0.311 +2016-07-13 11:00:00,0.233,0.276,0.311 +2016-07-13 12:00:00,0.233,0.276,0.31 +2016-07-13 13:00:00,0.23199999999999998,0.275,0.313 +2016-07-13 14:00:00,0.233,0.275,0.314 +2016-07-13 15:00:00,0.23399999999999999,0.27399999999999997,0.314 +2016-07-13 16:00:00,0.235,0.273,0.314 +2016-07-13 17:00:00,0.23600000000000002,0.273,0.313 +2016-07-13 18:00:00,0.23600000000000002,0.272,0.313 +2016-07-13 19:00:00,0.23600000000000002,0.271,0.313 +2016-07-13 20:00:00,0.23600000000000002,0.271,0.313 +2016-07-13 21:00:00,0.23600000000000002,0.271,0.313 +2016-07-13 22:00:00,0.23600000000000002,0.271,0.313 +2016-07-13 23:00:00,0.23600000000000002,0.271,0.313 +2016-07-14 00:00:00,0.23600000000000002,0.271,0.313 +2016-07-14 01:00:00,0.23600000000000002,0.272,0.313 +2016-07-14 02:00:00,0.23600000000000002,0.273,0.313 +2016-07-14 03:00:00,0.23600000000000002,0.273,0.313 +2016-07-14 04:00:00,0.23600000000000002,0.273,0.313 +2016-07-14 05:00:00,0.23600000000000002,0.273,0.313 +2016-07-14 06:00:00,0.23600000000000002,0.273,0.314 +2016-07-14 07:00:00,0.23600000000000002,0.273,0.314 +2016-07-14 08:00:00,0.23600000000000002,0.273,0.314 +2016-07-14 09:00:00,0.23600000000000002,0.273,0.314 +2016-07-14 10:00:00,0.23600000000000002,0.273,0.313 +2016-07-14 11:00:00,0.23600000000000002,0.273,0.313 +2016-07-14 12:00:00,0.23600000000000002,0.273,0.313 +2016-07-14 13:00:00,0.235,0.273,0.312 +2016-07-14 14:00:00,0.235,0.272,0.312 +2016-07-14 15:00:00,0.235,0.271,0.311 +2016-07-14 16:00:00,0.235,0.27,0.311 +2016-07-14 17:00:00,0.23399999999999999,0.27,0.311 +2016-07-14 18:00:00,0.23399999999999999,0.26899999999999996,0.311 +2016-07-14 19:00:00,0.23399999999999999,0.268,0.311 +2016-07-14 20:00:00,0.23399999999999999,0.268,0.311 +2016-07-14 21:00:00,0.23399999999999999,0.267,0.311 +2016-07-14 22:00:00,0.23399999999999999,0.267,0.311 +2016-07-14 23:00:00,0.23399999999999999,0.268,0.311 +2016-07-15 00:00:00,0.23399999999999999,0.268,0.311 +2016-07-15 01:00:00,0.23399999999999999,0.268,0.311 +2016-07-15 02:00:00,0.23399999999999999,0.26899999999999996,0.311 +2016-07-15 03:00:00,0.23399999999999999,0.26899999999999996,0.311 +2016-07-15 04:00:00,0.23399999999999999,0.27,0.311 +2016-07-15 05:00:00,0.23399999999999999,0.27,0.311 +2016-07-15 06:00:00,0.23399999999999999,0.27,0.311 +2016-07-15 07:00:00,0.233,0.27,0.311 +2016-07-15 08:00:00,0.23399999999999999,0.27,0.311 +2016-07-15 09:00:00,0.23399999999999999,0.27,0.311 +2016-07-15 10:00:00,0.233,0.27,0.311 +2016-07-15 11:00:00,0.233,0.27,0.311 +2016-07-15 12:00:00,0.233,0.27,0.311 +2016-07-15 13:00:00,0.233,0.27,0.31 +2016-07-15 14:00:00,0.233,0.27,0.31 +2016-07-15 15:00:00,0.233,0.27,0.31 +2016-07-15 16:00:00,0.233,0.27,0.31 +2016-07-15 17:00:00,0.233,0.27,0.31 +2016-07-15 18:00:00,0.233,0.27,0.31 +2016-07-15 19:00:00,0.233,0.27,0.31 +2016-07-15 20:00:00,0.233,0.27,0.31 +2016-07-15 21:00:00,0.233,0.27,0.31 +2016-07-15 22:00:00,0.233,0.27,0.31 +2016-07-15 23:00:00,0.233,0.27,0.31 +2016-07-16 00:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 01:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 02:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 03:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 04:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 05:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 06:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 07:00:00,0.23199999999999998,0.271,0.31 +2016-07-16 08:00:00,0.23199999999999998,0.272,0.31 +2016-07-16 09:00:00,0.23199999999999998,0.272,0.31 +2016-07-16 10:00:00,0.23199999999999998,0.272,0.31 +2016-07-16 11:00:00,0.23199999999999998,0.272,0.31 +2016-07-16 12:00:00,0.231,0.272,0.31 +2016-07-16 13:00:00,0.231,0.272,0.31 +2016-07-16 14:00:00,0.231,0.272,0.31 +2016-07-16 15:00:00,0.231,0.271,0.31 +2016-07-16 16:00:00,0.231,0.27,0.31 +2016-07-16 17:00:00,0.231,0.27,0.31 +2016-07-16 18:00:00,0.231,0.27,0.309 +2016-07-16 19:00:00,0.231,0.27,0.309 +2016-07-16 20:00:00,0.231,0.27,0.309 +2016-07-16 21:00:00,0.231,0.27,0.309 +2016-07-16 22:00:00,0.231,0.27,0.309 +2016-07-16 23:00:00,0.231,0.27,0.309 +2016-07-17 00:00:00,0.231,0.27,0.309 +2016-07-17 01:00:00,0.231,0.27,0.309 +2016-07-17 02:00:00,0.231,0.27,0.31 +2016-07-17 03:00:00,0.231,0.27,0.31 +2016-07-17 04:00:00,0.231,0.27,0.31 +2016-07-17 05:00:00,0.231,0.271,0.31 +2016-07-17 06:00:00,0.231,0.271,0.31 +2016-07-17 07:00:00,0.231,0.26899999999999996,0.31 +2016-07-17 08:00:00,0.231,0.268,0.31 +2016-07-17 09:00:00,0.231,0.26899999999999996,0.31 +2016-07-17 10:00:00,0.231,0.26899999999999996,0.31 +2016-07-17 11:00:00,0.231,0.26899999999999996,0.31 +2016-07-17 12:00:00,0.231,0.27,0.31 +2016-07-17 13:00:00,0.231,0.27,0.309 +2016-07-17 14:00:00,0.231,0.27,0.309 +2016-07-17 15:00:00,0.231,0.27,0.309 +2016-07-17 16:00:00,0.231,0.27,0.309 +2016-07-17 17:00:00,0.231,0.27,0.309 +2016-07-17 18:00:00,0.231,0.271,0.309 +2016-07-17 19:00:00,0.231,0.271,0.309 +2016-07-17 20:00:00,0.231,0.271,0.309 +2016-07-17 21:00:00,0.231,0.271,0.309 +2016-07-17 22:00:00,0.231,0.271,0.309 +2016-07-17 23:00:00,0.231,0.272,0.308 +2016-07-18 00:00:00,0.231,0.272,0.309 +2016-07-18 01:00:00,0.231,0.273,0.309 +2016-07-18 02:00:00,0.231,0.273,0.309 +2016-07-18 03:00:00,0.231,0.273,0.309 +2016-07-18 04:00:00,0.231,0.273,0.309 +2016-07-18 05:00:00,0.231,0.273,0.309 +2016-07-18 06:00:00,0.23,0.273,0.309 +2016-07-18 07:00:00,0.23,0.273,0.309 +2016-07-18 08:00:00,0.23,0.273,0.309 +2016-07-18 09:00:00,0.23,0.273,0.309 +2016-07-18 10:00:00,0.23,0.273,0.309 +2016-07-18 11:00:00,0.23,0.273,0.309 +2016-07-18 12:00:00,0.23,0.273,0.309 +2016-07-18 13:00:00,0.22899999999999998,0.273,0.308 +2016-07-18 14:00:00,0.22899999999999998,0.273,0.308 +2016-07-18 15:00:00,0.22899999999999998,0.273,0.308 +2016-07-18 16:00:00,0.22899999999999998,0.273,0.308 +2016-07-18 17:00:00,0.22899999999999998,0.273,0.308 +2016-07-18 18:00:00,0.22899999999999998,0.273,0.308 +2016-07-18 19:00:00,0.22899999999999998,0.272,0.308 +2016-07-18 20:00:00,0.22899999999999998,0.273,0.307 +2016-07-18 21:00:00,0.22899999999999998,0.273,0.307 +2016-07-18 22:00:00,0.22899999999999998,0.273,0.307 +2016-07-18 23:00:00,0.22899999999999998,0.273,0.307 +2016-07-19 00:00:00,0.22899999999999998,0.273,0.307 +2016-07-19 01:00:00,0.228,0.273,0.307 +2016-07-19 02:00:00,0.228,0.273,0.308 +2016-07-19 03:00:00,0.228,0.273,0.308 +2016-07-19 04:00:00,0.228,0.273,0.308 +2016-07-19 05:00:00,0.228,0.27399999999999997,0.308 +2016-07-19 06:00:00,0.22699999999999998,0.27399999999999997,0.308 +2016-07-19 07:00:00,0.22699999999999998,0.275,0.308 +2016-07-19 08:00:00,0.226,0.275,0.308 +2016-07-19 09:00:00,0.226,0.275,0.308 +2016-07-19 10:00:00,0.226,0.275,0.308 +2016-07-19 11:00:00,0.225,0.275,0.308 +2016-07-19 12:00:00,0.225,0.275,0.308 +2016-07-19 13:00:00,0.22399999999999998,0.275,0.307 +2016-07-19 14:00:00,0.22399999999999998,0.275,0.307 +2016-07-19 15:00:00,0.223,0.27399999999999997,0.307 +2016-07-19 16:00:00,0.223,0.273,0.306 +2016-07-19 17:00:00,0.22399999999999998,0.273,0.306 +2016-07-19 18:00:00,0.225,0.273,0.306 +2016-07-19 19:00:00,0.225,0.273,0.306 +2016-07-19 20:00:00,0.226,0.273,0.306 +2016-07-19 21:00:00,0.226,0.273,0.306 +2016-07-19 22:00:00,0.22699999999999998,0.273,0.306 +2016-07-19 23:00:00,0.22699999999999998,0.273,0.306 +2016-07-20 00:00:00,0.22699999999999998,0.273,0.306 +2016-07-20 01:00:00,0.22699999999999998,0.273,0.306 +2016-07-20 02:00:00,0.22699999999999998,0.273,0.306 +2016-07-20 03:00:00,0.22699999999999998,0.273,0.306 +2016-07-20 04:00:00,0.22699999999999998,0.273,0.306 +2016-07-20 05:00:00,0.22699999999999998,0.273,0.306 +2016-07-20 06:00:00,0.22699999999999998,0.27399999999999997,0.306 +2016-07-20 07:00:00,0.22699999999999998,0.27399999999999997,0.306 +2016-07-20 08:00:00,0.226,0.27399999999999997,0.306 +2016-07-20 09:00:00,0.22699999999999998,0.27399999999999997,0.307 +2016-07-20 10:00:00,0.226,0.27399999999999997,0.307 +2016-07-20 11:00:00,0.226,0.27399999999999997,0.306 +2016-07-20 12:00:00,0.226,0.27399999999999997,0.306 +2016-07-20 13:00:00,0.226,0.273,0.306 +2016-07-20 14:00:00,0.226,0.273,0.306 +2016-07-20 15:00:00,0.225,0.273,0.305 +2016-07-20 16:00:00,0.226,0.273,0.305 +2016-07-20 17:00:00,0.225,0.272,0.305 +2016-07-20 18:00:00,0.225,0.272,0.304 +2016-07-20 19:00:00,0.226,0.272,0.304 +2016-07-20 20:00:00,0.226,0.272,0.304 +2016-07-20 21:00:00,0.226,0.272,0.304 +2016-07-20 22:00:00,0.226,0.272,0.304 +2016-07-20 23:00:00,0.226,0.273,0.305 +2016-07-21 00:00:00,0.226,0.273,0.305 +2016-07-21 01:00:00,0.226,0.273,0.305 +2016-07-21 02:00:00,0.226,0.273,0.305 +2016-07-21 03:00:00,0.226,0.273,0.305 +2016-07-21 04:00:00,0.226,0.273,0.305 +2016-07-21 05:00:00,0.226,0.273,0.305 +2016-07-21 06:00:00,0.226,0.273,0.305 +2016-07-21 07:00:00,0.226,0.273,0.305 +2016-07-21 08:00:00,0.226,0.273,0.305 +2016-07-21 09:00:00,0.226,0.273,0.305 +2016-07-21 10:00:00,0.226,0.273,0.306 +2016-07-21 11:00:00,0.226,0.271,0.306 +2016-07-21 12:00:00,0.22699999999999998,0.271,0.307 +2016-07-21 13:00:00,0.22699999999999998,0.271,0.307 +2016-07-21 14:00:00,0.22699999999999998,0.272,0.307 +2016-07-21 15:00:00,0.22699999999999998,0.272,0.306 +2016-07-21 16:00:00,0.22699999999999998,0.272,0.306 +2016-07-21 17:00:00,0.22699999999999998,0.271,0.306 +2016-07-21 18:00:00,0.22699999999999998,0.271,0.306 +2016-07-21 19:00:00,0.22699999999999998,0.271,0.306 +2016-07-21 20:00:00,0.22699999999999998,0.271,0.306 +2016-07-21 21:00:00,0.22699999999999998,0.271,0.306 +2016-07-21 22:00:00,0.22699999999999998,0.271,0.306 +2016-07-21 23:00:00,0.22699999999999998,0.271,0.306 +2016-07-22 00:00:00,0.22699999999999998,0.271,0.306 +2016-07-22 01:00:00,0.22699999999999998,0.272,0.306 +2016-07-22 02:00:00,0.22699999999999998,0.272,0.306 +2016-07-22 03:00:00,0.22699999999999998,0.272,0.306 +2016-07-22 04:00:00,0.22699999999999998,0.272,0.306 +2016-07-22 05:00:00,0.22699999999999998,0.273,0.306 +2016-07-22 06:00:00,0.22699999999999998,0.273,0.306 +2016-07-22 07:00:00,0.22699999999999998,0.273,0.306 +2016-07-22 08:00:00,0.22699999999999998,0.273,0.306 +2016-07-22 09:00:00,0.22699999999999998,0.273,0.307 +2016-07-22 10:00:00,0.22699999999999998,0.273,0.307 +2016-07-22 11:00:00,0.22699999999999998,0.273,0.306 +2016-07-22 12:00:00,0.22699999999999998,0.273,0.306 +2016-07-22 13:00:00,0.22699999999999998,0.273,0.306 +2016-07-22 14:00:00,0.22699999999999998,0.272,0.306 +2016-07-22 15:00:00,0.22699999999999998,0.271,0.306 +2016-07-22 16:00:00,0.22699999999999998,0.271,0.305 +2016-07-22 17:00:00,0.22699999999999998,0.271,0.305 +2016-07-22 18:00:00,0.22699999999999998,0.271,0.305 +2016-07-22 19:00:00,0.22699999999999998,0.271,0.305 +2016-07-22 20:00:00,0.22699999999999998,0.27,0.305 +2016-07-22 21:00:00,0.22699999999999998,0.27,0.305 +2016-07-22 22:00:00,0.22699999999999998,0.271,0.305 +2016-07-22 23:00:00,0.22699999999999998,0.271,0.305 +2016-07-23 00:00:00,0.22699999999999998,0.271,0.306 +2016-07-23 01:00:00,0.22699999999999998,0.271,0.306 +2016-07-23 02:00:00,0.22699999999999998,0.271,0.306 +2016-07-23 03:00:00,0.22699999999999998,0.271,0.306 +2016-07-23 04:00:00,0.235,0.271,0.308 +2016-07-23 05:00:00,0.252,0.272,0.311 +2016-07-23 06:00:00,0.256,0.272,0.311 +2016-07-23 07:00:00,0.255,0.272,0.311 +2016-07-23 08:00:00,0.254,0.272,0.311 +2016-07-23 09:00:00,0.253,0.272,0.311 +2016-07-23 10:00:00,0.252,0.271,0.311 +2016-07-23 11:00:00,0.251,0.271,0.311 +2016-07-23 12:00:00,0.25,0.271,0.311 +2016-07-23 13:00:00,0.25,0.271,0.311 +2016-07-23 14:00:00,0.25,0.271,0.311 +2016-07-23 15:00:00,0.249,0.271,0.311 +2016-07-23 16:00:00,0.249,0.271,0.31 +2016-07-23 17:00:00,0.249,0.271,0.31 +2016-07-23 18:00:00,0.248,0.271,0.31 +2016-07-23 19:00:00,0.248,0.271,0.31 +2016-07-23 20:00:00,0.248,0.271,0.31 +2016-07-23 21:00:00,0.248,0.271,0.31 +2016-07-23 22:00:00,0.248,0.271,0.31 +2016-07-23 23:00:00,0.247,0.271,0.31 +2016-07-24 00:00:00,0.247,0.271,0.31 +2016-07-24 01:00:00,0.247,0.271,0.31 +2016-07-24 02:00:00,0.24600000000000002,0.271,0.31 +2016-07-24 03:00:00,0.24600000000000002,0.272,0.31 +2016-07-24 04:00:00,0.24600000000000002,0.272,0.31 +2016-07-24 05:00:00,0.24600000000000002,0.272,0.31 +2016-07-24 06:00:00,0.24600000000000002,0.272,0.31 +2016-07-24 07:00:00,0.24600000000000002,0.272,0.31 +2016-07-24 08:00:00,0.24600000000000002,0.272,0.31 +2016-07-24 09:00:00,0.24600000000000002,0.272,0.31 +2016-07-24 10:00:00,0.245,0.271,0.31 +2016-07-24 11:00:00,0.245,0.271,0.31 +2016-07-24 12:00:00,0.245,0.271,0.31 +2016-07-24 13:00:00,0.244,0.271,0.309 +2016-07-24 14:00:00,0.244,0.271,0.309 +2016-07-24 15:00:00,0.243,0.271,0.309 +2016-07-24 16:00:00,0.243,0.271,0.308 +2016-07-24 17:00:00,0.243,0.271,0.308 +2016-07-24 18:00:00,0.242,0.27,0.308 +2016-07-24 19:00:00,0.242,0.27,0.308 +2016-07-24 20:00:00,0.242,0.27,0.308 +2016-07-24 21:00:00,0.242,0.27,0.308 +2016-07-24 22:00:00,0.242,0.27,0.308 +2016-07-24 23:00:00,0.242,0.27,0.309 +2016-07-25 00:00:00,0.242,0.27,0.309 +2016-07-25 01:00:00,0.242,0.27,0.309 +2016-07-25 02:00:00,0.242,0.271,0.309 +2016-07-25 03:00:00,0.242,0.271,0.309 +2016-07-25 04:00:00,0.242,0.271,0.309 +2016-07-25 05:00:00,0.242,0.271,0.309 +2016-07-25 06:00:00,0.242,0.271,0.309 +2016-07-25 07:00:00,0.242,0.271,0.309 +2016-07-25 08:00:00,0.242,0.271,0.309 +2016-07-25 09:00:00,0.242,0.271,0.309 +2016-07-25 10:00:00,0.242,0.271,0.309 +2016-07-25 11:00:00,0.242,0.271,0.309 +2016-07-25 12:00:00,0.24100000000000002,0.271,0.308 +2016-07-25 13:00:00,0.24100000000000002,0.271,0.308 +2016-07-25 14:00:00,0.24100000000000002,0.271,0.308 +2016-07-25 15:00:00,0.24,0.27,0.308 +2016-07-25 16:00:00,0.24,0.27,0.308 +2016-07-25 17:00:00,0.24,0.27,0.308 +2016-07-25 18:00:00,0.24,0.27,0.308 +2016-07-25 19:00:00,0.239,0.27,0.308 +2016-07-25 20:00:00,0.239,0.26899999999999996,0.308 +2016-07-25 21:00:00,0.239,0.27,0.307 +2016-07-25 22:00:00,0.239,0.27,0.307 +2016-07-25 23:00:00,0.239,0.27,0.307 +2016-07-26 00:00:00,0.239,0.27,0.307 +2016-07-26 01:00:00,0.239,0.27,0.307 +2016-07-26 02:00:00,0.239,0.27,0.308 +2016-07-26 03:00:00,0.239,0.27,0.308 +2016-07-26 04:00:00,0.239,0.27,0.308 +2016-07-26 05:00:00,0.23800000000000002,0.27,0.308 +2016-07-26 06:00:00,0.23800000000000002,0.27,0.308 +2016-07-26 07:00:00,0.23800000000000002,0.27,0.308 +2016-07-26 08:00:00,0.23800000000000002,0.27,0.308 +2016-07-26 09:00:00,0.23800000000000002,0.27,0.308 +2016-07-26 10:00:00,0.23800000000000002,0.27,0.308 +2016-07-26 11:00:00,0.23800000000000002,0.27,0.308 +2016-07-26 12:00:00,0.237,0.27,0.307 +2016-07-26 13:00:00,0.237,0.27,0.307 +2016-07-26 14:00:00,0.237,0.27,0.307 +2016-07-26 15:00:00,0.237,0.268,0.307 +2016-07-26 16:00:00,0.237,0.268,0.307 +2016-07-26 17:00:00,0.23600000000000002,0.267,0.307 +2016-07-26 18:00:00,0.23600000000000002,0.266,0.307 +2016-07-26 19:00:00,0.237,0.266,0.307 +2016-07-26 20:00:00,0.23600000000000002,0.266,0.307 +2016-07-26 21:00:00,0.23600000000000002,0.266,0.307 +2016-07-26 22:00:00,0.23600000000000002,0.266,0.307 +2016-07-26 23:00:00,0.23600000000000002,0.267,0.307 +2016-07-27 00:00:00,0.23600000000000002,0.267,0.307 +2016-07-27 01:00:00,0.23600000000000002,0.268,0.307 +2016-07-27 02:00:00,0.23600000000000002,0.268,0.307 +2016-07-27 03:00:00,0.23600000000000002,0.268,0.307 +2016-07-27 04:00:00,0.23600000000000002,0.268,0.307 +2016-07-27 05:00:00,0.23600000000000002,0.268,0.307 +2016-07-27 06:00:00,0.235,0.268,0.307 +2016-07-27 07:00:00,0.23600000000000002,0.268,0.307 +2016-07-27 08:00:00,0.23600000000000002,0.268,0.309 +2016-07-27 09:00:00,0.23600000000000002,0.268,0.309 +2016-07-27 10:00:00,0.23600000000000002,0.268,0.309 +2016-07-27 11:00:00,0.23600000000000002,0.268,0.309 +2016-07-27 12:00:00,0.23600000000000002,0.268,0.309 +2016-07-27 13:00:00,0.23600000000000002,0.268,0.308 +2016-07-27 14:00:00,0.23600000000000002,0.268,0.308 +2016-07-27 15:00:00,0.235,0.268,0.307 +2016-07-27 16:00:00,0.235,0.268,0.307 +2016-07-27 17:00:00,0.235,0.268,0.307 +2016-07-27 18:00:00,0.23399999999999999,0.268,0.306 +2016-07-27 19:00:00,0.23399999999999999,0.268,0.306 +2016-07-27 20:00:00,0.23399999999999999,0.268,0.306 +2016-07-27 21:00:00,0.23399999999999999,0.268,0.306 +2016-07-27 22:00:00,0.23399999999999999,0.268,0.306 +2016-07-27 23:00:00,0.23399999999999999,0.268,0.306 +2016-07-28 00:00:00,0.23399999999999999,0.268,0.306 +2016-07-28 01:00:00,0.23399999999999999,0.268,0.306 +2016-07-28 02:00:00,0.23399999999999999,0.26899999999999996,0.306 +2016-07-28 03:00:00,0.23399999999999999,0.26899999999999996,0.306 +2016-07-28 04:00:00,0.233,0.26899999999999996,0.306 +2016-07-28 05:00:00,0.233,0.268,0.306 +2016-07-28 06:00:00,0.233,0.268,0.306 +2016-07-28 07:00:00,0.233,0.26899999999999996,0.306 +2016-07-28 08:00:00,0.233,0.26899999999999996,0.306 +2016-07-28 09:00:00,0.233,0.26899999999999996,0.307 +2016-07-28 10:00:00,0.233,0.26899999999999996,0.307 +2016-07-28 11:00:00,0.233,0.26899999999999996,0.306 +2016-07-28 12:00:00,0.233,0.26899999999999996,0.306 +2016-07-28 13:00:00,0.233,0.26899999999999996,0.306 +2016-07-28 14:00:00,0.233,0.26899999999999996,0.306 +2016-07-28 15:00:00,0.233,0.27,0.306 +2016-07-28 16:00:00,0.233,0.27,0.306 +2016-07-28 17:00:00,0.23199999999999998,0.27,0.306 +2016-07-28 18:00:00,0.23199999999999998,0.27,0.306 +2016-07-28 19:00:00,0.23199999999999998,0.267,0.306 +2016-07-28 20:00:00,0.23199999999999998,0.268,0.306 +2016-07-28 21:00:00,0.23199999999999998,0.268,0.306 +2016-07-28 22:00:00,0.233,0.268,0.306 +2016-07-28 23:00:00,0.23199999999999998,0.26899999999999996,0.306 +2016-07-29 00:00:00,0.233,0.26899999999999996,0.306 +2016-07-29 01:00:00,0.23199999999999998,0.26899999999999996,0.306 +2016-07-29 02:00:00,0.23199999999999998,0.26899999999999996,0.306 +2016-07-29 03:00:00,0.23199999999999998,0.26899999999999996,0.306 +2016-07-29 04:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 05:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 06:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 07:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 08:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 09:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 10:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 11:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 12:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 13:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 14:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 15:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 16:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 17:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 18:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 19:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 20:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 21:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 22:00:00,0.23199999999999998,0.27,0.306 +2016-07-29 23:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 00:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 01:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 02:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 03:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 04:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 05:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 06:00:00,0.23199999999999998,0.27,0.306 +2016-07-30 07:00:00,0.23199999999999998,0.271,0.307 +2016-07-30 08:00:00,0.23199999999999998,0.271,0.307 +2016-07-30 09:00:00,0.23199999999999998,0.271,0.307 +2016-07-30 10:00:00,0.23199999999999998,0.271,0.307 +2016-07-30 11:00:00,0.23199999999999998,0.271,0.307 +2016-07-30 12:00:00,0.231,0.271,0.306 +2016-07-30 13:00:00,0.231,0.271,0.306 +2016-07-30 14:00:00,0.231,0.271,0.306 +2016-07-30 15:00:00,0.231,0.271,0.306 +2016-07-30 16:00:00,0.231,0.271,0.306 +2016-07-30 17:00:00,0.231,0.271,0.306 +2016-07-30 18:00:00,0.231,0.271,0.305 +2016-07-30 19:00:00,0.231,0.271,0.305 +2016-07-30 20:00:00,0.231,0.271,0.305 +2016-07-30 21:00:00,0.231,0.271,0.305 +2016-07-30 22:00:00,0.231,0.271,0.305 +2016-07-30 23:00:00,0.231,0.271,0.305 +2016-07-31 00:00:00,0.23,0.271,0.305 +2016-07-31 01:00:00,0.23,0.272,0.305 +2016-07-31 02:00:00,0.23,0.272,0.305 +2016-07-31 03:00:00,0.23,0.273,0.305 +2016-07-31 04:00:00,0.23,0.273,0.305 +2016-07-31 05:00:00,0.23,0.273,0.305 +2016-07-31 06:00:00,0.23,0.273,0.305 +2016-07-31 07:00:00,0.23,0.273,0.305 +2016-07-31 08:00:00,0.23,0.273,0.306 +2016-07-31 09:00:00,0.23,0.273,0.306 +2016-07-31 10:00:00,0.23,0.273,0.306 +2016-07-31 11:00:00,0.23,0.273,0.306 +2016-07-31 12:00:00,0.22899999999999998,0.273,0.305 +2016-07-31 13:00:00,0.22899999999999998,0.273,0.305 +2016-07-31 14:00:00,0.22899999999999998,0.273,0.305 +2016-07-31 15:00:00,0.22899999999999998,0.273,0.305 +2016-07-31 16:00:00,0.22899999999999998,0.272,0.304 +2016-07-31 17:00:00,0.22899999999999998,0.272,0.304 +2016-07-31 18:00:00,0.22899999999999998,0.271,0.304 +2016-07-31 19:00:00,0.22899999999999998,0.271,0.304 +2016-07-31 20:00:00,0.22899999999999998,0.271,0.304 +2016-07-31 21:00:00,0.228,0.271,0.304 +2016-07-31 22:00:00,0.228,0.271,0.304 +2016-07-31 23:00:00,0.228,0.272,0.304 +2016-08-01 00:00:00,0.228,0.272,0.304 +2016-08-01 01:00:00,0.228,0.273,0.304 +2016-08-01 02:00:00,0.228,0.273,0.304 +2016-08-01 03:00:00,0.228,0.273,0.304 +2016-08-01 04:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 05:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 06:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 07:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 08:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 09:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 10:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 11:00:00,0.22699999999999998,0.273,0.304 +2016-08-01 12:00:00,0.226,0.272,0.304 +2016-08-01 13:00:00,0.226,0.272,0.304 +2016-08-01 14:00:00,0.226,0.272,0.304 +2016-08-01 15:00:00,0.226,0.271,0.303 +2016-08-01 16:00:00,0.226,0.271,0.303 +2016-08-01 17:00:00,0.226,0.27,0.303 +2016-08-01 18:00:00,0.226,0.27,0.303 +2016-08-01 19:00:00,0.226,0.27,0.303 +2016-08-01 20:00:00,0.226,0.27,0.303 +2016-08-01 21:00:00,0.226,0.27,0.303 +2016-08-01 22:00:00,0.226,0.27,0.303 +2016-08-01 23:00:00,0.226,0.27,0.303 +2016-08-02 00:00:00,0.226,0.271,0.303 +2016-08-02 01:00:00,0.226,0.271,0.303 +2016-08-02 02:00:00,0.226,0.271,0.303 +2016-08-02 03:00:00,0.226,0.271,0.303 +2016-08-02 04:00:00,0.226,0.271,0.303 +2016-08-02 05:00:00,0.226,0.272,0.303 +2016-08-02 06:00:00,0.226,0.272,0.303 +2016-08-02 07:00:00,0.226,0.272,0.303 +2016-08-02 08:00:00,0.226,0.272,0.303 +2016-08-02 09:00:00,0.226,0.272,0.303 +2016-08-02 10:00:00,0.226,0.272,0.303 +2016-08-02 11:00:00,0.226,0.271,0.303 +2016-08-02 12:00:00,0.226,0.271,0.303 +2016-08-02 13:00:00,0.226,0.271,0.303 +2016-08-02 14:00:00,0.226,0.271,0.304 +2016-08-02 15:00:00,0.226,0.271,0.304 +2016-08-02 16:00:00,0.226,0.27,0.304 +2016-08-02 17:00:00,0.226,0.27,0.304 +2016-08-02 18:00:00,0.226,0.27,0.304 +2016-08-02 19:00:00,0.226,0.27,0.304 +2016-08-02 20:00:00,0.226,0.27,0.304 +2016-08-02 21:00:00,0.226,0.27,0.304 +2016-08-02 22:00:00,0.226,0.27,0.304 +2016-08-02 23:00:00,0.226,0.27,0.304 +2016-08-03 00:00:00,0.226,0.27,0.304 +2016-08-03 01:00:00,0.226,0.27,0.304 +2016-08-03 02:00:00,0.226,0.27,0.304 +2016-08-03 03:00:00,0.226,0.271,0.304 +2016-08-03 04:00:00,0.226,0.271,0.304 +2016-08-03 05:00:00,0.226,0.271,0.304 +2016-08-03 06:00:00,0.226,0.271,0.304 +2016-08-03 07:00:00,0.226,0.271,0.304 +2016-08-03 08:00:00,0.22699999999999998,0.271,0.306 +2016-08-03 09:00:00,0.22699999999999998,0.271,0.306 +2016-08-03 10:00:00,0.228,0.271,0.306 +2016-08-03 11:00:00,0.228,0.271,0.306 +2016-08-03 12:00:00,0.228,0.271,0.306 +2016-08-03 13:00:00,0.228,0.271,0.306 +2016-08-03 14:00:00,0.228,0.271,0.306 +2016-08-03 15:00:00,0.228,0.271,0.306 +2016-08-03 16:00:00,0.22899999999999998,0.271,0.307 +2016-08-03 17:00:00,0.22899999999999998,0.27,0.307 +2016-08-03 18:00:00,0.22899999999999998,0.27,0.307 +2016-08-03 19:00:00,0.22899999999999998,0.27,0.307 +2016-08-03 20:00:00,0.22899999999999998,0.27,0.307 +2016-08-03 21:00:00,0.22899999999999998,0.27,0.307 +2016-08-03 22:00:00,0.23,0.27,0.307 +2016-08-03 23:00:00,0.23,0.27,0.307 +2016-08-04 00:00:00,0.23,0.27,0.307 +2016-08-04 01:00:00,0.23,0.27,0.307 +2016-08-04 02:00:00,0.23,0.27,0.307 +2016-08-04 03:00:00,0.23,0.27,0.307 +2016-08-04 04:00:00,0.23,0.27,0.307 +2016-08-04 05:00:00,0.23,0.27,0.307 +2016-08-04 06:00:00,0.23,0.27,0.307 +2016-08-04 07:00:00,0.23,0.27,0.307 +2016-08-04 08:00:00,0.23,0.27,0.307 +2016-08-04 09:00:00,0.23,0.27,0.307 +2016-08-04 10:00:00,0.23,0.27,0.307 +2016-08-04 11:00:00,0.23,0.27,0.307 +2016-08-04 12:00:00,0.23,0.27,0.308 +2016-08-04 13:00:00,0.231,0.27,0.308 +2016-08-04 14:00:00,0.231,0.27,0.308 +2016-08-04 15:00:00,0.231,0.27,0.308 +2016-08-04 16:00:00,0.231,0.27,0.308 +2016-08-04 17:00:00,0.231,0.27,0.308 +2016-08-04 18:00:00,0.23199999999999998,0.27,0.308 +2016-08-04 19:00:00,0.23199999999999998,0.26899999999999996,0.308 +2016-08-04 20:00:00,0.23199999999999998,0.26899999999999996,0.308 +2016-08-04 21:00:00,0.23199999999999998,0.26899999999999996,0.309 +2016-08-04 22:00:00,0.23199999999999998,0.26899999999999996,0.309 +2016-08-04 23:00:00,0.23199999999999998,0.26899999999999996,0.309 +2016-08-05 00:00:00,0.233,0.27,0.309 +2016-08-05 01:00:00,0.233,0.27,0.309 +2016-08-05 02:00:00,0.233,0.27,0.309 +2016-08-05 03:00:00,0.233,0.27,0.309 +2016-08-05 04:00:00,0.233,0.27,0.309 +2016-08-05 05:00:00,0.233,0.27,0.309 +2016-08-05 06:00:00,0.233,0.27,0.309 +2016-08-05 07:00:00,0.233,0.27,0.309 +2016-08-05 08:00:00,0.233,0.27,0.309 +2016-08-05 09:00:00,0.233,0.27,0.309 +2016-08-05 10:00:00,0.233,0.27,0.309 +2016-08-05 11:00:00,0.23399999999999999,0.27,0.309 +2016-08-05 12:00:00,0.23399999999999999,0.26899999999999996,0.309 +2016-08-05 13:00:00,0.23399999999999999,0.26899999999999996,0.308 +2016-08-05 14:00:00,0.23399999999999999,0.26899999999999996,0.308 +2016-08-05 15:00:00,0.23399999999999999,0.268,0.308 +2016-08-05 16:00:00,0.23399999999999999,0.268,0.308 +2016-08-05 17:00:00,0.23399999999999999,0.268,0.307 +2016-08-05 18:00:00,0.23399999999999999,0.267,0.307 +2016-08-05 19:00:00,0.233,0.266,0.307 +2016-08-05 20:00:00,0.233,0.266,0.307 +2016-08-05 21:00:00,0.23399999999999999,0.266,0.307 +2016-08-05 22:00:00,0.23399999999999999,0.266,0.307 +2016-08-05 23:00:00,0.23399999999999999,0.266,0.307 +2016-08-06 00:00:00,0.23399999999999999,0.266,0.307 +2016-08-06 01:00:00,0.23399999999999999,0.267,0.307 +2016-08-06 02:00:00,0.23399999999999999,0.267,0.307 +2016-08-06 03:00:00,0.23399999999999999,0.267,0.307 +2016-08-06 04:00:00,0.23399999999999999,0.267,0.307 +2016-08-06 05:00:00,0.23399999999999999,0.267,0.307 +2016-08-06 06:00:00,0.23399999999999999,0.268,0.307 +2016-08-06 07:00:00,0.23399999999999999,0.268,0.307 +2016-08-06 08:00:00,0.23399999999999999,0.268,0.307 +2016-08-06 09:00:00,0.23399999999999999,0.268,0.307 +2016-08-06 10:00:00,0.23399999999999999,0.268,0.307 +2016-08-06 11:00:00,0.23399999999999999,0.268,0.307 +2016-08-06 12:00:00,0.23399999999999999,0.268,0.307 +2016-08-06 13:00:00,0.233,0.268,0.307 +2016-08-06 14:00:00,0.233,0.268,0.306 +2016-08-06 15:00:00,0.233,0.268,0.306 +2016-08-06 16:00:00,0.233,0.268,0.306 +2016-08-06 17:00:00,0.233,0.268,0.306 +2016-08-06 18:00:00,0.233,0.268,0.306 +2016-08-06 19:00:00,0.233,0.268,0.306 +2016-08-06 20:00:00,0.233,0.268,0.306 +2016-08-06 21:00:00,0.233,0.268,0.306 +2016-08-06 22:00:00,0.233,0.268,0.306 +2016-08-06 23:00:00,0.23399999999999999,0.268,0.306 +2016-08-07 00:00:00,0.233,0.268,0.306 +2016-08-07 01:00:00,0.233,0.268,0.306 +2016-08-07 02:00:00,0.233,0.268,0.306 +2016-08-07 03:00:00,0.233,0.268,0.306 +2016-08-07 04:00:00,0.233,0.268,0.306 +2016-08-07 05:00:00,0.233,0.268,0.306 +2016-08-07 06:00:00,0.233,0.268,0.306 +2016-08-07 07:00:00,0.233,0.26899999999999996,0.306 +2016-08-07 08:00:00,0.233,0.26899999999999996,0.306 +2016-08-07 09:00:00,0.233,0.26899999999999996,0.306 +2016-08-07 10:00:00,0.233,0.26899999999999996,0.306 +2016-08-07 11:00:00,0.233,0.26899999999999996,0.306 +2016-08-07 12:00:00,0.233,0.26899999999999996,0.306 +2016-08-07 13:00:00,0.23199999999999998,0.26899999999999996,0.306 +2016-08-07 14:00:00,0.23199999999999998,0.268,0.306 +2016-08-07 15:00:00,0.23199999999999998,0.268,0.306 +2016-08-07 16:00:00,0.23199999999999998,0.266,0.305 +2016-08-07 17:00:00,0.23199999999999998,0.266,0.305 +2016-08-07 18:00:00,0.23199999999999998,0.266,0.305 +2016-08-07 19:00:00,0.23199999999999998,0.266,0.305 +2016-08-07 20:00:00,0.23199999999999998,0.266,0.305 +2016-08-07 21:00:00,0.23199999999999998,0.266,0.305 +2016-08-07 22:00:00,0.23199999999999998,0.266,0.305 +2016-08-07 23:00:00,0.23199999999999998,0.266,0.305 +2016-08-08 00:00:00,0.23199999999999998,0.266,0.305 +2016-08-08 01:00:00,0.23199999999999998,0.266,0.305 +2016-08-08 02:00:00,0.23199999999999998,0.266,0.305 +2016-08-08 03:00:00,0.23199999999999998,0.267,0.305 +2016-08-08 04:00:00,0.23199999999999998,0.268,0.305 +2016-08-08 05:00:00,0.23199999999999998,0.268,0.305 +2016-08-08 06:00:00,0.23199999999999998,0.268,0.305 +2016-08-08 07:00:00,0.23199999999999998,0.268,0.306 +2016-08-08 08:00:00,0.23199999999999998,0.268,0.306 +2016-08-08 09:00:00,0.23199999999999998,0.268,0.306 +2016-08-08 10:00:00,0.23199999999999998,0.268,0.306 +2016-08-08 11:00:00,0.23199999999999998,0.268,0.305 +2016-08-08 12:00:00,0.231,0.268,0.305 +2016-08-08 13:00:00,0.231,0.268,0.305 +2016-08-08 14:00:00,0.231,0.268,0.305 +2016-08-08 15:00:00,0.231,0.266,0.304 +2016-08-08 16:00:00,0.231,0.266,0.304 +2016-08-08 17:00:00,0.231,0.266,0.304 +2016-08-08 18:00:00,0.231,0.266,0.304 +2016-08-08 19:00:00,0.231,0.266,0.304 +2016-08-08 20:00:00,0.231,0.265,0.304 +2016-08-08 21:00:00,0.231,0.264,0.304 +2016-08-08 22:00:00,0.231,0.265,0.304 +2016-08-08 23:00:00,0.231,0.265,0.304 +2016-08-09 00:00:00,0.231,0.265,0.304 +2016-08-09 01:00:00,0.231,0.266,0.304 +2016-08-09 02:00:00,0.231,0.266,0.304 +2016-08-09 03:00:00,0.231,0.266,0.304 +2016-08-09 04:00:00,0.231,0.266,0.304 +2016-08-09 05:00:00,0.23,0.266,0.304 +2016-08-09 06:00:00,0.231,0.266,0.304 +2016-08-09 07:00:00,0.231,0.266,0.304 +2016-08-09 08:00:00,0.23,0.266,0.304 +2016-08-09 09:00:00,0.231,0.266,0.304 +2016-08-09 10:00:00,0.231,0.266,0.304 +2016-08-09 11:00:00,0.23,0.266,0.304 +2016-08-09 12:00:00,0.23,0.266,0.304 +2016-08-09 13:00:00,0.23,0.266,0.304 +2016-08-09 14:00:00,0.23,0.266,0.304 +2016-08-09 15:00:00,0.23,0.265,0.304 +2016-08-09 16:00:00,0.23,0.264,0.304 +2016-08-09 17:00:00,0.22899999999999998,0.264,0.304 +2016-08-09 18:00:00,0.23,0.263,0.304 +2016-08-09 19:00:00,0.22899999999999998,0.263,0.303 +2016-08-09 20:00:00,0.22899999999999998,0.263,0.303 +2016-08-09 21:00:00,0.22899999999999998,0.263,0.303 +2016-08-09 22:00:00,0.22899999999999998,0.263,0.303 +2016-08-09 23:00:00,0.22899999999999998,0.263,0.303 +2016-08-10 00:00:00,0.22899999999999998,0.263,0.303 +2016-08-10 01:00:00,0.22899999999999998,0.264,0.303 +2016-08-10 02:00:00,0.22899999999999998,0.264,0.303 +2016-08-10 03:00:00,0.22899999999999998,0.264,0.303 +2016-08-10 04:00:00,0.22899999999999998,0.264,0.303 +2016-08-10 05:00:00,0.22899999999999998,0.264,0.303 +2016-08-10 06:00:00,0.228,0.264,0.303 +2016-08-10 07:00:00,0.228,0.264,0.303 +2016-08-10 08:00:00,0.228,0.264,0.303 +2016-08-10 09:00:00,0.228,0.264,0.304 +2016-08-10 10:00:00,0.228,0.264,0.304 +2016-08-10 11:00:00,0.228,0.264,0.303 +2016-08-10 12:00:00,0.228,0.264,0.303 +2016-08-10 13:00:00,0.228,0.264,0.303 +2016-08-10 14:00:00,0.228,0.264,0.303 +2016-08-10 15:00:00,0.228,0.263,0.303 +2016-08-10 16:00:00,0.228,0.263,0.303 +2016-08-10 17:00:00,0.228,0.262,0.304 +2016-08-10 18:00:00,0.228,0.261,0.303 +2016-08-10 19:00:00,0.228,0.261,0.303 +2016-08-10 20:00:00,0.228,0.26,0.303 +2016-08-10 21:00:00,0.228,0.26,0.303 +2016-08-10 22:00:00,0.228,0.261,0.303 +2016-08-10 23:00:00,0.228,0.261,0.303 +2016-08-11 00:00:00,0.228,0.261,0.303 +2016-08-11 01:00:00,0.228,0.261,0.303 +2016-08-11 02:00:00,0.228,0.262,0.303 +2016-08-11 03:00:00,0.228,0.262,0.303 +2016-08-11 04:00:00,0.22699999999999998,0.262,0.303 +2016-08-11 05:00:00,0.22699999999999998,0.263,0.303 +2016-08-11 06:00:00,0.22699999999999998,0.263,0.303 +2016-08-11 07:00:00,0.22699999999999998,0.263,0.303 +2016-08-11 08:00:00,0.22699999999999998,0.263,0.303 +2016-08-11 09:00:00,0.22699999999999998,0.263,0.303 +2016-08-11 10:00:00,0.22699999999999998,0.263,0.304 +2016-08-11 11:00:00,0.22699999999999998,0.263,0.304 +2016-08-11 12:00:00,0.22699999999999998,0.263,0.303 +2016-08-11 13:00:00,0.22699999999999998,0.263,0.303 +2016-08-11 14:00:00,0.226,0.261,0.303 +2016-08-11 15:00:00,0.226,0.261,0.303 +2016-08-11 16:00:00,0.226,0.259,0.303 +2016-08-11 17:00:00,0.226,0.259,0.303 +2016-08-11 18:00:00,0.226,0.259,0.302 +2016-08-11 19:00:00,0.226,0.259,0.302 +2016-08-11 20:00:00,0.226,0.259,0.302 +2016-08-11 21:00:00,0.226,0.259,0.303 +2016-08-11 22:00:00,0.22699999999999998,0.259,0.303 +2016-08-11 23:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 00:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 01:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 02:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 03:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 04:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 05:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 06:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 07:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 08:00:00,0.22699999999999998,0.26,0.304 +2016-08-12 09:00:00,0.22699999999999998,0.259,0.304 +2016-08-12 10:00:00,0.228,0.259,0.304 +2016-08-12 11:00:00,0.228,0.259,0.304 +2016-08-12 12:00:00,0.228,0.259,0.304 +2016-08-12 13:00:00,0.228,0.259,0.304 +2016-08-12 14:00:00,0.228,0.259,0.305 +2016-08-12 15:00:00,0.228,0.259,0.305 +2016-08-12 16:00:00,0.228,0.258,0.305 +2016-08-12 17:00:00,0.228,0.257,0.304 +2016-08-12 18:00:00,0.228,0.256,0.304 +2016-08-12 19:00:00,0.228,0.256,0.304 +2016-08-12 20:00:00,0.228,0.256,0.304 +2016-08-12 21:00:00,0.228,0.256,0.304 +2016-08-12 22:00:00,0.228,0.256,0.304 +2016-08-12 23:00:00,0.228,0.256,0.304 +2016-08-13 00:00:00,0.228,0.257,0.304 +2016-08-13 01:00:00,0.228,0.258,0.304 +2016-08-13 02:00:00,0.228,0.258,0.304 +2016-08-13 03:00:00,0.228,0.258,0.304 +2016-08-13 04:00:00,0.228,0.258,0.304 +2016-08-13 05:00:00,0.228,0.258,0.304 +2016-08-13 06:00:00,0.228,0.258,0.304 +2016-08-13 07:00:00,0.228,0.259,0.304 +2016-08-13 08:00:00,0.228,0.259,0.304 +2016-08-13 09:00:00,0.228,0.259,0.304 +2016-08-13 10:00:00,0.228,0.259,0.304 +2016-08-13 11:00:00,0.228,0.259,0.304 +2016-08-13 12:00:00,0.228,0.259,0.304 +2016-08-13 13:00:00,0.22699999999999998,0.259,0.304 +2016-08-13 14:00:00,0.22699999999999998,0.258,0.304 +2016-08-13 15:00:00,0.22699999999999998,0.258,0.303 +2016-08-13 16:00:00,0.22699999999999998,0.256,0.303 +2016-08-13 17:00:00,0.22699999999999998,0.256,0.303 +2016-08-13 18:00:00,0.22699999999999998,0.256,0.303 +2016-08-13 19:00:00,0.22699999999999998,0.256,0.303 +2016-08-13 20:00:00,0.22699999999999998,0.256,0.303 +2016-08-13 21:00:00,0.228,0.256,0.303 +2016-08-13 22:00:00,0.22699999999999998,0.256,0.303 +2016-08-13 23:00:00,0.228,0.256,0.303 +2016-08-14 00:00:00,0.22699999999999998,0.256,0.303 +2016-08-14 01:00:00,0.22699999999999998,0.257,0.303 +2016-08-14 02:00:00,0.22699999999999998,0.257,0.303 +2016-08-14 03:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 04:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 05:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 06:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 07:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 08:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 09:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 10:00:00,0.22699999999999998,0.258,0.303 +2016-08-14 11:00:00,0.226,0.258,0.303 +2016-08-14 12:00:00,0.226,0.258,0.303 +2016-08-14 13:00:00,0.226,0.258,0.303 +2016-08-14 14:00:00,0.226,0.258,0.303 +2016-08-14 15:00:00,0.226,0.258,0.302 +2016-08-14 16:00:00,0.226,0.258,0.302 +2016-08-14 17:00:00,0.226,0.258,0.302 +2016-08-14 18:00:00,0.226,0.258,0.302 +2016-08-14 19:00:00,0.226,0.258,0.302 +2016-08-14 20:00:00,0.226,0.257,0.302 +2016-08-14 21:00:00,0.226,0.258,0.302 +2016-08-14 22:00:00,0.226,0.258,0.302 +2016-08-14 23:00:00,0.226,0.258,0.302 +2016-08-15 00:00:00,0.226,0.258,0.302 +2016-08-15 01:00:00,0.226,0.258,0.302 +2016-08-15 02:00:00,0.226,0.258,0.302 +2016-08-15 03:00:00,0.226,0.258,0.302 +2016-08-15 04:00:00,0.226,0.259,0.302 +2016-08-15 05:00:00,0.226,0.259,0.302 +2016-08-15 06:00:00,0.226,0.258,0.302 +2016-08-15 07:00:00,0.225,0.258,0.302 +2016-08-15 08:00:00,0.225,0.258,0.302 +2016-08-15 09:00:00,0.225,0.258,0.302 +2016-08-15 10:00:00,0.225,0.258,0.302 +2016-08-15 11:00:00,0.225,0.258,0.302 +2016-08-15 12:00:00,0.225,0.258,0.302 +2016-08-15 13:00:00,0.22399999999999998,0.258,0.302 +2016-08-15 14:00:00,0.22399999999999998,0.258,0.301 +2016-08-15 15:00:00,0.22399999999999998,0.258,0.301 +2016-08-15 16:00:00,0.22399999999999998,0.258,0.301 +2016-08-15 17:00:00,0.22399999999999998,0.257,0.301 +2016-08-15 18:00:00,0.22399999999999998,0.257,0.301 +2016-08-15 19:00:00,0.22399999999999998,0.257,0.301 +2016-08-15 20:00:00,0.22399999999999998,0.256,0.3 +2016-08-15 21:00:00,0.22399999999999998,0.256,0.3 +2016-08-15 22:00:00,0.22399999999999998,0.256,0.3 +2016-08-15 23:00:00,0.22399999999999998,0.257,0.3 +2016-08-16 00:00:00,0.22399999999999998,0.258,0.3 +2016-08-16 01:00:00,0.22399999999999998,0.258,0.3 +2016-08-16 02:00:00,0.223,0.258,0.3 +2016-08-16 03:00:00,0.223,0.258,0.3 +2016-08-16 04:00:00,0.223,0.258,0.3 +2016-08-16 05:00:00,0.223,0.258,0.3 +2016-08-16 06:00:00,0.223,0.258,0.3 +2016-08-16 07:00:00,0.223,0.258,0.3 +2016-08-16 08:00:00,0.222,0.258,0.3 +2016-08-16 09:00:00,0.223,0.258,0.301 +2016-08-16 10:00:00,0.222,0.258,0.301 +2016-08-16 11:00:00,0.222,0.258,0.301 +2016-08-16 12:00:00,0.222,0.258,0.3 +2016-08-16 13:00:00,0.222,0.258,0.3 +2016-08-16 14:00:00,0.222,0.258,0.3 +2016-08-16 15:00:00,0.222,0.259,0.3 +2016-08-16 16:00:00,0.222,0.259,0.3 +2016-08-16 17:00:00,0.222,0.258,0.3 +2016-08-16 18:00:00,0.222,0.258,0.299 +2016-08-16 19:00:00,0.222,0.258,0.299 +2016-08-16 20:00:00,0.222,0.258,0.299 +2016-08-16 21:00:00,0.222,0.258,0.299 +2016-08-16 22:00:00,0.222,0.258,0.299 +2016-08-16 23:00:00,0.222,0.258,0.299 +2016-08-17 00:00:00,0.221,0.258,0.299 +2016-08-17 01:00:00,0.221,0.258,0.299 +2016-08-17 02:00:00,0.221,0.259,0.299 +2016-08-17 03:00:00,0.221,0.259,0.299 +2016-08-17 04:00:00,0.221,0.259,0.299 +2016-08-17 05:00:00,0.221,0.259,0.299 +2016-08-17 06:00:00,0.221,0.259,0.299 +2016-08-17 07:00:00,0.221,0.259,0.299 +2016-08-17 08:00:00,0.221,0.259,0.3 +2016-08-17 09:00:00,0.221,0.259,0.3 +2016-08-17 10:00:00,0.221,0.259,0.3 +2016-08-17 11:00:00,0.22,0.259,0.3 +2016-08-17 12:00:00,0.22,0.259,0.299 +2016-08-17 13:00:00,0.22,0.259,0.299 +2016-08-17 14:00:00,0.22,0.259,0.299 +2016-08-17 15:00:00,0.22,0.258,0.299 +2016-08-17 16:00:00,0.22,0.258,0.299 +2016-08-17 17:00:00,0.22,0.258,0.298 +2016-08-17 18:00:00,0.22,0.258,0.298 +2016-08-17 19:00:00,0.22,0.257,0.298 +2016-08-17 20:00:00,0.22,0.256,0.298 +2016-08-17 21:00:00,0.22,0.256,0.298 +2016-08-17 22:00:00,0.22,0.257,0.298 +2016-08-17 23:00:00,0.22,0.258,0.298 +2016-08-18 00:00:00,0.21899999999999997,0.259,0.298 +2016-08-18 01:00:00,0.21899999999999997,0.257,0.298 +2016-08-18 02:00:00,0.21899999999999997,0.257,0.298 +2016-08-18 03:00:00,0.218,0.258,0.298 +2016-08-18 04:00:00,0.218,0.258,0.298 +2016-08-18 05:00:00,0.218,0.258,0.298 +2016-08-18 06:00:00,0.218,0.258,0.298 +2016-08-18 07:00:00,0.218,0.258,0.298 +2016-08-18 08:00:00,0.217,0.258,0.298 +2016-08-18 09:00:00,0.217,0.258,0.298 +2016-08-18 10:00:00,0.217,0.258,0.298 +2016-08-18 11:00:00,0.21600000000000003,0.258,0.298 +2016-08-18 12:00:00,0.21600000000000003,0.258,0.298 +2016-08-18 13:00:00,0.21600000000000003,0.258,0.298 +2016-08-18 14:00:00,0.21600000000000003,0.257,0.298 +2016-08-18 15:00:00,0.21600000000000003,0.256,0.298 +2016-08-18 16:00:00,0.21600000000000003,0.256,0.297 +2016-08-18 17:00:00,0.21600000000000003,0.255,0.297 +2016-08-18 18:00:00,0.217,0.254,0.297 +2016-08-18 19:00:00,0.217,0.254,0.297 +2016-08-18 20:00:00,0.217,0.254,0.297 +2016-08-18 21:00:00,0.217,0.254,0.297 +2016-08-18 22:00:00,0.217,0.254,0.297 +2016-08-18 23:00:00,0.217,0.254,0.297 +2016-08-19 00:00:00,0.217,0.254,0.297 +2016-08-19 01:00:00,0.217,0.255,0.297 +2016-08-19 02:00:00,0.217,0.256,0.297 +2016-08-19 03:00:00,0.217,0.256,0.297 +2016-08-19 04:00:00,0.217,0.256,0.297 +2016-08-19 05:00:00,0.217,0.256,0.297 +2016-08-19 06:00:00,0.21600000000000003,0.256,0.297 +2016-08-19 07:00:00,0.21600000000000003,0.256,0.297 +2016-08-19 08:00:00,0.21600000000000003,0.256,0.297 +2016-08-19 09:00:00,0.21600000000000003,0.256,0.298 +2016-08-19 10:00:00,0.21600000000000003,0.256,0.298 +2016-08-19 11:00:00,0.21600000000000003,0.256,0.297 +2016-08-19 12:00:00,0.21600000000000003,0.256,0.297 +2016-08-19 13:00:00,0.21600000000000003,0.256,0.297 +2016-08-19 14:00:00,0.21600000000000003,0.256,0.297 +2016-08-19 15:00:00,0.21600000000000003,0.254,0.297 +2016-08-19 16:00:00,0.21600000000000003,0.254,0.297 +2016-08-19 17:00:00,0.217,0.253,0.29600000000000004 +2016-08-19 18:00:00,0.217,0.253,0.29600000000000004 +2016-08-19 19:00:00,0.217,0.253,0.29600000000000004 +2016-08-19 20:00:00,0.217,0.252,0.29600000000000004 +2016-08-19 21:00:00,0.217,0.252,0.29600000000000004 +2016-08-19 22:00:00,0.217,0.252,0.29600000000000004 +2016-08-19 23:00:00,0.217,0.253,0.29600000000000004 +2016-08-20 00:00:00,0.217,0.253,0.297 +2016-08-20 01:00:00,0.217,0.253,0.297 +2016-08-20 02:00:00,0.217,0.253,0.297 +2016-08-20 03:00:00,0.217,0.253,0.297 +2016-08-20 04:00:00,0.217,0.253,0.297 +2016-08-20 05:00:00,0.217,0.254,0.297 +2016-08-20 06:00:00,0.217,0.254,0.297 +2016-08-20 07:00:00,0.217,0.254,0.297 +2016-08-20 08:00:00,0.217,0.254,0.297 +2016-08-20 09:00:00,0.217,0.254,0.297 +2016-08-20 10:00:00,0.218,0.254,0.298 +2016-08-20 11:00:00,0.217,0.254,0.298 +2016-08-20 12:00:00,0.217,0.254,0.297 +2016-08-20 13:00:00,0.217,0.254,0.297 +2016-08-20 14:00:00,0.217,0.253,0.297 +2016-08-20 15:00:00,0.217,0.253,0.297 +2016-08-20 16:00:00,0.218,0.252,0.297 +2016-08-20 17:00:00,0.218,0.251,0.297 +2016-08-20 18:00:00,0.218,0.25,0.297 +2016-08-20 19:00:00,0.218,0.249,0.297 +2016-08-20 20:00:00,0.218,0.249,0.298 +2016-08-20 21:00:00,0.218,0.249,0.297 +2016-08-20 22:00:00,0.218,0.249,0.297 +2016-08-20 23:00:00,0.218,0.249,0.297 +2016-08-21 00:00:00,0.218,0.25,0.297 +2016-08-21 01:00:00,0.218,0.251,0.297 +2016-08-21 02:00:00,0.217,0.251,0.297 +2016-08-21 03:00:00,0.217,0.251,0.298 +2016-08-21 04:00:00,0.217,0.252,0.298 +2016-08-21 05:00:00,0.217,0.252,0.298 +2016-08-21 06:00:00,0.217,0.252,0.298 +2016-08-21 07:00:00,0.217,0.253,0.298 +2016-08-21 08:00:00,0.217,0.253,0.298 +2016-08-21 09:00:00,0.217,0.253,0.298 +2016-08-21 10:00:00,0.218,0.253,0.298 +2016-08-21 11:00:00,0.218,0.253,0.298 +2016-08-21 12:00:00,0.218,0.253,0.298 +2016-08-21 13:00:00,0.218,0.252,0.298 +2016-08-21 14:00:00,0.218,0.251,0.298 +2016-08-21 15:00:00,0.218,0.25,0.298 +2016-08-21 16:00:00,0.218,0.249,0.298 +2016-08-21 17:00:00,0.218,0.249,0.298 +2016-08-21 18:00:00,0.218,0.248,0.299 +2016-08-21 19:00:00,0.218,0.247,0.298 +2016-08-21 20:00:00,0.218,0.247,0.298 +2016-08-21 21:00:00,0.218,0.247,0.298 +2016-08-21 22:00:00,0.218,0.247,0.298 +2016-08-21 23:00:00,0.218,0.247,0.298 +2016-08-22 00:00:00,0.218,0.248,0.298 +2016-08-22 01:00:00,0.218,0.249,0.298 +2016-08-22 02:00:00,0.218,0.249,0.298 +2016-08-22 03:00:00,0.218,0.249,0.298 +2016-08-22 04:00:00,0.218,0.249,0.298 +2016-08-22 05:00:00,0.218,0.249,0.298 +2016-08-22 06:00:00,0.218,0.249,0.298 +2016-08-22 07:00:00,0.218,0.249,0.298 +2016-08-22 08:00:00,0.218,0.249,0.298 +2016-08-22 09:00:00,0.218,0.249,0.298 +2016-08-22 10:00:00,0.218,0.249,0.298 +2016-08-22 11:00:00,0.218,0.249,0.298 +2016-08-22 12:00:00,0.218,0.249,0.297 +2016-08-22 13:00:00,0.218,0.249,0.29600000000000004 +2016-08-22 14:00:00,0.217,0.249,0.29600000000000004 +2016-08-22 15:00:00,0.218,0.248,0.29600000000000004 +2016-08-22 16:00:00,0.218,0.247,0.29600000000000004 +2016-08-22 17:00:00,0.218,0.247,0.29600000000000004 +2016-08-22 18:00:00,0.218,0.24600000000000002,0.29600000000000004 +2016-08-22 19:00:00,0.218,0.24600000000000002,0.295 +2016-08-22 20:00:00,0.218,0.248,0.295 +2016-08-22 21:00:00,0.218,0.249,0.295 +2016-08-22 22:00:00,0.218,0.25,0.295 +2016-08-22 23:00:00,0.218,0.251,0.29600000000000004 +2016-08-23 00:00:00,0.218,0.252,0.29600000000000004 +2016-08-23 01:00:00,0.217,0.253,0.29600000000000004 +2016-08-23 02:00:00,0.217,0.253,0.29600000000000004 +2016-08-23 03:00:00,0.217,0.253,0.29600000000000004 +2016-08-23 04:00:00,0.217,0.254,0.29600000000000004 +2016-08-23 05:00:00,0.217,0.254,0.29600000000000004 +2016-08-23 06:00:00,0.21600000000000003,0.255,0.29600000000000004 +2016-08-23 07:00:00,0.21600000000000003,0.256,0.29600000000000004 +2016-08-23 08:00:00,0.21600000000000003,0.256,0.29600000000000004 +2016-08-23 09:00:00,0.21600000000000003,0.256,0.29600000000000004 +2016-08-23 10:00:00,0.21600000000000003,0.256,0.297 +2016-08-23 11:00:00,0.21600000000000003,0.256,0.29600000000000004 +2016-08-23 12:00:00,0.215,0.256,0.29600000000000004 +2016-08-23 13:00:00,0.215,0.256,0.29600000000000004 +2016-08-23 14:00:00,0.215,0.256,0.29600000000000004 +2016-08-23 15:00:00,0.215,0.256,0.29600000000000004 +2016-08-23 16:00:00,0.215,0.256,0.295 +2016-08-23 17:00:00,0.21600000000000003,0.256,0.295 +2016-08-23 18:00:00,0.21600000000000003,0.256,0.295 +2016-08-23 19:00:00,0.21600000000000003,0.256,0.295 +2016-08-23 20:00:00,0.21600000000000003,0.256,0.295 +2016-08-23 21:00:00,0.21600000000000003,0.256,0.295 +2016-08-23 22:00:00,0.21600000000000003,0.256,0.295 +2016-08-23 23:00:00,0.21600000000000003,0.257,0.295 +2016-08-24 00:00:00,0.21600000000000003,0.258,0.295 +2016-08-24 01:00:00,0.21600000000000003,0.258,0.295 +2016-08-24 02:00:00,0.21600000000000003,0.258,0.295 +2016-08-24 03:00:00,0.21600000000000003,0.259,0.295 +2016-08-24 04:00:00,0.215,0.259,0.295 +2016-08-24 05:00:00,0.215,0.259,0.295 +2016-08-24 06:00:00,0.215,0.259,0.295 +2016-08-24 07:00:00,0.215,0.259,0.295 +2016-08-24 08:00:00,0.214,0.259,0.295 +2016-08-24 09:00:00,0.214,0.259,0.295 +2016-08-24 10:00:00,0.214,0.259,0.29600000000000004 +2016-08-24 11:00:00,0.214,0.259,0.295 +2016-08-24 12:00:00,0.214,0.259,0.295 +2016-08-24 13:00:00,0.214,0.259,0.295 +2016-08-24 14:00:00,0.214,0.259,0.295 +2016-08-24 15:00:00,0.214,0.259,0.295 +2016-08-24 16:00:00,0.214,0.258,0.295 +2016-08-24 17:00:00,0.214,0.258,0.294 +2016-08-24 18:00:00,0.214,0.256,0.294 +2016-08-24 19:00:00,0.214,0.256,0.294 +2016-08-24 20:00:00,0.215,0.256,0.294 +2016-08-24 21:00:00,0.215,0.256,0.294 +2016-08-24 22:00:00,0.215,0.256,0.294 +2016-08-24 23:00:00,0.215,0.256,0.294 +2016-08-25 00:00:00,0.215,0.257,0.294 +2016-08-25 01:00:00,0.215,0.258,0.294 +2016-08-25 02:00:00,0.214,0.258,0.294 +2016-08-25 03:00:00,0.214,0.258,0.294 +2016-08-25 04:00:00,0.214,0.259,0.294 +2016-08-25 05:00:00,0.214,0.259,0.294 +2016-08-25 06:00:00,0.214,0.259,0.294 +2016-08-25 07:00:00,0.214,0.259,0.294 +2016-08-25 08:00:00,0.213,0.259,0.294 +2016-08-25 09:00:00,0.213,0.259,0.295 +2016-08-25 10:00:00,0.213,0.259,0.295 +2016-08-25 11:00:00,0.213,0.259,0.295 +2016-08-25 12:00:00,0.213,0.259,0.294 +2016-08-25 13:00:00,0.213,0.259,0.294 +2016-08-25 14:00:00,0.213,0.258,0.294 +2016-08-25 15:00:00,0.213,0.258,0.294 +2016-08-25 16:00:00,0.213,0.256,0.294 +2016-08-25 17:00:00,0.213,0.256,0.293 +2016-08-25 18:00:00,0.213,0.255,0.293 +2016-08-25 19:00:00,0.213,0.254,0.293 +2016-08-25 20:00:00,0.213,0.254,0.293 +2016-08-25 21:00:00,0.213,0.254,0.293 +2016-08-25 22:00:00,0.213,0.254,0.293 +2016-08-25 23:00:00,0.213,0.255,0.293 +2016-08-26 00:00:00,0.213,0.256,0.293 +2016-08-26 01:00:00,0.213,0.256,0.293 +2016-08-26 02:00:00,0.213,0.256,0.293 +2016-08-26 03:00:00,0.213,0.256,0.293 +2016-08-26 04:00:00,0.213,0.256,0.293 +2016-08-26 05:00:00,0.212,0.257,0.293 +2016-08-26 06:00:00,0.212,0.257,0.293 +2016-08-26 07:00:00,0.212,0.258,0.293 +2016-08-26 08:00:00,0.21100000000000002,0.258,0.293 +2016-08-26 09:00:00,0.21100000000000002,0.258,0.293 +2016-08-26 10:00:00,0.21100000000000002,0.258,0.294 +2016-08-26 11:00:00,0.21100000000000002,0.258,0.294 +2016-08-26 12:00:00,0.21100000000000002,0.258,0.293 +2016-08-26 13:00:00,0.21100000000000002,0.258,0.293 +2016-08-26 14:00:00,0.21100000000000002,0.258,0.293 +2016-08-26 15:00:00,0.21100000000000002,0.256,0.293 +2016-08-26 16:00:00,0.21100000000000002,0.256,0.292 +2016-08-26 17:00:00,0.21100000000000002,0.255,0.292 +2016-08-26 18:00:00,0.212,0.254,0.292 +2016-08-26 19:00:00,0.212,0.254,0.292 +2016-08-26 20:00:00,0.212,0.254,0.292 +2016-08-26 21:00:00,0.212,0.254,0.292 +2016-08-26 22:00:00,0.212,0.254,0.292 +2016-08-26 23:00:00,0.212,0.254,0.292 +2016-08-27 00:00:00,0.213,0.254,0.292 +2016-08-27 01:00:00,0.213,0.255,0.292 +2016-08-27 02:00:00,0.212,0.256,0.292 +2016-08-27 03:00:00,0.212,0.256,0.292 +2016-08-27 04:00:00,0.212,0.256,0.292 +2016-08-27 05:00:00,0.212,0.256,0.292 +2016-08-27 06:00:00,0.212,0.256,0.292 +2016-08-27 07:00:00,0.212,0.256,0.292 +2016-08-27 08:00:00,0.212,0.256,0.292 +2016-08-27 09:00:00,0.212,0.256,0.293 +2016-08-27 10:00:00,0.212,0.256,0.293 +2016-08-27 11:00:00,0.21100000000000002,0.256,0.293 +2016-08-27 12:00:00,0.21100000000000002,0.256,0.293 +2016-08-27 13:00:00,0.21100000000000002,0.256,0.292 +2016-08-27 14:00:00,0.21100000000000002,0.256,0.292 +2016-08-27 15:00:00,0.21100000000000002,0.255,0.292 +2016-08-27 16:00:00,0.21100000000000002,0.254,0.292 +2016-08-27 17:00:00,0.21100000000000002,0.253,0.29100000000000004 +2016-08-27 18:00:00,0.21100000000000002,0.253,0.29100000000000004 +2016-08-27 19:00:00,0.21100000000000002,0.253,0.29100000000000004 +2016-08-27 20:00:00,0.212,0.253,0.29100000000000004 +2016-08-27 21:00:00,0.212,0.253,0.29100000000000004 +2016-08-27 22:00:00,0.212,0.253,0.29100000000000004 +2016-08-27 23:00:00,0.212,0.253,0.29100000000000004 +2016-08-28 00:00:00,0.213,0.253,0.29100000000000004 +2016-08-28 01:00:00,0.212,0.253,0.29100000000000004 +2016-08-28 02:00:00,0.212,0.254,0.29100000000000004 +2016-08-28 03:00:00,0.212,0.254,0.29100000000000004 +2016-08-28 04:00:00,0.212,0.254,0.292 +2016-08-28 05:00:00,0.212,0.254,0.292 +2016-08-28 06:00:00,0.21100000000000002,0.254,0.292 +2016-08-28 07:00:00,0.21100000000000002,0.255,0.292 +2016-08-28 08:00:00,0.21100000000000002,0.255,0.292 +2016-08-28 09:00:00,0.21100000000000002,0.255,0.292 +2016-08-28 10:00:00,0.21100000000000002,0.256,0.292 +2016-08-28 11:00:00,0.21100000000000002,0.256,0.292 +2016-08-28 12:00:00,0.21100000000000002,0.256,0.292 +2016-08-28 13:00:00,0.21,0.256,0.29100000000000004 +2016-08-28 14:00:00,0.21,0.254,0.29100000000000004 +2016-08-28 15:00:00,0.21,0.253,0.29100000000000004 +2016-08-28 16:00:00,0.268,0.253,0.3 +2016-08-28 17:00:00,0.266,0.253,0.304 +2016-08-28 18:00:00,0.262,0.253,0.303 +2016-08-28 19:00:00,0.26,0.252,0.303 +2016-08-28 20:00:00,0.258,0.252,0.303 +2016-08-28 21:00:00,0.257,0.252,0.303 +2016-08-28 22:00:00,0.256,0.252,0.303 +2016-08-28 23:00:00,0.255,0.253,0.302 +2016-08-29 00:00:00,0.254,0.253,0.302 +2016-08-29 01:00:00,0.253,0.253,0.302 +2016-08-29 02:00:00,0.252,0.253,0.302 +2016-08-29 03:00:00,0.252,0.253,0.302 +2016-08-29 04:00:00,0.251,0.253,0.302 +2016-08-29 05:00:00,0.251,0.253,0.302 +2016-08-29 06:00:00,0.25,0.254,0.302 +2016-08-29 07:00:00,0.25,0.254,0.302 +2016-08-29 08:00:00,0.249,0.254,0.302 +2016-08-29 09:00:00,0.248,0.254,0.302 +2016-08-29 10:00:00,0.247,0.254,0.302 +2016-08-29 11:00:00,0.248,0.254,0.302 +2016-08-29 12:00:00,0.248,0.254,0.302 +2016-08-29 13:00:00,0.247,0.254,0.301 +2016-08-29 14:00:00,0.247,0.254,0.301 +2016-08-29 15:00:00,0.24600000000000002,0.254,0.3 +2016-08-29 16:00:00,0.24600000000000002,0.253,0.3 +2016-08-29 17:00:00,0.245,0.253,0.3 +2016-08-29 18:00:00,0.245,0.253,0.3 +2016-08-29 19:00:00,0.244,0.253,0.3 +2016-08-29 20:00:00,0.244,0.253,0.3 +2016-08-29 21:00:00,0.244,0.253,0.299 +2016-08-29 22:00:00,0.244,0.253,0.3 +2016-08-29 23:00:00,0.244,0.253,0.299 +2016-08-30 00:00:00,0.243,0.253,0.299 +2016-08-30 01:00:00,0.243,0.254,0.299 +2016-08-30 02:00:00,0.243,0.254,0.299 +2016-08-30 03:00:00,0.243,0.254,0.299 +2016-08-30 04:00:00,0.242,0.254,0.299 +2016-08-30 05:00:00,0.242,0.254,0.299 +2016-08-30 06:00:00,0.242,0.254,0.299 +2016-08-30 07:00:00,0.242,0.254,0.299 +2016-08-30 08:00:00,0.24100000000000002,0.254,0.299 +2016-08-30 09:00:00,0.24100000000000002,0.254,0.299 +2016-08-30 10:00:00,0.24100000000000002,0.254,0.299 +2016-08-30 11:00:00,0.24100000000000002,0.253,0.299 +2016-08-30 12:00:00,0.24,0.253,0.299 +2016-08-30 13:00:00,0.24,0.253,0.298 +2016-08-30 14:00:00,0.239,0.253,0.298 +2016-08-30 15:00:00,0.23800000000000002,0.253,0.298 +2016-08-30 16:00:00,0.23800000000000002,0.253,0.298 +2016-08-30 17:00:00,0.237,0.253,0.298 +2016-08-30 18:00:00,0.237,0.253,0.298 +2016-08-30 19:00:00,0.237,0.253,0.298 +2016-08-30 20:00:00,0.23600000000000002,0.253,0.298 +2016-08-30 21:00:00,0.23600000000000002,0.253,0.297 +2016-08-30 22:00:00,0.23600000000000002,0.253,0.297 +2016-08-30 23:00:00,0.23600000000000002,0.253,0.297 +2016-08-31 00:00:00,0.23600000000000002,0.253,0.297 +2016-08-31 01:00:00,0.23600000000000002,0.253,0.297 +2016-08-31 02:00:00,0.23600000000000002,0.253,0.297 +2016-08-31 03:00:00,0.235,0.254,0.297 +2016-08-31 04:00:00,0.235,0.254,0.297 +2016-08-31 05:00:00,0.235,0.254,0.297 +2016-08-31 06:00:00,0.235,0.254,0.297 +2016-08-31 07:00:00,0.23399999999999999,0.254,0.297 +2016-08-31 08:00:00,0.23399999999999999,0.254,0.297 +2016-08-31 09:00:00,0.23399999999999999,0.254,0.298 +2016-08-31 10:00:00,0.233,0.254,0.298 +2016-08-31 11:00:00,0.233,0.254,0.298 +2016-08-31 12:00:00,0.23199999999999998,0.254,0.297 +2016-08-31 13:00:00,0.23199999999999998,0.254,0.297 +2016-08-31 14:00:00,0.231,0.254,0.297 +2016-08-31 15:00:00,0.231,0.253,0.297 +2016-08-31 16:00:00,0.231,0.253,0.297 +2016-08-31 17:00:00,0.231,0.253,0.29600000000000004 +2016-08-31 18:00:00,0.231,0.253,0.29600000000000004 +2016-08-31 19:00:00,0.231,0.252,0.29600000000000004 +2016-08-31 20:00:00,0.231,0.252,0.29600000000000004 +2016-08-31 21:00:00,0.231,0.252,0.29600000000000004 +2016-08-31 22:00:00,0.231,0.252,0.29600000000000004 +2016-08-31 23:00:00,0.231,0.253,0.297 +2016-09-01 00:00:00,0.231,0.253,0.297 +2016-09-01 01:00:00,0.231,0.253,0.297 +2016-09-01 02:00:00,0.231,0.253,0.297 +2016-09-01 03:00:00,0.231,0.253,0.297 +2016-09-01 04:00:00,0.231,0.253,0.297 +2016-09-01 05:00:00,0.231,0.253,0.297 +2016-09-01 06:00:00,0.231,0.253,0.297 +2016-09-01 07:00:00,0.231,0.254,0.297 +2016-09-01 08:00:00,0.23,0.254,0.297 +2016-09-01 09:00:00,0.23,0.253,0.297 +2016-09-01 10:00:00,0.23,0.253,0.297 +2016-09-01 11:00:00,0.23,0.253,0.297 +2016-09-01 12:00:00,0.23,0.253,0.297 +2016-09-01 13:00:00,0.22899999999999998,0.253,0.29600000000000004 +2016-09-01 14:00:00,0.228,0.253,0.29600000000000004 +2016-09-01 15:00:00,0.228,0.253,0.29600000000000004 +2016-09-01 16:00:00,0.22699999999999998,0.252,0.29600000000000004 +2016-09-01 17:00:00,0.22699999999999998,0.251,0.29600000000000004 +2016-09-01 18:00:00,0.22699999999999998,0.251,0.29600000000000004 +2016-09-01 19:00:00,0.22699999999999998,0.251,0.29600000000000004 +2016-09-01 20:00:00,0.22699999999999998,0.251,0.29600000000000004 +2016-09-01 21:00:00,0.22699999999999998,0.251,0.295 +2016-09-01 22:00:00,0.22699999999999998,0.251,0.295 +2016-09-01 23:00:00,0.22699999999999998,0.253,0.29600000000000004 +2016-09-02 00:00:00,0.22699999999999998,0.253,0.29600000000000004 +2016-09-02 01:00:00,0.22699999999999998,0.253,0.29600000000000004 +2016-09-02 02:00:00,0.22699999999999998,0.253,0.29600000000000004 +2016-09-02 03:00:00,0.226,0.253,0.29600000000000004 +2016-09-02 04:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 05:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 06:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 07:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 08:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 09:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 10:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 11:00:00,0.226,0.254,0.29600000000000004 +2016-09-02 12:00:00,0.225,0.254,0.29600000000000004 +2016-09-02 13:00:00,0.225,0.253,0.29600000000000004 +2016-09-02 14:00:00,0.22399999999999998,0.253,0.295 +2016-09-02 15:00:00,0.22399999999999998,0.253,0.295 +2016-09-02 16:00:00,0.22399999999999998,0.252,0.295 +2016-09-02 17:00:00,0.223,0.251,0.295 +2016-09-02 18:00:00,0.223,0.251,0.295 +2016-09-02 19:00:00,0.223,0.251,0.295 +2016-09-02 20:00:00,0.223,0.251,0.295 +2016-09-02 21:00:00,0.223,0.251,0.295 +2016-09-02 22:00:00,0.223,0.251,0.295 +2016-09-02 23:00:00,0.223,0.253,0.295 +2016-09-03 00:00:00,0.223,0.253,0.295 +2016-09-03 01:00:00,0.223,0.253,0.295 +2016-09-03 02:00:00,0.223,0.253,0.295 +2016-09-03 03:00:00,0.223,0.253,0.295 +2016-09-03 04:00:00,0.223,0.253,0.295 +2016-09-03 05:00:00,0.223,0.253,0.295 +2016-09-03 06:00:00,0.223,0.253,0.295 +2016-09-03 07:00:00,0.223,0.253,0.295 +2016-09-03 08:00:00,0.223,0.254,0.295 +2016-09-03 09:00:00,0.223,0.254,0.295 +2016-09-03 10:00:00,0.223,0.254,0.295 +2016-09-03 11:00:00,0.222,0.254,0.295 +2016-09-03 12:00:00,0.222,0.254,0.295 +2016-09-03 13:00:00,0.222,0.254,0.295 +2016-09-03 14:00:00,0.221,0.254,0.295 +2016-09-03 15:00:00,0.221,0.253,0.295 +2016-09-03 16:00:00,0.221,0.253,0.295 +2016-09-03 17:00:00,0.221,0.253,0.294 +2016-09-03 18:00:00,0.221,0.253,0.294 +2016-09-03 19:00:00,0.221,0.252,0.294 +2016-09-03 20:00:00,0.221,0.252,0.294 +2016-09-03 21:00:00,0.221,0.252,0.294 +2016-09-03 22:00:00,0.221,0.252,0.294 +2016-09-03 23:00:00,0.221,0.253,0.294 +2016-09-04 00:00:00,0.221,0.253,0.294 +2016-09-04 01:00:00,0.221,0.253,0.294 +2016-09-04 02:00:00,0.221,0.253,0.294 +2016-09-04 03:00:00,0.221,0.253,0.294 +2016-09-04 04:00:00,0.221,0.253,0.294 +2016-09-04 05:00:00,0.221,0.254,0.294 +2016-09-04 06:00:00,0.22,0.254,0.294 +2016-09-04 07:00:00,0.22,0.254,0.294 +2016-09-04 08:00:00,0.221,0.254,0.295 +2016-09-04 09:00:00,0.221,0.254,0.295 +2016-09-04 10:00:00,0.221,0.254,0.295 +2016-09-04 11:00:00,0.221,0.254,0.29600000000000004 +2016-09-04 12:00:00,0.221,0.254,0.29600000000000004 +2016-09-04 13:00:00,0.221,0.253,0.29600000000000004 +2016-09-04 14:00:00,0.221,0.253,0.295 +2016-09-04 15:00:00,0.221,0.253,0.295 +2016-09-04 16:00:00,0.221,0.253,0.295 +2016-09-04 17:00:00,0.221,0.252,0.29600000000000004 +2016-09-04 18:00:00,0.222,0.251,0.297 +2016-09-04 19:00:00,0.222,0.251,0.29600000000000004 +2016-09-04 20:00:00,0.222,0.251,0.29600000000000004 +2016-09-04 21:00:00,0.222,0.251,0.29600000000000004 +2016-09-04 22:00:00,0.222,0.251,0.29600000000000004 +2016-09-04 23:00:00,0.222,0.252,0.29600000000000004 +2016-09-05 00:00:00,0.222,0.253,0.29600000000000004 +2016-09-05 01:00:00,0.222,0.253,0.29600000000000004 +2016-09-05 02:00:00,0.222,0.253,0.29600000000000004 +2016-09-05 03:00:00,0.222,0.253,0.29600000000000004 +2016-09-05 04:00:00,0.222,0.253,0.29600000000000004 +2016-09-05 05:00:00,0.222,0.253,0.29600000000000004 +2016-09-05 06:00:00,0.222,0.253,0.29600000000000004 +2016-09-05 07:00:00,0.222,0.253,0.297 +2016-09-05 08:00:00,0.221,0.253,0.298 +2016-09-05 09:00:00,0.221,0.253,0.298 +2016-09-05 10:00:00,0.222,0.253,0.298 +2016-09-05 11:00:00,0.222,0.253,0.298 +2016-09-05 12:00:00,0.222,0.253,0.298 +2016-09-05 13:00:00,0.222,0.253,0.297 +2016-09-05 14:00:00,0.222,0.253,0.297 +2016-09-05 15:00:00,0.223,0.253,0.297 +2016-09-05 16:00:00,0.223,0.251,0.29600000000000004 +2016-09-05 17:00:00,0.222,0.251,0.29600000000000004 +2016-09-05 18:00:00,0.223,0.251,0.29600000000000004 +2016-09-05 19:00:00,0.223,0.25,0.29600000000000004 +2016-09-05 20:00:00,0.223,0.25,0.29600000000000004 +2016-09-05 21:00:00,0.223,0.251,0.29600000000000004 +2016-09-05 22:00:00,0.223,0.251,0.29600000000000004 +2016-09-05 23:00:00,0.223,0.251,0.29600000000000004 +2016-09-06 00:00:00,0.223,0.251,0.29600000000000004 +2016-09-06 01:00:00,0.223,0.252,0.29600000000000004 +2016-09-06 02:00:00,0.223,0.252,0.29600000000000004 +2016-09-06 03:00:00,0.223,0.253,0.29600000000000004 +2016-09-06 04:00:00,0.223,0.253,0.29600000000000004 +2016-09-06 05:00:00,0.223,0.253,0.29600000000000004 +2016-09-06 06:00:00,0.223,0.253,0.29600000000000004 +2016-09-06 07:00:00,0.222,0.253,0.29600000000000004 +2016-09-06 08:00:00,0.222,0.253,0.29600000000000004 +2016-09-06 09:00:00,0.222,0.253,0.29600000000000004 +2016-09-06 10:00:00,0.222,0.253,0.29600000000000004 +2016-09-06 11:00:00,0.223,0.253,0.29600000000000004 +2016-09-06 12:00:00,0.222,0.253,0.29600000000000004 +2016-09-06 13:00:00,0.222,0.253,0.295 +2016-09-06 14:00:00,0.222,0.252,0.295 +2016-09-06 15:00:00,0.222,0.251,0.295 +2016-09-06 16:00:00,0.222,0.25,0.295 +2016-09-06 17:00:00,0.222,0.249,0.295 +2016-09-06 18:00:00,0.222,0.249,0.295 +2016-09-06 19:00:00,0.222,0.249,0.295 +2016-09-06 20:00:00,0.222,0.249,0.295 +2016-09-06 21:00:00,0.222,0.249,0.295 +2016-09-06 22:00:00,0.222,0.249,0.295 +2016-09-06 23:00:00,0.222,0.249,0.295 +2016-09-07 00:00:00,0.222,0.25,0.295 +2016-09-07 01:00:00,0.222,0.251,0.295 +2016-09-07 02:00:00,0.222,0.251,0.295 +2016-09-07 03:00:00,0.222,0.251,0.295 +2016-09-07 04:00:00,0.222,0.251,0.295 +2016-09-07 05:00:00,0.221,0.251,0.295 +2016-09-07 06:00:00,0.221,0.251,0.295 +2016-09-07 07:00:00,0.221,0.251,0.295 +2016-09-07 08:00:00,0.22,0.251,0.295 +2016-09-07 09:00:00,0.22,0.251,0.295 +2016-09-07 10:00:00,0.22,0.251,0.295 +2016-09-07 11:00:00,0.22,0.251,0.295 +2016-09-07 12:00:00,0.22,0.251,0.295 +2016-09-07 13:00:00,0.21899999999999997,0.251,0.295 +2016-09-07 14:00:00,0.21899999999999997,0.251,0.294 +2016-09-07 15:00:00,0.21899999999999997,0.25,0.294 +2016-09-07 16:00:00,0.22,0.249,0.294 +2016-09-07 17:00:00,0.22,0.249,0.294 +2016-09-07 18:00:00,0.22,0.249,0.294 +2016-09-07 19:00:00,0.22,0.249,0.293 +2016-09-07 20:00:00,0.22,0.248,0.294 +2016-09-07 21:00:00,0.221,0.249,0.294 +2016-09-07 22:00:00,0.221,0.249,0.294 +2016-09-07 23:00:00,0.221,0.249,0.294 +2016-09-08 00:00:00,0.221,0.249,0.294 +2016-09-08 01:00:00,0.22,0.249,0.294 +2016-09-08 02:00:00,0.22,0.249,0.294 +2016-09-08 03:00:00,0.22,0.249,0.294 +2016-09-08 04:00:00,0.22,0.25,0.294 +2016-09-08 05:00:00,0.22,0.25,0.294 +2016-09-08 06:00:00,0.22,0.25,0.294 +2016-09-08 07:00:00,0.21899999999999997,0.25,0.294 +2016-09-08 08:00:00,0.21899999999999997,0.251,0.294 +2016-09-08 09:00:00,0.21899999999999997,0.25,0.294 +2016-09-08 10:00:00,0.21899999999999997,0.25,0.295 +2016-09-08 11:00:00,0.21899999999999997,0.25,0.294 +2016-09-08 12:00:00,0.21899999999999997,0.25,0.294 +2016-09-08 13:00:00,0.21899999999999997,0.25,0.294 +2016-09-08 14:00:00,0.21899999999999997,0.249,0.294 +2016-09-08 15:00:00,0.21899999999999997,0.249,0.294 +2016-09-08 16:00:00,0.21899999999999997,0.249,0.294 +2016-09-08 17:00:00,0.22,0.248,0.293 +2016-09-08 18:00:00,0.22,0.247,0.293 +2016-09-08 19:00:00,0.22,0.247,0.293 +2016-09-08 20:00:00,0.22,0.247,0.293 +2016-09-08 21:00:00,0.221,0.247,0.293 +2016-09-08 22:00:00,0.221,0.247,0.293 +2016-09-08 23:00:00,0.221,0.247,0.293 +2016-09-09 00:00:00,0.221,0.248,0.294 +2016-09-09 01:00:00,0.22,0.248,0.293 +2016-09-09 02:00:00,0.22,0.249,0.294 +2016-09-09 03:00:00,0.22,0.249,0.294 +2016-09-09 04:00:00,0.22,0.249,0.294 +2016-09-09 05:00:00,0.22,0.249,0.294 +2016-09-09 06:00:00,0.22,0.249,0.294 +2016-09-09 07:00:00,0.22,0.249,0.294 +2016-09-09 08:00:00,0.22,0.249,0.294 +2016-09-09 09:00:00,0.22,0.249,0.294 +2016-09-09 10:00:00,0.22,0.249,0.294 +2016-09-09 11:00:00,0.22,0.249,0.294 +2016-09-09 12:00:00,0.22,0.249,0.294 +2016-09-09 13:00:00,0.22,0.249,0.294 +2016-09-09 14:00:00,0.22,0.249,0.294 +2016-09-09 15:00:00,0.22,0.248,0.293 +2016-09-09 16:00:00,0.22,0.247,0.293 +2016-09-09 17:00:00,0.22,0.247,0.293 +2016-09-09 18:00:00,0.22,0.247,0.293 +2016-09-09 19:00:00,0.22,0.24600000000000002,0.293 +2016-09-09 20:00:00,0.22,0.24600000000000002,0.293 +2016-09-09 21:00:00,0.221,0.247,0.293 +2016-09-09 22:00:00,0.221,0.247,0.293 +2016-09-09 23:00:00,0.22,0.247,0.293 +2016-09-10 00:00:00,0.22,0.247,0.293 +2016-09-10 01:00:00,0.22,0.247,0.293 +2016-09-10 02:00:00,0.22,0.247,0.293 +2016-09-10 03:00:00,0.22,0.247,0.293 +2016-09-10 04:00:00,0.22,0.247,0.293 +2016-09-10 05:00:00,0.22,0.248,0.293 +2016-09-10 06:00:00,0.22,0.248,0.293 +2016-09-10 07:00:00,0.21899999999999997,0.248,0.293 +2016-09-10 08:00:00,0.21899999999999997,0.248,0.293 +2016-09-10 09:00:00,0.21899999999999997,0.249,0.294 +2016-09-10 10:00:00,0.21899999999999997,0.249,0.294 +2016-09-10 11:00:00,0.218,0.249,0.293 +2016-09-10 12:00:00,0.218,0.249,0.293 +2016-09-10 13:00:00,0.218,0.249,0.293 +2016-09-10 14:00:00,0.218,0.248,0.293 +2016-09-10 15:00:00,0.218,0.248,0.293 +2016-09-10 16:00:00,0.218,0.247,0.293 +2016-09-10 17:00:00,0.21899999999999997,0.247,0.293 +2016-09-10 18:00:00,0.21899999999999997,0.247,0.293 +2016-09-10 19:00:00,0.21899999999999997,0.247,0.293 +2016-09-10 20:00:00,0.21899999999999997,0.247,0.293 +2016-09-10 21:00:00,0.21899999999999997,0.247,0.293 +2016-09-10 22:00:00,0.21899999999999997,0.247,0.293 +2016-09-10 23:00:00,0.21899999999999997,0.247,0.293 +2016-09-11 00:00:00,0.21899999999999997,0.247,0.293 +2016-09-11 01:00:00,0.21899999999999997,0.247,0.293 +2016-09-11 02:00:00,0.21899999999999997,0.247,0.293 +2016-09-11 03:00:00,0.21899999999999997,0.247,0.293 +2016-09-11 04:00:00,0.21899999999999997,0.247,0.293 +2016-09-11 05:00:00,0.218,0.247,0.293 +2016-09-11 06:00:00,0.218,0.248,0.293 +2016-09-11 07:00:00,0.218,0.248,0.293 +2016-09-11 08:00:00,0.218,0.248,0.293 +2016-09-11 09:00:00,0.217,0.248,0.293 +2016-09-11 10:00:00,0.217,0.248,0.293 +2016-09-11 11:00:00,0.217,0.247,0.293 +2016-09-11 12:00:00,0.217,0.247,0.293 +2016-09-11 13:00:00,0.217,0.247,0.293 +2016-09-11 14:00:00,0.217,0.247,0.292 +2016-09-11 15:00:00,0.21600000000000003,0.247,0.292 +2016-09-11 16:00:00,0.217,0.247,0.292 +2016-09-11 17:00:00,0.217,0.247,0.292 +2016-09-11 18:00:00,0.217,0.247,0.292 +2016-09-11 19:00:00,0.217,0.247,0.292 +2016-09-11 20:00:00,0.217,0.247,0.292 +2016-09-11 21:00:00,0.217,0.247,0.292 +2016-09-11 22:00:00,0.217,0.24600000000000002,0.292 +2016-09-11 23:00:00,0.217,0.24600000000000002,0.292 +2016-09-12 00:00:00,0.21600000000000003,0.24600000000000002,0.292 +2016-09-12 01:00:00,0.21600000000000003,0.24600000000000002,0.292 +2016-09-12 02:00:00,0.21600000000000003,0.24600000000000002,0.292 +2016-09-12 03:00:00,0.21600000000000003,0.24600000000000002,0.292 +2016-09-12 04:00:00,0.21600000000000003,0.247,0.292 +2016-09-12 05:00:00,0.21600000000000003,0.247,0.292 +2016-09-12 06:00:00,0.215,0.248,0.292 +2016-09-12 07:00:00,0.215,0.248,0.292 +2016-09-12 08:00:00,0.215,0.249,0.292 +2016-09-12 09:00:00,0.215,0.249,0.292 +2016-09-12 10:00:00,0.215,0.249,0.292 +2016-09-12 11:00:00,0.215,0.249,0.292 +2016-09-12 12:00:00,0.215,0.249,0.292 +2016-09-12 13:00:00,0.214,0.249,0.292 +2016-09-12 14:00:00,0.215,0.249,0.292 +2016-09-12 15:00:00,0.215,0.251,0.292 +2016-09-12 16:00:00,0.215,0.251,0.292 +2016-09-12 17:00:00,0.215,0.251,0.292 +2016-09-12 18:00:00,0.215,0.252,0.292 +2016-09-12 19:00:00,0.215,0.253,0.292 +2016-09-12 20:00:00,0.21600000000000003,0.253,0.292 +2016-09-12 21:00:00,0.21600000000000003,0.253,0.292 +2016-09-12 22:00:00,0.21600000000000003,0.253,0.292 +2016-09-12 23:00:00,0.21600000000000003,0.253,0.292 +2016-09-13 00:00:00,0.215,0.253,0.292 +2016-09-13 01:00:00,0.215,0.253,0.292 +2016-09-13 02:00:00,0.215,0.253,0.292 +2016-09-13 03:00:00,0.215,0.253,0.292 +2016-09-13 04:00:00,0.215,0.254,0.292 +2016-09-13 05:00:00,0.215,0.254,0.292 +2016-09-13 06:00:00,0.215,0.254,0.292 +2016-09-13 07:00:00,0.214,0.254,0.292 +2016-09-13 08:00:00,0.214,0.254,0.292 +2016-09-13 09:00:00,0.214,0.254,0.292 +2016-09-13 10:00:00,0.214,0.254,0.292 +2016-09-13 11:00:00,0.214,0.254,0.292 +2016-09-13 12:00:00,0.214,0.254,0.292 +2016-09-13 13:00:00,0.214,0.254,0.292 +2016-09-13 14:00:00,0.214,0.254,0.292 +2016-09-13 15:00:00,0.214,0.254,0.292 +2016-09-13 16:00:00,0.214,0.254,0.29100000000000004 +2016-09-13 17:00:00,0.214,0.254,0.29100000000000004 +2016-09-13 18:00:00,0.214,0.254,0.29100000000000004 +2016-09-13 19:00:00,0.214,0.254,0.29100000000000004 +2016-09-13 20:00:00,0.214,0.254,0.29100000000000004 +2016-09-13 21:00:00,0.214,0.254,0.29100000000000004 +2016-09-13 22:00:00,0.214,0.255,0.29100000000000004 +2016-09-13 23:00:00,0.214,0.255,0.29100000000000004 +2016-09-14 00:00:00,0.214,0.255,0.29100000000000004 +2016-09-14 01:00:00,0.214,0.255,0.29100000000000004 +2016-09-14 02:00:00,0.214,0.255,0.29100000000000004 +2016-09-14 03:00:00,0.214,0.255,0.29100000000000004 +2016-09-14 04:00:00,0.213,0.255,0.29100000000000004 +2016-09-14 05:00:00,0.213,0.255,0.29100000000000004 +2016-09-14 06:00:00,0.213,0.255,0.29100000000000004 +2016-09-14 07:00:00,0.213,0.256,0.29100000000000004 +2016-09-14 08:00:00,0.213,0.256,0.29100000000000004 +2016-09-14 09:00:00,0.213,0.256,0.29100000000000004 +2016-09-14 10:00:00,0.213,0.256,0.292 +2016-09-14 11:00:00,0.213,0.256,0.29100000000000004 +2016-09-14 12:00:00,0.213,0.256,0.29100000000000004 +2016-09-14 13:00:00,0.212,0.256,0.29100000000000004 +2016-09-14 14:00:00,0.213,0.256,0.29100000000000004 +2016-09-14 15:00:00,0.212,0.256,0.29100000000000004 +2016-09-14 16:00:00,0.212,0.256,0.29100000000000004 +2016-09-14 17:00:00,0.213,0.256,0.29 +2016-09-14 18:00:00,0.213,0.256,0.29 +2016-09-14 19:00:00,0.213,0.255,0.29 +2016-09-14 20:00:00,0.213,0.255,0.29 +2016-09-14 21:00:00,0.213,0.255,0.29 +2016-09-14 22:00:00,0.213,0.256,0.29 +2016-09-14 23:00:00,0.213,0.256,0.29 +2016-09-15 00:00:00,0.213,0.256,0.29 +2016-09-15 01:00:00,0.212,0.256,0.29 +2016-09-15 02:00:00,0.212,0.256,0.29 +2016-09-15 03:00:00,0.212,0.256,0.29 +2016-09-15 04:00:00,0.212,0.256,0.29100000000000004 +2016-09-15 05:00:00,0.212,0.256,0.29100000000000004 +2016-09-15 06:00:00,0.212,0.256,0.29100000000000004 +2016-09-15 07:00:00,0.212,0.256,0.29100000000000004 +2016-09-15 08:00:00,0.21100000000000002,0.256,0.29100000000000004 +2016-09-15 09:00:00,0.21100000000000002,0.256,0.29100000000000004 +2016-09-15 10:00:00,0.21100000000000002,0.256,0.29100000000000004 +2016-09-15 11:00:00,0.21100000000000002,0.256,0.29100000000000004 +2016-09-15 12:00:00,0.21100000000000002,0.256,0.29 +2016-09-15 13:00:00,0.21100000000000002,0.256,0.29 +2016-09-15 14:00:00,0.21100000000000002,0.256,0.29 +2016-09-15 15:00:00,0.21100000000000002,0.256,0.29 +2016-09-15 16:00:00,0.21100000000000002,0.256,0.29 +2016-09-15 17:00:00,0.21100000000000002,0.255,0.29 +2016-09-15 18:00:00,0.21100000000000002,0.255,0.29 +2016-09-15 19:00:00,0.21100000000000002,0.254,0.29 +2016-09-15 20:00:00,0.21100000000000002,0.254,0.29 +2016-09-15 21:00:00,0.212,0.254,0.29 +2016-09-15 22:00:00,0.212,0.255,0.29 +2016-09-15 23:00:00,0.212,0.255,0.29 +2016-09-16 00:00:00,0.212,0.255,0.29 +2016-09-16 01:00:00,0.212,0.256,0.29 +2016-09-16 02:00:00,0.212,0.256,0.29 +2016-09-16 03:00:00,0.212,0.256,0.29 +2016-09-16 04:00:00,0.212,0.256,0.29 +2016-09-16 05:00:00,0.21100000000000002,0.256,0.29 +2016-09-16 06:00:00,0.21100000000000002,0.256,0.29 +2016-09-16 07:00:00,0.21100000000000002,0.256,0.29 +2016-09-16 08:00:00,0.21100000000000002,0.256,0.29 +2016-09-16 09:00:00,0.21100000000000002,0.256,0.29 +2016-09-16 10:00:00,0.21100000000000002,0.256,0.29 +2016-09-16 11:00:00,0.21100000000000002,0.256,0.29 +2016-09-16 12:00:00,0.21100000000000002,0.255,0.29 +2016-09-16 13:00:00,0.21100000000000002,0.255,0.29 +2016-09-16 14:00:00,0.21100000000000002,0.255,0.29 +2016-09-16 15:00:00,0.21100000000000002,0.255,0.29 +2016-09-16 16:00:00,0.21100000000000002,0.255,0.29 +2016-09-16 17:00:00,0.21100000000000002,0.254,0.29 +2016-09-16 18:00:00,0.21100000000000002,0.254,0.29 +2016-09-16 19:00:00,0.21100000000000002,0.254,0.29 +2016-09-16 20:00:00,0.21100000000000002,0.254,0.29 +2016-09-16 21:00:00,0.21100000000000002,0.254,0.29 +2016-09-16 22:00:00,0.21100000000000002,0.254,0.29 +2016-09-16 23:00:00,0.21100000000000002,0.254,0.29 +2016-09-17 00:00:00,0.21100000000000002,0.254,0.29 +2016-09-17 01:00:00,0.21100000000000002,0.254,0.29 +2016-09-17 02:00:00,0.21100000000000002,0.254,0.29 +2016-09-17 03:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 04:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 05:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 06:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 07:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 08:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 09:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 10:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 11:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 12:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 13:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 14:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 15:00:00,0.21100000000000002,0.255,0.29 +2016-09-17 16:00:00,0.21100000000000002,0.254,0.29 +2016-09-17 17:00:00,0.21100000000000002,0.254,0.29 +2016-09-17 18:00:00,0.21100000000000002,0.254,0.29 +2016-09-17 19:00:00,0.212,0.254,0.293 +2016-09-17 20:00:00,0.212,0.254,0.295 +2016-09-17 21:00:00,0.21100000000000002,0.254,0.295 +2016-09-17 22:00:00,0.212,0.254,0.29600000000000004 +2016-09-17 23:00:00,0.226,0.254,0.297 +2016-09-18 00:00:00,0.23399999999999999,0.254,0.3 +2016-09-18 01:00:00,0.243,0.254,0.32299999999999995 +2016-09-18 02:00:00,0.24600000000000002,0.255,0.31 +2016-09-18 03:00:00,0.24600000000000002,0.255,0.304 +2016-09-18 04:00:00,0.24600000000000002,0.255,0.302 +2016-09-18 05:00:00,0.245,0.255,0.301 +2016-09-18 06:00:00,0.245,0.255,0.301 +2016-09-18 07:00:00,0.245,0.255,0.3 +2016-09-18 08:00:00,0.244,0.255,0.3 +2016-09-18 09:00:00,0.243,0.255,0.3 +2016-09-18 10:00:00,0.243,0.255,0.3 +2016-09-18 11:00:00,0.243,0.255,0.3 +2016-09-18 12:00:00,0.243,0.255,0.3 +2016-09-18 13:00:00,0.244,0.255,0.299 +2016-09-18 14:00:00,0.244,0.255,0.299 +2016-09-18 15:00:00,0.244,0.255,0.298 +2016-09-18 16:00:00,0.244,0.255,0.298 +2016-09-18 17:00:00,0.243,0.254,0.297 +2016-09-18 18:00:00,0.243,0.254,0.297 +2016-09-18 19:00:00,0.243,0.254,0.29600000000000004 +2016-09-18 20:00:00,0.242,0.254,0.29600000000000004 +2016-09-18 21:00:00,0.242,0.254,0.29600000000000004 +2016-09-18 22:00:00,0.242,0.254,0.29600000000000004 +2016-09-18 23:00:00,0.242,0.254,0.29600000000000004 +2016-09-19 00:00:00,0.24100000000000002,0.254,0.29600000000000004 +2016-09-19 01:00:00,0.24100000000000002,0.254,0.29600000000000004 +2016-09-19 02:00:00,0.24,0.254,0.29600000000000004 +2016-09-19 03:00:00,0.24,0.254,0.29600000000000004 +2016-09-19 04:00:00,0.24,0.255,0.29600000000000004 +2016-09-19 05:00:00,0.24,0.255,0.29600000000000004 +2016-09-19 06:00:00,0.239,0.255,0.29600000000000004 +2016-09-19 07:00:00,0.239,0.255,0.29600000000000004 +2016-09-19 08:00:00,0.239,0.255,0.29600000000000004 +2016-09-19 09:00:00,0.239,0.255,0.29600000000000004 +2016-09-19 10:00:00,0.239,0.255,0.29600000000000004 +2016-09-19 11:00:00,0.23800000000000002,0.255,0.29600000000000004 +2016-09-19 12:00:00,0.23800000000000002,0.255,0.29600000000000004 +2016-09-19 13:00:00,0.23800000000000002,0.255,0.29600000000000004 +2016-09-19 14:00:00,0.23800000000000002,0.255,0.295 +2016-09-19 15:00:00,0.237,0.254,0.295 +2016-09-19 16:00:00,0.237,0.254,0.29600000000000004 +2016-09-19 17:00:00,0.237,0.254,0.29600000000000004 +2016-09-19 18:00:00,0.23800000000000002,0.253,0.29600000000000004 +2016-09-19 19:00:00,0.237,0.253,0.29600000000000004 +2016-09-19 20:00:00,0.237,0.253,0.29600000000000004 +2016-09-19 21:00:00,0.237,0.253,0.29600000000000004 +2016-09-19 22:00:00,0.237,0.253,0.29600000000000004 +2016-09-19 23:00:00,0.237,0.254,0.29600000000000004 +2016-09-20 00:00:00,0.237,0.254,0.297 +2016-09-20 01:00:00,0.237,0.254,0.297 +2016-09-20 02:00:00,0.237,0.254,0.297 +2016-09-20 03:00:00,0.237,0.254,0.297 +2016-09-20 04:00:00,0.237,0.254,0.297 +2016-09-20 05:00:00,0.237,0.254,0.297 +2016-09-20 06:00:00,0.237,0.254,0.297 +2016-09-20 07:00:00,0.237,0.254,0.297 +2016-09-20 08:00:00,0.237,0.254,0.297 +2016-09-20 09:00:00,0.237,0.254,0.297 +2016-09-20 10:00:00,0.237,0.254,0.297 +2016-09-20 11:00:00,0.237,0.254,0.297 +2016-09-20 12:00:00,0.237,0.254,0.297 +2016-09-20 13:00:00,0.23600000000000002,0.255,0.297 +2016-09-20 14:00:00,0.23600000000000002,0.255,0.29600000000000004 +2016-09-20 15:00:00,0.23600000000000002,0.254,0.29600000000000004 +2016-09-20 16:00:00,0.235,0.254,0.295 +2016-09-20 17:00:00,0.235,0.254,0.295 +2016-09-20 18:00:00,0.235,0.254,0.295 +2016-09-20 19:00:00,0.23600000000000002,0.254,0.295 +2016-09-20 20:00:00,0.23600000000000002,0.254,0.295 +2016-09-20 21:00:00,0.23600000000000002,0.254,0.295 +2016-09-20 22:00:00,0.23600000000000002,0.254,0.295 +2016-09-20 23:00:00,0.23600000000000002,0.254,0.295 +2016-09-21 00:00:00,0.23600000000000002,0.254,0.295 +2016-09-21 01:00:00,0.23600000000000002,0.254,0.295 +2016-09-21 02:00:00,0.23600000000000002,0.254,0.295 +2016-09-21 03:00:00,0.235,0.255,0.295 +2016-09-21 04:00:00,0.23399999999999999,0.255,0.295 +2016-09-21 05:00:00,0.23399999999999999,0.255,0.295 +2016-09-21 06:00:00,0.23399999999999999,0.255,0.295 +2016-09-21 07:00:00,0.233,0.255,0.295 +2016-09-21 08:00:00,0.23199999999999998,0.255,0.295 +2016-09-21 09:00:00,0.23199999999999998,0.255,0.295 +2016-09-21 10:00:00,0.23199999999999998,0.255,0.295 +2016-09-21 11:00:00,0.231,0.256,0.295 +2016-09-21 12:00:00,0.231,0.256,0.295 +2016-09-21 13:00:00,0.231,0.256,0.295 +2016-09-21 14:00:00,0.231,0.256,0.295 +2016-09-21 15:00:00,0.231,0.256,0.295 +2016-09-21 16:00:00,0.231,0.256,0.294 +2016-09-21 17:00:00,0.23,0.255,0.294 +2016-09-21 18:00:00,0.23,0.255,0.294 +2016-09-21 19:00:00,0.231,0.254,0.294 +2016-09-21 20:00:00,0.231,0.254,0.294 +2016-09-21 21:00:00,0.231,0.255,0.294 +2016-09-21 22:00:00,0.231,0.255,0.294 +2016-09-21 23:00:00,0.23,0.255,0.294 +2016-09-22 00:00:00,0.23,0.256,0.294 +2016-09-22 01:00:00,0.23,0.256,0.294 +2016-09-22 02:00:00,0.23,0.256,0.294 +2016-09-22 03:00:00,0.22899999999999998,0.256,0.294 +2016-09-22 04:00:00,0.22899999999999998,0.256,0.294 +2016-09-22 05:00:00,0.22899999999999998,0.256,0.294 +2016-09-22 06:00:00,0.22899999999999998,0.256,0.294 +2016-09-22 07:00:00,0.228,0.256,0.294 +2016-09-22 08:00:00,0.228,0.256,0.294 +2016-09-22 09:00:00,0.228,0.256,0.295 +2016-09-22 10:00:00,0.228,0.256,0.295 +2016-09-22 11:00:00,0.228,0.256,0.295 +2016-09-22 12:00:00,0.228,0.256,0.295 +2016-09-22 13:00:00,0.228,0.256,0.294 +2016-09-22 14:00:00,0.228,0.256,0.294 +2016-09-22 15:00:00,0.228,0.255,0.294 +2016-09-22 16:00:00,0.22699999999999998,0.254,0.294 +2016-09-22 17:00:00,0.22699999999999998,0.254,0.294 +2016-09-22 18:00:00,0.22699999999999998,0.253,0.294 +2016-09-22 19:00:00,0.228,0.253,0.294 +2016-09-22 20:00:00,0.228,0.253,0.294 +2016-09-22 21:00:00,0.228,0.253,0.294 +2016-09-22 22:00:00,0.228,0.253,0.294 +2016-09-22 23:00:00,0.228,0.253,0.294 +2016-09-23 00:00:00,0.228,0.253,0.294 +2016-09-23 01:00:00,0.228,0.254,0.294 +2016-09-23 02:00:00,0.228,0.254,0.294 +2016-09-23 03:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 04:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 05:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 06:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 07:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 08:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 09:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 10:00:00,0.22699999999999998,0.254,0.295 +2016-09-23 11:00:00,0.22699999999999998,0.254,0.295 +2016-09-23 12:00:00,0.22699999999999998,0.254,0.294 +2016-09-23 13:00:00,0.226,0.254,0.294 +2016-09-23 14:00:00,0.226,0.254,0.294 +2016-09-23 15:00:00,0.226,0.254,0.294 +2016-09-23 16:00:00,0.226,0.254,0.294 +2016-09-23 17:00:00,0.226,0.253,0.294 +2016-09-23 18:00:00,0.226,0.253,0.294 +2016-09-23 19:00:00,0.22699999999999998,0.253,0.294 +2016-09-23 20:00:00,0.22699999999999998,0.253,0.293 +2016-09-23 21:00:00,0.22699999999999998,0.253,0.293 +2016-09-23 22:00:00,0.22699999999999998,0.253,0.293 +2016-09-23 23:00:00,0.22699999999999998,0.253,0.293 +2016-09-24 00:00:00,0.22699999999999998,0.253,0.294 +2016-09-24 01:00:00,0.226,0.253,0.294 +2016-09-24 02:00:00,0.226,0.253,0.294 +2016-09-24 03:00:00,0.226,0.253,0.294 +2016-09-24 04:00:00,0.226,0.254,0.294 +2016-09-24 05:00:00,0.226,0.254,0.294 +2016-09-24 06:00:00,0.225,0.254,0.294 +2016-09-24 07:00:00,0.225,0.254,0.294 +2016-09-24 08:00:00,0.225,0.254,0.294 +2016-09-24 09:00:00,0.225,0.254,0.294 +2016-09-24 10:00:00,0.225,0.254,0.294 +2016-09-24 11:00:00,0.225,0.254,0.294 +2016-09-24 12:00:00,0.225,0.254,0.294 +2016-09-24 13:00:00,0.225,0.254,0.294 +2016-09-24 14:00:00,0.225,0.254,0.294 +2016-09-24 15:00:00,0.225,0.254,0.294 +2016-09-24 16:00:00,0.225,0.254,0.294 +2016-09-24 17:00:00,0.22399999999999998,0.254,0.293 +2016-09-24 18:00:00,0.22399999999999998,0.254,0.293 +2016-09-24 19:00:00,0.225,0.254,0.293 +2016-09-24 20:00:00,0.225,0.254,0.293 +2016-09-24 21:00:00,0.225,0.254,0.293 +2016-09-24 22:00:00,0.225,0.254,0.293 +2016-09-24 23:00:00,0.225,0.254,0.293 +2016-09-25 00:00:00,0.225,0.254,0.293 +2016-09-25 01:00:00,0.22399999999999998,0.254,0.293 +2016-09-25 02:00:00,0.22399999999999998,0.254,0.293 +2016-09-25 03:00:00,0.223,0.254,0.293 +2016-09-25 04:00:00,0.223,0.254,0.293 +2016-09-25 05:00:00,0.223,0.254,0.293 +2016-09-25 06:00:00,0.223,0.254,0.293 +2016-09-25 07:00:00,0.223,0.254,0.293 +2016-09-25 08:00:00,0.223,0.254,0.293 +2016-09-25 09:00:00,0.223,0.253,0.293 +2016-09-25 10:00:00,0.223,0.253,0.294 +2016-09-25 11:00:00,0.223,0.253,0.294 +2016-09-25 12:00:00,0.223,0.253,0.293 +2016-09-25 13:00:00,0.222,0.253,0.293 +2016-09-25 14:00:00,0.222,0.252,0.293 +2016-09-25 15:00:00,0.222,0.252,0.293 +2016-09-25 16:00:00,0.222,0.251,0.293 +2016-09-25 17:00:00,0.222,0.25,0.293 +2016-09-25 18:00:00,0.222,0.251,0.293 +2016-09-25 19:00:00,0.222,0.25,0.293 +2016-09-25 20:00:00,0.222,0.25,0.293 +2016-09-25 21:00:00,0.222,0.251,0.293 +2016-09-25 22:00:00,0.222,0.251,0.293 +2016-09-25 23:00:00,0.222,0.252,0.293 +2016-09-26 00:00:00,0.223,0.252,0.293 +2016-09-26 01:00:00,0.223,0.253,0.293 +2016-09-26 02:00:00,0.223,0.253,0.293 +2016-09-26 03:00:00,0.223,0.253,0.293 +2016-09-26 04:00:00,0.223,0.253,0.293 +2016-09-26 05:00:00,0.223,0.253,0.294 +2016-09-26 06:00:00,0.223,0.253,0.294 +2016-09-26 07:00:00,0.223,0.253,0.294 +2016-09-26 08:00:00,0.223,0.253,0.294 +2016-09-26 09:00:00,0.223,0.253,0.294 +2016-09-26 10:00:00,0.223,0.253,0.294 +2016-09-26 11:00:00,0.223,0.253,0.294 +2016-09-26 12:00:00,0.222,0.253,0.293 +2016-09-26 13:00:00,0.222,0.253,0.293 +2016-09-26 14:00:00,0.222,0.254,0.293 +2016-09-26 15:00:00,0.223,0.254,0.293 +2016-09-26 16:00:00,0.223,0.255,0.293 +2016-09-26 17:00:00,0.223,0.256,0.293 +2016-09-26 18:00:00,0.223,0.256,0.293 +2016-09-26 19:00:00,0.223,0.255,0.293 +2016-09-26 20:00:00,0.223,0.254,0.293 +2016-09-26 21:00:00,0.223,0.254,0.293 +2016-09-26 22:00:00,0.223,0.255,0.293 +2016-09-26 23:00:00,0.223,0.255,0.293 +2016-09-27 00:00:00,0.223,0.256,0.293 +2016-09-27 01:00:00,0.223,0.256,0.293 +2016-09-27 02:00:00,0.223,0.255,0.293 +2016-09-27 03:00:00,0.223,0.254,0.293 +2016-09-27 04:00:00,0.223,0.254,0.293 +2016-09-27 05:00:00,0.223,0.254,0.294 +2016-09-27 06:00:00,0.223,0.254,0.294 +2016-09-27 07:00:00,0.223,0.254,0.294 +2016-09-27 08:00:00,0.223,0.255,0.294 +2016-09-27 09:00:00,0.223,0.255,0.294 +2016-09-27 10:00:00,0.223,0.255,0.294 +2016-09-27 11:00:00,0.223,0.255,0.294 +2016-09-27 12:00:00,0.223,0.255,0.294 +2016-09-27 13:00:00,0.222,0.255,0.294 +2016-09-27 14:00:00,0.222,0.256,0.294 +2016-09-27 15:00:00,0.222,0.256,0.293 +2016-09-27 16:00:00,0.222,0.256,0.293 +2016-09-27 17:00:00,0.222,0.256,0.293 +2016-09-27 18:00:00,0.223,0.256,0.293 +2016-09-27 19:00:00,0.223,0.256,0.293 +2016-09-27 20:00:00,0.223,0.256,0.293 +2016-09-27 21:00:00,0.223,0.257,0.293 +2016-09-27 22:00:00,0.222,0.257,0.293 +2016-09-27 23:00:00,0.222,0.258,0.293 +2016-09-28 00:00:00,0.222,0.258,0.293 +2016-09-28 01:00:00,0.222,0.258,0.293 +2016-09-28 02:00:00,0.222,0.258,0.293 +2016-09-28 03:00:00,0.222,0.258,0.293 +2016-09-28 04:00:00,0.222,0.258,0.293 +2016-09-28 05:00:00,0.222,0.258,0.293 +2016-09-28 06:00:00,0.221,0.258,0.293 +2016-09-28 07:00:00,0.221,0.258,0.293 +2016-09-28 08:00:00,0.221,0.258,0.293 +2016-09-28 09:00:00,0.221,0.258,0.293 +2016-09-28 10:00:00,0.221,0.258,0.294 +2016-09-28 11:00:00,0.22,0.258,0.294 +2016-09-28 12:00:00,0.22,0.257,0.293 +2016-09-28 13:00:00,0.22,0.257,0.293 +2016-09-28 14:00:00,0.22,0.257,0.293 +2016-09-28 15:00:00,0.22,0.256,0.293 +2016-09-28 16:00:00,0.22,0.256,0.293 +2016-09-28 17:00:00,0.22,0.256,0.293 +2016-09-28 18:00:00,0.22,0.257,0.293 +2016-09-28 19:00:00,0.221,0.257,0.293 +2016-09-28 20:00:00,0.221,0.257,0.293 +2016-09-28 21:00:00,0.221,0.258,0.293 +2016-09-28 22:00:00,0.221,0.258,0.293 +2016-09-28 23:00:00,0.221,0.258,0.293 +2016-09-29 00:00:00,0.221,0.258,0.293 +2016-09-29 01:00:00,0.221,0.258,0.293 +2016-09-29 02:00:00,0.22,0.258,0.293 +2016-09-29 03:00:00,0.22,0.258,0.293 +2016-09-29 04:00:00,0.22,0.258,0.293 +2016-09-29 05:00:00,0.22,0.258,0.293 +2016-09-29 06:00:00,0.22,0.258,0.293 +2016-09-29 07:00:00,0.22,0.258,0.293 +2016-09-29 08:00:00,0.22,0.258,0.293 +2016-09-29 09:00:00,0.22,0.258,0.293 +2016-09-29 10:00:00,0.22,0.258,0.294 +2016-09-29 11:00:00,0.22,0.258,0.293 +2016-09-29 12:00:00,0.22,0.258,0.293 +2016-09-29 13:00:00,0.22,0.259,0.293 +2016-09-29 14:00:00,0.22,0.259,0.293 +2016-09-29 15:00:00,0.22,0.259,0.293 +2016-09-29 16:00:00,0.22,0.259,0.293 +2016-09-29 17:00:00,0.22,0.259,0.293 +2016-09-29 18:00:00,0.22,0.259,0.292 +2016-09-29 19:00:00,0.22,0.259,0.292 +2016-09-29 20:00:00,0.22,0.259,0.292 +2016-09-29 21:00:00,0.22,0.259,0.292 +2016-09-29 22:00:00,0.22,0.259,0.292 +2016-09-29 23:00:00,0.22,0.259,0.292 +2016-09-30 00:00:00,0.22,0.259,0.292 +2016-09-30 01:00:00,0.22,0.262,0.293 +2016-09-30 02:00:00,0.22,0.263,0.293 +2016-09-30 03:00:00,0.22,0.263,0.293 +2016-09-30 04:00:00,0.22,0.264,0.293 +2016-09-30 05:00:00,0.22,0.264,0.293 +2016-09-30 06:00:00,0.22,0.264,0.293 +2016-09-30 07:00:00,0.22,0.264,0.293 +2016-09-30 08:00:00,0.22,0.265,0.293 +2016-09-30 09:00:00,0.22,0.265,0.293 +2016-09-30 10:00:00,0.22,0.265,0.293 +2016-09-30 11:00:00,0.22,0.266,0.293 +2016-09-30 12:00:00,0.22,0.266,0.293 +2016-09-30 13:00:00,0.22,0.266,0.293 +2016-09-30 14:00:00,0.221,0.266,0.295 +2016-09-30 15:00:00,0.221,0.266,0.29600000000000004 +2016-09-30 16:00:00,0.221,0.265,0.29600000000000004 +2016-09-30 17:00:00,0.221,0.264,0.295 +2016-09-30 18:00:00,0.221,0.264,0.295 +2016-09-30 19:00:00,0.221,0.264,0.295 +2016-09-30 20:00:00,0.221,0.263,0.295 +2016-09-30 21:00:00,0.221,0.263,0.295 +2016-09-30 22:00:00,0.221,0.263,0.295 +2016-09-30 23:00:00,0.221,0.263,0.295 +2016-10-01 00:00:00,0.221,0.263,0.295 +2016-10-01 01:00:00,0.221,0.263,0.295 +2016-10-01 02:00:00,0.221,0.263,0.295 +2016-10-01 03:00:00,0.221,0.263,0.29600000000000004 +2016-10-01 04:00:00,0.221,0.263,0.29600000000000004 +2016-10-01 05:00:00,0.221,0.263,0.297 +2016-10-01 06:00:00,0.221,0.263,0.297 +2016-10-01 07:00:00,0.221,0.263,0.298 +2016-10-01 08:00:00,0.221,0.263,0.298 +2016-10-01 09:00:00,0.221,0.263,0.298 +2016-10-01 10:00:00,0.221,0.263,0.298 +2016-10-01 11:00:00,0.221,0.263,0.298 +2016-10-01 12:00:00,0.21899999999999997,0.263,0.299 +2016-10-01 13:00:00,0.218,0.263,0.299 +2016-10-01 14:00:00,0.218,0.263,0.299 +2016-10-01 15:00:00,0.218,0.263,0.299 +2016-10-01 16:00:00,0.218,0.263,0.299 +2016-10-01 17:00:00,0.218,0.263,0.3 +2016-10-01 18:00:00,0.218,0.263,0.3 +2016-10-01 19:00:00,0.21899999999999997,0.263,0.3 +2016-10-01 20:00:00,0.22,0.264,0.3 +2016-10-01 21:00:00,0.221,0.264,0.3 +2016-10-01 22:00:00,0.221,0.264,0.3 +2016-10-01 23:00:00,0.222,0.263,0.3 +2016-10-02 00:00:00,0.222,0.264,0.3 +2016-10-02 01:00:00,0.222,0.264,0.3 +2016-10-02 02:00:00,0.222,0.264,0.3 +2016-10-02 03:00:00,0.223,0.263,0.3 +2016-10-02 04:00:00,0.223,0.264,0.3 +2016-10-02 05:00:00,0.223,0.264,0.3 +2016-10-02 06:00:00,0.223,0.263,0.3 +2016-10-02 07:00:00,0.223,0.263,0.3 +2016-10-02 08:00:00,0.22399999999999998,0.263,0.3 +2016-10-02 09:00:00,0.22399999999999998,0.263,0.3 +2016-10-02 10:00:00,0.22399999999999998,0.263,0.3 +2016-10-02 11:00:00,0.225,0.263,0.3 +2016-10-02 12:00:00,0.226,0.263,0.3 +2016-10-02 13:00:00,0.226,0.262,0.299 +2016-10-02 14:00:00,0.22699999999999998,0.262,0.299 +2016-10-02 15:00:00,0.22699999999999998,0.263,0.298 +2016-10-02 16:00:00,0.22699999999999998,0.263,0.299 +2016-10-02 17:00:00,0.22699999999999998,0.263,0.299 +2016-10-02 18:00:00,0.22699999999999998,0.263,0.299 +2016-10-02 19:00:00,0.22699999999999998,0.263,0.299 +2016-10-02 20:00:00,0.22699999999999998,0.263,0.298 +2016-10-02 21:00:00,0.228,0.263,0.298 +2016-10-02 22:00:00,0.228,0.263,0.298 +2016-10-02 23:00:00,0.22699999999999998,0.263,0.299 +2016-10-03 00:00:00,0.22699999999999998,0.263,0.3 +2016-10-03 01:00:00,0.22699999999999998,0.263,0.3 +2016-10-03 02:00:00,0.22699999999999998,0.263,0.3 +2016-10-03 03:00:00,0.22699999999999998,0.263,0.299 +2016-10-03 04:00:00,0.22699999999999998,0.263,0.299 +2016-10-03 05:00:00,0.22699999999999998,0.263,0.299 +2016-10-03 06:00:00,0.22699999999999998,0.263,0.299 +2016-10-03 07:00:00,0.22699999999999998,0.263,0.299 +2016-10-03 08:00:00,0.228,0.264,0.299 +2016-10-03 09:00:00,0.228,0.264,0.299 +2016-10-03 10:00:00,0.228,0.264,0.299 +2016-10-03 11:00:00,0.228,0.264,0.299 +2016-10-03 12:00:00,0.228,0.264,0.299 +2016-10-03 13:00:00,0.228,0.264,0.299 +2016-10-03 14:00:00,0.22899999999999998,0.264,0.298 +2016-10-03 15:00:00,0.22899999999999998,0.264,0.298 +2016-10-03 16:00:00,0.23,0.264,0.298 +2016-10-03 17:00:00,0.23,0.264,0.298 +2016-10-03 18:00:00,0.23,0.263,0.298 +2016-10-03 19:00:00,0.23,0.263,0.298 +2016-10-03 20:00:00,0.23,0.263,0.297 +2016-10-03 21:00:00,0.23,0.263,0.297 +2016-10-03 22:00:00,0.23,0.263,0.297 +2016-10-03 23:00:00,0.231,0.263,0.297 +2016-10-04 00:00:00,0.231,0.263,0.297 +2016-10-04 01:00:00,0.231,0.263,0.297 +2016-10-04 02:00:00,0.231,0.263,0.297 +2016-10-04 03:00:00,0.231,0.263,0.297 +2016-10-04 04:00:00,0.23,0.263,0.297 +2016-10-04 05:00:00,0.23,0.263,0.297 +2016-10-04 06:00:00,0.23,0.263,0.297 +2016-10-04 07:00:00,0.23,0.263,0.297 +2016-10-04 08:00:00,0.23,0.263,0.297 +2016-10-04 09:00:00,0.23,0.263,0.297 +2016-10-04 10:00:00,0.23,0.263,0.298 +2016-10-04 11:00:00,0.23,0.263,0.297 +2016-10-04 12:00:00,0.23,0.263,0.297 +2016-10-04 13:00:00,0.23,0.263,0.297 +2016-10-04 14:00:00,0.23,0.263,0.297 +2016-10-04 15:00:00,0.23,0.263,0.29600000000000004 +2016-10-04 16:00:00,0.23,0.263,0.29600000000000004 +2016-10-04 17:00:00,0.23,0.263,0.29600000000000004 +2016-10-04 18:00:00,0.22899999999999998,0.263,0.295 +2016-10-04 19:00:00,0.22899999999999998,0.263,0.295 +2016-10-04 20:00:00,0.22899999999999998,0.263,0.295 +2016-10-04 21:00:00,0.22899999999999998,0.263,0.295 +2016-10-04 22:00:00,0.22899999999999998,0.263,0.295 +2016-10-04 23:00:00,0.22899999999999998,0.263,0.295 +2016-10-05 00:00:00,0.22899999999999998,0.263,0.295 +2016-10-05 01:00:00,0.22899999999999998,0.263,0.295 +2016-10-05 02:00:00,0.22899999999999998,0.263,0.295 +2016-10-05 03:00:00,0.22899999999999998,0.263,0.295 +2016-10-05 04:00:00,0.228,0.263,0.295 +2016-10-05 05:00:00,0.228,0.263,0.295 +2016-10-05 06:00:00,0.228,0.263,0.295 +2016-10-05 07:00:00,0.228,0.263,0.295 +2016-10-05 08:00:00,0.228,0.263,0.295 +2016-10-05 09:00:00,0.228,0.264,0.29600000000000004 +2016-10-05 10:00:00,0.228,0.264,0.29600000000000004 +2016-10-05 11:00:00,0.228,0.264,0.29600000000000004 +2016-10-05 12:00:00,0.228,0.264,0.295 +2016-10-05 13:00:00,0.228,0.264,0.295 +2016-10-05 14:00:00,0.228,0.264,0.295 +2016-10-05 15:00:00,0.228,0.264,0.295 +2016-10-05 16:00:00,0.228,0.264,0.295 +2016-10-05 17:00:00,0.228,0.264,0.295 +2016-10-05 18:00:00,0.228,0.263,0.294 +2016-10-05 19:00:00,0.228,0.263,0.294 +2016-10-05 20:00:00,0.228,0.263,0.294 +2016-10-05 21:00:00,0.228,0.263,0.294 +2016-10-05 22:00:00,0.228,0.263,0.294 +2016-10-05 23:00:00,0.228,0.263,0.294 +2016-10-06 00:00:00,0.228,0.263,0.294 +2016-10-06 01:00:00,0.228,0.263,0.294 +2016-10-06 02:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 03:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 04:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 05:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 06:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 07:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 08:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 09:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 10:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 11:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 12:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 13:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 14:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 15:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 16:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 17:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 18:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 19:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 20:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 21:00:00,0.22699999999999998,0.263,0.294 +2016-10-06 22:00:00,0.22699999999999998,0.263,0.295 +2016-10-06 23:00:00,0.22699999999999998,0.263,0.295 +2016-10-07 00:00:00,0.22699999999999998,0.263,0.295 +2016-10-07 01:00:00,0.22699999999999998,0.263,0.295 +2016-10-07 02:00:00,0.22699999999999998,0.263,0.295 +2016-10-07 03:00:00,0.228,0.263,0.295 +2016-10-07 04:00:00,0.22699999999999998,0.263,0.295 +2016-10-07 05:00:00,0.228,0.263,0.295 +2016-10-07 06:00:00,0.228,0.263,0.295 +2016-10-07 07:00:00,0.228,0.263,0.295 +2016-10-07 08:00:00,0.228,0.263,0.295 +2016-10-07 09:00:00,0.228,0.263,0.295 +2016-10-07 10:00:00,0.228,0.263,0.295 +2016-10-07 11:00:00,0.228,0.263,0.295 +2016-10-07 12:00:00,0.228,0.263,0.29600000000000004 +2016-10-07 13:00:00,0.228,0.263,0.297 +2016-10-07 14:00:00,0.228,0.263,0.298 +2016-10-07 15:00:00,0.228,0.264,0.297 +2016-10-07 16:00:00,0.228,0.263,0.297 +2016-10-07 17:00:00,0.228,0.263,0.297 +2016-10-07 18:00:00,0.228,0.263,0.297 +2016-10-07 19:00:00,0.228,0.263,0.297 +2016-10-07 20:00:00,0.228,0.263,0.298 +2016-10-07 21:00:00,0.22899999999999998,0.263,0.298 +2016-10-07 22:00:00,0.22899999999999998,0.263,0.298 +2016-10-07 23:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 00:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 01:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 02:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 03:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 04:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 05:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 06:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 07:00:00,0.22899999999999998,0.263,0.298 +2016-10-08 08:00:00,0.228,0.263,0.299 +2016-10-08 09:00:00,0.228,0.263,0.299 +2016-10-08 10:00:00,0.228,0.263,0.299 +2016-10-08 11:00:00,0.22899999999999998,0.263,0.299 +2016-10-08 12:00:00,0.22899999999999998,0.263,0.299 +2016-10-08 13:00:00,0.23,0.263,0.298 +2016-10-08 14:00:00,0.23,0.263,0.298 +2016-10-08 15:00:00,0.23,0.263,0.298 +2016-10-08 16:00:00,0.23,0.263,0.297 +2016-10-08 17:00:00,0.23,0.263,0.297 +2016-10-08 18:00:00,0.23,0.263,0.297 +2016-10-08 19:00:00,0.23,0.263,0.29600000000000004 +2016-10-08 20:00:00,0.23,0.262,0.29600000000000004 +2016-10-08 21:00:00,0.23,0.263,0.29600000000000004 +2016-10-08 22:00:00,0.23,0.263,0.29600000000000004 +2016-10-08 23:00:00,0.23,0.263,0.29600000000000004 +2016-10-09 00:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 01:00:00,0.23,0.263,0.29600000000000004 +2016-10-09 02:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 03:00:00,0.231,0.264,0.29600000000000004 +2016-10-09 04:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 05:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 06:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 07:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 08:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 09:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 10:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 11:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 12:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 13:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 14:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 15:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 16:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 17:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 18:00:00,0.231,0.263,0.295 +2016-10-09 19:00:00,0.231,0.263,0.295 +2016-10-09 20:00:00,0.231,0.263,0.295 +2016-10-09 21:00:00,0.231,0.263,0.29600000000000004 +2016-10-09 22:00:00,0.231,0.263,0.295 +2016-10-09 23:00:00,0.231,0.263,0.295 +2016-10-10 00:00:00,0.231,0.263,0.295 +2016-10-10 01:00:00,0.231,0.263,0.295 +2016-10-10 02:00:00,0.231,0.263,0.295 +2016-10-10 03:00:00,0.231,0.263,0.295 +2016-10-10 04:00:00,0.231,0.263,0.295 +2016-10-10 05:00:00,0.231,0.263,0.295 +2016-10-10 06:00:00,0.231,0.263,0.295 +2016-10-10 07:00:00,0.231,0.263,0.295 +2016-10-10 08:00:00,0.231,0.263,0.295 +2016-10-10 09:00:00,0.231,0.263,0.29600000000000004 +2016-10-10 10:00:00,0.231,0.263,0.29600000000000004 +2016-10-10 11:00:00,0.231,0.263,0.29600000000000004 +2016-10-10 12:00:00,0.231,0.263,0.29600000000000004 +2016-10-10 13:00:00,0.231,0.263,0.29600000000000004 +2016-10-10 14:00:00,0.231,0.263,0.295 +2016-10-10 15:00:00,0.231,0.263,0.295 +2016-10-10 16:00:00,0.231,0.263,0.295 +2016-10-10 17:00:00,0.231,0.263,0.295 +2016-10-10 18:00:00,0.231,0.263,0.295 +2016-10-10 19:00:00,0.231,0.263,0.295 +2016-10-10 20:00:00,0.231,0.263,0.295 +2016-10-10 21:00:00,0.231,0.263,0.295 +2016-10-10 22:00:00,0.231,0.263,0.295 +2016-10-10 23:00:00,0.231,0.263,0.295 +2016-10-11 00:00:00,0.231,0.263,0.295 +2016-10-11 01:00:00,0.231,0.263,0.295 +2016-10-11 02:00:00,0.231,0.263,0.295 +2016-10-11 03:00:00,0.231,0.263,0.295 +2016-10-11 04:00:00,0.231,0.263,0.295 +2016-10-11 05:00:00,0.231,0.263,0.295 +2016-10-11 06:00:00,0.231,0.263,0.295 +2016-10-11 07:00:00,0.231,0.263,0.295 +2016-10-11 08:00:00,0.231,0.263,0.295 +2016-10-11 09:00:00,0.23,0.263,0.295 +2016-10-11 10:00:00,0.231,0.263,0.295 +2016-10-11 11:00:00,0.23,0.263,0.295 +2016-10-11 12:00:00,0.23,0.263,0.295 +2016-10-11 13:00:00,0.23,0.263,0.295 +2016-10-11 14:00:00,0.23,0.263,0.295 +2016-10-11 15:00:00,0.23,0.263,0.295 +2016-10-11 16:00:00,0.23,0.263,0.295 +2016-10-11 17:00:00,0.23,0.263,0.295 +2016-10-11 18:00:00,0.23,0.263,0.295 +2016-10-11 19:00:00,0.23,0.263,0.295 +2016-10-11 20:00:00,0.23,0.263,0.295 +2016-10-11 21:00:00,0.23,0.263,0.295 +2016-10-11 22:00:00,0.23,0.263,0.295 +2016-10-11 23:00:00,0.231,0.262,0.295 +2016-10-12 00:00:00,0.231,0.262,0.295 +2016-10-12 01:00:00,0.231,0.262,0.295 +2016-10-12 02:00:00,0.231,0.262,0.295 +2016-10-12 03:00:00,0.231,0.262,0.29600000000000004 +2016-10-12 04:00:00,0.231,0.262,0.297 +2016-10-12 05:00:00,0.231,0.262,0.298 +2016-10-12 06:00:00,0.231,0.262,0.298 +2016-10-12 07:00:00,0.23199999999999998,0.262,0.298 +2016-10-12 08:00:00,0.23199999999999998,0.262,0.298 +2016-10-12 09:00:00,0.23199999999999998,0.263,0.298 +2016-10-12 10:00:00,0.23199999999999998,0.263,0.298 +2016-10-12 11:00:00,0.23199999999999998,0.263,0.298 +2016-10-12 12:00:00,0.23199999999999998,0.263,0.298 +2016-10-12 13:00:00,0.23199999999999998,0.263,0.298 +2016-10-12 14:00:00,0.23199999999999998,0.263,0.298 +2016-10-12 15:00:00,0.23199999999999998,0.263,0.297 +2016-10-12 16:00:00,0.23199999999999998,0.263,0.297 +2016-10-12 17:00:00,0.231,0.263,0.297 +2016-10-12 18:00:00,0.231,0.263,0.297 +2016-10-12 19:00:00,0.231,0.263,0.297 +2016-10-12 20:00:00,0.231,0.263,0.297 +2016-10-12 21:00:00,0.231,0.263,0.297 +2016-10-12 22:00:00,0.231,0.263,0.297 +2016-10-12 23:00:00,0.231,0.263,0.297 +2016-10-13 00:00:00,0.231,0.263,0.297 +2016-10-13 01:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 02:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 03:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 04:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 05:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 06:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 07:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 08:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 09:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 10:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 11:00:00,0.23,0.263,0.29600000000000004 +2016-10-13 12:00:00,0.231,0.263,0.29600000000000004 +2016-10-13 13:00:00,0.23,0.263,0.29600000000000004 +2016-10-13 14:00:00,0.23,0.263,0.29600000000000004 +2016-10-13 15:00:00,0.23,0.263,0.29600000000000004 +2016-10-13 16:00:00,0.23,0.264,0.29600000000000004 +2016-10-13 17:00:00,0.23,0.264,0.29600000000000004 +2016-10-13 18:00:00,0.23,0.264,0.295 +2016-10-13 19:00:00,0.23,0.264,0.295 +2016-10-13 20:00:00,0.23,0.264,0.295 +2016-10-13 21:00:00,0.23,0.263,0.295 +2016-10-13 22:00:00,0.23,0.263,0.295 +2016-10-13 23:00:00,0.23,0.263,0.295 +2016-10-14 00:00:00,0.23,0.263,0.295 +2016-10-14 01:00:00,0.23,0.262,0.295 +2016-10-14 02:00:00,0.23,0.262,0.29600000000000004 +2016-10-14 03:00:00,0.23,0.263,0.29600000000000004 +2016-10-14 04:00:00,0.23,0.262,0.29600000000000004 +2016-10-14 05:00:00,0.23,0.262,0.29600000000000004 +2016-10-14 06:00:00,0.23,0.262,0.29600000000000004 +2016-10-14 07:00:00,0.23,0.262,0.29600000000000004 +2016-10-14 08:00:00,0.23,0.262,0.29600000000000004 +2016-10-14 09:00:00,0.23,0.261,0.29600000000000004 +2016-10-14 10:00:00,0.23,0.261,0.29600000000000004 +2016-10-14 11:00:00,0.23,0.261,0.29600000000000004 +2016-10-14 12:00:00,0.23,0.261,0.29600000000000004 +2016-10-14 13:00:00,0.23,0.261,0.295 +2016-10-14 14:00:00,0.23,0.261,0.295 +2016-10-14 15:00:00,0.23,0.262,0.295 +2016-10-14 16:00:00,0.23,0.262,0.295 +2016-10-14 17:00:00,0.23,0.263,0.295 +2016-10-14 18:00:00,0.23,0.263,0.295 +2016-10-14 19:00:00,0.23,0.263,0.295 +2016-10-14 20:00:00,0.23,0.263,0.295 +2016-10-14 21:00:00,0.23,0.264,0.295 +2016-10-14 22:00:00,0.23,0.264,0.295 +2016-10-14 23:00:00,0.23,0.264,0.295 +2016-10-15 00:00:00,0.23,0.264,0.295 +2016-10-15 01:00:00,0.23,0.264,0.295 +2016-10-15 02:00:00,0.23,0.264,0.295 +2016-10-15 03:00:00,0.23,0.264,0.295 +2016-10-15 04:00:00,0.23,0.264,0.295 +2016-10-15 05:00:00,0.23,0.264,0.295 +2016-10-15 06:00:00,0.23,0.264,0.295 +2016-10-15 07:00:00,0.23,0.264,0.295 +2016-10-15 08:00:00,0.23,0.264,0.295 +2016-10-15 09:00:00,0.23,0.264,0.29600000000000004 +2016-10-15 10:00:00,0.23,0.264,0.29600000000000004 +2016-10-15 11:00:00,0.23,0.264,0.29600000000000004 +2016-10-15 12:00:00,0.23,0.264,0.29600000000000004 +2016-10-15 13:00:00,0.23,0.264,0.29600000000000004 +2016-10-15 14:00:00,0.23,0.264,0.295 +2016-10-15 15:00:00,0.23,0.264,0.29600000000000004 +2016-10-15 16:00:00,0.23,0.264,0.295 +2016-10-15 17:00:00,0.23,0.264,0.295 +2016-10-15 18:00:00,0.23,0.264,0.295 +2016-10-15 19:00:00,0.23,0.265,0.295 +2016-10-15 20:00:00,0.23,0.265,0.295 +2016-10-15 21:00:00,0.23,0.265,0.295 +2016-10-15 22:00:00,0.23,0.265,0.295 +2016-10-15 23:00:00,0.23,0.265,0.295 +2016-10-16 00:00:00,0.23,0.266,0.295 +2016-10-16 01:00:00,0.23,0.266,0.295 +2016-10-16 02:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 03:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 04:00:00,0.22899999999999998,0.265,0.295 +2016-10-16 05:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 06:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 07:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 08:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 09:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 10:00:00,0.22899999999999998,0.266,0.29600000000000004 +2016-10-16 11:00:00,0.22899999999999998,0.266,0.29600000000000004 +2016-10-16 12:00:00,0.22899999999999998,0.266,0.29600000000000004 +2016-10-16 13:00:00,0.22899999999999998,0.265,0.29600000000000004 +2016-10-16 14:00:00,0.22899999999999998,0.264,0.29600000000000004 +2016-10-16 15:00:00,0.22899999999999998,0.264,0.295 +2016-10-16 16:00:00,0.22899999999999998,0.265,0.295 +2016-10-16 17:00:00,0.22899999999999998,0.265,0.295 +2016-10-16 18:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 19:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 20:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 21:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 22:00:00,0.22899999999999998,0.266,0.295 +2016-10-16 23:00:00,0.22899999999999998,0.266,0.295 +2016-10-17 00:00:00,0.22899999999999998,0.266,0.295 +2016-10-17 01:00:00,0.22899999999999998,0.267,0.295 +2016-10-17 02:00:00,0.22899999999999998,0.267,0.295 +2016-10-17 03:00:00,0.22899999999999998,0.267,0.295 +2016-10-17 04:00:00,0.22899999999999998,0.267,0.295 +2016-10-17 05:00:00,0.22899999999999998,0.268,0.295 +2016-10-17 06:00:00,0.228,0.268,0.295 +2016-10-17 07:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 08:00:00,0.22899999999999998,0.268,0.29600000000000004 +2016-10-17 09:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 10:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 11:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 12:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 13:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 14:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 15:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 16:00:00,0.228,0.268,0.29600000000000004 +2016-10-17 17:00:00,0.22899999999999998,0.268,0.29600000000000004 +2016-10-17 18:00:00,0.22899999999999998,0.268,0.29600000000000004 +2016-10-17 19:00:00,0.22899999999999998,0.268,0.29600000000000004 +2016-10-17 20:00:00,0.23,0.268,0.298 +2016-10-17 21:00:00,0.23,0.26899999999999996,0.298 +2016-10-17 22:00:00,0.23,0.26899999999999996,0.298 +2016-10-17 23:00:00,0.231,0.26899999999999996,0.299 +2016-10-18 00:00:00,0.231,0.27,0.299 +2016-10-18 01:00:00,0.231,0.27,0.299 +2016-10-18 02:00:00,0.23,0.27,0.299 +2016-10-18 03:00:00,0.231,0.27,0.299 +2016-10-18 04:00:00,0.231,0.27,0.299 +2016-10-18 05:00:00,0.231,0.27,0.299 +2016-10-18 06:00:00,0.231,0.26899999999999996,0.299 +2016-10-18 07:00:00,0.231,0.27,0.299 +2016-10-18 08:00:00,0.231,0.27,0.299 +2016-10-18 09:00:00,0.231,0.27,0.299 +2016-10-18 10:00:00,0.231,0.27,0.299 +2016-10-18 11:00:00,0.231,0.27,0.299 +2016-10-18 12:00:00,0.231,0.27,0.299 +2016-10-18 13:00:00,0.231,0.27,0.299 +2016-10-18 14:00:00,0.231,0.27,0.298 +2016-10-18 15:00:00,0.231,0.26899999999999996,0.298 +2016-10-18 16:00:00,0.231,0.27,0.298 +2016-10-18 17:00:00,0.231,0.26899999999999996,0.298 +2016-10-18 18:00:00,0.231,0.26899999999999996,0.297 +2016-10-18 19:00:00,0.231,0.271,0.297 +2016-10-18 20:00:00,0.231,0.27399999999999997,0.297 +2016-10-18 21:00:00,0.23199999999999998,0.276,0.297 +2016-10-18 22:00:00,0.231,0.276,0.297 +2016-10-18 23:00:00,0.231,0.276,0.297 +2016-10-19 00:00:00,0.231,0.276,0.298 +2016-10-19 01:00:00,0.23199999999999998,0.276,0.298 +2016-10-19 02:00:00,0.23199999999999998,0.276,0.299 +2016-10-19 03:00:00,0.23199999999999998,0.276,0.299 +2016-10-19 04:00:00,0.23199999999999998,0.276,0.299 +2016-10-19 05:00:00,0.23199999999999998,0.278,0.299 +2016-10-19 06:00:00,0.23199999999999998,0.28,0.299 +2016-10-19 07:00:00,0.231,0.294,0.299 +2016-10-19 08:00:00,0.231,0.307,0.299 +2016-10-19 09:00:00,0.231,0.312,0.299 +2016-10-19 10:00:00,0.231,0.311,0.299 +2016-10-19 11:00:00,0.231,0.31,0.299 +2016-10-19 12:00:00,0.231,0.31,0.299 +2016-10-19 13:00:00,0.231,0.309,0.299 +2016-10-19 14:00:00,0.231,0.309,0.299 +2016-10-19 15:00:00,0.231,0.309,0.298 +2016-10-19 16:00:00,0.231,0.309,0.298 +2016-10-19 17:00:00,0.231,0.309,0.298 +2016-10-19 18:00:00,0.231,0.309,0.298 +2016-10-19 19:00:00,0.231,0.309,0.298 +2016-10-19 20:00:00,0.231,0.309,0.298 +2016-10-19 21:00:00,0.231,0.309,0.298 +2016-10-19 22:00:00,0.231,0.309,0.298 +2016-10-19 23:00:00,0.231,0.309,0.298 +2016-10-20 00:00:00,0.231,0.309,0.298 +2016-10-20 01:00:00,0.231,0.307,0.298 +2016-10-20 02:00:00,0.231,0.307,0.298 +2016-10-20 03:00:00,0.231,0.307,0.298 +2016-10-20 04:00:00,0.231,0.307,0.299 +2016-10-20 05:00:00,0.23,0.307,0.299 +2016-10-20 06:00:00,0.23,0.307,0.299 +2016-10-20 07:00:00,0.23,0.307,0.3 +2016-10-20 08:00:00,0.23,0.306,0.3 +2016-10-20 09:00:00,0.23,0.306,0.301 +2016-10-20 10:00:00,0.231,0.305,0.301 +2016-10-20 11:00:00,0.237,0.305,0.303 +2016-10-20 12:00:00,0.256,0.305,0.317 +2016-10-20 13:00:00,0.26,0.305,0.318 +2016-10-20 14:00:00,0.261,0.304,0.316 +2016-10-20 15:00:00,0.261,0.304,0.313 +2016-10-20 16:00:00,0.261,0.304,0.309 +2016-10-20 17:00:00,0.261,0.304,0.307 +2016-10-20 18:00:00,0.261,0.304,0.305 +2016-10-20 19:00:00,0.261,0.304,0.304 +2016-10-20 20:00:00,0.26,0.304,0.304 +2016-10-20 21:00:00,0.26,0.304,0.304 +2016-10-20 22:00:00,0.259,0.304,0.303 +2016-10-20 23:00:00,0.259,0.304,0.303 +2016-10-21 00:00:00,0.258,0.304,0.303 +2016-10-21 01:00:00,0.258,0.304,0.303 +2016-10-21 02:00:00,0.258,0.304,0.303 +2016-10-21 03:00:00,0.258,0.304,0.303 +2016-10-21 04:00:00,0.258,0.304,0.303 +2016-10-21 05:00:00,0.257,0.304,0.303 +2016-10-21 06:00:00,0.257,0.304,0.303 +2016-10-21 07:00:00,0.256,0.304,0.303 +2016-10-21 08:00:00,0.256,0.303,0.303 +2016-10-21 09:00:00,0.256,0.304,0.303 +2016-10-21 10:00:00,0.256,0.303,0.303 +2016-10-21 11:00:00,0.256,0.302,0.303 +2016-10-21 12:00:00,0.257,0.302,0.303 +2016-10-21 13:00:00,0.257,0.302,0.303 +2016-10-21 14:00:00,0.257,0.302,0.302 +2016-10-21 15:00:00,0.257,0.301,0.302 +2016-10-21 16:00:00,0.257,0.3,0.302 +2016-10-21 17:00:00,0.257,0.3,0.302 +2016-10-21 18:00:00,0.258,0.3,0.302 +2016-10-21 19:00:00,0.257,0.3,0.302 +2016-10-21 20:00:00,0.257,0.3,0.301 +2016-10-21 21:00:00,0.257,0.3,0.301 +2016-10-21 22:00:00,0.257,0.3,0.301 +2016-10-21 23:00:00,0.257,0.3,0.301 +2016-10-22 00:00:00,0.256,0.3,0.302 +2016-10-22 01:00:00,0.256,0.3,0.303 +2016-10-22 02:00:00,0.256,0.3,0.303 +2016-10-22 03:00:00,0.256,0.3,0.303 +2016-10-22 04:00:00,0.257,0.3,0.303 +2016-10-22 05:00:00,0.257,0.3,0.303 +2016-10-22 06:00:00,0.258,0.3,0.303 +2016-10-22 07:00:00,0.258,0.3,0.303 +2016-10-22 08:00:00,0.258,0.3,0.303 +2016-10-22 09:00:00,0.257,0.3,0.303 +2016-10-22 10:00:00,0.258,0.3,0.304 +2016-10-22 11:00:00,0.262,0.3,0.304 +2016-10-22 12:00:00,0.264,0.3,0.304 +2016-10-22 13:00:00,0.265,0.3,0.304 +2016-10-22 14:00:00,0.265,0.3,0.304 +2016-10-22 15:00:00,0.265,0.3,0.304 +2016-10-22 16:00:00,0.266,0.3,0.304 +2016-10-22 17:00:00,0.266,0.3,0.303 +2016-10-22 18:00:00,0.266,0.3,0.303 +2016-10-22 19:00:00,0.266,0.3,0.303 +2016-10-22 20:00:00,0.266,0.3,0.303 +2016-10-22 21:00:00,0.266,0.3,0.303 +2016-10-22 22:00:00,0.266,0.3,0.303 +2016-10-22 23:00:00,0.265,0.3,0.303 +2016-10-23 00:00:00,0.264,0.3,0.303 +2016-10-23 01:00:00,0.263,0.3,0.303 +2016-10-23 02:00:00,0.263,0.3,0.303 +2016-10-23 03:00:00,0.263,0.3,0.303 +2016-10-23 04:00:00,0.262,0.3,0.303 +2016-10-23 05:00:00,0.262,0.3,0.303 +2016-10-23 06:00:00,0.262,0.3,0.303 +2016-10-23 07:00:00,0.262,0.3,0.303 +2016-10-23 08:00:00,0.261,0.3,0.303 +2016-10-23 09:00:00,0.261,0.3,0.303 +2016-10-23 10:00:00,0.261,0.3,0.303 +2016-10-23 11:00:00,0.261,0.3,0.303 +2016-10-23 12:00:00,0.261,0.299,0.303 +2016-10-23 13:00:00,0.26,0.299,0.302 +2016-10-23 14:00:00,0.26,0.299,0.302 +2016-10-23 15:00:00,0.26,0.299,0.302 +2016-10-23 16:00:00,0.26,0.299,0.302 +2016-10-23 17:00:00,0.26,0.299,0.302 +2016-10-23 18:00:00,0.26,0.298,0.302 +2016-10-23 19:00:00,0.26,0.298,0.302 +2016-10-23 20:00:00,0.26,0.298,0.302 +2016-10-23 21:00:00,0.26,0.298,0.302 +2016-10-23 22:00:00,0.26,0.298,0.302 +2016-10-23 23:00:00,0.259,0.298,0.302 +2016-10-24 00:00:00,0.259,0.298,0.302 +2016-10-24 01:00:00,0.259,0.298,0.302 +2016-10-24 02:00:00,0.259,0.298,0.302 +2016-10-24 03:00:00,0.259,0.298,0.302 +2016-10-24 04:00:00,0.259,0.298,0.302 +2016-10-24 05:00:00,0.258,0.298,0.302 +2016-10-24 06:00:00,0.258,0.298,0.302 +2016-10-24 07:00:00,0.258,0.298,0.302 +2016-10-24 08:00:00,0.258,0.298,0.302 +2016-10-24 09:00:00,0.258,0.298,0.302 +2016-10-24 10:00:00,0.258,0.297,0.302 +2016-10-24 11:00:00,0.258,0.297,0.303 +2016-10-24 12:00:00,0.258,0.297,0.304 +2016-10-24 13:00:00,0.26,0.297,0.304 +2016-10-24 14:00:00,0.263,0.297,0.304 +2016-10-24 15:00:00,0.272,0.297,0.305 +2016-10-24 16:00:00,0.275,0.297,0.313 +2016-10-24 17:00:00,0.275,0.297,0.325 +2016-10-24 18:00:00,0.27399999999999997,0.297,0.325 +2016-10-24 19:00:00,0.273,0.297,0.324 +2016-10-24 20:00:00,0.272,0.297,0.32299999999999995 +2016-10-24 21:00:00,0.27,0.297,0.322 +2016-10-24 22:00:00,0.27,0.297,0.321 +2016-10-24 23:00:00,0.271,0.297,0.319 +2016-10-25 00:00:00,0.27,0.297,0.318 +2016-10-25 01:00:00,0.271,0.297,0.319 +2016-10-25 02:00:00,0.273,0.297,0.324 +2016-10-25 03:00:00,0.27399999999999997,0.297,0.32899999999999996 +2016-10-25 04:00:00,0.276,0.297,0.33399999999999996 +2016-10-25 05:00:00,0.278,0.297,0.34 +2016-10-25 06:00:00,0.27699999999999997,0.297,0.33799999999999997 +2016-10-25 07:00:00,0.275,0.297,0.336 +2016-10-25 08:00:00,0.275,0.297,0.335 +2016-10-25 09:00:00,0.27699999999999997,0.297,0.335 +2016-10-25 10:00:00,0.27699999999999997,0.297,0.335 +2016-10-25 11:00:00,0.276,0.297,0.335 +2016-10-25 12:00:00,0.275,0.297,0.335 +2016-10-25 13:00:00,0.275,0.297,0.33399999999999996 +2016-10-25 14:00:00,0.275,0.297,0.33399999999999996 +2016-10-25 15:00:00,0.275,0.297,0.33299999999999996 +2016-10-25 16:00:00,0.275,0.297,0.33 +2016-10-25 17:00:00,0.275,0.297,0.325 +2016-10-25 18:00:00,0.275,0.297,0.32299999999999995 +2016-10-25 19:00:00,0.275,0.297,0.321 +2016-10-25 20:00:00,0.275,0.297,0.32 +2016-10-25 21:00:00,0.27399999999999997,0.297,0.319 +2016-10-25 22:00:00,0.27399999999999997,0.297,0.318 +2016-10-25 23:00:00,0.273,0.297,0.317 +2016-10-26 00:00:00,0.273,0.297,0.317 +2016-10-26 01:00:00,0.272,0.297,0.315 +2016-10-26 02:00:00,0.272,0.297,0.314 +2016-10-26 03:00:00,0.272,0.297,0.313 +2016-10-26 04:00:00,0.271,0.297,0.313 +2016-10-26 05:00:00,0.271,0.297,0.313 +2016-10-26 06:00:00,0.271,0.297,0.312 +2016-10-26 07:00:00,0.27,0.297,0.312 +2016-10-26 08:00:00,0.27,0.297,0.312 +2016-10-26 09:00:00,0.27,0.297,0.311 +2016-10-26 10:00:00,0.26899999999999996,0.29600000000000004,0.311 +2016-10-26 11:00:00,0.26899999999999996,0.29600000000000004,0.31 +2016-10-26 12:00:00,0.26899999999999996,0.29600000000000004,0.31 +2016-10-26 13:00:00,0.26899999999999996,0.29600000000000004,0.31 +2016-10-26 14:00:00,0.26899999999999996,0.29600000000000004,0.31 +2016-10-26 15:00:00,0.26899999999999996,0.29600000000000004,0.31 +2016-10-26 16:00:00,0.26899999999999996,0.29600000000000004,0.309 +2016-10-26 17:00:00,0.26899999999999996,0.29600000000000004,0.309 +2016-10-26 18:00:00,0.26899999999999996,0.29600000000000004,0.309 +2016-10-26 19:00:00,0.26899999999999996,0.29600000000000004,0.309 +2016-10-26 20:00:00,0.26899999999999996,0.29600000000000004,0.308 +2016-10-26 21:00:00,0.268,0.29600000000000004,0.308 +2016-10-26 22:00:00,0.268,0.29600000000000004,0.308 +2016-10-26 23:00:00,0.268,0.29600000000000004,0.308 +2016-10-27 00:00:00,0.268,0.29600000000000004,0.308 +2016-10-27 01:00:00,0.268,0.29600000000000004,0.308 +2016-10-27 02:00:00,0.268,0.29600000000000004,0.308 +2016-10-27 03:00:00,0.268,0.29600000000000004,0.308 +2016-10-27 04:00:00,0.267,0.295,0.308 +2016-10-27 05:00:00,0.267,0.295,0.308 +2016-10-27 06:00:00,0.267,0.295,0.308 +2016-10-27 07:00:00,0.267,0.295,0.307 +2016-10-27 08:00:00,0.267,0.295,0.307 +2016-10-27 09:00:00,0.267,0.29600000000000004,0.307 +2016-10-27 10:00:00,0.266,0.29600000000000004,0.308 +2016-10-27 11:00:00,0.266,0.295,0.308 +2016-10-27 12:00:00,0.266,0.295,0.308 +2016-10-27 13:00:00,0.265,0.295,0.308 +2016-10-27 14:00:00,0.265,0.295,0.307 +2016-10-27 15:00:00,0.265,0.295,0.307 +2016-10-27 16:00:00,0.265,0.294,0.307 +2016-10-27 17:00:00,0.265,0.294,0.307 +2016-10-27 18:00:00,0.265,0.293,0.307 +2016-10-27 19:00:00,0.265,0.29100000000000004,0.307 +2016-10-27 20:00:00,0.265,0.292,0.307 +2016-10-27 21:00:00,0.265,0.292,0.307 +2016-10-27 22:00:00,0.265,0.292,0.306 +2016-10-27 23:00:00,0.265,0.292,0.306 +2016-10-28 00:00:00,0.265,0.292,0.306 +2016-10-28 01:00:00,0.265,0.292,0.306 +2016-10-28 02:00:00,0.265,0.292,0.306 +2016-10-28 03:00:00,0.265,0.292,0.306 +2016-10-28 04:00:00,0.265,0.292,0.306 +2016-10-28 05:00:00,0.265,0.292,0.306 +2016-10-28 06:00:00,0.264,0.292,0.306 +2016-10-28 07:00:00,0.265,0.292,0.306 +2016-10-28 08:00:00,0.264,0.292,0.306 +2016-10-28 09:00:00,0.264,0.292,0.306 +2016-10-28 10:00:00,0.264,0.292,0.306 +2016-10-28 11:00:00,0.264,0.292,0.306 +2016-10-28 12:00:00,0.264,0.292,0.306 +2016-10-28 13:00:00,0.264,0.292,0.306 +2016-10-28 14:00:00,0.264,0.292,0.306 +2016-10-28 15:00:00,0.264,0.292,0.306 +2016-10-28 16:00:00,0.264,0.292,0.306 +2016-10-28 17:00:00,0.263,0.292,0.306 +2016-10-28 18:00:00,0.263,0.292,0.306 +2016-10-28 19:00:00,0.263,0.292,0.306 +2016-10-28 20:00:00,0.263,0.293,0.306 +2016-10-28 21:00:00,0.263,0.293,0.306 +2016-10-28 22:00:00,0.263,0.293,0.306 +2016-10-28 23:00:00,0.263,0.293,0.306 +2016-10-29 00:00:00,0.263,0.293,0.306 +2016-10-29 01:00:00,0.263,0.293,0.306 +2016-10-29 02:00:00,0.263,0.293,0.305 +2016-10-29 03:00:00,0.263,0.293,0.306 +2016-10-29 04:00:00,0.262,0.294,0.305 +2016-10-29 05:00:00,0.263,0.295,0.305 +2016-10-29 06:00:00,0.263,0.295,0.304 +2016-10-29 07:00:00,0.263,0.295,0.304 +2016-10-29 08:00:00,0.262,0.295,0.304 +2016-10-29 09:00:00,0.262,0.295,0.304 +2016-10-29 10:00:00,0.262,0.295,0.305 +2016-10-29 11:00:00,0.262,0.293,0.305 +2016-10-29 12:00:00,0.262,0.293,0.305 +2016-10-29 13:00:00,0.262,0.293,0.304 +2016-10-29 14:00:00,0.262,0.293,0.304 +2016-10-29 15:00:00,0.262,0.293,0.304 +2016-10-29 16:00:00,0.262,0.293,0.304 +2016-10-29 17:00:00,0.261,0.293,0.304 +2016-10-29 18:00:00,0.261,0.293,0.304 +2016-10-29 19:00:00,0.261,0.293,0.304 +2016-10-29 20:00:00,0.261,0.293,0.304 +2016-10-29 21:00:00,0.261,0.293,0.304 +2016-10-29 22:00:00,0.261,0.293,0.304 +2016-10-29 23:00:00,0.261,0.293,0.304 +2016-10-30 00:00:00,0.261,0.293,0.304 +2016-10-30 01:00:00,0.262,0.293,0.304 +2016-10-30 02:00:00,0.261,0.293,0.304 +2016-10-30 03:00:00,0.261,0.293,0.304 +2016-10-30 04:00:00,0.261,0.293,0.304 +2016-10-30 05:00:00,0.261,0.293,0.304 +2016-10-30 06:00:00,0.261,0.293,0.304 +2016-10-30 07:00:00,0.261,0.293,0.304 +2016-10-30 08:00:00,0.261,0.292,0.304 +2016-10-30 09:00:00,0.261,0.292,0.304 +2016-10-30 10:00:00,0.261,0.293,0.304 +2016-10-30 11:00:00,0.261,0.292,0.304 +2016-10-30 12:00:00,0.261,0.293,0.304 +2016-10-30 13:00:00,0.261,0.292,0.304 +2016-10-30 14:00:00,0.261,0.292,0.304 +2016-10-30 15:00:00,0.26,0.292,0.304 +2016-10-30 16:00:00,0.26,0.292,0.304 +2016-10-30 17:00:00,0.26,0.29,0.304 +2016-10-30 18:00:00,0.26,0.29,0.304 +2016-10-30 19:00:00,0.26,0.303,0.303 +2016-10-30 20:00:00,0.26,0.322,0.303 +2016-10-30 21:00:00,0.26,0.322,0.303 +2016-10-30 22:00:00,0.26,0.321,0.303 +2016-10-30 23:00:00,0.26,0.321,0.303 +2016-10-31 00:00:00,0.26,0.321,0.303 +2016-10-31 01:00:00,0.26,0.319,0.303 +2016-10-31 02:00:00,0.26,0.319,0.303 +2016-10-31 03:00:00,0.26,0.318,0.303 +2016-10-31 04:00:00,0.26,0.317,0.303 +2016-10-31 05:00:00,0.26,0.317,0.303 +2016-10-31 06:00:00,0.26,0.317,0.303 +2016-10-31 07:00:00,0.259,0.315,0.303 +2016-10-31 08:00:00,0.259,0.315,0.303 +2016-10-31 09:00:00,0.26,0.315,0.303 +2016-10-31 10:00:00,0.259,0.314,0.303 +2016-10-31 11:00:00,0.259,0.314,0.304 +2016-10-31 12:00:00,0.259,0.314,0.303 +2016-10-31 13:00:00,0.259,0.314,0.303 +2016-10-31 14:00:00,0.259,0.313,0.303 +2016-10-31 15:00:00,0.259,0.313,0.303 +2016-10-31 16:00:00,0.259,0.314,0.303 +2016-10-31 17:00:00,0.259,0.314,0.303 +2016-10-31 18:00:00,0.259,0.314,0.303 +2016-10-31 19:00:00,0.259,0.314,0.303 +2016-10-31 20:00:00,0.259,0.314,0.303 +2016-10-31 21:00:00,0.259,0.314,0.303 +2016-10-31 22:00:00,0.259,0.314,0.303 +2016-10-31 23:00:00,0.259,0.313,0.303 +2016-11-01 00:00:00,0.259,0.313,0.303 +2016-11-01 01:00:00,0.259,0.312,0.303 +2016-11-01 02:00:00,0.259,0.312,0.303 +2016-11-01 03:00:00,0.259,0.312,0.303 +2016-11-01 04:00:00,0.259,0.31,0.303 +2016-11-01 05:00:00,0.258,0.31,0.303 +2016-11-01 06:00:00,0.259,0.31,0.303 +2016-11-01 07:00:00,0.258,0.309,0.303 +2016-11-01 08:00:00,0.258,0.308,0.303 +2016-11-01 09:00:00,0.258,0.306,0.304 +2016-11-01 10:00:00,0.258,0.307,0.304 +2016-11-01 11:00:00,0.258,0.316,0.304 +2016-11-01 12:00:00,0.258,0.321,0.304 +2016-11-01 13:00:00,0.258,0.32299999999999995,0.304 +2016-11-01 14:00:00,0.258,0.32299999999999995,0.304 +2016-11-01 15:00:00,0.259,0.322,0.303 +2016-11-01 16:00:00,0.258,0.322,0.303 +2016-11-01 17:00:00,0.259,0.322,0.303 +2016-11-01 18:00:00,0.259,0.322,0.303 +2016-11-01 19:00:00,0.258,0.322,0.303 +2016-11-01 20:00:00,0.258,0.322,0.303 +2016-11-01 21:00:00,0.258,0.322,0.303 +2016-11-01 22:00:00,0.258,0.322,0.303 +2016-11-01 23:00:00,0.259,0.322,0.303 +2016-11-02 00:00:00,0.258,0.322,0.303 +2016-11-02 01:00:00,0.258,0.321,0.303 +2016-11-02 02:00:00,0.258,0.321,0.303 +2016-11-02 03:00:00,0.258,0.321,0.303 +2016-11-02 04:00:00,0.258,0.321,0.303 +2016-11-02 05:00:00,0.258,0.321,0.303 +2016-11-02 06:00:00,0.258,0.321,0.303 +2016-11-02 07:00:00,0.259,0.321,0.303 +2016-11-02 08:00:00,0.259,0.32,0.304 +2016-11-02 09:00:00,0.259,0.318,0.304 +2016-11-02 10:00:00,0.259,0.319,0.304 +2016-11-02 11:00:00,0.259,0.32,0.304 +2016-11-02 12:00:00,0.259,0.321,0.304 +2016-11-02 13:00:00,0.259,0.32299999999999995,0.305 +2016-11-02 14:00:00,0.259,0.324,0.305 +2016-11-02 15:00:00,0.258,0.324,0.306 +2016-11-02 16:00:00,0.256,0.324,0.307 +2016-11-02 17:00:00,0.255,0.324,0.307 +2016-11-02 18:00:00,0.256,0.32299999999999995,0.307 +2016-11-02 19:00:00,0.256,0.322,0.307 +2016-11-02 20:00:00,0.256,0.321,0.307 +2016-11-02 21:00:00,0.257,0.321,0.307 +2016-11-02 22:00:00,0.257,0.326,0.307 +2016-11-02 23:00:00,0.257,0.327,0.307 +2016-11-03 00:00:00,0.257,0.327,0.307 +2016-11-03 01:00:00,0.258,0.327,0.307 +2016-11-03 02:00:00,0.258,0.326,0.307 +2016-11-03 03:00:00,0.258,0.326,0.307 +2016-11-03 04:00:00,0.258,0.324,0.307 +2016-11-03 05:00:00,0.258,0.324,0.307 +2016-11-03 06:00:00,0.258,0.324,0.307 +2016-11-03 07:00:00,0.258,0.32299999999999995,0.307 +2016-11-03 08:00:00,0.259,0.322,0.307 +2016-11-03 09:00:00,0.258,0.322,0.307 +2016-11-03 10:00:00,0.258,0.322,0.307 +2016-11-03 11:00:00,0.258,0.321,0.307 +2016-11-03 12:00:00,0.259,0.321,0.306 +2016-11-03 13:00:00,0.259,0.319,0.306 +2016-11-03 14:00:00,0.26,0.316,0.306 +2016-11-03 15:00:00,0.261,0.315,0.306 +2016-11-03 16:00:00,0.261,0.314,0.306 +2016-11-03 17:00:00,0.261,0.314,0.306 +2016-11-03 18:00:00,0.262,0.316,0.306 +2016-11-03 19:00:00,0.262,0.318,0.306 +2016-11-03 20:00:00,0.262,0.32,0.306 +2016-11-03 21:00:00,0.262,0.321,0.306 +2016-11-03 22:00:00,0.262,0.321,0.306 +2016-11-03 23:00:00,0.262,0.319,0.306 +2016-11-04 00:00:00,0.262,0.319,0.306 +2016-11-04 01:00:00,0.262,0.321,0.305 +2016-11-04 02:00:00,0.263,0.325,0.305 +2016-11-04 03:00:00,0.263,0.327,0.305 +2016-11-04 04:00:00,0.263,0.327,0.304 +2016-11-04 05:00:00,0.263,0.326,0.304 +2016-11-04 06:00:00,0.263,0.327,0.304 +2016-11-04 07:00:00,0.263,0.327,0.305 +2016-11-04 08:00:00,0.263,0.326,0.305 +2016-11-04 09:00:00,0.262,0.326,0.305 +2016-11-04 10:00:00,0.262,0.326,0.305 +2016-11-04 11:00:00,0.262,0.326,0.306 +2016-11-04 12:00:00,0.262,0.326,0.306 +2016-11-04 13:00:00,0.262,0.324,0.306 +2016-11-04 14:00:00,0.262,0.324,0.306 +2016-11-04 15:00:00,0.262,0.322,0.305 +2016-11-04 16:00:00,0.262,0.321,0.305 +2016-11-04 17:00:00,0.263,0.321,0.305 +2016-11-04 18:00:00,0.263,0.321,0.305 +2016-11-04 19:00:00,0.263,0.321,0.305 +2016-11-04 20:00:00,0.262,0.321,0.305 +2016-11-04 21:00:00,0.262,0.321,0.306 +2016-11-04 22:00:00,0.262,0.321,0.306 +2016-11-04 23:00:00,0.262,0.32,0.306 +2016-11-05 00:00:00,0.262,0.319,0.306 +2016-11-05 01:00:00,0.262,0.319,0.306 +2016-11-05 02:00:00,0.262,0.319,0.306 +2016-11-05 03:00:00,0.262,0.319,0.306 +2016-11-05 04:00:00,0.262,0.318,0.306 +2016-11-05 05:00:00,0.261,0.317,0.306 +2016-11-05 06:00:00,0.261,0.315,0.306 +2016-11-05 07:00:00,0.261,0.315,0.306 +2016-11-05 08:00:00,0.261,0.316,0.306 +2016-11-05 09:00:00,0.261,0.326,0.306 +2016-11-05 10:00:00,0.261,0.332,0.306 +2016-11-05 11:00:00,0.261,0.33399999999999996,0.306 +2016-11-05 12:00:00,0.261,0.33399999999999996,0.306 +2016-11-05 13:00:00,0.26,0.332,0.307 +2016-11-05 14:00:00,0.266,0.332,0.308 +2016-11-05 15:00:00,0.28800000000000003,0.331,0.322 +2016-11-05 16:00:00,0.287,0.32899999999999996,0.32799999999999996 +2016-11-05 17:00:00,0.28300000000000003,0.327,0.33 +2016-11-05 18:00:00,0.28,0.326,0.33 +2016-11-05 19:00:00,0.27899999999999997,0.324,0.32899999999999996 +2016-11-05 20:00:00,0.27699999999999997,0.322,0.32799999999999996 +2016-11-05 21:00:00,0.276,0.321,0.32799999999999996 +2016-11-05 22:00:00,0.275,0.321,0.327 +2016-11-05 23:00:00,0.27399999999999997,0.321,0.326 +2016-11-06 00:00:00,0.273,0.321,0.324 +2016-11-06 01:00:00,0.272,0.32,0.322 +2016-11-06 02:00:00,0.271,0.319,0.321 +2016-11-06 03:00:00,0.271,0.319,0.32 +2016-11-06 04:00:00,0.271,0.319,0.318 +2016-11-06 05:00:00,0.271,0.317,0.318 +2016-11-06 06:00:00,0.27,0.317,0.317 +2016-11-06 07:00:00,0.26899999999999996,0.317,0.316 +2016-11-06 08:00:00,0.26899999999999996,0.317,0.315 +2016-11-06 09:00:00,0.26899999999999996,0.317,0.314 +2016-11-06 10:00:00,0.26899999999999996,0.316,0.314 +2016-11-06 11:00:00,0.26899999999999996,0.316,0.313 +2016-11-06 12:00:00,0.26899999999999996,0.315,0.313 +2016-11-06 13:00:00,0.26899999999999996,0.315,0.313 +2016-11-06 14:00:00,0.27,0.315,0.312 +2016-11-06 15:00:00,0.27,0.314,0.312 +2016-11-06 16:00:00,0.271,0.315,0.312 +2016-11-06 17:00:00,0.271,0.315,0.311 +2016-11-06 18:00:00,0.271,0.315,0.311 +2016-11-06 19:00:00,0.271,0.315,0.311 +2016-11-06 20:00:00,0.271,0.315,0.311 +2016-11-06 21:00:00,0.271,0.315,0.311 +2016-11-06 22:00:00,0.271,0.317,0.311 +2016-11-06 23:00:00,0.271,0.317,0.31 +2016-11-07 00:00:00,0.27,0.316,0.31 +2016-11-07 01:00:00,0.27,0.315,0.31 +2016-11-07 02:00:00,0.27,0.315,0.31 +2016-11-07 03:00:00,0.27,0.315,0.31 +2016-11-07 04:00:00,0.267,0.315,0.311 +2016-11-07 05:00:00,0.267,0.314,0.311 +2016-11-07 06:00:00,0.27,0.314,0.312 +2016-11-07 07:00:00,0.28600000000000003,0.314,0.315 +2016-11-07 08:00:00,0.285,0.314,0.321 +2016-11-07 09:00:00,0.284,0.314,0.327 +2016-11-07 10:00:00,0.28300000000000003,0.314,0.33 +2016-11-07 11:00:00,0.281,0.314,0.33 +2016-11-07 12:00:00,0.27899999999999997,0.313,0.33 +2016-11-07 13:00:00,0.27699999999999997,0.312,0.32899999999999996 +2016-11-07 14:00:00,0.27699999999999997,0.31,0.32899999999999996 +2016-11-07 15:00:00,0.27699999999999997,0.31,0.32799999999999996 +2016-11-07 16:00:00,0.27699999999999997,0.31,0.32799999999999996 +2016-11-07 17:00:00,0.276,0.31,0.32799999999999996 +2016-11-07 18:00:00,0.276,0.31,0.32799999999999996 +2016-11-07 19:00:00,0.276,0.31,0.327 +2016-11-07 20:00:00,0.275,0.31,0.327 +2016-11-07 21:00:00,0.275,0.31,0.326 +2016-11-07 22:00:00,0.275,0.31,0.325 +2016-11-07 23:00:00,0.275,0.31,0.324 +2016-11-08 00:00:00,0.275,0.311,0.32299999999999995 +2016-11-08 01:00:00,0.27399999999999997,0.312,0.32299999999999995 +2016-11-08 02:00:00,0.273,0.312,0.322 +2016-11-08 03:00:00,0.273,0.312,0.321 +2016-11-08 04:00:00,0.273,0.312,0.321 +2016-11-08 05:00:00,0.271,0.312,0.321 +2016-11-08 06:00:00,0.271,0.312,0.32 +2016-11-08 07:00:00,0.272,0.312,0.32 +2016-11-08 08:00:00,0.27399999999999997,0.312,0.321 +2016-11-08 09:00:00,0.27699999999999997,0.312,0.32899999999999996 +2016-11-08 10:00:00,0.27699999999999997,0.311,0.331 +2016-11-08 11:00:00,0.27699999999999997,0.311,0.331 +2016-11-08 12:00:00,0.276,0.311,0.33 +2016-11-08 13:00:00,0.276,0.31,0.32899999999999996 +2016-11-08 14:00:00,0.276,0.31,0.32899999999999996 +2016-11-08 15:00:00,0.27399999999999997,0.31,0.32799999999999996 +2016-11-08 16:00:00,0.272,0.31,0.327 +2016-11-08 17:00:00,0.272,0.31,0.326 +2016-11-08 18:00:00,0.272,0.308,0.326 +2016-11-08 19:00:00,0.276,0.307,0.326 +2016-11-08 20:00:00,0.282,0.307,0.325 +2016-11-08 21:00:00,0.282,0.308,0.325 +2016-11-08 22:00:00,0.281,0.31,0.324 +2016-11-08 23:00:00,0.281,0.31,0.32299999999999995 +2016-11-09 00:00:00,0.28,0.31,0.322 +2016-11-09 01:00:00,0.28,0.31,0.321 +2016-11-09 02:00:00,0.27899999999999997,0.31,0.321 +2016-11-09 03:00:00,0.27899999999999997,0.309,0.32 +2016-11-09 04:00:00,0.278,0.309,0.319 +2016-11-09 05:00:00,0.278,0.309,0.318 +2016-11-09 06:00:00,0.27699999999999997,0.309,0.318 +2016-11-09 07:00:00,0.27699999999999997,0.309,0.318 +2016-11-09 08:00:00,0.276,0.309,0.318 +2016-11-09 09:00:00,0.27399999999999997,0.308,0.318 +2016-11-09 10:00:00,0.26899999999999996,0.307,0.318 +2016-11-09 11:00:00,0.267,0.306,0.317 +2016-11-09 12:00:00,0.266,0.305,0.317 +2016-11-09 13:00:00,0.266,0.305,0.316 +2016-11-09 14:00:00,0.267,0.305,0.316 +2016-11-09 15:00:00,0.268,0.304,0.316 +2016-11-09 16:00:00,0.26899999999999996,0.304,0.316 +2016-11-09 17:00:00,0.27,0.303,0.316 +2016-11-09 18:00:00,0.27,0.319,0.317 +2016-11-09 19:00:00,0.26899999999999996,0.332,0.318 +2016-11-09 20:00:00,0.27,0.332,0.318 +2016-11-09 21:00:00,0.273,0.331,0.32299999999999995 +2016-11-09 22:00:00,0.27899999999999997,0.331,0.332 +2016-11-09 23:00:00,0.285,0.331,0.33799999999999997 +2016-11-10 00:00:00,0.28600000000000003,0.33,0.341 +2016-11-10 01:00:00,0.28300000000000003,0.32799999999999996,0.33899999999999997 +2016-11-10 02:00:00,0.282,0.327,0.33899999999999997 +2016-11-10 03:00:00,0.284,0.327,0.34 +2016-11-10 04:00:00,0.282,0.327,0.33899999999999997 +2016-11-10 05:00:00,0.282,0.326,0.33899999999999997 +2016-11-10 06:00:00,0.28300000000000003,0.325,0.34 +2016-11-10 07:00:00,0.28300000000000003,0.33,0.33899999999999997 +2016-11-10 08:00:00,0.282,0.335,0.33899999999999997 +2016-11-10 09:00:00,0.281,0.336,0.33799999999999997 +2016-11-10 10:00:00,0.27899999999999997,0.33299999999999996,0.337 +2016-11-10 11:00:00,0.278,0.332,0.336 +2016-11-10 12:00:00,0.276,0.33799999999999997,0.335 +2016-11-10 13:00:00,0.275,0.336,0.335 +2016-11-10 14:00:00,0.275,0.335,0.33399999999999996 +2016-11-10 15:00:00,0.27399999999999997,0.33399999999999996,0.33399999999999996 +2016-11-10 16:00:00,0.273,0.33399999999999996,0.33299999999999996 +2016-11-10 17:00:00,0.272,0.332,0.332 +2016-11-10 18:00:00,0.272,0.32899999999999996,0.331 +2016-11-10 19:00:00,0.271,0.32799999999999996,0.331 +2016-11-10 20:00:00,0.27,0.33,0.33 +2016-11-10 21:00:00,0.27,0.331,0.32899999999999996 +2016-11-10 22:00:00,0.26899999999999996,0.32899999999999996,0.32899999999999996 +2016-11-10 23:00:00,0.26899999999999996,0.32899999999999996,0.32799999999999996 +2016-11-11 00:00:00,0.268,0.327,0.326 +2016-11-11 01:00:00,0.268,0.327,0.325 +2016-11-11 02:00:00,0.267,0.327,0.325 +2016-11-11 03:00:00,0.268,0.327,0.324 +2016-11-11 04:00:00,0.27,0.326,0.324 +2016-11-11 05:00:00,0.27399999999999997,0.326,0.32899999999999996 +2016-11-11 06:00:00,0.292,0.326,0.34600000000000003 +2016-11-11 07:00:00,0.298,0.325,0.353 +2016-11-11 08:00:00,0.301,0.325,0.36 +2016-11-11 09:00:00,0.299,0.324,0.38299999999999995 +2016-11-11 10:00:00,0.294,0.32299999999999995,0.38299999999999995 +2016-11-11 11:00:00,0.293,0.321,0.384 +2016-11-11 12:00:00,0.29,0.321,0.384 +2016-11-11 13:00:00,0.287,0.324,0.384 +2016-11-11 14:00:00,0.28300000000000003,0.325,0.385 +2016-11-11 15:00:00,0.281,0.326,0.385 +2016-11-11 16:00:00,0.27899999999999997,0.326,0.385 +2016-11-11 17:00:00,0.27699999999999997,0.326,0.382 +2016-11-11 18:00:00,0.275,0.326,0.373 +2016-11-11 19:00:00,0.27399999999999997,0.326,0.368 +2016-11-11 20:00:00,0.273,0.326,0.36700000000000005 +2016-11-11 21:00:00,0.272,0.325,0.366 +2016-11-11 22:00:00,0.27,0.324,0.35700000000000004 +2016-11-11 23:00:00,0.26899999999999996,0.324,0.354 +2016-11-12 00:00:00,0.26899999999999996,0.324,0.354 +2016-11-12 01:00:00,0.268,0.324,0.354 +2016-11-12 02:00:00,0.268,0.32299999999999995,0.353 +2016-11-12 03:00:00,0.267,0.32299999999999995,0.35200000000000004 +2016-11-12 04:00:00,0.267,0.324,0.349 +2016-11-12 05:00:00,0.267,0.324,0.337 +2016-11-12 06:00:00,0.266,0.325,0.33 +2016-11-12 07:00:00,0.266,0.326,0.32899999999999996 +2016-11-12 08:00:00,0.266,0.326,0.32799999999999996 +2016-11-12 09:00:00,0.266,0.326,0.32799999999999996 +2016-11-12 10:00:00,0.266,0.326,0.327 +2016-11-12 11:00:00,0.266,0.326,0.326 +2016-11-12 12:00:00,0.266,0.327,0.326 +2016-11-12 13:00:00,0.267,0.32,0.325 +2016-11-12 14:00:00,0.26899999999999996,0.326,0.325 +2016-11-12 15:00:00,0.26899999999999996,0.33399999999999996,0.324 +2016-11-12 16:00:00,0.27,0.33399999999999996,0.324 +2016-11-12 17:00:00,0.27,0.33299999999999996,0.32299999999999995 +2016-11-12 18:00:00,0.271,0.332,0.32299999999999995 +2016-11-12 19:00:00,0.273,0.332,0.321 +2016-11-12 20:00:00,0.273,0.332,0.32 +2016-11-12 21:00:00,0.273,0.331,0.32 +2016-11-12 22:00:00,0.273,0.331,0.32 +2016-11-12 23:00:00,0.272,0.331,0.319 +2016-11-13 00:00:00,0.272,0.33,0.319 +2016-11-13 01:00:00,0.271,0.33,0.319 +2016-11-13 02:00:00,0.271,0.32899999999999996,0.319 +2016-11-13 03:00:00,0.271,0.32799999999999996,0.319 +2016-11-13 04:00:00,0.271,0.327,0.319 +2016-11-13 05:00:00,0.27,0.327,0.319 +2016-11-13 06:00:00,0.27,0.326,0.319 +2016-11-13 07:00:00,0.27,0.327,0.317 +2016-11-13 08:00:00,0.27,0.33,0.317 +2016-11-13 09:00:00,0.27,0.331,0.317 +2016-11-13 10:00:00,0.26899999999999996,0.33,0.317 +2016-11-13 11:00:00,0.268,0.326,0.318 +2016-11-13 12:00:00,0.268,0.32299999999999995,0.318 +2016-11-13 13:00:00,0.268,0.321,0.318 +2016-11-13 14:00:00,0.268,0.321,0.318 +2016-11-13 15:00:00,0.26899999999999996,0.32,0.318 +2016-11-13 16:00:00,0.268,0.319,0.317 +2016-11-13 17:00:00,0.26899999999999996,0.319,0.317 +2016-11-13 18:00:00,0.268,0.319,0.317 +2016-11-13 19:00:00,0.26899999999999996,0.319,0.316 +2016-11-13 20:00:00,0.268,0.319,0.316 +2016-11-13 21:00:00,0.268,0.319,0.316 +2016-11-13 22:00:00,0.268,0.318,0.315 +2016-11-13 23:00:00,0.268,0.318,0.315 +2016-11-14 00:00:00,0.268,0.32,0.315 +2016-11-14 01:00:00,0.268,0.319,0.315 +2016-11-14 02:00:00,0.268,0.317,0.315 +2016-11-14 03:00:00,0.267,0.317,0.315 +2016-11-14 04:00:00,0.267,0.315,0.314 +2016-11-14 05:00:00,0.267,0.315,0.314 +2016-11-14 06:00:00,0.267,0.315,0.314 +2016-11-14 07:00:00,0.267,0.315,0.314 +2016-11-14 08:00:00,0.267,0.315,0.314 +2016-11-14 09:00:00,0.267,0.315,0.313 +2016-11-14 10:00:00,0.266,0.315,0.313 +2016-11-14 11:00:00,0.267,0.314,0.313 +2016-11-14 12:00:00,0.266,0.314,0.313 +2016-11-14 13:00:00,0.266,0.314,0.314 +2016-11-14 14:00:00,0.266,0.315,0.314 +2016-11-14 15:00:00,0.266,0.315,0.315 +2016-11-14 16:00:00,0.266,0.315,0.315 +2016-11-14 17:00:00,0.266,0.315,0.315 +2016-11-14 18:00:00,0.266,0.315,0.314 +2016-11-14 19:00:00,0.266,0.315,0.313 +2016-11-14 20:00:00,0.266,0.315,0.313 +2016-11-14 21:00:00,0.266,0.315,0.313 +2016-11-14 22:00:00,0.266,0.315,0.313 +2016-11-14 23:00:00,0.266,0.315,0.313 +2016-11-15 00:00:00,0.266,0.315,0.313 +2016-11-15 01:00:00,0.266,0.315,0.313 +2016-11-15 02:00:00,0.266,0.315,0.313 +2016-11-15 03:00:00,0.266,0.315,0.313 +2016-11-15 04:00:00,0.266,0.315,0.313 +2016-11-15 05:00:00,0.266,0.315,0.313 +2016-11-15 06:00:00,0.266,0.315,0.314 +2016-11-15 07:00:00,0.266,0.315,0.314 +2016-11-15 08:00:00,0.266,0.315,0.314 +2016-11-15 09:00:00,0.265,0.315,0.315 +2016-11-15 10:00:00,0.265,0.315,0.315 +2016-11-15 11:00:00,0.264,0.315,0.316 +2016-11-15 12:00:00,0.262,0.315,0.316 +2016-11-15 13:00:00,0.264,0.315,0.317 +2016-11-15 14:00:00,0.28300000000000003,0.315,0.325 +2016-11-15 15:00:00,0.28600000000000003,0.315,0.332 +2016-11-15 16:00:00,0.28300000000000003,0.315,0.332 +2016-11-15 17:00:00,0.281,0.315,0.332 +2016-11-15 18:00:00,0.27899999999999997,0.315,0.332 +2016-11-15 19:00:00,0.27899999999999997,0.315,0.331 +2016-11-15 20:00:00,0.278,0.315,0.33 +2016-11-15 21:00:00,0.278,0.315,0.32899999999999996 +2016-11-15 22:00:00,0.27899999999999997,0.315,0.32799999999999996 +2016-11-15 23:00:00,0.278,0.315,0.327 +2016-11-16 00:00:00,0.278,0.315,0.327 +2016-11-16 01:00:00,0.278,0.315,0.327 +2016-11-16 02:00:00,0.278,0.315,0.327 +2016-11-16 03:00:00,0.278,0.315,0.32899999999999996 +2016-11-16 04:00:00,0.29,0.315,0.34 +2016-11-16 05:00:00,0.29100000000000004,0.315,0.34299999999999997 +2016-11-16 06:00:00,0.287,0.315,0.342 +2016-11-16 07:00:00,0.28300000000000003,0.315,0.342 +2016-11-16 08:00:00,0.28800000000000003,0.315,0.342 +2016-11-16 09:00:00,0.292,0.314,0.344 +2016-11-16 10:00:00,0.287,0.314,0.34600000000000003 +2016-11-16 11:00:00,0.287,0.314,0.35700000000000004 +2016-11-16 12:00:00,0.284,0.314,0.364 +2016-11-16 13:00:00,0.282,0.314,0.365 +2016-11-16 14:00:00,0.281,0.314,0.365 +2016-11-16 15:00:00,0.28,0.314,0.364 +2016-11-16 16:00:00,0.281,0.313,0.363 +2016-11-16 17:00:00,0.282,0.312,0.36200000000000004 +2016-11-16 18:00:00,0.28,0.312,0.36200000000000004 +2016-11-16 19:00:00,0.27899999999999997,0.312,0.35700000000000004 +2016-11-16 20:00:00,0.27899999999999997,0.312,0.35100000000000003 +2016-11-16 21:00:00,0.278,0.313,0.35 +2016-11-16 22:00:00,0.278,0.314,0.349 +2016-11-16 23:00:00,0.27699999999999997,0.314,0.348 +2016-11-17 00:00:00,0.276,0.314,0.348 +2016-11-17 01:00:00,0.275,0.314,0.348 +2016-11-17 02:00:00,0.27399999999999997,0.314,0.348 +2016-11-17 03:00:00,0.27399999999999997,0.314,0.34700000000000003 +2016-11-17 04:00:00,0.27399999999999997,0.314,0.34600000000000003 +2016-11-17 05:00:00,0.273,0.314,0.34600000000000003 +2016-11-17 06:00:00,0.273,0.314,0.345 +2016-11-17 07:00:00,0.273,0.314,0.344 +2016-11-17 08:00:00,0.27399999999999997,0.314,0.344 +2016-11-17 09:00:00,0.276,0.314,0.344 +2016-11-17 10:00:00,0.27699999999999997,0.314,0.344 +2016-11-17 11:00:00,0.278,0.313,0.344 +2016-11-17 12:00:00,0.27699999999999997,0.313,0.34299999999999997 +2016-11-17 13:00:00,0.275,0.313,0.34299999999999997 +2016-11-17 14:00:00,0.275,0.312,0.34299999999999997 +2016-11-17 15:00:00,0.27399999999999997,0.312,0.34299999999999997 +2016-11-17 16:00:00,0.273,0.312,0.342 +2016-11-17 17:00:00,0.273,0.311,0.342 +2016-11-17 18:00:00,0.273,0.31,0.342 +2016-11-17 19:00:00,0.273,0.31,0.342 +2016-11-17 20:00:00,0.273,0.312,0.342 +2016-11-17 21:00:00,0.272,0.312,0.342 +2016-11-17 22:00:00,0.272,0.312,0.342 +2016-11-17 23:00:00,0.272,0.312,0.341 +2016-11-18 00:00:00,0.271,0.312,0.341 +2016-11-18 01:00:00,0.271,0.312,0.341 +2016-11-18 02:00:00,0.27,0.312,0.341 +2016-11-18 03:00:00,0.27,0.312,0.341 +2016-11-18 04:00:00,0.27,0.312,0.34 +2016-11-18 05:00:00,0.27,0.312,0.33899999999999997 +2016-11-18 06:00:00,0.27,0.312,0.335 +2016-11-18 07:00:00,0.271,0.312,0.33299999999999996 +2016-11-18 08:00:00,0.272,0.312,0.32899999999999996 +2016-11-18 09:00:00,0.273,0.312,0.32899999999999996 +2016-11-18 10:00:00,0.272,0.312,0.33299999999999996 +2016-11-18 11:00:00,0.29,0.312,0.344 +2016-11-18 12:00:00,0.29100000000000004,0.312,0.34600000000000003 +2016-11-18 13:00:00,0.287,0.312,0.34700000000000003 +2016-11-18 14:00:00,0.284,0.311,0.35 +2016-11-18 15:00:00,0.281,0.31,0.353 +2016-11-18 16:00:00,0.27899999999999997,0.31,0.354 +2016-11-18 17:00:00,0.27699999999999997,0.31,0.353 +2016-11-18 18:00:00,0.276,0.31,0.35200000000000004 +2016-11-18 19:00:00,0.275,0.31,0.35100000000000003 +2016-11-18 20:00:00,0.27399999999999997,0.31,0.35 +2016-11-18 21:00:00,0.27399999999999997,0.312,0.35 +2016-11-18 22:00:00,0.273,0.312,0.349 +2016-11-18 23:00:00,0.272,0.312,0.349 +2016-11-19 00:00:00,0.272,0.312,0.348 +2016-11-19 01:00:00,0.271,0.312,0.348 +2016-11-19 02:00:00,0.271,0.312,0.34299999999999997 +2016-11-19 03:00:00,0.27,0.312,0.342 +2016-11-19 04:00:00,0.27,0.312,0.341 +2016-11-19 05:00:00,0.273,0.312,0.341 +2016-11-19 06:00:00,0.27699999999999997,0.312,0.34 +2016-11-19 07:00:00,0.276,0.311,0.33899999999999997 +2016-11-19 08:00:00,0.27,0.311,0.34 +2016-11-19 09:00:00,0.26899999999999996,0.311,0.33899999999999997 +2016-11-19 10:00:00,0.26899999999999996,0.311,0.33399999999999996 +2016-11-19 11:00:00,0.26899999999999996,0.311,0.332 +2016-11-19 12:00:00,0.268,0.311,0.331 +2016-11-19 13:00:00,0.268,0.311,0.33 +2016-11-19 14:00:00,0.268,0.31,0.33 +2016-11-19 15:00:00,0.268,0.31,0.32899999999999996 +2016-11-19 16:00:00,0.26899999999999996,0.31,0.32899999999999996 +2016-11-19 17:00:00,0.26899999999999996,0.31,0.32799999999999996 +2016-11-19 18:00:00,0.27,0.31,0.32799999999999996 +2016-11-19 19:00:00,0.27,0.31,0.32799999999999996 +2016-11-19 20:00:00,0.27,0.31,0.327 +2016-11-19 21:00:00,0.271,0.31,0.327 +2016-11-19 22:00:00,0.27,0.31,0.327 +2016-11-19 23:00:00,0.26899999999999996,0.31,0.326 +2016-11-20 00:00:00,0.26899999999999996,0.31,0.326 +2016-11-20 01:00:00,0.26899999999999996,0.31,0.326 +2016-11-20 02:00:00,0.26899999999999996,0.31,0.326 +2016-11-20 03:00:00,0.26899999999999996,0.31,0.326 +2016-11-20 04:00:00,0.26899999999999996,0.31,0.326 +2016-11-20 05:00:00,0.26899999999999996,0.31,0.325 +2016-11-20 06:00:00,0.26899999999999996,0.31,0.325 +2016-11-20 07:00:00,0.26899999999999996,0.31,0.325 +2016-11-20 08:00:00,0.26899999999999996,0.31,0.325 +2016-11-20 09:00:00,0.26899999999999996,0.31,0.325 +2016-11-20 10:00:00,0.26899999999999996,0.31,0.325 +2016-11-20 11:00:00,0.27,0.31,0.324 +2016-11-20 12:00:00,0.271,0.31,0.324 +2016-11-20 13:00:00,0.272,0.31,0.324 +2016-11-20 14:00:00,0.272,0.31,0.32299999999999995 +2016-11-20 15:00:00,0.273,0.31,0.32299999999999995 +2016-11-20 16:00:00,0.272,0.31,0.32299999999999995 +2016-11-20 17:00:00,0.272,0.31,0.32299999999999995 +2016-11-20 18:00:00,0.272,0.31,0.322 +2016-11-20 19:00:00,0.272,0.31,0.322 +2016-11-20 20:00:00,0.272,0.31,0.322 +2016-11-20 21:00:00,0.272,0.31,0.322 +2016-11-20 22:00:00,0.271,0.31,0.322 +2016-11-20 23:00:00,0.271,0.31,0.322 +2016-11-21 00:00:00,0.271,0.31,0.321 +2016-11-21 01:00:00,0.271,0.31,0.321 +2016-11-21 02:00:00,0.271,0.31,0.321 +2016-11-21 03:00:00,0.271,0.31,0.321 +2016-11-21 04:00:00,0.271,0.31,0.321 +2016-11-21 05:00:00,0.271,0.31,0.321 +2016-11-21 06:00:00,0.271,0.31,0.321 +2016-11-21 07:00:00,0.27,0.31,0.32 +2016-11-21 08:00:00,0.271,0.31,0.321 +2016-11-21 09:00:00,0.271,0.31,0.321 +2016-11-21 10:00:00,0.27,0.31,0.32 +2016-11-21 11:00:00,0.27,0.309,0.32 +2016-11-21 12:00:00,0.27,0.309,0.32 +2016-11-21 13:00:00,0.27,0.309,0.32 +2016-11-21 14:00:00,0.27,0.309,0.32 +2016-11-21 15:00:00,0.27,0.309,0.32 +2016-11-21 16:00:00,0.27,0.309,0.32 +2016-11-21 17:00:00,0.27,0.309,0.319 +2016-11-21 18:00:00,0.27,0.309,0.319 +2016-11-21 19:00:00,0.27,0.309,0.319 +2016-11-21 20:00:00,0.27,0.31,0.318 +2016-11-21 21:00:00,0.27,0.309,0.317 +2016-11-21 22:00:00,0.26899999999999996,0.31,0.317 +2016-11-21 23:00:00,0.27,0.31,0.317 +2016-11-22 00:00:00,0.26899999999999996,0.31,0.317 +2016-11-22 01:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 02:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 03:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 04:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 05:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 06:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 07:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 08:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 09:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 10:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 11:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 12:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 13:00:00,0.26899999999999996,0.309,0.317 +2016-11-22 14:00:00,0.26899999999999996,0.309,0.316 +2016-11-22 15:00:00,0.26899999999999996,0.309,0.316 +2016-11-22 16:00:00,0.26899999999999996,0.308,0.316 +2016-11-22 17:00:00,0.26899999999999996,0.307,0.316 +2016-11-22 18:00:00,0.26899999999999996,0.307,0.316 +2016-11-22 19:00:00,0.26899999999999996,0.307,0.316 +2016-11-22 20:00:00,0.268,0.307,0.316 +2016-11-22 21:00:00,0.266,0.307,0.316 +2016-11-22 22:00:00,0.265,0.307,0.316 +2016-11-22 23:00:00,0.265,0.307,0.316 +2016-11-23 00:00:00,0.265,0.307,0.316 +2016-11-23 01:00:00,0.265,0.307,0.316 +2016-11-23 02:00:00,0.265,0.308,0.316 +2016-11-23 03:00:00,0.265,0.307,0.316 +2016-11-23 04:00:00,0.265,0.307,0.316 +2016-11-23 05:00:00,0.265,0.307,0.316 +2016-11-23 06:00:00,0.265,0.307,0.316 +2016-11-23 07:00:00,0.265,0.307,0.316 +2016-11-23 08:00:00,0.265,0.307,0.316 +2016-11-23 09:00:00,0.265,0.307,0.316 +2016-11-23 10:00:00,0.264,0.307,0.316 +2016-11-23 11:00:00,0.264,0.307,0.316 +2016-11-23 12:00:00,0.264,0.307,0.316 +2016-11-23 13:00:00,0.264,0.307,0.316 +2016-11-23 14:00:00,0.264,0.307,0.316 +2016-11-23 15:00:00,0.264,0.307,0.316 +2016-11-23 16:00:00,0.264,0.307,0.316 +2016-11-23 17:00:00,0.264,0.307,0.316 +2016-11-23 18:00:00,0.264,0.307,0.315 +2016-11-23 19:00:00,0.264,0.307,0.315 +2016-11-23 20:00:00,0.264,0.307,0.315 +2016-11-23 21:00:00,0.264,0.307,0.315 +2016-11-23 22:00:00,0.264,0.307,0.315 +2016-11-23 23:00:00,0.264,0.307,0.315 +2016-11-24 00:00:00,0.264,0.307,0.315 +2016-11-24 01:00:00,0.264,0.307,0.315 +2016-11-24 02:00:00,0.264,0.307,0.315 +2016-11-24 03:00:00,0.264,0.307,0.315 +2016-11-24 04:00:00,0.264,0.307,0.315 +2016-11-24 05:00:00,0.264,0.307,0.315 +2016-11-24 06:00:00,0.264,0.307,0.315 +2016-11-24 07:00:00,0.264,0.307,0.315 +2016-11-24 08:00:00,0.264,0.307,0.315 +2016-11-24 09:00:00,0.264,0.307,0.315 +2016-11-24 10:00:00,0.264,0.307,0.315 +2016-11-24 11:00:00,0.264,0.307,0.315 +2016-11-24 12:00:00,0.264,0.307,0.315 +2016-11-24 13:00:00,0.264,0.307,0.315 +2016-11-24 14:00:00,0.264,0.307,0.315 +2016-11-24 15:00:00,0.264,0.306,0.315 +2016-11-24 16:00:00,0.264,0.306,0.315 +2016-11-24 17:00:00,0.264,0.306,0.315 +2016-11-24 18:00:00,0.264,0.306,0.315 +2016-11-24 19:00:00,0.264,0.306,0.315 +2016-11-24 20:00:00,0.264,0.306,0.315 +2016-11-24 21:00:00,0.264,0.307,0.315 +2016-11-24 22:00:00,0.264,0.307,0.315 +2016-11-24 23:00:00,0.264,0.307,0.315 +2016-11-25 00:00:00,0.264,0.307,0.315 +2016-11-25 01:00:00,0.264,0.307,0.315 +2016-11-25 02:00:00,0.264,0.307,0.314 +2016-11-25 03:00:00,0.264,0.307,0.314 +2016-11-25 04:00:00,0.264,0.307,0.314 +2016-11-25 05:00:00,0.264,0.307,0.314 +2016-11-25 06:00:00,0.264,0.307,0.314 +2016-11-25 07:00:00,0.264,0.307,0.314 +2016-11-25 08:00:00,0.263,0.307,0.314 +2016-11-25 09:00:00,0.264,0.307,0.314 +2016-11-25 10:00:00,0.264,0.307,0.314 +2016-11-25 11:00:00,0.264,0.307,0.314 +2016-11-25 12:00:00,0.264,0.307,0.314 +2016-11-25 13:00:00,0.263,0.307,0.314 +2016-11-25 14:00:00,0.263,0.307,0.314 +2016-11-25 15:00:00,0.263,0.307,0.314 +2016-11-25 16:00:00,0.263,0.307,0.314 +2016-11-25 17:00:00,0.263,0.307,0.314 +2016-11-25 18:00:00,0.263,0.307,0.313 +2016-11-25 19:00:00,0.263,0.307,0.314 +2016-11-25 20:00:00,0.263,0.307,0.313 +2016-11-25 21:00:00,0.263,0.307,0.313 +2016-11-25 22:00:00,0.263,0.307,0.314 +2016-11-25 23:00:00,0.263,0.307,0.313 +2016-11-26 00:00:00,0.263,0.307,0.313 +2016-11-26 01:00:00,0.263,0.307,0.313 +2016-11-26 02:00:00,0.263,0.306,0.313 +2016-11-26 03:00:00,0.263,0.306,0.313 +2016-11-26 04:00:00,0.263,0.306,0.313 +2016-11-26 05:00:00,0.263,0.306,0.313 +2016-11-26 06:00:00,0.263,0.307,0.313 +2016-11-26 07:00:00,0.263,0.307,0.313 +2016-11-26 08:00:00,0.263,0.307,0.313 +2016-11-26 09:00:00,0.263,0.307,0.313 +2016-11-26 10:00:00,0.263,0.307,0.313 +2016-11-26 11:00:00,0.263,0.307,0.313 +2016-11-26 12:00:00,0.263,0.306,0.313 +2016-11-26 13:00:00,0.263,0.306,0.313 +2016-11-26 14:00:00,0.263,0.306,0.313 +2016-11-26 15:00:00,0.263,0.306,0.313 +2016-11-26 16:00:00,0.263,0.306,0.313 +2016-11-26 17:00:00,0.263,0.304,0.313 +2016-11-26 18:00:00,0.263,0.304,0.313 +2016-11-26 19:00:00,0.263,0.304,0.313 +2016-11-26 20:00:00,0.263,0.304,0.313 +2016-11-26 21:00:00,0.263,0.304,0.313 +2016-11-26 22:00:00,0.263,0.305,0.313 +2016-11-26 23:00:00,0.263,0.305,0.313 +2016-11-27 00:00:00,0.263,0.305,0.313 +2016-11-27 01:00:00,0.263,0.305,0.313 +2016-11-27 02:00:00,0.263,0.305,0.313 +2016-11-27 03:00:00,0.263,0.306,0.313 +2016-11-27 04:00:00,0.263,0.305,0.313 +2016-11-27 05:00:00,0.263,0.306,0.313 +2016-11-27 06:00:00,0.263,0.305,0.313 +2016-11-27 07:00:00,0.263,0.305,0.313 +2016-11-27 08:00:00,0.263,0.305,0.313 +2016-11-27 09:00:00,0.263,0.305,0.313 +2016-11-27 10:00:00,0.263,0.305,0.313 +2016-11-27 11:00:00,0.263,0.305,0.313 +2016-11-27 12:00:00,0.263,0.305,0.313 +2016-11-27 13:00:00,0.263,0.305,0.313 +2016-11-27 14:00:00,0.263,0.305,0.313 +2016-11-27 15:00:00,0.263,0.305,0.313 +2016-11-27 16:00:00,0.263,0.305,0.313 +2016-11-27 17:00:00,0.263,0.305,0.313 +2016-11-27 18:00:00,0.262,0.305,0.313 +2016-11-27 19:00:00,0.262,0.304,0.313 +2016-11-27 20:00:00,0.262,0.305,0.312 +2016-11-27 21:00:00,0.262,0.305,0.312 +2016-11-27 22:00:00,0.262,0.305,0.312 +2016-11-27 23:00:00,0.262,0.305,0.312 +2016-11-28 00:00:00,0.262,0.305,0.312 +2016-11-28 01:00:00,0.262,0.305,0.312 +2016-11-28 02:00:00,0.262,0.305,0.312 +2016-11-28 03:00:00,0.262,0.305,0.312 +2016-11-28 04:00:00,0.262,0.305,0.312 +2016-11-28 05:00:00,0.262,0.306,0.312 +2016-11-28 06:00:00,0.262,0.305,0.312 +2016-11-28 07:00:00,0.262,0.305,0.312 +2016-11-28 08:00:00,0.262,0.305,0.311 +2016-11-28 09:00:00,0.262,0.305,0.311 +2016-11-28 10:00:00,0.262,0.305,0.311 +2016-11-28 11:00:00,0.262,0.305,0.312 +2016-11-28 12:00:00,0.262,0.305,0.312 +2016-11-28 13:00:00,0.262,0.305,0.312 +2016-11-28 14:00:00,0.262,0.305,0.312 +2016-11-28 15:00:00,0.262,0.305,0.312 +2016-11-28 16:00:00,0.262,0.305,0.312 +2016-11-28 17:00:00,0.262,0.304,0.312 +2016-11-28 18:00:00,0.262,0.304,0.312 +2016-11-28 19:00:00,0.261,0.304,0.311 +2016-11-28 20:00:00,0.261,0.304,0.311 +2016-11-28 21:00:00,0.261,0.305,0.311 +2016-11-28 22:00:00,0.261,0.305,0.311 +2016-11-28 23:00:00,0.261,0.305,0.311 +2016-11-29 00:00:00,0.261,0.305,0.311 +2016-11-29 01:00:00,0.261,0.305,0.311 +2016-11-29 02:00:00,0.261,0.305,0.311 +2016-11-29 03:00:00,0.261,0.305,0.31 +2016-11-29 04:00:00,0.261,0.305,0.31 +2016-11-29 05:00:00,0.26,0.304,0.31 +2016-11-29 06:00:00,0.261,0.304,0.31 +2016-11-29 07:00:00,0.26,0.304,0.31 +2016-11-29 08:00:00,0.26,0.304,0.31 +2016-11-29 09:00:00,0.26,0.304,0.31 +2016-11-29 10:00:00,0.26,0.304,0.31 +2016-11-29 11:00:00,0.26,0.304,0.31 +2016-11-29 12:00:00,0.26,0.304,0.31 +2016-11-29 13:00:00,0.26,0.304,0.31 +2016-11-29 14:00:00,0.26,0.304,0.311 +2016-11-29 15:00:00,0.26,0.304,0.311 +2016-11-29 16:00:00,0.26,0.304,0.311 +2016-11-29 17:00:00,0.26,0.304,0.31 +2016-11-29 18:00:00,0.26,0.304,0.31 +2016-11-29 19:00:00,0.26,0.304,0.31 +2016-11-29 20:00:00,0.26,0.304,0.31 +2016-11-29 21:00:00,0.26,0.304,0.31 +2016-11-29 22:00:00,0.259,0.304,0.31 +2016-11-29 23:00:00,0.259,0.304,0.31 +2016-11-30 00:00:00,0.259,0.304,0.31 +2016-11-30 01:00:00,0.259,0.304,0.31 +2016-11-30 02:00:00,0.259,0.304,0.31 +2016-11-30 03:00:00,0.259,0.304,0.31 +2016-11-30 04:00:00,0.259,0.304,0.31 +2016-11-30 05:00:00,0.259,0.304,0.31 +2016-11-30 06:00:00,0.259,0.304,0.31 +2016-11-30 07:00:00,0.259,0.304,0.31 +2016-11-30 08:00:00,0.259,0.304,0.31 +2016-11-30 09:00:00,0.259,0.304,0.31 +2016-11-30 10:00:00,0.259,0.304,0.31 +2016-11-30 11:00:00,0.259,0.304,0.31 +2016-11-30 12:00:00,0.259,0.304,0.31 +2016-11-30 13:00:00,0.259,0.304,0.31 +2016-11-30 14:00:00,0.259,0.304,0.31 +2016-11-30 15:00:00,0.259,0.304,0.31 +2016-11-30 16:00:00,0.259,0.304,0.31 +2016-11-30 17:00:00,0.259,0.304,0.31 +2016-11-30 18:00:00,0.259,0.304,0.31 +2016-11-30 19:00:00,0.259,0.304,0.31 +2016-11-30 20:00:00,0.259,0.304,0.31 +2016-11-30 21:00:00,0.259,0.304,0.31 +2016-11-30 22:00:00,0.259,0.304,0.31 +2016-11-30 23:00:00,0.259,0.304,0.31 +2016-12-01 00:00:00,0.258,0.304,0.31 +2016-12-01 01:00:00,0.259,0.304,0.31 +2016-12-01 02:00:00,0.259,0.304,0.31 +2016-12-01 03:00:00,0.259,0.304,0.31 +2016-12-01 04:00:00,0.259,0.304,0.31 +2016-12-01 05:00:00,0.259,0.304,0.31 +2016-12-01 06:00:00,0.259,0.304,0.31 +2016-12-01 07:00:00,0.259,0.304,0.31 +2016-12-01 08:00:00,0.259,0.304,0.31 +2016-12-01 09:00:00,0.259,0.304,0.31 +2016-12-01 10:00:00,0.259,0.304,0.31 +2016-12-01 11:00:00,0.259,0.304,0.31 +2016-12-01 12:00:00,0.259,0.304,0.31 +2016-12-01 13:00:00,0.259,0.304,0.31 +2016-12-01 14:00:00,0.259,0.304,0.31 +2016-12-01 15:00:00,0.259,0.304,0.31 +2016-12-01 16:00:00,0.259,0.303,0.31 +2016-12-01 17:00:00,0.259,0.302,0.311 +2016-12-01 18:00:00,0.259,0.3,0.311 +2016-12-01 19:00:00,0.259,0.3,0.311 +2016-12-01 20:00:00,0.259,0.3,0.311 +2016-12-01 21:00:00,0.259,0.302,0.311 +2016-12-01 22:00:00,0.259,0.303,0.311 +2016-12-01 23:00:00,0.259,0.303,0.311 +2016-12-02 00:00:00,0.259,0.303,0.311 +2016-12-02 01:00:00,0.259,0.304,0.311 +2016-12-02 02:00:00,0.259,0.303,0.311 +2016-12-02 03:00:00,0.259,0.303,0.311 +2016-12-02 04:00:00,0.259,0.304,0.311 +2016-12-02 05:00:00,0.259,0.304,0.311 +2016-12-02 06:00:00,0.259,0.304,0.311 +2016-12-02 07:00:00,0.26,0.304,0.311 +2016-12-02 08:00:00,0.259,0.303,0.311 +2016-12-02 09:00:00,0.26,0.303,0.311 +2016-12-02 10:00:00,0.26,0.303,0.311 +2016-12-02 11:00:00,0.26,0.303,0.311 +2016-12-02 12:00:00,0.26,0.303,0.311 +2016-12-02 13:00:00,0.26,0.303,0.311 +2016-12-02 14:00:00,0.26,0.303,0.313 +2016-12-02 15:00:00,0.26,0.303,0.313 +2016-12-02 16:00:00,0.26,0.302,0.313 +2016-12-02 17:00:00,0.26,0.3,0.313 +2016-12-02 18:00:00,0.26,0.3,0.313 +2016-12-02 19:00:00,0.26,0.3,0.312 +2016-12-02 20:00:00,0.26,0.3,0.312 +2016-12-02 21:00:00,0.26,0.302,0.311 +2016-12-02 22:00:00,0.261,0.303,0.311 +2016-12-02 23:00:00,0.26,0.304,0.311 +2016-12-03 00:00:00,0.26,0.304,0.311 +2016-12-03 01:00:00,0.261,0.304,0.311 +2016-12-03 02:00:00,0.261,0.304,0.311 +2016-12-03 03:00:00,0.261,0.304,0.311 +2016-12-03 04:00:00,0.26,0.304,0.311 +2016-12-03 05:00:00,0.26,0.304,0.311 +2016-12-03 06:00:00,0.261,0.304,0.311 +2016-12-03 07:00:00,0.26,0.304,0.31 +2016-12-03 08:00:00,0.261,0.304,0.31 +2016-12-03 09:00:00,0.26,0.303,0.31 +2016-12-03 10:00:00,0.26,0.302,0.31 +2016-12-03 11:00:00,0.26,0.302,0.31 +2016-12-03 12:00:00,0.26,0.3,0.31 +2016-12-03 13:00:00,0.26,0.3,0.311 +2016-12-03 14:00:00,0.261,0.3,0.311 +2016-12-03 15:00:00,0.261,0.3,0.312 +2016-12-03 16:00:00,0.261,0.3,0.312 +2016-12-03 17:00:00,0.26,0.3,0.311 +2016-12-03 18:00:00,0.261,0.3,0.311 +2016-12-03 19:00:00,0.26,0.3,0.31 +2016-12-03 20:00:00,0.26,0.3,0.31 +2016-12-03 21:00:00,0.26,0.3,0.31 +2016-12-03 22:00:00,0.26,0.3,0.31 +2016-12-03 23:00:00,0.26,0.3,0.31 +2016-12-04 00:00:00,0.26,0.3,0.31 +2016-12-04 01:00:00,0.26,0.301,0.31 +2016-12-04 02:00:00,0.26,0.302,0.31 +2016-12-04 03:00:00,0.26,0.3,0.31 +2016-12-04 04:00:00,0.26,0.3,0.31 +2016-12-04 05:00:00,0.26,0.3,0.31 +2016-12-04 06:00:00,0.26,0.3,0.31 +2016-12-04 07:00:00,0.26,0.302,0.31 +2016-12-04 08:00:00,0.26,0.304,0.31 +2016-12-04 09:00:00,0.26,0.304,0.31 +2016-12-04 10:00:00,0.26,0.304,0.31 +2016-12-04 11:00:00,0.26,0.304,0.31 +2016-12-04 12:00:00,0.259,0.304,0.31 +2016-12-04 13:00:00,0.26,0.304,0.31 +2016-12-04 14:00:00,0.26,0.304,0.31 +2016-12-04 15:00:00,0.26,0.302,0.31 +2016-12-04 16:00:00,0.26,0.3,0.31 +2016-12-04 17:00:00,0.26,0.3,0.31 +2016-12-04 18:00:00,0.259,0.3,0.31 +2016-12-04 19:00:00,0.259,0.3,0.31 +2016-12-04 20:00:00,0.259,0.3,0.31 +2016-12-04 21:00:00,0.259,0.301,0.31 +2016-12-04 22:00:00,0.259,0.304,0.31 +2016-12-04 23:00:00,0.259,0.304,0.31 +2016-12-05 00:00:00,0.259,0.304,0.31 +2016-12-05 01:00:00,0.259,0.302,0.31 +2016-12-05 02:00:00,0.259,0.3,0.31 +2016-12-05 03:00:00,0.259,0.3,0.31 +2016-12-05 04:00:00,0.259,0.3,0.31 +2016-12-05 05:00:00,0.259,0.3,0.309 +2016-12-05 06:00:00,0.259,0.3,0.309 +2016-12-05 07:00:00,0.259,0.3,0.309 +2016-12-05 08:00:00,0.259,0.3,0.309 +2016-12-05 09:00:00,0.259,0.3,0.309 +2016-12-05 10:00:00,0.258,0.3,0.309 +2016-12-05 11:00:00,0.258,0.3,0.309 +2016-12-05 12:00:00,0.258,0.3,0.31 +2016-12-05 13:00:00,0.258,0.3,0.31 +2016-12-05 14:00:00,0.258,0.301,0.31 +2016-12-05 15:00:00,0.259,0.302,0.31 +2016-12-05 16:00:00,0.258,0.302,0.31 +2016-12-05 17:00:00,0.258,0.302,0.31 +2016-12-05 18:00:00,0.258,0.302,0.31 +2016-12-05 19:00:00,0.258,0.302,0.309 +2016-12-05 20:00:00,0.258,0.303,0.309 +2016-12-05 21:00:00,0.258,0.303,0.309 +2016-12-05 22:00:00,0.258,0.303,0.309 +2016-12-05 23:00:00,0.258,0.303,0.31 +2016-12-06 00:00:00,0.258,0.303,0.31 +2016-12-06 01:00:00,0.258,0.304,0.31 +2016-12-06 02:00:00,0.258,0.304,0.31 +2016-12-06 03:00:00,0.258,0.304,0.31 +2016-12-06 04:00:00,0.258,0.303,0.31 +2016-12-06 05:00:00,0.258,0.303,0.31 +2016-12-06 06:00:00,0.258,0.303,0.31 +2016-12-06 07:00:00,0.258,0.303,0.31 +2016-12-06 08:00:00,0.258,0.303,0.31 +2016-12-06 09:00:00,0.258,0.303,0.31 +2016-12-06 10:00:00,0.258,0.302,0.31 +2016-12-06 11:00:00,0.258,0.302,0.31 +2016-12-06 12:00:00,0.258,0.302,0.31 +2016-12-06 13:00:00,0.258,0.302,0.31 +2016-12-06 14:00:00,0.258,0.302,0.31 +2016-12-06 15:00:00,0.258,0.302,0.31 +2016-12-06 16:00:00,0.258,0.302,0.31 +2016-12-06 17:00:00,0.258,0.302,0.31 +2016-12-06 18:00:00,0.258,0.302,0.31 +2016-12-06 19:00:00,0.258,0.302,0.31 +2016-12-06 20:00:00,0.258,0.302,0.31 +2016-12-06 21:00:00,0.258,0.303,0.309 +2016-12-06 22:00:00,0.258,0.303,0.309 +2016-12-06 23:00:00,0.258,0.303,0.309 +2016-12-07 00:00:00,0.258,0.303,0.309 +2016-12-07 01:00:00,0.258,0.303,0.31 +2016-12-07 02:00:00,0.258,0.303,0.309 +2016-12-07 03:00:00,0.258,0.303,0.309 +2016-12-07 04:00:00,0.258,0.303,0.309 +2016-12-07 05:00:00,0.258,0.303,0.309 +2016-12-07 06:00:00,0.258,0.303,0.309 +2016-12-07 07:00:00,0.258,0.303,0.31 +2016-12-07 08:00:00,0.258,0.304,0.31 +2016-12-07 09:00:00,0.258,0.304,0.309 +2016-12-07 10:00:00,0.258,0.304,0.31 +2016-12-07 11:00:00,0.258,0.304,0.31 +2016-12-07 12:00:00,0.258,0.304,0.31 +2016-12-07 13:00:00,0.258,0.304,0.31 +2016-12-07 14:00:00,0.259,0.304,0.311 +2016-12-07 15:00:00,0.259,0.303,0.311 +2016-12-07 16:00:00,0.258,0.303,0.311 +2016-12-07 17:00:00,0.259,0.304,0.311 +2016-12-07 18:00:00,0.259,0.304,0.31 +2016-12-07 19:00:00,0.259,0.304,0.31 +2016-12-07 20:00:00,0.258,0.302,0.31 +2016-12-07 21:00:00,0.259,0.302,0.31 +2016-12-07 22:00:00,0.259,0.302,0.31 +2016-12-07 23:00:00,0.258,0.302,0.31 +2016-12-08 00:00:00,0.259,0.302,0.31 +2016-12-08 01:00:00,0.259,0.302,0.31 +2016-12-08 02:00:00,0.259,0.302,0.31 +2016-12-08 03:00:00,0.258,0.302,0.309 +2016-12-08 04:00:00,0.258,0.302,0.309 +2016-12-08 05:00:00,0.258,0.302,0.309 +2016-12-08 06:00:00,0.258,0.302,0.309 +2016-12-08 07:00:00,0.258,0.302,0.309 +2016-12-08 08:00:00,0.259,0.302,0.309 +2016-12-08 09:00:00,0.259,0.302,0.309 +2016-12-08 10:00:00,0.258,0.302,0.309 +2016-12-08 11:00:00,0.259,0.301,0.309 +2016-12-08 12:00:00,0.258,0.301,0.31 +2016-12-08 13:00:00,0.259,0.301,0.31 +2016-12-08 14:00:00,0.259,0.302,0.31 +2016-12-08 15:00:00,0.259,0.302,0.31 +2016-12-08 16:00:00,0.259,0.302,0.311 +2016-12-08 17:00:00,0.259,0.302,0.311 +2016-12-08 18:00:00,0.259,0.303,0.31 +2016-12-08 19:00:00,0.26,0.313,0.31 +2016-12-08 20:00:00,0.259,0.314,0.31 +2016-12-08 21:00:00,0.259,0.314,0.31 +2016-12-08 22:00:00,0.259,0.314,0.31 +2016-12-08 23:00:00,0.259,0.314,0.31 +2016-12-09 00:00:00,0.259,0.314,0.31 +2016-12-09 01:00:00,0.259,0.314,0.31 +2016-12-09 02:00:00,0.259,0.314,0.31 +2016-12-09 03:00:00,0.259,0.314,0.31 +2016-12-09 04:00:00,0.26,0.314,0.31 +2016-12-09 05:00:00,0.26,0.314,0.31 +2016-12-09 06:00:00,0.26,0.314,0.311 +2016-12-09 07:00:00,0.26,0.314,0.311 +2016-12-09 08:00:00,0.26,0.314,0.31 +2016-12-09 09:00:00,0.26,0.314,0.31 +2016-12-09 10:00:00,0.26,0.314,0.31 +2016-12-09 11:00:00,0.26,0.314,0.31 +2016-12-09 12:00:00,0.26,0.314,0.31 +2016-12-09 13:00:00,0.26,0.314,0.31 +2016-12-09 14:00:00,0.26,0.314,0.31 +2016-12-09 15:00:00,0.26,0.314,0.31 +2016-12-09 16:00:00,0.26,0.314,0.31 +2016-12-09 17:00:00,0.26,0.314,0.31 +2016-12-09 18:00:00,0.26,0.314,0.31 +2016-12-09 19:00:00,0.26,0.314,0.31 +2016-12-09 20:00:00,0.26,0.314,0.31 +2016-12-09 21:00:00,0.26,0.314,0.31 +2016-12-09 22:00:00,0.26,0.314,0.31 +2016-12-09 23:00:00,0.26,0.314,0.31 +2016-12-10 00:00:00,0.26,0.314,0.31 +2016-12-10 01:00:00,0.26,0.314,0.31 +2016-12-10 02:00:00,0.26,0.314,0.31 +2016-12-10 03:00:00,0.26,0.314,0.31 +2016-12-10 04:00:00,0.26,0.314,0.31 +2016-12-10 05:00:00,0.26,0.314,0.31 +2016-12-10 06:00:00,0.26,0.314,0.31 +2016-12-10 07:00:00,0.26,0.314,0.31 +2016-12-10 08:00:00,0.261,0.313,0.31 +2016-12-10 09:00:00,0.26,0.313,0.31 +2016-12-10 10:00:00,0.261,0.313,0.31 +2016-12-10 11:00:00,0.261,0.313,0.311 +2016-12-10 12:00:00,0.261,0.312,0.311 +2016-12-10 13:00:00,0.261,0.312,0.311 +2016-12-10 14:00:00,0.261,0.312,0.311 +2016-12-10 15:00:00,0.261,0.312,0.311 +2016-12-10 16:00:00,0.261,0.312,0.311 +2016-12-10 17:00:00,0.261,0.312,0.311 +2016-12-10 18:00:00,0.261,0.312,0.311 +2016-12-10 19:00:00,0.261,0.312,0.31 +2016-12-10 20:00:00,0.261,0.312,0.311 +2016-12-10 21:00:00,0.261,0.312,0.311 +2016-12-10 22:00:00,0.261,0.312,0.311 +2016-12-10 23:00:00,0.261,0.312,0.311 +2016-12-11 00:00:00,0.261,0.312,0.311 +2016-12-11 01:00:00,0.261,0.312,0.311 +2016-12-11 02:00:00,0.261,0.312,0.311 +2016-12-11 03:00:00,0.261,0.312,0.311 +2016-12-11 04:00:00,0.261,0.312,0.311 +2016-12-11 05:00:00,0.261,0.312,0.311 +2016-12-11 06:00:00,0.261,0.312,0.311 +2016-12-11 07:00:00,0.261,0.312,0.311 +2016-12-11 08:00:00,0.261,0.312,0.311 +2016-12-11 09:00:00,0.262,0.312,0.311 +2016-12-11 10:00:00,0.262,0.312,0.311 +2016-12-11 11:00:00,0.262,0.311,0.311 +2016-12-11 12:00:00,0.261,0.31,0.311 +2016-12-11 13:00:00,0.261,0.31,0.311 +2016-12-11 14:00:00,0.262,0.31,0.311 +2016-12-11 15:00:00,0.261,0.31,0.311 +2016-12-11 16:00:00,0.262,0.31,0.311 +2016-12-11 17:00:00,0.262,0.31,0.311 +2016-12-11 18:00:00,0.262,0.31,0.311 +2016-12-11 19:00:00,0.262,0.311,0.311 +2016-12-11 20:00:00,0.262,0.311,0.311 +2016-12-11 21:00:00,0.262,0.311,0.31 +2016-12-11 22:00:00,0.262,0.311,0.31 +2016-12-11 23:00:00,0.262,0.31,0.31 +2016-12-12 00:00:00,0.262,0.31,0.311 +2016-12-12 01:00:00,0.262,0.31,0.311 +2016-12-12 02:00:00,0.262,0.31,0.311 +2016-12-12 03:00:00,0.262,0.31,0.311 +2016-12-12 04:00:00,0.262,0.31,0.311 +2016-12-12 05:00:00,0.262,0.31,0.311 +2016-12-12 06:00:00,0.262,0.31,0.311 +2016-12-12 07:00:00,0.262,0.31,0.311 +2016-12-12 08:00:00,0.262,0.31,0.311 +2016-12-12 09:00:00,0.262,0.31,0.31 +2016-12-12 10:00:00,0.262,0.31,0.311 +2016-12-12 11:00:00,0.262,0.31,0.311 +2016-12-12 12:00:00,0.262,0.31,0.311 +2016-12-12 13:00:00,0.262,0.31,0.311 +2016-12-12 14:00:00,0.262,0.31,0.31 +2016-12-12 15:00:00,0.262,0.31,0.31 +2016-12-12 16:00:00,0.262,0.31,0.31 +2016-12-12 17:00:00,0.262,0.31,0.31 +2016-12-12 18:00:00,0.262,0.31,0.31 +2016-12-12 19:00:00,0.262,0.31,0.31 +2016-12-12 20:00:00,0.262,0.31,0.31 +2016-12-12 21:00:00,0.262,0.31,0.31 +2016-12-12 22:00:00,0.262,0.31,0.31 +2016-12-12 23:00:00,0.262,0.31,0.31 +2016-12-13 00:00:00,0.262,0.31,0.31 +2016-12-13 01:00:00,0.262,0.31,0.31 +2016-12-13 02:00:00,0.262,0.31,0.31 +2016-12-13 03:00:00,0.262,0.31,0.31 +2016-12-13 04:00:00,0.262,0.31,0.31 +2016-12-13 05:00:00,0.262,0.312,0.31 +2016-12-13 06:00:00,0.262,0.312,0.31 +2016-12-13 07:00:00,0.262,0.312,0.31 +2016-12-13 08:00:00,0.262,0.312,0.31 +2016-12-13 09:00:00,0.262,0.312,0.31 +2016-12-13 10:00:00,0.263,0.312,0.31 +2016-12-13 11:00:00,0.262,0.31,0.31 +2016-12-13 12:00:00,0.262,0.31,0.31 +2016-12-13 13:00:00,0.263,0.31,0.31 +2016-12-13 14:00:00,0.262,0.31,0.31 +2016-12-13 15:00:00,0.263,0.31,0.31 +2016-12-13 16:00:00,0.262,0.31,0.311 +2016-12-13 17:00:00,0.262,0.31,0.311 +2016-12-13 18:00:00,0.262,0.31,0.312 +2016-12-13 19:00:00,0.262,0.31,0.312 +2016-12-13 20:00:00,0.262,0.31,0.312 +2016-12-13 21:00:00,0.262,0.31,0.312 +2016-12-13 22:00:00,0.262,0.31,0.312 +2016-12-13 23:00:00,0.262,0.31,0.312 +2016-12-14 00:00:00,0.262,0.31,0.312 +2016-12-14 01:00:00,0.262,0.31,0.312 +2016-12-14 02:00:00,0.262,0.311,0.312 +2016-12-14 03:00:00,0.262,0.31,0.311 +2016-12-14 04:00:00,0.262,0.311,0.312 +2016-12-14 05:00:00,0.262,0.31,0.312 +2016-12-14 06:00:00,0.261,0.31,0.313 +2016-12-14 07:00:00,0.261,0.31,0.313 +2016-12-14 08:00:00,0.264,0.31,0.314 +2016-12-14 09:00:00,0.26899999999999996,0.31,0.314 +2016-12-14 10:00:00,0.275,0.31,0.314 +2016-12-14 11:00:00,0.27699999999999997,0.31,0.313 +2016-12-14 12:00:00,0.278,0.31,0.313 +2016-12-14 13:00:00,0.278,0.31,0.313 +2016-12-14 14:00:00,0.278,0.31,0.313 +2016-12-14 15:00:00,0.27899999999999997,0.309,0.313 +2016-12-14 16:00:00,0.278,0.31,0.313 +2016-12-14 17:00:00,0.278,0.31,0.313 +2016-12-14 18:00:00,0.278,0.31,0.313 +2016-12-14 19:00:00,0.278,0.31,0.313 +2016-12-14 20:00:00,0.278,0.31,0.313 +2016-12-14 21:00:00,0.278,0.31,0.313 +2016-12-14 22:00:00,0.278,0.31,0.313 +2016-12-14 23:00:00,0.278,0.31,0.313 +2016-12-15 00:00:00,0.278,0.31,0.313 +2016-12-15 01:00:00,0.278,0.31,0.313 +2016-12-15 02:00:00,0.278,0.31,0.313 +2016-12-15 03:00:00,0.278,0.31,0.313 +2016-12-15 04:00:00,0.278,0.31,0.313 +2016-12-15 05:00:00,0.278,0.31,0.313 +2016-12-15 06:00:00,0.278,0.31,0.313 +2016-12-15 07:00:00,0.278,0.31,0.313 +2016-12-15 08:00:00,0.278,0.31,0.313 +2016-12-15 09:00:00,0.278,0.31,0.313 +2016-12-15 10:00:00,0.278,0.31,0.313 +2016-12-15 11:00:00,0.278,0.31,0.313 +2016-12-15 12:00:00,0.278,0.31,0.313 +2016-12-15 13:00:00,0.278,0.31,0.313 +2016-12-15 14:00:00,0.278,0.31,0.313 +2016-12-15 15:00:00,0.278,0.31,0.313 +2016-12-15 16:00:00,0.278,0.31,0.313 +2016-12-15 17:00:00,0.275,0.309,0.313 +2016-12-15 18:00:00,0.275,0.309,0.313 +2016-12-15 19:00:00,0.275,0.309,0.313 +2016-12-15 20:00:00,0.275,0.309,0.313 +2016-12-15 21:00:00,0.27399999999999997,0.309,0.312 +2016-12-15 22:00:00,0.27399999999999997,0.309,0.312 +2016-12-15 23:00:00,0.27399999999999997,0.309,0.312 +2016-12-16 00:00:00,0.27399999999999997,0.309,0.312 +2016-12-16 01:00:00,0.27399999999999997,0.309,0.312 +2016-12-16 02:00:00,0.27399999999999997,0.309,0.312 +2016-12-16 03:00:00,0.27399999999999997,0.309,0.312 +2016-12-16 04:00:00,0.27399999999999997,0.309,0.312 +2016-12-16 05:00:00,0.27399999999999997,0.309,0.312 +2016-12-16 06:00:00,0.273,0.309,0.312 +2016-12-16 07:00:00,0.273,0.309,0.312 +2016-12-16 08:00:00,0.273,0.309,0.312 +2016-12-16 09:00:00,0.273,0.309,0.312 +2016-12-16 10:00:00,0.273,0.309,0.311 +2016-12-16 11:00:00,0.273,0.309,0.311 +2016-12-16 12:00:00,0.273,0.309,0.311 +2016-12-16 13:00:00,0.273,0.309,0.311 +2016-12-16 14:00:00,0.273,0.309,0.311 +2016-12-16 15:00:00,0.272,0.309,0.311 +2016-12-16 16:00:00,0.272,0.308,0.311 +2016-12-16 17:00:00,0.272,0.307,0.311 +2016-12-16 18:00:00,0.272,0.306,0.311 +2016-12-16 19:00:00,0.272,0.305,0.311 +2016-12-16 20:00:00,0.272,0.305,0.311 +2016-12-16 21:00:00,0.271,0.305,0.311 +2016-12-16 22:00:00,0.271,0.305,0.311 +2016-12-16 23:00:00,0.271,0.305,0.311 +2016-12-17 00:00:00,0.271,0.305,0.311 +2016-12-17 01:00:00,0.271,0.305,0.311 +2016-12-17 02:00:00,0.271,0.305,0.311 +2016-12-17 03:00:00,0.271,0.306,0.31 +2016-12-17 04:00:00,0.271,0.306,0.31 +2016-12-17 05:00:00,0.271,0.307,0.31 +2016-12-17 06:00:00,0.27,0.307,0.31 +2016-12-17 07:00:00,0.27,0.307,0.31 +2016-12-17 08:00:00,0.27,0.307,0.31 +2016-12-17 09:00:00,0.27,0.307,0.31 +2016-12-17 10:00:00,0.27,0.307,0.31 +2016-12-17 11:00:00,0.27,0.308,0.31 +2016-12-17 12:00:00,0.27,0.309,0.31 +2016-12-17 13:00:00,0.27,0.309,0.31 +2016-12-17 14:00:00,0.27,0.309,0.31 +2016-12-17 15:00:00,0.26899999999999996,0.309,0.31 +2016-12-17 16:00:00,0.26899999999999996,0.31,0.31 +2016-12-17 17:00:00,0.26899999999999996,0.31,0.31 +2016-12-17 18:00:00,0.26899999999999996,0.31,0.31 +2016-12-17 19:00:00,0.26899999999999996,0.311,0.31 +2016-12-17 20:00:00,0.26899999999999996,0.312,0.31 +2016-12-17 21:00:00,0.26899999999999996,0.312,0.31 +2016-12-17 22:00:00,0.26899999999999996,0.313,0.31 +2016-12-17 23:00:00,0.26899999999999996,0.314,0.31 +2016-12-18 00:00:00,0.26899999999999996,0.314,0.31 +2016-12-18 01:00:00,0.26899999999999996,0.314,0.31 +2016-12-18 02:00:00,0.26899999999999996,0.314,0.31 +2016-12-18 03:00:00,0.26899999999999996,0.314,0.31 +2016-12-18 04:00:00,0.268,0.314,0.31 +2016-12-18 05:00:00,0.268,0.314,0.31 +2016-12-18 06:00:00,0.268,0.314,0.31 +2016-12-18 07:00:00,0.268,0.315,0.31 +2016-12-18 08:00:00,0.268,0.314,0.31 +2016-12-18 09:00:00,0.268,0.313,0.31 +2016-12-18 10:00:00,0.268,0.311,0.31 +2016-12-18 11:00:00,0.268,0.312,0.31 +2016-12-18 12:00:00,0.268,0.312,0.31 +2016-12-18 13:00:00,0.268,0.311,0.31 +2016-12-18 14:00:00,0.268,0.31,0.31 +2016-12-18 15:00:00,0.268,0.31,0.31 +2016-12-18 16:00:00,0.268,0.31,0.31 +2016-12-18 17:00:00,0.268,0.31,0.31 +2016-12-18 18:00:00,0.268,0.31,0.31 +2016-12-18 19:00:00,0.268,0.312,0.31 +2016-12-18 20:00:00,0.268,0.312,0.31 +2016-12-18 21:00:00,0.268,0.312,0.31 +2016-12-18 22:00:00,0.268,0.312,0.31 +2016-12-18 23:00:00,0.267,0.312,0.31 +2016-12-19 00:00:00,0.267,0.312,0.31 +2016-12-19 01:00:00,0.267,0.312,0.31 +2016-12-19 02:00:00,0.267,0.313,0.31 +2016-12-19 03:00:00,0.267,0.313,0.31 +2016-12-19 04:00:00,0.267,0.314,0.31 +2016-12-19 05:00:00,0.267,0.313,0.31 +2016-12-19 06:00:00,0.267,0.313,0.31 +2016-12-19 07:00:00,0.267,0.314,0.31 +2016-12-19 08:00:00,0.267,0.314,0.31 +2016-12-19 09:00:00,0.267,0.314,0.31 +2016-12-19 10:00:00,0.267,0.314,0.31 +2016-12-19 11:00:00,0.267,0.314,0.31 +2016-12-19 12:00:00,0.267,0.314,0.31 +2016-12-19 13:00:00,0.267,0.314,0.31 +2016-12-19 14:00:00,0.267,0.313,0.31 +2016-12-19 15:00:00,0.267,0.314,0.31 +2016-12-19 16:00:00,0.267,0.314,0.309 +2016-12-19 17:00:00,0.267,0.314,0.309 +2016-12-19 18:00:00,0.267,0.314,0.309 +2016-12-19 19:00:00,0.267,0.314,0.309 +2016-12-19 20:00:00,0.267,0.314,0.309 +2016-12-19 21:00:00,0.267,0.314,0.309 +2016-12-19 22:00:00,0.267,0.314,0.309 +2016-12-19 23:00:00,0.267,0.315,0.309 +2016-12-20 00:00:00,0.267,0.315,0.309 +2016-12-20 01:00:00,0.267,0.315,0.309 +2016-12-20 02:00:00,0.267,0.315,0.309 +2016-12-20 03:00:00,0.266,0.315,0.309 +2016-12-20 04:00:00,0.267,0.314,0.309 +2016-12-20 05:00:00,0.267,0.314,0.309 +2016-12-20 06:00:00,0.266,0.314,0.309 +2016-12-20 07:00:00,0.267,0.314,0.309 +2016-12-20 08:00:00,0.267,0.314,0.309 +2016-12-20 09:00:00,0.267,0.314,0.309 +2016-12-20 10:00:00,0.266,0.314,0.309 +2016-12-20 11:00:00,0.267,0.314,0.309 +2016-12-20 12:00:00,0.267,0.314,0.309 +2016-12-20 13:00:00,0.267,0.314,0.309 +2016-12-20 14:00:00,0.267,0.314,0.309 +2016-12-20 15:00:00,0.266,0.314,0.309 +2016-12-20 16:00:00,0.266,0.314,0.309 +2016-12-20 17:00:00,0.266,0.314,0.309 +2016-12-20 18:00:00,0.266,0.314,0.309 +2016-12-20 19:00:00,0.266,0.315,0.309 +2016-12-20 20:00:00,0.266,0.315,0.309 +2016-12-20 21:00:00,0.266,0.316,0.309 +2016-12-20 22:00:00,0.266,0.317,0.308 +2016-12-20 23:00:00,0.266,0.317,0.308 +2016-12-21 00:00:00,0.266,0.317,0.308 +2016-12-21 01:00:00,0.266,0.317,0.308 +2016-12-21 02:00:00,0.266,0.317,0.308 +2016-12-21 03:00:00,0.266,0.317,0.308 +2016-12-21 04:00:00,0.266,0.317,0.308 +2016-12-21 05:00:00,0.266,0.317,0.308 +2016-12-21 06:00:00,0.266,0.317,0.308 +2016-12-21 07:00:00,0.265,0.317,0.308 +2016-12-21 08:00:00,0.265,0.317,0.308 +2016-12-21 09:00:00,0.266,0.317,0.308 +2016-12-21 10:00:00,0.266,0.317,0.308 +2016-12-21 11:00:00,0.265,0.317,0.308 +2016-12-21 12:00:00,0.266,0.317,0.308 +2016-12-21 13:00:00,0.265,0.317,0.309 +2016-12-21 14:00:00,0.265,0.317,0.309 +2016-12-21 15:00:00,0.265,0.317,0.309 +2016-12-21 16:00:00,0.265,0.317,0.309 +2016-12-21 17:00:00,0.265,0.317,0.309 +2016-12-21 18:00:00,0.265,0.317,0.309 +2016-12-21 19:00:00,0.265,0.317,0.309 +2016-12-21 20:00:00,0.265,0.317,0.309 +2016-12-21 21:00:00,0.265,0.317,0.309 +2016-12-21 22:00:00,0.265,0.317,0.309 +2016-12-21 23:00:00,0.265,0.317,0.309 +2016-12-22 00:00:00,0.265,0.317,0.309 +2016-12-22 01:00:00,0.265,0.317,0.309 +2016-12-22 02:00:00,0.265,0.317,0.309 +2016-12-22 03:00:00,0.265,0.317,0.309 +2016-12-22 04:00:00,0.265,0.316,0.309 +2016-12-22 05:00:00,0.265,0.316,0.309 +2016-12-22 06:00:00,0.265,0.316,0.309 +2016-12-22 07:00:00,0.265,0.316,0.309 +2016-12-22 08:00:00,0.265,0.316,0.309 +2016-12-22 09:00:00,0.265,0.316,0.309 +2016-12-22 10:00:00,0.265,0.316,0.309 +2016-12-22 11:00:00,0.265,0.316,0.309 +2016-12-22 12:00:00,0.265,0.316,0.309 +2016-12-22 13:00:00,0.265,0.316,0.31 +2016-12-22 14:00:00,0.263,0.315,0.313 +2016-12-22 15:00:00,0.263,0.316,0.313 +2016-12-22 16:00:00,0.262,0.316,0.313 +2016-12-22 17:00:00,0.262,0.316,0.313 +2016-12-22 18:00:00,0.262,0.316,0.313 +2016-12-22 19:00:00,0.262,0.316,0.313 +2016-12-22 20:00:00,0.263,0.317,0.314 +2016-12-22 21:00:00,0.263,0.316,0.314 +2016-12-22 22:00:00,0.264,0.316,0.313 +2016-12-22 23:00:00,0.265,0.316,0.314 +2016-12-23 00:00:00,0.265,0.316,0.313 +2016-12-23 01:00:00,0.266,0.316,0.314 +2016-12-23 02:00:00,0.266,0.316,0.313 +2016-12-23 03:00:00,0.267,0.316,0.313 +2016-12-23 04:00:00,0.267,0.316,0.313 +2016-12-23 05:00:00,0.267,0.315,0.313 +2016-12-23 06:00:00,0.267,0.316,0.313 +2016-12-23 07:00:00,0.267,0.316,0.313 +2016-12-23 08:00:00,0.267,0.316,0.313 +2016-12-23 09:00:00,0.267,0.316,0.313 +2016-12-23 10:00:00,0.267,0.316,0.313 +2016-12-23 11:00:00,0.268,0.315,0.313 +2016-12-23 12:00:00,0.268,0.315,0.313 +2016-12-23 13:00:00,0.268,0.315,0.313 +2016-12-23 14:00:00,0.268,0.315,0.313 +2016-12-23 15:00:00,0.26899999999999996,0.315,0.313 +2016-12-23 16:00:00,0.26899999999999996,0.314,0.313 +2016-12-23 17:00:00,0.26899999999999996,0.314,0.313 +2016-12-23 18:00:00,0.26899999999999996,0.314,0.313 +2016-12-23 19:00:00,0.26899999999999996,0.314,0.313 +2016-12-23 20:00:00,0.26899999999999996,0.314,0.313 +2016-12-23 21:00:00,0.26899999999999996,0.314,0.313 +2016-12-23 22:00:00,0.26899999999999996,0.314,0.313 +2016-12-23 23:00:00,0.26899999999999996,0.314,0.313 +2016-12-24 00:00:00,0.26899999999999996,0.314,0.313 +2016-12-24 01:00:00,0.26899999999999996,0.314,0.313 +2016-12-24 02:00:00,0.26899999999999996,0.314,0.313 +2016-12-24 03:00:00,0.26899999999999996,0.314,0.313 +2016-12-24 04:00:00,0.26899999999999996,0.314,0.313 +2016-12-24 05:00:00,0.268,0.314,0.313 +2016-12-24 06:00:00,0.268,0.314,0.313 +2016-12-24 07:00:00,0.266,0.314,0.314 +2016-12-24 08:00:00,0.265,0.314,0.314 +2016-12-24 09:00:00,0.266,0.314,0.314 +2016-12-24 10:00:00,0.266,0.314,0.313 +2016-12-24 11:00:00,0.266,0.314,0.313 +2016-12-24 12:00:00,0.266,0.314,0.313 +2016-12-24 13:00:00,0.267,0.313,0.313 +2016-12-24 14:00:00,0.267,0.313,0.313 +2016-12-24 15:00:00,0.268,0.312,0.313 +2016-12-24 16:00:00,0.26899999999999996,0.312,0.313 +2016-12-24 17:00:00,0.26899999999999996,0.312,0.313 +2016-12-24 18:00:00,0.26899999999999996,0.312,0.313 +2016-12-24 19:00:00,0.26899999999999996,0.312,0.313 +2016-12-24 20:00:00,0.26899999999999996,0.312,0.313 +2016-12-24 21:00:00,0.26899999999999996,0.312,0.313 +2016-12-24 22:00:00,0.26899999999999996,0.312,0.312 +2016-12-24 23:00:00,0.26899999999999996,0.312,0.312 +2016-12-25 00:00:00,0.26899999999999996,0.312,0.312 +2016-12-25 01:00:00,0.26899999999999996,0.312,0.312 +2016-12-25 02:00:00,0.268,0.312,0.313 +2016-12-25 03:00:00,0.267,0.312,0.313 +2016-12-25 04:00:00,0.266,0.312,0.314 +2016-12-25 05:00:00,0.265,0.312,0.314 +2016-12-25 06:00:00,0.265,0.312,0.314 +2016-12-25 07:00:00,0.265,0.312,0.314 +2016-12-25 08:00:00,0.265,0.312,0.314 +2016-12-25 09:00:00,0.265,0.311,0.314 +2016-12-25 10:00:00,0.265,0.311,0.314 +2016-12-25 11:00:00,0.265,0.311,0.314 +2016-12-25 12:00:00,0.265,0.311,0.313 +2016-12-25 13:00:00,0.265,0.31,0.313 +2016-12-25 14:00:00,0.266,0.31,0.313 +2016-12-25 15:00:00,0.266,0.31,0.313 +2016-12-25 16:00:00,0.267,0.31,0.313 +2016-12-25 17:00:00,0.267,0.31,0.313 +2016-12-25 18:00:00,0.266,0.31,0.313 +2016-12-25 19:00:00,0.267,0.31,0.313 +2016-12-25 20:00:00,0.267,0.31,0.313 +2016-12-25 21:00:00,0.267,0.31,0.313 +2016-12-25 22:00:00,0.267,0.31,0.313 +2016-12-25 23:00:00,0.266,0.31,0.313 +2016-12-26 00:00:00,0.266,0.31,0.313 +2016-12-26 01:00:00,0.265,0.31,0.313 +2016-12-26 02:00:00,0.265,0.31,0.313 +2016-12-26 03:00:00,0.265,0.31,0.313 +2016-12-26 04:00:00,0.265,0.31,0.313 +2016-12-26 05:00:00,0.265,0.31,0.313 +2016-12-26 06:00:00,0.265,0.31,0.313 +2016-12-26 07:00:00,0.263,0.31,0.314 +2016-12-26 08:00:00,0.263,0.31,0.314 +2016-12-26 09:00:00,0.263,0.31,0.314 +2016-12-26 10:00:00,0.263,0.31,0.314 +2016-12-26 11:00:00,0.263,0.31,0.314 +2016-12-26 12:00:00,0.263,0.31,0.314 +2016-12-26 13:00:00,0.263,0.31,0.313 +2016-12-26 14:00:00,0.263,0.31,0.314 +2016-12-26 15:00:00,0.264,0.31,0.313 +2016-12-26 16:00:00,0.265,0.31,0.313 +2016-12-26 17:00:00,0.266,0.31,0.313 +2016-12-26 18:00:00,0.267,0.31,0.313 +2016-12-26 19:00:00,0.268,0.31,0.313 +2016-12-26 20:00:00,0.26899999999999996,0.31,0.312 +2016-12-26 21:00:00,0.27,0.31,0.312 +2016-12-26 22:00:00,0.27,0.31,0.312 +2016-12-26 23:00:00,0.27,0.31,0.312 +2016-12-27 00:00:00,0.27,0.31,0.312 +2016-12-27 01:00:00,0.27,0.31,0.312 +2016-12-27 02:00:00,0.27,0.31,0.312 +2016-12-27 03:00:00,0.27,0.31,0.312 +2016-12-27 04:00:00,0.27,0.31,0.311 +2016-12-27 05:00:00,0.27,0.31,0.311 +2016-12-27 06:00:00,0.27,0.31,0.311 +2016-12-27 07:00:00,0.27,0.31,0.311 +2016-12-27 08:00:00,0.27,0.31,0.311 +2016-12-27 09:00:00,0.27,0.31,0.311 +2016-12-27 10:00:00,0.27,0.31,0.311 +2016-12-27 11:00:00,0.27,0.31,0.311 +2016-12-27 12:00:00,0.27,0.31,0.311 +2016-12-27 13:00:00,0.27,0.309,0.31 +2016-12-27 14:00:00,0.27,0.309,0.31 +2016-12-27 15:00:00,0.27,0.309,0.31 +2016-12-27 16:00:00,0.27,0.309,0.31 +2016-12-27 17:00:00,0.27,0.309,0.31 +2016-12-27 18:00:00,0.27,0.309,0.31 +2016-12-27 19:00:00,0.26899999999999996,0.309,0.31 +2016-12-27 20:00:00,0.26899999999999996,0.309,0.31 +2016-12-27 21:00:00,0.26899999999999996,0.309,0.31 +2016-12-27 22:00:00,0.26899999999999996,0.309,0.31 +2016-12-27 23:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 00:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 01:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 02:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 03:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 04:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 05:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 06:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 07:00:00,0.26899999999999996,0.309,0.31 +2016-12-28 08:00:00,0.268,0.309,0.31 +2016-12-28 09:00:00,0.268,0.309,0.309 +2016-12-28 10:00:00,0.268,0.309,0.309 +2016-12-28 11:00:00,0.268,0.309,0.309 +2016-12-28 12:00:00,0.268,0.309,0.309 +2016-12-28 13:00:00,0.268,0.308,0.309 +2016-12-28 14:00:00,0.268,0.306,0.309 +2016-12-28 15:00:00,0.268,0.305,0.309 +2016-12-28 16:00:00,0.268,0.306,0.309 +2016-12-28 17:00:00,0.268,0.306,0.309 +2016-12-28 18:00:00,0.268,0.306,0.309 +2016-12-28 19:00:00,0.268,0.307,0.309 +2016-12-28 20:00:00,0.268,0.307,0.309 +2016-12-28 21:00:00,0.268,0.307,0.309 +2016-12-28 22:00:00,0.268,0.307,0.309 +2016-12-28 23:00:00,0.267,0.307,0.309 +2016-12-29 00:00:00,0.267,0.307,0.309 +2016-12-29 01:00:00,0.267,0.307,0.309 +2016-12-29 02:00:00,0.267,0.307,0.309 +2016-12-29 03:00:00,0.267,0.307,0.309 +2016-12-29 04:00:00,0.267,0.307,0.308 +2016-12-29 05:00:00,0.267,0.307,0.308 +2016-12-29 06:00:00,0.267,0.307,0.308 +2016-12-29 07:00:00,0.267,0.306,0.308 +2016-12-29 08:00:00,0.267,0.304,0.308 +2016-12-29 09:00:00,0.267,0.305,0.308 +2016-12-29 10:00:00,0.267,0.304,0.308 +2016-12-29 11:00:00,0.267,0.304,0.308 +2016-12-29 12:00:00,0.267,0.304,0.309 +2016-12-29 13:00:00,0.267,0.304,0.309 +2016-12-29 14:00:00,0.267,0.304,0.309 +2016-12-29 15:00:00,0.267,0.304,0.309 +2016-12-29 16:00:00,0.267,0.299,0.309 +2016-12-29 17:00:00,0.267,0.29600000000000004,0.309 +2016-12-29 18:00:00,0.267,0.298,0.308 +2016-12-29 19:00:00,0.267,0.3,0.308 +2016-12-29 20:00:00,0.267,0.302,0.308 +2016-12-29 21:00:00,0.266,0.302,0.308 +2016-12-29 22:00:00,0.267,0.301,0.308 +2016-12-29 23:00:00,0.266,0.298,0.308 +2016-12-30 00:00:00,0.266,0.301,0.308 +2016-12-30 01:00:00,0.266,0.305,0.308 +2016-12-30 02:00:00,0.266,0.305,0.308 +2016-12-30 03:00:00,0.266,0.309,0.308 +2016-12-30 04:00:00,0.266,0.31,0.308 +2016-12-30 05:00:00,0.266,0.311,0.307 +2016-12-30 06:00:00,0.266,0.312,0.308 +2016-12-30 07:00:00,0.266,0.314,0.308 +2016-12-30 08:00:00,0.266,0.315,0.308 +2016-12-30 09:00:00,0.266,0.315,0.308 +2016-12-30 10:00:00,0.266,0.316,0.308 +2016-12-30 11:00:00,0.266,0.317,0.308 +2016-12-30 12:00:00,0.266,0.317,0.308 +2016-12-30 13:00:00,0.266,0.317,0.308 +2016-12-30 14:00:00,0.266,0.317,0.308 +2016-12-30 15:00:00,0.265,0.317,0.308 +2016-12-30 16:00:00,0.265,0.317,0.308 +2016-12-30 17:00:00,0.265,0.318,0.308 +2016-12-30 18:00:00,0.265,0.319,0.308 +2016-12-30 19:00:00,0.265,0.319,0.307 +2016-12-30 20:00:00,0.265,0.319,0.307 +2016-12-30 21:00:00,0.264,0.319,0.307 +2016-12-30 22:00:00,0.265,0.319,0.308 +2016-12-30 23:00:00,0.265,0.319,0.308 +2016-12-31 00:00:00,0.264,0.319,0.308 +2016-12-31 01:00:00,0.265,0.319,0.307 +2016-12-31 02:00:00,0.265,0.319,0.307 +2016-12-31 03:00:00,0.264,0.319,0.308 +2016-12-31 04:00:00,0.264,0.319,0.308 +2016-12-31 05:00:00,0.264,0.319,0.308 +2016-12-31 06:00:00,0.264,0.319,0.308 +2016-12-31 07:00:00,0.264,0.319,0.308 +2016-12-31 08:00:00,0.264,0.319,0.308 +2016-12-31 09:00:00,0.264,0.319,0.308 +2016-12-31 10:00:00,0.264,0.318,0.308 +2016-12-31 11:00:00,0.264,0.317,0.308 +2016-12-31 12:00:00,0.264,0.317,0.308 +2016-12-31 13:00:00,0.264,0.317,0.308 +2016-12-31 14:00:00,0.264,0.317,0.308 +2016-12-31 15:00:00,0.264,0.316,0.308 +2016-12-31 16:00:00,0.264,0.316,0.308 +2016-12-31 17:00:00,0.264,0.315,0.308 +2016-12-31 18:00:00,0.264,0.315,0.308 +2016-12-31 19:00:00,0.264,0.315,0.308 +2016-12-31 20:00:00,0.264,0.315,0.308 +2016-12-31 21:00:00,0.264,0.315,0.308 +2016-12-31 22:00:00,0.264,0.315,0.308 +2016-12-31 23:00:00,0.264,0.315,0.308 diff --git a/src/spotpy/examples/hymod_exe/hymod_input.csv b/src/spotpy/examples/hymod_exe/hymod_input.csv new file mode 100644 index 00000000..3c158e03 --- /dev/null +++ b/src/spotpy/examples/hymod_exe/hymod_input.csv @@ -0,0 +1,1828 @@ +Date;rainfall[mm];TURC [mm d-1];Discharge[ls-1] +01.01.2012;2.052861283;0.35;nan +02.01.2012;0;0.26;nan +03.01.2012;0.58456085;0.39;nan +04.01.2012;0.123880377;0.53;nan +05.01.2012;0;0.44;nan +06.01.2012;0;0.63;nan +07.01.2012;0;0.42;nan +08.01.2012;0;0.39;nan +09.01.2012;1.163450614;0.29;nan +10.01.2012;0.110276668;0.27;nan +11.01.2012;0;0;nan +12.01.2012;0;0;nan +13.01.2012;0;0;nan +14.01.2012;0;0;nan +15.01.2012;0;0;nan +16.01.2012;0;0;nan +17.01.2012;0;0;nan +18.01.2012;1.219186104;0;nan +19.01.2012;11.18647129;0.34;nan +20.01.2012;6.105975569;0.23;nan +21.01.2012;4.373221849;0.29;nan +22.01.2012;5.178867935;0.35;nan +23.01.2012;2.623482708;0.31;nan +24.01.2012;1.369532702;0.17;nan +25.01.2012;0.100778681;0;nan +26.01.2012;0;0;nan +27.01.2012;0.636631682;0.03;nan +28.01.2012;0;0.05;nan +29.01.2012;0;0;nan +30.01.2012;0;0;nan +31.01.2012;0;0;nan +01.02.2012;0;0;nan +02.02.2012;0;0;nan +03.02.2012;0;0;nan +04.02.2012;0;0;nan +05.02.2012;0;0;nan +06.02.2012;0;0;nan +07.02.2012;0;0;nan +08.02.2012;0;0;nan +09.02.2012;0;0;nan +10.02.2012;0;0;nan +11.02.2012;0;0;nan +12.02.2012;0;0;nan +13.02.2012;0;0;nan +14.02.2012;0;0.02;nan +15.02.2012;2.17738637;0.32;nan +16.02.2012;0;0.39;nan +17.02.2012;0.2499812;0.41;nan +18.02.2012;0.931498122;0.43;nan +19.02.2012;1.746463163;0.53;nan +20.02.2012;0;0.04;nan +21.02.2012;0;0.06;nan +22.02.2012;0;0.45;nan +23.02.2012;0;0.47;nan +24.02.2012;0;0.62;nan +25.02.2012;0;0.94;nan +26.02.2012;0;0.59;nan +27.02.2012;0;0.34;nan +28.02.2012;0;0.62;nan +29.02.2012;0.207535518;1.04;nan +01.03.2012;0;0.63;nan +02.03.2012;0.100209282;0.58;nan +03.03.2012;0.102361883;0.54;nan +04.03.2012;0;0.65;nan +05.03.2012;0.650417002;0.56;nan +06.03.2012;0;1.06;nan +07.03.2012;1.16677932;0.33;nan +08.03.2012;0.620345275;0.81;nan +09.03.2012;0;0.51;nan +10.03.2012;0;0.65;nan +11.03.2012;0;0.79;nan +12.03.2012;0;1.35;nan +13.03.2012;0;0.66;nan +14.03.2012;0;0.59;nan +15.03.2012;0;1.43;nan +16.03.2012;0;1.89;nan +17.03.2012;0;1.83;nan +18.03.2012;6.356746921;0.69;nan +19.03.2012;0;1.54;nan +20.03.2012;0;1.47;nan +21.03.2012;0;1.9;nan +22.03.2012;0;2.35;nan +23.03.2012;0;2.38;nan +24.03.2012;0;2.3;nan +25.03.2012;0;2.67;nan +26.03.2012;0;2.5;nan +27.03.2012;0;2.67;nan +28.03.2012;0;2.81;nan +29.03.2012;0;1.12;nan +30.03.2012;0;0.85;nan +31.03.2012;0;0.84;nan +01.04.2012;0;1.4;nan +02.04.2012;0;0.9;nan +03.04.2012;0.751147786;2.11;nan +04.04.2012;6.234130095;1.55;nan +05.04.2012;0;0.71;nan +06.04.2012;0;1.04;nan +07.04.2012;0.641610559;0.74;nan +08.04.2012;0;0.94;nan +09.04.2012;2.228532307;0.63;nan +10.04.2012;3.026204163;1.12;nan +11.04.2012;0.46035981;1.3;nan +12.04.2012;1.034950878;1.2;nan +13.04.2012;0.099439631;1.36;nan +14.04.2012;0;1.56;nan +15.04.2012;0;1.58;nan +16.04.2012;0;1.11;nan +17.04.2012;0;1.75;nan +18.04.2012;0;1.54;nan +19.04.2012;1.666469734;1.58;nan +20.04.2012;6.49722907;1.42;nan +21.04.2012;4.282479402;1.18;nan +22.04.2012;3.149470554;2.02;nan +23.04.2012;0;1.86;nan +24.04.2012;0.576750765;1.21;nan +25.04.2012;0.227285801;1.75;nan +26.04.2012;1.477948828;1.17;nan +27.04.2012;0.115071088;1.82;nan +28.04.2012;0;3.96;nan +29.04.2012;0;2.4;nan +30.04.2012;0.211165732;3.55;nan +01.05.2012;0;3.85;nan +02.05.2012;7.043225031;2.26;nan +03.05.2012;0;2.08;nan +04.05.2012;2.546992839;2.83;nan +05.05.2012;8.085650311;1.21;nan +06.05.2012;4.67993303;1.11;nan +07.05.2012;0;1.61;nan +08.05.2012;0;3.36;nan +09.05.2012;3.181178733;1.58;nan +10.05.2012;0.10099184;2.63;nan +11.05.2012;14.48655285;2.61;nan +12.05.2012;0;1.85;nan +13.05.2012;0;2.65;nan +14.05.2012;0;2.9;nan +15.05.2012;11.72812871;1.69;nan +16.05.2012;2.567372337;1.93;nan +17.05.2012;0.127193178;3.14;nan +18.05.2012;2.818878724;1.76;nan +19.05.2012;8.900350658;3.05;nan +20.05.2012;0.401544065;4.07;nan +21.05.2012;0;2.12;nan +22.05.2012;0;5.36;nan +23.05.2012;3.679706569;3.09;nan +24.05.2012;0.101080379;4.95;nan +25.05.2012;0;5.01;nan +26.05.2012;0;4.98;nan +27.05.2012;0;3.25;nan +28.05.2012;0.321305602;3.43;nan +29.05.2012;0;4.73;nan +30.05.2012;0;4.1;nan +31.05.2012;0.224517541;1.68;nan +01.06.2012;4.596540569;2.27;nan +02.06.2012;0;3.01;nan +03.06.2012;1.364553991;1.31;nan +04.06.2012;1.065027646;1.73;nan +05.06.2012;0;2.11;nan +06.06.2012;0;1.71;nan +07.06.2012;0;2.09;nan +08.06.2012;0;3.71;nan +09.06.2012;0;3.47;nan +10.06.2012;0;2.82;nan +11.06.2012;0;1.97;nan +12.06.2012;7.23930017;2.48;nan +13.06.2012;26.50460299;1.43;nan +14.06.2012;0.100491752;2.32;nan +15.06.2012;0.704714972;1.83;nan +16.06.2012;7.426936784;1.57;nan +17.06.2012;0;4.32;nan +18.06.2012;0;4.34;nan +19.06.2012;8.756527923;2.39;nan +20.06.2012;17.07189609;1.66;nan +21.06.2012;5.24496361;2.05;nan +22.06.2012;0.10174942;3.58;nan +23.06.2012;0;3.71;nan +24.06.2012;4.402583345;2.73;nan +25.06.2012;0.425813334;2.34;nan +26.06.2012;0;3.64;nan +27.06.2012;0.871569354;2.33;nan +28.06.2012;0.100209282;2.93;nan +29.06.2012;15.37761492;3.53;nan +30.06.2012;0.103716701;4.54;nan +01.07.2012;1.723063686;2.38;nan +02.07.2012;0.538548728;1.56;nan +03.07.2012;0.103595763;4.3;nan +04.07.2012;0;5.09;nan +05.07.2012;0.859775595;3.46;nan +06.07.2012;0.833394972;2.92;nan +07.07.2012;2.761336277;4.24;nan +08.07.2012;6.613458276;2.5;nan +09.07.2012;1.343123714;3.39;nan +10.07.2012;6.240313766;3.14;nan +11.07.2012;3.491422269;2.14;nan +12.07.2012;0.444357341;2.55;nan +13.07.2012;15.09272074;1.73;nan +14.07.2012;25.91844249;2.54;nan +15.07.2012;2.369939964;2.53;nan +16.07.2012;0.664489808;2.32;nan +17.07.2012;1.152821883;1.91;nan +18.07.2012;0;3.23;nan +19.07.2012;0;2.65;nan +20.07.2012;0.104251899;2.1;nan +21.07.2012;7.524294533;1.91;nan +22.07.2012;0;4.22;nan +23.07.2012;0;4.84;nan +24.07.2012;0;5.25;nan +25.07.2012;0;5.52;nan +26.07.2012;0;4.96;nan +27.07.2012;0.71497793;4.87;nan +28.07.2012;5.635569646;2.9;nan +29.07.2012;0.248982158;3.05;nan +30.07.2012;3.210364058;3.03;nan +31.07.2012;0;2.69;nan +01.08.2012;0;5.06;nan +02.08.2012;0;3.52;nan +03.08.2012;0;3.49;nan +04.08.2012;0;3.14;nan +05.08.2012;0.826030268;2.49;nan +06.08.2012;5.221529943;2.71;nan +07.08.2012;0.312130111;2.83;nan +08.08.2012;0;3.62;nan +09.08.2012;0;2.63;nan +10.08.2012;0;3.52;nan +11.08.2012;0;3.6;nan +12.08.2012;0;4.19;nan +13.08.2012;0;3.95;nan +14.08.2012;0;3.63;nan +15.08.2012;0;3.02;nan +16.08.2012;6.757477709;3.6;nan +17.08.2012;0;3.48;nan +18.08.2012;0;4.86;nan +19.08.2012;0;4.88;nan +20.08.2012;0.221908764;3;nan +21.08.2012;0;3.52;nan +22.08.2012;0;3.96;nan +23.08.2012;0;4.23;nan +24.08.2012;5.486384479;1.54;nan +25.08.2012;0;2.79;nan +26.08.2012;0.452769647;1.82;nan +27.08.2012;0;3.38;nan +28.08.2012;0;2.53;nan +29.08.2012;0.612815989;2.96;nan +30.08.2012;0;1.35;nan +31.08.2012;1.125232008;1.71;nan +01.09.2012;0;2.65;nan +02.09.2012;0;3;nan +03.09.2012;0;3.54;nan +04.09.2012;0;3.21;nan +05.09.2012;0;1.2;nan +06.09.2012;0;2.1;nan +07.09.2012;0;3.13;nan +08.09.2012;0;3.64;nan +09.09.2012;0;3.76;nan +10.09.2012;0;3.38;nan +11.09.2012;13.54578198;1.36;nan +12.09.2012;1.412819865;1;nan +13.09.2012;0.100209282;1.37;nan +14.09.2012;2.64355724;2.15;nan +15.09.2012;0.203690864;1.02;nan +16.09.2012;0.103141494;2.35;nan +17.09.2012;0;2.72;nan +18.09.2012;1.065046071;1.86;nan +19.09.2012;0.463291857;2.12;nan +20.09.2012;0.100209282;1.4;nan +21.09.2012;2.804011549;1.34;nan +22.09.2012;0.100891145;1.55;nan +23.09.2012;0;1.11;nan +24.09.2012;5.614039905;1.15;nan +25.09.2012;2.346876165;0.95;nan +26.09.2012;3.562013413;0.95;nan +27.09.2012;2.39513061;1.22;nan +28.09.2012;0;1.94;nan +29.09.2012;0.101817107;1.37;nan +30.09.2012;0.103899938;1.53;nan +01.10.2012;0.307930088;1.51;nan +02.10.2012;0.10254475;1.2;nan +03.10.2012;0.403395594;1.15;nan +04.10.2012;12.51779236;1.09;nan +05.10.2012;1.41091845;0.86;nan +06.10.2012;6.073277622;1;nan +07.10.2012;2.680292566;1.42;nan +08.10.2012;0.299858195;0.81;nan +09.10.2012;0.732005881;1.52;nan +10.10.2012;0;1.04;nan +11.10.2012;0.100720276;1.18;nan +12.10.2012;3.197505101;0.65;nan +13.10.2012;3.555910417;1.21;nan +14.10.2012;7.480236484;0.74;nan +15.10.2012;0.454507793;0.6;nan +16.10.2012;0.099439631;0.8;nan +17.10.2012;0.100209282;0.62;nan +18.10.2012;0;1.87;nan +19.10.2012;0;1.86;nan +20.10.2012;0.10058936;1.42;nan +21.10.2012;0.100640272;1.75;nan +22.10.2012;0.100209282;1.24;nan +23.10.2012;0;0.6;nan +24.10.2012;0.100209282;0.54;nan +25.10.2012;0;0.6;nan +26.10.2012;14.07118471;0.39;nan +27.10.2012;1.516291237;0.16;nan +28.10.2012;0.111496891;0;nan +29.10.2012;0.108158529;0;nan +30.10.2012;5.133717827;0.37;nan +31.10.2012;0.122396573;0.81;nan +01.11.2012;2.39637902;0.5;nan +02.11.2012;8.131136921;0.62;nan +03.11.2012;7.789490852;0.44;nan +04.11.2012;3.115891884;0.46;nan +05.11.2012;2.648004818;0.58;nan +06.11.2012;0.108211059;0.64;nan +07.11.2012;0;0.49;nan +08.11.2012;0;0.5;nan +09.11.2012;0;0.49;nan +10.11.2012;10.50276489;0.46;nan +11.11.2012;0.103268345;0.5;nan +12.11.2012;0.101566606;0.3;nan +13.11.2012;0.200069189;0.01;nan +14.11.2012;0.105169605;0.08;nan +15.11.2012;0;0.21;nan +16.11.2012;0;0.21;nan +17.11.2012;0;0.25;nan +18.11.2012;0.522474816;0.38;nan +19.11.2012;0.101078256;0.36;nan +20.11.2012;0.105382174;0.22;nan +21.11.2012;0.249835567;0.2;nan +22.11.2012;0.100249036;0.18;nan +23.11.2012;0.201533138;0.28;nan +24.11.2012;0.309757147;0.4;nan +25.11.2012;0.183579714;0.63;nan +26.11.2012;5.663064676;0.31;nan +27.11.2012;0.448863743;0.39;nan +28.11.2012;0.203350776;0.35;nan +29.11.2012;0;0.25;nan +30.11.2012;0.15531028;0.06;nan +01.12.2012;0;0;nan +02.12.2012;2.229082138;0.08;nan +03.12.2012;0.631836587;0.07;nan +04.12.2012;1.450042377;0.2;nan +05.12.2012;0.20808764;0.15;nan +06.12.2012;0;0;nan +07.12.2012;0;0;nan +08.12.2012;0;0;nan +09.12.2012;6.108605507;0;nan +10.12.2012;3.320764568;0.13;nan +11.12.2012;0;0;nan +12.12.2012;0;0;nan +13.12.2012;0;0;nan +14.12.2012;11.3498736;0.08;nan +15.12.2012;1.07618634;0.32;nan +16.12.2012;0.965767621;0.39;nan +17.12.2012;4.037667261;0.29;nan +18.12.2012;0.100254803;0.27;nan +19.12.2012;0.200418564;0.17;nan +20.12.2012;0.228574953;0.13;nan +21.12.2012;4.122440719;0.09;nan +22.12.2012;3.902192703;0.25;nan +23.12.2012;8.965119864;0.46;nan +24.12.2012;1.654593813;0.51;nan +25.12.2012;2.19554711;0.45;nan +26.12.2012;5.305579636;0.39;nan +27.12.2012;8.833007442;0.51;nan +28.12.2012;0;0.3;nan +29.12.2012;0;0.52;nan +30.12.2012;0.936592981;0.57;nan +31.12.2012;0;0.4;nan +01.01.2013;2.052861283;0.35;24.418331 +02.01.2013;0;0.27;18.871897 +03.01.2013;0.58456085;0.37;15.542923 +04.01.2013;0.123880377;0.46;13.749797 +05.01.2013;0;0.41;12.432438 +06.01.2013;0;0.4;10.779954 +07.01.2013;0;0.38;9.679059 +08.01.2013;0;0.32;8.504039 +09.01.2013;1.163450614;0.29;7.848518 +10.01.2013;0.110276668;0.28;7.778211 +11.01.2013;0;0;6.871534 +12.01.2013;0;0;5.976367 +13.01.2013;0;0;5.639718 +14.01.2013;0;0;5.482801 +15.01.2013;0;0;5.551196 +16.01.2013;0;0;5.388404 +17.01.2013;0;0;5.226621 +18.01.2013;0;0;5.16354 +19.01.2013;0;0;5.564683 +20.01.2013;0;0;5.957756 +21.01.2013;0;0;6.274101 +22.01.2013;0;0;6.25 +23.01.2013;0;0;6.23 +24.01.2013;0;0;6.21 +25.01.2013;0;0;6.19 +26.01.2013;0;0;6.17 +27.01.2013;3.310331039;0;6.15 +28.01.2013;8.098844635;0.17;6.143736 +29.01.2013;5.555837156;0.44;67.386173 +30.01.2013;4.659346435;0.57;98.59951 +31.01.2013;8.678574079;0.46;80.011049 +01.02.2013;6.416312834;0.39;103.328494 +02.02.2013;0.585763486;0.25;96.736221 +03.02.2013;0.98774513;0.22;65.159635 +04.02.2013;0.878132691;0.39;59.196146 +05.02.2013;4.848835201;0.44;56.141688 +06.02.2013;2.214924475;0;46.823822 +07.02.2013;0.315204331;0.06;38.530109 +08.02.2013;0.688363528;0;34.144966 +09.02.2013;0.537587552;0;30.088306 +10.02.2013;0;0;26.788075 +11.02.2013;0;0;23.962136 +12.02.2013;0;0;20.621056 +13.02.2013;0;0;17.775907 +14.02.2013;0;0;15.857303 +15.02.2013;2.737719864;0.01;14.777229 +16.02.2013;1.015202732;0.16;17.461349 +17.02.2013;0;0.2;22.883208 +18.02.2013;0;0.34;23.845093 +19.02.2013;2.54909879;0;21.86127 +20.02.2013;0;0;19.853548 +21.02.2013;0;0;18.264846 +22.02.2013;0;0;17.236124 +23.02.2013;0;0;16.584315 +24.02.2013;1.274964868;0;15.375273 +25.02.2013;5.233084746;0.11;13.871548 +26.02.2013;0.257978214;0.22;13.038394 +27.02.2013;0;0.06;14.918089 +28.02.2013;0;0.19;15.247023 +01.03.2013;0;0.23;18.653939 +02.03.2013;0;0.64;24.390232 +03.03.2013;0;0.13;26.492173 +04.03.2013;0.127083124;0.29;25.443637 +05.03.2013;0;0.48;23.432959 +06.03.2013;0.102087612;0.99;22.280846 +07.03.2013;1.790611675;0.67;21.452868 +08.03.2013;0.558562408;1.28;22.858965 +09.03.2013;2.167173903;0.64;22.082662 +10.03.2013;1.357020944;0.42;20.443747 +11.03.2013;0;0;18.716441 +12.03.2013;0;0;18.244689 +13.03.2013;0.739369543;0;16.916135 +14.03.2013;0.214254297;0;15.284938 +15.03.2013;0.104845802;0;14.00103 +16.03.2013;0;0.31;13.50998 +17.03.2013;1.303862735;0.19;14.320551 +18.03.2013;0;0.42;27.354957 +19.03.2013;0.142673758;0.53;36.772176 +20.03.2013;4.864261381;0.32;48.00298 +21.03.2013;0;0.17;50.356696 +22.03.2013;0;0.17;45.946707 +23.03.2013;0;0;40.412788 +24.03.2013;0;0;34.953245 +25.03.2013;0;0;30.804001 +26.03.2013;0;0;27.969613 +27.03.2013;0;0;24.805747 +28.03.2013;0;0;23.038726 +29.03.2013;0.203593466;0.07;21.382703 +30.03.2013;0;0.13;19.574033 +31.03.2013;0;0;17.755825 +01.04.2013;0;0;16.264878 +02.04.2013;0;0.19;14.497697 +03.04.2013;0;0.23;12.911583 +04.04.2013;0;0.61;12.519697 +05.04.2013;0;0.29;11.880156 +06.04.2013;0;0.28;11.099295 +07.04.2013;0;0.25;10.792131 +08.04.2013;0.712984118;0.83;11.031519 +09.04.2013;2.157146283;0.62;11.063046 +10.04.2013;1.125369394;1;10.432581 +11.04.2013;5.339580331;1.39;10.405523 +12.04.2013;12.33943522;1.47;20.367295 +13.04.2013;0.508279458;2.34;18.812959 +14.04.2013;0;2.01;16.443959 +15.04.2013;0;3.15;15.842358 +16.04.2013;2.855278519;2.57;15.963371 +17.04.2013;0;2.02;14.906706 +18.04.2013;0;3.27;14.117884 +19.04.2013;0.353597317;1.69;13.188015 +20.04.2013;0;1.98;12.052954 +21.04.2013;0;2.32;11.928762 +22.04.2013;0;2.08;11.40644 +23.04.2013;0.876230574;1.88;10.633094 +24.04.2013;0;3.67;9.135218 +25.04.2013;0;3.49;8.348676 +26.04.2013;13.82395604;1.9;9.811417 +27.04.2013;8.293600025;0.8;16.038199 +28.04.2013;0.478398276;1.13;13.761059 +29.04.2013;0;2.54;12.086581 +30.04.2013;1.420622693;1.03;11.431914 +01.05.2013;0.141786314;1.51;10.747734 +02.05.2013;0;2.25;10.073772 +03.05.2013;0;1.86;9.441185 +04.05.2013;0;2.85;8.996614 +05.05.2013;0;3.81;8.189752 +06.05.2013;0;3.47;7.532977 +07.05.2013;3.317989574;1.62;7.249058 +08.05.2013;0.207117652;2.25;7.166745 +09.05.2013;2.352225074;2.29;7.313077 +10.05.2013;0;2.35;6.558072 +11.05.2013;0.687868446;1.85;5.795573 +12.05.2013;9.546001617;1.88;6.811404 +13.05.2013;1.497689714;1.29;6.169322 +14.05.2013;1.034103142;1.53;5.979106 +15.05.2013;1.586295215;2.13;6.403671 +16.05.2013;0.77223393;2.24;6.448726 +17.05.2013;0.105340329;1.33;6.43021 +18.05.2013;0.104621964;2.36;6.145124 +19.05.2013;17.4205831;2.71;8.532971 +20.05.2013;6.430174394;1.35;21.864815 +21.05.2013;2.725247239;1.53;12.78167 +22.05.2013;5.503978419;1.18;20.050647 +23.05.2013;12.44602574;1.06;34.547334 +24.05.2013;0;1.36;29.138713 +25.05.2013;1.296469046;1.78;25.69534 +26.05.2013;20.41429324;1.04;85.193173 +27.05.2013;0.577905728;2.57;100.145387 +28.05.2013;0;3.88;66.987341 +29.05.2013;7.738908459;1.21;68.474104 +30.05.2013;2.829262724;2.16;56.474726 +31.05.2013;9.92731459;1.58;64.028852 +01.06.2013;0;1.8;51.844541 +02.06.2013;0;3.5;42.472362 +03.06.2013;0;3.55;34.08307 +04.06.2013;0;4.19;28.545171 +05.06.2013;0;3.6;24.222246 +06.06.2013;0;5.12;19.870631 +07.06.2013;0;5.16;16.482535 +08.06.2013;0;4.82;14.196014 +09.06.2013;0.852389941;2.36;13.547897 +10.06.2013;0.794100111;1.82;12.503125 +11.06.2013;0;4.03;10.14463 +12.06.2013;0;2.63;7.988602 +13.06.2013;6.97525817;2.7;7.099181 +14.06.2013;0.110118225;2.75;7.62865 +15.06.2013;0;2.41;6.072319 +16.06.2013;0;3.56;4.959866 +17.06.2013;0;5.21;4.307747 +18.06.2013;0;5.85;3.575091 +19.06.2013;0;6.01;3.221764 +20.06.2013;5.437790195;2.37;3.453995 +21.06.2013;1.581458717;3.5;3.695777 +22.06.2013;0;3.18;3.149866 +23.06.2013;0;2.9;3.050426 +24.06.2013;3.06557465;2.13;3.158111 +25.06.2013;2.5305722;1.54;3.184428 +26.06.2013;0;1.8;3.059972 +27.06.2013;1.709660985;1.76;3.070111 +28.06.2013;0.102023852;1.45;2.96429 +29.06.2013;6.390260901;2.24;3.208235 +30.06.2013;0;2.7;2.971959 +01.07.2013;0;4.28;2.751832 +02.07.2013;0;4.66;2.570896 +03.07.2013;12.85463175;1.72;3.414943 +04.07.2013;0;2.77;3.114361 +05.07.2013;0;3.24;2.75413 +06.07.2013;0;5.17;2.543549 +07.07.2013;0;5.54;2.39239 +08.07.2013;0;5.54;2.246893 +09.07.2013;0;5.06;2.153437 +10.07.2013;0;5.03;2.092768 +11.07.2013;0;3.09;2.101726 +12.07.2013;0;3.72;2.092602 +13.07.2013;0;3.81;2.020425 +14.07.2013;0;3.86;2.014752 +15.07.2013;0;4.49;1.920806 +16.07.2013;0;4.55;1.842162 +17.07.2013;0;5.13;1.783579 +18.07.2013;0;5.26;1.64404 +19.07.2013;0;5.5;1.572092 +20.07.2013;0;4.93;1.523529 +21.07.2013;0;5.62;1.497957 +22.07.2013;0;5.71;1.451664 +23.07.2013;2.298154545;3.12;1.479384 +24.07.2013;0;3.18;1.546242 +25.07.2013;10.25992882;2.93;3.046824 +26.07.2013;0.101682369;2.92;2.146813 +27.07.2013;0;5.53;1.722019 +28.07.2013;0.721374121;2.72;1.666815 +29.07.2013;0.221428694;1.69;1.667242 +30.07.2013;0.524357188;3.41;1.275332 +31.07.2013;2.053960584;2.84;1.087724 +01.08.2013;0;5.36;0.92556 +02.08.2013;0;5.42;0.67994 +03.08.2013;0;3.33;0.601056 +04.08.2013;0;4.69;0.555497 +05.08.2013;0;4.82;0.514584 +06.08.2013;7.303333928;3.79;1.105949 +07.08.2013;3.80855636;2.17;0.928021 +08.08.2013;0.100919618;1.79;0.842865 +09.08.2013;0;2.51;0.757447 +10.08.2013;0;3.38;0.64441 +11.08.2013;0;3.62;0.523785 +12.08.2013;7.477542821;2.06;0.90173 +13.08.2013;0.100209282;2.86;0.752233 +14.08.2013;0;3.23;0.67974 +15.08.2013;0;3.83;0.582552 +16.08.2013;0;4.39;0.477594 +17.08.2013;0;3.22;0.441798 +18.08.2013;0.242794923;1.48;0.388685 +19.08.2013;6.434592375;3.16;0.659298 +20.08.2013;0;2.5;0.48012 +21.08.2013;0;3.82;0.451527 +22.08.2013;0;3.77;0.455111 +23.08.2013;0;3.04;0.414511 +24.08.2013;10.08241353;2.82;0.615602 +25.08.2013;6.338278859;1.3;1.954288 +26.08.2013;1.339358863;1.34;1.102016 +27.08.2013;0;3;0.732772 +28.08.2013;0;2.06;0.541513 +29.08.2013;0;3.47;0.472273 +30.08.2013;0;3.28;0.422664 +31.08.2013;3.881978578;1.77;0.5262 +01.09.2013;0;2.01;0.539527 +02.09.2013;0;1.63;0.373824 +03.09.2013;0;1.92;0.34133 +04.09.2013;0;3.63;0.308851 +05.09.2013;0;3.92;0.282294 +06.09.2013;0;3.75;0.389839 +07.09.2013;5.254480544;1.62;0.638005 +08.09.2013;2.931308381;1.29;0.846853 +09.09.2013;8.754058908;2.02;0.864731 +10.09.2013;8.642156781;1.22;4.892612 +11.09.2013;6.145993078;1.25;4.215498 +12.09.2013;0.119762437;1.13;2.351649 +13.09.2013;0;1.26;1.379381 +14.09.2013;4.481439921;1.1;1.398035 +15.09.2013;0.102164633;1.43;1.321851 +16.09.2013;2.829495091;1.37;1.438225 +17.09.2013;3.019424741;1.55;1.207433 +18.09.2013;2.418850364;1.08;1.649967 +19.09.2013;0.339904309;1.3;1.248832 +20.09.2013;0.416842924;1;1.081575 +21.09.2013;0;1.39;0.864161 +22.09.2013;0;1.09;0.918095 +23.09.2013;0;1.03;1.002674 +24.09.2013;0;1.9;1.230696 +25.09.2013;0.104126817;1.09;0.961648 +26.09.2013;0;1.72;0.870806 +27.09.2013;0;1.99;0.783057 +28.09.2013;0;1.84;0.862506 +29.09.2013;0;2.17;0.719318 +30.09.2013;0;1.27;0.70849 +01.10.2013;0;1.49;0.551869 +02.10.2013;0.139605658;1.56;0.569545 +03.10.2013;0.135465455;1.74;0.693346 +04.10.2013;0.486915303;0.91;0.569029 +05.10.2013;40.09104036;0.76;20.710242 +06.10.2013;2.232833805;0.86;18.880871 +07.10.2013;0;1.56;6.865578 +08.10.2013;0;0.86;4.494264 +09.10.2013;3.301907369;0.85;3.55993 +10.10.2013;4.255136777;0.87;6.741104 +11.10.2013;5.041018327;0.49;6.568946 +12.10.2013;1.379946759;0.45;7.008824 +13.10.2013;0;0.55;6.229404 +14.10.2013;0.492223417;0.91;4.869489 +15.10.2013;6.814980741;0.95;7.707324 +16.10.2013;0.304096502;0.68;6.104659 +17.10.2013;1.505540682;0.82;4.822442 +18.10.2013;0.10040615;1.22;4.128956 +19.10.2013;0.243177623;1.63;3.766368 +20.10.2013;0.114730218;0.84;3.113281 +21.10.2013;0.226526953;1.26;2.581633 +22.10.2013;0;1.7;2.376996 +23.10.2013;7.682525126;1.05;4.885591 +24.10.2013;0.933513103;0.97;4.477026 +25.10.2013;0.303026512;0.71;3.744079 +26.10.2013;5.817549482;0.86;4.321705 +27.10.2013;7.935183086;1.27;13.372075 +28.10.2013;2.394564061;0.81;10.924528 +29.10.2013;0;0.81;7.84025 +30.10.2013;0;1.19;6.144879 +31.10.2013;0.102589793;0.42;5.52428 +01.11.2013;4.536972774;0.48;5.37625 +02.11.2013;8.742921673;0.64;23.563112 +03.11.2013;2.881930638;0.94;26.079943 +04.11.2013;2.417554909;0.55;15.886635 +05.11.2013;6.073303558;0.55;13.810492 +06.11.2013;2.874053043;0.55;16.200393 +07.11.2013;0.108775183;0.69;16.683825 +08.11.2013;12.60252541;0.63;26.413423 +09.11.2013;1.087939523;0.7;39.878779 +10.11.2013;0.756460321;0.41;29.035381 +11.11.2013;0;0.67;22.71978 +12.11.2013;0.203469691;0.3;19.457412 +13.11.2013;0.405318362;0.55;16.657586 +14.11.2013;0.103863682;0.15;14.983722 +15.11.2013;0;0.5;12.390164 +16.11.2013;0;0.22;10.322547 +17.11.2013;0;0.18;9.210179 +18.11.2013;0;0.32;8.780785 +19.11.2013;4.75061329;0.32;8.341947 +20.11.2013;3.832149213;0.3;15.653733 +21.11.2013;0.960402178;0.19;13.222447 +22.11.2013;0;0.21;11.520031 +23.11.2013;0;0.33;9.950161 +24.11.2013;0.17472882;0.4;8.831097 +25.11.2013;0;0;8.149278 +26.11.2013;0.103396806;0;7.775023 +27.11.2013;0;0;7.094008 +28.11.2013;0.209165999;0.04;6.339268 +29.11.2013;2.96566331;0.22;6.693626 +30.11.2013;0.116078324;0.32;6.767524 +01.12.2013;0;0.38;6.159252 +02.12.2013;0.121298543;0.46;5.712104 +03.12.2013;0.103646034;0;5.713076 +04.12.2013;0.123601635;0.12;5.09869 +05.12.2013;3.402407102;0.16;5.265348 +06.12.2013;3.861503302;0.12;5.7021 +07.12.2013;1.138084118;0.2;5.441679 +08.12.2013;0;0.34;5.905663 +09.12.2013;0;0.37;5.57394 +10.12.2013;0;0.32;5.182886 +11.12.2013;0;0.31;5.25084 +12.12.2013;0;0.2;5.425117 +13.12.2013;0;0.12;5.185625 +14.12.2013;0.930704948;0.11;4.845879 +15.12.2013;0.308176053;0.11;4.671676 +16.12.2013;0.100456762;0;4.840734 +17.12.2013;0.105810912;0;4.596398 +18.12.2013;0.10402947;0;4.145028 +19.12.2013;2.686598633;0.32;4.403819 +20.12.2013;0.220794354;0.19;3.980393 +21.12.2013;0.145733961;0.11;3.824123 +22.12.2013;4.618957859;0.41;3.94586 +23.12.2013;4.771291202;0.53;12.347619 +24.12.2013;0.622817277;0.48;10.176256 +25.12.2013;5.386000407;0.4;15.453304 +26.12.2013;2.389800342;0.33;14.312491 +27.12.2013;0.154930708;0.35;15.322006 +28.12.2013;3.935106315;0.42;14.652353 +29.12.2013;1.77139605;0.27;22.499784 +30.12.2013;0.232819401;0.14;18.27357 +31.12.2013;0;0.19;17.510973 +01.01.2014;0.948386327;0.28;16.402562 +02.01.2014;1.443235282;0.35;15.506874 +03.01.2014;0.53317163;0.37;13.986495 +04.01.2014;0;0.33;13.023909 +05.01.2014;2.291219427;0.39;13.422182 +06.01.2014;6.278177447;0.3;12.729805 +07.01.2014;1.368826654;0.9;21.626249 +08.01.2014;0.251187761;0.73;18.437388 +09.01.2014;5.443311512;0.42;20.405184 +10.01.2014;0;0.53;22.715288 +11.01.2014;0.357233526;0.16;20.297429 +12.01.2014;0;0.17;18.259541 +13.01.2014;0.10513426;0.11;16.803059 +14.01.2014;0;0.23;15.761204 +15.01.2014;0.3697866;0.27;14.120361 +16.01.2014;3.253825766;0.31;14.246247 +17.01.2014;0.117449085;0.65;14.519285 +18.01.2014;0.108601598;0.09;13.089396 +19.01.2014;0.103137728;0.17;11.8654 +20.01.2014;0;0.19;10.879708 +21.01.2014;1.63522922;0.16;20.234155 +22.01.2014;0;0.23;22.748368 +23.01.2014;2.558914396;0.23;20.690171 +24.01.2014;1.188167635;0.19;22.405199 +25.01.2014;0.237105868;0.02;21.169239 +26.01.2014;6.395365353;0.26;27.833506 +27.01.2014;3.105051214;0.3;44.774207 +28.01.2014;0.136144794;0.31;37.473603 +29.01.2014;0;0.06;33.194181 +30.01.2014;0;0.03;29.561037 +31.01.2014;0;0.1;26.639798 +01.02.2014;5.471619376;0.18;24.925277 +02.02.2014;0;0.41;23.970456 +03.02.2014;0.112128324;0.11;21.386039 +04.02.2014;0;0.21;19.242926 +05.02.2014;0.365005327;0.11;17.987006 +06.02.2014;0.11379492;0.71;16.255086 +07.02.2014;0.379268781;0.63;14.467703 +08.02.2014;3.236321079;0.36;15.012038 +09.02.2014;0;0.48;14.740248 +10.02.2014;0.678751975;0.2;13.462218 +11.02.2014;0;0.41;12.230738 +12.02.2014;1.179094273;0.7;11.622273 +13.02.2014;13.86387956;0.38;17.215045 +14.02.2014;1.558715096;0.53;20.917042 +15.02.2014;0.157927664;0.58;19.330026 +16.02.2014;0.275376278;0.69;18.266869 +17.02.2014;0.100364822;0.33;17.208793 +18.02.2014;0.099439631;0.15;16.56007 +19.02.2014;1.625468105;0.68;16.390069 +20.02.2014;0;0.67;15.421818 +21.02.2014;2.748183214;0.85;14.713906 +22.02.2014;0.256224276;0.41;13.79492 +23.02.2014;0;0.65;12.658862 +24.02.2014;0.099477577;0.79;11.950986 +25.02.2014;0.159998907;0.73;11.492567 +26.02.2014;0.314258275;0.63;10.75553 +27.02.2014;1.603695597;0.6;10.356378 +28.02.2014;0.684543845;0.54;11.001998 +01.03.2014;0;0.48;10.782335 +02.03.2014;1.167955234;0.32;10.164323 +03.03.2014;0.146520704;0.3;9.602984 +04.03.2014;0;0.68;8.703207 +05.03.2014;1.127250273;0.75;8.046729 +06.03.2014;0.102374926;0.35;7.306062 +07.03.2014;0.100088664;0.87;6.844349 +08.03.2014;0;1.21;6.46795 +09.03.2014;0.099439631;1.32;6.074865 +10.03.2014;0.09950289;1.53;5.632728 +11.03.2014;0;1.89;5.757862 +12.03.2014;0;1.79;5.745789 +13.03.2014;0.100239136;1.67;5.023196 +14.03.2014;0;1.71;4.786958 +15.03.2014;1.411483572;0.76;5.101086 +16.03.2014;0;0.94;4.696422 +17.03.2014;0;0.82;4.425823 +18.03.2014;0.120484083;0.78;4.429503 +19.03.2014;5.23034353;1.29;6.119827 +20.03.2014;0;2.3;5.219167 +21.03.2014;0.119259509;1.86;5.107963 +22.03.2014;5.766178754;0.71;5.540585 +23.03.2014;0.101320514;0.69;5.775728 +24.03.2014;0.101729075;0.56;5.404966 +25.03.2014;0.099439631;0.83;5.262563 +26.03.2014;0.100778681;0.91;5.072437 +27.03.2014;0;1.83;4.864914 +28.03.2014;0;2.24;4.384758 +29.03.2014;0;2.25;4.088648 +30.03.2014;0;2.12;4.106752 +31.03.2014;0;0.98;4.452076 +01.04.2014;0;2.19;4.757175 +02.04.2014;0;2.52;4.555513 +03.04.2014;0;1.88;4.361442 +04.04.2014;0;1.15;4.268695 +05.04.2014;1.695983789;1.09;4.272012 +06.04.2014;0;1.64;3.979665 +07.04.2014;0;2.2;3.622333 +08.04.2014;3.042809055;1.49;3.758216 +09.04.2014;0.108498089;1.32;3.608329 +10.04.2014;0;1.09;3.432004 +11.04.2014;0;1.19;3.407258 +12.04.2014;0;1.85;3.241566 +13.04.2014;0;1.74;3.07616 +14.04.2014;4.053591011;1.87;3.137765 +15.04.2014;0.216484055;0.73;3.233944 +16.04.2014;0;1.8;3.032272 +17.04.2014;0.158605057;2.5;2.698903 +18.04.2014;0.48249597;2.26;2.692598 +19.04.2014;0;2.24;2.575222 +20.04.2014;0;3.35;2.243782 +21.04.2014;1.599353843;2.06;2.159488 +22.04.2014;1.47875484;1.69;2.362529 +23.04.2014;0.100209282;2.31;2.259015 +24.04.2014;0;3.44;1.995259 +25.04.2014;0;3.49;6.061627 +26.04.2014;1.274750477;1.78;17.877588 +27.04.2014;13.7807287;1.19;18.208916 +28.04.2014;0.422402212;1.2;8.376963 +29.04.2014;7.204461755;1.69;7.780429 +30.04.2014;0;2.58;5.718117 +01.05.2014;0;1.91;3.92954 +02.05.2014;0.742399293;1.34;3.377782 +03.05.2014;0;2.13;2.968987 +04.05.2014;0;2.77;2.474647 +05.05.2014;0;3.26;1.97248 +06.05.2014;0.645554076;1.9;1.775615 +07.05.2014;6.34001138;2.41;1.813361 +08.05.2014;4.025745595;1.54;1.778631 +09.05.2014;1.40698932;2.83;1.728317 +10.05.2014;3.02118618;1.24;2.212913 +11.05.2014;2.975477877;2.54;3.405043 +12.05.2014;0.587034274;2.4;2.560105 +13.05.2014;0.316646168;1.56;2.409335 +14.05.2014;0;2.12;2.000632 +15.05.2014;0;1.12;1.830519 +16.05.2014;0.122447738;3.59;1.347028 +17.05.2014;0;3.56;1.147602 +18.05.2014;0;4.16;0.802111 +19.05.2014;0;4.27;0.662873 +20.05.2014;0;4.78;0.336109 +21.05.2014;0;3.94;0.204309 +22.05.2014;3.085495713;4.36;0.187829 +23.05.2014;4.809148968;2.4;0.612968 +24.05.2014;0;2.51;0.367509 +25.05.2014;0;4.31;0.245181 +26.05.2014;2.864431039;1.54;0.501683 +27.05.2014;0.421848386;1.58;1.725654 +28.05.2014;0.107030974;1.46;1.040421 +29.05.2014;0;1.33;1.321179 +30.05.2014;0.10408533;2.11;1.167457 +31.05.2014;0;3.19;0.561848 +01.06.2014;0;2.51;0.453851 +02.06.2014;0;3.94;0.320873 +03.06.2014;0;3.51;0.57499 +04.06.2014;0;3.07;0.962808 +05.06.2014;0;3.86;0.794953 +06.06.2014;0.908100562;4.67;0.611382 +07.06.2014;0;4.51;0.442098 +08.06.2014;0;5.77;0.312218 +09.06.2014;0.793544975;5.85;2.411733 +10.06.2014;0.556050034;3.87;0.660839 +11.06.2014;0.624533322;2.76;43.112973 +12.06.2014;0.151967188;4.93;8.382199 +13.06.2014;0.157538759;4.04;4.601254 +14.06.2014;0;2.17;3.150225 +15.06.2014;0;3.94;2.241361 +16.06.2014;0;3.27;1.710589 +17.06.2014;0;3.16;1.321116 +18.06.2014;0;4.23;0.992249 +19.06.2014;0.144758038;2.19;0.83431 +20.06.2014;0;1.76;0.705359 +21.06.2014;0;2.92;0.53187 +22.06.2014;0;3.15;0.521248 +23.06.2014;0;3.83;2.429528 +24.06.2014;2.567664009;3.05;2.493053 +25.06.2014;0.112722143;2.67;3.021535 +26.06.2014;0;2.91;2.497373 +27.06.2014;0;3.48;1.406698 +28.06.2014;1.710331651;1.94;0.325878 +29.06.2014;1.488324257;1.96;0.48305 +30.06.2014;0.295577223;2.92;0.4799 +01.07.2014;0.11787906;3.98;0.178667 +02.07.2014;0;4.86;0.141846 +03.07.2014;0;5.41;0.064718 +04.07.2014;0;4.66;0.095529 +05.07.2014;0;2.26;0.048156 +06.07.2014;2.248664975;4.06;0.054958 +07.07.2014;0.857062955;2.48;0.028481 +08.07.2014;0;1.6;2.140779 +09.07.2014;0;1.43;12.23773 +10.07.2014;0;2.63;6.930812 +11.07.2014;0;3.45;5.769309 +12.07.2014;0;3.31;6.360065 +13.07.2014;0;2.09;4.393855 +14.07.2014;0;3.63;3.301672 +15.07.2014;0;4.95;1.665133 +16.07.2014;0;4.33;0.953405 +17.07.2014;0;5.46;0.603603 +18.07.2014;0;5.79;0.396544 +19.07.2014;0;5.49;0.272296 +20.07.2014;4.272633779;2.33;0.191608 +21.07.2014;2.731234062;2.14;0.572678 +22.07.2014;4.15904732;4.45;0.367916 +23.07.2014;0;4.92;0.149399 +24.07.2014;12;4.24;10.782832 +25.07.2014;0.127524398;4.28;1.04539 +26.07.2014;0;3.48;0.404255 +27.07.2014;0;4.48;0.249827 +28.07.2014;21.9359785;3.4;0.240198 +29.07.2014;0.98315524;1.91;22.17303 +30.07.2014;5.794436104;1.94;27.678204 +31.07.2014;0;4.77;10.559264 +01.08.2014;0;4.78;6.545522 +02.08.2014;0;3.31;4.452096 +03.08.2014;0;2.68;3.019714 +04.08.2014;1.420435897;2.93;2.385858 +05.08.2014;5.473793097;2.48;2.355767 +06.08.2014;0;2.79;1.913621 +07.08.2014;0.720042872;2.98;1.327966 +08.08.2014;1.051967891;3.71;1.157623 +09.08.2014;1.372515937;3.34;0.624994 +10.08.2014;13.95117727;2.11;4.918633 +11.08.2014;0.101255396;3.88;3.241756 +12.08.2014;0.203677102;3.41;1.491187 +13.08.2014;15.40990951;1.68;4.629456 +14.08.2014;4.483376092;2.44;5.725008 +15.08.2014;2.987380349;1.44;6.885889 +16.08.2014;1.211047331;2.18;5.674565 +17.08.2014;0;2.11;4.397387 +18.08.2014;0.335573939;2.54;3.264936 +19.08.2014;0.131819466;2.41;2.93412 +20.08.2014;0;2.87;2.433526 +21.08.2014;0;3.22;2.016218 +22.08.2014;0;2.14;1.825354 +23.08.2014;4.836148848;2.16;1.400093 +24.08.2014;0;2.2;1.391853 +25.08.2014;2.019839566;1.31;1.586774 +26.08.2014;23.93929942;1.2;10.742235 +27.08.2014;1.007975167;3.68;16.10069 +28.08.2014;0;2.26;7.937963 +29.08.2014;1.508595429;2.36;5.641862 +30.08.2014;0.603208138;1.69;4.662251 +31.08.2014;0.314533823;1.7;4.121519 +01.09.2014;0;1.76;3.558841 +02.09.2014;0.122789935;1.69;3.101579 +03.09.2014;0;1.51;2.848482 +04.09.2014;0;1.76;2.643328 +05.09.2014;0;2.47;2.343579 +06.09.2014;1.188701685;2.9;1.951323 +07.09.2014;0.100621026;2.3;1.664725 +08.09.2014;0;2.43;1.24396 +09.09.2014;0;2.29;1.175226 +10.09.2014;0;1.18;1.290439 +11.09.2014;0.573542154;1.59;1.297954 +12.09.2014;0.176962641;1.15;1.373099 +13.09.2014;0;1.27;1.175248 +14.09.2014;0;2.03;1.157704 +15.09.2014;0;1.2;1.06586 +16.09.2014;0;2.55;1.009118 +17.09.2014;0;3.09;0.956732 +18.09.2014;2.528926233;1.25;0.829029 +19.09.2014;0.201230414;1.65;0.789098 +20.09.2014;4.367034789;1.37;1.021417 +21.09.2014;10.07413991;1.13;6.806666 +22.09.2014;8.794258963;1.48;3.209986 +23.09.2014;0;1.67;2.412663 +24.09.2014;0.408314915;1.11;1.847794 +25.09.2014;0.22414206;1.27;1.205711 +26.09.2014;0;1.02;1.031828 +27.09.2014;0;1.99;1.045336 +28.09.2014;0;1.84;1.03605 +29.09.2014;0.205497416;1.2;0.895678 +30.09.2014;0;1.17;0.895646 +01.10.2014;0;1.62;0.768337 +02.10.2014;0;2.47;0.762039 +03.10.2014;0;2.27;0.80618 +04.10.2014;0;1.97;0.789423 +05.10.2014;0;1.05;0.755405 +06.10.2014;0;0.85;0.795363 +07.10.2014;12.90835284;0.95;1.464892 +08.10.2014;4.244250772;0.85;0.381115 +09.10.2014;6.34460647;0.94;3.701762 +10.10.2014;1.024488302;1.04;21.79129 +11.10.2014;0.508479833;1.09;7.906865 +12.10.2014;0.311250341;0.92;6.586355 +13.10.2014;0.33430835;0.99;7.582256 +14.10.2014;0.211476903;1.16;3.415751 +15.10.2014;0.304725347;1.33;4.286405 +16.10.2014;0.3071821;0.93;5.369749 +17.10.2014;0.303944237;0.93;5.116028 +18.10.2014;0.334764647;1.61;4.399485 +19.10.2014;0.339054767;1.4;3.902477 +20.10.2014;0.420583244;1.24;3.838424 +21.10.2014;0.450302243;0.68;3.660142 +22.10.2014;0.670948415;0.57;3.992868 +23.10.2014;0.422616155;0.76;3.79147 +24.10.2014;0;0.82;3.727811 +25.10.2014;1.303564003;0.64;3.703265 +26.10.2014;0;0.93;3.459456 +27.10.2014;0;0.56;3.219703 +28.10.2014;0;0.49;3.302464 +29.10.2014;0.62744644;0.66;3.361036 +30.10.2014;0;0.61;2.903047 +31.10.2014;0;0.63;2.633504 +01.11.2014;0.1042938;0.82;2.635834 +02.11.2014;0;0.58;2.501883 +03.11.2014;3.341473125;0.69;2.543623 +04.11.2014;1.272403943;0.66;3.167745 +05.11.2014;2.059249105;0.55;3.864357 +06.11.2014;0;0.61;3.404734 +07.11.2014;0.355935931;0.3;3.202559 +08.11.2014;0;0.68;2.964546 +09.11.2014;0.100209282;0.31;2.976025 +10.11.2014;0.307990821;0.45;2.69322 +11.11.2014;0;0.47;2.795811 +12.11.2014;0.501276759;0.48;2.622937 +13.11.2014;0.10201513;0.57;2.555214 +14.11.2014;0;0.52;2.56229 +15.11.2014;3.656798953;0.52;2.638485 +16.11.2014;11.72843921;0.48;31.488017 +17.11.2014;0.667950293;0.63;21.020167 +18.11.2014;6.352371922;0.45;20.322369 +19.11.2014;0.540674623;0.42;30.802991 +20.11.2014;0;0.39;21.899784 +21.11.2014;0;0.49;18.349493 +22.11.2014;0.099947961;0.18;15.648073 +23.11.2014;0;0.61;13.150718 +24.11.2014;0.103475817;0.45;11.367915 +25.11.2014;0.112064056;0.02;10.134425 +26.11.2014;0.107637521;0.15;9.134086 +27.11.2014;0.830690006;0.3;8.580387 +28.11.2014;0;0.21;7.949374 +29.11.2014;0;0.21;7.134789 +30.11.2014;0;0.19;6.831031 +01.12.2014;0.173953082;0.12;6.298394 +02.12.2014;0;0;5.682744 +03.12.2014;0;0;5.236759 +04.12.2014;0;0.04;4.837591 +05.12.2014;0;0.16;4.57932 +06.12.2014;0;0.17;4.416231 +07.12.2014;1.28107185;0.26;4.447125 +08.12.2014;0.100209282;0.2;3.589774 +09.12.2014;0;0.05;2.501976 +10.12.2014;1.034788345;0.18;2.537322 +11.12.2014;12.68598251;0.28;4.720196 +12.12.2014;9.217706401;0.41;8.400103 +13.12.2014;11.38168525;0.23;55.754499 +14.12.2014;2.387615834;0.15;56.925713 +15.12.2014;0.114833696;0.17;37.351264 +16.12.2014;0.907321596;0.29;29.442102 +17.12.2014;1.068943754;0.25;27.635014 +18.12.2014;0;0.48;23.907361 +19.12.2014;8.594827813;0.46;36.527435 +20.12.2014;2.988231831;0.29;37.495845 +21.12.2014;0;0.33;30.06876 +22.12.2014;0.352866143;0.4;25.625006 +23.12.2014;0;0.45;21.587337 +24.12.2014;1.053555123;0.39;19.046663 +25.12.2014;0.173863877;0.27;16.802984 +26.12.2014;0.110675885;0.14;14.815289 +27.12.2014;0;0;15.56601 +28.12.2014;0;0;13.843208 +29.12.2014;1.263365573;0;12.092481 +30.12.2014;5.869050266;0.11;12.295662 +31.12.2014;0.52731951;0.17;20.628504 +01.01.2015;0;0.13;37.112862 +02.01.2015;2.197111019;0.17;43.273249 +03.01.2015;2.076041355;0.12;44.557048 +04.01.2015;2.804424631;0.22;51.701439 +05.01.2015;0;0.09;44.809784 +06.01.2015;0;0;36.517261 +07.01.2015;0.626216693;0.12;31.415337 +08.01.2015;7.633275562;0.3;46.565012 +09.01.2015;3.189849889;0.42;62.535972 +10.01.2015;4.716378499;0.71;95.546467 +11.01.2015;0.572855892;0.26;67.769521 +12.01.2015;0.575470454;0.36;50.973385 +13.01.2015;2.766794222;0.78;42.971926 +14.01.2015;6.56335584;0.32;45.285769 +15.01.2015;0.271202152;0.4;41.46464 +16.01.2015;1.167951848;0.35;36.660865 +17.01.2015;0.100646727;0.25;31.972864 +18.01.2015;0.11728215;0;27.878203 +19.01.2015;0;0;24.917963 +20.01.2015;0;0;22.776854 +21.01.2015;0;0;19.787732 +22.01.2015;0;0;17.403546 +23.01.2015;0;0.03;15.365005 +24.01.2015;0.099439631;0;14.718248 +25.01.2015;0.562306516;0.09;14.234321 +26.01.2015;3.700413666;0.13;17.325765 +27.01.2015;0.572507353;0.24;19.867556 +28.01.2015;4.258330846;0.24;21.485107 +29.01.2015;2.856021716;0.21;28.865749 +30.01.2015;1.744560566;0.11;41.13121 +31.01.2015;0;0.1;30.669403 +01.02.2015;0.315477219;0.02;27.086405 +02.02.2015;0.330489384;0.12;25.572126 +03.02.2015;0.225728284;0.05;24.855957 +04.02.2015;0;0;21.693786 +05.02.2015;0.113985685;0;19.153205 +06.02.2015;0;0;17.01986 +07.02.2015;0;0;15.143354 +08.02.2015;0;0.37;14.196389 +09.02.2015;0;0.26;13.361797 +10.02.2015;0;0.34;13.111779 +11.02.2015;0;0.21;12.456951 +12.02.2015;0;0.07;12.076192 +13.02.2015;0;0.05;11.825054 +14.02.2015;0;0.15;11.240578 +15.02.2015;0;0;10.429445 +16.02.2015;0;0.01;9.468975 +17.02.2015;0;0.22;8.781588 +18.02.2015;0;0.28;7.877925 +19.02.2015;0;0.05;7.567328 +20.02.2015;0;0.51;7.555873 +21.02.2015;0.729364088;0.44;8.008075 +22.02.2015;0;0.28;7.279157 +23.02.2015;6.653893059;0.11;8.556553 +24.02.2015;1.691584779;0.43;10.422203 +25.02.2015;0.219177807;0.32;9.706447 +26.02.2015;0.305782636;0.42;9.147714 +27.02.2015;7.456286464;0.35;17.397023 +28.02.2015;0.100934759;0.37;19.164292 +01.03.2015;4.100608595;0.57;19.260996 +02.03.2015;6.189282754;0.81;23.049969 +03.03.2015;2.351472124;0.94;24.241514 +04.03.2015;0.880948936;0.54;24.591998 +05.03.2015;0;0.6;23.805212 +06.03.2015;0;0.36;23.536056 +07.03.2015;0.134325538;0.4;22.296821 +08.03.2015;0;0.87;21.093932 +09.03.2015;0;1.07;19.101897 +10.03.2015;0.306174652;0.42;18.457518 +11.03.2015;0.106222312;0.81;17.109674 +12.03.2015;0.129317835;0.97;15.406941 +13.03.2015;0;0.26;14.384062 +14.03.2015;0.416153117;0.3;13.163393 +15.03.2015;1.838324468;0.43;12.834546 +16.03.2015;0.127764601;1.1;12.874396 +17.03.2015;0;1.69;12.826044 +18.03.2015;0;1.9;11.479469 +19.03.2015;0;1.71;10.71069 +20.03.2015;0;1.23;10.442393 +21.03.2015;0.517761395;0.49;9.770026 +22.03.2015;0;0.37;8.77863 +23.03.2015;0.10170923;0.36;8.606823 +24.03.2015;0;0.51;8.350472 +25.03.2015;0;1.84;8.090294 +26.03.2015;0;0.79;8.420092 +27.03.2015;0.729811067;0.76;7.504301 +28.03.2015;0;1.58;6.603398 +29.03.2015;13.6841915;0.93;12.17778 +30.03.2015;2.905550098;1.71;19.421716 +31.03.2015;18.33312932;1.56;46.153929 +01.04.2015;5.375644914;0.86;41.535136 +02.04.2015;4.834739785;1.11;48.861515 +03.04.2015;0;1.7;42.432497 +04.04.2015;0.125167778;0.99;39.97278 +05.04.2015;0;1.12;33.667576 +06.04.2015;0;0.63;29.770818 +07.04.2015;0;1.26;26.251769 +08.04.2015;0;2.19;22.629107 +09.04.2015;0;2.85;20.687718 +10.04.2015;0;3.23;18.616907 +11.04.2015;0.143457461;1.53;16.784894 +12.04.2015;0;2.66;14.743109 +13.04.2015;0;2.32;12.974395 +14.04.2015;0;2.9;11.825997 +15.04.2015;0;3.79;10.936816 +16.04.2015;0;3.12;9.816939 +17.04.2015;1.739361299;2.22;9.527835 +18.04.2015;0;2.22;8.831997 +19.04.2015;0;2.59;8.040308 +20.04.2015;0;3.19;7.446125 +21.04.2015;0;3.61;6.54149 +22.04.2015;0;2.62;6.063128 +23.04.2015;0;3.06;5.584067 +24.04.2015;0;3.54;5.040144 +25.04.2015;1.036051027;1.11;5.087515 +26.04.2015;2.061346786;2.09;5.110306 +27.04.2015;15.08287028;1.11;10.767407 +28.04.2015;0;2.44;8.574511 +29.04.2015;0;2.2;6.629398 +30.04.2015;4.495005735;1.5;6.468695 +01.05.2015;0.201853597;1.12;6.651212 +02.05.2015;0;2.58;5.644016 +03.05.2015;4.624674841;1.25;5.931206 +04.05.2015;0.611214655;3.14;5.099102 +05.05.2015;0.713806452;2.84;4.259448 +06.05.2015;0.130481147;3.09;4.292848 +07.05.2015;0;3.46;4.57915 +08.05.2015;0;2.71;4.238458 +09.05.2015;4.416673607;2.12;4.102291 +10.05.2015;0.110489032;2.87;3.860088 +11.05.2015;0;3.49;3.540893 +12.05.2015;0.99141461;3.37;3.313754 +13.05.2015;0;3.89;2.937645 +14.05.2015;0;3.62;2.837783 +15.05.2015;0;3.9;2.334776 +16.05.2015;0.455450258;2.14;2.668704 +17.05.2015;0.100209282;3.13;2.606509 +18.05.2015;0;4.32;2.260054 +19.05.2015;0.100215881;3;1.993653 +20.05.2015;0.240429943;1.85;1.969968 +21.05.2015;0;2.77;1.849542 +22.05.2015;0;3.77;1.622966 +23.05.2015;0;1.54;1.627196 +24.05.2015;0;1.94;1.526816 +25.05.2015;0.763212906;2.08;1.702871 +26.05.2015;0;1.46;1.653256 +27.05.2015;0;1.25;1.587107 +28.05.2015;0;2.02;1.372065 +29.05.2015;0.714781746;2.49;1.494517 +30.05.2015;1.797434336;2.65;1.508525 +31.05.2015;0;2.24;1.343536 +01.06.2015;1.9077524;2.25;1.643991 +02.06.2015;0;2.7;1.283713 +03.06.2015;0;3.39;0.913469 +04.06.2015;0.111569687;4.98;0.795185 +05.06.2015;0;5.79;0.653788 +06.06.2015;1.968594361;4.08;0.572147 +07.06.2015;0;4.79;0.522457 +08.06.2015;0;3.03;0.535302 +09.06.2015;0;3.22;0.602977 +10.06.2015;0;3.44;0.479275 +11.06.2015;0;3.04;0.456393 +12.06.2015;0;4.86;0.395009 +13.06.2015;0;2.77;0.431227 +14.06.2015;0;5.51;0.38527 +15.06.2015;0;2.88;0.321956 +16.06.2015;0;3.72;0.338222 +17.06.2015;0;4.06;0.37645 +18.06.2015;4.311581277;2.51;0.694069 +19.06.2015;0.100497674;1.39;0.650672 +20.06.2015;0.162975391;1.51;0.579808 +21.06.2015;1.552314127;1.71;1.523814 +22.06.2015;0.617895402;1.38;2.825669 +23.06.2015;10.47449707;1.86;3.714022 +24.06.2015;0;2.37;1.638874 +25.06.2015;0;3.79;1.051155 +26.06.2015;0;2.99;0.689037 +27.06.2015;5.762995105;3.01;0.852325 +28.06.2015;0;4.3;0.537126 +29.06.2015;0;4.79;0.426541 +30.06.2015;0;5.77;0.140329 +01.07.2015;0;6.03;0.216116 +02.07.2015;0;6.16;0.206475 +03.07.2015;0;5.69;0.306456 +04.07.2015;0;5.77;0.333392 +05.07.2015;2.164609861;5.01;0.150782 +06.07.2015;0.671559919;5.52;0.310616 +07.07.2015;1.073044637;4.43;0.315667 +08.07.2015;0.4049572;2.69;0.284107 +09.07.2015;0;3.21;0.365145 +10.07.2015;0;4.93;0.36325 +11.07.2015;0;4.63;0.342682 +12.07.2015;0.742175486;3.28;0.22183 +13.07.2015;0.917812515;1.61;0.437654 +14.07.2015;0.335801186;2.14;0.482093 +15.07.2015;0;3.18;0.398528 +16.07.2015;0;4.95;0.316123 +17.07.2015;0;4.67;0.262393 +18.07.2015;0;4.7;0.08223 +19.07.2015;18.5499668;2.41;4.793734 +20.07.2015;0.711446537;1.83;0.623911 +21.07.2015;0;4.83;0.392438 +22.07.2015;0;4.22;0.263452 +23.07.2015;0;4;0.178808 +24.07.2015;1.161745747;3.75;0.050885 +25.07.2015;4.739583375;2.86;0.336215 +26.07.2015;1.023947168;3.27;0.290719 +27.07.2015;4.775790837;1.94;0.564419 +28.07.2015;0.22046942;2.71;0.313909 +29.07.2015;0;3.46;0.193449 +30.07.2015;0.310739687;2.57;0.157555 +31.07.2015;0;4.38;0.181167 +01.08.2015;0;3.82;0.14496 +02.08.2015;0;4.89;0.127533 +03.08.2015;0;5.24;0.153291 +04.08.2015;5.275810734;2.84;0.179845 +05.08.2015;0;3.58;0.179909 +06.08.2015;0;4.63;0.113079 +07.08.2015;0;5.29;0.086913 +08.08.2015;0.838703273;3.79;0.054659 +09.08.2015;0;2.86;0.055128 +10.08.2015;18.45712161;3.91;4.067164 +11.08.2015;0.203727284;3.24;0.321283 +12.08.2015;0;3.99;0.14527 +13.08.2015;0;5.06;0.134175 +14.08.2015;0.300627846;2.89;0.047637 +15.08.2015;0.101148058;2.41;0.047741 +16.08.2015;13.96655107;1.4;0.945726 +17.08.2015;13.0154946;1.3;1.553669 +18.08.2015;0;1.52;0.886208 +19.08.2015;0.103992367;2.39;0.345045 +20.08.2015;0;3.06;0.257407 +21.08.2015;0;3.77;0.233115 +22.08.2015;0;3.92;0.282097 +23.08.2015;0.101825612;3.62;0.265316 +24.08.2015;5.562099678;1.85;0.383227 +25.08.2015;0;2.32;0.782742 +26.08.2015;0;4.18;0.252642 +27.08.2015;5.541019025;1.51;0.259085 +28.08.2015;5.502802797;1.83;1.389353 +29.08.2015;0;3.75;0.434066 +30.08.2015;0;4.14;0.282558 +31.08.2015;0.114274753;4.47;0.20771 +01.09.2015;18.47829078;1.46;0.461493 +02.09.2015;0.100209282;2.35;0.220189 +03.09.2015;0;3.18;0.285524 +04.09.2015;0;1.98;0.316121 +05.09.2015;2.091075744;1.48;0.235072 +06.09.2015;0.940822544;1.88;0.227215 +07.09.2015;0.316429087;1.33;0.214042 +08.09.2015;0.231054006;1.47;0.241931 +09.09.2015;0;2.2;0.274223 +10.09.2015;0;2.65;0.317282 +11.09.2015;0;2.69;0.388467 +12.09.2015;0;1.88;0.361774 +13.09.2015;1.050664421;1.51;0.355183 +14.09.2015;1.573098864;1.55;0.268506 +15.09.2015;0.463845252;1.58;0.356508 +16.09.2015;15.0852756;1.06;0.842125 +17.09.2015;4.754206198;1.05;0.82415 +18.09.2015;1.352306651;1.51;0.514047 +19.09.2015;0.249046217;1.39;0.358904 +20.09.2015;0;1.36;0.387005 +21.09.2015;0;1.71;0.556901 +22.09.2015;7.590314374;0.98;0.9087 +23.09.2015;0.914729461;0.93;0.642797 +24.09.2015;0.105731773;1.92;0.456008 +25.09.2015;0;1.67;0.460169 +26.09.2015;0;0.96;0.721392 +27.09.2015;0;2.14;0.688831 +28.09.2015;0;2.08;0.656706 +29.09.2015;0;2.14;0.620153 +30.09.2015;0;2.15;0.513464 +01.10.2015;0;1.97;0.454253 +02.10.2015;0;1.99;0.641321 +03.10.2015;0;1.97;0.621185 +04.10.2015;0;0.98;0.622735 +05.10.2015;0.901883538;1.39;0.518392 +06.10.2015;4.40263371;0.95;0.388521 +07.10.2015;0;1.06;0.427714 +08.10.2015;1.61427714;0.89;0.464805 +09.10.2015;6.348355114;0.82;1.353489 +10.10.2015;0;1.69;0.639001 +11.10.2015;0;1.41;0.683847 +12.10.2015;0.220095833;0.94;0.801054 +13.10.2015;0.288329493;0.33;0.862333 +14.10.2015;1.197675706;0.32;0.964854 +15.10.2015;16.6273538;0.32;2.793781 +16.10.2015;0.100545929;0.47;2.877023 +17.10.2015;0;0.49;1.343599 +18.10.2015;1.472179303;0.47;0.997485 +19.10.2015;0.423122991;0.49;0.76709 +20.10.2015;0.410582301;0.9;0.747152 +21.10.2015;9.153286597;0.62;0.583958 +22.10.2015;0;0.62;0.45371 +23.10.2015;0;1.33;0.551057 +24.10.2015;0;0.46;0.526463 +25.10.2015;0.301801979;0.63;0.512561 +26.10.2015;0;1.34;0.66113 +27.10.2015;0.110131401;1.01;0.637831 +28.10.2015;0;0.55;0.676474 +29.10.2015;0.307945995;0.63;0.598415 +30.10.2015;0;0.78;0.666631 +31.10.2015;0;0.77;0.732306 +01.11.2015;0;0.6;0.811233 +02.11.2015;0.101460971;0.49;0.808923 +03.11.2015;0;0.33;0.777881 +04.11.2015;0;0.35;0.765854 +05.11.2015;0.201751349;0.98;0.776858 +06.11.2015;0.205581155;0.64;0.620153 +07.11.2015;0.601373503;0.75;0.522026 +08.11.2015;0;0.95;0.581254 +09.11.2015;1.150310197;0.75;0.490283 +10.11.2015;0;0.68;0.453829 +11.11.2015;0;0.95;0.4192 +12.11.2015;0;0.86;0.413633 +13.11.2015;1.449292275;0.52;0.430706 +14.11.2015;0.235410377;0.51;0.521205 +15.11.2015;0.555875606;0.59;0.489393 +16.11.2015;0.240938014;0.54;0.429516 +17.11.2015;8.449224568;0.61;1.462533 +18.11.2015;1.755325032;0.66;1.335369 +19.11.2015;18.27323007;0.69;3.106473 +20.11.2015;3.521850818;0.42;7.103129 +21.11.2015;1.348400749;0.24;4.295873 +22.11.2015;0.105311222;0.21;2.451987 +23.11.2015;0.433366928;0.14;1.864489 +24.11.2015;0.120211584;0;1.593253 +25.11.2015;3.508738949;0.15;2.038703 +26.11.2015;0.110528991;0.29;1.835579 +27.11.2015;0;0.03;1.627768 +28.11.2015;0.654330392;0.27;1.460863 +29.11.2015;15.39886263;0.41;7.73805 +30.11.2015;26.36632411;0.45;21.64296 +01.12.2015;6.562073855;0.49;34.297636 +02.12.2015;0.116859243;0.46;24.573917 +03.12.2015;0.102987071;0.46;15.602492 +04.12.2015;1.47904194;0.26;11.866875 +05.12.2015;0.109246337;0.17;9.220344 +06.12.2015;0.233395915;0.39;7.908478 +07.12.2015;0;0.68;6.490688 +08.12.2015;0.108273225;0.18;5.770311 +09.12.2015;1.713607698;0.37;5.588081 +10.12.2015;0;0.13;4.609157 +11.12.2015;5.123945131;0.19;4.870496 +12.12.2015;1.035770485;0.38;10.322082 +13.12.2015;0.211855012;0.38;8.855462 +14.12.2015;0.202589302;0.42;8.197842 +15.12.2015;0;0.19;7.100896 +16.12.2015;2.739947281;0.38;7.59766 +17.12.2015;0.108460496;0.49;7.969175 +18.12.2015;0.613575879;0.5;7.270544 +19.12.2015;0;0.49;6.740516 +20.12.2015;0;0.4;6.351479 +21.12.2015;2.460479131;0.49;6.124973 +22.12.2015;1.616502071;0.49;6.457674 +23.12.2015;0;0.59;6.222186 +24.12.2015;0;0.5;5.642859 +25.12.2015;3.802154414;0.46;5.886817 +26.12.2015;0.10366619;0.92;6.231738 +27.12.2015;0;0.29;5.68726 +28.12.2015;0.103475817;0.19;5.047149 +29.12.2015;0.117668113;0.35;4.688448 +30.12.2015;0;0.28;4.222519 +31.12.2015;1.705440938;0.21;4.223433 +01.01.2016;0;0.23;4.017889 +02.01.2016;8.369063977;0.12;7.317093 +03.01.2016;0.588034675;0.15;14.461141 +04.01.2016;2.664713628;0.08;15.101703 +05.01.2016;0.313912567;0.26;16.96072 +06.01.2016;0.927559742;0.28;15.06295 +07.01.2016;3.927806081;0.28;14.981331 +08.01.2016;0;0.41;16.039465 +09.01.2016;0.099528216;0;13.894992 +10.01.2016;3.926668473;0.48;13.188682 +11.01.2016;4.007747055;0.27;16.235448 +12.01.2016;1.591280505;0.36;22.579827 +13.01.2016;3.102145333;0.31;24 +14.01.2016;1.421460702;0.12;26 +15.01.2016;2.531443794;0.13;24 +16.01.2016;0.351501461;0.1;22 +17.01.2016;0;0;21 +18.01.2016;0;0;19 +19.01.2016;0;0;18 +20.01.2016;0;0;17 +21.01.2016;0;0;16 +22.01.2016;0;0;15 +23.01.2016;1.830081293;0.12;18 +24.01.2016;0.811706003;0.2;17 +25.01.2016;0.309008813;0.37;17 +26.01.2016;0;0.34;13 +27.01.2016;0;0.55;15 +28.01.2016;1.833112643;0.78;17 +29.01.2016;0.107904839;0.51;17 +30.01.2016;7.536723939;0.43;22 +31.01.2016;0.585522187;0.33;14 +01.02.2016;0.692162459;0.59;15 +02.02.2016;6.761576351;0.56;17.517095 +03.02.2016;1.277490294;0.44;19.508173 +04.02.2016;4.32179039;0.25;22.8447 +05.02.2016;0;0.38;24.430915 +06.02.2016;0;0.94;23.071457 +07.02.2016;1.143381551;0.49;20.843161 +08.02.2016;11.01289227;0.52;26.241241 +09.02.2016;8.73877593;0.46;35.07356 +10.02.2016;2.554046236;0.28;40.645547 +11.02.2016;0.567619658;0.36;37.445989 +12.02.2016;0;0.16;33.127436 +13.02.2016;2.40133402;0;30.247736 +14.02.2016;3.37223563;0.33;43.163267 +15.02.2016;0.545083452;0.2;34.951078 +16.02.2016;0.108791133;0;27.866289 +17.02.2016;0;0.1;25.252043 +18.02.2016;0;0.13;22.887992 +19.02.2016;0;0;20.811797 +20.02.2016;8.941678944;0.34;22.393728 +21.02.2016;0.205946991;0.71;44.490382 +22.02.2016;4.448658783;0.64;37.383955 +23.02.2016;5.210107493;0.28;69.780614 +24.02.2016;0.31667498;0.22;53.853118 +25.02.2016;0.182021156;0;48.026933 +26.02.2016;0;0.07;40.424149 +27.02.2016;0;0.38;35.294958 +28.02.2016;0;0.25;29.46965 +29.02.2016;0;0.28;24.575869 +01.03.2016;0.099788551;0.23;21.655856 +02.03.2016;2.543764781;0.45;20.858822 +03.03.2016;0;0.32;18.914856 +04.03.2016;4.054581017;0.17;16.972813 +05.03.2016;2.802675702;0.41;22.858987 +06.03.2016;1.330104522;0.25;20.687357 +07.03.2016;1.4895669;0.1;19.982822 +08.03.2016;0.2254387;0.01;18.236769 +09.03.2016;0;0.19;17.004084 +10.03.2016;0;0.59;15.292344 +11.03.2016;0;0.54;13.741963 +12.03.2016;0;0.37;12.547774 +13.03.2016;0;0.63;11.309854 +14.03.2016;0;0.94;10.237401 +15.03.2016;0;0.31;9.750376 +16.03.2016;0;0.72;8.958825 +17.03.2016;0;0.98;8.378552 +18.03.2016;0;1.45;7.691635 +19.03.2016;0;0.55;6.937422 +20.03.2016;0;0.56;6.583335 +21.03.2016;0;0.77;6.237093 +22.03.2016;0.201403041;0.78;6.006363 +23.03.2016;0;0.81;5.892014 +24.03.2016;0.100209282;0.75;5.51542 +25.03.2016;5.295629966;0.63;6.150663 +26.03.2016;0;1.67;5.828721 +27.03.2016;2.417535746;1.01;5.560486 +28.03.2016;11.95504135;0.74;8.674594 +29.03.2016;0.955642999;1.61;15.443117 +30.03.2016;5.486573008;0.97;13.541014 +31.03.2016;18.36523119;0.68;19.400544 +01.04.2016;12.93356866;1.18;113.67114 +02.04.2016;0;1.54;82.107844 +03.04.2016;0.311702212;1.77;66.821929 +04.04.2016;2.777947475;1.5;54.033702 +05.04.2016;5.288557416;1;53.38014 +06.04.2016;0.207421675;1.77;47.042426 +07.04.2016;2.371324356;1.97;41.448781 +08.04.2016;0;1.41;35.409018 +09.04.2016;0;1.81;30.363167 +10.04.2016;0;1.84;26.219279 +11.04.2016;0;2.81;23.122281 +12.04.2016;2.788103585;1.79;20.835289 +13.04.2016;0.206878578;0.84;19.908118 +14.04.2016;0.110850254;2.5;16.993101 +15.04.2016;0.350645583;1.96;14.864128 +16.04.2016;4.598064622;1.46;15.11145 +17.04.2016;3.985827078;1.55;19.05834 +18.04.2016;0;2.1;14.310609 +19.04.2016;0.112219084;1.14;14.231106 +20.04.2016;0;2.46;14.236287 +21.04.2016;0;3.06;13.086719 +22.04.2016;0;2.34;11.993123 +23.04.2016;1.694991123;1.01;12.306438 +24.04.2016;0.325431496;0.88;11.843871 +25.04.2016;6.326924595;0.69;11.909214 +26.04.2016;1.543896592;1.15;14.036164 +27.04.2016;0.518940383;0.73;12.009422 +28.04.2016;0;1.4;10.280654 +29.04.2016;0;0.95;9.101957 +30.04.2016;3.466456859;1.72;8.363818 +01.05.2016;0.159418201;3.11;8.551597 +02.05.2016;0;3.61;6.51079 +03.05.2016;0.435001943;1.48;6.02769 +04.05.2016;0;2.85;5.368609 +05.05.2016;0;3.32;4.990627 +06.05.2016;0;4.16;4.540968 +07.05.2016;0;4.29;4.319355 +08.05.2016;0;4.57;3.769702 +09.05.2016;0;4.33;3.344512 +10.05.2016;0;3.25;3.137534 +11.05.2016;0.384986665;3.2;2.993173 +12.05.2016;0;2.95;2.755869 +13.05.2016;0.430369072;3.08;2.797507 +14.05.2016;0.149206473;1.5;2.709491 +15.05.2016;0;1.48;2.345982 +16.05.2016;0;1.63;2.370086 +17.05.2016;0;1.3;2.005466 +18.05.2016;0.113391854;1.46;3.404877 +19.05.2016;1.112386621;1.85;7.296716 +20.05.2016;0;2.62;2.172888 +21.05.2016;0;3.25;2.133433 +22.05.2016;1.864368134;3.41;1.866284 +23.05.2016;1.265196483;1.53;1.467837 +24.05.2016;1.771244042;1.3;1.894978 +25.05.2016;0;1.36;1.9752 +26.05.2016;0;3.47;1.573497 +27.05.2016;8.319655478;2.41;2.33996 +28.05.2016;0.203177184;2.96;1.829068 +29.05.2016;2.73192665;2.12;1.709702 +30.05.2016;18.88931006;1.77;8.95159 +31.05.2016;0;1.86;4.092378 +01.06.2016;9.534581958;1.58;4.699488 +02.06.2016;2.583155448;2.07;4.857672 +03.06.2016;4.311377293;1.7;4.482569 +04.06.2016;0.42769823;2.09;3.807784 +05.06.2016;0;4.44;2.555667 +06.06.2016;0;4.6;1.511484 +07.06.2016;0;4.96;0.942042 +08.06.2016;0.40516591;2.73;0.997192 +09.06.2016;0;4.21;0.898497 +10.06.2016;0;4.25;0.780168 +11.06.2016;0;1.95;0.637056 +12.06.2016;5.575656572;2.04;2.174046 +13.06.2016;3.027432781;1.73;2.259874 +14.06.2016;2.364694311;2.76;1.868474 +15.06.2016;16.39205803;2.15;2.864543 +16.06.2016;0.207891926;1.44;2.868224 +17.06.2016;1.336235888;3.19;4.381649 +18.06.2016;0;3.41;3.74645 +19.06.2016;1.36919939;2.2;3.258419 +20.06.2016;3.773280497;3.3;3.265759 +21.06.2016;0.667187168;2.08;3.274147 +22.06.2016;0;2.83;2.998418 +23.06.2016;0;6.11;2.689739 +24.06.2016;0.327630879;5.13;14.381339 +25.06.2016;1.902249526;1.85;10.456674 +26.06.2016;0.207473991;3.64;6.658158 +27.06.2016;0;2.53;4.954631 +28.06.2016;0;3.17;4.802392 +29.06.2016;0.227507408;4.19;3.971303 +30.06.2016;0.301788243;1.91;3.430218 +01.07.2016;0;2.31;3.095551 +02.07.2016;1.07184607;2.59;2.837811 +03.07.2016;2.475292137;2.92;2.740753 +04.07.2016;0;2.38;2.670906 +05.07.2016;0.111215047;2.87;2.547434 +06.07.2016;0;3.43;2.150196 +07.07.2016;0.112414583;4.04;2.006068 +08.07.2016;0;3.04;1.91181 +09.07.2016;0;3.75;1.703555 +10.07.2016;0;4.64;1.62032 +11.07.2016;0;3.03;1.708246 +12.07.2016;0.110809941;3.9;1.583203 +13.07.2016;17.03403353;2.9;2.966055 +14.07.2016;0.144179897;2.58;1.943222 +15.07.2016;0;2.55;1.426019 +16.07.2016;0;2.11;1.478625 +17.07.2016;0;2.38;1.449198 +18.07.2016;0;5.16;1.204307 +19.07.2016;0;5.62;1.477551 +20.07.2016;0;5.69;1.30457 +21.07.2016;3.202411363;2.48;1.587464 +22.07.2016;0;3.26;1.495235 +23.07.2016;11.98292241;2.56;3.329446 +24.07.2016;18.1615269;2.12;1.64346 +25.07.2016;0.106852963;3.84;1.449671 +26.07.2016;0;2.78;1.336794 +27.07.2016;0.531528718;3.89;1.373016 +28.07.2016;0.100209282;2.11;1.308763 +29.07.2016;3.160570324;2.34;1.381977 +30.07.2016;0;2.92;1.170749 +31.07.2016;0;2.5;1.131734 +01.08.2016;0;3.13;0.816771 +02.08.2016;1.270286145;1.48;1.019339 +03.08.2016;4.530701661;1.57;1.389518 +04.08.2016;3.016878384;1.52;1.896977 +05.08.2016;0.100289513;3.21;1.596594 +06.08.2016;0;2.67;1.3715 +07.08.2016;0;4.93;1.27007 +08.08.2016;0;3.7;1.077521 +09.08.2016;0.109530437;2.63;0.992203 +10.08.2016;0.900571308;2.16;1.090999 +11.08.2016;2.399586919;1.7;1.00089 +12.08.2016;0.100877001;1.48;1.118367 +13.08.2016;0;4.71;0.945061 +14.08.2016;0;3.35;0.855563 +15.08.2016;0;4.37;0.80397 +16.08.2016;0;4.32;0.673348 +17.08.2016;0;4.39;0.620793 +18.08.2016;0;3.96;0.643303 +19.08.2016;0;2.86;0.769216 +20.08.2016;1.283211371;1.89;0.86842 +21.08.2016;0.318061239;2.1;0.845269 +22.08.2016;0;1.59;0.809725 +23.08.2016;0;3.67;0.623575 +24.08.2016;0;4.57;0.583828 +25.08.2016;0;4.63;0.451006 +26.08.2016;0;4.7;0.390638 +27.08.2016;0;4.77;0.381175 +28.08.2016;34.51466023;3.35;0.783103 +29.08.2016;0;2.26;0.44335 +30.08.2016;0;3.92;0.28983 +31.08.2016;0;3.86;0.362807 +01.09.2016;0;4.02;0.34465 +02.09.2016;0;3.69;0.263442 +03.09.2016;0;2.92;0.266859 +04.09.2016;4.869164961;1.83;0.500049 +05.09.2016;0.620093261;1.65;0.514997 +06.09.2016;0;3.49;0.421759 +07.09.2016;0;3.74;0.360717 +08.09.2016;0;3.77;0.623417 +09.09.2016;0;3;0.647308 +10.09.2016;0;3.59;0.566866 +11.09.2016;0;3.57;0.642779 +12.09.2016;0;3.83;0.584243 +13.09.2016;0;3.87;0.624604 +14.09.2016;0;3.46;0.773907 +15.09.2016;0;3.48;0.634482 +16.09.2016;0;1.57;0.59636 +17.09.2016;13.08211674;1.2;1.090803 +18.09.2016;0.130423501;1.87;0.843269 +19.09.2016;0.11664365;1;0.649716 +20.09.2016;0;1.02;0.681233 +21.09.2016;0;2.39;0.594031 +22.09.2016;0;2.34;0.456837 +23.09.2016;0;2.14;0.362912 +24.09.2016;0;2.3;0.383837 +25.09.2016;0;2.78;0.337883 +26.09.2016;0;1.42;0.258338 +27.09.2016;0;2.4;0.247644 +28.09.2016;0;1.6;0.985329 +29.09.2016;0;2.37;1.112481 +30.09.2016;1.314380267;0.94;1.097666 +01.10.2016;7.856574862;0.96;1.855835 +02.10.2016;1.626249664;1.59;1.543922 +03.10.2016;3.48372122;1.1;1.419513 +04.10.2016;0.100209282;1.22;1.447856 +05.10.2016;0;1.34;1.387699 +06.10.2016;0;0.68;1.601107 +07.10.2016;1.07828162;0.74;2.150463 +08.10.2016;0.953118453;0.99;2.149589 +09.10.2016;0;0.87;2.01451 +10.10.2016;0;0.54;2.190437 +11.10.2016;0.401547464;0.69;2.230597 +12.10.2016;0.922311521;0.59;2.324864 +13.10.2016;0;0.58;2.237421 +14.10.2016;0;1.05;2.22384 +15.10.2016;0;0.82;2.383007 +16.10.2016;0.107234188;1.04;2.20354 +17.10.2016;1.431599645;0.79;2.184616 +18.10.2016;0.887529053;0.85;2.192242 +19.10.2016;1.557685112;0.57;2.283406 +20.10.2016;4.218952387;0.49;3.127501 +21.10.2016;2.839809068;0.55;2.666176 +22.10.2016;2.518736468;0.56;2.78843 +23.10.2016;0;0.49;2.726416 +24.10.2016;6.607301235;0.56;3.193445 +25.10.2016;3.794312657;0.63;3.883982 +26.10.2016;0;0.57;3.061952 +27.10.2016;0.102334741;0.67;2.556083 +28.10.2016;0;0.64;2.419092 +29.10.2016;0;1.3;2.460045 +30.10.2016;0;0.65;2.391391 +31.10.2016;0;0.98;2.428228 +01.11.2016;0;0.39;2.418025 +02.11.2016;1.030322287;0.68;2.655645 +03.11.2016;0.118985639;0.36;2.558833 +04.11.2016;0.429524248;0.27;2.715995 +05.11.2016;4.297140032;0.39;3.624203 +06.11.2016;0.202492988;0.32;3.226817 +07.11.2016;4.252920837;0.28;3.551767 +08.11.2016;2.859901977;0.17;3.772956 +09.11.2016;4.06644106;0.14;3.928129 +10.11.2016;2.335767308;0.23;5.782891 +11.11.2016;10.75225678;0.26;11.36022 +12.11.2016;0;0.07;6.61794 +13.11.2016;0;0.03;4.741424 +14.11.2016;0.10398106;0;4.222565 +15.11.2016;3.267344925;0.15;4.521476 +16.11.2016;6.133248608;0.46;11.04024 +17.11.2016;2.558420874;0.53;8.805645 +18.11.2016;11.05649097;0.51;11.054335 +19.11.2016;0.334527715;0.32;8.602058 +20.11.2016;0;0.45;6.936625 +21.11.2016;0;0.5;6.053484 +22.11.2016;0;0.43;5.378617 +23.11.2016;0;0.68;4.958714 +24.11.2016;0;0.89;4.675723 +25.11.2016;0;0.63;4.342186 +26.11.2016;0;0.26;4.086791 +27.11.2016;0;0.29;3.91826 +28.11.2016;0.126594003;0;3.852809 +29.11.2016;0;0;3.971793 +30.11.2016;0;0;3.6 +01.12.2016;0;0.23;3.059105 +02.12.2016;2.982331796;0.24;3.163502 +03.12.2016;0.104258295;0;3.207182 +04.12.2016;0.100284967;0;3.657785 +05.12.2016;0;0;5.361678 +06.12.2016;0;0;3.356678 +07.12.2016;0;0;3.219573 +08.12.2016;0;0;3.341401 +09.12.2016;0;0.07;3.23561 +10.12.2016;0;0.06;3.505606 +11.12.2016;0.244925705;0.37;3.580689 +12.12.2016;0.365184914;0.34;3.556574 +13.12.2016;1.358897575;0.21;3.457692 +14.12.2016;1.771248669;0.26;3.808543 +15.12.2016;0;0.31;3.677545 +16.12.2016;0;0.18;3.549057 +17.12.2016;0.108076322;0.09;3.196081 +18.12.2016;0;0.21;3.181549 +19.12.2016;0.10906751;0.22;3.326469 +20.12.2016;0;0;3.266387 +21.12.2016;0;0;3.133773 +22.12.2016;1.903407829;0.02;3.324144 +23.12.2016;0;0.14;3.584695 +24.12.2016;0.395363312;0.38;3.548042 +25.12.2016;0.285241167;0.39;3.545211 +26.12.2016;0.830906677;0.39;3.442165 +27.12.2016;0;0.32;3.118225 +28.12.2016;0;0.28;3.043744 +29.12.2016;0;0;3.05141 +30.12.2016;0;0;3.061955 +31.12.2016;0;0;2.959312 diff --git a/src/spotpy/examples/hymod_python/hymod_input.csv b/src/spotpy/examples/hymod_python/hymod_input.csv new file mode 100644 index 00000000..3c158e03 --- /dev/null +++ b/src/spotpy/examples/hymod_python/hymod_input.csv @@ -0,0 +1,1828 @@ +Date;rainfall[mm];TURC [mm d-1];Discharge[ls-1] +01.01.2012;2.052861283;0.35;nan +02.01.2012;0;0.26;nan +03.01.2012;0.58456085;0.39;nan +04.01.2012;0.123880377;0.53;nan +05.01.2012;0;0.44;nan +06.01.2012;0;0.63;nan +07.01.2012;0;0.42;nan +08.01.2012;0;0.39;nan +09.01.2012;1.163450614;0.29;nan +10.01.2012;0.110276668;0.27;nan +11.01.2012;0;0;nan +12.01.2012;0;0;nan +13.01.2012;0;0;nan +14.01.2012;0;0;nan +15.01.2012;0;0;nan +16.01.2012;0;0;nan +17.01.2012;0;0;nan +18.01.2012;1.219186104;0;nan +19.01.2012;11.18647129;0.34;nan +20.01.2012;6.105975569;0.23;nan +21.01.2012;4.373221849;0.29;nan +22.01.2012;5.178867935;0.35;nan +23.01.2012;2.623482708;0.31;nan +24.01.2012;1.369532702;0.17;nan +25.01.2012;0.100778681;0;nan +26.01.2012;0;0;nan +27.01.2012;0.636631682;0.03;nan +28.01.2012;0;0.05;nan +29.01.2012;0;0;nan +30.01.2012;0;0;nan +31.01.2012;0;0;nan +01.02.2012;0;0;nan +02.02.2012;0;0;nan +03.02.2012;0;0;nan +04.02.2012;0;0;nan +05.02.2012;0;0;nan +06.02.2012;0;0;nan +07.02.2012;0;0;nan +08.02.2012;0;0;nan +09.02.2012;0;0;nan +10.02.2012;0;0;nan +11.02.2012;0;0;nan +12.02.2012;0;0;nan +13.02.2012;0;0;nan +14.02.2012;0;0.02;nan +15.02.2012;2.17738637;0.32;nan +16.02.2012;0;0.39;nan +17.02.2012;0.2499812;0.41;nan +18.02.2012;0.931498122;0.43;nan +19.02.2012;1.746463163;0.53;nan +20.02.2012;0;0.04;nan +21.02.2012;0;0.06;nan +22.02.2012;0;0.45;nan +23.02.2012;0;0.47;nan +24.02.2012;0;0.62;nan +25.02.2012;0;0.94;nan +26.02.2012;0;0.59;nan +27.02.2012;0;0.34;nan +28.02.2012;0;0.62;nan +29.02.2012;0.207535518;1.04;nan +01.03.2012;0;0.63;nan +02.03.2012;0.100209282;0.58;nan +03.03.2012;0.102361883;0.54;nan +04.03.2012;0;0.65;nan +05.03.2012;0.650417002;0.56;nan +06.03.2012;0;1.06;nan +07.03.2012;1.16677932;0.33;nan +08.03.2012;0.620345275;0.81;nan +09.03.2012;0;0.51;nan +10.03.2012;0;0.65;nan +11.03.2012;0;0.79;nan +12.03.2012;0;1.35;nan +13.03.2012;0;0.66;nan +14.03.2012;0;0.59;nan +15.03.2012;0;1.43;nan +16.03.2012;0;1.89;nan +17.03.2012;0;1.83;nan +18.03.2012;6.356746921;0.69;nan +19.03.2012;0;1.54;nan +20.03.2012;0;1.47;nan +21.03.2012;0;1.9;nan +22.03.2012;0;2.35;nan +23.03.2012;0;2.38;nan +24.03.2012;0;2.3;nan +25.03.2012;0;2.67;nan +26.03.2012;0;2.5;nan +27.03.2012;0;2.67;nan +28.03.2012;0;2.81;nan +29.03.2012;0;1.12;nan +30.03.2012;0;0.85;nan +31.03.2012;0;0.84;nan +01.04.2012;0;1.4;nan +02.04.2012;0;0.9;nan +03.04.2012;0.751147786;2.11;nan +04.04.2012;6.234130095;1.55;nan +05.04.2012;0;0.71;nan +06.04.2012;0;1.04;nan +07.04.2012;0.641610559;0.74;nan +08.04.2012;0;0.94;nan +09.04.2012;2.228532307;0.63;nan +10.04.2012;3.026204163;1.12;nan +11.04.2012;0.46035981;1.3;nan +12.04.2012;1.034950878;1.2;nan +13.04.2012;0.099439631;1.36;nan +14.04.2012;0;1.56;nan +15.04.2012;0;1.58;nan +16.04.2012;0;1.11;nan +17.04.2012;0;1.75;nan +18.04.2012;0;1.54;nan +19.04.2012;1.666469734;1.58;nan +20.04.2012;6.49722907;1.42;nan +21.04.2012;4.282479402;1.18;nan +22.04.2012;3.149470554;2.02;nan +23.04.2012;0;1.86;nan +24.04.2012;0.576750765;1.21;nan +25.04.2012;0.227285801;1.75;nan +26.04.2012;1.477948828;1.17;nan +27.04.2012;0.115071088;1.82;nan +28.04.2012;0;3.96;nan +29.04.2012;0;2.4;nan +30.04.2012;0.211165732;3.55;nan +01.05.2012;0;3.85;nan +02.05.2012;7.043225031;2.26;nan +03.05.2012;0;2.08;nan +04.05.2012;2.546992839;2.83;nan +05.05.2012;8.085650311;1.21;nan +06.05.2012;4.67993303;1.11;nan +07.05.2012;0;1.61;nan +08.05.2012;0;3.36;nan +09.05.2012;3.181178733;1.58;nan +10.05.2012;0.10099184;2.63;nan +11.05.2012;14.48655285;2.61;nan +12.05.2012;0;1.85;nan +13.05.2012;0;2.65;nan +14.05.2012;0;2.9;nan +15.05.2012;11.72812871;1.69;nan +16.05.2012;2.567372337;1.93;nan +17.05.2012;0.127193178;3.14;nan +18.05.2012;2.818878724;1.76;nan +19.05.2012;8.900350658;3.05;nan +20.05.2012;0.401544065;4.07;nan +21.05.2012;0;2.12;nan +22.05.2012;0;5.36;nan +23.05.2012;3.679706569;3.09;nan +24.05.2012;0.101080379;4.95;nan +25.05.2012;0;5.01;nan +26.05.2012;0;4.98;nan +27.05.2012;0;3.25;nan +28.05.2012;0.321305602;3.43;nan +29.05.2012;0;4.73;nan +30.05.2012;0;4.1;nan +31.05.2012;0.224517541;1.68;nan +01.06.2012;4.596540569;2.27;nan +02.06.2012;0;3.01;nan +03.06.2012;1.364553991;1.31;nan +04.06.2012;1.065027646;1.73;nan +05.06.2012;0;2.11;nan +06.06.2012;0;1.71;nan +07.06.2012;0;2.09;nan +08.06.2012;0;3.71;nan +09.06.2012;0;3.47;nan +10.06.2012;0;2.82;nan +11.06.2012;0;1.97;nan +12.06.2012;7.23930017;2.48;nan +13.06.2012;26.50460299;1.43;nan +14.06.2012;0.100491752;2.32;nan +15.06.2012;0.704714972;1.83;nan +16.06.2012;7.426936784;1.57;nan +17.06.2012;0;4.32;nan +18.06.2012;0;4.34;nan +19.06.2012;8.756527923;2.39;nan +20.06.2012;17.07189609;1.66;nan +21.06.2012;5.24496361;2.05;nan +22.06.2012;0.10174942;3.58;nan +23.06.2012;0;3.71;nan +24.06.2012;4.402583345;2.73;nan +25.06.2012;0.425813334;2.34;nan +26.06.2012;0;3.64;nan +27.06.2012;0.871569354;2.33;nan +28.06.2012;0.100209282;2.93;nan +29.06.2012;15.37761492;3.53;nan +30.06.2012;0.103716701;4.54;nan +01.07.2012;1.723063686;2.38;nan +02.07.2012;0.538548728;1.56;nan +03.07.2012;0.103595763;4.3;nan +04.07.2012;0;5.09;nan +05.07.2012;0.859775595;3.46;nan +06.07.2012;0.833394972;2.92;nan +07.07.2012;2.761336277;4.24;nan +08.07.2012;6.613458276;2.5;nan +09.07.2012;1.343123714;3.39;nan +10.07.2012;6.240313766;3.14;nan +11.07.2012;3.491422269;2.14;nan +12.07.2012;0.444357341;2.55;nan +13.07.2012;15.09272074;1.73;nan +14.07.2012;25.91844249;2.54;nan +15.07.2012;2.369939964;2.53;nan +16.07.2012;0.664489808;2.32;nan +17.07.2012;1.152821883;1.91;nan +18.07.2012;0;3.23;nan +19.07.2012;0;2.65;nan +20.07.2012;0.104251899;2.1;nan +21.07.2012;7.524294533;1.91;nan +22.07.2012;0;4.22;nan +23.07.2012;0;4.84;nan +24.07.2012;0;5.25;nan +25.07.2012;0;5.52;nan +26.07.2012;0;4.96;nan +27.07.2012;0.71497793;4.87;nan +28.07.2012;5.635569646;2.9;nan +29.07.2012;0.248982158;3.05;nan +30.07.2012;3.210364058;3.03;nan +31.07.2012;0;2.69;nan +01.08.2012;0;5.06;nan +02.08.2012;0;3.52;nan +03.08.2012;0;3.49;nan +04.08.2012;0;3.14;nan +05.08.2012;0.826030268;2.49;nan +06.08.2012;5.221529943;2.71;nan +07.08.2012;0.312130111;2.83;nan +08.08.2012;0;3.62;nan +09.08.2012;0;2.63;nan +10.08.2012;0;3.52;nan +11.08.2012;0;3.6;nan +12.08.2012;0;4.19;nan +13.08.2012;0;3.95;nan +14.08.2012;0;3.63;nan +15.08.2012;0;3.02;nan +16.08.2012;6.757477709;3.6;nan +17.08.2012;0;3.48;nan +18.08.2012;0;4.86;nan +19.08.2012;0;4.88;nan +20.08.2012;0.221908764;3;nan +21.08.2012;0;3.52;nan +22.08.2012;0;3.96;nan +23.08.2012;0;4.23;nan +24.08.2012;5.486384479;1.54;nan +25.08.2012;0;2.79;nan +26.08.2012;0.452769647;1.82;nan +27.08.2012;0;3.38;nan +28.08.2012;0;2.53;nan +29.08.2012;0.612815989;2.96;nan +30.08.2012;0;1.35;nan +31.08.2012;1.125232008;1.71;nan +01.09.2012;0;2.65;nan +02.09.2012;0;3;nan +03.09.2012;0;3.54;nan +04.09.2012;0;3.21;nan +05.09.2012;0;1.2;nan +06.09.2012;0;2.1;nan +07.09.2012;0;3.13;nan +08.09.2012;0;3.64;nan +09.09.2012;0;3.76;nan +10.09.2012;0;3.38;nan +11.09.2012;13.54578198;1.36;nan +12.09.2012;1.412819865;1;nan +13.09.2012;0.100209282;1.37;nan +14.09.2012;2.64355724;2.15;nan +15.09.2012;0.203690864;1.02;nan +16.09.2012;0.103141494;2.35;nan +17.09.2012;0;2.72;nan +18.09.2012;1.065046071;1.86;nan +19.09.2012;0.463291857;2.12;nan +20.09.2012;0.100209282;1.4;nan +21.09.2012;2.804011549;1.34;nan +22.09.2012;0.100891145;1.55;nan +23.09.2012;0;1.11;nan +24.09.2012;5.614039905;1.15;nan +25.09.2012;2.346876165;0.95;nan +26.09.2012;3.562013413;0.95;nan +27.09.2012;2.39513061;1.22;nan +28.09.2012;0;1.94;nan +29.09.2012;0.101817107;1.37;nan +30.09.2012;0.103899938;1.53;nan +01.10.2012;0.307930088;1.51;nan +02.10.2012;0.10254475;1.2;nan +03.10.2012;0.403395594;1.15;nan +04.10.2012;12.51779236;1.09;nan +05.10.2012;1.41091845;0.86;nan +06.10.2012;6.073277622;1;nan +07.10.2012;2.680292566;1.42;nan +08.10.2012;0.299858195;0.81;nan +09.10.2012;0.732005881;1.52;nan +10.10.2012;0;1.04;nan +11.10.2012;0.100720276;1.18;nan +12.10.2012;3.197505101;0.65;nan +13.10.2012;3.555910417;1.21;nan +14.10.2012;7.480236484;0.74;nan +15.10.2012;0.454507793;0.6;nan +16.10.2012;0.099439631;0.8;nan +17.10.2012;0.100209282;0.62;nan +18.10.2012;0;1.87;nan +19.10.2012;0;1.86;nan +20.10.2012;0.10058936;1.42;nan +21.10.2012;0.100640272;1.75;nan +22.10.2012;0.100209282;1.24;nan +23.10.2012;0;0.6;nan +24.10.2012;0.100209282;0.54;nan +25.10.2012;0;0.6;nan +26.10.2012;14.07118471;0.39;nan +27.10.2012;1.516291237;0.16;nan +28.10.2012;0.111496891;0;nan +29.10.2012;0.108158529;0;nan +30.10.2012;5.133717827;0.37;nan +31.10.2012;0.122396573;0.81;nan +01.11.2012;2.39637902;0.5;nan +02.11.2012;8.131136921;0.62;nan +03.11.2012;7.789490852;0.44;nan +04.11.2012;3.115891884;0.46;nan +05.11.2012;2.648004818;0.58;nan +06.11.2012;0.108211059;0.64;nan +07.11.2012;0;0.49;nan +08.11.2012;0;0.5;nan +09.11.2012;0;0.49;nan +10.11.2012;10.50276489;0.46;nan +11.11.2012;0.103268345;0.5;nan +12.11.2012;0.101566606;0.3;nan +13.11.2012;0.200069189;0.01;nan +14.11.2012;0.105169605;0.08;nan +15.11.2012;0;0.21;nan +16.11.2012;0;0.21;nan +17.11.2012;0;0.25;nan +18.11.2012;0.522474816;0.38;nan +19.11.2012;0.101078256;0.36;nan +20.11.2012;0.105382174;0.22;nan +21.11.2012;0.249835567;0.2;nan +22.11.2012;0.100249036;0.18;nan +23.11.2012;0.201533138;0.28;nan +24.11.2012;0.309757147;0.4;nan +25.11.2012;0.183579714;0.63;nan +26.11.2012;5.663064676;0.31;nan +27.11.2012;0.448863743;0.39;nan +28.11.2012;0.203350776;0.35;nan +29.11.2012;0;0.25;nan +30.11.2012;0.15531028;0.06;nan +01.12.2012;0;0;nan +02.12.2012;2.229082138;0.08;nan +03.12.2012;0.631836587;0.07;nan +04.12.2012;1.450042377;0.2;nan +05.12.2012;0.20808764;0.15;nan +06.12.2012;0;0;nan +07.12.2012;0;0;nan +08.12.2012;0;0;nan +09.12.2012;6.108605507;0;nan +10.12.2012;3.320764568;0.13;nan +11.12.2012;0;0;nan +12.12.2012;0;0;nan +13.12.2012;0;0;nan +14.12.2012;11.3498736;0.08;nan +15.12.2012;1.07618634;0.32;nan +16.12.2012;0.965767621;0.39;nan +17.12.2012;4.037667261;0.29;nan +18.12.2012;0.100254803;0.27;nan +19.12.2012;0.200418564;0.17;nan +20.12.2012;0.228574953;0.13;nan +21.12.2012;4.122440719;0.09;nan +22.12.2012;3.902192703;0.25;nan +23.12.2012;8.965119864;0.46;nan +24.12.2012;1.654593813;0.51;nan +25.12.2012;2.19554711;0.45;nan +26.12.2012;5.305579636;0.39;nan +27.12.2012;8.833007442;0.51;nan +28.12.2012;0;0.3;nan +29.12.2012;0;0.52;nan +30.12.2012;0.936592981;0.57;nan +31.12.2012;0;0.4;nan +01.01.2013;2.052861283;0.35;24.418331 +02.01.2013;0;0.27;18.871897 +03.01.2013;0.58456085;0.37;15.542923 +04.01.2013;0.123880377;0.46;13.749797 +05.01.2013;0;0.41;12.432438 +06.01.2013;0;0.4;10.779954 +07.01.2013;0;0.38;9.679059 +08.01.2013;0;0.32;8.504039 +09.01.2013;1.163450614;0.29;7.848518 +10.01.2013;0.110276668;0.28;7.778211 +11.01.2013;0;0;6.871534 +12.01.2013;0;0;5.976367 +13.01.2013;0;0;5.639718 +14.01.2013;0;0;5.482801 +15.01.2013;0;0;5.551196 +16.01.2013;0;0;5.388404 +17.01.2013;0;0;5.226621 +18.01.2013;0;0;5.16354 +19.01.2013;0;0;5.564683 +20.01.2013;0;0;5.957756 +21.01.2013;0;0;6.274101 +22.01.2013;0;0;6.25 +23.01.2013;0;0;6.23 +24.01.2013;0;0;6.21 +25.01.2013;0;0;6.19 +26.01.2013;0;0;6.17 +27.01.2013;3.310331039;0;6.15 +28.01.2013;8.098844635;0.17;6.143736 +29.01.2013;5.555837156;0.44;67.386173 +30.01.2013;4.659346435;0.57;98.59951 +31.01.2013;8.678574079;0.46;80.011049 +01.02.2013;6.416312834;0.39;103.328494 +02.02.2013;0.585763486;0.25;96.736221 +03.02.2013;0.98774513;0.22;65.159635 +04.02.2013;0.878132691;0.39;59.196146 +05.02.2013;4.848835201;0.44;56.141688 +06.02.2013;2.214924475;0;46.823822 +07.02.2013;0.315204331;0.06;38.530109 +08.02.2013;0.688363528;0;34.144966 +09.02.2013;0.537587552;0;30.088306 +10.02.2013;0;0;26.788075 +11.02.2013;0;0;23.962136 +12.02.2013;0;0;20.621056 +13.02.2013;0;0;17.775907 +14.02.2013;0;0;15.857303 +15.02.2013;2.737719864;0.01;14.777229 +16.02.2013;1.015202732;0.16;17.461349 +17.02.2013;0;0.2;22.883208 +18.02.2013;0;0.34;23.845093 +19.02.2013;2.54909879;0;21.86127 +20.02.2013;0;0;19.853548 +21.02.2013;0;0;18.264846 +22.02.2013;0;0;17.236124 +23.02.2013;0;0;16.584315 +24.02.2013;1.274964868;0;15.375273 +25.02.2013;5.233084746;0.11;13.871548 +26.02.2013;0.257978214;0.22;13.038394 +27.02.2013;0;0.06;14.918089 +28.02.2013;0;0.19;15.247023 +01.03.2013;0;0.23;18.653939 +02.03.2013;0;0.64;24.390232 +03.03.2013;0;0.13;26.492173 +04.03.2013;0.127083124;0.29;25.443637 +05.03.2013;0;0.48;23.432959 +06.03.2013;0.102087612;0.99;22.280846 +07.03.2013;1.790611675;0.67;21.452868 +08.03.2013;0.558562408;1.28;22.858965 +09.03.2013;2.167173903;0.64;22.082662 +10.03.2013;1.357020944;0.42;20.443747 +11.03.2013;0;0;18.716441 +12.03.2013;0;0;18.244689 +13.03.2013;0.739369543;0;16.916135 +14.03.2013;0.214254297;0;15.284938 +15.03.2013;0.104845802;0;14.00103 +16.03.2013;0;0.31;13.50998 +17.03.2013;1.303862735;0.19;14.320551 +18.03.2013;0;0.42;27.354957 +19.03.2013;0.142673758;0.53;36.772176 +20.03.2013;4.864261381;0.32;48.00298 +21.03.2013;0;0.17;50.356696 +22.03.2013;0;0.17;45.946707 +23.03.2013;0;0;40.412788 +24.03.2013;0;0;34.953245 +25.03.2013;0;0;30.804001 +26.03.2013;0;0;27.969613 +27.03.2013;0;0;24.805747 +28.03.2013;0;0;23.038726 +29.03.2013;0.203593466;0.07;21.382703 +30.03.2013;0;0.13;19.574033 +31.03.2013;0;0;17.755825 +01.04.2013;0;0;16.264878 +02.04.2013;0;0.19;14.497697 +03.04.2013;0;0.23;12.911583 +04.04.2013;0;0.61;12.519697 +05.04.2013;0;0.29;11.880156 +06.04.2013;0;0.28;11.099295 +07.04.2013;0;0.25;10.792131 +08.04.2013;0.712984118;0.83;11.031519 +09.04.2013;2.157146283;0.62;11.063046 +10.04.2013;1.125369394;1;10.432581 +11.04.2013;5.339580331;1.39;10.405523 +12.04.2013;12.33943522;1.47;20.367295 +13.04.2013;0.508279458;2.34;18.812959 +14.04.2013;0;2.01;16.443959 +15.04.2013;0;3.15;15.842358 +16.04.2013;2.855278519;2.57;15.963371 +17.04.2013;0;2.02;14.906706 +18.04.2013;0;3.27;14.117884 +19.04.2013;0.353597317;1.69;13.188015 +20.04.2013;0;1.98;12.052954 +21.04.2013;0;2.32;11.928762 +22.04.2013;0;2.08;11.40644 +23.04.2013;0.876230574;1.88;10.633094 +24.04.2013;0;3.67;9.135218 +25.04.2013;0;3.49;8.348676 +26.04.2013;13.82395604;1.9;9.811417 +27.04.2013;8.293600025;0.8;16.038199 +28.04.2013;0.478398276;1.13;13.761059 +29.04.2013;0;2.54;12.086581 +30.04.2013;1.420622693;1.03;11.431914 +01.05.2013;0.141786314;1.51;10.747734 +02.05.2013;0;2.25;10.073772 +03.05.2013;0;1.86;9.441185 +04.05.2013;0;2.85;8.996614 +05.05.2013;0;3.81;8.189752 +06.05.2013;0;3.47;7.532977 +07.05.2013;3.317989574;1.62;7.249058 +08.05.2013;0.207117652;2.25;7.166745 +09.05.2013;2.352225074;2.29;7.313077 +10.05.2013;0;2.35;6.558072 +11.05.2013;0.687868446;1.85;5.795573 +12.05.2013;9.546001617;1.88;6.811404 +13.05.2013;1.497689714;1.29;6.169322 +14.05.2013;1.034103142;1.53;5.979106 +15.05.2013;1.586295215;2.13;6.403671 +16.05.2013;0.77223393;2.24;6.448726 +17.05.2013;0.105340329;1.33;6.43021 +18.05.2013;0.104621964;2.36;6.145124 +19.05.2013;17.4205831;2.71;8.532971 +20.05.2013;6.430174394;1.35;21.864815 +21.05.2013;2.725247239;1.53;12.78167 +22.05.2013;5.503978419;1.18;20.050647 +23.05.2013;12.44602574;1.06;34.547334 +24.05.2013;0;1.36;29.138713 +25.05.2013;1.296469046;1.78;25.69534 +26.05.2013;20.41429324;1.04;85.193173 +27.05.2013;0.577905728;2.57;100.145387 +28.05.2013;0;3.88;66.987341 +29.05.2013;7.738908459;1.21;68.474104 +30.05.2013;2.829262724;2.16;56.474726 +31.05.2013;9.92731459;1.58;64.028852 +01.06.2013;0;1.8;51.844541 +02.06.2013;0;3.5;42.472362 +03.06.2013;0;3.55;34.08307 +04.06.2013;0;4.19;28.545171 +05.06.2013;0;3.6;24.222246 +06.06.2013;0;5.12;19.870631 +07.06.2013;0;5.16;16.482535 +08.06.2013;0;4.82;14.196014 +09.06.2013;0.852389941;2.36;13.547897 +10.06.2013;0.794100111;1.82;12.503125 +11.06.2013;0;4.03;10.14463 +12.06.2013;0;2.63;7.988602 +13.06.2013;6.97525817;2.7;7.099181 +14.06.2013;0.110118225;2.75;7.62865 +15.06.2013;0;2.41;6.072319 +16.06.2013;0;3.56;4.959866 +17.06.2013;0;5.21;4.307747 +18.06.2013;0;5.85;3.575091 +19.06.2013;0;6.01;3.221764 +20.06.2013;5.437790195;2.37;3.453995 +21.06.2013;1.581458717;3.5;3.695777 +22.06.2013;0;3.18;3.149866 +23.06.2013;0;2.9;3.050426 +24.06.2013;3.06557465;2.13;3.158111 +25.06.2013;2.5305722;1.54;3.184428 +26.06.2013;0;1.8;3.059972 +27.06.2013;1.709660985;1.76;3.070111 +28.06.2013;0.102023852;1.45;2.96429 +29.06.2013;6.390260901;2.24;3.208235 +30.06.2013;0;2.7;2.971959 +01.07.2013;0;4.28;2.751832 +02.07.2013;0;4.66;2.570896 +03.07.2013;12.85463175;1.72;3.414943 +04.07.2013;0;2.77;3.114361 +05.07.2013;0;3.24;2.75413 +06.07.2013;0;5.17;2.543549 +07.07.2013;0;5.54;2.39239 +08.07.2013;0;5.54;2.246893 +09.07.2013;0;5.06;2.153437 +10.07.2013;0;5.03;2.092768 +11.07.2013;0;3.09;2.101726 +12.07.2013;0;3.72;2.092602 +13.07.2013;0;3.81;2.020425 +14.07.2013;0;3.86;2.014752 +15.07.2013;0;4.49;1.920806 +16.07.2013;0;4.55;1.842162 +17.07.2013;0;5.13;1.783579 +18.07.2013;0;5.26;1.64404 +19.07.2013;0;5.5;1.572092 +20.07.2013;0;4.93;1.523529 +21.07.2013;0;5.62;1.497957 +22.07.2013;0;5.71;1.451664 +23.07.2013;2.298154545;3.12;1.479384 +24.07.2013;0;3.18;1.546242 +25.07.2013;10.25992882;2.93;3.046824 +26.07.2013;0.101682369;2.92;2.146813 +27.07.2013;0;5.53;1.722019 +28.07.2013;0.721374121;2.72;1.666815 +29.07.2013;0.221428694;1.69;1.667242 +30.07.2013;0.524357188;3.41;1.275332 +31.07.2013;2.053960584;2.84;1.087724 +01.08.2013;0;5.36;0.92556 +02.08.2013;0;5.42;0.67994 +03.08.2013;0;3.33;0.601056 +04.08.2013;0;4.69;0.555497 +05.08.2013;0;4.82;0.514584 +06.08.2013;7.303333928;3.79;1.105949 +07.08.2013;3.80855636;2.17;0.928021 +08.08.2013;0.100919618;1.79;0.842865 +09.08.2013;0;2.51;0.757447 +10.08.2013;0;3.38;0.64441 +11.08.2013;0;3.62;0.523785 +12.08.2013;7.477542821;2.06;0.90173 +13.08.2013;0.100209282;2.86;0.752233 +14.08.2013;0;3.23;0.67974 +15.08.2013;0;3.83;0.582552 +16.08.2013;0;4.39;0.477594 +17.08.2013;0;3.22;0.441798 +18.08.2013;0.242794923;1.48;0.388685 +19.08.2013;6.434592375;3.16;0.659298 +20.08.2013;0;2.5;0.48012 +21.08.2013;0;3.82;0.451527 +22.08.2013;0;3.77;0.455111 +23.08.2013;0;3.04;0.414511 +24.08.2013;10.08241353;2.82;0.615602 +25.08.2013;6.338278859;1.3;1.954288 +26.08.2013;1.339358863;1.34;1.102016 +27.08.2013;0;3;0.732772 +28.08.2013;0;2.06;0.541513 +29.08.2013;0;3.47;0.472273 +30.08.2013;0;3.28;0.422664 +31.08.2013;3.881978578;1.77;0.5262 +01.09.2013;0;2.01;0.539527 +02.09.2013;0;1.63;0.373824 +03.09.2013;0;1.92;0.34133 +04.09.2013;0;3.63;0.308851 +05.09.2013;0;3.92;0.282294 +06.09.2013;0;3.75;0.389839 +07.09.2013;5.254480544;1.62;0.638005 +08.09.2013;2.931308381;1.29;0.846853 +09.09.2013;8.754058908;2.02;0.864731 +10.09.2013;8.642156781;1.22;4.892612 +11.09.2013;6.145993078;1.25;4.215498 +12.09.2013;0.119762437;1.13;2.351649 +13.09.2013;0;1.26;1.379381 +14.09.2013;4.481439921;1.1;1.398035 +15.09.2013;0.102164633;1.43;1.321851 +16.09.2013;2.829495091;1.37;1.438225 +17.09.2013;3.019424741;1.55;1.207433 +18.09.2013;2.418850364;1.08;1.649967 +19.09.2013;0.339904309;1.3;1.248832 +20.09.2013;0.416842924;1;1.081575 +21.09.2013;0;1.39;0.864161 +22.09.2013;0;1.09;0.918095 +23.09.2013;0;1.03;1.002674 +24.09.2013;0;1.9;1.230696 +25.09.2013;0.104126817;1.09;0.961648 +26.09.2013;0;1.72;0.870806 +27.09.2013;0;1.99;0.783057 +28.09.2013;0;1.84;0.862506 +29.09.2013;0;2.17;0.719318 +30.09.2013;0;1.27;0.70849 +01.10.2013;0;1.49;0.551869 +02.10.2013;0.139605658;1.56;0.569545 +03.10.2013;0.135465455;1.74;0.693346 +04.10.2013;0.486915303;0.91;0.569029 +05.10.2013;40.09104036;0.76;20.710242 +06.10.2013;2.232833805;0.86;18.880871 +07.10.2013;0;1.56;6.865578 +08.10.2013;0;0.86;4.494264 +09.10.2013;3.301907369;0.85;3.55993 +10.10.2013;4.255136777;0.87;6.741104 +11.10.2013;5.041018327;0.49;6.568946 +12.10.2013;1.379946759;0.45;7.008824 +13.10.2013;0;0.55;6.229404 +14.10.2013;0.492223417;0.91;4.869489 +15.10.2013;6.814980741;0.95;7.707324 +16.10.2013;0.304096502;0.68;6.104659 +17.10.2013;1.505540682;0.82;4.822442 +18.10.2013;0.10040615;1.22;4.128956 +19.10.2013;0.243177623;1.63;3.766368 +20.10.2013;0.114730218;0.84;3.113281 +21.10.2013;0.226526953;1.26;2.581633 +22.10.2013;0;1.7;2.376996 +23.10.2013;7.682525126;1.05;4.885591 +24.10.2013;0.933513103;0.97;4.477026 +25.10.2013;0.303026512;0.71;3.744079 +26.10.2013;5.817549482;0.86;4.321705 +27.10.2013;7.935183086;1.27;13.372075 +28.10.2013;2.394564061;0.81;10.924528 +29.10.2013;0;0.81;7.84025 +30.10.2013;0;1.19;6.144879 +31.10.2013;0.102589793;0.42;5.52428 +01.11.2013;4.536972774;0.48;5.37625 +02.11.2013;8.742921673;0.64;23.563112 +03.11.2013;2.881930638;0.94;26.079943 +04.11.2013;2.417554909;0.55;15.886635 +05.11.2013;6.073303558;0.55;13.810492 +06.11.2013;2.874053043;0.55;16.200393 +07.11.2013;0.108775183;0.69;16.683825 +08.11.2013;12.60252541;0.63;26.413423 +09.11.2013;1.087939523;0.7;39.878779 +10.11.2013;0.756460321;0.41;29.035381 +11.11.2013;0;0.67;22.71978 +12.11.2013;0.203469691;0.3;19.457412 +13.11.2013;0.405318362;0.55;16.657586 +14.11.2013;0.103863682;0.15;14.983722 +15.11.2013;0;0.5;12.390164 +16.11.2013;0;0.22;10.322547 +17.11.2013;0;0.18;9.210179 +18.11.2013;0;0.32;8.780785 +19.11.2013;4.75061329;0.32;8.341947 +20.11.2013;3.832149213;0.3;15.653733 +21.11.2013;0.960402178;0.19;13.222447 +22.11.2013;0;0.21;11.520031 +23.11.2013;0;0.33;9.950161 +24.11.2013;0.17472882;0.4;8.831097 +25.11.2013;0;0;8.149278 +26.11.2013;0.103396806;0;7.775023 +27.11.2013;0;0;7.094008 +28.11.2013;0.209165999;0.04;6.339268 +29.11.2013;2.96566331;0.22;6.693626 +30.11.2013;0.116078324;0.32;6.767524 +01.12.2013;0;0.38;6.159252 +02.12.2013;0.121298543;0.46;5.712104 +03.12.2013;0.103646034;0;5.713076 +04.12.2013;0.123601635;0.12;5.09869 +05.12.2013;3.402407102;0.16;5.265348 +06.12.2013;3.861503302;0.12;5.7021 +07.12.2013;1.138084118;0.2;5.441679 +08.12.2013;0;0.34;5.905663 +09.12.2013;0;0.37;5.57394 +10.12.2013;0;0.32;5.182886 +11.12.2013;0;0.31;5.25084 +12.12.2013;0;0.2;5.425117 +13.12.2013;0;0.12;5.185625 +14.12.2013;0.930704948;0.11;4.845879 +15.12.2013;0.308176053;0.11;4.671676 +16.12.2013;0.100456762;0;4.840734 +17.12.2013;0.105810912;0;4.596398 +18.12.2013;0.10402947;0;4.145028 +19.12.2013;2.686598633;0.32;4.403819 +20.12.2013;0.220794354;0.19;3.980393 +21.12.2013;0.145733961;0.11;3.824123 +22.12.2013;4.618957859;0.41;3.94586 +23.12.2013;4.771291202;0.53;12.347619 +24.12.2013;0.622817277;0.48;10.176256 +25.12.2013;5.386000407;0.4;15.453304 +26.12.2013;2.389800342;0.33;14.312491 +27.12.2013;0.154930708;0.35;15.322006 +28.12.2013;3.935106315;0.42;14.652353 +29.12.2013;1.77139605;0.27;22.499784 +30.12.2013;0.232819401;0.14;18.27357 +31.12.2013;0;0.19;17.510973 +01.01.2014;0.948386327;0.28;16.402562 +02.01.2014;1.443235282;0.35;15.506874 +03.01.2014;0.53317163;0.37;13.986495 +04.01.2014;0;0.33;13.023909 +05.01.2014;2.291219427;0.39;13.422182 +06.01.2014;6.278177447;0.3;12.729805 +07.01.2014;1.368826654;0.9;21.626249 +08.01.2014;0.251187761;0.73;18.437388 +09.01.2014;5.443311512;0.42;20.405184 +10.01.2014;0;0.53;22.715288 +11.01.2014;0.357233526;0.16;20.297429 +12.01.2014;0;0.17;18.259541 +13.01.2014;0.10513426;0.11;16.803059 +14.01.2014;0;0.23;15.761204 +15.01.2014;0.3697866;0.27;14.120361 +16.01.2014;3.253825766;0.31;14.246247 +17.01.2014;0.117449085;0.65;14.519285 +18.01.2014;0.108601598;0.09;13.089396 +19.01.2014;0.103137728;0.17;11.8654 +20.01.2014;0;0.19;10.879708 +21.01.2014;1.63522922;0.16;20.234155 +22.01.2014;0;0.23;22.748368 +23.01.2014;2.558914396;0.23;20.690171 +24.01.2014;1.188167635;0.19;22.405199 +25.01.2014;0.237105868;0.02;21.169239 +26.01.2014;6.395365353;0.26;27.833506 +27.01.2014;3.105051214;0.3;44.774207 +28.01.2014;0.136144794;0.31;37.473603 +29.01.2014;0;0.06;33.194181 +30.01.2014;0;0.03;29.561037 +31.01.2014;0;0.1;26.639798 +01.02.2014;5.471619376;0.18;24.925277 +02.02.2014;0;0.41;23.970456 +03.02.2014;0.112128324;0.11;21.386039 +04.02.2014;0;0.21;19.242926 +05.02.2014;0.365005327;0.11;17.987006 +06.02.2014;0.11379492;0.71;16.255086 +07.02.2014;0.379268781;0.63;14.467703 +08.02.2014;3.236321079;0.36;15.012038 +09.02.2014;0;0.48;14.740248 +10.02.2014;0.678751975;0.2;13.462218 +11.02.2014;0;0.41;12.230738 +12.02.2014;1.179094273;0.7;11.622273 +13.02.2014;13.86387956;0.38;17.215045 +14.02.2014;1.558715096;0.53;20.917042 +15.02.2014;0.157927664;0.58;19.330026 +16.02.2014;0.275376278;0.69;18.266869 +17.02.2014;0.100364822;0.33;17.208793 +18.02.2014;0.099439631;0.15;16.56007 +19.02.2014;1.625468105;0.68;16.390069 +20.02.2014;0;0.67;15.421818 +21.02.2014;2.748183214;0.85;14.713906 +22.02.2014;0.256224276;0.41;13.79492 +23.02.2014;0;0.65;12.658862 +24.02.2014;0.099477577;0.79;11.950986 +25.02.2014;0.159998907;0.73;11.492567 +26.02.2014;0.314258275;0.63;10.75553 +27.02.2014;1.603695597;0.6;10.356378 +28.02.2014;0.684543845;0.54;11.001998 +01.03.2014;0;0.48;10.782335 +02.03.2014;1.167955234;0.32;10.164323 +03.03.2014;0.146520704;0.3;9.602984 +04.03.2014;0;0.68;8.703207 +05.03.2014;1.127250273;0.75;8.046729 +06.03.2014;0.102374926;0.35;7.306062 +07.03.2014;0.100088664;0.87;6.844349 +08.03.2014;0;1.21;6.46795 +09.03.2014;0.099439631;1.32;6.074865 +10.03.2014;0.09950289;1.53;5.632728 +11.03.2014;0;1.89;5.757862 +12.03.2014;0;1.79;5.745789 +13.03.2014;0.100239136;1.67;5.023196 +14.03.2014;0;1.71;4.786958 +15.03.2014;1.411483572;0.76;5.101086 +16.03.2014;0;0.94;4.696422 +17.03.2014;0;0.82;4.425823 +18.03.2014;0.120484083;0.78;4.429503 +19.03.2014;5.23034353;1.29;6.119827 +20.03.2014;0;2.3;5.219167 +21.03.2014;0.119259509;1.86;5.107963 +22.03.2014;5.766178754;0.71;5.540585 +23.03.2014;0.101320514;0.69;5.775728 +24.03.2014;0.101729075;0.56;5.404966 +25.03.2014;0.099439631;0.83;5.262563 +26.03.2014;0.100778681;0.91;5.072437 +27.03.2014;0;1.83;4.864914 +28.03.2014;0;2.24;4.384758 +29.03.2014;0;2.25;4.088648 +30.03.2014;0;2.12;4.106752 +31.03.2014;0;0.98;4.452076 +01.04.2014;0;2.19;4.757175 +02.04.2014;0;2.52;4.555513 +03.04.2014;0;1.88;4.361442 +04.04.2014;0;1.15;4.268695 +05.04.2014;1.695983789;1.09;4.272012 +06.04.2014;0;1.64;3.979665 +07.04.2014;0;2.2;3.622333 +08.04.2014;3.042809055;1.49;3.758216 +09.04.2014;0.108498089;1.32;3.608329 +10.04.2014;0;1.09;3.432004 +11.04.2014;0;1.19;3.407258 +12.04.2014;0;1.85;3.241566 +13.04.2014;0;1.74;3.07616 +14.04.2014;4.053591011;1.87;3.137765 +15.04.2014;0.216484055;0.73;3.233944 +16.04.2014;0;1.8;3.032272 +17.04.2014;0.158605057;2.5;2.698903 +18.04.2014;0.48249597;2.26;2.692598 +19.04.2014;0;2.24;2.575222 +20.04.2014;0;3.35;2.243782 +21.04.2014;1.599353843;2.06;2.159488 +22.04.2014;1.47875484;1.69;2.362529 +23.04.2014;0.100209282;2.31;2.259015 +24.04.2014;0;3.44;1.995259 +25.04.2014;0;3.49;6.061627 +26.04.2014;1.274750477;1.78;17.877588 +27.04.2014;13.7807287;1.19;18.208916 +28.04.2014;0.422402212;1.2;8.376963 +29.04.2014;7.204461755;1.69;7.780429 +30.04.2014;0;2.58;5.718117 +01.05.2014;0;1.91;3.92954 +02.05.2014;0.742399293;1.34;3.377782 +03.05.2014;0;2.13;2.968987 +04.05.2014;0;2.77;2.474647 +05.05.2014;0;3.26;1.97248 +06.05.2014;0.645554076;1.9;1.775615 +07.05.2014;6.34001138;2.41;1.813361 +08.05.2014;4.025745595;1.54;1.778631 +09.05.2014;1.40698932;2.83;1.728317 +10.05.2014;3.02118618;1.24;2.212913 +11.05.2014;2.975477877;2.54;3.405043 +12.05.2014;0.587034274;2.4;2.560105 +13.05.2014;0.316646168;1.56;2.409335 +14.05.2014;0;2.12;2.000632 +15.05.2014;0;1.12;1.830519 +16.05.2014;0.122447738;3.59;1.347028 +17.05.2014;0;3.56;1.147602 +18.05.2014;0;4.16;0.802111 +19.05.2014;0;4.27;0.662873 +20.05.2014;0;4.78;0.336109 +21.05.2014;0;3.94;0.204309 +22.05.2014;3.085495713;4.36;0.187829 +23.05.2014;4.809148968;2.4;0.612968 +24.05.2014;0;2.51;0.367509 +25.05.2014;0;4.31;0.245181 +26.05.2014;2.864431039;1.54;0.501683 +27.05.2014;0.421848386;1.58;1.725654 +28.05.2014;0.107030974;1.46;1.040421 +29.05.2014;0;1.33;1.321179 +30.05.2014;0.10408533;2.11;1.167457 +31.05.2014;0;3.19;0.561848 +01.06.2014;0;2.51;0.453851 +02.06.2014;0;3.94;0.320873 +03.06.2014;0;3.51;0.57499 +04.06.2014;0;3.07;0.962808 +05.06.2014;0;3.86;0.794953 +06.06.2014;0.908100562;4.67;0.611382 +07.06.2014;0;4.51;0.442098 +08.06.2014;0;5.77;0.312218 +09.06.2014;0.793544975;5.85;2.411733 +10.06.2014;0.556050034;3.87;0.660839 +11.06.2014;0.624533322;2.76;43.112973 +12.06.2014;0.151967188;4.93;8.382199 +13.06.2014;0.157538759;4.04;4.601254 +14.06.2014;0;2.17;3.150225 +15.06.2014;0;3.94;2.241361 +16.06.2014;0;3.27;1.710589 +17.06.2014;0;3.16;1.321116 +18.06.2014;0;4.23;0.992249 +19.06.2014;0.144758038;2.19;0.83431 +20.06.2014;0;1.76;0.705359 +21.06.2014;0;2.92;0.53187 +22.06.2014;0;3.15;0.521248 +23.06.2014;0;3.83;2.429528 +24.06.2014;2.567664009;3.05;2.493053 +25.06.2014;0.112722143;2.67;3.021535 +26.06.2014;0;2.91;2.497373 +27.06.2014;0;3.48;1.406698 +28.06.2014;1.710331651;1.94;0.325878 +29.06.2014;1.488324257;1.96;0.48305 +30.06.2014;0.295577223;2.92;0.4799 +01.07.2014;0.11787906;3.98;0.178667 +02.07.2014;0;4.86;0.141846 +03.07.2014;0;5.41;0.064718 +04.07.2014;0;4.66;0.095529 +05.07.2014;0;2.26;0.048156 +06.07.2014;2.248664975;4.06;0.054958 +07.07.2014;0.857062955;2.48;0.028481 +08.07.2014;0;1.6;2.140779 +09.07.2014;0;1.43;12.23773 +10.07.2014;0;2.63;6.930812 +11.07.2014;0;3.45;5.769309 +12.07.2014;0;3.31;6.360065 +13.07.2014;0;2.09;4.393855 +14.07.2014;0;3.63;3.301672 +15.07.2014;0;4.95;1.665133 +16.07.2014;0;4.33;0.953405 +17.07.2014;0;5.46;0.603603 +18.07.2014;0;5.79;0.396544 +19.07.2014;0;5.49;0.272296 +20.07.2014;4.272633779;2.33;0.191608 +21.07.2014;2.731234062;2.14;0.572678 +22.07.2014;4.15904732;4.45;0.367916 +23.07.2014;0;4.92;0.149399 +24.07.2014;12;4.24;10.782832 +25.07.2014;0.127524398;4.28;1.04539 +26.07.2014;0;3.48;0.404255 +27.07.2014;0;4.48;0.249827 +28.07.2014;21.9359785;3.4;0.240198 +29.07.2014;0.98315524;1.91;22.17303 +30.07.2014;5.794436104;1.94;27.678204 +31.07.2014;0;4.77;10.559264 +01.08.2014;0;4.78;6.545522 +02.08.2014;0;3.31;4.452096 +03.08.2014;0;2.68;3.019714 +04.08.2014;1.420435897;2.93;2.385858 +05.08.2014;5.473793097;2.48;2.355767 +06.08.2014;0;2.79;1.913621 +07.08.2014;0.720042872;2.98;1.327966 +08.08.2014;1.051967891;3.71;1.157623 +09.08.2014;1.372515937;3.34;0.624994 +10.08.2014;13.95117727;2.11;4.918633 +11.08.2014;0.101255396;3.88;3.241756 +12.08.2014;0.203677102;3.41;1.491187 +13.08.2014;15.40990951;1.68;4.629456 +14.08.2014;4.483376092;2.44;5.725008 +15.08.2014;2.987380349;1.44;6.885889 +16.08.2014;1.211047331;2.18;5.674565 +17.08.2014;0;2.11;4.397387 +18.08.2014;0.335573939;2.54;3.264936 +19.08.2014;0.131819466;2.41;2.93412 +20.08.2014;0;2.87;2.433526 +21.08.2014;0;3.22;2.016218 +22.08.2014;0;2.14;1.825354 +23.08.2014;4.836148848;2.16;1.400093 +24.08.2014;0;2.2;1.391853 +25.08.2014;2.019839566;1.31;1.586774 +26.08.2014;23.93929942;1.2;10.742235 +27.08.2014;1.007975167;3.68;16.10069 +28.08.2014;0;2.26;7.937963 +29.08.2014;1.508595429;2.36;5.641862 +30.08.2014;0.603208138;1.69;4.662251 +31.08.2014;0.314533823;1.7;4.121519 +01.09.2014;0;1.76;3.558841 +02.09.2014;0.122789935;1.69;3.101579 +03.09.2014;0;1.51;2.848482 +04.09.2014;0;1.76;2.643328 +05.09.2014;0;2.47;2.343579 +06.09.2014;1.188701685;2.9;1.951323 +07.09.2014;0.100621026;2.3;1.664725 +08.09.2014;0;2.43;1.24396 +09.09.2014;0;2.29;1.175226 +10.09.2014;0;1.18;1.290439 +11.09.2014;0.573542154;1.59;1.297954 +12.09.2014;0.176962641;1.15;1.373099 +13.09.2014;0;1.27;1.175248 +14.09.2014;0;2.03;1.157704 +15.09.2014;0;1.2;1.06586 +16.09.2014;0;2.55;1.009118 +17.09.2014;0;3.09;0.956732 +18.09.2014;2.528926233;1.25;0.829029 +19.09.2014;0.201230414;1.65;0.789098 +20.09.2014;4.367034789;1.37;1.021417 +21.09.2014;10.07413991;1.13;6.806666 +22.09.2014;8.794258963;1.48;3.209986 +23.09.2014;0;1.67;2.412663 +24.09.2014;0.408314915;1.11;1.847794 +25.09.2014;0.22414206;1.27;1.205711 +26.09.2014;0;1.02;1.031828 +27.09.2014;0;1.99;1.045336 +28.09.2014;0;1.84;1.03605 +29.09.2014;0.205497416;1.2;0.895678 +30.09.2014;0;1.17;0.895646 +01.10.2014;0;1.62;0.768337 +02.10.2014;0;2.47;0.762039 +03.10.2014;0;2.27;0.80618 +04.10.2014;0;1.97;0.789423 +05.10.2014;0;1.05;0.755405 +06.10.2014;0;0.85;0.795363 +07.10.2014;12.90835284;0.95;1.464892 +08.10.2014;4.244250772;0.85;0.381115 +09.10.2014;6.34460647;0.94;3.701762 +10.10.2014;1.024488302;1.04;21.79129 +11.10.2014;0.508479833;1.09;7.906865 +12.10.2014;0.311250341;0.92;6.586355 +13.10.2014;0.33430835;0.99;7.582256 +14.10.2014;0.211476903;1.16;3.415751 +15.10.2014;0.304725347;1.33;4.286405 +16.10.2014;0.3071821;0.93;5.369749 +17.10.2014;0.303944237;0.93;5.116028 +18.10.2014;0.334764647;1.61;4.399485 +19.10.2014;0.339054767;1.4;3.902477 +20.10.2014;0.420583244;1.24;3.838424 +21.10.2014;0.450302243;0.68;3.660142 +22.10.2014;0.670948415;0.57;3.992868 +23.10.2014;0.422616155;0.76;3.79147 +24.10.2014;0;0.82;3.727811 +25.10.2014;1.303564003;0.64;3.703265 +26.10.2014;0;0.93;3.459456 +27.10.2014;0;0.56;3.219703 +28.10.2014;0;0.49;3.302464 +29.10.2014;0.62744644;0.66;3.361036 +30.10.2014;0;0.61;2.903047 +31.10.2014;0;0.63;2.633504 +01.11.2014;0.1042938;0.82;2.635834 +02.11.2014;0;0.58;2.501883 +03.11.2014;3.341473125;0.69;2.543623 +04.11.2014;1.272403943;0.66;3.167745 +05.11.2014;2.059249105;0.55;3.864357 +06.11.2014;0;0.61;3.404734 +07.11.2014;0.355935931;0.3;3.202559 +08.11.2014;0;0.68;2.964546 +09.11.2014;0.100209282;0.31;2.976025 +10.11.2014;0.307990821;0.45;2.69322 +11.11.2014;0;0.47;2.795811 +12.11.2014;0.501276759;0.48;2.622937 +13.11.2014;0.10201513;0.57;2.555214 +14.11.2014;0;0.52;2.56229 +15.11.2014;3.656798953;0.52;2.638485 +16.11.2014;11.72843921;0.48;31.488017 +17.11.2014;0.667950293;0.63;21.020167 +18.11.2014;6.352371922;0.45;20.322369 +19.11.2014;0.540674623;0.42;30.802991 +20.11.2014;0;0.39;21.899784 +21.11.2014;0;0.49;18.349493 +22.11.2014;0.099947961;0.18;15.648073 +23.11.2014;0;0.61;13.150718 +24.11.2014;0.103475817;0.45;11.367915 +25.11.2014;0.112064056;0.02;10.134425 +26.11.2014;0.107637521;0.15;9.134086 +27.11.2014;0.830690006;0.3;8.580387 +28.11.2014;0;0.21;7.949374 +29.11.2014;0;0.21;7.134789 +30.11.2014;0;0.19;6.831031 +01.12.2014;0.173953082;0.12;6.298394 +02.12.2014;0;0;5.682744 +03.12.2014;0;0;5.236759 +04.12.2014;0;0.04;4.837591 +05.12.2014;0;0.16;4.57932 +06.12.2014;0;0.17;4.416231 +07.12.2014;1.28107185;0.26;4.447125 +08.12.2014;0.100209282;0.2;3.589774 +09.12.2014;0;0.05;2.501976 +10.12.2014;1.034788345;0.18;2.537322 +11.12.2014;12.68598251;0.28;4.720196 +12.12.2014;9.217706401;0.41;8.400103 +13.12.2014;11.38168525;0.23;55.754499 +14.12.2014;2.387615834;0.15;56.925713 +15.12.2014;0.114833696;0.17;37.351264 +16.12.2014;0.907321596;0.29;29.442102 +17.12.2014;1.068943754;0.25;27.635014 +18.12.2014;0;0.48;23.907361 +19.12.2014;8.594827813;0.46;36.527435 +20.12.2014;2.988231831;0.29;37.495845 +21.12.2014;0;0.33;30.06876 +22.12.2014;0.352866143;0.4;25.625006 +23.12.2014;0;0.45;21.587337 +24.12.2014;1.053555123;0.39;19.046663 +25.12.2014;0.173863877;0.27;16.802984 +26.12.2014;0.110675885;0.14;14.815289 +27.12.2014;0;0;15.56601 +28.12.2014;0;0;13.843208 +29.12.2014;1.263365573;0;12.092481 +30.12.2014;5.869050266;0.11;12.295662 +31.12.2014;0.52731951;0.17;20.628504 +01.01.2015;0;0.13;37.112862 +02.01.2015;2.197111019;0.17;43.273249 +03.01.2015;2.076041355;0.12;44.557048 +04.01.2015;2.804424631;0.22;51.701439 +05.01.2015;0;0.09;44.809784 +06.01.2015;0;0;36.517261 +07.01.2015;0.626216693;0.12;31.415337 +08.01.2015;7.633275562;0.3;46.565012 +09.01.2015;3.189849889;0.42;62.535972 +10.01.2015;4.716378499;0.71;95.546467 +11.01.2015;0.572855892;0.26;67.769521 +12.01.2015;0.575470454;0.36;50.973385 +13.01.2015;2.766794222;0.78;42.971926 +14.01.2015;6.56335584;0.32;45.285769 +15.01.2015;0.271202152;0.4;41.46464 +16.01.2015;1.167951848;0.35;36.660865 +17.01.2015;0.100646727;0.25;31.972864 +18.01.2015;0.11728215;0;27.878203 +19.01.2015;0;0;24.917963 +20.01.2015;0;0;22.776854 +21.01.2015;0;0;19.787732 +22.01.2015;0;0;17.403546 +23.01.2015;0;0.03;15.365005 +24.01.2015;0.099439631;0;14.718248 +25.01.2015;0.562306516;0.09;14.234321 +26.01.2015;3.700413666;0.13;17.325765 +27.01.2015;0.572507353;0.24;19.867556 +28.01.2015;4.258330846;0.24;21.485107 +29.01.2015;2.856021716;0.21;28.865749 +30.01.2015;1.744560566;0.11;41.13121 +31.01.2015;0;0.1;30.669403 +01.02.2015;0.315477219;0.02;27.086405 +02.02.2015;0.330489384;0.12;25.572126 +03.02.2015;0.225728284;0.05;24.855957 +04.02.2015;0;0;21.693786 +05.02.2015;0.113985685;0;19.153205 +06.02.2015;0;0;17.01986 +07.02.2015;0;0;15.143354 +08.02.2015;0;0.37;14.196389 +09.02.2015;0;0.26;13.361797 +10.02.2015;0;0.34;13.111779 +11.02.2015;0;0.21;12.456951 +12.02.2015;0;0.07;12.076192 +13.02.2015;0;0.05;11.825054 +14.02.2015;0;0.15;11.240578 +15.02.2015;0;0;10.429445 +16.02.2015;0;0.01;9.468975 +17.02.2015;0;0.22;8.781588 +18.02.2015;0;0.28;7.877925 +19.02.2015;0;0.05;7.567328 +20.02.2015;0;0.51;7.555873 +21.02.2015;0.729364088;0.44;8.008075 +22.02.2015;0;0.28;7.279157 +23.02.2015;6.653893059;0.11;8.556553 +24.02.2015;1.691584779;0.43;10.422203 +25.02.2015;0.219177807;0.32;9.706447 +26.02.2015;0.305782636;0.42;9.147714 +27.02.2015;7.456286464;0.35;17.397023 +28.02.2015;0.100934759;0.37;19.164292 +01.03.2015;4.100608595;0.57;19.260996 +02.03.2015;6.189282754;0.81;23.049969 +03.03.2015;2.351472124;0.94;24.241514 +04.03.2015;0.880948936;0.54;24.591998 +05.03.2015;0;0.6;23.805212 +06.03.2015;0;0.36;23.536056 +07.03.2015;0.134325538;0.4;22.296821 +08.03.2015;0;0.87;21.093932 +09.03.2015;0;1.07;19.101897 +10.03.2015;0.306174652;0.42;18.457518 +11.03.2015;0.106222312;0.81;17.109674 +12.03.2015;0.129317835;0.97;15.406941 +13.03.2015;0;0.26;14.384062 +14.03.2015;0.416153117;0.3;13.163393 +15.03.2015;1.838324468;0.43;12.834546 +16.03.2015;0.127764601;1.1;12.874396 +17.03.2015;0;1.69;12.826044 +18.03.2015;0;1.9;11.479469 +19.03.2015;0;1.71;10.71069 +20.03.2015;0;1.23;10.442393 +21.03.2015;0.517761395;0.49;9.770026 +22.03.2015;0;0.37;8.77863 +23.03.2015;0.10170923;0.36;8.606823 +24.03.2015;0;0.51;8.350472 +25.03.2015;0;1.84;8.090294 +26.03.2015;0;0.79;8.420092 +27.03.2015;0.729811067;0.76;7.504301 +28.03.2015;0;1.58;6.603398 +29.03.2015;13.6841915;0.93;12.17778 +30.03.2015;2.905550098;1.71;19.421716 +31.03.2015;18.33312932;1.56;46.153929 +01.04.2015;5.375644914;0.86;41.535136 +02.04.2015;4.834739785;1.11;48.861515 +03.04.2015;0;1.7;42.432497 +04.04.2015;0.125167778;0.99;39.97278 +05.04.2015;0;1.12;33.667576 +06.04.2015;0;0.63;29.770818 +07.04.2015;0;1.26;26.251769 +08.04.2015;0;2.19;22.629107 +09.04.2015;0;2.85;20.687718 +10.04.2015;0;3.23;18.616907 +11.04.2015;0.143457461;1.53;16.784894 +12.04.2015;0;2.66;14.743109 +13.04.2015;0;2.32;12.974395 +14.04.2015;0;2.9;11.825997 +15.04.2015;0;3.79;10.936816 +16.04.2015;0;3.12;9.816939 +17.04.2015;1.739361299;2.22;9.527835 +18.04.2015;0;2.22;8.831997 +19.04.2015;0;2.59;8.040308 +20.04.2015;0;3.19;7.446125 +21.04.2015;0;3.61;6.54149 +22.04.2015;0;2.62;6.063128 +23.04.2015;0;3.06;5.584067 +24.04.2015;0;3.54;5.040144 +25.04.2015;1.036051027;1.11;5.087515 +26.04.2015;2.061346786;2.09;5.110306 +27.04.2015;15.08287028;1.11;10.767407 +28.04.2015;0;2.44;8.574511 +29.04.2015;0;2.2;6.629398 +30.04.2015;4.495005735;1.5;6.468695 +01.05.2015;0.201853597;1.12;6.651212 +02.05.2015;0;2.58;5.644016 +03.05.2015;4.624674841;1.25;5.931206 +04.05.2015;0.611214655;3.14;5.099102 +05.05.2015;0.713806452;2.84;4.259448 +06.05.2015;0.130481147;3.09;4.292848 +07.05.2015;0;3.46;4.57915 +08.05.2015;0;2.71;4.238458 +09.05.2015;4.416673607;2.12;4.102291 +10.05.2015;0.110489032;2.87;3.860088 +11.05.2015;0;3.49;3.540893 +12.05.2015;0.99141461;3.37;3.313754 +13.05.2015;0;3.89;2.937645 +14.05.2015;0;3.62;2.837783 +15.05.2015;0;3.9;2.334776 +16.05.2015;0.455450258;2.14;2.668704 +17.05.2015;0.100209282;3.13;2.606509 +18.05.2015;0;4.32;2.260054 +19.05.2015;0.100215881;3;1.993653 +20.05.2015;0.240429943;1.85;1.969968 +21.05.2015;0;2.77;1.849542 +22.05.2015;0;3.77;1.622966 +23.05.2015;0;1.54;1.627196 +24.05.2015;0;1.94;1.526816 +25.05.2015;0.763212906;2.08;1.702871 +26.05.2015;0;1.46;1.653256 +27.05.2015;0;1.25;1.587107 +28.05.2015;0;2.02;1.372065 +29.05.2015;0.714781746;2.49;1.494517 +30.05.2015;1.797434336;2.65;1.508525 +31.05.2015;0;2.24;1.343536 +01.06.2015;1.9077524;2.25;1.643991 +02.06.2015;0;2.7;1.283713 +03.06.2015;0;3.39;0.913469 +04.06.2015;0.111569687;4.98;0.795185 +05.06.2015;0;5.79;0.653788 +06.06.2015;1.968594361;4.08;0.572147 +07.06.2015;0;4.79;0.522457 +08.06.2015;0;3.03;0.535302 +09.06.2015;0;3.22;0.602977 +10.06.2015;0;3.44;0.479275 +11.06.2015;0;3.04;0.456393 +12.06.2015;0;4.86;0.395009 +13.06.2015;0;2.77;0.431227 +14.06.2015;0;5.51;0.38527 +15.06.2015;0;2.88;0.321956 +16.06.2015;0;3.72;0.338222 +17.06.2015;0;4.06;0.37645 +18.06.2015;4.311581277;2.51;0.694069 +19.06.2015;0.100497674;1.39;0.650672 +20.06.2015;0.162975391;1.51;0.579808 +21.06.2015;1.552314127;1.71;1.523814 +22.06.2015;0.617895402;1.38;2.825669 +23.06.2015;10.47449707;1.86;3.714022 +24.06.2015;0;2.37;1.638874 +25.06.2015;0;3.79;1.051155 +26.06.2015;0;2.99;0.689037 +27.06.2015;5.762995105;3.01;0.852325 +28.06.2015;0;4.3;0.537126 +29.06.2015;0;4.79;0.426541 +30.06.2015;0;5.77;0.140329 +01.07.2015;0;6.03;0.216116 +02.07.2015;0;6.16;0.206475 +03.07.2015;0;5.69;0.306456 +04.07.2015;0;5.77;0.333392 +05.07.2015;2.164609861;5.01;0.150782 +06.07.2015;0.671559919;5.52;0.310616 +07.07.2015;1.073044637;4.43;0.315667 +08.07.2015;0.4049572;2.69;0.284107 +09.07.2015;0;3.21;0.365145 +10.07.2015;0;4.93;0.36325 +11.07.2015;0;4.63;0.342682 +12.07.2015;0.742175486;3.28;0.22183 +13.07.2015;0.917812515;1.61;0.437654 +14.07.2015;0.335801186;2.14;0.482093 +15.07.2015;0;3.18;0.398528 +16.07.2015;0;4.95;0.316123 +17.07.2015;0;4.67;0.262393 +18.07.2015;0;4.7;0.08223 +19.07.2015;18.5499668;2.41;4.793734 +20.07.2015;0.711446537;1.83;0.623911 +21.07.2015;0;4.83;0.392438 +22.07.2015;0;4.22;0.263452 +23.07.2015;0;4;0.178808 +24.07.2015;1.161745747;3.75;0.050885 +25.07.2015;4.739583375;2.86;0.336215 +26.07.2015;1.023947168;3.27;0.290719 +27.07.2015;4.775790837;1.94;0.564419 +28.07.2015;0.22046942;2.71;0.313909 +29.07.2015;0;3.46;0.193449 +30.07.2015;0.310739687;2.57;0.157555 +31.07.2015;0;4.38;0.181167 +01.08.2015;0;3.82;0.14496 +02.08.2015;0;4.89;0.127533 +03.08.2015;0;5.24;0.153291 +04.08.2015;5.275810734;2.84;0.179845 +05.08.2015;0;3.58;0.179909 +06.08.2015;0;4.63;0.113079 +07.08.2015;0;5.29;0.086913 +08.08.2015;0.838703273;3.79;0.054659 +09.08.2015;0;2.86;0.055128 +10.08.2015;18.45712161;3.91;4.067164 +11.08.2015;0.203727284;3.24;0.321283 +12.08.2015;0;3.99;0.14527 +13.08.2015;0;5.06;0.134175 +14.08.2015;0.300627846;2.89;0.047637 +15.08.2015;0.101148058;2.41;0.047741 +16.08.2015;13.96655107;1.4;0.945726 +17.08.2015;13.0154946;1.3;1.553669 +18.08.2015;0;1.52;0.886208 +19.08.2015;0.103992367;2.39;0.345045 +20.08.2015;0;3.06;0.257407 +21.08.2015;0;3.77;0.233115 +22.08.2015;0;3.92;0.282097 +23.08.2015;0.101825612;3.62;0.265316 +24.08.2015;5.562099678;1.85;0.383227 +25.08.2015;0;2.32;0.782742 +26.08.2015;0;4.18;0.252642 +27.08.2015;5.541019025;1.51;0.259085 +28.08.2015;5.502802797;1.83;1.389353 +29.08.2015;0;3.75;0.434066 +30.08.2015;0;4.14;0.282558 +31.08.2015;0.114274753;4.47;0.20771 +01.09.2015;18.47829078;1.46;0.461493 +02.09.2015;0.100209282;2.35;0.220189 +03.09.2015;0;3.18;0.285524 +04.09.2015;0;1.98;0.316121 +05.09.2015;2.091075744;1.48;0.235072 +06.09.2015;0.940822544;1.88;0.227215 +07.09.2015;0.316429087;1.33;0.214042 +08.09.2015;0.231054006;1.47;0.241931 +09.09.2015;0;2.2;0.274223 +10.09.2015;0;2.65;0.317282 +11.09.2015;0;2.69;0.388467 +12.09.2015;0;1.88;0.361774 +13.09.2015;1.050664421;1.51;0.355183 +14.09.2015;1.573098864;1.55;0.268506 +15.09.2015;0.463845252;1.58;0.356508 +16.09.2015;15.0852756;1.06;0.842125 +17.09.2015;4.754206198;1.05;0.82415 +18.09.2015;1.352306651;1.51;0.514047 +19.09.2015;0.249046217;1.39;0.358904 +20.09.2015;0;1.36;0.387005 +21.09.2015;0;1.71;0.556901 +22.09.2015;7.590314374;0.98;0.9087 +23.09.2015;0.914729461;0.93;0.642797 +24.09.2015;0.105731773;1.92;0.456008 +25.09.2015;0;1.67;0.460169 +26.09.2015;0;0.96;0.721392 +27.09.2015;0;2.14;0.688831 +28.09.2015;0;2.08;0.656706 +29.09.2015;0;2.14;0.620153 +30.09.2015;0;2.15;0.513464 +01.10.2015;0;1.97;0.454253 +02.10.2015;0;1.99;0.641321 +03.10.2015;0;1.97;0.621185 +04.10.2015;0;0.98;0.622735 +05.10.2015;0.901883538;1.39;0.518392 +06.10.2015;4.40263371;0.95;0.388521 +07.10.2015;0;1.06;0.427714 +08.10.2015;1.61427714;0.89;0.464805 +09.10.2015;6.348355114;0.82;1.353489 +10.10.2015;0;1.69;0.639001 +11.10.2015;0;1.41;0.683847 +12.10.2015;0.220095833;0.94;0.801054 +13.10.2015;0.288329493;0.33;0.862333 +14.10.2015;1.197675706;0.32;0.964854 +15.10.2015;16.6273538;0.32;2.793781 +16.10.2015;0.100545929;0.47;2.877023 +17.10.2015;0;0.49;1.343599 +18.10.2015;1.472179303;0.47;0.997485 +19.10.2015;0.423122991;0.49;0.76709 +20.10.2015;0.410582301;0.9;0.747152 +21.10.2015;9.153286597;0.62;0.583958 +22.10.2015;0;0.62;0.45371 +23.10.2015;0;1.33;0.551057 +24.10.2015;0;0.46;0.526463 +25.10.2015;0.301801979;0.63;0.512561 +26.10.2015;0;1.34;0.66113 +27.10.2015;0.110131401;1.01;0.637831 +28.10.2015;0;0.55;0.676474 +29.10.2015;0.307945995;0.63;0.598415 +30.10.2015;0;0.78;0.666631 +31.10.2015;0;0.77;0.732306 +01.11.2015;0;0.6;0.811233 +02.11.2015;0.101460971;0.49;0.808923 +03.11.2015;0;0.33;0.777881 +04.11.2015;0;0.35;0.765854 +05.11.2015;0.201751349;0.98;0.776858 +06.11.2015;0.205581155;0.64;0.620153 +07.11.2015;0.601373503;0.75;0.522026 +08.11.2015;0;0.95;0.581254 +09.11.2015;1.150310197;0.75;0.490283 +10.11.2015;0;0.68;0.453829 +11.11.2015;0;0.95;0.4192 +12.11.2015;0;0.86;0.413633 +13.11.2015;1.449292275;0.52;0.430706 +14.11.2015;0.235410377;0.51;0.521205 +15.11.2015;0.555875606;0.59;0.489393 +16.11.2015;0.240938014;0.54;0.429516 +17.11.2015;8.449224568;0.61;1.462533 +18.11.2015;1.755325032;0.66;1.335369 +19.11.2015;18.27323007;0.69;3.106473 +20.11.2015;3.521850818;0.42;7.103129 +21.11.2015;1.348400749;0.24;4.295873 +22.11.2015;0.105311222;0.21;2.451987 +23.11.2015;0.433366928;0.14;1.864489 +24.11.2015;0.120211584;0;1.593253 +25.11.2015;3.508738949;0.15;2.038703 +26.11.2015;0.110528991;0.29;1.835579 +27.11.2015;0;0.03;1.627768 +28.11.2015;0.654330392;0.27;1.460863 +29.11.2015;15.39886263;0.41;7.73805 +30.11.2015;26.36632411;0.45;21.64296 +01.12.2015;6.562073855;0.49;34.297636 +02.12.2015;0.116859243;0.46;24.573917 +03.12.2015;0.102987071;0.46;15.602492 +04.12.2015;1.47904194;0.26;11.866875 +05.12.2015;0.109246337;0.17;9.220344 +06.12.2015;0.233395915;0.39;7.908478 +07.12.2015;0;0.68;6.490688 +08.12.2015;0.108273225;0.18;5.770311 +09.12.2015;1.713607698;0.37;5.588081 +10.12.2015;0;0.13;4.609157 +11.12.2015;5.123945131;0.19;4.870496 +12.12.2015;1.035770485;0.38;10.322082 +13.12.2015;0.211855012;0.38;8.855462 +14.12.2015;0.202589302;0.42;8.197842 +15.12.2015;0;0.19;7.100896 +16.12.2015;2.739947281;0.38;7.59766 +17.12.2015;0.108460496;0.49;7.969175 +18.12.2015;0.613575879;0.5;7.270544 +19.12.2015;0;0.49;6.740516 +20.12.2015;0;0.4;6.351479 +21.12.2015;2.460479131;0.49;6.124973 +22.12.2015;1.616502071;0.49;6.457674 +23.12.2015;0;0.59;6.222186 +24.12.2015;0;0.5;5.642859 +25.12.2015;3.802154414;0.46;5.886817 +26.12.2015;0.10366619;0.92;6.231738 +27.12.2015;0;0.29;5.68726 +28.12.2015;0.103475817;0.19;5.047149 +29.12.2015;0.117668113;0.35;4.688448 +30.12.2015;0;0.28;4.222519 +31.12.2015;1.705440938;0.21;4.223433 +01.01.2016;0;0.23;4.017889 +02.01.2016;8.369063977;0.12;7.317093 +03.01.2016;0.588034675;0.15;14.461141 +04.01.2016;2.664713628;0.08;15.101703 +05.01.2016;0.313912567;0.26;16.96072 +06.01.2016;0.927559742;0.28;15.06295 +07.01.2016;3.927806081;0.28;14.981331 +08.01.2016;0;0.41;16.039465 +09.01.2016;0.099528216;0;13.894992 +10.01.2016;3.926668473;0.48;13.188682 +11.01.2016;4.007747055;0.27;16.235448 +12.01.2016;1.591280505;0.36;22.579827 +13.01.2016;3.102145333;0.31;24 +14.01.2016;1.421460702;0.12;26 +15.01.2016;2.531443794;0.13;24 +16.01.2016;0.351501461;0.1;22 +17.01.2016;0;0;21 +18.01.2016;0;0;19 +19.01.2016;0;0;18 +20.01.2016;0;0;17 +21.01.2016;0;0;16 +22.01.2016;0;0;15 +23.01.2016;1.830081293;0.12;18 +24.01.2016;0.811706003;0.2;17 +25.01.2016;0.309008813;0.37;17 +26.01.2016;0;0.34;13 +27.01.2016;0;0.55;15 +28.01.2016;1.833112643;0.78;17 +29.01.2016;0.107904839;0.51;17 +30.01.2016;7.536723939;0.43;22 +31.01.2016;0.585522187;0.33;14 +01.02.2016;0.692162459;0.59;15 +02.02.2016;6.761576351;0.56;17.517095 +03.02.2016;1.277490294;0.44;19.508173 +04.02.2016;4.32179039;0.25;22.8447 +05.02.2016;0;0.38;24.430915 +06.02.2016;0;0.94;23.071457 +07.02.2016;1.143381551;0.49;20.843161 +08.02.2016;11.01289227;0.52;26.241241 +09.02.2016;8.73877593;0.46;35.07356 +10.02.2016;2.554046236;0.28;40.645547 +11.02.2016;0.567619658;0.36;37.445989 +12.02.2016;0;0.16;33.127436 +13.02.2016;2.40133402;0;30.247736 +14.02.2016;3.37223563;0.33;43.163267 +15.02.2016;0.545083452;0.2;34.951078 +16.02.2016;0.108791133;0;27.866289 +17.02.2016;0;0.1;25.252043 +18.02.2016;0;0.13;22.887992 +19.02.2016;0;0;20.811797 +20.02.2016;8.941678944;0.34;22.393728 +21.02.2016;0.205946991;0.71;44.490382 +22.02.2016;4.448658783;0.64;37.383955 +23.02.2016;5.210107493;0.28;69.780614 +24.02.2016;0.31667498;0.22;53.853118 +25.02.2016;0.182021156;0;48.026933 +26.02.2016;0;0.07;40.424149 +27.02.2016;0;0.38;35.294958 +28.02.2016;0;0.25;29.46965 +29.02.2016;0;0.28;24.575869 +01.03.2016;0.099788551;0.23;21.655856 +02.03.2016;2.543764781;0.45;20.858822 +03.03.2016;0;0.32;18.914856 +04.03.2016;4.054581017;0.17;16.972813 +05.03.2016;2.802675702;0.41;22.858987 +06.03.2016;1.330104522;0.25;20.687357 +07.03.2016;1.4895669;0.1;19.982822 +08.03.2016;0.2254387;0.01;18.236769 +09.03.2016;0;0.19;17.004084 +10.03.2016;0;0.59;15.292344 +11.03.2016;0;0.54;13.741963 +12.03.2016;0;0.37;12.547774 +13.03.2016;0;0.63;11.309854 +14.03.2016;0;0.94;10.237401 +15.03.2016;0;0.31;9.750376 +16.03.2016;0;0.72;8.958825 +17.03.2016;0;0.98;8.378552 +18.03.2016;0;1.45;7.691635 +19.03.2016;0;0.55;6.937422 +20.03.2016;0;0.56;6.583335 +21.03.2016;0;0.77;6.237093 +22.03.2016;0.201403041;0.78;6.006363 +23.03.2016;0;0.81;5.892014 +24.03.2016;0.100209282;0.75;5.51542 +25.03.2016;5.295629966;0.63;6.150663 +26.03.2016;0;1.67;5.828721 +27.03.2016;2.417535746;1.01;5.560486 +28.03.2016;11.95504135;0.74;8.674594 +29.03.2016;0.955642999;1.61;15.443117 +30.03.2016;5.486573008;0.97;13.541014 +31.03.2016;18.36523119;0.68;19.400544 +01.04.2016;12.93356866;1.18;113.67114 +02.04.2016;0;1.54;82.107844 +03.04.2016;0.311702212;1.77;66.821929 +04.04.2016;2.777947475;1.5;54.033702 +05.04.2016;5.288557416;1;53.38014 +06.04.2016;0.207421675;1.77;47.042426 +07.04.2016;2.371324356;1.97;41.448781 +08.04.2016;0;1.41;35.409018 +09.04.2016;0;1.81;30.363167 +10.04.2016;0;1.84;26.219279 +11.04.2016;0;2.81;23.122281 +12.04.2016;2.788103585;1.79;20.835289 +13.04.2016;0.206878578;0.84;19.908118 +14.04.2016;0.110850254;2.5;16.993101 +15.04.2016;0.350645583;1.96;14.864128 +16.04.2016;4.598064622;1.46;15.11145 +17.04.2016;3.985827078;1.55;19.05834 +18.04.2016;0;2.1;14.310609 +19.04.2016;0.112219084;1.14;14.231106 +20.04.2016;0;2.46;14.236287 +21.04.2016;0;3.06;13.086719 +22.04.2016;0;2.34;11.993123 +23.04.2016;1.694991123;1.01;12.306438 +24.04.2016;0.325431496;0.88;11.843871 +25.04.2016;6.326924595;0.69;11.909214 +26.04.2016;1.543896592;1.15;14.036164 +27.04.2016;0.518940383;0.73;12.009422 +28.04.2016;0;1.4;10.280654 +29.04.2016;0;0.95;9.101957 +30.04.2016;3.466456859;1.72;8.363818 +01.05.2016;0.159418201;3.11;8.551597 +02.05.2016;0;3.61;6.51079 +03.05.2016;0.435001943;1.48;6.02769 +04.05.2016;0;2.85;5.368609 +05.05.2016;0;3.32;4.990627 +06.05.2016;0;4.16;4.540968 +07.05.2016;0;4.29;4.319355 +08.05.2016;0;4.57;3.769702 +09.05.2016;0;4.33;3.344512 +10.05.2016;0;3.25;3.137534 +11.05.2016;0.384986665;3.2;2.993173 +12.05.2016;0;2.95;2.755869 +13.05.2016;0.430369072;3.08;2.797507 +14.05.2016;0.149206473;1.5;2.709491 +15.05.2016;0;1.48;2.345982 +16.05.2016;0;1.63;2.370086 +17.05.2016;0;1.3;2.005466 +18.05.2016;0.113391854;1.46;3.404877 +19.05.2016;1.112386621;1.85;7.296716 +20.05.2016;0;2.62;2.172888 +21.05.2016;0;3.25;2.133433 +22.05.2016;1.864368134;3.41;1.866284 +23.05.2016;1.265196483;1.53;1.467837 +24.05.2016;1.771244042;1.3;1.894978 +25.05.2016;0;1.36;1.9752 +26.05.2016;0;3.47;1.573497 +27.05.2016;8.319655478;2.41;2.33996 +28.05.2016;0.203177184;2.96;1.829068 +29.05.2016;2.73192665;2.12;1.709702 +30.05.2016;18.88931006;1.77;8.95159 +31.05.2016;0;1.86;4.092378 +01.06.2016;9.534581958;1.58;4.699488 +02.06.2016;2.583155448;2.07;4.857672 +03.06.2016;4.311377293;1.7;4.482569 +04.06.2016;0.42769823;2.09;3.807784 +05.06.2016;0;4.44;2.555667 +06.06.2016;0;4.6;1.511484 +07.06.2016;0;4.96;0.942042 +08.06.2016;0.40516591;2.73;0.997192 +09.06.2016;0;4.21;0.898497 +10.06.2016;0;4.25;0.780168 +11.06.2016;0;1.95;0.637056 +12.06.2016;5.575656572;2.04;2.174046 +13.06.2016;3.027432781;1.73;2.259874 +14.06.2016;2.364694311;2.76;1.868474 +15.06.2016;16.39205803;2.15;2.864543 +16.06.2016;0.207891926;1.44;2.868224 +17.06.2016;1.336235888;3.19;4.381649 +18.06.2016;0;3.41;3.74645 +19.06.2016;1.36919939;2.2;3.258419 +20.06.2016;3.773280497;3.3;3.265759 +21.06.2016;0.667187168;2.08;3.274147 +22.06.2016;0;2.83;2.998418 +23.06.2016;0;6.11;2.689739 +24.06.2016;0.327630879;5.13;14.381339 +25.06.2016;1.902249526;1.85;10.456674 +26.06.2016;0.207473991;3.64;6.658158 +27.06.2016;0;2.53;4.954631 +28.06.2016;0;3.17;4.802392 +29.06.2016;0.227507408;4.19;3.971303 +30.06.2016;0.301788243;1.91;3.430218 +01.07.2016;0;2.31;3.095551 +02.07.2016;1.07184607;2.59;2.837811 +03.07.2016;2.475292137;2.92;2.740753 +04.07.2016;0;2.38;2.670906 +05.07.2016;0.111215047;2.87;2.547434 +06.07.2016;0;3.43;2.150196 +07.07.2016;0.112414583;4.04;2.006068 +08.07.2016;0;3.04;1.91181 +09.07.2016;0;3.75;1.703555 +10.07.2016;0;4.64;1.62032 +11.07.2016;0;3.03;1.708246 +12.07.2016;0.110809941;3.9;1.583203 +13.07.2016;17.03403353;2.9;2.966055 +14.07.2016;0.144179897;2.58;1.943222 +15.07.2016;0;2.55;1.426019 +16.07.2016;0;2.11;1.478625 +17.07.2016;0;2.38;1.449198 +18.07.2016;0;5.16;1.204307 +19.07.2016;0;5.62;1.477551 +20.07.2016;0;5.69;1.30457 +21.07.2016;3.202411363;2.48;1.587464 +22.07.2016;0;3.26;1.495235 +23.07.2016;11.98292241;2.56;3.329446 +24.07.2016;18.1615269;2.12;1.64346 +25.07.2016;0.106852963;3.84;1.449671 +26.07.2016;0;2.78;1.336794 +27.07.2016;0.531528718;3.89;1.373016 +28.07.2016;0.100209282;2.11;1.308763 +29.07.2016;3.160570324;2.34;1.381977 +30.07.2016;0;2.92;1.170749 +31.07.2016;0;2.5;1.131734 +01.08.2016;0;3.13;0.816771 +02.08.2016;1.270286145;1.48;1.019339 +03.08.2016;4.530701661;1.57;1.389518 +04.08.2016;3.016878384;1.52;1.896977 +05.08.2016;0.100289513;3.21;1.596594 +06.08.2016;0;2.67;1.3715 +07.08.2016;0;4.93;1.27007 +08.08.2016;0;3.7;1.077521 +09.08.2016;0.109530437;2.63;0.992203 +10.08.2016;0.900571308;2.16;1.090999 +11.08.2016;2.399586919;1.7;1.00089 +12.08.2016;0.100877001;1.48;1.118367 +13.08.2016;0;4.71;0.945061 +14.08.2016;0;3.35;0.855563 +15.08.2016;0;4.37;0.80397 +16.08.2016;0;4.32;0.673348 +17.08.2016;0;4.39;0.620793 +18.08.2016;0;3.96;0.643303 +19.08.2016;0;2.86;0.769216 +20.08.2016;1.283211371;1.89;0.86842 +21.08.2016;0.318061239;2.1;0.845269 +22.08.2016;0;1.59;0.809725 +23.08.2016;0;3.67;0.623575 +24.08.2016;0;4.57;0.583828 +25.08.2016;0;4.63;0.451006 +26.08.2016;0;4.7;0.390638 +27.08.2016;0;4.77;0.381175 +28.08.2016;34.51466023;3.35;0.783103 +29.08.2016;0;2.26;0.44335 +30.08.2016;0;3.92;0.28983 +31.08.2016;0;3.86;0.362807 +01.09.2016;0;4.02;0.34465 +02.09.2016;0;3.69;0.263442 +03.09.2016;0;2.92;0.266859 +04.09.2016;4.869164961;1.83;0.500049 +05.09.2016;0.620093261;1.65;0.514997 +06.09.2016;0;3.49;0.421759 +07.09.2016;0;3.74;0.360717 +08.09.2016;0;3.77;0.623417 +09.09.2016;0;3;0.647308 +10.09.2016;0;3.59;0.566866 +11.09.2016;0;3.57;0.642779 +12.09.2016;0;3.83;0.584243 +13.09.2016;0;3.87;0.624604 +14.09.2016;0;3.46;0.773907 +15.09.2016;0;3.48;0.634482 +16.09.2016;0;1.57;0.59636 +17.09.2016;13.08211674;1.2;1.090803 +18.09.2016;0.130423501;1.87;0.843269 +19.09.2016;0.11664365;1;0.649716 +20.09.2016;0;1.02;0.681233 +21.09.2016;0;2.39;0.594031 +22.09.2016;0;2.34;0.456837 +23.09.2016;0;2.14;0.362912 +24.09.2016;0;2.3;0.383837 +25.09.2016;0;2.78;0.337883 +26.09.2016;0;1.42;0.258338 +27.09.2016;0;2.4;0.247644 +28.09.2016;0;1.6;0.985329 +29.09.2016;0;2.37;1.112481 +30.09.2016;1.314380267;0.94;1.097666 +01.10.2016;7.856574862;0.96;1.855835 +02.10.2016;1.626249664;1.59;1.543922 +03.10.2016;3.48372122;1.1;1.419513 +04.10.2016;0.100209282;1.22;1.447856 +05.10.2016;0;1.34;1.387699 +06.10.2016;0;0.68;1.601107 +07.10.2016;1.07828162;0.74;2.150463 +08.10.2016;0.953118453;0.99;2.149589 +09.10.2016;0;0.87;2.01451 +10.10.2016;0;0.54;2.190437 +11.10.2016;0.401547464;0.69;2.230597 +12.10.2016;0.922311521;0.59;2.324864 +13.10.2016;0;0.58;2.237421 +14.10.2016;0;1.05;2.22384 +15.10.2016;0;0.82;2.383007 +16.10.2016;0.107234188;1.04;2.20354 +17.10.2016;1.431599645;0.79;2.184616 +18.10.2016;0.887529053;0.85;2.192242 +19.10.2016;1.557685112;0.57;2.283406 +20.10.2016;4.218952387;0.49;3.127501 +21.10.2016;2.839809068;0.55;2.666176 +22.10.2016;2.518736468;0.56;2.78843 +23.10.2016;0;0.49;2.726416 +24.10.2016;6.607301235;0.56;3.193445 +25.10.2016;3.794312657;0.63;3.883982 +26.10.2016;0;0.57;3.061952 +27.10.2016;0.102334741;0.67;2.556083 +28.10.2016;0;0.64;2.419092 +29.10.2016;0;1.3;2.460045 +30.10.2016;0;0.65;2.391391 +31.10.2016;0;0.98;2.428228 +01.11.2016;0;0.39;2.418025 +02.11.2016;1.030322287;0.68;2.655645 +03.11.2016;0.118985639;0.36;2.558833 +04.11.2016;0.429524248;0.27;2.715995 +05.11.2016;4.297140032;0.39;3.624203 +06.11.2016;0.202492988;0.32;3.226817 +07.11.2016;4.252920837;0.28;3.551767 +08.11.2016;2.859901977;0.17;3.772956 +09.11.2016;4.06644106;0.14;3.928129 +10.11.2016;2.335767308;0.23;5.782891 +11.11.2016;10.75225678;0.26;11.36022 +12.11.2016;0;0.07;6.61794 +13.11.2016;0;0.03;4.741424 +14.11.2016;0.10398106;0;4.222565 +15.11.2016;3.267344925;0.15;4.521476 +16.11.2016;6.133248608;0.46;11.04024 +17.11.2016;2.558420874;0.53;8.805645 +18.11.2016;11.05649097;0.51;11.054335 +19.11.2016;0.334527715;0.32;8.602058 +20.11.2016;0;0.45;6.936625 +21.11.2016;0;0.5;6.053484 +22.11.2016;0;0.43;5.378617 +23.11.2016;0;0.68;4.958714 +24.11.2016;0;0.89;4.675723 +25.11.2016;0;0.63;4.342186 +26.11.2016;0;0.26;4.086791 +27.11.2016;0;0.29;3.91826 +28.11.2016;0.126594003;0;3.852809 +29.11.2016;0;0;3.971793 +30.11.2016;0;0;3.6 +01.12.2016;0;0.23;3.059105 +02.12.2016;2.982331796;0.24;3.163502 +03.12.2016;0.104258295;0;3.207182 +04.12.2016;0.100284967;0;3.657785 +05.12.2016;0;0;5.361678 +06.12.2016;0;0;3.356678 +07.12.2016;0;0;3.219573 +08.12.2016;0;0;3.341401 +09.12.2016;0;0.07;3.23561 +10.12.2016;0;0.06;3.505606 +11.12.2016;0.244925705;0.37;3.580689 +12.12.2016;0.365184914;0.34;3.556574 +13.12.2016;1.358897575;0.21;3.457692 +14.12.2016;1.771248669;0.26;3.808543 +15.12.2016;0;0.31;3.677545 +16.12.2016;0;0.18;3.549057 +17.12.2016;0.108076322;0.09;3.196081 +18.12.2016;0;0.21;3.181549 +19.12.2016;0.10906751;0.22;3.326469 +20.12.2016;0;0;3.266387 +21.12.2016;0;0;3.133773 +22.12.2016;1.903407829;0.02;3.324144 +23.12.2016;0;0.14;3.584695 +24.12.2016;0.395363312;0.38;3.548042 +25.12.2016;0.285241167;0.39;3.545211 +26.12.2016;0.830906677;0.39;3.442165 +27.12.2016;0;0.32;3.118225 +28.12.2016;0;0.28;3.043744 +29.12.2016;0;0;3.05141 +30.12.2016;0;0;3.061955 +31.12.2016;0;0;2.959312 diff --git a/tutorials/NSGA2.csv b/tutorials/NSGA2.csv new file mode 100644 index 00000000..9197c4d8 --- /dev/null +++ b/tutorials/NSGA2.csv @@ -0,0 +1,511 @@ +like1,like2,like3,par0,par1,par2,par3,par4,simulation1_1,simulation2_1,simulation3_1,chain +69.56,23.84,150.6,0.3828,0.7446,0.6465,0.7314,0.83,69.56,23.84,150.6,0.0 +13.29,6.305,40.66,0.3252,0.678,0.1247,0.603,0.3013,13.29,6.305,40.66,1.0 +79.06,11.414,218.6,0.2927,0.874,0.5547,0.2489,0.955,79.06,11.414,218.6,2.0 +3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,3.0 +37.22,42.22,112.25,0.4146,0.4685,0.8457,0.83,0.8105,37.22,42.22,112.25,4.0 +29.0,58.5,183.6,0.3228,0.3313,0.7397,0.0561,0.9717,29.0,58.5,183.6,5.0 +202.2,10.04,50.9,0.8066,0.9526,0.636,0.5635,0.2585,202.2,10.04,50.9,6.0 +4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,7.0 +113.0,4.703,59.66,0.6636,0.96,0.2192,0.578,0.448,113.0,4.703,59.66,8.0 +63.0,18.53,94.25,0.4636,0.773,0.5244,0.2795,0.661,63.0,18.53,94.25,9.0 +65.1,99.7,25.27,0.867,0.3953,0.3643,0.8906,0.761,65.1,99.7,25.27,10.0 +19.1,93.5,51.25,0.687,0.1697,0.896,0.9785,0.8555,19.1,93.5,51.25,11.0 +16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,12.0 +164.5,30.58,18.8,0.912,0.8433,0.6235,0.2695,0.5444,164.5,30.58,18.8,13.0 +5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,14.0 +97.56,16.53,134.8,0.4585,0.855,0.638,0.7485,0.4724,97.56,16.53,134.8,15.0 +130.6,5.355,59.75,0.695,0.9604,0.5127,0.932,0.1416,130.6,5.355,59.75,16.0 +69.2,107.1,74.7,0.7026,0.3926,0.767,0.349,0.769,69.2,107.1,74.7,17.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,18.0 +41.56,20.81,14.6,0.8105,0.6665,0.9834,0.4854,0.6143,41.56,20.81,14.6,19.0 +3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,20.0 +7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,21.0 +78.7,68.5,21.34,0.873,0.5347,0.3467,0.08044,0.08636,78.7,68.5,21.34,22.0 +14.74,15.07,132.6,0.1836,0.4944,0.4202,0.05133,0.7886,14.74,15.07,132.6,23.0 +22.56,34.0,46.62,0.5483,0.399,0.0189,0.9824,0.99,22.56,34.0,46.62,24.0 +50.62,43.2,77.06,0.549,0.5396,0.7603,0.729,0.9062,50.62,43.2,77.06,25.0 +20.38,5.19,145.5,0.1494,0.797,0.838,0.928,0.7925,20.38,5.19,145.5,26.0 +83.0,18.03,103.25,0.4946,0.822,0.9165,0.836,0.933,83.0,18.03,103.25,27.0 +34.5,16.66,97.44,0.3442,0.6743,0.9175,0.31,0.6494,34.5,16.66,97.44,28.0 +27.9,11.59,91.56,0.3013,0.7065,0.1011,0.381,0.0351,27.9,11.59,91.56,29.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,0.0 +3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,1.0 +3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,2.0 +4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,3.0 +5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,4.0 +7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,5.0 +13.29,6.305,40.66,0.3252,0.678,0.1247,0.603,0.3013,13.29,6.305,40.66,6.0 +14.74,15.07,132.6,0.1836,0.4944,0.4202,0.05133,0.7886,14.74,15.07,132.6,7.0 +16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,8.0 +19.1,93.5,51.25,0.687,0.1697,0.896,0.9785,0.8555,19.1,93.5,51.25,9.0 +20.38,5.19,145.5,0.1494,0.797,0.838,0.928,0.7925,20.38,5.19,145.5,10.0 +22.56,34.0,46.62,0.5483,0.399,0.0189,0.9824,0.99,22.56,34.0,46.62,11.0 +27.9,11.59,91.56,0.3013,0.7065,0.1011,0.381,0.0351,27.9,11.59,91.56,12.0 +29.0,58.5,183.6,0.3228,0.3313,0.7397,0.0561,0.9717,29.0,58.5,183.6,13.0 +34.5,16.66,97.44,0.3442,0.6743,0.9175,0.31,0.6494,34.5,16.66,97.44,14.0 +37.22,42.22,112.25,0.4146,0.4685,0.8457,0.83,0.8105,37.22,42.22,112.25,15.0 +41.56,20.81,14.6,0.8105,0.6665,0.9834,0.4854,0.6143,41.56,20.81,14.6,16.0 +50.62,43.2,77.06,0.549,0.5396,0.7603,0.729,0.9062,50.62,43.2,77.06,17.0 +63.0,18.53,94.25,0.4636,0.773,0.5244,0.2795,0.661,63.0,18.53,94.25,18.0 +65.1,99.7,25.27,0.867,0.3953,0.3643,0.8906,0.761,65.1,99.7,25.27,19.0 +69.2,107.1,74.7,0.7026,0.3926,0.767,0.349,0.769,69.2,107.1,74.7,20.0 +69.56,23.84,150.6,0.3828,0.7446,0.6465,0.7314,0.83,69.56,23.84,150.6,21.0 +78.7,68.5,21.34,0.873,0.5347,0.3467,0.08044,0.08636,78.7,68.5,21.34,22.0 +79.06,11.414,218.6,0.2927,0.874,0.5547,0.2489,0.955,79.06,11.414,218.6,23.0 +83.0,18.03,103.25,0.4946,0.822,0.9165,0.836,0.933,83.0,18.03,103.25,24.0 +97.56,16.53,134.8,0.4585,0.855,0.638,0.7485,0.4724,97.56,16.53,134.8,25.0 +113.0,4.703,59.66,0.6636,0.96,0.2192,0.578,0.448,113.0,4.703,59.66,26.0 +130.6,5.355,59.75,0.695,0.9604,0.5127,0.932,0.1416,130.6,5.355,59.75,27.0 +164.5,30.58,18.8,0.912,0.8433,0.6235,0.2695,0.5444,164.5,30.58,18.8,28.0 +202.2,10.04,50.9,0.8066,0.9526,0.636,0.5635,0.2585,202.2,10.04,50.9,29.0 +31.94,64.44,202.2,0.3228,0.3313,0.7397,0.0561,0.961,31.94,64.44,202.2,30.0 +15.45,9.984,150.9,0.1443,0.6074,0.9644,0.4272,0.1848,15.45,9.984,150.9,31.0 +4.312,106.8,159.4,0.411,0.03882,0.5376,0.336,0.8574,4.312,106.8,159.4,32.0 +72.06,61.5,109.75,0.549,0.5396,0.7603,0.729,0.2642,72.06,61.5,109.75,33.0 +16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,34.0 +20.38,99.7,43.75,0.733,0.1697,0.896,0.9785,0.8555,20.38,99.7,43.75,35.0 +43.34,65.3,89.5,0.5483,0.399,0.0189,0.07916,0.0533,43.34,65.3,89.5,36.0 +4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,37.0 +71.1,1.189,31.77,0.695,0.9834,0.5127,0.932,0.8057,71.1,1.189,31.77,38.0 +23.98,24.53,195.5,0.1989,0.4944,0.6465,0.7314,0.83,23.98,24.53,195.5,39.0 +15.17,7.477,134.4,0.1443,0.67,0.1874,0.07916,0.1626,15.17,7.477,134.4,40.0 +20.55,100.6,55.16,0.687,0.1697,0.896,0.2695,0.5444,20.55,100.6,55.16,41.0 +152.0,19.11,16.48,0.912,0.888,0.62,0.33,0.1343,152.0,19.11,16.48,42.0 +4.76,87.25,102.8,0.4722,0.0518,0.9644,0.379,0.228,4.76,87.25,102.8,43.0 +3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,44.0 +4.13,17.95,151.8,0.1271,0.1869,0.62,0.2788,0.5444,4.13,17.95,151.8,45.0 +52.53,7.582,145.2,0.2927,0.874,0.559,0.2915,0.8555,52.53,7.582,145.2,46.0 +24.94,122.06,66.94,0.687,0.1697,0.6235,0.2695,0.5444,24.94,122.06,66.94,47.0 +3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,48.0 +39.4,18.7,120.5,0.3252,0.678,0.1247,0.3428,0.7847,39.4,18.7,120.5,49.0 +0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,50.0 +153.4,6.387,74.25,0.6826,0.96,0.2334,0.07916,0.0533,153.4,6.387,74.25,51.0 +65.56,6.04,173.0,0.2927,0.9155,0.5547,0.981,0.8555,65.56,6.04,173.0,52.0 +1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,53.0 +27.16,54.78,171.9,0.3228,0.3313,0.772,0.06445,0.4487,27.16,54.78,171.9,54.0 +17.69,8.72,129.1,0.1698,0.67,0.9644,0.4207,0.1848,17.69,8.72,129.1,55.0 +50.4,22.19,150.6,0.3252,0.6943,0.1247,0.2695,0.5444,50.4,22.19,150.6,56.0 +201.2,29.05,78.7,0.745,0.874,0.5547,0.2489,0.955,201.2,29.05,78.7,57.0 +40.5,17.17,119.7,0.3252,0.702,0.2192,0.578,0.448,40.5,17.17,119.7,58.0 +26.36,12.51,80.6,0.3252,0.678,0.1247,0.4207,0.1848,26.36,12.51,80.6,59.0 +0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,0.0 +1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,1.0 +3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,2.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,3.0 +3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,4.0 +3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,5.0 +3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,6.0 +4.13,17.95,151.8,0.1271,0.1869,0.62,0.2788,0.5444,4.13,17.95,151.8,7.0 +4.312,106.8,159.4,0.411,0.03882,0.5376,0.336,0.8574,4.312,106.8,159.4,8.0 +4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,9.0 +4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,10.0 +4.76,87.25,102.8,0.4722,0.0518,0.9644,0.379,0.228,4.76,87.25,102.8,11.0 +5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,12.0 +7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,13.0 +13.29,6.305,40.66,0.3252,0.678,0.1247,0.603,0.3013,13.29,6.305,40.66,14.0 +14.74,15.07,132.6,0.1836,0.4944,0.4202,0.05133,0.7886,14.74,15.07,132.6,15.0 +15.17,7.477,134.4,0.1443,0.67,0.1874,0.07916,0.1626,15.17,7.477,134.4,16.0 +15.45,9.984,150.9,0.1443,0.6074,0.9644,0.4272,0.1848,15.45,9.984,150.9,17.0 +16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,18.0 +16.92,8.34,149.9,0.1443,0.67,0.1874,0.07916,0.0533,16.92,8.34,149.9,19.0 +17.69,8.72,129.1,0.1698,0.67,0.9644,0.4207,0.1848,17.69,8.72,129.1,20.0 +19.1,93.5,51.25,0.687,0.1697,0.896,0.9785,0.8555,19.1,93.5,51.25,21.0 +20.38,5.19,145.5,0.1494,0.797,0.838,0.928,0.7925,20.38,5.19,145.5,22.0 +20.38,99.7,43.75,0.733,0.1697,0.896,0.9785,0.8555,20.38,99.7,43.75,23.0 +20.55,100.6,55.16,0.687,0.1697,0.896,0.2695,0.5444,20.55,100.6,55.16,24.0 +22.56,34.0,46.62,0.5483,0.399,0.0189,0.9824,0.99,22.56,34.0,46.62,25.0 +23.98,24.53,195.5,0.1989,0.4944,0.6465,0.7314,0.83,23.98,24.53,195.5,26.0 +24.94,122.06,66.94,0.687,0.1697,0.6235,0.2695,0.5444,24.94,122.06,66.94,27.0 +26.36,12.51,80.6,0.3252,0.678,0.1247,0.4207,0.1848,26.36,12.51,80.6,28.0 +27.16,54.78,171.9,0.3228,0.3313,0.772,0.06445,0.4487,27.16,54.78,171.9,29.0 +2.73,50.0,67.2,0.4397,0.0518,0.9644,0.4966,0.1848,2.73,50.0,67.2,30.0 +4.83,20.38,111.0,0.185,0.1915,0.858,0.8955,0.7847,4.83,20.38,111.0,31.0 +4.46,18.08,154.9,0.1271,0.1979,0.9775,0.4207,0.1353,4.46,18.08,154.9,32.0 +21.56,5.5,154.1,0.1494,0.797,0.838,0.928,0.2864,21.56,5.5,154.1,33.0 +11.42,5.055,34.2,0.3252,0.6934,0.0844,0.603,0.91,11.42,5.055,34.2,34.0 +5.992,122.4,58.47,0.687,0.0467,0.5376,0.3428,0.7993,5.992,122.4,58.47,35.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,36.0 +8.945,97.3,57.6,0.6484,0.08417,0.896,0.9785,0.8555,8.945,97.3,57.6,37.0 +7.81,32.97,179.5,0.185,0.1915,0.858,0.4417,0.1848,7.81,32.97,179.5,38.0 +22.34,5.7,159.8,0.1494,0.797,0.838,0.928,0.1848,22.34,5.7,159.8,39.0 +3.48,3.559,31.31,0.1836,0.4944,0.3894,0.1045,0.7886,3.48,3.559,31.31,40.0 +25.52,124.9,68.44,0.687,0.1697,0.6235,0.973,0.8457,25.52,124.9,68.44,41.0 +8.61,7.133,144.4,0.0983,0.547,0.4202,0.0549,0.7886,8.61,7.133,144.4,42.0 +2.768,68.56,119.5,0.3738,0.03882,0.53,0.4504,0.7847,2.768,68.56,119.5,43.0 +2.508,10.586,57.66,0.185,0.1915,0.898,0.8955,0.923,2.508,10.586,57.66,44.0 +12.19,51.44,241.8,0.2084,0.1915,0.858,0.8496,0.9395,12.19,51.44,241.8,45.0 +18.28,18.7,132.6,0.2181,0.4944,0.64,0.7314,0.8027,18.28,18.7,132.6,46.0 +16.97,17.36,152.8,0.1836,0.4944,0.4202,0.33,0.1343,16.97,17.36,152.8,47.0 +28.12,114.6,52.03,0.733,0.1969,0.9644,0.379,0.228,28.12,114.6,52.03,48.0 +1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,49.0 +20.16,7.613,143.4,0.1624,0.7256,0.838,0.928,0.7925,20.16,7.613,143.4,50.0 +1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,51.0 +5.285,1.164,197.8,0.0316,0.8193,0.5376,0.441,0.7847,5.285,1.164,197.8,52.0 +6.12,79.5,122.75,0.411,0.0715,0.5376,0.3428,0.1848,6.12,79.5,122.75,53.0 +4.043,100.1,149.4,0.411,0.03882,0.5376,0.05133,0.774,4.043,100.1,149.4,54.0 +6.83,66.4,93.25,0.4397,0.0933,0.896,0.9785,0.848,6.83,66.4,93.25,55.0 +2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,56.0 +22.06,5.62,157.6,0.1494,0.797,0.837,0.928,0.7847,22.06,5.62,157.6,57.0 +27.98,108.25,62.03,0.687,0.2053,0.01531,0.828,0.4487,27.98,108.25,62.03,58.0 +3.309,60.6,91.6,0.411,0.0518,0.9644,0.4207,0.1848,3.309,60.6,91.6,59.0 +0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,0.0 +1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,1.0 +1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,2.0 +1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,3.0 +2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,4.0 +2.508,10.586,57.66,0.185,0.1915,0.898,0.8955,0.923,2.508,10.586,57.66,5.0 +2.73,50.0,67.2,0.4397,0.0518,0.9644,0.4966,0.1848,2.73,50.0,67.2,6.0 +2.768,68.56,119.5,0.3738,0.03882,0.53,0.4504,0.7847,2.768,68.56,119.5,7.0 +3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,8.0 +3.309,60.6,91.6,0.411,0.0518,0.9644,0.4207,0.1848,3.309,60.6,91.6,9.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,10.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,11.0 +3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,12.0 +3.48,3.559,31.31,0.1836,0.4944,0.3894,0.1045,0.7886,3.48,3.559,31.31,13.0 +3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,14.0 +3.541,64.8,87.1,0.4397,0.0518,0.9644,0.4207,0.1848,3.541,64.8,87.1,15.0 +4.043,100.1,149.4,0.411,0.03882,0.5376,0.05133,0.774,4.043,100.1,149.4,16.0 +4.13,17.95,151.8,0.1271,0.1869,0.62,0.2788,0.5444,4.13,17.95,151.8,17.0 +4.312,106.8,159.4,0.411,0.03882,0.5376,0.336,0.8574,4.312,106.8,159.4,18.0 +4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,19.0 +4.457,19.38,163.8,0.1271,0.1869,0.62,0.33,0.1343,4.457,19.38,163.8,20.0 +4.46,18.08,154.9,0.1271,0.1979,0.9775,0.4207,0.1353,4.46,18.08,154.9,21.0 +4.76,87.25,102.8,0.4722,0.0518,0.9644,0.379,0.228,4.76,87.25,102.8,22.0 +4.83,20.38,111.0,0.185,0.1915,0.858,0.8955,0.7847,4.83,20.38,111.0,23.0 +5.133,1.131,192.0,0.0316,0.8193,0.01531,0.828,0.4487,5.133,1.131,192.0,24.0 +5.285,1.164,197.8,0.0316,0.8193,0.5376,0.441,0.7847,5.285,1.164,197.8,25.0 +5.992,122.4,58.47,0.687,0.0467,0.5376,0.3428,0.7993,5.992,122.4,58.47,26.0 +6.12,79.5,122.75,0.411,0.0715,0.5376,0.3428,0.1848,6.12,79.5,122.75,27.0 +6.83,66.4,93.25,0.4397,0.0933,0.896,0.9785,0.848,6.83,66.4,93.25,28.0 +7.414,31.3,170.5,0.185,0.1915,0.858,0.8955,0.9395,7.414,31.3,170.5,29.0 +4.25,77.8,91.75,0.4722,0.0518,0.62,0.2788,0.5444,4.25,77.8,91.75,30.0 +1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,31.0 +3.38,83.75,124.9,0.411,0.03882,0.5376,0.4504,0.7847,3.38,83.75,124.9,32.0 +1.903,8.03,43.75,0.185,0.1915,0.989,0.4946,0.1848,1.903,8.03,43.75,33.0 +2.002,79.06,103.3,0.4397,0.02469,0.62,0.2715,0.1343,2.002,79.06,103.3,34.0 +1.894,8.234,69.6,0.1271,0.1869,0.7754,0.1045,0.7886,1.894,8.234,69.6,35.0 +1.712,9.29,100.94,0.0983,0.1555,0.8833,0.3716,0.11,1.712,9.29,100.94,36.0 +32.2,6.36,62.2,0.3828,0.835,0.01147,0.3274,0.11,32.2,6.36,62.2,37.0 +1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,38.0 +4.566,83.6,112.4,0.4397,0.0518,0.5376,0.4504,0.81,4.566,83.6,112.4,39.0 +2.238,8.12,71.1,0.1271,0.2161,0.62,0.2788,0.7993,2.238,8.12,71.1,40.0 +0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,41.0 +1.894,34.7,46.62,0.4397,0.0518,0.9907,0.4207,0.7847,1.894,34.7,46.62,42.0 +1.881,68.0,89.06,0.4397,0.02692,0.0573,0.4207,0.11,1.881,68.0,89.06,43.0 +3.27,80.94,135.9,0.3828,0.03882,0.5376,0.379,0.259,3.27,80.94,135.9,44.0 +1.449,46.53,77.4,0.3828,0.03021,0.5156,0.379,0.228,1.449,46.53,77.4,45.0 +3.3,23.77,119.25,0.185,0.12195,0.898,0.2788,0.5444,3.3,23.77,119.25,46.0 +11.97,44.0,80.25,0.411,0.2137,0.858,0.8955,0.7847,11.97,44.0,80.25,47.0 +4.625,114.5,151.9,0.4397,0.03882,0.5376,0.336,0.8433,4.625,114.5,151.9,48.0 +3.457,85.6,143.6,0.3828,0.03882,0.5376,0.4504,0.8223,3.457,85.6,143.6,49.0 +2.902,71.9,107.2,0.411,0.03882,0.5376,0.336,0.7905,2.902,71.9,107.2,50.0 +4.31,106.75,182.9,0.378,0.03882,0.5376,0.4504,0.955,4.31,106.75,182.9,51.0 +5.066,92.75,114.3,0.4612,0.0518,0.5547,0.2489,0.8945,5.066,92.75,114.3,52.0 +2.465,45.16,60.7,0.4397,0.0518,0.9644,0.4966,0.9077,2.465,45.16,60.7,53.0 +12.08,12.35,108.7,0.1836,0.4944,0.4197,0.1045,0.837,12.08,12.35,108.7,54.0 +4.176,16.61,190.6,0.0983,0.2009,0.914,0.3584,0.864,4.176,16.61,190.6,55.0 +4.2,18.27,154.4,0.1271,0.1869,0.719,0.3728,0.1343,4.2,18.27,154.4,56.0 +14.12,14.43,127.0,0.1836,0.4944,0.9644,0.4207,0.1848,14.12,14.43,127.0,57.0 +5.035,47.9,72.56,0.4219,0.09515,0.5376,0.8955,0.8164,5.035,47.9,72.56,58.0 +2.854,12.414,104.9,0.1271,0.1869,0.62,0.33,0.7886,2.854,12.414,104.9,59.0 +0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,0.0 +0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,1.0 +1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,2.0 +1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,3.0 +1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,4.0 +1.449,46.53,77.4,0.3828,0.03021,0.5156,0.379,0.228,1.449,46.53,77.4,5.0 +1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,6.0 +1.712,9.29,100.94,0.0983,0.1555,0.8833,0.3716,0.11,1.712,9.29,100.94,7.0 +1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,8.0 +1.881,68.0,89.06,0.4397,0.02692,0.0573,0.4207,0.11,1.881,68.0,89.06,9.0 +1.894,34.7,46.62,0.4397,0.0518,0.9907,0.4207,0.7847,1.894,34.7,46.62,10.0 +1.894,8.234,69.6,0.1271,0.1869,0.7754,0.1045,0.7886,1.894,8.234,69.6,11.0 +1.903,8.03,43.75,0.185,0.1915,0.989,0.4946,0.1848,1.903,8.03,43.75,12.0 +2.002,79.06,103.3,0.4397,0.02469,0.62,0.2715,0.1343,2.002,79.06,103.3,13.0 +2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,14.0 +2.238,8.12,71.1,0.1271,0.2161,0.62,0.2788,0.7993,2.238,8.12,71.1,15.0 +2.465,45.16,60.7,0.4397,0.0518,0.9644,0.4966,0.9077,2.465,45.16,60.7,16.0 +2.508,10.586,57.66,0.185,0.1915,0.898,0.8955,0.923,2.508,10.586,57.66,17.0 +2.73,50.0,67.2,0.4397,0.0518,0.9644,0.4966,0.1848,2.73,50.0,67.2,18.0 +2.768,68.56,119.5,0.3738,0.03882,0.53,0.4504,0.7847,2.768,68.56,119.5,19.0 +2.854,12.414,104.9,0.1271,0.1869,0.62,0.33,0.7886,2.854,12.414,104.9,20.0 +2.902,71.9,107.2,0.411,0.03882,0.5376,0.336,0.7905,2.902,71.9,107.2,21.0 +3.148,78.0,130.9,0.3828,0.03882,0.5376,0.4504,0.7847,3.148,78.0,130.9,22.0 +3.27,80.94,135.9,0.3828,0.03882,0.5376,0.379,0.259,3.27,80.94,135.9,23.0 +3.3,23.77,119.25,0.185,0.12195,0.898,0.2788,0.5444,3.3,23.77,119.25,24.0 +3.309,60.6,91.6,0.411,0.0518,0.9644,0.4207,0.1848,3.309,60.6,91.6,25.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,26.0 +3.318,82.2,122.56,0.411,0.03882,0.5376,0.3428,0.7847,3.318,82.2,122.56,27.0 +3.38,83.75,124.9,0.411,0.03882,0.5376,0.4504,0.7847,3.38,83.75,124.9,28.0 +3.453,13.836,158.6,0.0983,0.1997,0.914,0.123,0.2576,3.453,13.836,158.6,29.0 +1.012,0.2228,226.2,0.00543,0.8193,0.5547,0.2489,0.1848,1.012,0.2228,226.2,30.0 +2.229,0.4907,83.4,0.0316,0.8193,0.01473,0.4207,0.11,2.229,0.4907,83.4,31.0 +1.8545,45.94,68.5,0.411,0.03882,0.5376,0.3042,0.517,1.8545,45.94,68.5,32.0 +0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,33.0 +2.373,11.55,61.3,0.185,0.1704,0.898,0.2788,0.7847,2.373,11.55,61.3,34.0 +5.54,20.22,177.0,0.1271,0.2151,0.5903,0.2489,0.9355,5.54,20.22,177.0,35.0 +1.973,8.58,85.94,0.1093,0.1869,0.719,0.8955,0.923,1.973,8.58,85.94,36.0 +1.425,25.5,43.44,0.3828,0.05292,0.5156,0.4216,0.7075,1.425,25.5,43.44,37.0 +7.33,52.78,86.2,0.411,0.12195,0.898,0.2788,0.5444,7.33,52.78,86.2,38.0 +1.242,79.8,92.56,0.4668,0.01532,0.697,0.3428,0.7686,1.242,79.8,92.56,39.0 +0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,40.0 +1.406,25.75,186.5,0.1271,0.0518,0.9644,0.4207,0.1343,1.406,25.75,186.5,41.0 +3.002,74.3,124.7,0.3828,0.03882,0.5464,0.434,0.7847,3.002,74.3,124.7,42.0 +0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,43.0 +0.942,0.2085,210.9,0.00543,0.819,0.5376,0.4504,0.7847,0.942,0.2085,210.9,44.0 +2.56,18.44,93.94,0.1826,0.12195,0.898,0.2788,0.1718,2.56,18.44,93.94,45.0 +3.133,13.625,21.36,0.4397,0.1869,0.719,0.603,0.3013,3.133,13.625,21.36,46.0 +4.734,117.25,174.9,0.411,0.03882,0.5376,0.2489,0.955,4.734,117.25,174.9,47.0 +2.3,90.94,118.8,0.4397,0.02469,0.5376,0.4504,0.7847,2.3,90.94,118.8,48.0 +3.936,16.61,90.5,0.185,0.1915,0.898,0.4207,0.1718,3.936,16.61,90.5,49.0 +0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,50.0 +0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,51.0 +1.372,5.97,56.75,0.1145,0.1869,0.7197,0.4966,0.1848,1.372,5.97,56.75,52.0 +0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,53.0 +1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,54.0 +0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,55.0 +2.531,0.5576,94.7,0.0316,0.8193,0.01473,0.4216,0.1848,2.531,0.5576,94.7,56.0 +3.014,13.11,110.75,0.1271,0.1869,0.9214,0.914,0.923,3.014,13.11,110.75,57.0 +0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,58.0 +1.832,58.8,97.8,0.3828,0.03021,0.5156,0.3682,0.228,1.832,58.8,97.8,59.0 +0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,0.0 +0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,1.0 +0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,2.0 +0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,3.0 +0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,4.0 +0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,5.0 +0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,6.0 +0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,7.0 +0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,8.0 +0.942,0.2085,210.9,0.00543,0.819,0.5376,0.4504,0.7847,0.942,0.2085,210.9,9.0 +0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,10.0 +1.012,0.2228,226.2,0.00543,0.8193,0.5547,0.2489,0.1848,1.012,0.2228,226.2,11.0 +1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,12.0 +1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,13.0 +1.242,79.8,92.56,0.4668,0.01532,0.697,0.3428,0.7686,1.242,79.8,92.56,14.0 +1.372,5.97,56.75,0.1145,0.1869,0.7197,0.4966,0.1848,1.372,5.97,56.75,15.0 +1.375,0.3027,307.5,0.00543,0.8193,0.5547,0.2489,0.955,1.375,0.3027,307.5,16.0 +1.406,25.75,186.5,0.1271,0.0518,0.9644,0.4207,0.1343,1.406,25.75,186.5,17.0 +1.425,25.5,43.44,0.3828,0.05292,0.5156,0.4216,0.7075,1.425,25.5,43.44,18.0 +1.449,46.53,77.4,0.3828,0.03021,0.5156,0.379,0.228,1.449,46.53,77.4,19.0 +1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,20.0 +1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,21.0 +1.712,9.29,100.94,0.0983,0.1555,0.8833,0.3716,0.11,1.712,9.29,100.94,22.0 +1.725,55.34,92.06,0.3828,0.03021,0.5156,0.4504,0.7847,1.725,55.34,92.06,23.0 +1.832,58.8,97.8,0.3828,0.03021,0.5156,0.3682,0.228,1.832,58.8,97.8,24.0 +1.8545,45.94,68.5,0.411,0.03882,0.5376,0.3042,0.517,1.8545,45.94,68.5,25.0 +1.881,68.0,89.06,0.4397,0.02692,0.0573,0.4207,0.11,1.881,68.0,89.06,26.0 +1.894,34.7,46.62,0.4397,0.0518,0.9907,0.4207,0.7847,1.894,34.7,46.62,27.0 +1.894,8.234,69.6,0.1271,0.1869,0.7754,0.1045,0.7886,1.894,8.234,69.6,28.0 +1.903,8.03,43.75,0.185,0.1915,0.989,0.4946,0.1848,1.903,8.03,43.75,29.0 +3.336,107.1,178.1,0.3828,0.03021,0.5625,0.4504,0.856,3.336,107.1,178.1,30.0 +1.258,40.38,67.1,0.3828,0.03021,0.5156,0.379,0.3235,1.258,40.38,67.1,31.0 +3.104,16.84,183.0,0.0983,0.1555,0.8833,0.3657,0.7617,3.104,16.84,183.0,32.0 +0.648,0.1427,144.9,0.00543,0.8193,0.62,0.33,0.1791,0.648,0.1427,144.9,33.0 +10.484,58.66,79.6,0.4648,0.1516,0.9644,0.4207,0.1876,10.484,58.66,79.6,34.0 +1.685,7.33,178.6,0.04803,0.1869,0.62,0.33,0.1343,1.685,7.33,178.6,35.0 +2.438,13.234,143.8,0.0983,0.1555,0.5234,0.4504,0.907,2.438,13.234,143.8,36.0 +0.9517,61.16,66.44,0.4832,0.01532,0.5156,0.4348,0.2156,0.9517,61.16,66.44,37.0 +0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,38.0 +0.1788,5.008,35.62,0.1271,0.0345,0.7197,0.603,0.3013,0.1788,5.008,35.62,39.0 +0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,40.0 +1.685,9.14,160.1,0.06335,0.1555,0.671,0.452,0.1952,1.685,9.14,160.1,41.0 +1.817,8.12,43.75,0.185,0.183,0.989,0.4946,0.1848,1.817,8.12,43.75,42.0 +1.513,59.75,78.06,0.4397,0.02469,0.7197,0.379,0.228,1.513,59.75,78.06,43.0 +23.14,5.094,222.5,0.1126,0.8193,0.5547,0.2489,0.1769,23.14,5.094,222.5,44.0 +1.919,97.75,127.06,0.4397,0.01926,0.5537,0.4216,0.7373,1.919,97.75,127.06,45.0 +12.17,2.68,294.2,0.04803,0.8193,0.5547,0.2489,0.955,12.17,2.68,294.2,46.0 +1.005,4.37,106.56,0.04803,0.1869,0.8833,0.3716,0.11,1.005,4.37,106.56,47.0 +0.9473,4.12,100.4,0.04803,0.1869,0.62,0.33,0.3013,0.9473,4.12,100.4,48.0 +4.77,20.75,148.1,0.147,0.1869,0.697,0.3428,0.7686,4.77,20.75,148.1,49.0 +0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,50.0 +1.718,62.1,81.3,0.4397,0.02692,0.0573,0.414,0.786,1.718,62.1,81.3,51.0 +1.369,5.953,50.3,0.1271,0.1869,0.719,0.603,0.786,1.369,5.953,50.3,52.0 +1.029,0.2367,232.0,0.00543,0.813,0.5156,0.2489,0.955,1.029,0.2367,232.0,53.0 +2.318,12.586,82.06,0.1537,0.1555,0.8833,0.3716,0.3013,2.318,12.586,82.06,54.0 +0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,55.0 +0.557,0.12274,124.6,0.00543,0.8193,0.5547,0.1045,0.11,0.557,0.12274,124.6,56.0 +2.377,76.3,126.94,0.3828,0.03021,0.5117,0.3428,0.7417,2.377,76.3,126.94,57.0 +0.583,23.05,30.11,0.4397,0.02469,0.7197,0.6123,0.3013,0.583,23.05,30.11,58.0 +0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,59.0 +0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,0.0 +0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,1.0 +0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,2.0 +0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,3.0 +0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,4.0 +0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,5.0 +0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,6.0 +0.1788,5.008,35.62,0.1271,0.0345,0.7197,0.603,0.3013,0.1788,5.008,35.62,7.0 +0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,8.0 +0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,9.0 +0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,10.0 +0.557,0.12274,124.6,0.00543,0.8193,0.5547,0.1045,0.11,0.557,0.12274,124.6,11.0 +0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,12.0 +0.583,23.05,30.11,0.4397,0.02469,0.7197,0.6123,0.3013,0.583,23.05,30.11,13.0 +0.648,0.1427,144.9,0.00543,0.8193,0.62,0.33,0.1791,0.648,0.1427,144.9,14.0 +0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,15.0 +0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,16.0 +0.9053,3.938,33.28,0.1271,0.1869,0.719,0.603,0.3013,0.9053,3.938,33.28,17.0 +0.942,0.2085,210.9,0.00543,0.819,0.5376,0.4504,0.7847,0.942,0.2085,210.9,18.0 +0.9473,4.12,100.4,0.04803,0.1869,0.62,0.33,0.3013,0.9473,4.12,100.4,19.0 +0.9517,61.16,66.44,0.4832,0.01532,0.5156,0.4348,0.2156,0.9517,61.16,66.44,20.0 +0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,21.0 +1.005,4.37,106.56,0.04803,0.1869,0.8833,0.3716,0.11,1.005,4.37,106.56,22.0 +1.012,0.2228,226.2,0.00543,0.8193,0.5547,0.2489,0.1848,1.012,0.2228,226.2,23.0 +1.023,18.73,135.8,0.1271,0.0518,0.9644,0.4207,0.1848,1.023,18.73,135.8,24.0 +1.029,0.2367,232.0,0.00543,0.813,0.5156,0.2489,0.955,1.029,0.2367,232.0,25.0 +1.049,67.4,98.1,0.411,0.01532,0.671,0.4207,0.1718,1.049,67.4,98.1,26.0 +1.242,79.8,92.56,0.4668,0.01532,0.697,0.3428,0.7686,1.242,79.8,92.56,27.0 +1.258,40.38,67.1,0.3828,0.03021,0.5156,0.379,0.3235,1.258,40.38,67.1,28.0 +1.369,5.953,50.3,0.1271,0.1869,0.719,0.603,0.786,1.369,5.953,50.3,29.0 +0.1581,0.03482,35.34,0.00543,0.8193,0.5156,0.4004,0.3103,0.1581,0.03482,35.34,30.0 +0.9624,17.62,127.7,0.1271,0.0518,0.898,0.2788,0.5444,0.9624,17.62,127.7,31.0 +1.688,7.344,179.0,0.04803,0.1869,0.8833,0.3716,0.1381,1.688,7.344,179.0,32.0 +1.692,108.8,97.6,0.531,0.01532,0.5474,0.412,0.3584,1.692,108.8,97.6,33.0 +0.8477,54.47,59.16,0.4832,0.01532,0.5156,0.4348,0.3103,0.8477,54.47,59.16,34.0 +0.8,51.4,105.44,0.3313,0.01532,0.898,0.2593,0.5264,0.8,51.4,105.44,35.0 +0.08136,2.611,82.5,0.0316,0.03021,0.5156,0.8955,0.923,0.08136,2.611,82.5,36.0 +0.00858,0.2129,40.6,0.00543,0.03876,0.7197,0.603,0.3013,0.00858,0.2129,40.6,37.0 +0.8374,53.8,47.16,0.5366,0.01532,0.697,0.3428,0.3013,0.8374,53.8,47.16,38.0 +0.833,53.53,62.1,0.4668,0.01532,0.697,0.3428,0.7886,0.833,53.53,62.1,39.0 +0.12396,0.539,124.06,0.005318,0.1869,0.65,0.603,0.786,0.12396,0.539,124.06,40.0 +1.12,0.2467,250.5,0.00543,0.8193,0.5547,0.2488,0.776,1.12,0.2467,250.5,41.0 +1.14,73.25,70.6,0.513,0.01532,0.5156,0.4504,0.786,1.14,73.25,70.6,42.0 +0.03796,1.537,48.28,0.0316,0.02412,0.5156,0.1045,0.7886,0.03796,1.537,48.28,43.0 +0.05725,3.68,115.94,0.03122,0.01532,0.898,0.3115,0.5444,0.05725,3.68,115.94,44.0 +0.4924,0.1084,110.1,0.00543,0.8193,0.5547,0.2078,0.3013,0.4924,0.1084,110.1,45.0 +0.04007,1.194,147.5,0.0083,0.03244,0.5156,0.447,0.2156,0.04007,1.194,147.5,46.0 +1.332,52.62,68.75,0.4397,0.02469,0.7197,0.379,0.3235,1.332,52.62,68.75,47.0 +0.9785,62.88,96.2,0.399,0.01532,0.9644,0.4778,0.1848,0.9785,62.88,96.2,48.0 +1.376,44.16,57.38,0.4426,0.03021,0.8833,0.3716,0.10126,1.376,44.16,57.38,49.0 +1.675,53.78,89.44,0.3828,0.03021,0.5156,0.4207,0.1345,1.675,53.78,89.44,50.0 +1.902,23.34,173.5,0.1271,0.0753,0.9644,0.5664,0.3179,1.902,23.34,173.5,51.0 +1.211,5.496,46.06,0.1271,0.1805,0.719,0.603,0.7886,1.211,5.496,46.06,52.0 +0.8936,18.19,30.77,0.3828,0.04684,0.5156,0.1045,0.7886,0.8936,18.19,30.77,53.0 +0.0761,2.443,77.25,0.0316,0.03021,0.5156,0.41,0.3235,0.0761,2.443,77.25,54.0 +0.01772,0.5283,194.6,0.002796,0.03244,0.9375,0.4207,0.228,0.01772,0.5283,194.6,55.0 +0.5938,23.45,31.42,0.4336,0.02469,0.7197,0.603,0.7886,0.5938,23.45,31.42,56.0 +0.9688,4.21,158.9,0.0316,0.1869,0.8833,0.3716,0.1289,0.9688,4.21,158.9,57.0 +0.9854,31.62,52.6,0.3828,0.03021,0.5156,0.8955,0.923,0.9854,31.62,52.6,58.0 +1.0,32.1,53.4,0.3828,0.03021,0.5156,0.8955,0.9233,1.0,32.1,53.4,59.0 +0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,0.0 +0.00858,0.2129,40.6,0.00543,0.03876,0.7197,0.603,0.3013,0.00858,0.2129,40.6,1.0 +0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,2.0 +0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,3.0 +0.01772,0.5283,194.6,0.002796,0.03244,0.9375,0.4207,0.228,0.01772,0.5283,194.6,4.0 +0.03796,1.537,48.28,0.0316,0.02412,0.5156,0.1045,0.7886,0.03796,1.537,48.28,5.0 +0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,6.0 +0.04007,1.194,147.5,0.0083,0.03244,0.5156,0.447,0.2156,0.04007,1.194,147.5,7.0 +0.05725,3.68,115.94,0.03122,0.01532,0.898,0.3115,0.5444,0.05725,3.68,115.94,8.0 +0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,9.0 +0.0761,2.443,77.25,0.0316,0.03021,0.5156,0.41,0.3235,0.0761,2.443,77.25,10.0 +0.08136,2.611,82.5,0.0316,0.03021,0.5156,0.8955,0.923,0.08136,2.611,82.5,11.0 +0.12396,0.539,124.06,0.005318,0.1869,0.65,0.603,0.786,0.12396,0.539,124.06,12.0 +0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,13.0 +0.1384,4.44,140.5,0.0316,0.03021,0.5156,0.4504,0.786,0.1384,4.44,140.5,14.0 +0.1581,0.03482,35.34,0.00543,0.8193,0.5156,0.4004,0.3103,0.1581,0.03482,35.34,15.0 +0.1788,5.008,35.62,0.1271,0.0345,0.7197,0.603,0.3013,0.1788,5.008,35.62,16.0 +0.3062,0.08746,152.9,0.00257,0.778,0.01473,0.4207,0.1343,0.3062,0.08746,152.9,17.0 +0.4429,17.5,22.88,0.4397,0.02469,0.7197,0.603,0.3013,0.4429,17.5,22.88,18.0 +0.4924,0.1084,110.1,0.00543,0.8193,0.5547,0.2078,0.3013,0.4924,0.1084,110.1,19.0 +0.5557,0.12244,124.3,0.00543,0.8193,0.5547,0.1045,0.7886,0.5557,0.12244,124.3,20.0 +0.557,0.12274,124.6,0.00543,0.8193,0.5547,0.1045,0.11,0.557,0.12274,124.6,21.0 +0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,22.0 +0.583,23.05,30.11,0.4397,0.02469,0.7197,0.6123,0.3013,0.583,23.05,30.11,23.0 +0.5938,23.45,31.42,0.4336,0.02469,0.7197,0.603,0.7886,0.5938,23.45,31.42,24.0 +0.648,0.1427,144.9,0.00543,0.8193,0.62,0.33,0.1791,0.648,0.1427,144.9,25.0 +0.742,47.72,97.8,0.3313,0.01532,0.898,0.2788,0.5444,0.742,47.72,97.8,26.0 +0.8,51.4,105.44,0.3313,0.01532,0.898,0.2593,0.5264,0.8,51.4,105.44,27.0 +0.833,53.53,62.1,0.4668,0.01532,0.697,0.3428,0.7886,0.833,53.53,62.1,28.0 +0.835,59.56,97.44,0.3828,0.013824,0.9546,0.4207,0.1912,0.835,59.56,97.44,29.0 +0.010124,0.302,111.3,0.002796,0.03244,0.9824,0.4314,0.3013,0.010124,0.302,111.3,30.0 +0.3245,0.0928,162.0,0.00257,0.778,0.01473,0.4236,0.1343,0.3245,0.0928,162.0,31.0 +0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,32.0 +0.1951,6.26,127.94,0.04803,0.03021,0.4575,0.2893,0.1848,0.1951,6.26,127.94,33.0 +0.3982,0.08765,89.0,0.00543,0.8193,0.5156,0.395,0.228,0.3982,0.08765,89.0,34.0 +0.7393,47.5,97.44,0.3313,0.01532,0.62,0.33,0.1791,0.7393,47.5,97.44,35.0 +0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,36.0 +0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,37.0 +0.0549,1.763,143.0,0.01255,0.03021,0.5156,0.4504,0.2856,0.0549,1.763,143.0,38.0 +0.5996,38.56,107.1,0.2676,0.01532,0.898,0.2788,0.5444,0.5996,38.56,107.1,39.0 +0.02827,0.701,133.6,0.00543,0.03876,0.7197,0.603,0.2411,0.02827,0.701,133.6,40.0 +0.1198,3.846,121.56,0.0316,0.03021,0.5156,0.4504,0.3013,0.1198,3.846,121.56,41.0 +2.338,75.06,158.6,0.3281,0.03021,0.4746,0.4504,0.8345,2.338,75.06,158.6,42.0 +0.1328,0.03796,79.7,0.002136,0.778,0.01203,0.4207,0.11,0.1328,0.03796,79.7,43.0 +1.17,37.56,50.78,0.4329,0.03021,0.5156,0.395,0.228,1.17,37.56,50.78,44.0 +0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,45.0 +0.05728,0.2491,57.3,0.005318,0.1869,0.719,0.603,0.786,0.05728,0.2491,57.3,46.0 +0.1377,4.418,139.8,0.0316,0.03021,0.5156,0.4207,0.1343,0.1377,4.418,139.8,47.0 +0.1241,3.984,125.94,0.0316,0.03021,0.5156,0.4626,0.786,0.1241,3.984,125.94,48.0 +0.01628,0.467,88.56,0.00543,0.0337,0.898,0.2788,0.5786,0.01628,0.467,88.56,49.0 +0.02982,1.203,147.2,0.0083,0.02419,0.5156,0.447,0.2156,0.02982,1.203,147.2,50.0 +0.015205,0.4534,167.1,0.002796,0.03244,0.671,0.4207,0.1718,0.015205,0.4534,167.1,51.0 +0.58,0.1499,133.8,0.00543,0.795,0.5576,0.2893,0.1848,0.58,0.1499,133.8,52.0 +2.818,87.94,115.6,0.4397,0.03107,0.898,0.3518,0.5444,2.818,87.94,115.6,53.0 +0.9067,58.25,76.6,0.4358,0.01532,0.898,0.2822,0.5444,0.9067,58.25,76.6,54.0 +0.5557,0.1241,124.6,0.00543,0.8174,0.5547,0.1045,0.11,0.5557,0.1241,124.6,55.0 +0.012474,0.372,162.9,0.002356,0.03244,0.9824,0.33,0.1746,0.012474,0.372,162.9,56.0 +0.02089,5.023,151.5,0.03226,0.004143,0.5156,0.379,0.7407,0.02089,5.023,151.5,57.0 +0.012054,2.898,87.3,0.03226,0.004143,0.5156,0.3943,0.228,0.012054,2.898,87.3,58.0 +3.85,0.8477,141.0,0.03226,0.8193,0.62,0.33,0.1791,3.85,0.8477,141.0,59.0 +0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,0.0 +0.003393,0.2181,40.6,0.00543,0.01532,0.7197,0.603,0.3013,0.003393,0.2181,40.6,1.0 +0.007133,0.2128,78.4,0.002796,0.03244,0.9824,0.4207,0.3013,0.007133,0.2128,78.4,2.0 +0.00858,0.2129,40.6,0.00543,0.03876,0.7197,0.603,0.3013,0.00858,0.2129,40.6,3.0 +0.010124,0.302,111.3,0.002796,0.03244,0.9824,0.4314,0.3013,0.010124,0.302,111.3,4.0 +0.012054,2.898,87.3,0.03226,0.004143,0.5156,0.3943,0.228,0.012054,2.898,87.3,5.0 +0.012474,0.372,162.9,0.002356,0.03244,0.9824,0.33,0.1746,0.012474,0.372,162.9,6.0 +0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,7.0 +0.01393,0.8955,166.6,0.00543,0.01532,0.671,0.4207,0.1718,0.01393,0.8955,166.6,8.0 +0.015205,0.4534,167.1,0.002796,0.03244,0.671,0.4207,0.1718,0.015205,0.4534,167.1,9.0 +0.01628,0.467,88.56,0.00543,0.0337,0.898,0.2788,0.5786,0.01628,0.467,88.56,10.0 +0.01674,4.023,121.3,0.03226,0.004143,0.5156,0.379,0.228,0.01674,4.023,121.3,11.0 +0.01772,0.5283,194.6,0.002796,0.03244,0.9375,0.4207,0.228,0.01772,0.5283,194.6,12.0 +0.02089,5.023,151.5,0.03226,0.004143,0.5156,0.379,0.7407,0.02089,5.023,151.5,13.0 +0.02827,0.701,133.6,0.00543,0.03876,0.7197,0.603,0.2411,0.02827,0.701,133.6,14.0 +0.02982,1.203,147.2,0.0083,0.02419,0.5156,0.447,0.2156,0.02982,1.203,147.2,15.0 +0.03796,1.537,48.28,0.0316,0.02412,0.5156,0.1045,0.7886,0.03796,1.537,48.28,16.0 +0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,17.0 +0.03955,17.9,22.88,0.4397,0.002205,0.7197,0.603,0.3013,0.03955,17.9,22.88,18.0 +0.04007,1.194,147.5,0.0083,0.03244,0.5156,0.447,0.2156,0.04007,1.194,147.5,19.0 +0.0549,1.763,143.0,0.01255,0.03021,0.5156,0.4504,0.2856,0.0549,1.763,143.0,20.0 +0.05725,3.68,115.94,0.03122,0.01532,0.898,0.3115,0.5444,0.05725,3.68,115.94,21.0 +0.05728,0.2491,57.3,0.005318,0.1869,0.719,0.603,0.786,0.05728,0.2491,57.3,22.0 +0.06586,0.2866,65.94,0.005318,0.1869,0.719,0.603,0.3179,0.06586,0.2866,65.94,23.0 +0.0761,2.443,77.25,0.0316,0.03021,0.5156,0.41,0.3235,0.0761,2.443,77.25,24.0 +0.08136,2.611,82.5,0.0316,0.03021,0.5156,0.8955,0.923,0.08136,2.611,82.5,25.0 +0.1198,3.846,121.56,0.0316,0.03021,0.5156,0.4504,0.3013,0.1198,3.846,121.56,26.0 +0.12396,0.539,124.06,0.005318,0.1869,0.65,0.603,0.786,0.12396,0.539,124.06,27.0 +0.1241,3.984,125.94,0.0316,0.03021,0.5156,0.4626,0.786,0.1241,3.984,125.94,28.0 +0.1299,4.17,85.2,0.04803,0.03021,0.5156,0.395,0.228,0.1299,4.17,85.2,29.0 +0.003273,0.1324,48.38,0.002796,0.02412,0.5156,0.098,0.7886,0.003273,0.1324,48.38,30.0 +0.0188,0.466,98.6,0.004894,0.03876,0.7407,0.603,0.3013,0.0188,0.466,98.6,31.0 +0.0377,1.524,47.9,0.0316,0.02412,0.5156,0.11334,0.3013,0.0377,1.524,47.9,32.0 +0.0337,0.4197,89.06,0.005066,0.0743,0.5156,0.395,0.228,0.0337,0.4197,89.06,33.0 +0.0236,1.518,47.8,0.03122,0.01532,0.898,0.3115,0.3167,0.0236,1.518,47.8,34.0 +0.02122,0.681,74.44,0.009346,0.03021,0.5156,0.4207,0.312,0.02122,0.681,74.44,35.0 +0.02716,6.53,196.9,0.03226,0.004143,0.5156,0.453,0.2343,0.02716,6.53,196.9,36.0 +0.010124,0.302,111.3,0.002796,0.03244,0.9824,0.4314,0.3013,0.010124,0.302,111.3,37.0 +0.01539,0.3816,12.164,0.0316,0.03876,0.609,0.603,0.3013,0.01539,0.3816,12.164,38.0 +0.03004,1.931,38.84,0.04803,0.01532,0.7197,0.603,0.3013,0.03004,1.931,38.84,39.0 +0.123,0.5825,131.9,0.005318,0.1743,0.7197,0.603,0.2598,0.123,0.5825,131.9,40.0 +0.6655,2.895,62.72,0.05374,0.1869,0.719,0.603,0.3179,0.6655,2.895,62.72,41.0 +0.0627,3.623,86.4,0.04092,0.01701,0.5176,0.8955,0.923,0.0627,3.623,86.4,42.0 +0.02008,3.643,109.94,0.03226,0.00548,0.565,0.4912,0.2156,0.02008,3.643,109.94,43.0 +0.01793,0.4446,84.75,0.00543,0.03876,0.5156,0.8955,0.923,0.01793,0.4446,84.75,44.0 +0.04663,2.996,101.2,0.0292,0.01532,0.671,0.4207,0.3013,0.04663,2.996,101.2,45.0 +0.01732,1.113,135.0,0.0083,0.01532,0.7197,0.5557,0.3013,0.01732,1.113,135.0,46.0 +0.004715,0.1908,69.7,0.002796,0.02412,0.5225,0.1045,0.7886,0.004715,0.1908,69.7,47.0 +0.0244,0.7275,137.8,0.00543,0.03244,0.5117,0.447,0.2156,0.0244,0.7275,137.8,48.0 +0.01179,0.3516,129.6,0.002796,0.03244,0.9375,0.603,0.2812,0.01179,0.3516,129.6,49.0 +0.02681,1.085,34.06,0.0316,0.02412,0.5156,0.1045,0.3013,0.02681,1.085,34.06,50.0 +0.2299,7.38,150.8,0.04803,0.03021,0.5156,0.4207,0.2568,0.2299,7.38,150.8,51.0 +0.003702,0.1104,40.7,0.002796,0.03244,0.7197,0.603,0.3013,0.003702,0.1104,40.7,52.0 +0.2703,17.38,151.4,0.10443,0.01532,0.898,0.3289,0.5444,0.2703,17.38,151.4,53.0 +0.01822,0.585,110.5,0.00543,0.03021,0.5376,0.4841,0.3013,0.01822,0.585,110.5,54.0 +0.006306,0.4053,190.4,0.002157,0.01532,0.671,0.447,0.2156,0.006306,0.4053,190.4,55.0 +0.00999,0.2343,87.06,0.002796,0.0409,0.664,0.603,0.3013,0.00999,0.2343,87.06,56.0 +0.02046,1.315,69.75,0.0188,0.01532,0.876,0.3115,0.3013,0.02046,1.315,69.75,57.0 +0.00989,0.6353,118.25,0.00543,0.01532,0.671,0.4207,0.7886,0.00989,0.6353,118.25,58.0 +0.8486,3.691,100.7,0.04315,0.1869,0.65,0.603,0.3013,0.8486,3.691,100.7,59.0 From bd28c6ecda5b47f9ed4fe49570e725e9d57449d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 14:23:43 +0200 Subject: [PATCH 08/34] setup: add back setup.py for editable install until setuptools implements pep660 --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..7f1a1763 --- /dev/null +++ b/setup.py @@ -0,0 +1,4 @@ +from setuptools import setup + +if __name__ == "__main__": + setup() From 232bda90aa515978cbd22a575d263929da03c447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 14:23:54 +0200 Subject: [PATCH 09/34] test: fix tests --- .gitignore | 1 + pyproject.toml | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1a7431be..4cbaa380 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ __pycache__/ #other files *.out *.png +test_DDS.csv ./*.csv site/* #mkdocs.yml diff --git a/pyproject.toml b/pyproject.toml index b4731086..01327350 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -74,7 +74,11 @@ plotting = [ "pandas>=1", "matplotlib>=3", ] -test = ["pytest-cov>=3"] +test = [ + "pytest-cov>=3", + "numba", + "pathos", +] [project.urls] Changelog = "https://github.com/thouska/spotpy/blob/master/CHANGELOG.md" From 8875abae10a7fa713bd0c6fe9b24a7e55e2629fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 14:32:43 +0200 Subject: [PATCH 10/34] rework CI --- .github/workflows/main.yml | 114 +++++++++++++++++++++++++++ .github/workflows/python-app.yml | 39 --------- .github/workflows/python-publish.yml | 39 --------- .travis.yml | 59 -------------- 4 files changed, 114 insertions(+), 137 deletions(-) create mode 100644 .github/workflows/main.yml delete mode 100644 .github/workflows/python-app.yml delete mode 100644 .github/workflows/python-publish.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..b713e39d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,114 @@ +name: Continuous Integration + +on: + push: + branches: + - "master" + - "refactor_setup" + tags: + - "*" + pull_request: + branches: + - "master" + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +env: + # needed by coveralls + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +jobs: + source_check: + name: source check + runs-on: ubuntu-latest + strategy: + fail-fast: false + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: 3.8 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install black 'isort[colors]<6' + pip install --editable . + + - name: black check + run: | + python -m black --check --diff --color . + + - name: isort check + run: | + python -m isort --check --diff --color . + + build_sdist: + name: sdist on ${{ matrix.os }} with py ${{ matrix.python-version }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + python-version: ['3.7', '3.8', '3.9', '3.10'] + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: '0' + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build coveralls>=3.0.0 + pip install --editable .[test] + + - name: Run tests + run: | + python -m pytest --cov spotpy --cov-report term-missing -v tests/ + python -m coveralls --service=github + + - name: Build sdist + run: | + python -m build + + - uses: actions/upload-artifact@v2 + if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' + with: + path: dist + + upload_to_pypi: + needs: [build_sdist] + runs-on: ubuntu-latest + + steps: + - uses: actions/download-artifact@v2 + with: + name: artifact + path: dist + + # - name: Publish to Test PyPI + # # only if working on main + # if: github.ref == 'refs/heads/main' + # uses: pypa/gh-action-pypi-publish@release/v1 + # with: + # user: __token__ + # password: ${{ secrets.PYPI_API_TOKEN }} + # repository_url: https://test.pypi.org/legacy/ + # skip_existing: true + + - name: Publish to PyPI + # only if tagged + if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml deleted file mode 100644 index 30acd6e4..00000000 --- a/.github/workflows/python-app.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will install Python dependencies, run tests and lint with a single version of Python -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Python application - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3.10 - uses: actions/setup-python@v3 - with: - python-version: "3.10" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install flake8 pytest numpy matplotlib pandas scipy click deap docutils numba tables pathos - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: | - pytest diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml deleted file mode 100644 index ec703542..00000000 --- a/.github/workflows/python-publish.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will upload a Python Package using Twine when a release is created -# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries - -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -name: Upload Python Package - -on: - release: - types: [published] - -permissions: - contents: read - -jobs: - deploy: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up Python - uses: actions/setup-python@v3 - with: - python-version: '3.x' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install build - - name: Build package - run: python -m build - - name: Publish package - uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 - with: - user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index eda4af49..00000000 --- a/.travis.yml +++ /dev/null @@ -1,59 +0,0 @@ -language: python -python: - #- "2.7" - - "3.7" -# - "3.8" #Errors on Travis, build times out because no output was received... - -# Uses cache to build faster -cache: pip - -# this ubuntu distribution has sure the libopenmpi-dev packages available -dist: bionic - -# command to install dependencies -install: - - sudo apt-get update - - sudo apt install libopenmpi-dev openmpi-bin - - pip install mpi4py - - python setup.py install - - pip install coveralls - - pip install pathos - - pip install numpy - - pip install matplotlib - - pip install pandas - - pip install scipy - - pip install click - - pip install deap - # Need to force pytest-cov to v2.6 as current version (2.6.1) is deprecated and pytest:3.10.1 - - pip install pytest==3.10.1 pytest-pep8 pytest-cov==2.6 - # Use docutils to generate html describe - - pip install docutils - - pip install numba - - pip install tables - - -script: - - py.test tests/test_* --cov spotpy --cov-report term-missing -v -# - mpirun -c 4 python spotpy/examples/tutorial_parallel_computing_hymod.py 100 - - pip uninstall spotpy -y - - -jobs: - include: - - stage: Coveralls - name: Report Coveralls - after_success: python3 -m coveralls - -# Publish spotpy on PyPi if taged -deploy: - provider: pypi - distributions: "sdist bdist_wheel" - on: - # In this case I want to deploy only when a tag is present... - tags: true - # ... and when tag is on master and respects the form "v0.0.0" - branch: - - master - - /v?(\d+\.)?(\d+\.)?(\*|\d+)$/ - user: thouska - password : ${deploying} From 75b210b32aa348c39ad357c32afc6c74c2adf4fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 14:35:09 +0200 Subject: [PATCH 11/34] tests: add missing dependencies --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 01327350..0c60f2c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,6 +78,8 @@ test = [ "pytest-cov>=3", "numba", "pathos", + "matplotlib", + "click", ] [project.urls] From 17276a864983ebf396b9667f78b6f0bbda301426 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 14:38:48 +0200 Subject: [PATCH 12/34] CI: only use black and isort for information and don't fail --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b713e39d..12442dfe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,11 +40,11 @@ jobs: - name: black check run: | - python -m black --check --diff --color . + python -m black --diff --color . - name: isort check run: | - python -m isort --check --diff --color . + python -m isort --diff --color . build_sdist: name: sdist on ${{ matrix.os }} with py ${{ matrix.python-version }} From 781fb0671de4e7b6f881b17bbe1253234a4500f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 14:43:53 +0200 Subject: [PATCH 13/34] test: add more missing dependencies --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0c60f2c4..95d82bb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,6 +80,9 @@ test = [ "pathos", "matplotlib", "click", + "pandas", + "tables", + "docutils", ] [project.urls] From fc888080dbd58faff7c995c8caea61b5bcd8996e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 15:14:49 +0200 Subject: [PATCH 14/34] CI: skip coverage submit for now --- .github/workflows/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 12442dfe..9c5270fd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -74,7 +74,6 @@ jobs: - name: Run tests run: | python -m pytest --cov spotpy --cov-report term-missing -v tests/ - python -m coveralls --service=github - name: Build sdist run: | From 573be987e7a29c30e15638a0631277e6fc27d1f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 30 Jun 2022 15:52:10 +0200 Subject: [PATCH 15/34] python 2 is dead; we require py3.7 at least now --- src/spotpy/algorithms/_algorithm.py | 48 +-- src/spotpy/algorithms/abc.py | 8 +- src/spotpy/algorithms/demcz.py | 62 ++- src/spotpy/algorithms/dream.py | 66 ++- src/spotpy/algorithms/fast.py | 40 +- src/spotpy/algorithms/fscabc.py | 24 +- src/spotpy/algorithms/lhs.py | 6 +- src/spotpy/algorithms/mc.py | 8 +- src/spotpy/algorithms/mcmc.py | 30 +- src/spotpy/algorithms/rope.py | 29 +- src/spotpy/algorithms/sa.py | 16 +- src/spotpy/algorithms/sceua.py | 36 +- src/spotpy/cli.py | 1 - src/spotpy/database/base.py | 7 +- src/spotpy/database/csv.py | 11 +- src/spotpy/database/hdf5.py | 7 +- src/spotpy/database/ram.py | 7 +- src/spotpy/database/sql.py | 16 +- src/spotpy/describe.py | 391 +++++++++--------- src/spotpy/examples/spot_setup_ackley.py | 8 +- src/spotpy/examples/spot_setup_cmf_lumped.py | 1 - src/spotpy/examples/spot_setup_dtlz1.py | 6 +- src/spotpy/examples/spot_setup_griewank.py | 22 +- src/spotpy/examples/spot_setup_hymod_exe.py | 36 +- .../examples/spot_setup_hymod_python.py | 18 +- .../spot_setup_hymod_python_pareto.py | 12 +- src/spotpy/examples/spot_setup_hymod_unix.py | 34 +- src/spotpy/examples/spot_setup_rosenbrock.py | 18 +- .../examples/spot_setup_standardnormal.py | 16 +- src/spotpy/gui/mpl.py | 5 - src/spotpy/parallel/mpi.py | 42 +- src/spotpy/parallel/mproc.py | 6 +- src/spotpy/parallel/sequential.py | 6 +- src/spotpy/parallel/umproc.py | 6 +- src/spotpy/parameter.py | 91 ++-- tests/test_analyser.py | 190 ++++----- tests/test_cli.py | 1 - tests/test_describe.py | 36 +- tests/test_fast.py | 32 +- tests/test_gui_mpl.py | 56 +-- tutorials/cli_hymod.py | 1 - tutorials/dds/benchmark_dds.py | 4 - tutorials/dds/dds_parallel.py | 4 - tutorials/getting_started.py | 7 +- tutorials/gui_hymod.py | 13 +- tutorials/tutorial_Parameterlist_iterator.py | 22 +- tutorials/tutorial_ackley.py | 4 - tutorials/tutorial_cmf_lumped.py | 1 - tutorials/tutorial_griewank.py | 4 - tutorials/tutorial_nsgaii.py | 49 +-- tutorials/tutorial_nsgaii_dltz1.py | 8 +- tutorials/tutorial_own_database.py | 10 +- tutorials/tutorial_rosenbrock.py | 14 +- tutorials/tutorial_signatures.py | 4 - 54 files changed, 684 insertions(+), 916 deletions(-) diff --git a/src/spotpy/algorithms/_algorithm.py b/src/spotpy/algorithms/_algorithm.py index 5e59186c..697f4fee 100644 --- a/src/spotpy/algorithms/_algorithm.py +++ b/src/spotpy/algorithms/_algorithm.py @@ -5,10 +5,6 @@ This file holds the standards for every algorithm. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from spotpy import database from spotpy import parameter import numpy as np @@ -30,7 +26,7 @@ class _RunStatistic(object): """ - this class checks for each run if the objectivefunction got better and holds the + this class checks for each run if the objectivefunction got better and holds the best parameter set. Every _algorithm has an object of this class as status. Usage: @@ -59,7 +55,7 @@ def __init__(self, repetitions, algorithm_name, optimization_direction, parnames self.objectivefunction_max = -1e308 self.starttime = time.time() self.last_print = time.time() - + self.repetitions = repetitions self.stop = False @@ -167,24 +163,24 @@ class _algorithm(object): Input ---------- spot_setup: class - model: function - Should be callable with a parameter combination of the parameter-function + model: function + Should be callable with a parameter combination of the parameter-function and return an list of simulation results (as long as evaluation list) parameter: function - When called, it should return a random parameter combination. Which can + When called, it should return a random parameter combination. Which can be e.g. uniform or Gaussian - objectivefunction: function - Should return the objectivefunction for a given list of a model simulation and + objectivefunction: function + Should return the objectivefunction for a given list of a model simulation and observation. evaluation: function Should return the true values as return by the model. dbname: str - Name of the database where parameter, objectivefunction value and simulation + Name of the database where parameter, objectivefunction value and simulation results will be saved. dbformat: str ram: fast suited for short sampling time. no file will be created and results are saved in an array. - csv: A csv file will be created, which you can import afterwards. + csv: A csv file will be created, which you can import afterwards. parallel: str seq: Sequentiel sampling (default): Normal iterations on one core of your cpu. mpc: Multi processing: Iterations on all available cores on your (single) pc @@ -220,7 +216,7 @@ def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, for i, val in enumerate(self.all_params): if self.all_params[i] not in self.constant_positions: self.non_constant_positions.append(i) - else: + else: self.non_constant_positions = np.arange(0,len(self.all_params)) self.parameter = self.get_parameters self.parnames = param_info['name'] @@ -241,20 +237,20 @@ def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, # 'dbappend' used to append to the existing data base, after restart self.dbinit = dbinit self.dbappend = dbappend - + # Set the random state if random_state is None: #ToDo: Have to discuss if these 3 lines are neccessary. random_state = np.random.randint(low=0, high=2**30) np.random.seed(random_state) #Both numpy.random and random or used in spotpy random.seed(random_state) #Both numpy.random and random or used in spotpy - + # If value is not None a timeout will set so that the simulation will break after sim_timeout seconds without return a value self.sim_timeout = sim_timeout self.save_threshold = save_threshold - + self._return_all_likes = False #allows multi-objective calibration if set to True, is set by the algorithm - + if breakpoint == 'read' or breakpoint == 'readandwrite': print('Reading backupfile') try: @@ -295,7 +291,7 @@ def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, # method "save" needs to know whether objective function result is list or float, default is float self.like_struct_typ = type(1.1) - + def __str__(self): return '{type}({mtype}())->{dbname}'.format( type=type(self).__name__, @@ -394,10 +390,10 @@ def update_params(self, params): #Add potential Constant parameters self.all_params[self.non_constant_positions] = params return self.all_params - - + + def postprocessing(self, rep, params, simulation, chains=1, save_run=True, negativlike=False, block_print=False): # TODO: rep not necessaray - + params = self.update_params(params) if negativlike is True: like = -self.getfitness(simulation=simulation, params=params) @@ -417,10 +413,10 @@ def postprocessing(self, rep, params, simulation, chains=1, save_run=True, negat try: iter(like) return like[0] - except TypeError: # Happens if iter(like) fails, i.e. if like is just one value + except TypeError: # Happens if iter(like) fails, i.e. if like is just one value return like - + def getfitness(self, simulation, params): """ Calls the user defined spot_setup objectivefunction @@ -430,9 +426,9 @@ def getfitness(self, simulation, params): return self.setup.objectivefunction(evaluation=self.evaluation, simulation=simulation, params = (params,self.parnames)) except TypeError: # Happens if the user does not allow to pass parameter in the spot_setup.objectivefunction - #print('Not using parameters in fitness function') + #print('Not using parameters in fitness function') return self.setup.objectivefunction(evaluation=self.evaluation, simulation=simulation) - + def simulate(self, id_params_tuple): """This is a simple wrapper of the model, returning the result together with the run id and the parameters. This is needed, because some parallel things diff --git a/src/spotpy/algorithms/abc.py b/src/spotpy/algorithms/abc.py index be0d4fba..b33fd00b 100644 --- a/src/spotpy/algorithms/abc.py +++ b/src/spotpy/algorithms/abc.py @@ -5,10 +5,6 @@ :author: Patrick Lauer ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np import random @@ -133,7 +129,7 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li work[rep][0] = clike work[rep][4] = 0 else: - work[rep][4] = work[rep][4] + 1 + work[rep][4] = work[rep][4] + 1 icall += 1 if self.status.stop: print('Stopping samplig') @@ -179,7 +175,7 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li work[rep][0] = clike work[rep][4] = 0 else: - work[rep][4] = work[rep][4] + 1 + work[rep][4] = work[rep][4] + 1 icall += 1 if self.status.stop: print('Stopping samplig') diff --git a/src/spotpy/algorithms/demcz.py b/src/spotpy/algorithms/demcz.py index d325613a..726bf7ef 100644 --- a/src/spotpy/algorithms/demcz.py +++ b/src/spotpy/algorithms/demcz.py @@ -5,10 +5,6 @@ :author: Tobias Houska ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np @@ -77,19 +73,19 @@ def __init__(self, *args, **kwargs): observation. evaluation: function Should return the true values as return by the model. - + dbname: str * Name of the database where parameter, objectivefunction value and simulation results will be saved. - + dbformat: str * ram: fast suited for short sampling time. no file will be created and results are saved in an array. * csv: A csv file will be created, which you can import afterwards. - + parallel: str * seq: Sequentiel sampling (default): Normal iterations on one core of your cpu. * mpc: Multi processing: Iterations on all available cores on your cpu (recommended for windows os). * mpi: Message Passing Interface: Parallel computing on cluster pcs (recommended for unix os). - + save_sim: boolean * True: Simulation results will be saved * False: Simulationt results will not be saved @@ -108,8 +104,8 @@ def check_par_validity(self, par): else: print('ERROR Bounds have not the same lenghts as Parameterarray') return par - - def sample(self, repetitions, nChains=3, burnIn=100, thin=1, + + def sample(self, repetitions, nChains=3, burnIn=100, thin=1, convergenceCriteria=.8, variables_of_interest=None, DEpairs=2, adaptationRate='auto', eps=5e-2, mConvergence=True, mAccept=True): @@ -119,7 +115,7 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, Parameters ---------- repetitions : int - number of draws from the sample distribution to be returned + number of draws from the sample distribution to be returned nChains : int number of different chains to employ burnInSize : int @@ -133,7 +129,7 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, ------- None : None """ - + self.set_repetiton(repetitions) print('Starting the DEMCz algotrithm with '+str(repetitions)+ ' repetitions...') @@ -179,7 +175,7 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, likelist = self.postprocessing(i, vector, simulations, chains=rep) simulationlist.append(simulations) self._logPs.append(likelist) - old_like[rep] = likelist + old_like[rep] = likelist burnInpar[i][rep] = vector if self.status.stop: break @@ -188,16 +184,16 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, gamma = None self.accepts_ratio = 0.000001 - + # initilize the convergence diagnostic object grConvergence = _GRConvergence() covConvergence = _CovarianceConvergence() - + # get the starting log objectivefunction and position for each of the # chains currentVectors = burnInpar[-1] currentLogPs = self._logPs[-1] - + # 2)now loop through and sample cur_iter = 0 accepts_ratio_weighting = 1 - np.exp(-1.0 / 30) @@ -206,19 +202,19 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, # 1) we have not drawn enough samples to satisfy the minimum number of iterations # 2) or any of the dimensions have not converged # 3) and we have not done more than the maximum number of iterations - + while cur_iter < maxChainDraws: print(cur_iter, burnIn) if cur_iter == burnIn: print('starting') history.start_sampling() - + # every5th iteration allow a big jump if np.random.randint(5) == 0.0: gamma = np.array([1.0]) else: gamma = np.array([2.38 / np.sqrt(2 * DEpairs * dimensions)]) - + if cur_iter >= burnIn: proposalVectors = _dream_proposals( currentVectors, history, dimensions, nChains, DEpairs, gamma, .05, eps) @@ -232,14 +228,14 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, proposalVectors.append(self.parameter()['random']) proposalVectors[i] = self.check_par_validity( proposalVectors[i]) - + # if self.bounds_ok(minbound,maxbound,proposalVectors,nChains): proposalLogPs = [] old_simulationlist = simulationlist old_likelist = self._logPs[-1] new_simulationlist = [] new_likelist = [] - + param_generator = ( (rep, list(proposalVectors[rep])) for rep in range(int(nChains))) for rep, vector, simulations in self.repeat(param_generator): @@ -251,13 +247,13 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, if self.status.stop: cur_iter = maxChainDraws break - + if not self.status.stop: # apply the metrop decision to decide whether to accept or reject # each chain proposal decisions, acceptance = self._metropolis_hastings( currentLogPs, proposalLogPs, nChains) - self._update_accepts_ratio(accepts_ratio_weighting, acceptance) + self._update_accepts_ratio(accepts_ratio_weighting, acceptance) # choose from list of possible choices if 1d_decision is True at # specific index, else use default choice # np.choose(1d_decision[:,None], (list of possible choices, default @@ -276,33 +272,33 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, save_likes.append(old_like[curchain]) save_pars.append(currentVectors[curchain]) save_sims.append(old_simulationlist[curchain]) - + currentVectors = np.choose( decisions[:, np.newaxis], (currentVectors, proposalVectors)) currentLogPs = np.choose(decisions, (currentLogPs, proposalLogPs)) - + simulationlist = [[new_simulationlist, old_simulationlist][ int(x)][ix] for ix, x in enumerate(decisions)] - + likelist = list( np.choose(decisions[:, np.newaxis], (new_likelist, old_likelist))) - + # we only want to recalculate convergence criteria when we are past # the burn in period - + if cur_iter % thin == 0: - + historyStartMovementRate = adaptationRate # try to adapt more when the acceptance rate is low and less # when it is high if adaptationRate == 'auto': historyStartMovementRate = min( (.234 / self.accepts_ratio) * .5, .95) - + history.record( currentVectors, currentLogPs, historyStartMovementRate, grConvergence=grConvergence.R) - + if history.nsamples > 0 and cur_iter > lastRecalculation * 1.1 and history.nsequence_histories > dimensions: lastRecalculation = cur_iter grConvergence.update(history) @@ -313,7 +309,7 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, print( 'All chains fullfil the convergence criteria. Sampling stopped.') cur_iter+=1 - + # 3) finalize # only make the second half of draws available because that's the only # part used by the convergence diagnostic @@ -326,7 +322,7 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, print(text) self.status.rep = self.status.repetitions self.final_call() - + def _update_accepts_ratio(self, weighting, acceptances): self.accepts_ratio = weighting * \ diff --git a/src/spotpy/algorithms/dream.py b/src/spotpy/algorithms/dream.py index 1cfbc7d5..0f96c511 100644 --- a/src/spotpy/algorithms/dream.py +++ b/src/spotpy/algorithms/dream.py @@ -5,10 +5,6 @@ :author: Tobias Houska and Motjaba Sadegh ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np import random @@ -17,7 +13,7 @@ class dream(_algorithm): """ - Implements the DiffeRential Evolution Adaptive Metropolis (DREAM) algorithhm + Implements the DiffeRential Evolution Adaptive Metropolis (DREAM) algorithhm based on: Vrugt, J. A. (2016) Markov chain Monte Carlo simulation using the DREAM software package. """ @@ -71,7 +67,7 @@ def check_par_validity_bound(self, par): return par def get_regular_startingpoint(self,nChains): - randompar=self.parameter()['random'] + randompar=self.parameter()['random'] for i in range(1000): randompar=np.column_stack((randompar,self.parameter()['random'])) startpoints = [] @@ -81,7 +77,7 @@ def get_regular_startingpoint(self,nChains): for k in range(len(randompar)): random.shuffle(startpoints[:, k]) return startpoints - + def check_par_validity_reflect(self, par): if len(par) == len(self.min_bound) and len(par) == len(self.max_bound): for i in range(len(par)): @@ -115,25 +111,25 @@ def get_other_random_chains(self,cur_chain, nchain_pairs): chain_pairs = [] selectable_chain = list(range(self.nChains)) selectable_chain.remove(cur_chain) - + for i in range(nchain_pairs): pair_ith = random.sample(selectable_chain, 2) chain_pairs.append(pair_ith) for chain in pair_ith: selectable_chain.remove(chain) - + return chain_pairs - + def get_new_proposal_vector(self,cur_chain,newN,c): nchain_pairs = random.randint(1, self.delta) gamma = self._get_gamma(newN,nchain_pairs) chain_pairs = self.get_other_random_chains(cur_chain, nchain_pairs) - new_parameterset=[] + new_parameterset=[] #position = self.chain_samples-1#self.nChains*self.chain_samples+self.chain_samples+cur_chain-1 cur_par_set = list(self.bestpar[cur_chain][self.nChainruns[cur_chain]-1]) random_par_sets1 = [] # contain all random_par_set1 random_par_sets2 = [] # contain all random_par_set2 - + for i in range(nchain_pairs): random_chain1 = chain_pairs[i][0] random_chain2 = chain_pairs[i][1] @@ -143,28 +139,28 @@ def get_new_proposal_vector(self,cur_chain,newN,c): self.bestpar[random_chain2][self.nChainruns[random_chain2]-1]) random_par_sets1.append(random_par_set1) random_par_sets2.append(random_par_set2) - + random_par_set1 = [sum(i) for i in zip(*random_par_sets1)] # sum all random_par_set1 random_par_set2 = [sum(i) for i in zip(*random_par_sets2)] # sum all random_par_set2 - + for i in range(self.N):#Go through parameters - + if newN[i] == True: lambda_ = np.random.uniform(-c,c) new_parameterset.append(cur_par_set[i] + (1.0+lambda_)*gamma*np.array( random_par_set1[i]-random_par_set2[i]) + np.random.normal(0,self.eps)) else: new_parameterset.append(cur_par_set[i]) - - new_parameter=self.check_par_validity_reflect(new_parameterset) - #new_parameter=self.check_par_validity_bound(new_parameterset) + + new_parameter=self.check_par_validity_reflect(new_parameterset) + #new_parameter=self.check_par_validity_bound(new_parameterset) return new_parameter - + # new_par = np.random.normal(loc=old_par, scale=self.stepsizes) # new_par = self.check_par_validity_reflect(new_par) # return new_par - def update_mcmc_status(self,par,like,sim,cur_chain): + def update_mcmc_status(self,par,like,sim,cur_chain): self.bestpar[cur_chain][self.nChainruns[cur_chain]]=list(par) self.bestlike[cur_chain]=like self.bestsim[cur_chain]=list(sim) @@ -221,8 +217,8 @@ def get_r_hat(self, parameter_array): W_uni[whichW_UNIIsNull] = np.random.uniform(0.1,1,1) R_stat = np.sqrt((n + 1) / n * (np.divide(sigma2, W_uni)) - (d - 1) / (n * d)) - - + + # W_mult = 0 # for ii in range(n): # W_mult = W_mult + np.cov(np.nan_to_num(np.transpose(parameter_array[ii, :, :])), ddof=1) @@ -267,15 +263,15 @@ def sample(self, repetitions,nChains=7, nCr=3, delta=3, c=0.1, eps=10e-6, conver self.nChainruns=[0]*self.nChains self.min_bound, self.max_bound = self.parameter( )['minbound'], self.parameter()['maxbound'] - + #firstcall = True - + print('Initialize ', self.nChains, ' chain(s)...') self.iter=0 #for i in range(10): startpoints = self.get_regular_startingpoint(nChains) - #param_generator = ((curChain,list(self.parameter()['random'])) for curChain in range(int(self.nChains))) #TODO: Start with regular interval raster - param_generator = ((curChain,list(startpoints[curChain])) for curChain in range(int(self.nChains))) #TODO: Start with regular interval raster + #param_generator = ((curChain,list(self.parameter()['random'])) for curChain in range(int(self.nChains))) #TODO: Start with regular interval raster + param_generator = ((curChain,list(startpoints[curChain])) for curChain in range(int(self.nChains))) #TODO: Start with regular interval raster for curChain,par,sim in self.repeat(param_generator): like = self.postprocessing(self.iter, par, sim, chains=curChain) self.update_mcmc_status(par,like,sim,curChain) @@ -295,10 +291,10 @@ def sample(self, repetitions,nChains=7, nCr=3, delta=3, c=0.1, eps=10e-6, conver nrN=1 newN = [True]*self.N while self.iter < self.repetitions: - param_generator = ((curChain,self.get_new_proposal_vector(curChain,newN,c)) for curChain in range(int(self.nChains))) + param_generator = ((curChain,self.get_new_proposal_vector(curChain,newN,c)) for curChain in range(int(self.nChains))) for cChain,par,sim in self.repeat(param_generator): pCr = np.random.randint(0,nCr) - ids=[] + ids=[] for i in range(self.N): ids.append(np.random.uniform(low=0,high=1)) newN = [] @@ -340,21 +336,21 @@ def sample(self, repetitions,nChains=7, nCr=3, delta=3, c=0.1, eps=10e-6, conver logMetropHastRatio = np.exp(-0.5 * (-like + self.bestlike[cChain])) # signs are different because we write -SSR u = np.random.uniform(low=0.0, high=1) - + if logMetropHastRatio>u: - self.update_mcmc_status(par,like,sim,cChain) + self.update_mcmc_status(par,like,sim,cChain) self.accepted[cChain] += 1 # monitor acceptance - + else: - self.update_mcmc_status(self.bestpar[cChain][self.nChainruns[cChain]-1],self.bestlike[cChain],self.bestsim[cChain],cChain) - + self.update_mcmc_status(self.bestpar[cChain][self.nChainruns[cChain]-1],self.bestlike[cChain],self.bestsim[cChain],cChain) + if self.status.stop: self.iter = self.repetitions print('Stopping samplig') break self.iter+=1 self.nChainruns[cChain] +=1 - + r_hat = self.get_r_hat(self.bestpar) self.r_hats.append(r_hat) @@ -376,7 +372,7 @@ def sample(self, repetitions,nChains=7, nCr=3, delta=3, c=0.1, eps=10e-6, conver self.set_repetiton(self.repetitions) #self.iter =self.repetitions - runs_after_convergence convergence=True - + self.final_call() diff --git a/src/spotpy/algorithms/fast.py b/src/spotpy/algorithms/fast.py index 9556e2ec..9f074ba3 100644 --- a/src/spotpy/algorithms/fast.py +++ b/src/spotpy/algorithms/fast.py @@ -5,10 +5,6 @@ :author: Tobias Houska and the SALib team ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np import math @@ -17,11 +13,11 @@ class fast(_algorithm): ''' Fourier Amplitude Sensitivity Test (FAST) - + This class holds the Fourier Amplitude Sensitivity Test (FAST) based on Cukier et al. (1973) and Saltelli et al. (1999): Cukier, R. I., Fortuin, C. M., Shuler, K. E., Petschek, A. G. and Schaibly, J. H.: Study of the sensitivity of coupled reaction systems to uncertainties in rate coefficients. I Theory, J. Chem. Phys., 59(8), 3873–3878, 1973. - + Saltelli, A., Tarantola, S. and Chan, K. P.-S.: A Quantitative Model-Independent Method for Global Sensitivity Analysis of Model Output, Technometrics, 41(1), 39–56, doi:10.1080/00401706.1999.10485594, 1999. The presented code is based on SALib @@ -36,29 +32,29 @@ def __init__(self, *args, **kwargs): Input ---------- spot_setup: class - model: function - Should be callable with a parameter combination of the parameter-function + model: function + Should be callable with a parameter combination of the parameter-function and return an list of simulation results (as long as evaluation list) parameter: function - When called, it should return a random parameter combination. Which can + When called, it should return a random parameter combination. Which can be e.g. uniform or Gaussian - objectivefunction: function - Should return the objectivefunction for a given list of a model simulation and + objectivefunction: function + Should return the objectivefunction for a given list of a model simulation and observation. evaluation: function Should return the true values as return by the model. - + dbname: str * Name of the database where parameter, objectivefunction value and simulation results will be saved. - + dbformat: str * ram: fast suited for short sampling time. no file will be created and results are saved in an array. - * csv: A csv file will be created, which you can import afterwards. - + * csv: A csv file will be created, which you can import afterwards. + parallel: str * seq: Sequentiel sampling (default): Normal iterations on one core of your cpu. * mpi: Message Passing Interface: Parallel computing on cluster pcs (recommended for unix os). - + save_sim: boolean *True: Simulation results will be saved *False: Simulation results will not be saved @@ -143,11 +139,11 @@ def analyze(self, problem, Y, D, parnames, M=4, print_to_console=False): rest = Y.size - N*D print(""" We can not use """ + str(rest) + """ samples which was generated - of totaly """ + str(Y.size) + """ + of totaly """ + str(Y.size) + """ """) else: print(""" - Error: Number of samples in model output file must be a multiple of D, + Error: Number of samples in model output file must be a multiple of D, where D is the number of parameters in your parameter file. """) exit() @@ -195,8 +191,8 @@ def sample(self, repetitions, M=4): Input ---------- - repetitions: int - Maximum number of runs. + repetitions: int + Maximum number of runs. """ self.set_repetiton(repetitions) print('Starting the FAST algotrithm with '+str(repetitions)+ ' repetitions...') @@ -232,8 +228,8 @@ def sample(self, repetitions, M=4): self.write_breakdata(self.dbname, work) lastbackup = rep self.final_call() - - try: + + try: data = self.datawriter.getdata() # this is likely to crash if database does not assign name 'like1' Si = self.analyze( diff --git a/src/spotpy/algorithms/fscabc.py b/src/spotpy/algorithms/fscabc.py index 1538f760..51d5b5f2 100644 --- a/src/spotpy/algorithms/fscabc.py +++ b/src/spotpy/algorithms/fscabc.py @@ -5,10 +5,6 @@ :author: Patrick Lauer ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from ._algorithm import _algorithm import numpy as np import random @@ -16,15 +12,15 @@ class fscabc(_algorithm): """ - This class holds the Fitness Scaled Chaotic Artificial Bee Colony (FSCABC) algorithm, + This class holds the Fitness Scaled Chaotic Artificial Bee Colony (FSCABC) algorithm, based on: - - Yudong Zhang, Lenan Wu, and Shuihua Wang (2011). Magnetic Resonance Brain Image - Classification by an Improved Artificial Bee Colony Algorithm. + + Yudong Zhang, Lenan Wu, and Shuihua Wang (2011). Magnetic Resonance Brain Image + Classification by an Improved Artificial Bee Colony Algorithm. Progress In Electromagnetics Research - - Yudong Zhang, Lenan Wu, and Shuihua Wang (2013). - UCAV Path Planning by Fitness-Scaling Adaptive Chaotic Particle Swarm Optimization. + + Yudong Zhang, Lenan Wu, and Shuihua Wang (2013). + UCAV Path Planning by Fitness-Scaling Adaptive Chaotic Particle Swarm Optimization. Mathematical Problems in Engineering """ @@ -80,7 +76,7 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None a: float mutation factor peps: float - convergence criterion + convergence criterion kpow: float exponent for power scaling method limit: int @@ -103,7 +99,7 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None r = 0.25 while r == 0.25 or r == 0.5 or r == 0.75: r = random.random() - + icall = 0 gnrng = 1e100 @@ -169,7 +165,7 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None if self.status.stop: print('Stopping samplig') break - + # Fitness scaling bn = [] csum = 0 diff --git a/src/spotpy/algorithms/lhs.py b/src/spotpy/algorithms/lhs.py index d9ac0535..480e3021 100644 --- a/src/spotpy/algorithms/lhs.py +++ b/src/spotpy/algorithms/lhs.py @@ -5,10 +5,6 @@ :author: Tobias Houska """ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np import random @@ -88,6 +84,6 @@ def sample(self, repetitions): param_generator = ((rep, matrix[rep]) for rep in range(int(repetitions))) for rep, randompar, simulations in self.repeat(param_generator): - # A function that calculates the fitness of the run and the manages the database + # A function that calculates the fitness of the run and the manages the database self.postprocessing(rep, randompar, simulations) self.final_call() diff --git a/src/spotpy/algorithms/mc.py b/src/spotpy/algorithms/mc.py index a22e853b..7daa057b 100644 --- a/src/spotpy/algorithms/mc.py +++ b/src/spotpy/algorithms/mc.py @@ -5,10 +5,6 @@ :author: Tobias Houska """ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm class mc(_algorithm): @@ -58,7 +54,7 @@ def sample(self, repetitions): Input ---------- - repetitions: int + repetitions: int Maximum number of runs. """ self.set_repetiton(repetitions) @@ -67,7 +63,7 @@ def sample(self, repetitions): param_generator = ((rep, self.parameter()['random']) for rep in range(int(repetitions))) for rep, randompar, simulations in self.repeat(param_generator): - # A function that calculates the fitness of the run and the manages the database + # A function that calculates the fitness of the run and the manages the database self.postprocessing(rep, randompar, simulations) self.final_call() diff --git a/src/spotpy/algorithms/mcmc.py b/src/spotpy/algorithms/mcmc.py index 7682f68f..06258903 100644 --- a/src/spotpy/algorithms/mcmc.py +++ b/src/spotpy/algorithms/mcmc.py @@ -5,19 +5,15 @@ :author: Tobias Houska ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np import time - + class mcmc(_algorithm): """ This class holds the MarkovChainMonteCarlo (MCMC) algorithm, based on: - Metropolis, N., Rosenbluth, A. W., Rosenbluth, M. N., Teller, A. H. and Teller, E. (1953) + Metropolis, N., Rosenbluth, A. W., Rosenbluth, M. N., Teller, A. H. and Teller, E. (1953) Equation of state calculations by fast computing machines, J. Chem. Phys. """ @@ -85,19 +81,19 @@ def check_par_validity_reflect(self, par): else: print('ERROR: Bounds have not the same lenghts as Parameterarray') return par - + def get_new_proposal_vector(self,old_par): new_par = np.random.normal(loc=old_par, scale=self.stepsizes) #new_par = self.check_par_validity(new_par) new_par = self.check_par_validity_reflect(new_par) return new_par - def update_mcmc_status(self,par,like,sim,cur_chain): + def update_mcmc_status(self,par,like,sim,cur_chain): self.bestpar[cur_chain]=par self.bestlike[cur_chain]=like self.bestsim[cur_chain]=sim - + def sample(self, repetitions,nChains=1): self.set_repetiton(repetitions) print('Starting the MCMC algotrithm with '+str(repetitions)+ ' repetitions...') @@ -105,7 +101,7 @@ def sample(self, repetitions,nChains=1): self.nChains = int(nChains) #Ensure initialisation of chains and database self.burnIn = self.nChains - # define stepsize of MCMC. + # define stepsize of MCMC. self.stepsizes = self.parameter()['step'] # array of stepsizes # Metropolis-Hastings iterations. @@ -118,9 +114,9 @@ def sample(self, repetitions,nChains=1): )['minbound'], self.parameter()['maxbound'] print('Initialize ', self.nChains, ' chain(s)...') self.iter=0 - param_generator = ((curChain,self.parameter()['random']) for curChain in range(int(self.nChains))) + param_generator = ((curChain,self.parameter()['random']) for curChain in range(int(self.nChains))) for curChain,randompar,simulations in self.repeat(param_generator): - # A function that calculates the fitness of the run and the manages the database + # A function that calculates the fitness of the run and the manages the database like = self.postprocessing(self.iter, randompar, simulations, chains=curChain) self.update_mcmc_status(randompar, like, simulations, curChain) self.iter+=1 @@ -129,16 +125,16 @@ def sample(self, repetitions,nChains=1): print('Beginn of Random Walk') # Walk through chains while self.iter <= repetitions - self.burnIn: - param_generator = ((curChain,self.get_new_proposal_vector(self.bestpar[curChain])) for curChain in range(int(self.nChains))) + param_generator = ((curChain,self.get_new_proposal_vector(self.bestpar[curChain])) for curChain in range(int(self.nChains))) for cChain,randompar,simulations in self.repeat(param_generator): - # A function that calculates the fitness of the run and the manages the database + # A function that calculates the fitness of the run and the manages the database like = self.postprocessing(self.iter, randompar, simulations, chains=cChain) logMetropHastRatio = np.abs(self.bestlike[cChain])/np.abs(like) u = np.random.uniform(low=0.3, high=1) if logMetropHastRatio>1.0 or logMetropHastRatio>u: - self.update_mcmc_status(randompar,like,simulations,cChain) + self.update_mcmc_status(randompar,like,simulations,cChain) self.accepted[cChain] += 1 # monitor acceptance - self.iter+=1 + self.iter+=1 # Progress bar acttime = time.time() #Refresh MCMC progressbar every two second @@ -148,5 +144,5 @@ def sample(self, repetitions,nChains=1): text = "Acceptance rates [%] =" +str(np.around((self.accepted)/float(((self.iter-self.burnIn)/self.nChains)),decimals=4)*100).strip('array([])') print(text) intervaltime = time.time() - self.final_call() + self.final_call() diff --git a/src/spotpy/algorithms/rope.py b/src/spotpy/algorithms/rope.py index caf1ae2a..5c7320db 100644 --- a/src/spotpy/algorithms/rope.py +++ b/src/spotpy/algorithms/rope.py @@ -4,7 +4,6 @@ This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska and Alejandro Chamorro-Chavez ''' -from __future__ import unicode_literals, division, absolute_import from . import _algorithm import time import numpy as np @@ -22,7 +21,7 @@ class rope(_algorithm): ''' def __init__(self, *args, **kwargs): - + ''' Input ---------- @@ -39,16 +38,16 @@ def __init__(self, *args, **kwargs): simulation and observation. evaluation: function Should return the true values as return by the model. - + :param dbname: str * Name of the database where parameter, objectivefunction value and simulation results will be saved. - + :param dbformat: str * ram: fast suited for short sampling time. no file will be created and results are saved in an array. * csv: A csv file will be created, which you can import afterwards. - + :param parallel: str * seq: Sequentiel sampling (default): Normal iterations on one core of your cpu. @@ -56,7 +55,7 @@ def __init__(self, *args, **kwargs): (recommended for windows os). * mpi: Message Passing Interface: Parallel computing on cluster pcs (recommended for unix os). - + :param save_sim: boolean *True: Simulation results will be saved *False: Simulation results will not be saved @@ -105,7 +104,7 @@ def sample(self, repetitions=None, repetitions_first_run=None, #Make user defined number of burn-in repetitions first_run = repetitions_first_run - repetitions_following_runs = int((repetitions-first_run) + repetitions_following_runs = int((repetitions-first_run) / (subsets-1)) # Needed to avoid an error in integer division somewhere in depth function if repetitions_following_runs % 2 != 0: @@ -113,16 +112,16 @@ def sample(self, repetitions=None, repetitions_first_run=None, 'SPOTPY will automatically adjust the number of total repetitions.') repetitions_following_runs+=1 - + if NDIR is None: NDIR = int(repetitions_following_runs / 100.0) self.NDIR = NDIR starttime = time.time() intervaltime = starttime - parset =self.parameter() + parset =self.parameter() self.min_bound, self.max_bound = parset['minbound'], parset['maxbound'] - + # Init ROPE with one subset likes = [] pars = [] @@ -144,7 +143,7 @@ def sample(self, repetitions=None, repetitions_first_run=None, param_generator = ((rep, matrix[rep]) for rep in range(int(first_run) - 1)) for rep, randompar, simulations in self.repeat(param_generator): - # A function that calculates the fitness of the run and the manages the database + # A function that calculates the fitness of the run and the manages the database like = self.postprocessing(rep, randompar, simulations) likes.append(like) pars.append(randompar) @@ -161,14 +160,14 @@ def sample(self, repetitions=None, repetitions_first_run=None, for subset in range(subsets - 1): if subset == 0: - best_pars = self.get_best_runs(likes, pars, repetitions_following_runs, + best_pars = self.get_best_runs(likes, pars, repetitions_following_runs, percentage_first_run) else: best_pars = self.get_best_runs(likes, pars, repetitions_following_runs, percentage_following_runs) valid = False trials = 0 - while valid is False and trials < 10 and repetitions_following_runs>1: + while valid is False and trials < 10 and repetitions_following_runs>1: new_pars = self.programm_depth(best_pars, repetitions_following_runs) if len(new_pars) == repetitions_following_runs: valid = True @@ -179,7 +178,7 @@ def sample(self, repetitions=None, repetitions_first_run=None, if(int(repetitions_following_runs) > len(new_pars)): repetitions_following_runs = len(new_pars) param_generator = ( - (rep, new_pars[rep]) for rep in range(int(repetitions_following_runs))) + (rep, new_pars[rep]) for rep in range(int(repetitions_following_runs))) for rep, ropepar, simulations in self.repeat(param_generator): # Calculate the objective function like = self.postprocessing(first_run + rep + repetitions_following_runs * subset, ropepar, simulations) @@ -205,7 +204,7 @@ def sample(self, repetitions=None, repetitions_first_run=None, break self.final_call() - + def programm_depth(self, pars, runs): X = np.array(pars) diff --git a/src/spotpy/algorithms/sa.py b/src/spotpy/algorithms/sa.py index 15bc3f31..1403e8da 100644 --- a/src/spotpy/algorithms/sa.py +++ b/src/spotpy/algorithms/sa.py @@ -5,10 +5,6 @@ :author: Tobias Houska and Alejandro Chamorro-Chavez ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np @@ -16,8 +12,8 @@ class sa(_algorithm): """ This class holds the Simulated Annealing (SA) algorithm based on: - - Kirkpatrick, S., Gelatt, C. D., Vecchi, M. P. and others (2013). + + Kirkpatrick, S., Gelatt, C. D., Vecchi, M. P. and others (2013). Optimization by simmulated annealing, science. """ @@ -56,7 +52,7 @@ def __init__(self, *args, **kwargs): kwargs['optimization_direction'] = 'maximize' kwargs['algorithm_name'] = 'Simulated Annealing (SA) algorithm' super(sa, self).__init__(*args, **kwargs) - + def check_par_validity(self, par): if len(par) == len(self.min_bound) and len(par) == len(self.max_bound): for i in range(len(par)): @@ -74,8 +70,8 @@ def sample(self, repetitions, Tini=80, Ntemp=50, alpha=0.99): Input ---------- - repetitions: int - Maximum number of runs. + repetitions: int + Maximum number of runs. """ self.set_repetiton(repetitions) print('Starting the SA algotrithm with '+str(repetitions)+ ' repetitions...') @@ -118,7 +114,7 @@ def sample(self, repetitions, Tini=80, Ntemp=50, alpha=0.99): Titer = alpha * Titer - self.final_call() + self.final_call() def frandom(Enew, Eold, Titer): diff --git a/src/spotpy/algorithms/sceua.py b/src/spotpy/algorithms/sceua.py index fe5e59bf..e22d7c0e 100644 --- a/src/spotpy/algorithms/sceua.py +++ b/src/spotpy/algorithms/sceua.py @@ -5,25 +5,21 @@ :author: Tobias Houska and Stijn Van Hoey ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from . import _algorithm import numpy as np class sceua(_algorithm): """ - This class holds the Shuffled Complex Evolution Algorithm (SCE-UA) algorithm, + This class holds the Shuffled Complex Evolution Algorithm (SCE-UA) algorithm, based on: - Duan, Q., Sorooshian, S. and Gupta, V. K. (1994) + Duan, Q., Sorooshian, S. and Gupta, V. K. (1994) Optimal use of the SCE-UA global optimization method for calibrating watershed models, J. Hydrol. Based on the PYthon package Optimization_SCE Copyright (c) 2011 Stijn Van Hoey. Restructured and parallelized by Houska et al (2015): - Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L. (2015) + Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L. (2015) SPOTting Model Parameters Using a Ready-Made Python Package, PLoS ONE. """ @@ -70,7 +66,7 @@ def simulate(self, id_params_tuple): 1) burn-in 2) complex evolution """ - + if not self.repeat.phase: # burn-in return _algorithm.simulate(self, id_params_tuple) @@ -110,7 +106,7 @@ def simulate(self, id_params_tuple): likes.append(fnew) pars.append(snew) sims.append(simulation) - + # Replace the worst point in Simplex with the new point: s[-1, :] = snew sf[-1] = fnew @@ -123,13 +119,13 @@ def simulate(self, id_params_tuple): idx = np.argsort(cf) cf = np.sort(cf) cx = cx[idx, :] - + # Replace the complex back into the population; return igs, likes, pars, sims, cx, cf, k1, k2, discarded_runs def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.0000001, max_loop_inc=None): """ - Samples from parameter distributions using SCE-UA (Duan, 2004), + Samples from parameter distributions using SCE-UA (Duan, 2004), converted to python by Van Hoey (2011), restructured and parallelized by Houska et al (2015). Parameters @@ -188,7 +184,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 param_generator = ((rep, x[rep]) for rep in range(int(npt))) for rep, randompar, simulations in self.repeat(param_generator): # Calculate the objective function - like = self.postprocessing(icall, randompar, simulations,chains=0) + like = self.postprocessing(icall, randompar, simulations,chains=0) xf[rep] = like icall+=1 if self.status.stop: @@ -207,7 +203,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 else: raise ValueError("Don't know the breakpoint keyword {}".format(self.breakpoint)) - + # Record the best points; bestx = x[0, :] bestf = xf[0] @@ -265,7 +261,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 if remaining_runs <= self.ngs: self.ngs = remaining_runs-1 proceed = False - + sce_vars = [self.npg, self.nopt, self.ngs, self.nspl, self.nps, self.bl, self.bu, self.stochastic_parameters, self.discarded_runs] param_generator = ((rep, x, xf, cx, cf, sce_vars) @@ -275,7 +271,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 xf[k2] = cf[k1] self.discard_runs = discarded_runs for i in range(len(likes)): - if not self.status.stop: + if not self.status.stop: like = self.postprocessing(i, pars[i], sims[i], chains=i+1) else: #Collect data from all slaves but do not save @@ -283,7 +279,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 like = self.postprocessing(i, pars[i], sims[i], chains=i+1, save_run=False) self.discarded_runs+=1 print('Skipping saving') - + if self.breakpoint == 'write' or self.breakpoint == 'readandwrite'\ and self.status.rep >= self.backup_every_rep: work = (self.status.rep, (x, xf), gnrng) @@ -309,7 +305,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 np.mean(np.log((np.max(x[:, self.stochastic_parameters], axis=0) - np.min(x[:, self.stochastic_parameters], axis=0)) / bound[self.stochastic_parameters]))) criter = np.append(criter, bestf) - + # Check for convergency; if self.status.rep >= repetitions: print('*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT') @@ -346,7 +342,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 proceed = False print('THE MAXIMAL NUMBER OF LOOPS PER EXECUTION WAS REACHED') break - + # End of the Outer Loops print('SEARCH WAS STOPPED AT TRIAL NUMBER: %d' % self.status.rep) print('NUMBER OF DISCARDED TRIALS: %d' % self.discarded_runs) @@ -357,7 +353,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 # reshape BESTX #BESTX = BESTX.reshape(BESTX.size // self.nopt, self.nopt) self.final_call() - + def _cceua(self, s, sf, discarded_runs): # This is the subroutine for generating a new point in a simplex @@ -409,7 +405,7 @@ def _cceua(self, s, sf, discarded_runs): _, _, simulations = _algorithm.simulate(self, (1, snew)) like = self.postprocessing(1, snew, simulations, save_run=False, block_print=True) discarded_runs+=1 - + fnew = like # Reflection failed; now attempt a contraction point: diff --git a/src/spotpy/cli.py b/src/spotpy/cli.py index 04ad2807..cad07005 100644 --- a/src/spotpy/cli.py +++ b/src/spotpy/cli.py @@ -1,4 +1,3 @@ -from __future__ import division, print_function, unicode_literals from . import algorithms, database, describe import click diff --git a/src/spotpy/database/base.py b/src/spotpy/database/base.py index 6ade100c..519826ac 100644 --- a/src/spotpy/database/base.py +++ b/src/spotpy/database/base.py @@ -9,16 +9,11 @@ This is the parent class of all algorithms, which can handle the database structure during the sample. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import time from itertools import product import sys -if sys.version_info[0] >= 3: - unicode = str +unicode = str from importlib import import_module diff --git a/src/spotpy/database/csv.py b/src/spotpy/database/csv.py index 9fc7c596..96981d08 100644 --- a/src/spotpy/database/csv.py +++ b/src/spotpy/database/csv.py @@ -1,14 +1,9 @@ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from .base import database import numpy as np import io import time import sys -if sys.version_info[0] >= 3: - unicode = str +unicode = str class csv(database): """ @@ -24,8 +19,6 @@ def __init__(self, *args, **kwargs): print("* Database file '{}.csv' created.".format(self.dbname)) # Create a open file, which needs to be closed after the sampling mode = 'w' - if sys.version_info.major < 3: - mode += 'b' self.db = io.open(self.dbname + '.csv', mode) # write header line self.db.write(unicode(','.join(self.header) + '\n')) @@ -33,8 +26,6 @@ def __init__(self, *args, **kwargs): print("* Appending to database file '{}.csv'.".format(self.dbname)) # Continues writing file mode = 'a' - if sys.version_info.major < 3: - mode += 'b' self.db = io.open(self.dbname + '.csv', mode) def save(self, objectivefunction, parameterlist, simulations=None, chains=1): diff --git a/src/spotpy/database/hdf5.py b/src/spotpy/database/hdf5.py index ea5de0a8..47091b92 100644 --- a/src/spotpy/database/hdf5.py +++ b/src/spotpy/database/hdf5.py @@ -9,10 +9,6 @@ This is the parent class of all algorithms, which can handle the database structure during the sample. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np from .base import database @@ -23,8 +19,7 @@ 'installed the hdf5 extension (https://www.hdfgroup.org/downloads/hdf5/)') raise import sys -if sys.version_info[0] >= 3: - unicode = str +unicode = str class hdf5(database): diff --git a/src/spotpy/database/ram.py b/src/spotpy/database/ram.py index e5652c70..d44f4ca9 100644 --- a/src/spotpy/database/ram.py +++ b/src/spotpy/database/ram.py @@ -9,16 +9,11 @@ This is the parent class of all algorithms, which can handle the database structure during the sample. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np from .base import database import sys -if sys.version_info[0] >= 3: - unicode = str +unicode = str class ram(database): diff --git a/src/spotpy/database/sql.py b/src/spotpy/database/sql.py index f103f3be..ad72e4f6 100644 --- a/src/spotpy/database/sql.py +++ b/src/spotpy/database/sql.py @@ -1,14 +1,9 @@ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import sqlite3 import sys from .base import database -if sys.version_info[0] >= 3: - unicode = str +unicode = str class PickalableSWIG: @@ -74,13 +69,8 @@ def getdata(self): self.db = PickalableSQL3Connect(self.dbname + '.db') self.db_cursor = PickalableSQL3Cursor(self.db) - if sys.version_info[0] >= 3: - headers = [(row[1], ">> spotpy.describe.sampler(sampler) >>> spotpy.describe.setup(model) """ -from __future__ import division, absolute_import, unicode_literals import sys from .parameter import get_parameters_from_setup from .algorithms._algorithm import _algorithm -if sys.version_info[0] >= 3: - from inspect import getdoc as _getdoc - unicode = str -else: - def _getdoc(obj): - u = obj.__doc__ - try: - return u'\n'.join(l.strip() for l in u.split(u'\n') if l.strip()) - except UnicodeDecodeError: - raise AssertionError( - '{}: Docstring uses unicode but {} misses the line ``from __future__ import unicode_literals``' - .format(obj, type(obj).__module__) - ) +from inspect import getdoc as _getdoc +unicode = str try: from docutils.core import publish_string @@ -76,204 +64,201 @@ def setup(obj): return '\n'.join(parts) -if sys.version_info > (3, 5): +from pathlib import Path +import webbrowser - from pathlib import Path - import webbrowser +class rst: + """ + Creates a reStructuredText description of a sampler or a setup + + Usage: + >>>description = spotpy.describe.rst(sampler) + >>>print(description) # Prints the rst source text + >>># Add additional text section + >>>description.append('#. One idea' + '\n' + '#. Another one.', title='Ideas', titlelevel=2) + >>>description.append_image('media/image.png') + >>>print(description.as_html()) # Create html + >>>description.show_in_browser() + """ + caption_characters = '=-#~*+^' - class rst: + def __init__(self, setup_or_sampler): """ Creates a reStructuredText description of a sampler or a setup + :param setup_or_sampler: Either a spotpy.algorithm sampler or a spotpy setup + """ + if isinstance(setup_or_sampler, _algorithm): + self.setup = setup_or_sampler.setup + self.sampler = setup_or_sampler + self.rst_text = [self._sampler_text()] + else: + self.setup = setup_or_sampler + self.sampler = None + self.rst_text = [] + + if self.setup: + self.rst_text.append(self._setup_text()) + + def append(self, text='', title=None, titlelevel=1): + """ + Appends additional descriptions in reStructured text to the generated text + :param text: The rst text to add + :param title: A title for the text + :param titlelevel: The level of the section (0->h1.title, 1->h1, 2->h2, etc.) + :return: + """ + res = '\n' + if title: + res += rst._as_rst_caption(title, titlelevel) + self.rst_text.append(res + text) + + def append_image(self, imgpath, **kwargs): + """ + Links an image to the output + :param imgpath: Path to the image (must be found from the http server) + :param kwargs: Any keyword with value is translated in rst as `:keyword: value` + and added to the image description + + >>>description.append_image('https://img.shields.io/travis/thouska/spotpy/master.svg', + ... target='https://github.com/thouska', + ... width='200px') + """ + rst = '.. image:: {}'.format(imgpath) + for k, v in kwargs.items(): + rst += '\n :{}: {}'.format(k, v) + rst += '\n' + self.append(rst) + + def append_math(self, latex): + """ + Appends a block equation to the output + :param latex: Latex formula + """ + rst = '.. math::\n' + rst += ' ' + latex + '\n' + self.append(rst) + + def __str__(self): + return '\n'.join(self.rst_text) - Usage: - >>>description = spotpy.describe.rst(sampler) - >>>print(description) # Prints the rst source text - >>># Add additional text section - >>>description.append('#. One idea' + '\n' + '#. Another one.', title='Ideas', titlelevel=2) - >>>description.append_image('media/image.png') - >>>print(description.as_html()) # Create html - >>>description.show_in_browser() + @classmethod + def _as_rst_caption(cls, s, level=1): """ + Marks text as a section caption + :param s: String to be marked as caption + :param level: Caption level 0-6, translates to 0=h1.title, 1=h1, 2=h2, etc. + :return: The string as rst caption + """ + return s + '\n' + cls.caption_characters[level] * len(s) + '\n\n' + + css = """ + body, table, div, p, dl { + font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif; + font-size: 16px; + } + li>p { + margin: 0px; + } + /* @group Heading Levels */ + h1.title { + background-color: #fff; + color: #0040A0; + text-align: left; + font-size: 200%; + border: solid 2px #1f6992; + } + h1 { + background-color: #1f6992; + color: #fff; + padding: .2em .5em; + font-size: 150%; + } + h2 { + background-color: #cde; + color: #000; + padding: .2em .5em; + border-bottom: solid 2px #1f6992; + font-size: 120%; + } + + h3 { + font-size: 100%; + border-bottom: solid 2px #0040A0; + } + div.line { + font-family: "Lucida Console", "Lucida Sans Typewriter","DejaVu Sans Mono",monospace; + font-size: 100%; + } + + img { + max-width: 720px; + } + + """ + + def as_html(self, css=None): + """ + Converts the generated reStructuredText as html5 + + :css: A string containing a cascading style sheet. If None, the default css is used + :return: The html document as string + """ + if publish_string is None: + raise NotImplementedError('The docutils package needs to be installed') + args = {'input_encoding': 'unicode', + 'output_encoding': 'unicode'} + res = publish_string(source=str(self), + writer_name='html5', + settings_overrides=args) + style_idx = res.index('') + css = css or self.css + # Include css + res = res[:style_idx] + css + res[style_idx:] + return res + + def show_in_browser(self, filename=None, css=None): + """ + Writes the content as html to disk and opens a browser showing the result - caption_characters = '=-#~*+^' - - def __init__(self, setup_or_sampler): - """ - Creates a reStructuredText description of a sampler or a setup - :param setup_or_sampler: Either a spotpy.algorithm sampler or a spotpy setup - """ - if isinstance(setup_or_sampler, _algorithm): - self.setup = setup_or_sampler.setup - self.sampler = setup_or_sampler - self.rst_text = [self._sampler_text()] - else: - self.setup = setup_or_sampler - self.sampler = None - self.rst_text = [] - - if self.setup: - self.rst_text.append(self._setup_text()) - - def append(self, text='', title=None, titlelevel=1): - """ - Appends additional descriptions in reStructured text to the generated text - :param text: The rst text to add - :param title: A title for the text - :param titlelevel: The level of the section (0->h1.title, 1->h1, 2->h2, etc.) - :return: - """ - res = '\n' - if title: - res += rst._as_rst_caption(title, titlelevel) - self.rst_text.append(res + text) - - def append_image(self, imgpath, **kwargs): - """ - Links an image to the output - :param imgpath: Path to the image (must be found from the http server) - :param kwargs: Any keyword with value is translated in rst as `:keyword: value` - and added to the image description - - >>>description.append_image('https://img.shields.io/travis/thouska/spotpy/master.svg', - ... target='https://github.com/thouska', - ... width='200px') - """ - rst = '.. image:: {}'.format(imgpath) - for k, v in kwargs.items(): - rst += '\n :{}: {}'.format(k, v) - rst += '\n' - self.append(rst) - - def append_math(self, latex): - """ - Appends a block equation to the output - :param latex: Latex formula - """ - rst = '.. math::\n' - rst += ' ' + latex + '\n' - self.append(rst) - - def __str__(self): - return '\n'.join(self.rst_text) - - @classmethod - def _as_rst_caption(cls, s, level=1): - """ - Marks text as a section caption - :param s: String to be marked as caption - :param level: Caption level 0-6, translates to 0=h1.title, 1=h1, 2=h2, etc. - :return: The string as rst caption - """ - return s + '\n' + cls.caption_characters[level] * len(s) + '\n\n' - - css = """ - body, table, div, p, dl { - font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif; - font-size: 16px; - } - li>p { - margin: 0px; - } - /* @group Heading Levels */ - h1.title { - background-color: #fff; - color: #0040A0; - text-align: left; - font-size: 200%; - border: solid 2px #1f6992; - } - h1 { - background-color: #1f6992; - color: #fff; - padding: .2em .5em; - font-size: 150%; - } - h2 { - background-color: #cde; - color: #000; - padding: .2em .5em; - border-bottom: solid 2px #1f6992; - font-size: 120%; - } - - h3 { - font-size: 100%; - border-bottom: solid 2px #0040A0; - } - div.line { - font-family: "Lucida Console", "Lucida Sans Typewriter","DejaVu Sans Mono",monospace; - font-size: 100%; - } - - img { - max-width: 720px; - } - + :param filename: The html filename, if None use .html + :param css: A style string, if None the default style is used """ + html = self.as_html(css).replace('unicode', 'utf-8') + fn = filename or type(self.setup).__name__ + '.html' + path = Path(fn).absolute() + path.write_text(html, encoding='utf-8') + webbrowser.open_new_tab(path.as_uri()) - def as_html(self, css=None): - """ - Converts the generated reStructuredText as html5 - - :css: A string containing a cascading style sheet. If None, the default css is used - :return: The html document as string - """ - if publish_string is None: - raise NotImplementedError('The docutils package needs to be installed') - args = {'input_encoding': 'unicode', - 'output_encoding': 'unicode'} - res = publish_string(source=str(self), - writer_name='html5', - settings_overrides=args) - style_idx = res.index('') - css = css or self.css - # Include css - res = res[:style_idx] + css + res[style_idx:] - return res - - def show_in_browser(self, filename=None, css=None): - """ - Writes the content as html to disk and opens a browser showing the result - - :param filename: The html filename, if None use .html - :param css: A style string, if None the default style is used - """ - html = self.as_html(css).replace('unicode', 'utf-8') - fn = filename or type(self.setup).__name__ + '.html' - path = Path(fn).absolute() - path.write_text(html, encoding='utf-8') - webbrowser.open_new_tab(path.as_uri()) - - def _sampler_text(self): - """ - Generates the rst for the sampler - :return: - """ - obj = self.sampler - cname = rst._as_rst_caption(type(obj).__name__, 0) - s = [ - '- **db format:** ' + obj.dbformat, - '- **db name:** ' + obj.dbname, - '- **save simulation:** ' + str(obj.save_sim), - '- **parallel:** ' + type(obj.repeat).__module__.split('.')[-1], - '', '' - ] - return cname + _getdoc(obj).strip('\n') + '\n\n' + '\n'.join(s) - - def _setup_text(self): - """ - Generates the rst for the setup - :return: - """ - # Get class name - obj = self.setup - cname = rst._as_rst_caption(type(obj).__name__, 0) - # Add doc string - mdoc = _getdoc(obj).strip('\n').replace('\r', '\n') + '\n\n' - # Get parameters from class - param_caption = rst._as_rst_caption('Parameters', 1) - params = '\n'.join('#. **{p.name}:** {p}'.format(p=p) for p in get_parameters_from_setup(obj)) - return cname + mdoc + param_caption + params + def _sampler_text(self): + """ + Generates the rst for the sampler + :return: + """ + obj = self.sampler + cname = rst._as_rst_caption(type(obj).__name__, 0) + s = [ + '- **db format:** ' + obj.dbformat, + '- **db name:** ' + obj.dbname, + '- **save simulation:** ' + str(obj.save_sim), + '- **parallel:** ' + type(obj.repeat).__module__.split('.')[-1], + '', '' + ] + return cname + _getdoc(obj).strip('\n') + '\n\n' + '\n'.join(s) + + def _setup_text(self): + """ + Generates the rst for the setup + :return: + """ + # Get class name + obj = self.setup + cname = rst._as_rst_caption(type(obj).__name__, 0) + # Add doc string + mdoc = _getdoc(obj).strip('\n').replace('\r', '\n') + '\n\n' + # Get parameters from class + param_caption = rst._as_rst_caption('Parameters', 1) + params = '\n'.join('#. **{p.name}:** {p}'.format(p=p) for p in get_parameters_from_setup(obj)) + return cname + mdoc + param_caption + params diff --git a/src/spotpy/examples/spot_setup_ackley.py b/src/spotpy/examples/spot_setup_ackley.py index b1b3212c..16020ca9 100644 --- a/src/spotpy/examples/spot_setup_ackley.py +++ b/src/spotpy/examples/spot_setup_ackley.py @@ -4,12 +4,8 @@ :author: Tobias Houska -This example implements the Ackley function into SPOT. +This example implements the Ackley function into SPOT. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import spotpy @@ -19,7 +15,7 @@ def __init__(self,dim=30): self.params = [] for i in range(self.dim): self.params.append(spotpy.parameter.Uniform(str(i),-32.768,32.768,2.5,-20.0)) - + def parameters(self): return spotpy.parameter.generate(self.params) diff --git a/src/spotpy/examples/spot_setup_cmf_lumped.py b/src/spotpy/examples/spot_setup_cmf_lumped.py index 411d3d65..07906d04 100644 --- a/src/spotpy/examples/spot_setup_cmf_lumped.py +++ b/src/spotpy/examples/spot_setup_cmf_lumped.py @@ -7,7 +7,6 @@ This example can be easily extended with more storages """ -from __future__ import division, print_function import datetime import cmf diff --git a/src/spotpy/examples/spot_setup_dtlz1.py b/src/spotpy/examples/spot_setup_dtlz1.py index b2d99746..23df3436 100644 --- a/src/spotpy/examples/spot_setup_dtlz1.py +++ b/src/spotpy/examples/spot_setup_dtlz1.py @@ -1,8 +1,4 @@ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import spotpy import time @@ -26,7 +22,7 @@ def dtlz1(x,n_var,n_obj): if i> 0: _f *= 1 - X[:,X.shape[1] -i] f.append(_f) - + return f diff --git a/src/spotpy/examples/spot_setup_griewank.py b/src/spotpy/examples/spot_setup_griewank.py index fad0618c..e94fb790 100644 --- a/src/spotpy/examples/spot_setup_griewank.py +++ b/src/spotpy/examples/spot_setup_griewank.py @@ -4,12 +4,8 @@ :author: Tobias Houska -This example implements the Griewank function into SPOT. +This example implements the Griewank function into SPOT. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import spotpy @@ -19,27 +15,27 @@ def __init__(self, dim = 2): self.params = [] for i in range(self.dim): self.params.append(spotpy.parameter.Uniform(str(i), -20, 20, 2, 4.0)) - + def parameters(self): return spotpy.parameter.generate(self.params) - - + + def simulation(self, vector): n = len(vector) fr = 4000 s = 0 p = 1 - for j in range(n): + for j in range(n): s = s + vector[j]**2 - for j in range(n): + for j in range(n): p = p * np.cos(vector[j] / np.sqrt(j+1)) simulation = [s / fr - p + 1] - return simulation - + return simulation + def evaluation(self): observations = [0] return observations - + def objectivefunction(self, simulation,evaluation): objectivefunction= -spotpy.objectivefunctions.rmse(evaluation = evaluation, simulation = simulation) return objectivefunction \ No newline at end of file diff --git a/src/spotpy/examples/spot_setup_hymod_exe.py b/src/spotpy/examples/spot_setup_hymod_exe.py index c4acc7c5..dc66fd52 100644 --- a/src/spotpy/examples/spot_setup_hymod_exe.py +++ b/src/spotpy/examples/spot_setup_hymod_exe.py @@ -2,19 +2,15 @@ Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska -This example implements the external hydrological model HYMOD into SPOTPY. +This example implements the external hydrological model HYMOD into SPOTPY. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import spotpy import os from distutils.dir_util import copy_tree, remove_tree #from shutil import rmtree import sys - + class spot_setup(object): def __init__(self,parallel='seq'): @@ -23,41 +19,41 @@ def __init__(self,parallel='seq'): spotpy.parameter.Uniform('alpha',low=0.1 , high=0.99, optguess=0.8127), spotpy.parameter.Uniform('Ks',low=0.0 , high=0.10, optguess=0.0404), spotpy.parameter.Uniform('Kq',low=0.1 , high=0.99, optguess=0.5592)] - + self.curdir = os.getcwd() self.owd = os.path.realpath(__file__)+os.sep+'..' self.hymod_path = self.owd+os.sep+'hymod_exe' self.evals = list(np.genfromtxt(self.hymod_path+os.sep+'bound.txt',skip_header=65)[:,3])[:730] self.Factor = 1944 * (1000 * 1000 ) / (1000 * 60 * 60 * 24) - self.parallel = parallel + self.parallel = parallel def parameters(self): return spotpy.parameter.generate(self.params) - + def simulation(self,x): if self.parallel == 'seq': - call = '' + call = '' elif self.parallel == 'mpi': #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core + #Therefor we check the ID of the current computer core call = str(int(os.environ['OMPI_COMM_WORLD_RANK'])+2) #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) - + copy_tree(self.hymod_path, self.hymod_path+call) + elif self.parallel == 'mpc': #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core + #Therefor we check the ID of the current computer core call =str(os.getpid()) #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) + copy_tree(self.hymod_path, self.hymod_path+call) else: raise 'No call variable was assigned' os.chdir(self.hymod_path+call) try: params = open('Param.in','w') - + for i in range(len(x)): if i == len(x): params.write(str(round(x[i],5))) @@ -65,8 +61,8 @@ def simulation(self,x): params.write(str(round(x[i],5))+' ') params.close() os.system('HYMODsilent.exe') - - #try: + + #try: SimRR = open('Q.out', 'r') simulations=[] @@ -83,10 +79,10 @@ def simulation(self,x): if self.parallel == 'mpi' or self.parallel == 'mpc': remove_tree(self.hymod_path+call) return simulations - + def evaluation(self): return self.evals - + def objectivefunction(self,simulation,evaluation, params=None): like = spotpy.objectivefunctions.nashsutcliffe(evaluation,simulation) # Just an example, please choose an appropriate objective function depending on the used algorithm return like diff --git a/src/spotpy/examples/spot_setup_hymod_python.py b/src/spotpy/examples/spot_setup_hymod_python.py index 38f6d6a1..422857d3 100644 --- a/src/spotpy/examples/spot_setup_hymod_python.py +++ b/src/spotpy/examples/spot_setup_hymod_python.py @@ -7,10 +7,6 @@ This example implements the python version of hymod into SPOTPY. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from spotpy.parameter import Uniform from spotpy.objectivefunctions import rmse @@ -25,12 +21,12 @@ class spot_setup(object): Kq = Uniform(low=0.1 , high=0.99, optguess=0.5592) #fake1 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) #fake2 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) - + def __init__(self, obj_func=None): #Just a way to keep this example flexible and applicable to various examples - self.obj_func = obj_func + self.obj_func = obj_func #Transform [mm/day] into [l s-1], where 1.783 is the catchment area - self.Factor = 1.783 * 1000 * 1000 / (60 * 60 * 24) + self.Factor = 1.783 * 1000 * 1000 / (60 * 60 * 24) #Load Observation data from file self.PET,self.Precip = [], [] self.date,self.trueObs = [], [] @@ -62,17 +58,17 @@ def simulation(self,x): sim.append(val*self.Factor) #The first year of simulation data is ignored (warm-up) return sim[366:] - + def evaluation(self): return self.trueObs[366:] - + def objectivefunction(self,simulation,evaluation, params=None): - #SPOTPY expects to get one or multiple values back, + #SPOTPY expects to get one or multiple values back, #that define the performance of the model run if not self.obj_func: # This is used if not overwritten by user like = rmse(evaluation,simulation) else: #Way to ensure flexible spot setup class - like = self.obj_func(evaluation,simulation) + like = self.obj_func(evaluation,simulation) return like \ No newline at end of file diff --git a/src/spotpy/examples/spot_setup_hymod_python_pareto.py b/src/spotpy/examples/spot_setup_hymod_python_pareto.py index b4e97b31..69010c29 100644 --- a/src/spotpy/examples/spot_setup_hymod_python_pareto.py +++ b/src/spotpy/examples/spot_setup_hymod_python_pareto.py @@ -7,10 +7,6 @@ This example implements the python version of hymod into SPOTPY. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import spotpy from spotpy.examples.hymod_python.hymod import hymod @@ -26,7 +22,7 @@ class spot_setup(object): def __init__(self): #Transform [mm/day] into [l s-1], where 1.783 is the catchment area - self.Factor = 1.783 * 1000 * 1000 / (60 * 60 * 24) + self.Factor = 1.783 * 1000 * 1000 / (60 * 60 * 24) #Load Observation data from file self.PET,self.Precip = [], [] self.date,self.trueObs = [], [] @@ -49,17 +45,17 @@ def __init__(self): climatefile.close() - + def simulation(self,x): data = hymod(self.Precip, self.PET, x[0], x[1], x[2], x[3], x[4]) sim=[] for val in data: sim.append(val*self.Factor) return sim[366:] - + def evaluation(self): return self.trueObs[366:] - + def objectivefunction(self,simulation,evaluation, params=None): return [-abs(spotpy.objectivefunctions.bias(evaluation, simulation)), spotpy.objectivefunctions.rsquared(evaluation, simulation), diff --git a/src/spotpy/examples/spot_setup_hymod_unix.py b/src/spotpy/examples/spot_setup_hymod_unix.py index 71745003..8de5c7a7 100644 --- a/src/spotpy/examples/spot_setup_hymod_unix.py +++ b/src/spotpy/examples/spot_setup_hymod_unix.py @@ -4,12 +4,8 @@ :author: Tobias Houska -This example implements the external hydrological model HYMOD into SPOTPY. +This example implements the external hydrological model HYMOD into SPOTPY. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np try: import spotpy @@ -22,7 +18,7 @@ from distutils.dir_util import copy_tree, remove_tree #from shutil import rmtree import sys - + class spot_setup(object): def __init__(self,parallel='seq'): @@ -31,41 +27,41 @@ def __init__(self,parallel='seq'): spotpy.parameter.Uniform('alpha',low=0.1 , high=0.99, optguess=0.8127), spotpy.parameter.Uniform('Ks',low=0.0 , high=0.10, optguess=0.0404), spotpy.parameter.Uniform('Kq',low=0.1 , high=0.99, optguess=0.5592)] - + self.curdir = os.getcwd() self.owd = os.path.dirname(os.path.realpath(__file__)) self.hymod_path = self.owd+os.sep+'hymod_unix' self.evals = list(np.genfromtxt(self.hymod_path+os.sep+'bound.txt',skip_header=65)[:,3])[:730] self.Factor = 1944 * (1000 * 1000 ) / (1000 * 60 * 60 * 24) - self.parallel = parallel + self.parallel = parallel def parameters(self): return spotpy.parameter.generate(self.params) - + def simulation(self,x): if self.parallel == 'seq': - call = '' + call = '' elif self.parallel == 'mpi': #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core + #Therefor we check the ID of the current computer core call = str(int(os.environ['OMPI_COMM_WORLD_RANK'])+2) #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) - + copy_tree(self.hymod_path, self.hymod_path+call) + elif self.parallel == 'mpc': #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core + #Therefor we check the ID of the current computer core call =str(os.getpid()) #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) + copy_tree(self.hymod_path, self.hymod_path+call) else: raise 'No call variable was assigned' os.chdir(self.hymod_path+call) try: params = open('Param.in','w') - + for i in range(len(x)): if i == len(x): params.write(str(round(x[i],5))) @@ -76,7 +72,7 @@ def simulation(self,x): os.system('./hymod_%s.%s' % (sys.version_info.major, sys.version_info.minor)) SimRR = open('Q.out', 'r') - + simulations=[] for i in range(64): SimRR.readline() @@ -91,10 +87,10 @@ def simulation(self,x): if self.parallel == 'mpi' or self.parallel == 'mpc': remove_tree(self.hymod_path+call) return simulations - + def evaluation(self): return self.evals - + def objectivefunction(self,simulation,evaluation, params=None): like = spotpy.objectivefunctions.nashsutcliffe(evaluation,simulation) # Just an example, please choose an appropriate objective function depending on the used algorithm return like diff --git a/src/spotpy/examples/spot_setup_rosenbrock.py b/src/spotpy/examples/spot_setup_rosenbrock.py index 99632b05..b1533c63 100644 --- a/src/spotpy/examples/spot_setup_rosenbrock.py +++ b/src/spotpy/examples/spot_setup_rosenbrock.py @@ -5,15 +5,11 @@ This example implements the Rosenbrock function into a SPOTPY class. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np from spotpy.parameter import Uniform from spotpy.objectivefunctions import rmse - + class spot_setup(object): """ A 3 dimensional implementation of the Rosenbrock function @@ -23,27 +19,27 @@ class spot_setup(object): x = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='x value of Rosenbrock function') y = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='y value of Rosenbrock function') z = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='z value of Rosenbrock function') - + def __init__(self,obj_func=None): self.obj_func = obj_func - + def simulation(self, vector): x=np.array(vector) simulations= [sum(100.0 * (x[1:] - x[:-1] ** 2.0) ** 2.0 + (1 - x[:-1]) ** 2.0)] return simulations - + def evaluation(self): observations = [0] return observations - + def objectivefunction(self, simulation, evaluation, params=None): - #SPOTPY expects to get one or multiple values back, + #SPOTPY expects to get one or multiple values back, #that define the performence of the model run if not self.obj_func: # This is used if not overwritten by user like = rmse(evaluation,simulation) else: #Way to ensure on flexible spot setup class - like = self.obj_func(evaluation,simulation) + like = self.obj_func(evaluation,simulation) return like diff --git a/src/spotpy/examples/spot_setup_standardnormal.py b/src/spotpy/examples/spot_setup_standardnormal.py index bffc601c..06ce38c7 100644 --- a/src/spotpy/examples/spot_setup_standardnormal.py +++ b/src/spotpy/examples/spot_setup_standardnormal.py @@ -4,34 +4,30 @@ :author: Tobias Houska -This example implements the Standard Normal function into SPOT. +This example implements the Standard Normal function into SPOT. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import spotpy - + class spot_setup(object): def __init__(self,mean=0,std=1): self.params = [spotpy.parameter.Uniform('x',-5,5,1.5,3.0) ] self.mean=mean self.std=std - + def parameters(self): return spotpy.parameter.generate(self.params) def simulation(self,x): simulations= (1.0/(self.std*np.sqrt(2*np.pi)))**((-1.0/2.0)*(((x-self.mean)/self.std)**2)) return simulations - + def evaluation(self): observations = [0] return observations - + def objectivefunction(self, simulation,evaluation): - objectivefunction = -spotpy.objectivefunctions.rmse(evaluation = evaluation,simulation = simulation) + objectivefunction = -spotpy.objectivefunctions.rmse(evaluation = evaluation,simulation = simulation) return objectivefunction \ No newline at end of file diff --git a/src/spotpy/gui/mpl.py b/src/spotpy/gui/mpl.py index 09e3179f..b8a8386d 100644 --- a/src/spotpy/gui/mpl.py +++ b/src/spotpy/gui/mpl.py @@ -16,11 +16,6 @@ from ..parameter import get_parameters_array, create_set -if sys.version_info < (3, 5): - raise ImportError('spotpy.gui.mpl needs at least Python 3.5, you are running Python {}.{}.{}' - .format(*sys.version_info[:3])) - - if matplotlib.__version__ < '2.1': raise ImportError('Your matplotlib package is too old. Required >=2.1, you have ' + matplotlib.__version__) diff --git a/src/spotpy/parallel/mpi.py b/src/spotpy/parallel/mpi.py index 1fbd77f1..c3a76536 100644 --- a/src/spotpy/parallel/mpi.py +++ b/src/spotpy/parallel/mpi.py @@ -11,15 +11,11 @@ When an algorithm is constructed with parallel='mpi' the repeater of the algorithm as a ForEach object from this package. The .start() method seperates one master process from all the other processes that are used as workers. The master holds a list called "slots", -where the master notes which processes are busy with a job. When a new job should be sent to -a worker, the master looks for a free slot and sends the job to the corresponding worker +where the master notes which processes are busy with a job. When a new job should be sent to +a worker, the master looks for a free slot and sends the job to the corresponding worker process. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from mpi4py import MPI @@ -61,7 +57,7 @@ def __repr__(self): def __init__(self, process): """ Creates a repetition around a callable - + :param process: A callable to process the data """ self.comm = MPI.COMM_WORLD @@ -79,21 +75,21 @@ def __init__(self, process): def is_master(self): """ - :return: True if this Repititor lives on the master process + :return: True if this Repititor lives on the master process """ return self.rank == 0 def is_worker(self): """ - - :return: True if self lives on a worker process + + :return: True if self lives on a worker process """ return self.rank > 0 def is_idle(self): """ - - :return: True, if all slots are empty + + :return: True, if all slots are empty """ assert self.is_master() return all(s is None for s in self.slots) @@ -101,7 +97,7 @@ def is_idle(self): def terminate(self): """ Sends a termination command to all workers - :return: + :return: """ assert self.is_master(), "Don't call terminate on worker" for i in range(1, self.size): @@ -110,8 +106,8 @@ def terminate(self): def setphase(self, phasename): """ Sends out to all workers that a new phase has come - :param phasename: - :return: + :param phasename: + :return: """ assert self.is_master() for i in range(1, self.size): @@ -120,7 +116,7 @@ def setphase(self, phasename): def __wait(self): """ - The loop where a worker is waiting for jobs. + The loop where a worker is waiting for jobs. Breaks when master sent StopIteration :return: Nothing, calls exit() """ @@ -140,10 +136,10 @@ def __wait(self): # Send the object back for processing it res = self.process(obj) self.comm.send(res, dest=0, tag=tag.answer) - + if callable(self.on_worker_terminate): self.on_worker_terminate() - + finally: exit() @@ -152,7 +148,7 @@ def __send(self, jobiter): The master uses this function to send jobs to the workers First it looks for a free slots, and then the jobs go there Used by __call__ - :param jobiter: An iterator over job arguments + :param jobiter: An iterator over job arguments :return: True if there are pending jobs """ assert(self.is_master()) @@ -173,8 +169,8 @@ def __send(self, jobiter): def start(self): """ Sepearates the master from the workers - Sends all workers into wait modus, the master will just proceed - :return: + Sends all workers into wait modus, the master will just proceed + :return: """ if self.is_worker(): self.__wait() @@ -182,9 +178,9 @@ def start(self): def __call__(self, jobs): """ Sends the jobs out to the workers and receives the results - :param jobs: an iterable of jobs to be sent to the workers. Each job contains + :param jobs: an iterable of jobs to be sent to the workers. Each job contains the args of the process function - :return: Yields the received result + :return: Yields the received result """ # Get the iterator for the iterable diff --git a/src/spotpy/parallel/mproc.py b/src/spotpy/parallel/mproc.py index 21094b59..180c9c5e 100644 --- a/src/spotpy/parallel/mproc.py +++ b/src/spotpy/parallel/mproc.py @@ -5,10 +5,6 @@ :author: Philipp Kraft ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import pathos.multiprocessing as mp @@ -20,7 +16,7 @@ class PhaseChange(object): """ def __init__(self, phase): self.phase = phase - + class ForEach(object): """ ForEach is a classes for multiprocessed work based on a generater object which is given if __call__ is called diff --git a/src/spotpy/parallel/sequential.py b/src/spotpy/parallel/sequential.py index 85c9321f..ddb81d79 100644 --- a/src/spotpy/parallel/sequential.py +++ b/src/spotpy/parallel/sequential.py @@ -5,10 +5,6 @@ :author: Philipp Kraft ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals class ForEach(object): def __init__(self,process): @@ -26,4 +22,4 @@ def __call__(self,jobs): for job in jobs: data = self.process(job) yield data - + diff --git a/src/spotpy/parallel/umproc.py b/src/spotpy/parallel/umproc.py index e16bbed8..2caaa89e 100644 --- a/src/spotpy/parallel/umproc.py +++ b/src/spotpy/parallel/umproc.py @@ -5,10 +5,6 @@ :author: Benjamin Manns ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import pathos.multiprocessing as mp @@ -20,7 +16,7 @@ class PhaseChange(object): """ def __init__(self, phase): self.phase = phase - + class ForEach(object): """ ForEach is a classes for multiprocessed work based on a generater object which is given if __call__ is called diff --git a/src/spotpy/parameter.py b/src/spotpy/parameter.py index aeeb6396..548ae544 100644 --- a/src/spotpy/parameter.py +++ b/src/spotpy/parameter.py @@ -5,14 +5,12 @@ :author: Philipp Kraft and Tobias Houska Contains classes to generate random parameter sets ''' -from __future__ import division, print_function, absolute_import import numpy.random as rnd import numpy as np import sys import copy -if sys.version_info[0] >= 3: - unicode = str +unicode = str from itertools import cycle @@ -174,7 +172,7 @@ def __init__(*args, **kwargs): def __init__(self, rndfunc, rndfuncname, *args, **kwargs): """ :name: Name of the parameter - :rndfunc: Function to draw a random number, + :rndfunc: Function to draw a random number, eg. the random functions from numpy.random using the rndargs :rndargs: tuple of the argument names for the random function eg. for uniform: ('low', 'high'). The values for the rndargs are retrieved @@ -226,7 +224,7 @@ def astuple(self): Returns a tuple of a realization and the other parameter properties """ return self(), self.name, self.step, self.optguess, self.minbound, self.maxbound, self.as_int - + def __repr__(self): """ Returns a textual representation of the parameter @@ -236,15 +234,12 @@ def __repr__(self): def __str__(self): """ Returns the description of the parameter, if available, else repr(self) - :return: + :return: """ doc = vars(self).get('description') if doc: res = '{} ({})'.format(doc, repr(self)) - if sys.version_info.major == 2: - return res.encode('utf-8', errors='ignore') - else: - return res + return res else: return repr(self) @@ -267,12 +262,12 @@ def __init__(self, *args, **kwargs): :name: Name of the parameter :low: lower bound of the uniform distribution :high: higher bound of the uniform distribution - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of - rndfunc(*rndargs, size=1000) + default is quantile(0.5) - quantile(0.4) of + rndfunc(*rndargs, size=1000) """ super(Uniform, self).__init__(rnd.uniform, 'Uniform', *args, **kwargs) @@ -366,12 +361,12 @@ def __init__(self, *args, **kwargs): :name: Name of the parameter :mean: center of the normal distribution :stddev: variance of the normal distribution - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of - rndfunc(*rndargs, size=1000) + default is quantile(0.5) - quantile(0.4) of + rndfunc(*rndargs, size=1000) """ super(Normal, self).__init__(rnd.normal, 'Normal', *args, **kwargs) @@ -387,12 +382,12 @@ def __init__(self, *args, **kwargs): :name: Name of the parameter :mean: Mean value of the underlying normal distribution :sigma: Standard deviation of the underlying normal distribution >0 - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of - rndfunc(*rndargs, size=1000) + default is quantile(0.5) - quantile(0.4) of + rndfunc(*rndargs, size=1000) """ super(logNormal, self).__init__(rnd.lognormal, 'logNormal', *args, **kwargs) @@ -406,12 +401,12 @@ def __init__(self, *args, **kwargs): """ :name: Name of the parameter :dt: Number of degrees of freedom. - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of - rndfunc(*rndargs, size=1000) + default is quantile(0.5) - quantile(0.4) of + rndfunc(*rndargs, size=1000) """ super(Chisquare, self).__init__(rnd.chisquare, 'Chisquare', *args, **kwargs) @@ -426,11 +421,11 @@ def __init__(self, *args, **kwargs): """ :name: Name of the parameter :scale: The scale parameter, \beta = 1 divided by lambda. - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of + default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ super(Exponential, self).__init__(rnd.exponential, 'Exponential', *args, **kwargs) @@ -469,11 +464,11 @@ def __init__(self, *args, **kwargs): :name: Name of the parameter :mean: Shape of the distribution. :scale: Shape of the distribution. - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of + default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ super(Wald, self).__init__(rnd.wald, 'Wald', *args, **kwargs) @@ -488,12 +483,12 @@ def __init__(self, *args, **kwargs): """ :name: Name of the parameter :a: Shape of the distribution. - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of - rndfunc(*rndargs, size=1000) + default is quantile(0.5) - quantile(0.4) of + rndfunc(*rndargs, size=1000) """ super(Weibull, self).__init__(rnd.weibull, 'Weibull', *args, **kwargs) @@ -509,12 +504,12 @@ def __init__(self, *args, **kwargs): :left: Lower limit of the parameter :mode: The value where the peak of the distribution occurs. :right: Upper limit, should be larger than `left`. - :step: (optional) number for step size required for some algorithms, + :step: (optional) number for step size required for some algorithms, eg. mcmc need a parameter of the variance for the next step default is median of rndfunc(*rndargs, size=1000) :optguess: (optional) number for start point of parameter - default is quantile(0.5) - quantile(0.4) of - rndfunc(*rndargs, size=1000) + default is quantile(0.5) - quantile(0.4) of + rndfunc(*rndargs, size=1000) """ super(Triangular, self).__init__(rnd.triangular, 'Triangular', *args, **kwargs) @@ -671,7 +666,7 @@ def get_classes(): if isinstance( getattr(current_module, key), type ): keys.append(key) return keys - + def generate(parameters): """ @@ -766,17 +761,17 @@ def create_set(setup, valuetype='random', **kwargs): def get_constant_indices(setup, unaccepted_parameter_types=(Constant,)): """ Returns a list of the class defined parameters, and - overwrites the names of the parameters. + overwrites the names of the parameters. By defining parameters as class members, as shown below, one can omit the parameters function of the setup. - + Usage: from spotpy import parameter class SpotpySetup: - # Add parameters p1 & p2 to the setup. + # Add parameters p1 & p2 to the setup. p1 = parameter.Uniform(20, 100) p2 = parameter.Gamma(2.3) - + setup = SpotpySetup() parameters = parameter.get_parameters_from_setup(setup) """ @@ -804,18 +799,18 @@ class SpotpySetup: def get_parameters_from_setup(setup): """ Returns a list of the class defined parameters, and - overwrites the names of the parameters. + overwrites the names of the parameters. By defining parameters as class members, as shown below, one can omit the parameters function of the setup. - + Usage: - + from spotpy import parameter class SpotpySetup: - # Add parameters p1 & p2 to the setup. + # Add parameters p1 & p2 to the setup. p1 = parameter.Uniform(20, 100) p2 = parameter.Gamma(2.3) - + setup = SpotpySetup() parameters = parameter.get_parameters_from_setup(setup) """ @@ -823,7 +818,7 @@ class SpotpySetup: # Get all class variables cls = type(setup) class_variables = vars(cls).items() - + parameters = [] for attrname, attrobj in class_variables: # Check if it is an spotpy parameter @@ -837,16 +832,6 @@ class SpotpySetup: # Add parameter to dict parameters.append(attrobj) - # starting with Python 3.6 the order of the class defined parameters are presevered with vars, - # prior the sorting changes. - # For a MPI parallized run with spotpy, this is terrible, since the spotpy code expects - # the list of parameters to be ordered - # For older pythons, we will sort the list of parameters by their name. For >=3.6, we keep - # the order. - if sys.version_info[:3] < (3, 6, 0): - # Sort the list parameters by name - parameters.sort(key=lambda p: p.name) - # Get the parameters list of setup if the parameter attribute is not a method: if hasattr(setup, 'parameters') and not callable(setup.parameters): # parameters is not callable, assume a list of parameter objects. diff --git a/tests/test_analyser.py b/tests/test_analyser.py index 8f106dab..70b5ff88 100644 --- a/tests/test_analyser.py +++ b/tests/test_analyser.py @@ -5,10 +5,6 @@ :author: Tobias Houska, Benjamin Manns ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import matplotlib as mpl mpl.use('Agg') @@ -35,34 +31,32 @@ def setUpClass(self): self.timeout = 5 self.fig_name = 'test_output.png' - sampler = spotpy.algorithms.mc(rosenbrock_setup(), + sampler = spotpy.algorithms.mc(rosenbrock_setup(), sim_timeout=self.timeout) sampler.sample(self.rep) self.results = sampler.getdata() - sampler = spotpy.algorithms.mc(griewank_setup(), - sim_timeout=self.timeout) + sampler = spotpy.algorithms.mc(griewank_setup(), + sim_timeout=self.timeout) sampler.sample(self.rep) self.griewank_results = sampler.getdata() - if sys.version_info >= (3, 6): # FAST is only fully operational under - #Python 3 - sampler = spotpy.algorithms.fast(rosenbrock_setup(), - sim_timeout=self.timeout) - sampler.sample(self.rep) - self.sens_results = sampler.getdata() - #Hymod resuts are empty with Python <3.6 - sampler = spotpy.algorithms.dream(hymod_setup(GausianLike), - sim_timeout=self.timeout) - self.r_hat = sampler.sample(self.rep) - self.hymod_results = sampler.getdata() - + + sampler = spotpy.algorithms.fast(rosenbrock_setup(), + sim_timeout=self.timeout) + sampler.sample(self.rep) + self.sens_results = sampler.getdata() + #Hymod resuts are empty with Python <3.6 + sampler = spotpy.algorithms.dream(hymod_setup(GausianLike), + sim_timeout=self.timeout) + self.r_hat = sampler.sample(self.rep) + self.hymod_results = sampler.getdata() + def test_setUp(self): self.assertEqual(len(self.results), self.rep) self.assertEqual(len(self.griewank_results), self.rep) - if sys.version_info >= (3, 6): - self.assertEqual(len(self.hymod_results), self.rep) - self.assertEqual(len(self.sens_results), self.rep) - + self.assertEqual(len(self.hymod_results), self.rep) + self.assertEqual(len(self.sens_results), self.rep) + def test_get_parameters(self): self.assertEqual(len(spotpy.analyser.get_parameters( @@ -172,12 +166,11 @@ def test_plot_Geweke(self): def test_get_sensitivity_of_fast(self): - if sys.version_info >= (3, 6): - get_sensitivity_of_fast = spotpy.analyser.get_sensitivity_of_fast(self.sens_results) - self.assertEqual(len(get_sensitivity_of_fast), 2) - self.assertEqual(len(get_sensitivity_of_fast["S1"]), 3) - self.assertEqual(len(get_sensitivity_of_fast["ST"]), 3) - self.assertEqual(type(get_sensitivity_of_fast), type({})) + get_sensitivity_of_fast = spotpy.analyser.get_sensitivity_of_fast(self.sens_results) + self.assertEqual(len(get_sensitivity_of_fast), 2) + self.assertEqual(len(get_sensitivity_of_fast["S1"]), 3) + self.assertEqual(len(get_sensitivity_of_fast["ST"]), 3) + self.assertEqual(type(get_sensitivity_of_fast), type({})) def test_get_simulation_fields(self): get_simulation_fields = spotpy.analyser.get_simulation_fields( @@ -198,30 +191,28 @@ def test_compare_different_objectivefunctions(self): self.assertEqual(type(compare_different_objectivefunctions[1]),type(np.array([0.5])[0])) def test_plot_parameter_uncertainty(self): - if sys.version_info >= (3, 6): - posterior = spotpy.analyser.get_posterior(self.hymod_results,percentage=10) - #assertAlmostEqual tests on after comma accuracy, therefor we divide both by 100 - self.assertAlmostEqual(len(posterior)/100, self.rep*0.001, 1) - self.assertEqual(type(posterior), type(np.array([]))) - spotpy.analyser.plot_parameter_uncertainty(posterior, - hymod_setup().evaluation(), - fig_name=self.fig_name) - - # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so - # we expecting a plot with some content without testing the structure of the plot, just - # the size - self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) + posterior = spotpy.analyser.get_posterior(self.hymod_results,percentage=10) + #assertAlmostEqual tests on after comma accuracy, therefor we divide both by 100 + self.assertAlmostEqual(len(posterior)/100, self.rep*0.001, 1) + self.assertEqual(type(posterior), type(np.array([]))) + spotpy.analyser.plot_parameter_uncertainty(posterior, + hymod_setup().evaluation(), + fig_name=self.fig_name) + + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so + # we expecting a plot with some content without testing the structure of the plot, just + # the size + self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_fast_sensitivity(self): - if sys.version_info >= (3, 6): - spotpy.analyser.plot_fast_sensitivity(self.sens_results,fig_name=self.fig_name) - # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so - # we expecting a plot with some content without testing the structure of the plot, just - # the size - self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - + spotpy.analyser.plot_fast_sensitivity(self.sens_results,fig_name=self.fig_name) + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so + # we expecting a plot with some content without testing the structure of the plot, just + # the size + self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) + def test_plot_heatmap_griewank(self): spotpy.analyser.plot_heatmap_griewank([self.griewank_results],["test"], fig_name=self.fig_name) @@ -236,7 +227,7 @@ def test_plot_objectivefunction(self): spotpy.analyser.plot_objectivefunction(self.results, rosenbrock_setup().evaluation(), fig_name=self.fig_name) - + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size @@ -244,7 +235,7 @@ def test_plot_objectivefunction(self): def test_plot_parametertrace_algorithms(self): spotpy.analyser.plot_parametertrace_algorithms([self.griewank_results], - ["test_plot_parametertrace_algorithms"], + ["test_plot_parametertrace_algorithms"], spot_setup=griewank_setup(), fig_name=self.fig_name) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so @@ -263,7 +254,7 @@ def test_plot_parametertrace(self): def test_plot_posterior_parametertrace(self): spotpy.analyser.plot_posterior_parametertrace(self.griewank_results, ["0","1"], fig_name=self.fig_name) - + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size @@ -271,17 +262,16 @@ def test_plot_posterior_parametertrace(self): def test_plot_posterior(self): - if sys.version_info >= (3, 6): - spotpy.analyser.plot_posterior(self.hymod_results - , hymod_setup().evaluation(),fig_name=self.fig_name) - - # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so - # we expecting a plot with some content without testing the structure of the plot, just - # the size - self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - + spotpy.analyser.plot_posterior(self.hymod_results + , hymod_setup().evaluation(),fig_name=self.fig_name) + + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so + # we expecting a plot with some content without testing the structure of the plot, just + # the size + self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) + def test_plot_bestmodelrun(self): - spotpy.analyser.plot_bestmodelrun(self.griewank_results, + spotpy.analyser.plot_bestmodelrun(self.griewank_results, griewank_setup().evaluation(), fig_name=self.fig_name) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so @@ -291,19 +281,18 @@ def test_plot_bestmodelrun(self): os.remove(self.fig_name) def test_plot_bestmodelruns(self): - if sys.version_info >= (3, 6): - spotpy.analyser.plot_bestmodelruns( - [self.hymod_results[0:10],self.hymod_results[10:20]], hymod_setup().evaluation(), - dates=range(1, 1+len(hymod_setup().evaluation())), algorithms=["test", "test2"], - fig_name=self.fig_name) + spotpy.analyser.plot_bestmodelruns( + [self.hymod_results[0:10],self.hymod_results[10:20]], hymod_setup().evaluation(), + dates=range(1, 1+len(hymod_setup().evaluation())), algorithms=["test", "test2"], + fig_name=self.fig_name) - # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so - # we expecting a plot with some content without testing the structure of the plot, just - # the size - self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so + # we expecting a plot with some content without testing the structure of the plot, just + # the size + self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_objectivefunctiontraces(self): - spotpy.analyser.plot_objectivefunctiontraces([self.results], + spotpy.analyser.plot_objectivefunctiontraces([self.results], [rosenbrock_setup().evaluation()], ["test"],fig_name=self.fig_name) @@ -320,42 +309,39 @@ def test_plot_regression(self): # we expecting a plot with some content without testing the structure of the plot, just # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - + def test_plot_parameterInteraction(self): # Test only untder Python 3.6 as lower versions results in a strange ValueError - if sys.version_info >= (3, 6): - spotpy.analyser.plot_parameterInteraction(self.results, - fig_name = self.fig_name) - - # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so - # we expecting a plot with some content without testing the structure of the plot, just - # the size - self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - - + spotpy.analyser.plot_parameterInteraction(self.results, + fig_name = self.fig_name) + + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so + # we expecting a plot with some content without testing the structure of the plot, just + # the size + self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) + + def test_plot_allmodelruns(self): - if sys.version_info >= (3, 6): - modelruns = [] - for run in self.hymod_results: - on_run = [] - for i in run: - on_run.append(i) - on_run = np.array(on_run)[:-7] - modelruns.append(on_run.tolist()) - spotpy.analyser.plot_allmodelruns(modelruns, hymod_setup().evaluation(), - dates=range(1, len(hymod_setup().evaluation()) + 1), - fig_name=self.fig_name) - - # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so - # we expecting a plot with some content without testing the structure of the plot, just - # the size - self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) + modelruns = [] + for run in self.hymod_results: + on_run = [] + for i in run: + on_run.append(i) + on_run = np.array(on_run)[:-7] + modelruns.append(on_run.tolist()) + spotpy.analyser.plot_allmodelruns(modelruns, hymod_setup().evaluation(), + dates=range(1, len(hymod_setup().evaluation()) + 1), + fig_name=self.fig_name) + + # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so + # we expecting a plot with some content without testing the structure of the plot, just + # the size + self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_gelman_rubin(self): - if sys.version_info >= (3, 6): - spotpy.analyser.plot_gelman_rubin(self.hymod_results, self.r_hat, fig_name =self.fig_name) - self.assertGreaterEqual(abs(os.path.getsize(self.fig_name)), 100) + spotpy.analyser.plot_gelman_rubin(self.hymod_results, self.r_hat, fig_name =self.fig_name) + self.assertGreaterEqual(abs(os.path.getsize(self.fig_name)), 100) @classmethod diff --git a/tests/test_cli.py b/tests/test_cli.py index 4aedeca1..94afe507 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -5,7 +5,6 @@ :author: Tobias Houska, Philipp Kraft ''' -from __future__ import division, print_function, unicode_literals import io from click.testing import CliRunner diff --git a/tests/test_describe.py b/tests/test_describe.py index 5035963b..79e89060 100644 --- a/tests/test_describe.py +++ b/tests/test_describe.py @@ -5,7 +5,6 @@ :author: Tobias Houska, Philipp Kraft ''' -from __future__ import unicode_literals, absolute_import, division, print_function import sys import unittest sys.path.insert(0, '.') @@ -70,29 +69,28 @@ def test_all_algorithms(self): sampler = scls(spot_setup=model, dbformat='ram', dbname='äöü') self.sampler_test(sampler) -if sys.version_info > (3, 5): - class TestDescribeRst(unittest.TestCase): +class TestDescribeRst(unittest.TestCase): - def test_setup_rst(self): - setup = SpotSetup() - rst = spotpy.describe.rst(setup) + def test_setup_rst(self): + setup = SpotSetup() + rst = spotpy.describe.rst(setup) - def test_sampler_rst(self): - for sname, scls in inspect.getmembers(spotpy.algorithms, inspect.isclass): - if not sname.startswith('_'): - model = SpotSetup() - sampler = scls(spot_setup=model, dbformat='ram', dbname='äöü') - rst = spotpy.describe.rst(sampler) + def test_sampler_rst(self): + for sname, scls in inspect.getmembers(spotpy.algorithms, inspect.isclass): + if not sname.startswith('_'): + model = SpotSetup() + sampler = scls(spot_setup=model, dbformat='ram', dbname='äöü') + rst = spotpy.describe.rst(sampler) - rst.append('This is a test for ``rst.append().``\n' * 10, 'Appending', 1) - rst.append_math(r'c = \sqrt{a^2 + b^2}') - rst.append(title='Image', titlelevel=2) - rst.append_image('https://img.shields.io/travis/thouska/spotpy/master.svg', - target='https://travis-ci.org/thouska/spotpy', - width='200px') + rst.append('This is a test for ``rst.append().``\n' * 10, 'Appending', 1) + rst.append_math(r'c = \sqrt{a^2 + b^2}') + rst.append(title='Image', titlelevel=2) + rst.append_image('https://img.shields.io/travis/thouska/spotpy/master.svg', + target='https://travis-ci.org/thouska/spotpy', + width='200px') - rst.as_html() + rst.as_html() if __name__ == '__main__': diff --git a/tests/test_fast.py b/tests/test_fast.py index 33aa7734..060a362e 100644 --- a/tests/test_fast.py +++ b/tests/test_fast.py @@ -16,23 +16,21 @@ from spotpy.examples.spot_setup_hymod_python import spot_setup -# Test only untder Python 3 as lower versions results in a strange fft error -if sys.version_info >= (3, 6): - - class TestFast(unittest.TestCase): - def setUp(self): - - self.spot_setup = spot_setup() - self.rep = 200 # REP must be a multiply of amount of parameters which are in 7 if using hymod - self.timeout = 10 # Given in Seconds - - def test_fast(self): - sampler = spotpy.algorithms.fast(self.spot_setup, parallel="seq", dbname='test_FAST', dbformat="ram", - sim_timeout=self.timeout) - results = [] - sampler.sample(self.rep) - results = sampler.getdata() - self.assertEqual(200,len(results)) + +class TestFast(unittest.TestCase): + def setUp(self): + + self.spot_setup = spot_setup() + self.rep = 200 # REP must be a multiply of amount of parameters which are in 7 if using hymod + self.timeout = 10 # Given in Seconds + + def test_fast(self): + sampler = spotpy.algorithms.fast(self.spot_setup, parallel="seq", dbname='test_FAST', dbformat="ram", + sim_timeout=self.timeout) + results = [] + sampler.sample(self.rep) + results = sampler.getdata() + self.assertEqual(200,len(results)) if __name__ == '__main__': unittest.main() diff --git a/tests/test_gui_mpl.py b/tests/test_gui_mpl.py index 8889f953..56061fa3 100644 --- a/tests/test_gui_mpl.py +++ b/tests/test_gui_mpl.py @@ -11,43 +11,43 @@ import sys -if sys.version_info >= (3, 5) and matplotlib.__version__ >= '2.1': - sys.path.append(".") +sys.path.append(".") - try: - import spotpy - except ImportError: - import spotpy +try: + import spotpy +except ImportError: + import spotpy - from spotpy.gui.mpl import GUI - from .test_setup_parameters import SpotSetupMixedParameterFunction as Setup +from spotpy.gui.mpl import GUI +from .test_setup_parameters import SpotSetupMixedParameterFunction as Setup - class TestGuiMpl(unittest.TestCase): +class TestGuiMpl(unittest.TestCase): - def test_setup(self): - setup = Setup() - with GUI(setup) as gui: - self.assertTrue(hasattr(gui, 'setup')) + def test_setup(self): + setup = Setup() + with GUI(setup) as gui: + self.assertTrue(hasattr(gui, 'setup')) - def test_sliders(self): - setup = Setup() - with GUI(setup) as gui: - self.assertEqual(len(gui.sliders), 4) + def test_sliders(self): + setup = Setup() + with GUI(setup) as gui: + self.assertEqual(len(gui.sliders), 4) - def test_clear(self): - setup = Setup() - with GUI(setup) as gui: - gui.clear() - self.assertEqual(len(gui.lines), 1) + def test_clear(self): + setup = Setup() + with GUI(setup) as gui: + gui.clear() + self.assertEqual(len(gui.lines), 1) + + def test_run(self): + setup = Setup() + with GUI(setup) as gui: + gui.clear() + gui.run() + self.assertEqual(len(gui.lines), 2) - def test_run(self): - setup = Setup() - with GUI(setup) as gui: - gui.clear() - gui.run() - self.assertEqual(len(gui.lines), 2) if __name__ == '__main__': unittest.main() diff --git a/tutorials/cli_hymod.py b/tutorials/cli_hymod.py index 082edfd0..9fd09372 100644 --- a/tutorials/cli_hymod.py +++ b/tutorials/cli_hymod.py @@ -3,7 +3,6 @@ """ -from __future__ import division, print_function, unicode_literals from spotpy.cli import main from spotpy.examples.spot_setup_hymod_python import spot_setup diff --git a/tutorials/dds/benchmark_dds.py b/tutorials/dds/benchmark_dds.py index 16e928af..0ebaad5b 100644 --- a/tutorials/dds/benchmark_dds.py +++ b/tutorials/dds/benchmark_dds.py @@ -1,7 +1,3 @@ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from pprint import pprint import numpy as np import matplotlib.pylab as plt diff --git a/tutorials/dds/dds_parallel.py b/tutorials/dds/dds_parallel.py index 15af96d0..92301481 100644 --- a/tutorials/dds/dds_parallel.py +++ b/tutorials/dds/dds_parallel.py @@ -1,7 +1,3 @@ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import sys import os diff --git a/tutorials/getting_started.py b/tutorials/getting_started.py index 89971d4c..4a99b371 100644 --- a/tutorials/getting_started.py +++ b/tutorials/getting_started.py @@ -7,12 +7,11 @@ This class holds the example code from the getting_started web-documention. ''' -from __future__ import print_function, division, absolute_import, unicode_literals # Getting started #To start your experience with SPOT you need to have SPOT installed. Please see the [Installation chapter](index.md) for further details. #To use SPOT we have to import it and use one of the pre-build examples: -import spotpy # Load the SPOT package into your working storage +import spotpy # Load the SPOT package into your working storage from spotpy.examples.spot_setup_rosenbrock import spot_setup # Import the two dimensional Rosenbrock example @@ -30,7 +29,7 @@ #spot.analyser.plot_parametertrace(results) # Use the analyser to show the parameter trace spotpy.analyser.plot_parameterInteraction(results) posterior=spotpy.analyser.get_posterior(results) - spotpy.analyser.plot_parameterInteraction(posterior) + spotpy.analyser.plot_parameterInteraction(posterior) #spotpy.analyser.plot_posterior_parametertrace(results, threshold=0.9) - + print(spotpy.analyser.get_best_parameterset(results)) \ No newline at end of file diff --git a/tutorials/gui_hymod.py b/tutorials/gui_hymod.py index d0f7f9b3..185657a3 100644 --- a/tutorials/gui_hymod.py +++ b/tutorials/gui_hymod.py @@ -4,27 +4,26 @@ Needs at least Python 3.5 """ -from __future__ import division, print_function, unicode_literals import spotpy from spotpy.gui.mpl import GUI from spotpy.examples.spot_setup_hymod_python import spot_setup -from spotpy.objectivefunctions import rmse +from spotpy.objectivefunctions import rmse if __name__ == '__main__': setup_class=spot_setup(rmse) - + #Select number of maximum allowed repetitions rep=10000 - + # Create the SCE-UA sampler of spotpy, alt_objfun is set to None to force SPOTPY # to jump into the def objectivefunction in the spot_setup class (default is - # spotpy.objectivefunctions.rmse) + # spotpy.objectivefunctions.rmse) sampler=spotpy.algorithms.sceua(setup_class, dbname='SCEUA_hymod', dbformat='csv', alt_objfun=None) - + #Start the sampler, one can specify ngs, kstop, peps and pcento id desired - #sampler.sample(rep,ngs=10, kstop=50, peps=0.1, pcento=0.1) + #sampler.sample(rep,ngs=10, kstop=50, peps=0.1, pcento=0.1) gui = GUI(spot_setup()) gui.show() diff --git a/tutorials/tutorial_Parameterlist_iterator.py b/tutorials/tutorial_Parameterlist_iterator.py index 724bed36..c122f040 100644 --- a/tutorials/tutorial_Parameterlist_iterator.py +++ b/tutorials/tutorial_Parameterlist_iterator.py @@ -4,42 +4,38 @@ :author: Tobias Houska -This example implements the Rosenbrock function into SPOT. +This example implements the Rosenbrock function into SPOT. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import spotpy - + class spot_setup(object): - + def __init__(self): self.slow = 1000 self.params = [spotpy.parameter.List('x',[1,2,3,4,5,6,7,8,9,0]), #Give possible x values as a List spotpy.parameter.List('y',[0,1,2,5,6,7,8,9,0,1]) #Give possible y values as a List - + ] def parameters(self): return spotpy.parameter.generate(self.params) - + def simulation(self,vector): x=np.array(vector) for i in range(self.slow): s = np.sin(i) simulations= [sum(100.0*(x[1:] - x[:-1]**2.0)**2.0 + (1 - x[:-1])**2.0)] return simulations - + def evaluation(self): observations=[0] return observations - + def objectivefunction(self,simulation,evaluation): - objectivefunction = -spotpy.objectivefunctions.rmse(evaluation,simulation) + objectivefunction = -spotpy.objectivefunctions.rmse(evaluation,simulation) return objectivefunction - + sampler=spotpy.algorithms.mc(spot_setup(),dbname='Iterator_example', dbformat='csv') #Parameter lists can be sampled with MC sampler.sample(10) #Choose equaly or less repetitions as you have parameters in your List diff --git a/tutorials/tutorial_ackley.py b/tutorials/tutorial_ackley.py index 98b01206..ebadce2d 100644 --- a/tutorials/tutorial_ackley.py +++ b/tutorials/tutorial_ackley.py @@ -7,10 +7,6 @@ This class holds the example code from the ackley tutorial web-documention. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import spotpy from spotpy.examples.spot_setup_ackley import spot_setup diff --git a/tutorials/tutorial_cmf_lumped.py b/tutorials/tutorial_cmf_lumped.py index a79904fa..e702a386 100644 --- a/tutorials/tutorial_cmf_lumped.py +++ b/tutorials/tutorial_cmf_lumped.py @@ -5,7 +5,6 @@ """ -from __future__ import division, print_function, unicode_literals import sys import datetime diff --git a/tutorials/tutorial_griewank.py b/tutorials/tutorial_griewank.py index b28d84a1..6a8d0527 100644 --- a/tutorials/tutorial_griewank.py +++ b/tutorials/tutorial_griewank.py @@ -7,10 +7,6 @@ This class holds the example code from the Griewank tutorial web-documention. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import spotpy from spotpy.examples.spot_setup_griewank import spot_setup diff --git a/tutorials/tutorial_nsgaii.py b/tutorials/tutorial_nsgaii.py index ccc096aa..17a085da 100644 --- a/tutorials/tutorial_nsgaii.py +++ b/tutorials/tutorial_nsgaii.py @@ -10,11 +10,6 @@ This class holds example code how to use the nsgaii algorithm ''' -from __future__ import division, print_function -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals try: import spotpy @@ -34,7 +29,7 @@ def multi_obj_func(evaluation, simulation): """ This function is used to overwrite objective function in hymod example - + Parameters ---------- evaluation : array @@ -54,77 +49,77 @@ def multi_obj_func(evaluation, simulation): return [like1, like2, like3] if __name__ == "__main__": - + generations=40 n_pop = 20 skip_duplicates = True - + sp_setup=spot_setup(obj_func= multi_obj_func) sampler = spotpy.algorithms.NSGAII(spot_setup=sp_setup, dbname='NSGA2', dbformat="csv") - + sampler.sample(generations, n_obj= 3, n_pop = n_pop) results = sampler.getdata() - + fig= plt.figure(1,figsize=(9,5)) plt.plot(results['like1']) plt.show() plt.ylabel('Objective function') plt.xlabel('Iteration') fig.savefig('hymod_objectivefunction.png',dpi=300) - - # Example plot to show the parameter distribution ###### + + # Example plot to show the parameter distribution ###### def plot_parameter_trace(ax, results, parameter): ax.plot(results['par'+parameter.name],'.') ax.set_ylabel(parameter.name) ax.set_ylim(parameter.minbound, parameter.maxbound) - + def plot_parameter_histogram(ax, results, parameter): #chooses the last 20% of the sample - ax.hist(results['par'+parameter.name][int(len(results)*0.9):], + ax.hist(results['par'+parameter.name][int(len(results)*0.9):], bins =np.linspace(parameter.minbound,parameter.maxbound,20)) ax.set_ylabel('Density') ax.set_xlim(parameter.minbound, parameter.maxbound) - + fig= plt.figure(2,figsize=(9,9)) - + ax1 = plt.subplot(5,2,1) plot_parameter_trace(ax1, results, spot_setup.cmax) - + ax2 = plt.subplot(5,2,2) plot_parameter_histogram(ax2,results, spot_setup.cmax) - + ax3 = plt.subplot(5,2,3) plot_parameter_trace(ax3, results, spot_setup.bexp) - + ax4 = plt.subplot(5,2,4) plot_parameter_histogram(ax4, results, spot_setup.bexp) - + ax5 = plt.subplot(5,2,5) plot_parameter_trace(ax5, results, spot_setup.alpha) - + ax6 = plt.subplot(5,2,6) plot_parameter_histogram(ax6, results, spot_setup.alpha) ax7 = plt.subplot(5,2,7) plot_parameter_trace(ax7, results, spot_setup.Ks) - + ax8 = plt.subplot(5,2,8) plot_parameter_histogram(ax8, results, spot_setup.Ks) ax9 = plt.subplot(5,2,9) plot_parameter_trace(ax9, results, spot_setup.Kq) ax9.set_xlabel('Iterations') - + ax10 = plt.subplot(5,2,10) plot_parameter_histogram(ax10, results, spot_setup.Kq) ax10.set_xlabel('Parameter range') - + plt.show() fig.savefig('hymod_parameters.png',dpi=300) - + # Example plot to show remaining parameter uncertainty # fields=[word for word in results.dtype.names if word.startswith('sim')] @@ -137,7 +132,7 @@ def plot_parameter_histogram(ax, results, parameter): ax11.plot(q5,color='dimgrey',linestyle='solid') ax11.plot(q95,color='dimgrey',linestyle='solid') ax11.fill_between(np.arange(0,len(q5),1),list(q5),list(q95),facecolor='dimgrey',zorder=0, - linewidth=0,label='parameter uncertainty') + linewidth=0,label='parameter uncertainty') ax11.plot(sp_setup.evaluation(),'r.',label='data') ax11.set_ylim(-50,450) ax11.set_xlim(0,729) @@ -156,7 +151,7 @@ def plot_parameter_histogram(ax, results, parameter): plt.show() - + class Test_NSGAII(unittest.TestCase): def multi_obj_func(evaluation, simulation): #used to overwrite objective function in hymod example diff --git a/tutorials/tutorial_nsgaii_dltz1.py b/tutorials/tutorial_nsgaii_dltz1.py index 96031b5b..19b72659 100644 --- a/tutorials/tutorial_nsgaii_dltz1.py +++ b/tutorials/tutorial_nsgaii_dltz1.py @@ -1,7 +1,3 @@ -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import spotpy from spotpy.examples.spot_setup_dtlz1 import spot_setup @@ -25,13 +21,13 @@ dbname='NSGA2', dbformat='csv', save_sim=True) - sampler.sample(generations,n_obj=3, n_pop=n_pop,skip_duplicates=skip_duplicates) + sampler.sample(generations,n_obj=3, n_pop=n_pop,skip_duplicates=skip_duplicates) last = None first = None - # output calibration + # output calibration df = pd.read_csv("NSGA2.csv") diff --git a/tutorials/tutorial_own_database.py b/tutorials/tutorial_own_database.py index cc6b7947..e1650276 100644 --- a/tutorials/tutorial_own_database.py +++ b/tutorials/tutorial_own_database.py @@ -6,10 +6,6 @@ This example implements the Rosenbrock function into SPOT. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals import numpy as np import spotpy from spotpy.objectivefunctions import rmse @@ -18,9 +14,9 @@ class spot_setup(object): a = spotpy.parameter.Uniform(low=0, high=1) b = spotpy.parameter.Uniform(low=0, high=1) - + def __init__(self): - + self.db_headers = ["obj_functions", "parameters", "simulations"] self.database = open('MyOwnDatabase.txt', 'w') @@ -47,7 +43,7 @@ def save(self, objectivefunctions, parameter, simulations, *args, **kwargs): if __name__ == "__main__": spot_setup = spot_setup() - + # set dbformat to custom and spotpy will return results in spot_setup.save function sampler = spotpy.algorithms.mc(spot_setup, dbformat='custom') sampler.sample(100) # Choose equal or less repetitions as you have parameters in your List diff --git a/tutorials/tutorial_rosenbrock.py b/tutorials/tutorial_rosenbrock.py index d4c8c36d..cd7736fc 100644 --- a/tutorials/tutorial_rosenbrock.py +++ b/tutorials/tutorial_rosenbrock.py @@ -7,10 +7,6 @@ This file holds the example code from the Rosenbrock tutorial web-documention. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals try: import spotpy @@ -62,32 +58,32 @@ results.append(sampler.getdata()) -sampler=spotpy.algorithms.sa(spot_setup(obj_func=bayesian_likelihood_func), +sampler=spotpy.algorithms.sa(spot_setup(obj_func=bayesian_likelihood_func), parallel=parallel, dbname='RosenSA', dbformat=dbformat, sim_timeout=timeout) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.rope(spot_setup(), +sampler=spotpy.algorithms.rope(spot_setup(), parallel=parallel, dbname='RosenROPE', dbformat=dbformat,sim_timeout=timeout) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.abc(spot_setup(), +sampler=spotpy.algorithms.abc(spot_setup(), parallel=parallel, dbname='RosenABC', dbformat=dbformat,sim_timeout=timeout) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.fscabc(spot_setup(), +sampler=spotpy.algorithms.fscabc(spot_setup(), parallel=parallel, dbname='RosenFSABC', dbformat=dbformat, sim_timeout=timeout) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.mcmc(spot_setup(obj_func=bayesian_likelihood_func), +sampler=spotpy.algorithms.mcmc(spot_setup(obj_func=bayesian_likelihood_func), parallel=parallel, dbname='RosenMCMC', dbformat=dbformat, sim_timeout=timeout) sampler.sample(rep) results.append(sampler.getdata()) diff --git a/tutorials/tutorial_signatures.py b/tutorials/tutorial_signatures.py index fb9f311d..09d7f393 100644 --- a/tutorials/tutorial_signatures.py +++ b/tutorials/tutorial_signatures.py @@ -7,10 +7,6 @@ This code shows you, how to use the hydroligcal signatures. They can also be implemented in the def objective function. ''' -from __future__ import absolute_import -from __future__ import division -from __future__ import print_function -from __future__ import unicode_literals from spotpy.examples.spot_setup_hymod import spot_setup import spotpy.signatures as sig From e42243f8bde1adbb3287b9aa6ce545579f38bcce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 1 Jul 2022 10:18:58 +0200 Subject: [PATCH 16/34] remove unicode hack --- src/spotpy/database/base.py | 1 - src/spotpy/database/csv.py | 3 +-- src/spotpy/database/hdf5.py | 1 - src/spotpy/database/ram.py | 1 - src/spotpy/database/sql.py | 1 - src/spotpy/describe.py | 7 +++---- src/spotpy/parameter.py | 5 ++--- 7 files changed, 6 insertions(+), 13 deletions(-) diff --git a/src/spotpy/database/base.py b/src/spotpy/database/base.py index 519826ac..a7db82c5 100644 --- a/src/spotpy/database/base.py +++ b/src/spotpy/database/base.py @@ -13,7 +13,6 @@ import time from itertools import product import sys -unicode = str from importlib import import_module diff --git a/src/spotpy/database/csv.py b/src/spotpy/database/csv.py index 96981d08..92543444 100644 --- a/src/spotpy/database/csv.py +++ b/src/spotpy/database/csv.py @@ -3,7 +3,6 @@ import io import time import sys -unicode = str class csv(database): """ @@ -21,7 +20,7 @@ def __init__(self, *args, **kwargs): mode = 'w' self.db = io.open(self.dbname + '.csv', mode) # write header line - self.db.write(unicode(','.join(self.header) + '\n')) + self.db.write(str(','.join(self.header) + '\n')) else: print("* Appending to database file '{}.csv'.".format(self.dbname)) # Continues writing file diff --git a/src/spotpy/database/hdf5.py b/src/spotpy/database/hdf5.py index 47091b92..4abba85e 100644 --- a/src/spotpy/database/hdf5.py +++ b/src/spotpy/database/hdf5.py @@ -19,7 +19,6 @@ 'installed the hdf5 extension (https://www.hdfgroup.org/downloads/hdf5/)') raise import sys -unicode = str class hdf5(database): diff --git a/src/spotpy/database/ram.py b/src/spotpy/database/ram.py index d44f4ca9..34333ef8 100644 --- a/src/spotpy/database/ram.py +++ b/src/spotpy/database/ram.py @@ -13,7 +13,6 @@ import numpy as np from .base import database import sys -unicode = str class ram(database): diff --git a/src/spotpy/database/sql.py b/src/spotpy/database/sql.py index ad72e4f6..5537f125 100644 --- a/src/spotpy/database/sql.py +++ b/src/spotpy/database/sql.py @@ -3,7 +3,6 @@ import sys from .base import database -unicode = str class PickalableSWIG: diff --git a/src/spotpy/describe.py b/src/spotpy/describe.py index f2aabb5c..4f0f0e5b 100644 --- a/src/spotpy/describe.py +++ b/src/spotpy/describe.py @@ -15,7 +15,6 @@ from .parameter import get_parameters_from_setup from .algorithms._algorithm import _algorithm from inspect import getdoc as _getdoc -unicode = str try: from docutils.core import publish_string @@ -39,7 +38,7 @@ def sampler(obj): large multiline description :return: """ - cname = unicode(type(obj).__name__) + cname = str(type(obj).__name__) s = [cname, '=' * len(cname), _getdoc(obj), ' db format: ' + obj.dbformat, ' db name: ' + obj.dbname, @@ -55,11 +54,11 @@ def setup(obj): :return: A describing string """ # Get class name - cname = unicode(type(obj).__name__) + cname = str(type(obj).__name__) # Add doc string mdoc = _getdoc(obj).strip('\n').replace('\r', '\n') # Get parameters from class - params = '\n'.join(' - {p}'.format(p=unicode(p)) for p in get_parameters_from_setup(obj)) + params = '\n'.join(' - {p}'.format(p=str(p)) for p in get_parameters_from_setup(obj)) parts = [cname, '=' * len(cname), mdoc, 'Parameters:', '-' * 11, params] return '\n'.join(parts) diff --git a/src/spotpy/parameter.py b/src/spotpy/parameter.py index 548ae544..291ac567 100644 --- a/src/spotpy/parameter.py +++ b/src/spotpy/parameter.py @@ -10,7 +10,6 @@ import sys import copy -unicode = str from itertools import cycle @@ -48,7 +47,7 @@ def name(self): :return: name """ # Check if args[0] is string like (and exists) - if self.args and unicode(self.args[0]) == self.args[0]: + if self.args and str(self.args[0]) == self.args[0]: name = self.args.pop(0) self.processed_args += 1 # else get the name from the keywords @@ -246,7 +245,7 @@ def __str__(self): def __unicode__(self): doc = vars(self).get('description') if doc: - return u'{}({})'.format(unicode(doc), repr(self)) + return u'{}({})'.format(str(doc), repr(self)) else: return repr(self) From 6a2a6bb7c045d5c8a1044165cc0d93f97b2fa86e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 1 Jul 2022 10:23:04 +0200 Subject: [PATCH 17/34] deprecation warning: replace np aliases for int and float --- src/spotpy/algorithms/dds.py | 10 ++--- src/spotpy/algorithms/nsgaii.py | 68 ++++++++++++++++----------------- src/spotpy/algorithms/padds.py | 6 +-- src/spotpy/database/ram.py | 2 +- tests/test_dds.py | 2 +- tests/test_likelihood.py | 58 ++++++++++++++-------------- tests/test_signatures.py | 2 +- 7 files changed, 74 insertions(+), 74 deletions(-) diff --git a/src/spotpy/algorithms/dds.py b/src/spotpy/algorithms/dds.py index 1cd368b5..2b5e99ca 100644 --- a/src/spotpy/algorithms/dds.py +++ b/src/spotpy/algorithms/dds.py @@ -278,7 +278,7 @@ def sample(self, repetitions, trials=1, x_initial=np.array([])): number_of_parameters = self.status.parameters # number_of_parameters is the amount of parameters if len(x_initial) == 0: - initial_iterations = np.int(np.max([5, round(0.005 * repetitions)])) + initial_iterations = int(np.max([5, round(0.005 * repetitions)])) elif len(x_initial) != number_of_parameters: raise ValueError("User specified 'x_initial' has not the same length as available parameters") else: @@ -298,7 +298,7 @@ def sample(self, repetitions, trials=1, x_initial=np.array([])): repetitions, x_initial) params_max = self.fix_status_params_format(params_max) trial_best_value = list(params_max)#self.status.params_max.copy() - + # important to set this field `generator_repetitions` so that # method `get_next_s_test` can generate exact parameters self.generator_repetitions = repetions_left @@ -341,7 +341,7 @@ def calc_initial_para_configuration(self, initial_iterations, trial, repetitions raise ValueError('# Initialization samples >= Max # function evaluations.') starting_generator = ( - (rep, [self.np_random.randint(np.int(self.min_bound[j]), np.int(self.max_bound[j]) + 1) if + (rep, [self.np_random.randint(int(self.min_bound[j]), int(self.max_bound[j]) + 1) if discrete_flag[j] else self.min_bound[j] + parameter_bound_range[j] * self.np_random.rand() for j in range(number_of_parameters)]) for rep in range(int(initial_iterations))) @@ -351,7 +351,7 @@ def calc_initial_para_configuration(self, initial_iterations, trial, repetitions # status setting update if like > objectivefunction_max: objectivefunction_max = like - params_max = list(x_curr) + params_max = list(x_curr) params_max = self.fix_status_params_format(params_max) else: # now initial_iterations=1, using a user supplied initial solution. Calculate obj func value. @@ -396,7 +396,7 @@ def calculate_next_s_test(self, previous_x_curr, rep, rep_limit, r): new_x_curr[j] = new_value # change relevant dec var value in x_curr if dvn_count == 0: # no DVs selected at random, so select ONE - dec_var = np.int(np.ceil(amount_params * self.np_random.rand())) - 1 + dec_var = int(np.ceil(amount_params * self.np_random.rand())) - 1 new_value = self.dds_generator.neigh_value_mixed(previous_x_curr, r, dec_var, self.min_bound[dec_var], self.max_bound[dec_var]) new_x_curr[dec_var] = new_value # change relevant decision variable value in s_test diff --git a/src/spotpy/algorithms/nsgaii.py b/src/spotpy/algorithms/nsgaii.py index 1d6391fb..9b1ce9af 100644 --- a/src/spotpy/algorithms/nsgaii.py +++ b/src/spotpy/algorithms/nsgaii.py @@ -38,7 +38,7 @@ def calc(self,pop_rank): n_tournament,_ = P.shape - ret = np.full(n_tournament,-1,dtype=np.int) + ret = np.full(n_tournament,-1,dtype=int) for i in range(n_tournament): a,b = P[i] @@ -60,7 +60,7 @@ def random_permuations(n, l): class Crossover: - def __init__(self,crossProb=0.9): + def __init__(self,crossProb=0.9): self.crossProbThreshold = crossProb @@ -189,7 +189,7 @@ def fastSort(self,x): n = x.shape[0] S = np.zeros((n,n),dtype=bool) Np = np.zeros(n) - + for i in range(n): for j in range(n): @@ -207,11 +207,11 @@ def fastSort(self,x): # now nDom has been reduced by 1, so the next non-dominated front will be nDom == 0 # and Np == 0 ensure that we don't pass over the first ranked non-dom solutions Np[(nDom == 0) & (Np == 0) ] = k - + return Np.astype(int) - + def dominates(self,a,b): if len(a.shape) >1: ret = (np.sum(a <= b,axis =1) == a.shape[1]) & (np.sum(a < b,axis=1) >0) @@ -230,7 +230,7 @@ def crowdDist(self,x): ord = np.argsort(x,axis=0) X = x[ord,range(nobj)] - + dist = np.vstack([X,np.full(nobj,np.inf)]) - np.vstack([np.full(nobj,-np.inf),X]) norm = np.max(X,axis=0) - np.min(X,axis=0) @@ -243,7 +243,7 @@ def crowdDist(self,x): def crowdDist2(self,x): n = x.shape[0] - + dist = np.zeros(n) for obj in range(x.shape[1]): @@ -260,35 +260,35 @@ def crowdDist2(self,x): - def sample(self, generations, n_obj, n_pop = None, - selection = TournamentSelection(pressure=2), + def sample(self, generations, n_obj, n_pop = None, + selection = TournamentSelection(pressure=2), crossover = Crossover(crossProb=0.9), mutation = PolynomialMutation(prob_mut=0.25,eta_mut=30)): - + self.n_obj = n_obj self.selection = selection self.crossover = crossover self.mutation = mutation - + self.n_pop = n_pop self.generations= generations self.set_repetiton(self.generations*self.n_pop) self.skip_duplicates = True # False does not work yet Pt = np.vstack([self.parameter()['random'] for i in range(self.n_pop)]) - + #Burn-in #TODO: I would suggest to make the burin-in sample indiviudual for each cpu-core in case of parallel usage, compare dream.py, but not sure if this is defined in the publication # evaluate population param_generator = ((i,Pt[i,:]) for i in range(self.n_pop)) - + ret = list(self.repeat(param_generator)) - + Of = [] for p in range(self.n_pop): index,parameters,simulation_results = ret[p] - Of.append(self.postprocessing(0, parameters, simulation_results, chains=p)) - Of = np.vstack(Of) + Of.append(self.postprocessing(0, parameters, simulation_results, chains=p)) + Of = np.vstack(Of) nonDomRank = self.fastSort(Of) @@ -306,14 +306,14 @@ def sample(self, generations, n_obj, n_pop = None, Of_parent = Ofsort[:,:] Pt_parent = Ptsort[:,:] - + # selection offsprings = self.selection.calc(pop_rank = rank) Qt = Ptsort[offsprings,:] - + # crossover try: n_var = self.setup.n_var @@ -332,34 +332,34 @@ def sample(self, generations, n_obj, n_pop = None, self.varmaxbound = np.append(self.varmaxbound,self.max_bound[i]) Qt = self.mutation.calc(x = Qt,xl = self.varminbound,xu = self.varmaxbound) - + for igen in range(1,self.generations - 1): - Rt = np.vstack([Pt_parent,Qt]) + Rt = np.vstack([Pt_parent,Qt]) if self.skip_duplicates: - # evaluate population - param_generator = ((i,Qt[i,:]) for i in range(self.n_pop)) + # evaluate population + param_generator = ((i,Qt[i,:]) for i in range(self.n_pop)) ret = list(self.repeat(param_generator)) - + Of = [] for p in range(self.n_pop): index, parameters,simulation_results = ret[p] - Of.append(self.postprocessing(igen, parameters, simulation_results, chains=p)) - Of = np.vstack(Of) + Of.append(self.postprocessing(igen, parameters, simulation_results, chains=p)) + Of = np.vstack(Of) - Of = np.vstack([Of_parent ,Of]) + Of = np.vstack([Of_parent ,Of]) nonDomRank = self.fastSort(Of) - crDist = np.empty(len(Of)) + crDist = np.empty(len(Of)) for rk in range(1,np.max(nonDomRank)+1): crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank ==rk,:]) else: - + n_pop_combined = self.n_pop *2 # evaluate population param_generator = ((i,Rt[i,:]) for i in range( n_pop_combined )) @@ -367,22 +367,22 @@ def sample(self, generations, n_obj, n_pop = None, #import pdb;pdb.set_trace() ret = list(self.repeat(param_generator)) - + Of = [] for p in range(n_pop_combined): index, parameters,simulation_results = ret[p] - Of.append(self.postprocessing(igen, parameters, simulation_results, chains=p)) - Of = np.vstack(Of) + Of.append(self.postprocessing(igen, parameters, simulation_results, chains=p)) + Of = np.vstack(Of) nonDomRank = self.fastSort(Of) - crDist = np.empty(n_pop_combined) + crDist = np.empty(n_pop_combined) for rk in range(1,np.max(nonDomRank)+1): crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank ==rk,:]) - + # sorting - rank = np.lexsort((-crDist,nonDomRank))[:self.n_pop] + rank = np.lexsort((-crDist,nonDomRank))[:self.n_pop] Ptsort = Rt[rank] Ofsort = Of[rank] diff --git a/src/spotpy/algorithms/padds.py b/src/spotpy/algorithms/padds.py index ab861efe..49f66991 100644 --- a/src/spotpy/algorithms/padds.py +++ b/src/spotpy/algorithms/padds.py @@ -154,7 +154,7 @@ def calculate_initial_parameterset(self, repetitions, initial_objs, initial_para raise ValueError("User specified 'initial_objs' and 'initial_params' have no equal length") if len(initial_objs) == 0: - initial_iterations = np.int(np.max([5, round(0.005 * repetitions)])) + initial_iterations = int(np.max([5, round(0.005 * repetitions)])) self.calc_initial_pareto_front(initial_iterations) elif initial_params.shape[1] != self.number_of_parameters: raise ValueError("User specified 'initial_params' has not the same length as available parameters") @@ -192,7 +192,7 @@ def sample(self, repetitions, trials=1, initial_objs=np.array([]), initial_param if metric == "hvc": self.hvc = HVC(np_random=self.np_random) - + self.min_bound, self.max_bound = self.parameter()['minbound'], self.parameter()['maxbound'] # Users can define trial runs in within "repetition" times the algorithm will be executed @@ -312,7 +312,7 @@ def calculate_next_s_test(self, previous_x_curr, rep, rep_limit, r): if dvn_count == 0: # no DVs selected at random, so select ONE - dec_var = np.int(np.ceil(amount_params * self.np_random.rand())) + dec_var = int(np.ceil(amount_params * self.np_random.rand())) new_value = self.dds_generator.neigh_value_mixed(previous_x_curr, r, dec_var - 1, self.min_bound[dec_var - 1],self.max_bound[dec_var - 1]) new_x_curr[dec_var - 1] = new_value # change relevant decision variable value in s_test diff --git a/src/spotpy/database/ram.py b/src/spotpy/database/ram.py index 34333ef8..d1825ef5 100644 --- a/src/spotpy/database/ram.py +++ b/src/spotpy/database/ram.py @@ -41,7 +41,7 @@ def finalize(self): the same structure as a csv database. """ dt = {'names': self.header, - 'formats': [np.float] * len(self.header)} + 'formats': [float] * len(self.header)} i = 0 Y = np.zeros(len(self.ram), dtype=dt) diff --git a/tests/test_dds.py b/tests/test_dds.py index da6b0df5..43dd2775 100644 --- a/tests/test_dds.py +++ b/tests/test_dds.py @@ -61,7 +61,7 @@ def randint(self,x_from,x_to): fraq = 1. / vals_size if self.uniform_counter < self.max_uniform_counter: q_uni = self.uniform_list[self.uniform_counter] - pos = np.int(np.floor(q_uni / fraq)) + pos = int(np.floor(q_uni / fraq)) self.uniform_counter += 1 if self.debug: print("fixrand::randint() counter = " + str(self.uniform_counter)) diff --git a/tests/test_likelihood.py b/tests/test_likelihood.py index b07f7beb..9de6d72f 100644 --- a/tests/test_likelihood.py +++ b/tests/test_likelihood.py @@ -36,39 +36,39 @@ def setUp(self): def test_logLikelihood(self): l_normal = spotpy.likelihoods.logLikelihood(self.normal_data, self.normal_comparedata) self.assertGreaterEqual(np.abs(l_normal), 900) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("logLikelihood: " + str(l_normal)) l_binom = spotpy.likelihoods.logLikelihood(self.binom_data, self.binom_comparedata) self.assertGreaterEqual(np.abs(l_binom), 900) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("logLikelihood: " + str(l_binom)) def test_gaussianLikelihoodMeasErrorOut(self): l_normal = spotpy.likelihoods.gaussianLikelihoodMeasErrorOut(self.normal_data, self.normal_comparedata) self.assertGreaterEqual(-40, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("gaussianLikelihoodMeasErrorOut: " + str(l_normal)) l_binom = spotpy.likelihoods.gaussianLikelihoodMeasErrorOut(self.binom_data, self.binom_comparedata) self.assertGreaterEqual(-40, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("gaussianLikelihoodMeasErrorOut: " + str(l_binom)) def test_gaussianLikelihoodHomoHeteroDataError(self): l_normal = spotpy.likelihoods.gaussianLikelihoodHomoHeteroDataError(self.normal_data, self.normal_comparedata) self.assertGreaterEqual(5, np.abs(l_normal)) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("gaussianLikelihoodHomoHeteroDataError: " + str(l_normal)) l_binom = spotpy.likelihoods.gaussianLikelihoodHomoHeteroDataError(self.binom_data, self.binom_comparedata) self.assertGreaterEqual(10, np.abs(l_binom)) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("gaussianLikelihoodHomoHeteroDataError: " + str(l_binom)) @@ -149,7 +149,7 @@ def test_generalizedLikelihoodFunction(self): for l_normal in l_normal_list: self.assertNotEqual(None, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("generalizedLikelihoodFunction: " + str(l_normal)) @@ -157,33 +157,33 @@ def test_generalizedLikelihoodFunction(self): self.assertNotEqual(None, l_binom) self.assertGreaterEqual(-10000, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("generalizedLikelihoodFunction: " + str(l_binom)) def test_LaplacianLikelihood(self): l_normal = spotpy.likelihoods.LaplacianLikelihood(self.normal_data, self.normal_comparedata) self.assertNotEqual(None, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("LaplacianLikelihood: " + str(l_normal)) l_binom = spotpy.likelihoods.LaplacianLikelihood(self.binom_data, self.binom_comparedata) self.assertNotEqual(None, l_normal) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("LaplacianLikelihood: " + str(l_binom)) def test_SkewedStudentLikelihoodHomoscedastic(self): l_normal = spotpy.likelihoods.SkewedStudentLikelihoodHomoscedastic(self.normal_data, self.normal_comparedata) self.assertGreaterEqual(12, np.abs(l_normal)) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("SkewedStudentLikelihoodHomoscedastic: " + str(l_normal)) l_binom = spotpy.likelihoods.SkewedStudentLikelihoodHomoscedastic(self.binom_data, self.binom_comparedata) self.assertGreaterEqual(17, np.abs(l_binom)) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("SkewedStudentLikelihoodHomoscedastic: " + str(l_binom)) @@ -214,14 +214,14 @@ def test_SkewedStudentLikelihoodHeteroscedastic(self): for l_normal in l_normal_list: if not np.isnan(l_normal): self.assertGreaterEqual(-100, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("SkewedStudentLikelihoodHeteroscedastic: " + str(l_normal)) l_binom = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(self.binom_data, self.binom_comparedata) if not np.isnan(l_binom): self.assertGreaterEqual(-100, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("SkewedStudentLikelihoodHeteroscedastic: " + str(l_binom)) @@ -247,7 +247,7 @@ def test_SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(self): for l_normal in l_normal_list: self.assertNotEqual(None, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("SkewedStudentLikelihoodHeteroscedasticAdvancedARModel: " + str(l_normal)) @@ -255,21 +255,21 @@ def test_SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(self): self.normal_data, self.normal_comparedata) self.assertNotEqual(None, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("SkewedStudentLikelihoodHeteroscedasticAdvancedARModel: " + str(l_binom)) def test_NoisyABCGaussianLikelihood(self): l_normal = spotpy.likelihoods.NoisyABCGaussianLikelihood(self.normal_data, self.normal_comparedata) self.assertNotEqual(None, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("NoisyABCGaussianLikelihood: " + str(l_normal)) l_binom = spotpy.likelihoods.NoisyABCGaussianLikelihood(self.binom_data, self.binom_data, measerror=[0.0]) self.assertNotEqual(None, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("NoisyABCGaussianLikelihood: " + str(l_binom)) @@ -277,14 +277,14 @@ def test_ABCBoxcarLikelihood(self): l_normal = spotpy.likelihoods.ABCBoxcarLikelihood(self.normal_data, self.normal_comparedata) self.assertNotEqual(None, l_normal) self.assertNotEqual(np.nan, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("ABCBoxcarLikelihood: " + str(l_normal)) l_binom = spotpy.likelihoods.ABCBoxcarLikelihood(self.binom_data, self.binom_comparedata) self.assertNotEqual(None, l_binom) self.assertNotEqual(np.nan, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("ABCBoxcarLikelihood: " + str(l_binom)) @@ -292,40 +292,40 @@ def test_LimitsOfAcceptability(self): l_normal = spotpy.likelihoods.LimitsOfAcceptability(self.normal_data, self.normal_comparedata) self.assertEqual(12, l_normal) self.assertNotEqual(None, l_normal) - self.assertEqual(type(np.int(l_normal)), type(int(1))) + self.assertEqual(type(int(l_normal)), type(int(1))) if self.do_print: print("LimitsOfAcceptability: " + str(l_normal)) l_binom = spotpy.likelihoods.LimitsOfAcceptability(self.binom_data, self.binom_comparedata) self.assertEqual(5, l_binom) self.assertNotEqual(None, l_binom) - self.assertEqual(type(np.int(l_binom)), type(int(1))) + self.assertEqual(type(int(l_binom)), type(int(1))) if self.do_print: print("LimitsOfAcceptability: " + str(l_binom)) def test_InverseErrorVarianceShapingFactor(self): l_normal = spotpy.likelihoods.InverseErrorVarianceShapingFactor(self.normal_data, self.normal_comparedata) self.assertGreaterEqual(-10, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("inverseErrorVarianceShapingFactor: " + str(l_normal)) l_binom = spotpy.likelihoods.InverseErrorVarianceShapingFactor(self.binom_data, self.binom_comparedata) self.assertGreaterEqual(-10, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("inverseErrorVarianceShapingFactor: " + str(l_binom)) def test_ExponentialTransformErrVarShapingFactor(self): l_binom = spotpy.likelihoods.ExponentialTransformErrVarShapingFactor(self.binom_data, self.binom_comparedata) self.assertGreaterEqual(-30, l_binom) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("inverseErrorVarianceShapingFactor: " + str(l_binom)) l_gauss = spotpy.likelihoods.ExponentialTransformErrVarShapingFactor(self.normal_data, self.normal_comparedata) self.assertGreaterEqual(-30, l_gauss) - self.assertEqual(type(np.float(l_gauss)), type(np.float(1))) + self.assertEqual(type(float(l_gauss)), type(float(1))) if self.do_print: print("inverseErrorVarianceShapingFactor: " + str(l_gauss)) @@ -353,20 +353,20 @@ def test_NashSutcliffeEfficiencyShapingFactor(self): for l_normal in l_normal_list: self.assertNotEqual(None, l_normal) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("NashSutcliffeEfficiencyShapingFactor: " + str(l_normal)) def test_sumOfAbsoluteErrorResiduals(self): l_normal = spotpy.likelihoods.sumOfAbsoluteErrorResiduals(self.normal_data, self.normal_comparedata) self.assertGreaterEqual(7, np.abs(np.abs(l_normal) - 10)) - self.assertEqual(type(np.float(l_normal)), type(np.float(1))) + self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("sumOfAbsoluteErrorResiduals: " + str(l_normal)) l_binom = spotpy.likelihoods.sumOfAbsoluteErrorResiduals(self.binom_data, self.binom_comparedata) self.assertGreaterEqual(7, np.abs(np.abs(l_binom) - 10)) - self.assertEqual(type(np.float(l_binom)), type(np.float(1))) + self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("sumOfAbsoluteErrorResiduals: " + str(l_binom)) diff --git a/tests/test_signatures.py b/tests/test_signatures.py index 802c2638..7db943d3 100644 --- a/tests/test_signatures.py +++ b/tests/test_signatures.py @@ -23,7 +23,7 @@ def setUp(self): np.random.seed(0) rain = np.random.normal(-1, 5, size=3650) rain[rain < 0] = 0.0 - runoff = np.zeros(rain.shape, np.float) + runoff = np.zeros(rain.shape, float) stor = 0.0 for i, prec in enumerate(rain): runoff[i] = 0.1 * stor From bcdb719567bb31d5b62cb2fde94225c615544742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 1 Jul 2022 10:37:19 +0200 Subject: [PATCH 18/34] tests: cleanup to really test what should be tested - a installed version of the package --- tests/__init__.py | 2 - tests/test_algorithms.py | 12 +--- tests/test_analyser.py | 1 - tests/test_dds.py | 8 +-- tests/test_describe.py | 3 - tests/test_fast.py | 9 +-- tests/test_gui_mpl.py | 57 ++++++++++++++---- tests/test_likelihood.py | 10 +--- ...t_and_constant_parameters_with_samplers.py | 8 +-- tests/test_objectivefunctions.py | 6 -- tests/test_parallel.py | 4 +- tests/test_parameter.py | 60 ++++++++++++------- tests/test_setup_parameters.py | 10 +--- tests/test_signatures.py | 9 +-- tests/testutils.py | 29 --------- 15 files changed, 96 insertions(+), 132 deletions(-) delete mode 100644 tests/__init__.py delete mode 100644 tests/testutils.py diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index 5156db42..00000000 --- a/tests/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from . import testutils -from . import test_setup_parameters \ No newline at end of file diff --git a/tests/test_algorithms.py b/tests/test_algorithms.py index 3a565496..74a16f7b 100644 --- a/tests/test_algorithms.py +++ b/tests/test_algorithms.py @@ -6,13 +6,7 @@ ''' import unittest -try: - import spotpy -except ImportError: - import sys - sys.path.append(".") - import spotpy -#from spotpy.examples.tutorial_padds import padds_spot_setup +import spotpy from spotpy.examples.spot_setup_rosenbrock import spot_setup from spotpy.examples.spot_setup_hymod_python import spot_setup as spot_setup_hymod from spotpy.describe import describe @@ -107,7 +101,7 @@ def test_sa(self): sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) - + def test_list(self): #generate a List sampler input sampler=spotpy.algorithms.mc(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat='csv', sim_timeout=self.timeout) @@ -136,7 +130,7 @@ def test_nsgaii(self): sampler=spotpy.algorithms.NSGAII(spot_setup_hymod(self.multi_obj_func),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) sampler.sample(generations, n_obj= 3, n_pop = n_pop) results = sampler.getdata() - self.assertLessEqual(len(results), generations*n_pop) + self.assertLessEqual(len(results), generations*n_pop) @classmethod def tearDownClass(cls): diff --git a/tests/test_analyser.py b/tests/test_analyser.py index 70b5ff88..9d4e265e 100644 --- a/tests/test_analyser.py +++ b/tests/test_analyser.py @@ -15,7 +15,6 @@ import numpy as np import spotpy.analyser import os -import sys from spotpy.examples.spot_setup_rosenbrock import spot_setup as rosenbrock_setup from spotpy.examples.spot_setup_griewank import spot_setup as griewank_setup from spotpy.examples.spot_setup_hymod_python import spot_setup as hymod_setup diff --git a/tests/test_dds.py b/tests/test_dds.py index 43dd2775..c9b924cc 100644 --- a/tests/test_dds.py +++ b/tests/test_dds.py @@ -6,15 +6,9 @@ ''' import unittest -import sys import numpy as np -try: - import spotpy -except ImportError: - sys.path.append(".") - import spotpy - +import spotpy import os from spotpy.examples.spot_setup_dds import spot_setup import json diff --git a/tests/test_describe.py b/tests/test_describe.py index 79e89060..acca995c 100644 --- a/tests/test_describe.py +++ b/tests/test_describe.py @@ -4,10 +4,7 @@ This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' - -import sys import unittest -sys.path.insert(0, '.') import spotpy from spotpy.parameter import Uniform diff --git a/tests/test_fast.py b/tests/test_fast.py index 060a362e..00199941 100644 --- a/tests/test_fast.py +++ b/tests/test_fast.py @@ -6,14 +6,7 @@ ''' import unittest -import sys - -try: - import spotpy -except ImportError: - sys.path.append(".") - import spotpy - +import spotpy from spotpy.examples.spot_setup_hymod_python import spot_setup diff --git a/tests/test_gui_mpl.py b/tests/test_gui_mpl.py index 56061fa3..0d4926fb 100644 --- a/tests/test_gui_mpl.py +++ b/tests/test_gui_mpl.py @@ -11,38 +11,73 @@ import sys +from spotpy.gui.mpl import GUI +from spotpy import parameter +import numpy as np +import inspect -sys.path.append(".") -try: - import spotpy -except ImportError: - import spotpy +class SpotSetupBase(object): + """ + The base for a number of test cases. + Each Test case should have for parameters a,b,c,d and + the sum of the parameters should be zero + """ -from spotpy.gui.mpl import GUI -from .test_setup_parameters import SpotSetupMixedParameterFunction as Setup + def simulation(self, par): + return [par.a + par.b + par.c + par.d] + + def evaluation(self): + return [0] + + def objectivefunction(self, simulation, evaluation): + return np.abs(simulation[0] - evaluation[0]) + + @classmethod + def get_derived(cls): + """ + Returns a list of all derived classes in this module + """ + module = sys.modules[__name__] + def predicate(mcls): + return inspect.isclass(mcls) and issubclass(mcls, cls) and mcls is not cls + return [mcls for cname, mcls in inspect.getmembers(module, predicate)] + + def __repr__(self): + return '{}()'.format(type(self).__name__) + + +class SpotSetupMixedParameterFunction(SpotSetupBase): + """ + A Test case with two parameters as class parameters (a,b) + and 2 given from the parameter function + """ + a = parameter.Uniform(0, 1) + b = parameter.Uniform(1, 2) + def parameters(self): + return parameter.generate([parameter.Uniform(name, -1, 1) for name in 'cd']) class TestGuiMpl(unittest.TestCase): def test_setup(self): - setup = Setup() + setup = SpotSetupMixedParameterFunction() with GUI(setup) as gui: self.assertTrue(hasattr(gui, 'setup')) def test_sliders(self): - setup = Setup() + setup = SpotSetupMixedParameterFunction() with GUI(setup) as gui: self.assertEqual(len(gui.sliders), 4) def test_clear(self): - setup = Setup() + setup = SpotSetupMixedParameterFunction() with GUI(setup) as gui: gui.clear() self.assertEqual(len(gui.lines), 1) def test_run(self): - setup = Setup() + setup = SpotSetupMixedParameterFunction() with GUI(setup) as gui: gui.clear() gui.run() diff --git a/tests/test_likelihood.py b/tests/test_likelihood.py index 9de6d72f..976c6c03 100644 --- a/tests/test_likelihood.py +++ b/tests/test_likelihood.py @@ -8,15 +8,7 @@ """ import numpy as np - -try: - import spotpy -except ImportError: - import sys - - sys.path.append(".") - import spotpy - +import spotpy import unittest from spotpy.likelihoods import LikelihoodError diff --git a/tests/test_list_and_constant_parameters_with_samplers.py b/tests/test_list_and_constant_parameters_with_samplers.py index 744c22d3..16751000 100644 --- a/tests/test_list_and_constant_parameters_with_samplers.py +++ b/tests/test_list_and_constant_parameters_with_samplers.py @@ -7,13 +7,7 @@ import unittest import numpy as np import inspect -try: - import spotpy -except ImportError: - import sys - sys.path.append(".") - import spotpy - +import spotpy from spotpy import parameter from spotpy.objectivefunctions import rmse from itertools import cycle diff --git a/tests/test_objectivefunctions.py b/tests/test_objectivefunctions.py index ac8b29d9..6c3cb6a4 100644 --- a/tests/test_objectivefunctions.py +++ b/tests/test_objectivefunctions.py @@ -5,12 +5,6 @@ ''' import unittest -try: - import spotpy -except ImportError: - import sys - sys.path.append(".") - import spotpy from spotpy import objectivefunctions as of import numpy as np diff --git a/tests/test_parallel.py b/tests/test_parallel.py index 58868643..4848d269 100644 --- a/tests/test_parallel.py +++ b/tests/test_parallel.py @@ -7,10 +7,8 @@ import unittest import spotpy -import numpy as np from spotpy.examples.spot_setup_rosenbrock import spot_setup -from spotpy.describe import describe -import os + class TestParallel(unittest.TestCase): @classmethod diff --git a/tests/test_parameter.py b/tests/test_parameter.py index 87e45fdd..f05d0362 100644 --- a/tests/test_parameter.py +++ b/tests/test_parameter.py @@ -5,19 +5,35 @@ ''' import unittest -import sys -try: - import spotpy -except ImportError: - sys.path.append(".") - import spotpy +import spotpy from spotpy import parameter import numpy as np # Import inspect to scan spotpy.parameter for all Parameter classes import inspect -from .testutils import repeat -# https://docs.python.org/3/library/unittest.html + + +def repeat(times): + """Repeats a single test the given number of times + + Usage: + @repeat(5) + def test_foo(self): + self.assertTrue(self.bar == self.baz) + + The above test will execute 5 times + + Reference: https://stackoverflow.com/a/13606054/4014685 + """ + def repeatHelper(f): + def func_repeat_executor(*args, **kwargs): + for i in range(0, times): + f(*args, **kwargs) + args[0].setUp() + + return func_repeat_executor + + return repeatHelper class TestListParameterDistribution(unittest.TestCase): @@ -196,9 +212,9 @@ def test_chisq_processes_non_keyword_args(self): @repeat(5) def test_chisq_has_correct_statistics(self): nums = [self.chisq() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), self.df, self.tolerance, + self.assertAlmostEqual(np.mean(nums), self.df, self.tolerance, "Mean of Chisquare({df}) should be {df}".format(df=self.df)) - self.assertAlmostEqual(np.std(nums), np.sqrt(2*self.df), self.tolerance, + self.assertAlmostEqual(np.std(nums), np.sqrt(2*self.df), self.tolerance, "SD of Chisquare({df}) should be sqrt(2*{df})".format(df=self.df)) @@ -219,9 +235,9 @@ def test_exp_processes_non_keyword_args(self): @repeat(5) def test_exp_has_correct_statistics(self): nums = [self.exp() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), self.beta, self.tolerance, + self.assertAlmostEqual(np.mean(nums), self.beta, self.tolerance, "Mean of Exponential({beta}) should be {beta}".format(beta=self.beta)) - self.assertAlmostEqual(np.std(nums), self.beta, self.tolerance, + self.assertAlmostEqual(np.std(nums), self.beta, self.tolerance, "SD of Exponential({beta}) should be {beta}".format(beta=self.beta)) @@ -245,9 +261,9 @@ def test_gamma_has_correct_statistics(self): nums = [self.gamma() for _ in range(10000)] expected_mean = self.shape*self.scale expected_sd = np.sqrt(self.shape*self.scale*self.scale) - self.assertAlmostEqual(np.mean(nums), expected_mean, self.tolerance, + self.assertAlmostEqual(np.mean(nums), expected_mean, self.tolerance, "Mean of Gamma({}, {}) should be {}".format(self.shape, self.scale, expected_mean)) - self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, + self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, "SD of Gamma({}, {}) should be {}".format(self.shape, self.scale, expected_sd)) @@ -269,9 +285,9 @@ def test_wald_processes_non_keyword_args(self): def test_wald_has_correct_statistics(self): nums = [self.wald() for _ in range(40000)] expected_sd = np.sqrt(self.mean**3 / self.scale) - self.assertAlmostEqual(np.mean(nums), self.mean, self.tolerance, + self.assertAlmostEqual(np.mean(nums), self.mean, self.tolerance, "Mean of Wald({}, {}) should be {}".format(self.mean, self.scale, self.mean)) - self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, + self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, "SD of Wald({}, {}) should be {}".format(self.mean, self.scale, expected_sd)) @@ -291,9 +307,9 @@ def test_weibull_processes_non_keyword_args(self): def test_weibull_has_correct_statistics(self): nums = [self.weibull() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), 0.918169, self.tolerance, + self.assertAlmostEqual(np.mean(nums), 0.918169, self.tolerance, "Mean of Weibull({}) should be {}".format(self.a, 0.918169)) - self.assertAlmostEqual(np.std(nums), 0.0442300, self.tolerance, + self.assertAlmostEqual(np.std(nums), 0.0442300, self.tolerance, "SD of Weibull({}) should be {}".format(self.a, 0.0442300)) @@ -312,10 +328,10 @@ def test_triangular_has_correct_statistics(self): nums = [self.triangular() for _ in range(10000)] expected_mean = (self.a + self.b + self.c) / 3 expected_sd = np.sqrt((self.a**2 + self.b**2 + self.c**2 - self.a*self.c - self.a*self.b - self.b*self.c)/18) - self.assertAlmostEqual(np.mean(nums), expected_mean, self.tolerance, + self.assertAlmostEqual(np.mean(nums), expected_mean, self.tolerance, "Mean of Triangular({}, {}, {}) should be {}" .format(self.a, self.c, self.b, expected_mean)) - self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, + self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, "SD of Triangular({}, {}, {}) should be {}" .format(self.a, self.c, self.b, expected_sd)) @@ -379,12 +395,12 @@ def make_args(pcls): def get_classes(): """ Get all classes from spotpy.parameter module, except special cases - """ + """ def predicate(cls): return (inspect.isclass(cls) and cls not in [parameter.Base, parameter.List] and issubclass(cls, parameter.Base)) - + return [[cname, cls] for cname, cls in inspect.getmembers(parameter, predicate) diff --git a/tests/test_setup_parameters.py b/tests/test_setup_parameters.py index 0f89ce4f..c3a49e92 100644 --- a/tests/test_setup_parameters.py +++ b/tests/test_setup_parameters.py @@ -8,11 +8,7 @@ ''' import sys import unittest -try: - import spotpy -except ImportError: - sys.path.append(".") - import spotpy +import spotpy from spotpy import parameter import numpy as np import inspect @@ -193,10 +189,10 @@ def test_parameter_function(self): def test_parameter_list(self): self.parameter_count_test(SpotSetupParameterList()) - + def test_parameter_mixed_list(self): self.parameter_count_test(SpotSetupMixedParameterList()) - + def test_parameter_mixed_function(self): self.parameter_count_test(SpotSetupMixedParameterFunction()) diff --git a/tests/test_signatures.py b/tests/test_signatures.py index 7db943d3..92bbc21f 100644 --- a/tests/test_signatures.py +++ b/tests/test_signatures.py @@ -6,15 +6,8 @@ import unittest import numpy as np -try: - import spotpy -except ImportError: - import sys - sys.path.append(".") - import spotpy - from spotpy.hydrology.signatures import SignatureMethod -import spotpy.hydrology as sig + class TestSignatures(unittest.TestCase): diff --git a/tests/testutils.py b/tests/testutils.py deleted file mode 100644 index 2cfd67ef..00000000 --- a/tests/testutils.py +++ /dev/null @@ -1,29 +0,0 @@ -''' -Copyright (c) 2018 by Tobias Houska -This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). -:author: Tobias Houska, Benjamin Manns - -Utility functions for unit test execution -''' - -def repeat(times): - """Repeats a single test the given number of times - - Usage: - @repeat(5) - def test_foo(self): - self.assertTrue(self.bar == self.baz) - - The above test will execute 5 times - - Reference: https://stackoverflow.com/a/13606054/4014685 - """ - def repeatHelper(f): - def func_repeat_executor(*args, **kwargs): - for i in range(0, times): - f(*args, **kwargs) - args[0].setUp() - - return func_repeat_executor - - return repeatHelper From 99d377e20ecc31b17ab8d589120dcf177f47ef88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 1 Jul 2022 12:53:26 +0200 Subject: [PATCH 19/34] tests: remove unused imports --- tests/test_analyser.py | 1 + tests/test_database.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_analyser.py b/tests/test_analyser.py index 9d4e265e..3f0f6259 100644 --- a/tests/test_analyser.py +++ b/tests/test_analyser.py @@ -20,6 +20,7 @@ from spotpy.examples.spot_setup_hymod_python import spot_setup as hymod_setup from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike + class TestAnalyser(unittest.TestCase): @classmethod def setUpClass(self): diff --git a/tests/test_database.py b/tests/test_database.py index 08a9d509..0a493d75 100644 --- a/tests/test_database.py +++ b/tests/test_database.py @@ -7,7 +7,6 @@ import unittest import os import glob -import spotpy import spotpy.database as db import numpy as np From 488f6f55036015d533dcfd2b70955fea7de04dc1 Mon Sep 17 00:00:00 2001 From: thouska Date: Wed, 6 Jul 2022 14:47:07 +0200 Subject: [PATCH 20/34] Introduce the missing Tokens --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c5270fd..e91f9cac 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ on: env: # needed by coveralls - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.COVERALLS_TOKEN }} jobs: source_check: @@ -100,7 +100,7 @@ jobs: # uses: pypa/gh-action-pypi-publish@release/v1 # with: # user: __token__ - # password: ${{ secrets.PYPI_API_TOKEN }} + # password: ${{ secrets.PYPI_TEST_TOKEN }} # repository_url: https://test.pypi.org/legacy/ # skip_existing: true @@ -110,4 +110,4 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} + password: ${{ secrets.PYPI_TOKEN }} From 2a2b103a996c013a5daf2d04638fafb04667c5e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 8 Jul 2022 14:30:17 +0200 Subject: [PATCH 21/34] MANIFEST: include tutorials in sdist --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 5a670088..1d90975e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,4 +2,5 @@ prune ** recursive-include tests *.py recursive-include src/spotpy *.py recursive-include src/spotpy/examples * +recursive-include tutorials include LICENSE README.md pyproject.toml setup.py From 6ac208a34f0b9f8c7527c25fca7e197b2eb8ed25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 8 Jul 2022 14:37:49 +0200 Subject: [PATCH 22/34] apply isort --- src/spotpy/__init__.py | 32 +++++++++++++------ src/spotpy/algorithms/__init__.py | 32 ++++++++++--------- src/spotpy/algorithms/_algorithm.py | 10 +++--- src/spotpy/algorithms/abc.py | 6 ++-- src/spotpy/algorithms/dds.py | 4 ++- src/spotpy/algorithms/demcz.py | 3 +- src/spotpy/algorithms/dream.py | 6 ++-- src/spotpy/algorithms/fast.py | 6 ++-- src/spotpy/algorithms/fscabc.py | 6 ++-- src/spotpy/algorithms/lhs.py | 7 ++-- src/spotpy/algorithms/list_sampler.py | 4 ++- src/spotpy/algorithms/mc.py | 1 + src/spotpy/algorithms/mcmc.py | 6 ++-- src/spotpy/algorithms/mle.py | 2 +- src/spotpy/algorithms/nsgaii.py | 7 ++-- src/spotpy/algorithms/padds.py | 11 ++++--- src/spotpy/algorithms/rope.py | 6 ++-- src/spotpy/algorithms/sa.py | 3 +- src/spotpy/algorithms/sceua.py | 3 +- src/spotpy/analyser.py | 6 ++-- src/spotpy/cli.py | 6 ++-- src/spotpy/database/base.py | 7 ++-- src/spotpy/database/csv.py | 9 ++++-- src/spotpy/database/hdf5.py | 2 ++ src/spotpy/database/ram.py | 4 ++- src/spotpy/database/sql.py | 6 ++-- src/spotpy/describe.py | 7 ++-- .../hymod_unix/hymod_cython/hymod.pyx | 5 +-- src/spotpy/examples/spot_setup_ackley.py | 2 ++ src/spotpy/examples/spot_setup_cmf1d.py | 7 ++-- src/spotpy/examples/spot_setup_cmf_lumped.py | 4 +-- src/spotpy/examples/spot_setup_dds.py | 5 +-- src/spotpy/examples/spot_setup_dtlz1.py | 5 ++- src/spotpy/examples/spot_setup_griewank.py | 2 ++ src/spotpy/examples/spot_setup_hymod_exe.py | 10 ++++-- .../examples/spot_setup_hymod_python.py | 8 +++-- .../spot_setup_hymod_python_pareto.py | 7 ++-- src/spotpy/examples/spot_setup_hymod_unix.py | 8 +++-- src/spotpy/examples/spot_setup_rosenbrock.py | 4 ++- .../examples/spot_setup_standardnormal.py | 1 + src/spotpy/gui/mpl.py | 9 +++--- src/spotpy/hydrology/signatures.py | 3 +- src/spotpy/likelihoods.py | 3 +- src/spotpy/objectivefunctions.py | 4 ++- src/spotpy/parameter.py | 9 +++--- tests/test_algorithms.py | 13 ++++---- tests/test_analyser.py | 12 ++++--- tests/test_cli.py | 8 ++--- tests/test_database.py | 8 +++-- tests/test_dds.py | 5 +-- tests/test_describe.py | 4 +-- tests/test_fast.py | 1 + tests/test_gui_mpl.py | 9 ++++-- tests/test_likelihood.py | 5 +-- ...t_and_constant_parameters_with_samplers.py | 6 ++-- tests/test_objectivefunctions.py | 4 ++- tests/test_parallel.py | 1 + tests/test_parameter.py | 9 +++--- tests/test_setup_parameters.py | 6 ++-- tests/test_signatures.py | 2 ++ tutorials/3dplot.py | 11 +++---- tutorials/cli_hymod.py | 1 - tutorials/dds/benchmark_dds.py | 10 +++--- tutorials/dds/dds_parallel.py | 9 +++--- tutorials/dds/dds_parallel_plot.py | 6 ++-- tutorials/dds/dds_parallel_run.py | 3 +- tutorials/getting_started.py | 7 ++-- tutorials/gui_hymod.py | 4 +-- tutorials/plot_nsgaii_tutorial.py | 7 ++-- tutorials/tutorial_Parameterlist_iterator.py | 1 + tutorials/tutorial_ackley.py | 1 - tutorials/tutorial_cmf_lumped.py | 6 ++-- tutorials/tutorial_dds_hymod.py | 3 +- tutorials/tutorial_dream_hymod.py | 10 +++--- tutorials/tutorial_fast_hymod.py | 5 +-- tutorials/tutorial_griewank.py | 1 - tutorials/tutorial_likelihood.py | 13 ++++---- tutorials/tutorial_listsampler.py | 1 - tutorials/tutorial_nsgaii.py | 6 ++-- tutorials/tutorial_nsgaii_dltz1.py | 9 +++--- tutorials/tutorial_own_database.py | 1 + tutorials/tutorial_padds_hymod.py | 4 ++- tutorials/tutorial_rosenbrock.py | 4 +-- tutorials/tutorial_sceua_hymod.py | 4 +-- tutorials/tutorial_signatures.py | 7 ++-- 85 files changed, 319 insertions(+), 206 deletions(-) diff --git a/src/spotpy/__init__.py b/src/spotpy/__init__.py index cb61b2de..f9e62400 100644 --- a/src/spotpy/__init__.py +++ b/src/spotpy/__init__.py @@ -31,15 +31,29 @@ Please cite our paper, if you are using SPOTPY. ''' -from . import database # Writes the results of the sampler in a user defined output file -from . import algorithms # Contains all the different algorithms implemented in SPOTPY -from . import parameter # Contains different distributions to describe the prior information for every model parameter -from . import analyser # Contains some examples to analyse the results of the different algorithms -from . import objectivefunctions # Quantifies goodness of fit between simulation and evaluation data with objective functions -from . import likelihoods # Quantifies goodness of fit between simulation and evaluation data with likelihood functions -from . import examples # Contains tutorials how to use SPOTPY -from . import describe # Contains some helper functions to describe samplers and set-ups -from .hydrology import signatures # Quantifies goodness of fit between simulation and evaluation data with hydrological signatures +from . import algorithms # Contains all the different algorithms implemented in SPOTPY +from . import ( + analyser, # Contains some examples to analyse the results of the different algorithms +) +from . import ( + database, # Writes the results of the sampler in a user defined output file +) +from . import ( + describe, # Contains some helper functions to describe samplers and set-ups +) +from . import examples # Contains tutorials how to use SPOTPY +from . import ( + likelihoods, # Quantifies goodness of fit between simulation and evaluation data with likelihood functions +) +from . import ( + objectivefunctions, # Quantifies goodness of fit between simulation and evaluation data with objective functions +) +from . import ( + parameter, # Contains different distributions to describe the prior information for every model parameter +) +from .hydrology import ( + signatures, # Quantifies goodness of fit between simulation and evaluation data with hydrological signatures +) try: from ._version import __version__ diff --git a/src/spotpy/algorithms/__init__.py b/src/spotpy/algorithms/__init__.py index 2de3ea62..57bb0753 100644 --- a/src/spotpy/algorithms/__init__.py +++ b/src/spotpy/algorithms/__init__.py @@ -18,19 +18,21 @@ from ._algorithm import _algorithm -from .demcz import demcz # Differential Evolution Markov Chain -from .lhs import lhs # Latin Hypercube Sampling -from .mcmc import mcmc # Metropolis Markov Chain Monte Carlo -from .mle import mle # Maximum Likelihood Estimation -from .mc import mc # Monte Carlo -from .sceua import sceua # Shuffled Complex Evolution -from .sa import sa # Simulated annealing -from .rope import rope # RObust Parameter Estimation -from .fast import fast # Fourier Amplitude Sensitivity Test -from .abc import abc # Artificial Bee Colony -from .fscabc import fscabc # Fitness Scaling Artificial Bee Colony -from .dream import dream # DiffeRential Evolution Adaptive Metropolis -from .nsgaii import NSGAII # A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II +from .abc import abc # Artificial Bee Colony +from .dds import dds # Dynamically Dimensioned Search algorithm +from .demcz import demcz # Differential Evolution Markov Chain +from .dream import dream # DiffeRential Evolution Adaptive Metropolis +from .fast import fast # Fourier Amplitude Sensitivity Test +from .fscabc import fscabc # Fitness Scaling Artificial Bee Colony +from .lhs import lhs # Latin Hypercube Sampling from .list_sampler import list_sampler # Samples from given spotpy database -from .dds import dds # Dynamically Dimensioned Search algorithm -from .padds import padds # Pareto Archived - Dynamicallly Dimensioned Search algorithm \ No newline at end of file +from .mc import mc # Monte Carlo +from .mcmc import mcmc # Metropolis Markov Chain Monte Carlo +from .mle import mle # Maximum Likelihood Estimation +from .nsgaii import ( + NSGAII, # A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II +) +from .padds import padds # Pareto Archived - Dynamicallly Dimensioned Search algorithm +from .rope import rope # RObust Parameter Estimation +from .sa import sa # Simulated annealing +from .sceua import sceua # Shuffled Complex Evolution diff --git a/src/spotpy/algorithms/_algorithm.py b/src/spotpy/algorithms/_algorithm.py index 697f4fee..ed7cc793 100644 --- a/src/spotpy/algorithms/_algorithm.py +++ b/src/spotpy/algorithms/_algorithm.py @@ -5,13 +5,13 @@ This file holds the standards for every algorithm. ''' -from spotpy import database -from spotpy import parameter -import numpy as np -import time -import threading import random +import threading +import time + +import numpy as np +from spotpy import database, parameter try: from queue import Queue diff --git a/src/spotpy/algorithms/abc.py b/src/spotpy/algorithms/abc.py index b33fd00b..c15de760 100644 --- a/src/spotpy/algorithms/abc.py +++ b/src/spotpy/algorithms/abc.py @@ -5,10 +5,12 @@ :author: Patrick Lauer ''' -from . import _algorithm -import numpy as np import random +import numpy as np + +from . import _algorithm + class abc(_algorithm): """ diff --git a/src/spotpy/algorithms/dds.py b/src/spotpy/algorithms/dds.py index 2b5e99ca..2777680e 100644 --- a/src/spotpy/algorithms/dds.py +++ b/src/spotpy/algorithms/dds.py @@ -1,7 +1,9 @@ import numpy as np -from . import _algorithm + from spotpy.parameter import ParameterSet +from . import _algorithm + class DDSGenerator: """ diff --git a/src/spotpy/algorithms/demcz.py b/src/spotpy/algorithms/demcz.py index 726bf7ef..0b5cf52a 100644 --- a/src/spotpy/algorithms/demcz.py +++ b/src/spotpy/algorithms/demcz.py @@ -5,9 +5,10 @@ :author: Tobias Houska ''' -from . import _algorithm import numpy as np +from . import _algorithm + class demcz(_algorithm): """ diff --git a/src/spotpy/algorithms/dream.py b/src/spotpy/algorithms/dream.py index 0f96c511..5387a56a 100644 --- a/src/spotpy/algorithms/dream.py +++ b/src/spotpy/algorithms/dream.py @@ -5,11 +5,13 @@ :author: Tobias Houska and Motjaba Sadegh ''' -from . import _algorithm -import numpy as np import random import time +import numpy as np + +from . import _algorithm + class dream(_algorithm): """ diff --git a/src/spotpy/algorithms/fast.py b/src/spotpy/algorithms/fast.py index 9f074ba3..f1577151 100644 --- a/src/spotpy/algorithms/fast.py +++ b/src/spotpy/algorithms/fast.py @@ -5,10 +5,12 @@ :author: Tobias Houska and the SALib team ''' -from . import _algorithm -import numpy as np import math +import numpy as np + +from . import _algorithm + class fast(_algorithm): ''' diff --git a/src/spotpy/algorithms/fscabc.py b/src/spotpy/algorithms/fscabc.py index 51d5b5f2..cd361b80 100644 --- a/src/spotpy/algorithms/fscabc.py +++ b/src/spotpy/algorithms/fscabc.py @@ -5,10 +5,12 @@ :author: Patrick Lauer ''' -from ._algorithm import _algorithm -import numpy as np import random +import numpy as np + +from ._algorithm import _algorithm + class fscabc(_algorithm): """ diff --git a/src/spotpy/algorithms/lhs.py b/src/spotpy/algorithms/lhs.py index 480e3021..1ac8ceaa 100644 --- a/src/spotpy/algorithms/lhs.py +++ b/src/spotpy/algorithms/lhs.py @@ -5,10 +5,13 @@ :author: Tobias Houska """ -from . import _algorithm -import numpy as np import random +import numpy as np + +from . import _algorithm + + class lhs(_algorithm): """ The Latin Hypercube algorithm generates random parameters from their respective diff --git a/src/spotpy/algorithms/list_sampler.py b/src/spotpy/algorithms/list_sampler.py index 3138ea43..81840f04 100644 --- a/src/spotpy/algorithms/list_sampler.py +++ b/src/spotpy/algorithms/list_sampler.py @@ -4,8 +4,10 @@ This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska ''' -from . import _algorithm from .. import analyser +from . import _algorithm + + class list_sampler(_algorithm): """ This class holds the List sampler, which samples from a given spotpy database diff --git a/src/spotpy/algorithms/mc.py b/src/spotpy/algorithms/mc.py index 7daa057b..3efa9234 100644 --- a/src/spotpy/algorithms/mc.py +++ b/src/spotpy/algorithms/mc.py @@ -7,6 +7,7 @@ from . import _algorithm + class mc(_algorithm): """ The Monte Carlo algorithm generates random parameters from their respective diff --git a/src/spotpy/algorithms/mcmc.py b/src/spotpy/algorithms/mcmc.py index 06258903..865cfa03 100644 --- a/src/spotpy/algorithms/mcmc.py +++ b/src/spotpy/algorithms/mcmc.py @@ -5,10 +5,12 @@ :author: Tobias Houska ''' -from . import _algorithm -import numpy as np import time +import numpy as np + +from . import _algorithm + class mcmc(_algorithm): """ diff --git a/src/spotpy/algorithms/mle.py b/src/spotpy/algorithms/mle.py index 2a6fec48..25012669 100644 --- a/src/spotpy/algorithms/mle.py +++ b/src/spotpy/algorithms/mle.py @@ -4,9 +4,9 @@ :author: Tobias Houska ''' -from . import _algorithm import numpy as np +from . import _algorithm class mle(_algorithm): diff --git a/src/spotpy/algorithms/nsgaii.py b/src/spotpy/algorithms/nsgaii.py index 9b1ce9af..59f24de4 100644 --- a/src/spotpy/algorithms/nsgaii.py +++ b/src/spotpy/algorithms/nsgaii.py @@ -13,11 +13,12 @@ - http://www.tik.ee.ethz.ch/file/6c0e384dceb283cd4301339a895b72b8/TIK-Report11.pdf (Tournament Selection) ''' -import numpy as np -import math -from spotpy.algorithms import _algorithm import copy +import math +import numpy as np + +from spotpy.algorithms import _algorithm class TournamentSelection: diff --git a/src/spotpy/algorithms/padds.py b/src/spotpy/algorithms/padds.py index 49f66991..3aed9fc2 100644 --- a/src/spotpy/algorithms/padds.py +++ b/src/spotpy/algorithms/padds.py @@ -1,11 +1,14 @@ -import numpy as np +import copy from copy import deepcopy +import numpy as np +from scipy.spatial.qhull import ConvexHull, QhullError + from spotpy.algorithms.dds import DDSGenerator -from . import _algorithm from spotpy.parameter import ParameterSet -import copy -from scipy.spatial.qhull import ConvexHull, QhullError + +from . import _algorithm + class BestValue(object): """ diff --git a/src/spotpy/algorithms/rope.py b/src/spotpy/algorithms/rope.py index 5c7320db..47fccdc8 100644 --- a/src/spotpy/algorithms/rope.py +++ b/src/spotpy/algorithms/rope.py @@ -4,10 +4,12 @@ This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska and Alejandro Chamorro-Chavez ''' -from . import _algorithm +import random import time + import numpy as np -import random + +from . import _algorithm class rope(_algorithm): diff --git a/src/spotpy/algorithms/sa.py b/src/spotpy/algorithms/sa.py index 1403e8da..c1d01892 100644 --- a/src/spotpy/algorithms/sa.py +++ b/src/spotpy/algorithms/sa.py @@ -5,9 +5,10 @@ :author: Tobias Houska and Alejandro Chamorro-Chavez ''' -from . import _algorithm import numpy as np +from . import _algorithm + class sa(_algorithm): """ diff --git a/src/spotpy/algorithms/sceua.py b/src/spotpy/algorithms/sceua.py index e22d7c0e..82a9d871 100644 --- a/src/spotpy/algorithms/sceua.py +++ b/src/spotpy/algorithms/sceua.py @@ -5,9 +5,10 @@ :author: Tobias Houska and Stijn Van Hoey ''' -from . import _algorithm import numpy as np +from . import _algorithm + class sceua(_algorithm): """ diff --git a/src/spotpy/analyser.py b/src/spotpy/analyser.py index e6c83687..1edf1052 100644 --- a/src/spotpy/analyser.py +++ b/src/spotpy/analyser.py @@ -11,6 +11,7 @@ ''' import numpy as np + import spotpy font = {'family' : 'calibri', @@ -536,9 +537,7 @@ def plot_fast_sensitivity(results,like_index=1,number_of_sensitiv_pars=10,fig_na def plot_heatmap_griewank(results,algorithms, fig_name='heatmap_griewank.png'): """Example Plot as seen in the SPOTPY Documentation""" import matplotlib.pyplot as plt - - from matplotlib import ticker - from matplotlib import cm + from matplotlib import cm, ticker font = {'family' : 'calibri', 'weight' : 'normal', 'size' : 20} @@ -593,6 +592,7 @@ def plot_objectivefunction(results,evaluation,limit=None,sort=True, fig_name = ' # 1. The degree used in calculations is N - ddof stddev = np.std(data, ddof=1) from scipy.stats import t + # Get the endpoints of the range that contains 95% of the distribution t_bounds = t.interval(0.999, len(data) - 1) # sum mean to the confidence interval diff --git a/src/spotpy/cli.py b/src/spotpy/cli.py index cad07005..0e7ea159 100644 --- a/src/spotpy/cli.py +++ b/src/spotpy/cli.py @@ -1,10 +1,12 @@ -from . import algorithms, database, describe -import click import inspect import io import os +import click + +from . import algorithms, database, describe + def get_config_from_file(): """ diff --git a/src/spotpy/database/base.py b/src/spotpy/database/base.py index a7db82c5..d71c523a 100644 --- a/src/spotpy/database/base.py +++ b/src/spotpy/database/base.py @@ -9,12 +9,13 @@ This is the parent class of all algorithms, which can handle the database structure during the sample. ''' -import numpy as np +import sys import time +from importlib import import_module from itertools import product -import sys -from importlib import import_module +import numpy as np + class database(object): """ diff --git a/src/spotpy/database/csv.py b/src/spotpy/database/csv.py index 92543444..d9c75021 100644 --- a/src/spotpy/database/csv.py +++ b/src/spotpy/database/csv.py @@ -1,8 +1,11 @@ -from .base import database -import numpy as np import io -import time import sys +import time + +import numpy as np + +from .base import database + class csv(database): """ diff --git a/src/spotpy/database/hdf5.py b/src/spotpy/database/hdf5.py index 4abba85e..b543b637 100644 --- a/src/spotpy/database/hdf5.py +++ b/src/spotpy/database/hdf5.py @@ -11,7 +11,9 @@ ''' import numpy as np + from .base import database + try: import tables except ImportError: diff --git a/src/spotpy/database/ram.py b/src/spotpy/database/ram.py index d1825ef5..951df9fd 100644 --- a/src/spotpy/database/ram.py +++ b/src/spotpy/database/ram.py @@ -10,9 +10,11 @@ structure during the sample. ''' +import sys + import numpy as np + from .base import database -import sys class ram(database): diff --git a/src/spotpy/database/sql.py b/src/spotpy/database/sql.py index 5537f125..2595dc65 100644 --- a/src/spotpy/database/sql.py +++ b/src/spotpy/database/sql.py @@ -1,8 +1,9 @@ -import numpy as np import sqlite3 import sys -from .base import database +import numpy as np + +from .base import database class PickalableSWIG: @@ -33,6 +34,7 @@ class sql(database): def __init__(self, *args, **kwargs): import os + # init base class super(sql, self).__init__(*args, **kwargs) # Create a open file, which needs to be closed after the sampling diff --git a/src/spotpy/describe.py b/src/spotpy/describe.py index 4f0f0e5b..5667a379 100644 --- a/src/spotpy/describe.py +++ b/src/spotpy/describe.py @@ -12,10 +12,11 @@ >>> spotpy.describe.setup(model) """ import sys -from .parameter import get_parameters_from_setup -from .algorithms._algorithm import _algorithm from inspect import getdoc as _getdoc +from .algorithms._algorithm import _algorithm +from .parameter import get_parameters_from_setup + try: from docutils.core import publish_string except ImportError: @@ -63,8 +64,8 @@ def setup(obj): return '\n'.join(parts) -from pathlib import Path import webbrowser +from pathlib import Path class rst: diff --git a/src/spotpy/examples/hymod_unix/hymod_cython/hymod.pyx b/src/spotpy/examples/hymod_unix/hymod_cython/hymod.pyx index db53be61..8641c8fd 100644 --- a/src/spotpy/examples/hymod_unix/hymod_cython/hymod.pyx +++ b/src/spotpy/examples/hymod_unix/hymod_cython/hymod.pyx @@ -1,5 +1,6 @@ -import sys, re, os - +import os +import re +import sys #cdef public list hymod(list Precip, list PET, float cmax, float bexp, float alpha, float Rs, float Rq): # public function declaration diff --git a/src/spotpy/examples/spot_setup_ackley.py b/src/spotpy/examples/spot_setup_ackley.py index 16020ca9..f73974a7 100644 --- a/src/spotpy/examples/spot_setup_ackley.py +++ b/src/spotpy/examples/spot_setup_ackley.py @@ -7,8 +7,10 @@ This example implements the Ackley function into SPOT. ''' import numpy as np + import spotpy + class spot_setup(object): def __init__(self,dim=30): self.dim=dim diff --git a/src/spotpy/examples/spot_setup_cmf1d.py b/src/spotpy/examples/spot_setup_cmf1d.py index 566bd3bf..a648ddf0 100644 --- a/src/spotpy/examples/spot_setup_cmf1d.py +++ b/src/spotpy/examples/spot_setup_cmf1d.py @@ -9,11 +9,14 @@ You need to have cmf and pandas installed on your system: svn checkout svn://fb09-pasig.umwelt.uni-giessen.de/cmf/trunk cmf ''' -import cmf +import os +import sys from datetime import datetime, timedelta + +import cmf import numpy as np + import spotpy -import os, sys class _CmfProject: diff --git a/src/spotpy/examples/spot_setup_cmf_lumped.py b/src/spotpy/examples/spot_setup_cmf_lumped.py index 07906d04..cbdfd7cb 100644 --- a/src/spotpy/examples/spot_setup_cmf_lumped.py +++ b/src/spotpy/examples/spot_setup_cmf_lumped.py @@ -8,12 +8,12 @@ """ import datetime + import cmf +import numpy as np import spotpy - from spotpy.parameter import Uniform -import numpy as np # Make sure we do not get pestered with divIde by zero errors np.seterr(all='ignore') diff --git a/src/spotpy/examples/spot_setup_dds.py b/src/spotpy/examples/spot_setup_dds.py index e39e85dd..3d6f539a 100644 --- a/src/spotpy/examples/spot_setup_dds.py +++ b/src/spotpy/examples/spot_setup_dds.py @@ -1,7 +1,8 @@ +import numpy as np + import spotpy -from spotpy.parameter import Uniform from spotpy.objectivefunctions import rmse -import numpy as np +from spotpy.parameter import Uniform def ackley10(vector): diff --git a/src/spotpy/examples/spot_setup_dtlz1.py b/src/spotpy/examples/spot_setup_dtlz1.py index 23df3436..c8f791fe 100644 --- a/src/spotpy/examples/spot_setup_dtlz1.py +++ b/src/spotpy/examples/spot_setup_dtlz1.py @@ -1,7 +1,10 @@ +import time + import numpy as np + import spotpy -import time + def g1(x,k): return 100*( k + np.sum(np.square(x - 0.5) - np.cos(20*np.pi*(x -0.5)), axis=1)) diff --git a/src/spotpy/examples/spot_setup_griewank.py b/src/spotpy/examples/spot_setup_griewank.py index e94fb790..7ebe3182 100644 --- a/src/spotpy/examples/spot_setup_griewank.py +++ b/src/spotpy/examples/spot_setup_griewank.py @@ -7,8 +7,10 @@ This example implements the Griewank function into SPOT. ''' import numpy as np + import spotpy + class spot_setup(object): def __init__(self, dim = 2): self.dim = dim diff --git a/src/spotpy/examples/spot_setup_hymod_exe.py b/src/spotpy/examples/spot_setup_hymod_exe.py index dc66fd52..1eabfb84 100644 --- a/src/spotpy/examples/spot_setup_hymod_exe.py +++ b/src/spotpy/examples/spot_setup_hymod_exe.py @@ -4,12 +4,16 @@ :author: Tobias Houska This example implements the external hydrological model HYMOD into SPOTPY. ''' -import numpy as np -import spotpy import os -from distutils.dir_util import copy_tree, remove_tree + #from shutil import rmtree import sys +from distutils.dir_util import copy_tree, remove_tree + +import numpy as np + +import spotpy + class spot_setup(object): def __init__(self,parallel='seq'): diff --git a/src/spotpy/examples/spot_setup_hymod_python.py b/src/spotpy/examples/spot_setup_hymod_python.py index 422857d3..2e9b8c72 100644 --- a/src/spotpy/examples/spot_setup_hymod_python.py +++ b/src/spotpy/examples/spot_setup_hymod_python.py @@ -8,11 +8,13 @@ ''' -from spotpy.parameter import Uniform -from spotpy.objectivefunctions import rmse -from spotpy.examples.hymod_python.hymod import hymod import os +from spotpy.examples.hymod_python.hymod import hymod +from spotpy.objectivefunctions import rmse +from spotpy.parameter import Uniform + + class spot_setup(object): cmax = Uniform(low=1.0 , high=500, optguess=412.33) bexp = Uniform(low=0.1 , high=2.0, optguess=0.1725) diff --git a/src/spotpy/examples/spot_setup_hymod_python_pareto.py b/src/spotpy/examples/spot_setup_hymod_python_pareto.py index 69010c29..e47e651c 100644 --- a/src/spotpy/examples/spot_setup_hymod_python_pareto.py +++ b/src/spotpy/examples/spot_setup_hymod_python_pareto.py @@ -8,11 +8,14 @@ ''' -import spotpy -from spotpy.examples.hymod_python.hymod import hymod import os + import numpy as np +import spotpy +from spotpy.examples.hymod_python.hymod import hymod + + class spot_setup(object): cmax = spotpy.parameter.Uniform(low=1.0 , high=500, optguess=412.33) bexp = spotpy.parameter.Uniform(low=0.1 , high=2.0, optguess=0.1725) diff --git a/src/spotpy/examples/spot_setup_hymod_unix.py b/src/spotpy/examples/spot_setup_hymod_unix.py index 8de5c7a7..fae63b77 100644 --- a/src/spotpy/examples/spot_setup_hymod_unix.py +++ b/src/spotpy/examples/spot_setup_hymod_unix.py @@ -7,17 +7,21 @@ This example implements the external hydrological model HYMOD into SPOTPY. ''' import numpy as np + try: import spotpy except ImportError: import sys sys.path.append(".") import spotpy -import os + import multiprocessing as mp -from distutils.dir_util import copy_tree, remove_tree +import os + #from shutil import rmtree import sys +from distutils.dir_util import copy_tree, remove_tree + class spot_setup(object): def __init__(self,parallel='seq'): diff --git a/src/spotpy/examples/spot_setup_rosenbrock.py b/src/spotpy/examples/spot_setup_rosenbrock.py index b1533c63..3c6cc5c1 100644 --- a/src/spotpy/examples/spot_setup_rosenbrock.py +++ b/src/spotpy/examples/spot_setup_rosenbrock.py @@ -7,8 +7,10 @@ ''' import numpy as np -from spotpy.parameter import Uniform + from spotpy.objectivefunctions import rmse +from spotpy.parameter import Uniform + class spot_setup(object): """ diff --git a/src/spotpy/examples/spot_setup_standardnormal.py b/src/spotpy/examples/spot_setup_standardnormal.py index 06ce38c7..34bf6b50 100644 --- a/src/spotpy/examples/spot_setup_standardnormal.py +++ b/src/spotpy/examples/spot_setup_standardnormal.py @@ -7,6 +7,7 @@ This example implements the Standard Normal function into SPOT. ''' import numpy as np + import spotpy diff --git a/src/spotpy/gui/mpl.py b/src/spotpy/gui/mpl.py index b8a8386d..ba687afe 100644 --- a/src/spotpy/gui/mpl.py +++ b/src/spotpy/gui/mpl.py @@ -7,14 +7,13 @@ """ import sys -import matplotlib +import time -from matplotlib.widgets import Slider, Button +import matplotlib from matplotlib import pylab as plt +from matplotlib.widgets import Button, Slider -import time -from ..parameter import get_parameters_array, create_set - +from ..parameter import create_set, get_parameters_array if matplotlib.__version__ < '2.1': raise ImportError('Your matplotlib package is too old. Required >=2.1, you have ' + matplotlib.__version__) diff --git a/src/spotpy/hydrology/signatures.py b/src/spotpy/hydrology/signatures.py index e7f7c987..4e274e69 100644 --- a/src/spotpy/hydrology/signatures.py +++ b/src/spotpy/hydrology/signatures.py @@ -57,10 +57,11 @@ """ -import numpy as np import inspect import sys +import numpy as np + class SignatureMethod: """ diff --git a/src/spotpy/likelihoods.py b/src/spotpy/likelihoods.py index b6545f06..ada06959 100644 --- a/src/spotpy/likelihoods.py +++ b/src/spotpy/likelihoods.py @@ -18,10 +18,11 @@ # ABCBoxcarLikelihood with Option 2 and 6 is good # logLikelihood with option 2 and 6 is good -import numpy as np import math import warnings +import numpy as np + class LikelihoodError(Exception): """ diff --git a/src/spotpy/objectivefunctions.py b/src/spotpy/objectivefunctions.py index d5c7e626..badc7bc7 100644 --- a/src/spotpy/objectivefunctions.py +++ b/src/spotpy/objectivefunctions.py @@ -10,8 +10,10 @@ returns the objective function value of interest. ''' -import numpy as np import logging + +import numpy as np + logging.basicConfig(format='%(levelname)s: %(module)s.%(funcName)s(): %(message)s') def bias(evaluation, simulation): diff --git a/src/spotpy/parameter.py b/src/spotpy/parameter.py index 291ac567..b0615d27 100644 --- a/src/spotpy/parameter.py +++ b/src/spotpy/parameter.py @@ -5,13 +5,13 @@ :author: Philipp Kraft and Tobias Houska Contains classes to generate random parameter sets ''' -import numpy.random as rnd -import numpy as np -import sys import copy - +import sys from itertools import cycle +import numpy as np +import numpy.random as rnd + class _ArgumentHelper(object): """ @@ -142,6 +142,7 @@ def _round_sig(x, sig=3): :return: rounded value """ from math import floor, log10 + # Check for zero to avoid math value error with log10(0.0) if abs(x) < 1e-12: return 0 diff --git a/tests/test_algorithms.py b/tests/test_algorithms.py index 74a16f7b..c9f81dd8 100644 --- a/tests/test_algorithms.py +++ b/tests/test_algorithms.py @@ -5,15 +5,16 @@ :author: Tobias Houska ''' -import unittest -import spotpy -from spotpy.examples.spot_setup_rosenbrock import spot_setup -from spotpy.examples.spot_setup_hymod_python import spot_setup as spot_setup_hymod -from spotpy.describe import describe import os +import unittest + import numpy as np -from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike +import spotpy +from spotpy.describe import describe +from spotpy.examples.spot_setup_hymod_python import spot_setup as spot_setup_hymod +from spotpy.examples.spot_setup_rosenbrock import spot_setup +from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike #https://docs.python.org/3/library/unittest.html diff --git a/tests/test_analyser.py b/tests/test_analyser.py index 3f0f6259..91f7a1a8 100644 --- a/tests/test_analyser.py +++ b/tests/test_analyser.py @@ -7,18 +7,20 @@ import matplotlib as mpl + mpl.use('Agg') +import os +import unittest + import matplotlib.pyplot as plt +import numpy as np import spotpy -import unittest -import numpy as np import spotpy.analyser -import os -from spotpy.examples.spot_setup_rosenbrock import spot_setup as rosenbrock_setup from spotpy.examples.spot_setup_griewank import spot_setup as griewank_setup from spotpy.examples.spot_setup_hymod_python import spot_setup as hymod_setup -from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike +from spotpy.examples.spot_setup_rosenbrock import spot_setup as rosenbrock_setup +from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike class TestAnalyser(unittest.TestCase): diff --git a/tests/test_cli.py b/tests/test_cli.py index 94afe507..e4d0df0a 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -6,14 +6,14 @@ ''' import io +import os +import unittest from click.testing import CliRunner -from spotpy.cli import cli, run, get_config_from_file, get_sampler_from_string + from spotpy.algorithms import _algorithm +from spotpy.cli import cli, get_config_from_file, get_sampler_from_string, run from spotpy.examples.spot_setup_rosenbrock import spot_setup -import unittest - -import os class TestCLI(unittest.TestCase): diff --git a/tests/test_database.py b/tests/test_database.py index 0a493d75..cfbff1f8 100644 --- a/tests/test_database.py +++ b/tests/test_database.py @@ -4,12 +4,14 @@ This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska ''' -import unittest -import os import glob -import spotpy.database as db +import os +import unittest + import numpy as np +import spotpy.database as db + #https://docs.python.org/3/library/unittest.html class MockSetup: diff --git a/tests/test_dds.py b/tests/test_dds.py index c9b924cc..095d44fa 100644 --- a/tests/test_dds.py +++ b/tests/test_dds.py @@ -5,13 +5,14 @@ :author: Tobias Houska, Benjamin Manns ''' +import json +import os import unittest + import numpy as np import spotpy -import os from spotpy.examples.spot_setup_dds import spot_setup -import json # replaces numpy.random module in a way diff --git a/tests/test_describe.py b/tests/test_describe.py index acca995c..7cca577f 100644 --- a/tests/test_describe.py +++ b/tests/test_describe.py @@ -4,13 +4,13 @@ This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft ''' +import inspect import unittest +from io import StringIO import spotpy from spotpy.parameter import Uniform -from io import StringIO -import inspect class SpotSetup(object): """ diff --git a/tests/test_fast.py b/tests/test_fast.py index 00199941..d330ac3e 100644 --- a/tests/test_fast.py +++ b/tests/test_fast.py @@ -6,6 +6,7 @@ ''' import unittest + import spotpy from spotpy.examples.spot_setup_hymod_python import spot_setup diff --git a/tests/test_gui_mpl.py b/tests/test_gui_mpl.py index 0d4926fb..9f83dbe4 100644 --- a/tests/test_gui_mpl.py +++ b/tests/test_gui_mpl.py @@ -6,15 +6,18 @@ ''' import unittest + import matplotlib + matplotlib.use('Agg') +import inspect import sys -from spotpy.gui.mpl import GUI -from spotpy import parameter import numpy as np -import inspect + +from spotpy import parameter +from spotpy.gui.mpl import GUI class SpotSetupBase(object): diff --git a/tests/test_likelihood.py b/tests/test_likelihood.py index 976c6c03..c571bc92 100644 --- a/tests/test_likelihood.py +++ b/tests/test_likelihood.py @@ -7,12 +7,13 @@ This code tests the likelihood framework and present all existing function. """ +import unittest + import numpy as np + import spotpy -import unittest from spotpy.likelihoods import LikelihoodError - # We use all available likelihood functions. The pydoc of every function tells, if we can add a # parameter `param` to the function which includes model parameter. The `param` must be None or a tuple with values # and names. If `param` is None, the needed values are calculated by the function itself. diff --git a/tests/test_list_and_constant_parameters_with_samplers.py b/tests/test_list_and_constant_parameters_with_samplers.py index 16751000..790de65e 100644 --- a/tests/test_list_and_constant_parameters_with_samplers.py +++ b/tests/test_list_and_constant_parameters_with_samplers.py @@ -4,13 +4,15 @@ :author: Tobias Houska ''' +import inspect import unittest +from itertools import cycle + import numpy as np -import inspect + import spotpy from spotpy import parameter from spotpy.objectivefunctions import rmse -from itertools import cycle class Rosenbrock(object): diff --git a/tests/test_objectivefunctions.py b/tests/test_objectivefunctions.py index 6c3cb6a4..ca548d3c 100644 --- a/tests/test_objectivefunctions.py +++ b/tests/test_objectivefunctions.py @@ -5,9 +5,11 @@ ''' import unittest -from spotpy import objectivefunctions as of + import numpy as np +from spotpy import objectivefunctions as of + #https://docs.python.org/3/library/unittest.html class TestObjectiveFunctions(unittest.TestCase): diff --git a/tests/test_parallel.py b/tests/test_parallel.py index 4848d269..a14c3e7a 100644 --- a/tests/test_parallel.py +++ b/tests/test_parallel.py @@ -6,6 +6,7 @@ ''' import unittest + import spotpy from spotpy.examples.spot_setup_rosenbrock import spot_setup diff --git a/tests/test_parameter.py b/tests/test_parameter.py index f05d0362..97c30a0d 100644 --- a/tests/test_parameter.py +++ b/tests/test_parameter.py @@ -4,13 +4,14 @@ :author: Tobias Houska, Philipp Kraft ''' +# Import inspect to scan spotpy.parameter for all Parameter classes +import inspect import unittest -import spotpy -from spotpy import parameter + import numpy as np -# Import inspect to scan spotpy.parameter for all Parameter classes -import inspect +import spotpy +from spotpy import parameter def repeat(times): diff --git a/tests/test_setup_parameters.py b/tests/test_setup_parameters.py index c3a49e92..2dc571fe 100644 --- a/tests/test_setup_parameters.py +++ b/tests/test_setup_parameters.py @@ -6,12 +6,14 @@ Tests the various possibilities to create and use parameters Focus especially the usage of parameters as class attributes ''' +import inspect import sys import unittest + +import numpy as np + import spotpy from spotpy import parameter -import numpy as np -import inspect class SpotSetupBase(object): diff --git a/tests/test_signatures.py b/tests/test_signatures.py index 92bbc21f..af2868f7 100644 --- a/tests/test_signatures.py +++ b/tests/test_signatures.py @@ -5,7 +5,9 @@ ''' import unittest + import numpy as np + from spotpy.hydrology.signatures import SignatureMethod diff --git a/tutorials/3dplot.py b/tutorials/3dplot.py index febe635e..d3a1a954 100644 --- a/tutorials/3dplot.py +++ b/tutorials/3dplot.py @@ -6,15 +6,14 @@ This file shows how to make 3d surface plots. ''' -import spotpy - -from mpl_toolkits.mplot3d import Axes3D -from mpl_toolkits.mplot3d.art3d import Poly3DCollection, Line3DCollection -from matplotlib import cm -from matplotlib.ticker import LinearLocator, FormatStrFormatter import matplotlib.pyplot as plt +from matplotlib import cm +from matplotlib.ticker import FormatStrFormatter, LinearLocator +from mpl_toolkits.mplot3d import Axes3D +from mpl_toolkits.mplot3d.art3d import Line3DCollection, Poly3DCollection from numpy import * +import spotpy fig = plt.figure(figsize=(10,10)) ax = fig.gca(projection='3d') diff --git a/tutorials/cli_hymod.py b/tutorials/cli_hymod.py index 9fd09372..dfed10e3 100644 --- a/tutorials/cli_hymod.py +++ b/tutorials/cli_hymod.py @@ -7,7 +7,6 @@ from spotpy.cli import main from spotpy.examples.spot_setup_hymod_python import spot_setup - if __name__ == '__main__': setup = spot_setup() main(setup) diff --git a/tutorials/dds/benchmark_dds.py b/tutorials/dds/benchmark_dds.py index 0ebaad5b..b580e053 100644 --- a/tutorials/dds/benchmark_dds.py +++ b/tutorials/dds/benchmark_dds.py @@ -1,9 +1,9 @@ -from pprint import pprint -import numpy as np -import matplotlib.pylab as plt import json - import time +from pprint import pprint + +import matplotlib.pylab as plt +import numpy as np try: import spotpy @@ -15,8 +15,6 @@ from spotpy.examples.spot_setup_hymod_python import spot_setup - - spot_setup = spot_setup() # Create samplers for every algorithm: diff --git a/tutorials/dds/dds_parallel.py b/tutorials/dds/dds_parallel.py index 92301481..ba99b4cd 100644 --- a/tutorials/dds/dds_parallel.py +++ b/tutorials/dds/dds_parallel.py @@ -1,10 +1,11 @@ -import numpy as np -import sys -import os -import matplotlib.pylab as plt import json +import os +import sys import time +import matplotlib.pylab as plt +import numpy as np + try: import spotpy except ImportError: diff --git a/tutorials/dds/dds_parallel_plot.py b/tutorials/dds/dds_parallel_plot.py index cd6a85e8..ee302d8c 100644 --- a/tutorials/dds/dds_parallel_plot.py +++ b/tutorials/dds/dds_parallel_plot.py @@ -1,8 +1,8 @@ -import numpy as np - -import matplotlib.pylab as plt import json + import matplotlib as mp +import matplotlib.pylab as plt +import numpy as np data_normalizer = mp.colors.Normalize() color_map = mp.colors.LinearSegmentedColormap( diff --git a/tutorials/dds/dds_parallel_run.py b/tutorials/dds/dds_parallel_run.py index c97126d2..ee66432a 100644 --- a/tutorials/dds/dds_parallel_run.py +++ b/tutorials/dds/dds_parallel_run.py @@ -1,5 +1,6 @@ -import subprocess import os +import subprocess + path = os.path.abspath(os.path.dirname(__file__)) for r in [500,1000,5000,10000,50000,100000,500000]: args = ["mpirun", "-c 6", "python", path + "/dds_parallel.py", str(r)] diff --git a/tutorials/getting_started.py b/tutorials/getting_started.py index 4a99b371..aa185927 100644 --- a/tutorials/getting_started.py +++ b/tutorials/getting_started.py @@ -11,9 +11,10 @@ #To start your experience with SPOT you need to have SPOT installed. Please see the [Installation chapter](index.md) for further details. #To use SPOT we have to import it and use one of the pre-build examples: -import spotpy # Load the SPOT package into your working storage -from spotpy.examples.spot_setup_rosenbrock import spot_setup # Import the two dimensional Rosenbrock example - +import spotpy # Load the SPOT package into your working storage +from spotpy.examples.spot_setup_rosenbrock import ( + spot_setup, # Import the two dimensional Rosenbrock example +) #The example comes along with parameter boundaries, the Rosenbrock function, the optimal value of the function and RMSE as a likelihood. #So we can directly start to analyse the Rosenbrock function with one of the algorithms. We start with a simple Monte Carlo sampling: diff --git a/tutorials/gui_hymod.py b/tutorials/gui_hymod.py index 185657a3..bfa0c464 100644 --- a/tutorials/gui_hymod.py +++ b/tutorials/gui_hymod.py @@ -7,9 +7,9 @@ import spotpy -from spotpy.gui.mpl import GUI from spotpy.examples.spot_setup_hymod_python import spot_setup -from spotpy.objectivefunctions import rmse +from spotpy.gui.mpl import GUI +from spotpy.objectivefunctions import rmse if __name__ == '__main__': setup_class=spot_setup(rmse) diff --git a/tutorials/plot_nsgaii_tutorial.py b/tutorials/plot_nsgaii_tutorial.py index ceae0593..2688ff4f 100644 --- a/tutorials/plot_nsgaii_tutorial.py +++ b/tutorials/plot_nsgaii_tutorial.py @@ -1,10 +1,9 @@ -import numpy as np import sys + import matplotlib.pyplot as plt -from mpl_toolkits.mplot3d import Axes3D +import numpy as np import pandas as pd - - +from mpl_toolkits.mplot3d import Axes3D # user config diff --git a/tutorials/tutorial_Parameterlist_iterator.py b/tutorials/tutorial_Parameterlist_iterator.py index c122f040..d99449df 100644 --- a/tutorials/tutorial_Parameterlist_iterator.py +++ b/tutorials/tutorial_Parameterlist_iterator.py @@ -7,6 +7,7 @@ This example implements the Rosenbrock function into SPOT. ''' import numpy as np + import spotpy diff --git a/tutorials/tutorial_ackley.py b/tutorials/tutorial_ackley.py index ebadce2d..20a8588f 100644 --- a/tutorials/tutorial_ackley.py +++ b/tutorials/tutorial_ackley.py @@ -10,7 +10,6 @@ import spotpy from spotpy.examples.spot_setup_ackley import spot_setup - #Create samplers for every algorithm: results=[] spot_setup=spot_setup() diff --git a/tutorials/tutorial_cmf_lumped.py b/tutorials/tutorial_cmf_lumped.py index e702a386..3d8b6d45 100644 --- a/tutorials/tutorial_cmf_lumped.py +++ b/tutorials/tutorial_cmf_lumped.py @@ -5,14 +5,14 @@ """ -import sys import datetime - -import spotpy import os +import sys +import spotpy from spotpy.examples.spot_setup_cmf_lumped import SingleStorage + def parallel(): """ Returns 'mpi', if this code runs with MPI, else returns 'seq' diff --git a/tutorials/tutorial_dds_hymod.py b/tutorials/tutorial_dds_hymod.py index 7eb52eb2..c5365d17 100644 --- a/tutorials/tutorial_dds_hymod.py +++ b/tutorials/tutorial_dds_hymod.py @@ -9,6 +9,7 @@ ''' import numpy as np + try: import spotpy except ImportError: @@ -16,9 +17,9 @@ sys.path.append(".") import spotpy -from spotpy.examples.spot_setup_hymod_python import spot_setup import matplotlib.pyplot as plt +from spotpy.examples.spot_setup_hymod_python import spot_setup if __name__ == "__main__": parallel ='seq' # Runs everthing in sequential mode diff --git a/tutorials/tutorial_dream_hymod.py b/tutorials/tutorial_dream_hymod.py index 792eb07e..71761520 100644 --- a/tutorials/tutorial_dream_hymod.py +++ b/tutorials/tutorial_dream_hymod.py @@ -8,14 +8,16 @@ This class holds example code how to use the dream algorithm ''' +import matplotlib.pyplot as plt import numpy as np + import spotpy +from spotpy.analyser import plot_parameter_trace, plot_posterior_parameter_histogram + #from spotpy.examples.spot_setup_hymod_exe import spot_setup from spotpy.examples.spot_setup_hymod_python import spot_setup -import matplotlib.pyplot as plt -from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike -from spotpy.analyser import plot_parameter_trace -from spotpy.analyser import plot_posterior_parameter_histogram +from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike + if __name__ == "__main__": parallel ='seq' # Initialize the Hymod example (will only work on Windows systems) diff --git a/tutorials/tutorial_fast_hymod.py b/tutorials/tutorial_fast_hymod.py index 4c13fc72..8ab7c44c 100644 --- a/tutorials/tutorial_fast_hymod.py +++ b/tutorials/tutorial_fast_hymod.py @@ -8,11 +8,12 @@ This class holds example code how to use the FAST algorithm ''' +import numpy as np + import spotpy + #from spotpy.examples.spot_setup_hymod_python import spot_setup from spotpy.examples.spot_setup_rosenbrock import spot_setup -import numpy as np - if __name__ == "__main__": parallel ='seq' diff --git a/tutorials/tutorial_griewank.py b/tutorials/tutorial_griewank.py index 6a8d0527..72d5e68d 100644 --- a/tutorials/tutorial_griewank.py +++ b/tutorials/tutorial_griewank.py @@ -10,7 +10,6 @@ import spotpy from spotpy.examples.spot_setup_griewank import spot_setup - #Create samplers for every algorithm: results=[] spot_setup=spot_setup() diff --git a/tutorials/tutorial_likelihood.py b/tutorials/tutorial_likelihood.py index a0b9c4c3..8c586c30 100644 --- a/tutorials/tutorial_likelihood.py +++ b/tutorials/tutorial_likelihood.py @@ -8,6 +8,7 @@ ''' import numpy as np + import spotpy # First we use all available likelihood functions just alone. The pydoc of every function tells, if we can add a @@ -106,9 +107,8 @@ def parameters(self): def simulation(self, vector): # x = np.random.randint(-100, 100, size=201) # simulations= [sum(100.0 * (x[1:] - x[:-1] **2.0) **2.0 + (1 - x[:-1]) **2.0)] - import subprocess - import json + import subprocess output = subprocess.check_output( "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_2.R " + str( @@ -174,9 +174,8 @@ def parameters(self): return spotpy.parameter.generate(self.params) def simulation(self, vector): - import subprocess - import json + import subprocess output = subprocess.check_output( "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_WALD.R " + str(vector[0]), shell=True) @@ -214,9 +213,9 @@ def parameters(self): return spotpy.parameter.generate(self.params) def simulation(self, vector): + import json import subprocess - import json # parameter 0:phi, 1:nu output = subprocess.check_output( "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_AR1_Student-t-res.R " + str( @@ -255,9 +254,9 @@ def parameters(self): return spotpy.parameter.generate(self.params) def simulation(self, vector): + import json import subprocess - import json # parameter 0:phi output = subprocess.check_output( "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_AR1_Norm_res.R " + str( @@ -304,9 +303,9 @@ def parameters(self): return spotpy.parameter.generate(self.params) def simulation(self, vector): + import json import subprocess - import json # we need a skew exponential power to add xi and beta in it which is the model for the error residuals of AR1 Model output = subprocess.check_output( diff --git a/tutorials/tutorial_listsampler.py b/tutorials/tutorial_listsampler.py index d7198f83..bfc944ce 100644 --- a/tutorials/tutorial_listsampler.py +++ b/tutorials/tutorial_listsampler.py @@ -10,7 +10,6 @@ import spotpy from spotpy.examples.spot_setup_hymod_python import spot_setup - if __name__ == "__main__": # 1 We start classical by perfroming a sensitivity analysis parallel ='seq' diff --git a/tutorials/tutorial_nsgaii.py b/tutorials/tutorial_nsgaii.py index 17a085da..ace69835 100644 --- a/tutorials/tutorial_nsgaii.py +++ b/tutorials/tutorial_nsgaii.py @@ -19,12 +19,14 @@ sys.path.append(".") import spotpy -import spotpy.algorithms import unittest -from spotpy.examples.spot_setup_hymod_python import spot_setup + import matplotlib.pyplot as plt import numpy as np +import spotpy.algorithms +from spotpy.examples.spot_setup_hymod_python import spot_setup + def multi_obj_func(evaluation, simulation): """ diff --git a/tutorials/tutorial_nsgaii_dltz1.py b/tutorials/tutorial_nsgaii_dltz1.py index 19b72659..290685f8 100644 --- a/tutorials/tutorial_nsgaii_dltz1.py +++ b/tutorials/tutorial_nsgaii_dltz1.py @@ -1,12 +1,13 @@ -import spotpy -from spotpy.examples.spot_setup_dtlz1 import spot_setup -import numpy as np import sys + import matplotlib.pyplot as plt -from mpl_toolkits.mplot3d import Axes3D +import numpy as np import pandas as pd +from mpl_toolkits.mplot3d import Axes3D +import spotpy +from spotpy.examples.spot_setup_dtlz1 import spot_setup if __name__ == "__main__": #Create samplers for every algorithm: diff --git a/tutorials/tutorial_own_database.py b/tutorials/tutorial_own_database.py index e1650276..7b3d3227 100644 --- a/tutorials/tutorial_own_database.py +++ b/tutorials/tutorial_own_database.py @@ -7,6 +7,7 @@ This example implements the Rosenbrock function into SPOT. ''' import numpy as np + import spotpy from spotpy.objectivefunctions import rmse diff --git a/tutorials/tutorial_padds_hymod.py b/tutorials/tutorial_padds_hymod.py index 1b90071d..066a49c1 100644 --- a/tutorials/tutorial_padds_hymod.py +++ b/tutorials/tutorial_padds_hymod.py @@ -9,6 +9,7 @@ ''' import numpy as np + try: import spotpy except ImportError: @@ -16,9 +17,10 @@ sys.path.append(".") import spotpy -from spotpy.examples.spot_setup_hymod_python import spot_setup import matplotlib.pyplot as plt +from spotpy.examples.spot_setup_hymod_python import spot_setup + def multi_obj_func(evaluation, simulation): #used to overwrite objective function in hymod example diff --git a/tutorials/tutorial_rosenbrock.py b/tutorials/tutorial_rosenbrock.py index cd7736fc..93a005a3 100644 --- a/tutorials/tutorial_rosenbrock.py +++ b/tutorials/tutorial_rosenbrock.py @@ -15,10 +15,8 @@ sys.path.append(".") import spotpy -from spotpy.examples.spot_setup_rosenbrock import spot_setup from spotpy.describe import describe - - +from spotpy.examples.spot_setup_rosenbrock import spot_setup #Create samplers for every algorithm: results=[] diff --git a/tutorials/tutorial_sceua_hymod.py b/tutorials/tutorial_sceua_hymod.py index abd2b380..0d1c4df1 100644 --- a/tutorials/tutorial_sceua_hymod.py +++ b/tutorials/tutorial_sceua_hymod.py @@ -8,11 +8,11 @@ This class holds example code how to use the dream algorithm ''' +import matplotlib.pyplot as plt import numpy as np + import spotpy from spotpy.examples.spot_setup_hymod_python import spot_setup -import matplotlib.pyplot as plt - if __name__ == "__main__": parallel ='seq' # Runs everthing in sequential mode diff --git a/tutorials/tutorial_signatures.py b/tutorials/tutorial_signatures.py index 09d7f393..ab4a81f4 100644 --- a/tutorials/tutorial_signatures.py +++ b/tutorials/tutorial_signatures.py @@ -7,10 +7,11 @@ This code shows you, how to use the hydroligcal signatures. They can also be implemented in the def objective function. ''' -from spotpy.examples.spot_setup_hymod import spot_setup +from pprint import pprint + import spotpy.signatures as sig +from spotpy.examples.spot_setup_hymod import spot_setup -from pprint import pprint print("INFO: For this example you need the folder >hymod< in the examples folder") spot_setup = spot_setup() @@ -78,8 +79,8 @@ print(sig.getSlopeFDC(simulation, observation,mode="calc_Dev")) try: - import pandas as pd import matplotlib.pyplot as plt + import pandas as pd timespanlen = simulation.__len__() ddd = pd.date_range("2015-01-01 11:00", freq="5min",periods=timespanlen) dd_daily = pd.date_range("2015-05-01", periods=timespanlen) From e16b22cee5822be32fd63bcb7a1cb60d8c27f485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 8 Jul 2022 15:56:25 +0200 Subject: [PATCH 23/34] apply black to tutorials --- tutorials/3dplot.py | 40 +- tutorials/cli_hymod.py | 2 +- tutorials/dds/__init__.py | 4 +- tutorials/dds/benchmark_dds.py | 66 ++- tutorials/dds/dds_parallel.py | 6 +- tutorials/dds/dds_parallel_plot.py | 46 +- tutorials/dds/dds_parallel_run.py | 4 +- tutorials/getting_started.py | 34 +- tutorials/gui_hymod.py | 17 +- tutorials/plot_nsgaii_tutorial.py | 29 +- tutorials/tutorial_Parameterlist_iterator.py | 38 +- tutorials/tutorial_ackley.py | 43 +- tutorials/tutorial_cmf_lumped.py | 28 +- tutorials/tutorial_dds_hymod.py | 109 +++-- tutorials/tutorial_dream_hymod.py | 134 +++--- tutorials/tutorial_fast_hymod.py | 30 +- tutorials/tutorial_griewank.py | 41 +- tutorials/tutorial_likelihood.py | 396 +++++++++++---- tutorials/tutorial_listsampler.py | 49 +- tutorials/tutorial_nsgaii.py | 135 +++--- tutorials/tutorial_nsgaii_dltz1.py | 47 +- tutorials/tutorial_own_database.py | 21 +- tutorials/tutorial_padds_hymod.py | 168 +++---- .../tutorial_parallel_computing_hymod.py | 39 +- tutorials/tutorial_rosenbrock.py | 136 ++++-- tutorials/tutorial_sceua_hymod.py | 79 +-- tutorials/tutorial_signatures.py | 451 ++++++++++++++---- 27 files changed, 1396 insertions(+), 796 deletions(-) diff --git a/tutorials/3dplot.py b/tutorials/3dplot.py index d3a1a954..341faf0f 100644 --- a/tutorials/3dplot.py +++ b/tutorials/3dplot.py @@ -1,11 +1,11 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This file shows how to make 3d surface plots. -''' +""" import matplotlib.pyplot as plt from matplotlib import cm from matplotlib.ticker import FormatStrFormatter, LinearLocator @@ -15,44 +15,44 @@ import spotpy -fig = plt.figure(figsize=(10,10)) -ax = fig.gca(projection='3d') +fig = plt.figure(figsize=(10, 10)) +ax = fig.gca(projection="3d") # # Plot Rosenbrock surface X = arange(-30, 30, 0.05) Y = arange(-30, 30, 0.05) X, Y = meshgrid(X, Y) -#from spot_setup_rosenbrock import spot_setup -#from spot_setup_griewank import spot_setup +# from spot_setup_rosenbrock import spot_setup +# from spot_setup_griewank import spot_setup from spotpy.examples.spot_setup_ackley import spot_setup Z = np.zeros(X.shape) for i in range(X.shape[0]): for j in range(X.shape[1]): - sim=spot_setup().simulation([X[i,j],Y[i,j]]) - like=spotpy.objectivefunctions.rmse(sim,[0]) - Z[i,j] = like + sim = spot_setup().simulation([X[i, j], Y[i, j]]) + like = spotpy.objectivefunctions.rmse(sim, [0]) + Z[i, j] = like -surf_Rosen = ax.plot_surface(X, Y, Z,rstride=5,linewidth=0, cmap=cm.rainbow) -ax.set_xlabel('x') -ax.set_ylabel('y') -ax.set_zlabel('RMSE') +surf_Rosen = ax.plot_surface(X, Y, Z, rstride=5, linewidth=0, cmap=cm.rainbow) +ax.set_xlabel("x") +ax.set_ylabel("y") +ax.set_zlabel("RMSE") plt.tight_layout() -plt.savefig('Griewank3d.tif',dpi=300) +plt.savefig("Griewank3d.tif", dpi=300) -#surf_Rosen = ax.plot_surface(X_Rosen, Y_Rosen, Z_Rosen, rstride=1, cstride=1, +# surf_Rosen = ax.plot_surface(X_Rosen, Y_Rosen, Z_Rosen, rstride=1, cstride=1, # cmap=cm.coolwarm, linewidth=0, antialiased=False, alpha = 0.3) # Adjust axes -#ax.set_zlim(0, 600) -#ax.zaxis.set_major_locator(LinearLocator(5)) -#ax.zaxis.set_major_formatter(FormatStrFormatter('%.0f')) +# ax.set_zlim(0, 600) +# ax.zaxis.set_major_locator(LinearLocator(5)) +# ax.zaxis.set_major_formatter(FormatStrFormatter('%.0f')) # Report minimum -#print 'Minimum location', v0_ori, '\nMinimum value', Rosenbrock(v0_ori), '\nNumber of function evaluations', f_evals +# print 'Minimum location', v0_ori, '\nMinimum value', Rosenbrock(v0_ori), '\nNumber of function evaluations', f_evals # Render plot -plt.show() \ No newline at end of file +plt.show() diff --git a/tutorials/cli_hymod.py b/tutorials/cli_hymod.py index dfed10e3..82be868a 100644 --- a/tutorials/cli_hymod.py +++ b/tutorials/cli_hymod.py @@ -7,6 +7,6 @@ from spotpy.cli import main from spotpy.examples.spot_setup_hymod_python import spot_setup -if __name__ == '__main__': +if __name__ == "__main__": setup = spot_setup() main(setup) diff --git a/tutorials/dds/__init__.py b/tutorials/dds/__init__.py index c91096bc..f107b27a 100644 --- a/tutorials/dds/__init__.py +++ b/tutorials/dds/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -28,4 +28,4 @@ https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/tree/master/ Please cite our paper, if you are using SPOTPY. -''' +""" diff --git a/tutorials/dds/benchmark_dds.py b/tutorials/dds/benchmark_dds.py index b580e053..5eb1173e 100644 --- a/tutorials/dds/benchmark_dds.py +++ b/tutorials/dds/benchmark_dds.py @@ -21,7 +21,7 @@ results = [] benchmarks_dict = [] -benchmarks_duration = {"dds":[], "sceua":[], "dds_like":[],"sceua_like":[]} +benchmarks_duration = {"dds": [], "sceua": [], "dds_like": [], "sceua_like": []} reps = [300, 1000, 3000, 4000, 5000, 10000] @@ -33,34 +33,47 @@ dbformat = "csv" start = time.time() - dds_sampler = spotpy.algorithms.DDS(spot_setup, parallel=parallel, dbname='DDS', dbformat=dbformat, sim_timeout=timeout) + dds_sampler = spotpy.algorithms.DDS( + spot_setup, + parallel=parallel, + dbname="DDS", + dbformat=dbformat, + sim_timeout=timeout, + ) dds_sampler.sample(rep, trials=1) results.append(dds_sampler.getdata()) dds_elapsed = time.time() - start start = time.time() - sceua_sampler = spotpy.algorithms.sceua(spot_setup, parallel=parallel, dbname='SCEUA', dbformat=dbformat, - sim_timeout=timeout, alt_objfun=None) + sceua_sampler = spotpy.algorithms.sceua( + spot_setup, + parallel=parallel, + dbname="SCEUA", + dbformat=dbformat, + sim_timeout=timeout, + alt_objfun=None, + ) sceua_sampler.sample(rep) results.append(sceua_sampler.getdata()) sceua_elapsed = time.time() - start - print("#########################################") - #print(dds_elapsed, dds_sampler.status.params) + # print(dds_elapsed, dds_sampler.status.params) print(sceua_elapsed, sceua_sampler.status.params) - benchmarks_dict.append({ - "rep": rep, - "dds_time": dds_elapsed, - "sceua_time": sceua_elapsed, - "dds_like": dds_sampler.status.objectivefunction, - "sceua_like": sceua_sampler.status.objectivefunction, - "dds_param": list(dds_sampler.status.params), - "sceua_param": list(sceua_sampler.status.params) - }) + benchmarks_dict.append( + { + "rep": rep, + "dds_time": dds_elapsed, + "sceua_time": sceua_elapsed, + "dds_like": dds_sampler.status.objectivefunction, + "sceua_like": sceua_sampler.status.objectivefunction, + "dds_param": list(dds_sampler.status.params), + "sceua_param": list(sceua_sampler.status.params), + } + ) benchmarks_duration["dds"].append(dds_elapsed) benchmarks_duration["sceua"].append(sceua_elapsed) benchmarks_duration["sceua_like"].append(sceua_sampler.status.objectivefunction) @@ -75,10 +88,13 @@ def autolabel(rects): """ for rect in rects: height = rect.get_height() - ax.text(rect.get_x() + rect.get_width()/2., 1.05*height, - '%d' % int(height), - ha='center', va='bottom') - + ax.text( + rect.get_x() + rect.get_width() / 2.0, + 1.05 * height, + "%d" % int(height), + ha="center", + va="bottom", + ) fig = plt.figure(figsize=(10, 6)) @@ -89,12 +105,13 @@ def autolabel(rects): X = np.arange(len(benchmarks_duration["dds"])) -dds_plot = ax.bar(x_pos, benchmarks_duration["dds_like"], color = 'b', width = 0.45) -sceua_plot = ax.bar([j+0.45 for j in x_pos], benchmarks_duration["sceua_like"], color = 'g', width = 0.45) - -#dds_plot = ax.bar(x_pos, benchmarks_duration["dds"], color = 'b', width = 0.45) -#sceua_plot = ax.bar([j+0.45 for j in x_pos], benchmarks_duration["sceua"], color = 'g', width = 0.45) +dds_plot = ax.bar(x_pos, benchmarks_duration["dds_like"], color="b", width=0.45) +sceua_plot = ax.bar( + [j + 0.45 for j in x_pos], benchmarks_duration["sceua_like"], color="g", width=0.45 +) +# dds_plot = ax.bar(x_pos, benchmarks_duration["dds"], color = 'b', width = 0.45) +# sceua_plot = ax.bar([j+0.45 for j in x_pos], benchmarks_duration["sceua"], color = 'g', width = 0.45) plt.xticks(x_pos, rep_labels) @@ -108,4 +125,3 @@ def autolabel(rects): plt.show() plt.savefig("MPI_TEST") # - diff --git a/tutorials/dds/dds_parallel.py b/tutorials/dds/dds_parallel.py index ba99b4cd..20f894c3 100644 --- a/tutorials/dds/dds_parallel.py +++ b/tutorials/dds/dds_parallel.py @@ -29,7 +29,9 @@ parallel = "mpi" dbformat = "csv" start = time.time() -dds_sampler = spotpy.algorithms.dds(spot_setup, parallel=parallel, dbname='DDS', dbformat=dbformat, sim_timeout=timeout) +dds_sampler = spotpy.algorithms.dds( + spot_setup, parallel=parallel, dbname="DDS", dbformat=dbformat, sim_timeout=timeout +) dds_sampler.sample(rep, trials=1) dds_elapsed = time.time() - start print(dds_elapsed) @@ -40,4 +42,4 @@ print(benchmarks_duration) -json.dump(benchmarks_duration, open(json_path,"w")) \ No newline at end of file +json.dump(benchmarks_duration, open(json_path, "w")) diff --git a/tutorials/dds/dds_parallel_plot.py b/tutorials/dds/dds_parallel_plot.py index ee302d8c..3a2ec8a0 100644 --- a/tutorials/dds/dds_parallel_plot.py +++ b/tutorials/dds/dds_parallel_plot.py @@ -8,13 +8,10 @@ color_map = mp.colors.LinearSegmentedColormap( "my_map", { - "red": [(0, 1.0, 1.0), - (1.0, .5, .5)], - "green": [(0, 0.5, 0.5), - (1.0, 0, 0)], - "blue": [(0, 0.50, 0.5), - (1.0, 0, 0)] - } + "red": [(0, 1.0, 1.0), (1.0, 0.5, 0.5)], + "green": [(0, 0.5, 0.5), (1.0, 0, 0)], + "blue": [(0, 0.50, 0.5), (1.0, 0, 0)], + }, ) @@ -24,9 +21,13 @@ def autolabel(ax, rects): """ for rect in rects: height = rect.get_height() - ax.text(rect.get_x() + rect.get_width() / 2., 1.05 * height, - '%f' % height, - ha='center', va='bottom') + ax.text( + rect.get_x() + rect.get_width() / 2.0, + 1.05 * height, + "%f" % height, + ha="center", + va="bottom", + ) def subplot(data, name, ylabel): @@ -45,7 +46,26 @@ def subplot(data, name, ylabel): plt.savefig(name + ".png") -parallel_data = json.loads('{"dds_duration": [1.1293659210205078, 3.254117250442505, 4.888171672821045, 18.719818592071533, 34.56907820701599, 169.47716689109802, 337.86882615089417, 1644.955144405365, 3348.948029756546], "rep": [30, 500, 1000, 5000, 10000, 50000, 100000, 500000, 1000000], "dds_like": [-8384.884435178812, -8269.480874403698, -8268.453892284442, -8268.51195094138, -8269.65509041187, -8268.1421690868, -8267.791798085422, -8267.79178644684, -8268.141980514703]}') +# fmt: off +parallel_data = json.loads( + '{"dds_duration": [' + '1.1293659210205078, 3.254117250442505, 4.888171672821045, 18.719818592071533, ' + '34.56907820701599, 169.47716689109802, 337.86882615089417, 1644.955144405365, ' + '3348.948029756546], ' + '"rep": [30, 500, 1000, 5000, 10000, 50000, 100000, 500000, 1000000], ' + '"dds_like": [' + '-8384.884435178812, -8269.480874403698, -8268.453892284442, -8268.51195094138, ' + '-8269.65509041187, -8268.1421690868, -8267.791798085422, -8267.79178644684, -8268.141980514703]}' +) +# fmt: on reps = parallel_data["rep"] -subplot(parallel_data["dds_duration"], "DDS_PARALLEL_DURATION_all", "Duration of Run in Seconds") -subplot(parallel_data["dds_like"], "DDS_PARALLEL_OBJECTIVEFUNCTION_all", "Best Objective Function Value") +subplot( + parallel_data["dds_duration"], + "DDS_PARALLEL_DURATION_all", + "Duration of Run in Seconds", +) +subplot( + parallel_data["dds_like"], + "DDS_PARALLEL_OBJECTIVEFUNCTION_all", + "Best Objective Function Value", +) diff --git a/tutorials/dds/dds_parallel_run.py b/tutorials/dds/dds_parallel_run.py index ee66432a..047b532a 100644 --- a/tutorials/dds/dds_parallel_run.py +++ b/tutorials/dds/dds_parallel_run.py @@ -2,8 +2,8 @@ import subprocess path = os.path.abspath(os.path.dirname(__file__)) -for r in [500,1000,5000,10000,50000,100000,500000]: +for r in [500, 1000, 5000, 10000, 50000, 100000, 500000]: args = ["mpirun", "-c 6", "python", path + "/dds_parallel.py", str(r)] print(args) subprocess.run(args) - exit(8) \ No newline at end of file + exit(8) diff --git a/tutorials/getting_started.py b/tutorials/getting_started.py index aa185927..446835a9 100644 --- a/tutorials/getting_started.py +++ b/tutorials/getting_started.py @@ -1,36 +1,36 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds the example code from the getting_started web-documention. -''' +""" # Getting started -#To start your experience with SPOT you need to have SPOT installed. Please see the [Installation chapter](index.md) for further details. -#To use SPOT we have to import it and use one of the pre-build examples: +# To start your experience with SPOT you need to have SPOT installed. Please see the [Installation chapter](index.md) for further details. +# To use SPOT we have to import it and use one of the pre-build examples: import spotpy # Load the SPOT package into your working storage from spotpy.examples.spot_setup_rosenbrock import ( spot_setup, # Import the two dimensional Rosenbrock example ) -#The example comes along with parameter boundaries, the Rosenbrock function, the optimal value of the function and RMSE as a likelihood. -#So we can directly start to analyse the Rosenbrock function with one of the algorithms. We start with a simple Monte Carlo sampling: -if __name__ == '__main__': +# The example comes along with parameter boundaries, the Rosenbrock function, the optimal value of the function and RMSE as a likelihood. +# So we can directly start to analyse the Rosenbrock function with one of the algorithms. We start with a simple Monte Carlo sampling: +if __name__ == "__main__": # Give Monte Carlo algorithm the example setup and saves results in a RosenMC.csv file - #spot_setup.slow = True - sampler = spotpy.algorithms.mc(spot_setup(), dbname='RosenMC', dbformat='ram') + # spot_setup.slow = True + sampler = spotpy.algorithms.mc(spot_setup(), dbname="RosenMC", dbformat="ram") - #Now we can sample with the implemented Monte Carlo algortihm: - sampler.sample(10000) # Sample 100.000 parameter combinations - results=sampler.getdata() - #Now we want to have a look at the results. First we want to know, what the algorithm has done during the 10.000 iterations: - #spot.analyser.plot_parametertrace(results) # Use the analyser to show the parameter trace + # Now we can sample with the implemented Monte Carlo algortihm: + sampler.sample(10000) # Sample 100.000 parameter combinations + results = sampler.getdata() + # Now we want to have a look at the results. First we want to know, what the algorithm has done during the 10.000 iterations: + # spot.analyser.plot_parametertrace(results) # Use the analyser to show the parameter trace spotpy.analyser.plot_parameterInteraction(results) - posterior=spotpy.analyser.get_posterior(results) + posterior = spotpy.analyser.get_posterior(results) spotpy.analyser.plot_parameterInteraction(posterior) - #spotpy.analyser.plot_posterior_parametertrace(results, threshold=0.9) + # spotpy.analyser.plot_posterior_parametertrace(results, threshold=0.9) - print(spotpy.analyser.get_best_parameterset(results)) \ No newline at end of file + print(spotpy.analyser.get_best_parameterset(results)) diff --git a/tutorials/gui_hymod.py b/tutorials/gui_hymod.py index bfa0c464..a9f8d7f5 100644 --- a/tutorials/gui_hymod.py +++ b/tutorials/gui_hymod.py @@ -5,25 +5,26 @@ """ - import spotpy from spotpy.examples.spot_setup_hymod_python import spot_setup from spotpy.gui.mpl import GUI from spotpy.objectivefunctions import rmse -if __name__ == '__main__': - setup_class=spot_setup(rmse) +if __name__ == "__main__": + setup_class = spot_setup(rmse) - #Select number of maximum allowed repetitions - rep=10000 + # Select number of maximum allowed repetitions + rep = 10000 # Create the SCE-UA sampler of spotpy, alt_objfun is set to None to force SPOTPY # to jump into the def objectivefunction in the spot_setup class (default is # spotpy.objectivefunctions.rmse) - sampler=spotpy.algorithms.sceua(setup_class, dbname='SCEUA_hymod', dbformat='csv', alt_objfun=None) + sampler = spotpy.algorithms.sceua( + setup_class, dbname="SCEUA_hymod", dbformat="csv", alt_objfun=None + ) - #Start the sampler, one can specify ngs, kstop, peps and pcento id desired - #sampler.sample(rep,ngs=10, kstop=50, peps=0.1, pcento=0.1) + # Start the sampler, one can specify ngs, kstop, peps and pcento id desired + # sampler.sample(rep,ngs=10, kstop=50, peps=0.1, pcento=0.1) gui = GUI(spot_setup()) gui.show() diff --git a/tutorials/plot_nsgaii_tutorial.py b/tutorials/plot_nsgaii_tutorial.py index 2688ff4f..98f8b5dd 100644 --- a/tutorials/plot_nsgaii_tutorial.py +++ b/tutorials/plot_nsgaii_tutorial.py @@ -14,7 +14,7 @@ first = None n_pop = 50 -# output calibration +# output calibration df = pd.read_csv("NSGA2.csv") @@ -22,28 +22,26 @@ if last: - df = df.iloc[-last:,:] + df = df.iloc[-last:, :] elif first: - df = df.iloc[:first,:] + df = df.iloc[:first, :] else: pass - # plot objective functions fig = plt.figure() -for i,name in enumerate(df.columns[:n_obj]): - ax = fig.add_subplot(n_obj,1,i +1) - df.loc[::5,name].plot(lw=0.5,figsize=(18,8),ax = ax,color="black") +for i, name in enumerate(df.columns[:n_obj]): + ax = fig.add_subplot(n_obj, 1, i + 1) + df.loc[::5, name].plot(lw=0.5, figsize=(18, 8), ax=ax, color="black") plt.title(name) plt.show() - -x,y,z = df.iloc[-n_pop:,0],df.iloc[-n_pop:,1],df.iloc[-n_pop:,2] +x, y, z = df.iloc[-n_pop:, 0], df.iloc[-n_pop:, 1], df.iloc[-n_pop:, 2] fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') -ax.scatter(x,y,z,marker="o") +ax = fig.add_subplot(111, projection="3d") +ax.scatter(x, y, z, marker="o") ax.set_xlabel("pbias") ax.set_ylabel("rmse") ax.set_zlabel("rsquared") @@ -51,11 +49,8 @@ # plot parameters fig = plt.figure() -for i,name in enumerate(df.columns[n_obj:8]): - ax = fig.add_subplot(5,1,i +1) - df.loc[:,name].plot(lw=0.5,figsize=(18,8),ax = ax,color="black") +for i, name in enumerate(df.columns[n_obj:8]): + ax = fig.add_subplot(5, 1, i + 1) + df.loc[:, name].plot(lw=0.5, figsize=(18, 8), ax=ax, color="black") plt.title(name) plt.show() - - - diff --git a/tutorials/tutorial_Parameterlist_iterator.py b/tutorials/tutorial_Parameterlist_iterator.py index d99449df..670e5439 100644 --- a/tutorials/tutorial_Parameterlist_iterator.py +++ b/tutorials/tutorial_Parameterlist_iterator.py @@ -1,42 +1,52 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the Rosenbrock function into SPOT. -''' +""" import numpy as np import spotpy class spot_setup(object): - def __init__(self): self.slow = 1000 - self.params = [spotpy.parameter.List('x',[1,2,3,4,5,6,7,8,9,0]), #Give possible x values as a List - spotpy.parameter.List('y',[0,1,2,5,6,7,8,9,0,1]) #Give possible y values as a List + self.params = [ + spotpy.parameter.List( + "x", [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] + ), # Give possible x values as a List + spotpy.parameter.List( + "y", [0, 1, 2, 5, 6, 7, 8, 9, 0, 1] + ), # Give possible y values as a List + ] - ] def parameters(self): return spotpy.parameter.generate(self.params) - def simulation(self,vector): - x=np.array(vector) + def simulation(self, vector): + x = np.array(vector) for i in range(self.slow): s = np.sin(i) - simulations= [sum(100.0*(x[1:] - x[:-1]**2.0)**2.0 + (1 - x[:-1])**2.0)] + simulations = [ + sum(100.0 * (x[1:] - x[:-1] ** 2.0) ** 2.0 + (1 - x[:-1]) ** 2.0) + ] return simulations def evaluation(self): - observations=[0] + observations = [0] return observations - def objectivefunction(self,simulation,evaluation): - objectivefunction = -spotpy.objectivefunctions.rmse(evaluation,simulation) + def objectivefunction(self, simulation, evaluation): + objectivefunction = -spotpy.objectivefunctions.rmse(evaluation, simulation) return objectivefunction -sampler=spotpy.algorithms.mc(spot_setup(),dbname='Iterator_example', dbformat='csv') #Parameter lists can be sampled with MC -sampler.sample(10) #Choose equaly or less repetitions as you have parameters in your List +sampler = spotpy.algorithms.mc( + spot_setup(), dbname="Iterator_example", dbformat="csv" +) # Parameter lists can be sampled with MC +sampler.sample( + 10 +) # Choose equaly or less repetitions as you have parameters in your List diff --git a/tutorials/tutorial_ackley.py b/tutorials/tutorial_ackley.py index 20a8588f..02223561 100644 --- a/tutorials/tutorial_ackley.py +++ b/tutorials/tutorial_ackley.py @@ -1,62 +1,59 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds the example code from the ackley tutorial web-documention. -''' +""" import spotpy from spotpy.examples.spot_setup_ackley import spot_setup -#Create samplers for every algorithm: -results=[] -spot_setup=spot_setup() -rep=5000 +# Create samplers for every algorithm: +results = [] +spot_setup = spot_setup() +rep = 5000 -sampler=spotpy.algorithms.mc(spot_setup, dbname='ackleyMC', dbformat='csv') +sampler = spotpy.algorithms.mc(spot_setup, dbname="ackleyMC", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) # -sampler=spotpy.algorithms.lhs(spot_setup, dbname='ackleyLHS', dbformat='csv') +sampler = spotpy.algorithms.lhs(spot_setup, dbname="ackleyLHS", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.mle(spot_setup, dbname='ackleyMLE', dbformat='csv') +sampler = spotpy.algorithms.mle(spot_setup, dbname="ackleyMLE", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.mcmc(spot_setup, dbname='ackleyMCMC', dbformat='csv') +sampler = spotpy.algorithms.mcmc(spot_setup, dbname="ackleyMCMC", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.sceua(spot_setup, dbname='ackleySCEUA', dbformat='csv') -sampler.sample(rep,ngs=2) +sampler = spotpy.algorithms.sceua(spot_setup, dbname="ackleySCEUA", dbformat="csv") +sampler.sample(rep, ngs=2) results.append(sampler.getdata()) -sampler=spotpy.algorithms.sa(spot_setup, dbname='ackleySA', dbformat='csv') +sampler = spotpy.algorithms.sa(spot_setup, dbname="ackleySA", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.demcz(spot_setup, dbname='ackleyDEMCz', dbformat='csv') -sampler.sample(rep,nChains=30) +sampler = spotpy.algorithms.demcz(spot_setup, dbname="ackleyDEMCz", dbformat="csv") +sampler.sample(rep, nChains=30) results.append(sampler.getdata()) # -sampler=spotpy.algorithms.rope(spot_setup, dbname='ackleyROPE', dbformat='csv') +sampler = spotpy.algorithms.rope(spot_setup, dbname="ackleyROPE", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) - -algorithms=['MC','LHS','MLE','MCMC','SCEUA','SA','DEMCz','ROPE'] -results=[] +algorithms = ["MC", "LHS", "MLE", "MCMC", "SCEUA", "SA", "DEMCz", "ROPE"] +results = [] for algorithm in algorithms: - results.append(spotpy.analyser.load_csv_results('ackley'+algorithm)) + results.append(spotpy.analyser.load_csv_results("ackley" + algorithm)) evaluation = spot_setup.evaluation() -spotpy.analyser.plot_objectivefunctiontraces(results,evaluation,algorithms) - - +spotpy.analyser.plot_objectivefunctiontraces(results, evaluation, algorithms) diff --git a/tutorials/tutorial_cmf_lumped.py b/tutorials/tutorial_cmf_lumped.py index 3d8b6d45..9a49cd83 100644 --- a/tutorials/tutorial_cmf_lumped.py +++ b/tutorials/tutorial_cmf_lumped.py @@ -18,7 +18,7 @@ def parallel(): Returns 'mpi', if this code runs with MPI, else returns 'seq' :return: """ - return 'mpi' if 'OMPI_COMM_WORLD_SIZE' in os.environ else 'seq' + return "mpi" if "OMPI_COMM_WORLD_SIZE" in os.environ else "seq" def get_runs(default=1): @@ -28,9 +28,9 @@ def get_runs(default=1): :return: int """ # Get number of runs - if 'SPOTPYRUNS' in os.environ: + if "SPOTPYRUNS" in os.environ: # from environment - return int(os.environ['SPOTPYRUNS']) + return int(os.environ["SPOTPYRUNS"]) elif len(sys.argv) > 1: # from command line return int(sys.argv[1]) @@ -39,21 +39,23 @@ def get_runs(default=1): return default -if __name__ == '__main__': +if __name__ == "__main__": # Create the model - model = SingleStorage(datetime.datetime(1980, 1, 1), - datetime.datetime(1985, 12, 31)) + model = SingleStorage( + datetime.datetime(1980, 1, 1), datetime.datetime(1985, 12, 31) + ) runs = get_runs(default=100) # Create the sampler - sampler = spotpy.algorithms.mc(model, - parallel=parallel(), - dbname=model.dbname, dbformat='csv', - save_sim=True, sim_timeout=300) + sampler = spotpy.algorithms.mc( + model, + parallel=parallel(), + dbname=model.dbname, + dbformat="csv", + save_sim=True, + sim_timeout=300, + ) # Now we can sample with the implemented Monte Carlo algorithm: sampler.sample(runs) - - - diff --git a/tutorials/tutorial_dds_hymod.py b/tutorials/tutorial_dds_hymod.py index c5365d17..12c530c1 100644 --- a/tutorials/tutorial_dds_hymod.py +++ b/tutorials/tutorial_dds_hymod.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds example code how to use the dream algorithm -''' +""" import numpy as np @@ -14,6 +14,7 @@ import spotpy except ImportError: import sys + sys.path.append(".") import spotpy @@ -22,79 +23,81 @@ from spotpy.examples.spot_setup_hymod_python import spot_setup if __name__ == "__main__": - parallel ='seq' # Runs everthing in sequential mode - np.random.seed(2000) # Makes the results reproduceable - + parallel = "seq" # Runs everthing in sequential mode + np.random.seed(2000) # Makes the results reproduceable + # Initialize the Hymod example # In this case, we tell the setup which algorithm we want to use, so # we can use this exmaple for different algorithms - spot_setup=spot_setup(spotpy.objectivefunctions.nashsutcliffe) - - #Select number of maximum allowed repetitions - rep=1000 - + spot_setup = spot_setup(spotpy.objectivefunctions.nashsutcliffe) + + # Select number of maximum allowed repetitions + rep = 1000 + # Create the SCE-UA sampler of spotpy, alt_objfun is set to None to force SPOTPY # to jump into the def objectivefunction in the spot_setup class (default is - # spotpy.objectivefunctions.rmse) - sampler=spotpy.algorithms.dds(spot_setup, dbname='DDS_hymod', dbformat='csv') - - #Start the sampler, one can specify ngs, kstop, peps and pcento id desired + # spotpy.objectivefunctions.rmse) + sampler = spotpy.algorithms.dds(spot_setup, dbname="DDS_hymod", dbformat="csv") + + # Start the sampler, one can specify ngs, kstop, peps and pcento id desired sampler.sample(rep) results = sampler.getdata() - - fig= plt.figure(1,figsize=(9,5)) - plt.plot(results['like1']) + + fig = plt.figure(1, figsize=(9, 5)) + plt.plot(results["like1"]) plt.show() - plt.ylabel('Objective function') - plt.xlabel('Iteration') - fig.savefig('hymod_objectivefunction.png',dpi=300) - - # Example plot to show the parameter distribution ###### + plt.ylabel("Objective function") + plt.xlabel("Iteration") + fig.savefig("hymod_objectivefunction.png", dpi=300) + + # Example plot to show the parameter distribution ###### def plot_parameter_trace(ax, results, parameter): - ax.plot(results['par'+parameter.name],'.') + ax.plot(results["par" + parameter.name], ".") ax.set_ylabel(parameter.name) ax.set_ylim(parameter.minbound, parameter.maxbound) - + def plot_parameter_histogram(ax, results, parameter): - #chooses the last 20% of the sample - ax.hist(results['par'+parameter.name][int(len(results)*0.9):], - bins =np.linspace(parameter.minbound,parameter.maxbound,20)) - ax.set_ylabel('Density') + # chooses the last 20% of the sample + ax.hist( + results["par" + parameter.name][int(len(results) * 0.9) :], + bins=np.linspace(parameter.minbound, parameter.maxbound, 20), + ) + ax.set_ylabel("Density") ax.set_xlim(parameter.minbound, parameter.maxbound) - - fig= plt.figure(2,figsize=(9,9)) - - ax1 = plt.subplot(5,2,1) + + fig = plt.figure(2, figsize=(9, 9)) + + ax1 = plt.subplot(5, 2, 1) plot_parameter_trace(ax1, results, spot_setup.cmax) - - ax2 = plt.subplot(5,2,2) - plot_parameter_histogram(ax2,results, spot_setup.cmax) - - ax3 = plt.subplot(5,2,3) + + ax2 = plt.subplot(5, 2, 2) + plot_parameter_histogram(ax2, results, spot_setup.cmax) + + ax3 = plt.subplot(5, 2, 3) plot_parameter_trace(ax3, results, spot_setup.bexp) - - ax4 = plt.subplot(5,2,4) + + ax4 = plt.subplot(5, 2, 4) plot_parameter_histogram(ax4, results, spot_setup.bexp) - - ax5 = plt.subplot(5,2,5) + + ax5 = plt.subplot(5, 2, 5) plot_parameter_trace(ax5, results, spot_setup.alpha) - - ax6 = plt.subplot(5,2,6) + + ax6 = plt.subplot(5, 2, 6) plot_parameter_histogram(ax6, results, spot_setup.alpha) - ax7 = plt.subplot(5,2,7) + ax7 = plt.subplot(5, 2, 7) plot_parameter_trace(ax7, results, spot_setup.Ks) - - ax8 = plt.subplot(5,2,8) + + ax8 = plt.subplot(5, 2, 8) plot_parameter_histogram(ax8, results, spot_setup.Ks) - ax9 = plt.subplot(5,2,9) + ax9 = plt.subplot(5, 2, 9) plot_parameter_trace(ax9, results, spot_setup.Kq) - ax9.set_xlabel('Iterations') - - ax10 = plt.subplot(5,2,10) + ax9.set_xlabel("Iterations") + + ax10 = plt.subplot(5, 2, 10) plot_parameter_histogram(ax10, results, spot_setup.Kq) - ax10.set_xlabel('Parameter range') - + ax10.set_xlabel("Parameter range") + plt.show() - fig.savefig('hymod_parameters.png',dpi=300) \ No newline at end of file + fig.savefig("hymod_parameters.png", dpi=300) diff --git a/tutorials/tutorial_dream_hymod.py b/tutorials/tutorial_dream_hymod.py index 71761520..ee2d17d6 100644 --- a/tutorials/tutorial_dream_hymod.py +++ b/tutorials/tutorial_dream_hymod.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds example code how to use the dream algorithm -''' +""" import matplotlib.pyplot as plt import numpy as np @@ -14,90 +14,104 @@ import spotpy from spotpy.analyser import plot_parameter_trace, plot_posterior_parameter_histogram -#from spotpy.examples.spot_setup_hymod_exe import spot_setup +# from spotpy.examples.spot_setup_hymod_exe import spot_setup from spotpy.examples.spot_setup_hymod_python import spot_setup from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike if __name__ == "__main__": - parallel ='seq' + parallel = "seq" # Initialize the Hymod example (will only work on Windows systems) - #spot_setup=spot_setup(parallel=parallel) - spot_setup=spot_setup(GausianLike) - + # spot_setup=spot_setup(parallel=parallel) + spot_setup = spot_setup(GausianLike) + # Create the Dream sampler of spotpy, alt_objfun is set to None to force SPOTPY # to jump into the def objectivefunction in the spot_setup class (default is - # spotpy.objectivefunctions.log_p) - - #Select number of maximum repetitions - rep=5000 - + # spotpy.objectivefunctions.log_p) + + # Select number of maximum repetitions + rep = 5000 + # Select seven chains and set the Gelman-Rubin convergence limit - delta = 3 - nChains = 7 - convergence_limit = 1.2 - + delta = 3 + nChains = 7 + convergence_limit = 1.2 + # Other possible settings to modify the DREAM algorithm, for details see Vrugt (2016) - c = 0.1 - nCr = 3 - eps = 10e-6 + c = 0.1 + nCr = 3 + eps = 10e-6 runs_after_convergence = 100 acceptance_test_option = 6 - - sampler=spotpy.algorithms.dream(spot_setup, dbname='DREAM_hymod', dbformat='csv', parallel=parallel) - r_hat = sampler.sample(rep, nChains, nCr, delta, c, eps, convergence_limit, - runs_after_convergence,acceptance_test_option) - - - - + + sampler = spotpy.algorithms.dream( + spot_setup, dbname="DREAM_hymod", dbformat="csv", parallel=parallel + ) + r_hat = sampler.sample( + rep, + nChains, + nCr, + delta, + c, + eps, + convergence_limit, + runs_after_convergence, + acceptance_test_option, + ) + # Load the results gained with the dream sampler, stored in DREAM_hymod.csv - results = spotpy.analyser.load_csv_results('DREAM_hymod') + results = spotpy.analyser.load_csv_results("DREAM_hymod") # Get fields with simulation data - fields=[word for word in results.dtype.names if word.startswith('sim')] - - + fields = [word for word in results.dtype.names if word.startswith("sim")] + # Example plot to show remaining parameter uncertainty # - fig= plt.figure(figsize=(9,6)) - ax = plt.subplot(1,1,1) - q5,q25,q75,q95=[],[],[],[] + fig = plt.figure(figsize=(9, 6)) + ax = plt.subplot(1, 1, 1) + q5, q25, q75, q95 = [], [], [], [] for field in fields: - q5.append(np.percentile(results[field][-100:-1],2.5))# ALl 100 runs after convergence - q95.append(np.percentile(results[field][-100:-1],97.5))# ALl 100 runs after convergence - ax.plot(q5,color='dimgrey',linestyle='solid') - ax.plot(q95,color='dimgrey',linestyle='solid') - ax.fill_between(np.arange(0,len(q5),1),list(q5),list(q95),facecolor='dimgrey',zorder=0, - linewidth=0,label='simulation uncertainty') - ax.plot(spot_setup.evaluation(),color='red', markersize=2,label='data') - ax.set_ylim(-50,450) - ax.set_xlim(0,729) - ax.set_ylabel('Discharge [l s-1]') - ax.set_xlabel('Days') + q5.append( + np.percentile(results[field][-100:-1], 2.5) + ) # ALl 100 runs after convergence + q95.append( + np.percentile(results[field][-100:-1], 97.5) + ) # ALl 100 runs after convergence + ax.plot(q5, color="dimgrey", linestyle="solid") + ax.plot(q95, color="dimgrey", linestyle="solid") + ax.fill_between( + np.arange(0, len(q5), 1), + list(q5), + list(q95), + facecolor="dimgrey", + zorder=0, + linewidth=0, + label="simulation uncertainty", + ) + ax.plot(spot_setup.evaluation(), color="red", markersize=2, label="data") + ax.set_ylim(-50, 450) + ax.set_xlim(0, 729) + ax.set_ylabel("Discharge [l s-1]") + ax.set_xlabel("Days") ax.legend() - fig.savefig('DREAM_simulation_uncertainty_Hymod.png',dpi=150) + fig.savefig("DREAM_simulation_uncertainty_Hymod.png", dpi=150) ######################################################### - - + # Example plot to show the convergence ################# - spotpy.analyser.plot_gelman_rubin(results, r_hat, fig_name='DREAM_r_hat.png') + spotpy.analyser.plot_gelman_rubin(results, r_hat, fig_name="DREAM_r_hat.png") ######################################################## - - - - + # Example plot to show the parameter distribution ###### parameters = spotpy.parameter.get_parameters_array(spot_setup) - + fig, ax = plt.subplots(nrows=5, ncols=2) fig.set_figheight(9) fig.set_figwidth(9) for par_id in range(len(parameters)): plot_parameter_trace(ax[par_id][0], results, parameters[par_id]) plot_posterior_parameter_histogram(ax[par_id][1], results, parameters[par_id]) - - ax[-1][0].set_xlabel('Iterations') - ax[-1][1].set_xlabel('Parameter range') - + + ax[-1][0].set_xlabel("Iterations") + ax[-1][1].set_xlabel("Parameter range") + plt.show() fig.tight_layout() - fig.savefig('DREAM_parameter_uncertainty_Hymod.png',dpi=300) - ####################################################### \ No newline at end of file + fig.savefig("DREAM_parameter_uncertainty_Hymod.png", dpi=300) + ####################################################### diff --git a/tutorials/tutorial_fast_hymod.py b/tutorials/tutorial_fast_hymod.py index 8ab7c44c..57e89345 100644 --- a/tutorials/tutorial_fast_hymod.py +++ b/tutorials/tutorial_fast_hymod.py @@ -1,39 +1,41 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds example code how to use the FAST algorithm -''' +""" import numpy as np import spotpy -#from spotpy.examples.spot_setup_hymod_python import spot_setup +# from spotpy.examples.spot_setup_hymod_python import spot_setup from spotpy.examples.spot_setup_rosenbrock import spot_setup if __name__ == "__main__": - parallel ='seq' + parallel = "seq" # Initialize the Hymod example spot_setup = spot_setup() - - #Select number of maximum repetitions + + # Select number of maximum repetitions # CHeck out https://spotpy.readthedocs.io/en/latest/Sensitivity_analysis_with_FAST/ # How to determine an appropriate number of repetitions rep = 2245 - - #Start a sensitivity analysis - sampler = spotpy.algorithms.fast(spot_setup, dbname='FAST_hymod', dbformat='csv', db_precision=np.float32) + + # Start a sensitivity analysis + sampler = spotpy.algorithms.fast( + spot_setup, dbname="FAST_hymod", dbformat="csv", db_precision=np.float32 + ) sampler.sample(rep) - + # Load the results gained with the fast sampler, stored in FAST_hymod.csv - results = spotpy.analyser.load_csv_results('FAST_hymod') - + results = spotpy.analyser.load_csv_results("FAST_hymod") + # Example plot to show the sensitivity index of each parameter spotpy.analyser.plot_fast_sensitivity(results, number_of_sensitiv_pars=3) - - # Example to get the sensitivity index of each parameter + + # Example to get the sensitivity index of each parameter SI = spotpy.analyser.get_sensitivity_of_fast(results) diff --git a/tutorials/tutorial_griewank.py b/tutorials/tutorial_griewank.py index 72d5e68d..91d0e5be 100644 --- a/tutorials/tutorial_griewank.py +++ b/tutorials/tutorial_griewank.py @@ -1,60 +1,59 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds the example code from the Griewank tutorial web-documention. -''' +""" import spotpy from spotpy.examples.spot_setup_griewank import spot_setup -#Create samplers for every algorithm: -results=[] -spot_setup=spot_setup() -rep=5000 +# Create samplers for every algorithm: +results = [] +spot_setup = spot_setup() +rep = 5000 -sampler=spotpy.algorithms.mc(spot_setup, dbname='GriewankMC', dbformat='csv') +sampler = spotpy.algorithms.mc(spot_setup, dbname="GriewankMC", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.lhs(spot_setup, dbname='GriewankLHS', dbformat='csv') +sampler = spotpy.algorithms.lhs(spot_setup, dbname="GriewankLHS", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.mle(spot_setup, dbname='GriewankMLE', dbformat='csv') +sampler = spotpy.algorithms.mle(spot_setup, dbname="GriewankMLE", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.mcmc(spot_setup, dbname='GriewankMCMC', dbformat='csv') +sampler = spotpy.algorithms.mcmc(spot_setup, dbname="GriewankMCMC", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.sceua(spot_setup, dbname='GriewankSCEUA', dbformat='csv') -sampler.sample(rep,ngs=4) +sampler = spotpy.algorithms.sceua(spot_setup, dbname="GriewankSCEUA", dbformat="csv") +sampler.sample(rep, ngs=4) results.append(sampler.getdata()) -sampler=spotpy.algorithms.sa(spot_setup, dbname='GriewankSA', dbformat='csv') +sampler = spotpy.algorithms.sa(spot_setup, dbname="GriewankSA", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.demcz(spot_setup, dbname='GriewankDEMCz', dbformat='csv') -sampler.sample(rep,nChains=4) +sampler = spotpy.algorithms.demcz(spot_setup, dbname="GriewankDEMCz", dbformat="csv") +sampler.sample(rep, nChains=4) results.append(sampler.getdata()) -sampler=spotpy.algorithms.rope(spot_setup, dbname='GriewankROPE', dbformat='csv') +sampler = spotpy.algorithms.rope(spot_setup, dbname="GriewankROPE", dbformat="csv") sampler.sample(rep) results.append(sampler.getdata()) - -algorithms=['MC','LHS','MLE','MCMC','SCEUA','SA','DEMCz','ROPE'] -#results=[] -#for algorithm in algorithms: +algorithms = ["MC", "LHS", "MLE", "MCMC", "SCEUA", "SA", "DEMCz", "ROPE"] +# results=[] +# for algorithm in algorithms: # results.append(spot.analyser.load_csv_results('Griewank'+algorithm)) evaluation = spot_setup.evaluation() -spotpy.analyser.plot_heatmap_griewank(results,algorithms) +spotpy.analyser.plot_heatmap_griewank(results, algorithms) diff --git a/tutorials/tutorial_likelihood.py b/tutorials/tutorial_likelihood.py index 8c586c30..1343d88d 100644 --- a/tutorials/tutorial_likelihood.py +++ b/tutorials/tutorial_likelihood.py @@ -1,11 +1,11 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2017 by Benjamin Manns This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska, Benjamin Manns This code shows how to use the likelihood framework and present all existing function. -''' +""" import numpy as np @@ -27,16 +27,36 @@ print("gaussianLikelihoodHomoHeteroDataError: " + str(l)) # Here are examples where functions get `params` -l = spotpy.likelihoods.LikelihoodAR1NoC(data, comparedata, params=([0.98], ["likelihood_phi"])) +l = spotpy.likelihoods.LikelihoodAR1NoC( + data, comparedata, params=([0.98], ["likelihood_phi"]) +) print("LikelihoodAR1NoC: " + str(l)) l = spotpy.likelihoods.LikelihoodAR1WithC(data, comparedata) print("LikelihoodAR1WithC: " + str(l)) -l = spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= -([np.random.uniform(-0.99, 1, 1), np.random.uniform(0.1, 10, 1), np.random.uniform(0, 1, 1), np.random.uniform(0, 1, 0), - np.random.uniform(0, 0.99, 1), np.random.uniform(0, 100, 1)], - ["likelihood_beta", "likelihood_xi", "likelihood_sigma0", "likelihood_sigma1", "likelihood_phi1", "likelihood_muh"])) +l = spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=( + [ + np.random.uniform(-0.99, 1, 1), + np.random.uniform(0.1, 10, 1), + np.random.uniform(0, 1, 1), + np.random.uniform(0, 1, 0), + np.random.uniform(0, 0.99, 1), + np.random.uniform(0, 100, 1), + ], + [ + "likelihood_beta", + "likelihood_xi", + "likelihood_sigma0", + "likelihood_sigma1", + "likelihood_phi1", + "likelihood_muh", + ], + ), +) print("generalizedLikelihoodFunction: " + str(l)) l = spotpy.likelihoods.LaplacianLikelihood(data, comparedata) @@ -48,9 +68,18 @@ l = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(data, comparedata) print("SkewedStudentLikelihoodHeteroscedastic: " + str(l)) -l = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(data, comparedata, params=( - [np.random.uniform(2.01, 100, 1), np.random.uniform(0.01, 100, 1), np.random.uniform(-.99, .99, 1)], - ["likelihood_nu", "likelihood_kappa", "likelihood_phi"])) +l = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + data, + comparedata, + params=( + [ + np.random.uniform(2.01, 100, 1), + np.random.uniform(0.01, 100, 1), + np.random.uniform(-0.99, 0.99, 1), + ], + ["likelihood_nu", "likelihood_kappa", "likelihood_phi"], + ), +) print("SkewedStudentLikelihoodHeteroscedasticAdvancedARModel: " + str(l)) @@ -83,22 +112,18 @@ class spot_setup_gauss(object): def __init__(self): self.params = [ # Original mean: 12, sd:23 - spotpy.parameter.Uniform('mean', -20, 20, 2, 3.0, -20, 20), - spotpy.parameter.Uniform('sd', 1, 30, 2, 3.01, 1, 30), - + spotpy.parameter.Uniform("mean", -20, 20, 2, 3.0, -20, 20), + spotpy.parameter.Uniform("sd", 1, 30, 2, 3.01, 1, 30), # Some likelihood function need additional parameter, look them up in the documentation # spotpy.parameter.Uniform('likelihood_nu', 2.01, 100, 1.5, 3.0, -10, 10), # spotpy.parameter.Uniform('likelihood_kappa', 0.01, 100, 1.5, 3.0, -10, 10), - #spotpy.parameter.Uniform('likelihood_phi', -.99, .99, 0.1, 0.1, 0.1, 0.1), - + # spotpy.parameter.Uniform('likelihood_phi', -.99, .99, 0.1, 0.1, 0.1, 0.1), # spotpy.parameter.Uniform('likelihood_beta', -.99, .99, 1.5, 3.0, -10, 10), # spotpy.parameter.Uniform('likelihood_xsi', 0.11, 10, 1.5, 3.0, -10, 10), # spotpy.parameter.Uniform('likelihood_sigma0', 0, 1, 1.5, 3.0, -10, 10), - # spotpy.parameter.Uniform('likelihood_sigma1', 0, 1, 1.5, 3.0, -10, 10), # spotpy.parameter.Uniform('likelihood_phi1', 0, .99, 1.5, 3.0, -10, 10), # spotpy.parameter.Uniform('likelihood_muh', 0, 100, 1.5, 3.0, -10, 10) - ] def parameters(self): @@ -111,9 +136,12 @@ def simulation(self, vector): import subprocess output = subprocess.check_output( - "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_2.R " + str( - vector[0])+" "+str(vector[1]) , shell=True) - #print("this parameters: "+str(vector[0])+" "+str(vector[1])) + "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/" + "Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/" + f"spotpy/likelihood_test/myR_2.R {vector[0]} {vector[1]}", + shell=True, + ) + # print("this parameters: "+str(vector[0])+" "+str(vector[1])) output = output.decode("utf-8") back = json.loads(output) @@ -125,50 +153,58 @@ def simulation(self, vector): def evaluation(self): # Gauss with mean=12 and sd=23 - observations = [1.537678, 7.615278, 33.54329, 12.09963, 24.69595, 7.033905, 21.30595, -17.77526, -7.09708, - 36.80745, 10.68426, -42.7048, -21.01126, -6.314566, 38.01058, -15.79536, -17.69119, -4.482229, - 12.30351, -30.54512, 8.468925, 27.44369, 37.20623, -8.753253, 39.40037, 29.03273, 0.5257918, - 25.98343, -16.09876, 6.430084, 4.755722, -10.38204, 7.97673, -37.55442, 58.04988, 20.41361, - 32.13943, 30.37884, 6.898094, 13.32948, -14.5311, 25.0606, 25.81364, 25.82836, 47.70208, - 31.1919, 24.74743, 18.21143, 10.67086, 47.29963, 40.3718, 39.21012, 6.774497, -4.244702, - 13.45878, 33.80645, 15.64674, -6.277918, 36.83417, 23.13524, 11.85227, 31.38894, 13.00289, - 6.47117, 19.31257, -11.23233, 21.07677, 14.96549, 9.952789, 23.54167, 46.7991, 47.64822, - 7.33875, 17.64916, 38.79842, 11.75935, 17.70734, 15.64669, -6.890646, 3.710825, 44.42125, - -20.1855, 24.32393, 56.55909, 33.02915, 5.173076, -24.00348, 16.62815, -21.64049, 18.2159, - 41.69109, -31.26055, 36.9492, 2.780838, -4.519057, -24.71357, 20.63503, 17.08391, 26.23503, - 12.82442, 22.13652, 21.21188, 47.99579, 44.52914, -0.5511025, 55.47107, -15.12694, 2.884632, - 7.361032, 12.66143, 37.38807, 53.63648, 9.114074, 12.68311, -6.890102, 32.40405, 22.93079, - 1.498509, 22.68785, 29.71565, 21.42051, -9.961459, -10.22352, -28.16017, 14.14882, 9.64758, - -5.821728, -21.93086, 19.94631, 16.29195, 28.87528, 25.81239, 52.44341, 5.229822, -17.92572, - 11.85504, 17.21691, 17.19854, -6.37061, 16.1524, -13.08297, 13.45471, 9.43481, -2.177022, - 17.46416, 2.647446, 16.77834, 20.77827, 49.37553, 8.435563, -13.85352, 17.06572, 5.550149, - 2.674943, -21.95848, 11.82037, 30.51478, 8.334891, -17.1576, -16.82652, 50.31279, -31.05799, - 52.69635, 22.11049, -43.32149, -13.5348, -5.125771, 1.801732, 19.30368, 14.94216, -19.32855, - 20.75345, 21.03398, 5.430688, -3.163607, 10.1321, -12.9058, -13.77746, 25.02506, -7.187246, - 39.93147, 5.330449, 6.705344, -16.47149, -34.20934, 28.66261, -6.420032, 4.682751, -9.622858, - 17.95173, 3.316576, 14.6763, 13.84716, -20.52151, 24.35037, 28.57057, 18.17082, 26.14141, - 72.05923, -12.29775,26.83472] - + # fmt: off + observations = [ + 1.537678, 7.615278, 33.54329, 12.09963, 24.69595, 7.033905, 21.30595, -17.77526, -7.09708, + 36.80745, 10.68426, -42.7048, -21.01126, -6.314566, 38.01058, -15.79536, -17.69119, -4.482229, + 12.30351, -30.54512, 8.468925, 27.44369, 37.20623, -8.753253, 39.40037, 29.03273, 0.5257918, + 25.98343, -16.09876, 6.430084, 4.755722, -10.38204, 7.97673, -37.55442, 58.04988, 20.41361, + 32.13943, 30.37884, 6.898094, 13.32948, -14.5311, 25.0606, 25.81364, 25.82836, 47.70208, + 31.1919, 24.74743, 18.21143, 10.67086, 47.29963, 40.3718, 39.21012, 6.774497, -4.244702, + 13.45878, 33.80645, 15.64674, -6.277918, 36.83417, 23.13524, 11.85227, 31.38894, 13.00289, + 6.47117, 19.31257, -11.23233, 21.07677, 14.96549, 9.952789, 23.54167, 46.7991, 47.64822, + 7.33875, 17.64916, 38.79842, 11.75935, 17.70734, 15.64669, -6.890646, 3.710825, 44.42125, + -20.1855, 24.32393, 56.55909, 33.02915, 5.173076, -24.00348, 16.62815, -21.64049, 18.2159, + 41.69109, -31.26055, 36.9492, 2.780838, -4.519057, -24.71357, 20.63503, 17.08391, 26.23503, + 12.82442, 22.13652, 21.21188, 47.99579, 44.52914, -0.5511025, 55.47107, -15.12694, 2.884632, + 7.361032, 12.66143, 37.38807, 53.63648, 9.114074, 12.68311, -6.890102, 32.40405, 22.93079, + 1.498509, 22.68785, 29.71565, 21.42051, -9.961459, -10.22352, -28.16017, 14.14882, 9.64758, + -5.821728, -21.93086, 19.94631, 16.29195, 28.87528, 25.81239, 52.44341, 5.229822, -17.92572, + 11.85504, 17.21691, 17.19854, -6.37061, 16.1524, -13.08297, 13.45471, 9.43481, -2.177022, + 17.46416, 2.647446, 16.77834, 20.77827, 49.37553, 8.435563, -13.85352, 17.06572, 5.550149, + 2.674943, -21.95848, 11.82037, 30.51478, 8.334891, -17.1576, -16.82652, 50.31279, -31.05799, + 52.69635, 22.11049, -43.32149, -13.5348, -5.125771, 1.801732, 19.30368, 14.94216, -19.32855, + 20.75345, 21.03398, 5.430688, -3.163607, 10.1321, -12.9058, -13.77746, 25.02506, -7.187246, + 39.93147, 5.330449, 6.705344, -16.47149, -34.20934, 28.66261, -6.420032, 4.682751, -9.622858, + 17.95173, 3.316576, 14.6763, 13.84716, -20.52151, 24.35037, 28.57057, 18.17082, 26.14141, + 72.05923, -12.29775,26.83472 + ] + # fmt: on return observations - def objectivefunction(self, simulation=simulation, evaluation=evaluation, params=None): + def objectivefunction( + self, simulation=simulation, evaluation=evaluation, params=None + ): # Some functions do not need a `param` attribute, you will see that in the documentation or if an error occur. # objectivefunction = spotpy.likelihoods.LimitsOfAcceptability(evaluation, simulation,params=params) - #objectivefunction = spotpy.likelihoods.NoisyABCGaussianLikelihood(evaluation, simulation) - #objectivefunction = spotpy.likelihoods.LimitsOfAcceptability(evaluation, simulation) - objectivefunction = spotpy.objectivefunctions.rmse(simulation=simulation,evaluation=evaluation) - #print(objectivefunction) + # objectivefunction = spotpy.likelihoods.NoisyABCGaussianLikelihood(evaluation, simulation) + # objectivefunction = spotpy.likelihoods.LimitsOfAcceptability(evaluation, simulation) + objectivefunction = spotpy.objectivefunctions.rmse( + simulation=simulation, evaluation=evaluation + ) + # print(objectivefunction) return objectivefunction + class spot_setup_wald(object): def __init__(self): self.params = [ # See https://de.wikipedia.org/wiki/Inverse_Normalverteilung # Original 12,23 - spotpy.parameter.Uniform('lambda', 1, 1000, 0.1, 3.0, -20, 20), - #spotpy.parameter.Uniform('nu', 1, 30, 2, 3.01, 1, 30), -] + spotpy.parameter.Uniform("lambda", 1, 1000, 0.1, 3.0, -20, 20), + # spotpy.parameter.Uniform('nu', 1, 30, 2, 3.01, 1, 30), + ] def parameters(self): return spotpy.parameter.generate(self.params) @@ -178,7 +214,11 @@ def simulation(self, vector): import subprocess output = subprocess.check_output( - "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_WALD.R " + str(vector[0]), shell=True) + "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/" + "Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/" + f"likelihood_test/myR_WALD.R {vector[0]}", + shell=True, + ) # print("this parameters: "+str(vector[0])+" "+str(vector[1])) output = output.decode("utf-8") @@ -190,23 +230,60 @@ def simulation(self, vector): def evaluation(self): # Wald distrubtion with lambda=42 (nu = 1 as it is original inverse Gauß) - observations = [0.8215101,1.050744,1.068614,0.9237615,1.134586,0.8342905,0.9203649,0.8423139,1.016296,0.819583,0.7727125,1.049373,0.9064652,1.129859,0.7390692,0.7807588,0.9512094,0.751157,0.8342608,0.9535379,0.8855571,0.8164966,0.9859118,0.9663425,0.9168434,1.096442,1.075291,0.7939873,0.8371087,0.8899696,0.8223036,0.9441274,1.251677,0.9946841,0.9688333,0.8584872,1.118507,1.092399,0.9389445,1.320034,1.05912,0.8073291,0.9718409,0.9993603,1.009801,1.191749,1.096261,0.9104541,1.135112,1.024141,0.68865,1.117724,1.071344,0.9730503,1.03879,0.9040554,1.226641,1.090904,0.9188659,0.9516232,1.111537,0.7868174,1.03979,0.8529991,1.546705,0.9973017,0.9056773,1.020306,0.8666091,0.8227436,1.107373,1.240635,0.8642053,1.012499,0.8189009,0.9112955,0.9133874,0.764895,0.9954879,1.016124,1.135945,1.210386,0.8935554,1.133396,0.8744451,1.27583,0.9399524,1.109192,1.024147,1.010473,0.823447,1.063746,1.587057,1.25963,1.075372,0.9058057,1.149925,0.8951753,0.8786255,0.7846421,1.089261,1.155204,0.9162714,1.091259,1.012252,0.9860885,1.000627,0.8831002,0.9736084,1.020061,1.099529,0.8503705,1.092692,1.018956,0.9597126,0.9760877,0.8305396,1.010439,0.8659965,1.216233,1.15933,0.8352535,1.086288,1.085791,1.215822,1.455505,0.8928623,1.227453,0.9778177,1.248284,0.678555,0.9379088,1.076307,1.081512,1.056103,0.9475012,1.11073,1.216543,1.409434,0.8973831,0.7879291,1.039925,0.9954887,0.8129037,1.088005,1.010168,0.9842995,1.034264,0.9122271,1.128363,1.331232,1.206762,1.134155,1.166505,1.154047,1.054108,1.07734,0.8397705,0.9748741,1.133629,0.9498966,0.9889976,1.023417,0.9424091,0.9424539,1.246194,0.9413468,1.15047,0.7332654,1.496362,0.828069,0.7696388,0.918564,0.8388578,0.9455839,0.8227491,0.9551339,0.963993,1.051606,1.013032,0.8144458,1.07049,1.029506,0.7699333,0.9409208,1.341655,1.023382,0.9868176,0.9950876,0.954334,0.957515,1.136036,1.265562,0.9722909,0.7632513,0.8805661,0.8904488,1.052702,1.036818,0.9569595,0.9428334] - + # fmt: off + observations = [ + 0.8215101, 1.050744, 1.068614, 0.9237615, 1.134586, 0.8342905, 0.9203649, + 0.8423139, 1.016296, 0.819583, 0.7727125, 1.049373, 0.9064652, 1.129859, + 0.7390692, 0.7807588, 0.9512094, 0.751157, 0.8342608, 0.9535379, 0.8855571, + 0.8164966, 0.9859118, 0.9663425, 0.9168434, 1.096442, 1.075291, 0.7939873, + 0.8371087, 0.8899696, 0.8223036, 0.9441274, 1.251677, 0.9946841, 0.9688333, + 0.8584872, 1.118507, 1.092399, 0.9389445, 1.320034, 1.05912, 0.8073291, + 0.9718409, 0.9993603, 1.009801, 1.191749, 1.096261, 0.9104541, 1.135112, + 1.024141, 0.68865, 1.117724, 1.071344, 0.9730503, 1.03879, 0.9040554, + 1.226641, 1.090904, 0.9188659, 0.9516232, 1.111537, 0.7868174, 1.03979, + 0.8529991, 1.546705, 0.9973017, 0.9056773, 1.020306, 0.8666091, 0.8227436, + 1.107373, 1.240635, 0.8642053, 1.012499, 0.8189009, 0.9112955, 0.9133874, + 0.764895, 0.9954879, 1.016124, 1.135945, 1.210386, 0.8935554, 1.133396, + 0.8744451, 1.27583, 0.9399524, 1.109192, 1.024147, 1.010473, 0.823447, + 1.063746, 1.587057, 1.25963, 1.075372, 0.9058057, 1.149925, 0.8951753, + 0.8786255, 0.7846421, 1.089261, 1.155204, 0.9162714, 1.091259, 1.012252, + 0.9860885, 1.000627, 0.8831002, 0.9736084, 1.020061, 1.099529, 0.8503705, + 1.092692, 1.018956, 0.9597126, 0.9760877, 0.8305396, 1.010439, 0.8659965, + 1.216233, 1.15933, 0.8352535, 1.086288, 1.085791, 1.215822, 1.455505, + 0.8928623, 1.227453, 0.9778177, 1.248284, 0.678555, 0.9379088, 1.076307, + 1.081512, 1.056103, 0.9475012, 1.11073, 1.216543, 1.409434, 0.8973831, + 0.7879291, 1.039925, 0.9954887, 0.8129037, 1.088005, 1.010168, 0.9842995, + 1.034264, 0.9122271, 1.128363, 1.331232, 1.206762, 1.134155, 1.166505, + 1.154047, 1.054108, 1.07734, 0.8397705, 0.9748741, 1.133629, 0.9498966, + 0.9889976, 1.023417, 0.9424091, 0.9424539, 1.246194, 0.9413468, 1.15047, + 0.7332654, 1.496362, 0.828069, 0.7696388, 0.918564, 0.8388578, 0.9455839, + 0.8227491, 0.9551339, 0.963993, 1.051606, 1.013032, 0.8144458, 1.07049, + 1.029506, 0.7699333, 0.9409208, 1.341655, 1.023382, 0.9868176, 0.9950876, + 0.954334, 0.957515, 1.136036, 1.265562, 0.9722909, 0.7632513, 0.8805661, + 0.8904488, 1.052702, 1.036818, 0.9569595, 0.9428334 + ] + # fmt: on return observations - def objectivefunction(self, simulation=simulation, evaluation=evaluation, params=None): - objectivefunction = spotpy.likelihoods.NoisyABCGaussianLikelihood(evaluation, simulation) + def objectivefunction( + self, simulation=simulation, evaluation=evaluation, params=None + ): + objectivefunction = spotpy.likelihoods.NoisyABCGaussianLikelihood( + evaluation, simulation + ) return objectivefunction + class spot_setup_ar_1_students_t_res(object): def __init__(self): self.params = [ # For students - Skew - spotpy.parameter.Uniform('likelihood_kappa', 1, 1, 1, 1, 1, 1), - spotpy.parameter.Uniform('likelihood_phi', -0.99, 0.99, 0.1, 3.0, -0.99, 0.99), - spotpy.parameter.Uniform('likelihood_nu', 2.1, 100, 2, 3.01, 2.1, 10), - + spotpy.parameter.Uniform("likelihood_kappa", 1, 1, 1, 1, 1, 1), + spotpy.parameter.Uniform( + "likelihood_phi", -0.99, 0.99, 0.1, 3.0, -0.99, 0.99 + ), + spotpy.parameter.Uniform("likelihood_nu", 2.1, 100, 2, 3.01, 2.1, 10), ] def parameters(self): @@ -218,9 +295,12 @@ def simulation(self, vector): # parameter 0:phi, 1:nu output = subprocess.check_output( - "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_AR1_Student-t-res.R " + str( - vector[0])+" "+str(vector[1]), shell=True) - #print("this parameters: "+str(vector[0])+" "+str(vector[1]) + " "+str(vector[2])) + "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/" + "Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/" + f"spotpy/likelihood_test/myR_AR1_Student-t-res.R {vector[0]} {vector[1]}", + shell=True, + ) + # print("this parameters: "+str(vector[0])+" "+str(vector[1]) + " "+str(vector[2])) output = output.decode("utf-8") back = json.loads(output) @@ -231,23 +311,61 @@ def simulation(self, vector): def evaluation(self): # AR1 with student-t distributed residuals with phi=42 and df=7 - observations = [-0.806554,-1.036565,-1.054924,1.207057,-0.2267287,-0.6241089,-0.9865154,0.004914617,0.5435943,-0.2529109,-0.220569,-1.085152,-1.446932,-0.2271839,-0.9695579,-1.042956,-1.677816,-0.3111386,0.2023657,1.681282,0.3311756,-2.011093,-0.05581758,1.792977,1.469434,-0.4426333,0.8043387,1.093684,1.99667,-0.1171755,0.5409204,-1.036451,-0.03801139,0.6125889,0.09342139,1.977853,0.5931005,2.947713,-1.51345,0.152891,-1.079158,-1.466529,-1.504046,2.181459,-1.966612,0.3770235,-0.7682167,-0.2559416,1.215604,0.9032672,0.7817497,-1.634914,-0.1532924,-1.329244,-3.425294,-0.9132035,-0.1814598,-0.3703962,0.8464317,0.3035075,-0.1755196,-0.7057517,-0.6808711,-1.221144,0.04788332,0.7737842,0.9854636,0.7845628,3.702611,3.388055,1.097186,0.672756,-0.3338004,0.2702849,-0.6202132,-2.228129,-0.7818483,0.155476,0.657133,0.5652424,0.0008205475,0.4045611,0.7796379,0.4325643,-0.354133,-1.166525,-0.9882422,0.4509809,-0.4848221,0.1715434,-1.196337,0.4085583,-0.04952907,1.035795,0.9496666,0.3619785,0.8666738,0.285121,-1.432747,-1.939233,-0.1684185,0.003022823,-0.4922612,0.5042833,0.09296572,-1.455734,-0.213669,1.063985,0.2004293,-1.649053,0.200737,-0.105006,-2.633298,-3.161435,-0.5550424,-1.713277,-0.5169007,-0.3834445,-0.2791567,1.262414,0.06332764,1.640421,0.3144967,-0.01392552,-1.151283,-1.268196,-1.880887,1.010745,0.2109186,2.752468,0.09242852,-2.878202,-1.477239,-2.243395,-0.6384147,-0.6950003,-1.686313,-0.6945071,1.603874,0.09509077,-0.09816484,1.150218,2.324576,1.504623,-1.063881,1.330131,2.611619,2.494136,0.6338899,1.004135,0.1381033,-0.360101,1.124663,1.78177,1.603268,1.325218,2.4939,2.153747,1.97724,1.18353,-0.7253327,0.823499,0.4020309,0.6603788,0.129381,-1.321761,1.939023,0.6186619,0.9888297,1.118437,0.2581724,1.385318,1.997055,-0.8354623,0.441386,-0.5992372,-2.595201,1.591507,-0.7960406,0.2250709,0.6408333,-0.06189073,0.103896,-0.4334433,0.1433027,-0.6207327,0.2989117,-0.2577758,-0.5267562,-3.398514,0.1546277,1.012887,0.06408349,1.258883,0.5752389,-1.694637,-0.7765886,2.41088,0.2273703,-1.2156,-1.232374] - + # fmt: off + observations = [ + -0.806554, -1.036565, -1.054924, 1.207057, -0.2267287, -0.6241089, -0.9865154, + 0.004914617, 0.5435943, -0.2529109, -0.220569, -1.085152, -1.446932, -0.2271839, + -0.9695579, -1.042956, -1.677816, -0.3111386, 0.2023657, 1.681282, 0.3311756, + -2.011093, -0.05581758, 1.792977, 1.469434, -0.4426333, 0.8043387, 1.093684, + 1.99667, -0.1171755, 0.5409204, -1.036451, -0.03801139, 0.6125889, 0.09342139, + 1.977853, 0.5931005, 2.947713, -1.51345, 0.152891, -1.079158, -1.466529, + -1.504046, 2.181459, -1.966612, 0.3770235, -0.7682167, -0.2559416, 1.215604, + 0.9032672, 0.7817497, -1.634914, -0.1532924, -1.329244, -3.425294, -0.9132035, + -0.1814598, -0.3703962, 0.8464317, 0.3035075, -0.1755196, -0.7057517, -0.6808711, + -1.221144, 0.04788332, 0.7737842, 0.9854636, 0.7845628, 3.702611, 3.388055, + 1.097186, 0.672756, -0.3338004, 0.2702849, -0.6202132, -2.228129, -0.7818483, + 0.155476, 0.657133, 0.5652424, 0.0008205475, 0.4045611, 0.7796379, 0.4325643, + -0.354133, -1.166525, -0.9882422, 0.4509809, -0.4848221, 0.1715434, -1.196337, + 0.4085583, -0.04952907, 1.035795, 0.9496666, 0.3619785, 0.8666738, 0.285121, + -1.432747, -1.939233, -0.1684185, 0.003022823, -0.4922612, 0.5042833, 0.09296572, + -1.455734, -0.213669, 1.063985, 0.2004293, -1.649053, 0.200737, -0.105006, + -2.633298, -3.161435, -0.5550424, -1.713277, -0.5169007, -0.3834445, -0.2791567, + 1.262414, 0.06332764, 1.640421, 0.3144967, -0.01392552, -1.151283, -1.268196, + -1.880887, 1.010745, 0.2109186, 2.752468, 0.09242852, -2.878202, -1.477239, + -2.243395, -0.6384147, -0.6950003, -1.686313, -0.6945071, 1.603874, 0.09509077, + -0.09816484, 1.150218, 2.324576, 1.504623, -1.063881, 1.330131, 2.611619, + 2.494136, 0.6338899, 1.004135, 0.1381033, -0.360101, 1.124663, 1.78177, + 1.603268, 1.325218, 2.4939, 2.153747, 1.97724, 1.18353, -0.7253327, + 0.823499, 0.4020309, 0.6603788, 0.129381, -1.321761, 1.939023, 0.6186619, + 0.9888297, 1.118437, 0.2581724, 1.385318, 1.997055, -0.8354623, 0.441386, + -0.5992372, -2.595201, 1.591507, -0.7960406, 0.2250709, 0.6408333, -0.06189073, + 0.103896, -0.4334433, 0.1433027, -0.6207327, 0.2989117, -0.2577758, -0.5267562, + -3.398514, 0.1546277, 1.012887, 0.06408349, 1.258883, 0.5752389, -1.694637, + -0.7765886, 2.41088, 0.2273703, -1.2156, -1.232374 + ] + # fmt: on return observations - def objectivefunction(self, simulation=simulation, evaluation=evaluation, params=None): - objectivefunction = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(evaluation, simulation,params=params) + def objectivefunction( + self, simulation=simulation, evaluation=evaluation, params=None + ): + objectivefunction = ( + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + evaluation, simulation, params=params + ) + ) if np.isinf(objectivefunction): objectivefunction = 0.0 - print("Class log "+str(objectivefunction)) + print("Class log " + str(objectivefunction)) return objectivefunction - class spot_setup_ar_1_gauss_res(object): def __init__(self): self.params = [ - spotpy.parameter.Uniform('likelihood_phi', -0.99, 0.99, 0.2, 3.0, -0.99, 0.99), + spotpy.parameter.Uniform( + "likelihood_phi", -0.99, 0.99, 0.2, 3.0, -0.99, 0.99 + ), ] def parameters(self): @@ -259,9 +377,12 @@ def simulation(self, vector): # parameter 0:phi output = subprocess.check_output( - "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_AR1_Norm_res.R " + str( - vector[0]), shell=True) - print("this parameters: "+str(vector[0])) + "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/" + "Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/" + f"spotpy/likelihood_test/myR_AR1_Norm_res.R {vector[0]}", + shell=True, + ) + print("this parameters: " + str(vector[0])) output = output.decode("utf-8") back = json.loads(output) @@ -272,31 +393,64 @@ def simulation(self, vector): def evaluation(self): # AR1 with normal distributed residuals with phi=0.428 and mean=0,sd=1 - observations = [-2.522743,1.408725,1.946646,0.888204,0.7897667,0.6112302,2.290427,2.868624,1.556995,0.05254887,0.7461225,0.3719867,0.979471,-1.190781,0.4436523,2.236696,0.2605191,0.673389,0.7251472,0.6608128,-0.7443824,0.371268,0.02141081,0.4607711,-0.5507639,-1.005326,0.7367659,0.5269135,0.1166365,-0.5970824,-0.7521213,0.367761,0.1125972,-0.0795236,0.1165288,0.6486639,1.932282,1.033983,-0.9876154,0.1796362,-0.3983238,0.01101198,0.9050182,-0.6080171,0.08849208,-1.81438,-0.07913209,-0.009007132,-1.160989,-1.297887,1.419709,-1.066902,-1.270009,-1.030414,-2.38863,-0.2904009,0.7489411,-0.1846965,-1.433198,-1.145359,-0.04856701,1.087533,0.7987545,0.641762,-0.378111,-1.019192,0.2837018,2.259854,0.4158938,1.451425,0.9710148,1.325311,0.04831358,-0.2373003,0.09663009,-2.557514,-0.9230433,-0.6250428,-0.6359625,-0.2501693,1.096061,1.564296,1.956924,-0.4511307,-0.521957,-0.3384552,-0.3905848,-1.05168,1.266555,1.835193,1.168423,-0.5542428,-0.7080179,0.8867539,0.9273763,0.9104679,1.761588,2.650327,0.549592,1.152438,0.1226201,-0.1466213,0.6201685,-0.244967,1.728424,-0.1991486,0.4715499,2.541504,2.055189,0.5441279,1.075167,0.6381296,0.7177508,1.106246,-0.6729018,-2.086599,-1.199925,0.7879157,0.01633025,-0.5845763,0.4181293,-2.16246,-2.197336,-2.209761,-1.856266,-1.021362,0.6899624,-0.898831,0.3702167,1.202066,0.5307163,-1.183152,-1.305882,-1.34188,0.9997525,-1.611335,0.4367853,1.24461,2.474933,0.9325948,2.022836,-0.6440014,-1.253051,0.2687869,-1.139736,0.1336643,-1.383847,0.3793314,-0.7788819,0.8646879,1.433118,1.026648,1.31162,-0.8718095,0.3493136,-0.2196879,0.3182434,-0.7072177,0.6959091,-0.5620885,0.8712038,0.6010974,-0.007788187,-0.1008797,-0.5404524,-0.6134115,2.287364,-0.04623299,-1.30409,0.6175855,-1.475111,0.2202588,0.5428336,0.3996769,0.1243578,0.3912388,1.346204,0.6947638,-0.5677999,0.3445474,-0.7952659,1.144519,1.850942,-0.312677,-1.347769,-0.6379291,0.1777509,0.1736661,-0.6718341,0.8210482,-0.4401946,0.9218458,-0.2263964,0.2356263,-0.6045727,0.124017,0.6440486,1.095587,0.4844389,-0.4179212,1.385794] - + # fmt: off + observations = [ + -2.522743, 1.408725, 1.946646, 0.888204, 0.7897667, 0.6112302, 2.290427, + 2.868624, 1.556995, 0.05254887, 0.7461225, 0.3719867, 0.979471, -1.190781, + 0.4436523, 2.236696, 0.2605191, 0.673389, 0.7251472, 0.6608128, -0.7443824, + 0.371268, 0.02141081, 0.4607711, -0.5507639, -1.005326, 0.7367659, 0.5269135, + 0.1166365, -0.5970824, -0.7521213, 0.367761, 0.1125972, -0.0795236, 0.1165288, + 0.6486639, 1.932282, 1.033983, -0.9876154, 0.1796362, -0.3983238, 0.01101198, + 0.9050182, -0.6080171, 0.08849208, -1.81438, -0.07913209, -0.009007132, -1.160989, + -1.297887, 1.419709, -1.066902, -1.270009, -1.030414, -2.38863, -0.2904009, + 0.7489411, -0.1846965, -1.433198, -1.145359, -0.04856701, 1.087533, 0.7987545, + 0.641762, -0.378111, -1.019192, 0.2837018, 2.259854, 0.4158938, 1.451425, + 0.9710148, 1.325311, 0.04831358, -0.2373003, 0.09663009, -2.557514, -0.9230433, + -0.6250428, -0.6359625, -0.2501693, 1.096061, 1.564296, 1.956924, -0.4511307, + -0.521957, -0.3384552, -0.3905848, -1.05168, 1.266555, 1.835193, 1.168423, + -0.5542428, -0.7080179, 0.8867539, 0.9273763, 0.9104679, 1.761588, 2.650327, + 0.549592, 1.152438, 0.1226201, -0.1466213, 0.6201685, -0.244967, 1.728424, + -0.1991486, 0.4715499, 2.541504, 2.055189, 0.5441279, 1.075167, 0.6381296, + 0.7177508, 1.106246, -0.6729018, -2.086599, -1.199925, 0.7879157, 0.01633025, + -0.5845763, 0.4181293, -2.16246, -2.197336, -2.209761, -1.856266, -1.021362, + 0.6899624, -0.898831, 0.3702167, 1.202066, 0.5307163, -1.183152, -1.305882, + -1.34188, 0.9997525, -1.611335, 0.4367853, 1.24461, 2.474933, 0.9325948, + 2.022836, -0.6440014, -1.253051, 0.2687869, -1.139736, 0.1336643, -1.383847, + 0.3793314, -0.7788819, 0.8646879, 1.433118, 1.026648, 1.31162, -0.8718095, + 0.3493136, -0.2196879, 0.3182434, -0.7072177, 0.6959091, -0.5620885, 0.8712038, + 0.6010974, -0.007788187, -0.1008797, -0.5404524, -0.6134115, 2.287364, -0.04623299, + -1.30409, 0.6175855, -1.475111, 0.2202588, 0.5428336, 0.3996769, 0.1243578, + 0.3912388, 1.346204, 0.6947638, -0.5677999, 0.3445474, -0.7952659, 1.144519, + 1.850942, -0.312677, -1.347769, -0.6379291, 0.1777509, 0.1736661, -0.6718341, + 0.8210482, -0.4401946, 0.9218458, -0.2263964, 0.2356263, -0.6045727, 0.124017, + 0.6440486, 1.095587, 0.4844389, -0.4179212, 1.385794 + ] + # fmt: on return observations - def objectivefunction(self, simulation=simulation, evaluation=evaluation, params=None): - objectivefunction = spotpy.likelihoods.LikelihoodAR1NoC(evaluation, simulation,params=params) - - return objectivefunction - + def objectivefunction( + self, simulation=simulation, evaluation=evaluation, params=None + ): + objectivefunction = spotpy.likelihoods.LikelihoodAR1NoC( + evaluation, simulation, params=params + ) + return objectivefunction class spot_setup_generalizedGauss(object): def __init__(self): self.params = [ - - spotpy.parameter.Uniform('likelihood_phi1', 0.01, 0.99, 3.0, 3.0, 0.01, 0.99), - spotpy.parameter.Uniform('likelihood_xi', 0.1, 10, 3, 3, 0.1, 10), - spotpy.parameter.Uniform('likelihood_beta', 0.1, 0.99, 3, 3.0, -0.99, 0.99), # positive - simulation in R says it! - - - spotpy.parameter.Uniform('likelihood_sigma0', 0, 1, 0.1, 3.0, 0, 1), - spotpy.parameter.Uniform('likelihood_sigma1', 0, 1, 0.1, 3.0, 0, 1), - - spotpy.parameter.Uniform('likelihood_muh', 0, 100, 0.1, 3.0, 0, 100), + spotpy.parameter.Uniform( + "likelihood_phi1", 0.01, 0.99, 3.0, 3.0, 0.01, 0.99 + ), + spotpy.parameter.Uniform("likelihood_xi", 0.1, 10, 3, 3, 0.1, 10), + spotpy.parameter.Uniform( + "likelihood_beta", 0.1, 0.99, 3, 3.0, -0.99, 0.99 + ), # positive - simulation in R says it! + spotpy.parameter.Uniform("likelihood_sigma0", 0, 1, 0.1, 3.0, 0, 1), + spotpy.parameter.Uniform("likelihood_sigma1", 0, 1, 0.1, 3.0, 0, 1), + spotpy.parameter.Uniform("likelihood_muh", 0, 100, 0.1, 3.0, 0, 100), ] def parameters(self): @@ -309,14 +463,17 @@ def simulation(self, vector): # we need a skew exponential power to add xi and beta in it which is the model for the error residuals of AR1 Model output = subprocess.check_output( - "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/spotpy/likelihood_test/myR_AR1_SEP_res.R " + str( - vector[0]) + " " + str(vector[1])+ " "+str(vector[2]), shell=True) + "/Library/Frameworks/R.framework/Versions/3.1/Resources/Rscript /Users/" + "Karlson/Documents/03_PRIVAT/Privat_UNI/Uni_JOB/Job_AGRAR/develop/spotpy/" + f"spotpy/likelihood_test/myR_AR1_SEP_res.R {vector[0]} {vector[1]} {vector[2]}", + shell=True, + ) # print("this parameters: "+str(vector[0])+" "+str(vector[1]) + " "+str(vector[2])) output = output.decode("utf-8") back = json.loads(output) if back[0] == "NA": - back = np.repeat(np.NAN,back.__len__()).tolist() + back = np.repeat(np.NAN, back.__len__()).tolist() simulations = back return simulations @@ -324,20 +481,53 @@ def simulation(self, vector): def evaluation(self): # AR1 with SEP distribution phi=0.142 xsi=3, beta=9.5 # [ 0.99 1.28841626 0.99 0.43366888 0.38087079 72.72585542] - observations = [1.367689,-0.320067,-0.04381581,0.6023338,0.9038274,1.034441,-0.3475758,-0.6766884,0.375266,0.3902351,1.41773,1.146159,1.142029,-0.5467857,1.132456,0.05771065,-0.01329709,1.245674,1.262945,0.5637976,-0.6106627,-0.1347206,0.4439383,-0.1191365,0.6781304,-0.4293178,0.1856715,0.4008803,1.34489,0.9124905,1.237749,0.5098399,0.8364595,-0.4464507,0.6631744,0.2039722,-0.05081068,0.7299973,0.8854515,1.180466,-0.4876658,0.7830223,-0.4316994,1.099141,0.5340687,0.8495034,0.8779076,0.6735508,-0.3102846,0.2900948,-0.05825545,-0.941212,1.025862,0.7281562,-0.361788,0.6388547,1.038316,1.343974,0.8034503,1.39158,0.5718842,0.4621339,0.828369,1.091347,0.9504174,1.100152,0.4411185,1.178236,1.528249,1.311347,1.011896,0.6851925,1.102152,1.191884,-0.3198258,1.023772,1.021118,0.351345,-0.7778747,0.3130401,0.8374449,-0.2165474,0.6511311,0.9294736,1.007714,1.124968,1.122693,1.053253,1.064944,-0.3810931,-0.7520672,0.07500417,-0.6589652,0.9858736,-0.3338579,0.5976432,1.065922,-0.1717056,-0.7935736,-0.2154963,0.1094597,0.9271599,0.8882699,-0.204626,-0.1153957,-0.03153619,1.145353,0.1135476,-0.0652023,-0.3510398,-0.8471455,-0.7796421,-0.2307928,-0.2594656,0.8092929,0.4113968,-0.188539,1.19418,0.8070983,0.9118222,1.071649,1.051291,-0.8035766,0.8092788,-0.1163294,-0.02733921,-0.6852544,-0.408636,-0.08736997,0.4578535,0.7799243,0.4268271,0.5604364,-0.1452668,-0.1654945,-0.483941,0.1326935,0.4563893,0.7192259,0.7154398,1.120117,0.3798121,-0.1878339,-0.5358535,-0.5510031,0.0233894,0.07423701,0.9234318,-0.1600513,1.372747,0.6790618,0.8772782,-0.1664986,0.9622479,0.9873338,0.2296364,-1.002397,-0.2306121,-0.1446204,0.31194,-0.1342179,0.08709208,-0.2634807,-0.5770442,0.5588156,-0.4229277,-0.8920537,-0.3130578,0.9963966,-0.1462349,0.2177117,1.019684,0.3005968,0.7721734,-0.1104061,-0.7366346,0.9962065,0.4035172,1.175904,1.103031,-0.742134,-0.3189378,0.5614889,0.4403444,-0.6407969,-0.4805289,0.2666954,0.8946856,0.200042,0.700875,-0.3121022,-0.4439033,-0.7696692,0.6370263,1.367421,0.8487393,0.1497969,-0.4690384,1.088799,0.0210073,0.3703306] - + # fmt: off + observations = [ + 1.367689, -0.320067, -0.04381581, 0.6023338, 0.9038274, 1.034441, -0.3475758, + -0.6766884, 0.375266, 0.3902351, 1.41773, 1.146159, 1.142029, -0.5467857, + 1.132456, 0.05771065, -0.01329709, 1.245674, 1.262945, 0.5637976, -0.6106627, + -0.1347206, 0.4439383, -0.1191365, 0.6781304, -0.4293178, 0.1856715, 0.4008803, + 1.34489, 0.9124905, 1.237749, 0.5098399, 0.8364595, -0.4464507, 0.6631744, + 0.2039722, -0.05081068, 0.7299973, 0.8854515, 1.180466, -0.4876658, 0.7830223, + -0.4316994, 1.099141, 0.5340687, 0.8495034, 0.8779076, 0.6735508, -0.3102846, + 0.2900948, -0.05825545, -0.941212, 1.025862, 0.7281562, -0.361788, 0.6388547, + 1.038316, 1.343974, 0.8034503, 1.39158, 0.5718842, 0.4621339, 0.828369, + 1.091347, 0.9504174, 1.100152, 0.4411185, 1.178236, 1.528249, 1.311347, + 1.011896, 0.6851925, 1.102152, 1.191884, -0.3198258, 1.023772, 1.021118, + 0.351345, -0.7778747, 0.3130401, 0.8374449, -0.2165474, 0.6511311, 0.9294736, + 1.007714, 1.124968, 1.122693, 1.053253, 1.064944, -0.3810931, -0.7520672, + 0.07500417, -0.6589652, 0.9858736, -0.3338579, 0.5976432, 1.065922, -0.1717056, + -0.7935736, -0.2154963, 0.1094597, 0.9271599, 0.8882699, -0.204626, -0.1153957, + -0.03153619, 1.145353, 0.1135476, -0.0652023, -0.3510398, -0.8471455, -0.7796421, + -0.2307928, -0.2594656, 0.8092929, 0.4113968, -0.188539, 1.19418, 0.8070983, + 0.9118222, 1.071649, 1.051291, -0.8035766, 0.8092788, -0.1163294, -0.02733921, + -0.6852544, -0.408636, -0.08736997, 0.4578535, 0.7799243, 0.4268271, 0.5604364, + -0.1452668, -0.1654945, -0.483941, 0.1326935, 0.4563893, 0.7192259, 0.7154398, + 1.120117, 0.3798121, -0.1878339, -0.5358535, -0.5510031, 0.0233894, 0.07423701, + 0.9234318, -0.1600513, 1.372747, 0.6790618, 0.8772782, -0.1664986, 0.9622479, + 0.9873338, 0.2296364, -1.002397, -0.2306121, -0.1446204, 0.31194, -0.1342179, + 0.08709208, -0.2634807, -0.5770442, 0.5588156, -0.4229277, -0.8920537, -0.3130578, + 0.9963966, -0.1462349, 0.2177117, 1.019684, 0.3005968, 0.7721734, -0.1104061, + -0.7366346, 0.9962065, 0.4035172, 1.175904, 1.103031, -0.742134, -0.3189378, + 0.5614889, 0.4403444, -0.6407969, -0.4805289, 0.2666954, 0.8946856, 0.200042, + 0.700875, -0.3121022, -0.4439033, -0.7696692, 0.6370263, 1.367421, 0.8487393, + 0.1497969, -0.4690384, 1.088799, 0.0210073, 0.3703306 + ] + # fmt: on return observations - def objectivefunction(self, simulation=simulation, evaluation=evaluation, params=None): - objectivefunction = spotpy.likelihoods.generalizedLikelihoodFunction(evaluation,simulation,params=params) + def objectivefunction( + self, simulation=simulation, evaluation=evaluation, params=None + ): + objectivefunction = spotpy.likelihoods.generalizedLikelihoodFunction( + evaluation, simulation, params=params + ) if np.isinf(objectivefunction): objectivefunction = 0.0 print("Class log " + str(objectivefunction)) return objectivefunction - - # And now we can start an algorithm to find the best possible data @@ -346,13 +536,15 @@ def objectivefunction(self, simulation=simulation, evaluation=evaluation, params rep = 1000 # TODO alt_objfun immer wieder anschalten sonst Trick 17! -sampler = spotpy.algorithms.lhs(spot_setup, dbname='RosenMC', dbformat='csv', alt_objfun=None) +sampler = spotpy.algorithms.lhs( + spot_setup, dbname="RosenMC", dbformat="csv", alt_objfun=None +) sampler.sample(rep) results.append(sampler.getdata()) import pickle -pickle.dump(results, open('mle_LimitsOfAcceptability_v2.p', 'wb')) +pickle.dump(results, open("mle_LimitsOfAcceptability_v2.p", "wb")) # from matplotlib import pyplot as plt # plt.plot(results) diff --git a/tutorials/tutorial_listsampler.py b/tutorials/tutorial_listsampler.py index bfc944ce..3964fa1c 100644 --- a/tutorials/tutorial_listsampler.py +++ b/tutorials/tutorial_listsampler.py @@ -1,58 +1,59 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the Rosenbrock function into SPOT. -''' +""" import spotpy from spotpy.examples.spot_setup_hymod_python import spot_setup if __name__ == "__main__": # 1 We start classical by perfroming a sensitivity analysis - parallel ='seq' + parallel = "seq" # 1.1 Initialize the Hymod example spot_setup = spot_setup() - - #S 1.2 elect number of maximum repetitions + + # S 1.2 elect number of maximum repetitions rep = 1345 - + # 1.3 Start a sensitivity analysis - sampler = spotpy.algorithms.fast(spot_setup, dbname='FAST_hymod', dbformat='csv') + sampler = spotpy.algorithms.fast(spot_setup, dbname="FAST_hymod", dbformat="csv") sampler.sample(rep) ########################################################### - + # 2 Special part begins - - # 2.1 Lets assume something went wrong with the model or you want to use + + # 2.1 Lets assume something went wrong with the model or you want to use # the same parameter set again. Then the list_sampler is what you need. # It is also thinkable that you want to change something in this database # and restart. - # The list_sampler takes a spotpy database as input, reads the paramater + # The list_sampler takes a spotpy database as input, reads the paramater # in it and starts the model again: - + # 2.2 Use the generated database to reuse the parameters: - sampler_new = spotpy.algorithms.list_sampler(spot_setup, dbname='FAST_hymod', dbformat='csv') - + sampler_new = spotpy.algorithms.list_sampler( + spot_setup, dbname="FAST_hymod", dbformat="csv" + ) + # 2.3 Start the sampler with the according number of repetitions sampler_new.sample(rep) - + # 2.4 Load the result, the new database will have added the word "list" - results = spotpy.analyser.load_csv_results('FAST_hymodlist') - - # 2.5 Please mind that these results contains the same data as we have used - # the same spot_setup. However we could have also used another spot_setup, + results = spotpy.analyser.load_csv_results("FAST_hymodlist") + + # 2.5 Please mind that these results contains the same data as we have used + # the same spot_setup. However we could have also used another spot_setup, # which takes the same parameters. ############################################################# - + # 3.0 Classical part starts again - + # 3.1 Example plot to show the sensitivity index of each parameter from t spotpy.analyser.plot_fast_sensitivity(results, number_of_sensitiv_pars=3) - - # 3.2 Example to get the sensitivity index of each parameter + + # 3.2 Example to get the sensitivity index of each parameter SI = spotpy.analyser.get_sensitivity_of_fast(results) ############################################################# - \ No newline at end of file diff --git a/tutorials/tutorial_nsgaii.py b/tutorials/tutorial_nsgaii.py index ace69835..a89694a9 100644 --- a/tutorials/tutorial_nsgaii.py +++ b/tutorials/tutorial_nsgaii.py @@ -1,14 +1,14 @@ #!/usr/bin/env python # coding: utf-8 # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds example code how to use the nsgaii algorithm -''' +""" try: @@ -47,129 +47,144 @@ def multi_obj_func(evaluation, simulation): """ like1 = abs(spotpy.objectivefunctions.pbias(evaluation, simulation)) like2 = spotpy.objectivefunctions.rmse(evaluation, simulation) - like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation)*-1 + like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation) * -1 return [like1, like2, like3] -if __name__ == "__main__": +if __name__ == "__main__": - generations=40 + generations = 40 n_pop = 20 skip_duplicates = True - sp_setup=spot_setup(obj_func= multi_obj_func) - sampler = spotpy.algorithms.NSGAII(spot_setup=sp_setup, dbname='NSGA2', dbformat="csv") - - sampler.sample(generations, n_obj= 3, n_pop = n_pop) + sp_setup = spot_setup(obj_func=multi_obj_func) + sampler = spotpy.algorithms.NSGAII( + spot_setup=sp_setup, dbname="NSGA2", dbformat="csv" + ) + sampler.sample(generations, n_obj=3, n_pop=n_pop) results = sampler.getdata() - fig= plt.figure(1,figsize=(9,5)) - plt.plot(results['like1']) + fig = plt.figure(1, figsize=(9, 5)) + plt.plot(results["like1"]) plt.show() - plt.ylabel('Objective function') - plt.xlabel('Iteration') - fig.savefig('hymod_objectivefunction.png',dpi=300) + plt.ylabel("Objective function") + plt.xlabel("Iteration") + fig.savefig("hymod_objectivefunction.png", dpi=300) # Example plot to show the parameter distribution ###### def plot_parameter_trace(ax, results, parameter): - ax.plot(results['par'+parameter.name],'.') + ax.plot(results["par" + parameter.name], ".") ax.set_ylabel(parameter.name) ax.set_ylim(parameter.minbound, parameter.maxbound) def plot_parameter_histogram(ax, results, parameter): - #chooses the last 20% of the sample - ax.hist(results['par'+parameter.name][int(len(results)*0.9):], - bins =np.linspace(parameter.minbound,parameter.maxbound,20)) - ax.set_ylabel('Density') + # chooses the last 20% of the sample + ax.hist( + results["par" + parameter.name][int(len(results) * 0.9) :], + bins=np.linspace(parameter.minbound, parameter.maxbound, 20), + ) + ax.set_ylabel("Density") ax.set_xlim(parameter.minbound, parameter.maxbound) - fig= plt.figure(2,figsize=(9,9)) + fig = plt.figure(2, figsize=(9, 9)) - ax1 = plt.subplot(5,2,1) + ax1 = plt.subplot(5, 2, 1) plot_parameter_trace(ax1, results, spot_setup.cmax) - ax2 = plt.subplot(5,2,2) - plot_parameter_histogram(ax2,results, spot_setup.cmax) + ax2 = plt.subplot(5, 2, 2) + plot_parameter_histogram(ax2, results, spot_setup.cmax) - ax3 = plt.subplot(5,2,3) + ax3 = plt.subplot(5, 2, 3) plot_parameter_trace(ax3, results, spot_setup.bexp) - ax4 = plt.subplot(5,2,4) + ax4 = plt.subplot(5, 2, 4) plot_parameter_histogram(ax4, results, spot_setup.bexp) - ax5 = plt.subplot(5,2,5) + ax5 = plt.subplot(5, 2, 5) plot_parameter_trace(ax5, results, spot_setup.alpha) - ax6 = plt.subplot(5,2,6) + ax6 = plt.subplot(5, 2, 6) plot_parameter_histogram(ax6, results, spot_setup.alpha) - ax7 = plt.subplot(5,2,7) + ax7 = plt.subplot(5, 2, 7) plot_parameter_trace(ax7, results, spot_setup.Ks) - ax8 = plt.subplot(5,2,8) + ax8 = plt.subplot(5, 2, 8) plot_parameter_histogram(ax8, results, spot_setup.Ks) - ax9 = plt.subplot(5,2,9) + ax9 = plt.subplot(5, 2, 9) plot_parameter_trace(ax9, results, spot_setup.Kq) - ax9.set_xlabel('Iterations') + ax9.set_xlabel("Iterations") - ax10 = plt.subplot(5,2,10) + ax10 = plt.subplot(5, 2, 10) plot_parameter_histogram(ax10, results, spot_setup.Kq) - ax10.set_xlabel('Parameter range') + ax10.set_xlabel("Parameter range") plt.show() - fig.savefig('hymod_parameters.png',dpi=300) - + fig.savefig("hymod_parameters.png", dpi=300) # Example plot to show remaining parameter uncertainty # - fields=[word for word in results.dtype.names if word.startswith('sim')] - fig= plt.figure(3, figsize=(16,9)) - ax11 = plt.subplot(1,1,1) - q5,q25,q75,q95=[],[],[],[] + fields = [word for word in results.dtype.names if word.startswith("sim")] + fig = plt.figure(3, figsize=(16, 9)) + ax11 = plt.subplot(1, 1, 1) + q5, q25, q75, q95 = [], [], [], [] for field in fields: - q5.append(np.percentile(results[field][-100:-1],2.5)) - q95.append(np.percentile(results[field][-100:-1],97.5)) - ax11.plot(q5,color='dimgrey',linestyle='solid') - ax11.plot(q95,color='dimgrey',linestyle='solid') - ax11.fill_between(np.arange(0,len(q5),1),list(q5),list(q95),facecolor='dimgrey',zorder=0, - linewidth=0,label='parameter uncertainty') - ax11.plot(sp_setup.evaluation(),'r.',label='data') - ax11.set_ylim(-50,450) - ax11.set_xlim(0,729) + q5.append(np.percentile(results[field][-100:-1], 2.5)) + q95.append(np.percentile(results[field][-100:-1], 97.5)) + ax11.plot(q5, color="dimgrey", linestyle="solid") + ax11.plot(q95, color="dimgrey", linestyle="solid") + ax11.fill_between( + np.arange(0, len(q5), 1), + list(q5), + list(q95), + facecolor="dimgrey", + zorder=0, + linewidth=0, + label="parameter uncertainty", + ) + ax11.plot(sp_setup.evaluation(), "r.", label="data") + ax11.set_ylim(-50, 450) + ax11.set_xlim(0, 729) ax11.legend() - fig.savefig('python_hymod.png',dpi=300) + fig.savefig("python_hymod.png", dpi=300) ######################################################### - - x,y,z = results['like1'][-n_pop:],results['like2'][-n_pop:],results['like3'][-n_pop:] + x, y, z = ( + results["like1"][-n_pop:], + results["like2"][-n_pop:], + results["like3"][-n_pop:], + ) fig = plt.figure(4) - ax12 = fig.add_subplot(111, projection='3d') - ax12.scatter(x,y,z,marker="o") + ax12 = fig.add_subplot(111, projection="3d") + ax12.scatter(x, y, z, marker="o") ax12.set_xlabel("pbias") ax12.set_ylabel("rmse") ax12.set_zlabel("rsquared") plt.show() - class Test_NSGAII(unittest.TestCase): def multi_obj_func(evaluation, simulation): - #used to overwrite objective function in hymod example + # used to overwrite objective function in hymod example like1 = abs(spotpy.objectivefunctions.pbias(evaluation, simulation)) like2 = spotpy.objectivefunctions.rmse(evaluation, simulation) - like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation)*-1 + like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation) * -1 return [like1, like2, like3] def setUp(self): - generations=40 + generations = 40 n_pop = 20 skip_duplicates = True - self.sp_setup=spot_setup(obj_func= multi_obj_func) - self.sampler = spotpy.algorithms.NSGAII(self.sp_setup, dbname='NSGA2', dbformat="csv") - self.sampler.sample(generations, n_obj= 3, n_pop = n_pop, skip_duplicates = skip_duplicates) + self.sp_setup = spot_setup(obj_func=multi_obj_func) + self.sampler = spotpy.algorithms.NSGAII( + self.sp_setup, dbname="NSGA2", dbformat="csv" + ) + self.sampler.sample( + generations, n_obj=3, n_pop=n_pop, skip_duplicates=skip_duplicates + ) def test_sampler_output(self): self.assertEqual(200, len(self.sampler.getdata())) diff --git a/tutorials/tutorial_nsgaii_dltz1.py b/tutorials/tutorial_nsgaii_dltz1.py index 290685f8..675b629c 100644 --- a/tutorials/tutorial_nsgaii_dltz1.py +++ b/tutorials/tutorial_nsgaii_dltz1.py @@ -1,4 +1,3 @@ - import sys import matplotlib.pyplot as plt @@ -10,20 +9,18 @@ from spotpy.examples.spot_setup_dtlz1 import spot_setup if __name__ == "__main__": - #Create samplers for every algorithm: - results=[] + # Create samplers for every algorithm: + results = [] n_obj = 3 - spot_setup=spot_setup(n_var=5, n_obj=n_obj) - generations=10 + spot_setup = spot_setup(n_var=5, n_obj=n_obj) + generations = 10 n_pop = 30 skip_duplicates = False - sampler=spotpy.algorithms.NSGAII(spot_setup=spot_setup, - dbname='NSGA2', - dbformat='csv', - save_sim=True) - sampler.sample(generations,n_obj=3, n_pop=n_pop,skip_duplicates=skip_duplicates) - + sampler = spotpy.algorithms.NSGAII( + spot_setup=spot_setup, dbname="NSGA2", dbformat="csv", save_sim=True + ) + sampler.sample(generations, n_obj=3, n_pop=n_pop, skip_duplicates=skip_duplicates) last = None first = None @@ -34,30 +31,25 @@ df["like3"] = df.like3 * -1 - if last: - df = df.iloc[-last:,:] + df = df.iloc[-last:, :] elif first: - df = df.iloc[:first,:] + df = df.iloc[:first, :] else: pass - - # plot objective functions fig = plt.figure() - for i,name in enumerate(df.columns[:n_obj]): - ax = fig.add_subplot(n_obj,1,i +1) - df.loc[::5,name].plot(lw=0.5,figsize=(18,8),ax = ax,color="black") + for i, name in enumerate(df.columns[:n_obj]): + ax = fig.add_subplot(n_obj, 1, i + 1) + df.loc[::5, name].plot(lw=0.5, figsize=(18, 8), ax=ax, color="black") plt.title(name) plt.show() - - - x,y,z = df.iloc[-n_pop:,0],df.iloc[-n_pop:,1],df.iloc[-n_pop:,2] + x, y, z = df.iloc[-n_pop:, 0], df.iloc[-n_pop:, 1], df.iloc[-n_pop:, 2] fig = plt.figure() - ax = fig.add_subplot(111, projection='3d') - ax.scatter(x,y,z,marker="o") + ax = fig.add_subplot(111, projection="3d") + ax.scatter(x, y, z, marker="o") ax.set_xlabel("x") ax.set_ylabel("y") ax.set_zlabel("z") @@ -65,9 +57,8 @@ # plot parameters fig = plt.figure() - for i,name in enumerate(df.columns[n_obj:8]): - ax = fig.add_subplot(5,1,i +1) - df.loc[:,name].plot(lw=0.5,figsize=(18,8),ax = ax,color="black") + for i, name in enumerate(df.columns[n_obj:8]): + ax = fig.add_subplot(5, 1, i + 1) + df.loc[:, name].plot(lw=0.5, figsize=(18, 8), ax=ax, color="black") plt.title(name) plt.show() - diff --git a/tutorials/tutorial_own_database.py b/tutorials/tutorial_own_database.py index 7b3d3227..9c2386c7 100644 --- a/tutorials/tutorial_own_database.py +++ b/tutorials/tutorial_own_database.py @@ -1,11 +1,11 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the Rosenbrock function into SPOT. -''' +""" import numpy as np import spotpy @@ -20,12 +20,14 @@ def __init__(self): self.db_headers = ["obj_functions", "parameters", "simulations"] - self.database = open('MyOwnDatabase.txt', 'w') + self.database = open("MyOwnDatabase.txt", "w") self.database.write("\t".join(self.db_headers) + "\n") def simulation(self, vector): x = np.array(vector) - simulations = [sum(100.0*(x[1:] - x[:-1]**2.0)**2.0 + (1 - x[:-1])**2.0)] + simulations = [ + sum(100.0 * (x[1:] - x[:-1] ** 2.0) ** 2.0 + (1 - x[:-1]) ** 2.0) + ] return simulations def evaluation(self): @@ -39,13 +41,16 @@ def objectivefunction(self, simulation, evaluation): def save(self, objectivefunctions, parameter, simulations, *args, **kwargs): param_str = "\t".join((str(p) for p in parameter)) sim_str = "\t".join((str(s) for s in simulations)) - line = "\t".join([str(objectivefunctions), param_str, sim_str]) + '\n' + line = "\t".join([str(objectivefunctions), param_str, sim_str]) + "\n" self.database.write(line) + if __name__ == "__main__": spot_setup = spot_setup() # set dbformat to custom and spotpy will return results in spot_setup.save function - sampler = spotpy.algorithms.mc(spot_setup, dbformat='custom') - sampler.sample(100) # Choose equal or less repetitions as you have parameters in your List - spot_setup.database.close() # Close the created txt file + sampler = spotpy.algorithms.mc(spot_setup, dbformat="custom") + sampler.sample( + 100 + ) # Choose equal or less repetitions as you have parameters in your List + spot_setup.database.close() # Close the created txt file diff --git a/tutorials/tutorial_padds_hymod.py b/tutorials/tutorial_padds_hymod.py index 066a49c1..591ea5a9 100644 --- a/tutorials/tutorial_padds_hymod.py +++ b/tutorials/tutorial_padds_hymod.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds example code how to use the dream algorithm -''' +""" import numpy as np @@ -14,6 +14,7 @@ import spotpy except ImportError: import sys + sys.path.append(".") import spotpy @@ -23,124 +24,129 @@ def multi_obj_func(evaluation, simulation): - #used to overwrite objective function in hymod example + # used to overwrite objective function in hymod example like1 = abs(spotpy.objectivefunctions.pbias(evaluation, simulation)) like2 = spotpy.objectivefunctions.rmse(evaluation, simulation) - like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation)*-1 + like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation) * -1 return np.array([like1, like2, like3]) + if __name__ == "__main__": - parallel ='seq' # Runs everthing in sequential mode - np.random.seed(2000) # Makes the results reproduceable - + parallel = "seq" # Runs everthing in sequential mode + np.random.seed(2000) # Makes the results reproduceable + # Initialize the Hymod example # In this case, we tell the setup which algorithm we want to use, so # we can use this exmaple for different algorithms - spot_setup=spot_setup(multi_obj_func) + spot_setup = spot_setup(multi_obj_func) + + # Select number of maximum allowed repetitions + rep = 2000 - #Select number of maximum allowed repetitions - rep=2000 - - # Create the PADDS sampler of spotpy, alt_objfun is set to None to force SPOTPY # to jump into the def objectivefunction in the spot_setup class (default is - # spotpy.objectivefunctions.rmse) - sampler=spotpy.algorithms.padds(spot_setup, dbname='padds_hymod', dbformat='csv') - - #Start the sampler, one can specify metric if desired - sampler.sample(rep,metric='ones') - + # spotpy.objectivefunctions.rmse) + sampler = spotpy.algorithms.padds(spot_setup, dbname="padds_hymod", dbformat="csv") + + # Start the sampler, one can specify metric if desired + sampler.sample(rep, metric="ones") + # Load the results gained with the sceua sampler, stored in padds_hymod.csv - #results = spotpy.analyser.load_csv_results('padds_hymod') + # results = spotpy.analyser.load_csv_results('padds_hymod') results = sampler.getdata() # from pprint import pprint # #pprint(results) # pprint(results['chain']) - for likno in range(1,4): - fig_like1 = plt.figure(1,figsize=(9,5)) - plt.plot(results['like'+str(likno)]) + for likno in range(1, 4): + fig_like1 = plt.figure(1, figsize=(9, 5)) + plt.plot(results["like" + str(likno)]) plt.show() - fig_like1.savefig('hymod_padds_objectivefunction_' + str(likno) + '.png', dpi=300) + fig_like1.savefig( + "hymod_padds_objectivefunction_" + str(likno) + ".png", dpi=300 + ) - - fig, ax=plt.subplots(3) + fig, ax = plt.subplots(3) for likenr in range(3): - ax[likenr].plot(results['like'+str(likenr+1)]) - ax[likenr].set_ylabel('like'+str(likenr+1)) - fig.savefig('hymod_padds_objectivefunction.png', dpi=300) - - + ax[likenr].plot(results["like" + str(likenr + 1)]) + ax[likenr].set_ylabel("like" + str(likenr + 1)) + fig.savefig("hymod_padds_objectivefunction.png", dpi=300) - - - # Example plot to show the parameter distribution ###### + # Example plot to show the parameter distribution ###### def plot_parameter_trace(ax, results, parameter): - ax.plot(results['par'+parameter.name],'.') + ax.plot(results["par" + parameter.name], ".") ax.set_ylabel(parameter.name) ax.set_ylim(parameter.minbound, parameter.maxbound) - + def plot_parameter_histogram(ax, results, parameter): - #chooses the last 20% of the sample - ax.hist(results['par'+parameter.name][int(len(results)*0.9):], - bins =np.linspace(parameter.minbound,parameter.maxbound,20)) - ax.set_ylabel('Density') + # chooses the last 20% of the sample + ax.hist( + results["par" + parameter.name][int(len(results) * 0.9) :], + bins=np.linspace(parameter.minbound, parameter.maxbound, 20), + ) + ax.set_ylabel("Density") ax.set_xlim(parameter.minbound, parameter.maxbound) - - fig= plt.figure(2,figsize=(9,9)) - - ax1 = plt.subplot(5,2,1) + + fig = plt.figure(2, figsize=(9, 9)) + + ax1 = plt.subplot(5, 2, 1) plot_parameter_trace(ax1, results, spot_setup.cmax) - - ax2 = plt.subplot(5,2,2) - plot_parameter_histogram(ax2,results, spot_setup.cmax) - - ax3 = plt.subplot(5,2,3) + + ax2 = plt.subplot(5, 2, 2) + plot_parameter_histogram(ax2, results, spot_setup.cmax) + + ax3 = plt.subplot(5, 2, 3) plot_parameter_trace(ax3, results, spot_setup.bexp) - - ax4 = plt.subplot(5,2,4) + + ax4 = plt.subplot(5, 2, 4) plot_parameter_histogram(ax4, results, spot_setup.bexp) - - ax5 = plt.subplot(5,2,5) + + ax5 = plt.subplot(5, 2, 5) plot_parameter_trace(ax5, results, spot_setup.alpha) - - ax6 = plt.subplot(5,2,6) + + ax6 = plt.subplot(5, 2, 6) plot_parameter_histogram(ax6, results, spot_setup.alpha) - ax7 = plt.subplot(5,2,7) + ax7 = plt.subplot(5, 2, 7) plot_parameter_trace(ax7, results, spot_setup.Ks) - - ax8 = plt.subplot(5,2,8) + + ax8 = plt.subplot(5, 2, 8) plot_parameter_histogram(ax8, results, spot_setup.Ks) - ax9 = plt.subplot(5,2,9) + ax9 = plt.subplot(5, 2, 9) plot_parameter_trace(ax9, results, spot_setup.Kq) - ax9.set_xlabel('Iterations') - - ax10 = plt.subplot(5,2,10) + ax9.set_xlabel("Iterations") + + ax10 = plt.subplot(5, 2, 10) plot_parameter_histogram(ax10, results, spot_setup.Kq) - ax10.set_xlabel('Parameter range') - + ax10.set_xlabel("Parameter range") + plt.show() - fig.savefig('hymod_parameters.png',dpi=300) - - + fig.savefig("hymod_parameters.png", dpi=300) + # Example plot to show remaining parameter uncertainty # - fields=[word for word in results.dtype.names if word.startswith('sim')] - fig= plt.figure(3, figsize=(16,9)) - ax11 = plt.subplot(1,1,1) - q5,q25,q75,q95=[],[],[],[] + fields = [word for word in results.dtype.names if word.startswith("sim")] + fig = plt.figure(3, figsize=(16, 9)) + ax11 = plt.subplot(1, 1, 1) + q5, q25, q75, q95 = [], [], [], [] for field in fields: - q5.append(np.percentile(results[field][-100:-1],2.5)) - q95.append(np.percentile(results[field][-100:-1],97.5)) - ax11.plot(q5,color='dimgrey',linestyle='solid') - ax11.plot(q95,color='dimgrey',linestyle='solid') - ax11.fill_between(np.arange(0,len(q5),1),list(q5),list(q95),facecolor='dimgrey',zorder=0, - linewidth=0,label='parameter uncertainty') - ax11.plot(spot_setup.evaluation(),'r.',label='data') - ax11.set_ylim(-50,450) - ax11.set_xlim(0,729) + q5.append(np.percentile(results[field][-100:-1], 2.5)) + q95.append(np.percentile(results[field][-100:-1], 97.5)) + ax11.plot(q5, color="dimgrey", linestyle="solid") + ax11.plot(q95, color="dimgrey", linestyle="solid") + ax11.fill_between( + np.arange(0, len(q5), 1), + list(q5), + list(q95), + facecolor="dimgrey", + zorder=0, + linewidth=0, + label="parameter uncertainty", + ) + ax11.plot(spot_setup.evaluation(), "r.", label="data") + ax11.set_ylim(-50, 450) + ax11.set_xlim(0, 729) ax11.legend() - fig.savefig('python_hymod.png',dpi=300) - ######################################################### \ No newline at end of file + fig.savefig("python_hymod.png", dpi=300) + ######################################################### diff --git a/tutorials/tutorial_parallel_computing_hymod.py b/tutorials/tutorial_parallel_computing_hymod.py index 553cd3bb..d9121e61 100644 --- a/tutorials/tutorial_parallel_computing_hymod.py +++ b/tutorials/tutorial_parallel_computing_hymod.py @@ -1,36 +1,36 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds example code how to use the dream algorithm -''' +""" try: import spotpy except ImportError: import sys + sys.path.append(".") import spotpy -#from spotpy.examples.spot_setup_hymod_python import spot_setup +# from spotpy.examples.spot_setup_hymod_python import spot_setup import sys -# When you are using parallel = 'mpc' you need to have -#the if __name__ == "__main__": line in your script +# When you are using parallel = 'mpc' you need to have +# the if __name__ == "__main__": line in your script if __name__ == "__main__": rep = 200 - #If you are working on a windows computer, this will be True - if 'win' in sys.platform: - parallel ='mpc' + # If you are working on a windows computer, this will be True + if "win" in sys.platform: + parallel = "mpc" from spotpy.examples.spot_setup_hymod_exe import spot_setup - - # If not you probably have a Mac or Unix system. Then save this file and start it - # from your terminal with "mpirun -c 20 python your_script.py" + # If not you probably have a Mac or Unix system. Then save this file and start it + # from your terminal with "mpirun -c 20 python your_script.py" else: - parallel = 'mpi' + parallel = "mpi" from spotpy.examples.spot_setup_hymod_unix import spot_setup # Initialize the Hymod example (this runs on Windows systems only) @@ -38,16 +38,17 @@ # your spot_setup class to run in parallel # If your model in def simulation reads any files, make sure, they are # unique for each cpu. Otherwise things get messed up... - spot_setup=spot_setup(parallel=parallel) - + spot_setup = spot_setup(parallel=parallel) + # Initialize a sampler that is suited for parallel computing (all except MLE, MCMC and SA) - sampler=spotpy.algorithms.mc(spot_setup, dbname='Parallel_hymod', dbformat='csv', - parallel=parallel) + sampler = spotpy.algorithms.mc( + spot_setup, dbname="Parallel_hymod", dbformat="csv", parallel=parallel + ) # Sample in parlallel sampler.sample(rep) - + # Load results from file - results = spotpy.analyser.load_csv_results('Parallel_hymod') + results = spotpy.analyser.load_csv_results("Parallel_hymod") print(len(results)) # Plot best model run - #spotpy.analyser.plot_bestmodelrun(results,spot_setup.evaluation()) \ No newline at end of file + # spotpy.analyser.plot_bestmodelrun(results,spot_setup.evaluation()) diff --git a/tutorials/tutorial_rosenbrock.py b/tutorials/tutorial_rosenbrock.py index 93a005a3..fd40a3de 100644 --- a/tutorials/tutorial_rosenbrock.py +++ b/tutorials/tutorial_rosenbrock.py @@ -1,27 +1,28 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska This file holds the example code from the Rosenbrock tutorial web-documention. -''' +""" try: import spotpy except ImportError: import sys + sys.path.append(".") import spotpy from spotpy.describe import describe from spotpy.examples.spot_setup_rosenbrock import spot_setup -#Create samplers for every algorithm: -results=[] -rep=1000 -timeout=10 #Given in Seconds +# Create samplers for every algorithm: +results = [] +rep = 1000 +timeout = 10 # Given in Seconds parallel = "seq" dbformat = "csv" @@ -30,77 +31,142 @@ bayesian_likelihood_func = spotpy.likelihoods.gaussianLikelihoodMeasErrorOut -sampler = spotpy.algorithms.mc(spot_setup(), - parallel=parallel, dbname='RosenMC', dbformat=dbformat, sim_timeout=timeout) +sampler = spotpy.algorithms.mc( + spot_setup(), + parallel=parallel, + dbname="RosenMC", + dbformat=dbformat, + sim_timeout=timeout, +) print(describe(sampler)) sampler.sample(rep) results.append(sampler.getdata()) -sampler = spotpy.algorithms.lhs(spot_setup(), - parallel=parallel, dbname='RosenLHS', dbformat=dbformat, sim_timeout=timeout) +sampler = spotpy.algorithms.lhs( + spot_setup(), + parallel=parallel, + dbname="RosenLHS", + dbformat=dbformat, + sim_timeout=timeout, +) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.mle(spot_setup(obj_func=bayesian_likelihood_func), - parallel=parallel, dbname='RosenMLE', dbformat=dbformat, sim_timeout=timeout) +sampler = spotpy.algorithms.mle( + spot_setup(obj_func=bayesian_likelihood_func), + parallel=parallel, + dbname="RosenMLE", + dbformat=dbformat, + sim_timeout=timeout, +) sampler.sample(rep) results.append(sampler.getdata()) - -sampler=spotpy.algorithms.sceua(spot_setup(), - parallel=parallel, dbname='RosenSCEUA', dbformat=dbformat, sim_timeout=timeout) -sampler.sample(rep,ngs=4) +sampler = spotpy.algorithms.sceua( + spot_setup(), + parallel=parallel, + dbname="RosenSCEUA", + dbformat=dbformat, + sim_timeout=timeout, +) +sampler.sample(rep, ngs=4) results.append(sampler.getdata()) -sampler=spotpy.algorithms.sa(spot_setup(obj_func=bayesian_likelihood_func), - parallel=parallel, dbname='RosenSA', dbformat=dbformat, sim_timeout=timeout) +sampler = spotpy.algorithms.sa( + spot_setup(obj_func=bayesian_likelihood_func), + parallel=parallel, + dbname="RosenSA", + dbformat=dbformat, + sim_timeout=timeout, +) sampler.sample(rep) results.append(sampler.getdata()) - -sampler=spotpy.algorithms.rope(spot_setup(), - parallel=parallel, dbname='RosenROPE', dbformat=dbformat,sim_timeout=timeout) +sampler = spotpy.algorithms.rope( + spot_setup(), + parallel=parallel, + dbname="RosenROPE", + dbformat=dbformat, + sim_timeout=timeout, +) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.abc(spot_setup(), - parallel=parallel, dbname='RosenABC', dbformat=dbformat,sim_timeout=timeout) +sampler = spotpy.algorithms.abc( + spot_setup(), + parallel=parallel, + dbname="RosenABC", + dbformat=dbformat, + sim_timeout=timeout, +) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.fscabc(spot_setup(), - parallel=parallel, dbname='RosenFSABC', dbformat=dbformat, sim_timeout=timeout) +sampler = spotpy.algorithms.fscabc( + spot_setup(), + parallel=parallel, + dbname="RosenFSABC", + dbformat=dbformat, + sim_timeout=timeout, +) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.mcmc(spot_setup(obj_func=bayesian_likelihood_func), - parallel=parallel, dbname='RosenMCMC', dbformat=dbformat, sim_timeout=timeout) +sampler = spotpy.algorithms.mcmc( + spot_setup(obj_func=bayesian_likelihood_func), + parallel=parallel, + dbname="RosenMCMC", + dbformat=dbformat, + sim_timeout=timeout, +) sampler.sample(rep) results.append(sampler.getdata()) -sampler=spotpy.algorithms.demcz(spot_setup(obj_func = bayesian_likelihood_func), - parallel=parallel, dbname='RosenDEMCz', dbformat=dbformat, sim_timeout=timeout) -sampler.sample(rep,nChains=4) +sampler = spotpy.algorithms.demcz( + spot_setup(obj_func=bayesian_likelihood_func), + parallel=parallel, + dbname="RosenDEMCz", + dbformat=dbformat, + sim_timeout=timeout, +) +sampler.sample(rep, nChains=4) results.append(sampler.getdata()) -sampler=spotpy.algorithms.dream(spot_setup(obj_func = bayesian_likelihood_func), - parallel=parallel, dbname='RosenDREAM', dbformat=dbformat, sim_timeout=timeout) -sampler.sample(rep,nChains=4) +sampler = spotpy.algorithms.dream( + spot_setup(obj_func=bayesian_likelihood_func), + parallel=parallel, + dbname="RosenDREAM", + dbformat=dbformat, + sim_timeout=timeout, +) +sampler.sample(rep, nChains=4) results.append(sampler.getdata()) -print(results[0].dtype) # Check for Travis: Get the last sampled parameter for x +print(results[0].dtype) # Check for Travis: Get the last sampled parameter for x evaluation = spot_setup().evaluation() # Example how to plot the data -algorithms = ['mc','lhs','mle','sceua','sa','rope','abc','fscabc', 'mcmc', 'demcz', 'dream'] +algorithms = [ + "mc", + "lhs", + "mle", + "sceua", + "sa", + "rope", + "abc", + "fscabc", + "mcmc", + "demcz", + "dream", +] spotpy.analyser.plot_parametertrace_algorithms(results, algorithms, spot_setup()) diff --git a/tutorials/tutorial_sceua_hymod.py b/tutorials/tutorial_sceua_hymod.py index 0d1c4df1..73e89386 100644 --- a/tutorials/tutorial_sceua_hymod.py +++ b/tutorials/tutorial_sceua_hymod.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This class holds example code how to use the dream algorithm -''' +""" import matplotlib.pyplot as plt import numpy as np @@ -15,50 +15,53 @@ from spotpy.examples.spot_setup_hymod_python import spot_setup if __name__ == "__main__": - parallel ='seq' # Runs everthing in sequential mode - np.random.seed(2000) # Makes the results reproduceable - + parallel = "seq" # Runs everthing in sequential mode + np.random.seed(2000) # Makes the results reproduceable + # Initialize the Hymod example # In this case, we tell the setup which algorithm we want to use, so # we can use this exmaple for different algorithms - spot_setup=spot_setup(spotpy.objectivefunctions.rmse) - - #Select number of maximum allowed repetitions - rep=5000 - sampler=spotpy.algorithms.sceua(spot_setup, dbname='SCEUA_hymod', dbformat='csv') - - #Start the sampler, one can specify ngs, kstop, peps and pcento id desired - sampler.sample(rep, ngs=7, kstop=3, peps=0.1, pcento=0.1) - + spot_setup = spot_setup(spotpy.objectivefunctions.rmse) + + # Select number of maximum allowed repetitions + rep = 5000 + sampler = spotpy.algorithms.sceua(spot_setup, dbname="SCEUA_hymod", dbformat="csv") + + # Start the sampler, one can specify ngs, kstop, peps and pcento id desired + sampler.sample(rep, ngs=7, kstop=3, peps=0.1, pcento=0.1) + # Load the results gained with the sceua sampler, stored in SCEUA_hymod.csv - results = spotpy.analyser.load_csv_results('SCEUA_hymod') - - - #Plot how the objective function was minimized during sampling - fig= plt.figure(1,figsize=(9,6)) - plt.plot(results['like1']) + results = spotpy.analyser.load_csv_results("SCEUA_hymod") + + # Plot how the objective function was minimized during sampling + fig = plt.figure(1, figsize=(9, 6)) + plt.plot(results["like1"]) plt.show() - plt.ylabel('RMSE') - plt.xlabel('Iteration') - fig.savefig('SCEUA_objectivefunctiontrace.png',dpi=150) - + plt.ylabel("RMSE") + plt.xlabel("Iteration") + fig.savefig("SCEUA_objectivefunctiontrace.png", dpi=150) + # Plot the best model run - #Find the run_id with the minimal objective function value - bestindex,bestobjf = spotpy.analyser.get_minlikeindex(results) + # Find the run_id with the minimal objective function value + bestindex, bestobjf = spotpy.analyser.get_minlikeindex(results) # Select best model run best_model_run = results[bestindex] - - #Filter results for simulation results - fields=[word for word in best_model_run.dtype.names if word.startswith('sim')] - best_simulation = list(best_model_run[fields]) - fig= plt.figure(figsize=(9,6)) - ax = plt.subplot(1,1,1) - ax.plot(best_simulation,color='black',linestyle='solid', label='Best objf.='+str(bestobjf)) - ax.plot(spot_setup.evaluation(),'r.',markersize=3, label='Observation data') - plt.xlabel('Number of Observation Points') - plt.ylabel ('Discharge [l s-1]') - plt.legend(loc='upper right') - fig.savefig('SCEUA_best_modelrun.png',dpi=150) + # Filter results for simulation results + fields = [word for word in best_model_run.dtype.names if word.startswith("sim")] + best_simulation = list(best_model_run[fields]) + fig = plt.figure(figsize=(9, 6)) + ax = plt.subplot(1, 1, 1) + ax.plot( + best_simulation, + color="black", + linestyle="solid", + label="Best objf.=" + str(bestobjf), + ) + ax.plot(spot_setup.evaluation(), "r.", markersize=3, label="Observation data") + plt.xlabel("Number of Observation Points") + plt.ylabel("Discharge [l s-1]") + plt.legend(loc="upper right") + fig.savefig("SCEUA_best_modelrun.png", dpi=150) diff --git a/tutorials/tutorial_signatures.py b/tutorials/tutorial_signatures.py index ab4a81f4..9ff1614e 100644 --- a/tutorials/tutorial_signatures.py +++ b/tutorials/tutorial_signatures.py @@ -1,11 +1,11 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2017 by Benjamin Manns This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Benjamin Manns This code shows you, how to use the hydroligcal signatures. They can also be implemented in the def objective function. -''' +""" from pprint import pprint @@ -15,130 +15,389 @@ print("INFO: For this example you need the folder >hymod< in the examples folder") spot_setup = spot_setup() -parameterset = spot_setup.parameters()['random'] +parameterset = spot_setup.parameters()["random"] simulation = spot_setup.simulation(parameterset) observation = spot_setup.evaluation() # Beispiele zum einfachen Copy & Paste -print(sig.getMeanFlow(simulation, observation,mode="get_signature")) -print(sig.getMeanFlow(simulation, observation,mode="get_raw_data")) -print(sig.getMeanFlow(simulation, observation,mode="calc_Dev")) +print(sig.getMeanFlow(simulation, observation, mode="get_signature")) +print(sig.getMeanFlow(simulation, observation, mode="get_raw_data")) +print(sig.getMeanFlow(simulation, observation, mode="calc_Dev")) -print(sig.getMedianFlow(simulation, observation,mode="get_signature")) -print(sig.getMedianFlow(simulation, observation,mode="get_raw_data")) -print(sig.getMedianFlow(simulation, observation,mode="calc_Dev")) +print(sig.getMedianFlow(simulation, observation, mode="get_signature")) +print(sig.getMedianFlow(simulation, observation, mode="get_raw_data")) +print(sig.getMedianFlow(simulation, observation, mode="calc_Dev")) -print(sig.getSkewness(simulation, observation,mode="get_signature")) -print(sig.getSkewness(simulation, observation,mode="get_raw_data")) -print(sig.getSkewness(simulation, observation,mode="calc_Dev")) +print(sig.getSkewness(simulation, observation, mode="get_signature")) +print(sig.getSkewness(simulation, observation, mode="get_raw_data")) +print(sig.getSkewness(simulation, observation, mode="calc_Dev")) -print(sig.getCoeffVariation(simulation, observation,mode="get_signature")) -print(sig.getCoeffVariation(simulation, observation,mode="get_raw_data")) -print(sig.getCoeffVariation(simulation, observation,mode="calc_Dev")) +print(sig.getCoeffVariation(simulation, observation, mode="get_signature")) +print(sig.getCoeffVariation(simulation, observation, mode="get_raw_data")) +print(sig.getCoeffVariation(simulation, observation, mode="calc_Dev")) -print(sig.getQ001(simulation, observation,mode="get_signature")) -print(sig.getQ001(simulation, observation,mode="get_raw_data")) -print(sig.getQ001(simulation, observation,mode="calc_Dev")) +print(sig.getQ001(simulation, observation, mode="get_signature")) +print(sig.getQ001(simulation, observation, mode="get_raw_data")) +print(sig.getQ001(simulation, observation, mode="calc_Dev")) -print(sig.getQ01(simulation, observation,mode="get_signature")) -print(sig.getQ01(simulation, observation,mode="get_raw_data")) -print(sig.getQ01(simulation, observation,mode="calc_Dev")) +print(sig.getQ01(simulation, observation, mode="get_signature")) +print(sig.getQ01(simulation, observation, mode="get_raw_data")) +print(sig.getQ01(simulation, observation, mode="calc_Dev")) -print(sig.getQ1(simulation, observation,mode="get_signature")) -print(sig.getQ1(simulation, observation,mode="get_raw_data")) -print(sig.getQ1(simulation, observation,mode="calc_Dev")) +print(sig.getQ1(simulation, observation, mode="get_signature")) +print(sig.getQ1(simulation, observation, mode="get_raw_data")) +print(sig.getQ1(simulation, observation, mode="calc_Dev")) -print(sig.getQ5(simulation, observation,mode="get_signature")) -print(sig.getQ5(simulation, observation,mode="get_raw_data")) -print(sig.getQ5(simulation, observation,mode="calc_Dev")) +print(sig.getQ5(simulation, observation, mode="get_signature")) +print(sig.getQ5(simulation, observation, mode="get_raw_data")) +print(sig.getQ5(simulation, observation, mode="calc_Dev")) -print(sig.getQ10(simulation, observation,mode="get_signature")) -print(sig.getQ10(simulation, observation,mode="get_raw_data")) -print(sig.getQ10(simulation, observation,mode="calc_Dev")) +print(sig.getQ10(simulation, observation, mode="get_signature")) +print(sig.getQ10(simulation, observation, mode="get_raw_data")) +print(sig.getQ10(simulation, observation, mode="calc_Dev")) -print(sig.getQ20(simulation, observation,mode="get_signature")) -print(sig.getQ20(simulation, observation,mode="get_raw_data")) -print(sig.getQ20(simulation, observation,mode="calc_Dev")) +print(sig.getQ20(simulation, observation, mode="get_signature")) +print(sig.getQ20(simulation, observation, mode="get_raw_data")) +print(sig.getQ20(simulation, observation, mode="calc_Dev")) -print(sig.getQ85(simulation, observation,mode="get_signature")) -print(sig.getQ85(simulation, observation,mode="get_raw_data")) -print(sig.getQ85(simulation, observation,mode="calc_Dev")) +print(sig.getQ85(simulation, observation, mode="get_signature")) +print(sig.getQ85(simulation, observation, mode="get_raw_data")) +print(sig.getQ85(simulation, observation, mode="calc_Dev")) -print(sig.getQ95(simulation, observation,mode="get_signature")) -print(sig.getQ95(simulation, observation,mode="get_raw_data")) -print(sig.getQ95(simulation, observation,mode="calc_Dev")) +print(sig.getQ95(simulation, observation, mode="get_signature")) +print(sig.getQ95(simulation, observation, mode="get_raw_data")) +print(sig.getQ95(simulation, observation, mode="calc_Dev")) -print(sig.getQ99(simulation, observation,mode="get_signature")) -print(sig.getQ99(simulation, observation,mode="get_raw_data")) -print(sig.getQ99(simulation, observation,mode="calc_Dev")) +print(sig.getQ99(simulation, observation, mode="get_signature")) +print(sig.getQ99(simulation, observation, mode="get_raw_data")) +print(sig.getQ99(simulation, observation, mode="calc_Dev")) -print(sig.getSlopeFDC(simulation, observation,mode="get_signature")) -print(sig.getSlopeFDC(simulation, observation,mode="get_raw_data")) -print(sig.getSlopeFDC(simulation, observation,mode="calc_Dev")) +print(sig.getSlopeFDC(simulation, observation, mode="get_signature")) +print(sig.getSlopeFDC(simulation, observation, mode="get_raw_data")) +print(sig.getSlopeFDC(simulation, observation, mode="calc_Dev")) try: import matplotlib.pyplot as plt import pandas as pd + timespanlen = simulation.__len__() - ddd = pd.date_range("2015-01-01 11:00", freq="5min",periods=timespanlen) + ddd = pd.date_range("2015-01-01 11:00", freq="5min", periods=timespanlen) dd_daily = pd.date_range("2015-05-01", periods=timespanlen) - print(sig.getAverageFloodOverflowPerSection(simulation, observation,mode="get_signature", datetime_series=dd_daily,threshold_value=1)) - print(sig.getAverageFloodOverflowPerSection(simulation, observation,mode="get_raw_data", datetime_series=dd_daily,threshold_value=1)) - print(sig.getAverageFloodOverflowPerSection(simulation, observation,mode="calc_Dev", datetime_series=dd_daily,threshold_value=1)) - - print(sig.getAverageFloodFrequencyPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=1,mode="get_signature")) - print(sig.getAverageFloodFrequencyPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=1,mode="get_raw_data")) + print( + sig.getAverageFloodOverflowPerSection( + simulation, + observation, + mode="get_signature", + datetime_series=dd_daily, + threshold_value=1, + ) + ) + print( + sig.getAverageFloodOverflowPerSection( + simulation, + observation, + mode="get_raw_data", + datetime_series=dd_daily, + threshold_value=1, + ) + ) + print( + sig.getAverageFloodOverflowPerSection( + simulation, + observation, + mode="calc_Dev", + datetime_series=dd_daily, + threshold_value=1, + ) + ) + + print( + sig.getAverageFloodFrequencyPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=1, + mode="get_signature", + ) + ) + print( + sig.getAverageFloodFrequencyPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=1, + mode="get_raw_data", + ) + ) # If you want to plot the raw data, simple do: - vals = sig.getAverageFloodFrequencyPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=1,mode="get_raw_data") + vals = sig.getAverageFloodFrequencyPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=1, + mode="get_raw_data", + ) vals.plot() plt.show() - print(sig.getAverageFloodFrequencyPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=1,mode="calc_Dev")) - - print(sig.getAverageFloodDuration(simulation, observation,datetime_series=dd_daily,threshold_value=3,mode="get_signature")) - print(sig.getAverageFloodDuration(simulation, observation,datetime_series=dd_daily,threshold_value=3,mode="get_raw_data")) - print(sig.getAverageFloodDuration(simulation, observation,datetime_series=dd_daily,threshold_value=3,mode="calc_Dev")) - - print(sig.getAverageBaseflowUnderflowPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=4,mode="get_signature")) - print(sig.getAverageBaseflowUnderflowPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=4,mode="get_raw_data")) - print(sig.getAverageBaseflowUnderflowPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=4,mode="calc_Dev")) - - print(sig.getAverageBaseflowFrequencyPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=3,mode="get_signature")) - print(sig.getAverageBaseflowFrequencyPerSection(simulation, observation,datetime_series=ddd,threshold_value=5,mode="get_raw_data")) - print(sig.getAverageBaseflowFrequencyPerSection(simulation, observation,datetime_series=dd_daily,threshold_value=3,mode="calc_Dev")) - - print(sig.getAverageBaseflowDuration(simulation, observation, datetime_series=dd_daily, threshold_value=3,mode="get_signature")) - print(sig.getAverageBaseflowDuration(simulation, observation, datetime_series=ddd, threshold_value=5,mode="get_raw_data")) - print(sig.getAverageBaseflowDuration(simulation, observation, datetime_series=dd_daily, threshold_value=3,mode="calc_Dev")) - - - - print(sig.getFloodFrequency(simulation, observation,datetime_series=pd.date_range("2015-05-01", periods=timespanlen),threshold_value=3,mode="get_signature")) - print(sig.getFloodFrequency(simulation, observation,datetime_series=pd.date_range("2015-05-01", periods=timespanlen),threshold_value=3,mode="get_raw_data")) - print(sig.getFloodFrequency(simulation, observation,datetime_series=pd.date_range("2015-05-01", periods=timespanlen),threshold_value=3,mode="calc_Dev")) - - print(sig.getBaseflowFrequency(simulation, observation,datetime_series=pd.date_range("2015-05-01", periods=timespanlen),threshold_value=3,mode="get_signature")) - print(sig.getBaseflowFrequency(simulation, observation,datetime_series=pd.date_range("2015-05-01", freq="5min", periods=timespanlen),threshold_value=3,mode="get_raw_data")) - print(sig.getBaseflowFrequency(simulation, observation,datetime_series=pd.date_range("2015-05-01", periods=timespanlen),threshold_value=3,mode="calc_Dev")) - - print(sig.getLowFlowVar(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="get_signature")) - print(sig.getLowFlowVar(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="get_raw_data")) - print(sig.getLowFlowVar(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="calc_Dev")) - - print(sig.getHighFlowVar(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="get_signature")) - print(sig.getHighFlowVar(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="get_raw_data")) - print(sig.getHighFlowVar(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="calc_Dev")) - - print(sig.getBaseflowIndex(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="get_signature")) - print(sig.getBaseflowIndex(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="get_raw_data")) - print(sig.getBaseflowIndex(simulation, observation, datetime_series=pd.date_range("2015-05-01", periods=timespanlen),mode="calc_Dev")) + print( + sig.getAverageFloodFrequencyPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=1, + mode="calc_Dev", + ) + ) + + print( + sig.getAverageFloodDuration( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=3, + mode="get_signature", + ) + ) + print( + sig.getAverageFloodDuration( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=3, + mode="get_raw_data", + ) + ) + print( + sig.getAverageFloodDuration( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=3, + mode="calc_Dev", + ) + ) + + print( + sig.getAverageBaseflowUnderflowPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=4, + mode="get_signature", + ) + ) + print( + sig.getAverageBaseflowUnderflowPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=4, + mode="get_raw_data", + ) + ) + print( + sig.getAverageBaseflowUnderflowPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=4, + mode="calc_Dev", + ) + ) + + print( + sig.getAverageBaseflowFrequencyPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=3, + mode="get_signature", + ) + ) + print( + sig.getAverageBaseflowFrequencyPerSection( + simulation, + observation, + datetime_series=ddd, + threshold_value=5, + mode="get_raw_data", + ) + ) + print( + sig.getAverageBaseflowFrequencyPerSection( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=3, + mode="calc_Dev", + ) + ) + + print( + sig.getAverageBaseflowDuration( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=3, + mode="get_signature", + ) + ) + print( + sig.getAverageBaseflowDuration( + simulation, + observation, + datetime_series=ddd, + threshold_value=5, + mode="get_raw_data", + ) + ) + print( + sig.getAverageBaseflowDuration( + simulation, + observation, + datetime_series=dd_daily, + threshold_value=3, + mode="calc_Dev", + ) + ) + + print( + sig.getFloodFrequency( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + threshold_value=3, + mode="get_signature", + ) + ) + print( + sig.getFloodFrequency( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + threshold_value=3, + mode="get_raw_data", + ) + ) + print( + sig.getFloodFrequency( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + threshold_value=3, + mode="calc_Dev", + ) + ) + + print( + sig.getBaseflowFrequency( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + threshold_value=3, + mode="get_signature", + ) + ) + print( + sig.getBaseflowFrequency( + simulation, + observation, + datetime_series=pd.date_range( + "2015-05-01", freq="5min", periods=timespanlen + ), + threshold_value=3, + mode="get_raw_data", + ) + ) + print( + sig.getBaseflowFrequency( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + threshold_value=3, + mode="calc_Dev", + ) + ) + + print( + sig.getLowFlowVar( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="get_signature", + ) + ) + print( + sig.getLowFlowVar( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="get_raw_data", + ) + ) + print( + sig.getLowFlowVar( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="calc_Dev", + ) + ) + + print( + sig.getHighFlowVar( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="get_signature", + ) + ) + print( + sig.getHighFlowVar( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="get_raw_data", + ) + ) + print( + sig.getHighFlowVar( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="calc_Dev", + ) + ) + + print( + sig.getBaseflowIndex( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="get_signature", + ) + ) + print( + sig.getBaseflowIndex( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="get_raw_data", + ) + ) + print( + sig.getBaseflowIndex( + simulation, + observation, + datetime_series=pd.date_range("2015-05-01", periods=timespanlen), + mode="calc_Dev", + ) + ) except ImportError: - print('Please install Pandas to use these signature functions') - - - + print("Please install Pandas to use these signature functions") From 1eea795f42bc8e3f4621838bae34a95bfa90fed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 8 Jul 2022 15:58:44 +0200 Subject: [PATCH 24/34] apply black to tests --- tests/test_algorithms.py | 167 ++++++-- tests/test_analyser.py | 210 +++++----- tests/test_cli.py | 46 ++- tests/test_database.py | 315 ++++++++++++--- tests/test_dds.py | 139 +++++-- tests/test_describe.py | 59 +-- tests/test_fast.py | 20 +- tests/test_gui_mpl.py | 19 +- tests/test_likelihood.py | 380 +++++++++++++----- ...t_and_constant_parameters_with_samplers.py | 69 +++- tests/test_objectivefunctions.py | 48 ++- tests/test_parallel.py | 35 +- tests/test_parameter.py | 330 ++++++++++----- tests/test_setup_parameters.py | 79 ++-- tests/test_signatures.py | 10 +- 15 files changed, 1358 insertions(+), 568 deletions(-) diff --git a/tests/test_algorithms.py b/tests/test_algorithms.py index c9f81dd8..3fc9a566 100644 --- a/tests/test_algorithms.py +++ b/tests/test_algorithms.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import os import unittest @@ -16,122 +16,220 @@ from spotpy.examples.spot_setup_rosenbrock import spot_setup from spotpy.likelihoods import gaussianLikelihoodMeasErrorOut as GausianLike -#https://docs.python.org/3/library/unittest.html +# https://docs.python.org/3/library/unittest.html -class TestAlgorithms(unittest.TestCase): +class TestAlgorithms(unittest.TestCase): def multi_obj_func(self, evaluation, simulation, params=None): - #used to overwrite objective function in hymod example + # used to overwrite objective function in hymod example like1 = abs(spotpy.objectivefunctions.bias(evaluation, simulation)) like2 = spotpy.objectivefunctions.rmse(evaluation, simulation) - like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation)*-1 + like3 = spotpy.objectivefunctions.rsquared(evaluation, simulation) * -1 return np.array([like1, like2, like3]) def setUp(self): # How many digits to match in case of floating point answers self.tolerance = 7 - #Create samplers for every algorithm: + # Create samplers for every algorithm: self.rep = 987 - self.timeout = 10 #Given in Seconds + self.timeout = 10 # Given in Seconds - self.parallel = os.environ.get('SPOTPY_PARALLEL', 'seq') + self.parallel = os.environ.get("SPOTPY_PARALLEL", "seq") self.dbformat = "ram" def test_mc(self): - sampler=spotpy.algorithms.mc(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.mc( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_lhs(self): - sampler=spotpy.algorithms.lhs(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.lhs( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_mle(self): - sampler=spotpy.algorithms.mle(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.mle( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_mcmc(self): - sampler=spotpy.algorithms.mcmc(spot_setup(GausianLike),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.mcmc( + spot_setup(GausianLike), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_demcz(self): - sampler=spotpy.algorithms.demcz(spot_setup(GausianLike),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.demcz( + spot_setup(GausianLike), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep, convergenceCriteria=0) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_dream(self): - sampler=spotpy.algorithms.dream(spot_setup(GausianLike),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.dream( + spot_setup(GausianLike), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep, convergence_limit=0.9, runs_after_convergence=500) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_sceua(self): - sampler=spotpy.algorithms.sceua(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.sceua( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() - self.assertLessEqual(len(results), self.rep) #Sceua save per definition not all sampled runs + self.assertLessEqual( + len(results), self.rep + ) # Sceua save per definition not all sampled runs def test_abc(self): - sampler=spotpy.algorithms.abc(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.abc( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_fscabc(self): - sampler=spotpy.algorithms.fscabc(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.fscabc( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_rope(self): - sampler=spotpy.algorithms.rope(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.rope( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_sa(self): - sampler=spotpy.algorithms.sa(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.sa( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_list(self): - #generate a List sampler input - sampler=spotpy.algorithms.mc(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat='csv', sim_timeout=self.timeout) + # generate a List sampler input + sampler = spotpy.algorithms.mc( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat="csv", + sim_timeout=self.timeout, + ) sampler.sample(self.rep) - sampler=spotpy.algorithms.list_sampler(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.list_sampler( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_fast(self): - sampler=spotpy.algorithms.fast(spot_setup(),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.fast( + spot_setup(), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep, M=5) results = sampler.getdata() - self.assertEqual(len(results), self.rep) #Si values should be returned + self.assertEqual(len(results), self.rep) # Si values should be returned def test_padds(self): - sampler=spotpy.algorithms.padds(spot_setup_hymod(self.multi_obj_func),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) - sampler.sample(int(self.rep*0.5), metric='ones') + sampler = spotpy.algorithms.padds( + spot_setup_hymod(self.multi_obj_func), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) + sampler.sample(int(self.rep * 0.5), metric="ones") results = sampler.getdata() - self.assertEqual(len(results)+5, int(self.rep*0.5)) + self.assertEqual(len(results) + 5, int(self.rep * 0.5)) def test_nsgaii(self): - generations=20 + generations = 20 n_pop = 10 - sampler=spotpy.algorithms.NSGAII(spot_setup_hymod(self.multi_obj_func),parallel=self.parallel, dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) - sampler.sample(generations, n_obj= 3, n_pop = n_pop) + sampler = spotpy.algorithms.NSGAII( + spot_setup_hymod(self.multi_obj_func), + parallel=self.parallel, + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) + sampler.sample(generations, n_obj=3, n_pop=n_pop) results = sampler.getdata() - self.assertLessEqual(len(results), generations*n_pop) + self.assertLessEqual(len(results), generations * n_pop) @classmethod def tearDownClass(cls): @@ -141,5 +239,6 @@ def tearDownClass(cls): except FileNotFoundError: pass -if __name__ == '__main__': + +if __name__ == "__main__": unittest.main(exit=False) diff --git a/tests/test_analyser.py b/tests/test_analyser.py index 91f7a1a8..0dafe110 100644 --- a/tests/test_analyser.py +++ b/tests/test_analyser.py @@ -1,14 +1,14 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Benjamin Manns This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska, Benjamin Manns -''' +""" import matplotlib as mpl -mpl.use('Agg') +mpl.use("Agg") import os import unittest @@ -31,25 +31,23 @@ def setUpClass(self): self.parallel = "seq" self.dbformat = "ram" self.timeout = 5 - self.fig_name = 'test_output.png' + self.fig_name = "test_output.png" - sampler = spotpy.algorithms.mc(rosenbrock_setup(), - sim_timeout=self.timeout) + sampler = spotpy.algorithms.mc(rosenbrock_setup(), sim_timeout=self.timeout) sampler.sample(self.rep) self.results = sampler.getdata() - sampler = spotpy.algorithms.mc(griewank_setup(), - sim_timeout=self.timeout) + sampler = spotpy.algorithms.mc(griewank_setup(), sim_timeout=self.timeout) sampler.sample(self.rep) self.griewank_results = sampler.getdata() - sampler = spotpy.algorithms.fast(rosenbrock_setup(), - sim_timeout=self.timeout) + sampler = spotpy.algorithms.fast(rosenbrock_setup(), sim_timeout=self.timeout) sampler.sample(self.rep) self.sens_results = sampler.getdata() - #Hymod resuts are empty with Python <3.6 - sampler = spotpy.algorithms.dream(hymod_setup(GausianLike), - sim_timeout=self.timeout) + # Hymod resuts are empty with Python <3.6 + sampler = spotpy.algorithms.dream( + hymod_setup(GausianLike), sim_timeout=self.timeout + ) self.r_hat = sampler.sample(self.rep) self.hymod_results = sampler.getdata() @@ -61,68 +59,59 @@ def test_setUp(self): def test_get_parameters(self): - self.assertEqual(len(spotpy.analyser.get_parameters( - self.results)[0]), 3) + self.assertEqual(len(spotpy.analyser.get_parameters(self.results)[0]), 3) def test_get_parameternames(self): - self.assertEqual(spotpy.analyser.get_parameternames( - self.results - ),['x', 'y', 'z']) + self.assertEqual( + spotpy.analyser.get_parameternames(self.results), ["x", "y", "z"] + ) def test_get_parameter_fields(self): - self.assertEqual(len(spotpy.analyser.get_parameternames( - self.results - )), 3) + self.assertEqual(len(spotpy.analyser.get_parameternames(self.results)), 3) def test_get_minlikeindex(self): - minlikeindex = spotpy.analyser.get_minlikeindex( - self.results - ) + minlikeindex = spotpy.analyser.get_minlikeindex(self.results) self.assertEqual(len(minlikeindex), 2) - self.assertEqual(type(minlikeindex),type((1,1))) + self.assertEqual(type(minlikeindex), type((1, 1))) def test_get_maxlikeindex(self): - get_maxlikeindex = spotpy.analyser.get_maxlikeindex( - self.results - ) + get_maxlikeindex = spotpy.analyser.get_maxlikeindex(self.results) self.assertEqual(len(get_maxlikeindex), 2) - self.assertEqual(type(get_maxlikeindex),type((1,1))) + self.assertEqual(type(get_maxlikeindex), type((1, 1))) def test_get_like_fields(self): - get_like_fields = spotpy.analyser.get_like_fields( - self.results - ) + get_like_fields = spotpy.analyser.get_like_fields(self.results) self.assertEqual(len(get_like_fields), 1) - self.assertEqual(type(get_like_fields),type([])) + self.assertEqual(type(get_like_fields), type([])) def test_calc_like(self): calc_like = spotpy.analyser.calc_like( self.results, - rosenbrock_setup().evaluation(),spotpy.objectivefunctions.rmse) + rosenbrock_setup().evaluation(), + spotpy.objectivefunctions.rmse, + ) self.assertEqual(len(calc_like), len(self.results)) self.assertEqual(type(calc_like), type([])) def test_get_best_parameterset(self): get_best_parameterset_true = spotpy.analyser.get_best_parameterset( - self.results,True) + self.results, True + ) get_best_parameterset_false = spotpy.analyser.get_best_parameterset( - self.results, False) + self.results, False + ) self.assertEqual(len(get_best_parameterset_true[0]), 3) self.assertEqual(type(get_best_parameterset_true[0]), np.void) self.assertEqual(len(get_best_parameterset_false[0]), 3) self.assertEqual(type(get_best_parameterset_false[0]), np.void) def test_get_modelruns(self): - get_modelruns = spotpy.analyser.get_modelruns( - self.results - ) + get_modelruns = spotpy.analyser.get_modelruns(self.results) self.assertEqual(len(get_modelruns[0]), 1) self.assertEqual(type(get_modelruns[0]), np.void) def test_get_header(self): - get_header = spotpy.analyser.get_header( - self.results - ) + get_header = spotpy.analyser.get_header(self.results) self.assertEqual(len(get_header), 6) self.assertEqual(type(get_header), type(())) @@ -138,11 +127,10 @@ def test_get_parbounds(self): self.assertEqual(type(get_parbounds), type([])) def test_get_percentiles(self): - get_percentiles = spotpy.analyser.get_percentiles( - self.results) - self.assertEqual(len(get_percentiles),5) + get_percentiles = spotpy.analyser.get_percentiles(self.results) + self.assertEqual(len(get_percentiles), 5) self.assertEqual(type(get_percentiles[0][0]), type(np.abs(-1.0))) - self.assertEqual(type(get_percentiles),type(())) + self.assertEqual(type(get_percentiles), type(())) def test__geweke(self): sample1 = [] @@ -158,7 +146,7 @@ def test_plot_Geweke(self): sample1 = [] for a in self.results: sample1.append(a[0]) - spotpy.analyser.plot_Geweke(sample1,"sample1") + spotpy.analyser.plot_Geweke(sample1, "sample1") plt.savefig(self.fig_name) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so @@ -166,69 +154,70 @@ def test_plot_Geweke(self): # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - def test_get_sensitivity_of_fast(self): - get_sensitivity_of_fast = spotpy.analyser.get_sensitivity_of_fast(self.sens_results) + get_sensitivity_of_fast = spotpy.analyser.get_sensitivity_of_fast( + self.sens_results + ) self.assertEqual(len(get_sensitivity_of_fast), 2) self.assertEqual(len(get_sensitivity_of_fast["S1"]), 3) self.assertEqual(len(get_sensitivity_of_fast["ST"]), 3) self.assertEqual(type(get_sensitivity_of_fast), type({})) def test_get_simulation_fields(self): - get_simulation_fields = spotpy.analyser.get_simulation_fields( - self.results) - self.assertEqual(['simulation_0'],get_simulation_fields) + get_simulation_fields = spotpy.analyser.get_simulation_fields(self.results) + self.assertEqual(["simulation_0"], get_simulation_fields) def test_compare_different_objectivefunctions(self): - - sampler = spotpy.algorithms.lhs(rosenbrock_setup(), - sim_timeout=self.timeout) + sampler = spotpy.algorithms.lhs(rosenbrock_setup(), sim_timeout=self.timeout) sampler.sample(self.rep) - compare_different_objectivefunctions = spotpy.analyser.compare_different_objectivefunctions( - sampler.getdata()['like1'], self.results['like1']) - + compare_different_objectivefunctions = ( + spotpy.analyser.compare_different_objectivefunctions( + sampler.getdata()["like1"], self.results["like1"] + ) + ) - self.assertEqual(type(compare_different_objectivefunctions[1]),type(np.array([0.5])[0])) + self.assertEqual( + type(compare_different_objectivefunctions[1]), type(np.array([0.5])[0]) + ) def test_plot_parameter_uncertainty(self): - posterior = spotpy.analyser.get_posterior(self.hymod_results,percentage=10) - #assertAlmostEqual tests on after comma accuracy, therefor we divide both by 100 - self.assertAlmostEqual(len(posterior)/100, self.rep*0.001, 1) + posterior = spotpy.analyser.get_posterior(self.hymod_results, percentage=10) + # assertAlmostEqual tests on after comma accuracy, therefor we divide both by 100 + self.assertAlmostEqual(len(posterior) / 100, self.rep * 0.001, 1) self.assertEqual(type(posterior), type(np.array([]))) - spotpy.analyser.plot_parameter_uncertainty(posterior, - hymod_setup().evaluation(), - fig_name=self.fig_name) + spotpy.analyser.plot_parameter_uncertainty( + posterior, hymod_setup().evaluation(), fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - def test_plot_fast_sensitivity(self): - spotpy.analyser.plot_fast_sensitivity(self.sens_results,fig_name=self.fig_name) + spotpy.analyser.plot_fast_sensitivity(self.sens_results, fig_name=self.fig_name) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_heatmap_griewank(self): - spotpy.analyser.plot_heatmap_griewank([self.griewank_results],["test"], - fig_name=self.fig_name) + spotpy.analyser.plot_heatmap_griewank( + [self.griewank_results], ["test"], fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - def test_plot_objectivefunction(self): - spotpy.analyser.plot_objectivefunction(self.results, - rosenbrock_setup().evaluation(), - fig_name=self.fig_name) + spotpy.analyser.plot_objectivefunction( + self.results, rosenbrock_setup().evaluation(), fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just @@ -236,10 +225,12 @@ def test_plot_objectivefunction(self): self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_parametertrace_algorithms(self): - spotpy.analyser.plot_parametertrace_algorithms([self.griewank_results], - ["test_plot_parametertrace_algorithms"], - spot_setup=griewank_setup(), - fig_name=self.fig_name) + spotpy.analyser.plot_parametertrace_algorithms( + [self.griewank_results], + ["test_plot_parametertrace_algorithms"], + spot_setup=griewank_setup(), + fig_name=self.fig_name, + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size @@ -247,7 +238,9 @@ def test_plot_parametertrace_algorithms(self): os.remove(self.fig_name) def test_plot_parametertrace(self): - spotpy.analyser.plot_parametertrace(self.griewank_results, ["0","1"], fig_name=self.fig_name) + spotpy.analyser.plot_parametertrace( + self.griewank_results, ["0", "1"], fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just @@ -255,17 +248,19 @@ def test_plot_parametertrace(self): self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_posterior_parametertrace(self): - spotpy.analyser.plot_posterior_parametertrace(self.griewank_results, ["0","1"], fig_name=self.fig_name) + spotpy.analyser.plot_posterior_parametertrace( + self.griewank_results, ["0", "1"], fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - def test_plot_posterior(self): - spotpy.analyser.plot_posterior(self.hymod_results - , hymod_setup().evaluation(),fig_name=self.fig_name) + spotpy.analyser.plot_posterior( + self.hymod_results, hymod_setup().evaluation(), fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just @@ -273,8 +268,9 @@ def test_plot_posterior(self): self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_bestmodelrun(self): - spotpy.analyser.plot_bestmodelrun(self.griewank_results, - griewank_setup().evaluation(), fig_name=self.fig_name) + spotpy.analyser.plot_bestmodelrun( + self.griewank_results, griewank_setup().evaluation(), fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just @@ -284,9 +280,12 @@ def test_plot_bestmodelrun(self): def test_plot_bestmodelruns(self): spotpy.analyser.plot_bestmodelruns( - [self.hymod_results[0:10],self.hymod_results[10:20]], hymod_setup().evaluation(), - dates=range(1, 1+len(hymod_setup().evaluation())), algorithms=["test", "test2"], - fig_name=self.fig_name) + [self.hymod_results[0:10], self.hymod_results[10:20]], + hymod_setup().evaluation(), + dates=range(1, 1 + len(hymod_setup().evaluation())), + algorithms=["test", "test2"], + fig_name=self.fig_name, + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just @@ -294,9 +293,12 @@ def test_plot_bestmodelruns(self): self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) def test_plot_objectivefunctiontraces(self): - spotpy.analyser.plot_objectivefunctiontraces([self.results], - [rosenbrock_setup().evaluation()], - ["test"],fig_name=self.fig_name) + spotpy.analyser.plot_objectivefunctiontraces( + [self.results], + [rosenbrock_setup().evaluation()], + ["test"], + fig_name=self.fig_name, + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just @@ -304,8 +306,9 @@ def test_plot_objectivefunctiontraces(self): self.assertGreaterEqual(os.path.getsize(self.fig_name), 6820) def test_plot_regression(self): - spotpy.analyser.plot_regression(self.results, rosenbrock_setup().evaluation(), - fig_name=self.fig_name) + spotpy.analyser.plot_regression( + self.results, rosenbrock_setup().evaluation(), fig_name=self.fig_name + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just @@ -314,15 +317,13 @@ def test_plot_regression(self): def test_plot_parameterInteraction(self): # Test only untder Python 3.6 as lower versions results in a strange ValueError - spotpy.analyser.plot_parameterInteraction(self.results, - fig_name = self.fig_name) + spotpy.analyser.plot_parameterInteraction(self.results, fig_name=self.fig_name) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - def test_plot_allmodelruns(self): modelruns = [] for run in self.hymod_results: @@ -331,25 +332,28 @@ def test_plot_allmodelruns(self): on_run.append(i) on_run = np.array(on_run)[:-7] modelruns.append(on_run.tolist()) - spotpy.analyser.plot_allmodelruns(modelruns, hymod_setup().evaluation(), - dates=range(1, len(hymod_setup().evaluation()) + 1), - fig_name=self.fig_name) + spotpy.analyser.plot_allmodelruns( + modelruns, + hymod_setup().evaluation(), + dates=range(1, len(hymod_setup().evaluation()) + 1), + fig_name=self.fig_name, + ) # approximately 8855 KB is the size of an empty matplotlib.pyplot.plot, so # we expecting a plot with some content without testing the structure of the plot, just # the size self.assertGreaterEqual(os.path.getsize(self.fig_name), 6855) - def test_plot_gelman_rubin(self): - spotpy.analyser.plot_gelman_rubin(self.hymod_results, self.r_hat, fig_name =self.fig_name) + spotpy.analyser.plot_gelman_rubin( + self.hymod_results, self.r_hat, fig_name=self.fig_name + ) self.assertGreaterEqual(abs(os.path.getsize(self.fig_name)), 100) - @classmethod def tearDownClass(self): - os.remove('test_output.png') + os.remove("test_output.png") -if __name__ == '__main__': +if __name__ == "__main__": unittest.main(exit=False) diff --git a/tests/test_cli.py b/tests/test_cli.py index e4d0df0a..70584c70 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft -''' +""" import io import os @@ -20,7 +20,7 @@ class TestCLI(unittest.TestCase): def test_cli_config(self): runner = CliRunner() - result = runner.invoke(cli, ['run', '--config']) + result = runner.invoke(cli, ["run", "--config"]) if result.exception: raise result.exception self.assertEqual(result.exit_code, 0) @@ -28,32 +28,44 @@ def test_cli_config(self): def test_cli_run(self): setup = spot_setup() runner = CliRunner() - result = runner.invoke(run, ['-n 10', '-s', 'lhs', '-p', 'seq'], obj=setup) + result = runner.invoke(run, ["-n 10", "-s", "lhs", "-p", "seq"], obj=setup) self.assertEqual(result.exit_code, 0) def test_config_file(self): - config = dict(n='10', sampler='mc', parallel='seq') + config = dict(n="10", sampler="mc", parallel="seq") # 1. Create config file - with io.open('spotpy.conf', 'w', encoding='utf-8') as f: - f.write('# A comment to be ignored\n') - f.write('Some nonsense to fail\n') + with io.open("spotpy.conf", "w", encoding="utf-8") as f: + f.write("# A comment to be ignored\n") + f.write("Some nonsense to fail\n") for k, v in config.items(): - f.write('{} = {}\n'.format(k, v)) + f.write("{} = {}\n".format(k, v)) try: # 2. Read config file config_from_file = get_config_from_file() - self.assertDictEqual(config, config_from_file, 'Configuration from file is not the same as before') + self.assertDictEqual( + config, + config_from_file, + "Configuration from file is not the same as before", + ) finally: - os.unlink('spotpy.conf') + os.unlink("spotpy.conf") def test_sampler_from_string(self): - sampler_names = "abc|demcz|dream|fast|fscabc|lhs|mc|mcmc|mle|rope|sa|sceua".split('|') - samplers = [get_sampler_from_string(sampler_name) for sampler_name in sampler_names] - wrong_samplers = [n for n, c in zip(sampler_names, samplers) if not issubclass(c, _algorithm)] - self.assertFalse(wrong_samplers, 'Samplers not found from name: ' + ', '.join(wrong_samplers)) + sampler_names = ( + "abc|demcz|dream|fast|fscabc|lhs|mc|mcmc|mle|rope|sa|sceua".split("|") + ) + samplers = [ + get_sampler_from_string(sampler_name) for sampler_name in sampler_names + ] + wrong_samplers = [ + n for n, c in zip(sampler_names, samplers) if not issubclass(c, _algorithm) + ] + self.assertFalse( + wrong_samplers, "Samplers not found from name: " + ", ".join(wrong_samplers) + ) -if __name__ == '__main__': - unittest.main() \ No newline at end of file +if __name__ == "__main__": + unittest.main() diff --git a/tests/test_database.py b/tests/test_database.py index cfbff1f8..d12ae1a5 100644 --- a/tests/test_database.py +++ b/tests/test_database.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import glob import os import unittest @@ -12,12 +12,14 @@ import spotpy.database as db -#https://docs.python.org/3/library/unittest.html +# https://docs.python.org/3/library/unittest.html + class MockSetup: """ Mock class to use the save function of a spotpy setup """ + def save(self, *args, **kwargs): pass @@ -25,9 +27,15 @@ def save(self, *args, **kwargs): class TestDatabase(unittest.TestCase): @classmethod def setUpClass(self): - self.parnames = ['x1', 'x2', 'x3', 'x4', 'x5'] + self.parnames = ["x1", "x2", "x3", "x4", "x5"] self.like = 0.213 - self.randompar = [175.21733934706367, 0.41669126598819262, 0.25265012080652388, 0.049706767415682945, 0.69674090782836173] + self.randompar = [ + 175.21733934706367, + 0.41669126598819262, + 0.25265012080652388, + 0.049706767415682945, + 0.69674090782836173, + ] self.simulations_multi = [] for i in range(5): @@ -44,7 +52,16 @@ def objf(self): return np.random.uniform(0, 1, 1)[0] def test_csv_multiline(self): - csv = db.get_datawriter('csv', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=True) + csv = db.get_datawriter( + "csv", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=True, + ) csv.save(self.like, self.randompar, self.simulations_multi) csv.save(self.like, self.randompar, self.simulations_multi) @@ -57,10 +74,18 @@ def test_csv_multiline(self): self.assertEqual(len(csvdata), 2) self.assertEqual(len(csv.header), 32) - def test_csv_multiline_false(self): # Save not Simulations - csv = db.get_datawriter('csv', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=False) + csv = db.get_datawriter( + "csv", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=False, + ) csv.save(self.like, self.randompar, self.simulations_multi) csv.save(self.like, self.randompar, self.simulations_multi) @@ -73,8 +98,16 @@ def test_csv_multiline_false(self): self.assertEqual(len(csv.header), 7) def test_csv_single(self): - csv = db.get_datawriter('csv', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=True) + csv = db.get_datawriter( + "csv", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, + ) csv.save(self.like, self.randompar, self.simulations) csv.save(self.like, self.randompar, self.simulations) @@ -88,9 +121,14 @@ def test_csv_single(self): def test_csv_append(self): csv = db.get_datawriter( - 'csv', "UnitTest_tmp", - self.parnames, self.like, self.randompar, - simulations=self.simulations, chains=1, save_sim=True, + "csv", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, ) csv.save(self.like, self.randompar, self.simulations) @@ -98,10 +136,15 @@ def test_csv_append(self): csv.finalize() csv_new = db.get_datawriter( - 'csv', "UnitTest_tmp", - self.parnames, self.like, self.randompar, - simulations=self.simulations, chains=1, save_sim=True, - dbappend=True + "csv", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, + dbappend=True, ) csv_new.save(self.like, self.randompar, self.simulations) @@ -112,8 +155,16 @@ def test_csv_append(self): self.assertEqual(len(csvdata), 4) def test_csv_single_false(self): - csv = db.get_datawriter('csv', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=False) + csv = db.get_datawriter( + "csv", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=False, + ) csv.save(self.like, self.randompar, self.simulations) csv.save(self.like, self.randompar, self.simulations) @@ -126,7 +177,16 @@ def test_csv_single_false(self): self.assertEqual(len(csv.header), 7) def test_hdf5_multiline(self): - hdf5 = db.get_datawriter('hdf5', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=True) + hdf5 = db.get_datawriter( + "hdf5", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=True, + ) hdf5.save(self.like, self.randompar, self.simulations_multi) hdf5.save(self.like, self.randompar, self.simulations_multi) @@ -139,10 +199,18 @@ def test_hdf5_multiline(self): self.assertEqual(len(hdf5data), 2) self.assertEqual(len(hdf5.header), 32) - def test_hdf5_multiline_false(self): # Save not Simulations - hdf5 = db.get_datawriter('hdf5', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=False) + hdf5 = db.get_datawriter( + "hdf5", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=False, + ) hdf5.save(self.like, self.randompar, self.simulations_multi) hdf5.save(self.like, self.randompar, self.simulations_multi) @@ -155,8 +223,16 @@ def test_hdf5_multiline_false(self): self.assertEqual(len(hdf5.header), 7) def test_hdf5_single(self): - hdf5 = db.get_datawriter('hdf5', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=True) + hdf5 = db.get_datawriter( + "hdf5", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, + ) hdf5.save(self.like, self.randompar, self.simulations) hdf5.save(self.like, self.randompar, self.simulations) @@ -170,9 +246,14 @@ def test_hdf5_single(self): def test_hdf5_append(self): hdf5 = db.get_datawriter( - 'hdf5', "UnitTest_tmp", - self.parnames, self.like, self.randompar, - simulations=self.simulations, chains=1, save_sim=True, + "hdf5", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, ) hdf5.save(self.like, self.randompar, self.simulations) @@ -180,10 +261,15 @@ def test_hdf5_append(self): hdf5.finalize() hdf5_new = db.get_datawriter( - 'hdf5', "UnitTest_tmp", - self.parnames, self.like, self.randompar, - simulations=self.simulations, chains=1, save_sim=True, - dbappend=True + "hdf5", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, + dbappend=True, ) hdf5_new.save(self.like, self.randompar, self.simulations) @@ -193,10 +279,17 @@ def test_hdf5_append(self): hdf5data = hdf5_new.getdata() self.assertEqual(len(hdf5data), 4) - def test_hdf5_single_false(self): - hdf5 = db.get_datawriter('hdf5', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=False) + hdf5 = db.get_datawriter( + "hdf5", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=False, + ) hdf5.save(self.like, self.randompar, self.simulations) hdf5.save(self.like, self.randompar, self.simulations) @@ -208,9 +301,17 @@ def test_hdf5_single_false(self): self.assertEqual(len(hdf5data), 2) self.assertEqual(len(hdf5.header), 7) - def test_sql_multiline(self): - sql = db.get_datawriter('sql', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=True) + sql = db.get_datawriter( + "sql", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=True, + ) sql.save(self.like, self.randompar, self.simulations_multi) sql.finalize() sqldata = sql.getdata() @@ -219,9 +320,17 @@ def test_sql_multiline(self): self.assertEqual(len(sqldata), 1) self.assertEqual(len(sql.header), 32) - def test_sql_multiline_false(self): - sql = db.get_datawriter('sql', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=False) + sql = db.get_datawriter( + "sql", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=False, + ) sql.save(self.like, self.randompar, self.simulations_multi) sql.finalize() sqldata = sql.getdata() @@ -231,8 +340,16 @@ def test_sql_multiline_false(self): self.assertEqual(len(sql.header), 7) def test_sql_single(self): - sql = db.get_datawriter('sql', "UnitTest_tmp", self.parnames, self.like, self.randompar, - simulations=self.simulations, chains=1, save_sim=True) + sql = db.get_datawriter( + "sql", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, + ) sql.save(self.like, self.randompar, self.simulations) sql.finalize() sqldata = sql.getdata() @@ -242,8 +359,16 @@ def test_sql_single(self): self.assertEqual(len(sql.header), 12) def test_sql_single_false(self): - sql = db.get_datawriter('sql', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=False) + sql = db.get_datawriter( + "sql", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=False, + ) sql.save(self.like, self.randompar, self.simulations) sql.finalize() @@ -254,7 +379,16 @@ def test_sql_single_false(self): self.assertEqual(len(sql.header), 7) def test_ram_multiline(self): - ram = db.get_datawriter('ram', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=True) + ram = db.get_datawriter( + "ram", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=True, + ) ram.save(self.like, self.randompar, self.simulations_multi) ram.finalize() @@ -266,7 +400,16 @@ def test_ram_multiline(self): self.assertEqual(len(ramdata.dtype), len(ram.header)) def test_ram_multiline_false(self): - ram = db.get_datawriter('ram', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations_multi, chains=1, save_sim=False) + ram = db.get_datawriter( + "ram", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations_multi, + chains=1, + save_sim=False, + ) ram.save(self.like, self.randompar, self.simulations_multi) ram.finalize() @@ -278,8 +421,16 @@ def test_ram_multiline_false(self): self.assertEqual(len(ram.header), 7) def test_ram_single(self): - ram = db.get_datawriter('ram', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=True) + ram = db.get_datawriter( + "ram", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, + ) ram.save(self.like, self.randompar, self.simulations) ram.finalize() @@ -291,8 +442,16 @@ def test_ram_single(self): self.assertEqual(len(ram.header), 12) def test_ram_single_false(self): - ram = db.get_datawriter('ram', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=False) + ram = db.get_datawriter( + "ram", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=False, + ) ram.save(self.like, self.randompar, self.simulations) ram.finalize() @@ -305,14 +464,27 @@ def test_ram_single_false(self): def test_not_existing_dbformat(self): with self.assertRaises(AttributeError): - _ = db.get_datawriter('xxx', "UnitTest_tmp", self.parnames, self.like, self.randompar, simulations=self.simulations, - chains=1, save_sim=True) + _ = db.get_datawriter( + "xxx", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, + ) def test_noData(self): nodata = db.get_datawriter( - 'noData', "UnitTest_tmp", - self.parnames, np.array(self.like), self.randompar, - simulations=self.simulations, chains=1, save_sim=True + "noData", + "UnitTest_tmp", + self.parnames, + np.array(self.like), + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, ) nodata.save(self.like, self.randompar, self.simulations) nodata.finalize() @@ -320,32 +492,47 @@ def test_noData(self): def test_custom(self): custom = db.get_datawriter( - 'custom', "UnitTest_tmp", - self.parnames, self.like, self.randompar, + "custom", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, setup=MockSetup(), - simulations=self.simulations, chains=1, save_sim=True + simulations=self.simulations, + chains=1, + save_sim=True, ) custom.save(self.like, self.randompar, self.simulations) custom.finalize() - self.assertEqual(custom.getdata(),None) + self.assertEqual(custom.getdata(), None) def test_custom_no_setup(self): with self.assertRaises(ValueError): _ = db.get_datawriter( - 'custom', "UnitTest_tmp", - self.parnames, self.like, self.randompar, - simulations=self.simulations, chains=1, save_sim=True + "custom", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, + simulations=self.simulations, + chains=1, + save_sim=True, ) def test_custom_wrong_setup(self): with self.assertRaises(AttributeError): _ = db.get_datawriter( - 'custom', "UnitTest_tmp", - self.parnames, self.like, self.randompar, + "custom", + "UnitTest_tmp", + self.parnames, + self.like, + self.randompar, setup=[], - simulations=self.simulations, chains=1, save_sim=True + simulations=self.simulations, + chains=1, + save_sim=True, ) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/tests/test_dds.py b/tests/test_dds.py index 095d44fa..1f786fb9 100644 --- a/tests/test_dds.py +++ b/tests/test_dds.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Benjamin Manns -''' +""" import json import os @@ -20,18 +20,22 @@ class FixedRandomizerEndOfDataException(Exception): pass -class FixedRandomizer(): +class FixedRandomizer: def __init__(self): self.debug = False self.uniform_counter = 0 self.normal_counter = 0 - self.uniform_list=list(np.loadtxt(os.path.dirname(__file__)+"/dds_tests/uniform_list.txt")) + self.uniform_list = list( + np.loadtxt(os.path.dirname(__file__) + "/dds_tests/uniform_list.txt") + ) - self.uniform_list*=3 + self.uniform_list *= 3 self.max_normal_counter = 10000 self.max_uniform_counter = 30000 - self.normal_list = list(np.loadtxt(os.path.dirname(__file__)+"/dds_tests/normal_list.txt")) + self.normal_list = list( + np.loadtxt(os.path.dirname(__file__) + "/dds_tests/normal_list.txt") + ) def rand(self, dim_x=1, dim_y=1): x = dim_x * [0] @@ -40,20 +44,22 @@ def rand(self, dim_x=1, dim_y=1): x[i] = self.uniform_list[self.uniform_counter] self.uniform_counter = self.uniform_counter + 1 if self.debug: - print("fixrand::rand() counter = "+str(self.uniform_counter)) + print("fixrand::rand() counter = " + str(self.uniform_counter)) else: - raise FixedRandomizerEndOfDataException("No more data left. Counter is: "+str(self.uniform_counter)) + raise FixedRandomizerEndOfDataException( + "No more data left. Counter is: " + str(self.uniform_counter) + ) if len(x) == 1: return x[0] else: return x - def randint(self,x_from,x_to): - vals = [j for j in range(x_from,x_to)] + def randint(self, x_from, x_to): + vals = [j for j in range(x_from, x_to)] vals_size = len(vals) if vals_size == 0: raise ValueError("x_to >= x_from") - fraq = 1. / vals_size + fraq = 1.0 / vals_size if self.uniform_counter < self.max_uniform_counter: q_uni = self.uniform_list[self.uniform_counter] pos = int(np.floor(q_uni / fraq)) @@ -64,11 +70,11 @@ def randint(self,x_from,x_to): else: raise FixedRandomizerEndOfDataException("No more data left.") - def normal(self,loc,scale,size=1): + def normal(self, loc, scale, size=1): x = [] for j in range(size): if self.normal_counter < self.max_normal_counter: - x.append(self.normal_list[self.normal_counter]*scale + loc) + x.append(self.normal_list[self.normal_counter] * scale + loc) self.normal_counter += 1 if self.debug: print("fixrand::normal() counter = " + str(self.normal_counter)) @@ -89,7 +95,9 @@ def setUp(self): self.f_random = FixedRandomizer() def json_helper(self, run): - with open(os.path.dirname(__file__) + "/dds_tests/run_" + str(run) + ".json") as f: + with open( + os.path.dirname(__file__) + "/dds_tests/run_" + str(run) + ".json" + ) as f: data = json.load(f) return data @@ -130,36 +138,57 @@ def outside_bound(self, x_curr, min_bound, max_bound): def test_bounds(self): self.spot_setup._objfunc_switcher("cmf_style") - sampler = spotpy.algorithms.dds(self.spot_setup, parallel="seq", dbname='test_DDS', dbformat="csv", - sim_timeout=self.timeout) + sampler = spotpy.algorithms.dds( + self.spot_setup, + parallel="seq", + dbname="test_DDS", + dbformat="csv", + sim_timeout=self.timeout, + ) sampler._set_np_random(self.f_random) - results = sampler.sample(1000,1) - print("results",results[0]['sbest']) + results = sampler.sample(1000, 1) + print("results", results[0]["sbest"]) print(sampler.min_bound, sampler.max_bound) - self.outside_bound(results[0]['sbest'], sampler.min_bound, sampler.max_bound) + self.outside_bound(results[0]["sbest"], sampler.min_bound, sampler.max_bound) def run_a_dds(self, run): original_result = self.json_helper(run) - self.spot_setup._objfunc_switcher(original_result['objfunc']) + self.spot_setup._objfunc_switcher(original_result["objfunc"]) - sampler = spotpy.algorithms.dds(self.spot_setup, parallel="seq", dbname='test_DDS', dbformat="csv", - sim_timeout=self.timeout,r=original_result["r_val"]) + sampler = spotpy.algorithms.dds( + self.spot_setup, + parallel="seq", + dbname="test_DDS", + dbformat="csv", + sim_timeout=self.timeout, + r=original_result["r_val"], + ) sampler._set_np_random(self.f_random) if original_result.get("s_initial") is not None: # if a parameter initialisation is given, test this: - results = sampler.sample(original_result["evatrials"], - original_result["trial_runs"], x_initial=original_result["s_initial"]) + results = sampler.sample( + original_result["evatrials"], + original_result["trial_runs"], + x_initial=original_result["s_initial"], + ) else: - results = sampler.sample(original_result["evatrials"], - original_result["trial_runs"]) + results = sampler.sample( + original_result["evatrials"], original_result["trial_runs"] + ) for t in range(original_result["trial_runs"]): - print(results[t]["objfunc_val"], -1*original_result["results"][t]["objfunc_val"]) - self.assertAlmostEqual(results[t]["objfunc_val"], -1*original_result["results"][t]["objfunc_val"], - delta=0.000001) + print( + results[t]["objfunc_val"], + -1 * original_result["results"][t]["objfunc_val"], + ) + self.assertAlmostEqual( + results[t]["objfunc_val"], + -1 * original_result["results"][t]["objfunc_val"], + delta=0.000001, + ) py_sbest = results[t]["sbest"] matlb_sbest = original_result["results"][t]["sbest"] for k in range(len(py_sbest)): @@ -170,26 +199,52 @@ def run_a_dds(self, run): matlb_trial_initial = original_result["results"][t]["trial_initial"] for k in range(len(py_sbest)): print(t, k, py_trial_initial[k], matlb_trial_initial[k]) - self.assertAlmostEqual(py_trial_initial[k], matlb_trial_initial[k], delta=0.0001) + self.assertAlmostEqual( + py_trial_initial[k], matlb_trial_initial[k], delta=0.0001 + ) def test_own_initial_out_of_borders_ackley_1(self): self.spot_setup._objfunc_switcher("ackley") - sampler = spotpy.algorithms.dds(self.spot_setup, parallel="seq", dbname='test_DDS', dbformat="csv", - sim_timeout=self.timeout) - self.assertRaises(ValueError,sampler.sample,1000, x_initial=np.random.uniform(-2, 2, 9) + [3]) + sampler = spotpy.algorithms.dds( + self.spot_setup, + parallel="seq", + dbname="test_DDS", + dbformat="csv", + sim_timeout=self.timeout, + ) + self.assertRaises( + ValueError, + sampler.sample, + 1000, + x_initial=np.random.uniform(-2, 2, 9) + [3], + ) def test_own_initial_too_lees(self): self.spot_setup._objfunc_switcher("ackley") - sampler = spotpy.algorithms.dds(self.spot_setup, parallel="seq", dbname='test_DDS', dbformat="csv", - sim_timeout=self.timeout) - self.assertRaises(ValueError, sampler.sample, 1000, x_initial=np.random.uniform(-2, 2, 9)) + sampler = spotpy.algorithms.dds( + self.spot_setup, + parallel="seq", + dbname="test_DDS", + dbformat="csv", + sim_timeout=self.timeout, + ) + self.assertRaises( + ValueError, sampler.sample, 1000, x_initial=np.random.uniform(-2, 2, 9) + ) def test_own_initial_too_much(self): self.spot_setup._objfunc_switcher("ackley") - sampler = spotpy.algorithms.dds(self.spot_setup, parallel="seq", dbname='test_DDS', dbformat="csv", - sim_timeout=self.timeout) - self.assertRaises(ValueError, sampler.sample, 1000, x_initial=np.random.uniform(-2, 2, 11)) - - -if __name__ == '__main__': + sampler = spotpy.algorithms.dds( + self.spot_setup, + parallel="seq", + dbname="test_DDS", + dbformat="csv", + sim_timeout=self.timeout, + ) + self.assertRaises( + ValueError, sampler.sample, 1000, x_initial=np.random.uniform(-2, 2, 11) + ) + + +if __name__ == "__main__": unittest.main() diff --git a/tests/test_describe.py b/tests/test_describe.py index 7cca577f..ab441985 100644 --- a/tests/test_describe.py +++ b/tests/test_describe.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft -''' +""" import inspect import unittest from io import StringIO @@ -16,8 +16,9 @@ class SpotSetup(object): """ Just a fun setup using non ASCIÎ letters to challenge describe in Python 2 """ - a = Uniform(-1, 1, doc='α parameter') - beta = Uniform(-1, 1, doc='β parameter') + + a = Uniform(-1, 1, doc="α parameter") + beta = Uniform(-1, 1, doc="β parameter") @staticmethod def simulation(par): @@ -33,12 +34,11 @@ def objectivefunction(simulation, evaluation): class TestDescribe(unittest.TestCase): - def test_setup(self): t = spotpy.describe.setup(SpotSetup()) io = StringIO() io.write(t) - self.assertGreaterEqual(io.getvalue().count('\n'), 6) + self.assertGreaterEqual(io.getvalue().count("\n"), 6) def sampler_test(self, sampler=None): if not sampler: @@ -46,49 +46,60 @@ def sampler_test(self, sampler=None): t = spotpy.describe.describe(sampler) io = StringIO() io.write(t) - line_count = io.getvalue().count('\n') - self.assertGreaterEqual(line_count, 14, '<{}> description to short ({} lines, but >14 expected)' - .format(sampler, line_count)) + line_count = io.getvalue().count("\n") + self.assertGreaterEqual( + line_count, + 14, + "<{}> description to short ({} lines, but >14 expected)".format( + sampler, line_count + ), + ) def test_mc_sampler(self): - sampler = spotpy.algorithms.mc(spot_setup=SpotSetup(), dbformat='ram', dbname='äöü') + sampler = spotpy.algorithms.mc( + spot_setup=SpotSetup(), dbformat="ram", dbname="äöü" + ) self.sampler_test(sampler) def test_rope_sampler(self): - sampler = spotpy.algorithms.rope(spot_setup=SpotSetup(), dbformat='ram', dbname='äöü') + sampler = spotpy.algorithms.rope( + spot_setup=SpotSetup(), dbformat="ram", dbname="äöü" + ) self.sampler_test(sampler) - def test_all_algorithms(self): for sname, scls in inspect.getmembers(spotpy.algorithms, inspect.isclass): - if not sname.startswith('_'): + if not sname.startswith("_"): model = SpotSetup() - sampler = scls(spot_setup=model, dbformat='ram', dbname='äöü') + sampler = scls(spot_setup=model, dbformat="ram", dbname="äöü") self.sampler_test(sampler) class TestDescribeRst(unittest.TestCase): - def test_setup_rst(self): setup = SpotSetup() rst = spotpy.describe.rst(setup) def test_sampler_rst(self): for sname, scls in inspect.getmembers(spotpy.algorithms, inspect.isclass): - if not sname.startswith('_'): + if not sname.startswith("_"): model = SpotSetup() - sampler = scls(spot_setup=model, dbformat='ram', dbname='äöü') + sampler = scls(spot_setup=model, dbformat="ram", dbname="äöü") rst = spotpy.describe.rst(sampler) - rst.append('This is a test for ``rst.append().``\n' * 10, 'Appending', 1) - rst.append_math(r'c = \sqrt{a^2 + b^2}') - rst.append(title='Image', titlelevel=2) - rst.append_image('https://img.shields.io/travis/thouska/spotpy/master.svg', - target='https://travis-ci.org/thouska/spotpy', - width='200px') + rst.append( + "This is a test for ``rst.append().``\n" * 10, "Appending", 1 + ) + rst.append_math(r"c = \sqrt{a^2 + b^2}") + rst.append(title="Image", titlelevel=2) + rst.append_image( + "https://img.shields.io/travis/thouska/spotpy/master.svg", + target="https://travis-ci.org/thouska/spotpy", + width="200px", + ) rst.as_html() -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/tests/test_fast.py b/tests/test_fast.py index d330ac3e..f76069d2 100644 --- a/tests/test_fast.py +++ b/tests/test_fast.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import unittest @@ -15,16 +15,22 @@ class TestFast(unittest.TestCase): def setUp(self): self.spot_setup = spot_setup() - self.rep = 200 # REP must be a multiply of amount of parameters which are in 7 if using hymod + self.rep = 200 # REP must be a multiply of amount of parameters which are in 7 if using hymod self.timeout = 10 # Given in Seconds def test_fast(self): - sampler = spotpy.algorithms.fast(self.spot_setup, parallel="seq", dbname='test_FAST', dbformat="ram", - sim_timeout=self.timeout) + sampler = spotpy.algorithms.fast( + self.spot_setup, + parallel="seq", + dbname="test_FAST", + dbformat="ram", + sim_timeout=self.timeout, + ) results = [] sampler.sample(self.rep) results = sampler.getdata() - self.assertEqual(200,len(results)) + self.assertEqual(200, len(results)) -if __name__ == '__main__': + +if __name__ == "__main__": unittest.main() diff --git a/tests/test_gui_mpl.py b/tests/test_gui_mpl.py index 9f83dbe4..be81fc6e 100644 --- a/tests/test_gui_mpl.py +++ b/tests/test_gui_mpl.py @@ -1,15 +1,15 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft -''' +""" import unittest import matplotlib -matplotlib.use('Agg') +matplotlib.use("Agg") import inspect import sys @@ -42,12 +42,14 @@ def get_derived(cls): Returns a list of all derived classes in this module """ module = sys.modules[__name__] + def predicate(mcls): return inspect.isclass(mcls) and issubclass(mcls, cls) and mcls is not cls + return [mcls for cname, mcls in inspect.getmembers(module, predicate)] def __repr__(self): - return '{}()'.format(type(self).__name__) + return "{}()".format(type(self).__name__) class SpotSetupMixedParameterFunction(SpotSetupBase): @@ -55,18 +57,19 @@ class SpotSetupMixedParameterFunction(SpotSetupBase): A Test case with two parameters as class parameters (a,b) and 2 given from the parameter function """ + a = parameter.Uniform(0, 1) b = parameter.Uniform(1, 2) + def parameters(self): - return parameter.generate([parameter.Uniform(name, -1, 1) for name in 'cd']) + return parameter.generate([parameter.Uniform(name, -1, 1) for name in "cd"]) class TestGuiMpl(unittest.TestCase): - def test_setup(self): setup = SpotSetupMixedParameterFunction() with GUI(setup) as gui: - self.assertTrue(hasattr(gui, 'setup')) + self.assertTrue(hasattr(gui, "setup")) def test_sliders(self): setup = SpotSetupMixedParameterFunction() @@ -87,5 +90,5 @@ def test_run(self): self.assertEqual(len(gui.lines), 2) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/tests/test_likelihood.py b/tests/test_likelihood.py index c571bc92..5edd38ad 100644 --- a/tests/test_likelihood.py +++ b/tests/test_likelihood.py @@ -22,44 +22,60 @@ class TestLikelihood(unittest.TestCase): def setUp(self): np.random.seed(12) - self.normal_data, self.normal_comparedata = np.random.normal(1500, 2530, 20), np.random.normal(15, 25, 20) - self.binom_data, self.binom_comparedata = np.random.binomial(20, 0.1, 20), np.random.binomial(20, 0.1, 20) + self.normal_data, self.normal_comparedata = np.random.normal( + 1500, 2530, 20 + ), np.random.normal(15, 25, 20) + self.binom_data, self.binom_comparedata = np.random.binomial( + 20, 0.1, 20 + ), np.random.binomial(20, 0.1, 20) self.do_print = True def test_logLikelihood(self): - l_normal = spotpy.likelihoods.logLikelihood(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.logLikelihood( + self.normal_data, self.normal_comparedata + ) self.assertGreaterEqual(np.abs(l_normal), 900) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("logLikelihood: " + str(l_normal)) - l_binom = spotpy.likelihoods.logLikelihood(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.logLikelihood( + self.binom_data, self.binom_comparedata + ) self.assertGreaterEqual(np.abs(l_binom), 900) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("logLikelihood: " + str(l_binom)) def test_gaussianLikelihoodMeasErrorOut(self): - l_normal = spotpy.likelihoods.gaussianLikelihoodMeasErrorOut(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.gaussianLikelihoodMeasErrorOut( + self.normal_data, self.normal_comparedata + ) self.assertGreaterEqual(-40, l_normal) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("gaussianLikelihoodMeasErrorOut: " + str(l_normal)) - l_binom = spotpy.likelihoods.gaussianLikelihoodMeasErrorOut(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.gaussianLikelihoodMeasErrorOut( + self.binom_data, self.binom_comparedata + ) self.assertGreaterEqual(-40, l_binom) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("gaussianLikelihoodMeasErrorOut: " + str(l_binom)) def test_gaussianLikelihoodHomoHeteroDataError(self): - l_normal = spotpy.likelihoods.gaussianLikelihoodHomoHeteroDataError(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.gaussianLikelihoodHomoHeteroDataError( + self.normal_data, self.normal_comparedata + ) self.assertGreaterEqual(5, np.abs(l_normal)) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("gaussianLikelihoodHomoHeteroDataError: " + str(l_normal)) - l_binom = spotpy.likelihoods.gaussianLikelihoodHomoHeteroDataError(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.gaussianLikelihoodHomoHeteroDataError( + self.binom_data, self.binom_comparedata + ) self.assertGreaterEqual(10, np.abs(l_binom)) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: @@ -68,19 +84,34 @@ def test_gaussianLikelihoodHomoHeteroDataError(self): def test_LikelihoodAR1NoC(self): l_list = [] - l_list.append(spotpy.likelihoods.LikelihoodAR1NoC(self.normal_data, self.normal_comparedata, - params=([0.98], ["likelihood_phi"]))) + l_list.append( + spotpy.likelihoods.LikelihoodAR1NoC( + self.normal_data, + self.normal_comparedata, + params=([0.98], ["likelihood_phi"]), + ) + ) try: - l_list.append(spotpy.likelihoods.LikelihoodAR1NoC(self.normal_data, self.normal_comparedata, - params=([], []))) + l_list.append( + spotpy.likelihoods.LikelihoodAR1NoC( + self.normal_data, self.normal_comparedata, params=([], []) + ) + ) except LikelihoodError as e: print("LikelihoodError occurred: " + str(e)) - l_list.append(spotpy.likelihoods.LikelihoodAR1NoC(self.normal_data, self.normal_comparedata, - params=([1.1], ["likelihood_phi"]))) + l_list.append( + spotpy.likelihoods.LikelihoodAR1NoC( + self.normal_data, + self.normal_comparedata, + params=([1.1], ["likelihood_phi"]), + ) + ) - l_list.append(spotpy.likelihoods.LikelihoodAR1NoC(self.binom_data, self.binom_data)) + l_list.append( + spotpy.likelihoods.LikelihoodAR1NoC(self.binom_data, self.binom_data) + ) for l in l_list: self.assertNotEqual(None, l) @@ -90,17 +121,34 @@ def test_LikelihoodAR1NoC(self): def test_LikelihoodAR1WithC(self): l_normal_list = [] try: - l_normal_list.append(spotpy.likelihoods.LikelihoodAR1WithC(self.normal_data, self.normal_comparedata, - params=([], []))) + l_normal_list.append( + spotpy.likelihoods.LikelihoodAR1WithC( + self.normal_data, self.normal_comparedata, params=([], []) + ) + ) except LikelihoodError as e: print("Likelihood Error occurred " + str(e)) - l_normal_list.append(spotpy.likelihoods.LikelihoodAR1WithC(self.normal_data, self.normal_comparedata, - params=([0.98], ["likelihood_phi"]))) - l_normal_list.append(spotpy.likelihoods.LikelihoodAR1WithC(self.normal_data, self.normal_comparedata, - params=([1.1], ["likelihood_phi"]))) + l_normal_list.append( + spotpy.likelihoods.LikelihoodAR1WithC( + self.normal_data, + self.normal_comparedata, + params=([0.98], ["likelihood_phi"]), + ) + ) + l_normal_list.append( + spotpy.likelihoods.LikelihoodAR1WithC( + self.normal_data, + self.normal_comparedata, + params=([1.1], ["likelihood_phi"]), + ) + ) - l_normal_list.append(spotpy.likelihoods.LikelihoodAR1WithC(self.binom_data, self.binom_comparedata)) + l_normal_list.append( + spotpy.likelihoods.LikelihoodAR1WithC( + self.binom_data, self.binom_comparedata + ) + ) for l_normal in l_normal_list: self.assertNotEqual(None, l_normal) @@ -109,35 +157,84 @@ def test_LikelihoodAR1WithC(self): def test_generalizedLikelihoodFunction(self): size = 1000 - data, comparedata = np.random.normal(1500, 2530, size), np.random.normal(355, 25, size) - - param_list = ["likelihood_beta", "likelihood_xi", "likelihood_sigma0", "likelihood_sigma1", "likelihood_phi1", - "likelihood_muh"] + data, comparedata = np.random.normal(1500, 2530, size), np.random.normal( + 355, 25, size + ) + + param_list = [ + "likelihood_beta", + "likelihood_xi", + "likelihood_sigma0", + "likelihood_sigma1", + "likelihood_phi1", + "likelihood_muh", + ] l_normal_list = [] - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([-0.09, 1, 0.5, 0.567, 0.98, 57.32], param_list))) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=([-0.09, 1, 0.5, 0.567, 0.98, 57.32], param_list), + ) + ) try: - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([], []))) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, comparedata, params=([], []) + ) + ) except LikelihoodError as e: print("Likelihood Error occurred " + str(e)) - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([2, 1, 0.5, 0.567, 0.98, 57.32], param_list))) - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([-0.09, 11, 0.5, 0.567, 0.98, 57.32], param_list))) - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([-0.09, 1, 1.5, 0.567, 0.98, 57.32], param_list))) - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([-0.09, 1, 0.5, 1.567, 0.98, 57.32], param_list))) - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([-0.09, 1, 0.5, 0.567, 2.98, 57.32], param_list))) - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([-0.09, 1, 0.5, 0.567, 0.98, 101], param_list))) - l_normal_list.append(spotpy.likelihoods.generalizedLikelihoodFunction(data, comparedata, params= - ([-0.09, 0.0, 0.5, 0.567, 0.98, 101], param_list))) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, comparedata, params=([2, 1, 0.5, 0.567, 0.98, 57.32], param_list) + ) + ) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=([-0.09, 11, 0.5, 0.567, 0.98, 57.32], param_list), + ) + ) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=([-0.09, 1, 1.5, 0.567, 0.98, 57.32], param_list), + ) + ) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=([-0.09, 1, 0.5, 1.567, 0.98, 57.32], param_list), + ) + ) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=([-0.09, 1, 0.5, 0.567, 2.98, 57.32], param_list), + ) + ) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=([-0.09, 1, 0.5, 0.567, 0.98, 101], param_list), + ) + ) + l_normal_list.append( + spotpy.likelihoods.generalizedLikelihoodFunction( + data, + comparedata, + params=([-0.09, 0.0, 0.5, 0.567, 0.98, 101], param_list), + ) + ) for l_normal in l_normal_list: @@ -146,7 +243,9 @@ def test_generalizedLikelihoodFunction(self): if self.do_print: print("generalizedLikelihoodFunction: " + str(l_normal)) - l_binom = spotpy.likelihoods.generalizedLikelihoodFunction(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.generalizedLikelihoodFunction( + self.binom_data, self.binom_comparedata + ) self.assertNotEqual(None, l_binom) self.assertGreaterEqual(-10000, l_binom) @@ -155,26 +254,34 @@ def test_generalizedLikelihoodFunction(self): print("generalizedLikelihoodFunction: " + str(l_binom)) def test_LaplacianLikelihood(self): - l_normal = spotpy.likelihoods.LaplacianLikelihood(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.LaplacianLikelihood( + self.normal_data, self.normal_comparedata + ) self.assertNotEqual(None, l_normal) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("LaplacianLikelihood: " + str(l_normal)) - l_binom = spotpy.likelihoods.LaplacianLikelihood(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.LaplacianLikelihood( + self.binom_data, self.binom_comparedata + ) self.assertNotEqual(None, l_normal) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("LaplacianLikelihood: " + str(l_binom)) def test_SkewedStudentLikelihoodHomoscedastic(self): - l_normal = spotpy.likelihoods.SkewedStudentLikelihoodHomoscedastic(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.SkewedStudentLikelihoodHomoscedastic( + self.normal_data, self.normal_comparedata + ) self.assertGreaterEqual(12, np.abs(l_normal)) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("SkewedStudentLikelihoodHomoscedastic: " + str(l_normal)) - l_binom = spotpy.likelihoods.SkewedStudentLikelihoodHomoscedastic(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.SkewedStudentLikelihoodHomoscedastic( + self.binom_data, self.binom_comparedata + ) self.assertGreaterEqual(17, np.abs(l_binom)) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: @@ -184,26 +291,44 @@ def test_SkewedStudentLikelihoodHeteroscedastic(self): l_normal_list = [] paramDependencies = ["likelihood_nu", "likelihood_kappa", "likelihood_phi"] l_normal_list.append( - spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(self.normal_data, self.normal_comparedata, - params=([2.4, 0.15, 0.87], paramDependencies))) + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic( + self.normal_data, + self.normal_comparedata, + params=([2.4, 0.15, 0.87], paramDependencies), + ) + ) try: l_normal_list.append( - spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(self.normal_data, self.normal_comparedata, - params=([], []))) + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic( + self.normal_data, self.normal_comparedata, params=([], []) + ) + ) except LikelihoodError as e: print("An error occurred: " + str(e)) l_normal_list.append( - spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(self.normal_data, self.normal_comparedata, - params=([1, 0.15, 1.87], paramDependencies))) + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic( + self.normal_data, + self.normal_comparedata, + params=([1, 0.15, 1.87], paramDependencies), + ) + ) l_normal_list.append( - spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(self.normal_data, self.normal_comparedata, - params=([1, 0.15, 0.87], paramDependencies))) + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic( + self.normal_data, + self.normal_comparedata, + params=([1, 0.15, 0.87], paramDependencies), + ) + ) l_normal_list.append( - spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(self.normal_data, self.normal_comparedata, - params=([1, -0.15, 0.87], paramDependencies))) + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic( + self.normal_data, + self.normal_comparedata, + params=([1, -0.15, 0.87], paramDependencies), + ) + ) for l_normal in l_normal_list: if not np.isnan(l_normal): self.assertGreaterEqual(-100, l_normal) @@ -211,7 +336,9 @@ def test_SkewedStudentLikelihoodHeteroscedastic(self): if self.do_print: print("SkewedStudentLikelihoodHeteroscedastic: " + str(l_normal)) - l_binom = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedastic( + self.binom_data, self.binom_comparedata + ) if not np.isnan(l_binom): self.assertGreaterEqual(-100, l_binom) self.assertEqual(type(float(l_binom)), type(float(1))) @@ -222,59 +349,89 @@ def test_SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(self): l_normal_list = [] params = ["likelihood_nu", "likelihood_kappa", "likelihood_phi"] - l_normal_list.append(spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( - self.normal_data, self.normal_comparedata, params=([4, 43, 0.4], params))) + l_normal_list.append( + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + self.normal_data, self.normal_comparedata, params=([4, 43, 0.4], params) + ) + ) try: - l_normal_list.append(spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( - self.normal_data, self.normal_comparedata, params=([], []))) + l_normal_list.append( + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + self.normal_data, self.normal_comparedata, params=([], []) + ) + ) except LikelihoodError as e: print("Likelihood Error occurred " + str(e)) - l_normal_list.append(spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( - self.normal_data, self.normal_comparedata, params=([4, 43, 2.4], params))) - l_normal_list.append(spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( - self.normal_data, self.normal_comparedata, params=([1, 43, 0.4], params))) - l_normal_list.append(spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( - self.normal_data, self.normal_comparedata, params=([4, -3, 0.4], params))) + l_normal_list.append( + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + self.normal_data, self.normal_comparedata, params=([4, 43, 2.4], params) + ) + ) + l_normal_list.append( + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + self.normal_data, self.normal_comparedata, params=([1, 43, 0.4], params) + ) + ) + l_normal_list.append( + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + self.normal_data, self.normal_comparedata, params=([4, -3, 0.4], params) + ) + ) for l_normal in l_normal_list: self.assertNotEqual(None, l_normal) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: - print("SkewedStudentLikelihoodHeteroscedasticAdvancedARModel: " + str(l_normal)) + print( + "SkewedStudentLikelihoodHeteroscedasticAdvancedARModel: " + + str(l_normal) + ) - l_binom = spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( - self.normal_data, self.normal_comparedata) + l_binom = ( + spotpy.likelihoods.SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + self.normal_data, self.normal_comparedata + ) + ) self.assertNotEqual(None, l_binom) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: - print("SkewedStudentLikelihoodHeteroscedasticAdvancedARModel: " + str(l_binom)) + print( + "SkewedStudentLikelihoodHeteroscedasticAdvancedARModel: " + str(l_binom) + ) def test_NoisyABCGaussianLikelihood(self): - l_normal = spotpy.likelihoods.NoisyABCGaussianLikelihood(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.NoisyABCGaussianLikelihood( + self.normal_data, self.normal_comparedata + ) self.assertNotEqual(None, l_normal) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("NoisyABCGaussianLikelihood: " + str(l_normal)) - l_binom = spotpy.likelihoods.NoisyABCGaussianLikelihood(self.binom_data, self.binom_data, - measerror=[0.0]) + l_binom = spotpy.likelihoods.NoisyABCGaussianLikelihood( + self.binom_data, self.binom_data, measerror=[0.0] + ) self.assertNotEqual(None, l_binom) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("NoisyABCGaussianLikelihood: " + str(l_binom)) def test_ABCBoxcarLikelihood(self): - l_normal = spotpy.likelihoods.ABCBoxcarLikelihood(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.ABCBoxcarLikelihood( + self.normal_data, self.normal_comparedata + ) self.assertNotEqual(None, l_normal) self.assertNotEqual(np.nan, l_normal) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("ABCBoxcarLikelihood: " + str(l_normal)) - l_binom = spotpy.likelihoods.ABCBoxcarLikelihood(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.ABCBoxcarLikelihood( + self.binom_data, self.binom_comparedata + ) self.assertNotEqual(None, l_binom) self.assertNotEqual(np.nan, l_binom) self.assertEqual(type(float(l_binom)), type(float(1))) @@ -282,14 +439,18 @@ def test_ABCBoxcarLikelihood(self): print("ABCBoxcarLikelihood: " + str(l_binom)) def test_LimitsOfAcceptability(self): - l_normal = spotpy.likelihoods.LimitsOfAcceptability(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.LimitsOfAcceptability( + self.normal_data, self.normal_comparedata + ) self.assertEqual(12, l_normal) self.assertNotEqual(None, l_normal) self.assertEqual(type(int(l_normal)), type(int(1))) if self.do_print: print("LimitsOfAcceptability: " + str(l_normal)) - l_binom = spotpy.likelihoods.LimitsOfAcceptability(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.LimitsOfAcceptability( + self.binom_data, self.binom_comparedata + ) self.assertEqual(5, l_binom) self.assertNotEqual(None, l_binom) self.assertEqual(type(int(l_binom)), type(int(1))) @@ -297,26 +458,34 @@ def test_LimitsOfAcceptability(self): print("LimitsOfAcceptability: " + str(l_binom)) def test_InverseErrorVarianceShapingFactor(self): - l_normal = spotpy.likelihoods.InverseErrorVarianceShapingFactor(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.InverseErrorVarianceShapingFactor( + self.normal_data, self.normal_comparedata + ) self.assertGreaterEqual(-10, l_normal) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("inverseErrorVarianceShapingFactor: " + str(l_normal)) - l_binom = spotpy.likelihoods.InverseErrorVarianceShapingFactor(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.InverseErrorVarianceShapingFactor( + self.binom_data, self.binom_comparedata + ) self.assertGreaterEqual(-10, l_binom) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("inverseErrorVarianceShapingFactor: " + str(l_binom)) def test_ExponentialTransformErrVarShapingFactor(self): - l_binom = spotpy.likelihoods.ExponentialTransformErrVarShapingFactor(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.ExponentialTransformErrVarShapingFactor( + self.binom_data, self.binom_comparedata + ) self.assertGreaterEqual(-30, l_binom) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("inverseErrorVarianceShapingFactor: " + str(l_binom)) - l_gauss = spotpy.likelihoods.ExponentialTransformErrVarShapingFactor(self.normal_data, self.normal_comparedata) + l_gauss = spotpy.likelihoods.ExponentialTransformErrVarShapingFactor( + self.normal_data, self.normal_comparedata + ) self.assertGreaterEqual(-30, l_gauss) self.assertEqual(type(float(l_gauss)), type(float(1))) if self.do_print: @@ -324,23 +493,34 @@ def test_ExponentialTransformErrVarShapingFactor(self): def test_NashSutcliffeEfficiencyShapingFactor(self): l_normal_list = [] - l_normal_list.append(spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor(self.normal_data, - self.normal_comparedata)) + l_normal_list.append( + spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor( + self.normal_data, self.normal_comparedata + ) + ) - l_normal_list.append(spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor(self.normal_data, - self.normal_data)) + l_normal_list.append( + spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor( + self.normal_data, self.normal_data + ) + ) - l_normal_list.append(spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor(self.binom_data, - self.binom_comparedata)) + l_normal_list.append( + spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor( + self.binom_data, self.binom_comparedata + ) + ) try: - l_normal_list.append(spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor([], - [])) + l_normal_list.append( + spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor([], []) + ) except LikelihoodError as e: print("Likelihood Error occurred: " + str(e)) try: - l_normal_list.append(spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor([1], - [])) + l_normal_list.append( + spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor([1], []) + ) except LikelihoodError as e: print("Likelihood Error occurred " + str(e)) @@ -351,18 +531,22 @@ def test_NashSutcliffeEfficiencyShapingFactor(self): print("NashSutcliffeEfficiencyShapingFactor: " + str(l_normal)) def test_sumOfAbsoluteErrorResiduals(self): - l_normal = spotpy.likelihoods.sumOfAbsoluteErrorResiduals(self.normal_data, self.normal_comparedata) + l_normal = spotpy.likelihoods.sumOfAbsoluteErrorResiduals( + self.normal_data, self.normal_comparedata + ) self.assertGreaterEqual(7, np.abs(np.abs(l_normal) - 10)) self.assertEqual(type(float(l_normal)), type(float(1))) if self.do_print: print("sumOfAbsoluteErrorResiduals: " + str(l_normal)) - l_binom = spotpy.likelihoods.sumOfAbsoluteErrorResiduals(self.binom_data, self.binom_comparedata) + l_binom = spotpy.likelihoods.sumOfAbsoluteErrorResiduals( + self.binom_data, self.binom_comparedata + ) self.assertGreaterEqual(7, np.abs(np.abs(l_binom) - 10)) self.assertEqual(type(float(l_binom)), type(float(1))) if self.do_print: print("sumOfAbsoluteErrorResiduals: " + str(l_binom)) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/tests/test_list_and_constant_parameters_with_samplers.py b/tests/test_list_and_constant_parameters_with_samplers.py index 790de65e..95e28cc1 100644 --- a/tests/test_list_and_constant_parameters_with_samplers.py +++ b/tests/test_list_and_constant_parameters_with_samplers.py @@ -1,8 +1,8 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import inspect import unittest @@ -24,7 +24,12 @@ class Rosenbrock(object): def simulation(self, vector): vector = np.array(vector) - simulations = [sum(100.0 * (vector[1:] - vector[:-1] ** 2.0) ** 2.0 + (1 - vector[:-1]) ** 2.0)] + simulations = [ + sum( + 100.0 * (vector[1:] - vector[:-1] ** 2.0) ** 2.0 + + (1 - vector[:-1]) ** 2.0 + ) + ] return simulations def evaluation(self): @@ -42,10 +47,18 @@ class RosenbrockWithConstant(Rosenbrock): Result at (1,1,1) is 0. """ - c = parameter.Constant(0, doc='Constant offset, should stay 0') - x = parameter.Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='x value of Rosenbrock function') - y = parameter.Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='y value of Rosenbrock function') - z = parameter.Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='z value of Rosenbrock function') + + c = parameter.Constant(0, doc="Constant offset, should stay 0") + x = parameter.Uniform( + -10, 10, 1.5, 3.0, -10, 10, doc="x value of Rosenbrock function" + ) + y = parameter.Uniform( + -10, 10, 1.5, 3.0, -10, 10, doc="y value of Rosenbrock function" + ) + z = parameter.Uniform( + -10, 10, 1.5, 3.0, -10, 10, doc="z value of Rosenbrock function" + ) + class RosenbrockWithList(Rosenbrock): """ @@ -53,18 +66,25 @@ class RosenbrockWithList(Rosenbrock): Result at (1,1,1) is 0. """ - l = parameter.List(np.arange(0, 10), repeat=True, doc='list parameter for testing') - x = parameter.Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='x value of Rosenbrock function') - y = parameter.Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='y value of Rosenbrock function') - z = parameter.Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='z value of Rosenbrock function') + l = parameter.List(np.arange(0, 10), repeat=True, doc="list parameter for testing") + x = parameter.Uniform( + -10, 10, 1.5, 3.0, -10, 10, doc="x value of Rosenbrock function" + ) + y = parameter.Uniform( + -10, 10, 1.5, 3.0, -10, 10, doc="y value of Rosenbrock function" + ) + z = parameter.Uniform( + -10, 10, 1.5, 3.0, -10, 10, doc="z value of Rosenbrock function" + ) def get_all_samplers(): def use(cl): # Check if class name starts with an exclusion term - return (inspect.isclass(cl) and - not any([cl.__name__.startswith(ex) for ex in ('_', 'list')])) + return inspect.isclass(cl) and not any( + [cl.__name__.startswith(ex) for ex in ("_", "list")] + ) return inspect.getmembers(spotpy.algorithms, use) @@ -77,18 +97,22 @@ def setUp(self): def sampler_with_constant(self, sampler_class): - sampler = sampler_class(self.setup_constant(), dbformat='ram', save_sim=False) + sampler = sampler_class(self.setup_constant(), dbformat="ram", save_sim=False) sampler.sample(self.rep) - self.assertTrue(all(line[1] == 0 for line in sampler.datawriter.ram), - msg='Parameter c == 0 not true in all lines with sampler {}'.format(sampler)) + self.assertTrue( + all(line[1] == 0 for line in sampler.datawriter.ram), + msg="Parameter c == 0 not true in all lines with sampler {}".format( + sampler + ), + ) def sampler_with_list(self, sampler_class, valid=False): - sampler = sampler_class(self.setup_list(), dbformat='ram', save_sim=False) + sampler = sampler_class(self.setup_list(), dbformat="ram", save_sim=False) sampler.sample(self.rep) - iterator = cycle(np.arange(0,10)) + iterator = cycle(np.arange(0, 10)) for i in range(self.rep): - self.assertEqual(sampler.datawriter.ram[i][1],next(iterator)) + self.assertEqual(sampler.datawriter.ram[i][1], next(iterator)) def test_abc_sampler(self): self.sampler_with_constant(spotpy.algorithms.abc) @@ -117,7 +141,7 @@ def test_lhs_sampler(self): def test_mc_sampler(self): self.sampler_with_constant(spotpy.algorithms.mc) - self.sampler_with_list(spotpy.algorithms.mc, valid = True) + self.sampler_with_list(spotpy.algorithms.mc, valid=True) def test_mcmc_sampler(self): self.sampler_with_constant(spotpy.algorithms.mcmc) @@ -144,5 +168,6 @@ def test_sceua_sampler(self): with self.assertRaises(TypeError): self.sampler_with_list(spotpy.algorithms.sceua) -if __name__ == '__main__': - unittest.main() \ No newline at end of file + +if __name__ == "__main__": + unittest.main() diff --git a/tests/test_objectivefunctions.py b/tests/test_objectivefunctions.py index ca548d3c..012cde53 100644 --- a/tests/test_objectivefunctions.py +++ b/tests/test_objectivefunctions.py @@ -1,8 +1,8 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Benjamin Manns -''' +""" import unittest @@ -10,7 +10,8 @@ from spotpy import objectivefunctions as of -#https://docs.python.org/3/library/unittest.html +# https://docs.python.org/3/library/unittest.html + class TestObjectiveFunctions(unittest.TestCase): @@ -50,8 +51,7 @@ def test_lognashsutcliffe_for_invalid_obs_is_nan(self): self.assertTrue(np.isnan(res)) def test_log_p_with_default_scale(self): - """If the mean of the evaluation function is <0.01, it gets reset to 0.01 - """ + """If the mean of the evaluation function is <0.01, it gets reset to 0.01""" res = of.log_p(self.evaluation, self.simulation) self.assertAlmostEqual(res, -13135.8578574, self.tolerance) @@ -70,20 +70,20 @@ def test_correlationcoefficient_for_perfect_positive_is_one(self): res = of.correlationcoefficient(self.evaluation, self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) - res = of.correlationcoefficient(self.evaluation, 2*self.evaluation) + res = of.correlationcoefficient(self.evaluation, 2 * self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) - res = of.correlationcoefficient(self.evaluation, 0.5*self.evaluation) + res = of.correlationcoefficient(self.evaluation, 0.5 * self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) def test_correlationcoefficient_for_perfect_negative_is_minus_one(self): res = of.correlationcoefficient(self.evaluation, -self.evaluation) self.assertAlmostEqual(res, -1, self.tolerance) - res = of.correlationcoefficient(self.evaluation, -2*self.evaluation) + res = of.correlationcoefficient(self.evaluation, -2 * self.evaluation) self.assertAlmostEqual(res, -1, self.tolerance) - res = of.correlationcoefficient(self.evaluation, -0.5*self.evaluation) + res = of.correlationcoefficient(self.evaluation, -0.5 * self.evaluation) self.assertAlmostEqual(res, -1, self.tolerance) def test_rsquared_random(self): @@ -95,19 +95,19 @@ def test_rsquared_perfect_corr_is_1(self): res = of.rsquared(self.evaluation, self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) - res = of.rsquared(self.evaluation, 2*self.evaluation) + res = of.rsquared(self.evaluation, 2 * self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) - res = of.rsquared(self.evaluation, 0.5*self.evaluation) + res = of.rsquared(self.evaluation, 0.5 * self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) res = of.rsquared(self.evaluation, -self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) - res = of.rsquared(self.evaluation, -2*self.evaluation) + res = of.rsquared(self.evaluation, -2 * self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) - res = of.rsquared(self.evaluation, -0.5*self.evaluation) + res = of.rsquared(self.evaluation, -0.5 * self.evaluation) self.assertAlmostEqual(res, 1, self.tolerance) def test_mse(self): @@ -143,7 +143,7 @@ def test_rrmse_with_self_is_zero(self): self.assertAlmostEqual(res, 0.0, self.tolerance) def test_rrmse_with_obs_mean_zero_is_inf(self): - #FIXME: Currently failing because rrmse returns np.inf + # FIXME: Currently failing because rrmse returns np.inf evaluation = [-5, -4, -3, -2, -1, 1, 2, 3, 4, 5] res = of.rrmse(evaluation, self.simulation) self.assertTrue(np.isinf(res)) @@ -173,7 +173,12 @@ def test_kge(self): self.assertAlmostEqual(res, -0.92083174734809159, self.tolerance) def test_kge_return_all(self): - expected = (-0.92083174734809159, -0.1105109772757096, 0.95721520413458061, -0.56669379018786747) + expected = ( + -0.92083174734809159, + -0.1105109772757096, + 0.95721520413458061, + -0.56669379018786747, + ) res = of.kge(self.evaluation, self.simulation, return_all=True) for exp, actual in zip(expected, res): self.assertAlmostEqual(actual, exp, self.tolerance) @@ -183,7 +188,12 @@ def test_kge_non_parametric(self): self.assertAlmostEqual(res, -0.84274521306792427, self.tolerance) def test_kge_non_parametric_return_all(self): - expected = (-0.8427452130679243, 0.030303030303030304, 0.970533493046538, -0.5666937901878675) + expected = ( + -0.8427452130679243, + 0.030303030303030304, + 0.970533493046538, + -0.5666937901878675, + ) res = of.kge_non_parametric(self.evaluation, self.simulation, return_all=True) for exp, actual in zip(expected, res): self.assertAlmostEqual(actual, exp, self.tolerance) @@ -209,8 +219,10 @@ def test_length_mismatch_return_nan(self): for func in all_funcs: res = func([0], [0, 1]) - self.assertTrue(np.isnan(res), "Expected np.nan in length mismatch, Got {}".format(res)) + self.assertTrue( + np.isnan(res), "Expected np.nan in length mismatch, Got {}".format(res) + ) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/tests/test_parallel.py b/tests/test_parallel.py index a14c3e7a..91fb2378 100644 --- a/tests/test_parallel.py +++ b/tests/test_parallel.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import unittest @@ -16,29 +16,48 @@ class TestParallel(unittest.TestCase): def setUpClass(self): # How many digits to match in case of floating point answers self.tolerance = 7 - #Create samplers for every algorithm: + # Create samplers for every algorithm: self.rep = 21 - self.timeout = 10 #Given in Seconds + self.timeout = 10 # Given in Seconds self.dbformat = "ram" def test_seq(self): - sampler=spotpy.algorithms.mc(spot_setup(),parallel='seq', dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.mc( + spot_setup(), + parallel="seq", + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_mpc(self): - sampler=spotpy.algorithms.mc(spot_setup(),parallel='mpc', dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.mc( + spot_setup(), + parallel="mpc", + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) def test_umpc(self): - sampler=spotpy.algorithms.mc(spot_setup(),parallel='umpc', dbname='Rosen', dbformat=self.dbformat, sim_timeout=self.timeout) + sampler = spotpy.algorithms.mc( + spot_setup(), + parallel="umpc", + dbname="Rosen", + dbformat=self.dbformat, + sim_timeout=self.timeout, + ) sampler.sample(self.rep) results = sampler.getdata() self.assertEqual(len(results), self.rep) -if __name__ == '__main__': + +if __name__ == "__main__": unittest.main(exit=False) diff --git a/tests/test_parameter.py b/tests/test_parameter.py index 97c30a0d..12c63052 100644 --- a/tests/test_parameter.py +++ b/tests/test_parameter.py @@ -1,8 +1,8 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft -''' +""" # Import inspect to scan spotpy.parameter for all Parameter classes import inspect @@ -26,6 +26,7 @@ def test_foo(self): Reference: https://stackoverflow.com/a/13606054/4014685 """ + def repeatHelper(f): def func_repeat_executor(*args, **kwargs): for i in range(0, times): @@ -38,11 +39,10 @@ def func_repeat_executor(*args, **kwargs): class TestListParameterDistribution(unittest.TestCase): - def setUp(self): self.values = [1, 2, 3, 4, 5] - self.list_param = parameter.List('test', self.values) - self.list_param_repeat = parameter.List('test2', self.values, repeat=True) + self.list_param = parameter.List("test", self.values) + self.list_param_repeat = parameter.List("test2", self.values, repeat=True) def test_list_is_callable(self): self.assertTrue(callable(self.list_param), "List instance should be callable") @@ -120,37 +120,50 @@ def test_uniform_has_correct_statistics(self): unif = parameter.Uniform("test", 0, 1) # Generate 10k random numbers nums = [unif() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), (1 - 0)/2.0, self.tolerance, "Mean of Unif(0, 1) should be 1/2") - self.assertAlmostEqual(np.var(nums), 1.0/12, self.tolerance, "Variance of Unif(0, 1) should be 1/12") + self.assertAlmostEqual( + np.mean(nums), + (1 - 0) / 2.0, + self.tolerance, + "Mean of Unif(0, 1) should be 1/2", + ) + self.assertAlmostEqual( + np.var(nums), + 1.0 / 12, + self.tolerance, + "Variance of Unif(0, 1) should be 1/12", + ) class TestConstantParameterDistribution(unittest.TestCase): - def setUp(self): self.const = parameter.Constant("test", 10) def test_constant_is_callable(self): - self.assertTrue(callable(self.const), "Constant param instance should be callable") + self.assertTrue( + callable(self.const), "Constant param instance should be callable" + ) def test_constant_gives_only_constants(self): nums = set([self.const() for _ in range(1000)]) - self.assertEqual(len(nums), 1, 'All results must be the same') - self.assertEqual(nums.pop(), 10, 'All results must be 10') + self.assertEqual(len(nums), 1, "All results must be the same") + self.assertEqual(nums.pop(), 10, "All results must be 10") def test_parameter_settings(self): p = parameter.generate([self.const])[0] - self.assertEqual(p['random'], 10, 'Random value must always be 10') - self.assertEqual(p['optguess'], 10, 'Optguess value must always be 10') - self.assertEqual(p['maxbound'], 10, 'maxbound value must always be 10') - self.assertEqual(p['minbound'], 10, 'minbound value must always be 10') - self.assertEqual(p['step'], 0, 'step value must always be 0') + self.assertEqual(p["random"], 10, "Random value must always be 10") + self.assertEqual(p["optguess"], 10, "Optguess value must always be 10") + self.assertEqual(p["maxbound"], 10, "maxbound value must always be 10") + self.assertEqual(p["minbound"], 10, "minbound value must always be 10") + self.assertEqual(p["step"], 0, "step value must always be 0") def test_find_constant_parameters(self): - flex = parameter.Uniform('flexible', 0, 1) + flex = parameter.Uniform("flexible", 0, 1) p = parameter.generate([flex, self.const]) constant_parameters = parameter.find_constant_parameters(p) - self.assertFalse(constant_parameters[0], 'Flexible parameter detected as constant') - self.assertTrue(constant_parameters[1], 'Constant parameter not detected') + self.assertFalse( + constant_parameters[0], "Flexible parameter detected as constant" + ) + self.assertTrue(constant_parameters[1], "Constant parameter not detected") class TestNormalParameterDistribution(unittest.TestCase): @@ -170,8 +183,12 @@ def test_normal_processes_non_keyword_args(self): @repeat(5) def test_normal_has_correct_statistics(self): nums = [self.norm() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), 5, self.tolerance, "Mean of Norm(5, 10) should be 5") - self.assertAlmostEqual(np.std(nums), 10, self.tolerance, "SD of Norm(5, 10) should be 10") + self.assertAlmostEqual( + np.mean(nums), 5, self.tolerance, "Mean of Norm(5, 10) should be 5" + ) + self.assertAlmostEqual( + np.std(nums), 10, self.tolerance, "SD of Norm(5, 10) should be 10" + ) class TestLogNormalParameterDistribution(unittest.TestCase): @@ -183,7 +200,9 @@ def setUp(self): self.log_norm = parameter.logNormal("test", mean=5, sigma=10) def test_normal_is_callable(self): - self.assertTrue(callable(self.log_norm), "Log Normal param instance should be callable") + self.assertTrue( + callable(self.log_norm), "Log Normal param instance should be callable" + ) def test_normal_processes_non_keyword_args(self): _ = parameter.logNormal("test", 0, 1) @@ -192,8 +211,18 @@ def test_normal_processes_non_keyword_args(self): def test_normal_has_correct_statistics(self): nums = [self.log_norm() for _ in range(10000)] log_nums = np.log(nums) - self.assertAlmostEqual(np.mean(log_nums), 5, self.tolerance, "Mean of Log(LogNorm(5, 10)) should be 5") - self.assertAlmostEqual(np.std(log_nums), 10, self.tolerance, "SD of Log(LogNorm(5, 10)) should be 10") + self.assertAlmostEqual( + np.mean(log_nums), + 5, + self.tolerance, + "Mean of Log(LogNorm(5, 10)) should be 5", + ) + self.assertAlmostEqual( + np.std(log_nums), + 10, + self.tolerance, + "SD of Log(LogNorm(5, 10)) should be 10", + ) class TestChiSquareParameterDistribution(unittest.TestCase): @@ -205,7 +234,9 @@ def setUp(self): self.chisq = parameter.Chisquare("test", dt=self.df) def test_chisq_is_callable(self): - self.assertTrue(callable(self.chisq), "Chisquare param instance should be callable") + self.assertTrue( + callable(self.chisq), "Chisquare param instance should be callable" + ) def test_chisq_processes_non_keyword_args(self): _ = parameter.Chisquare("test", 5) @@ -213,10 +244,18 @@ def test_chisq_processes_non_keyword_args(self): @repeat(5) def test_chisq_has_correct_statistics(self): nums = [self.chisq() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), self.df, self.tolerance, - "Mean of Chisquare({df}) should be {df}".format(df=self.df)) - self.assertAlmostEqual(np.std(nums), np.sqrt(2*self.df), self.tolerance, - "SD of Chisquare({df}) should be sqrt(2*{df})".format(df=self.df)) + self.assertAlmostEqual( + np.mean(nums), + self.df, + self.tolerance, + "Mean of Chisquare({df}) should be {df}".format(df=self.df), + ) + self.assertAlmostEqual( + np.std(nums), + np.sqrt(2 * self.df), + self.tolerance, + "SD of Chisquare({df}) should be sqrt(2*{df})".format(df=self.df), + ) class TestExponentialParameterDistribution(unittest.TestCase): @@ -228,7 +267,9 @@ def setUp(self): self.exp = parameter.Exponential("test", scale=self.beta) def test_exp_is_callable(self): - self.assertTrue(callable(self.exp), "Exponential param instance should be callable") + self.assertTrue( + callable(self.exp), "Exponential param instance should be callable" + ) def test_exp_processes_non_keyword_args(self): _ = parameter.Exponential("test", self.beta) @@ -236,10 +277,18 @@ def test_exp_processes_non_keyword_args(self): @repeat(5) def test_exp_has_correct_statistics(self): nums = [self.exp() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), self.beta, self.tolerance, - "Mean of Exponential({beta}) should be {beta}".format(beta=self.beta)) - self.assertAlmostEqual(np.std(nums), self.beta, self.tolerance, - "SD of Exponential({beta}) should be {beta}".format(beta=self.beta)) + self.assertAlmostEqual( + np.mean(nums), + self.beta, + self.tolerance, + "Mean of Exponential({beta}) should be {beta}".format(beta=self.beta), + ) + self.assertAlmostEqual( + np.std(nums), + self.beta, + self.tolerance, + "SD of Exponential({beta}) should be {beta}".format(beta=self.beta), + ) class TestGammaParameterDistribution(unittest.TestCase): @@ -260,12 +309,24 @@ def test_gamma_processes_non_keyword_args(self): @repeat(5) def test_gamma_has_correct_statistics(self): nums = [self.gamma() for _ in range(10000)] - expected_mean = self.shape*self.scale - expected_sd = np.sqrt(self.shape*self.scale*self.scale) - self.assertAlmostEqual(np.mean(nums), expected_mean, self.tolerance, - "Mean of Gamma({}, {}) should be {}".format(self.shape, self.scale, expected_mean)) - self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, - "SD of Gamma({}, {}) should be {}".format(self.shape, self.scale, expected_sd)) + expected_mean = self.shape * self.scale + expected_sd = np.sqrt(self.shape * self.scale * self.scale) + self.assertAlmostEqual( + np.mean(nums), + expected_mean, + self.tolerance, + "Mean of Gamma({}, {}) should be {}".format( + self.shape, self.scale, expected_mean + ), + ) + self.assertAlmostEqual( + np.std(nums), + expected_sd, + self.tolerance, + "SD of Gamma({}, {}) should be {}".format( + self.shape, self.scale, expected_sd + ), + ) class TestWaldParameterDistribution(unittest.TestCase): @@ -286,10 +347,22 @@ def test_wald_processes_non_keyword_args(self): def test_wald_has_correct_statistics(self): nums = [self.wald() for _ in range(40000)] expected_sd = np.sqrt(self.mean**3 / self.scale) - self.assertAlmostEqual(np.mean(nums), self.mean, self.tolerance, - "Mean of Wald({}, {}) should be {}".format(self.mean, self.scale, self.mean)) - self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, - "SD of Wald({}, {}) should be {}".format(self.mean, self.scale, expected_sd)) + self.assertAlmostEqual( + np.mean(nums), + self.mean, + self.tolerance, + "Mean of Wald({}, {}) should be {}".format( + self.mean, self.scale, self.mean + ), + ) + self.assertAlmostEqual( + np.std(nums), + expected_sd, + self.tolerance, + "SD of Wald({}, {}) should be {}".format( + self.mean, self.scale, expected_sd + ), + ) class TestWeibullParameterDistribution(unittest.TestCase): @@ -301,17 +374,27 @@ def setUp(self): self.weibull = parameter.Weibull("test", a=self.a) def test_weibull_is_callable(self): - self.assertTrue(callable(self.weibull), "Weibull param instance should be callable") + self.assertTrue( + callable(self.weibull), "Weibull param instance should be callable" + ) def test_weibull_processes_non_keyword_args(self): _ = parameter.Weibull("test", self.a) def test_weibull_has_correct_statistics(self): nums = [self.weibull() for _ in range(10000)] - self.assertAlmostEqual(np.mean(nums), 0.918169, self.tolerance, - "Mean of Weibull({}) should be {}".format(self.a, 0.918169)) - self.assertAlmostEqual(np.std(nums), 0.0442300, self.tolerance, - "SD of Weibull({}) should be {}".format(self.a, 0.0442300)) + self.assertAlmostEqual( + np.mean(nums), + 0.918169, + self.tolerance, + "Mean of Weibull({}) should be {}".format(self.a, 0.918169), + ) + self.assertAlmostEqual( + np.std(nums), + 0.0442300, + self.tolerance, + "SD of Weibull({}) should be {}".format(self.a, 0.0442300), + ) class TestTriangularParameterDistribution(unittest.TestCase): @@ -320,21 +403,45 @@ class TestTriangularParameterDistribution(unittest.TestCase): def setUp(self): self.a, self.c, self.b = 0, 2, 5 - self.triangular = parameter.Triangular("test", left=self.a, mode=self.c, right=self.b) + self.triangular = parameter.Triangular( + "test", left=self.a, mode=self.c, right=self.b + ) def test_triangular_is_callable(self): - self.assertTrue(callable(self.triangular), "Triangular param instance should be callable") + self.assertTrue( + callable(self.triangular), "Triangular param instance should be callable" + ) def test_triangular_has_correct_statistics(self): nums = [self.triangular() for _ in range(10000)] expected_mean = (self.a + self.b + self.c) / 3 - expected_sd = np.sqrt((self.a**2 + self.b**2 + self.c**2 - self.a*self.c - self.a*self.b - self.b*self.c)/18) - self.assertAlmostEqual(np.mean(nums), expected_mean, self.tolerance, - "Mean of Triangular({}, {}, {}) should be {}" - .format(self.a, self.c, self.b, expected_mean)) - self.assertAlmostEqual(np.std(nums), expected_sd, self.tolerance, - "SD of Triangular({}, {}, {}) should be {}" - .format(self.a, self.c, self.b, expected_sd)) + expected_sd = np.sqrt( + ( + self.a**2 + + self.b**2 + + self.c**2 + - self.a * self.c + - self.a * self.b + - self.b * self.c + ) + / 18 + ) + self.assertAlmostEqual( + np.mean(nums), + expected_mean, + self.tolerance, + "Mean of Triangular({}, {}, {}) should be {}".format( + self.a, self.c, self.b, expected_mean + ), + ) + self.assertAlmostEqual( + np.std(nums), + expected_sd, + self.tolerance, + "SD of Triangular({}, {}, {}) should be {}".format( + self.a, self.c, self.b, expected_sd + ), + ) class TestParameterArguments(unittest.TestCase): @@ -356,36 +463,62 @@ def test_correct_with_default_step(self): for cl, args in zip(self.classes, self.rndargs): p_no_name = cl(*args) p_with_name = cl(cl.__name__, *args) - self.assertTrue(10 <= p_no_name.optguess < 20, 'Optguess out of boundaries') - self.assertTrue(10 <= p_with_name.optguess < 20, 'Optguess out of boundaries') - self.assertTrue(p_no_name.step < 10, 'Step to large') - self.assertTrue(p_with_name.step < 10, 'Step to large') + self.assertTrue(10 <= p_no_name.optguess < 20, "Optguess out of boundaries") + self.assertTrue( + 10 <= p_with_name.optguess < 20, "Optguess out of boundaries" + ) + self.assertTrue(p_no_name.step < 10, "Step to large") + self.assertTrue(p_with_name.step < 10, "Step to large") def test_correct_with_extra_args(self): for cl, args in zip(self.classes, self.rndargs): p_no_name = cl(*args, step=1, default=12) p_with_name = cl(cl.__name__, *args, step=1, default=12) - self.assertTrue(p_no_name.optguess == 12, - 'Optguess not found from default (name={})'.format(repr(p_no_name.name))) - self.assertTrue(p_with_name.optguess == 12, - 'Optguess not found from default (name={})'.format(repr(p_with_name.name))) - self.assertTrue(p_no_name.step == 1, - 'Step overridden by class (name={})'.format(repr(p_no_name.name))) - self.assertTrue(p_with_name.step == 1, - 'Step overridden by class (name={})'.format(repr(p_with_name.name))) + self.assertTrue( + p_no_name.optguess == 12, + "Optguess not found from default (name={})".format( + repr(p_no_name.name) + ), + ) + self.assertTrue( + p_with_name.optguess == 12, + "Optguess not found from default (name={})".format( + repr(p_with_name.name) + ), + ) + self.assertTrue( + p_no_name.step == 1, + "Step overridden by class (name={})".format(repr(p_no_name.name)), + ) + self.assertTrue( + p_with_name.step == 1, + "Step overridden by class (name={})".format(repr(p_with_name.name)), + ) def test_minbound_zero(self): - param = spotpy.parameter.Normal(name="parname", mean=0.6, stddev=0.2, optguess=0.6, minbound=0, maxbound=1) + param = spotpy.parameter.Normal( + name="parname", mean=0.6, stddev=0.2, optguess=0.6, minbound=0, maxbound=1 + ) self.assertEqual(param.minbound, 0) def test_maxbound_zero(self): - param = spotpy.parameter.Normal(name="parname", mean=-0.6, stddev=0.2, optguess=-0.6, minbound=-1, maxbound=0) + param = spotpy.parameter.Normal( + name="parname", + mean=-0.6, + stddev=0.2, + optguess=-0.6, + minbound=-1, + maxbound=0, + ) self.assertEqual(param.maxbound, 0) def test_optguess_zero(self): - param = spotpy.parameter.Normal(name="parname", mean=0.1, stddev=0.2, optguess=0.0, minbound=-1, maxbound=1) + param = spotpy.parameter.Normal( + name="parname", mean=0.1, stddev=0.2, optguess=0.0, minbound=-1, maxbound=1 + ) self.assertEqual(param.optguess, 0) + def make_args(pcls): """ Returns an args tuple for the parameter class pcls. @@ -397,15 +530,15 @@ def get_classes(): """ Get all classes from spotpy.parameter module, except special cases """ + def predicate(cls): - return (inspect.isclass(cls) - and cls not in [parameter.Base, parameter.List] - and issubclass(cls, parameter.Base)) + return ( + inspect.isclass(cls) + and cls not in [parameter.Base, parameter.List] + and issubclass(cls, parameter.Base) + ) - return [[cname, cls] - for cname, cls in - inspect.getmembers(parameter, predicate) - ] + return [[cname, cls] for cname, cls in inspect.getmembers(parameter, predicate)] class TestParameterClasses(unittest.TestCase): @@ -415,8 +548,14 @@ class TestParameterClasses(unittest.TestCase): def test_classes_available(self): classes = get_classes() - self.assertGreaterEqual(len(classes), 1, 'No parameter classes found in spotpy.parameter') - self.assertIn('Uniform', [n for n, c in classes], 'Parameter class spotpy.parameter.Uniform not found') + self.assertGreaterEqual( + len(classes), 1, "No parameter classes found in spotpy.parameter" + ) + self.assertIn( + "Uniform", + [n for n, c in classes], + "Parameter class spotpy.parameter.Uniform not found", + ) def test_create_posargs(self): """ @@ -433,14 +572,17 @@ def test_create_posargs(self): # Check the names self.assertEqual(p_name.name, cname) # Check name is empty, when no name is given - self.assertEqual(p_no_name.name, '') + self.assertEqual(p_no_name.name, "") # Test Parameter character for both for p in [p_name, p_no_name]: self.assertTrue(callable(p)) self.assertGreater(p(), -np.inf) - self.assertTrue(p.step == 0.01, - '{} did not receive step as the correct value, check number of arguments' - .format(cls.__name__)) + self.assertTrue( + p.step == 0.01, + "{} did not receive step as the correct value, check number of arguments".format( + cls.__name__ + ), + ) def test_create_kwargs(self): """ @@ -455,14 +597,18 @@ def test_create_kwargs(self): p_no_name = cls(step=0.01, **kwargs) # Check the names self.assertEqual(p_name.name, cname) - self.assertEqual(p_no_name.name, '') + self.assertEqual(p_no_name.name, "") # Test Parameter character for both for p in [p_name, p_no_name]: self.assertTrue(callable(p)) self.assertGreater(p(), -np.inf) - self.assertEqual(p.step, 0.01, - '{} did not receive step as the correct value, check number of arguments' - .format(cls.__name__)) + self.assertEqual( + p.step, + 0.01, + "{} did not receive step as the correct value, check number of arguments".format( + cls.__name__ + ), + ) def test_too_many_args(self): """ @@ -470,7 +616,7 @@ def test_too_many_args(self): """ for cname, cls in get_classes(): # Implicit definition of step in args - step_args = make_args(cls) + (1, ) + step_args = make_args(cls) + (1,) with self.assertRaises(TypeError): _ = cls(*step_args, step=1) with self.assertRaises(TypeError): @@ -489,5 +635,5 @@ def test_too_few_args(self): _ = cls(cls.__name__, *args[:-1], step=1) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/tests/test_setup_parameters.py b/tests/test_setup_parameters.py index 2dc571fe..87ab237e 100644 --- a/tests/test_setup_parameters.py +++ b/tests/test_setup_parameters.py @@ -1,11 +1,11 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft Tests the various possibilities to create and use parameters Focus especially the usage of parameters as class attributes -''' +""" import inspect import sys import unittest @@ -38,13 +38,14 @@ def get_derived(cls): Returns a list of all derived classes in this module """ module = sys.modules[__name__] + def predicate(mcls): return inspect.isclass(mcls) and issubclass(mcls, cls) and mcls is not cls + return [mcls for cname, mcls in inspect.getmembers(module, predicate)] def __repr__(self): - return '{}()'.format(type(self).__name__) - + return "{}()".format(type(self).__name__) class SpotSetupClassAttributes(SpotSetupBase): @@ -52,6 +53,7 @@ class SpotSetupClassAttributes(SpotSetupBase): A Test case with two parameters as class parameters (a,b) and 2 given from the parameter function """ + a = parameter.Uniform(-1, 1) b = parameter.Uniform(-1, 1) c = parameter.Uniform(-1, 1) @@ -62,26 +64,31 @@ class SpotSetupParameterFunction(SpotSetupBase): """ A Test case with 4 parameters given from the parameter function """ + def parameters(self): - return parameter.generate([parameter.Uniform(name, -1, 1) for name in 'abcd']) + return parameter.generate([parameter.Uniform(name, -1, 1) for name in "abcd"]) + class SpotSetupMixedParameterFunction(SpotSetupBase): """ A Test case with two parameters as class parameters (a,b) and 2 given from the parameter function """ + a = parameter.Uniform(0, 1) b = parameter.Uniform(1, 2) + def parameters(self): - return parameter.generate([parameter.Uniform(name, -1, 1) for name in 'cd']) + return parameter.generate([parameter.Uniform(name, -1, 1) for name in "cd"]) class SpotSetupParameterList(SpotSetupBase): """ A Test case with 4 parameters given from the parameter list """ + def __init__(self): - self.parameters = [parameter.Uniform(name, -1, 1) for name in 'abcd'] + self.parameters = [parameter.Uniform(name, -1, 1) for name in "abcd"] class SpotSetupMixedParameterList(SpotSetupBase): @@ -89,11 +96,12 @@ class SpotSetupMixedParameterList(SpotSetupBase): A Test case with two parameters as class parameters (a,b) and 2 given from the parameter function """ + a = parameter.Uniform(0, 1) b = parameter.Uniform(1, 2) def parameters(self): - return parameter.generate([parameter.Uniform(name, -1, 1) for name in 'cd']) + return parameter.generate([parameter.Uniform(name, -1, 1) for name in "cd"]) class TestParameterSet(unittest.TestCase): @@ -122,7 +130,7 @@ def test_iter(self): def test_getitem(self): values = [1] * len(self.ps) self.ps(*values) - self.assertEqual(self.ps['a'], 1.0) + self.assertEqual(self.ps["a"], 1.0) self.assertEqual(self.ps[0], 1.0) def test_getattr(self): @@ -133,7 +141,11 @@ def test_getattr(self): _ = self.ps.__x self.assertEqual(self.ps.a, 1.0) - self.assertEqual(list(self.ps.random), list(self.ps), 'Access to random variable does not equal list of names') + self.assertEqual( + list(self.ps.random), + list(self.ps), + "Access to random variable does not equal list of names", + ) with self.assertRaises(AttributeError): _ = self.ps.x @@ -148,19 +160,23 @@ def test_dir(self): attrs = dir(self.ps) for param in self.ps.name: - self.assertIn(param, attrs, 'Attribute {} not found in {}'.format(param, self.ps)) - for prop in ['maxbound', 'minbound', 'name', 'optguess', 'random', 'step']: - self.assertIn(prop, attrs, 'Property {} not found in {}'.format(prop, self.ps)) + self.assertIn( + param, attrs, "Attribute {} not found in {}".format(param, self.ps) + ) + for prop in ["maxbound", "minbound", "name", "optguess", "random", "step"]: + self.assertIn( + prop, attrs, "Property {} not found in {}".format(prop, self.ps) + ) def test_str(self): values = [1] * len(self.ps) self.ps(*values) - self.assertEqual(str(self.ps), 'parameters(a=1, b=1, c=1, d=1)') + self.assertEqual(str(self.ps), "parameters(a=1, b=1, c=1, d=1)") def test_repr(self): values = [1] * len(self.ps) self.ps(*values) - self.assertEqual(repr(self.ps), 'spotpy.parameter.ParameterSet()') + self.assertEqual(repr(self.ps), "spotpy.parameter.ParameterSet()") class TestSetupVariants(unittest.TestCase): @@ -172,15 +188,25 @@ def test_exists(self): self.assertGreater(len(self.objects), 0) def parameter_count_test(self, o): - params = parameter.create_set(o, valuetype='optguess') - param_names = ','.join(pn for pn in params.name) - self.assertEqual(len(params), 4, '{} should have 4 parameters, but found only {} ({})' - .format(o, len(params), param_names)) - self.assertEqual(param_names, 'a,b,c,d', '{} Parameter names should be "a,b,c,d" but got "{}"' - .format(o, param_names)) + params = parameter.create_set(o, valuetype="optguess") + param_names = ",".join(pn for pn in params.name) + self.assertEqual( + len(params), + 4, + "{} should have 4 parameters, but found only {} ({})".format( + o, len(params), param_names + ), + ) + self.assertEqual( + param_names, + "a,b,c,d", + '{} Parameter names should be "a,b,c,d" but got "{}"'.format( + o, param_names + ), + ) def make_sampler(self, o, algo=spotpy.algorithms.mc): - sampler = algo(spot_setup=o, dbformat='ram') + sampler = algo(spot_setup=o, dbformat="ram") sampler.sample(100) def test_parameter_class(self): @@ -215,7 +241,8 @@ def test_dream_sampler(self): self.make_sampler(o, spotpy.algorithms.dream) def test_fscabc_sampler(self): - for o in self.objects: self.make_sampler(o, spotpy.algorithms.fscabc) + for o in self.objects: + self.make_sampler(o, spotpy.algorithms.fscabc) def test_lhs_sampler(self): for o in self.objects: @@ -230,7 +257,8 @@ def test_mcmc_sampler(self): self.make_sampler(o, spotpy.algorithms.mcmc) def test_mle_sampler(self): - for o in self.objects: self.make_sampler(o, spotpy.algorithms.mle) + for o in self.objects: + self.make_sampler(o, spotpy.algorithms.mle) def test_rope_sampler(self): for o in self.objects: @@ -245,6 +273,5 @@ def test_sceua_sampler(self): self.make_sampler(o, spotpy.algorithms.sceua) -if __name__ == '_main__': +if __name__ == "_main__": unittest.main(verbosity=3) - diff --git a/tests/test_signatures.py b/tests/test_signatures.py index af2868f7..c52cf5d2 100644 --- a/tests/test_signatures.py +++ b/tests/test_signatures.py @@ -1,8 +1,8 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska, Philipp Kraft -''' +""" import unittest @@ -12,7 +12,6 @@ class TestSignatures(unittest.TestCase): - def setUp(self): np.random.seed(0) @@ -33,8 +32,9 @@ def test_signatures(self): sig_result = SignatureMethod.run(sbm_list, self.runoff, 1) for name, value in sig_result: - self.assertNotEqual(value, np.nan, '{} returned no value'.format(name)) + self.assertNotEqual(value, np.nan, "{} returned no value".format(name)) + -if __name__ == '__main__': +if __name__ == "__main__": unittest.main(verbosity=3) From e9b7ab9c987fd863f7077cb65043e33e66346552 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Fri, 8 Jul 2022 16:01:47 +0200 Subject: [PATCH 25/34] apply black to src --- src/spotpy/__init__.py | 4 +- src/spotpy/algorithms/__init__.py | 6 +- src/spotpy/algorithms/_algorithm.py | 326 +++--- src/spotpy/algorithms/abc.py | 93 +- src/spotpy/algorithms/dds.py | 192 ++-- src/spotpy/algorithms/demcz.py | 293 ++++-- src/spotpy/algorithms/dream.py | 364 ++++--- src/spotpy/algorithms/fast.py | 93 +- src/spotpy/algorithms/fscabc.py | 101 +- src/spotpy/algorithms/lhs.py | 16 +- src/spotpy/algorithms/list_sampler.py | 25 +- src/spotpy/algorithms/mc.py | 12 +- src/spotpy/algorithms/mcmc.py | 112 +- src/spotpy/algorithms/mle.py | 66 +- src/spotpy/algorithms/nsgaii.py | 317 +++--- src/spotpy/algorithms/padds.py | 337 ++++-- src/spotpy/algorithms/rope.py | 143 +-- src/spotpy/algorithms/sa.py | 43 +- src/spotpy/algorithms/sceua.py | 284 +++-- src/spotpy/analyser.py | 975 ++++++++++-------- src/spotpy/cli.py | 73 +- src/spotpy/database/__init__.py | 17 +- src/spotpy/database/base.py | 78 +- src/spotpy/database/csv.py | 27 +- src/spotpy/database/hdf5.py | 37 +- src/spotpy/database/ram.py | 22 +- src/spotpy/database/sql.py | 60 +- src/spotpy/describe.py | 93 +- src/spotpy/examples/__init__.py | 4 +- src/spotpy/examples/cmf_data/__init__.py | 4 +- src/spotpy/examples/hymod_exe/__init__.py | 4 +- src/spotpy/examples/hymod_python/__init__.py | 4 +- src/spotpy/examples/hymod_python/hymod.py | 41 +- src/spotpy/examples/hymod_unix/__init__.py | 4 +- src/spotpy/examples/spot_setup_ackley.py | 31 +- src/spotpy/examples/spot_setup_cmf1d.py | 153 ++- src/spotpy/examples/spot_setup_cmf_lumped.py | 65 +- src/spotpy/examples/spot_setup_dds.py | 143 ++- src/spotpy/examples/spot_setup_dtlz1.py | 50 +- src/spotpy/examples/spot_setup_griewank.py | 19 +- src/spotpy/examples/spot_setup_hymod_exe.py | 100 +- .../examples/spot_setup_hymod_python.py | 68 +- .../spot_setup_hymod_python_pareto.py | 49 +- src/spotpy/examples/spot_setup_hymod_unix.py | 100 +- src/spotpy/examples/spot_setup_rosenbrock.py | 29 +- .../examples/spot_setup_standardnormal.py | 27 +- src/spotpy/gui/mpl.py | 49 +- src/spotpy/hydrology/__init__.py | 4 +- src/spotpy/hydrology/signatures.py | 64 +- src/spotpy/likelihoods.py | 413 +++++--- src/spotpy/objectivefunctions.py | 211 ++-- src/spotpy/parallel/__init__.py | 4 +- src/spotpy/parallel/mpi.py | 18 +- src/spotpy/parallel/mproc.py | 10 +- src/spotpy/parallel/sequential.py | 19 +- src/spotpy/parallel/umproc.py | 17 +- src/spotpy/parameter.py | 255 +++-- 57 files changed, 3766 insertions(+), 2402 deletions(-) diff --git a/src/spotpy/__init__.py b/src/spotpy/__init__.py index f9e62400..22b920e6 100644 --- a/src/spotpy/__init__.py +++ b/src/spotpy/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -30,7 +30,7 @@ https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/tree/master/ Please cite our paper, if you are using SPOTPY. -''' +""" from . import algorithms # Contains all the different algorithms implemented in SPOTPY from . import ( analyser, # Contains some examples to analyse the results of the different algorithms diff --git a/src/spotpy/algorithms/__init__.py b/src/spotpy/algorithms/__init__.py index 57bb0753..427b32a5 100644 --- a/src/spotpy/algorithms/__init__.py +++ b/src/spotpy/algorithms/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -12,9 +12,7 @@ Imports the different algorithms from this package. To reduce dependencies, one may select here just the needed algorithm. -''' - - +""" from ._algorithm import _algorithm diff --git a/src/spotpy/algorithms/_algorithm.py b/src/spotpy/algorithms/_algorithm.py index ed7cc793..22890910 100644 --- a/src/spotpy/algorithms/_algorithm.py +++ b/src/spotpy/algorithms/_algorithm.py @@ -1,10 +1,10 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska This file holds the standards for every algorithm. -''' +""" import random import threading import time @@ -35,22 +35,24 @@ class _RunStatistic(object): """ def __init__(self, repetitions, algorithm_name, optimization_direction, parnames): - self.optimization_direction = optimization_direction #grid, mazimize, minimize - print('Initializing the ',algorithm_name,' with ',repetitions,' repetitions') - if optimization_direction == 'minimize': + self.optimization_direction = optimization_direction # grid, mazimize, minimize + print( + "Initializing the ", algorithm_name, " with ", repetitions, " repetitions" + ) + if optimization_direction == "minimize": self.compare = self.minimizer - print('The objective function will be minimized') - if optimization_direction == 'maximize': + print("The objective function will be minimized") + if optimization_direction == "maximize": self.compare = self.maximizer - print('The objective function will be maximized') - if optimization_direction == 'grid': + print("The objective function will be maximized") + if optimization_direction == "grid": self.compare = self.grid self.rep = 0 self.parnames = parnames - self.parameters= len(parnames) - self.params_min = [np.nan]*self.parameters - self.params_max = [np.nan]*self.parameters + self.parameters = len(parnames) + self.params_min = [np.nan] * self.parameters + self.params_max = [np.nan] * self.parameters self.objectivefunction_min = 1e308 self.objectivefunction_max = -1e308 self.starttime = time.time() @@ -77,17 +79,15 @@ def grid(self, objval, params): self.objectivefunction_max = objval self.params_max = list(params) - def __call__(self, objectivefunction, params, block_print=False): - self.rep+=1 - if type(objectivefunction) == type([]): #TODO: change to iterable + self.rep += 1 + if type(objectivefunction) == type([]): # TODO: change to iterable self.compare(objectivefunction[0], params) elif type(objectivefunction) == type(np.array([])): pass else: self.compare(objectivefunction, params) - if self.rep == self.repetitions: self.stop = True @@ -100,60 +100,83 @@ def print_status(self): # Refresh progressbar every two second if acttime - self.last_print >= 2: avg_time_per_run = (acttime - self.starttime) / (self.rep + 1) - timestr = time.strftime("%H:%M:%S", time.gmtime(round(avg_time_per_run * (self.repetitions - (self.rep + 1))))) - if self.optimization_direction == 'minimize': - text = '%i of %i, minimal objective function=%g, time remaining: %s' % ( - self.rep, self.repetitions, self.objectivefunction_min, timestr) - - if self.optimization_direction == 'maximize': - text = '%i of %i, maximal objective function=%g, time remaining: %s' % ( - self.rep, self.repetitions, self.objectivefunction_max, timestr) - - if self.optimization_direction == 'grid': - text = '%i of %i, min objf=%g, max objf=%g, time remaining: %s' % ( - self.rep, self.repetitions, self.objectivefunction_min, self.objectivefunction_max, timestr) + timestr = time.strftime( + "%H:%M:%S", + time.gmtime( + round(avg_time_per_run * (self.repetitions - (self.rep + 1))) + ), + ) + if self.optimization_direction == "minimize": + text = "%i of %i, minimal objective function=%g, time remaining: %s" % ( + self.rep, + self.repetitions, + self.objectivefunction_min, + timestr, + ) + + if self.optimization_direction == "maximize": + text = "%i of %i, maximal objective function=%g, time remaining: %s" % ( + self.rep, + self.repetitions, + self.objectivefunction_max, + timestr, + ) + + if self.optimization_direction == "grid": + text = "%i of %i, min objf=%g, max objf=%g, time remaining: %s" % ( + self.rep, + self.repetitions, + self.objectivefunction_min, + self.objectivefunction_max, + timestr, + ) print(text) self.last_print = time.time() def print_status_final(self): - print('\n*** Final SPOTPY summary ***') - print('Total Duration: ' + str(round((time.time() - self.starttime), 2)) + ' seconds') - print('Total Repetitions:', self.rep) - - if self.optimization_direction == 'minimize': - print('Minimal objective value: %g' % (self.objectivefunction_min)) - print('Corresponding parameter setting:') + print("\n*** Final SPOTPY summary ***") + print( + "Total Duration: " + + str(round((time.time() - self.starttime), 2)) + + " seconds" + ) + print("Total Repetitions:", self.rep) + + if self.optimization_direction == "minimize": + print("Minimal objective value: %g" % (self.objectivefunction_min)) + print("Corresponding parameter setting:") for i in range(self.parameters): - text = '%s: %g' % (self.parnames[i], self.params_min[i]) + text = "%s: %g" % (self.parnames[i], self.params_min[i]) print(text) - if self.optimization_direction == 'maximize': - print('Maximal objective value: %g' % (self.objectivefunction_max)) - print('Corresponding parameter setting:') + if self.optimization_direction == "maximize": + print("Maximal objective value: %g" % (self.objectivefunction_max)) + print("Corresponding parameter setting:") for i in range(self.parameters): - text = '%s: %g' % (self.parnames[i], self.params_max[i]) + text = "%s: %g" % (self.parnames[i], self.params_max[i]) print(text) - if self.optimization_direction == 'grid': - print('Minimal objective value: %g' % (self.objectivefunction_min)) - print('Corresponding parameter setting:') + if self.optimization_direction == "grid": + print("Minimal objective value: %g" % (self.objectivefunction_min)) + print("Corresponding parameter setting:") for i in range(self.parameters): - text = '%s: %g' % (self.parnames[i], self.params_min[i]) + text = "%s: %g" % (self.parnames[i], self.params_min[i]) print(text) - print('Maximal objective value: %g' % (self.objectivefunction_max)) - print('Corresponding parameter setting:') + print("Maximal objective value: %g" % (self.objectivefunction_max)) + print("Corresponding parameter setting:") for i in range(self.parameters): - text = '%s: %g' % (self.parnames[i], self.params_max[i]) + text = "%s: %g" % (self.parnames[i], self.params_max[i]) print(text) - print('******************************\n') - + print("******************************\n") def __repr__(self): - return 'Min objectivefunction: %g \n Max objectivefunction: %g' % ( - self.objectivefunction_min, self.objectivefunction_max) + return "Min objectivefunction: %g \n Max objectivefunction: %g" % ( + self.objectivefunction_min, + self.objectivefunction_max, + ) class _algorithm(object): @@ -199,17 +222,33 @@ class _algorithm(object): the algorithms uses the number in random_state as seed for numpy. This way stochastic processes can be reproduced. """ - _unaccepted_parameter_types = (parameter.List, ) - - def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, - dbappend=False, parallel='seq', save_sim=True, breakpoint=None, - backup_every_rep=100, save_threshold=-np.inf, db_precision=np.float32, - sim_timeout=None, random_state=None, optimization_direction='grid', algorithm_name=''): + _unaccepted_parameter_types = (parameter.List,) + + def __init__( + self, + spot_setup, + dbname=None, + dbformat=None, + dbinit=True, + dbappend=False, + parallel="seq", + save_sim=True, + breakpoint=None, + backup_every_rep=100, + save_threshold=-np.inf, + db_precision=np.float32, + sim_timeout=None, + random_state=None, + optimization_direction="grid", + algorithm_name="", + ): # Initialize the user defined setup class self.setup = spot_setup - param_info = parameter.get_parameters_array(self.setup, unaccepted_parameter_types=self._unaccepted_parameter_types) - self.all_params = param_info['random'] + param_info = parameter.get_parameters_array( + self.setup, unaccepted_parameter_types=self._unaccepted_parameter_types + ) + self.all_params = param_info["random"] self.constant_positions = parameter.get_constant_indices(spot_setup) if self.constant_positions: self.non_constant_positions = [] @@ -217,9 +256,9 @@ def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, if self.all_params[i] not in self.constant_positions: self.non_constant_positions.append(i) else: - self.non_constant_positions = np.arange(0,len(self.all_params)) + self.non_constant_positions = np.arange(0, len(self.all_params)) self.parameter = self.get_parameters - self.parnames = param_info['name'] + self.parnames = param_info["name"] self.algorithm_name = algorithm_name # Create a type to hold the parameter values using a namedtuple self.partype = parameter.ParameterSet(param_info) @@ -227,8 +266,8 @@ def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, self.evaluation = self.setup.evaluation() self.save_sim = save_sim self.optimization_direction = optimization_direction - self.dbname = dbname or 'customDb' - self.dbformat = dbformat or 'ram' + self.dbname = dbname or "customDb" + self.dbformat = dbformat or "ram" self.db_precision = db_precision self.breakpoint = breakpoint self.backup_every_rep = backup_every_rep @@ -239,48 +278,50 @@ def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, self.dbappend = dbappend # Set the random state - if random_state is None: #ToDo: Have to discuss if these 3 lines are neccessary. + if ( + random_state is None + ): # ToDo: Have to discuss if these 3 lines are neccessary. random_state = np.random.randint(low=0, high=2**30) - np.random.seed(random_state) #Both numpy.random and random or used in spotpy - random.seed(random_state) #Both numpy.random and random or used in spotpy - + np.random.seed(random_state) # Both numpy.random and random or used in spotpy + random.seed(random_state) # Both numpy.random and random or used in spotpy # If value is not None a timeout will set so that the simulation will break after sim_timeout seconds without return a value self.sim_timeout = sim_timeout self.save_threshold = save_threshold - self._return_all_likes = False #allows multi-objective calibration if set to True, is set by the algorithm + self._return_all_likes = False # allows multi-objective calibration if set to True, is set by the algorithm - if breakpoint == 'read' or breakpoint == 'readandwrite': - print('Reading backupfile') + if breakpoint == "read" or breakpoint == "readandwrite": + print("Reading backupfile") try: - open(self.dbname+'.break') + open(self.dbname + ".break") except FileNotFoundError: - print('Backupfile not found') + print("Backupfile not found") self.dbappend = True # Now a repeater (ForEach-object) is loaded # A repeater is a convinent wrapper to repeat tasks # We have the same interface for sequential and for parallel tasks - if parallel == 'seq': + if parallel == "seq": from spotpy.parallel.sequential import ForEach - elif parallel == 'mpi': + elif parallel == "mpi": from spotpy.parallel.mpi import ForEach # MPC is based on pathos mutiprocessing and uses ordered map, so results are given back in the order # as the parameters are - elif parallel == 'mpc': + elif parallel == "mpc": from spotpy.parallel.mproc import ForEach # UMPC is based on pathos mutiprocessing and uses unordered map, so results are given back in the order # as the subprocesses are finished which may speed up the whole simulation process but is not recommended if # objective functions do their calculation based on the order of the data because the order of the result is chaotic # and randomized - elif parallel == 'umpc': + elif parallel == "umpc": from spotpy.parallel.umproc import ForEach else: raise ValueError( - "'%s' is not a valid keyword for parallel processing" % parallel) + "'%s' is not a valid keyword for parallel processing" % parallel + ) # This is the repeater for the model runs. The simulate method does the work # If you need different tasks, the repeater can be pushed into a "phase" using the @@ -293,13 +334,14 @@ def __init__(self, spot_setup, dbname=None, dbformat=None, dbinit=True, self.like_struct_typ = type(1.1) def __str__(self): - return '{type}({mtype}())->{dbname}'.format( + return "{type}({mtype}())->{dbname}".format( type=type(self).__name__, mtype=type(self.setup).__name__, - dbname=self.dbname) + dbname=self.dbname, + ) def __repr__(self): - return '{type}()'.format(type=type(self).__name__) + return "{type}()".format(type=type(self).__name__) def get_parameters(self): """ @@ -309,8 +351,9 @@ def get_parameters(self): return pars[self.non_constant_positions] def set_repetiton(self, repetitions): - self.status = _RunStatistic(repetitions, self.algorithm_name, - self.optimization_direction, self.parnames) + self.status = _RunStatistic( + repetitions, self.algorithm_name, self.optimization_direction, self.parnames + ) # In MPI, this command will do nothing on the master process # but the worker processes are going to wait for jobs. # Hence the workers will only receive parameters for the @@ -325,20 +368,26 @@ def final_call(self): pass self.status.print_status_final() - def _init_database(self, like, randompar, simulations): if self.dbinit: - print('Initialize database...') - - self.datawriter = database.get_datawriter(self.dbformat, - self.dbname, self.parnames, like, randompar, simulations, - save_sim=self.save_sim, dbappend=self.dbappend, - dbinit=self.dbinit, db_precision=self.db_precision, - setup=self.setup) + print("Initialize database...") + + self.datawriter = database.get_datawriter( + self.dbformat, + self.dbname, + self.parnames, + like, + randompar, + simulations, + save_sim=self.save_sim, + dbappend=self.dbappend, + dbinit=self.dbinit, + db_precision=self.db_precision, + setup=self.setup, + ) self.dbinit = False - def __is_list_type(self, data): if type(data) == type: return data == list or data == type(np.array([])) @@ -350,49 +399,73 @@ def save(self, like, randompar, simulations, chains=1): self._init_database(like, randompar, simulations) # Test if like and the save threshold are float/list and compare accordingly if self.__is_list_type(like) and self.__is_list_type(self.save_threshold): - if all(i > j for i, j in zip(like, self.save_threshold)): #Compares list/list + if all( + i > j for i, j in zip(like, self.save_threshold) + ): # Compares list/list self.datawriter.save(like, randompar, simulations, chains=chains) - if (not self.__is_list_type(like)) and (not self.__is_list_type(self.save_threshold)): - if like>self.save_threshold: #Compares float/float + if (not self.__is_list_type(like)) and ( + not self.__is_list_type(self.save_threshold) + ): + if like > self.save_threshold: # Compares float/float self.datawriter.save(like, randompar, simulations, chains=chains) if self.__is_list_type(like) and (not self.__is_list_type(self.save_threshold)): - if like[0]>self.save_threshold: #Compares list/float + if like[0] > self.save_threshold: # Compares list/float self.datawriter.save(like, randompar, simulations, chains=chains) - if (not self.__is_list_type(like)) and self.__is_list_type(self.save_threshold): #Compares float/list + if (not self.__is_list_type(like)) and self.__is_list_type( + self.save_threshold + ): # Compares float/list if (like > self.save_threshold).all: self.datawriter.save(like, randompar, simulations, chains=chains) def read_breakdata(self, dbname): - ''' Read data from a pickle file if a breakpoint is set. - Reason: In case of incomplete optimizations, old data can be restored. ''' + """Read data from a pickle file if a breakpoint is set. + Reason: In case of incomplete optimizations, old data can be restored.""" import pickle - with open(dbname+'.break', 'rb') as breakfile: - work,backuptime,repos,obmin,obmax,pmin,pmax=pickle.load(breakfile) - self.status.starttime=self.status.starttime-backuptime - self.status.rep=repos - self.status.objectivefunction_min=obmin - self.status.objectivefunction_max=obmax - self.status.params_min=pmin - self.status.params_max=pmax + + with open(dbname + ".break", "rb") as breakfile: + work, backuptime, repos, obmin, obmax, pmin, pmax = pickle.load(breakfile) + self.status.starttime = self.status.starttime - backuptime + self.status.rep = repos + self.status.objectivefunction_min = obmin + self.status.objectivefunction_max = obmax + self.status.params_min = pmin + self.status.params_max = pmax return work def write_breakdata(self, dbname, work): - ''' Write data to a pickle file if a breakpoint has been set.''' + """Write data to a pickle file if a breakpoint has been set.""" import pickle - work=(work,self.status.last_print-self.status.starttime,self.status.rep,self.status.objectivefunction_min,self.status.objectivefunction_max,self.status.params_min,self.status.params_max) - with open(str(dbname)+'.break', 'wb') as breakfile: + + work = ( + work, + self.status.last_print - self.status.starttime, + self.status.rep, + self.status.objectivefunction_min, + self.status.objectivefunction_max, + self.status.params_min, + self.status.params_max, + ) + with open(str(dbname) + ".break", "wb") as breakfile: pickle.dump(work, breakfile) def getdata(self): return self.datawriter.getdata() def update_params(self, params): - #Add potential Constant parameters + # Add potential Constant parameters self.all_params[self.non_constant_positions] = params return self.all_params - - def postprocessing(self, rep, params, simulation, chains=1, save_run=True, negativlike=False, block_print=False): # TODO: rep not necessaray + def postprocessing( + self, + rep, + params, + simulation, + chains=1, + save_run=True, + negativlike=False, + block_print=False, + ): # TODO: rep not necessaray params = self.update_params(params) if negativlike is True: @@ -404,7 +477,7 @@ def postprocessing(self, rep, params, simulation, chains=1, save_run=True, negat # This is needed as some algorithms just want to know the fitness, # before they actually save the run in a database (e.g. sce-ua) - self.status(like,params,block_print=block_print) + self.status(like, params, block_print=block_print) if save_run is True and simulation is not None: self.save(like, params, simulations=simulation, chains=chains) if self._return_all_likes: @@ -413,21 +486,26 @@ def postprocessing(self, rep, params, simulation, chains=1, save_run=True, negat try: iter(like) return like[0] - except TypeError: # Happens if iter(like) fails, i.e. if like is just one value + except TypeError: # Happens if iter(like) fails, i.e. if like is just one value return like - def getfitness(self, simulation, params): """ Calls the user defined spot_setup objectivefunction """ try: - #print('Using parameters in fitness function') - return self.setup.objectivefunction(evaluation=self.evaluation, simulation=simulation, params = (params,self.parnames)) - - except TypeError: # Happens if the user does not allow to pass parameter in the spot_setup.objectivefunction - #print('Not using parameters in fitness function') - return self.setup.objectivefunction(evaluation=self.evaluation, simulation=simulation) + # print('Using parameters in fitness function') + return self.setup.objectivefunction( + evaluation=self.evaluation, + simulation=simulation, + params=(params, self.parnames), + ) + + except TypeError: # Happens if the user does not allow to pass parameter in the spot_setup.objectivefunction + # print('Not using parameters in fitness function') + return self.setup.objectivefunction( + evaluation=self.evaluation, simulation=simulation + ) def simulate(self, id_params_tuple): """This is a simple wrapper of the model, returning the result together with @@ -435,12 +513,14 @@ def simulate(self, id_params_tuple): can mix up the ordering of runs """ id, params = id_params_tuple - self.all_params[self.non_constant_positions] = params #TODO: List parameters are not updated if not accepted for the algorithm, we may have to warn/error if list is given + self.all_params[ + self.non_constant_positions + ] = params # TODO: List parameters are not updated if not accepted for the algorithm, we may have to warn/error if list is given all_params = self.all_params if self.sim_timeout: # we need a layer to fetch returned data from a threaded process into a queue. - def model_layer(q,all_params): + def model_layer(q, all_params): # Call self.model with a namedtuple instead of another sequence q.put(self.setup.simulation(self.partype(*all_params))) diff --git a/src/spotpy/algorithms/abc.py b/src/spotpy/algorithms/abc.py index c15de760..f0f67b85 100644 --- a/src/spotpy/algorithms/abc.py +++ b/src/spotpy/algorithms/abc.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Patrick Lauer -''' +""" import random @@ -52,12 +52,13 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'Artificial Bee Colony (ABC) algorithm' + kwargs["optimization_direction"] = "maximize" + kwargs["algorithm_name"] = "Artificial Bee Colony (ABC) algorithm" super(abc, self).__init__(*args, **kwargs) - - def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, limit=24): + def sample( + self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, limit=24 + ): """ @@ -77,45 +78,49 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li sets the limit """ self.set_repetiton(repetitions) - print('Starting the ABC algotrithm with '+str(repetitions)+ ' repetitions...') + print( + "Starting the ABC algotrithm with " + str(repetitions) + " repetitions..." + ) # Initialize ABC parameters: - randompar = self.parameter()['random'] + randompar = self.parameter()["random"] self.nopt = randompar.size random.seed() if ownlimit == True: self.limit = limit else: self.limit = eb - lb, ub = self.parameter()['minbound'], self.parameter()['maxbound'] + lb, ub = self.parameter()["minbound"], self.parameter()["maxbound"] # Initialization work = [] icall = 0 gnrng = 1e100 # Calculate the objective function - param_generator = ( - (rep, self.parameter()['random']) for rep in range(eb)) + param_generator = ((rep, self.parameter()["random"]) for rep in range(eb)) for rep, randompar, simulations in self.repeat(param_generator): # Calculate fitness - like = self.postprocessing(rep, randompar, simulations, chains = 1, negativlike=True) + like = self.postprocessing( + rep, randompar, simulations, chains=1, negativlike=True + ) c = 0 p = 0 work.append([like, randompar, like, randompar, c, p]) - icall +=1 + icall += 1 if self.status.stop: - print('Stopping sampling') + print("Stopping sampling") break while icall < repetitions and gnrng > peps: psum = 0 - # Employed bee phase + # Employed bee phase # Generate new input parameters for i, val in enumerate(work): k = i while k == i: k = random.randint(0, (eb - 1)) j = random.randint(0, (self.nopt - 1)) - work[i][3][j] = work[i][1][j] + \ - random.uniform(-a, a) * (work[i][1][j] - work[k][1][j]) + work[i][3][j] = work[i][1][j] + random.uniform(-a, a) * ( + work[i][1][j] - work[k][1][j] + ) if work[i][3][j] < lb[j]: work[i][3][j] = lb[j] if work[i][3][j] > ub[j]: @@ -125,7 +130,9 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li param_generator = ((rep, work[rep][3]) for rep in range(eb)) for rep, randompar, simulations in self.repeat(param_generator): # Calculate fitness - clike = self.postprocessing(icall+eb, randompar, simulations, chains = 2, negativlike=True) + clike = self.postprocessing( + icall + eb, randompar, simulations, chains=2, negativlike=True + ) if clike > work[rep][0]: work[rep][1] = work[rep][3] work[rep][0] = clike @@ -134,16 +141,16 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li work[rep][4] = work[rep][4] + 1 icall += 1 if self.status.stop: - print('Stopping samplig') - break # Probability distribution for roulette wheel selection + print("Stopping samplig") + break # Probability distribution for roulette wheel selection bn = [] for i, val in enumerate(work): psum = psum + (1 / work[i][0]) for i, val in enumerate(work): - work[i][5] = ((1 / work[i][0]) / psum) + work[i][5] = (1 / work[i][0]) / psum bn.append(work[i][5]) bounds = np.cumsum(bn) - # Onlooker bee phase + # Onlooker bee phase # Roulette wheel selection for i, val in enumerate(work): pn = random.uniform(0, 1) @@ -155,14 +162,16 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li z = t break j = random.randint(0, (self.nopt - 1)) - # Generate new input parameters + # Generate new input parameters try: - work[i][3][j] = work[z][1][j] + \ - random.uniform(-a, a) * (work[z][1][j] - work[k][1][j]) + work[i][3][j] = work[z][1][j] + random.uniform(-a, a) * ( + work[z][1][j] - work[k][1][j] + ) except UnboundLocalError: - z=0 - work[i][3][j] = work[z][1][j] + \ - random.uniform(-a, a) * (work[z][1][j] - work[k][1][j]) + z = 0 + work[i][3][j] = work[z][1][j] + random.uniform(-a, a) * ( + work[z][1][j] - work[k][1][j] + ) if work[i][3][j] < lb[j]: work[i][3][j] = lb[j] if work[i][3][j] > ub[j]: @@ -171,7 +180,9 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li param_generator = ((rep, work[rep][3]) for rep in range(eb)) for rep, randompar, simulations in self.repeat(param_generator): # Calculate fitness - clike = self.postprocessing(icall+eb, randompar, simulations, chains = 3, negativlike=True) + clike = self.postprocessing( + icall + eb, randompar, simulations, chains=3, negativlike=True + ) if clike > work[rep][0]: work[rep][1] = work[rep][3] work[rep][0] = clike @@ -180,30 +191,32 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, ownlimit=False, li work[rep][4] = work[rep][4] + 1 icall += 1 if self.status.stop: - print('Stopping samplig') + print("Stopping samplig") break - # Scout bee phase + # Scout bee phase for i, val in enumerate(work): if work[i][4] >= self.limit: - work[i][1] = self.parameter()['random'] + work[i][1] = self.parameter()["random"] work[i][4] = 0 - t, work[i][0], simulations = self.simulate( - (icall, work[i][1])) - clike = self.postprocessing(icall+eb, randompar, simulations, chains = 4, negativlike=True) + t, work[i][0], simulations = self.simulate((icall, work[i][1])) + clike = self.postprocessing( + icall + eb, randompar, simulations, chains=4, negativlike=True + ) work[i][0] = clike icall += 1 if self.status.stop: - print('Stopping samplig') + print("Stopping samplig") break gnrng = -self.status.objectivefunction_max if icall >= repetitions: - print('*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT') - print('ON THE MAXIMUM NUMBER OF TRIALS ') + print("*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT") + print("ON THE MAXIMUM NUMBER OF TRIALS ") print(repetitions) - print('HAS BEEN EXCEEDED.') + print("HAS BEEN EXCEEDED.") if gnrng < peps: print( - 'THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE AT RUN') + "THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE AT RUN" + ) print(icall) self.final_call() diff --git a/src/spotpy/algorithms/dds.py b/src/spotpy/algorithms/dds.py index 2777680e..fe5c31d0 100644 --- a/src/spotpy/algorithms/dds.py +++ b/src/spotpy/algorithms/dds.py @@ -7,8 +7,8 @@ class DDSGenerator: """ - This class is used by the DDS algorithm to generate a new sample of parameters based on the current one. - Current parameter are exchanged in `ParameterSet` objects. + This class is used by the DDS algorithm to generate a new sample of parameters based on the current one. + Current parameter are exchanged in `ParameterSet` objects. """ def __init__(self, np_random): @@ -119,7 +119,9 @@ def neigh_value_discrete(self, s, s_min, s_max, r): s_new = s_max s_new = np.round(s_new) # New value must be integer - if s_new == s: # pick a number between s_max and s_min by a Uniform distribution + if ( + s_new == s + ): # pick a number between s_max and s_min by a Uniform distribution sample = s_min - 1 + np.ceil((s_max - s_min) * self.np_random.rand()) if sample < s: s_new = sample @@ -146,24 +148,24 @@ def neigh_value_mixed(self, x_curr, r, j, x_min, x_max): class dds(_algorithm): """ - Implements the Dynamically dimensioned search algorithm for computationally efficient watershed model - calibration - by - Tolson, B. A. and C. A. Shoemaker (2007), Dynamically dimensioned search algorithm for computationally efficient - watershed model calibration, Water Resources Research, 43, W01413, 10.1029/2005WR004723. - Asadzadeh, M. and B. A. Tolson (2013), Pareto archived dynamically dimensioned search with hypervolume-based - selection for multi-objective optimization, Engineering Optimization. 10.1080/0305215X.2012.748046. + Implements the Dynamically dimensioned search algorithm for computationally efficient watershed model + calibration + by + Tolson, B. A. and C. A. Shoemaker (2007), Dynamically dimensioned search algorithm for computationally efficient + watershed model calibration, Water Resources Research, 43, W01413, 10.1029/2005WR004723. + Asadzadeh, M. and B. A. Tolson (2013), Pareto archived dynamically dimensioned search with hypervolume-based + selection for multi-objective optimization, Engineering Optimization. 10.1080/0305215X.2012.748046. - http://www.civil.uwaterloo.ca/btolson/software.aspx + http://www.civil.uwaterloo.ca/btolson/software.aspx - Method: - "The DDS algorithm is a novel and simple stochastic single-solution based heuristic global search - algorithm that was developed for the purpose of finding good global solutions - (as opposed to globally optimal solutions) within a specified maximum function (or model) evaluation limit." - (Page 3) + Method: + "The DDS algorithm is a novel and simple stochastic single-solution based heuristic global search + algorithm that was developed for the purpose of finding good global solutions + (as opposed to globally optimal solutions) within a specified maximum function (or model) evaluation limit." + (Page 3) - The DDS algorithm is a simple greedy algorithm, always using the best solution (min or max) from the current - point of view. This may not lead to the global optimization. + The DDS algorithm is a simple greedy algorithm, always using the best solution (min or max) from the current + point of view. This may not lead to the global optimization. """ @@ -208,13 +210,13 @@ def __init__(self, *args, **kwargs): self.r = kwargs.pop("r") except KeyError: self.r = 0.2 # default value - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'Dynamically Dimensioned Search (DDS) algorithm' + kwargs["optimization_direction"] = "maximize" + kwargs["algorithm_name"] = "Dynamically Dimensioned Search (DDS) algorithm" super(dds, self).__init__(*args, **kwargs) self.np_random = np.random - #self.status.params_max = ParameterSet(self.parameter()) + # self.status.params_max = ParameterSet(self.parameter()) # self.generator_repetitions will be set in `sample` and is needed to generate a # generator which sends back actual parameter s_test @@ -232,7 +234,9 @@ def get_next_x_curr(self): """ # We need to shift position and length of the sampling process for rep in range(self.generator_repetitions): - yield rep, self.calculate_next_s_test(self.params_max, rep, self.generator_repetitions, self.r) + yield rep, self.calculate_next_s_test( + self.params_max, rep, self.generator_repetitions, self.r + ) def sample(self, repetitions, trials=1, x_initial=np.array([])): """ @@ -273,33 +277,50 @@ def sample(self, repetitions, trials=1, x_initial=np.array([])): debug_results = [] self.set_repetiton(repetitions) - self.min_bound, self.max_bound = self.parameter( - )['minbound'], self.parameter()['maxbound'] - print('Starting the DDS algotrithm with '+str(repetitions)+ ' repetitions...') - - number_of_parameters = self.status.parameters # number_of_parameters is the amount of parameters + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) + print( + "Starting the DDS algotrithm with " + str(repetitions) + " repetitions..." + ) + + number_of_parameters = ( + self.status.parameters + ) # number_of_parameters is the amount of parameters if len(x_initial) == 0: initial_iterations = int(np.max([5, round(0.005 * repetitions)])) elif len(x_initial) != number_of_parameters: - raise ValueError("User specified 'x_initial' has not the same length as available parameters") + raise ValueError( + "User specified 'x_initial' has not the same length as available parameters" + ) else: initial_iterations = 1 x_initial = np.array(x_initial) - if not (np.all(x_initial <= self.max_bound) and np.all( - x_initial >= self.min_bound)): - raise ValueError("User specified 'x_initial' but the values are not within the parameter range") + if not ( + np.all(x_initial <= self.max_bound) + and np.all(x_initial >= self.min_bound) + ): + raise ValueError( + "User specified 'x_initial' but the values are not within the parameter range" + ) # Users can define trial runs in within "repetition" times the algorithm will be executed for trial in range(trials): - #objectivefunction_max = -1e308 + # objectivefunction_max = -1e308 params_max = x_initial # repitionno_best saves on which iteration the best parameter configuration has been found repitionno_best = initial_iterations # needed to initialize variable and avoid code failure when small # iterations - params_max, repetions_left, objectivefunction_max = self.calc_initial_para_configuration(initial_iterations, trial, - repetitions, x_initial) + ( + params_max, + repetions_left, + objectivefunction_max, + ) = self.calc_initial_para_configuration( + initial_iterations, trial, repetitions, x_initial + ) params_max = self.fix_status_params_format(params_max) - trial_best_value = list(params_max)#self.status.params_max.copy() + trial_best_value = list(params_max) # self.status.params_max.copy() # important to set this field `generator_repetitions` so that # method `get_next_s_test` can generate exact parameters @@ -313,9 +334,20 @@ def sample(self, repetitions, trials=1, x_initial=np.array([])): self.params_max = list(x_curr) self.params_max = self.fix_status_params_format(self.params_max) - print('Best solution found has obj function value of ' + str(objectivefunction_max) + ' at ' - + str(repitionno_best) + '\n\n') - debug_results.append({"sbest": self.params_max, "trial_initial": trial_best_value,"objfunc_val": objectivefunction_max}) + print( + "Best solution found has obj function value of " + + str(objectivefunction_max) + + " at " + + str(repitionno_best) + + "\n\n" + ) + debug_results.append( + { + "sbest": self.params_max, + "trial_initial": trial_best_value, + "objfunc_val": objectivefunction_max, + } + ) self.final_call() return debug_results @@ -324,8 +356,10 @@ def fix_status_params_format(self, params_max): start_params.set_by_array([j for j in params_max]) return start_params - def calc_initial_para_configuration(self, initial_iterations, trial, repetitions, x_initial): - #max_bound, min_bound = self.status.params_max.maxbound, self.status.params_max.minbound + def calc_initial_para_configuration( + self, initial_iterations, trial, repetitions, x_initial + ): + # max_bound, min_bound = self.status.params_max.maxbound, self.status.params_max.minbound parameter_bound_range = self.max_bound - self.min_bound number_of_parameters = len(parameter_bound_range) discrete_flag = ParameterSet(self.parameter()).as_int @@ -336,20 +370,41 @@ def calc_initial_para_configuration(self, initial_iterations, trial, repetitions # by trying which randomized generated input matches best # initial_iterations is the number of function evaluations to initialize the DDS algorithm solution if initial_iterations > 1: - print('Finding best starting point for trial ' + str(trial + 1) + ' using ' + str( - initial_iterations) + ' random samples.') - repetions_left = repetitions - initial_iterations # use this to reduce number of fevals in DDS loop + print( + "Finding best starting point for trial " + + str(trial + 1) + + " using " + + str(initial_iterations) + + " random samples." + ) + repetions_left = ( + repetitions - initial_iterations + ) # use this to reduce number of fevals in DDS loop if repetions_left <= 0: - raise ValueError('# Initialization samples >= Max # function evaluations.') + raise ValueError( + "# Initialization samples >= Max # function evaluations." + ) starting_generator = ( - (rep, [self.np_random.randint(int(self.min_bound[j]), int(self.max_bound[j]) + 1) if - discrete_flag[j] else self.min_bound[j] + parameter_bound_range[j] * self.np_random.rand() - for j in - range(number_of_parameters)]) for rep in range(int(initial_iterations))) + ( + rep, + [ + self.np_random.randint( + int(self.min_bound[j]), int(self.max_bound[j]) + 1 + ) + if discrete_flag[j] + else self.min_bound[j] + + parameter_bound_range[j] * self.np_random.rand() + for j in range(number_of_parameters) + ], + ) + for rep in range(int(initial_iterations)) + ) for rep, x_curr, simulations in self.repeat(starting_generator): - like = self.postprocessing(rep, x_curr, simulations) # get obj function value + like = self.postprocessing( + rep, x_curr, simulations + ) # get obj function value # status setting update if like > objectivefunction_max: objectivefunction_max = like @@ -357,13 +412,17 @@ def calc_initial_para_configuration(self, initial_iterations, trial, repetitions params_max = self.fix_status_params_format(params_max) else: # now initial_iterations=1, using a user supplied initial solution. Calculate obj func value. - repetions_left = repetitions - 1 # use this to reduce number of fevals in DDS loop - rep, x_test_param, simulations = self.simulate((0, x_initial)) # get from the inputs + repetions_left = ( + repetitions - 1 + ) # use this to reduce number of fevals in DDS loop + rep, x_test_param, simulations = self.simulate( + (0, x_initial) + ) # get from the inputs like = self.postprocessing(rep, x_test_param, simulations) if like > objectivefunction_max: - objectivefunction_max = like - params_max = list(x_test_param) - params_max = self.fix_status_params_format(params_max) + objectivefunction_max = like + params_max = list(x_test_param) + params_max = self.fix_status_params_format(params_max) return params_max, repetions_left, objectivefunction_max def calculate_next_s_test(self, previous_x_curr, rep, rep_limit, r): @@ -385,22 +444,35 @@ def calculate_next_s_test(self, previous_x_curr, rep, rep_limit, r): :return: next parameter set """ amount_params = len(previous_x_curr) - new_x_curr = previous_x_curr.copy() # define new_x_curr initially as current (previous_x_curr for greedy) + new_x_curr = ( + previous_x_curr.copy() + ) # define new_x_curr initially as current (previous_x_curr for greedy) randompar = self.np_random.rand(amount_params) probability_neighborhood = 1.0 - np.log(rep + 1) / np.log(rep_limit) dvn_count = 0 # counter for how many decision variables vary in neighbour for j in range(amount_params): - if randompar[j] < probability_neighborhood: # then j th DV selected to vary in neighbour + if ( + randompar[j] < probability_neighborhood + ): # then j th DV selected to vary in neighbour dvn_count = dvn_count + 1 - new_value = self.dds_generator.neigh_value_mixed(previous_x_curr, r, j, self.min_bound[j],self.max_bound[j]) + new_value = self.dds_generator.neigh_value_mixed( + previous_x_curr, r, j, self.min_bound[j], self.max_bound[j] + ) new_x_curr[j] = new_value # change relevant dec var value in x_curr if dvn_count == 0: # no DVs selected at random, so select ONE dec_var = int(np.ceil(amount_params * self.np_random.rand())) - 1 - new_value = self.dds_generator.neigh_value_mixed(previous_x_curr, r, dec_var, self.min_bound[dec_var], - self.max_bound[dec_var]) - new_x_curr[dec_var] = new_value # change relevant decision variable value in s_test + new_value = self.dds_generator.neigh_value_mixed( + previous_x_curr, + r, + dec_var, + self.min_bound[dec_var], + self.max_bound[dec_var], + ) + new_x_curr[ + dec_var + ] = new_value # change relevant decision variable value in s_test return new_x_curr diff --git a/src/spotpy/algorithms/demcz.py b/src/spotpy/algorithms/demcz.py index 0b5cf52a..b3fef8fa 100644 --- a/src/spotpy/algorithms/demcz.py +++ b/src/spotpy/algorithms/demcz.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import numpy as np @@ -57,7 +57,6 @@ class demcz(_algorithm): WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. """ - def __init__(self, *args, **kwargs): """ Input @@ -90,9 +89,11 @@ def __init__(self, *args, **kwargs): save_sim: boolean * True: Simulation results will be saved * False: Simulationt results will not be saved - """ - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'Differential Evolution Markov Chain (DE-MC) algorithm' + """ + kwargs["optimization_direction"] = "maximize" + kwargs[ + "algorithm_name" + ] = "Differential Evolution Markov Chain (DE-MC) algorithm" super(demcz, self).__init__(*args, **kwargs) def check_par_validity(self, par): @@ -103,13 +104,23 @@ def check_par_validity(self, par): if par[i] > self.max_bound[i]: par[i] = self.max_bound[i] else: - print('ERROR Bounds have not the same lenghts as Parameterarray') + print("ERROR Bounds have not the same lenghts as Parameterarray") return par - def sample(self, repetitions, nChains=3, burnIn=100, thin=1, - convergenceCriteria=.8, variables_of_interest=None, - DEpairs=2, adaptationRate='auto', eps=5e-2, - mConvergence=True, mAccept=True): + def sample( + self, + repetitions, + nChains=3, + burnIn=100, + thin=1, + convergenceCriteria=0.8, + variables_of_interest=None, + DEpairs=2, + adaptationRate="auto", + eps=5e-2, + mConvergence=True, + mAccept=True, + ): """ Samples from a posterior distribution using DREAM. @@ -132,15 +143,19 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, """ self.set_repetiton(repetitions) - print('Starting the DEMCz algotrithm with '+str(repetitions)+ ' repetitions...') - - self.min_bound, self.max_bound = self.parameter( - )['minbound'], self.parameter()['maxbound'] + print( + "Starting the DEMCz algotrithm with " + str(repetitions) + " repetitions..." + ) + + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) repetitions = int(repetitions / nChains) ndraw_max = repetitions * nChains maxChainDraws = int(ndraw_max / nChains) - dimensions = len(self.parameter()['random']) + dimensions = len(self.parameter()["random"]) # minbound,maxbound=self.find_min_max() # select variables if necessary @@ -151,15 +166,15 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, else: slices = [slice(None, None)] - # make a list of starting chains that at least span the dimension space # in this case it will be of size 2*dim nSeedIterations = max(int(np.ceil(dimensions * 2 / nChains)), 2) # init a simulationhistory instance - history = _SimulationHistory(maxChainDraws + nSeedIterations, - nChains, dimensions) - history.add_group('interest', slices) + history = _SimulationHistory( + maxChainDraws + nSeedIterations, nChains, dimensions + ) + history.add_group("interest", slices) ### BURN_IN burnInpar = [np.zeros((nChains, dimensions))] * nSeedIterations @@ -168,8 +183,8 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, simulationlist = [] old_like = np.empty(nChains) param_generator = ( - (rep, self.parameter()['random']) for rep in range(int(nChains))) - + (rep, self.parameter()["random"]) for rep in range(int(nChains)) + ) for rep, vector, simulations in self.repeat(param_generator): burnInpar[i][rep] = vector @@ -207,7 +222,7 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, while cur_iter < maxChainDraws: print(cur_iter, burnIn) if cur_iter == burnIn: - print('starting') + print("starting") history.start_sampling() # every5th iteration allow a big jump @@ -218,19 +233,25 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, if cur_iter >= burnIn: proposalVectors = _dream_proposals( - currentVectors, history, dimensions, nChains, DEpairs, gamma, .05, eps) + currentVectors, + history, + dimensions, + nChains, + DEpairs, + gamma, + 0.05, + eps, + ) for i in range(len(proposalVectors)): - proposalVectors[i] = self.check_par_validity( - proposalVectors[i]) + proposalVectors[i] = self.check_par_validity(proposalVectors[i]) # print proposalVectors else: proposalVectors = [] for i in range(nChains): - proposalVectors.append(self.parameter()['random']) - proposalVectors[i] = self.check_par_validity( - proposalVectors[i]) + proposalVectors.append(self.parameter()["random"]) + proposalVectors[i] = self.check_par_validity(proposalVectors[i]) - # if self.bounds_ok(minbound,maxbound,proposalVectors,nChains): + # if self.bounds_ok(minbound,maxbound,proposalVectors,nChains): proposalLogPs = [] old_simulationlist = simulationlist old_likelist = self._logPs[-1] @@ -238,10 +259,16 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, new_likelist = [] param_generator = ( - (rep, list(proposalVectors[rep])) for rep in range(int(nChains))) + (rep, list(proposalVectors[rep])) for rep in range(int(nChains)) + ) for rep, vector, simulations in self.repeat(param_generator): new_simulationlist.append(simulations) - like = self.postprocessing(cur_iter+nSeedIterations, list(vector), simulations, chains=rep) + like = self.postprocessing( + cur_iter + nSeedIterations, + list(vector), + simulations, + chains=rep, + ) self._logPs.append(like) new_likelist.append(like) proposalLogPs.append(like) @@ -253,36 +280,43 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, # apply the metrop decision to decide whether to accept or reject # each chain proposal decisions, acceptance = self._metropolis_hastings( - currentLogPs, proposalLogPs, nChains) + currentLogPs, proposalLogPs, nChains + ) self._update_accepts_ratio(accepts_ratio_weighting, acceptance) # choose from list of possible choices if 1d_decision is True at # specific index, else use default choice # np.choose(1d_decision[:,None], (list of possible choices, default # choice) - save_likes=[] - save_pars=[] - save_sims=[] + save_likes = [] + save_pars = [] + save_sims = [] for curchain in range(nChains): if decisions[curchain]: - save_likes.append(float(new_likelist[curchain])) - old_like[curchain]=float(new_likelist[curchain]) - save_pars.append(proposalVectors[curchain]) - save_sims.append(new_simulationlist[curchain]) + save_likes.append(float(new_likelist[curchain])) + old_like[curchain] = float(new_likelist[curchain]) + save_pars.append(proposalVectors[curchain]) + save_sims.append(new_simulationlist[curchain]) else: - save_likes.append(old_like[curchain]) - save_pars.append(currentVectors[curchain]) - save_sims.append(old_simulationlist[curchain]) + save_likes.append(old_like[curchain]) + save_pars.append(currentVectors[curchain]) + save_sims.append(old_simulationlist[curchain]) currentVectors = np.choose( - decisions[:, np.newaxis], (currentVectors, proposalVectors)) + decisions[:, np.newaxis], (currentVectors, proposalVectors) + ) currentLogPs = np.choose(decisions, (currentLogPs, proposalLogPs)) - simulationlist = [[new_simulationlist, old_simulationlist][ - int(x)][ix] for ix, x in enumerate(decisions)] + simulationlist = [ + [new_simulationlist, old_simulationlist][int(x)][ix] + for ix, x in enumerate(decisions) + ] likelist = list( - np.choose(decisions[:, np.newaxis], (new_likelist, old_likelist))) + np.choose( + decisions[:, np.newaxis], (new_likelist, old_likelist) + ) + ) # we only want to recalculate convergence criteria when we are past # the burn in period @@ -292,24 +326,33 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, historyStartMovementRate = adaptationRate # try to adapt more when the acceptance rate is low and less # when it is high - if adaptationRate == 'auto': + if adaptationRate == "auto": historyStartMovementRate = min( - (.234 / self.accepts_ratio) * .5, .95) + (0.234 / self.accepts_ratio) * 0.5, 0.95 + ) history.record( - currentVectors, currentLogPs, historyStartMovementRate, grConvergence=grConvergence.R) - - - if history.nsamples > 0 and cur_iter > lastRecalculation * 1.1 and history.nsequence_histories > dimensions: + currentVectors, + currentLogPs, + historyStartMovementRate, + grConvergence=grConvergence.R, + ) + + if ( + history.nsamples > 0 + and cur_iter > lastRecalculation * 1.1 + and history.nsequence_histories > dimensions + ): lastRecalculation = cur_iter grConvergence.update(history) - covConvergence.update(history, 'all') - covConvergence.update(history, 'interest') + covConvergence.update(history, "all") + covConvergence.update(history, "interest") if all(grConvergence.R < convergenceCriteria): cur_iter = maxChainDraws print( - 'All chains fullfil the convergence criteria. Sampling stopped.') - cur_iter+=1 + "All chains fullfil the convergence criteria. Sampling stopped." + ) + cur_iter += 1 # 3) finalize # only make the second half of draws available because that's the only @@ -319,23 +362,25 @@ def sample(self, repetitions, nChains=3, burnIn=100, thin=1, self.iter = cur_iter self.burnIn = burnIn self.R = grConvergence.R - text = 'Gelman Rubin R=' + str(self.R) + text = "Gelman Rubin R=" + str(self.R) print(text) self.status.rep = self.status.repetitions self.final_call() - def _update_accepts_ratio(self, weighting, acceptances): - self.accepts_ratio = weighting * \ - np.mean(acceptances) + (1 - weighting) * self.accepts_ratio + self.accepts_ratio = ( + weighting * np.mean(acceptances) + (1 - weighting) * self.accepts_ratio + ) - def _metropolis_hastings(self, currentLogPs, proposalLogPs, nChains, - jumpLogP=0, reverseJumpLogP=0): + def _metropolis_hastings( + self, currentLogPs, proposalLogPs, nChains, jumpLogP=0, reverseJumpLogP=0 + ): """ makes a decision about whether the proposed vector should be accepted """ - logMetropHastRatio = (np.array( - proposalLogPs) - np.array(currentLogPs)) # + (reverseJumpLogP - jumpLogP) + logMetropHastRatio = np.array(proposalLogPs) - np.array( + currentLogPs + ) # + (reverseJumpLogP - jumpLogP) decision = np.log(np.random.uniform(size=nChains)) < logMetropHastRatio # replace values which ecoures an overflow for e^x with 100 @@ -347,13 +392,11 @@ def _metropolis_hastings(self, currentLogPs, proposalLogPs, nChains, class _SimulationHistory(object): - group_indicies = {'all': slice(None, None)} + group_indicies = {"all": slice(None, None)} def __init__(self, maxChainDraws, nChains, dimensions): - self._combined_history = np.zeros( - (nChains * maxChainDraws, dimensions)) - self._sequence_histories = np.zeros( - (nChains, dimensions, maxChainDraws)) + self._combined_history = np.zeros((nChains * maxChainDraws, dimensions)) + self._sequence_histories = np.zeros((nChains, dimensions, maxChainDraws)) self._logPSequences = np.zeros((nChains, maxChainDraws)) self._logPHistory = np.zeros(nChains * maxChainDraws) self.r_hat = [] * dimensions @@ -377,17 +420,23 @@ def record(self, vectors, logPs, increment, grConvergence=None): self._record(vectors, logPs, increment, grConvergence) else: for i in range(vectors.shape[2]): - self._record( - vectors[:, :, i], logPs[:, i], increment, grConvergence) + self._record(vectors[:, :, i], logPs[:, i], increment, grConvergence) def _record(self, vectors, logPs, increment, grConvergence): self._sequence_histories[:, :, self.relevantHistoryEnd] = vectors - self._combined_history[(self.relevantHistoryEnd * self._nChains):( - self.relevantHistoryEnd * self._nChains + self._nChains), :] = vectors + self._combined_history[ + (self.relevantHistoryEnd * self._nChains) : ( + self.relevantHistoryEnd * self._nChains + self._nChains + ), + :, + ] = vectors self._logPSequences[:, self.relevantHistoryEnd] = logPs - self._logPHistory[(self.relevantHistoryEnd * self._nChains): - (self.relevantHistoryEnd * self._nChains + self._nChains)] = logPs + self._logPHistory[ + (self.relevantHistoryEnd * self._nChains) : ( + self.relevantHistoryEnd * self._nChains + self._nChains + ) + ] = logPs self.relevantHistoryEnd += 1 if np.isnan(increment): self.relevantHistoryStart += 0 @@ -395,16 +444,19 @@ def _record(self, vectors, logPs, increment, grConvergence): self.relevantHistoryStart += increment self.r_hat.append(grConvergence) - def start_sampling(self): self._sampling_start = self.relevantHistoryEnd @property def sequence_histories(self): - return self.group_sequence_histories('all') + return self.group_sequence_histories("all") def group_sequence_histories(self, name): - return self._sequence_histories[:, self.group_indicies[name], int(np.ceil(self.relevantHistoryStart)):self.relevantHistoryEnd] + return self._sequence_histories[ + :, + self.group_indicies[name], + int(np.ceil(self.relevantHistoryStart)) : self.relevantHistoryEnd, + ] @property def nsequence_histories(self): @@ -412,10 +464,15 @@ def nsequence_histories(self): @property def combined_history(self): - return self.group_combined_history('all') + return self.group_combined_history("all") def group_combined_history(self, name): - return self._combined_history[(int(np.ceil(self.relevantHistoryStart)) * self._nChains):(self.relevantHistoryEnd * self._nChains), self.group_indicies[name]] + return self._combined_history[ + (int(np.ceil(self.relevantHistoryStart)) * self._nChains) : ( + self.relevantHistoryEnd * self._nChains + ), + self.group_indicies[name], + ] @property def ncombined_history(self): @@ -423,13 +480,15 @@ def ncombined_history(self): @property def samples(self): - return self.group_samples('all') + return self.group_samples("all") def group_samples(self, name): if self._sampling_start < np.Inf: start = int( - max(np.ceil(self.relevantHistoryStart), self._sampling_start) * self._nChains) - end = (self.relevantHistoryEnd * self._nChains) + max(np.ceil(self.relevantHistoryStart), self._sampling_start) + * self._nChains + ) + end = self.relevantHistoryEnd * self._nChains else: start = 0 end = 0 @@ -441,7 +500,11 @@ def nsamples(self): @property def combined_history_logps(self): - return self._logPHistory[(np.ceil(self.relevantHistoryStart) * self._nChains):(self.relevantHistoryEnd * self._nChains)] + return self._logPHistory[ + (np.ceil(self.relevantHistoryStart) * self._nChains) : ( + self.relevantHistoryEnd * self._nChains + ) + ] def _random_no_replace(sampleSize, populationSize, numSamples): @@ -489,21 +552,21 @@ def rv(relevantHistory): covariance2 = np.cov(relevantHistory[midpoint:end, :].transpose()) _eigenvalues1, _eigenvectors1 = _eigen(covariance1) - basis1 = (np.sqrt(_eigenvalues1)[np.newaxis, :] * _eigenvectors1) + basis1 = np.sqrt(_eigenvalues1)[np.newaxis, :] * _eigenvectors1 _eigenvalues2, _eigenvectors2 = _eigen(covariance2) - basis2 = (np.sqrt(_eigenvalues2)[np.newaxis, :] * _eigenvectors2) + basis2 = np.sqrt(_eigenvalues2)[np.newaxis, :] * _eigenvectors2 # project the second basis onto the first basis try: projection = np.dot(np.linalg.inv(basis1), basis2) except np.linalg.linalg.LinAlgError: - projection = (np.array(basis1) * np.nan) - print('Exception happend!') + projection = np.array(basis1) * np.nan + print("Exception happend!") # find the releative size in each of the basis1 directions - return np.log(np.sum(projection**2, axis=0)**.5) + return np.log(np.sum(projection**2, axis=0) ** 0.5) def _eigen(a, n=-1): @@ -522,7 +585,9 @@ def _eigen(a, n=-1): return _eigenvalues[indicies[0:n]], _eigenvectors[:, indicies[0:n]] -def _dream_proposals(currentVectors, history, dimensions, nChains, DEpairs, gamma, jitter, eps): +def _dream_proposals( + currentVectors, history, dimensions, nChains, DEpairs, gamma, jitter, eps +): """ generates and returns proposal vectors given the current states """ @@ -537,18 +602,20 @@ def _dream_proposals(currentVectors, history, dimensions, nChains, DEpairs, gamm # makes sure we have already selected the current chain so it is not replaced # this ensures that the the two chosen chains cannot be the same as the # chain for which the jump is - chains += (chains >= currentIndex) + chains += chains >= currentIndex - chainDifferences = (np.sum(combined_history[chains[:, 0:DEpairs], :], axis=1) - - np.sum(combined_history[chains[:, DEpairs:(DEpairs * 2)], :], axis=1)) + chainDifferences = np.sum( + combined_history[chains[:, 0:DEpairs], :], axis=1 + ) - np.sum(combined_history[chains[:, DEpairs : (DEpairs * 2)], :], axis=1) e = np.random.normal(0, jitter, (nChains, dimensions)) # could replace eps with 1e-6 here E = np.random.normal(0, eps, (nChains, dimensions)) - proposalVectors = currentVectors + \ - (1 + e) * gamma[:, np.newaxis] * chainDifferences + E + proposalVectors = ( + currentVectors + (1 + e) * gamma[:, np.newaxis] * chainDifferences + E + ) return proposalVectors @@ -596,44 +663,48 @@ def update(self, history): betweenChainVariances = np.var(means, axis=0) * N - varEstimate = (1 - 1.0 / N) * withinChainVariances + \ - (1.0 / N) * betweenChainVariances + varEstimate = (1 - 1.0 / N) * withinChainVariances + ( + 1.0 / N + ) * betweenChainVariances if np.abs(withinChainVariances).all() > 0: self._R = np.sqrt(varEstimate / withinChainVariances) else: - self._R = np.random.uniform(0.1,0.9,withinChainVariances.__len__()) + self._R = np.random.uniform(0.1, 0.9, withinChainVariances.__len__()) # self._W can be a float or an array, in both cases I want to exclude 0.0 values try: if self._W != 0.0: - if (withinChainVariances / self._W).all() <=0.0: - self._WChange = np.abs(np.log(1.1) ** .5) + if (withinChainVariances / self._W).all() <= 0.0: + self._WChange = np.abs(np.log(1.1) ** 0.5) else: - self._WChange = np.abs(np.log(withinChainVariances / self._W)**.5) + self._WChange = np.abs( + np.log(withinChainVariances / self._W) ** 0.5 + ) else: - self._WChange = np.abs(np.log(1.1) ** .5) + self._WChange = np.abs(np.log(1.1) ** 0.5) except ValueError: if self._W.all() != 0.0: if (withinChainVariances / self._W).all() <= 0.0: - self._WChange = np.abs(np.log(1.1) ** .5) + self._WChange = np.abs(np.log(1.1) ** 0.5) else: # log of values less then 1 gives a negative number, where I replace these values to get square working tmp_WChDV = varEstimate / self._V tmp_WChDV[tmp_WChDV < 1.0] = np.random.uniform(1, 5, 1) - self._WChange = np.abs(np.log(tmp_WChDV) ** .5) + self._WChange = np.abs(np.log(tmp_WChDV) ** 0.5) else: - self._WChange = np.abs(np.log(1.1) ** .5) - + self._WChange = np.abs(np.log(1.1) ** 0.5) self._W = withinChainVariances - if (varEstimate / self._V).any() <= 0.0 or np.isnan(varEstimate / self._V).any(): - self._VChange = np.abs(np.log(1.1) ** .5) + if (varEstimate / self._V).any() <= 0.0 or np.isnan( + varEstimate / self._V + ).any(): + self._VChange = np.abs(np.log(1.1) ** 0.5) else: # log of values less then 1 gives a negative number, where I replace these values to get square working tmp_EsDV = varEstimate / self._V - tmp_EsDV[tmp_EsDV<1.0]=np.random.uniform(1,5,1) - self._VChange = np.abs(np.log(tmp_EsDV) ** .5) + tmp_EsDV[tmp_EsDV < 1.0] = np.random.uniform(1, 5, 1) + self._VChange = np.abs(np.log(tmp_EsDV) ** 0.5) self._V = varEstimate diff --git a/src/spotpy/algorithms/dream.py b/src/spotpy/algorithms/dream.py index 5387a56a..8305796f 100644 --- a/src/spotpy/algorithms/dream.py +++ b/src/spotpy/algorithms/dream.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska and Motjaba Sadegh -''' +""" import random import time @@ -53,8 +53,10 @@ def __init__(self, *args, **kwargs): * False: Simulation results will not be saved """ - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'DiffeRential Evolution Adaptive Metropolis (DREAM) algorithm' + kwargs["optimization_direction"] = "maximize" + kwargs[ + "algorithm_name" + ] = "DiffeRential Evolution Adaptive Metropolis (DREAM) algorithm" super(dream, self).__init__(*args, **kwargs) def check_par_validity_bound(self, par): @@ -65,16 +67,18 @@ def check_par_validity_bound(self, par): if par[i] > self.max_bound[i]: par[i] = self.max_bound[i] else: - print('ERROR: Bounds have not the same lenghts as Parameterarray') + print("ERROR: Bounds have not the same lenghts as Parameterarray") return par - def get_regular_startingpoint(self,nChains): - randompar=self.parameter()['random'] + def get_regular_startingpoint(self, nChains): + randompar = self.parameter()["random"] for i in range(1000): - randompar=np.column_stack((randompar,self.parameter()['random'])) + randompar = np.column_stack((randompar, self.parameter()["random"])) startpoints = [] for j in range(nChains): - startpoints.append(np.percentile(randompar,(j+1)/float(nChains+1)*100,axis=1))#,np.amax(randompar,axis=1) + startpoints.append( + np.percentile(randompar, (j + 1) / float(nChains + 1) * 100, axis=1) + ) # ,np.amax(randompar,axis=1) startpoints = np.array(startpoints) for k in range(len(randompar)): random.shuffle(startpoints[:, k]) @@ -84,7 +88,7 @@ def check_par_validity_reflect(self, par): if len(par) == len(self.min_bound) and len(par) == len(self.max_bound): for i in range(len(par)): if par[i] < self.min_bound[i]: - par[i] = self.min_bound[i] + (self.min_bound[i]- par[i]) + par[i] = self.min_bound[i] + (self.min_bound[i] - par[i]) elif par[i] > self.max_bound[i]: par[i] = self.max_bound[i] - (par[i] - self.max_bound[i]) @@ -95,21 +99,21 @@ def check_par_validity_reflect(self, par): if par[i] > self.max_bound[i]: par[i] = self.max_bound[i] else: - print('ERROR: Bounds have not the same lenghts as Parameterarray') + print("ERROR: Bounds have not the same lenghts as Parameterarray") return par - def _get_gamma(self,newN, nchain_pairs): - #N = Number of parameters - p = np.random.uniform(low=0,high=1) + def _get_gamma(self, newN, nchain_pairs): + # N = Number of parameters + p = np.random.uniform(low=0, high=1) if p >= 0.2: # d_star is the dimension of subspace of parameters to jump d_star = newN.count(True) - gamma = 2.38/np.sqrt(2*nchain_pairs*d_star) # /self.gammalevel + gamma = 2.38 / np.sqrt(2 * nchain_pairs * d_star) # /self.gammalevel else: gamma = 1 return gamma - def get_other_random_chains(self,cur_chain, nchain_pairs): + def get_other_random_chains(self, cur_chain, nchain_pairs): chain_pairs = [] selectable_chain = list(range(self.nChains)) selectable_chain.remove(cur_chain) @@ -122,13 +126,13 @@ def get_other_random_chains(self,cur_chain, nchain_pairs): return chain_pairs - def get_new_proposal_vector(self,cur_chain,newN,c): + def get_new_proposal_vector(self, cur_chain, newN, c): nchain_pairs = random.randint(1, self.delta) - gamma = self._get_gamma(newN,nchain_pairs) + gamma = self._get_gamma(newN, nchain_pairs) chain_pairs = self.get_other_random_chains(cur_chain, nchain_pairs) - new_parameterset=[] - #position = self.chain_samples-1#self.nChains*self.chain_samples+self.chain_samples+cur_chain-1 - cur_par_set = list(self.bestpar[cur_chain][self.nChainruns[cur_chain]-1]) + new_parameterset = [] + # position = self.chain_samples-1#self.nChains*self.chain_samples+self.chain_samples+cur_chain-1 + cur_par_set = list(self.bestpar[cur_chain][self.nChainruns[cur_chain] - 1]) random_par_sets1 = [] # contain all random_par_set1 random_par_sets2 = [] # contain all random_par_set2 @@ -136,36 +140,47 @@ def get_new_proposal_vector(self,cur_chain,newN,c): random_chain1 = chain_pairs[i][0] random_chain2 = chain_pairs[i][1] random_par_set1 = list( - self.bestpar[random_chain1][self.nChainruns[random_chain1]-1]) + self.bestpar[random_chain1][self.nChainruns[random_chain1] - 1] + ) random_par_set2 = list( - self.bestpar[random_chain2][self.nChainruns[random_chain2]-1]) + self.bestpar[random_chain2][self.nChainruns[random_chain2] - 1] + ) random_par_sets1.append(random_par_set1) random_par_sets2.append(random_par_set2) - random_par_set1 = [sum(i) for i in zip(*random_par_sets1)] # sum all random_par_set1 - random_par_set2 = [sum(i) for i in zip(*random_par_sets2)] # sum all random_par_set2 + random_par_set1 = [ + sum(i) for i in zip(*random_par_sets1) + ] # sum all random_par_set1 + random_par_set2 = [ + sum(i) for i in zip(*random_par_sets2) + ] # sum all random_par_set2 - for i in range(self.N):#Go through parameters + for i in range(self.N): # Go through parameters if newN[i] == True: - lambda_ = np.random.uniform(-c,c) - new_parameterset.append(cur_par_set[i] + (1.0+lambda_)*gamma*np.array( - random_par_set1[i]-random_par_set2[i]) + np.random.normal(0,self.eps)) + lambda_ = np.random.uniform(-c, c) + new_parameterset.append( + cur_par_set[i] + + (1.0 + lambda_) + * gamma + * np.array(random_par_set1[i] - random_par_set2[i]) + + np.random.normal(0, self.eps) + ) else: new_parameterset.append(cur_par_set[i]) - new_parameter=self.check_par_validity_reflect(new_parameterset) - #new_parameter=self.check_par_validity_bound(new_parameterset) + new_parameter = self.check_par_validity_reflect(new_parameterset) + # new_parameter=self.check_par_validity_bound(new_parameterset) return new_parameter -# new_par = np.random.normal(loc=old_par, scale=self.stepsizes) -# new_par = self.check_par_validity_reflect(new_par) -# return new_par + # new_par = np.random.normal(loc=old_par, scale=self.stepsizes) + # new_par = self.check_par_validity_reflect(new_par) + # return new_par - def update_mcmc_status(self,par,like,sim,cur_chain): - self.bestpar[cur_chain][self.nChainruns[cur_chain]]=list(par) - self.bestlike[cur_chain]=like - self.bestsim[cur_chain]=list(sim) + def update_mcmc_status(self, par, like, sim, cur_chain): + self.bestpar[cur_chain][self.nChainruns[cur_chain]] = list(par) + self.bestlike[cur_chain] = like + self.bestsim[cur_chain] = list(sim) def get_r_hat(self, parameter_array): """ @@ -184,10 +199,12 @@ def get_r_hat(self, parameter_array): alreadyToNum = np.sum(whereIsNoNAN[0, :, 0]) if alreadyToNum > 3: - parameter_array = parameter_array[:, int(np.floor(alreadyToNum / 2)): alreadyToNum, :] + parameter_array = parameter_array[ + :, int(np.floor(alreadyToNum / 2)) : alreadyToNum, : + ] else: # the later functions need some data to work right, so we use in this case 100% of NON NAN values - parameter_array = parameter_array[:, 0: alreadyToNum, :] + parameter_array = parameter_array[:, 0:alreadyToNum, :] # I made a big confusion with d, n and N, I figured it out by tests @@ -200,9 +217,9 @@ def get_r_hat(self, parameter_array): B_uni = np.zeros(N) for i in range(N): - B_uni[i] = d * np.nanvar(mean_chains[:, i], - - ddof=1) # make numpy Mathalab like: https://stackoverflow.com/a/27600240/5885054 + B_uni[i] = d * np.nanvar( + mean_chains[:, i], ddof=1 + ) # make numpy Mathalab like: https://stackoverflow.com/a/27600240/5885054 var_chains = np.zeros((n, N)) for i in range(n): @@ -216,107 +233,130 @@ def get_r_hat(self, parameter_array): sigma2 = ((d - 1) / d) * W_uni + (1 / d) * B_uni whichW_UNIIsNull = W_uni == 0.0 - W_uni[whichW_UNIIsNull] = np.random.uniform(0.1,1,1) - - R_stat = np.sqrt((n + 1) / n * (np.divide(sigma2, W_uni)) - (d - 1) / (n * d)) - - -# W_mult = 0 -# for ii in range(n): -# W_mult = W_mult + np.cov(np.nan_to_num(np.transpose(parameter_array[ii, :, :])), ddof=1) -# -# W_mult = W_mult / n + 2e-52 * np.eye(N) -# -# # Note that numpy.cov() considers its input data matrix to have observations in each column, -# # and variables in each row, so to get numpy.cov() to return what other packages do, -# # you have to pass the transpose of the data matrix to numpy.cov(). -# # https://stats.stackexchange.com/a/263508/168054 -# -# B_mult = np.cov(np.nan_to_num(np.transpose(mean_chains))) + 2e-52 * np.eye(N) # 2e-52 avoids problems with eig if var = 0 -# M = np.linalg.lstsq(W_mult, B_mult) -# R = np.max(np.abs(np.linalg.eigvals(M[0]))) -# MR_stat = np.sqrt((n + 1) / n * R + (d - 1) / d) - return R_stat#[R_stat, MR_stat] - - def sample(self, repetitions,nChains=7, nCr=3, delta=3, c=0.1, eps=10e-6, convergence_limit=1.2, runs_after_convergence=100,acceptance_test_option=6): + W_uni[whichW_UNIIsNull] = np.random.uniform(0.1, 1, 1) + + R_stat = np.sqrt( + (n + 1) / n * (np.divide(sigma2, W_uni)) - (d - 1) / (n * d) + ) + + # W_mult = 0 + # for ii in range(n): + # W_mult = W_mult + np.cov(np.nan_to_num(np.transpose(parameter_array[ii, :, :])), ddof=1) + # + # W_mult = W_mult / n + 2e-52 * np.eye(N) + # + # # Note that numpy.cov() considers its input data matrix to have observations in each column, + # # and variables in each row, so to get numpy.cov() to return what other packages do, + # # you have to pass the transpose of the data matrix to numpy.cov(). + # # https://stats.stackexchange.com/a/263508/168054 + # + # B_mult = np.cov(np.nan_to_num(np.transpose(mean_chains))) + 2e-52 * np.eye(N) # 2e-52 avoids problems with eig if var = 0 + # M = np.linalg.lstsq(W_mult, B_mult) + # R = np.max(np.abs(np.linalg.eigvals(M[0]))) + # MR_stat = np.sqrt((n + 1) / n * R + (d - 1) / d) + return R_stat # [R_stat, MR_stat] + + def sample( + self, + repetitions, + nChains=7, + nCr=3, + delta=3, + c=0.1, + eps=10e-6, + convergence_limit=1.2, + runs_after_convergence=100, + acceptance_test_option=6, + ): self.set_repetiton(repetitions) - print('Starting the DREAM algotrithm with '+str(repetitions)+ ' repetitions...') - if nChains <2*delta+1: - print('Please use at least n=2*delta+1 chains!') + print( + "Starting the DREAM algotrithm with " + str(repetitions) + " repetitions..." + ) + if nChains < 2 * delta + 1: + print("Please use at least n=2*delta+1 chains!") return None # Prepare storing MCMC chain as array of arrays. # define stepsize of MCMC. self.repetitions = int(repetitions) self.nChains = int(nChains) self.delta = delta - #Ensure initialisation of chains and database + # Ensure initialisation of chains and database self.burnIn = self.nChains - self.stepsizes = self.parameter()['step'] # array of stepsizes + self.stepsizes = self.parameter()["step"] # array of stepsizes self.nr_of_pars = len(self.stepsizes) - self.gammalevel=1 + self.gammalevel = 1 starttime = time.time() intervaltime = starttime # Metropolis-Hastings iterations. - self.bestpar=np.array([[[np.nan]*self.nr_of_pars]*self.repetitions]*self.nChains) - #[0]->chain #[0][0]->parameter #[0][0][0]->repetitons - self.bestlike=[[-np.inf]]*self.nChains - self.bestsim=[[np.nan]]*self.nChains - self.accepted=np.zeros(self.nChains) - self.nChainruns=[0]*self.nChains - self.min_bound, self.max_bound = self.parameter( - )['minbound'], self.parameter()['maxbound'] - - #firstcall = True - - print('Initialize ', self.nChains, ' chain(s)...') - self.iter=0 - #for i in range(10): + self.bestpar = np.array( + [[[np.nan] * self.nr_of_pars] * self.repetitions] * self.nChains + ) + # [0]->chain #[0][0]->parameter #[0][0][0]->repetitons + self.bestlike = [[-np.inf]] * self.nChains + self.bestsim = [[np.nan]] * self.nChains + self.accepted = np.zeros(self.nChains) + self.nChainruns = [0] * self.nChains + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) + + # firstcall = True + + print("Initialize ", self.nChains, " chain(s)...") + self.iter = 0 + # for i in range(10): startpoints = self.get_regular_startingpoint(nChains) - #param_generator = ((curChain,list(self.parameter()['random'])) for curChain in range(int(self.nChains))) #TODO: Start with regular interval raster - param_generator = ((curChain,list(startpoints[curChain])) for curChain in range(int(self.nChains))) #TODO: Start with regular interval raster - for curChain,par,sim in self.repeat(param_generator): + # param_generator = ((curChain,list(self.parameter()['random'])) for curChain in range(int(self.nChains))) #TODO: Start with regular interval raster + param_generator = ( + (curChain, list(startpoints[curChain])) + for curChain in range(int(self.nChains)) + ) # TODO: Start with regular interval raster + for curChain, par, sim in self.repeat(param_generator): like = self.postprocessing(self.iter, par, sim, chains=curChain) - self.update_mcmc_status(par,like,sim,curChain) - self.iter+=1 - self.nChainruns[curChain] +=1 - + self.update_mcmc_status(par, like, sim, curChain) + self.iter += 1 + self.nChainruns[curChain] += 1 - print('Beginn of Random Walk') + print("Beginn of Random Walk") convergence = False - #Walf through chains - self.r_hats=[] + # Walf through chains + self.r_hats = [] self.eps = eps self.CR = [] for i in range(nCr): - self.CR.append((i+1)/nCr) - self.N = len(self.parameter()['random']) - nrN=1 - newN = [True]*self.N + self.CR.append((i + 1) / nCr) + self.N = len(self.parameter()["random"]) + nrN = 1 + newN = [True] * self.N while self.iter < self.repetitions: - param_generator = ((curChain,self.get_new_proposal_vector(curChain,newN,c)) for curChain in range(int(self.nChains))) - for cChain,par,sim in self.repeat(param_generator): - pCr = np.random.randint(0,nCr) - ids=[] + param_generator = ( + (curChain, self.get_new_proposal_vector(curChain, newN, c)) + for curChain in range(int(self.nChains)) + ) + for cChain, par, sim in self.repeat(param_generator): + pCr = np.random.randint(0, nCr) + ids = [] for i in range(self.N): - ids.append(np.random.uniform(low=0,high=1)) + ids.append(np.random.uniform(low=0, high=1)) newN = [] - nrN = 0 + nrN = 0 for i in range(len(ids)): if ids[i] < self.CR[pCr]: newN.append(True) - nrN+=1 + nrN += 1 else: newN.append(False) if nrN == 0: - ids=[np.random.randint(0,self.N)] - nrN=1 + ids = [np.random.randint(0, self.N)] + nrN = 1 like = self.postprocessing(self.iter, par, sim, chains=cChain) # set a option which type of comparision should be choose: - metro_opt=acceptance_test_option + metro_opt = acceptance_test_option if metro_opt == 1: - logMetropHastRatio = like/self.bestlike[cChain] + logMetropHastRatio = like / self.bestlike[cChain] elif metro_opt == 2 or metro_opt == 4: logMetropHastRatio = np.exp(like - self.bestlike[cChain]) @@ -324,70 +364,106 @@ def sample(self, repetitions,nChains=7, nCr=3, delta=3, c=0.1, eps=10e-6, conver elif metro_opt == 3: # SSR probability evaluation # nrN is defined in this loop so it will increase every step - logMetropHastRatio = (like / self.bestlike[cChain]) ** (-nrN * (1 + self._get_gamma(nrN)) / 2) + logMetropHastRatio = (like / self.bestlike[cChain]) ** ( + -nrN * (1 + self._get_gamma(nrN)) / 2 + ) elif metro_opt == 5: # SSR probability evaluation, but now weighted with mesurement error # Note that measurement error is single number --> homoscedastic; variance can be taken out of sum sign # SIGMA will be calculated from the orginal data - Sigma = np.mean(np.array(self.evaluation)*0.1) - logMetropHastRatio = np.exp(-0.5 * (-like + self.bestlike[cChain])/ (Sigma ** 2)) # signs are different because we write -SSR - - elif metro_opt == 6: # SSR probability evaluation, but now weighted with mesurement error + Sigma = np.mean(np.array(self.evaluation) * 0.1) + logMetropHastRatio = np.exp( + -0.5 * (-like + self.bestlike[cChain]) / (Sigma**2) + ) # signs are different because we write -SSR + + elif ( + metro_opt == 6 + ): # SSR probability evaluation, but now weighted with mesurement error # Note that measurement error is a vector --> heteroscedastic; variance within sum sign -- see CompDensity.m - logMetropHastRatio = np.exp(-0.5 * (-like + self.bestlike[cChain])) # signs are different because we write -SSR + logMetropHastRatio = np.exp( + -0.5 * (-like + self.bestlike[cChain]) + ) # signs are different because we write -SSR u = np.random.uniform(low=0.0, high=1) - if logMetropHastRatio>u: - self.update_mcmc_status(par,like,sim,cChain) + if logMetropHastRatio > u: + self.update_mcmc_status(par, like, sim, cChain) self.accepted[cChain] += 1 # monitor acceptance else: - self.update_mcmc_status(self.bestpar[cChain][self.nChainruns[cChain]-1],self.bestlike[cChain],self.bestsim[cChain],cChain) + self.update_mcmc_status( + self.bestpar[cChain][self.nChainruns[cChain] - 1], + self.bestlike[cChain], + self.bestsim[cChain], + cChain, + ) if self.status.stop: self.iter = self.repetitions - print('Stopping samplig') + print("Stopping samplig") break - self.iter+=1 - self.nChainruns[cChain] +=1 - + self.iter += 1 + self.nChainruns[cChain] += 1 r_hat = self.get_r_hat(self.bestpar) self.r_hats.append(r_hat) # Refresh progressbar every two seconds acttime = time.time() - if acttime - intervaltime >= 2 and self.iter >=2 and self.nChainruns[-1] >=3: - text = "Acceptance rates [%] =" +str(np.around((self.accepted)/float(((self.iter-self.burnIn)/self.nChains)),decimals=4)*100).strip('array([])') + if ( + acttime - intervaltime >= 2 + and self.iter >= 2 + and self.nChainruns[-1] >= 3 + ): + text = "Acceptance rates [%] =" + str( + np.around( + (self.accepted) + / float(((self.iter - self.burnIn) / self.nChains)), + decimals=4, + ) + * 100 + ).strip("array([])") print(text) - text = "Convergence rates =" +str(np.around((r_hat),decimals=4)).strip('array([])') + text = "Convergence rates =" + str( + np.around((r_hat), decimals=4) + ).strip("array([])") print(text) intervaltime = time.time() - if (np.array(r_hat) < convergence_limit).all() and not convergence and self.nChainruns[-1] >=5: - #Stop sampling - print('#############') - print('Convergence has been achieved after '+str(self.iter)+' of '+str(self.repetitions)+' runs! Finally, '+str(runs_after_convergence)+' runs will be additionally sampled to form the posterior distribution') - print('#############') + if ( + (np.array(r_hat) < convergence_limit).all() + and not convergence + and self.nChainruns[-1] >= 5 + ): + # Stop sampling + print("#############") + print( + "Convergence has been achieved after " + + str(self.iter) + + " of " + + str(self.repetitions) + + " runs! Finally, " + + str(runs_after_convergence) + + " runs will be additionally sampled to form the posterior distribution" + ) + print("#############") self.repetitions = self.iter + runs_after_convergence self.set_repetiton(self.repetitions) - #self.iter =self.repetitions - runs_after_convergence - convergence=True + # self.iter =self.repetitions - runs_after_convergence + convergence = True self.final_call() - - #try: + # try: # self.datawriter.finalize() - #except AttributeError: # Happens if no database was assigned + # except AttributeError: # Happens if no database was assigned # pass - #print('End of sampling') - #text = '%i of %i (best like=%g)' % ( + # print('End of sampling') + # text = '%i of %i (best like=%g)' % ( # self.status.rep, repetitions, self.status.objectivefunction) - #print(text) - #print('Best parameter set') - #print(self.status.params) - #text = 'Duration:' + str(round((acttime - starttime), 2)) + ' s' - #print(text) + # print(text) + # print('Best parameter set') + # print(self.status.params) + # text = 'Duration:' + str(round((acttime - starttime), 2)) + ' s' + # print(text) return self.r_hats diff --git a/src/spotpy/algorithms/fast.py b/src/spotpy/algorithms/fast.py index f1577151..143e369a 100644 --- a/src/spotpy/algorithms/fast.py +++ b/src/spotpy/algorithms/fast.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska and the SALib team -''' +""" import math @@ -13,7 +13,7 @@ class fast(_algorithm): - ''' + """ Fourier Amplitude Sensitivity Test (FAST) This class holds the Fourier Amplitude Sensitivity Test (FAST) based on Cukier et al. (1973) and Saltelli et al. (1999): @@ -27,10 +27,10 @@ class fast(_algorithm): The Sensitivity Analysis Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The Sensitivity Analysis Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the Sensitivity Analysis Library. If not, see http://www.gnu.org/licenses/. - ''' + """ - def __init__(self, *args, **kwargs): - ''' + def __init__(self, *args, **kwargs): + """ Input ---------- spot_setup: class @@ -60,19 +60,19 @@ def __init__(self, *args, **kwargs): save_sim: boolean *True: Simulation results will be saved *False: Simulation results will not be saved - ''' - kwargs['algorithm_name'] = 'Fourier Amplitude Sensitivity Test (FAST)' + """ + kwargs["algorithm_name"] = "Fourier Amplitude Sensitivity Test (FAST)" super(fast, self).__init__(*args, **kwargs) def scale_samples(self, params, bounds): - ''' + """ Rescales samples in 0-to-1 range to arbitrary bounds. Arguments: bounds - list of lists of dimensions num_params-by-2 params - numpy array of dimensions num_params-by-N, where N is the number of samples - ''' + """ # Check bounds are legal (upper bound is greater than lower bound) b = np.array(bounds) lower_bounds = b[:, 0] @@ -85,11 +85,11 @@ def scale_samples(self, params, bounds): # argument for the numpy ufunctions # The calculation is equivalent to: # sample * (upper_bound - lower_bound) + lower_bound - np.add(np.multiply(params, - (upper_bounds - lower_bounds), - out=params), - lower_bounds, - out=params) + np.add( + np.multiply(params, (upper_bounds - lower_bounds), out=params), + lower_bounds, + out=params, + ) def matrix(self, bounds, N, M=4): D = len(bounds) @@ -105,7 +105,7 @@ def matrix(self, bounds, N, M=4): # Discretization of the frequency space, s s = (2 * math.pi / N) * np.arange(N) - #s = math.pi / 2.0 * (2 * np.arange(1,N+1) - N-1) / N + # s = math.pi / 2.0 * (2 * np.arange(1,N+1) - N-1) / N # Transformation to get points in the X space X = np.empty([N * D, D]) @@ -122,8 +122,7 @@ def matrix(self, bounds, N, M=4): phi = 2 * math.pi * np.random.rand() for j in range(D): - g = 0.5 + (1 / math.pi) * \ - np.arcsin(np.sin(omega2[j] * s + phi)) + g = 0.5 + (1 / math.pi) * np.arcsin(np.sin(omega2[j] * s + phi)) X[l, j] = g self.scale_samples(X, bounds) @@ -138,16 +137,24 @@ def analyze(self, problem, Y, D, parnames, M=4, print_to_console=False): N = int(Y.size / D) elif Y.size > D: N = int(Y.size / D) - rest = Y.size - N*D - print(""" - We can not use """ + str(rest) + """ samples which was generated - of totaly """ + str(Y.size) + """ - """) + rest = Y.size - N * D + print( + """ + We can not use """ + + str(rest) + + """ samples which was generated + of totaly """ + + str(Y.size) + + """ + """ + ) else: - print(""" + print( + """ Error: Number of samples in model output file must be a multiple of D, where D is the number of parameters in your parameter file. - """) + """ + ) exit() # Recreate the vector omega used in the sampling @@ -163,14 +170,13 @@ def analyze(self, problem, Y, D, parnames, M=4, print_to_console=False): # Calculate and Output the First and Total Order Values if print_to_console: print("Parameter First Total") - Si = dict((k, [None] * D) for k in ['S1', 'ST']) + Si = dict((k, [None] * D) for k in ["S1", "ST"]) for i in range(D): l = np.arange(i * N, (i + 1) * N) - Si['S1'][i] = self.compute_first_order(Y[l], N, M, omega[0]) - Si['ST'][i] = self.compute_total_order(Y[l], N, omega[0]) + Si["S1"][i] = self.compute_first_order(Y[l], N, M, omega[0]) + Si["ST"][i] = self.compute_total_order(Y[l], N, omega[0]) if print_to_console: - print("%s %f %f" % - (parnames[i], Si['S1'][i], Si['ST'][i])) + print("%s %f %f" % (parnames[i], Si["S1"][i], Si["ST"][i])) return Si def compute_first_order(self, outputs, N, M, omega): @@ -185,7 +191,7 @@ def compute_total_order(self, outputs, N, omega): Sp = np.power(np.absolute(f[np.arange(1, int((N + 1) / 2))]) / N, 2) V = 2 * np.sum(Sp) Dt = 2 * sum(Sp[np.arange(int(omega / 2))]) - return (1 - Dt / V) + return 1 - Dt / V def sample(self, repetitions, M=4): """ @@ -197,14 +203,15 @@ def sample(self, repetitions, M=4): Maximum number of runs. """ self.set_repetiton(repetitions) - print('Starting the FAST algotrithm with '+str(repetitions)+ ' repetitions...') - print('Creating FAST Matrix') + print( + "Starting the FAST algotrithm with " + str(repetitions) + " repetitions..." + ) + print("Creating FAST Matrix") # Get the names of the parameters to analyse - names = self.parameter()['name'] + names = self.parameter()["name"] # Get the minimum and maximum value for each parameter from the # distribution - parmin, parmax = self.parameter()['minbound'], self.parameter()[ - 'maxbound'] + parmin, parmax = self.parameter()["minbound"], self.parameter()["maxbound"] # Create an Matrix to store the parameter sets N = int(math.ceil(float(repetitions) / float(len(parmin)))) @@ -212,20 +219,19 @@ def sample(self, repetitions, M=4): for i in range(len(parmin)): bounds.append([parmin[i], parmax[i]]) Matrix = self.matrix(bounds, N, M=M) - lastbackup=0 - if self.breakpoint == 'read' or self.breakpoint == 'readandwrite': + lastbackup = 0 + if self.breakpoint == "read" or self.breakpoint == "readandwrite": data_frombreak = self.read_breakdata(self.dbname) rep = data_frombreak[0] Matrix = data_frombreak[1] - param_generator = ( - (rep, Matrix[rep]) for rep in range(len(Matrix))) + param_generator = ((rep, Matrix[rep]) for rep in range(len(Matrix))) for rep, randompar, simulations in self.repeat(param_generator): # Calculate the objective function self.postprocessing(rep, randompar, simulations) - if self.breakpoint == 'write' or self.breakpoint == 'readandwrite': - if rep >= lastbackup+self.backup_every_rep: + if self.breakpoint == "write" or self.breakpoint == "readandwrite": + if rep >= lastbackup + self.backup_every_rep: work = (rep, Matrix[rep:]) self.write_breakdata(self.dbname, work) lastbackup = rep @@ -235,6 +241,7 @@ def sample(self, repetitions, M=4): data = self.datawriter.getdata() # this is likely to crash if database does not assign name 'like1' Si = self.analyze( - bounds, data['like1'], len(bounds), names, M=M, print_to_console=True) + bounds, data["like1"], len(bounds), names, M=M, print_to_console=True + ) except AttributeError: # Happens if no database was assigned pass diff --git a/src/spotpy/algorithms/fscabc.py b/src/spotpy/algorithms/fscabc.py index cd361b80..03aec53a 100644 --- a/src/spotpy/algorithms/fscabc.py +++ b/src/spotpy/algorithms/fscabc.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Patrick Lauer -''' +""" import random @@ -58,15 +58,16 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'Fitness Scaled Chaotic Artificial Bee Colony (FSCABC) algorithm' + kwargs["optimization_direction"] = "maximize" + kwargs[ + "algorithm_name" + ] = "Fitness Scaled Chaotic Artificial Bee Colony (FSCABC) algorithm" super(fscabc, self).__init__(*args, **kwargs) def mutate(self, r): x = 4 * r * (1 - r) return x - def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None): """ Parameters @@ -85,16 +86,20 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None sets the limit for scout bee phase """ self.set_repetiton(repetitions) - print('Starting the FSCABC algotrithm with '+str(repetitions)+ ' repetitions...') + print( + "Starting the FSCABC algotrithm with " + + str(repetitions) + + " repetitions..." + ) # Initialize FSCABC parameters: parset = self.parameter() - randompar = parset['random'] - lb, ub = parset['minbound'], parset['maxbound'] + randompar = parset["random"] + lb, ub = parset["minbound"], parset["maxbound"] self.nopt = randompar.size random.seed() - lastbackup=0 + lastbackup = 0 if limit == None: - self.limit = int(eb/2) + self.limit = int(eb / 2) else: self.limit = int(limit) # Generate chaos @@ -105,33 +110,34 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None icall = 0 gnrng = 1e100 - if self.breakpoint == 'read' or self.breakpoint == 'readandwrite': + if self.breakpoint == "read" or self.breakpoint == "readandwrite": data_frombreak = self.read_breakdata(self.dbname) icall = data_frombreak[0] work = data_frombreak[1] gnrng = data_frombreak[2] r = data_frombreak[3] # Here database needs to be reinvoked - elif self.breakpoint is None or self.breakpoint == 'write': + elif self.breakpoint is None or self.breakpoint == "write": # Initialization work = [] # Calculate the objective function - param_generator = ( - (rep, self.parameter()['random']) for rep in range(eb)) + param_generator = ((rep, self.parameter()["random"]) for rep in range(eb)) for rep, randompar, simulations in self.repeat(param_generator): # Calculate fitness - like = self.postprocessing(rep, randompar, simulations, negativlike=True) + like = self.postprocessing( + rep, randompar, simulations, negativlike=True + ) c = 0 p = 0 # (fit_x,x,fit_v,v,limit,normalized fitness) work.append([like, randompar, like, randompar, c, p]) - icall +=1 + icall += 1 if self.status.stop: - #icall = repetitions - print('Stopping samplig') + # icall = repetitions + print("Stopping samplig") break - #Bee Phases + # Bee Phases while icall < repetitions and gnrng > peps: # Employed bee phase # Generate new input parameters @@ -140,23 +146,26 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None while k == i: k = random.randint(0, (eb - 1)) j = random.randint(0, (self.nopt - 1)) - work[i][3][j] = work[i][1][j] + \ - random.uniform(-a, a) * (work[i][1][j] - work[k][1][j]) + work[i][3][j] = work[i][1][j] + random.uniform(-a, a) * ( + work[i][1][j] - work[k][1][j] + ) if work[i][3][j] < lb[j]: work[i][3][j] = lb[j] if work[i][3][j] > ub[j]: work[i][3][j] = ub[j] - ''' + """ #Scout bee phase if work[i][4] >= self.limit: work[i][3]=self.parameter()['random'] work[i][4]=0 - ''' + """ # Calculate the objective function param_generator = ((rep, work[rep][3]) for rep in range(eb)) for rep, randompar, simulations in self.repeat(param_generator): # Calculate fitness - clike = self.postprocessing(icall, randompar, simulations, chains=1, negativlike=True) + clike = self.postprocessing( + icall, randompar, simulations, chains=1, negativlike=True + ) if clike > work[rep][0]: work[rep][1] = work[rep][3] work[rep][0] = clike @@ -165,7 +174,7 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None work[rep][4] = work[rep][4] + 1 icall += 1 if self.status.stop: - print('Stopping samplig') + print("Stopping samplig") break # Fitness scaling @@ -179,7 +188,7 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None work[i][5] = work[i][5] / csum bn.append(work[i][5]) bounds = np.cumsum(bn) - # Onlooker bee phase + # Onlooker bee phase # Roulette wheel selection for i, val in enumerate(work): pn = random.uniform(0, 1) @@ -191,9 +200,10 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None z = t break j = random.randint(0, (self.nopt - 1)) - # Generate new input parameters - work[i][3][j] = work[z][1][j] + \ - random.uniform(-a, a) * (work[z][1][j] - work[k][1][j]) + # Generate new input parameters + work[i][3][j] = work[z][1][j] + random.uniform(-a, a) * ( + work[z][1][j] - work[k][1][j] + ) if work[i][3][j] < lb[j]: work[i][3][j] = lb[j] if work[i][3][j] > ub[j]: @@ -202,7 +212,9 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None param_generator = ((rep, work[rep][3]) for rep in range(eb)) for rep, randompar, simulations in self.repeat(param_generator): # Calculate fitness - clike = self.postprocessing(icall, randompar, simulations, chains=2, negativlike=True) + clike = self.postprocessing( + icall, randompar, simulations, chains=2, negativlike=True + ) if clike > work[rep][0]: work[rep][1] = work[rep][3] work[rep][0] = clike @@ -211,37 +223,42 @@ def sample(self, repetitions, eb=48, a=(1 / 10), peps=0.0001, kpow=4, limit=None work[rep][4] = work[rep][4] + 1 icall += 1 if self.status.stop: - print('Stopping samplig') + print("Stopping samplig") break - # Scout bee phase + # Scout bee phase for i, val in enumerate(work): if work[i][4] >= self.limit: for g, bound in enumerate(ub): r = self.mutate(r) work[i][1][g] = lb[g] + r * (ub[g] - lb[g]) work[i][4] = 0 - t, work[i][0], simulations = self.simulate( - (icall, work[i][1])) - clike = self.postprocessing(icall, randompar, simulations, chains=3, negativlike=True) + t, work[i][0], simulations = self.simulate((icall, work[i][1])) + clike = self.postprocessing( + icall, randompar, simulations, chains=3, negativlike=True + ) work[i][0] = clike icall += 1 if self.status.stop: - print('Stopping samplig') + print("Stopping samplig") break gnrng = -self.status.objectivefunction_max - if self.breakpoint == 'write' or self.breakpoint == 'readandwrite'\ - and icall >= lastbackup+self.backup_every_rep: + if ( + self.breakpoint == "write" + or self.breakpoint == "readandwrite" + and icall >= lastbackup + self.backup_every_rep + ): savework = (icall, work, gnrng, r) self.write_breakdata(self.dbname, savework) lastbackup = icall if icall >= repetitions: - print('*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT') - print('ON THE MAXIMUM NUMBER OF TRIALS ') + print("*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT") + print("ON THE MAXIMUM NUMBER OF TRIALS ") print(repetitions) - print('HAS BEEN EXCEEDED.') + print("HAS BEEN EXCEEDED.") if gnrng < peps: print( - 'THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE') + "THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE" + ) self.final_call() diff --git a/src/spotpy/algorithms/lhs.py b/src/spotpy/algorithms/lhs.py index 1ac8ceaa..998857fd 100644 --- a/src/spotpy/algorithms/lhs.py +++ b/src/spotpy/algorithms/lhs.py @@ -50,7 +50,7 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['algorithm_name'] = 'Latin Hypercube Sampling (LHS)' + kwargs["algorithm_name"] = "Latin Hypercube Sampling (LHS)" super(lhs, self).__init__(*args, **kwargs) def sample(self, repetitions): @@ -61,16 +61,17 @@ def sample(self, repetitions): maximum number of function evaluations allowed during optimization """ self.set_repetiton(repetitions) - print('Starting the LHS algotrithm with '+str(repetitions)+ ' repetitions...') - print('Creating LatinHyperCube Matrix') + print( + "Starting the LHS algotrithm with " + str(repetitions) + " repetitions..." + ) + print("Creating LatinHyperCube Matrix") # Get the names of the parameters to analyse - names = self.parameter()['name'] + names = self.parameter()["name"] # Define the jump size between the parameter segment = 1 / float(repetitions) # Get the minimum and maximum value for each parameter from the # distribution - parmin, parmax = self.parameter()['minbound'], self.parameter()[ - 'maxbound'] + parmin, parmax = self.parameter()["minbound"], self.parameter()["maxbound"] # Create an matrx to store the parameter sets matrix = np.empty((repetitions, len(parmin))) @@ -84,8 +85,7 @@ def sample(self, repetitions): random.shuffle(matrix[:, i]) # A generator that produces the parameters - param_generator = ((rep, matrix[rep]) - for rep in range(int(repetitions))) + param_generator = ((rep, matrix[rep]) for rep in range(int(repetitions))) for rep, randompar, simulations in self.repeat(param_generator): # A function that calculates the fitness of the run and the manages the database self.postprocessing(rep, randompar, simulations) diff --git a/src/spotpy/algorithms/list_sampler.py b/src/spotpy/algorithms/list_sampler.py index 81840f04..8f386e2a 100644 --- a/src/spotpy/algorithms/list_sampler.py +++ b/src/spotpy/algorithms/list_sampler.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" from .. import analyser from . import _algorithm @@ -12,7 +12,9 @@ class list_sampler(_algorithm): """ This class holds the List sampler, which samples from a given spotpy database """ + _excluded_parameter_classes = () + def __init__(self, *args, **kwargs): """ Input @@ -45,7 +47,7 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['algorithm_name'] = 'List Sampler' + kwargs["algorithm_name"] = "List Sampler" super(list_sampler, self).__init__(*args, **kwargs) def sample(self, repetitions=None): @@ -58,18 +60,19 @@ def sample(self, repetitions=None): maximum number of function evaluations allowed during sampling If not given number if iterations will be determined based on given list """ - + parameters = analyser.load_csv_parameter_results(self.dbname) - self.dbname=self.dbname+'list' + self.dbname = self.dbname + "list" if not repetitions: - repetitions=len(parameters) + repetitions = len(parameters) self.set_repetiton(repetitions) - + # Initialization - print('Starting the List sampler with '+str(repetitions)+ ' repetitions...') - param_generator = ((rep, list(parameters[rep])) - for rep in range(int(repetitions))) + print("Starting the List sampler with " + str(repetitions) + " repetitions...") + param_generator = ( + (rep, list(parameters[rep])) for rep in range(int(repetitions)) + ) for rep, randompar, simulations in self.repeat(param_generator): - # A function that calculates the fitness of the run and the manages the database + # A function that calculates the fitness of the run and the manages the database self.postprocessing(rep, list(randompar), simulations) self.final_call() diff --git a/src/spotpy/algorithms/mc.py b/src/spotpy/algorithms/mc.py index 3efa9234..171ac155 100644 --- a/src/spotpy/algorithms/mc.py +++ b/src/spotpy/algorithms/mc.py @@ -13,7 +13,9 @@ class mc(_algorithm): The Monte Carlo algorithm generates random parameters from their respective distribution functions. """ + _unaccepted_parameter_types = () + def __init__(self, *args, **kwargs): """ Input @@ -46,7 +48,7 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['algorithm_name'] = 'Monte Carlo (MC) sampler' + kwargs["algorithm_name"] = "Monte Carlo (MC) sampler" super(mc, self).__init__(*args, **kwargs) def sample(self, repetitions): @@ -59,12 +61,12 @@ def sample(self, repetitions): Maximum number of runs. """ self.set_repetiton(repetitions) - print('Starting the MC algorithm with {} repetitions...'.format(repetitions)) + print("Starting the MC algorithm with {} repetitions...".format(repetitions)) # A generator that produces parametersets if called - param_generator = ((rep, self.parameter()['random']) - for rep in range(int(repetitions))) + param_generator = ( + (rep, self.parameter()["random"]) for rep in range(int(repetitions)) + ) for rep, randompar, simulations in self.repeat(param_generator): # A function that calculates the fitness of the run and the manages the database self.postprocessing(rep, randompar, simulations) self.final_call() - diff --git a/src/spotpy/algorithms/mcmc.py b/src/spotpy/algorithms/mcmc.py index 865cfa03..04078c68 100644 --- a/src/spotpy/algorithms/mcmc.py +++ b/src/spotpy/algorithms/mcmc.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import time @@ -51,8 +51,8 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'Markov Chain Monte Carlo (MCMC) sampler' + kwargs["optimization_direction"] = "maximize" + kwargs["algorithm_name"] = "Markov Chain Monte Carlo (MCMC) sampler" super(mcmc, self).__init__(*args, **kwargs) def check_par_validity(self, par): @@ -63,14 +63,14 @@ def check_par_validity(self, par): if par[i] > self.max_bound[i]: par[i] = self.max_bound[i] else: - print('ERROR: Bounds have not the same lenghts as Parameterarray') + print("ERROR: Bounds have not the same lenghts as Parameterarray") return par def check_par_validity_reflect(self, par): if len(par) == len(self.min_bound) and len(par) == len(self.max_bound): for i in range(len(par)): if par[i] < self.min_bound[i]: - par[i] = self.min_bound[i] + (self.min_bound[i]- par[i]) + par[i] = self.min_bound[i] + (self.min_bound[i] - par[i]) elif par[i] > self.max_bound[i]: par[i] = self.max_bound[i] - (par[i] - self.max_bound[i]) @@ -81,70 +81,92 @@ def check_par_validity_reflect(self, par): if par[i] > self.max_bound[i]: par[i] = self.max_bound[i] else: - print('ERROR: Bounds have not the same lenghts as Parameterarray') + print("ERROR: Bounds have not the same lenghts as Parameterarray") return par - def get_new_proposal_vector(self,old_par): + def get_new_proposal_vector(self, old_par): new_par = np.random.normal(loc=old_par, scale=self.stepsizes) - #new_par = self.check_par_validity(new_par) + # new_par = self.check_par_validity(new_par) new_par = self.check_par_validity_reflect(new_par) return new_par - def update_mcmc_status(self,par,like,sim,cur_chain): - self.bestpar[cur_chain]=par - self.bestlike[cur_chain]=like - self.bestsim[cur_chain]=sim + def update_mcmc_status(self, par, like, sim, cur_chain): + self.bestpar[cur_chain] = par + self.bestlike[cur_chain] = like + self.bestsim[cur_chain] = sim - - def sample(self, repetitions,nChains=1): + def sample(self, repetitions, nChains=1): self.set_repetiton(repetitions) - print('Starting the MCMC algotrithm with '+str(repetitions)+ ' repetitions...') + print( + "Starting the MCMC algotrithm with " + str(repetitions) + " repetitions..." + ) # Prepare storing MCMC chain as array of arrays. self.nChains = int(nChains) - #Ensure initialisation of chains and database + # Ensure initialisation of chains and database self.burnIn = self.nChains # define stepsize of MCMC. - self.stepsizes = self.parameter()['step'] # array of stepsizes + self.stepsizes = self.parameter()["step"] # array of stepsizes # Metropolis-Hastings iterations. - self.bestpar=np.array([[np.nan]*len(self.stepsizes)]*self.nChains) - self.bestlike=[[-np.inf]]*self.nChains - self.bestsim=[[np.nan]]*self.nChains - self.accepted=np.zeros(self.nChains) - self.nChainruns=[[0]]*self.nChains - self.min_bound, self.max_bound = self.parameter( - )['minbound'], self.parameter()['maxbound'] - print('Initialize ', self.nChains, ' chain(s)...') - self.iter=0 - param_generator = ((curChain,self.parameter()['random']) for curChain in range(int(self.nChains))) - for curChain,randompar,simulations in self.repeat(param_generator): + self.bestpar = np.array([[np.nan] * len(self.stepsizes)] * self.nChains) + self.bestlike = [[-np.inf]] * self.nChains + self.bestsim = [[np.nan]] * self.nChains + self.accepted = np.zeros(self.nChains) + self.nChainruns = [[0]] * self.nChains + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) + print("Initialize ", self.nChains, " chain(s)...") + self.iter = 0 + param_generator = ( + (curChain, self.parameter()["random"]) + for curChain in range(int(self.nChains)) + ) + for curChain, randompar, simulations in self.repeat(param_generator): # A function that calculates the fitness of the run and the manages the database - like = self.postprocessing(self.iter, randompar, simulations, chains=curChain) + like = self.postprocessing( + self.iter, randompar, simulations, chains=curChain + ) self.update_mcmc_status(randompar, like, simulations, curChain) - self.iter+=1 + self.iter += 1 intervaltime = time.time() - print('Beginn of Random Walk') + print("Beginn of Random Walk") # Walk through chains while self.iter <= repetitions - self.burnIn: - param_generator = ((curChain,self.get_new_proposal_vector(self.bestpar[curChain])) for curChain in range(int(self.nChains))) - for cChain,randompar,simulations in self.repeat(param_generator): + param_generator = ( + (curChain, self.get_new_proposal_vector(self.bestpar[curChain])) + for curChain in range(int(self.nChains)) + ) + for cChain, randompar, simulations in self.repeat(param_generator): # A function that calculates the fitness of the run and the manages the database - like = self.postprocessing(self.iter, randompar, simulations, chains=cChain) - logMetropHastRatio = np.abs(self.bestlike[cChain])/np.abs(like) + like = self.postprocessing( + self.iter, randompar, simulations, chains=cChain + ) + logMetropHastRatio = np.abs(self.bestlike[cChain]) / np.abs(like) u = np.random.uniform(low=0.3, high=1) - if logMetropHastRatio>1.0 or logMetropHastRatio>u: - self.update_mcmc_status(randompar,like,simulations,cChain) + if logMetropHastRatio > 1.0 or logMetropHastRatio > u: + self.update_mcmc_status(randompar, like, simulations, cChain) self.accepted[cChain] += 1 # monitor acceptance - self.iter+=1 + self.iter += 1 # Progress bar acttime = time.time() - #Refresh MCMC progressbar every two second - if acttime - intervaltime >= 2 and self.iter >=2: - text = '%i of %i (best like=%g)' % ( - self.iter + self.burnIn, repetitions, self.status.objectivefunction_max) - text = "Acceptance rates [%] =" +str(np.around((self.accepted)/float(((self.iter-self.burnIn)/self.nChains)),decimals=4)*100).strip('array([])') + # Refresh MCMC progressbar every two second + if acttime - intervaltime >= 2 and self.iter >= 2: + text = "%i of %i (best like=%g)" % ( + self.iter + self.burnIn, + repetitions, + self.status.objectivefunction_max, + ) + text = "Acceptance rates [%] =" + str( + np.around( + (self.accepted) + / float(((self.iter - self.burnIn) / self.nChains)), + decimals=4, + ) + * 100 + ).strip("array([])") print(text) intervaltime = time.time() self.final_call() - diff --git a/src/spotpy/algorithms/mle.py b/src/spotpy/algorithms/mle.py index 25012669..62bc1a82 100644 --- a/src/spotpy/algorithms/mle.py +++ b/src/spotpy/algorithms/mle.py @@ -1,8 +1,8 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska -''' +""" import numpy as np @@ -11,47 +11,46 @@ class mle(_algorithm): """ - This class holds the Maximum Likelihood (MLE) algorithm, + This class holds the Maximum Likelihood (MLE) algorithm, based on a simple uphill method as presented by Houska et al (2015): - Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L. (2015) + Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L. (2015) SPOTting Model Parameters Using a Ready-Made Python Package, PLoS ONE. """ def __init__(self, *args, **kwargs): - ''' + """ Implements the Maximum Likelihood Estimation algorithm. - + Input ---------- spot_setup: class - model: function - Should be callable with a parameter combination of the parameter-function + model: function + Should be callable with a parameter combination of the parameter-function and return an list of simulation results (as long as evaluation list) parameter: function - When called, it should return a random parameter combination. Which can + When called, it should return a random parameter combination. Which can be e.g. uniform or Gaussian - objectivefunction: function - Should return the objectivefunction for a given list of a model simulation and + objectivefunction: function + Should return the objectivefunction for a given list of a model simulation and observation. evaluation: function Should return the true values as return by the model. - + dbname: str * Name of the database where parameter, objectivefunction value and simulation results will be saved. - + dbformat: str * ram: fast suited for short sampling time. no file will be created and results are saved in an array. - * csv: A csv file will be created, which you can import afterwards. - + * csv: A csv file will be created, which you can import afterwards. + save_sim: boolean * True: Simulation results will be saved * False: Simulation results will not be saved - ''' - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'Maximum Likelihood Estimation (MLE) algorithm' + """ + kwargs["optimization_direction"] = "maximize" + kwargs["algorithm_name"] = "Maximum Likelihood Estimation (MLE) algorithm" super(mle, self).__init__(*args, **kwargs) - def check_par_validity(self, par): if len(par) == len(self.min_bound) and len(par) == len(self.max_bound): for i in range(len(par)): @@ -60,47 +59,50 @@ def check_par_validity(self, par): if par[i] > self.max_bound[i]: par[i] = self.max_bound[i] else: - print('ERROR Bounds have not the same lenghts as Parameterarray') + print("ERROR Bounds have not the same lenghts as Parameterarray") return par def sample(self, repetitions): self.set_repetiton(repetitions) - print('Starting the MLE algotrithm with '+str(repetitions)+ ' repetitions...') + print( + "Starting the MLE algotrithm with " + str(repetitions) + " repetitions..." + ) # Define stepsize of MLE - stepsizes = self.parameter()['step'] # array of stepsizes + stepsizes = self.parameter()["step"] # array of stepsizes accepted = 0.0 - self.min_bound, self.max_bound = self.parameter( - )['minbound'], self.parameter()['maxbound'] + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) # Metropolis-Hastings iterations. burnIn = int(repetitions / 10) likes = [] pars = [] sims = [] - print('burnIn...') + print("burnIn...") for i in range(burnIn): - randompar = self.parameter()['random'] + randompar = self.parameter()["random"] pars.append(randompar) _, _, simulations = self.simulate((i, randompar)) sims.append(simulations) like = self.postprocessing(i, randompar, simulations) likes.append(like) - old_like = max(likes) old_par = pars[likes.index(old_like)] - print('Beginn Random Walk') + print("Beginn Random Walk") for rep in range(repetitions - burnIn): # Suggest new candidate from Gaussian proposal distribution. # Use stepsize provided for every dimension. new_par = np.random.normal(loc=old_par, scale=stepsizes) new_par = self.check_par_validity(new_par) _, _, new_simulations = self.simulate((i, new_par)) - new_like = self.postprocessing(rep+burnIn, new_par, new_simulations) + new_like = self.postprocessing(rep + burnIn, new_par, new_simulations) # Accept new candidate in Monte-Carlo fashing. - if (new_like > old_like): + if new_like > old_like: accepted = accepted + 1.0 # monitor acceptance old_par = new_par old_like = new_like - #self.status(rep, new_like, new_par) + # self.status(rep, new_like, new_par) - self.final_call() + self.final_call() diff --git a/src/spotpy/algorithms/nsgaii.py b/src/spotpy/algorithms/nsgaii.py index 59f24de4..dbc1bcd5 100644 --- a/src/spotpy/algorithms/nsgaii.py +++ b/src/spotpy/algorithms/nsgaii.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Iacopo Ferrario @@ -11,7 +11,7 @@ URL: http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=996017&isnumber=21497 - http://www.cs.colostate.edu/~genitor/MiscPubs/tutorial.pdf (Mutation and Crossover Algorithm) - http://www.tik.ee.ethz.ch/file/6c0e384dceb283cd4301339a895b72b8/TIK-Report11.pdf (Tournament Selection) -''' +""" import copy import math @@ -22,14 +22,13 @@ class TournamentSelection: - - def __init__(self,pressure = 2): + def __init__(self, pressure=2): self.pressure = pressure - def calc(self,pop_rank): + def calc(self, pop_rank): n_select = len(pop_rank) - n_random = n_select * self.pressure #n_select * n_parents * pressure + n_random = n_select * self.pressure # n_select * n_parents * pressure n_perms = math.ceil(n_random / len(pop_rank)) @@ -37,12 +36,12 @@ def calc(self,pop_rank): P = np.reshape(P, (n_select, self.pressure)) - n_tournament,_ = P.shape + n_tournament, _ = P.shape - ret = np.full(n_tournament,-1,dtype=int) + ret = np.full(n_tournament, -1, dtype=int) for i in range(n_tournament): - a,b = P[i] + a, b = P[i] if pop_rank[a] < pop_rank[b]: ret[i] = a @@ -60,57 +59,57 @@ def random_permuations(n, l): class Crossover: - - def __init__(self,crossProb=0.9): + def __init__(self, crossProb=0.9): self.crossProbThreshold = crossProb - def calc(self,pop,n_var): + def calc(self, pop, n_var): n_pop = pop.shape[0] crossProbability = np.random.random((n_pop)) - do_cross = crossProbability < self.crossProbThreshold - R = np.random.randint(0,n_pop,(n_pop,2)) + do_cross = crossProbability < self.crossProbThreshold + R = np.random.randint(0, n_pop, (n_pop, 2)) parents = R[do_cross] - crossPoint = np.random.randint(1,n_var,parents.shape[0]) - d = pop[parents,:] + crossPoint = np.random.randint(1, n_var, parents.shape[0]) + d = pop[parents, :] child = [] for i in range(parents.shape[0]): - child.append(np.concatenate([d[i,0,:crossPoint[i]],d[i,1,crossPoint[i]:]])) + child.append( + np.concatenate([d[i, 0, : crossPoint[i]], d[i, 1, crossPoint[i] :]]) + ) child = np.vstack(child) - pop[do_cross,:] = child + pop[do_cross, :] = child return pop - - class PolynomialMutation: - - def __init__(self,prob_mut,eta_mut): + def __init__(self, prob_mut, eta_mut): self.prob_mut = prob_mut self.eta_mut = eta_mut - def calc(self,x,xl,xu): + def calc(self, x, xl, xu): X = copy.deepcopy(x) - Y = np.full(X.shape,np.inf) + Y = np.full(X.shape, np.inf) do_mutation = np.random.random(X.shape) < self.prob_mut m = np.sum(np.sum(do_mutation)) - Y[:,:] = X + Y[:, :] = X - xl = np.repeat(xl[None,:],X.shape[0],axis=0)[do_mutation] #selecting who is mutating - xu = np.repeat(xu[None,:],X.shape[0],axis=0)[do_mutation] + xl = np.repeat(xl[None, :], X.shape[0], axis=0)[ + do_mutation + ] # selecting who is mutating + xu = np.repeat(xu[None, :], X.shape[0], axis=0)[do_mutation] X = X[do_mutation] delta1 = (X - xl) / (xu - xl) - delta2 = (xu - X) / (xu -xl) + delta2 = (xu - X) / (xu - xl) - mut_pow = 1.0/(self.eta_mut + 1.0) + mut_pow = 1.0 / (self.eta_mut + 1.0) rand = np.random.random(X.shape) mask = rand <= 0.5 @@ -124,7 +123,9 @@ def calc(self,x,xl,xu): deltaq[mask] = d[mask] xy = 1.0 - delta2 - val = 2.0 * (1.0 - rand) + 2.0 * (rand - 0.5) * (np.power(xy, (self.eta_mut + 1.0))) + val = 2.0 * (1.0 - rand) + 2.0 * (rand - 0.5) * ( + np.power(xy, (self.eta_mut + 1.0)) + ) d = 1.0 - (np.power(val, mut_pow)) deltaq[mask_not] = d[mask_not] @@ -137,14 +138,10 @@ def calc(self,x,xl,xu): return Y - - - - class NSGAII(_algorithm): """ - Implements the "Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II - by Kalyanmoy Deb, Associate Member, IEEE, Amrit Pratap, Sameer Agarwal, and T. Meyarivan + Implements the "Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II + by Kalyanmoy Deb, Associate Member, IEEE, Amrit Pratap, Sameer Agarwal, and T. Meyarivan """ @@ -180,91 +177,104 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - self._return_all_likes=True #alloes multi-objective calibration - kwargs['optimization_direction'] = 'minimize' - kwargs['algorithm_name'] = 'Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II' + self._return_all_likes = True # alloes multi-objective calibration + kwargs["optimization_direction"] = "minimize" + kwargs[ + "algorithm_name" + ] = "Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II" super(NSGAII, self).__init__(*args, **kwargs) - - def fastSort(self,x): + def fastSort(self, x): n = x.shape[0] - S = np.zeros((n,n),dtype=bool) + S = np.zeros((n, n), dtype=bool) Np = np.zeros(n) - for i in range(n): for j in range(n): - S[i,j] = self.dominates(x[i,:],x[j,:]) + S[i, j] = self.dominates(x[i, :], x[j, :]) - nDom = np.sum(S,axis=0) # the n solutions that dominates i - Np[nDom == 0] = 1 # if i == 0, i is non-dominated, set i rank to 1, i belongs to first non-dominated front + nDom = np.sum(S, axis=0) # the n solutions that dominates i + Np[ + nDom == 0 + ] = 1 # if i == 0, i is non-dominated, set i rank to 1, i belongs to first non-dominated front k = 1 # loop over pareto fronts while np.sum(Np == 0) > 0: - l = np.arange(n)[Np==k] # first non-dominated front - for i in l: # loop over the non-dominated front - nDom[S[i,:]] = nDom[S[i,:]] -1 # reduce by 1 the rank of the solutions that i dominates + l = np.arange(n)[Np == k] # first non-dominated front + for i in l: # loop over the non-dominated front + nDom[S[i, :]] = ( + nDom[S[i, :]] - 1 + ) # reduce by 1 the rank of the solutions that i dominates k += 1 # now nDom has been reduced by 1, so the next non-dominated front will be nDom == 0 # and Np == 0 ensure that we don't pass over the first ranked non-dom solutions - Np[(nDom == 0) & (Np == 0) ] = k + Np[(nDom == 0) & (Np == 0)] = k return Np.astype(int) - - - def dominates(self,a,b): - if len(a.shape) >1: - ret = (np.sum(a <= b,axis =1) == a.shape[1]) & (np.sum(a < b,axis=1) >0) + def dominates(self, a, b): + if len(a.shape) > 1: + ret = (np.sum(a <= b, axis=1) == a.shape[1]) & (np.sum(a < b, axis=1) > 0) else: - ret = (np.sum(a <= b) == len(a)) & (np.sum(a < b) >0) + ret = (np.sum(a <= b) == len(a)) & (np.sum(a < b) > 0) return ret - - def crowdDist(self,x): + def crowdDist(self, x): n = x.shape[0] nobj = x.shape[1] dist = np.zeros(n) - ord = np.argsort(x,axis=0) + ord = np.argsort(x, axis=0) - X = x[ord,range(nobj)] + X = x[ord, range(nobj)] - dist = np.vstack([X,np.full(nobj,np.inf)]) - np.vstack([np.full(nobj,-np.inf),X]) + dist = np.vstack([X, np.full(nobj, np.inf)]) - np.vstack( + [np.full(nobj, -np.inf), X] + ) - norm = np.max(X,axis=0) - np.min(X,axis=0) - dist_to_last,dist_to_next = dist, np.copy(dist) - dist_to_last,dist_to_next = dist_to_last[:-1]/norm ,dist_to_next[1:]/norm - J = np.argsort(ord,axis=0) - ret = np.sum(dist_to_last[J, np.arange(nobj)] + dist_to_next[J, np.arange(nobj)], axis=1) / nobj + norm = np.max(X, axis=0) - np.min(X, axis=0) + dist_to_last, dist_to_next = dist, np.copy(dist) + dist_to_last, dist_to_next = dist_to_last[:-1] / norm, dist_to_next[1:] / norm + J = np.argsort(ord, axis=0) + ret = ( + np.sum( + dist_to_last[J, np.arange(nobj)] + dist_to_next[J, np.arange(nobj)], + axis=1, + ) + / nobj + ) return ret - def crowdDist2(self,x): + def crowdDist2(self, x): n = x.shape[0] dist = np.zeros(n) for obj in range(x.shape[1]): - ord = np.argsort(x[:,obj]) - dist[ord[[0,-1]]] = np.inf + ord = np.argsort(x[:, obj]) + dist[ord[[0, -1]]] = np.inf - norm = np.max(x[:,obj]) - np.min(x[:,obj]) + norm = np.max(x[:, obj]) - np.min(x[:, obj]) - for i in range(1,n-1): - dist[i] = dist[ord[i]] + (x[ord[i+1],obj] - x[ord[i-1],obj])/norm + for i in range(1, n - 1): + dist[i] = ( + dist[ord[i]] + (x[ord[i + 1], obj] - x[ord[i - 1], obj]) / norm + ) return dist - - - - def sample(self, generations, n_obj, n_pop = None, - selection = TournamentSelection(pressure=2), - crossover = Crossover(crossProb=0.9), - mutation = PolynomialMutation(prob_mut=0.25,eta_mut=30)): + def sample( + self, + generations, + n_obj, + n_pop=None, + selection=TournamentSelection(pressure=2), + crossover=Crossover(crossProb=0.9), + mutation=PolynomialMutation(prob_mut=0.25, eta_mut=30), + ): self.n_obj = n_obj self.selection = selection @@ -272,48 +282,45 @@ def sample(self, generations, n_obj, n_pop = None, self.mutation = mutation self.n_pop = n_pop - self.generations= generations - self.set_repetiton(self.generations*self.n_pop) - self.skip_duplicates = True # False does not work yet + self.generations = generations + self.set_repetiton(self.generations * self.n_pop) + self.skip_duplicates = True # False does not work yet - Pt = np.vstack([self.parameter()['random'] for i in range(self.n_pop)]) + Pt = np.vstack([self.parameter()["random"] for i in range(self.n_pop)]) - #Burn-in - #TODO: I would suggest to make the burin-in sample indiviudual for each cpu-core in case of parallel usage, compare dream.py, but not sure if this is defined in the publication + # Burn-in + # TODO: I would suggest to make the burin-in sample indiviudual for each cpu-core in case of parallel usage, compare dream.py, but not sure if this is defined in the publication # evaluate population - param_generator = ((i,Pt[i,:]) for i in range(self.n_pop)) + param_generator = ((i, Pt[i, :]) for i in range(self.n_pop)) ret = list(self.repeat(param_generator)) Of = [] for p in range(self.n_pop): - index,parameters,simulation_results = ret[p] + index, parameters, simulation_results = ret[p] Of.append(self.postprocessing(0, parameters, simulation_results, chains=p)) Of = np.vstack(Of) - nonDomRank = self.fastSort(Of) crDist = np.empty(self.n_pop) - for rk in range(1,np.max(nonDomRank)+1): - crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank ==rk,:]) - + for rk in range(1, np.max(nonDomRank) + 1): + crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank == rk, :]) # sorting - rank = np.lexsort((-crDist,nonDomRank)) + rank = np.lexsort((-crDist, nonDomRank)) Ptsort = Pt[rank] Ofsort = Of[rank] - Of_parent = Ofsort[:,:] - Pt_parent = Ptsort[:,:] + Of_parent = Ofsort[:, :] + Pt_parent = Ptsort[:, :] # selection - offsprings = self.selection.calc(pop_rank = rank) - - Qt = Ptsort[offsprings,:] + offsprings = self.selection.calc(pop_rank=rank) + Qt = Ptsort[offsprings, :] # crossover try: @@ -321,86 +328,90 @@ def sample(self, generations, n_obj, n_pop = None, except AttributeError: n_var = len(parameters) - - Qt = self.crossover.calc(pop = Qt,n_var = n_var) + Qt = self.crossover.calc(pop=Qt, n_var=n_var) # mutation - self.min_bound, self.max_bound = self.parameter()['minbound'], self.parameter()['maxbound'] + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) self.varminbound = np.array([]) self.varmaxbound = np.array([]) for i in range(len(self.min_bound)): - self.varminbound = np.append(self.varminbound,self.min_bound[i]) - self.varmaxbound = np.append(self.varmaxbound,self.max_bound[i]) + self.varminbound = np.append(self.varminbound, self.min_bound[i]) + self.varmaxbound = np.append(self.varmaxbound, self.max_bound[i]) - Qt = self.mutation.calc(x = Qt,xl = self.varminbound,xu = self.varmaxbound) + Qt = self.mutation.calc(x=Qt, xl=self.varminbound, xu=self.varmaxbound) - for igen in range(1,self.generations - 1): + for igen in range(1, self.generations - 1): - Rt = np.vstack([Pt_parent,Qt]) + Rt = np.vstack([Pt_parent, Qt]) + if self.skip_duplicates: - if self.skip_duplicates: + # evaluate population + param_generator = ((i, Qt[i, :]) for i in range(self.n_pop)) - # evaluate population - param_generator = ((i,Qt[i,:]) for i in range(self.n_pop)) + ret = list(self.repeat(param_generator)) - ret = list(self.repeat(param_generator)) + Of = [] + for p in range(self.n_pop): + index, parameters, simulation_results = ret[p] + Of.append( + self.postprocessing( + igen, parameters, simulation_results, chains=p + ) + ) + Of = np.vstack(Of) - Of = [] - for p in range(self.n_pop): - index, parameters,simulation_results = ret[p] - Of.append(self.postprocessing(igen, parameters, simulation_results, chains=p)) - Of = np.vstack(Of) + Of = np.vstack([Of_parent, Of]) - Of = np.vstack([Of_parent ,Of]) + nonDomRank = self.fastSort(Of) - nonDomRank = self.fastSort(Of) - - crDist = np.empty(len(Of)) - for rk in range(1,np.max(nonDomRank)+1): - crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank ==rk,:]) - else: - - n_pop_combined = self.n_pop *2 - # evaluate population - param_generator = ((i,Rt[i,:]) for i in range( n_pop_combined )) - - - #import pdb;pdb.set_trace() - ret = list(self.repeat(param_generator)) - - Of = [] - for p in range(n_pop_combined): - index, parameters,simulation_results = ret[p] - Of.append(self.postprocessing(igen, parameters, simulation_results, chains=p)) - Of = np.vstack(Of) - - nonDomRank = self.fastSort(Of) + crDist = np.empty(len(Of)) + for rk in range(1, np.max(nonDomRank) + 1): + crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank == rk, :]) + else: - crDist = np.empty(n_pop_combined) - for rk in range(1,np.max(nonDomRank)+1): - crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank ==rk,:]) + n_pop_combined = self.n_pop * 2 + # evaluate population + param_generator = ((i, Rt[i, :]) for i in range(n_pop_combined)) + # import pdb;pdb.set_trace() + ret = list(self.repeat(param_generator)) - # sorting - rank = np.lexsort((-crDist,nonDomRank))[:self.n_pop] - Ptsort = Rt[rank] - Ofsort = Of[rank] + Of = [] + for p in range(n_pop_combined): + index, parameters, simulation_results = ret[p] + Of.append( + self.postprocessing( + igen, parameters, simulation_results, chains=p + ) + ) + Of = np.vstack(Of) - Pt_parent = Ptsort[:,:] + nonDomRank = self.fastSort(Of) - Of_parent = Ofsort[:,:] + crDist = np.empty(n_pop_combined) + for rk in range(1, np.max(nonDomRank) + 1): + crDist[nonDomRank == rk] = self.crowdDist(Of[nonDomRank == rk, :]) + # sorting + rank = np.lexsort((-crDist, nonDomRank))[: self.n_pop] + Ptsort = Rt[rank] + Ofsort = Of[rank] - # selection - offsprings = self.selection.calc(pop_rank = rank) + Pt_parent = Ptsort[:, :] - Qt = Ptsort[offsprings,:] - # crossover - Qt = self.crossover.calc(pop = Qt,n_var = n_var) - # mutation - Qt = self.mutation.calc(x = Qt,xl = self.varminbound,xu =self.varmaxbound) + Of_parent = Ofsort[:, :] + # selection + offsprings = self.selection.calc(pop_rank=rank) + Qt = Ptsort[offsprings, :] + # crossover + Qt = self.crossover.calc(pop=Qt, n_var=n_var) + # mutation + Qt = self.mutation.calc(x=Qt, xl=self.varminbound, xu=self.varmaxbound) self.final_call() diff --git a/src/spotpy/algorithms/padds.py b/src/spotpy/algorithms/padds.py index 3aed9fc2..ce35b7e4 100644 --- a/src/spotpy/algorithms/padds.py +++ b/src/spotpy/algorithms/padds.py @@ -12,8 +12,8 @@ class BestValue(object): """ - BestValue holds a parameter set and a best objective value, which is used by the PADDS Algorithm. - Updates are done within the algorithm + BestValue holds a parameter set and a best objective value, which is used by the PADDS Algorithm. + Updates are done within the algorithm """ def __init__(self, para_func, obj_value): @@ -22,15 +22,21 @@ def __init__(self, para_func, obj_value): self.best_obj_val = obj_value self.best_rep = 0 - def copy(self): to_copy = BestValue(self.parameters.copy(), self.best_obj_val) to_copy.best_rep = self.best_rep return to_copy def __str__(self): - return "BestValue(best_obj_val = " + str(self.best_obj_val) + ", best_rep = " + str(self.best_rep) + ", " \ - + str(self.parameters) + ")" + return ( + "BestValue(best_obj_val = " + + str(self.best_obj_val) + + ", best_rep = " + + str(self.best_rep) + + ", " + + str(self.parameters) + + ")" + ) def reset_rep(self): self.best_rep = 0 @@ -93,15 +99,16 @@ def __init__(self, *args, **kwargs): except KeyError: self.r = 0.2 # default value - self._return_all_likes=True #allows multi-objective calibration - kwargs['optimization_direction'] = 'minimize' - kwargs['algorithm_name'] = 'Pareto Archived Dynamically Dimensioned Search (PADDS) algorithm' + self._return_all_likes = True # allows multi-objective calibration + kwargs["optimization_direction"] = "minimize" + kwargs[ + "algorithm_name" + ] = "Pareto Archived Dynamically Dimensioned Search (PADDS) algorithm" super(padds, self).__init__(*args, **kwargs) self.np_random = np.random - self.best_value = BestValue(self.parameter, None) self.dds_generator = DDSGenerator(self.np_random) @@ -118,14 +125,14 @@ def __init__(self, *args, **kwargs): def _set_np_random(self, f_rand): self.np_random = f_rand - if hasattr(self,"hvc"): + if hasattr(self, "hvc"): self.hvc._set_np_random(f_rand) self.dds_generator.np_random = f_rand def roulette_wheel(self, metric): cumul_metric = np.cumsum(metric) probability = self.np_random.rand() * cumul_metric[-1] - levels = (cumul_metric >= probability) + levels = cumul_metric >= probability length = cumul_metric.shape[0] return np.array(range(length))[levels][0] @@ -135,36 +142,58 @@ def get_next_x_curr(self): """ # We need to shift position and length of the sampling process for rep in range(self.generator_repetitions): - if self.dominance_flag == -1: # if the last generated solution was dominated + if ( + self.dominance_flag == -1 + ): # if the last generated solution was dominated index = self.roulette_wheel(self.metric) - self.best_value.parameters, self.best_value.best_obj_val = self.pareto_front[index][1], self.pareto_front[index][0] + self.best_value.parameters, self.best_value.best_obj_val = ( + self.pareto_front[index][1], + self.pareto_front[index][0], + ) else: # otherwise use the last generated solution - self.best_value.parameters, self.best_value.best_obj_val = (self.parameter_current, self.obj_func_current) + self.best_value.parameters, self.best_value.best_obj_val = ( + self.parameter_current, + self.obj_func_current, + ) # # This line is needed to get an array of data converted into a parameter object self.best_value.fix_format() - yield rep, self.calculate_next_s_test(self.best_value.parameters, rep, self.generator_repetitions, self.r) + yield rep, self.calculate_next_s_test( + self.best_value.parameters, rep, self.generator_repetitions, self.r + ) def calculate_initial_parameterset(self, repetitions, initial_objs, initial_params): self.obj_func_current = np.array([0.0]) self.parameter_current = np.array([0.0] * self.number_of_parameters) - self.parameter_range = self.best_value.parameters.maxbound - self.best_value.parameters.minbound - self.pareto_front = np.array([[np.array([]), np.array([0] * self.number_of_parameters)]]) - #self.pareto_front = np.array([np.append([np.inf] * self.like_struct_len, [0] * self.number_of_parameters)]) - - if(len(initial_objs) != len(initial_params)): - raise ValueError("User specified 'initial_objs' and 'initial_params' have no equal length") + self.parameter_range = ( + self.best_value.parameters.maxbound - self.best_value.parameters.minbound + ) + self.pareto_front = np.array( + [[np.array([]), np.array([0] * self.number_of_parameters)]] + ) + # self.pareto_front = np.array([np.append([np.inf] * self.like_struct_len, [0] * self.number_of_parameters)]) + + if len(initial_objs) != len(initial_params): + raise ValueError( + "User specified 'initial_objs' and 'initial_params' have no equal length" + ) if len(initial_objs) == 0: initial_iterations = int(np.max([5, round(0.005 * repetitions)])) self.calc_initial_pareto_front(initial_iterations) elif initial_params.shape[1] != self.number_of_parameters: - raise ValueError("User specified 'initial_params' has not the same length as available parameters") + raise ValueError( + "User specified 'initial_params' has not the same length as available parameters" + ) else: - if not (np.all(initial_params <= self.best_value.parameters.maxbound) and np.all( - initial_params >= self.best_value.parameters.minbound)): - raise ValueError("User specified 'initial_params' but the values are not within the parameter range") + if not ( + np.all(initial_params <= self.best_value.parameters.maxbound) + and np.all(initial_params >= self.best_value.parameters.minbound) + ): + raise ValueError( + "User specified 'initial_params' but the values are not within the parameter range" + ) initial_iterations = initial_params.shape[0] for i in range(initial_params.shape[0]): @@ -172,36 +201,64 @@ def calculate_initial_parameterset(self, repetitions, initial_objs, initial_para if len(initial_objs[i]) > 0: self.obj_func_current = np.array(initial_objs[i]) else: - self.obj_func_current = np.array(self.getfitness(simulation=[], params=self.parameter_current)) + self.obj_func_current = np.array( + self.getfitness(simulation=[], params=self.parameter_current) + ) if i == 0: # Initial value - self.pareto_front = np.array([[self.obj_func_current, self.parameter_current]]) + self.pareto_front = np.array( + [[self.obj_func_current, self.parameter_current]] + ) dominance_flag = 1 else: - self.pareto_front, dominance_flag = nd_check(self.pareto_front, self.obj_func_current, - self.parameter_current.copy()) + self.pareto_front, dominance_flag = nd_check( + self.pareto_front, + self.obj_func_current, + self.parameter_current.copy(), + ) self.dominance_flag = dominance_flag return initial_iterations, copy.deepcopy(self.parameter_current) - def sample(self, repetitions, trials=1, initial_objs=np.array([]), initial_params=np.array([]), metric="ones"): + def sample( + self, + repetitions, + trials=1, + initial_objs=np.array([]), + initial_params=np.array([]), + metric="ones", + ): # every iteration a map of all relevant values is stored, only for debug purpose. # Spotpy will not need this values. debug_results = [] - print('Starting the PADDS algotrithm with ' + str(repetitions) + ' repetitions...') - print('WARNING: THE PADDS algorithm as implemented in SPOTPY is in an beta stage and not ready for production use!') + print( + "Starting the PADDS algotrithm with " + str(repetitions) + " repetitions..." + ) + print( + "WARNING: THE PADDS algorithm as implemented in SPOTPY is in an beta stage and not ready for production use!" + ) self.set_repetiton(repetitions) - self.number_of_parameters = len(self.best_value.parameters) # number_of_parameters is the amount of parameters + self.number_of_parameters = len( + self.best_value.parameters + ) # number_of_parameters is the amount of parameters if metric == "hvc": self.hvc = HVC(np_random=self.np_random) - self.min_bound, self.max_bound = self.parameter()['minbound'], self.parameter()['maxbound'] + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) # Users can define trial runs in within "repetition" times the algorithm will be executed for trial in range(trials): self.best_value.best_obj_val = 1e-308 - repitionno_best, self.best_value.parameters = self.calculate_initial_parameterset(repetitions, initial_objs, initial_params) + ( + repitionno_best, + self.best_value.parameters, + ) = self.calculate_initial_parameterset( + repetitions, initial_objs, initial_params + ) repetions_left = repetitions - repitionno_best @@ -221,16 +278,33 @@ def sample(self, repetitions, trials=1, initial_objs=np.array([]), initial_param if num_imp == 0 and num_deg > 0: self.dominance_flag = -1 # New solution is dominated by its parents else: # Do dominance check only if new solution is not dominated by its parent - self.pareto_front, self.dominance_flag = nd_check(self.pareto_front, self.obj_func_current, x_curr.copy()) - if self.dominance_flag != -1: # means, that new parameter set is a new non-dominated solution + self.pareto_front, self.dominance_flag = nd_check( + self.pareto_front, self.obj_func_current, x_curr.copy() + ) + if ( + self.dominance_flag != -1 + ): # means, that new parameter set is a new non-dominated solution self.metric = self.calc_metric(metric) self.parameter_current = x_curr # update the new status structure - self.status.params_max, self.status.params_min = self.parameter_current, self.parameter_current - - print('Best solution found has obj function value of ' + str(self.best_value.best_obj_val) + ' at ' - + str(repitionno_best) + '\n\n') - debug_results.append({"sbest": self.best_value.parameters , "objfunc_val": self.best_value.best_obj_val}) + self.status.params_max, self.status.params_min = ( + self.parameter_current, + self.parameter_current, + ) + + print( + "Best solution found has obj function value of " + + str(self.best_value.best_obj_val) + + " at " + + str(repitionno_best) + + "\n\n" + ) + debug_results.append( + { + "sbest": self.best_value.parameters, + "objfunc_val": self.best_value.best_obj_val, + } + ) self.final_call() return debug_results @@ -243,11 +317,11 @@ def calc_metric(self, metric): if metric == "ones": return np.array([1] * self.pareto_front.shape[0]) elif metric == "crowd_distance": - return crowd_dist(np.array([w for w in self.pareto_front[:,0]])) + return crowd_dist(np.array([w for w in self.pareto_front[:, 0]])) elif metric == "chc": - return chc(np.array([w for w in self.pareto_front[:,0]])) + return chc(np.array([w for w in self.pareto_front[:, 0]])) elif metric == "hvc": - return self.hvc(np.array([w for w in self.pareto_front[:,0]])) + return self.hvc(np.array([w for w in self.pareto_front[:, 0]])) else: raise AttributeError("metric argument is invalid") @@ -257,30 +331,48 @@ def calc_initial_pareto_front(self, its): :param its: amount of initial parameters """ - dominance_flag = -1 for i in range(its): for j in range(self.number_of_parameters): if self.best_value.parameters.as_int[j]: - self.parameter_current[j] = self.np_random.randint(self.best_value.parameters.minbound[j], - self.best_value.parameters.maxbound[j]) + self.parameter_current[j] = self.np_random.randint( + self.best_value.parameters.minbound[j], + self.best_value.parameters.maxbound[j], + ) else: - self.parameter_current[j] = self.best_value.parameters.minbound[j] + self.parameter_range[ - j] * self.np_random.rand() # uniform random - - id, params, model_simulations = self.simulate((range(len(self.parameter_current)), self.parameter_current)) - self.obj_func_current = self.getfitness(simulation=model_simulations, params=self.parameter_current) + self.parameter_current[j] = ( + self.best_value.parameters.minbound[j] + + self.parameter_range[j] * self.np_random.rand() + ) # uniform random + + id, params, model_simulations = self.simulate( + (range(len(self.parameter_current)), self.parameter_current) + ) + self.obj_func_current = self.getfitness( + simulation=model_simulations, params=self.parameter_current + ) # First value will be used to initialize the values if i == 0: self.pareto_front = np.vstack( - [self.pareto_front[0], np.array([self.obj_func_current.copy(), self.parameter_current.copy() + 0])]) + [ + self.pareto_front[0], + np.array( + [ + self.obj_func_current.copy(), + self.parameter_current.copy() + 0, + ] + ), + ] + ) else: - (self.pareto_front, dominance_flag) = nd_check(self.pareto_front, self.obj_func_current, - self.parameter_current.copy()) + (self.pareto_front, dominance_flag) = nd_check( + self.pareto_front, + self.obj_func_current, + self.parameter_current.copy(), + ) self.dominance_flag = dominance_flag - def calculate_next_s_test(self, previous_x_curr, rep, rep_limit, r): """ Needs to run inside `sample` method. Calculate the next set of parameters based on a given set. @@ -300,7 +392,9 @@ def calculate_next_s_test(self, previous_x_curr, rep, rep_limit, r): :return: next parameter set """ amount_params = len(previous_x_curr) - new_x_curr = previous_x_curr.copy() # define new_x_curr initially as current (previous_x_curr for greedy) + new_x_curr = ( + previous_x_curr.copy() + ) # define new_x_curr initially as current (previous_x_curr for greedy) randompar = self.np_random.rand(amount_params) @@ -308,17 +402,29 @@ def calculate_next_s_test(self, previous_x_curr, rep, rep_limit, r): dvn_count = 0 # counter for how many decision variables vary in neighbour for j in range(amount_params): - if randompar[j] < probability_neighborhood: # then j th DV selected to vary in neighbour + if ( + randompar[j] < probability_neighborhood + ): # then j th DV selected to vary in neighbour dvn_count = dvn_count + 1 - new_value = self.dds_generator.neigh_value_mixed(previous_x_curr, r, j, self.min_bound[j],self.max_bound[j]) + new_value = self.dds_generator.neigh_value_mixed( + previous_x_curr, r, j, self.min_bound[j], self.max_bound[j] + ) new_x_curr[j] = new_value # change relevant dec var value in x_curr if dvn_count == 0: # no DVs selected at random, so select ONE dec_var = int(np.ceil(amount_params * self.np_random.rand())) - new_value = self.dds_generator.neigh_value_mixed(previous_x_curr, r, dec_var - 1, self.min_bound[dec_var - 1],self.max_bound[dec_var - 1]) - - new_x_curr[dec_var - 1] = new_value # change relevant decision variable value in s_test + new_value = self.dds_generator.neigh_value_mixed( + previous_x_curr, + r, + dec_var - 1, + self.min_bound[dec_var - 1], + self.max_bound[dec_var - 1], + ) + + new_x_curr[ + dec_var - 1 + ] = new_value # change relevant decision variable value in s_test return new_x_curr @@ -363,7 +469,7 @@ def nd_check(nd_set_input, objective_values, parameter_set): try: _ = objective_values < nd_set[i][0] except ValueError: - nd_set[i][0] = np.array([np.inf]*objective_values.shape[0]) + nd_set[i][0] = np.array([np.inf] * objective_values.shape[0]) num_eql = np.sum(objective_values == nd_set[i][0]) num_imp = np.sum(objective_values < nd_set[i][0]) @@ -375,7 +481,10 @@ def nd_check(nd_set_input, objective_values, parameter_set): elif num_eql == like_struct_len: # Objective functions are the same for parameter_set and archived solution i # TODO check if this line still works - nd_set[i][0], nd_set[i][1] = objective_values, parameter_set # Replace solution i in ND_set with X + nd_set[i][0], nd_set[i][1] = ( + objective_values, + parameter_set, + ) # Replace solution i in ND_set with X dominance_flag = 0 # X is non - dominated return nd_set, dominance_flag elif num_imp > 0 and num_deg == 0: # X dominates ith solution in the ND_set @@ -384,10 +493,13 @@ def nd_check(nd_set_input, objective_values, parameter_set): dominance_flag = 1 if nd_set.size == 0: # that means the array is completely empty - nd_set = np.array([objective_values, parameter_set]) # Set solution i in ND_set with X + nd_set = np.array( + [objective_values, parameter_set] + ) # Set solution i in ND_set with X else: # If X dominated a portion of solutions in ND_set nd_set = np.vstack( - [nd_set, np.array([objective_values, parameter_set])]) # Add the new solution to the end of ND_set (for later use and comparing! + [nd_set, np.array([objective_values, parameter_set])] + ) # Add the new solution to the end of ND_set (for later use and comparing! return nd_set, dominance_flag @@ -415,7 +527,7 @@ def crowd_dist(points): max_f = np.nanmax(points, 0) min_f = np.nanmin(points, 0) - levels = (max_f == min_f) + levels = max_f == min_f length_y = points.shape[0] indicies = np.array(range(length_x))[levels] @@ -439,7 +551,9 @@ def crowd_dist(points): endpointIndx = np.array([0] * 2 * length_x) # Main Calculation - if length_y <= length_x + 1: # Less than or equal # obj + 1 solutions are non-dominated + if ( + length_y <= length_x + 1 + ): # Less than or equal # obj + 1 solutions are non-dominated temp[:, ij] = 1 # The crowding distance is 1 for all archived solutions return temp[:, ij] else: # More than 2 solutions are non - dominated @@ -447,7 +561,9 @@ def crowd_dist(points): # https://stackoverflow.com/a/22699957/5885054 temp = temp[temp[:, i].argsort()] temp[0, ij] = temp[0, ij] + 2 * (temp[1, i] - temp[0, i]) - temp[length_y - 1, ij] = temp[length_y - 1, ij] + 2 * (temp[length_y - 1, i] - temp[length_y - 2, i]) + temp[length_y - 1, ij] = temp[length_y - 1, ij] + 2 * ( + temp[length_y - 1, i] - temp[length_y - 2, i] + ) for j in range(1, length_y - 1): temp[j, ij] = temp[j, ij] + (temp[j + 1, i] - temp[j - 1, i]) @@ -456,8 +572,9 @@ def crowd_dist(points): endpointIndx[2 * (i - 1) + 1] = temp[-1, -1] # Endpoints of Pareto Front - temp = temp[temp[:, temp.shape[ - 1] - 1].argsort()] # Sort points based on the last column to restore the original order of points in the archive + temp = temp[ + temp[:, temp.shape[1] - 1].argsort() + ] # Sort points based on the last column to restore the original order of points in the archive endpointIndx = np.unique(endpointIndx) non_endpointIndx = np.array(range(length_y)).reshape((length_y, 1)) @@ -467,11 +584,14 @@ def crowd_dist(points): Y = points[endpointIndx, :] X = points[non_endpointIndx, :] - IDX = dsearchn(X, Y) # Identify the closest point in the objective space to each endpoint (dsearchn in Matlab) + IDX = dsearchn( + X, Y + ) # Identify the closest point in the objective space to each endpoint (dsearchn in Matlab) if IDX.size > 0: for i in range(endpointIndx.shape[0]): - temp[endpointIndx[i], ij] = np.nanmax([temp[endpointIndx[i], ij], temp[non_endpointIndx[IDX[ - i]], ij]]) # IF the closest point to the endpoint has a higher CD value, assign that to the endpoint; otherwise leave the CD value of the endpoint unchanged + temp[endpointIndx[i], ij] = np.nanmax( + [temp[endpointIndx[i], ij], temp[non_endpointIndx[IDX[i]], ij]] + ) # IF the closest point to the endpoint has a higher CD value, assign that to the endpoint; otherwise leave the CD value of the endpoint unchanged return temp[:, ij] @@ -485,18 +605,21 @@ def dsearchn(x, y): IDX = [] for line in range(y.shape[0]): distances = np.sqrt(np.nansum(np.power(x - y[line, :], 2), axis=1)) - found_min_dist_ind = (np.nanmin(distances, axis=0) == distances) + found_min_dist_ind = np.nanmin(distances, axis=0) == distances length = found_min_dist_ind.shape[0] IDX.append(np.array(range(length))[found_min_dist_ind][0]) return np.array(IDX) -class HVC(): +class HVC: def __init__(self, *args, **kwargs): - self.fakerandom = ('fakerandom' in kwargs and kwargs['fakerandom']) or ('np_random' in kwargs) - self.has_random_class = ('np_random' in kwargs) - self.random_class = (self.has_random_class and kwargs['np_random']) + self.fakerandom = ("fakerandom" in kwargs and kwargs["fakerandom"]) or ( + "np_random" in kwargs + ) + self.has_random_class = "np_random" in kwargs + self.random_class = self.has_random_class and kwargs["np_random"] from deap.tools._hypervolume import hv + self.hv = hv.hypervolume self.h_vol_c = self.hv_wrapper @@ -504,11 +627,11 @@ def hv_wrapper(self, points): ref = np.max(points, axis=0) return self.hv(points, ref) - def _set_np_random(self,f_rand): + def _set_np_random(self, f_rand): self.random_class = f_rand self.has_random_class = True - def hype_indicator_sampled(self,points, bounds, nrOfSamples): + def hype_indicator_sampled(self, points, bounds, nrOfSamples): try: nrP, dim = points.shape except ValueError: @@ -517,7 +640,9 @@ def hype_indicator_sampled(self,points, bounds, nrOfSamples): F = np.array([0] * nrP) BoxL = np.min(points, 0) - S = np.dot(self.__rand(nrOfSamples, dim), np.diag(bounds - BoxL)) + np.dot(np.ones([nrOfSamples, dim]), np.diag(BoxL)) + S = np.dot(self.__rand(nrOfSamples, dim), np.diag(bounds - BoxL)) + np.dot( + np.ones([nrOfSamples, dim]), np.diag(BoxL) + ) dominated = np.array([0] * nrOfSamples) dominated_ind = np.array([0] * nrOfSamples) @@ -547,8 +672,7 @@ def hype_indicator_sampled(self,points, bounds, nrOfSamples): F = np.transpose(F) * np.prod(bounds - BoxL) / nrOfSamples return F # transpose?? - - def hv_apprx(self,points): + def hv_apprx(self, points): p_xlen = np.shape(points)[0] p_ylen = np.shape(points)[1] indexis = np.array(range(p_xlen)) + 1 @@ -562,7 +686,9 @@ def hv_apprx(self,points): endpointIndx[2 * (i) + 1] = temp[-1:, -1:] endpointIndx = np.int32(np.unique(endpointIndx) - 1) - nrOfSamples = np.max([10000, 2 * p_xlen]) # Dictates the accuracy of approximation + nrOfSamples = np.max( + [10000, 2 * p_xlen] + ) # Dictates the accuracy of approximation HVInf = self.hype_indicator_sampled(points, np.array([1] * p_ylen), nrOfSamples) @@ -580,24 +706,21 @@ def hv_apprx(self,points): return HVInf - def __rand(self, x, y): if self.fakerandom: if self.has_random_class: - return self.random_class.rand(x,y) + return self.random_class.rand(x, y) else: dim = x * y + 1 step = 1.0 / dim - data = np.arange(step, 1, step)[0:x * y] + data = np.arange(step, 1, step)[0 : x * y] if y <= 1: reshaper = [x] else: reshaper = [x, y] return data.reshape(reshaper) else: - return np.random.rand(x,y) - - + return np.random.rand(x, y) def sortrows(self, arr, index): """ @@ -608,7 +731,7 @@ def sortrows(self, arr, index): """ return arr[arr[:, index].argsort()] - def hv_exact(self,points): + def hv_exact(self, points): p_xlen = np.shape(points)[0] p_ylen = np.shape(points)[1] @@ -642,7 +765,9 @@ def hv_exact(self,points): HVInf[indexis[i] - 1] = totalHV - subhv non_endpointIndx = np.array(range(p_xlen)) - non_endpointIndx = non_endpointIndx[[i for i in range(p_xlen) if i not in endpointIndx]] + non_endpointIndx = non_endpointIndx[ + [i for i in range(p_xlen) if i not in endpointIndx] + ] Y = points[endpointIndx, :] X = points[non_endpointIndx, :] @@ -656,7 +781,6 @@ def hv_exact(self,points): return HVInf - def __call__(self, points): p_xlen = np.shape(points)[0] p_ylen = np.shape(points)[1] @@ -686,7 +810,6 @@ def __call__(self, points): return self.hv_apprx(points) - def chc(points): """ function CHC_metric = CHC(points) @@ -734,7 +857,7 @@ def chc(points): hull = ConvexHull(points) except ValueError: hull = None - return np.array([1.] * np.max(points.shape)) + return np.array([1.0] * np.max(points.shape)) Totalv = hull.volume # hull.vertices @@ -751,16 +874,22 @@ def chc(points): all_CHpts_ind[ZEROind] = [] # Identify points in groups ii, iii, iv as defined above - top_facets_ind = np.min(norm, 1) >= 0 # facets with outward norm that has only non-negative components + top_facets_ind = ( + np.min(norm, 1) >= 0 + ) # facets with outward norm that has only non-negative components - ii_iv_CHpts_ind = np.unique(vertices[top_facets_ind]) # points on top of CH, i.e. groups ii and iv + ii_iv_CHpts_ind = np.unique( + vertices[top_facets_ind] + ) # points on top of CH, i.e. groups ii and iv ZEROind = ii_iv_CHpts_ind == 0 ii_iv_CHpts_ind[ZEROind] = [] other_facets_ind = np.array(range(norm.shape[0])) # All facets other_facets_ind = np.delete(other_facets_ind, other_facets_ind[top_facets_ind]) - iii_iv_CHpts_ind = np.unique(vertices[other_facets_ind, :]) # points on bottom of CH, i.e. groups iii and iv + iii_iv_CHpts_ind = np.unique( + vertices[other_facets_ind, :] + ) # points on bottom of CH, i.e. groups iii and iv ZEROind = iii_iv_CHpts_ind == 0 @@ -770,7 +899,9 @@ def chc(points): bor_CHpts_ind = iii_iv_CHpts_ind[bor_ind] bot_CHpts_ind = iii_iv_CHpts_ind - bot_CHpts_ind = bot_CHpts_ind[bor_ind == False] # Remove border points from bottom points + bot_CHpts_ind = bot_CHpts_ind[ + bor_ind == False + ] # Remove border points from bottom points # When number of bottom points and border points are not enough to form CH if bot_CHpts_ind.shape[0] == 0: @@ -779,7 +910,9 @@ def chc(points): return CHC_metric for i in range(bot_CHpts_ind.shape[0]): - y = points[all_CHpts_ind - 1] # Only consider points that are on the vertices of convex hull + y = points[ + all_CHpts_ind - 1 + ] # Only consider points that are on the vertices of convex hull # Meaning that forget the points inside the convex hull ind = np.array([j == bot_CHpts_ind[i] for j in all_CHpts_ind]) y = y[ind == False] diff --git a/src/spotpy/algorithms/rope.py b/src/spotpy/algorithms/rope.py index 47fccdc8..88f60224 100644 --- a/src/spotpy/algorithms/rope.py +++ b/src/spotpy/algorithms/rope.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska and Alejandro Chamorro-Chavez -''' +""" import random import time @@ -13,18 +13,18 @@ class rope(_algorithm): - ''' + """ This class holds the Robust Parameter Estimation (ROPE) algorithm based on Bárdossy and Singh (2008). Bárdossy, A. and Singh, S. K.: Robust estimation of hydrological model parameters, Hydrol. Earth Syst. Sci. Discuss., 5(3), 1641–1675, 2008. - ''' + """ - def __init__(self, *args, **kwargs): + def __init__(self, *args, **kwargs): - ''' + """ Input ---------- :param spot_setup: class @@ -61,19 +61,30 @@ def __init__(self, *args, **kwargs): :param save_sim: boolean *True: Simulation results will be saved *False: Simulation results will not be saved - ''' - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'RObust Parameter Estimation (ROPE) algorithm' + """ + kwargs["optimization_direction"] = "maximize" + kwargs["algorithm_name"] = "RObust Parameter Estimation (ROPE) algorithm" super(rope, self).__init__(*args, **kwargs) def get_best_runs(self, likes, pars, runs, percentage): - ''' - Returns the best xx% of the runs''' - return [new_pars for (new_likes, new_pars) in sorted(zip(likes, pars))[int(len(likes) * (1 - percentage)):]] - - def sample(self, repetitions=None, repetitions_first_run=None, - subsets=5, percentage_first_run=0.10, - percentage_following_runs=0.10, NDIR=None): + """ + Returns the best xx% of the runs""" + return [ + new_pars + for (new_likes, new_pars) in sorted(zip(likes, pars))[ + int(len(likes) * (1 - percentage)) : + ] + ] + + def sample( + self, + repetitions=None, + repetitions_first_run=None, + subsets=5, + percentage_first_run=0.10, + percentage_following_runs=0.10, + NDIR=None, + ): """ Samples from the ROPE algorithm. @@ -91,29 +102,31 @@ def sample(self, repetitions=None, repetitions_first_run=None, next step after in all following subsets NDIR = The number of samples to draw """ - #Reported behaviour: + # Reported behaviour: # Takes ways´to long for npar >8 # wenn mehr parameter produziert werden sollen als reingehen, rechnet er sich tot (ngen>n) - #Subsets < 5 führt manchmal zu Absturz - print('Starting the ROPE algotrithm with '+str(repetitions)+ ' repetitions...') + # Subsets < 5 führt manchmal zu Absturz + print( + "Starting the ROPE algotrithm with " + str(repetitions) + " repetitions..." + ) self.set_repetiton(repetitions) if repetitions_first_run is None: - #Take the first have of the repetitions as burn-in + # Take the first have of the repetitions as burn-in first_run = int(repetitions / 2.0) else: - #Make user defined number of burn-in repetitions + # Make user defined number of burn-in repetitions first_run = repetitions_first_run - repetitions_following_runs = int((repetitions-first_run) - / (subsets-1)) + repetitions_following_runs = int((repetitions - first_run) / (subsets - 1)) # Needed to avoid an error in integer division somewhere in depth function if repetitions_following_runs % 2 != 0: - print('Warning: Burn-in samples and total number of repetions are not compatible.\n' - 'SPOTPY will automatically adjust the number of total repetitions.') - repetitions_following_runs+=1 - + print( + "Warning: Burn-in samples and total number of repetions are not compatible.\n" + "SPOTPY will automatically adjust the number of total repetitions." + ) + repetitions_following_runs += 1 if NDIR is None: NDIR = int(repetitions_following_runs / 100.0) @@ -121,8 +134,8 @@ def sample(self, repetitions=None, repetitions_first_run=None, starttime = time.time() intervaltime = starttime - parset =self.parameter() - self.min_bound, self.max_bound = parset['minbound'], parset['maxbound'] + parset = self.parameter() + self.min_bound, self.max_bound = parset["minbound"], parset["maxbound"] # Init ROPE with one subset likes = [] @@ -142,8 +155,7 @@ def sample(self, repetitions=None, repetitions_first_run=None, random.shuffle(matrix[:, i]) # A generator that produces the parameters - param_generator = ((rep, matrix[rep]) - for rep in range(int(first_run) - 1)) + param_generator = ((rep, matrix[rep]) for rep in range(int(first_run) - 1)) for rep, randompar, simulations in self.repeat(param_generator): # A function that calculates the fitness of the run and the manages the database like = self.postprocessing(rep, randompar, simulations) @@ -155,21 +167,26 @@ def sample(self, repetitions=None, repetitions_first_run=None, if self.status.stop: break if acttime - intervaltime >= 2: - text = '1 Subset: Run %i of %i (best like=%g)' % ( - rep, first_run, self.status.objectivefunction_max) + text = "1 Subset: Run %i of %i (best like=%g)" % ( + rep, + first_run, + self.status.objectivefunction_max, + ) print(text) intervaltime = time.time() for subset in range(subsets - 1): if subset == 0: - best_pars = self.get_best_runs(likes, pars, repetitions_following_runs, - percentage_first_run) + best_pars = self.get_best_runs( + likes, pars, repetitions_following_runs, percentage_first_run + ) else: - best_pars = self.get_best_runs(likes, pars, repetitions_following_runs, - percentage_following_runs) + best_pars = self.get_best_runs( + likes, pars, repetitions_following_runs, percentage_following_runs + ) valid = False trials = 0 - while valid is False and trials < 10 and repetitions_following_runs>1: + while valid is False and trials < 10 and repetitions_following_runs > 1: new_pars = self.programm_depth(best_pars, repetitions_following_runs) if len(new_pars) == repetitions_following_runs: valid = True @@ -177,17 +194,22 @@ def sample(self, repetitions=None, repetitions_first_run=None, trials += 1 pars = [] likes = [] - if(int(repetitions_following_runs) > len(new_pars)): + if int(repetitions_following_runs) > len(new_pars): repetitions_following_runs = len(new_pars) param_generator = ( - (rep, new_pars[rep]) for rep in range(int(repetitions_following_runs))) + (rep, new_pars[rep]) for rep in range(int(repetitions_following_runs)) + ) for rep, ropepar, simulations in self.repeat(param_generator): # Calculate the objective function - like = self.postprocessing(first_run + rep + repetitions_following_runs * subset, ropepar, simulations) + like = self.postprocessing( + first_run + rep + repetitions_following_runs * subset, + ropepar, + simulations, + ) likes.append(like) pars.append(ropepar) if self.status.stop: - print('Stopping samplig') + print("Stopping samplig") break # Progress bar @@ -195,11 +217,12 @@ def sample(self, repetitions=None, repetitions_first_run=None, if repetitions_following_runs is not None: # Refresh progressbar every second if acttime - intervaltime >= 2: - text = '%i Subset: Run %i of %i (best like=%g)' % ( + text = "%i Subset: Run %i of %i (best like=%g)" % ( subset + 2, rep, repetitions_following_runs, - self.status.objectivefunction_max) + self.status.objectivefunction_max, + ) print(text) intervaltime = time.time() if self.status.stop: @@ -207,18 +230,17 @@ def sample(self, repetitions=None, repetitions_first_run=None, self.final_call() - def programm_depth(self, pars, runs): X = np.array(pars) N, NP = X.shape - text = str(N) + ' input vectors with ' + str(NP) + ' parameters' + text = str(N) + " input vectors with " + str(NP) + " parameters" print(text) Ngen = int(runs) # int(N*(1/self.percentage)) - print(('Generating ' + str(Ngen) + ' parameters:')) + print(("Generating " + str(Ngen) + " parameters:")) - NPOSI = Ngen # Number of points to generate + NPOSI = Ngen # Number of points to generate EPS = 0.00001 @@ -237,8 +259,8 @@ def programm_depth(self, pars, runs): CL = np.zeros(NP) TL = np.zeros(shape=(LLEN, NP)) - while (IPOS < NPOSI): - for IM in range(LLEN): # LLEN=1000 Random Vectors of dim NP + while IPOS < NPOSI: + for IM in range(LLEN): # LLEN=1000 Random Vectors of dim NP for j in range(NP): DRAND = np.random.rand() TL[IM, j] = XMIN[j] + DRAND * (XMAX[j] - XMIN[j]) @@ -283,7 +305,7 @@ def fDEP(self, N, NP, X, TL, EPS, LLEN): NSAMP = NSAMP + 1 JSAMP[index + 1] = L - # Covariance matrix of the sample + # Covariance matrix of the sample S = np.zeros(shape=(NP, NP)) for i in range(NP): row = JSAMP[i] @@ -308,10 +330,10 @@ def fDEP(self, N, NP, X, TL, EPS, LLEN): # Eigenvector in the direction of min eigenvalue EVECT = EVE[:, arg[0]] - # Project all points on the line through theta with direction + # Project all points on the line through theta with direction # given by the eigenvector of the smallest eigenvalue, i.e. # the direction orthogonal on the hyperplane given by the np-subset - # Compute the one-dimensional halfspace depth of theta on this line + # Compute the one-dimensional halfspace depth of theta on this line HELP = [] for L in range(N): k = np.dot(EVECT, X[L, :]) @@ -321,12 +343,11 @@ def fDEP(self, N, NP, X, TL, EPS, LLEN): ICROSS = 0 for LU in range(LLEN): - if (LNDEP[LU] > ICROSS): - EKT = 0. + if LNDEP[LU] > ICROSS: + EKT = 0.0 NT = 0 EKT = EKT + np.dot(TL[LU, :], EVECT) - if ((EKT < (HELP[0] - EPS)) or ( - EKT > (HELP[N - 1] + EPS))): + if (EKT < (HELP[0] - EPS)) or (EKT > (HELP[N - 1] + EPS)): N1 = 0 else: N1 = 1 @@ -334,13 +355,13 @@ def fDEP(self, N, NP, X, TL, EPS, LLEN): dirac = 0 while dirac == 0: dirac = 1 - N3 = (N1 + N2) / 2. - if (HELP[int(N3)] < EKT): + N3 = (N1 + N2) / 2.0 + if HELP[int(N3)] < EKT: N1 = N3 else: N2 = N3 - if(N2 - N1) > 1: + if (N2 - N1) > 1: dirac = 0 NUMH = N1 LNDEP[LU] = min(LNDEP[LU], min(NUMH + NT, N - NUMH)) - return LNDEP \ No newline at end of file + return LNDEP diff --git a/src/spotpy/algorithms/sa.py b/src/spotpy/algorithms/sa.py index c1d01892..ba787fae 100644 --- a/src/spotpy/algorithms/sa.py +++ b/src/spotpy/algorithms/sa.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska and Alejandro Chamorro-Chavez -''' +""" import numpy as np @@ -50,8 +50,8 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['optimization_direction'] = 'maximize' - kwargs['algorithm_name'] = 'Simulated Annealing (SA) algorithm' + kwargs["optimization_direction"] = "maximize" + kwargs["algorithm_name"] = "Simulated Annealing (SA) algorithm" super(sa, self).__init__(*args, **kwargs) def check_par_validity(self, par): @@ -62,7 +62,7 @@ def check_par_validity(self, par): if par[i] > self.max_bound[i]: par[i] = self.max_bound[i] else: - print('ERROR: Bounds have not the same lenghts as Parameterarray') + print("ERROR: Bounds have not the same lenghts as Parameterarray") return par def sample(self, repetitions, Tini=80, Ntemp=50, alpha=0.99): @@ -75,22 +75,24 @@ def sample(self, repetitions, Tini=80, Ntemp=50, alpha=0.99): Maximum number of runs. """ self.set_repetiton(repetitions) - print('Starting the SA algotrithm with '+str(repetitions)+ ' repetitions...') - self.min_bound, self.max_bound = self.parameter( - )['minbound'], self.parameter()['maxbound'] - stepsizes = self.parameter()['step'] + print("Starting the SA algotrithm with " + str(repetitions) + " repetitions...") + self.min_bound, self.max_bound = ( + self.parameter()["minbound"], + self.parameter()["maxbound"], + ) + stepsizes = self.parameter()["step"] Eopt = 999999 Titer = Tini - x = self.parameter()['optguess'] + x = self.parameter()["optguess"] Xopt = x _, _, simulations = self.simulate((1, x)) Enew = self.postprocessing(1, x, simulations) Eopt = Enew - rep = 1 # Because the model has been started once already - while (Titer > 0.001 * Tini and rep < repetitions): + rep = 1 # Because the model has been started once already + while Titer > 0.001 * Tini and rep < repetitions: for counter in range(Ntemp): - if (Enew > Eopt): # Run was better + if Enew > Eopt: # Run was better Eopt = Enew Xopt = x Eopt = Enew @@ -100,20 +102,21 @@ def sample(self, repetitions, Tini=80, Ntemp=50, alpha=0.99): accepted = frandom(Enew, Eopt, Titer) if accepted == True: Xopt = x - x = np.random.uniform(low=Xopt - stepsizes, high=Xopt + stepsizes) + x = np.random.uniform( + low=Xopt - stepsizes, high=Xopt + stepsizes + ) else: x = np.random.normal(loc=Xopt, scale=stepsizes) x = self.check_par_validity(x) - _, _, simulations = self.simulate((rep+1, x)) - Enew = self.postprocessing(rep+1, x, simulations) + _, _, simulations = self.simulate((rep + 1, x)) + Enew = self.postprocessing(rep + 1, x, simulations) rep += 1 if self.status.stop: break - Titer = alpha * Titer self.final_call() @@ -121,12 +124,12 @@ def sample(self, repetitions, Tini=80, Ntemp=50, alpha=0.99): def frandom(Enew, Eold, Titer): dE = Eold - Enew accepted = False - if (dE > 0): + if dE > 0: P = np.exp(-(dE) / Titer) # Boltzmann distr. rn = np.random.rand() - if (rn <= P): # New configuration accepted + if rn <= P: # New configuration accepted accepted = True else: accepted = True - return accepted \ No newline at end of file + return accepted diff --git a/src/spotpy/algorithms/sceua.py b/src/spotpy/algorithms/sceua.py index 82a9d871..a0841b5c 100644 --- a/src/spotpy/algorithms/sceua.py +++ b/src/spotpy/algorithms/sceua.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python(SPOTPY). :author: Tobias Houska and Stijn Van Hoey -''' +""" import numpy as np @@ -57,8 +57,8 @@ def __init__(self, *args, **kwargs): * True: Simulation results will be saved * False: Simulation results will not be saved """ - kwargs['optimization_direction'] = 'minimize' - kwargs['algorithm_name'] = 'Shuffled Complex Evolution (SCE-UA) algorithm' + kwargs["optimization_direction"] = "minimize" + kwargs["algorithm_name"] = "Shuffled Complex Evolution (SCE-UA) algorithm" super(sceua, self).__init__(*args, **kwargs) def simulate(self, id_params_tuple): @@ -73,7 +73,17 @@ def simulate(self, id_params_tuple): else: # complex-evolution igs, x, xf, cx, cf, sce_vars = id_params_tuple - self.npg, self.nopt, self.ngs, self.nspl, self.nps, self.bl, self.bu, self.stochastic_parameters, discarded_runs = sce_vars + ( + self.npg, + self.nopt, + self.ngs, + self.nspl, + self.nps, + self.bl, + self.bu, + self.stochastic_parameters, + discarded_runs, + ) = sce_vars # Partition the population into complexes (sub-populations); k1 = np.arange(self.npg, dtype=int) k2 = k1 * self.ngs + igs @@ -90,8 +100,16 @@ def simulate(self, id_params_tuple): lcs[0] = 1 for k3 in range(1, self.nps): for i in range(1000): - lpos = int(np.floor( - self.npg + 0.5 - np.sqrt((self.npg + 0.5)**2 - self.npg * (self.npg + 1) * np.random.random()))) + lpos = int( + np.floor( + self.npg + + 0.5 + - np.sqrt( + (self.npg + 0.5) ** 2 + - self.npg * (self.npg + 1) * np.random.random() + ) + ) + ) # check if the element has already been chosen idx = (lcs[0:k3] == lpos).nonzero() if idx[0].size == 0: @@ -103,7 +121,9 @@ def simulate(self, id_params_tuple): s = cx[lcs, :] sf = cf[lcs] - snew, fnew, simulation, discarded_runs = self._cceua(s, sf, discarded_runs) + snew, fnew, simulation, discarded_runs = self._cceua( + s, sf, discarded_runs + ) likes.append(fnew) pars.append(snew) sims.append(simulation) @@ -124,7 +144,15 @@ def simulate(self, id_params_tuple): # Replace the complex back into the population; return igs, likes, pars, sims, cx, cf, k1, k2, discarded_runs - def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.0000001, max_loop_inc=None): + def sample( + self, + repetitions, + ngs=20, + kstop=100, + pcento=0.0000001, + peps=0.0000001, + max_loop_inc=None, + ): """ Samples from parameter distributions using SCE-UA (Duan, 2004), converted to python by Van Hoey (2011), restructured and parallelized by Houska et al (2015). @@ -148,7 +176,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 self.set_repetiton(repetitions) # Initialize SCE parameters: self.ngs = ngs - randompar = self.parameter()['random'] + randompar = self.parameter()["random"] self.nopt = randompar.size self.npg = 2 * self.nopt + 1 self.nps = self.nopt + 1 @@ -156,8 +184,7 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 npt = self.npg * self.ngs self.iseed = 1 self.discarded_runs = 0 - self.bl, self.bu = self.parameter()['minbound'], self.parameter()[ - 'maxbound'] + self.bl, self.bu = self.parameter()["minbound"], self.parameter()["maxbound"] bound = self.bu - self.bl # np.array self.stochastic_parameters = bound != 0 proceed = True @@ -165,31 +192,33 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 # burnin_only, needed to indictat if only the burnin phase should be run burnin_only = False - if self.breakpoint == 'read' or self.breakpoint == 'readandwrite': + if self.breakpoint == "read" or self.breakpoint == "readandwrite": data_frombreak = self.read_breakdata(self.dbname) icall = data_frombreak[0] x = data_frombreak[1][0] xf = data_frombreak[1][1] gnrng = data_frombreak[2] - elif self.breakpoint is None or self.breakpoint == 'write': + elif self.breakpoint is None or self.breakpoint == "write": # Create an initial population to fill array x(npt,self.self.nopt): x = self._sampleinputmatrix(npt, self.nopt) nloop = 0 icall = 0 xf = np.zeros(npt) - print('Starting burn-in sampling...') + print("Starting burn-in sampling...") # Burn in param_generator = ((rep, x[rep]) for rep in range(int(npt))) for rep, randompar, simulations in self.repeat(param_generator): # Calculate the objective function - like = self.postprocessing(icall, randompar, simulations,chains=0) + like = self.postprocessing(icall, randompar, simulations, chains=0) xf[rep] = like - icall+=1 + icall += 1 if self.status.stop: - print('Stopping samplig. Maximum number of repetitions reached already during burn-in') + print( + "Stopping samplig. Maximum number of repetitions reached already during burn-in" + ) proceed = False break # Sort the population in order of increasing function values; @@ -200,10 +229,12 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 if max_loop_inc == 1: burnin_only = True - print('Burn-in sampling completed...') + print("Burn-in sampling completed...") else: - raise ValueError("Don't know the breakpoint keyword {}".format(self.breakpoint)) + raise ValueError( + "Don't know the breakpoint keyword {}".format(self.breakpoint) + ) # Record the best points; bestx = x[0, :] @@ -214,75 +245,104 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 # Computes the normalized geometric range of the parameters gnrng = np.exp( - np.mean(np.log((np.max(x[:, self.stochastic_parameters], axis=0) - np.min(x[:, self.stochastic_parameters], axis=0)) / bound[self.stochastic_parameters]))) + np.mean( + np.log( + ( + np.max(x[:, self.stochastic_parameters], axis=0) + - np.min(x[:, self.stochastic_parameters], axis=0) + ) + / bound[self.stochastic_parameters] + ) + ) + ) # Check for convergency; if self.status.rep >= repetitions: - print('*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT') - print('ON THE MAXIMUM NUMBER OF TRIALS ') + print("*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT") + print("ON THE MAXIMUM NUMBER OF TRIALS ") print(repetitions) - print('HAS BEEN EXCEEDED. SEARCH WAS STOPPED AT TRIAL NUMBER:') + print("HAS BEEN EXCEEDED. SEARCH WAS STOPPED AT TRIAL NUMBER:") print(self.status.rep) - print('OF THE INITIAL LOOP!') + print("OF THE INITIAL LOOP!") if gnrng < peps: print( - 'THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE') - - - + "THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE" + ) # Begin evolution loops: nloop = 0 criter = [] - criter_change_pcent = 1e+5 + criter_change_pcent = 1e5 proceed = True # if only burnin, stop the following while loop to be started # write brakpoint if only a single generation shall be computed and # the main loop will not be executed if burnin_only: - if self.breakpoint == 'write' or self.breakpoint == 'readandwrite': + if self.breakpoint == "write" or self.breakpoint == "readandwrite": work = (self.status.rep, (x, xf), gnrng) self.write_breakdata(self.dbname, work) proceed = False - print('ONLY THE BURNIN PHASE WAS COMPUTED') + print("ONLY THE BURNIN PHASE WAS COMPUTED") else: - self.repeat.setphase('ComplexEvo') - print('Starting Complex Evolution...') - - while icall < repetitions and gnrng > peps and criter_change_pcent > pcento and proceed == True: + self.repeat.setphase("ComplexEvo") + print("Starting Complex Evolution...") + + while ( + icall < repetitions + and gnrng > peps + and criter_change_pcent > pcento + and proceed == True + ): nloop += 1 - print ('ComplexEvo loop #%d in progress...' % nloop) + print("ComplexEvo loop #%d in progress..." % nloop) # Loop on complexes (sub-populations); cx = np.zeros((self.npg, self.nopt)) cf = np.zeros((self.npg)) remaining_runs = repetitions - self.status.rep if remaining_runs <= self.ngs: - self.ngs = remaining_runs-1 + self.ngs = remaining_runs - 1 proceed = False - sce_vars = [self.npg, self.nopt, self.ngs, self.nspl, - self.nps, self.bl, self.bu, self.stochastic_parameters, self.discarded_runs] - param_generator = ((rep, x, xf, cx, cf, sce_vars) - for rep in range(int(self.ngs))) - for igs, likes, pars, sims, cx, cf, k1, k2, discarded_runs in self.repeat(param_generator): + sce_vars = [ + self.npg, + self.nopt, + self.ngs, + self.nspl, + self.nps, + self.bl, + self.bu, + self.stochastic_parameters, + self.discarded_runs, + ] + param_generator = ( + (rep, x, xf, cx, cf, sce_vars) for rep in range(int(self.ngs)) + ) + for igs, likes, pars, sims, cx, cf, k1, k2, discarded_runs in self.repeat( + param_generator + ): x[k2, :] = cx[k1, :] xf[k2] = cf[k1] self.discard_runs = discarded_runs for i in range(len(likes)): if not self.status.stop: - like = self.postprocessing(i, pars[i], sims[i], chains=i+1) + like = self.postprocessing(i, pars[i], sims[i], chains=i + 1) else: - #Collect data from all slaves but do not save - proceed=False - like = self.postprocessing(i, pars[i], sims[i], chains=i+1, save_run=False) - self.discarded_runs+=1 - print('Skipping saving') - - if self.breakpoint == 'write' or self.breakpoint == 'readandwrite'\ - and self.status.rep >= self.backup_every_rep: + # Collect data from all slaves but do not save + proceed = False + like = self.postprocessing( + i, pars[i], sims[i], chains=i + 1, save_run=False + ) + self.discarded_runs += 1 + print("Skipping saving") + + if ( + self.breakpoint == "write" + or self.breakpoint == "readandwrite" + and self.status.rep >= self.backup_every_rep + ): work = (self.status.rep, (x, xf), gnrng) self.write_breakdata(self.dbname, work) @@ -303,37 +363,54 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 # Computes the normalized geometric range of the parameters gnrng = np.exp( - np.mean(np.log((np.max(x[:, self.stochastic_parameters], axis=0) - np.min(x[:, self.stochastic_parameters], axis=0)) / bound[self.stochastic_parameters]))) + np.mean( + np.log( + ( + np.max(x[:, self.stochastic_parameters], axis=0) + - np.min(x[:, self.stochastic_parameters], axis=0) + ) + / bound[self.stochastic_parameters] + ) + ) + ) criter = np.append(criter, bestf) # Check for convergency; if self.status.rep >= repetitions: - print('*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT') - print('ON THE MAXIMUM NUMBER OF TRIALS ') + print("*** OPTIMIZATION SEARCH TERMINATED BECAUSE THE LIMIT") + print("ON THE MAXIMUM NUMBER OF TRIALS ") print(repetitions) - print('HAS BEEN EXCEEDED.') + print("HAS BEEN EXCEEDED.") elif gnrng < peps: print( - 'THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE') - + "THE POPULATION HAS CONVERGED TO A PRESPECIFIED SMALL PARAMETER SPACE" + ) - elif nloop >= kstop: # necessary so that the area of high posterior density is visited as much as possible - print ('Objective function convergence criteria is now being updated and assessed...') - absolute_change = np.abs( - criter[nloop - 1] - criter[nloop - kstop])*100 - denominator = np.mean(np.abs(criter[(nloop - kstop):nloop])) + elif ( + nloop >= kstop + ): # necessary so that the area of high posterior density is visited as much as possible + print( + "Objective function convergence criteria is now being updated and assessed..." + ) + absolute_change = ( + np.abs(criter[nloop - 1] - criter[nloop - kstop]) * 100 + ) + denominator = np.mean(np.abs(criter[(nloop - kstop) : nloop])) if denominator == 0.0: criter_change_pcent = 0.0 else: criter_change_pcent = absolute_change / denominator - print ('Updated convergence criteria: %f' % criter_change_pcent) + print("Updated convergence criteria: %f" % criter_change_pcent) if criter_change_pcent <= pcento: - print('THE BEST POINT HAS IMPROVED IN LAST %d LOOPS BY LESS THAN THE USER-SPECIFIED THRESHOLD %f' % ( - kstop, pcento)) print( - 'CONVERGENCY HAS ACHIEVED BASED ON OBJECTIVE FUNCTION CRITERIA!!!') + "THE BEST POINT HAS IMPROVED IN LAST %d LOOPS BY LESS THAN THE USER-SPECIFIED THRESHOLD %f" + % (kstop, pcento) + ) + print( + "CONVERGENCY HAS ACHIEVED BASED ON OBJECTIVE FUNCTION CRITERIA!!!" + ) elif self.status.stop: proceed = False break @@ -341,37 +418,38 @@ def sample(self, repetitions, ngs=20, kstop=100, pcento=0.0000001, peps=0.000000 # stop, if max number of loop iteration was reached elif max_loop_inc and nloop >= max_loop_inc: proceed = False - print('THE MAXIMAL NUMBER OF LOOPS PER EXECUTION WAS REACHED') + print("THE MAXIMAL NUMBER OF LOOPS PER EXECUTION WAS REACHED") break # End of the Outer Loops - print('SEARCH WAS STOPPED AT TRIAL NUMBER: %d' % self.status.rep) - print('NUMBER OF DISCARDED TRIALS: %d' % self.discarded_runs) - print('NORMALIZED GEOMETRIC RANGE = %f' % gnrng) - print('THE BEST POINT HAS IMPROVED IN LAST %d LOOPS BY %f PERCENT' % ( - kstop, criter_change_pcent)) + print("SEARCH WAS STOPPED AT TRIAL NUMBER: %d" % self.status.rep) + print("NUMBER OF DISCARDED TRIALS: %d" % self.discarded_runs) + print("NORMALIZED GEOMETRIC RANGE = %f" % gnrng) + print( + "THE BEST POINT HAS IMPROVED IN LAST %d LOOPS BY %f PERCENT" + % (kstop, criter_change_pcent) + ) # reshape BESTX - #BESTX = BESTX.reshape(BESTX.size // self.nopt, self.nopt) + # BESTX = BESTX.reshape(BESTX.size // self.nopt, self.nopt) self.final_call() - def _cceua(self, s, sf, discarded_runs): - # This is the subroutine for generating a new point in a simplex - # - # s(.,.) = the sorted simplex in order of increasing function values - # s(.) = function values in increasing order - # - # LIST OF LOCAL VARIABLES - # sb(.) = the best point of the simplex - # sw(.) = the worst point of the simplex - # w2(.) = the second worst point of the simplex - # fw = function value of the worst point - # ce(.) = the centroid of the simplex excluding wo - # snew(.) = new point generated from the simplex - # iviol = flag indicating if constraints are violated - # = 1 , yes - # = 0 , no + # This is the subroutine for generating a new point in a simplex + # + # s(.,.) = the sorted simplex in order of increasing function values + # s(.) = function values in increasing order + # + # LIST OF LOCAL VARIABLES + # sb(.) = the best point of the simplex + # sw(.) = the worst point of the simplex + # w2(.) = the second worst point of the simplex + # fw = function value of the worst point + # ce(.) = the centroid of the simplex excluding wo + # snew(.) = new point generated from the simplex + # iviol = flag indicating if constraints are violated + # = 1 , yes + # = 0 , no constant_parameters = np.invert(self.stochastic_parameters) self.nps, self.nopt = s.shape alpha = 1.0 @@ -404,8 +482,10 @@ def _cceua(self, s, sf, discarded_runs): ## fnew = functn(self.nopt,snew); _, _, simulations = _algorithm.simulate(self, (1, snew)) - like = self.postprocessing(1, snew, simulations, save_run=False, block_print=True) - discarded_runs+=1 + like = self.postprocessing( + 1, snew, simulations, save_run=False, block_print=True + ) + discarded_runs += 1 fnew = like @@ -415,29 +495,33 @@ def _cceua(self, s, sf, discarded_runs): snew[constant_parameters] = sw[constant_parameters] _, _, simulations = _algorithm.simulate(self, (2, snew)) - like = self.postprocessing(2, snew, simulations, save_run=False, block_print=True) - discarded_runs+=1 + like = self.postprocessing( + 2, snew, simulations, save_run=False, block_print=True + ) + discarded_runs += 1 fnew = like - # Both reflection and contraction have failed, attempt a random point; + # Both reflection and contraction have failed, attempt a random point; if fnew > fw: snew = self._sampleinputmatrix(1, self.nopt)[0] _, _, simulations = _algorithm.simulate(self, (3, snew)) - like = self.postprocessing(3, snew, simulations, save_run=False, block_print=True) - discarded_runs+=1 + like = self.postprocessing( + 3, snew, simulations, save_run=False, block_print=True + ) + discarded_runs += 1 fnew = like # END OF CCE return snew, fnew, simulations, discarded_runs def _sampleinputmatrix(self, nrows, npars): - ''' + """ Create inputparameter matrix for nrows simualtions, for npars with bounds ub and lb (np.array from same size) distname gives the initial sampling ditribution (currently one for all parameters) returns np.array - ''' + """ x = np.zeros((nrows, npars)) for i in range(nrows): - x[i, :] = self.parameter()['random'] + x[i, :] = self.parameter()["random"] return x diff --git a/src/spotpy/analyser.py b/src/spotpy/analyser.py index 1edf1052..7481bcfd 100644 --- a/src/spotpy/analyser.py +++ b/src/spotpy/analyser.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -8,15 +8,14 @@ Holds functions to analyse results out of the database. Note: This part of SPOTPY is in alpha status and not yet ready for production use. -''' +""" import numpy as np import spotpy -font = {'family' : 'calibri', - 'weight' : 'normal', - 'size' : 18} +font = {"family": "calibri", "weight": "normal", "size": 18} + def load_csv_results(filename, usecols=None): """ @@ -29,26 +28,38 @@ def load_csv_results(filename, usecols=None): :rtype: array """ if usecols == None: - return np.genfromtxt(filename+'.csv',delimiter=',',names=True,invalid_raise=False) + return np.genfromtxt( + filename + ".csv", delimiter=",", names=True, invalid_raise=False + ) else: - return np.genfromtxt(filename+'.csv',delimiter=',',names=True,skip_footer=1,invalid_raise=False,usecols=usecols)[1:] + return np.genfromtxt( + filename + ".csv", + delimiter=",", + names=True, + skip_footer=1, + invalid_raise=False, + usecols=usecols, + )[1:] + def load_hdf5_results(filename): """ - Get an array of your results in the given file. - - :filename: Expects an available filename, without the .h5 ending, + Get an array of your results in the given file. + + :filename: Expects an available filename, without the .h5 ending, in your working directory :type: str - :return: Result array, simulation is an ndarray, + :return: Result array, simulation is an ndarray, which is different to structured arrays return by the csv/sql/ram databases :rtype: array """ import h5py - with h5py.File(filename+'.h5', 'r') as f: + + with h5py.File(filename + ".h5", "r") as f: return f[filename][()] + def load_csv_parameter_results(filename, usecols=None): """ Get an array of your results in the given file, without the first and the @@ -61,38 +72,49 @@ def load_csv_parameter_results(filename, usecols=None): :return: Result array :rtype: array """ - ofile=open(filename+'.csv') + ofile = open(filename + ".csv") line = ofile.readline() - header=line.split(',') + header = line.split(",") ofile.close() - - words=[] - index =[] - for i,word in enumerate(header): - if word.startswith('par'): - words.append(word) - index.append(i) - return np.genfromtxt(filename+'.csv', delimiter=',', names=words, - usecols=index, invalid_raise=False, skip_header=1) + + words = [] + index = [] + for i, word in enumerate(header): + if word.startswith("par"): + words.append(word) + index.append(i) + return np.genfromtxt( + filename + ".csv", + delimiter=",", + names=words, + usecols=index, + invalid_raise=False, + skip_header=1, + ) + def get_header(results): return results.dtype.names + def get_like_fields(results): header = get_header(results) - fields=[word for word in header if word.startswith('like')] + fields = [word for word in header if word.startswith("like")] return fields + def get_parameter_fields(results): header = get_header(results) - fields=[word for word in header if word.startswith('par')] + fields = [word for word in header if word.startswith("par")] return fields + def get_simulation_fields(results): header = get_header(results) - fields=[word for word in header if word.startswith('sim')] + fields = [word for word in header if word.startswith("sim")] return fields + def get_modelruns(results): """ Get an shorter array out of your result array, containing just the @@ -104,9 +126,10 @@ def get_modelruns(results): :return: Array containing just the columns beginnning with the indice "sim" :rtype: array """ - fields=[word for word in results.dtype.names if word.startswith('sim')] + fields = [word for word in results.dtype.names if word.startswith("sim")] return results[fields] + def get_parameters(results): """ Get an shorter array out of your result array, containing just the @@ -118,10 +141,11 @@ def get_parameters(results): :return: Array containing just the columns beginnning with the indice "par" :rtype: array """ - fields=[word for word in results.dtype.names if word.startswith('par')] + fields = [word for word in results.dtype.names if word.startswith("par")] results = results[fields] return results + def get_parameternames(results): """ Get list of strings with the names of the parameters of your model. @@ -133,14 +157,15 @@ def get_parameternames(results): :rtype: list """ - fields=[word for word in results.dtype.names if word.startswith('par')] + fields = [word for word in results.dtype.names if word.startswith("par")] - parnames=[] + parnames = [] for field in fields: parnames.append(field[3:]) return parnames -def get_maxlikeindex(results,verbose=True): + +def get_maxlikeindex(results, verbose=True): """ Get the maximum objectivefunction of your result array @@ -152,19 +177,20 @@ def get_maxlikeindex(results,verbose=True): :rtype: int and float """ try: - likes=results['like'] + likes = results["like"] except ValueError: - likes=results['like1'] - maximum=np.nanmax(likes) - value=str(round(maximum,4)) - text=str('Run number ' ) - index=np.where(likes==maximum) - text2=str(' has the highest objectivefunction with: ') - textv=text+str(index[0][0])+text2+value + likes = results["like1"] + maximum = np.nanmax(likes) + value = str(round(maximum, 4)) + text = str("Run number ") + index = np.where(likes == maximum) + text2 = str(" has the highest objectivefunction with: ") + textv = text + str(index[0][0]) + text2 + value if verbose: print(textv) return index, maximum + def get_minlikeindex(results): """ Get the minimum objectivefunction of your result array @@ -177,21 +203,21 @@ def get_minlikeindex(results): :rtype: int and float """ try: - likes=results['like'] + likes = results["like"] except ValueError: - likes=results['like1'] - minimum=np.nanmin(likes) - value=str(round(minimum,4)) - text=str('Run number ' ) - index=np.where(likes==minimum) - text2=str(' has the lowest objectivefunction with: ') - textv=text+str(index[0][0])+text2+value + likes = results["like1"] + minimum = np.nanmin(likes) + value = str(round(minimum, 4)) + text = str("Run number ") + index = np.where(likes == minimum) + text2 = str(" has the lowest objectivefunction with: ") + textv = text + str(index[0][0]) + text2 + value print(textv) return index[0][0], minimum -def get_percentiles(results,sim_number=''): +def get_percentiles(results, sim_number=""): """ Get 5,25,50,75 and 95 percentiles of your simulations @@ -204,17 +230,22 @@ def get_percentiles(results,sim_number=''): :return: Percentiles of simulations :rtype: int and float """ - p5,p25,p50,p75,p95=[],[],[],[],[] - fields=[word for word in results.dtype.names if word.startswith('simulation'+str(sim_number))] + p5, p25, p50, p75, p95 = [], [], [], [], [] + fields = [ + word + for word in results.dtype.names + if word.startswith("simulation" + str(sim_number)) + ] for i in range(len(fields)): - p5.append(np.percentile(list(results[fields[i]]),5)) - p25.append(np.percentile(list(results[fields[i]]),25)) - p50.append(np.percentile(list(results[fields[i]]),50)) - p75.append(np.percentile(list(results[fields[i]]),75)) - p95.append(np.percentile(list(results[fields[i]]),95)) - return p5,p25,p50,p75,p95 - -def calc_like(results,evaluation,objectivefunction): + p5.append(np.percentile(list(results[fields[i]]), 5)) + p25.append(np.percentile(list(results[fields[i]]), 25)) + p50.append(np.percentile(list(results[fields[i]]), 50)) + p75.append(np.percentile(list(results[fields[i]]), 75)) + p95.append(np.percentile(list(results[fields[i]]), 95)) + return p5, p25, p50, p75, p95 + + +def calc_like(results, evaluation, objectivefunction): """ Calculate another objectivefunction of your results @@ -223,20 +254,21 @@ def calc_like(results,evaluation,objectivefunction): :evaluation: Expects values, which correspond to your simulations :type: list - + :objectivefunction: Takes evaluation and simulation data and returns a objectivefunction, e.g. spotpy.objectvefunction.rmse :type: function :return: New objectivefunction list :rtype: list """ - likes=[] - sim=get_modelruns(results) + likes = [] + sim = get_modelruns(results) for s in sim: - likes.append(objectivefunction(evaluation,list(s))) + likes.append(objectivefunction(evaluation, list(s))) return likes -def compare_different_objectivefunctions(like1,like2): + +def compare_different_objectivefunctions(like1, like2): """ Performs the Welch’s t-test (aka unequal variances t-test) @@ -250,15 +282,17 @@ def compare_different_objectivefunctions(like1,like2): :rtype: list """ from scipy import stats + out = stats.ttest_ind(like1, like2, equal_var=False) print(out) - if out[1]>0.05: - print('like1 is NOT signifikant different to like2: p>0.05') + if out[1] > 0.05: + print("like1 is NOT signifikant different to like2: p>0.05") else: - print('like1 is signifikant different to like2: p<0.05' ) + print("like1 is signifikant different to like2: p<0.05") return out -def get_posterior(results,percentage=10, maximize=True): + +def get_posterior(results, percentage=10, maximize=True): """ Get the best XX% of your result array (e.g. best 10% model runs would be a threshold setting of 0.9) @@ -267,7 +301,7 @@ def get_posterior(results,percentage=10, maximize=True): :percentag: Optional, ratio of values that will be deleted. :type: float - + :maximize: If True (default), higher "like1" column values are assumed to be better. If False, lower "like1" column values are assumed to be better. @@ -275,60 +309,82 @@ def get_posterior(results,percentage=10, maximize=True): :rtype: array """ if maximize: - index = np.where(results['like1']>=np.percentile(results['like1'],100.0-percentage)) + index = np.where( + results["like1"] >= np.percentile(results["like1"], 100.0 - percentage) + ) else: - index = np.where(results['like1']>=np.percentile(results['like1'],100.0-percentage)) + index = np.where( + results["like1"] >= np.percentile(results["like1"], 100.0 - percentage) + ) return results[index] + def plot_parameter_trace(ax, results, parameter): - #THis function plots the parameter setting for each run - for i in range(int(max(results['chain']))): - index=np.where(results['chain']==i) - ax.plot(results['par'+parameter['name']][index],'.', markersize=2) - ax.set_ylabel(parameter['name']) - ax.set_ylim(parameter['minbound'], parameter['maxbound']) - + # THis function plots the parameter setting for each run + for i in range(int(max(results["chain"]))): + index = np.where(results["chain"] == i) + ax.plot(results["par" + parameter["name"]][index], ".", markersize=2) + ax.set_ylabel(parameter["name"]) + ax.set_ylim(parameter["minbound"], parameter["maxbound"]) + + def plot_posterior_parameter_histogram(ax, results, parameter): - #This functing is the last 100 runs - ax.hist(results['par'+parameter['name']][-100:], - bins =np.linspace(parameter['minbound'],parameter['maxbound'],20)) - ax.set_ylabel('Density') - ax.set_xlim(parameter['minbound'], parameter['maxbound']) - -def plot_parameter_uncertainty(posterior_results,evaluation, fig_name='Posterior_parameter_uncertainty.png'): + # This functing is the last 100 runs + ax.hist( + results["par" + parameter["name"]][-100:], + bins=np.linspace(parameter["minbound"], parameter["maxbound"], 20), + ) + ax.set_ylabel("Density") + ax.set_xlim(parameter["minbound"], parameter["maxbound"]) + + +def plot_parameter_uncertainty( + posterior_results, evaluation, fig_name="Posterior_parameter_uncertainty.png" +): import matplotlib.pyplot as plt simulation_fields = get_simulation_fields(posterior_results) - fig= plt.figure(figsize=(16,9)) + fig = plt.figure(figsize=(16, 9)) for i in range(len(evaluation)): if evaluation[i] == -9999: evaluation[i] = np.nan - ax = plt.subplot(1,1,1) - q5,q95=[],[] + ax = plt.subplot(1, 1, 1) + q5, q95 = [], [] for field in simulation_fields: - q5.append(np.percentile(list(posterior_results[field]),2.5)) - q95.append(np.percentile(list(posterior_results[field]),97.5)) - ax.plot(q5,color='dimgrey',linestyle='solid') - ax.plot(q95,color='dimgrey',linestyle='solid') - ax.fill_between(np.arange(0,len(q5),1),list(q5),list(q95),facecolor='dimgrey',zorder=0, - linewidth=0,label='parameter uncertainty') - ax.plot(evaluation,'r.',markersize=1, label='Observation data') - - bestindex,bestobjf = get_maxlikeindex(posterior_results,verbose=False) - plt.plot(list(posterior_results[simulation_fields][bestindex][0]),'b-',label='Obj='+str(round(bestobjf,2))) - plt.xlabel('Number of Observation Points') - plt.ylabel ('Simulated value') - plt.legend(loc='upper right') - fig.savefig(fig_name,dpi=300) - text='A plot of the parameter uncertainty has been saved as '+fig_name + q5.append(np.percentile(list(posterior_results[field]), 2.5)) + q95.append(np.percentile(list(posterior_results[field]), 97.5)) + ax.plot(q5, color="dimgrey", linestyle="solid") + ax.plot(q95, color="dimgrey", linestyle="solid") + ax.fill_between( + np.arange(0, len(q5), 1), + list(q5), + list(q95), + facecolor="dimgrey", + zorder=0, + linewidth=0, + label="parameter uncertainty", + ) + ax.plot(evaluation, "r.", markersize=1, label="Observation data") + + bestindex, bestobjf = get_maxlikeindex(posterior_results, verbose=False) + plt.plot( + list(posterior_results[simulation_fields][bestindex][0]), + "b-", + label="Obj=" + str(round(bestobjf, 2)), + ) + plt.xlabel("Number of Observation Points") + plt.ylabel("Simulated value") + plt.legend(loc="upper right") + fig.savefig(fig_name, dpi=300) + text = "A plot of the parameter uncertainty has been saved as " + fig_name print(text) - def sort_like(results): - return np.sort(results,axis=0) + return np.sort(results, axis=0) + -def get_best_parameterset(results,maximize=True): +def get_best_parameterset(results, maximize=True): """ Get the best parameter set of your result array, depending on your first objectivefunction @@ -342,24 +398,25 @@ def get_best_parameterset(results,maximize=True): :rtype: array """ try: - likes=results['like'] + likes = results["like"] except ValueError: - likes=results['like1'] + likes = results["like1"] if maximize: - best=np.nanmax(likes) + best = np.nanmax(likes) else: - best=np.nanmin(likes) - index=np.where(likes==best) + best = np.nanmin(likes) + index = np.where(likes == best) best_parameter_set = get_parameters(results[index])[0] parameter_names = get_parameternames(results) - text='' + text = "" for i in range(len(parameter_names)): - text+=parameter_names[i]+'='+str(best_parameter_set[i])+', ' - print('Best parameter set:\n'+text[:-2]) + text += parameter_names[i] + "=" + str(best_parameter_set[i]) + ", " + print("Best parameter set:\n" + text[:-2]) return get_parameters(results[index]) + def get_min_max(spotpy_setup): """ Get the minimum and maximum values of your parameters function of the spotpy setup @@ -370,12 +427,15 @@ def get_min_max(spotpy_setup): :return: Possible minimal and maximal values of all parameters in the parameters function of the spotpy_setup class :rtype: Two arrays """ - parameter_obj = spotpy.parameter.generate(spotpy.parameter.get_parameters_from_setup(spotpy_setup)) - randompar = parameter_obj['random'] + parameter_obj = spotpy.parameter.generate( + spotpy.parameter.get_parameters_from_setup(spotpy_setup) + ) + randompar = parameter_obj["random"] for i in range(1000): - randompar = np.column_stack((randompar, parameter_obj['random'])) + randompar = np.column_stack((randompar, parameter_obj["random"])) return np.amin(randompar, axis=1), np.amax(randompar, axis=1) + def get_parbounds(spotpy_setup): """ Get the minimum and maximum parameter bounds of your parameters function of the spotpy setup @@ -386,13 +446,14 @@ def get_parbounds(spotpy_setup): :return: Possible minimal and maximal values of all parameters in the parameters function of the spotpy_setup class :rtype: list """ - parmin,parmax=get_min_max(spotpy_setup) - bounds=[] + parmin, parmax = get_min_max(spotpy_setup) + bounds = [] for i in range(len(parmin)): - bounds.append([parmin[i],parmax[i]]) + bounds.append([parmin[i], parmax[i]]) return bounds -def get_sensitivity_of_fast(results,like_index=1,M=4, print_to_console=True): + +def get_sensitivity_of_fast(results, like_index=1, M=4, print_to_console=True): """ Get the sensitivity for every parameter of your result array, created with the FAST algorithm @@ -406,19 +467,24 @@ def get_sensitivity_of_fast(results,like_index=1,M=4, print_to_console=True): :rtype: list """ import math - likes=results['like'+str(like_index)] - print('Number of model runs:', likes.size) + + likes = results["like" + str(like_index)] + print("Number of model runs:", likes.size) parnames = get_parameternames(results) - parnumber=len(parnames) - print('Number of parameters:', parnumber) - + parnumber = len(parnames) + print("Number of parameters:", parnumber) + rest = likes.size % (parnumber) if rest != 0: - print("""" + print( + """" Number of samples in model output file must be a multiple of D, where D is the number of parameters in your parameter file. - We handle this by ignoring the last """, rest, """runs.""") - likes = likes[:-rest ] + We handle this by ignoring the last """, + rest, + """runs.""", + ) + likes = likes[:-rest] N = int(likes.size / parnumber) # Recreate the vector omega used in the sampling @@ -426,30 +492,32 @@ def get_sensitivity_of_fast(results,like_index=1,M=4, print_to_console=True): omega[0] = math.floor((N - 1) / (2 * M)) m = math.floor(omega[0] / (2 * M)) - print('m =', m) + print("m =", m) if m >= (parnumber - 1): omega[1:] = np.floor(np.linspace(1, m, parnumber - 1)) else: omega[1:] = np.arange(parnumber - 1) % m + 1 - print('Omega =', omega) + print("Omega =", omega) # Calculate and Output the First and Total Order Values if print_to_console: print("Parameter First Total") - Si = dict((k, [None] * parnumber) for k in ['S1', 'ST']) + Si = dict((k, [None] * parnumber) for k in ["S1", "ST"]) print(Si) for i in range(parnumber): l = np.arange(i * N, (i + 1) * N) print(l) - Si['S1'][i] = _compute_first_order(likes[l], N, M, omega[0]) - Si['ST'][i] = _compute_total_order(likes[l], N, omega[0]) + Si["S1"][i] = _compute_first_order(likes[l], N, M, omega[0]) + Si["ST"][i] = _compute_total_order(likes[l], N, omega[0]) print(Si) if print_to_console: - print("%s %f %f" % - (parnames[i], Si['S1'][i], Si['ST'][i])) + print("%s %f %f" % (parnames[i], Si["S1"][i], Si["ST"][i])) return Si -def plot_fast_sensitivity(results,like_index=1,number_of_sensitiv_pars=10,fig_name='FAST_sensitivity.png'): + +def plot_fast_sensitivity( + results, like_index=1, number_of_sensitiv_pars=10, fig_name="FAST_sensitivity.png" +): """ Example, how to plot the sensitivity for every parameter of your result array, created with the FAST algorithm @@ -468,125 +536,137 @@ def plot_fast_sensitivity(results,like_index=1,number_of_sensitiv_pars=10,fig_na import matplotlib.pyplot as plt - parnames=get_parameternames(results) - fig=plt.figure(figsize=(9,6)) + parnames = get_parameternames(results) + fig = plt.figure(figsize=(9, 6)) - ax = plt.subplot(1,1,1) - Si = get_sensitivity_of_fast(results, like_index=like_index) + ax = plt.subplot(1, 1, 1) + Si = get_sensitivity_of_fast(results, like_index=like_index) names = [] values = [] no_names = [] no_values = [] - index=[] - no_index=[] - + index = [] + no_index = [] + try: - threshold = np.sort(list(Si.values())[1])[-number_of_sensitiv_pars] + threshold = np.sort(list(Si.values())[1])[-number_of_sensitiv_pars] except IndexError: threshold = 0 - - first_sens_call=True - first_insens_call=True + + first_sens_call = True + first_insens_call = True try: Si.values() except AttributeError: - exit("Our SI is wrong: " +str(Si)) + exit("Our SI is wrong: " + str(Si)) for j in range(len(list(Si.values())[1])): - if list(Si.values())[1][j]>=threshold: + if list(Si.values())[1][j] >= threshold: names.append(j) values.append(list(Si.values())[1][j]) index.append(j) if first_sens_call: - ax.bar(j, list(Si.values())[1][j], color='blue', label='Sensitive Parameters') + ax.bar( + j, + list(Si.values())[1][j], + color="blue", + label="Sensitive Parameters", + ) else: - ax.bar(j, list(Si.values())[1][j], color='blue') - first_sens_call=False - + ax.bar(j, list(Si.values())[1][j], color="blue") + first_sens_call = False else: - #names.append('') + # names.append('') no_values.append(list(Si.values())[1][j]) no_index.append(j) if first_insens_call: - ax.bar(j,list(Si.values())[1][j],color='orange', label = 'Insensitive parameter') + ax.bar( + j, + list(Si.values())[1][j], + color="orange", + label="Insensitive parameter", + ) else: - ax.bar(j,list(Si.values())[1][j],color='orange') - first_insens_call=False + ax.bar(j, list(Si.values())[1][j], color="orange") + first_insens_call = False - ax.set_ylim([0,1]) + ax.set_ylim([0, 1]) - ax.set_xlabel('Model Paramters') - ax.set_ylabel('Total Sensititivity Index') + ax.set_xlabel("Model Paramters") + ax.set_ylabel("Total Sensititivity Index") ax.legend() - ax.set_xticks(np.arange(0,len(parnames))) - xtickNames = ax.set_xticklabels(parnames, color='grey') - + ax.set_xticks(np.arange(0, len(parnames))) + xtickNames = ax.set_xticklabels(parnames, color="grey") + plt.setp(xtickNames, rotation=90) for name_id in names: ax.get_xticklabels()[name_id].set_color("black") - - #ax.set_xticklabels(['0']+parnames) - ax.plot(np.arange(-1,len(parnames)+1,1),[threshold]*(len(parnames)+2),'r--') - ax.set_xlim(-0.5,len(parnames)-0.5) + + # ax.set_xticklabels(['0']+parnames) + ax.plot( + np.arange(-1, len(parnames) + 1, 1), [threshold] * (len(parnames) + 2), "r--" + ) + ax.set_xlim(-0.5, len(parnames) - 0.5) plt.tight_layout() - fig.savefig(fig_name,dpi=150) - + fig.savefig(fig_name, dpi=150) -def plot_heatmap_griewank(results,algorithms, fig_name='heatmap_griewank.png'): + +def plot_heatmap_griewank(results, algorithms, fig_name="heatmap_griewank.png"): """Example Plot as seen in the SPOTPY Documentation""" import matplotlib.pyplot as plt from matplotlib import cm, ticker - font = {'family' : 'calibri', - 'weight' : 'normal', - 'size' : 20} - plt.rc('font', **font) - subplots=len(results) - xticks=[-40,0,40] - yticks=[-40,0,40] - fig=plt.figure(figsize=(16,6)) + + font = {"family": "calibri", "weight": "normal", "size": 20} + plt.rc("font", **font) + subplots = len(results) + xticks = [-40, 0, 40] + yticks = [-40, 0, 40] + fig = plt.figure(figsize=(16, 6)) N = 2000 x = np.linspace(-50.0, 50.0, N) y = np.linspace(-50.0, 50.0, N) x, y = np.meshgrid(x, y) - z=1+ (x**2+y**2)/4000 - np.cos(x/np.sqrt(2))*np.cos(y/np.sqrt(3)) + z = 1 + (x**2 + y**2) / 4000 - np.cos(x / np.sqrt(2)) * np.cos(y / np.sqrt(3)) - cmap = plt.get_cmap('autumn') + cmap = plt.get_cmap("autumn") - rows=2 + rows = 2 for i in range(subplots): - amount_row = int(np.ceil(subplots/rows)) - ax = plt.subplot(rows, amount_row, i+1) - CS = ax.contourf(x, y, z,locator=ticker.LogLocator(),cmap=cm.rainbow) + amount_row = int(np.ceil(subplots / rows)) + ax = plt.subplot(rows, amount_row, i + 1) + CS = ax.contourf(x, y, z, locator=ticker.LogLocator(), cmap=cm.rainbow) - ax.plot(results[i]['par0'],results[i]['par1'],'ko',alpha=0.2,markersize=1.9) + ax.plot(results[i]["par0"], results[i]["par1"], "ko", alpha=0.2, markersize=1.9) ax.xaxis.set_ticks([]) - if i==0: - ax.set_ylabel('y') - if i==subplots/rows: - ax.set_ylabel('y') - if i>=subplots/rows: - ax.set_xlabel('x') + if i == 0: + ax.set_ylabel("y") + if i == subplots / rows: + ax.set_ylabel("y") + if i >= subplots / rows: + ax.set_xlabel("x") ax.xaxis.set_ticks(xticks) - if i!=0 and i!=subplots/rows: + if i != 0 and i != subplots / rows: ax.yaxis.set_ticks([]) - ax.set_title(algorithms[i]) - fig.savefig(fig_name, bbox_inches='tight') + fig.savefig(fig_name, bbox_inches="tight") -def plot_objectivefunction(results,evaluation,limit=None,sort=True, fig_name = 'objective_function.png'): +def plot_objectivefunction( + results, evaluation, limit=None, sort=True, fig_name="objective_function.png" +): """Example Plot as seen in the SPOTPY Documentation""" import matplotlib.pyplot as plt - likes=calc_like(results,evaluation,spotpy.objectivefunctions.rmse) - data=likes - #Calc confidence Interval + + likes = calc_like(results, evaluation, spotpy.objectivefunctions.rmse) + data = likes + # Calc confidence Interval mean = np.average(data) # evaluate sample variance by setting delta degrees of freedom (ddof) to # 1. The degree used in calculations is N - ddof @@ -597,65 +677,66 @@ def plot_objectivefunction(results,evaluation,limit=None,sort=True, fig_name = ' t_bounds = t.interval(0.999, len(data) - 1) # sum mean to the confidence interval ci = [mean + critval * stddev / np.sqrt(len(data)) for critval in t_bounds] - value="Mean: %f" % mean + value = "Mean: %f" % mean print(value) - value="Confidence Interval 95%%: %f, %f" % (ci[0], ci[1]) + value = "Confidence Interval 95%%: %f, %f" % (ci[0], ci[1]) print(value) - threshold=ci[1] - happend=None - bestlike=[data[0]] + threshold = ci[1] + happend = None + bestlike = [data[0]] for like in data: - if like0: + if i > 0: ax.yaxis.set_ticks([]) - if j==rows-1: - ax.set_xlabel(algorithmnames[i-subplots]) + if j == rows - 1: + ax.set_xlabel(algorithmnames[i - subplots]) else: ax.xaxis.set_ticks([]) - ax.plot([1]*rep,'r--') - ax.set_xlim(0,rep) - ax.set_ylim(parameter['minbound'][j],parameter['maxbound'][j]) - - #plt.tight_layout() - fig.savefig(fig_name, bbox_inches='tight') + ax.plot([1] * rep, "r--") + ax.set_xlim(0, rep) + ax.set_ylim(parameter["minbound"][j], parameter["maxbound"][j]) + # plt.tight_layout() + fig.savefig(fig_name, bbox_inches="tight") -def plot_parametertrace(results,parameternames=None,fig_name='Parameter_trace.png'): + +def plot_parametertrace(results, parameternames=None, fig_name="Parameter_trace.png"): """ Get a plot with all values of a given parameter in your result array. The plot will be saved as a .png file. @@ -670,27 +751,31 @@ def plot_parametertrace(results,parameternames=None,fig_name='Parameter_trace.pn :rtype: figure """ import matplotlib.pyplot as plt - fig=plt.figure(figsize=(16,9)) + + fig = plt.figure(figsize=(16, 9)) if not parameternames: - parameternames=get_parameternames(results) - names='' - i=1 + parameternames = get_parameternames(results) + names = "" + i = 1 for name in parameternames: - ax = plt.subplot(len(parameternames),1,i) - ax.plot(results['par'+name],label=name) - names+=name+'_' + ax = plt.subplot(len(parameternames), 1, i) + ax.plot(results["par" + name], label=name) + names += name + "_" ax.set_ylabel(name) - if i==len(parameternames): - ax.set_xlabel('Repetitions') - if i==1: - ax.set_title('Parametertrace') + if i == len(parameternames): + ax.set_xlabel("Repetitions") + if i == 1: + ax.set_title("Parametertrace") ax.legend() - i+=1 + i += 1 fig.savefig(fig_name) - text='The figure as been saved as "'+fig_name + text = 'The figure as been saved as "' + fig_name print(text) -def plot_posterior_parametertrace(results,parameternames=None,threshold=0.1, fig_name='Posterior_parametertrace.png'): + +def plot_posterior_parametertrace( + results, parameternames=None, threshold=0.1, fig_name="Posterior_parametertrace.png" +): """ Get a plot with all values of a given parameter in your result array. The plot will be saved as a .png file. @@ -705,29 +790,39 @@ def plot_posterior_parametertrace(results,parameternames=None,threshold=0.1, fig :rtype: figure """ import matplotlib.pyplot as plt - fig=plt.figure(figsize=(16,9)) - results=sort_like(results) + fig = plt.figure(figsize=(16, 9)) + + results = sort_like(results) if not parameternames: - parameternames=get_parameternames(results) - names='' - i=1 + parameternames = get_parameternames(results) + names = "" + i = 1 for name in parameternames: - ax = plt.subplot(len(parameternames),1,i) - ax.plot(results['par'+name][int(len(results)*threshold):],label=name) - names+=name+'_' + ax = plt.subplot(len(parameternames), 1, i) + ax.plot(results["par" + name][int(len(results) * threshold) :], label=name) + names += name + "_" ax.set_ylabel(name) - if i==len(parameternames): - ax.set_xlabel('Repetitions') - if i==1: - ax.set_title('Parametertrace') + if i == len(parameternames): + ax.set_xlabel("Repetitions") + if i == 1: + ax.set_title("Parametertrace") ax.legend() - i+=1 + i += 1 fig.savefig(fig_name) - text='The figure as been saved as '+fig_name + text = "The figure as been saved as " + fig_name print(text) -def plot_posterior(results,evaluation,dates=None,ylabel='Posterior model simulation',xlabel='Time',bestperc=0.1, fig_name='bestmodelrun.png'): + +def plot_posterior( + results, + evaluation, + dates=None, + ylabel="Posterior model simulation", + xlabel="Time", + bestperc=0.1, + fig_name="bestmodelrun.png", +): """ Get a plot with the maximum objectivefunction of your simulations in your result array. @@ -756,31 +851,36 @@ def plot_posterior(results,evaluation,dates=None,ylabel='Posterior model simulat """ import matplotlib.pyplot as plt - index,maximum=get_maxlikeindex(results) - sim=get_modelruns(results) - bestmodelrun=list(sim[index][0])#Transform values into list to ensure plotting - bestparameterset=list(get_parameters(results)[index][0]) - - parameternames=list(get_parameternames(results) ) - bestparameterstring='' - maxNSE=spotpy.objectivefunctions.nashsutcliffe(bestmodelrun,evaluation) + + index, maximum = get_maxlikeindex(results) + sim = get_modelruns(results) + bestmodelrun = list(sim[index][0]) # Transform values into list to ensure plotting + bestparameterset = list(get_parameters(results)[index][0]) + + parameternames = list(get_parameternames(results)) + bestparameterstring = "" + maxNSE = spotpy.objectivefunctions.nashsutcliffe(bestmodelrun, evaluation) for i in range(len(parameternames)): - if i%8==0: - bestparameterstring+='\n' - bestparameterstring+=parameternames[i]+'='+str(round(bestparameterset[i],4))+',' - fig=plt.figure(figsize=(16,8)) - plt.plot(bestmodelrun,'b-',label='Simulation='+str(round(maxNSE,4))) - plt.plot(evaluation,'ro',label='Evaluation') + if i % 8 == 0: + bestparameterstring += "\n" + bestparameterstring += ( + parameternames[i] + "=" + str(round(bestparameterset[i], 4)) + "," + ) + fig = plt.figure(figsize=(16, 8)) + plt.plot(bestmodelrun, "b-", label="Simulation=" + str(round(maxNSE, 4))) + plt.plot(evaluation, "ro", label="Evaluation") plt.legend() plt.ylabel(ylabel) plt.xlabel(xlabel) - plt.title('Maximum objectivefunction of Simulations with '+bestparameterstring[0:-2]) + plt.title( + "Maximum objectivefunction of Simulations with " + bestparameterstring[0:-2] + ) fig.savefig(fig_name) - text='The figure as been saved as '+fig_name + text = "The figure as been saved as " + fig_name print(text) -def plot_bestmodelrun(results,evaluation,fig_name ='Best_model_run.png'): +def plot_bestmodelrun(results, evaluation, fig_name="Best_model_run.png"): """ Get a plot with the maximum objectivefunction of your simulations in your result array. @@ -797,24 +897,38 @@ def plot_bestmodelrun(results,evaluation,fig_name ='Best_model_run.png'): figure. Plot of the simulation with the maximum objectivefunction value in the result array as a blue line and dots for the evaluation data. """ import matplotlib.pyplot as plt - fig= plt.figure(figsize=(16,9)) + + fig = plt.figure(figsize=(16, 9)) for i in range(len(evaluation)): if evaluation[i] == -9999: evaluation[i] = np.nan - plt.plot(evaluation,'ro',markersize=1, label='Observation data') + plt.plot(evaluation, "ro", markersize=1, label="Observation data") simulation_fields = get_simulation_fields(results) - bestindex,bestobjf = get_maxlikeindex(results,verbose=False) - plt.plot(list(results[simulation_fields][bestindex][0]),'b-',label='Obj='+str(round(bestobjf,2))) - plt.xlabel('Number of Observation Points') - plt.ylabel ('Simulated value') - plt.legend(loc='upper right') - fig.savefig(fig_name,dpi=300) - text='A plot of the best model run has been saved as '+fig_name + bestindex, bestobjf = get_maxlikeindex(results, verbose=False) + plt.plot( + list(results[simulation_fields][bestindex][0]), + "b-", + label="Obj=" + str(round(bestobjf, 2)), + ) + plt.xlabel("Number of Observation Points") + plt.ylabel("Simulated value") + plt.legend(loc="upper right") + fig.savefig(fig_name, dpi=300) + text = "A plot of the best model run has been saved as " + fig_name print(text) - -def plot_bestmodelruns(results,evaluation,algorithms=None,dates=None,ylabel='Best model simulation',xlabel='Date',objectivefunctionmax=True,calculatelike=True,fig_name='bestmodelrun.png'): +def plot_bestmodelruns( + results, + evaluation, + algorithms=None, + dates=None, + ylabel="Best model simulation", + xlabel="Date", + objectivefunctionmax=True, + calculatelike=True, + fig_name="bestmodelrun.png", +): """ Get a plot with the maximum objectivefunction of your simulations in your result array. @@ -847,70 +961,96 @@ def plot_bestmodelruns(results,evaluation,algorithms=None,dates=None,ylabel='Bes """ import matplotlib.pyplot as plt - plt.rc('font', **font) - fig=plt.figure(figsize=(17,8)) - colors=['grey', 'black', 'brown','red','orange', 'yellow','green','blue',] - plt.plot(dates,evaluation,'ro',label='Evaluation data') + plt.rc("font", **font) + fig = plt.figure(figsize=(17, 8)) + colors = [ + "grey", + "black", + "brown", + "red", + "orange", + "yellow", + "green", + "blue", + ] + plt.plot(dates, evaluation, "ro", label="Evaluation data") for i in range(len(results)): if calculatelike: - likes=[] - sim=get_modelruns(results[i]) - par=get_parameters(results[i]) + likes = [] + sim = get_modelruns(results[i]) + par = get_parameters(results[i]) for s in sim: - likes.append(spotpy.objectivefunctions.lognashsutcliffe(evaluation,list(s))) - - maximum=max(likes) - index=likes.index(maximum) - bestmodelrun=list(sim[index]) - bestparameterset=list(par[index]) + likes.append( + spotpy.objectivefunctions.lognashsutcliffe(evaluation, list(s)) + ) + + maximum = max(likes) + index = likes.index(maximum) + bestmodelrun = list(sim[index]) + bestparameterset = list(par[index]) print(bestparameterset) else: - if objectivefunctionmax==True: - index,maximum=get_maxlikeindex(results[i]) + if objectivefunctionmax == True: + index, maximum = get_maxlikeindex(results[i]) else: - index,maximum=get_minlikeindex(results[i]) - bestmodelrun=list(get_modelruns(results[i])[index][0])#Transform values into list to ensure plotting + index, maximum = get_minlikeindex(results[i]) + bestmodelrun = list( + get_modelruns(results[i])[index][0] + ) # Transform values into list to ensure plotting - maxLike=spotpy.objectivefunctions.lognashsutcliffe(evaluation,bestmodelrun) + maxLike = spotpy.objectivefunctions.lognashsutcliffe(evaluation, bestmodelrun) if dates is not None: - plt.plot(dates,bestmodelrun,'-',color=colors[i],label=algorithms[i]+': LogNSE='+str(round(maxLike,4))) + plt.plot( + dates, + bestmodelrun, + "-", + color=colors[i], + label=algorithms[i] + ": LogNSE=" + str(round(maxLike, 4)), + ) else: - plt.plot(bestmodelrun,'-',color=colors[i],label=algorithms[i]+': AI='+str(round(maxLike,4))) - #plt.plot(evaluation,'ro',label='Evaluation data') - plt.legend(bbox_to_anchor=(.0, 0), loc=3) + plt.plot( + bestmodelrun, + "-", + color=colors[i], + label=algorithms[i] + ": AI=" + str(round(maxLike, 4)), + ) + # plt.plot(evaluation,'ro',label='Evaluation data') + plt.legend(bbox_to_anchor=(0.0, 0), loc=3) plt.ylabel(ylabel) plt.xlabel(xlabel) - plt.ylim(15,50) #DELETE WHEN NOT USED WITH SOIL MOISTUR RESULTS + plt.ylim(15, 50) # DELETE WHEN NOT USED WITH SOIL MOISTUR RESULTS fig.savefig(fig_name) - text='The figure as been saved as '+fig_name + text = "The figure as been saved as " + fig_name print(text) -def plot_objectivefunctiontraces(results,evaluation,algorithms,fig_name='Like_trace.png'): + +def plot_objectivefunctiontraces( + results, evaluation, algorithms, fig_name="Like_trace.png" +): import matplotlib.pyplot as plt from matplotlib import colors - cnames=list(colors.cnames) - font = {'family' : 'calibri', - 'weight' : 'normal', - 'size' : 20} - plt.rc('font', **font) - fig=plt.figure(figsize=(16,3)) - xticks=[5000,15000] + + cnames = list(colors.cnames) + font = {"family": "calibri", "weight": "normal", "size": 20} + plt.rc("font", **font) + fig = plt.figure(figsize=(16, 3)) + xticks = [5000, 15000] for i in range(len(results)): - ax = plt.subplot(1,len(results),i+1) - likes=calc_like(results[i],evaluation,spotpy.objectivefunctions.rmse) - ax.plot(likes,'b-') - ax.set_ylim(0,25) - ax.set_xlim(0,len(results[0])) + ax = plt.subplot(1, len(results), i + 1) + likes = calc_like(results[i], evaluation, spotpy.objectivefunctions.rmse) + ax.plot(likes, "b-") + ax.set_ylim(0, 25) + ax.set_xlim(0, len(results[0])) ax.set_xlabel(algorithms[i]) ax.xaxis.set_ticks(xticks) - if i==0: - ax.set_ylabel('RMSE') - ax.yaxis.set_ticks([0,10,20]) + if i == 0: + ax.set_ylabel("RMSE") + ax.yaxis.set_ticks([0, 10, 20]) else: ax.yaxis.set_ticks([]) @@ -918,94 +1058,101 @@ def plot_objectivefunctiontraces(results,evaluation,algorithms,fig_name='Like_tr fig.savefig(fig_name) -def plot_regression(results,evaluation,fig_name='regressionanalysis.png'): +def plot_regression(results, evaluation, fig_name="regressionanalysis.png"): import matplotlib.pyplot as plt - fig=plt.figure(figsize=(16,9)) - simulations=get_modelruns(results) + + fig = plt.figure(figsize=(16, 9)) + simulations = get_modelruns(results) for sim in simulations: - plt.plot(evaluation,list(sim),'bo',alpha=.05) - plt.ylabel('simulation') - plt.xlabel('evaluation') - plt.title('Regression between simulations and evaluation data') + plt.plot(evaluation, list(sim), "bo", alpha=0.05) + plt.ylabel("simulation") + plt.xlabel("evaluation") + plt.title("Regression between simulations and evaluation data") fig.savefig(fig_name) - text='The figure as been saved as '+fig_name + text = "The figure as been saved as " + fig_name print(text) -def plot_parameterInteraction(results, fig_name ='ParameterInteraction.png'): - '''Input: List with values of parameters and list of strings with parameter names - Output: Dotty plot of parameter distribution and gaussian kde distribution''' +def plot_parameterInteraction(results, fig_name="ParameterInteraction.png"): + """Input: List with values of parameters and list of strings with parameter names + Output: Dotty plot of parameter distribution and gaussian kde distribution""" import matplotlib.pyplot as plt import pandas as pd - parameterdistribtion=get_parameters(results) - parameternames=get_parameternames(results) - df = pd.DataFrame(np.asarray(parameterdistribtion).T.tolist(), columns=parameternames) - pd.plotting.scatter_matrix(df, alpha=0.2, figsize=(12, 12), diagonal='kde') - plt.savefig(fig_name,dpi=300) + parameterdistribtion = get_parameters(results) + parameternames = get_parameternames(results) + df = pd.DataFrame( + np.asarray(parameterdistribtion).T.tolist(), columns=parameternames + ) + + pd.plotting.scatter_matrix(df, alpha=0.2, figsize=(12, 12), diagonal="kde") + plt.savefig(fig_name, dpi=300) -def plot_allmodelruns(modelruns,observations,dates=None, fig_name='bestmodel.png'): - '''Input: Array of modelruns and list of Observations - Output: Plot with all modelruns as a line and dots with the Observations - ''' +def plot_allmodelruns(modelruns, observations, dates=None, fig_name="bestmodel.png"): + """Input: Array of modelruns and list of Observations + Output: Plot with all modelruns as a line and dots with the Observations + """ import matplotlib.pyplot as plt - fig=plt.figure(figsize=(16,9)) - ax = plt.subplot(1,1,1) + + fig = plt.figure(figsize=(16, 9)) + ax = plt.subplot(1, 1, 1) if dates is not None: for i in range(len(modelruns)): - if i==0: - ax.plot(dates, modelruns[i],'b',alpha=.05,label='Simulations') + if i == 0: + ax.plot(dates, modelruns[i], "b", alpha=0.05, label="Simulations") else: - ax.plot(dates, modelruns[i],'b',alpha=.05) + ax.plot(dates, modelruns[i], "b", alpha=0.05) else: for i in range(len(modelruns)): - if i==0: - ax.plot(modelruns[i],'b',alpha=.05,label='Simulations') + if i == 0: + ax.plot(modelruns[i], "b", alpha=0.05, label="Simulations") else: - ax.plot(modelruns[i],'b',alpha=.05) - ax.plot(observations,'ro',label='Evaluation') + ax.plot(modelruns[i], "b", alpha=0.05) + ax.plot(observations, "ro", label="Evaluation") ax.legend() - ax.set_xlabel = 'Best model simulation' - ax.set_ylabel = 'Evaluation points' - ax.set_title = 'Maximum objectivefunction of Simulations' + ax.set_xlabel = "Best model simulation" + ax.set_ylabel = "Evaluation points" + ax.set_title = "Maximum objectivefunction of Simulations" fig.savefig(fig_name) - text='The figure as been saved as '+fig_name + text = "The figure as been saved as " + fig_name print(text) -def plot_gelman_rubin(results, r_hat_values,fig_name='gelman_rub.png'): - '''Input: List of R_hat values of chains (see Gelman & Rubin 1992) - Output: Plot as seen for e.g. in (Sadegh and Vrugt 2014)''' +def plot_gelman_rubin(results, r_hat_values, fig_name="gelman_rub.png"): + """Input: List of R_hat values of chains (see Gelman & Rubin 1992) + Output: Plot as seen for e.g. in (Sadegh and Vrugt 2014)""" import matplotlib.pyplot as plt - - fig= plt.figure(figsize=(9,6)) - ax1 = plt.subplot(2,1,1) - for i in range(int(max(results['chain']))+1): - index=np.where(results['chain']==i) - ax1.plot(results['like1'][index], label='Chain '+str(i+1)) - - ax1.set_ylabel('Likelihood value') + + fig = plt.figure(figsize=(9, 6)) + ax1 = plt.subplot(2, 1, 1) + for i in range(int(max(results["chain"])) + 1): + index = np.where(results["chain"] == i) + ax1.plot(results["like1"][index], label="Chain " + str(i + 1)) + + ax1.set_ylabel("Likelihood value") ax1.legend() - - ax2 =plt.subplot(2,1,2) - r_hat=np.array(r_hat_values) - ax2.plot([1.2]*len(r_hat),'k--') + + ax2 = plt.subplot(2, 1, 2) + r_hat = np.array(r_hat_values) + ax2.plot([1.2] * len(r_hat), "k--") for i in range(len(r_hat[0])): - ax2.plot(r_hat[:,i],label='x'+str(i+1)) - - ax2.set_yscale("log", nonpositive='clip') - ax2.set_ylabel('R$^d$ - convergence diagnostic') - ax2.set_xlabel('Number of chainruns') + ax2.plot(r_hat[:, i], label="x" + str(i + 1)) + + ax2.set_yscale("log", nonpositive="clip") + ax2.set_ylabel("R$^d$ - convergence diagnostic") + ax2.set_xlabel("Number of chainruns") ax2.legend() - fig.savefig(fig_name,dpi=150) + fig.savefig(fig_name, dpi=150) + def gelman_rubin(x): - '''NOT USED YET''' + """NOT USED YET""" if np.shape(x) < (2,): raise ValueError( - 'Gelman-Rubin diagnostic requires multiple chains of the same length.') + "Gelman-Rubin diagnostic requires multiple chains of the same length." + ) try: m, n = np.shape(x) except ValueError: @@ -1013,10 +1160,9 @@ def gelman_rubin(x): # Calculate between-chain variance B_over_n = np.sum((np.mean(x, 1) - np.mean(x)) ** 2) / (m - 1) # Calculate within-chain variances - W = np.sum( - [(x[i] - xbar) ** 2 for i, - xbar in enumerate(np.mean(x, - 1))]) / (m * (n - 1)) + W = np.sum([(x[i] - xbar) ** 2 for i, xbar in enumerate(np.mean(x, 1))]) / ( + m * (n - 1) + ) # (over) estimate of variance s2 = W * (n - 1) / n + B_over_n # Pooled posterior variance estimate @@ -1026,9 +1172,9 @@ def gelman_rubin(x): return R -def plot_Geweke(parameterdistribution,parametername): - '''Input: Takes a list of sampled values for a parameter and his name as a string - Output: Plot as seen for e.g. in BUGS or PyMC''' +def plot_Geweke(parameterdistribution, parametername): + """Input: Takes a list of sampled values for a parameter and his name as a string + Output: Plot as seen for e.g. in BUGS or PyMC""" import matplotlib.pyplot as plt # perform the Geweke test @@ -1036,16 +1182,17 @@ def plot_Geweke(parameterdistribution,parametername): # plot the results fig = plt.figure() - plt.plot(Geweke_values,label=parametername) + plt.plot(Geweke_values, label=parametername) plt.legend() - plt.title(parametername + '- Geweke_Test') - plt.xlabel('Subinterval') - plt.ylabel('Geweke Test') - plt.ylim([-3,3]) + plt.title(parametername + "- Geweke_Test") + plt.xlabel("Subinterval") + plt.ylabel("Geweke Test") + plt.ylim([-3, 3]) # plot the delimiting line - plt.plot( [2]*len(Geweke_values), 'r-.') - plt.plot( [-2]*len(Geweke_values), 'r-.') + plt.plot([2] * len(Geweke_values), "r-.") + plt.plot([-2] * len(Geweke_values), "r-.") + def _compute_first_order(outputs, N, M, omega): f = np.fft.fft(outputs) @@ -1054,37 +1201,39 @@ def _compute_first_order(outputs, N, M, omega): D1 = 2 * np.sum(Sp[np.arange(1, M + 1) * int(omega) - 1]) return D1 / V + def _compute_total_order(outputs, N, omega): f = np.fft.fft(outputs) Sp = np.power(np.absolute(f[np.arange(1, int((N + 1) / 2))]) / N, 2) V = 2 * np.sum(Sp) Dt = 2 * sum(Sp[np.arange(int(omega / 2))]) - return (1 - Dt / V) + return 1 - Dt / V + def _Geweke(samples, intervals=20): - '''Calculates Geweke Z-Scores''' - length=int(len(samples)/intervals/2) + """Calculates Geweke Z-Scores""" + length = int(len(samples) / intervals / 2) # discard the first 10 per cent - first = 0.1*len(samples) + first = 0.1 * len(samples) # create empty array to store the results z = np.empty(intervals) for k in np.arange(0, intervals): # starting points of the two different subsamples - start1 = int(first + k*length) - start2 = int(len(samples)/2 + k*length) + start1 = int(first + k * length) + start2 = int(len(samples) / 2 + k * length) # extract the sub samples - subsamples1 = samples[start1:start1+length] - subsamples2 = samples[start2:start2+length] + subsamples1 = samples[start1 : start1 + length] + subsamples2 = samples[start2 : start2 + length] # calculate the mean and the variance mean1 = np.mean(subsamples1) mean2 = np.mean(subsamples2) - var1 = np.var(subsamples1) - var2 = np.var(subsamples2) + var1 = np.var(subsamples1) + var2 = np.var(subsamples2) # calculate the Geweke test - z[k] = (mean1-mean2)/np.sqrt(var1+var2) + z[k] = (mean1 - mean2) / np.sqrt(var1 + var2) return z diff --git a/src/spotpy/cli.py b/src/spotpy/cli.py index 0e7ea159..9c0e4385 100644 --- a/src/spotpy/cli.py +++ b/src/spotpy/cli.py @@ -1,4 +1,3 @@ - import inspect import io import os @@ -21,12 +20,12 @@ def get_config_from_file(): runs = 10 """ config = {} - if os.path.exists('spotpy.conf'): - with io.open('spotpy.conf') as f: + if os.path.exists("spotpy.conf"): + with io.open("spotpy.conf") as f: for line in f: - if not line.strip().startswith('#'): + if not line.strip().startswith("#"): try: - k, v = line.split('=', 1) + k, v = line.split("=", 1) config[k.strip()] = v.strip() except ValueError: pass @@ -38,42 +37,64 @@ def get_sampler_from_string(sampler_name): def make_type_from_module(module, *exclude): - def use(cl): # Check if class name starts with an exclusion term - return inspect.isclass(cl) and not any([cl.__name__.startswith(ex) for ex in ('_', ) + exclude]) + return inspect.isclass(cl) and not any( + [cl.__name__.startswith(ex) for ex in ("_",) + exclude] + ) + members = inspect.getmembers(module, use) - return click.Choice([n for n, m in members if not n.startswith('_')]) + return click.Choice([n for n, m in members if not n.startswith("_")]) -@click.group(context_settings=dict(help_option_names=['-h', '--help'])) +@click.group(context_settings=dict(help_option_names=["-h", "--help"])) def cli(): pass @cli.command() @click.pass_context -@click.option('--sampler', '-s', type=make_type_from_module(algorithms), default='mc', - help='Select the spotpy sampler') -@click.option('--dbformat', type=click.Choice(database.__dir__()), default='ram', - help='The type of the database') -@click.option('--dbname', type=click.STRING, help='The name of the database, leave open for ram') -@click.option('--parallel', '-p', type=click.Choice(['seq', 'mpc', 'mpi']), default='seq', - help='Parallelization: seq = no parallelization, mpi = MPI (for clusters), mpc = multiprocessing') -@click.option('--runs', '-n', type=click.INT, default=1, help='Number of runs') -@click.option('--config', '-c', is_flag=True, - help='Print only the configuration, can be used to create a config file with your_model.py > spotpy.conf') +@click.option( + "--sampler", + "-s", + type=make_type_from_module(algorithms), + default="mc", + help="Select the spotpy sampler", +) +@click.option( + "--dbformat", + type=click.Choice(database.__dir__()), + default="ram", + help="The type of the database", +) +@click.option( + "--dbname", type=click.STRING, help="The name of the database, leave open for ram" +) +@click.option( + "--parallel", + "-p", + type=click.Choice(["seq", "mpc", "mpi"]), + default="seq", + help="Parallelization: seq = no parallelization, mpi = MPI (for clusters), mpc = multiprocessing", +) +@click.option("--runs", "-n", type=click.INT, default=1, help="Number of runs") +@click.option( + "--config", + "-c", + is_flag=True, + help="Print only the configuration, can be used to create a config file with your_model.py > spotpy.conf", +) def run(ctx, **kwargs): """ Runs a sampler for automatic calibration """ setup = ctx.obj - if kwargs.pop('config', None): - click.echo('\n'.join('{} = {}'.format(k, v) for k, v in kwargs.items())) + if kwargs.pop("config", None): + click.echo("\n".join("{} = {}".format(k, v) for k, v in kwargs.items())) else: - sampler_name = kwargs.pop('sampler') + sampler_name = kwargs.pop("sampler") sampler_class = get_sampler_from_string(sampler_name) - runs = kwargs.pop('runs') + runs = kwargs.pop("runs") sampler = sampler_class(setup, **kwargs) sampler.sample(runs) @@ -85,6 +106,7 @@ def gui(ctx): Shows a GUI for manual calibration """ from spotpy.gui.mpl import GUI + setup = ctx.obj gui = GUI(setup) gui.show() @@ -92,7 +114,6 @@ def gui(ctx): def main(setup): # Prevent help text from wrapping - cli.help = '\b\n' + describe.setup(setup).replace('\n\n', '\n\b\n') + cli.help = "\b\n" + describe.setup(setup).replace("\n\n", "\n\b\n") config = get_config_from_file() - cli(obj=setup, auto_envvar_prefix='SPOTPY', default_map=config) - + cli(obj=setup, auto_envvar_prefix="SPOTPY", default_map=config) diff --git a/src/spotpy/database/__init__.py b/src/spotpy/database/__init__.py index 8c539ba2..89ed286f 100644 --- a/src/spotpy/database/__init__.py +++ b/src/spotpy/database/__init__.py @@ -8,12 +8,13 @@ def __dir__(): :return: """ import pkgutil + names = [ - name for importer, name, ispkg - in pkgutil.iter_modules(__path__) - if not ispkg and name != 'base' + name + for importer, name, ispkg in pkgutil.iter_modules(__path__) + if not ispkg and name != "base" ] - return names + ['custom', 'noData'] + return names + ["custom", "noData"] def __getattr__(name): @@ -21,17 +22,17 @@ def __getattr__(name): print(names) if name in names: try: - db_module = import_module('.' + name, __name__) + db_module = import_module("." + name, __name__) except ImportError: - db_module = import_module('.base', __name__) + db_module = import_module(".base", __name__) return getattr(db_module, name) else: - raise AttributeError('{} is not a member of spotpy.database') + raise AttributeError("{} is not a member of spotpy.database") def get_datawriter(dbformat, *args, **kwargs): """Given a dbformat (ram, csv, sql, noData, etc), return the constructor - of the appropriate class from this file. + of the appropriate class from this file. """ db_class = __getattr__(dbformat) datawriter = db_class(*args, **kwargs) diff --git a/src/spotpy/database/base.py b/src/spotpy/database/base.py index d71c523a..5e64b149 100644 --- a/src/spotpy/database/base.py +++ b/src/spotpy/database/base.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Optimization Tool (SPOTPY). @@ -8,7 +8,7 @@ This is the parent class of all algorithms, which can handle the database structure during the sample. -''' +""" import sys import time from importlib import import_module @@ -23,8 +23,18 @@ class database(object): databases. """ - def __init__(self, dbname, parnames, like, randompar, simulations=None, - chains=1, save_sim=True, db_precision=np.float32, **kwargs): + def __init__( + self, + dbname, + parnames, + like, + randompar, + simulations=None, + chains=1, + save_sim=True, + db_precision=np.float32, + **kwargs, + ): # Just needed for the first line in the database self.chains = chains self.dbname = dbname @@ -36,24 +46,30 @@ def __init__(self, dbname, parnames, like, randompar, simulations=None, if not save_sim: simulations = None self.dim_dict = {} - self.singular_data_lens = [self._check_dims(name, obj) for name, obj in [( - 'like', like), ('par', randompar), ('simulation', simulations)]] + self.singular_data_lens = [ + self._check_dims(name, obj) + for name, obj in [ + ("like", like), + ("par", randompar), + ("simulation", simulations), + ] + ] self._make_header(simulations, parnames) self.last_flush = time.time() def _check_dims(self, name, obj): - '''checks dimensionality of obj and stores function in dict''' + """checks dimensionality of obj and stores function in dict""" if obj is None: # None object self.dim_dict[name] = self._empty_list return (0,) - elif hasattr(obj, '__len__'): - if hasattr(obj, 'shape'): + elif hasattr(obj, "__len__"): + if hasattr(obj, "shape"): # np.array style obj self.dim_dict[name] = self._array_to_list return obj.shape - elif all([hasattr(x, '__len__') for x in obj]): + elif all([hasattr(x, "__len__") for x in obj]): # nested list, checked only for singular nesting # assumes all lists have same length self.dim_dict[name] = self._nestediterable_to_list @@ -99,21 +115,29 @@ def _nestediterable_to_list(self, obj): def _make_header(self, simulations, parnames): self.header = [] - self.header.extend(['like' + '_'.join(map(str, x)) - for x in product(*self._tuple_2_xrange(self.singular_data_lens[0]))]) - self.header.extend(['par{0}'.format(x) for x in parnames]) + self.header.extend( + [ + "like" + "_".join(map(str, x)) + for x in product(*self._tuple_2_xrange(self.singular_data_lens[0])) + ] + ) + self.header.extend(["par{0}".format(x) for x in parnames]) # print(self.singular_data_lens[2]) # print(type(self.singular_data_lens[2])) if self.save_sim: for i in range(len(simulations)): - if isinstance(simulations[0], list) or type(simulations[0]) == type(np.array([])): + if isinstance(simulations[0], list) or type(simulations[0]) == type( + np.array([]) + ): for j in range(len(simulations[i])): - self.header.extend(['simulation' + str(i + 1) + '_' + str(j + 1)]) + self.header.extend( + ["simulation" + str(i + 1) + "_" + str(j + 1)] + ) else: - self.header.extend(['simulation' + '_' + str(i)]) + self.header.extend(["simulation" + "_" + str(i)]) # for x in product(*self._tuple_2_xrange(self.singular_data_lens[2]))]) - self.header.append('chain') + self.header.append("chain") def _tuple_2_xrange(self, t): return (range(1, x + 1) for x in t) @@ -137,6 +161,7 @@ def finalize(self): def getdata(self): pass + class custom(database): """ This class is a simple wrapper over the database API, and can be used @@ -144,14 +169,18 @@ class custom(database): """ def __init__(self, *args, **kwargs): - if 'setup' not in kwargs: - raise ValueError(""" + if "setup" not in kwargs: + raise ValueError( + """ You are using the 'custom' Datawriter. To use it, the setup must be specified on creation, but it is missing - """) - self.setup = kwargs['setup'] - if not hasattr(self.setup, 'save'): - raise AttributeError('Your setup needs a "save" method in order to use the "custom" dbformat') + """ + ) + self.setup = kwargs["setup"] + if not hasattr(self.setup, "save"): + raise AttributeError( + 'Your setup needs a "save" method in order to use the "custom" dbformat' + ) super(custom, self).__init__(*args, **kwargs) @@ -163,6 +192,3 @@ def finalize(self): def getdata(self): pass - - - diff --git a/src/spotpy/database/csv.py b/src/spotpy/database/csv.py index d9c75021..008f1f34 100644 --- a/src/spotpy/database/csv.py +++ b/src/spotpy/database/csv.py @@ -17,28 +17,29 @@ def __init__(self, *args, **kwargs): # init base class super(csv, self).__init__(*args, **kwargs) # store init item only if dbinit - if kwargs.get('dbappend', False) is False: + if kwargs.get("dbappend", False) is False: print("* Database file '{}.csv' created.".format(self.dbname)) # Create a open file, which needs to be closed after the sampling - mode = 'w' - self.db = io.open(self.dbname + '.csv', mode) + mode = "w" + self.db = io.open(self.dbname + ".csv", mode) # write header line - self.db.write(str(','.join(self.header) + '\n')) + self.db.write(str(",".join(self.header) + "\n")) else: print("* Appending to database file '{}.csv'.".format(self.dbname)) # Continues writing file - mode = 'a' - self.db = io.open(self.dbname + '.csv', mode) + mode = "a" + self.db = io.open(self.dbname + ".csv", mode) def save(self, objectivefunction, parameterlist, simulations=None, chains=1): - coll = (self.dim_dict['like'](objectivefunction) + - self.dim_dict['par'](parameterlist) + - self.dim_dict['simulation'](simulations) + - [chains]) + coll = ( + self.dim_dict["like"](objectivefunction) + + self.dim_dict["par"](parameterlist) + + self.dim_dict["simulation"](simulations) + + [chains] + ) # Apply rounding of floats coll = map(self.db_precision, coll) - self.db.write( - ','.join(map(str, coll)) + '\n') + self.db.write(",".join(map(str, coll)) + "\n") acttime = time.time() # Force writing to disc at least every two seconds @@ -51,5 +52,5 @@ def finalize(self): self.db.close() def getdata(self): - data = np.genfromtxt(self.dbname + '.csv', delimiter=',', names=True) + data = np.genfromtxt(self.dbname + ".csv", delimiter=",", names=True) return data diff --git a/src/spotpy/database/hdf5.py b/src/spotpy/database/hdf5.py index b543b637..a4a4153a 100644 --- a/src/spotpy/database/hdf5.py +++ b/src/spotpy/database/hdf5.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Optimization Tool (SPOTPY). @@ -8,7 +8,7 @@ This is the parent class of all algorithms, which can handle the database structure during the sample. -''' +""" import numpy as np @@ -17,8 +17,10 @@ try: import tables except ImportError: - print('ImportError: Pytables is not correctly installed. Please also make sure you', - 'installed the hdf5 extension (https://www.hdfgroup.org/downloads/hdf5/)') + print( + "ImportError: Pytables is not correctly installed. Please also make sure you", + "installed the hdf5 extension (https://www.hdfgroup.org/downloads/hdf5/)", + ) raise import sys @@ -29,6 +31,7 @@ class hdf5(database): This is only available if PyTables is installed """ + def get_table_def(self): """ Returns a dict of column definitions using multidimensional @@ -59,12 +62,10 @@ def get_table_def(self): # Get the appropriate dtype for the n-d cell # (tables.Col.from_dtype does not take a shape parameter) sim_dtype = np.dtype((self.db_precision, sim_shape)) - columns['simulation'] = tables.Col.from_dtype( - sim_dtype, pos=sim_pos - ) + columns["simulation"] = tables.Col.from_dtype(sim_dtype, pos=sim_pos) chain_pos += 1 # Add a column chains - columns['chains'] = tables.UInt16Col(pos=chain_pos) + columns["chains"] = tables.UInt16Col(pos=chain_pos) return columns @@ -77,29 +78,33 @@ def __init__(self, *args, **kwargs): # init base class super(hdf5, self).__init__(*args, **kwargs) # store init item only if dbinit - if not kwargs.get('dbappend', False): + if not kwargs.get("dbappend", False): # Create an open file, which needs to be closed after the sampling - self.db = tables.open_file(self.dbname + '.h5', 'w', self.dbname) - self.table = self.db.create_table('/', self.dbname, description=self.get_table_def()) + self.db = tables.open_file(self.dbname + ".h5", "w", self.dbname) + self.table = self.db.create_table( + "/", self.dbname, description=self.get_table_def() + ) else: # Continues writing file - self.db = tables.open_file(self.dbname + '.h5', 'a') + self.db = tables.open_file(self.dbname + ".h5", "a") self.table = self.db.root[self.dbname] def save(self, objectivefunction, parameterlist, simulations=None, chains=1): new_row = self.table.row - coll = self.dim_dict['like'](objectivefunction) + self.dim_dict['par'](parameterlist) + coll = self.dim_dict["like"](objectivefunction) + self.dim_dict["par"]( + parameterlist + ) for header, value in zip(self.header, coll): new_row[header] = value if self.save_sim: - new_row['simulation'] = simulations - new_row['chains'] = chains + new_row["simulation"] = simulations + new_row["chains"] = chains new_row.append() def finalize(self): self.db.close() def getdata(self): - with tables.open_file(self.dbname + '.h5', 'a') as db: + with tables.open_file(self.dbname + ".h5", "a") as db: return db.root[self.dbname][:] diff --git a/src/spotpy/database/ram.py b/src/spotpy/database/ram.py index 951df9fd..6523641d 100644 --- a/src/spotpy/database/ram.py +++ b/src/spotpy/database/ram.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Optimization Tool (SPOTPY). @@ -8,7 +8,7 @@ This is the parent class of all algorithms, which can handle the database structure during the sample. -''' +""" import sys @@ -29,12 +29,15 @@ def __init__(self, *args, **kwargs): # init the status vars self.ram = [] - def save(self, objectivefunction, parameterlist, simulations=None, - chains=1): - self.ram.append(tuple(self.dim_dict['like'](objectivefunction) + - self.dim_dict['par'](parameterlist) + - self.dim_dict['simulation'](simulations) + - [chains])) + def save(self, objectivefunction, parameterlist, simulations=None, chains=1): + self.ram.append( + tuple( + self.dim_dict["like"](objectivefunction) + + self.dim_dict["par"](parameterlist) + + self.dim_dict["simulation"](simulations) + + [chains] + ) + ) def finalize(self): """ @@ -42,8 +45,7 @@ def finalize(self): Forms the List of values into a strutured numpy array in order to have the same structure as a csv database. """ - dt = {'names': self.header, - 'formats': [float] * len(self.header)} + dt = {"names": self.header, "formats": [float] * len(self.header)} i = 0 Y = np.zeros(len(self.ram), dtype=dt) diff --git a/src/spotpy/database/sql.py b/src/spotpy/database/sql.py index 2595dc65..2231fc1c 100644 --- a/src/spotpy/database/sql.py +++ b/src/spotpy/database/sql.py @@ -8,22 +8,22 @@ class PickalableSWIG: def __setstate__(self, state): - self.__init__(*state['args']) + self.__init__(*state["args"]) + def __getstate__(self): - return {'args': self.args} + return {"args": self.args} class PickalableSQL3Connect(sqlite3.Connection, PickalableSWIG): - def __init__(self, *args,**kwargs): + def __init__(self, *args, **kwargs): self.args = args - sqlite3.Connection.__init__(self,*args,**kwargs) + sqlite3.Connection.__init__(self, *args, **kwargs) class PickalableSQL3Cursor(sqlite3.Cursor, PickalableSWIG): - def __init__(self, *args,**kwargs): + def __init__(self, *args, **kwargs): self.args = args - sqlite3.Cursor.__init__(self,*args,**kwargs) - + sqlite3.Cursor.__init__(self, *args, **kwargs) class sql(database): @@ -39,27 +39,42 @@ def __init__(self, *args, **kwargs): super(sql, self).__init__(*args, **kwargs) # Create a open file, which needs to be closed after the sampling try: - os.remove(self.dbname + '.db') + os.remove(self.dbname + ".db") except: pass - self.db = PickalableSQL3Connect(self.dbname + '.db') + self.db = PickalableSQL3Connect(self.dbname + ".db") self.db_cursor = PickalableSQL3Cursor(self.db) # Create Table # self.db_cursor.execute('''CREATE TABLE IF NOT EXISTS '''+self.dbname+''' # (like1 real, parx real, pary real, simulation1 real, chain int)''') - self.db_cursor.execute('''CREATE TABLE IF NOT EXISTS ''' + self.dbname + ''' - (''' + ' real ,'.join(self.header) + ''')''') + self.db_cursor.execute( + """CREATE TABLE IF NOT EXISTS """ + + self.dbname + + """ + (""" + + " real ,".join(self.header) + + """)""" + ) def save(self, objectivefunction, parameterlist, simulations=None, chains=1): - coll = (self.dim_dict['like'](objectivefunction) + - self.dim_dict['par'](parameterlist) + - self.dim_dict['simulation'](simulations) + - [chains]) + coll = ( + self.dim_dict["like"](objectivefunction) + + self.dim_dict["par"](parameterlist) + + self.dim_dict["simulation"](simulations) + + [chains] + ) # Apply rounding of floats coll = map(self.db_precision, coll) self.db_cursor.execute( - "INSERT INTO " + self.dbname + " VALUES (" + '"' + str('","'.join(map(str, coll))) + '"' + ")") + "INSERT INTO " + + self.dbname + + " VALUES (" + + '"' + + str('","'.join(map(str, coll))) + + '"' + + ")" + ) self.db.commit() @@ -67,13 +82,18 @@ def finalize(self): self.db.close() def getdata(self): - self.db = PickalableSQL3Connect(self.dbname + '.db') + self.db = PickalableSQL3Connect(self.dbname + ".db") self.db_cursor = PickalableSQL3Cursor(self.db) - headers = [(row[1], ">>description.show_in_browser() """ - caption_characters = '=-#~*+^' + caption_characters = "=-#~*+^" def __init__(self, setup_or_sampler): """ @@ -101,7 +109,7 @@ def __init__(self, setup_or_sampler): if self.setup: self.rst_text.append(self._setup_text()) - def append(self, text='', title=None, titlelevel=1): + def append(self, text="", title=None, titlelevel=1): """ Appends additional descriptions in reStructured text to the generated text :param text: The rst text to add @@ -109,7 +117,7 @@ def append(self, text='', title=None, titlelevel=1): :param titlelevel: The level of the section (0->h1.title, 1->h1, 2->h2, etc.) :return: """ - res = '\n' + res = "\n" if title: res += rst._as_rst_caption(title, titlelevel) self.rst_text.append(res + text) @@ -125,10 +133,10 @@ def append_image(self, imgpath, **kwargs): ... target='https://github.com/thouska', ... width='200px') """ - rst = '.. image:: {}'.format(imgpath) + rst = ".. image:: {}".format(imgpath) for k, v in kwargs.items(): - rst += '\n :{}: {}'.format(k, v) - rst += '\n' + rst += "\n :{}: {}".format(k, v) + rst += "\n" self.append(rst) def append_math(self, latex): @@ -136,12 +144,12 @@ def append_math(self, latex): Appends a block equation to the output :param latex: Latex formula """ - rst = '.. math::\n' - rst += ' ' + latex + '\n' + rst = ".. math::\n" + rst += " " + latex + "\n" self.append(rst) def __str__(self): - return '\n'.join(self.rst_text) + return "\n".join(self.rst_text) @classmethod def _as_rst_caption(cls, s, level=1): @@ -151,7 +159,7 @@ def _as_rst_caption(cls, s, level=1): :param level: Caption level 0-6, translates to 0=h1.title, 1=h1, 2=h2, etc. :return: The string as rst caption """ - return s + '\n' + cls.caption_characters[level] * len(s) + '\n\n' + return s + "\n" + cls.caption_characters[level] * len(s) + "\n\n" css = """ body, table, div, p, dl { @@ -206,13 +214,12 @@ def as_html(self, css=None): :return: The html document as string """ if publish_string is None: - raise NotImplementedError('The docutils package needs to be installed') - args = {'input_encoding': 'unicode', - 'output_encoding': 'unicode'} - res = publish_string(source=str(self), - writer_name='html5', - settings_overrides=args) - style_idx = res.index('') + raise NotImplementedError("The docutils package needs to be installed") + args = {"input_encoding": "unicode", "output_encoding": "unicode"} + res = publish_string( + source=str(self), writer_name="html5", settings_overrides=args + ) + style_idx = res.index("") css = css or self.css # Include css res = res[:style_idx] + css + res[style_idx:] @@ -225,10 +232,10 @@ def show_in_browser(self, filename=None, css=None): :param filename: The html filename, if None use .html :param css: A style string, if None the default style is used """ - html = self.as_html(css).replace('unicode', 'utf-8') - fn = filename or type(self.setup).__name__ + '.html' + html = self.as_html(css).replace("unicode", "utf-8") + fn = filename or type(self.setup).__name__ + ".html" path = Path(fn).absolute() - path.write_text(html, encoding='utf-8') + path.write_text(html, encoding="utf-8") webbrowser.open_new_tab(path.as_uri()) def _sampler_text(self): @@ -239,13 +246,14 @@ def _sampler_text(self): obj = self.sampler cname = rst._as_rst_caption(type(obj).__name__, 0) s = [ - '- **db format:** ' + obj.dbformat, - '- **db name:** ' + obj.dbname, - '- **save simulation:** ' + str(obj.save_sim), - '- **parallel:** ' + type(obj.repeat).__module__.split('.')[-1], - '', '' - ] - return cname + _getdoc(obj).strip('\n') + '\n\n' + '\n'.join(s) + "- **db format:** " + obj.dbformat, + "- **db name:** " + obj.dbname, + "- **save simulation:** " + str(obj.save_sim), + "- **parallel:** " + type(obj.repeat).__module__.split(".")[-1], + "", + "", + ] + return cname + _getdoc(obj).strip("\n") + "\n\n" + "\n".join(s) def _setup_text(self): """ @@ -256,9 +264,10 @@ def _setup_text(self): obj = self.setup cname = rst._as_rst_caption(type(obj).__name__, 0) # Add doc string - mdoc = _getdoc(obj).strip('\n').replace('\r', '\n') + '\n\n' + mdoc = _getdoc(obj).strip("\n").replace("\r", "\n") + "\n\n" # Get parameters from class - param_caption = rst._as_rst_caption('Parameters', 1) - params = '\n'.join('#. **{p.name}:** {p}'.format(p=p) for p in get_parameters_from_setup(obj)) + param_caption = rst._as_rst_caption("Parameters", 1) + params = "\n".join( + "#. **{p.name}:** {p}".format(p=p) for p in get_parameters_from_setup(obj) + ) return cname + mdoc + param_caption + params - diff --git a/src/spotpy/examples/__init__.py b/src/spotpy/examples/__init__.py index 473323e1..ff4ed0d2 100644 --- a/src/spotpy/examples/__init__.py +++ b/src/spotpy/examples/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska -''' +""" diff --git a/src/spotpy/examples/cmf_data/__init__.py b/src/spotpy/examples/cmf_data/__init__.py index c91096bc..f107b27a 100644 --- a/src/spotpy/examples/cmf_data/__init__.py +++ b/src/spotpy/examples/cmf_data/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -28,4 +28,4 @@ https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/tree/master/ Please cite our paper, if you are using SPOTPY. -''' +""" diff --git a/src/spotpy/examples/hymod_exe/__init__.py b/src/spotpy/examples/hymod_exe/__init__.py index c91096bc..f107b27a 100644 --- a/src/spotpy/examples/hymod_exe/__init__.py +++ b/src/spotpy/examples/hymod_exe/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -28,4 +28,4 @@ https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/tree/master/ Please cite our paper, if you are using SPOTPY. -''' +""" diff --git a/src/spotpy/examples/hymod_python/__init__.py b/src/spotpy/examples/hymod_python/__init__.py index c91096bc..f107b27a 100644 --- a/src/spotpy/examples/hymod_python/__init__.py +++ b/src/spotpy/examples/hymod_python/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -28,4 +28,4 @@ https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/tree/master/ Please cite our paper, if you are using SPOTPY. -''' +""" diff --git a/src/spotpy/examples/hymod_python/hymod.py b/src/spotpy/examples/hymod_python/hymod.py index f74bebdf..dc4d0af1 100644 --- a/src/spotpy/examples/hymod_python/hymod.py +++ b/src/spotpy/examples/hymod_python/hymod.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -9,17 +9,17 @@ :paper: Houska, T., Kraft, P., Chamorro-Chavez, A. and Breuer, L.: SPOTting Model Parameters Using a Ready-Made Python Package, PLoS ONE, 10(12), e0145180, doi:10.1371/journal.pone.0145180, 2015. -''' +""" from numba import jit -def hymod(Precip, PET, cmax,bexp,alpha,Rs,Rq): +def hymod(Precip, PET, cmax, bexp, alpha, Rs, Rq): """ See https://www.proc-iahs.net/368/180/2015/piahs-368-180-2015.pdf for a scientific paper: - - Quan, Z.; Teng, J.; Sun, W.; Cheng, T. & Zhang, J. (2015): Evaluation of the HYMOD model - for rainfall–runoff simulation using the GLUE method. Remote Sensing and GIS for Hydrology + + Quan, Z.; Teng, J.; Sun, W.; Cheng, T. & Zhang, J. (2015): Evaluation of the HYMOD model + for rainfall–runoff simulation using the GLUE method. Remote Sensing and GIS for Hydrology and Water Resources, 180 - 185, IAHS Publ. 368. DOI: 10.5194/piahs-368-180-2015. :param cmax: @@ -37,12 +37,12 @@ def hymod(Precip, PET, cmax,bexp,alpha,Rs,Rq): x_slow = 2.3503 / (Rs * 22.5) x_slow = 0 # --> works ok if calibration data starts with low discharge # Initialize state(s) of quick tank(s) - x_quick = [0,0,0] + x_quick = [0, 0, 0] t = 0 output = [] # START PROGRAMMING LOOP WITH DETERMINING RAINFALL - RUNOFF AMOUNTS - while t <= len(Precip)-1: + while t <= len(Precip) - 1: Pval = Precip[t] PETval = PET[t] # Compute excess precipitation and evaporation @@ -64,27 +64,32 @@ def hymod(Precip, PET, cmax,bexp,alpha,Rs,Rq): # Compute total flow for timestep output.append(QS + outflow) - t = t+1 + t = t + 1 return output + @jit -def power(X,Y): - X=abs(X) # Needed to capture invalid overflow with netgative values +def power(X, Y): + X = abs(X) # Needed to capture invalid overflow with netgative values return X**Y + @jit -def linres(x_slow,inflow,Rs): +def linres(x_slow, inflow, Rs): # Linear reservoir x_slow = (1 - Rs) * x_slow + (1 - Rs) * inflow outflow = (Rs / (1 - Rs)) * x_slow - return x_slow,outflow + return x_slow, outflow + @jit -def excess(x_loss,cmax,bexp,Pval,PETval): +def excess(x_loss, cmax, bexp, Pval, PETval): # this function calculates excess precipitation and evaporation xn_prev = x_loss - ct_prev = cmax * (1 - power((1 - ((bexp + 1) * (xn_prev) / cmax)), (1 / (bexp + 1)))) + ct_prev = cmax * ( + 1 - power((1 - ((bexp + 1) * (xn_prev) / cmax)), (1 / (bexp + 1))) + ) # Calculate Effective rainfall 1 ER1 = max((Pval - cmax + ct_prev), 0.0) Pval = Pval - ER1 @@ -95,7 +100,9 @@ def excess(x_loss,cmax,bexp,Pval,PETval): ER2 = max(Pval - (xn - xn_prev), 0) # Alternative approach - evap = (1 - (((cmax / (bexp + 1)) - xn) / (cmax / (bexp + 1)))) * PETval # actual ET is linearly related to the soil moisture state + evap = ( + 1 - (((cmax / (bexp + 1)) - xn) / (cmax / (bexp + 1))) + ) * PETval # actual ET is linearly related to the soil moisture state xn = max(xn - evap, 0) # update state - return ER1,ER2,xn + return ER1, ER2, xn diff --git a/src/spotpy/examples/hymod_unix/__init__.py b/src/spotpy/examples/hymod_unix/__init__.py index c91096bc..f107b27a 100644 --- a/src/spotpy/examples/hymod_unix/__init__.py +++ b/src/spotpy/examples/hymod_unix/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -28,4 +28,4 @@ https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/tree/master/ Please cite our paper, if you are using SPOTPY. -''' +""" diff --git a/src/spotpy/examples/spot_setup_ackley.py b/src/spotpy/examples/spot_setup_ackley.py index f73974a7..a38c031d 100644 --- a/src/spotpy/examples/spot_setup_ackley.py +++ b/src/spotpy/examples/spot_setup_ackley.py @@ -1,22 +1,24 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the Ackley function into SPOT. -''' +""" import numpy as np import spotpy class spot_setup(object): - def __init__(self,dim=30): - self.dim=dim + def __init__(self, dim=30): + self.dim = dim self.params = [] for i in range(self.dim): - self.params.append(spotpy.parameter.Uniform(str(i),-32.768,32.768,2.5,-20.0)) + self.params.append( + spotpy.parameter.Uniform(str(i), -32.768, 32.768, 2.5, -20.0) + ) def parameters(self): return spotpy.parameter.generate(self.params) @@ -26,14 +28,21 @@ def simulation(self, vector): secondSum = 0.0 for c in range(len(vector)): firstSum += c**2.0 - secondSum += np.cos(2.0*np.pi*vector[c]) + secondSum += np.cos(2.0 * np.pi * vector[c]) n = float(len(vector)) - return [-20.0*np.exp(-0.2*np.sqrt(firstSum/n)) - np.exp(secondSum/n) + 20 + np.e] + return [ + -20.0 * np.exp(-0.2 * np.sqrt(firstSum / n)) + - np.exp(secondSum / n) + + 20 + + np.e + ] def evaluation(self): - observations=[0] + observations = [0] return observations - def objectivefunction(self, simulation,evaluation): - objectivefunction= -spotpy.objectivefunctions.rmse(evaluation = evaluation, simulation = simulation) - return objectivefunction \ No newline at end of file + def objectivefunction(self, simulation, evaluation): + objectivefunction = -spotpy.objectivefunctions.rmse( + evaluation=evaluation, simulation=simulation + ) + return objectivefunction diff --git a/src/spotpy/examples/spot_setup_cmf1d.py b/src/spotpy/examples/spot_setup_cmf1d.py index a648ddf0..e7515481 100644 --- a/src/spotpy/examples/spot_setup_cmf1d.py +++ b/src/spotpy/examples/spot_setup_cmf1d.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -7,7 +7,7 @@ A one dimensional cmf model analysing data from the Schwingbach hydrological observatory. You need to have cmf and pandas installed on your system: svn checkout svn://fb09-pasig.umwelt.uni-giessen.de/cmf/trunk cmf -''' +""" import os import sys @@ -29,12 +29,16 @@ def __init__(self, par): # run the model self.project = cmf.project() - self.cell = self.project.NewCell(x=0, y=0, z=238.628, area=1000, with_surfacewater=True) + self.cell = self.project.NewCell( + x=0, y=0, z=238.628, area=1000, with_surfacewater=True + ) c = self.cell - r_curve = cmf.VanGenuchtenMualem(Ksat=10**par.pKsat, phi=par.porosity, alpha=par.alpha, n=par.n) + r_curve = cmf.VanGenuchtenMualem( + Ksat=10**par.pKsat, phi=par.porosity, alpha=par.alpha, n=par.n + ) # Make the layer boundaries and create soil layers - lthickness = [.01] * 5 + [0.025] * 6 + [0.05] * 6 + [0.1] * 5 + lthickness = [0.01] * 5 + [0.025] * 6 + [0.05] * 6 + [0.1] * 5 ldepth = np.cumsum(lthickness) # Create soil layers and pick the new soil layers if they are inside of the evaluation depth's @@ -50,9 +54,9 @@ def __init__(self, par): c.saturated_depth = 0.5 - self.gw = self.project.NewOutlet('groundwater', x=0, y=0, z=.9) + self.gw = self.project.NewOutlet("groundwater", x=0, y=0, z=0.9) cmf.Richards(c.layers[-1], self.gw) - self.gw.potential = c.z - 0.5 #IMPORTANT + self.gw.potential = c.z - 0.5 # IMPORTANT self.gw.is_source = True self.gwhead = cmf.timeseries.from_scalar(c.z - 0.5) @@ -66,13 +70,15 @@ def set_parameters(self, par): """ try: for l in self.cell.layers: - r_curve = cmf.VanGenuchtenMualem(Ksat=10**par.pKsat, phi=par.porosity, alpha=par.alpha, n=par.n) + r_curve = cmf.VanGenuchtenMualem( + Ksat=10**par.pKsat, phi=par.porosity, alpha=par.alpha, n=par.n + ) r_curve.w0 = r_curve.fit_w0() l.soil = r_curve self.cell.saturated_depth = 0.5 self.gw.potential = self.cell.z - 0.5 except RuntimeError as e: - sys.stderr.write('Set parameters failed with:\n' + str(par) + '\n' + str(e)) + sys.stderr.write("Set parameters failed with:\n" + str(par) + "\n" + str(e)) raise def load_meteo(self, driver_data): @@ -80,19 +86,26 @@ def load_meteo(self, driver_data): datastart = driver_data.time[0] # Create meteo station for project - meteo = self.project.meteo_stations.add_station('Schwingbach', position=(0, 0, 0), tz=1, timestep=cmf.h) + meteo = self.project.meteo_stations.add_station( + "Schwingbach", position=(0, 0, 0), tz=1, timestep=cmf.h + ) rain = cmf.timeseries.from_array(datastart, cmf.h, driver_data.rain_mmday) - meteo.rHmean = cmf.timeseries.from_array(datastart, cmf.h, driver_data.relhum_perc) - meteo.Windspeed = cmf.timeseries.from_array(datastart, cmf.h, driver_data.windspeed_ms) - meteo.Rs = cmf.timeseries.from_array(datastart, cmf.h, driver_data.solarrad_wm2 * 86400e-6) + meteo.rHmean = cmf.timeseries.from_array( + datastart, cmf.h, driver_data.relhum_perc + ) + meteo.Windspeed = cmf.timeseries.from_array( + datastart, cmf.h, driver_data.windspeed_ms + ) + meteo.Rs = cmf.timeseries.from_array( + datastart, cmf.h, driver_data.solarrad_wm2 * 86400e-6 + ) meteo.T = cmf.timeseries.from_array(datastart, cmf.h, driver_data.airtemp_degc) meteo.Tmax = meteo.T.floating_max(cmf.day) meteo.Tmin = meteo.T.floating_min(cmf.day) - self.project.rainfall_stations.add('Schwingbach', rain, (0, 0, 0)) + self.project.rainfall_stations.add("Schwingbach", rain, (0, 0, 0)) self.project.use_nearest_rainfall() - # Use the meteorological station for each cell of the project self.project.use_nearest_meteo() self.meteo = meteo @@ -114,18 +127,23 @@ def _load_data(filename): Loads data from csv, where the first column has the measurement date and all the other columns additional data :return: Rec-Array with date as a first column holding datetimes """ + def str2date(s): """Converts a string to a datetime""" - return datetime.strptime(s.decode(), '%Y-%m-%d %H:%M:%S') + return datetime.strptime(s.decode(), "%Y-%m-%d %H:%M:%S") + # Load the data - return np.recfromcsv(filename, converters={0: str2date}, comments='#') + return np.recfromcsv(filename, converters={0: str2date}, comments="#") class _ProgressReporter: """ Simple helper class to report progress and check for too long runtime """ - def __init__(self, start, end, frequency=cmf.week, max_runtime=15 * 60, verbose=False): + + def __init__( + self, start, end, frequency=cmf.week, max_runtime=15 * 60, verbose=False + ): self.verbose = verbose self.frequency = frequency self.max_runtime = max_runtime @@ -134,13 +152,19 @@ def __init__(self, start, end, frequency=cmf.week, max_runtime=15 * 60, verbose= def __call__(self, t): elapsed, total, remaining = self.stopwatch(t) if self.verbose and not t % cmf.week: - print('{modeltime:%Y-%m-%d}: {elapsed}/{total}' - .format(modeltime=t.AsPython(), - elapsed=elapsed * cmf.sec, - total=total * cmf.sec)) + print( + "{modeltime:%Y-%m-%d}: {elapsed}/{total}".format( + modeltime=t.AsPython(), + elapsed=elapsed * cmf.sec, + total=total * cmf.sec, + ) + ) if elapsed > self.max_runtime: - raise RuntimeError('{:%Y-%m-%d %H:%S} model took {:0.0f}min until now, stopping' - .format(t.AsPython(), elapsed / 60)) + raise RuntimeError( + "{:%Y-%m-%d %H:%S} model took {:0.0f}min until now, stopping".format( + t.AsPython(), elapsed / 60 + ) + ) class Cmf1d_Model(object): @@ -148,16 +172,26 @@ class Cmf1d_Model(object): A 1d Richards based soilmoisture model for Schwingbach site #24 """ - alpha = spotpy.parameter.Uniform(0.0001, 0.2, optguess=0.1156, doc=u'α in 1/cm for van Genuchten Mualem model') - pKsat = spotpy.parameter.Uniform(-2, 2, optguess=0, doc=u'log10 of saturated conductivity of the soil in m/day') - n = spotpy.parameter.Uniform(1.08, 1.8, optguess=1.1787, doc=u'van Genuchten-Mualem n') - porosity = spotpy.parameter.Uniform(0.3, 0.65, optguess=0.43359, doc=u'φ in m³/m³') + alpha = spotpy.parameter.Uniform( + 0.0001, 0.2, optguess=0.1156, doc="α in 1/cm for van Genuchten Mualem model" + ) + pKsat = spotpy.parameter.Uniform( + -2, 2, optguess=0, doc="log10 of saturated conductivity of the soil in m/day" + ) + n = spotpy.parameter.Uniform( + 1.08, 1.8, optguess=1.1787, doc="van Genuchten-Mualem n" + ) + porosity = spotpy.parameter.Uniform(0.3, 0.65, optguess=0.43359, doc="φ in m³/m³") def __init__(self, days=None): - self.driver_data = _load_data('cmf_data/driver_data_site24.csv') - self.evaluation_data = np.loadtxt('cmf_data/soilmoisture_site24.csv', delimiter=',', - comments='#', usecols=[1,2,3]) + self.driver_data = _load_data("cmf_data/driver_data_site24.csv") + self.evaluation_data = np.loadtxt( + "cmf_data/soilmoisture_site24.csv", + delimiter=",", + comments="#", + usecols=[1, 2, 3], + ) self.datastart = self.driver_data.time[0] @@ -171,19 +205,18 @@ def __init__(self, days=None): # The depth below ground in m where the evaluation data belongs to self.eval_depth = [0.1, 0.25, 0.4] - # Make the model self.model = _CmfProject(self.make_parameters()) # Load meteo data self.model.load_meteo(driver_data=self.driver_data) - self.__doc__ += '\n\n' + cmf.describe(self.model.project) + self.__doc__ += "\n\n" + cmf.describe(self.model.project) def make_parameters(self, random=False, **kwargs): return spotpy.parameter.create_set(self) def evaluation(self): """ - :return: The evaluation soilmoisture as a 2d array + :return: The evaluation soilmoisture as a 2d array """ return self.evaluation_data @@ -191,14 +224,16 @@ def evaluation(self): def objectivefunction(self, simulation, evaluation): """ Returns the negative RMSE for all values - :param simulation: - :param evaluation: - :return: + :param simulation: + :param evaluation: + :return: """ # Find all data positions where simulation and evaluation data is present take = np.isfinite(simulation) & np.isfinite(evaluation) - rmse = -spotpy.objectivefunctions.rmse(evaluation=evaluation[take], simulation=simulation[take]) + rmse = -spotpy.objectivefunctions.rmse( + evaluation=evaluation[take], simulation=simulation[take] + ) return rmse def get_eval_layers(self, eval_depth=None): @@ -210,10 +245,13 @@ def get_eval_layers(self, eval_depth=None): """ c = self.model.cell if eval_depth: - edi = 0 # current index of the evaluation depth - eval_layers = [] # the layers to do the evaluation are stored here + edi = 0 # current index of the evaluation depth + eval_layers = [] # the layers to do the evaluation are stored here for l in c.layers: - if edi < len(self.eval_depth) and l.upper_boundary <= self.eval_depth[edi] < l.lower_boundary: + if ( + edi < len(self.eval_depth) + and l.upper_boundary <= self.eval_depth[edi] < l.lower_boundary + ): eval_layers.append(l) edi += 1 else: @@ -221,34 +259,38 @@ def get_eval_layers(self, eval_depth=None): return eval_layers def simulation(self, par=None, verbose=False): - ''' + """ Runs the model instance - + :param par: A namedtuple of model parameters :param verbose: Write the progress for the single run :return: A 2d array of simulated soil moisture values per depth - ''' + """ # Set the parameters par = par or self.make_parameters() self.model.set_parameters(par) if verbose: - print('Parameters:') + print("Parameters:") for k, v in par._asdict().items(): - print(' {} = {:0.4g}'.format(k,v)) + print(" {} = {:0.4g}".format(k, v)) eval_layers = self.get_eval_layers(self.eval_depth) # Prepare result array with nan's result = np.nan * np.ones(shape=(len(self.evaluation_data), len(eval_layers))) # Save the starting conditions result[0] = [l.theta for l in eval_layers] - reporter = _ProgressReporter(self.datastart, self.dataend, max_runtime=15 * 60, verbose=verbose) + reporter = _ProgressReporter( + self.datastart, self.dataend, max_runtime=15 * 60, verbose=verbose + ) try: - for i, t in enumerate(self.model.solver.run(self.datastart, self.dataend, timedelta(hours=1))): + for i, t in enumerate( + self.model.solver.run(self.datastart, self.dataend, timedelta(hours=1)) + ): self.model.set_boundary(t) # Get result - result[i+1] = [l.theta for l in eval_layers] + result[i + 1] = [l.theta for l in eval_layers] # Raises if the runtime is too long reporter(t) except RuntimeError as e: @@ -258,7 +300,7 @@ def simulation(self, par=None, verbose=False): return result -if __name__ == '__main__': +if __name__ == "__main__": print(spotpy.__file__, spotpy.__version__) if len(sys.argv) > 1: runs = int(sys.argv[1]) @@ -268,14 +310,13 @@ def simulation(self, par=None, verbose=False): model = Cmf1d_Model() print(spotpy.describe.setup(model)) if runs > 1: - parallel = 'mpi' if 'OMPI_COMM_WORLD_SIZE' in os.environ else 'seq' - sampler = spotpy.algorithms.mc(model, - dbformat='csv', - dbname='cmf1d_mc', - parallel=parallel, - save_sim=False) + parallel = "mpi" if "OMPI_COMM_WORLD_SIZE" in os.environ else "seq" + sampler = spotpy.algorithms.mc( + model, dbformat="csv", dbname="cmf1d_mc", parallel=parallel, save_sim=False + ) sampler.sample(runs) else: from spotpy.gui.mpl import GUI + gui = GUI(model) gui.show() diff --git a/src/spotpy/examples/spot_setup_cmf_lumped.py b/src/spotpy/examples/spot_setup_cmf_lumped.py index cbdfd7cb..b11bb24d 100644 --- a/src/spotpy/examples/spot_setup_cmf_lumped.py +++ b/src/spotpy/examples/spot_setup_cmf_lumped.py @@ -16,7 +16,7 @@ from spotpy.parameter import Uniform # Make sure we do not get pestered with divIde by zero errors -np.seterr(all='ignore') +np.seterr(all="ignore") class DataProvider(object): @@ -26,11 +26,11 @@ class DataProvider(object): def __init__(self): # Load data from file using numpy magic - data = np.recfromcsv('cmf_data/fulda_climate.csv', encoding='utf-8') + data = np.recfromcsv("cmf_data/fulda_climate.csv", encoding="utf-8") def bstr2date(bs): """Helper function to convert date byte string to datetime object""" - return datetime.datetime.strptime(bs, '%d.%m.%Y') + return datetime.datetime.strptime(bs, "%d.%m.%Y") # Get begin, step and end from the date column self.begin = bstr2date(data.date[0]) @@ -59,13 +59,13 @@ def add_stations(self, project): :param project: A cmf.project :return: rainstation, meteo """ - rainstation = project.rainfall_stations.add('Grebenau avg', self.P, (0, 0, 0)) + rainstation = project.rainfall_stations.add("Grebenau avg", self.P, (0, 0, 0)) # Tell the project to use the meteo station just created project.use_nearest_rainfall() # Temperature data - meteo = project.meteo_stations.add_station('Grebenau avg', (0, 0, 0)) + meteo = project.meteo_stations.add_station("Grebenau avg", (0, 0, 0)) meteo.T = self.T meteo.Tmin = self.Tmin meteo.Tmax = self.Tmax @@ -81,19 +81,29 @@ class SingleStorage(object): A simple hydrological single storage model. No snow, interception or routing. """ + # Catchment area area = 2976.41e6 # sq m # General storage parameter V0 = Uniform(10, 10000, optguess=1000) # ET parameters - fETV1 = Uniform(0.01, 1, optguess=0.2, doc='if V datetime.timedelta(minutes=self.max_run_minutes): - print('Cancelled, since it took more than {} minutes'.format(self.max_run_minutes)) + print(t, "P={:5.3f}".format(c.get_rainfall(t))) + if datetime.datetime.now() - tstart > datetime.timedelta( + minutes=self.max_run_minutes + ): + print( + "Cancelled, since it took more than {} minutes".format( + self.max_run_minutes + ) + ) for t in cmf.timerange(solver.t, self.end, cmf.day): res_q.add(np.nan) @@ -195,7 +216,7 @@ def simulation(self, vector=None, verbose=False): self.setparameters(vector) result_q = self.runmodel(verbose) - return np.array(result_q[self.begin:self.end]) + return np.array(result_q[self.begin : self.end]) @staticmethod def objectivefunction(simulation, evaluation): @@ -204,7 +225,7 @@ def objectivefunction(simulation, evaluation): """ return [ spotpy.objectivefunctions.nashsutcliffe(evaluation, simulation), - spotpy.objectivefunctions.pbias(evaluation, simulation) + spotpy.objectivefunctions.pbias(evaluation, simulation), ] def evaluation(self): @@ -212,4 +233,4 @@ def evaluation(self): Returns the evaluation data """ runoff_mm = self.data.runoff_mm(self.area) - return np.array(runoff_mm[self.begin:self.end]) + return np.array(runoff_mm[self.begin : self.end]) diff --git a/src/spotpy/examples/spot_setup_dds.py b/src/spotpy/examples/spot_setup_dds.py index 3d6f539a..05e7f3f0 100644 --- a/src/spotpy/examples/spot_setup_dds.py +++ b/src/spotpy/examples/spot_setup_dds.py @@ -12,7 +12,7 @@ def ackley10(vector): for i in range(length): sum1 = sum1 + vector[i] ** 2 sum2 = sum2 + np.cos(2 * np.pi * vector[i]) - return -1*(-20 * np.exp(-0.2 * (sum1 / length) ** 0.5) - np.exp(sum2 / length)) + return -1 * (-20 * np.exp(-0.2 * (sum1 / length) ** 0.5) - np.exp(sum2 / length)) def griewank10(vector): @@ -24,12 +24,12 @@ def griewank10(vector): sum1 = sum1 + (vector[i] ** 2) / 4000 term2 = term2 * np.cos(vector[i] / (i + 1) ** 0.5) - return -1*(sum1 - term2 + term3) + return -1 * (sum1 - term2 + term3) class spot_setup(object): """ - Setup for a simple example to run DDS Algorithm + Setup for a simple example to run DDS Algorithm """ def __init__(self): @@ -45,44 +45,131 @@ def _objfunc_switcher(self, name): if name == "ackley": self.objfunc = ackley10 - self.params = [Uniform(str(j), -2, 2, 1.5, 3.0, -2, 2, doc=str(j) + ' value of Rosenbrock function') - for j in range(10)] + self.params = [ + Uniform( + str(j), + -2, + 2, + 1.5, + 3.0, + -2, + 2, + doc=str(j) + " value of Rosenbrock function", + ) + for j in range(10) + ] elif name == "griewank": self.objfunc = griewank10 - self.params = [Uniform('d' + str(j), -500, 700, 1.5, 3.0, -500, 700, - doc=str(j) + 'distinc parameter within a boundary', as_int=True) - for j in range(2)] + [Uniform('c' + str(j), -500, 700, 1.5, 3.0, -500, 700, - doc=str(j) + 'continuous parameter within a boundary') - for j in range(8)] + self.params = [ + Uniform( + "d" + str(j), + -500, + 700, + 1.5, + 3.0, + -500, + 700, + doc=str(j) + "distinc parameter within a boundary", + as_int=True, + ) + for j in range(2) + ] + [ + Uniform( + "c" + str(j), + -500, + 700, + 1.5, + 3.0, + -500, + 700, + doc=str(j) + "continuous parameter within a boundary", + ) + for j in range(8) + ] elif name == "cmf_style": self.objfunc = ackley10 - self.params = [Uniform(.5, 5., optguess=1.5, doc='saturated depth at beginning'), - Uniform(.001, .8, optguess=.1, doc='porosity of matrix [m3 Pores / m3 Soil]'), - Uniform(1., 240., optguess=10., - doc='ssaturated conductivity of macropores [m/day]'), - Uniform(.0001, .5, optguess=.05, doc='macropore fraction [m3/m3]'), - Uniform(.005, 1., optguess=.05, - doc='mean distance between the macropores [m]'), - Uniform(0., 1., optguess=0., - doc='water content when matric potential pointing towards -infinity'), - Uniform(.5, 1., optguess=.99, - doc='wetness above which the parabolic extrapolation is used instead of VGM'), - Uniform(0., 50, optguess=.1, - doc='exchange rate [1/day] for macropore-matrix-exchange')] + self.params = [ + Uniform(0.5, 5.0, optguess=1.5, doc="saturated depth at beginning"), + Uniform( + 0.001, + 0.8, + optguess=0.1, + doc="porosity of matrix [m3 Pores / m3 Soil]", + ), + Uniform( + 1.0, + 240.0, + optguess=10.0, + doc="ssaturated conductivity of macropores [m/day]", + ), + Uniform(0.0001, 0.5, optguess=0.05, doc="macropore fraction [m3/m3]"), + Uniform( + 0.005, + 1.0, + optguess=0.05, + doc="mean distance between the macropores [m]", + ), + Uniform( + 0.0, + 1.0, + optguess=0.0, + doc="water content when matric potential pointing towards -infinity", + ), + Uniform( + 0.5, + 1.0, + optguess=0.99, + doc="wetness above which the parabolic extrapolation is used instead of VGM", + ), + Uniform( + 0.0, + 50, + optguess=0.1, + doc="exchange rate [1/day] for macropore-matrix-exchange", + ), + ] def parameters(self): if self.params is None: self.params = [ - Uniform("0", -10, 10, 1.5, 3.0, -10, 10, doc='x value of Rosenbrock function'), - Uniform("1", -10, 10, 1.5, 3.0, -10, 10, doc='y value of Rosenbrock function'), - Uniform("z", -10, 10, 1.5, 3.0, -10, 10, doc='z value of Rosenbrock function')] + Uniform( + "0", + -10, + 10, + 1.5, + 3.0, + -10, + 10, + doc="x value of Rosenbrock function", + ), + Uniform( + "1", + -10, + 10, + 1.5, + 3.0, + -10, + 10, + doc="y value of Rosenbrock function", + ), + Uniform( + "z", + -10, + 10, + 1.5, + 3.0, + -10, + 10, + doc="z value of Rosenbrock function", + ), + ] return spotpy.parameter.generate(self.params) def simulation(self, vector): x = np.array(vector) # simulations = [sum(100.0 * (x[1:] - x[:-1] ** 2.0) ** 2.0 + (1 - x[:-1]) ** 2.0)] simulations = x * np.random.rand(len(vector)) - #simulations = x * np.sum(vector) + # simulations = x * np.sum(vector) return simulations def evaluation(self): @@ -93,7 +180,7 @@ def evaluation(self): def objectivefunction(self, simulation, evaluation, params): if self.objfunc is None: - return -1*rmse(evaluation, simulation) + return -1 * rmse(evaluation, simulation) else: pars, names = params return self.objfunc(pars) diff --git a/src/spotpy/examples/spot_setup_dtlz1.py b/src/spotpy/examples/spot_setup_dtlz1.py index c8f791fe..f51d68b1 100644 --- a/src/spotpy/examples/spot_setup_dtlz1.py +++ b/src/spotpy/examples/spot_setup_dtlz1.py @@ -1,4 +1,3 @@ - import time import numpy as np @@ -6,55 +5,58 @@ import spotpy -def g1(x,k): - return 100*( k + np.sum(np.square(x - 0.5) - np.cos(20*np.pi*(x -0.5)), axis=1)) - +def g1(x, k): + return 100 * ( + k + np.sum(np.square(x - 0.5) - np.cos(20 * np.pi * (x - 0.5)), axis=1) + ) -def dtlz1(x,n_var,n_obj): +def dtlz1(x, n_var, n_obj): k = n_var - n_obj + 1 - X, X_M = x[:, :n_obj - 1], x[:, n_obj - 1:] - g = g1(X_M,k) + X, X_M = x[:, : n_obj - 1], x[:, n_obj - 1 :] + g = g1(X_M, k) f = [] - for i in range(0,n_obj): + for i in range(0, n_obj): _f = 0.5 * (1 + g) - _f *= np.prod(X[:, :X.shape[1] -i],axis=1) - if i> 0: - _f *= 1 - X[:,X.shape[1] -i] + _f *= np.prod(X[:, : X.shape[1] - i], axis=1) + if i > 0: + _f *= 1 - X[:, X.shape[1] - i] f.append(_f) return f - - - - class spot_setup(object): - def __init__(self,n_var=5,n_obj=3): - self.n_var=n_var + def __init__(self, n_var=5, n_obj=3): + self.n_var = n_var self.n_obj = n_obj self.params = [] for i in range(self.n_var): - self.params.append(spotpy.parameter.Uniform(str(i),0,1)) + self.params.append(spotpy.parameter.Uniform(str(i), 0, 1)) + def parameters(self): return spotpy.parameter.generate(self.params) def simulation(self, vector): vars = np.array(vector)[None] - sim = dtlz1(vars,n_var=self.n_var,n_obj=self.n_obj) - #time.sleep(0.1) + sim = dtlz1(vars, n_var=self.n_var, n_obj=self.n_obj) + # time.sleep(0.1) return sim + def evaluation(self): - observations=[0]*self.n_obj + observations = [0] * self.n_obj return observations - def objectivefunction(self, simulation,evaluation): + def objectivefunction(self, simulation, evaluation): obj = [] - for i,f in enumerate(simulation): - obj.append(spotpy.objectivefunctions.mae(evaluation = [evaluation[i]], simulation = [simulation[i]])) + for i, f in enumerate(simulation): + obj.append( + spotpy.objectivefunctions.mae( + evaluation=[evaluation[i]], simulation=[simulation[i]] + ) + ) return obj diff --git a/src/spotpy/examples/spot_setup_griewank.py b/src/spotpy/examples/spot_setup_griewank.py index 7ebe3182..2f0299a7 100644 --- a/src/spotpy/examples/spot_setup_griewank.py +++ b/src/spotpy/examples/spot_setup_griewank.py @@ -1,18 +1,18 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the Griewank function into SPOT. -''' +""" import numpy as np import spotpy class spot_setup(object): - def __init__(self, dim = 2): + def __init__(self, dim=2): self.dim = dim self.params = [] for i in range(self.dim): @@ -21,16 +21,15 @@ def __init__(self, dim = 2): def parameters(self): return spotpy.parameter.generate(self.params) - def simulation(self, vector): n = len(vector) fr = 4000 s = 0 p = 1 for j in range(n): - s = s + vector[j]**2 + s = s + vector[j] ** 2 for j in range(n): - p = p * np.cos(vector[j] / np.sqrt(j+1)) + p = p * np.cos(vector[j] / np.sqrt(j + 1)) simulation = [s / fr - p + 1] return simulation @@ -38,6 +37,8 @@ def evaluation(self): observations = [0] return observations - def objectivefunction(self, simulation,evaluation): - objectivefunction= -spotpy.objectivefunctions.rmse(evaluation = evaluation, simulation = simulation) - return objectivefunction \ No newline at end of file + def objectivefunction(self, simulation, evaluation): + objectivefunction = -spotpy.objectivefunctions.rmse( + evaluation=evaluation, simulation=simulation + ) + return objectivefunction diff --git a/src/spotpy/examples/spot_setup_hymod_exe.py b/src/spotpy/examples/spot_setup_hymod_exe.py index 1eabfb84..562452af 100644 --- a/src/spotpy/examples/spot_setup_hymod_exe.py +++ b/src/spotpy/examples/spot_setup_hymod_exe.py @@ -1,12 +1,12 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the external hydrological model HYMOD into SPOTPY. -''' +""" import os -#from shutil import rmtree +# from shutil import rmtree import sys from distutils.dir_util import copy_tree, remove_tree @@ -16,77 +16,83 @@ class spot_setup(object): - def __init__(self,parallel='seq'): + def __init__(self, parallel="seq"): - self.params = [spotpy.parameter.Uniform('cmax',low=1.0 , high=500, optguess=412.33), - spotpy.parameter.Uniform('bexp',low=0.1 , high=2.0, optguess=0.1725), - spotpy.parameter.Uniform('alpha',low=0.1 , high=0.99, optguess=0.8127), - spotpy.parameter.Uniform('Ks',low=0.0 , high=0.10, optguess=0.0404), - spotpy.parameter.Uniform('Kq',low=0.1 , high=0.99, optguess=0.5592)] + self.params = [ + spotpy.parameter.Uniform("cmax", low=1.0, high=500, optguess=412.33), + spotpy.parameter.Uniform("bexp", low=0.1, high=2.0, optguess=0.1725), + spotpy.parameter.Uniform("alpha", low=0.1, high=0.99, optguess=0.8127), + spotpy.parameter.Uniform("Ks", low=0.0, high=0.10, optguess=0.0404), + spotpy.parameter.Uniform("Kq", low=0.1, high=0.99, optguess=0.5592), + ] self.curdir = os.getcwd() - self.owd = os.path.realpath(__file__)+os.sep+'..' - self.hymod_path = self.owd+os.sep+'hymod_exe' - self.evals = list(np.genfromtxt(self.hymod_path+os.sep+'bound.txt',skip_header=65)[:,3])[:730] - self.Factor = 1944 * (1000 * 1000 ) / (1000 * 60 * 60 * 24) + self.owd = os.path.realpath(__file__) + os.sep + ".." + self.hymod_path = self.owd + os.sep + "hymod_exe" + self.evals = list( + np.genfromtxt(self.hymod_path + os.sep + "bound.txt", skip_header=65)[:, 3] + )[:730] + self.Factor = 1944 * (1000 * 1000) / (1000 * 60 * 60 * 24) self.parallel = parallel def parameters(self): return spotpy.parameter.generate(self.params) - def simulation(self,x): - - if self.parallel == 'seq': - call = '' - elif self.parallel == 'mpi': - #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core - call = str(int(os.environ['OMPI_COMM_WORLD_RANK'])+2) - #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) - - elif self.parallel == 'mpc': - #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core - call =str(os.getpid()) - #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) + def simulation(self, x): + + if self.parallel == "seq": + call = "" + elif self.parallel == "mpi": + # Running n parallel, care has to be taken when files are read or written + # Therefor we check the ID of the current computer core + call = str(int(os.environ["OMPI_COMM_WORLD_RANK"]) + 2) + # And generate a new folder with all underlying files + copy_tree(self.hymod_path, self.hymod_path + call) + + elif self.parallel == "mpc": + # Running n parallel, care has to be taken when files are read or written + # Therefor we check the ID of the current computer core + call = str(os.getpid()) + # And generate a new folder with all underlying files + copy_tree(self.hymod_path, self.hymod_path + call) else: - raise 'No call variable was assigned' + raise "No call variable was assigned" - os.chdir(self.hymod_path+call) + os.chdir(self.hymod_path + call) try: - params = open('Param.in','w') + params = open("Param.in", "w") for i in range(len(x)): if i == len(x): - params.write(str(round(x[i],5))) + params.write(str(round(x[i], 5))) else: - params.write(str(round(x[i],5))+' ') + params.write(str(round(x[i], 5)) + " ") params.close() - os.system('HYMODsilent.exe') + os.system("HYMODsilent.exe") - #try: - SimRR = open('Q.out', 'r') + # try: + SimRR = open("Q.out", "r") - simulations=[] + simulations = [] for i in range(64): SimRR.readline() for i in range(730): - val= SimRR.readline() - simulations.append(float(val)*self.Factor) + val = SimRR.readline() + simulations.append(float(val) * self.Factor) SimRR.close() except: - 'Model has failed' - simulations=[np.nan]*795 #Assign bad values - model might have crashed + "Model has failed" + simulations = [np.nan] * 795 # Assign bad values - model might have crashed os.chdir(self.curdir) - if self.parallel == 'mpi' or self.parallel == 'mpc': - remove_tree(self.hymod_path+call) + if self.parallel == "mpi" or self.parallel == "mpc": + remove_tree(self.hymod_path + call) return simulations def evaluation(self): return self.evals - def objectivefunction(self,simulation,evaluation, params=None): - like = spotpy.objectivefunctions.nashsutcliffe(evaluation,simulation) # Just an example, please choose an appropriate objective function depending on the used algorithm + def objectivefunction(self, simulation, evaluation, params=None): + like = spotpy.objectivefunctions.nashsutcliffe( + evaluation, simulation + ) # Just an example, please choose an appropriate objective function depending on the used algorithm return like diff --git a/src/spotpy/examples/spot_setup_hymod_python.py b/src/spotpy/examples/spot_setup_hymod_python.py index 2e9b8c72..f0144baf 100644 --- a/src/spotpy/examples/spot_setup_hymod_python.py +++ b/src/spotpy/examples/spot_setup_hymod_python.py @@ -1,11 +1,11 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the python version of hymod into SPOTPY. -''' +""" import os @@ -16,61 +16,61 @@ class spot_setup(object): - cmax = Uniform(low=1.0 , high=500, optguess=412.33) - bexp = Uniform(low=0.1 , high=2.0, optguess=0.1725) - alpha = Uniform(low=0.1 , high=0.99, optguess=0.8127) - Ks = Uniform(low=0.001 , high=0.10, optguess=0.0404) - Kq = Uniform(low=0.1 , high=0.99, optguess=0.5592) - #fake1 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) - #fake2 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) + cmax = Uniform(low=1.0, high=500, optguess=412.33) + bexp = Uniform(low=0.1, high=2.0, optguess=0.1725) + alpha = Uniform(low=0.1, high=0.99, optguess=0.8127) + Ks = Uniform(low=0.001, high=0.10, optguess=0.0404) + Kq = Uniform(low=0.1, high=0.99, optguess=0.5592) + # fake1 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) + # fake2 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) def __init__(self, obj_func=None): - #Just a way to keep this example flexible and applicable to various examples + # Just a way to keep this example flexible and applicable to various examples self.obj_func = obj_func - #Transform [mm/day] into [l s-1], where 1.783 is the catchment area + # Transform [mm/day] into [l s-1], where 1.783 is the catchment area self.Factor = 1.783 * 1000 * 1000 / (60 * 60 * 24) - #Load Observation data from file - self.PET,self.Precip = [], [] - self.date,self.trueObs = [], [] - #Find Path to Hymod on users system + # Load Observation data from file + self.PET, self.Precip = [], [] + self.date, self.trueObs = [], [] + # Find Path to Hymod on users system self.owd = os.path.dirname(os.path.realpath(__file__)) - self.hymod_path = self.owd+os.sep+'hymod_python' - climatefile = open(self.hymod_path+os.sep+'hymod_input.csv', 'r') + self.hymod_path = self.owd + os.sep + "hymod_python" + climatefile = open(self.hymod_path + os.sep + "hymod_input.csv", "r") headerline = climatefile.readline()[:-1] - #Read model forcing in working storage (this is done only ones) - if ';' in headerline: - self.delimiter = ';' + # Read model forcing in working storage (this is done only ones) + if ";" in headerline: + self.delimiter = ";" else: - self.delimiter = ',' + self.delimiter = "," self.header = headerline.split(self.delimiter) for line in climatefile: - values = line.strip().split(self.delimiter) + values = line.strip().split(self.delimiter) self.date.append(str(values[0])) self.Precip.append(float(values[1])) self.PET.append(float(values[2])) self.trueObs.append(float(values[3])) climatefile.close() - def simulation(self,x): - #Here the model is actualy startet with one paramter combination + def simulation(self, x): + # Here the model is actualy startet with one paramter combination data = hymod(self.Precip, self.PET, x[0], x[1], x[2], x[3], x[4]) - sim=[] + sim = [] for val in data: - sim.append(val*self.Factor) - #The first year of simulation data is ignored (warm-up) + sim.append(val * self.Factor) + # The first year of simulation data is ignored (warm-up) return sim[366:] def evaluation(self): return self.trueObs[366:] - def objectivefunction(self,simulation,evaluation, params=None): - #SPOTPY expects to get one or multiple values back, - #that define the performance of the model run + def objectivefunction(self, simulation, evaluation, params=None): + # SPOTPY expects to get one or multiple values back, + # that define the performance of the model run if not self.obj_func: # This is used if not overwritten by user - like = rmse(evaluation,simulation) + like = rmse(evaluation, simulation) else: - #Way to ensure flexible spot setup class - like = self.obj_func(evaluation,simulation) - return like \ No newline at end of file + # Way to ensure flexible spot setup class + like = self.obj_func(evaluation, simulation) + return like diff --git a/src/spotpy/examples/spot_setup_hymod_python_pareto.py b/src/spotpy/examples/spot_setup_hymod_python_pareto.py index e47e651c..a64e4a53 100644 --- a/src/spotpy/examples/spot_setup_hymod_python_pareto.py +++ b/src/spotpy/examples/spot_setup_hymod_python_pareto.py @@ -1,11 +1,11 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the python version of hymod into SPOTPY. -''' +""" import os @@ -17,30 +17,30 @@ class spot_setup(object): - cmax = spotpy.parameter.Uniform(low=1.0 , high=500, optguess=412.33) - bexp = spotpy.parameter.Uniform(low=0.1 , high=2.0, optguess=0.1725) - alpha = spotpy.parameter.Uniform(low=0.1 , high=0.99, optguess=0.8127) - Ks = spotpy.parameter.Uniform(low=0.0 , high=0.10, optguess=0.0404) - Kq = spotpy.parameter.Uniform(low=0.1 , high=0.99, optguess=0.5592) + cmax = spotpy.parameter.Uniform(low=1.0, high=500, optguess=412.33) + bexp = spotpy.parameter.Uniform(low=0.1, high=2.0, optguess=0.1725) + alpha = spotpy.parameter.Uniform(low=0.1, high=0.99, optguess=0.8127) + Ks = spotpy.parameter.Uniform(low=0.0, high=0.10, optguess=0.0404) + Kq = spotpy.parameter.Uniform(low=0.1, high=0.99, optguess=0.5592) def __init__(self): - #Transform [mm/day] into [l s-1], where 1.783 is the catchment area + # Transform [mm/day] into [l s-1], where 1.783 is the catchment area self.Factor = 1.783 * 1000 * 1000 / (60 * 60 * 24) - #Load Observation data from file - self.PET,self.Precip = [], [] - self.date,self.trueObs = [], [] + # Load Observation data from file + self.PET, self.Precip = [], [] + self.date, self.trueObs = [], [] self.owd = os.path.dirname(os.path.realpath(__file__)) - self.hymod_path = self.owd+os.sep+'hymod_python' - climatefile = open(self.hymod_path+os.sep+'hymod_input.csv', 'r') + self.hymod_path = self.owd + os.sep + "hymod_python" + climatefile = open(self.hymod_path + os.sep + "hymod_input.csv", "r") headerline = climatefile.readline()[:-1] - if ';' in headerline: - self.delimiter = ';' + if ";" in headerline: + self.delimiter = ";" else: - self.delimiter = ',' + self.delimiter = "," self.header = headerline.split(self.delimiter) for line in climatefile: - values = line.strip().split(self.delimiter) + values = line.strip().split(self.delimiter) self.date.append(str(values[0])) self.Precip.append(float(values[1])) self.PET.append(float(values[2])) @@ -48,18 +48,19 @@ def __init__(self): climatefile.close() - - def simulation(self,x): + def simulation(self, x): data = hymod(self.Precip, self.PET, x[0], x[1], x[2], x[3], x[4]) - sim=[] + sim = [] for val in data: - sim.append(val*self.Factor) + sim.append(val * self.Factor) return sim[366:] def evaluation(self): return self.trueObs[366:] - def objectivefunction(self,simulation,evaluation, params=None): - return [-abs(spotpy.objectivefunctions.bias(evaluation, simulation)), + def objectivefunction(self, simulation, evaluation, params=None): + return [ + -abs(spotpy.objectivefunctions.bias(evaluation, simulation)), spotpy.objectivefunctions.rsquared(evaluation, simulation), - spotpy.objectivefunctions.nashsutcliffe(evaluation, simulation)] \ No newline at end of file + spotpy.objectivefunctions.nashsutcliffe(evaluation, simulation), + ] diff --git a/src/spotpy/examples/spot_setup_hymod_unix.py b/src/spotpy/examples/spot_setup_hymod_unix.py index fae63b77..e0a8ed01 100644 --- a/src/spotpy/examples/spot_setup_hymod_unix.py +++ b/src/spotpy/examples/spot_setup_hymod_unix.py @@ -1,101 +1,109 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the external hydrological model HYMOD into SPOTPY. -''' +""" import numpy as np try: import spotpy except ImportError: import sys + sys.path.append(".") import spotpy import multiprocessing as mp import os -#from shutil import rmtree +# from shutil import rmtree import sys from distutils.dir_util import copy_tree, remove_tree class spot_setup(object): - def __init__(self,parallel='seq'): + def __init__(self, parallel="seq"): - self.params = [spotpy.parameter.Uniform('cmax',low=1.0 , high=500, optguess=412.33), - spotpy.parameter.Uniform('bexp',low=0.1 , high=2.0, optguess=0.1725), - spotpy.parameter.Uniform('alpha',low=0.1 , high=0.99, optguess=0.8127), - spotpy.parameter.Uniform('Ks',low=0.0 , high=0.10, optguess=0.0404), - spotpy.parameter.Uniform('Kq',low=0.1 , high=0.99, optguess=0.5592)] + self.params = [ + spotpy.parameter.Uniform("cmax", low=1.0, high=500, optguess=412.33), + spotpy.parameter.Uniform("bexp", low=0.1, high=2.0, optguess=0.1725), + spotpy.parameter.Uniform("alpha", low=0.1, high=0.99, optguess=0.8127), + spotpy.parameter.Uniform("Ks", low=0.0, high=0.10, optguess=0.0404), + spotpy.parameter.Uniform("Kq", low=0.1, high=0.99, optguess=0.5592), + ] self.curdir = os.getcwd() self.owd = os.path.dirname(os.path.realpath(__file__)) - self.hymod_path = self.owd+os.sep+'hymod_unix' - self.evals = list(np.genfromtxt(self.hymod_path+os.sep+'bound.txt',skip_header=65)[:,3])[:730] - self.Factor = 1944 * (1000 * 1000 ) / (1000 * 60 * 60 * 24) + self.hymod_path = self.owd + os.sep + "hymod_unix" + self.evals = list( + np.genfromtxt(self.hymod_path + os.sep + "bound.txt", skip_header=65)[:, 3] + )[:730] + self.Factor = 1944 * (1000 * 1000) / (1000 * 60 * 60 * 24) self.parallel = parallel def parameters(self): return spotpy.parameter.generate(self.params) - def simulation(self,x): - - if self.parallel == 'seq': - call = '' - elif self.parallel == 'mpi': - #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core - call = str(int(os.environ['OMPI_COMM_WORLD_RANK'])+2) - #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) - - elif self.parallel == 'mpc': - #Running n parallel, care has to be taken when files are read or written - #Therefor we check the ID of the current computer core - call =str(os.getpid()) - #And generate a new folder with all underlying files - copy_tree(self.hymod_path, self.hymod_path+call) + def simulation(self, x): + + if self.parallel == "seq": + call = "" + elif self.parallel == "mpi": + # Running n parallel, care has to be taken when files are read or written + # Therefor we check the ID of the current computer core + call = str(int(os.environ["OMPI_COMM_WORLD_RANK"]) + 2) + # And generate a new folder with all underlying files + copy_tree(self.hymod_path, self.hymod_path + call) + + elif self.parallel == "mpc": + # Running n parallel, care has to be taken when files are read or written + # Therefor we check the ID of the current computer core + call = str(os.getpid()) + # And generate a new folder with all underlying files + copy_tree(self.hymod_path, self.hymod_path + call) else: - raise 'No call variable was assigned' + raise "No call variable was assigned" - os.chdir(self.hymod_path+call) + os.chdir(self.hymod_path + call) try: - params = open('Param.in','w') + params = open("Param.in", "w") for i in range(len(x)): if i == len(x): - params.write(str(round(x[i],5))) + params.write(str(round(x[i], 5))) else: - params.write(str(round(x[i],5))+' ') + params.write(str(round(x[i], 5)) + " ") params.close() - os.system('./hymod_%s.%s' % (sys.version_info.major, sys.version_info.minor)) + os.system( + "./hymod_%s.%s" % (sys.version_info.major, sys.version_info.minor) + ) - SimRR = open('Q.out', 'r') + SimRR = open("Q.out", "r") - simulations=[] + simulations = [] for i in range(64): SimRR.readline() for i in range(730): - val= SimRR.readline() - simulations.append(float(val)*self.Factor) + val = SimRR.readline() + simulations.append(float(val) * self.Factor) SimRR.close() except: - 'Model has failed' - simulations=[np.nan]*795 #Assign bad values - model might have crashed + "Model has failed" + simulations = [np.nan] * 795 # Assign bad values - model might have crashed os.chdir(self.curdir) - if self.parallel == 'mpi' or self.parallel == 'mpc': - remove_tree(self.hymod_path+call) + if self.parallel == "mpi" or self.parallel == "mpc": + remove_tree(self.hymod_path + call) return simulations def evaluation(self): return self.evals - def objectivefunction(self,simulation,evaluation, params=None): - like = spotpy.objectivefunctions.nashsutcliffe(evaluation,simulation) # Just an example, please choose an appropriate objective function depending on the used algorithm + def objectivefunction(self, simulation, evaluation, params=None): + like = spotpy.objectivefunctions.nashsutcliffe( + evaluation, simulation + ) # Just an example, please choose an appropriate objective function depending on the used algorithm return like - diff --git a/src/spotpy/examples/spot_setup_rosenbrock.py b/src/spotpy/examples/spot_setup_rosenbrock.py index 3c6cc5c1..2943e607 100644 --- a/src/spotpy/examples/spot_setup_rosenbrock.py +++ b/src/spotpy/examples/spot_setup_rosenbrock.py @@ -1,10 +1,10 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Optimization Tool for Python (SPOTPY). :author: Tobias Houska This example implements the Rosenbrock function into a SPOTPY class. -''' +""" import numpy as np @@ -18,16 +18,19 @@ class spot_setup(object): Result at (1,1,1) is 0. """ - x = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='x value of Rosenbrock function') - y = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='y value of Rosenbrock function') - z = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc='z value of Rosenbrock function') - def __init__(self,obj_func=None): + x = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc="x value of Rosenbrock function") + y = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc="y value of Rosenbrock function") + z = Uniform(-10, 10, 1.5, 3.0, -10, 10, doc="z value of Rosenbrock function") + + def __init__(self, obj_func=None): self.obj_func = obj_func def simulation(self, vector): - x=np.array(vector) - simulations= [sum(100.0 * (x[1:] - x[:-1] ** 2.0) ** 2.0 + (1 - x[:-1]) ** 2.0)] + x = np.array(vector) + simulations = [ + sum(100.0 * (x[1:] - x[:-1] ** 2.0) ** 2.0 + (1 - x[:-1]) ** 2.0) + ] return simulations def evaluation(self): @@ -36,12 +39,12 @@ def evaluation(self): def objectivefunction(self, simulation, evaluation, params=None): - #SPOTPY expects to get one or multiple values back, - #that define the performence of the model run + # SPOTPY expects to get one or multiple values back, + # that define the performence of the model run if not self.obj_func: # This is used if not overwritten by user - like = rmse(evaluation,simulation) + like = rmse(evaluation, simulation) else: - #Way to ensure on flexible spot setup class - like = self.obj_func(evaluation,simulation) + # Way to ensure on flexible spot setup class + like = self.obj_func(evaluation, simulation) return like diff --git a/src/spotpy/examples/spot_setup_standardnormal.py b/src/spotpy/examples/spot_setup_standardnormal.py index 34bf6b50..e756307f 100644 --- a/src/spotpy/examples/spot_setup_standardnormal.py +++ b/src/spotpy/examples/spot_setup_standardnormal.py @@ -1,34 +1,37 @@ -''' +""" Copyright 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska This example implements the Standard Normal function into SPOT. -''' +""" import numpy as np import spotpy class spot_setup(object): - def __init__(self,mean=0,std=1): - self.params = [spotpy.parameter.Uniform('x',-5,5,1.5,3.0) - ] - self.mean=mean - self.std=std + def __init__(self, mean=0, std=1): + self.params = [spotpy.parameter.Uniform("x", -5, 5, 1.5, 3.0)] + self.mean = mean + self.std = std def parameters(self): return spotpy.parameter.generate(self.params) - def simulation(self,x): - simulations= (1.0/(self.std*np.sqrt(2*np.pi)))**((-1.0/2.0)*(((x-self.mean)/self.std)**2)) + def simulation(self, x): + simulations = (1.0 / (self.std * np.sqrt(2 * np.pi))) ** ( + (-1.0 / 2.0) * (((x - self.mean) / self.std) ** 2) + ) return simulations def evaluation(self): observations = [0] return observations - def objectivefunction(self, simulation,evaluation): - objectivefunction = -spotpy.objectivefunctions.rmse(evaluation = evaluation,simulation = simulation) - return objectivefunction \ No newline at end of file + def objectivefunction(self, simulation, evaluation): + objectivefunction = -spotpy.objectivefunctions.rmse( + evaluation=evaluation, simulation=simulation + ) + return objectivefunction diff --git a/src/spotpy/gui/mpl.py b/src/spotpy/gui/mpl.py index ba687afe..7925106b 100644 --- a/src/spotpy/gui/mpl.py +++ b/src/spotpy/gui/mpl.py @@ -15,8 +15,11 @@ from ..parameter import create_set, get_parameters_array -if matplotlib.__version__ < '2.1': - raise ImportError('Your matplotlib package is too old. Required >=2.1, you have ' + matplotlib.__version__) +if matplotlib.__version__ < "2.1": + raise ImportError( + "Your matplotlib package is too old. Required >=2.1, you have " + + matplotlib.__version__ + ) def as_scalar(val): @@ -64,7 +67,7 @@ def __init__(self, rect, wtype, *args, **kwargs): self.ax = plt.axes(rect) events = {} for k in list(kwargs.keys()): - if k.startswith('on_'): + if k.startswith("on_"): events[k] = kwargs.pop(k) self.object = wtype(self.ax, *args, **kwargs) for k in events: @@ -83,6 +86,7 @@ class ValueChanger: >>>from matplotlib.widgets import Slider >>>w = Widget([0,0,0.1,0.1], Slider, 'slider', 0, 100, on_changed=ValueChanger('a', d)) """ + def __init__(self, key, stor): self.stor = stor self.key = key @@ -117,8 +121,12 @@ def __init__(self, setup): """ self.fig = plt.figure(type(setup).__name__) self.ax = plt.axes([0.05, 0.1, 0.65, 0.85]) - self.button_run = Widget([0.75, 0.01, 0.1, 0.03], Button, 'Simulate', on_clicked=self.run) - self.button_clear = Widget([0.87, 0.01, 0.1, 0.03], Button, 'Clear plot', on_clicked=self.clear) + self.button_run = Widget( + [0.75, 0.01, 0.1, 0.03], Button, "Simulate", on_clicked=self.run + ) + self.button_clear = Widget( + [0.87, 0.01, 0.1, 0.03], Button, "Clear plot", on_clicked=self.clear + ) self.parameter_values = {} self.setup = setup self.sliders = self._make_widgets() @@ -146,16 +154,23 @@ def _make_widgets(self): Creates the sliders :return: """ - if hasattr(self, 'sliders'): + if hasattr(self, "sliders"): for s in self.sliders: s.ax.remove() sliders = [] - step = max(0.005, min(0.05, 0.8/len(self.parameter_array))) + step = max(0.005, min(0.05, 0.8 / len(self.parameter_array))) for i, row in enumerate(self.parameter_array): rect = [0.75, 0.9 - step * i, 0.2, step - 0.005] - s = Widget(rect, Slider, row['name'], row['minbound'], row['maxbound'], - valinit=row['optguess'], on_changed=ValueChanger(row['name'], self.parameter_values)) + s = Widget( + rect, + Slider, + row["name"], + row["minbound"], + row["maxbound"], + valinit=row["optguess"], + on_changed=ValueChanger(row["name"], self.parameter_values), + ) sliders.append(s) plt.draw() return sliders @@ -170,24 +185,28 @@ def clear(self, _=None): """ obs = self.setup.evaluation() self.ax.clear() - self.lines = list(self.ax.plot(obs, 'k:', label='Observation', zorder=2)) + self.lines = list(self.ax.plot(obs, "k:", label="Observation", zorder=2)) self.ax.legend() def run(self, _=None): """ Runs the model and plots the result """ - self.ax.set_title('Calculating...') + self.ax.set_title("Calculating...") plt.draw() time.sleep(0.001) parset = create_set(self.setup, **self.parameter_values) sim = self.setup.simulation(parset) objf = as_scalar(self.setup.objectivefunction(sim, self.setup.evaluation())) - label = ('{:0.4g}=M('.format(objf) - + ', '.join('{f}={v:0.4g}'.format(f=f, v=v) for f, v in zip(parset.name, parset)) - + ')') - self.lines.extend(self.ax.plot(sim, '-', label=label)) + label = ( + "{:0.4g}=M(".format(objf) + + ", ".join( + "{f}={v:0.4g}".format(f=f, v=v) for f, v in zip(parset.name, parset) + ) + + ")" + ) + self.lines.extend(self.ax.plot(sim, "-", label=label)) self.ax.legend() self.ax.set_title(type(self.setup).__name__) plt.draw() diff --git a/src/spotpy/hydrology/__init__.py b/src/spotpy/hydrology/__init__.py index cfe25ae1..6d085d5d 100644 --- a/src/spotpy/hydrology/__init__.py +++ b/src/spotpy/hydrology/__init__.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Tobias Houska -''' +""" diff --git a/src/spotpy/hydrology/signatures.py b/src/spotpy/hydrology/signatures.py index 4e274e69..10fb97ea 100644 --- a/src/spotpy/hydrology/signatures.py +++ b/src/spotpy/hydrology/signatures.py @@ -67,6 +67,7 @@ class SignatureMethod: """ Wraps a signature method from this module to access multiple variables """ + @classmethod def find_all(cls): """ @@ -77,7 +78,7 @@ def find_all(cls): current_module = sys.modules[__name__] methods = inspect.getmembers(current_module) - return [cls(m, name) for name, m in methods if name.startswith('get_')] + return [cls(m, name) for name, m in methods if name.startswith("get_")] @classmethod def run(cls, list_of_methods, data, measurements_per_day=1): @@ -99,10 +100,10 @@ def run(cls, list_of_methods, data, measurements_per_day=1): @classmethod def extract_from_doc(cls, token, doc): - for doc_line in doc.split('\n'): + for doc_line in doc.split("\n"): if doc_line.strip().startswith(token): - var_str = doc_line[len(token):].strip() - return [v.strip() for v in var_str.split(',')] + var_str = doc_line[len(token) :].strip() + return [v.strip() for v in var_str.split(",")] return [] def __init__(self, method, name): @@ -110,7 +111,7 @@ def __init__(self, method, name): self.name = name[4:] doc = inspect.getdoc(self.method) - self.variables = self.extract_from_doc(':return:', doc) or [self.name] + self.variables = self.extract_from_doc(":return:", doc) or [self.name] def __call__(self, data, measurements_per_day=1): """ @@ -126,8 +127,7 @@ def __call__(self, data, measurements_per_day=1): return [(self.variables[0], res)] def __repr__(self): - return 'Sig({n})->{v}'.format(n=self.name, v=', '.join(self.variables)) - + return "Sig({n})->{v}".format(n=self.name, v=", ".join(self.variables)) def remove_nan(data): @@ -177,9 +177,11 @@ def summarize(data, step, f): """ if len(data) < step: return np.array([f(data)]) - return np.fromiter((f(data[i:i+step]) - for i in range(0, len(data), step)), - count=len(data) // step, dtype=float) + return np.fromiter( + (f(data[i : i + step]) for i in range(0, len(data), step)), + count=len(data) // step, + dtype=float, + ) class Quantile(object): @@ -190,9 +192,12 @@ class Quantile(object): :return: Q_{} """ + def __init__(self, quantile): self.quantile = quantile - self.__doc__ = inspect.getdoc(type(self)).replace('', '{:0.4g}'.format(self.quantile)) + self.__doc__ = inspect.getdoc(type(self)).replace( + "", "{:0.4g}".format(self.quantile) + ) def __call__(self, data, measurements_per_day=None): """ @@ -205,7 +210,7 @@ def __call__(self, data, measurements_per_day=None): return np.percentile(remove_nan(data), 100 - self.quantile) def __repr__(self): - return 'q({:0.2f}%)'.format(self.quantile) + return "q({:0.2f}%)".format(self.quantile) get_q0_01 = Quantile(0.01) @@ -282,19 +287,19 @@ def get_sfdc(data, measurements_per_day=None): """ mean = get_mean(data) - Q33 = Quantile(33)(data)/mean - Q66 = Quantile(66)(data)/mean + Q33 = Quantile(33)(data) / mean + Q66 = Quantile(66)(data) / mean - # Determine if the fdc has a slope at this tage and return the + # Determine if the fdc has a slope at this tage and return the # corresponding values if Q33 == 0 and Q66 == 0: return 0 elif Q33 == 0 and not Q66 == 0: - return -np.log(Q66) / (2/3 - 1/3) + return -np.log(Q66) / (2 / 3 - 1 / 3) elif not Q33 == 0 and Q66 == 0: - return np.log(Q33) / (2/3 - 1/3) + return np.log(Q33) / (2 / 3 - 1 / 3) else: - return (np.log(Q33) - np.log(Q66)) / (2/3 - 1/3) + return (np.log(Q33) - np.log(Q66)) / (2 / 3 - 1 / 3) def calc_baseflow(data, measurements_per_day=1): @@ -308,15 +313,17 @@ def calc_baseflow(data, measurements_per_day=1): :param measurements_per_day: :return: The baseflow timeseries in the same resolution as data """ - period_length = 5 # days + period_length = 5 # days if measurements_per_day < 1: - raise ValueError('At least a daily measurement frequency is needed to calculate baseflow') + raise ValueError( + "At least a daily measurement frequency is needed to calculate baseflow" + ) # Remove NaN values data = fill_nan(data) def irange(seq): - """ Returns the indices of a sequence""" + """Returns the indices of a sequence""" return range(len(seq)) # Calculate daily mean @@ -325,7 +332,6 @@ def irange(seq): # Get minimum flow for each 5 day period (Step 1 in Gustard et al 1992) Q = summarize(daily_flow, period_length, np.min) - def is_baseflow(i, Q): """ Returns True if a 5 day period can be considered as baseflow @@ -333,17 +339,16 @@ def is_baseflow(i, Q): :param Q: 5day period minimum values :return: True if Q[i] is a baseflow """ - if 0 < i < len(Q)-1: + if 0 < i < len(Q) - 1: # The boolean expression after the or works with the assumption - # that flow values of 0 can always be considered as baseflow. + # that flow values of 0 can always be considered as baseflow. return (Q[i] * 0.9 < min(Q[i - 1], Q[i + 1])) or (Q[i] == 0) else: return False # Get each 5 day period index, where the baseflow condition is fullfilled # (Step 2 in Gustard et al 1992) - QB_pos = [i for i in irange(Q) - if is_baseflow(i, Q)] + QB_pos = [i for i in irange(Q) if is_baseflow(i, Q)] QB_raw = Q[QB_pos] # get interpolated values for each minflow timestep (Step 3) @@ -452,6 +457,7 @@ def get_qlf(data, measurements_per_day=1): def lowflow(value, mean): return value < 0.2 * mean + fq, md = flow_event(data, lowflow, np.mean(data)) return fq * measurements_per_day * 365, md / measurements_per_day @@ -548,7 +554,7 @@ def get_recession(data, measurements_per_day=None): q = fill_nan(data) # Only use median of flows above 0, to avoid mathmatical errors. - q = q / np.median(q[q>0]) + q = q / np.median(q[q > 0]) dqdt = np.diff(q) # Use only recession situation (dqdt < 0) q = q[:-1][dqdt < 0] @@ -557,7 +563,7 @@ def get_recession(data, measurements_per_day=None): b, t0 = np.polyfit(np.log(q), np.log(-dqdt), 1) - return b, 1/np.exp(t0), r2 + return b, 1 / np.exp(t0), r2 def get_zero_q_freq(data, measurements_per_day=None): @@ -568,5 +574,3 @@ def get_zero_q_freq(data, measurements_per_day=None): :return: ZERO_Q_FREQ """ return ((len(data) - np.count_nonzero(data)) / len(data)) * 100 - - diff --git a/src/spotpy/likelihoods.py b/src/spotpy/likelihoods.py index ada06959..d3cb2ee9 100644 --- a/src/spotpy/likelihoods.py +++ b/src/spotpy/likelihoods.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -''' +""" Copyright 2017 by Tobias Houska, Benjamin Manns This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Benjamin Manns This module contains a framework to summarize the distance between the model simulations and corresponding observations by calculating likelihood values. We modified the formula so, that a best fit of model can be archived by maximizing negative likelihood to zero -''' +""" #### TEST RESULTS WITH DREAM and hymod.py #### # Dream has now a bunch of options. We tested only likelihoods, which do not need a additional parameter @@ -28,21 +28,24 @@ class LikelihoodError(Exception): """ Define an own error class to know it is an error made by a likelihood calculation to warn the use for wrong inputs """ + pass def __generateMeaserror(data): return np.array(data) * 0.1 + def __calcSimpleDeviation_bias(data, comparedata, mu_h): __standartChecksBeforeStart(data, comparedata) d = np.array(data) c = np.array(comparedata) - #Adjust c for multiplicative bias parameter: + # Adjust c for multiplicative bias parameter: mu_t = np.exp(mu_h * c) Et = c * mu_t return d - Et + def __calcSimpleDeviation(data, comparedata): __standartChecksBeforeStart(data, comparedata) d = np.array(data) @@ -53,9 +56,13 @@ def __calcSimpleDeviation(data, comparedata): def __standartChecksBeforeStart(data, comparedata): # some standard checks if data.__len__() != comparedata.__len__(): - raise LikelihoodError("Simulation and observation data have not the same length") + raise LikelihoodError( + "Simulation and observation data have not the same length" + ) if data.__len__() == 0: - raise LikelihoodError("Data with no content can not be used as a foundation of calculation a likelihood") + raise LikelihoodError( + "Data with no content can not be used as a foundation of calculation a likelihood" + ) def __jitter_measerror_if_needed(fun_name, measerror): @@ -63,7 +70,8 @@ def __jitter_measerror_if_needed(fun_name, measerror): if size > 0: warnings.warn( "[" + fun_name + "] realized that there are distinct distributed values. " - "We jittered the values but the result can be far away from the truth.") + "We jittered the values but the result can be far away from the truth." + ) measerror[measerror == 0.0] = np.random.uniform(0.01, 0.1, size) return measerror @@ -96,15 +104,19 @@ def acf(data, lag): len = data.__len__() if len <= 0: - raise LikelihoodError("Data with no content can not be used to calc autokorrelation") + raise LikelihoodError( + "Data with no content can not be used to calc autokorrelation" + ) if lag is None or type(lag) != type(1): raise LikelihoodError("The lag musst be an integer") if lag > len: - raise LikelihoodError("The lag can not be bigger then the size of your data") + raise LikelihoodError( + "The lag can not be bigger then the size of your data" + ) m = np.mean(data) d = np.array(data) # R-Style numpy inline sum - return np.sum((d[lag:len] - m) * (d[0:len - lag] - m)) / len + return np.sum((d[lag:len] - m) * (d[0 : len - lag] - m)) / len @staticmethod def AR_1_Coeff(data): @@ -129,8 +141,8 @@ def AR_1_Coeff(data): def logLikelihood(data, comparedata, measerror=None): """ This formula is based on the gaussian likelihood: homo/heteroscedastic data error formula which can be used in both - cases if the data has a homo- or heteroscedastic data error. To archive numerical stability a log-transformation was done, - which derives following formula, as shown in formular 8 in: Vrugt 2016 Markov chain Monte Carlo + cases if the data has a homo- or heteroscedastic data error. To archive numerical stability a log-transformation was done, + which derives following formula, as shown in formular 8 in: Vrugt 2016 Markov chain Monte Carlo simulation using the DREAM software package: Theory, concepts, and Matlab implementation, EMS: @@ -160,8 +172,11 @@ def logLikelihood(data, comparedata, measerror=None): measerror = __jitter_measerror_if_needed("logLikelihood", measerror) # TODO: Maximize is done but in positive way (from negative to zero is hard) - return -data.__len__() / 2 * np.log(2 * np.pi) - np.nansum(np.log(measerror)) - 0.5 * np.sum( - ((data - comparedata) / measerror) ** 2) + return ( + -data.__len__() / 2 * np.log(2 * np.pi) + - np.nansum(np.log(measerror)) + - 0.5 * np.sum(((data - comparedata) / measerror) ** 2) + ) def gaussianLikelihoodMeasErrorOut(data, comparedata): @@ -188,7 +203,7 @@ def gaussianLikelihoodMeasErrorOut(data, comparedata): __standartChecksBeforeStart(data, comparedata) errorArr = np.array(__calcSimpleDeviation(data, comparedata)) - return -data.__len__() / 2 * np.log(np.sum(errorArr ** 2)) + return -data.__len__() / 2 * np.log(np.sum(errorArr**2)) def gaussianLikelihoodHomoHeteroDataError(data, comparedata, measerror=None): @@ -222,12 +237,16 @@ def gaussianLikelihoodHomoHeteroDataError(data, comparedata, measerror=None): if measerror is None: measerror = __generateMeaserror(data) measerror = np.array(measerror) - measerror = __jitter_measerror_if_needed("gaussianLikelihoodHomoHeteroDataError", measerror) + measerror = __jitter_measerror_if_needed( + "gaussianLikelihoodHomoHeteroDataError", measerror + ) # TODO Maximizing with negative to zero? # original: -np.prod((1 / (np.sqrt(2 * np.pi * measerror**2)))*np.exp(-0.5 * ((data-comparedata)/(measerror))**2)) return -np.sum( - (1 / (np.sqrt(2 * np.pi * measerror ** 2))) * np.exp(-0.5 * ((data - comparedata) / (measerror)) ** 2)) + (1 / (np.sqrt(2 * np.pi * measerror**2))) + * np.exp(-0.5 * ((data - comparedata) / (measerror)) ** 2) + ) def LikelihoodAR1WithC(data, comparedata, measerror=None, params=None): @@ -290,12 +309,15 @@ def LikelihoodAR1WithC(data, comparedata, measerror=None, params=None): if missingparams.__len__() > 0: raise LikelihoodError( "Unfortunately contains your param list not all parameters which are needed for this class." - "Following parameter are needed, too: " + str(missingparams)) + "Following parameter are needed, too: " + str(missingparams) + ) - phi = float(randomparset[parameternames == 'likelihood_phi']) + phi = float(randomparset[parameternames == "likelihood_phi"]) # Break the calculation if given parameter are not valid if abs(phi) >= 1: - warnings.warn("The parameter 'phi' should be real between -1 and 1 and is: " + str(phi)) + warnings.warn( + "The parameter 'phi' should be real between -1 and 1 and is: " + str(phi) + ) return np.NAN expect = np.nanmean(data) @@ -309,8 +331,16 @@ def LikelihoodAR1WithC(data, comparedata, measerror=None, params=None): sum_2 = np.sum(((errorArr[1:] - c - phi * errorArr[:-1]) / (measerror[1:])) ** 2) # TODO Its maximaized but maybe from negative to zero, is that possible? - return -(-(n / 2) * np.log(2 * np.pi) - 0.5 * np.log(measerror[0] ** 2 / (1 - phi ** 2)) - ( - (errorArr[0] - (c / (1 - phi))) ** 2 / (2 * measerror[0] ** 2 / (1 - phi ** 2))) - sum_1 - 0.5 * sum_2) + return -( + -(n / 2) * np.log(2 * np.pi) + - 0.5 * np.log(measerror[0] ** 2 / (1 - phi**2)) + - ( + (errorArr[0] - (c / (1 - phi))) ** 2 + / (2 * measerror[0] ** 2 / (1 - phi**2)) + ) + - sum_1 + - 0.5 * sum_2 + ) def LikelihoodAR1NoC(data, comparedata, measerror=None, params=None): @@ -362,15 +392,19 @@ def LikelihoodAR1NoC(data, comparedata, measerror=None, params=None): if missingparams.__len__() > 0: raise LikelihoodError( "Unfortunately contains your param list not all parameters which are needed for this class." - "Following parameter are needed, too: " + str(missingparams)) + "Following parameter are needed, too: " + str(missingparams) + ) parameternames = np.array(parameternames) randomparset = np.array(randomparset) - phi = float(randomparset[parameternames == 'likelihood_phi']) + phi = float(randomparset[parameternames == "likelihood_phi"]) # Break the calculation if given parameter are not valid if abs(phi) >= 1: - warnings.warn("The parameter 'phi' should be real between -1 and 1 and is: " + str(phi)) + warnings.warn( + "The parameter 'phi' should be real between -1 and 1 and is: " + + str(phi) + ) return np.NAN sum_1 = np.sum(np.log(measerror[1:])) @@ -378,8 +412,12 @@ def LikelihoodAR1NoC(data, comparedata, measerror=None, params=None): # TODO Maximizing with negative to zero? return -float( - -(n / 2) * np.log(2 * np.pi) + 0.5 * np.log(1 - phi ** 2) - 0.5 * (1 - phi ** 2) * (1 / measerror[0] ** 2) * \ - errorArr[0] ** 2 - sum_1 - 0.5 * sum_2) + -(n / 2) * np.log(2 * np.pi) + + 0.5 * np.log(1 - phi**2) + - 0.5 * (1 - phi**2) * (1 / measerror[0] ** 2) * errorArr[0] ** 2 + - sum_1 + - 0.5 * sum_2 + ) def generalizedLikelihoodFunction(data, comparedata, measerror=None, params=None): @@ -444,8 +482,14 @@ def generalizedLikelihoodFunction(data, comparedata, measerror=None, params=None comparedata = np.array(comparedata) measerror = __jitter_measerror_if_needed("generalizedLikelihoodFunction", measerror) - paramDependencies = ["likelihood_beta", "likelihood_xi", "likelihood_sigma0", "likelihood_sigma1", - "likelihood_phi1", "likelihood_muh"] + paramDependencies = [ + "likelihood_beta", + "likelihood_xi", + "likelihood_sigma0", + "likelihood_sigma1", + "likelihood_phi1", + "likelihood_muh", + ] if params is None: # for this params look into http://onlinelibrary.wiley.com/doi/10.1029/2009WR008933/epdf, page 5 @@ -453,7 +497,7 @@ def generalizedLikelihoodFunction(data, comparedata, measerror=None, params=None xi = np.random.uniform(0.01, 10, 1) sigma0 = np.random.uniform(0, 1, 1) sigma1 = np.random.uniform(0, 1, 1) - phi1 = np.random.uniform(0, .99, 1) + phi1 = np.random.uniform(0, 0.99, 1) muh = np.random.uniform(0, 100, 1) else: @@ -469,43 +513,72 @@ def generalizedLikelihoodFunction(data, comparedata, measerror=None, params=None if missingparams.__len__() > 0: raise LikelihoodError( "Unfortunately contains your param list not all parameters which are needed for this class." - "Following parameter are needed, too: " + str(missingparams)) + "Following parameter are needed, too: " + str(missingparams) + ) - beta = float(randomparset[np.where(parameternames == 'likelihood_beta')]) - xi = float(randomparset[np.where(parameternames == 'likelihood_xi')]) - sigma0 = float(randomparset[np.where(parameternames == 'likelihood_sigma0')]) - sigma1 = float(randomparset[parameternames == 'likelihood_sigma0']) - phi1 = float(randomparset[np.where(parameternames == 'likelihood_phi1')]) - muh = float(randomparset[np.where(parameternames == 'likelihood_muh')]) + beta = float(randomparset[np.where(parameternames == "likelihood_beta")]) + xi = float(randomparset[np.where(parameternames == "likelihood_xi")]) + sigma0 = float(randomparset[np.where(parameternames == "likelihood_sigma0")]) + sigma1 = float(randomparset[parameternames == "likelihood_sigma0"]) + phi1 = float(randomparset[np.where(parameternames == "likelihood_phi1")]) + muh = float(randomparset[np.where(parameternames == "likelihood_muh")]) # Break the calculation if given parameter are not valid if beta <= -1 or beta > 1: - warnings.warn("The parameter 'beta' should be greater then -1 and less equal 1 and is: " + str(beta)) + warnings.warn( + "The parameter 'beta' should be greater then -1 and less equal 1 and is: " + + str(beta) + ) return np.NAN if xi < 0.1 or xi > 10: - warnings.warn("The parameter 'xi' should be between 0.1 and 10 and is: " + str(xi)) + warnings.warn( + "The parameter 'xi' should be between 0.1 and 10 and is: " + str(xi) + ) return np.NAN if sigma0 < 0 or sigma0 > 1: - warnings.warn("The parameter 'sigma0' should be between 0 and 1 and is: " + str(sigma0)) + warnings.warn( + "The parameter 'sigma0' should be between 0 and 1 and is: " + + str(sigma0) + ) return np.NAN if sigma1 < 0 or sigma1 > 1: - warnings.warn("The parameter 'sigma1' should be between 0 and 1 and is: " + str(sigma1)) + warnings.warn( + "The parameter 'sigma1' should be between 0 and 1 and is: " + + str(sigma1) + ) return np.NAN if phi1 < 0 or phi1 > 1: - warnings.warn("The parameter 'phi1' should be between 0 and 1 and is: " + str(phi1)) + warnings.warn( + "The parameter 'phi1' should be between 0 and 1 and is: " + str(phi1) + ) return np.NAN if muh < 0 or muh > 100: - warnings.warn("The parameter 'muh' should be between 0 and 100 and is: " + str(muh)) + warnings.warn( + "The parameter 'muh' should be between 0 and 100 and is: " + str(muh) + ) return np.NAN try: - omegaBeta = np.sqrt(math.gamma(3 * (1 + beta) / 2)) / ((1 + beta) * np.sqrt(math.gamma((1 + beta) / 2) ** 3)) - M_1 = math.gamma(1 + beta) / (np.sqrt(math.gamma(3 * (1 + beta) / 2)) * np.sqrt(math.gamma((1 + beta) / 2))) + omegaBeta = np.sqrt(math.gamma(3 * (1 + beta) / 2)) / ( + (1 + beta) * np.sqrt(math.gamma((1 + beta) / 2) ** 3) + ) + M_1 = math.gamma(1 + beta) / ( + np.sqrt(math.gamma(3 * (1 + beta) / 2)) + * np.sqrt(math.gamma((1 + beta) / 2)) + ) M_2 = 1 - sigma_xi = np.sqrt(np.abs(float((M_2 - M_1 ** 2) * (xi ** 2 + xi ** (-2)) + 2 * M_1 ** 2 - M_2))) - cBeta = (math.gamma(3 * (1 + beta) / 2) / math.gamma((1 + beta) / 2)) ** (1 / (1 + beta)) + sigma_xi = np.sqrt( + np.abs( + float((M_2 - M_1**2) * (xi**2 + xi ** (-2)) + 2 * M_1**2 - M_2) + ) + ) + cBeta = (math.gamma(3 * (1 + beta) / 2) / math.gamma((1 + beta) / 2)) ** ( + 1 / (1 + beta) + ) except ValueError: - raise LikelihoodError("Please check your parameter input there is something wrong with the parameter") + raise LikelihoodError( + "Please check your parameter input there is something wrong with the parameter" + ) if xi != 0.0: mu_xi = M_1 * (xi - (xi ** (-1))) @@ -541,12 +614,18 @@ def generalizedLikelihoodFunction(data, comparedata, measerror=None, params=None sigmas = sigma0 + sigma1 * E if sigmas[sigmas <= 0.0].size > 0: - warnings.warn("Sorry, you comparedata have negative values. Maybe you model has some inaccurate" - " assumptions or there is another error." - " We cannot calculate this likelihood") + warnings.warn( + "Sorry, you comparedata have negative values. Maybe you model has some inaccurate" + " assumptions or there is another error." + " We cannot calculate this likelihood" + ) return np.NAN - return n * np.log(omegaBeta * (2 * sigma_xi) / np.abs(xi + (1 / xi))) - np.sum(np.log(sigmas)) - cBeta * sum_at + return ( + n * np.log(omegaBeta * (2 * sigma_xi) / np.abs(xi + (1 / xi))) + - np.sum(np.log(sigmas)) + - cBeta * sum_at + ) def LaplacianLikelihood(data, comparedata, measerror=None): @@ -581,7 +660,9 @@ def LaplacianLikelihood(data, comparedata, measerror=None): measerror = __jitter_measerror_if_needed("LaplacianLikelihood", measerror) # Log from negative value makes no sense at all - return -1 * np.sum(np.log(2 * np.abs(measerror))) - np.sum(np.abs(errArr) / measerror) + return -1 * np.sum(np.log(2 * np.abs(measerror))) - np.sum( + np.abs(errArr) / measerror + ) def SkewedStudentLikelihoodHomoscedastic(data, comparedata, measerror=None): @@ -618,10 +699,14 @@ def SkewedStudentLikelihoodHomoscedastic(data, comparedata, measerror=None): # TODO Maximizing with negative to zero? # Original: -np.prod(1 / (np.sqrt(2 * np.pi) * measerror) * np.exp(-1 * (res ** 2) / (2))) - return -np.sum((1 / (np.sqrt(2 * np.pi) * measerror) * np.exp(-1 * (res ** 2) / (2)))) + return -np.sum( + (1 / (np.sqrt(2 * np.pi) * measerror) * np.exp(-1 * (res**2) / (2))) + ) -def SkewedStudentLikelihoodHeteroscedastic(data, comparedata, measerror=None, params=None): +def SkewedStudentLikelihoodHeteroscedastic( + data, comparedata, measerror=None, params=None +): """ Under the assumption that the data are heteroscedastic, i.e. the they have for every measurement another error and that the residuals are non-Gaussian distributed we perform a likelihoodcalculation based on this formualar, having @@ -689,7 +774,9 @@ def SkewedStudentLikelihoodHeteroscedastic(data, comparedata, measerror=None, pa measerror = __generateMeaserror(data) measerror = np.array(measerror) - measerror = __jitter_measerror_if_needed("SkewedStudentLikelihoodHeteroscedastic", measerror) + measerror = __jitter_measerror_if_needed( + "SkewedStudentLikelihoodHeteroscedastic", measerror + ) diff = np.array(__calcSimpleDeviation(data, comparedata)) @@ -715,45 +802,69 @@ def SkewedStudentLikelihoodHeteroscedastic(data, comparedata, measerror=None, pa if missingparams.__len__() > 0: raise LikelihoodError( "Unfortunately contains your param list not all parameters which are needed for this class." - "Following parameter are needed, too: " + str(missingparams)) + "Following parameter are needed, too: " + str(missingparams) + ) - nu = randomparset[parameternames == 'likelihood_nu'][0] - k = randomparset[parameternames == 'likelihood_kappa'][0] - phi = randomparset[parameternames == 'likelihood_phi'][0] + nu = randomparset[parameternames == "likelihood_nu"][0] + k = randomparset[parameternames == "likelihood_kappa"][0] + phi = randomparset[parameternames == "likelihood_phi"][0] if abs(phi) > 1: warnings.warn( - "[SkewedStudentLikelihoodHeteroscedastic] The parameter 'phi' should be between -1 and 1 and is: " + str( - phi)) + "[SkewedStudentLikelihoodHeteroscedastic] The parameter 'phi' should be between -1 and 1 and is: " + + str(phi) + ) return np.NAN if nu <= 2: warnings.warn( - "[SkewedStudentLikelihoodHeteroscedastic] The parameter 'nu' should be greater then 2 and is: " + str( - nu)) + "[SkewedStudentLikelihoodHeteroscedastic] The parameter 'nu' should be greater then 2 and is: " + + str(nu) + ) return np.NAN if k <= 0: warnings.warn( - "[SkewedStudentLikelihoodHeteroscedastic] The parameter 'k' should be greater then 0 and is: " + str( - k)) + "[SkewedStudentLikelihoodHeteroscedastic] The parameter 'k' should be greater then 0 and is: " + + str(k) + ) return np.NAN - eta_all = diff[1:] - phi * diff[:-1] * np.sqrt(1 - phi ** 2) - c_1 = ((k ** 2 - 1 / (k ** 2)) * 2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2)) * (nu - 2)) / ( - (k + (1 / k)) * math.gamma(nu / 2) * np.sqrt(np.pi * nu) * (nu - 1)) + eta_all = diff[1:] - phi * diff[:-1] * np.sqrt(1 - phi**2) + c_1 = ( + (k**2 - 1 / (k**2)) + * 2 + * math.gamma((nu + 1) / 2) + * np.sqrt(nu / (nu - 2)) + * (nu - 2) + ) / ((k + (1 / k)) * math.gamma(nu / 2) * np.sqrt(np.pi * nu) * (nu - 1)) - for_c2 = -1 * (c_1) ** 2 + (k ** 3 + 1 / k ** 3) / (k + 1 / k) + for_c2 = -1 * (c_1) ** 2 + (k**3 + 1 / k**3) / (k + 1 / k) c_2 = np.sqrt(for_c2) # TODO Maximizing with negative to zero? - return np.log(-np.prod((2 * c_2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2))) / ( - (k + 1 / k) * math.gamma(nu / 2) * np.sqrt(np.pi * nu) * np.sqrt(1 - phi ** 2) * measerror[1:]) \ - * (1 + (1 / (nu - 2)) * ( - (c_1 + c_2 * eta_all) / (k ** (np.sign(c_1 + c_2 * eta_all)))) ** 2) ** ( - -(nu + 1) / 2))) - - -def SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(data, comparedata, measerror=None, params=None): + return np.log( + -np.prod( + (2 * c_2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2))) + / ( + (k + 1 / k) + * math.gamma(nu / 2) + * np.sqrt(np.pi * nu) + * np.sqrt(1 - phi**2) + * measerror[1:] + ) + * ( + 1 + + (1 / (nu - 2)) + * ((c_1 + c_2 * eta_all) / (k ** (np.sign(c_1 + c_2 * eta_all)))) ** 2 + ) + ** (-(nu + 1) / 2) + ) + ) + + +def SkewedStudentLikelihoodHeteroscedasticAdvancedARModel( + data, comparedata, measerror=None, params=None +): """ This function is based of the previos one, called `SkewedStudentLikelihoodHeteroscedastic`. We expand @@ -793,7 +904,9 @@ def SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(data, comparedata, mea measerror = __generateMeaserror(data) measerror = np.array(measerror) - measerror = __jitter_measerror_if_needed("SkewedStudentLikelihoodHeteroscedasticAdvancedARModel", measerror) + measerror = __jitter_measerror_if_needed( + "SkewedStudentLikelihoodHeteroscedasticAdvancedARModel", measerror + ) res = np.array(__calcSimpleDeviation(data, comparedata)) @@ -817,49 +930,84 @@ def SkewedStudentLikelihoodHeteroscedasticAdvancedARModel(data, comparedata, mea if missingparams.__len__() > 0: raise LikelihoodError( "Unfortunately contains your param list not all parameters which are needed for this class." - "Following parameter are needed, too: " + str(missingparams)) + "Following parameter are needed, too: " + str(missingparams) + ) - nu = randomparset[parameternames == 'likelihood_nu'][0] - k = randomparset[parameternames == 'likelihood_kappa'][0] - phi = randomparset[parameternames == 'likelihood_phi'][0] + nu = randomparset[parameternames == "likelihood_nu"][0] + k = randomparset[parameternames == "likelihood_kappa"][0] + phi = randomparset[parameternames == "likelihood_phi"][0] if abs(phi) > 1: warnings.warn( - "[SkewedStudentLikelihoodHeteroscedasticAdvancedARModel] The parameter 'phi' should be between -1 and 1 and is: " + str( - phi)) + "[SkewedStudentLikelihoodHeteroscedasticAdvancedARModel] The parameter 'phi' should be between -1 and 1 and is: " + + str(phi) + ) return np.NAN if nu <= 2: warnings.warn( - "[SkewedStudentLikelihoodHeteroscedasticAdvancedARModel] The parameter 'nu' should be greater then 2 and is: " + str( - nu)) + "[SkewedStudentLikelihoodHeteroscedasticAdvancedARModel] The parameter 'nu' should be greater then 2 and is: " + + str(nu) + ) return np.NAN if k <= 0: warnings.warn( - "[SkewedStudentLikelihoodHeteroscedasticAdvancedARModel] The parameter 'k' should be greater then 0 and is: " + str( - k)) + "[SkewedStudentLikelihoodHeteroscedasticAdvancedARModel] The parameter 'k' should be greater then 0 and is: " + + str(k) + ) return np.NAN N = data.__len__() - eta_all = (res[1:] - phi * res[:-1] + phi / (N) * np.sum(res)) * np.sqrt(1 - phi ** 2) - - c_1 = ((k ** 2 - 1 / (k ** 2)) * 2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2)) * (nu - 2)) / ( - (k + (1 / k)) * math.gamma(nu / 2) * np.sqrt(np.pi * nu) * (nu - 1)) - for_c2 = -1 * (c_1) ** 2 + (k ** 3 + 1 / k ** 3) / (k + 1 / k) + eta_all = (res[1:] - phi * res[:-1] + phi / (N) * np.sum(res)) * np.sqrt( + 1 - phi**2 + ) + + c_1 = ( + (k**2 - 1 / (k**2)) + * 2 + * math.gamma((nu + 1) / 2) + * np.sqrt(nu / (nu - 2)) + * (nu - 2) + ) / ((k + (1 / k)) * math.gamma(nu / 2) * np.sqrt(np.pi * nu) * (nu - 1)) + for_c2 = -1 * (c_1) ** 2 + (k**3 + 1 / k**3) / (k + 1 / k) c_2 = np.sqrt(for_c2) # TODO Maximizing with negative to zero? - datas = ((2 * c_2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2))) / ( - (k + 1 / k) * math.gamma(nu / 2) * np.sqrt(np.pi * nu) * np.sqrt(1 - phi ** 2) * measerror[1:]) \ - * (1 + (1 / (nu - 2)) * ( - (c_1 + c_2 * eta_all) / (k ** (np.sign(c_1 + c_2 * eta_all)))) ** 2) ** ( - -(nu + 1) / 2)) - - return np.log(-np.prod((2 * c_2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2))) / ( - (k + 1 / k) * math.gamma(nu / 2) * np.sqrt(np.pi * nu) * np.sqrt(1 - phi ** 2) * measerror[1:]) \ - * (1 + (1 / (nu - 2)) * ( - (c_1 + c_2 * eta_all) / (k ** (np.sign(c_1 + c_2 * eta_all)))) ** 2) ** ( - -(nu + 1) / 2))) + datas = ( + (2 * c_2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2))) + / ( + (k + 1 / k) + * math.gamma(nu / 2) + * np.sqrt(np.pi * nu) + * np.sqrt(1 - phi**2) + * measerror[1:] + ) + * ( + 1 + + (1 / (nu - 2)) + * ((c_1 + c_2 * eta_all) / (k ** (np.sign(c_1 + c_2 * eta_all)))) ** 2 + ) + ** (-(nu + 1) / 2) + ) + + return np.log( + -np.prod( + (2 * c_2 * math.gamma((nu + 1) / 2) * np.sqrt(nu / (nu - 2))) + / ( + (k + 1 / k) + * math.gamma(nu / 2) + * np.sqrt(np.pi * nu) + * np.sqrt(1 - phi**2) + * measerror[1:] + ) + * ( + 1 + + (1 / (nu - 2)) + * ((c_1 + c_2 * eta_all) / (k ** (np.sign(c_1 + c_2 * eta_all)))) ** 2 + ) + ** (-(nu + 1) / 2) + ) + ) def NoisyABCGaussianLikelihood(data, comparedata, measerror=None): @@ -898,12 +1046,14 @@ def NoisyABCGaussianLikelihood(data, comparedata, measerror=None): size = sigmas[sigmas == 0.0].size if size > 0: warnings.warn( - "[NoisyABCGaussianLikelihood] reaslized that there are distinct distributed values. We jittered the values but the result can be far away from the truth.") + "[NoisyABCGaussianLikelihood] reaslized that there are distinct distributed values. We jittered the values but the result can be far away from the truth." + ) sigmas[sigmas == 0.0] = np.random.uniform(0.01, 0.1, size) if measerror == 0.0: warnings.warn( - "[NoisyABCGaussianLikelihood] reaslized that the mean of the measerror is zero and therefore is no likelihood calculation possible") + "[NoisyABCGaussianLikelihood] reaslized that the mean of the measerror is zero and therefore is no likelihood calculation possible" + ) return np.NAN m = data.__len__() @@ -911,18 +1061,24 @@ def NoisyABCGaussianLikelihood(data, comparedata, measerror=None): comparedata = np.array(comparedata) # The euclidean distance has a bit diffrent formula then the original paper showed - return -m / 2 * np.log(2 * np.pi) - m * np.log(measerror) - 0.5 * 1 / (measerror ** 2) * np.sqrt( - np.sum(((data - comparedata) / sigmas) ** 2)) + return ( + -m / 2 * np.log(2 * np.pi) + - m * np.log(measerror) + - 0.5 + * 1 + / (measerror**2) + * np.sqrt(np.sum(((data - comparedata) / sigmas) ** 2)) + ) def ABCBoxcarLikelihood(data, comparedata, measerror=None): """ A simple ABC likelihood function is the Boxcar likelihood given by the formular: - + .. math:: p = \\max_{i=1}^N(\\epsilon_j - \\rho(S(Y),S(Y(X)))). - + :math:`\\rho(S(Y),S(Y(X)))` is the eucledean distance. `Usage:` Maximizing the likelihood value guides to the best model. @@ -954,25 +1110,25 @@ def ABCBoxcarLikelihood(data, comparedata, measerror=None): def LimitsOfAcceptability(data, comparedata, measerror=None): """ - This calculation use the generalized likelihood uncertainty estimation by counting all Euclidean distances which are - smaller then the deviation of the measurement value. + This calculation use the generalized likelihood uncertainty estimation by counting all Euclidean distances which are + smaller then the deviation of the measurement value. - .. math:: + .. math:: - p=\\sum_{j=1}^m I(|\\rho(S_j(Y)-S_j(Y(X))| \\leq \\epsilon_j) + p=\\sum_{j=1}^m I(|\\rho(S_j(Y)-S_j(Y(X))| \\leq \\epsilon_j) - Variable :math:`I(a)` returns one if `a` is true, zero otherwise. + Variable :math:`I(a)` returns one if `a` is true, zero otherwise. - `Usage:` Maximizing the likelihood value guides to the best model. + `Usage:` Maximizing the likelihood value guides to the best model. - :param data: observed measurements as a numerical list - :type data: list - :param comparedata: simulated data from a model which should fit the original data somehow - :type comparedata: list - :param measerror: measurement errors of every data input, if nothing is given a standart calculation is done to simulate measurement errors - :type measerror: list - :return: the p value as a likelihood - :rtype: float + :param data: observed measurements as a numerical list + :type data: list + :param comparedata: simulated data from a model which should fit the original data somehow + :type comparedata: list + :param measerror: measurement errors of every data input, if nothing is given a standart calculation is done to simulate measurement errors + :type measerror: list + :return: the p value as a likelihood + :rtype: float """ __standartChecksBeforeStart(data, comparedata) if measerror is None: @@ -1018,7 +1174,8 @@ def InverseErrorVarianceShapingFactor(data, comparedata, G=10): errArr = np.nanvar(np.array(__calcSimpleDeviation(data, comparedata))) if errArr == 0.0: warnings.warn( - "[InverseErrorVarianceShapingFactor] reaslized that the variance in y(x)-y is zero and that makes no sence and also impossible to calculate the likelihood.") + "[InverseErrorVarianceShapingFactor] reaslized that the variance in y(x)-y is zero and that makes no sence and also impossible to calculate the likelihood." + ) return np.NAN else: # Gives an better convergence, so close values are more less and apart values are more great. @@ -1059,7 +1216,8 @@ def NashSutcliffeEfficiencyShapingFactor(data, comparedata, G=10): if np.nanvar(data) == 0.0: warnings.warn( - "[NashSutcliffeEfficiencyShapingFactor] reaslized that the variance of the data is zero. Thereforee is no likelihood calculation possible") + "[NashSutcliffeEfficiencyShapingFactor] reaslized that the variance of the data is zero. Thereforee is no likelihood calculation possible" + ) return np.NAN else: ratio = np.nanvar(errArr) / np.nanvar(data) @@ -1069,7 +1227,8 @@ def NashSutcliffeEfficiencyShapingFactor(data, comparedata, G=10): "[NashSutcliffeEfficiencyShapingFactor]: The ratio between residual variation and observation " "variation is bigger then one and therefore" "we can not calculate the liklihood. Please use another function which fits to this data and / or " - "model") + "model" + ) return np.NAN else: return G * np.log(1 - ratio) diff --git a/src/spotpy/objectivefunctions.py b/src/spotpy/objectivefunctions.py index badc7bc7..47de88ff 100644 --- a/src/spotpy/objectivefunctions.py +++ b/src/spotpy/objectivefunctions.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -8,17 +8,18 @@ This tool holds functions for statistic analysis. It takes Python-lists and returns the objective function value of interest. -''' +""" import logging import numpy as np -logging.basicConfig(format='%(levelname)s: %(module)s.%(funcName)s(): %(message)s') +logging.basicConfig(format="%(levelname)s: %(module)s.%(funcName)s(): %(message)s") + def bias(evaluation, simulation): """ - Bias as shown in Gupta in Sorooshian (1998), Toward improved calibration of hydrologic models: + Bias as shown in Gupta in Sorooshian (1998), Toward improved calibration of hydrologic models: Multiple and noncommensurable measures of information, Water Resources Research .. math:: @@ -40,7 +41,9 @@ def bias(evaluation, simulation): return float(bias) else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -67,7 +70,9 @@ def pbias(evaluation, simulation): return 100 * (float(np.nansum(sim - obs)) / float(np.nansum(obs))) else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -77,7 +82,7 @@ def nashsutcliffe(evaluation, simulation): .. math:: - NSE = 1-\\frac{\\sum_{i=1}^{N}(e_{i}-s_{i})^2}{\\sum_{i=1}^{N}(e_{i}-\\bar{e})^2} + NSE = 1-\\frac{\\sum_{i=1}^{N}(e_{i}-s_{i})^2}{\\sum_{i=1}^{N}(e_{i}-\\bar{e})^2} :evaluation: Observed data to compared with simulation data. :type: list @@ -95,12 +100,14 @@ def nashsutcliffe(evaluation, simulation): mean_observed = np.nanmean(e) # compute numerator and denominator numerator = np.nansum((e - s) ** 2) - denominator = np.nansum((e - mean_observed)**2) + denominator = np.nansum((e - mean_observed) ** 2) # compute coefficient return 1 - (numerator / denominator) else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -120,16 +127,22 @@ def lognashsutcliffe(evaluation, simulation, epsilon=0): :epsilon: Value which is added to simulation and evaluation data to errors when simulation or evaluation data has zero values :type: float or list - + :return: log Nash-Sutcliffe model efficiency :rtype: float """ if len(evaluation) == len(simulation): - s, e = np.array(simulation)+epsilon, np.array(evaluation)+epsilon - return float(1 - sum((np.log(s) - np.log(e))**2) / sum((np.log(e) - np.mean(np.log(e)))**2)) + s, e = np.array(simulation) + epsilon, np.array(evaluation) + epsilon + return float( + 1 + - sum((np.log(s) - np.log(e)) ** 2) + / sum((np.log(e) - np.mean(np.log(e))) ** 2) + ) else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -147,14 +160,16 @@ def log_p(evaluation, simulation): :rtype: float """ scale = np.mean(evaluation) / 10 - if scale < .01: - scale = .01 + if scale < 0.01: + scale = 0.01 if len(evaluation) == len(simulation): y = (np.array(evaluation) - np.array(simulation)) / scale - normpdf = -y**2 / 2 - np.log(np.sqrt(2 * np.pi)) + normpdf = -(y**2) / 2 - np.log(np.sqrt(2 * np.pi)) return np.mean(normpdf) else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -179,7 +194,9 @@ def correlationcoefficient(evaluation, simulation): correlation_coefficient = np.corrcoef(evaluation, simulation)[0, 1] return correlation_coefficient else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -201,9 +218,11 @@ def rsquared(evaluation, simulation): :rtype: float """ if len(evaluation) == len(simulation): - return correlationcoefficient(evaluation, simulation)**2 + return correlationcoefficient(evaluation, simulation) ** 2 else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -227,10 +246,12 @@ def mse(evaluation, simulation): if len(evaluation) == len(simulation): obs, sim = np.array(evaluation), np.array(simulation) - mse = np.nanmean((obs - sim)**2) + mse = np.nanmean((obs - sim) ** 2) return mse else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -280,7 +301,9 @@ def mae(evaluation, simulation): mae = np.mean(np.abs(sim - obs)) return mae else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -288,7 +311,7 @@ def rrmse(evaluation, simulation): """ Relative Root Mean Squared Error - .. math:: + .. math:: RRMSE=\\frac{\\sqrt{\\frac{1}{N}\\sum_{i=1}^{N}(e_{i}-s_{i})^2}}{\\bar{e}} @@ -306,7 +329,9 @@ def rrmse(evaluation, simulation): rrmse = rmse(evaluation, simulation) / np.mean(evaluation) return rrmse else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -314,9 +339,9 @@ def agreementindex(evaluation, simulation): """ Agreement Index (d) developed by Willmott (1981) - .. math:: + .. math:: - d = 1 - \\frac{\\sum_{i=1}^{N}(e_{i} - s_{i})^2}{\\sum_{i=1}^{N}(\\left | s_{i} - \\bar{e} \\right | + \\left | e_{i} - \\bar{e} \\right |)^2} + d = 1 - \\frac{\\sum_{i=1}^{N}(e_{i} - s_{i})^2}{\\sum_{i=1}^{N}(\\left | s_{i} - \\bar{e} \\right | + \\left | e_{i} - \\bar{e} \\right |)^2} :evaluation: Observed data to compared with simulation data. @@ -330,11 +355,20 @@ def agreementindex(evaluation, simulation): """ if len(evaluation) == len(simulation): simulation, evaluation = np.array(simulation), np.array(evaluation) - Agreement_index = 1 - (np.sum((evaluation - simulation)**2)) / (np.sum( - (np.abs(simulation - np.mean(evaluation)) + np.abs(evaluation - np.mean(evaluation)))**2)) + Agreement_index = 1 - (np.sum((evaluation - simulation) ** 2)) / ( + np.sum( + ( + np.abs(simulation - np.mean(evaluation)) + + np.abs(evaluation - np.mean(evaluation)) + ) + ** 2 + ) + ) return Agreement_index else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -358,10 +392,12 @@ def covariance(evaluation, simulation): obs, sim = np.array(evaluation), np.array(simulation) obs_mean = np.mean(obs) sim_mean = np.mean(sim) - covariance = np.mean((obs - obs_mean)*(sim - sim_mean)) + covariance = np.mean((obs - obs_mean) * (sim - sim_mean)) return covariance else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -390,15 +426,17 @@ def decomposed_mse(evaluation, simulation): e_std = np.std(evaluation) s_std = np.std(simulation) - bias_squared = bias(evaluation, simulation)**2 - sdsd = (e_std - s_std)**2 + bias_squared = bias(evaluation, simulation) ** 2 + sdsd = (e_std - s_std) ** 2 lcs = 2 * e_std * s_std * (1 - correlationcoefficient(evaluation, simulation)) decomposed_mse = bias_squared + sdsd + lcs return decomposed_mse else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -406,13 +444,13 @@ def kge(evaluation, simulation, return_all=False): """ Kling-Gupta Efficiency - Corresponding paper: + Corresponding paper: Gupta, Kling, Yilmaz, Martinez, 2009, Decomposition of the mean squared error and NSE performance criteria: Implications for improving hydrological modelling output: kge: Kling-Gupta Efficiency optional_output: - cc: correlation + cc: correlation alpha: ratio of the standard deviation beta: ratio of the mean """ @@ -420,35 +458,45 @@ def kge(evaluation, simulation, return_all=False): cc = np.corrcoef(evaluation, simulation)[0, 1] alpha = np.std(simulation) / np.std(evaluation) beta = np.sum(simulation) / np.sum(evaluation) - kge = 1 - np.sqrt((cc - 1)**2 + (alpha - 1)**2 + (beta - 1)**2) + kge = 1 - np.sqrt((cc - 1) ** 2 + (alpha - 1) ** 2 + (beta - 1) ** 2) if return_all: return kge, cc, alpha, beta else: return kge else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan + def _spearmann_corr(x, y): """Separmann correlation coefficient""" col = [list(a) for a in zip(x, y)] xy = sorted(col, key=lambda x: x[0], reverse=False) # rang of x-value for i, row in enumerate(xy): - row.append(i+1) + row.append(i + 1) a = sorted(xy, key=lambda x: x[1], reverse=False) # rang of y-value for i, row in enumerate(a): - row.append(i+1) + row.append(i + 1) - MW_rank_x = np.nanmean(np.array(a)[:,2]) - MW_rank_y = np.nanmean(np.array(a)[:,3]) + MW_rank_x = np.nanmean(np.array(a)[:, 2]) + MW_rank_y = np.nanmean(np.array(a)[:, 3]) + + numerator = np.nansum( + [float((a[j][2] - MW_rank_x) * (a[j][3] - MW_rank_y)) for j in range(len(a))] + ) + denominator1 = np.sqrt( + np.nansum([(a[j][2] - MW_rank_x) ** 2.0 for j in range(len(a))]) + ) + denominator2 = np.sqrt( + np.nansum([(a[j][3] - MW_rank_x) ** 2.0 for j in range(len(a))]) + ) + return float(numerator / (denominator1 * denominator2)) - numerator = np.nansum([float((a[j][2]-MW_rank_x)*(a[j][3]-MW_rank_y)) for j in range(len(a))]) - denominator1 = np.sqrt(np.nansum([(a[j][2]-MW_rank_x)**2. for j in range(len(a))])) - denominator2 = np.sqrt(np.nansum([(a[j][3]-MW_rank_x)**2. for j in range(len(a))])) - return float(numerator/(denominator1*denominator2)) def kge_non_parametric(evaluation, simulation, return_all=False): """ @@ -459,53 +507,58 @@ def kge_non_parametric(evaluation, simulation, return_all=False): output: kge: Kling-Gupta Efficiency - + author: Nadine Maier and Tobias Houska optional_output: - cc: correlation + cc: correlation alpha: ratio of the standard deviation beta: ratio of the mean """ if len(evaluation) == len(simulation): - ## self-made formula + ## self-made formula cc = _spearmann_corr(evaluation, simulation) ### scipy-Version - #cc = stm.spearmanr(evaluation, simulation, axis=0)[0] + # cc = stm.spearmanr(evaluation, simulation, axis=0)[0] - ### pandas version - #a = pd.DataFrame({'eva': evaluation, 'sim': simulation}) - #cc = a.ix[:,1].corr(a.ix[:,0], method = 'spearman') + ### pandas version + # a = pd.DataFrame({'eva': evaluation, 'sim': simulation}) + # cc = a.ix[:,1].corr(a.ix[:,0], method = 'spearman') - fdc_sim = np.sort(simulation / (np.nanmean(simulation)*len(simulation))) - fdc_obs = np.sort(evaluation / (np.nanmean(evaluation)*len(evaluation))) + fdc_sim = np.sort(simulation / (np.nanmean(simulation) * len(simulation))) + fdc_obs = np.sort(evaluation / (np.nanmean(evaluation) * len(evaluation))) alpha = 1 - 0.5 * np.nanmean(np.abs(fdc_sim - fdc_obs)) - + beta = np.mean(simulation) / np.mean(evaluation) - kge = 1 - np.sqrt((cc - 1)**2 + (alpha - 1)**2 + (beta - 1)**2) + kge = 1 - np.sqrt((cc - 1) ** 2 + (alpha - 1) ** 2 + (beta - 1) ** 2) if return_all: return kge, cc, alpha, beta else: return kge else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan + def rsr(evaluation, simulation): """ - RMSE-observations standard deviation ratio + RMSE-observations standard deviation ratio - Corresponding paper: + Corresponding paper: Moriasi, Arnold, Van Liew, Bingner, Harmel, Veith, 2007, Model Evaluation Guidelines for Systematic Quantification of Accuracy in Watershed Simulations output: - rsr: RMSE-observations standard deviation ratio + rsr: RMSE-observations standard deviation ratio """ if len(evaluation) == len(simulation): rsr = rmse(evaluation, simulation) / np.std(evaluation) return rsr else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan @@ -516,8 +569,8 @@ def volume_error(evaluation, simulation): and observed runoff (i.e. long-term water balance). used in this paper: Reynolds, J.E., S. Halldin, C.Y. Xu, J. Seibert, and A. Kauffeldt. 2017. - “Sub-Daily Runoff Predictions Using Parameters Calibrated on the Basis of Data with a - Daily Temporal Resolution.” Journal of Hydrology 550 (July):399–411. + “Sub-Daily Runoff Predictions Using Parameters Calibrated on the Basis of Data with a + Daily Temporal Resolution.” Journal of Hydrology 550 (July):399–411. https://doi.org/10.1016/j.jhydrol.2017.05.012. .. math:: @@ -536,14 +589,32 @@ def volume_error(evaluation, simulation): ve = np.sum(simulation - evaluation) / np.sum(evaluation) return float(ve) else: - logging.warning("evaluation and simulation lists does not have the same length.") + logging.warning( + "evaluation and simulation lists does not have the same length." + ) return np.nan -_all_functions = [agreementindex, bias, correlationcoefficient, covariance, decomposed_mse, - kge, log_p, lognashsutcliffe, mae, mse, nashsutcliffe, pbias, rmse, rrmse, rsquared, - rsr, volume_error - ] +_all_functions = [ + agreementindex, + bias, + correlationcoefficient, + covariance, + decomposed_mse, + kge, + log_p, + lognashsutcliffe, + mae, + mse, + nashsutcliffe, + pbias, + rmse, + rrmse, + rsquared, + rsr, + volume_error, +] + def calculate_all_functions(evaluation, simulation): """ diff --git a/src/spotpy/parallel/__init__.py b/src/spotpy/parallel/__init__.py index 5b874cef..31f76bd8 100644 --- a/src/spotpy/parallel/__init__.py +++ b/src/spotpy/parallel/__init__.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Philipp Kraft -''' +""" diff --git a/src/spotpy/parallel/mpi.py b/src/spotpy/parallel/mpi.py index c3a76536..d313ac97 100644 --- a/src/spotpy/parallel/mpi.py +++ b/src/spotpy/parallel/mpi.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). @@ -14,7 +14,7 @@ where the master notes which processes are busy with a job. When a new job should be sent to a worker, the master looks for a free slot and sends the job to the corresponding worker process. -''' +""" from mpi4py import MPI @@ -23,6 +23,7 @@ class tag: """ This is just an enum to identify messages """ + job = 11 answer = 12 @@ -31,6 +32,7 @@ class PhaseChange(object): """ Object to identify a change of a simulation phase """ + def __init__(self, phase): self.phase = phase @@ -63,7 +65,7 @@ def __init__(self, process): self.comm = MPI.COMM_WORLD self.size = self.comm.Get_size() if self.size <= 1: - raise RuntimeError('Need at least two processes for parallelization') + raise RuntimeError("Need at least two processes for parallelization") self.rank = self.comm.Get_rank() self.process = process self.phase = None @@ -71,7 +73,7 @@ def __init__(self, process): if self.rank == 0: # The slots are a place for the master to remember which worker is doing something # Idle slots contain None - self.slots = [None] * (self.size-1) + self.slots = [None] * (self.size - 1) def is_master(self): """ @@ -151,7 +153,7 @@ def __send(self, jobiter): :param jobiter: An iterator over job arguments :return: True if there are pending jobs """ - assert(self.is_master()) + assert self.is_master() for i, slot in enumerate(self.slots): # found a free slot if slot is None: @@ -161,7 +163,7 @@ def __send(self, jobiter): job = next(jobiter) self.slots[i] = job # Send slot job to destination rank - self.comm.send(job, dest=i+1, tag=tag.job) + self.comm.send(job, dest=i + 1, tag=tag.job) except StopIteration: return False return True @@ -193,9 +195,9 @@ def __call__(self, jobs): # If slot is active if slot is not None: # Check if slot has data in the pipeline - if self.comm.Iprobe(source=i+1, tag=tag.answer): + if self.comm.Iprobe(source=i + 1, tag=tag.answer): # Receive data - data = self.comm.recv(source=i+1, tag=tag.answer) + data = self.comm.recv(source=i + 1, tag=tag.answer) # Free slot self.slots[i] = None yield data diff --git a/src/spotpy/parallel/mproc.py b/src/spotpy/parallel/mproc.py index 180c9c5e..be322bb3 100644 --- a/src/spotpy/parallel/mproc.py +++ b/src/spotpy/parallel/mproc.py @@ -1,32 +1,36 @@ -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Philipp Kraft -''' +""" import pathos.multiprocessing as mp process_count = None + class PhaseChange(object): """ Object to identify a change of a simulation phase """ + def __init__(self, phase): self.phase = phase + class ForEach(object): """ ForEach is a classes for multiprocessed work based on a generater object which is given if __call__ is called We using the pathos multiprocessing module and the orderd map function where results are saved until results in the given order are caluculated. We yielding back the result so a generator object is created. """ + def __init__(self, process): self.size = process_count or mp.cpu_count() self.process = process - self.phase=None + self.phase = None self.pool = mp.ProcessingPool(self.size) def is_idle(self): diff --git a/src/spotpy/parallel/sequential.py b/src/spotpy/parallel/sequential.py index ddb81d79..8ea954dc 100644 --- a/src/spotpy/parallel/sequential.py +++ b/src/spotpy/parallel/sequential.py @@ -1,25 +1,30 @@ -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Philipp Kraft -''' +""" + class ForEach(object): - def __init__(self,process): + def __init__(self, process): self.process = process - self.phase=None + self.phase = None + def is_idle(self): return True + def terminate(self): pass - def setphase(self,phasename): + + def setphase(self, phasename): self.phase = phasename + def start(self): pass - def __call__(self,jobs): + + def __call__(self, jobs): for job in jobs: data = self.process(job) yield data - diff --git a/src/spotpy/parallel/umproc.py b/src/spotpy/parallel/umproc.py index 2caaa89e..999de46c 100644 --- a/src/spotpy/parallel/umproc.py +++ b/src/spotpy/parallel/umproc.py @@ -1,28 +1,32 @@ -''' +""" Copyright (c) 2018 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Benjamin Manns -''' +""" import pathos.multiprocessing as mp process_count = None + class PhaseChange(object): """ Object to identify a change of a simulation phase """ + def __init__(self, phase): self.phase = phase + class ForEach(object): """ ForEach is a classes for multiprocessed work based on a generater object which is given if __call__ is called We using the pathos multiprocessing module and the unordered map function where results are yield back while some processes are still running. """ + def __init__(self, process): self.size = process_count or mp.cpu_count() self.process = process @@ -38,17 +42,14 @@ def terminate(self): def start(self): pass - def setphase(self,phasename): - self.phase=phasename - + def setphase(self, phasename): + self.phase = phasename def f(self, job): data = self.process(job) return data - def __call__(self,jobs): + def __call__(self, jobs): results = self.pool.uimap(self.f, jobs) for i in results: yield i - - diff --git a/src/spotpy/parameter.py b/src/spotpy/parameter.py index b0615d27..9bb24be9 100644 --- a/src/spotpy/parameter.py +++ b/src/spotpy/parameter.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- -''' +""" Copyright (c) 2015 by Tobias Houska This file is part of Statistical Parameter Estimation Tool (SPOTPY). :author: Philipp Kraft and Tobias Houska Contains classes to generate random parameter sets -''' +""" import copy import sys from itertools import cycle @@ -24,6 +24,7 @@ class _ArgumentHelper(object): the new way to define parameters as class properties in a setup class is ugly if a parameter name needs to be given. This class helps by checking keyword and arguments for their types. """ + def __init__(self, parent, *args, **kwargs): self.parent = parent self.classname = type(parent).__name__ @@ -31,7 +32,6 @@ def __init__(self, parent, *args, **kwargs): self.kwargs = kwargs.copy() self.processed_args = 0 - def name(self): """ A helper method for Base.__init__. @@ -51,12 +51,12 @@ def name(self): name = self.args.pop(0) self.processed_args += 1 # else get the name from the keywords - elif 'name' in self.kwargs: - name = self.kwargs.pop('name') + elif "name" in self.kwargs: + name = self.kwargs.pop("name") self.processed_args += 1 # or just do not use a name else: - name = '' + name = "" return name @@ -100,9 +100,8 @@ def attributes(self, names, raise_for_missing=None, as_dict=False): # If the algorithm did not find values for distribution parameters in args are kwargs, fail if missing and raise_for_missing: raise TypeError( - '{T} expected values for the parameters {m}'.format( - T=self.classname, - m=', '.join(missing) + "{T} expected values for the parameters {m}".format( + T=self.classname, m=", ".join(missing) ) ) # Return the name, the distribution parameter values, and a tuple of unprocessed args and kwargs @@ -130,7 +129,9 @@ def check_complete(self): """ total_args = len(self) + self.processed_args if len(self): - error = '{}: {} arguments where given but only {} could be used'.format(self.classname, total_args, self.processed_args) + error = "{}: {} arguments where given but only {} could be used".format( + self.classname, total_args, self.processed_args + ) raise TypeError(error) @@ -147,7 +148,7 @@ def _round_sig(x, sig=3): if abs(x) < 1e-12: return 0 else: - return round(x, sig-int(floor(log10(abs(x))))-1) + return round(x, sig - int(floor(log10(abs(x)))) - 1) class Base(object): @@ -168,7 +169,9 @@ def __init__(*args, **kwargs): The Uniform parameter class is the reference implementation. """ + __rndargs__ = () + def __init__(self, rndfunc, rndfuncname, *args, **kwargs): """ :name: Name of the parameter @@ -188,18 +191,23 @@ def __init__(self, rndfunc, rndfuncname, *args, **kwargs): self.rndfunctype = rndfuncname arghelper = _ArgumentHelper(self, *args, **kwargs) self.name = arghelper.name() - arghelper.alias('default', 'optguess') + arghelper.alias("default", "optguess") self.rndargs = arghelper.attributes(type(self).__rndargs__, type(self).__name__) if self.rndfunc: # Get the standard arguments for the parameter or create them - param_args = arghelper.attributes(['step', 'optguess', 'minbound', 'maxbound'], as_dict=True) + param_args = arghelper.attributes( + ["step", "optguess", "minbound", "maxbound"], as_dict=True + ) # Draw one sample of size 1000 sample = self(size=1000) - self.step = param_args.get('step', _round_sig(np.percentile(sample, 50) - np.percentile(sample, 40))) - self.optguess = param_args.get('optguess', _round_sig(np.median(sample))) - self.minbound = param_args.get('minbound', _round_sig(np.min(sample))) - self.maxbound = param_args.get('maxbound', _round_sig(np.max(sample))) + self.step = param_args.get( + "step", + _round_sig(np.percentile(sample, 50) - np.percentile(sample, 40)), + ) + self.optguess = param_args.get("optguess", _round_sig(np.median(sample))) + self.minbound = param_args.get("minbound", _round_sig(np.min(sample))) + self.maxbound = param_args.get("maxbound", _round_sig(np.max(sample))) else: @@ -208,7 +216,7 @@ def __init__(self, rndfunc, rndfuncname, *args, **kwargs): self.minbound = 0.0 self.maxbound = 0.0 - self.description = arghelper.get('doc') + self.description = arghelper.get("doc") self.as_int = not not arghelper.get("as_int") arghelper.check_complete() @@ -223,40 +231,51 @@ def astuple(self): """ Returns a tuple of a realization and the other parameter properties """ - return self(), self.name, self.step, self.optguess, self.minbound, self.maxbound, self.as_int + return ( + self(), + self.name, + self.step, + self.optguess, + self.minbound, + self.maxbound, + self.as_int, + ) def __repr__(self): """ Returns a textual representation of the parameter """ - return "{tname}('{p.name}', {p.rndargs})".format(tname=type(self).__name__, p=self) + return "{tname}('{p.name}', {p.rndargs})".format( + tname=type(self).__name__, p=self + ) def __str__(self): """ Returns the description of the parameter, if available, else repr(self) :return: """ - doc = vars(self).get('description') + doc = vars(self).get("description") if doc: - res = '{} ({})'.format(doc, repr(self)) + res = "{} ({})".format(doc, repr(self)) return res else: return repr(self) def __unicode__(self): - doc = vars(self).get('description') + doc = vars(self).get("description") if doc: - return u'{}({})'.format(str(doc), repr(self)) + return "{}({})".format(str(doc), repr(self)) else: return repr(self) - class Uniform(Base): """ A specialization of the Base parameter for uniform distributions """ - __rndargs__ = 'low', 'high' + + __rndargs__ = "low", "high" + def __init__(self, *args, **kwargs): """ :name: Name of the parameter @@ -269,7 +288,7 @@ def __init__(self, *args, **kwargs): default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ - super(Uniform, self).__init__(rnd.uniform, 'Uniform', *args, **kwargs) + super(Uniform, self).__init__(rnd.uniform, "Uniform", *args, **kwargs) class List(Base): @@ -281,11 +300,13 @@ class List(Base): list_param() 1 """ - __rndargs__ = ('values', ) + + __rndargs__ = ("values",) + def __init__(self, *args, **kwargs): - self.repeat = kwargs.pop('repeat', False) - super(List, self).__init__(None, 'List', *args, **kwargs) - self.values, = self.rndargs + self.repeat = kwargs.pop("repeat", False) + super(List, self).__init__(None, "List", *args, **kwargs) + (self.values,) = self.rndargs # Hack to avoid skipping the first value. See __call__ function below. self.throwaway_first = True @@ -318,7 +339,7 @@ def __call__(self, size=None): try: return next(self.iterator) except StopIteration: - text = 'Number of repetitions is higher than the number of available parameter sets' + text = "Number of repetitions is higher than the number of available parameter sets" raise IndexError(text) def astuple(self): @@ -329,10 +350,11 @@ class Constant(Base): """ A specialization that produces always the same constant value """ - __rndargs__ = 'scalar', + + __rndargs__ = ("scalar",) def __init__(self, *args, **kwargs): - super(Constant, self).__init__(self, 'Constant', *args, **kwargs) + super(Constant, self).__init__(self, "Constant", *args, **kwargs) value = property(lambda self: self.rndargs[0]) @@ -355,7 +377,9 @@ class Normal(Base): """ A specialization of the Base parameter for normal distributions """ - __rndargs__ = 'mean', 'stddev' + + __rndargs__ = "mean", "stddev" + def __init__(self, *args, **kwargs): """ :name: Name of the parameter @@ -369,14 +393,16 @@ def __init__(self, *args, **kwargs): rndfunc(*rndargs, size=1000) """ - super(Normal, self).__init__(rnd.normal, 'Normal', *args, **kwargs) + super(Normal, self).__init__(rnd.normal, "Normal", *args, **kwargs) class logNormal(Base): """ A specialization of the Base parameter for normal distributions """ - __rndargs__ = 'mean', 'sigma' + + __rndargs__ = "mean", "sigma" + def __init__(self, *args, **kwargs): """ :name: Name of the parameter @@ -389,14 +415,16 @@ def __init__(self, *args, **kwargs): default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ - super(logNormal, self).__init__(rnd.lognormal, 'logNormal', *args, **kwargs) + super(logNormal, self).__init__(rnd.lognormal, "logNormal", *args, **kwargs) class Chisquare(Base): """ A specialization of the Base parameter for chisquare distributions """ - __rndargs__ = 'dt', + + __rndargs__ = ("dt",) + def __init__(self, *args, **kwargs): """ :name: Name of the parameter @@ -408,14 +436,15 @@ def __init__(self, *args, **kwargs): default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ - super(Chisquare, self).__init__(rnd.chisquare, 'Chisquare', *args, **kwargs) + super(Chisquare, self).__init__(rnd.chisquare, "Chisquare", *args, **kwargs) class Exponential(Base): """ A specialization of the Base parameter for exponential distributions """ - __rndargs__ = 'scale', + + __rndargs__ = ("scale",) def __init__(self, *args, **kwargs): """ @@ -428,14 +457,17 @@ def __init__(self, *args, **kwargs): default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ - super(Exponential, self).__init__(rnd.exponential, 'Exponential', *args, **kwargs) + super(Exponential, self).__init__( + rnd.exponential, "Exponential", *args, **kwargs + ) class Gamma(Base): """ A specialization of the Base parameter for gamma distributions """ - __rndargs__ = 'shape', 'scale' + + __rndargs__ = "shape", "scale" def __init__(self, *args, **kwargs): """ @@ -450,7 +482,7 @@ def __init__(self, *args, **kwargs): rndfunc(*rndargs, size=1000) """ - super(Gamma, self).__init__(rnd.gamma, 'Gamma', *args, **kwargs) + super(Gamma, self).__init__(rnd.gamma, "Gamma", *args, **kwargs) class Wald(Base): @@ -458,7 +490,8 @@ class Wald(Base): A specialization of the Base parameter for Wald distributions """ - __rndargs__ = 'mean', 'scale' + __rndargs__ = "mean", "scale" + def __init__(self, *args, **kwargs): """ :name: Name of the parameter @@ -471,14 +504,16 @@ def __init__(self, *args, **kwargs): default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ - super(Wald, self).__init__(rnd.wald, 'Wald', *args, **kwargs) + super(Wald, self).__init__(rnd.wald, "Wald", *args, **kwargs) class Weibull(Base): """ A specialization of the Base parameter for Weibull distributions """ - __rndargs__ = 'a', + + __rndargs__ = ("a",) + def __init__(self, *args, **kwargs): """ :name: Name of the parameter @@ -490,14 +525,16 @@ def __init__(self, *args, **kwargs): default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ - super(Weibull, self).__init__(rnd.weibull, 'Weibull', *args, **kwargs) + super(Weibull, self).__init__(rnd.weibull, "Weibull", *args, **kwargs) class Triangular(Base): """ A parameter sampling from a triangular distribution """ - __rndargs__ = 'left', 'mode', 'right' + + __rndargs__ = "left", "mode", "right" + def __init__(self, *args, **kwargs): """ :name: Name of the parameter @@ -511,7 +548,7 @@ def __init__(self, *args, **kwargs): default is quantile(0.5) - quantile(0.4) of rndfunc(*rndargs, size=1000) """ - super(Triangular, self).__init__(rnd.triangular, 'Triangular', *args, **kwargs) + super(Triangular, self).__init__(rnd.triangular, "Triangular", *args, **kwargs) class ParameterSet(object): @@ -543,6 +580,7 @@ class ParameterSet(object): """ + def __init__(self, param_info): """ Creates a set of parameters from a parameter info array. @@ -557,7 +595,9 @@ def __init__(self, param_info): :param param_info: A record array containing the properties of the parameters of this set. """ - self.__lookup = dict(("p" + x if x.isdigit() else x, i) for i, x in enumerate(param_info['name'])) + self.__lookup = dict( + ("p" + x if x.isdigit() else x, i) for i, x in enumerate(param_info["name"]) + ) self.__info = param_info def __call__(self, *values, **kwargs): @@ -571,20 +611,22 @@ def __call__(self, *values, **kwargs): """ if values: if len(self.__info) != len(values): - raise ValueError('Given values do are not the same length as the parameter set') - self.__info['random'][:] = values + raise ValueError( + "Given values do are not the same length as the parameter set" + ) + self.__info["random"][:] = values for k in kwargs: try: - self.__info['random'][self.__lookup[k]] = kwargs[k] + self.__info["random"][self.__lookup[k]] = kwargs[k] except KeyError: - raise TypeError('{} is not a parameter of this set'.format(k)) + raise TypeError("{} is not a parameter of this set".format(k)) return self def __len__(self): - return len(self.__info['random']) + return len(self.__info["random"]) def __iter__(self): - return iter(self.__info['random']) + return iter(self.__info["random"]) def __getitem__(self, item): """ @@ -595,7 +637,7 @@ def __getitem__(self, item): """ if type(item) is str: item = self.__lookup[item] - return self.__info['random'][item] + return self.__info["random"][item] def __setitem__(self, key, value): """ @@ -605,21 +647,25 @@ def __setitem__(self, key, value): """ if key in self.__lookup: key = self.__lookup[key] - self.__info['random'][key] = value + self.__info["random"][key] = value def __getattr__(self, item): """ Provides the attribute access like print(ps.a) """ - if item.startswith('_'): - raise AttributeError('{} is not a member of this parameter set'.format(item)) + if item.startswith("_"): + raise AttributeError( + "{} is not a member of this parameter set".format(item) + ) elif item in self.__lookup: - return self.__info['random'][self.__lookup[item]] + return self.__info["random"][self.__lookup[item]] elif item in self.__info.dtype.names: return self.__info[item] else: - raise AttributeError('{} is not a member of this parameter set'.format(item)) + raise AttributeError( + "{} is not a member of this parameter set".format(item) + ) def __setattr__(self, key, value): """ @@ -627,20 +673,21 @@ def __setattr__(self, key, value): ps.a = 2 """ # Allow normal usage - if key.startswith('_') or key not in self.__lookup: + if key.startswith("_") or key not in self.__lookup: return object.__setattr__(self, key, value) else: - self.__info['random'][self.__lookup[key]] = value + self.__info["random"][self.__lookup[key]] = value def __str__(self): - return 'parameters({})'.format( - ', '.join('{}={:g}'.format(k, self.__info['random'][i]) - for i, k in enumerate(self.__info['name']) - ) + return "parameters({})".format( + ", ".join( + "{}={:g}".format(k, self.__info["random"][i]) + for i, k in enumerate(self.__info["name"]) + ) ) def __repr__(self): - return 'spotpy.parameter.ParameterSet()' + return "spotpy.parameter.ParameterSet()" def __dir__(self): """ @@ -649,21 +696,22 @@ def __dir__(self): :return: List of method names and fields """ - attrs = [attr for attr in vars(type(self)) if not attr.startswith('_')] - return attrs + list(self.__info['name']) + list(self.__info.dtype.names) + attrs = [attr for attr in vars(type(self)) if not attr.startswith("_")] + return attrs + list(self.__info["name"]) + list(self.__info.dtype.names) - def set_by_array(self,array): + def set_by_array(self, array): for i, a in enumerate(array): - self.__setitem__(i,a) + self.__setitem__(i, a) def copy(self): return ParameterSet(copy.deepcopy(self.__info)) + def get_classes(): keys = [] current_module = sys.modules[__name__] for key in dir(current_module): - if isinstance( getattr(current_module, key), type ): + if isinstance(getattr(current_module, key), type): keys.append(key) return keys @@ -674,11 +722,19 @@ def generate(parameters): is given as a structured array in the format the parameters function of a setup expects :parameters: A sequence of parameter objects """ - dtype = [('random', ' Date: Fri, 8 Jul 2022 16:03:54 +0200 Subject: [PATCH 26/34] pyproject: remove 'wheel' as build dep (will be installed by setuptools) --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 95d82bb0..1cd8b18e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,6 @@ [build-system] requires = [ - "setuptools>=62", - "wheel", + "setuptools>=63", "setuptools_scm[toml]>=6.4", ] build-backend = "setuptools.build_meta" From dc4ad19a92432df7542a7b33c8f76d6d29a9cfe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 13 Jul 2022 10:11:44 +0200 Subject: [PATCH 27/34] CI: re-enable isort and black checks --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e91f9cac..74b6cad1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,11 +40,11 @@ jobs: - name: black check run: | - python -m black --diff --color . + python -m black --check --diff --color . - name: isort check run: | - python -m isort --diff --color . + python -m isort --check --diff --color . build_sdist: name: sdist on ${{ matrix.os }} with py ${{ matrix.python-version }} From bf254215e5dd65535f34d2b69fd5b40ff088d717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 13 Jul 2022 10:31:53 +0200 Subject: [PATCH 28/34] MANIFEST: fix missing tutorials; exclude cache files --- MANIFEST.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 1d90975e..353ae7b0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,5 +2,7 @@ prune ** recursive-include tests *.py recursive-include src/spotpy *.py recursive-include src/spotpy/examples * -recursive-include tutorials +recursive-include tutorials * include LICENSE README.md pyproject.toml setup.py +global-exclude __pycache__ +global-exclude *.py[co] From b1ef0551704571b4fac0fe5e9c915de718c1a8f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 13 Jul 2022 10:39:27 +0200 Subject: [PATCH 29/34] MANIFEST: add missing test files; simplify manifest --- MANIFEST.in | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 353ae7b0..f2da5cec 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,6 @@ prune ** -recursive-include tests *.py -recursive-include src/spotpy *.py -recursive-include src/spotpy/examples * -recursive-include tutorials * +graft src/spotpy +graft tests +graft tutorials include LICENSE README.md pyproject.toml setup.py -global-exclude __pycache__ -global-exclude *.py[co] +global-exclude __pycache__ *.py[co] From a6ba6b961c1ca3878a828be7da687d53f32160a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 13 Jul 2022 11:42:51 +0200 Subject: [PATCH 30/34] CI: prepare for merge to master --- .github/workflows/main.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 74b6cad1..046c0424 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,6 @@ on: push: branches: - "master" - - "refactor_setup" tags: - "*" pull_request: @@ -74,6 +73,7 @@ jobs: - name: Run tests run: | python -m pytest --cov spotpy --cov-report term-missing -v tests/ + python -m coveralls --service=github - name: Build sdist run: | @@ -94,15 +94,15 @@ jobs: name: artifact path: dist - # - name: Publish to Test PyPI - # # only if working on main - # if: github.ref == 'refs/heads/main' - # uses: pypa/gh-action-pypi-publish@release/v1 - # with: - # user: __token__ - # password: ${{ secrets.PYPI_TEST_TOKEN }} - # repository_url: https://test.pypi.org/legacy/ - # skip_existing: true + - name: Publish to Test PyPI + # only if working on master + if: github.ref == 'refs/heads/master' + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_TEST_TOKEN }} + repository_url: https://test.pypi.org/legacy/ + skip_existing: true - name: Publish to PyPI # only if tagged From d4b7aa4f8656c970e1a4eb6bda9f54c3db07b6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 13 Jul 2022 11:52:20 +0200 Subject: [PATCH 31/34] CI: add gihub token for coveralls --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 046c0424..c724163b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -71,6 +71,8 @@ jobs: pip install --editable .[test] - name: Run tests + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | python -m pytest --cov spotpy --cov-report term-missing -v tests/ python -m coveralls --service=github From f49353583337f906788c1071b8a1105d6909faf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 13 Jul 2022 14:22:34 +0200 Subject: [PATCH 32/34] Add me as author --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1cd8b18e..8927ab87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ authors = [ {name = "Philipp Kraft"}, {name = "Alejandro Chamorro-Chavez"}, {name = "Lutz Breuer"}, + {name = "Sebastian Müller", email = "sebastian.mueller@ufz.de"}, ] maintainers = [ {name = "Tobias Houska", email = "tobias.houska@umwelt.uni-giessen.de"}, From f8ebafd38b09ae2fae3543c60b14361b1c5c085d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 13 Jul 2022 14:39:23 +0200 Subject: [PATCH 33/34] Cov: remove redundant omits --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8927ab87..b51fd8ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -115,11 +115,6 @@ target-version = [ [tool.coverage] [tool.coverage.run] source = ["spotpy"] - omit = [ - "*docs*", - "*examples*", - "*tests*", - ] [tool.coverage.report] exclude_lines = [ From 4e0becb75075961e32835a0d651299adc02a4403 Mon Sep 17 00:00:00 2001 From: thouska Date: Fri, 15 Jul 2022 12:51:47 +0200 Subject: [PATCH 34/34] Update to new code style guidelines --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 67df4554..510bcf0a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -111,7 +111,7 @@ tools: ## Style guide -Follow [TensorFlow's style guide](https://www.tensorflow.org/versions/master/how_tos/style_guide.html) or the [Google style guide](https://google.github.io/styleguide/pyguide.html) for writing code, which more or less follows PEP 8. +Try to make sure to follow the [Black style guide](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html) and [isort](https://pypi.org/project/isort/) for code submissions. -#### This guide was derived from the [scikit-learn guide to contributing](https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md) +#### This guide was derived from the [scikit-learn guide to contributing](https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md) and adopted to SPOTPY.